diff --git a/grammar.js b/grammar.js index 261ecb0..f83289b 100644 --- a/grammar.js +++ b/grammar.js @@ -33,6 +33,23 @@ const FOLD_OPERATORS = [ 'or', 'and', 'bitor', 'xor', 'bitand', 'not_eq', ]; +const ASSIGNMENT_OPERATORS = [ + '=', + '*=', + '/=', + '%=', + '+=', + '-=', + '<<=', + '>>=', + '&=', + '^=', + '|=', + 'and_eq', + 'or_eq', + 'xor_eq', +] + module.exports = grammar(C, { name: 'cpp', @@ -1225,25 +1242,22 @@ module.exports = grammar(C, { assignment_expression: $ => prec.right(PREC.ASSIGNMENT, seq( field('left', $._assignment_left_expression), - field('operator', choice( - '=', - '*=', - '/=', - '%=', - '+=', - '-=', - '<<=', - '>>=', - '&=', - '^=', - '|=', - 'and_eq', - 'or_eq', - 'xor_eq', - )), + field('operator', choice(...ASSIGNMENT_OPERATORS)), field('right', choice($._expression, $.initializer_list)), )), + assignment_expression_lhs_expression: $ => seq( + field('left', $._expression), + field('operator', choice(...ASSIGNMENT_OPERATORS)), + field('right', choice($._expression, $.initializer_list)), + ), + + // This prevents an ambiguity between fold expressions + // and assignment expressions within parentheses. + parenthesized_expression: ($, original) => choice( + original, + seq('(', alias($.assignment_expression_lhs_expression, $.assignment_expression), ')') + ), operator_name: $ => prec(1, seq( 'operator', diff --git a/src/grammar.json b/src/grammar.json index 7256254..bc08bab 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -9118,28 +9118,55 @@ ] }, "parenthesized_expression": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "STRING", + "value": "(" }, { - "type": "SYMBOL", - "name": "comma_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "STRING", + "value": ")" } ] }, { - "type": "STRING", - "value": ")" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "assignment_expression_lhs_expression" + }, + "named": true, + "value": "assignment_expression" + }, + { + "type": "STRING", + "value": ")" + } + ] } ] }, @@ -15846,6 +15873,101 @@ } ] }, + "assignment_expression_lhs_expression": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": "and_eq" + }, + { + "type": "STRING", + "value": "or_eq" + }, + { + "type": "STRING", + "value": "xor_eq" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + } + ] + }, "operator_name": { "type": "PREC", "value": 1, diff --git a/src/node-types.json b/src/node-types.json index 9458b9e..bb7d4e0 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -785,35 +785,7 @@ "required": true, "types": [ { - "type": "call_expression", - "named": true - }, - { - "type": "field_expression", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "pointer_expression", - "named": true - }, - { - "type": "qualified_identifier", - "named": true - }, - { - "type": "subscript_expression", - "named": true - }, - { - "type": "user_defined_literal", + "type": "_expression", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 406c9c3..38b69d6 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -#include "tree_sitter/parser.h" +#include #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -14,9 +14,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 9385 -#define LARGE_STATE_COUNT 2476 -#define SYMBOL_COUNT 518 +#define STATE_COUNT 9416 +#define LARGE_STATE_COUNT 2500 +#define SYMBOL_COUNT 519 #define ALIAS_COUNT 5 #define TOKEN_COUNT 213 #define EXTERNAL_TOKEN_COUNT 2 @@ -24,7 +24,7 @@ #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define PRODUCTION_ID_COUNT 212 -enum ts_symbol_identifiers { +enum { sym_identifier = 1, aux_sym_preproc_include_token1 = 2, aux_sym_preproc_include_token2 = 3, @@ -494,59 +494,60 @@ enum ts_symbol_identifiers { sym_qualified_identifier = 467, sym_qualified_type_identifier = 468, sym_qualified_operator_cast_identifier = 469, - sym_operator_name = 470, - sym_user_defined_literal = 471, - aux_sym_translation_unit_repeat1 = 472, - aux_sym_preproc_params_repeat1 = 473, - aux_sym_preproc_if_repeat1 = 474, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 475, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 476, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 477, - aux_sym_preproc_argument_list_repeat1 = 478, - aux_sym__declaration_declarator_repeat1 = 479, - aux_sym_type_definition_repeat1 = 480, - aux_sym__type_definition_type_repeat1 = 481, - aux_sym__type_definition_declarators_repeat1 = 482, - aux_sym__declaration_specifiers_repeat1 = 483, - aux_sym_attribute_declaration_repeat1 = 484, - aux_sym_attributed_declarator_repeat1 = 485, - aux_sym_pointer_declarator_repeat1 = 486, - aux_sym_sized_type_specifier_repeat1 = 487, - aux_sym_enumerator_list_repeat1 = 488, - aux_sym_field_declaration_repeat1 = 489, - aux_sym_parameter_list_repeat1 = 490, - aux_sym_case_statement_repeat1 = 491, - aux_sym_generic_expression_repeat1 = 492, - aux_sym_gnu_asm_expression_repeat1 = 493, - aux_sym_gnu_asm_output_operand_list_repeat1 = 494, - aux_sym_gnu_asm_input_operand_list_repeat1 = 495, - aux_sym_gnu_asm_clobber_list_repeat1 = 496, - aux_sym_gnu_asm_goto_list_repeat1 = 497, - aux_sym_argument_list_repeat1 = 498, - aux_sym_initializer_list_repeat1 = 499, - aux_sym_initializer_pair_repeat1 = 500, - aux_sym_char_literal_repeat1 = 501, - aux_sym_concatenated_string_repeat1 = 502, - aux_sym_string_literal_repeat1 = 503, - aux_sym__class_declaration_repeat1 = 504, - aux_sym_base_class_clause_repeat1 = 505, - aux_sym_template_parameter_list_repeat1 = 506, - aux_sym_field_initializer_list_repeat1 = 507, - aux_sym_operator_cast_definition_repeat1 = 508, - aux_sym_constructor_try_statement_repeat1 = 509, - aux_sym_structured_binding_declarator_repeat1 = 510, - aux_sym__function_postfix_repeat1 = 511, - aux_sym_throw_specifier_repeat1 = 512, - aux_sym_template_argument_list_repeat1 = 513, - aux_sym_subscript_argument_list_repeat1 = 514, - aux_sym_requirement_seq_repeat1 = 515, - aux_sym_requires_parameter_list_repeat1 = 516, - aux_sym_lambda_capture_specifier_repeat1 = 517, - alias_sym_field_identifier = 518, - alias_sym_namespace_identifier = 519, - alias_sym_simple_requirement = 520, - alias_sym_statement_identifier = 521, - alias_sym_type_identifier = 522, + sym_assignment_expression_lhs_expression = 470, + sym_operator_name = 471, + sym_user_defined_literal = 472, + aux_sym_translation_unit_repeat1 = 473, + aux_sym_preproc_params_repeat1 = 474, + aux_sym_preproc_if_repeat1 = 475, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 476, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 477, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 478, + aux_sym_preproc_argument_list_repeat1 = 479, + aux_sym__declaration_declarator_repeat1 = 480, + aux_sym_type_definition_repeat1 = 481, + aux_sym__type_definition_type_repeat1 = 482, + aux_sym__type_definition_declarators_repeat1 = 483, + aux_sym__declaration_specifiers_repeat1 = 484, + aux_sym_attribute_declaration_repeat1 = 485, + aux_sym_attributed_declarator_repeat1 = 486, + aux_sym_pointer_declarator_repeat1 = 487, + aux_sym_sized_type_specifier_repeat1 = 488, + aux_sym_enumerator_list_repeat1 = 489, + aux_sym_field_declaration_repeat1 = 490, + aux_sym_parameter_list_repeat1 = 491, + aux_sym_case_statement_repeat1 = 492, + aux_sym_generic_expression_repeat1 = 493, + aux_sym_gnu_asm_expression_repeat1 = 494, + aux_sym_gnu_asm_output_operand_list_repeat1 = 495, + aux_sym_gnu_asm_input_operand_list_repeat1 = 496, + aux_sym_gnu_asm_clobber_list_repeat1 = 497, + aux_sym_gnu_asm_goto_list_repeat1 = 498, + aux_sym_argument_list_repeat1 = 499, + aux_sym_initializer_list_repeat1 = 500, + aux_sym_initializer_pair_repeat1 = 501, + aux_sym_char_literal_repeat1 = 502, + aux_sym_concatenated_string_repeat1 = 503, + aux_sym_string_literal_repeat1 = 504, + aux_sym__class_declaration_repeat1 = 505, + aux_sym_base_class_clause_repeat1 = 506, + aux_sym_template_parameter_list_repeat1 = 507, + aux_sym_field_initializer_list_repeat1 = 508, + aux_sym_operator_cast_definition_repeat1 = 509, + aux_sym_constructor_try_statement_repeat1 = 510, + aux_sym_structured_binding_declarator_repeat1 = 511, + aux_sym__function_postfix_repeat1 = 512, + aux_sym_throw_specifier_repeat1 = 513, + aux_sym_template_argument_list_repeat1 = 514, + aux_sym_subscript_argument_list_repeat1 = 515, + aux_sym_requirement_seq_repeat1 = 516, + aux_sym_requires_parameter_list_repeat1 = 517, + aux_sym_lambda_capture_specifier_repeat1 = 518, + alias_sym_field_identifier = 519, + alias_sym_namespace_identifier = 520, + alias_sym_simple_requirement = 521, + alias_sym_statement_identifier = 522, + alias_sym_type_identifier = 523, }; static const char * const ts_symbol_names[] = { @@ -1020,6 +1021,7 @@ static const char * const ts_symbol_names[] = { [sym_qualified_identifier] = "qualified_identifier", [sym_qualified_type_identifier] = "qualified_identifier", [sym_qualified_operator_cast_identifier] = "qualified_identifier", + [sym_assignment_expression_lhs_expression] = "assignment_expression", [sym_operator_name] = "operator_name", [sym_user_defined_literal] = "user_defined_literal", [aux_sym_translation_unit_repeat1] = "translation_unit_repeat1", @@ -1546,6 +1548,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_qualified_identifier] = sym_qualified_identifier, [sym_qualified_type_identifier] = sym_qualified_identifier, [sym_qualified_operator_cast_identifier] = sym_qualified_identifier, + [sym_assignment_expression_lhs_expression] = sym_assignment_expression, [sym_operator_name] = sym_operator_name, [sym_user_defined_literal] = sym_user_defined_literal, [aux_sym_translation_unit_repeat1] = aux_sym_translation_unit_repeat1, @@ -3488,6 +3491,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_assignment_expression_lhs_expression] = { + .visible = true, + .named = true, + }, [sym_operator_name] = { .visible = true, .named = true, @@ -3702,7 +3709,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum ts_field_identifiers { +enum { field_alternative = 1, field_argument = 2, field_arguments = 3, @@ -4725,87 +4732,87 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [14] = 2, [15] = 2, [16] = 16, - [17] = 17, - [18] = 17, - [19] = 16, - [20] = 17, - [21] = 17, - [22] = 17, - [23] = 16, + [17] = 16, + [18] = 18, + [19] = 18, + [20] = 18, + [21] = 16, + [22] = 16, + [23] = 18, [24] = 16, - [25] = 16, + [25] = 18, [26] = 26, [27] = 27, - [28] = 27, - [29] = 29, - [30] = 30, + [28] = 26, + [29] = 27, + [30] = 27, [31] = 26, - [32] = 27, - [33] = 26, - [34] = 26, - [35] = 26, + [32] = 26, + [33] = 27, + [34] = 34, + [35] = 27, [36] = 36, - [37] = 27, + [37] = 37, [38] = 38, - [39] = 39, - [40] = 27, + [39] = 26, + [40] = 40, [41] = 38, - [42] = 42, + [42] = 38, [43] = 43, - [44] = 42, - [45] = 42, + [44] = 44, + [45] = 44, [46] = 46, - [47] = 46, - [48] = 46, - [49] = 42, - [50] = 46, - [51] = 43, - [52] = 42, - [53] = 43, - [54] = 42, - [55] = 42, - [56] = 38, - [57] = 46, - [58] = 46, - [59] = 46, - [60] = 46, - [61] = 42, - [62] = 62, - [63] = 42, - [64] = 42, - [65] = 46, - [66] = 46, - [67] = 42, - [68] = 46, - [69] = 42, + [47] = 43, + [48] = 44, + [49] = 44, + [50] = 43, + [51] = 44, + [52] = 43, + [53] = 44, + [54] = 43, + [55] = 43, + [56] = 44, + [57] = 57, + [58] = 43, + [59] = 44, + [60] = 57, + [61] = 44, + [62] = 44, + [63] = 43, + [64] = 43, + [65] = 43, + [66] = 57, + [67] = 38, + [68] = 43, + [69] = 57, [70] = 46, - [71] = 42, - [72] = 42, - [73] = 42, + [71] = 43, + [72] = 44, + [73] = 43, [74] = 46, - [75] = 42, - [76] = 43, - [77] = 42, - [78] = 43, - [79] = 62, - [80] = 80, - [81] = 46, - [82] = 82, - [83] = 42, - [84] = 62, - [85] = 46, - [86] = 46, - [87] = 42, - [88] = 38, - [89] = 46, - [90] = 46, - [91] = 46, - [92] = 62, - [93] = 62, - [94] = 46, - [95] = 46, - [96] = 42, - [97] = 42, + [75] = 57, + [76] = 44, + [77] = 43, + [78] = 46, + [79] = 43, + [80] = 43, + [81] = 44, + [82] = 44, + [83] = 43, + [84] = 46, + [85] = 44, + [86] = 44, + [87] = 87, + [88] = 43, + [89] = 44, + [90] = 44, + [91] = 43, + [92] = 43, + [93] = 43, + [94] = 44, + [95] = 44, + [96] = 44, + [97] = 97, [98] = 98, [99] = 99, [100] = 100, @@ -4813,31 +4820,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [102] = 102, [103] = 103, [104] = 104, - [105] = 104, - [106] = 101, - [107] = 100, - [108] = 102, - [109] = 103, - [110] = 102, - [111] = 101, - [112] = 103, - [113] = 102, - [114] = 104, + [105] = 100, + [106] = 103, + [107] = 102, + [108] = 104, + [109] = 101, + [110] = 104, + [111] = 103, + [112] = 101, + [113] = 104, + [114] = 100, [115] = 103, - [116] = 104, - [117] = 103, + [116] = 101, + [117] = 104, [118] = 102, [119] = 101, - [120] = 100, - [121] = 101, - [122] = 100, - [123] = 104, + [120] = 102, + [121] = 103, + [122] = 102, + [123] = 100, [124] = 100, - [125] = 101, - [126] = 103, - [127] = 102, - [128] = 104, - [129] = 100, + [125] = 103, + [126] = 104, + [127] = 100, + [128] = 101, + [129] = 102, [130] = 130, [131] = 130, [132] = 130, @@ -4847,10 +4854,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [136] = 130, [137] = 137, [138] = 138, - [139] = 139, + [139] = 138, [140] = 138, [141] = 138, - [142] = 138, + [142] = 142, [143] = 138, [144] = 138, [145] = 138, @@ -4859,159 +4866,159 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [148] = 148, [149] = 148, [150] = 148, - [151] = 148, + [151] = 151, [152] = 152, [153] = 153, - [154] = 154, + [154] = 152, [155] = 152, [156] = 152, [157] = 157, [158] = 152, - [159] = 152, + [159] = 159, [160] = 160, [161] = 161, [162] = 162, - [163] = 163, + [163] = 162, [164] = 164, - [165] = 160, - [166] = 152, - [167] = 167, - [168] = 168, - [169] = 169, - [170] = 170, - [171] = 169, - [172] = 167, - [173] = 162, - [174] = 162, - [175] = 160, - [176] = 170, - [177] = 170, - [178] = 163, - [179] = 163, - [180] = 170, - [181] = 160, - [182] = 182, + [165] = 165, + [166] = 166, + [167] = 162, + [168] = 166, + [169] = 165, + [170] = 161, + [171] = 164, + [172] = 166, + [173] = 164, + [174] = 159, + [175] = 159, + [176] = 160, + [177] = 177, + [178] = 159, + [179] = 161, + [180] = 180, + [181] = 159, + [182] = 177, [183] = 160, - [184] = 164, - [185] = 161, - [186] = 164, + [184] = 162, + [185] = 180, + [186] = 186, [187] = 161, - [188] = 168, - [189] = 168, - [190] = 162, - [191] = 167, - [192] = 169, - [193] = 170, - [194] = 169, - [195] = 167, - [196] = 162, - [197] = 162, - [198] = 168, - [199] = 163, - [200] = 161, + [188] = 186, + [189] = 164, + [190] = 177, + [191] = 186, + [192] = 166, + [193] = 180, + [194] = 166, + [195] = 165, + [196] = 177, + [197] = 164, + [198] = 165, + [199] = 164, + [200] = 160, [201] = 160, - [202] = 168, - [203] = 163, + [202] = 161, + [203] = 160, [204] = 161, - [205] = 164, - [206] = 182, - [207] = 182, - [208] = 170, - [209] = 168, - [210] = 169, - [211] = 163, + [205] = 159, + [206] = 165, + [207] = 152, + [208] = 161, + [209] = 166, + [210] = 162, + [211] = 162, [212] = 164, - [213] = 163, - [214] = 167, - [215] = 162, - [216] = 170, - [217] = 161, - [218] = 160, - [219] = 164, - [220] = 164, - [221] = 161, - [222] = 168, - [223] = 182, - [224] = 169, - [225] = 167, - [226] = 182, - [227] = 167, - [228] = 182, - [229] = 169, - [230] = 152, + [213] = 166, + [214] = 165, + [215] = 177, + [216] = 186, + [217] = 186, + [218] = 180, + [219] = 162, + [220] = 186, + [221] = 186, + [222] = 177, + [223] = 165, + [224] = 177, + [225] = 180, + [226] = 180, + [227] = 160, + [228] = 180, + [229] = 152, + [230] = 230, [231] = 231, - [232] = 232, + [232] = 152, [233] = 233, - [234] = 152, + [234] = 234, [235] = 235, - [236] = 236, - [237] = 231, - [238] = 153, - [239] = 239, - [240] = 240, - [241] = 232, - [242] = 154, - [243] = 243, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 247, + [236] = 235, + [237] = 237, + [238] = 237, + [239] = 235, + [240] = 153, + [241] = 237, + [242] = 235, + [243] = 237, + [244] = 237, + [245] = 230, + [246] = 235, + [247] = 237, [248] = 248, - [249] = 247, - [250] = 250, - [251] = 251, - [252] = 248, - [253] = 253, - [254] = 247, - [255] = 255, - [256] = 256, - [257] = 248, - [258] = 248, - [259] = 259, - [260] = 260, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 247, - [267] = 233, - [268] = 268, + [249] = 237, + [250] = 237, + [251] = 235, + [252] = 252, + [253] = 237, + [254] = 237, + [255] = 235, + [256] = 235, + [257] = 235, + [258] = 231, + [259] = 235, + [260] = 151, + [261] = 235, + [262] = 237, + [263] = 237, + [264] = 237, + [265] = 235, + [266] = 237, + [267] = 235, + [268] = 235, [269] = 269, - [270] = 270, - [271] = 271, + [270] = 235, + [271] = 237, [272] = 272, [273] = 273, [274] = 274, [275] = 275, [276] = 276, - [277] = 248, + [277] = 277, [278] = 278, - [279] = 248, - [280] = 247, - [281] = 248, - [282] = 248, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, [283] = 283, - [284] = 247, + [284] = 284, [285] = 285, [286] = 286, - [287] = 247, + [287] = 287, [288] = 288, [289] = 289, [290] = 290, - [291] = 248, - [292] = 247, - [293] = 248, - [294] = 247, - [295] = 248, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, [296] = 296, [297] = 297, [298] = 298, [299] = 299, [300] = 300, - [301] = 248, - [302] = 248, - [303] = 247, + [301] = 301, + [302] = 302, + [303] = 303, [304] = 304, [305] = 305, [306] = 306, @@ -5023,29 +5030,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [312] = 312, [313] = 313, [314] = 314, - [315] = 235, + [315] = 315, [316] = 316, [317] = 317, [318] = 318, [319] = 319, - [320] = 247, + [320] = 320, [321] = 321, - [322] = 248, - [323] = 247, - [324] = 324, + [322] = 322, + [323] = 323, + [324] = 233, [325] = 325, [326] = 326, [327] = 327, [328] = 328, - [329] = 248, + [329] = 329, [330] = 330, [331] = 331, - [332] = 247, + [332] = 332, [333] = 333, [334] = 334, - [335] = 247, - [336] = 247, - [337] = 337, + [335] = 335, + [336] = 336, + [337] = 234, [338] = 338, [339] = 339, [340] = 340, @@ -5056,1055 +5063,1055 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [345] = 345, [346] = 346, [347] = 347, - [348] = 231, + [348] = 230, [349] = 349, - [350] = 153, - [351] = 239, - [352] = 352, + [350] = 231, + [351] = 153, + [352] = 231, [353] = 353, [354] = 354, - [355] = 232, + [355] = 151, [356] = 356, [357] = 357, - [358] = 232, + [358] = 358, [359] = 359, - [360] = 360, - [361] = 240, + [360] = 269, + [361] = 361, [362] = 362, - [363] = 363, - [364] = 364, + [363] = 231, + [364] = 357, [365] = 365, [366] = 366, - [367] = 367, - [368] = 352, + [367] = 366, + [368] = 368, [369] = 369, [370] = 370, - [371] = 371, - [372] = 372, + [371] = 366, + [372] = 248, [373] = 373, [374] = 374, [375] = 375, [376] = 376, [377] = 377, [378] = 378, - [379] = 379, - [380] = 380, + [379] = 230, + [380] = 357, [381] = 381, [382] = 382, [383] = 383, [384] = 384, - [385] = 154, + [385] = 385, [386] = 386, [387] = 387, [388] = 388, [389] = 389, - [390] = 352, + [390] = 390, [391] = 391, [392] = 392, [393] = 393, - [394] = 231, - [395] = 356, + [394] = 394, + [395] = 395, [396] = 396, [397] = 397, [398] = 398, - [399] = 356, - [400] = 352, + [399] = 399, + [400] = 400, [401] = 401, - [402] = 236, - [403] = 403, - [404] = 404, - [405] = 405, + [402] = 402, + [403] = 230, + [404] = 252, + [405] = 366, [406] = 406, [407] = 407, [408] = 408, [409] = 409, [410] = 410, [411] = 411, - [412] = 412, + [412] = 357, [413] = 413, - [414] = 231, + [414] = 414, [415] = 415, [416] = 416, [417] = 417, - [418] = 232, + [418] = 418, [419] = 419, [420] = 420, [421] = 421, [422] = 422, - [423] = 356, + [423] = 423, [424] = 424, [425] = 425, - [426] = 426, - [427] = 250, - [428] = 428, - [429] = 297, - [430] = 341, - [431] = 342, - [432] = 343, - [433] = 285, - [434] = 298, - [435] = 304, - [436] = 344, - [437] = 345, - [438] = 346, - [439] = 233, - [440] = 440, - [441] = 259, - [442] = 300, - [443] = 299, - [444] = 268, - [445] = 445, - [446] = 264, - [447] = 305, - [448] = 283, - [449] = 243, - [450] = 290, - [451] = 314, - [452] = 289, - [453] = 288, - [454] = 340, - [455] = 273, - [456] = 339, - [457] = 286, - [458] = 334, - [459] = 333, - [460] = 276, - [461] = 260, - [462] = 331, - [463] = 330, - [464] = 328, - [465] = 246, - [466] = 296, - [467] = 310, - [468] = 327, - [469] = 235, - [470] = 233, - [471] = 313, - [472] = 255, - [473] = 256, - [474] = 326, - [475] = 325, - [476] = 324, - [477] = 235, - [478] = 321, - [479] = 319, - [480] = 251, - [481] = 318, - [482] = 245, - [483] = 317, - [484] = 261, - [485] = 316, - [486] = 312, - [487] = 263, - [488] = 278, - [489] = 311, - [490] = 275, - [491] = 309, - [492] = 253, - [493] = 308, - [494] = 244, - [495] = 307, - [496] = 265, - [497] = 269, - [498] = 306, - [499] = 271, - [500] = 274, - [501] = 272, - [502] = 262, - [503] = 338, - [504] = 337, - [505] = 270, - [506] = 153, - [507] = 409, - [508] = 236, - [509] = 401, - [510] = 510, - [511] = 364, - [512] = 510, - [513] = 369, - [514] = 365, - [515] = 370, - [516] = 389, - [517] = 381, - [518] = 384, - [519] = 154, - [520] = 393, - [521] = 367, - [522] = 377, - [523] = 154, - [524] = 404, - [525] = 415, - [526] = 239, - [527] = 510, - [528] = 510, - [529] = 240, - [530] = 363, - [531] = 376, - [532] = 239, - [533] = 362, - [534] = 236, - [535] = 510, - [536] = 359, - [537] = 403, - [538] = 408, - [539] = 354, - [540] = 412, - [541] = 510, - [542] = 353, - [543] = 510, - [544] = 406, - [545] = 357, - [546] = 407, - [547] = 417, - [548] = 347, - [549] = 413, - [550] = 510, - [551] = 153, - [552] = 420, - [553] = 349, - [554] = 240, - [555] = 510, - [556] = 424, - [557] = 510, - [558] = 388, - [559] = 510, - [560] = 410, - [561] = 421, - [562] = 373, - [563] = 398, - [564] = 416, - [565] = 411, - [566] = 510, - [567] = 380, - [568] = 240, - [569] = 383, - [570] = 379, - [571] = 382, - [572] = 510, - [573] = 392, - [574] = 510, - [575] = 425, - [576] = 510, - [577] = 510, - [578] = 378, - [579] = 510, - [580] = 374, - [581] = 426, - [582] = 386, - [583] = 510, - [584] = 366, - [585] = 236, - [586] = 422, - [587] = 397, - [588] = 396, - [589] = 387, - [590] = 391, - [591] = 375, - [592] = 371, - [593] = 239, - [594] = 419, - [595] = 372, - [596] = 360, - [597] = 510, - [598] = 405, - [599] = 343, - [600] = 288, - [601] = 297, - [602] = 285, + [426] = 305, + [427] = 291, + [428] = 233, + [429] = 293, + [430] = 286, + [431] = 311, + [432] = 327, + [433] = 290, + [434] = 234, + [435] = 345, + [436] = 436, + [437] = 330, + [438] = 340, + [439] = 342, + [440] = 322, + [441] = 279, + [442] = 278, + [443] = 443, + [444] = 233, + [445] = 276, + [446] = 329, + [447] = 289, + [448] = 448, + [449] = 325, + [450] = 332, + [451] = 312, + [452] = 333, + [453] = 331, + [454] = 319, + [455] = 334, + [456] = 323, + [457] = 306, + [458] = 272, + [459] = 302, + [460] = 298, + [461] = 297, + [462] = 328, + [463] = 335, + [464] = 343, + [465] = 344, + [466] = 294, + [467] = 317, + [468] = 339, + [469] = 296, + [470] = 282, + [471] = 292, + [472] = 281, + [473] = 277, + [474] = 275, + [475] = 274, + [476] = 287, + [477] = 288, + [478] = 283, + [479] = 273, + [480] = 310, + [481] = 280, + [482] = 315, + [483] = 284, + [484] = 285, + [485] = 295, + [486] = 314, + [487] = 300, + [488] = 316, + [489] = 326, + [490] = 318, + [491] = 341, + [492] = 303, + [493] = 336, + [494] = 320, + [495] = 234, + [496] = 299, + [497] = 301, + [498] = 304, + [499] = 321, + [500] = 338, + [501] = 307, + [502] = 308, + [503] = 309, + [504] = 313, + [505] = 151, + [506] = 506, + [507] = 506, + [508] = 252, + [509] = 410, + [510] = 506, + [511] = 423, + [512] = 506, + [513] = 395, + [514] = 506, + [515] = 151, + [516] = 153, + [517] = 388, + [518] = 506, + [519] = 386, + [520] = 252, + [521] = 506, + [522] = 393, + [523] = 252, + [524] = 506, + [525] = 419, + [526] = 415, + [527] = 411, + [528] = 378, + [529] = 409, + [530] = 376, + [531] = 506, + [532] = 356, + [533] = 354, + [534] = 506, + [535] = 361, + [536] = 362, + [537] = 424, + [538] = 397, + [539] = 506, + [540] = 425, + [541] = 420, + [542] = 370, + [543] = 375, + [544] = 365, + [545] = 369, + [546] = 506, + [547] = 373, + [548] = 374, + [549] = 383, + [550] = 387, + [551] = 391, + [552] = 506, + [553] = 248, + [554] = 248, + [555] = 506, + [556] = 347, + [557] = 506, + [558] = 408, + [559] = 377, + [560] = 506, + [561] = 394, + [562] = 359, + [563] = 153, + [564] = 390, + [565] = 389, + [566] = 385, + [567] = 248, + [568] = 384, + [569] = 382, + [570] = 381, + [571] = 269, + [572] = 413, + [573] = 399, + [574] = 506, + [575] = 396, + [576] = 349, + [577] = 368, + [578] = 402, + [579] = 401, + [580] = 506, + [581] = 414, + [582] = 346, + [583] = 416, + [584] = 418, + [585] = 421, + [586] = 269, + [587] = 398, + [588] = 269, + [589] = 407, + [590] = 406, + [591] = 422, + [592] = 400, + [593] = 392, + [594] = 358, + [595] = 506, + [596] = 353, + [597] = 417, + [598] = 332, + [599] = 298, + [600] = 328, + [601] = 318, + [602] = 319, [603] = 603, - [604] = 261, - [605] = 605, - [606] = 278, - [607] = 274, - [608] = 244, - [609] = 263, - [610] = 271, - [611] = 296, - [612] = 269, - [613] = 304, - [614] = 285, - [615] = 337, - [616] = 269, - [617] = 251, - [618] = 260, - [619] = 265, - [620] = 253, - [621] = 338, - [622] = 278, - [623] = 306, - [624] = 307, - [625] = 253, - [626] = 314, - [627] = 245, - [628] = 308, - [629] = 605, - [630] = 309, - [631] = 310, - [632] = 298, - [633] = 311, - [634] = 312, - [635] = 316, - [636] = 305, - [637] = 317, - [638] = 262, - [639] = 274, - [640] = 318, - [641] = 319, - [642] = 273, - [643] = 271, - [644] = 321, - [645] = 256, - [646] = 255, - [647] = 324, - [648] = 325, - [649] = 326, - [650] = 327, - [651] = 275, - [652] = 328, - [653] = 653, - [654] = 276, - [655] = 286, - [656] = 313, - [657] = 330, - [658] = 288, - [659] = 331, - [660] = 272, - [661] = 289, - [662] = 333, - [663] = 285, - [664] = 334, - [665] = 250, - [666] = 339, - [667] = 290, - [668] = 340, - [669] = 243, - [670] = 341, - [671] = 342, - [672] = 343, - [673] = 344, - [674] = 338, - [675] = 283, - [676] = 337, - [677] = 264, - [678] = 268, - [679] = 679, - [680] = 337, - [681] = 338, - [682] = 345, - [683] = 299, - [684] = 346, - [685] = 259, - [686] = 300, - [687] = 300, - [688] = 259, - [689] = 299, - [690] = 346, - [691] = 268, - [692] = 264, - [693] = 283, - [694] = 345, - [695] = 243, - [696] = 290, - [697] = 305, - [698] = 289, - [699] = 344, - [700] = 343, - [701] = 342, - [702] = 341, - [703] = 288, - [704] = 255, - [705] = 286, - [706] = 276, - [707] = 275, - [708] = 273, - [709] = 270, - [710] = 262, - [711] = 269, - [712] = 340, - [713] = 265, - [714] = 339, - [715] = 244, - [716] = 263, - [717] = 334, - [718] = 718, - [719] = 261, - [720] = 720, - [721] = 603, - [722] = 333, - [723] = 331, - [724] = 724, - [725] = 298, - [726] = 245, - [727] = 297, - [728] = 330, - [729] = 328, - [730] = 327, - [731] = 326, - [732] = 296, - [733] = 325, - [734] = 256, - [735] = 255, - [736] = 324, - [737] = 321, - [738] = 250, - [739] = 319, - [740] = 318, - [741] = 317, - [742] = 316, - [743] = 312, - [744] = 311, - [745] = 304, - [746] = 256, - [747] = 310, - [748] = 251, + [604] = 316, + [605] = 299, + [606] = 319, + [607] = 336, + [608] = 304, + [609] = 315, + [610] = 310, + [611] = 301, + [612] = 305, + [613] = 613, + [614] = 329, + [615] = 308, + [616] = 277, + [617] = 307, + [618] = 277, + [619] = 318, + [620] = 332, + [621] = 309, + [622] = 327, + [623] = 313, + [624] = 316, + [625] = 315, + [626] = 310, + [627] = 307, + [628] = 290, + [629] = 303, + [630] = 286, + [631] = 328, + [632] = 286, + [633] = 314, + [634] = 333, + [635] = 335, + [636] = 311, + [637] = 343, + [638] = 279, + [639] = 344, + [640] = 317, + [641] = 278, + [642] = 339, + [643] = 318, + [644] = 296, + [645] = 293, + [646] = 279, + [647] = 278, + [648] = 320, + [649] = 316, + [650] = 315, + [651] = 292, + [652] = 321, + [653] = 310, + [654] = 283, + [655] = 311, + [656] = 273, + [657] = 280, + [658] = 319, + [659] = 289, + [660] = 284, + [661] = 285, + [662] = 343, + [663] = 295, + [664] = 300, + [665] = 326, + [666] = 276, + [667] = 341, + [668] = 303, + [669] = 336, + [670] = 344, + [671] = 307, + [672] = 290, + [673] = 673, + [674] = 332, + [675] = 299, + [676] = 301, + [677] = 304, + [678] = 330, + [679] = 305, + [680] = 308, + [681] = 309, + [682] = 313, + [683] = 333, + [684] = 314, + [685] = 327, + [686] = 329, + [687] = 320, + [688] = 317, + [689] = 321, + [690] = 338, + [691] = 339, + [692] = 286, + [693] = 693, + [694] = 291, + [695] = 695, + [696] = 288, + [697] = 296, + [698] = 603, + [699] = 287, + [700] = 293, + [701] = 274, + [702] = 702, + [703] = 341, + [704] = 345, + [705] = 279, + [706] = 275, + [707] = 335, + [708] = 292, + [709] = 278, + [710] = 281, + [711] = 282, + [712] = 283, + [713] = 294, + [714] = 333, + [715] = 327, + [716] = 297, + [717] = 298, + [718] = 329, + [719] = 302, + [720] = 273, + [721] = 272, + [722] = 306, + [723] = 280, + [724] = 323, + [725] = 284, + [726] = 312, + [727] = 334, + [728] = 331, + [729] = 285, + [730] = 295, + [731] = 300, + [732] = 322, + [733] = 326, + [734] = 345, + [735] = 290, + [736] = 343, + [737] = 344, + [738] = 342, + [739] = 331, + [740] = 340, + [741] = 334, + [742] = 330, + [743] = 317, + [744] = 695, + [745] = 325, + [746] = 341, + [747] = 323, + [748] = 303, [749] = 306, - [750] = 309, - [751] = 260, - [752] = 308, - [753] = 307, - [754] = 307, - [755] = 308, + [750] = 336, + [751] = 603, + [752] = 276, + [753] = 339, + [754] = 299, + [755] = 340, [756] = 296, - [757] = 306, - [758] = 297, - [759] = 298, - [760] = 250, - [761] = 270, - [762] = 309, - [763] = 310, + [757] = 613, + [758] = 293, + [759] = 301, + [760] = 304, + [761] = 695, + [762] = 305, + [763] = 292, [764] = 311, - [765] = 724, - [766] = 312, - [767] = 316, - [768] = 317, - [769] = 318, - [770] = 603, - [771] = 319, - [772] = 321, - [773] = 278, - [774] = 324, + [765] = 308, + [766] = 309, + [767] = 342, + [768] = 283, + [769] = 273, + [770] = 312, + [771] = 272, + [772] = 302, + [773] = 325, + [774] = 695, [775] = 313, - [776] = 325, - [777] = 326, - [778] = 327, - [779] = 265, + [776] = 314, + [777] = 603, + [778] = 320, + [779] = 335, [780] = 328, - [781] = 274, - [782] = 271, - [783] = 244, - [784] = 330, - [785] = 262, - [786] = 331, - [787] = 333, - [788] = 245, - [789] = 334, - [790] = 339, - [791] = 340, - [792] = 270, - [793] = 341, - [794] = 304, - [795] = 342, - [796] = 344, - [797] = 273, - [798] = 275, - [799] = 246, - [800] = 345, - [801] = 346, - [802] = 259, - [803] = 300, - [804] = 305, - [805] = 299, - [806] = 313, - [807] = 724, - [808] = 268, - [809] = 272, - [810] = 314, - [811] = 264, - [812] = 263, - [813] = 283, - [814] = 261, - [815] = 289, - [816] = 816, - [817] = 276, - [818] = 260, - [819] = 246, - [820] = 286, - [821] = 290, - [822] = 314, - [823] = 253, - [824] = 251, - [825] = 272, - [826] = 724, - [827] = 603, - [828] = 246, - [829] = 243, - [830] = 380, - [831] = 371, - [832] = 426, - [833] = 415, - [834] = 425, - [835] = 376, - [836] = 363, - [837] = 424, - [838] = 420, - [839] = 383, - [840] = 349, - [841] = 410, - [842] = 366, - [843] = 371, - [844] = 364, - [845] = 365, - [846] = 409, - [847] = 401, - [848] = 413, - [849] = 375, + [781] = 325, + [782] = 276, + [783] = 280, + [784] = 284, + [785] = 289, + [786] = 321, + [787] = 312, + [788] = 338, + [789] = 340, + [790] = 790, + [791] = 342, + [792] = 291, + [793] = 322, + [794] = 285, + [795] = 288, + [796] = 322, + [797] = 287, + [798] = 274, + [799] = 297, + [800] = 294, + [801] = 282, + [802] = 281, + [803] = 275, + [804] = 275, + [805] = 345, + [806] = 281, + [807] = 282, + [808] = 289, + [809] = 277, + [810] = 274, + [811] = 295, + [812] = 294, + [813] = 297, + [814] = 298, + [815] = 302, + [816] = 287, + [817] = 300, + [818] = 326, + [819] = 330, + [820] = 272, + [821] = 306, + [822] = 323, + [823] = 288, + [824] = 334, + [825] = 291, + [826] = 826, + [827] = 338, + [828] = 331, + [829] = 362, + [830] = 393, + [831] = 382, + [832] = 381, + [833] = 377, + [834] = 386, + [835] = 407, + [836] = 406, + [837] = 422, + [838] = 375, + [839] = 400, + [840] = 392, + [841] = 358, + [842] = 353, + [843] = 370, + [844] = 233, + [845] = 359, + [846] = 375, + [847] = 393, + [848] = 381, + [849] = 382, [850] = 370, - [851] = 389, - [852] = 379, - [853] = 398, - [854] = 415, - [855] = 411, - [856] = 246, - [857] = 410, - [858] = 393, - [859] = 406, - [860] = 360, - [861] = 417, - [862] = 357, - [863] = 373, - [864] = 398, - [865] = 362, - [866] = 347, - [867] = 359, - [868] = 403, - [869] = 354, - [870] = 381, - [871] = 397, - [872] = 379, - [873] = 347, - [874] = 233, - [875] = 392, - [876] = 406, - [877] = 408, - [878] = 411, - [879] = 407, - [880] = 391, - [881] = 396, - [882] = 363, - [883] = 409, - [884] = 376, + [851] = 384, + [852] = 394, + [853] = 383, + [854] = 374, + [855] = 385, + [856] = 389, + [857] = 390, + [858] = 346, + [859] = 290, + [860] = 394, + [861] = 408, + [862] = 373, + [863] = 347, + [864] = 369, + [865] = 385, + [866] = 362, + [867] = 386, + [868] = 391, + [869] = 388, + [870] = 391, + [871] = 387, + [872] = 399, + [873] = 383, + [874] = 374, + [875] = 373, + [876] = 396, + [877] = 413, + [878] = 349, + [879] = 369, + [880] = 399, + [881] = 365, + [882] = 413, + [883] = 420, + [884] = 425, [885] = 377, - [886] = 407, - [887] = 353, - [888] = 401, - [889] = 375, - [890] = 357, - [891] = 387, - [892] = 235, - [893] = 382, - [894] = 393, - [895] = 389, - [896] = 369, - [897] = 413, - [898] = 370, - [899] = 365, - [900] = 367, - [901] = 420, - [902] = 364, - [903] = 362, - [904] = 424, - [905] = 425, - [906] = 391, - [907] = 421, - [908] = 359, - [909] = 354, - [910] = 386, - [911] = 353, - [912] = 387, - [913] = 374, - [914] = 426, - [915] = 378, - [916] = 419, - [917] = 416, - [918] = 417, - [919] = 416, - [920] = 405, - [921] = 412, - [922] = 404, - [923] = 388, - [924] = 378, - [925] = 397, - [926] = 367, - [927] = 384, - [928] = 392, - [929] = 369, - [930] = 383, - [931] = 396, - [932] = 388, - [933] = 373, - [934] = 404, - [935] = 405, - [936] = 421, - [937] = 419, - [938] = 422, - [939] = 377, - [940] = 384, - [941] = 412, - [942] = 360, - [943] = 403, - [944] = 408, - [945] = 382, - [946] = 366, - [947] = 372, - [948] = 372, - [949] = 381, - [950] = 386, - [951] = 374, - [952] = 422, - [953] = 380, - [954] = 349, - [955] = 816, - [956] = 152, - [957] = 415, - [958] = 424, + [886] = 424, + [887] = 389, + [888] = 424, + [889] = 368, + [890] = 365, + [891] = 397, + [892] = 387, + [893] = 384, + [894] = 359, + [895] = 368, + [896] = 361, + [897] = 408, + [898] = 414, + [899] = 390, + [900] = 402, + [901] = 418, + [902] = 416, + [903] = 401, + [904] = 417, + [905] = 423, + [906] = 398, + [907] = 347, + [908] = 410, + [909] = 419, + [910] = 421, + [911] = 415, + [912] = 411, + [913] = 346, + [914] = 418, + [915] = 396, + [916] = 349, + [917] = 407, + [918] = 406, + [919] = 354, + [920] = 353, + [921] = 395, + [922] = 414, + [923] = 416, + [924] = 417, + [925] = 361, + [926] = 419, + [927] = 356, + [928] = 395, + [929] = 358, + [930] = 376, + [931] = 378, + [932] = 422, + [933] = 409, + [934] = 400, + [935] = 415, + [936] = 411, + [937] = 397, + [938] = 378, + [939] = 376, + [940] = 409, + [941] = 402, + [942] = 401, + [943] = 410, + [944] = 356, + [945] = 423, + [946] = 398, + [947] = 354, + [948] = 392, + [949] = 234, + [950] = 388, + [951] = 425, + [952] = 421, + [953] = 420, + [954] = 152, + [955] = 673, + [956] = 369, + [957] = 382, + [958] = 958, [959] = 959, - [960] = 387, - [961] = 407, - [962] = 962, - [963] = 367, - [964] = 369, - [965] = 152, - [966] = 371, + [960] = 960, + [961] = 383, + [962] = 374, + [963] = 958, + [964] = 964, + [965] = 346, + [966] = 958, [967] = 152, - [968] = 962, - [969] = 816, - [970] = 962, - [971] = 971, - [972] = 406, - [973] = 971, - [974] = 416, - [975] = 417, - [976] = 962, - [977] = 971, - [978] = 419, - [979] = 354, - [980] = 962, - [981] = 359, - [982] = 362, - [983] = 364, - [984] = 422, - [985] = 396, - [986] = 971, - [987] = 386, - [988] = 426, - [989] = 971, - [990] = 365, - [991] = 962, - [992] = 381, - [993] = 425, - [994] = 401, + [968] = 418, + [969] = 373, + [970] = 958, + [971] = 395, + [972] = 347, + [973] = 393, + [974] = 422, + [975] = 960, + [976] = 417, + [977] = 673, + [978] = 960, + [979] = 400, + [980] = 958, + [981] = 392, + [982] = 416, + [983] = 414, + [984] = 408, + [985] = 386, + [986] = 359, + [987] = 387, + [988] = 960, + [989] = 958, + [990] = 958, + [991] = 361, + [992] = 362, + [993] = 960, + [994] = 406, [995] = 388, [996] = 349, - [997] = 971, - [998] = 404, - [999] = 373, - [1000] = 971, - [1001] = 384, - [1002] = 409, - [1003] = 962, - [1004] = 370, - [1005] = 366, - [1006] = 962, - [1007] = 405, - [1008] = 372, - [1009] = 411, - [1010] = 962, - [1011] = 398, - [1012] = 376, - [1013] = 410, - [1014] = 375, - [1015] = 971, - [1016] = 962, - [1017] = 392, - [1018] = 347, - [1019] = 357, - [1020] = 377, - [1021] = 363, - [1022] = 353, - [1023] = 379, - [1024] = 421, - [1025] = 1025, - [1026] = 971, - [1027] = 383, - [1028] = 391, - [1029] = 962, - [1030] = 382, - [1031] = 420, - [1032] = 389, - [1033] = 393, - [1034] = 360, - [1035] = 413, - [1036] = 962, - [1037] = 971, - [1038] = 1038, - [1039] = 397, - [1040] = 380, - [1041] = 412, - [1042] = 408, - [1043] = 971, - [1044] = 378, - [1045] = 816, - [1046] = 374, - [1047] = 403, - [1048] = 971, + [997] = 391, + [998] = 960, + [999] = 960, + [1000] = 396, + [1001] = 407, + [1002] = 424, + [1003] = 397, + [1004] = 368, + [1005] = 409, + [1006] = 398, + [1007] = 425, + [1008] = 958, + [1009] = 365, + [1010] = 354, + [1011] = 402, + [1012] = 353, + [1013] = 960, + [1014] = 401, + [1015] = 958, + [1016] = 356, + [1017] = 421, + [1018] = 378, + [1019] = 376, + [1020] = 960, + [1021] = 358, + [1022] = 370, + [1023] = 375, + [1024] = 420, + [1025] = 411, + [1026] = 415, + [1027] = 377, + [1028] = 381, + [1029] = 960, + [1030] = 958, + [1031] = 384, + [1032] = 385, + [1033] = 389, + [1034] = 390, + [1035] = 1035, + [1036] = 423, + [1037] = 410, + [1038] = 419, + [1039] = 394, + [1040] = 958, + [1041] = 960, + [1042] = 399, + [1043] = 960, + [1044] = 673, + [1045] = 958, + [1046] = 413, + [1047] = 152, + [1048] = 152, [1049] = 152, [1050] = 152, [1051] = 152, - [1052] = 152, + [1052] = 1052, [1053] = 1053, - [1054] = 1054, - [1055] = 1054, - [1056] = 1056, - [1057] = 1056, - [1058] = 1056, - [1059] = 1056, - [1060] = 1056, - [1061] = 1056, - [1062] = 1056, - [1063] = 1056, - [1064] = 1056, + [1054] = 1053, + [1055] = 1055, + [1056] = 1055, + [1057] = 1055, + [1058] = 1055, + [1059] = 1055, + [1060] = 1055, + [1061] = 1055, + [1062] = 1055, + [1063] = 1055, + [1064] = 1064, [1065] = 1065, [1066] = 1066, - [1067] = 1067, - [1068] = 1067, - [1069] = 1067, - [1070] = 1067, - [1071] = 1067, - [1072] = 1067, - [1073] = 1067, - [1074] = 1067, - [1075] = 1067, - [1076] = 1076, + [1067] = 1066, + [1068] = 1066, + [1069] = 1066, + [1070] = 1066, + [1071] = 1066, + [1072] = 1066, + [1073] = 1066, + [1074] = 1066, + [1075] = 1075, + [1076] = 230, [1077] = 231, - [1078] = 232, - [1079] = 1079, + [1078] = 1078, + [1079] = 1078, [1080] = 1080, [1081] = 1081, [1082] = 1080, - [1083] = 1083, + [1083] = 1078, [1084] = 1084, - [1085] = 1081, + [1085] = 1084, [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1081, - [1090] = 1084, - [1091] = 1087, - [1092] = 1081, + [1087] = 1078, + [1088] = 1086, + [1089] = 1080, + [1090] = 1081, + [1091] = 1091, + [1092] = 1092, [1093] = 1093, - [1094] = 1093, + [1094] = 1094, [1095] = 1095, - [1096] = 1081, + [1096] = 1094, [1097] = 1097, - [1098] = 1080, + [1098] = 1078, [1099] = 1080, - [1100] = 1079, - [1101] = 1080, - [1102] = 153, - [1103] = 239, - [1104] = 1104, - [1105] = 236, - [1106] = 1104, - [1107] = 240, - [1108] = 154, - [1109] = 263, - [1110] = 259, - [1111] = 265, - [1112] = 307, - [1113] = 338, - [1114] = 305, - [1115] = 314, - [1116] = 251, - [1117] = 1065, - [1118] = 244, - [1119] = 304, - [1120] = 261, - [1121] = 298, - [1122] = 262, - [1123] = 297, - [1124] = 337, - [1125] = 260, - [1126] = 270, - [1127] = 273, - [1128] = 275, - [1129] = 296, - [1130] = 276, - [1131] = 286, - [1132] = 250, - [1133] = 288, - [1134] = 271, - [1135] = 274, - [1136] = 289, - [1137] = 290, - [1138] = 243, - [1139] = 283, - [1140] = 313, - [1141] = 278, - [1142] = 264, - [1143] = 268, - [1144] = 299, - [1145] = 300, - [1146] = 272, - [1147] = 269, - [1148] = 346, - [1149] = 345, - [1150] = 255, - [1151] = 344, - [1152] = 343, - [1153] = 342, - [1154] = 341, - [1155] = 340, - [1156] = 253, - [1157] = 339, - [1158] = 285, - [1159] = 334, - [1160] = 333, - [1161] = 331, - [1162] = 330, - [1163] = 328, - [1164] = 327, - [1165] = 326, - [1166] = 325, - [1167] = 324, - [1168] = 321, - [1169] = 319, - [1170] = 318, - [1171] = 317, - [1172] = 1066, - [1173] = 316, - [1174] = 306, - [1175] = 312, - [1176] = 1076, - [1177] = 311, - [1178] = 245, - [1179] = 310, - [1180] = 256, - [1181] = 309, - [1182] = 308, + [1100] = 1080, + [1101] = 153, + [1102] = 1102, + [1103] = 1102, + [1104] = 248, + [1105] = 252, + [1106] = 269, + [1107] = 151, + [1108] = 318, + [1109] = 303, + [1110] = 331, + [1111] = 334, + [1112] = 323, + [1113] = 306, + [1114] = 272, + [1115] = 302, + [1116] = 298, + [1117] = 297, + [1118] = 275, + [1119] = 325, + [1120] = 274, + [1121] = 332, + [1122] = 287, + [1123] = 333, + [1124] = 288, + [1125] = 291, + [1126] = 338, + [1127] = 321, + [1128] = 320, + [1129] = 314, + [1130] = 313, + [1131] = 309, + [1132] = 308, + [1133] = 1064, + [1134] = 305, + [1135] = 304, + [1136] = 301, + [1137] = 282, + [1138] = 299, + [1139] = 336, + [1140] = 311, + [1141] = 281, + [1142] = 341, + [1143] = 326, + [1144] = 300, + [1145] = 295, + [1146] = 285, + [1147] = 284, + [1148] = 280, + [1149] = 273, + [1150] = 283, + [1151] = 292, + [1152] = 293, + [1153] = 296, + [1154] = 339, + [1155] = 1075, + [1156] = 317, + [1157] = 344, + [1158] = 343, + [1159] = 327, + [1160] = 335, + [1161] = 289, + [1162] = 319, + [1163] = 312, + [1164] = 328, + [1165] = 278, + [1166] = 1065, + [1167] = 279, + [1168] = 286, + [1169] = 294, + [1170] = 322, + [1171] = 342, + [1172] = 340, + [1173] = 307, + [1174] = 330, + [1175] = 276, + [1176] = 345, + [1177] = 277, + [1178] = 310, + [1179] = 315, + [1180] = 329, + [1181] = 316, + [1182] = 1182, [1183] = 1183, [1184] = 1184, - [1185] = 1184, + [1185] = 1185, [1186] = 1186, - [1187] = 1184, + [1187] = 1186, [1188] = 1188, - [1189] = 1186, - [1190] = 1188, - [1191] = 1191, - [1192] = 1192, - [1193] = 1186, - [1194] = 1186, - [1195] = 1186, - [1196] = 1191, + [1189] = 1189, + [1190] = 1186, + [1191] = 1188, + [1192] = 1183, + [1193] = 1183, + [1194] = 1194, + [1195] = 1189, + [1196] = 1188, [1197] = 1186, - [1198] = 1188, - [1199] = 1184, - [1200] = 1188, + [1198] = 1194, + [1199] = 1189, + [1200] = 1186, [1201] = 1186, - [1202] = 1202, - [1203] = 1203, - [1204] = 1203, - [1205] = 1191, - [1206] = 1188, - [1207] = 1188, - [1208] = 1186, - [1209] = 1188, - [1210] = 1210, - [1211] = 1192, - [1212] = 1184, - [1213] = 1188, - [1214] = 1188, - [1215] = 1186, - [1216] = 1203, - [1217] = 1188, - [1218] = 1203, - [1219] = 1184, + [1202] = 1188, + [1203] = 1183, + [1204] = 1186, + [1205] = 1183, + [1206] = 1185, + [1207] = 1183, + [1208] = 1188, + [1209] = 1194, + [1210] = 1194, + [1211] = 1183, + [1212] = 1194, + [1213] = 1183, + [1214] = 1183, + [1215] = 1194, + [1216] = 1194, + [1217] = 1186, + [1218] = 1186, + [1219] = 1219, [1220] = 1186, - [1221] = 1188, - [1222] = 1184, - [1223] = 1203, - [1224] = 1191, - [1225] = 1184, + [1221] = 1194, + [1222] = 1189, + [1223] = 1183, + [1224] = 1183, + [1225] = 1188, [1226] = 1186, - [1227] = 1203, - [1228] = 1228, + [1227] = 1227, + [1228] = 1227, [1229] = 1229, - [1230] = 1229, - [1231] = 1228, - [1232] = 1228, + [1230] = 1189, + [1231] = 1227, + [1232] = 1229, [1233] = 1229, - [1234] = 1228, + [1234] = 1227, [1235] = 1229, - [1236] = 1229, - [1237] = 1191, - [1238] = 1228, - [1239] = 1192, - [1240] = 1228, - [1241] = 1228, - [1242] = 1229, + [1236] = 1227, + [1237] = 1227, + [1238] = 1229, + [1239] = 1229, + [1240] = 1227, + [1241] = 1185, + [1242] = 1227, [1243] = 1229, - [1244] = 1228, - [1245] = 1229, + [1244] = 1229, + [1245] = 1245, [1246] = 1246, [1247] = 1247, - [1248] = 1248, - [1249] = 1248, - [1250] = 1248, - [1251] = 1248, - [1252] = 1248, - [1253] = 1248, - [1254] = 1248, - [1255] = 1248, - [1256] = 1248, - [1257] = 1257, + [1248] = 1247, + [1249] = 1247, + [1250] = 1247, + [1251] = 1247, + [1252] = 1247, + [1253] = 1247, + [1254] = 1247, + [1255] = 1247, + [1256] = 1256, + [1257] = 1256, [1258] = 1258, - [1259] = 1259, + [1259] = 1256, [1260] = 1258, - [1261] = 1257, + [1261] = 1256, [1262] = 1258, - [1263] = 1257, - [1264] = 1258, - [1265] = 1257, + [1263] = 1256, + [1264] = 1256, + [1265] = 1256, [1266] = 1258, - [1267] = 1258, - [1268] = 1258, + [1267] = 1256, + [1268] = 1268, [1269] = 1258, - [1270] = 1257, - [1271] = 1258, + [1270] = 1256, + [1271] = 1256, [1272] = 1258, - [1273] = 1257, - [1274] = 1258, + [1273] = 1256, + [1274] = 1274, [1275] = 1275, - [1276] = 1275, + [1276] = 1276, [1277] = 1277, [1278] = 1278, - [1279] = 1279, + [1279] = 1275, [1280] = 1280, - [1281] = 1277, + [1281] = 1275, [1282] = 1282, - [1283] = 1278, - [1284] = 1280, - [1285] = 1278, - [1286] = 1277, - [1287] = 1277, - [1288] = 1280, - [1289] = 1278, + [1283] = 1283, + [1284] = 1284, + [1285] = 1283, + [1286] = 1275, + [1287] = 1274, + [1288] = 1275, + [1289] = 1280, [1290] = 1280, - [1291] = 1277, - [1292] = 1278, - [1293] = 1282, - [1294] = 1282, - [1295] = 1282, - [1296] = 1282, - [1297] = 1280, - [1298] = 1280, - [1299] = 1277, - [1300] = 1277, - [1301] = 1277, - [1302] = 1282, - [1303] = 1278, + [1291] = 1291, + [1292] = 1292, + [1293] = 1283, + [1294] = 1283, + [1295] = 1275, + [1296] = 1296, + [1297] = 1274, + [1298] = 1275, + [1299] = 1280, + [1300] = 1274, + [1301] = 1274, + [1302] = 1275, + [1303] = 1280, [1304] = 1304, - [1305] = 1282, - [1306] = 1282, - [1307] = 1278, - [1308] = 1304, - [1309] = 1282, - [1310] = 1280, + [1305] = 1305, + [1306] = 1280, + [1307] = 1307, + [1308] = 1308, + [1309] = 1283, + [1310] = 1308, [1311] = 1311, [1312] = 1280, [1313] = 1280, - [1314] = 1277, - [1315] = 1315, - [1316] = 1277, - [1317] = 1282, - [1318] = 1277, - [1319] = 1280, - [1320] = 1277, - [1321] = 1278, - [1322] = 1278, - [1323] = 1278, - [1324] = 1280, - [1325] = 1278, - [1326] = 1277, - [1327] = 1304, - [1328] = 1280, - [1329] = 1304, - [1330] = 1282, - [1331] = 1280, - [1332] = 1278, - [1333] = 1282, - [1334] = 1277, + [1314] = 1275, + [1315] = 1280, + [1316] = 1274, + [1317] = 1317, + [1318] = 1275, + [1319] = 1319, + [1320] = 1320, + [1321] = 1280, + [1322] = 1280, + [1323] = 1275, + [1324] = 1274, + [1325] = 1283, + [1326] = 1274, + [1327] = 1283, + [1328] = 1328, + [1329] = 1317, + [1330] = 1283, + [1331] = 1275, + [1332] = 1283, + [1333] = 1308, + [1334] = 1280, [1335] = 1280, - [1336] = 1278, - [1337] = 1337, - [1338] = 1277, + [1336] = 1274, + [1337] = 1275, + [1338] = 1275, [1339] = 1275, - [1340] = 1282, - [1341] = 1282, - [1342] = 1278, - [1343] = 1278, - [1344] = 1280, - [1345] = 1282, - [1346] = 1275, - [1347] = 1347, - [1348] = 1348, - [1349] = 1347, - [1350] = 1348, - [1351] = 1351, - [1352] = 1352, - [1353] = 1353, - [1354] = 1354, - [1355] = 1347, - [1356] = 1348, - [1357] = 1347, - [1358] = 1348, - [1359] = 1347, - [1360] = 1360, - [1361] = 1361, - [1362] = 1347, - [1363] = 1363, - [1364] = 1364, + [1340] = 1283, + [1341] = 1274, + [1342] = 1283, + [1343] = 1274, + [1344] = 1283, + [1345] = 1317, + [1346] = 1283, + [1347] = 1274, + [1348] = 1283, + [1349] = 1274, + [1350] = 1317, + [1351] = 1280, + [1352] = 1283, + [1353] = 1280, + [1354] = 1274, + [1355] = 1308, + [1356] = 1274, + [1357] = 1357, + [1358] = 1357, + [1359] = 1357, + [1360] = 1357, + [1361] = 1357, + [1362] = 1357, + [1363] = 1357, + [1364] = 1357, [1365] = 1365, - [1366] = 1347, - [1367] = 1347, - [1368] = 1368, - [1369] = 1369, - [1370] = 1347, - [1371] = 1371, - [1372] = 1347, - [1373] = 1347, - [1374] = 1374, - [1375] = 1375, + [1366] = 1366, + [1367] = 1357, + [1368] = 1365, + [1369] = 1365, + [1370] = 1365, + [1371] = 1357, + [1372] = 1365, + [1373] = 1373, + [1374] = 1365, + [1375] = 1357, [1376] = 1376, - [1377] = 1348, - [1378] = 1347, - [1379] = 1347, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, [1380] = 1380, - [1381] = 1347, - [1382] = 1348, - [1383] = 1348, - [1384] = 1348, - [1385] = 1347, - [1386] = 1386, + [1381] = 1381, + [1382] = 1382, + [1383] = 1365, + [1384] = 1357, + [1385] = 1385, + [1386] = 1365, [1387] = 1387, [1388] = 1388, - [1389] = 1389, - [1390] = 1387, + [1389] = 1357, + [1390] = 1357, [1391] = 1391, [1392] = 1392, [1393] = 1393, - [1394] = 1394, + [1394] = 1357, [1395] = 1395, - [1396] = 1392, + [1396] = 1396, [1397] = 1397, [1398] = 1398, [1399] = 1399, @@ -6118,706 +6125,706 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1407] = 1407, [1408] = 1408, [1409] = 1409, - [1410] = 1410, - [1411] = 1387, + [1410] = 1401, + [1411] = 1411, [1412] = 1412, - [1413] = 1400, - [1414] = 1387, - [1415] = 1415, - [1416] = 1389, - [1417] = 1398, - [1418] = 1398, - [1419] = 1398, - [1420] = 1391, - [1421] = 1400, - [1422] = 1415, - [1423] = 1398, - [1424] = 1424, - [1425] = 1425, - [1426] = 1400, - [1427] = 1389, - [1428] = 1415, - [1429] = 1415, - [1430] = 1389, - [1431] = 1398, - [1432] = 1400, - [1433] = 1433, - [1434] = 1434, - [1435] = 1387, - [1436] = 1387, + [1413] = 1413, + [1414] = 1406, + [1415] = 1405, + [1416] = 1399, + [1417] = 1417, + [1418] = 1418, + [1419] = 1419, + [1420] = 1403, + [1421] = 1403, + [1422] = 1422, + [1423] = 1423, + [1424] = 1405, + [1425] = 1405, + [1426] = 1408, + [1427] = 1427, + [1428] = 1428, + [1429] = 1411, + [1430] = 1430, + [1431] = 1405, + [1432] = 1432, + [1433] = 1403, + [1434] = 1403, + [1435] = 1435, + [1436] = 1436, [1437] = 1437, [1438] = 1438, - [1439] = 1439, - [1440] = 1387, - [1441] = 1392, - [1442] = 1400, + [1439] = 1405, + [1440] = 1411, + [1441] = 1401, + [1442] = 1442, [1443] = 1443, - [1444] = 1391, - [1445] = 1400, + [1444] = 1444, + [1445] = 1445, [1446] = 1446, - [1447] = 1447, - [1448] = 1400, - [1449] = 1387, - [1450] = 1397, - [1451] = 1398, - [1452] = 1397, - [1453] = 1392, - [1454] = 1391, - [1455] = 1387, - [1456] = 1386, - [1457] = 1391, - [1458] = 1400, - [1459] = 1392, - [1460] = 1389, - [1461] = 1461, - [1462] = 1415, - [1463] = 1463, - [1464] = 1397, - [1465] = 1409, - [1466] = 1466, - [1467] = 1387, - [1468] = 1410, - [1469] = 1387, - [1470] = 1398, - [1471] = 1387, - [1472] = 1463, - [1473] = 1387, - [1474] = 1387, - [1475] = 1398, - [1476] = 1387, - [1477] = 1477, - [1478] = 1478, - [1479] = 1415, - [1480] = 1398, - [1481] = 1389, - [1482] = 1398, - [1483] = 1398, - [1484] = 1398, - [1485] = 1485, - [1486] = 1486, - [1487] = 1398, - [1488] = 1400, - [1489] = 1489, - [1490] = 1400, - [1491] = 1400, - [1492] = 1398, + [1447] = 1444, + [1448] = 1403, + [1449] = 1405, + [1450] = 1450, + [1451] = 1446, + [1452] = 1445, + [1453] = 1453, + [1454] = 1408, + [1455] = 1438, + [1456] = 1443, + [1457] = 1417, + [1458] = 1423, + [1459] = 1422, + [1460] = 1408, + [1461] = 1408, + [1462] = 1418, + [1463] = 1408, + [1464] = 1464, + [1465] = 1405, + [1466] = 1405, + [1467] = 1407, + [1468] = 1409, + [1469] = 1407, + [1470] = 1470, + [1471] = 1406, + [1472] = 1417, + [1473] = 1398, + [1474] = 1402, + [1475] = 1401, + [1476] = 1404, + [1477] = 1408, + [1478] = 1411, + [1479] = 1403, + [1480] = 1412, + [1481] = 1405, + [1482] = 1411, + [1483] = 1401, + [1484] = 1484, + [1485] = 1419, + [1486] = 1408, + [1487] = 1487, + [1488] = 1488, + [1489] = 1442, + [1490] = 1408, + [1491] = 1408, + [1492] = 1405, [1493] = 1493, - [1494] = 1494, - [1495] = 1495, - [1496] = 1496, - [1497] = 1497, - [1498] = 1495, - [1499] = 1499, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1497, - [1505] = 1505, - [1506] = 1506, - [1507] = 1497, - [1508] = 1505, - [1509] = 1497, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 1497, - [1514] = 1497, - [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1512, - [1519] = 1493, - [1520] = 1520, - [1521] = 1521, - [1522] = 1494, - [1523] = 1512, - [1524] = 1515, - [1525] = 1511, - [1526] = 1510, - [1527] = 1501, - [1528] = 1500, - [1529] = 1499, - [1530] = 1495, - [1531] = 1515, - [1532] = 1521, + [1494] = 1405, + [1495] = 1437, + [1496] = 1405, + [1497] = 1436, + [1498] = 1435, + [1499] = 1403, + [1500] = 1408, + [1501] = 1403, + [1502] = 1403, + [1503] = 1432, + [1504] = 1403, + [1505] = 1430, + [1506] = 1428, + [1507] = 1427, + [1508] = 1408, + [1509] = 1509, + [1510] = 1450, + [1511] = 1470, + [1512] = 1408, + [1513] = 1405, + [1514] = 1407, + [1515] = 1407, + [1516] = 1403, + [1517] = 1406, + [1518] = 1413, + [1519] = 1405, + [1520] = 1411, + [1521] = 1401, + [1522] = 1408, + [1523] = 1417, + [1524] = 1406, + [1525] = 1400, + [1526] = 1408, + [1527] = 1509, + [1528] = 1528, + [1529] = 1529, + [1530] = 1530, + [1531] = 1530, + [1532] = 1532, [1533] = 1533, - [1534] = 1497, - [1535] = 1493, - [1536] = 1516, - [1537] = 1537, + [1534] = 1530, + [1535] = 1535, + [1536] = 1536, + [1537] = 1530, [1538] = 1538, - [1539] = 1516, - [1540] = 1499, - [1541] = 1493, - [1542] = 1511, - [1543] = 1502, + [1539] = 1539, + [1540] = 1540, + [1541] = 1530, + [1542] = 1530, + [1543] = 1532, [1544] = 1544, [1545] = 1533, - [1546] = 1496, - [1547] = 1510, - [1548] = 1497, - [1549] = 1501, - [1550] = 1502, - [1551] = 1502, - [1552] = 1500, - [1553] = 1538, - [1554] = 1537, - [1555] = 1499, - [1556] = 1520, - [1557] = 1493, - [1558] = 1516, - [1559] = 1495, - [1560] = 1496, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1539, + [1551] = 1538, + [1552] = 1548, + [1553] = 1549, + [1554] = 1538, + [1555] = 1547, + [1556] = 1556, + [1557] = 1557, + [1558] = 1558, + [1559] = 1559, + [1560] = 1547, [1561] = 1561, - [1562] = 1493, - [1563] = 1520, - [1564] = 1544, - [1565] = 1516, - [1566] = 1537, - [1567] = 1533, - [1568] = 1494, - [1569] = 1502, - [1570] = 1544, - [1571] = 1515, - [1572] = 1500, - [1573] = 1520, - [1574] = 1503, - [1575] = 1505, - [1576] = 1516, - [1577] = 1544, - [1578] = 1538, - [1579] = 1501, - [1580] = 1580, + [1562] = 1528, + [1563] = 1563, + [1564] = 1533, + [1565] = 1532, + [1566] = 1566, + [1567] = 1546, + [1568] = 1536, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1536, + [1573] = 1538, + [1574] = 1556, + [1575] = 1547, + [1576] = 1533, + [1577] = 1556, + [1578] = 1536, + [1579] = 1532, + [1580] = 1533, [1581] = 1581, - [1582] = 1502, - [1583] = 1583, - [1584] = 1494, - [1585] = 1585, - [1586] = 1510, - [1587] = 1517, - [1588] = 1511, - [1589] = 1533, - [1590] = 1503, - [1591] = 1591, - [1592] = 1580, - [1593] = 1516, - [1594] = 1594, + [1582] = 1582, + [1583] = 1558, + [1584] = 1532, + [1585] = 1559, + [1586] = 1561, + [1587] = 1528, + [1588] = 1563, + [1589] = 1566, + [1590] = 1569, + [1591] = 1570, + [1592] = 1592, + [1593] = 1571, + [1594] = 1547, [1595] = 1595, - [1596] = 1521, - [1597] = 1493, - [1598] = 1598, - [1599] = 1585, - [1600] = 1538, - [1601] = 1495, - [1602] = 1499, - [1603] = 1505, - [1604] = 1520, - [1605] = 1500, - [1606] = 1520, - [1607] = 1501, - [1608] = 1510, - [1609] = 1502, - [1610] = 1511, - [1611] = 1515, - [1612] = 1538, - [1613] = 1512, - [1614] = 1583, - [1615] = 1494, - [1616] = 1521, - [1617] = 1533, - [1618] = 1580, - [1619] = 1512, - [1620] = 1537, - [1621] = 1502, - [1622] = 1585, - [1623] = 1494, - [1624] = 1517, - [1625] = 1585, - [1626] = 1496, - [1627] = 1521, - [1628] = 1516, - [1629] = 1493, - [1630] = 1493, - [1631] = 1502, - [1632] = 1598, - [1633] = 1538, - [1634] = 1503, - [1635] = 1635, - [1636] = 1496, - [1637] = 1520, - [1638] = 1520, - [1639] = 1591, - [1640] = 1591, - [1641] = 1537, - [1642] = 1642, - [1643] = 1538, - [1644] = 1533, - [1645] = 1521, - [1646] = 1494, - [1647] = 1642, - [1648] = 1648, - [1649] = 1520, - [1650] = 1512, - [1651] = 1580, - [1652] = 1515, - [1653] = 1511, - [1654] = 1583, - [1655] = 1495, - [1656] = 1510, - [1657] = 1499, - [1658] = 1658, - [1659] = 1585, - [1660] = 1660, - [1661] = 1500, - [1662] = 1501, - [1663] = 1510, - [1664] = 1511, - [1665] = 1501, - [1666] = 1515, - [1667] = 1512, - [1668] = 1494, - [1669] = 1521, - [1670] = 1533, - [1671] = 1520, - [1672] = 1500, - [1673] = 1537, - [1674] = 1499, - [1675] = 1516, - [1676] = 1493, - [1677] = 1544, - [1678] = 1517, - [1679] = 1495, - [1680] = 1538, - [1681] = 1502, - [1682] = 1538, - [1683] = 1503, - [1684] = 1684, - [1685] = 1516, - [1686] = 1538, - [1687] = 1591, - [1688] = 1502, - [1689] = 1516, - [1690] = 1580, - [1691] = 1691, - [1692] = 1583, - [1693] = 1493, - [1694] = 1585, - [1695] = 1505, - [1696] = 1496, - [1697] = 1495, - [1698] = 1598, - [1699] = 1493, - [1700] = 1516, - [1701] = 1648, - [1702] = 1499, - [1703] = 1502, - [1704] = 1493, - [1705] = 1500, - [1706] = 1517, - [1707] = 1501, - [1708] = 1537, - [1709] = 1503, - [1710] = 1510, - [1711] = 1511, - [1712] = 1591, - [1713] = 1580, - [1714] = 1494, - [1715] = 1583, - [1716] = 1585, - [1717] = 1642, - [1718] = 1598, - [1719] = 1544, - [1720] = 1648, - [1721] = 1517, - [1722] = 1533, - [1723] = 1515, - [1724] = 1512, - [1725] = 1494, - [1726] = 1521, - [1727] = 1533, - [1728] = 1537, - [1729] = 1521, - [1730] = 1499, - [1731] = 1503, - [1732] = 1591, - [1733] = 1505, - [1734] = 1512, - [1735] = 1580, - [1736] = 1583, - [1737] = 1585, - [1738] = 1515, - [1739] = 1544, - [1740] = 1598, - [1741] = 1691, - [1742] = 1493, - [1743] = 1511, - [1744] = 1510, - [1745] = 1501, - [1746] = 1500, - [1747] = 1499, - [1748] = 1648, - [1749] = 1495, - [1750] = 1502, - [1751] = 1521, - [1752] = 1516, - [1753] = 1753, - [1754] = 1494, - [1755] = 1512, - [1756] = 1515, - [1757] = 1502, - [1758] = 1495, - [1759] = 1499, - [1760] = 1500, - [1761] = 1501, - [1762] = 1510, - [1763] = 1511, - [1764] = 1515, - [1765] = 1512, - [1766] = 1494, - [1767] = 1521, - [1768] = 1520, - [1769] = 1505, - [1770] = 1561, - [1771] = 1537, - [1772] = 1511, - [1773] = 1510, - [1774] = 1774, - [1775] = 1495, - [1776] = 1776, - [1777] = 1495, - [1778] = 1538, - [1779] = 1533, - [1780] = 1505, - [1781] = 1517, - [1782] = 1594, - [1783] = 1595, - [1784] = 1503, - [1785] = 1505, - [1786] = 1591, - [1787] = 1580, - [1788] = 1499, - [1789] = 1583, - [1790] = 1585, - [1791] = 1500, - [1792] = 1501, - [1793] = 1501, - [1794] = 1510, - [1795] = 1500, - [1796] = 1511, - [1797] = 1515, - [1798] = 1512, - [1799] = 1499, - [1800] = 1494, - [1801] = 1521, - [1802] = 1495, - [1803] = 1533, - [1804] = 1537, - [1805] = 1499, - [1806] = 1598, - [1807] = 1505, - [1808] = 1500, - [1809] = 1648, - [1810] = 1501, - [1811] = 1516, - [1812] = 1533, - [1813] = 1497, - [1814] = 1521, - [1815] = 1510, - [1816] = 1538, - [1817] = 1691, - [1818] = 1505, - [1819] = 1511, - [1820] = 1648, - [1821] = 1517, - [1822] = 1502, - [1823] = 1495, - [1824] = 1520, - [1825] = 1515, - [1826] = 1512, - [1827] = 1505, - [1828] = 1544, - [1829] = 1512, - [1830] = 1515, - [1831] = 1831, - [1832] = 1832, - [1833] = 1511, - [1834] = 1834, - [1835] = 1520, - [1836] = 1505, - [1837] = 1533, - [1838] = 1510, - [1839] = 1537, - [1840] = 1493, - [1841] = 1583, - [1842] = 1516, - [1843] = 1831, - [1844] = 1503, - [1845] = 1501, - [1846] = 1494, - [1847] = 1538, - [1848] = 1538, - [1849] = 1505, - [1850] = 1505, - [1851] = 1520, - [1852] = 1533, - [1853] = 1521, - [1854] = 1521, - [1855] = 1591, - [1856] = 1537, + [1596] = 1596, + [1597] = 1597, + [1598] = 1597, + [1599] = 1597, + [1600] = 1556, + [1601] = 1597, + [1602] = 1597, + [1603] = 1597, + [1604] = 1597, + [1605] = 1592, + [1606] = 1546, + [1607] = 1539, + [1608] = 1597, + [1609] = 1532, + [1610] = 1533, + [1611] = 1546, + [1612] = 1539, + [1613] = 1613, + [1614] = 1614, + [1615] = 1536, + [1616] = 1529, + [1617] = 1532, + [1618] = 1533, + [1619] = 1533, + [1620] = 1532, + [1621] = 1538, + [1622] = 1622, + [1623] = 1536, + [1624] = 1530, + [1625] = 1535, + [1626] = 1613, + [1627] = 1627, + [1628] = 1538, + [1629] = 1614, + [1630] = 1630, + [1631] = 1529, + [1632] = 1622, + [1633] = 1535, + [1634] = 1613, + [1635] = 1532, + [1636] = 1627, + [1637] = 1596, + [1638] = 1571, + [1639] = 1592, + [1640] = 1533, + [1641] = 1532, + [1642] = 1570, + [1643] = 1536, + [1644] = 1569, + [1645] = 1556, + [1646] = 1529, + [1647] = 1566, + [1648] = 1563, + [1649] = 1528, + [1650] = 1547, + [1651] = 1561, + [1652] = 1559, + [1653] = 1538, + [1654] = 1558, + [1655] = 1538, + [1656] = 1556, + [1657] = 1533, + [1658] = 1532, + [1659] = 1536, + [1660] = 1556, + [1661] = 1622, + [1662] = 1535, + [1663] = 1547, + [1664] = 1613, + [1665] = 1627, + [1666] = 1614, + [1667] = 1529, + [1668] = 1668, + [1669] = 1622, + [1670] = 1538, + [1671] = 1536, + [1672] = 1672, + [1673] = 1581, + [1674] = 1674, + [1675] = 1557, + [1676] = 1535, + [1677] = 1613, + [1678] = 1627, + [1679] = 1614, + [1680] = 1556, + [1681] = 1533, + [1682] = 1622, + [1683] = 1538, + [1684] = 1536, + [1685] = 1581, + [1686] = 1557, + [1687] = 1556, + [1688] = 1535, + [1689] = 1533, + [1690] = 1532, + [1691] = 1547, + [1692] = 1613, + [1693] = 1627, + [1694] = 1614, + [1695] = 1529, + [1696] = 1622, + [1697] = 1538, + [1698] = 1533, + [1699] = 1532, + [1700] = 1581, + [1701] = 1536, + [1702] = 1557, + [1703] = 1556, + [1704] = 1535, + [1705] = 1613, + [1706] = 1547, + [1707] = 1627, + [1708] = 1708, + [1709] = 1614, + [1710] = 1538, + [1711] = 1529, + [1712] = 1622, + [1713] = 1533, + [1714] = 1532, + [1715] = 1536, + [1716] = 1536, + [1717] = 1556, + [1718] = 1581, + [1719] = 1547, + [1720] = 1547, + [1721] = 1530, + [1722] = 1557, + [1723] = 1535, + [1724] = 1538, + [1725] = 1538, + [1726] = 1726, + [1727] = 1727, + [1728] = 1613, + [1729] = 1547, + [1730] = 1627, + [1731] = 1614, + [1732] = 1614, + [1733] = 1622, + [1734] = 1556, + [1735] = 1547, + [1736] = 1558, + [1737] = 1668, + [1738] = 1559, + [1739] = 1561, + [1740] = 1528, + [1741] = 1563, + [1742] = 1566, + [1743] = 1539, + [1744] = 1540, + [1745] = 1546, + [1746] = 1569, + [1747] = 1570, + [1748] = 1597, + [1749] = 1592, + [1750] = 1571, + [1751] = 1596, + [1752] = 1726, + [1753] = 1536, + [1754] = 1581, + [1755] = 1557, + [1756] = 1571, + [1757] = 1540, + [1758] = 1708, + [1759] = 1592, + [1760] = 1760, + [1761] = 1571, + [1762] = 1570, + [1763] = 1592, + [1764] = 1570, + [1765] = 1569, + [1766] = 1566, + [1767] = 1563, + [1768] = 1528, + [1769] = 1569, + [1770] = 1571, + [1771] = 1592, + [1772] = 1570, + [1773] = 1569, + [1774] = 1566, + [1775] = 1563, + [1776] = 1528, + [1777] = 1561, + [1778] = 1559, + [1779] = 1558, + [1780] = 1556, + [1781] = 1708, + [1782] = 1556, + [1783] = 1558, + [1784] = 1561, + [1785] = 1559, + [1786] = 1559, + [1787] = 1561, + [1788] = 1528, + [1789] = 1563, + [1790] = 1566, + [1791] = 1566, + [1792] = 1569, + [1793] = 1563, + [1794] = 1570, + [1795] = 1592, + [1796] = 1571, + [1797] = 1528, + [1798] = 1558, + [1799] = 1571, + [1800] = 1592, + [1801] = 1570, + [1802] = 1569, + [1803] = 1566, + [1804] = 1563, + [1805] = 1528, + [1806] = 1561, + [1807] = 1559, + [1808] = 1558, + [1809] = 1539, + [1810] = 1592, + [1811] = 1546, + [1812] = 1596, + [1813] = 1536, + [1814] = 1561, + [1815] = 1532, + [1816] = 1533, + [1817] = 1559, + [1818] = 1558, + [1819] = 1556, + [1820] = 1529, + [1821] = 1571, + [1822] = 1547, + [1823] = 1570, + [1824] = 1569, + [1825] = 1546, + [1826] = 1566, + [1827] = 1563, + [1828] = 1528, + [1829] = 1561, + [1830] = 1559, + [1831] = 1558, + [1832] = 1613, + [1833] = 1539, + [1834] = 1546, + [1835] = 1596, + [1836] = 1539, + [1837] = 1546, + [1838] = 1539, + [1839] = 1622, + [1840] = 1539, + [1841] = 1547, + [1842] = 1842, + [1843] = 1571, + [1844] = 1592, + [1845] = 1570, + [1846] = 1569, + [1847] = 1566, + [1848] = 1563, + [1849] = 1528, + [1850] = 1561, + [1851] = 1559, + [1852] = 1558, + [1853] = 1539, + [1854] = 1546, + [1855] = 1596, + [1856] = 1856, [1857] = 1538, - [1858] = 1580, - [1859] = 1494, - [1860] = 1520, - [1861] = 1583, - [1862] = 1512, - [1863] = 1495, - [1864] = 1499, - [1865] = 1500, - [1866] = 1500, - [1867] = 1533, - [1868] = 1501, - [1869] = 1510, - [1870] = 1496, - [1871] = 1871, - [1872] = 1642, - [1873] = 1511, - [1874] = 1874, - [1875] = 1537, - [1876] = 1515, - [1877] = 1537, - [1878] = 1878, - [1879] = 1537, - [1880] = 1880, - [1881] = 1880, - [1882] = 1880, - [1883] = 1880, - [1884] = 1880, - [1885] = 387, - [1886] = 1886, - [1887] = 371, - [1888] = 1888, - [1889] = 1889, - [1890] = 1889, - [1891] = 1891, - [1892] = 1892, - [1893] = 1889, - [1894] = 1894, - [1895] = 1895, - [1896] = 1896, - [1897] = 1897, - [1898] = 1898, - [1899] = 1888, - [1900] = 1894, - [1901] = 1895, - [1902] = 1896, - [1903] = 1903, - [1904] = 1891, - [1905] = 1889, - [1906] = 1898, - [1907] = 1898, - [1908] = 1897, - [1909] = 1892, - [1910] = 1898, - [1911] = 1192, - [1912] = 1912, - [1913] = 1912, - [1914] = 1192, - [1915] = 1891, - [1916] = 1897, - [1917] = 1888, - [1918] = 1898, - [1919] = 1892, - [1920] = 1894, - [1921] = 1895, - [1922] = 1896, - [1923] = 1897, - [1924] = 1892, - [1925] = 1894, - [1926] = 1895, - [1927] = 1896, - [1928] = 1888, - [1929] = 1891, + [1858] = 1858, + [1859] = 1627, + [1860] = 1614, + [1861] = 1569, + [1862] = 1862, + [1863] = 1571, + [1864] = 1592, + [1865] = 1570, + [1866] = 1569, + [1867] = 1566, + [1868] = 1563, + [1869] = 1528, + [1870] = 1561, + [1871] = 1559, + [1872] = 1546, + [1873] = 1558, + [1874] = 1539, + [1875] = 1546, + [1876] = 1596, + [1877] = 1539, + [1878] = 1558, + [1879] = 1571, + [1880] = 1592, + [1881] = 1570, + [1882] = 1569, + [1883] = 1566, + [1884] = 1563, + [1885] = 1561, + [1886] = 1559, + [1887] = 1558, + [1888] = 1539, + [1889] = 1559, + [1890] = 1546, + [1891] = 1561, + [1892] = 1528, + [1893] = 1563, + [1894] = 1571, + [1895] = 1592, + [1896] = 1570, + [1897] = 1546, + [1898] = 1566, + [1899] = 1563, + [1900] = 1566, + [1901] = 1528, + [1902] = 1561, + [1903] = 1559, + [1904] = 1558, + [1905] = 1539, + [1906] = 1906, + [1907] = 1546, + [1908] = 1908, + [1909] = 1529, + [1910] = 1569, + [1911] = 1571, + [1912] = 1592, + [1913] = 1570, + [1914] = 1914, + [1915] = 1914, + [1916] = 1914, + [1917] = 1914, + [1918] = 1914, + [1919] = 393, + [1920] = 409, + [1921] = 1921, + [1922] = 1922, + [1923] = 1923, + [1924] = 1924, + [1925] = 1925, + [1926] = 1926, + [1927] = 1927, + [1928] = 1928, + [1929] = 1926, [1930] = 1930, - [1931] = 1930, - [1932] = 1930, - [1933] = 1930, - [1934] = 1930, - [1935] = 1935, - [1936] = 1936, - [1937] = 1936, - [1938] = 1936, - [1939] = 1936, - [1940] = 1936, - [1941] = 1936, - [1942] = 1936, - [1943] = 1936, - [1944] = 1936, - [1945] = 1945, + [1931] = 1926, + [1932] = 1923, + [1933] = 1933, + [1934] = 1934, + [1935] = 1933, + [1936] = 1922, + [1937] = 1926, + [1938] = 1927, + [1939] = 1925, + [1940] = 1928, + [1941] = 1933, + [1942] = 1930, + [1943] = 1924, + [1944] = 1933, + [1945] = 1185, [1946] = 1946, - [1947] = 1947, - [1948] = 1948, - [1949] = 1949, - [1950] = 1950, - [1951] = 1951, - [1952] = 1952, - [1953] = 1953, - [1954] = 1954, - [1955] = 1955, - [1956] = 1956, - [1957] = 1957, - [1958] = 1958, - [1959] = 1959, - [1960] = 1960, - [1961] = 1946, - [1962] = 1962, - [1963] = 1963, + [1947] = 1946, + [1948] = 1185, + [1949] = 1930, + [1950] = 1923, + [1951] = 1933, + [1952] = 1927, + [1953] = 1924, + [1954] = 1928, + [1955] = 1922, + [1956] = 1925, + [1957] = 1930, + [1958] = 1924, + [1959] = 1927, + [1960] = 1928, + [1961] = 1922, + [1962] = 1925, + [1963] = 1923, [1964] = 1964, - [1965] = 1965, - [1966] = 1966, - [1967] = 1898, - [1968] = 1898, + [1965] = 1964, + [1966] = 1964, + [1967] = 1964, + [1968] = 1964, [1969] = 1969, - [1970] = 1970, - [1971] = 1898, - [1972] = 1891, - [1973] = 1973, - [1974] = 1894, - [1975] = 1895, - [1976] = 1896, - [1977] = 1888, - [1978] = 1978, - [1979] = 1978, - [1980] = 1978, - [1981] = 1978, + [1970] = 1969, + [1971] = 1969, + [1972] = 1969, + [1973] = 1969, + [1974] = 1974, + [1975] = 1969, + [1976] = 1969, + [1977] = 1969, + [1978] = 1969, + [1979] = 1979, + [1980] = 1980, + [1981] = 1981, [1982] = 1982, - [1983] = 1897, + [1983] = 1983, [1984] = 1984, [1985] = 1985, [1986] = 1986, - [1987] = 1892, - [1988] = 1978, - [1989] = 232, - [1990] = 1892, - [1991] = 235, - [1992] = 1895, - [1993] = 1982, - [1994] = 1894, - [1995] = 1891, - [1996] = 1945, - [1997] = 233, - [1998] = 1888, - [1999] = 1897, - [2000] = 231, - [2001] = 2001, - [2002] = 2002, - [2003] = 1896, - [2004] = 2004, + [1987] = 1985, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, + [1992] = 1992, + [1993] = 1993, + [1994] = 1994, + [1995] = 1995, + [1996] = 1996, + [1997] = 1997, + [1998] = 1998, + [1999] = 1999, + [2000] = 2000, + [2001] = 1933, + [2002] = 1933, + [2003] = 2003, + [2004] = 1933, [2005] = 2005, - [2006] = 2006, - [2007] = 2005, - [2008] = 2006, - [2009] = 246, - [2010] = 246, - [2011] = 2005, - [2012] = 2005, - [2013] = 2006, - [2014] = 2014, - [2015] = 2005, - [2016] = 2005, - [2017] = 2006, - [2018] = 2005, - [2019] = 2005, - [2020] = 2006, - [2021] = 2005, - [2022] = 1889, - [2023] = 232, - [2024] = 2024, - [2025] = 2025, - [2026] = 1945, - [2027] = 235, + [2006] = 1923, + [2007] = 2007, + [2008] = 2008, + [2009] = 2009, + [2010] = 2010, + [2011] = 1922, + [2012] = 2012, + [2013] = 1928, + [2014] = 2010, + [2015] = 1925, + [2016] = 2010, + [2017] = 1924, + [2018] = 2010, + [2019] = 1927, + [2020] = 2010, + [2021] = 1930, + [2022] = 2022, + [2023] = 1979, + [2024] = 1928, + [2025] = 230, + [2026] = 1930, + [2027] = 1924, [2028] = 2028, - [2029] = 1945, - [2030] = 233, - [2031] = 2031, - [2032] = 153, - [2033] = 1889, - [2034] = 1896, - [2035] = 2035, - [2036] = 231, - [2037] = 1892, - [2038] = 2038, - [2039] = 154, - [2040] = 1898, - [2041] = 1888, - [2042] = 1897, - [2043] = 1891, - [2044] = 239, - [2045] = 1894, - [2046] = 2046, - [2047] = 1895, - [2048] = 1897, - [2049] = 2049, - [2050] = 353, - [2051] = 1935, - [2052] = 250, + [2029] = 2029, + [2030] = 1922, + [2031] = 1923, + [2032] = 234, + [2033] = 233, + [2034] = 2034, + [2035] = 1925, + [2036] = 2012, + [2037] = 1927, + [2038] = 231, + [2039] = 1933, + [2040] = 290, + [2041] = 1926, + [2042] = 2042, + [2043] = 2042, + [2044] = 2042, + [2045] = 2042, + [2046] = 2042, + [2047] = 2042, + [2048] = 2048, + [2049] = 290, + [2050] = 2048, + [2051] = 2048, + [2052] = 2048, [2053] = 2053, - [2054] = 2054, - [2055] = 2054, - [2056] = 2056, - [2057] = 2057, - [2058] = 364, - [2059] = 413, - [2060] = 420, + [2054] = 2042, + [2055] = 2048, + [2056] = 2042, + [2057] = 2042, + [2058] = 269, + [2059] = 2059, + [2060] = 234, [2061] = 2061, - [2062] = 424, - [2063] = 425, - [2064] = 426, - [2065] = 1888, - [2066] = 417, - [2067] = 2056, + [2062] = 1926, + [2063] = 1979, + [2064] = 151, + [2065] = 153, + [2066] = 1979, + [2067] = 231, [2068] = 2068, - [2069] = 1891, - [2070] = 384, - [2071] = 2061, - [2072] = 365, - [2073] = 2073, - [2074] = 396, - [2075] = 383, - [2076] = 246, - [2077] = 382, - [2078] = 2046, - [2079] = 349, - [2080] = 1964, - [2081] = 1889, - [2082] = 1960, - [2083] = 2083, - [2084] = 1952, - [2085] = 2085, - [2086] = 380, - [2087] = 357, - [2088] = 1892, - [2089] = 407, - [2090] = 2090, - [2091] = 372, - [2092] = 2092, - [2093] = 2093, + [2069] = 2069, + [2070] = 2070, + [2071] = 2071, + [2072] = 233, + [2073] = 230, + [2074] = 2074, + [2075] = 2075, + [2076] = 2076, + [2077] = 289, + [2078] = 2078, + [2079] = 332, + [2080] = 2080, + [2081] = 2081, + [2082] = 407, + [2083] = 1979, + [2084] = 406, + [2085] = 409, + [2086] = 328, + [2087] = 2080, + [2088] = 393, + [2089] = 422, + [2090] = 2071, + [2091] = 2091, + [2092] = 400, + [2093] = 392, [2094] = 2094, [2095] = 2095, - [2096] = 406, - [2097] = 2097, - [2098] = 1894, - [2099] = 2099, + [2096] = 378, + [2097] = 376, + [2098] = 2098, + [2099] = 1933, [2100] = 2100, - [2101] = 2057, - [2102] = 2102, + [2101] = 2101, + [2102] = 390, [2103] = 2103, [2104] = 2104, [2105] = 2105, - [2106] = 1898, - [2107] = 2107, - [2108] = 2108, - [2109] = 1892, + [2106] = 2106, + [2107] = 358, + [2108] = 353, + [2109] = 2109, [2110] = 2110, [2111] = 2111, [2112] = 2112, @@ -6826,6343 +6833,6343 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2115] = 2115, [2116] = 2116, [2117] = 2117, - [2118] = 1895, - [2119] = 1896, + [2118] = 2118, + [2119] = 2119, [2120] = 2120, [2121] = 2121, [2122] = 2122, [2123] = 2123, - [2124] = 2124, - [2125] = 1945, + [2124] = 389, + [2125] = 1923, [2126] = 2126, - [2127] = 422, - [2128] = 419, - [2129] = 416, - [2130] = 1897, - [2131] = 2131, - [2132] = 1888, - [2133] = 2057, - [2134] = 2102, - [2135] = 398, - [2136] = 379, - [2137] = 2137, - [2138] = 377, - [2139] = 411, - [2140] = 375, - [2141] = 272, - [2142] = 347, - [2143] = 2143, - [2144] = 1894, - [2145] = 1895, - [2146] = 1896, - [2147] = 246, - [2148] = 271, - [2149] = 274, - [2150] = 409, - [2151] = 1891, - [2152] = 371, - [2153] = 401, - [2154] = 393, - [2155] = 253, - [2156] = 387, - [2157] = 388, - [2158] = 392, - [2159] = 389, - [2160] = 370, - [2161] = 2131, - [2162] = 2057, - [2163] = 404, - [2164] = 405, - [2165] = 2165, + [2127] = 276, + [2128] = 1925, + [2129] = 2129, + [2130] = 1928, + [2131] = 381, + [2132] = 382, + [2133] = 384, + [2134] = 385, + [2135] = 2135, + [2136] = 2136, + [2137] = 333, + [2138] = 290, + [2139] = 394, + [2140] = 396, + [2141] = 349, + [2142] = 1927, + [2143] = 1924, + [2144] = 1993, + [2145] = 408, + [2146] = 347, + [2147] = 1926, + [2148] = 1922, + [2149] = 1990, + [2150] = 2150, + [2151] = 1922, + [2152] = 391, + [2153] = 387, + [2154] = 2080, + [2155] = 383, + [2156] = 1989, + [2157] = 374, + [2158] = 346, + [2159] = 373, + [2160] = 369, + [2161] = 2136, + [2162] = 1930, + [2163] = 398, + [2164] = 365, + [2165] = 290, [2166] = 2166, - [2167] = 2167, + [2167] = 421, [2168] = 2168, - [2169] = 2169, + [2169] = 425, [2170] = 2170, - [2171] = 2171, - [2172] = 2172, + [2171] = 418, + [2172] = 1974, [2173] = 2173, - [2174] = 239, - [2175] = 1960, + [2174] = 2174, + [2175] = 2175, [2176] = 2176, [2177] = 2177, [2178] = 2178, - [2179] = 2179, - [2180] = 2180, - [2181] = 2181, - [2182] = 235, - [2183] = 2183, - [2184] = 231, - [2185] = 2143, - [2186] = 1898, - [2187] = 153, - [2188] = 154, - [2189] = 2189, - [2190] = 233, - [2191] = 235, - [2192] = 1945, - [2193] = 2193, + [2179] = 2178, + [2180] = 2174, + [2181] = 2150, + [2182] = 1928, + [2183] = 1925, + [2184] = 1923, + [2185] = 401, + [2186] = 402, + [2187] = 359, + [2188] = 2173, + [2189] = 399, + [2190] = 413, + [2191] = 1930, + [2192] = 1924, + [2193] = 1927, [2194] = 2194, [2195] = 2195, - [2196] = 232, - [2197] = 1952, + [2196] = 2196, + [2197] = 1989, [2198] = 2198, - [2199] = 2199, + [2199] = 231, [2200] = 2200, - [2201] = 1945, + [2201] = 2201, [2202] = 2202, - [2203] = 2143, + [2203] = 2203, [2204] = 2204, - [2205] = 1964, - [2206] = 2046, - [2207] = 1952, - [2208] = 2208, + [2205] = 2071, + [2206] = 2206, + [2207] = 230, + [2208] = 1979, [2209] = 2209, [2210] = 2210, - [2211] = 1945, - [2212] = 233, - [2213] = 2202, - [2214] = 2214, + [2211] = 1990, + [2212] = 231, + [2213] = 2213, + [2214] = 2170, [2215] = 2215, [2216] = 2216, [2217] = 2217, - [2218] = 2218, + [2218] = 2206, [2219] = 2219, - [2220] = 1898, + [2220] = 2220, [2221] = 2221, [2222] = 2222, - [2223] = 2143, - [2224] = 2171, + [2223] = 2223, + [2224] = 2224, [2225] = 2225, [2226] = 2226, [2227] = 2227, - [2228] = 1960, - [2229] = 1935, - [2230] = 2230, - [2231] = 2143, - [2232] = 2232, - [2233] = 2233, - [2234] = 2234, + [2228] = 2228, + [2229] = 153, + [2230] = 151, + [2231] = 2231, + [2232] = 1993, + [2233] = 2170, + [2234] = 2201, [2235] = 2235, - [2236] = 2143, + [2236] = 1979, [2237] = 2237, [2238] = 2238, - [2239] = 2239, + [2239] = 1989, [2240] = 2240, - [2241] = 2143, + [2241] = 2170, [2242] = 2242, - [2243] = 1945, - [2244] = 2171, - [2245] = 2245, - [2246] = 2246, - [2247] = 2171, - [2248] = 2171, - [2249] = 2249, + [2243] = 1993, + [2244] = 233, + [2245] = 1990, + [2246] = 2170, + [2247] = 2247, + [2248] = 2248, + [2249] = 1933, [2250] = 2250, - [2251] = 231, - [2252] = 2171, - [2253] = 2253, - [2254] = 2171, - [2255] = 2246, - [2256] = 232, - [2257] = 2171, - [2258] = 2171, - [2259] = 1964, - [2260] = 2111, - [2261] = 246, - [2262] = 1945, - [2263] = 2126, - [2264] = 1985, - [2265] = 365, - [2266] = 2266, + [2251] = 2251, + [2252] = 2252, + [2253] = 2206, + [2254] = 234, + [2255] = 2255, + [2256] = 2256, + [2257] = 2257, + [2258] = 2258, + [2259] = 2259, + [2260] = 2206, + [2261] = 2206, + [2262] = 1979, + [2263] = 2263, + [2264] = 230, + [2265] = 2265, + [2266] = 2206, [2267] = 2267, - [2268] = 2099, - [2269] = 370, - [2270] = 389, - [2271] = 393, + [2268] = 2170, + [2269] = 2206, + [2270] = 2170, + [2271] = 2271, [2272] = 2272, - [2273] = 272, - [2274] = 401, - [2275] = 409, - [2276] = 347, - [2277] = 411, - [2278] = 2167, - [2279] = 2279, - [2280] = 406, - [2281] = 407, - [2282] = 1960, - [2283] = 353, - [2284] = 246, - [2285] = 2107, - [2286] = 413, - [2287] = 2108, - [2288] = 271, - [2289] = 357, - [2290] = 274, - [2291] = 420, + [2273] = 2273, + [2274] = 2274, + [2275] = 2274, + [2276] = 2276, + [2277] = 234, + [2278] = 1974, + [2279] = 2206, + [2280] = 233, + [2281] = 1979, + [2282] = 2282, + [2283] = 269, + [2284] = 2206, + [2285] = 413, + [2286] = 2098, + [2287] = 408, + [2288] = 2288, + [2289] = 406, + [2290] = 2290, + [2291] = 393, [2292] = 2292, [2293] = 2293, - [2294] = 424, - [2295] = 425, - [2296] = 426, - [2297] = 417, - [2298] = 2173, - [2299] = 396, - [2300] = 383, - [2301] = 371, - [2302] = 253, - [2303] = 387, - [2304] = 2304, - [2305] = 382, - [2306] = 2112, - [2307] = 372, - [2308] = 2049, - [2309] = 364, + [2294] = 347, + [2295] = 2295, + [2296] = 391, + [2297] = 290, + [2298] = 387, + [2299] = 2166, + [2300] = 2292, + [2301] = 2301, + [2302] = 407, + [2303] = 399, + [2304] = 1993, + [2305] = 2257, + [2306] = 1979, + [2307] = 396, + [2308] = 2308, + [2309] = 2309, [2310] = 2310, - [2311] = 2311, - [2312] = 2110, - [2313] = 375, - [2314] = 2314, - [2315] = 2315, - [2316] = 2137, - [2317] = 377, - [2318] = 1984, - [2319] = 1964, - [2320] = 2183, - [2321] = 2083, - [2322] = 2322, - [2323] = 2105, - [2324] = 2085, - [2325] = 2114, - [2326] = 2090, - [2327] = 2166, - [2328] = 1945, - [2329] = 2279, - [2330] = 2165, - [2331] = 2092, - [2332] = 398, - [2333] = 2227, - [2334] = 388, - [2335] = 2335, - [2336] = 2093, - [2337] = 392, - [2338] = 1986, - [2339] = 2339, - [2340] = 2340, - [2341] = 2341, - [2342] = 2094, - [2343] = 404, - [2344] = 405, - [2345] = 2095, - [2346] = 2097, - [2347] = 2100, - [2348] = 246, - [2349] = 2279, - [2350] = 1973, - [2351] = 2073, - [2352] = 2103, - [2353] = 2104, - [2354] = 416, - [2355] = 2113, - [2356] = 2200, - [2357] = 2115, - [2358] = 419, - [2359] = 384, - [2360] = 2200, - [2361] = 2361, - [2362] = 2304, - [2363] = 2116, - [2364] = 2117, - [2365] = 2121, - [2366] = 422, - [2367] = 380, - [2368] = 2122, - [2369] = 2123, - [2370] = 1945, - [2371] = 2253, - [2372] = 250, - [2373] = 2068, - [2374] = 2253, - [2375] = 349, - [2376] = 379, - [2377] = 2170, - [2378] = 2378, - [2379] = 2169, - [2380] = 1952, - [2381] = 2279, - [2382] = 2168, - [2383] = 246, - [2384] = 2384, - [2385] = 2120, - [2386] = 2227, - [2387] = 2215, - [2388] = 2046, - [2389] = 1945, - [2390] = 2390, + [2311] = 2282, + [2312] = 394, + [2313] = 2168, + [2314] = 390, + [2315] = 398, + [2316] = 2008, + [2317] = 2317, + [2318] = 383, + [2319] = 389, + [2320] = 425, + [2321] = 385, + [2322] = 1979, + [2323] = 374, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 2292, + [2328] = 2328, + [2329] = 384, + [2330] = 2330, + [2331] = 290, + [2332] = 1990, + [2333] = 421, + [2334] = 346, + [2335] = 1979, + [2336] = 2081, + [2337] = 373, + [2338] = 2338, + [2339] = 369, + [2340] = 289, + [2341] = 382, + [2342] = 2210, + [2343] = 2094, + [2344] = 359, + [2345] = 418, + [2346] = 2095, + [2347] = 2347, + [2348] = 349, + [2349] = 2100, + [2350] = 365, + [2351] = 2117, + [2352] = 2076, + [2353] = 2103, + [2354] = 2104, + [2355] = 2105, + [2356] = 2106, + [2357] = 381, + [2358] = 2007, + [2359] = 2198, + [2360] = 2109, + [2361] = 2110, + [2362] = 2111, + [2363] = 2112, + [2364] = 2119, + [2365] = 2113, + [2366] = 2114, + [2367] = 2120, + [2368] = 2115, + [2369] = 2121, + [2370] = 2116, + [2371] = 2126, + [2372] = 2075, + [2373] = 2129, + [2374] = 2175, + [2375] = 2176, + [2376] = 2177, + [2377] = 2196, + [2378] = 2195, + [2379] = 2194, + [2380] = 276, + [2381] = 290, + [2382] = 2022, + [2383] = 401, + [2384] = 2257, + [2385] = 328, + [2386] = 2009, + [2387] = 2282, + [2388] = 409, + [2389] = 2308, + [2390] = 402, [2391] = 2391, - [2392] = 2025, - [2393] = 2393, - [2394] = 2394, - [2395] = 2395, + [2392] = 353, + [2393] = 358, + [2394] = 376, + [2395] = 2292, [2396] = 2396, - [2397] = 1889, - [2398] = 2398, - [2399] = 2399, - [2400] = 2400, - [2401] = 2401, - [2402] = 2402, - [2403] = 153, - [2404] = 2216, - [2405] = 2046, - [2406] = 1984, - [2407] = 1985, - [2408] = 2408, - [2409] = 2266, - [2410] = 154, - [2411] = 2221, - [2412] = 2222, - [2413] = 2234, - [2414] = 2235, - [2415] = 2415, - [2416] = 2172, - [2417] = 239, - [2418] = 239, - [2419] = 2419, - [2420] = 2239, + [2397] = 378, + [2398] = 1989, + [2399] = 290, + [2400] = 333, + [2401] = 392, + [2402] = 400, + [2403] = 332, + [2404] = 2118, + [2405] = 2135, + [2406] = 2101, + [2407] = 422, + [2408] = 2209, + [2409] = 2123, + [2410] = 2122, + [2411] = 2238, + [2412] = 2198, + [2413] = 153, + [2414] = 2222, + [2415] = 2231, + [2416] = 151, + [2417] = 2301, + [2418] = 1926, + [2419] = 153, + [2420] = 151, [2421] = 2421, - [2422] = 2001, - [2423] = 2233, - [2424] = 2226, - [2425] = 2225, - [2426] = 2218, - [2427] = 2217, - [2428] = 2214, - [2429] = 1898, - [2430] = 2209, - [2431] = 2028, - [2432] = 2219, - [2433] = 2204, - [2434] = 2434, + [2422] = 2422, + [2423] = 2423, + [2424] = 2071, + [2425] = 2022, + [2426] = 2007, + [2427] = 2008, + [2428] = 2428, + [2429] = 2429, + [2430] = 2070, + [2431] = 2009, + [2432] = 2273, + [2433] = 2433, + [2434] = 2271, [2435] = 2435, [2436] = 2436, - [2437] = 1986, - [2438] = 2438, + [2437] = 2224, + [2438] = 2225, [2439] = 2439, - [2440] = 2176, - [2441] = 2210, - [2442] = 2177, - [2443] = 2178, - [2444] = 2179, - [2445] = 2180, - [2446] = 2181, - [2447] = 154, - [2448] = 2448, - [2449] = 153, - [2450] = 2189, - [2451] = 2193, - [2452] = 2452, - [2453] = 2453, - [2454] = 2454, - [2455] = 2173, - [2456] = 2194, - [2457] = 1973, - [2458] = 2195, - [2459] = 2198, - [2460] = 2399, - [2461] = 2439, - [2462] = 2438, - [2463] = 2237, - [2464] = 2238, - [2465] = 2436, - [2466] = 2240, - [2467] = 2230, - [2468] = 2390, - [2469] = 2391, - [2470] = 2400, - [2471] = 1982, - [2472] = 2250, - [2473] = 2249, - [2474] = 2245, - [2475] = 2242, - [2476] = 2105, - [2477] = 2107, - [2478] = 2108, - [2479] = 353, - [2480] = 2049, - [2481] = 2110, - [2482] = 274, - [2483] = 2107, - [2484] = 271, - [2485] = 2111, - [2486] = 2108, - [2487] = 364, - [2488] = 365, - [2489] = 2049, - [2490] = 2112, - [2491] = 2110, - [2492] = 2439, - [2493] = 370, - [2494] = 2111, - [2495] = 2408, - [2496] = 250, - [2497] = 2112, - [2498] = 357, - [2499] = 389, - [2500] = 393, - [2501] = 347, - [2502] = 411, - [2503] = 2105, - [2504] = 2200, - [2505] = 2304, - [2506] = 2253, - [2507] = 1898, - [2508] = 1982, - [2509] = 1986, - [2510] = 1973, - [2511] = 2120, - [2512] = 2126, - [2513] = 1985, - [2514] = 1984, - [2515] = 371, - [2516] = 375, - [2517] = 387, - [2518] = 1952, - [2519] = 379, - [2520] = 253, - [2521] = 2165, - [2522] = 253, - [2523] = 2166, - [2524] = 371, - [2525] = 272, - [2526] = 413, - [2527] = 420, - [2528] = 424, - [2529] = 2438, - [2530] = 2436, - [2531] = 425, - [2532] = 426, - [2533] = 383, - [2534] = 417, - [2535] = 274, - [2536] = 271, - [2537] = 2167, - [2538] = 382, - [2539] = 2168, - [2540] = 396, - [2541] = 272, - [2542] = 2169, - [2543] = 2170, - [2544] = 1984, - [2545] = 380, - [2546] = 372, - [2547] = 2068, - [2548] = 409, - [2549] = 387, - [2550] = 2123, - [2551] = 2122, - [2552] = 2121, - [2553] = 2117, - [2554] = 2116, - [2555] = 1985, - [2556] = 2115, - [2557] = 401, - [2558] = 2114, - [2559] = 2113, - [2560] = 2165, - [2561] = 2166, - [2562] = 1960, - [2563] = 2167, - [2564] = 384, - [2565] = 2168, - [2566] = 2169, - [2567] = 2170, - [2568] = 2104, - [2569] = 377, - [2570] = 2068, - [2571] = 388, - [2572] = 392, - [2573] = 404, - [2574] = 405, - [2575] = 2103, - [2576] = 419, - [2577] = 422, - [2578] = 250, - [2579] = 2046, - [2580] = 398, - [2581] = 2100, - [2582] = 2097, - [2583] = 2095, - [2584] = 2094, - [2585] = 2408, - [2586] = 2093, - [2587] = 2092, - [2588] = 2123, - [2589] = 2090, - [2590] = 2122, - [2591] = 2121, - [2592] = 349, - [2593] = 2390, - [2594] = 2085, - [2595] = 2092, - [2596] = 2117, - [2597] = 2083, - [2598] = 2116, - [2599] = 2115, - [2600] = 2114, - [2601] = 422, - [2602] = 2113, - [2603] = 2104, - [2604] = 2103, - [2605] = 2126, - [2606] = 1973, - [2607] = 398, - [2608] = 2120, - [2609] = 2391, - [2610] = 384, - [2611] = 379, - [2612] = 1986, - [2613] = 377, - [2614] = 375, + [2440] = 2235, + [2441] = 2240, + [2442] = 2442, + [2443] = 2237, + [2444] = 2227, + [2445] = 2445, + [2446] = 2247, + [2447] = 2248, + [2448] = 1979, + [2449] = 2436, + [2450] = 2450, + [2451] = 2250, + [2452] = 2251, + [2453] = 2252, + [2454] = 2272, + [2455] = 2074, + [2456] = 2242, + [2457] = 2071, + [2458] = 2458, + [2459] = 2034, + [2460] = 2217, + [2461] = 2461, + [2462] = 269, + [2463] = 2204, + [2464] = 2203, + [2465] = 2228, + [2466] = 2202, + [2467] = 2226, + [2468] = 2468, + [2469] = 2223, + [2470] = 2470, + [2471] = 2471, + [2472] = 2221, + [2473] = 2219, + [2474] = 2216, + [2475] = 2475, + [2476] = 2215, + [2477] = 2477, + [2478] = 2439, + [2479] = 2477, + [2480] = 2480, + [2481] = 2481, + [2482] = 2480, + [2483] = 2200, + [2484] = 2213, + [2485] = 2012, + [2486] = 2209, + [2487] = 2450, + [2488] = 269, + [2489] = 2267, + [2490] = 2255, + [2491] = 2442, + [2492] = 2445, + [2493] = 2256, + [2494] = 2258, + [2495] = 2495, + [2496] = 2496, + [2497] = 2259, + [2498] = 2265, + [2499] = 2499, + [2500] = 2095, + [2501] = 406, + [2502] = 276, + [2503] = 2442, + [2504] = 2282, + [2505] = 390, + [2506] = 389, + [2507] = 394, + [2508] = 385, + [2509] = 2109, + [2510] = 384, + [2511] = 382, + [2512] = 381, + [2513] = 2257, + [2514] = 289, + [2515] = 346, + [2516] = 1990, + [2517] = 2450, + [2518] = 1993, + [2519] = 349, + [2520] = 408, + [2521] = 396, + [2522] = 2034, + [2523] = 2436, + [2524] = 347, + [2525] = 2435, + [2526] = 2071, + [2527] = 2118, + [2528] = 2101, + [2529] = 2480, + [2530] = 2477, + [2531] = 2439, + [2532] = 2007, + [2533] = 1989, + [2534] = 2194, + [2535] = 376, + [2536] = 378, + [2537] = 401, + [2538] = 2445, + [2539] = 2195, + [2540] = 2196, + [2541] = 359, + [2542] = 425, + [2543] = 2118, + [2544] = 402, + [2545] = 2022, + [2546] = 1933, + [2547] = 2101, + [2548] = 353, + [2549] = 358, + [2550] = 391, + [2551] = 2177, + [2552] = 2308, + [2553] = 2114, + [2554] = 387, + [2555] = 2110, + [2556] = 2111, + [2557] = 2176, + [2558] = 2175, + [2559] = 392, + [2560] = 400, + [2561] = 2112, + [2562] = 2435, + [2563] = 422, + [2564] = 418, + [2565] = 383, + [2566] = 374, + [2567] = 2113, + [2568] = 407, + [2569] = 359, + [2570] = 421, + [2571] = 332, + [2572] = 333, + [2573] = 425, + [2574] = 398, + [2575] = 2129, + [2576] = 413, + [2577] = 2008, + [2578] = 373, + [2579] = 369, + [2580] = 413, + [2581] = 2135, + [2582] = 2117, + [2583] = 399, + [2584] = 2119, + [2585] = 2115, + [2586] = 2120, + [2587] = 2121, + [2588] = 2094, + [2589] = 2122, + [2590] = 2095, + [2591] = 2123, + [2592] = 2098, + [2593] = 2100, + [2594] = 2076, + [2595] = 2103, + [2596] = 2596, + [2597] = 2104, + [2598] = 2135, + [2599] = 2105, + [2600] = 2106, + [2601] = 2123, + [2602] = 2122, + [2603] = 2121, + [2604] = 418, + [2605] = 365, + [2606] = 2109, + [2607] = 2110, + [2608] = 2111, + [2609] = 2112, + [2610] = 2113, + [2611] = 2611, + [2612] = 2612, + [2613] = 2114, + [2614] = 407, [2615] = 406, - [2616] = 357, - [2617] = 407, - [2618] = 353, - [2619] = 364, - [2620] = 365, - [2621] = 370, - [2622] = 416, - [2623] = 2623, - [2624] = 1964, - [2625] = 2001, - [2626] = 389, - [2627] = 2100, - [2628] = 393, - [2629] = 2400, - [2630] = 2399, - [2631] = 2631, - [2632] = 401, - [2633] = 2633, - [2634] = 409, - [2635] = 349, - [2636] = 347, - [2637] = 2095, - [2638] = 2638, - [2639] = 411, - [2640] = 2094, - [2641] = 2093, - [2642] = 2097, - [2643] = 419, - [2644] = 416, - [2645] = 405, - [2646] = 404, - [2647] = 392, - [2648] = 388, - [2649] = 372, - [2650] = 380, - [2651] = 382, - [2652] = 383, - [2653] = 396, - [2654] = 2083, - [2655] = 2085, - [2656] = 417, - [2657] = 426, - [2658] = 425, - [2659] = 424, - [2660] = 420, - [2661] = 413, - [2662] = 407, - [2663] = 406, - [2664] = 2090, - [2665] = 1973, - [2666] = 2666, - [2667] = 1892, - [2668] = 2668, - [2669] = 2669, - [2670] = 1984, - [2671] = 1985, - [2672] = 1888, - [2673] = 1973, - [2674] = 2173, - [2675] = 2246, - [2676] = 2253, - [2677] = 1973, - [2678] = 2200, - [2679] = 1986, - [2680] = 1984, - [2681] = 2681, - [2682] = 1985, - [2683] = 2683, - [2684] = 2439, - [2685] = 2438, - [2686] = 2436, - [2687] = 1982, - [2688] = 2028, - [2689] = 2400, - [2690] = 2690, - [2691] = 2399, - [2692] = 2391, - [2693] = 2056, - [2694] = 2061, - [2695] = 1065, - [2696] = 2025, - [2697] = 2390, - [2698] = 2698, - [2699] = 153, - [2700] = 1982, - [2701] = 1986, + [2616] = 2115, + [2617] = 2116, + [2618] = 2120, + [2619] = 2009, + [2620] = 289, + [2621] = 422, + [2622] = 2119, + [2623] = 400, + [2624] = 392, + [2625] = 2126, + [2626] = 2075, + [2627] = 276, + [2628] = 378, + [2629] = 376, + [2630] = 2012, + [2631] = 393, + [2632] = 399, + [2633] = 365, + [2634] = 358, + [2635] = 2116, + [2636] = 2117, + [2637] = 353, + [2638] = 402, + [2639] = 2094, + [2640] = 401, + [2641] = 381, + [2642] = 2009, + [2643] = 2008, + [2644] = 382, + [2645] = 384, + [2646] = 2129, + [2647] = 385, + [2648] = 389, + [2649] = 2126, + [2650] = 2175, + [2651] = 390, + [2652] = 393, + [2653] = 2176, + [2654] = 2177, + [2655] = 2106, + [2656] = 328, + [2657] = 394, + [2658] = 2196, + [2659] = 2195, + [2660] = 2075, + [2661] = 2098, + [2662] = 2100, + [2663] = 2076, + [2664] = 396, + [2665] = 409, + [2666] = 349, + [2667] = 2103, + [2668] = 2022, + [2669] = 408, + [2670] = 2104, + [2671] = 2105, + [2672] = 2194, + [2673] = 347, + [2674] = 409, + [2675] = 332, + [2676] = 2007, + [2677] = 333, + [2678] = 398, + [2679] = 369, + [2680] = 2680, + [2681] = 373, + [2682] = 391, + [2683] = 346, + [2684] = 374, + [2685] = 328, + [2686] = 383, + [2687] = 421, + [2688] = 387, + [2689] = 2022, + [2690] = 2007, + [2691] = 2022, + [2692] = 2012, + [2693] = 151, + [2694] = 1064, + [2695] = 1922, + [2696] = 2173, + [2697] = 2012, + [2698] = 1928, + [2699] = 2257, + [2700] = 1925, + [2701] = 2022, [2702] = 2702, - [2703] = 2703, - [2704] = 1982, - [2705] = 2705, - [2706] = 2200, - [2707] = 2001, - [2708] = 2708, - [2709] = 1986, - [2710] = 2710, - [2711] = 2711, - [2712] = 2102, - [2713] = 1897, - [2714] = 1891, - [2715] = 1894, - [2716] = 1895, - [2717] = 1896, - [2718] = 2054, - [2719] = 154, - [2720] = 2253, + [2703] = 2442, + [2704] = 2704, + [2705] = 2445, + [2706] = 2706, + [2707] = 2150, + [2708] = 2008, + [2709] = 2477, + [2710] = 2174, + [2711] = 2439, + [2712] = 1065, + [2713] = 2198, + [2714] = 2714, + [2715] = 1927, + [2716] = 2009, + [2717] = 2008, + [2718] = 2007, + [2719] = 2178, + [2720] = 2480, [2721] = 2721, - [2722] = 2722, - [2723] = 1066, - [2724] = 2724, - [2725] = 2725, - [2726] = 1985, - [2727] = 1984, - [2728] = 2728, - [2729] = 1984, - [2730] = 2730, - [2731] = 1956, - [2732] = 1985, + [2722] = 2012, + [2723] = 2007, + [2724] = 1924, + [2725] = 1930, + [2726] = 2726, + [2727] = 2727, + [2728] = 2450, + [2729] = 2282, + [2730] = 2436, + [2731] = 153, + [2732] = 2732, [2733] = 2733, - [2734] = 1892, - [2735] = 2735, - [2736] = 2736, - [2737] = 1888, - [2738] = 1897, - [2739] = 2200, - [2740] = 2740, - [2741] = 2741, - [2742] = 2742, + [2734] = 2734, + [2735] = 2009, + [2736] = 2282, + [2737] = 2737, + [2738] = 2274, + [2739] = 1923, + [2740] = 2008, + [2741] = 2074, + [2742] = 2034, [2743] = 2743, - [2744] = 1891, - [2745] = 2745, - [2746] = 1894, - [2747] = 1895, + [2744] = 2257, + [2745] = 2070, + [2746] = 2746, + [2747] = 2747, [2748] = 2748, - [2749] = 1896, - [2750] = 1982, - [2751] = 2001, + [2749] = 2749, + [2750] = 2009, + [2751] = 2751, [2752] = 2752, - [2753] = 2753, + [2753] = 1927, [2754] = 2754, [2755] = 2755, [2756] = 2756, [2757] = 2757, - [2758] = 2758, - [2759] = 2759, - [2760] = 2304, + [2758] = 1992, + [2759] = 2612, + [2760] = 2435, [2761] = 2761, - [2762] = 2762, + [2762] = 1922, [2763] = 2763, [2764] = 2764, [2765] = 2765, - [2766] = 154, - [2767] = 2767, - [2768] = 2768, - [2769] = 2769, + [2766] = 2766, + [2767] = 1928, + [2768] = 1925, + [2769] = 1923, [2770] = 2770, - [2771] = 2771, - [2772] = 153, - [2773] = 2773, - [2774] = 2631, - [2775] = 2408, - [2776] = 1957, - [2777] = 1962, - [2778] = 2778, - [2779] = 1963, - [2780] = 2054, - [2781] = 2056, - [2782] = 2253, - [2783] = 2711, - [2784] = 2784, - [2785] = 2061, - [2786] = 1955, - [2787] = 2623, + [2771] = 1924, + [2772] = 151, + [2773] = 1930, + [2774] = 2774, + [2775] = 2775, + [2776] = 2776, + [2777] = 2777, + [2778] = 2012, + [2779] = 2779, + [2780] = 2780, + [2781] = 2781, + [2782] = 2721, + [2783] = 2783, + [2784] = 1983, + [2785] = 2785, + [2786] = 2008, + [2787] = 2596, [2788] = 2788, - [2789] = 2789, - [2790] = 2102, + [2789] = 2198, + [2790] = 2790, [2791] = 2791, - [2792] = 2792, + [2792] = 2257, [2793] = 2793, - [2794] = 1959, - [2795] = 2046, - [2796] = 2631, - [2797] = 1973, + [2794] = 2794, + [2795] = 153, + [2796] = 2796, + [2797] = 2178, [2798] = 2798, - [2799] = 2208, - [2800] = 1986, - [2801] = 2801, - [2802] = 2802, - [2803] = 2803, - [2804] = 1949, - [2805] = 1950, - [2806] = 1951, - [2807] = 2633, + [2799] = 2799, + [2800] = 1981, + [2801] = 2174, + [2802] = 1994, + [2803] = 1982, + [2804] = 2804, + [2805] = 2596, + [2806] = 2034, + [2807] = 2807, [2808] = 2808, - [2809] = 2232, - [2810] = 2633, - [2811] = 2811, - [2812] = 1965, - [2813] = 2813, - [2814] = 2814, - [2815] = 2815, - [2816] = 1935, - [2817] = 2173, + [2809] = 2173, + [2810] = 2611, + [2811] = 2009, + [2812] = 2812, + [2813] = 1986, + [2814] = 2022, + [2815] = 1998, + [2816] = 1995, + [2817] = 2817, [2818] = 2818, - [2819] = 2819, - [2820] = 2820, - [2821] = 1948, - [2822] = 1958, - [2823] = 2823, - [2824] = 2623, - [2825] = 2825, + [2819] = 2263, + [2820] = 2611, + [2821] = 2821, + [2822] = 2822, + [2823] = 1984, + [2824] = 2747, + [2825] = 1988, [2826] = 2826, - [2827] = 2721, - [2828] = 1947, + [2827] = 1980, + [2828] = 2828, [2829] = 2829, - [2830] = 2830, + [2830] = 1996, [2831] = 2831, - [2832] = 1953, - [2833] = 1954, + [2832] = 2832, + [2833] = 2220, [2834] = 2834, [2835] = 2835, [2836] = 2836, - [2837] = 2837, - [2838] = 1985, - [2839] = 2438, - [2840] = 2031, - [2841] = 2399, - [2842] = 1986, - [2843] = 2439, - [2844] = 2315, - [2845] = 2341, - [2846] = 2340, - [2847] = 2339, - [2848] = 2390, - [2849] = 2439, - [2850] = 1964, + [2837] = 2071, + [2838] = 2838, + [2839] = 2839, + [2840] = 2007, + [2841] = 2841, + [2842] = 1997, + [2843] = 2843, + [2844] = 2308, + [2845] = 2845, + [2846] = 2150, + [2847] = 1999, + [2848] = 2848, + [2849] = 2849, + [2850] = 1991, [2851] = 2851, - [2852] = 2399, - [2853] = 2304, - [2854] = 2391, - [2855] = 1960, - [2856] = 2400, + [2852] = 2852, + [2853] = 2853, + [2854] = 2854, + [2855] = 2855, + [2856] = 2856, [2857] = 2857, - [2858] = 2335, - [2859] = 2378, - [2860] = 2310, - [2861] = 1973, - [2862] = 1984, - [2863] = 2391, - [2864] = 2028, - [2865] = 2311, - [2866] = 2025, - [2867] = 2400, - [2868] = 2024, - [2869] = 2438, - [2870] = 2314, - [2871] = 2384, - [2872] = 2035, - [2873] = 2246, - [2874] = 2874, - [2875] = 1952, + [2858] = 2612, + [2859] = 1974, + [2860] = 2860, + [2861] = 2282, + [2862] = 2328, + [2863] = 2445, + [2864] = 2310, + [2865] = 2308, + [2866] = 2293, + [2867] = 1990, + [2868] = 2439, + [2869] = 2450, + [2870] = 2477, + [2871] = 2480, + [2872] = 2034, + [2873] = 2873, + [2874] = 2309, + [2875] = 2442, [2876] = 2436, - [2877] = 2293, - [2878] = 2390, - [2879] = 2633, - [2880] = 2292, - [2881] = 2038, - [2882] = 2001, - [2883] = 2436, - [2884] = 1986, - [2885] = 1973, - [2886] = 2208, - [2887] = 2054, - [2888] = 2253, - [2889] = 2173, - [2890] = 2436, - [2891] = 1982, - [2892] = 2631, - [2893] = 2438, - [2894] = 1984, - [2895] = 1935, - [2896] = 2408, - [2897] = 2391, - [2898] = 2028, - [2899] = 2399, - [2900] = 2400, - [2901] = 2408, - [2902] = 2025, - [2903] = 2102, - [2904] = 2623, - [2905] = 2390, - [2906] = 2056, - [2907] = 1985, - [2908] = 2439, - [2909] = 2061, - [2910] = 2232, - [2911] = 2200, - [2912] = 2001, - [2913] = 2315, - [2914] = 2056, - [2915] = 2025, - [2916] = 2631, - [2917] = 2310, - [2918] = 1982, - [2919] = 2311, - [2920] = 2038, - [2921] = 2028, - [2922] = 2384, - [2923] = 2314, - [2924] = 2408, - [2925] = 2378, - [2926] = 2623, - [2927] = 2246, - [2928] = 2304, - [2929] = 2102, - [2930] = 2035, - [2931] = 1935, - [2932] = 2024, - [2933] = 1935, - [2934] = 2341, - [2935] = 2031, - [2936] = 2054, - [2937] = 2339, - [2938] = 2061, - [2939] = 2335, - [2940] = 2292, - [2941] = 2293, - [2942] = 2340, - [2943] = 2943, - [2944] = 1065, - [2945] = 2945, - [2946] = 2054, - [2947] = 2947, - [2948] = 2948, - [2949] = 2949, - [2950] = 1896, - [2951] = 1895, - [2952] = 2176, - [2953] = 2361, - [2954] = 2024, - [2955] = 2179, - [2956] = 2956, - [2957] = 2957, - [2958] = 2189, - [2959] = 1894, - [2960] = 2960, - [2961] = 2961, - [2962] = 2025, - [2963] = 2963, - [2964] = 2400, - [2965] = 2965, - [2966] = 2966, - [2967] = 2035, - [2968] = 2390, - [2969] = 2969, - [2970] = 2250, - [2971] = 2439, - [2972] = 2208, - [2973] = 2031, - [2974] = 2974, - [2975] = 2975, - [2976] = 2976, - [2977] = 2061, - [2978] = 2399, - [2979] = 2056, - [2980] = 2322, - [2981] = 2438, - [2982] = 2267, - [2983] = 2073, - [2984] = 2436, - [2985] = 2272, - [2986] = 1066, - [2987] = 2137, - [2988] = 1935, - [2989] = 2391, - [2990] = 1986, - [2991] = 1891, - [2992] = 1897, - [2993] = 1888, - [2994] = 2225, - [2995] = 2995, - [2996] = 2246, - [2997] = 2102, - [2998] = 2208, - [2999] = 2232, - [3000] = 1892, - [3001] = 2038, - [3002] = 2232, - [3003] = 1985, - [3004] = 2028, - [3005] = 2239, - [3006] = 1973, - [3007] = 2099, - [3008] = 1984, - [3009] = 2056, - [3010] = 3010, - [3011] = 2623, - [3012] = 2310, - [3013] = 2102, - [3014] = 2803, - [3015] = 2834, - [3016] = 2208, - [3017] = 2311, - [3018] = 2219, - [3019] = 2210, - [3020] = 2061, - [3021] = 2384, - [3022] = 2246, - [3023] = 2814, - [3024] = 1892, - [3025] = 2237, - [3026] = 2378, - [3027] = 2246, - [3028] = 2238, - [3029] = 2813, - [3030] = 2421, - [3031] = 2240, - [3032] = 2452, - [3033] = 2242, - [3034] = 2245, - [3035] = 2314, - [3036] = 1898, - [3037] = 2335, - [3038] = 2762, - [3039] = 2402, - [3040] = 2249, + [2877] = 2274, + [2878] = 2317, + [2879] = 2436, + [2880] = 2477, + [2881] = 2445, + [2882] = 2326, + [2883] = 2008, + [2884] = 2480, + [2885] = 2070, + [2886] = 2288, + [2887] = 2059, + [2888] = 2596, + [2889] = 1989, + [2890] = 2074, + [2891] = 2061, + [2892] = 2892, + [2893] = 2069, + [2894] = 2391, + [2895] = 2295, + [2896] = 2009, + [2897] = 2396, + [2898] = 2007, + [2899] = 2899, + [2900] = 2439, + [2901] = 2442, + [2902] = 1993, + [2903] = 2450, + [2904] = 2325, + [2905] = 2324, + [2906] = 2022, + [2907] = 2068, + [2908] = 2022, + [2909] = 2173, + [2910] = 2477, + [2911] = 2007, + [2912] = 1974, + [2913] = 2439, + [2914] = 2257, + [2915] = 2611, + [2916] = 2198, + [2917] = 2150, + [2918] = 2480, + [2919] = 2178, + [2920] = 2445, + [2921] = 2012, + [2922] = 2436, + [2923] = 2612, + [2924] = 2009, + [2925] = 2282, + [2926] = 2435, + [2927] = 2074, + [2928] = 2442, + [2929] = 2070, + [2930] = 2435, + [2931] = 2174, + [2932] = 2008, + [2933] = 2220, + [2934] = 2034, + [2935] = 2263, + [2936] = 2450, + [2937] = 2274, + [2938] = 2310, + [2939] = 2061, + [2940] = 2069, + [2941] = 2012, + [2942] = 2326, + [2943] = 1974, + [2944] = 2328, + [2945] = 2391, + [2946] = 2611, + [2947] = 2074, + [2948] = 2178, + [2949] = 2309, + [2950] = 2288, + [2951] = 2396, + [2952] = 2068, + [2953] = 2059, + [2954] = 2612, + [2955] = 2070, + [2956] = 2317, + [2957] = 2173, + [2958] = 2174, + [2959] = 2308, + [2960] = 2150, + [2961] = 2324, + [2962] = 2293, + [2963] = 1974, + [2964] = 2325, + [2965] = 2295, + [2966] = 2435, + [2967] = 2480, + [2968] = 2168, + [2969] = 1928, + [2970] = 1925, + [2971] = 1923, + [2972] = 2220, + [2973] = 1927, + [2974] = 1924, + [2975] = 2059, + [2976] = 2223, + [2977] = 2220, + [2978] = 1930, + [2979] = 2150, + [2980] = 2007, + [2981] = 2009, + [2982] = 2439, + [2983] = 2477, + [2984] = 2984, + [2985] = 2069, + [2986] = 1064, + [2987] = 2274, + [2988] = 1922, + [2989] = 2252, + [2990] = 2008, + [2991] = 2991, + [2992] = 2022, + [2993] = 2442, + [2994] = 2068, + [2995] = 2445, + [2996] = 1065, + [2997] = 2997, + [2998] = 2061, + [2999] = 2450, + [3000] = 2263, + [3001] = 2074, + [3002] = 2436, + [3003] = 2338, + [3004] = 2200, + [3005] = 2256, + [3006] = 2330, + [3007] = 3007, + [3008] = 1974, + [3009] = 3009, + [3010] = 2166, + [3011] = 2263, + [3012] = 2265, + [3013] = 3013, + [3014] = 3014, + [3015] = 2347, + [3016] = 3016, + [3017] = 3017, + [3018] = 3018, + [3019] = 3019, + [3020] = 3020, + [3021] = 3021, + [3022] = 3022, + [3023] = 2178, + [3024] = 2290, + [3025] = 2070, + [3026] = 3026, + [3027] = 2174, + [3028] = 2173, + [3029] = 2238, + [3030] = 2081, + [3031] = 3031, + [3032] = 3032, + [3033] = 2235, + [3034] = 1924, + [3035] = 1927, + [3036] = 2150, + [3037] = 2174, + [3038] = 1974, + [3039] = 2178, + [3040] = 2612, [3041] = 3041, - [3042] = 2315, - [3043] = 2230, - [3044] = 2198, - [3045] = 2056, - [3046] = 2195, - [3047] = 2194, - [3048] = 2339, - [3049] = 2193, - [3050] = 2181, - [3051] = 2448, - [3052] = 2180, - [3053] = 2801, - [3054] = 2340, - [3055] = 2341, - [3056] = 2178, - [3057] = 2292, - [3058] = 2177, - [3059] = 2293, - [3060] = 2227, - [3061] = 2102, - [3062] = 2266, - [3063] = 2761, - [3064] = 2204, - [3065] = 2209, - [3066] = 2214, - [3067] = 2217, - [3068] = 2218, - [3069] = 3069, - [3070] = 2226, - [3071] = 2233, - [3072] = 3072, - [3073] = 2172, - [3074] = 2408, - [3075] = 2061, - [3076] = 285, - [3077] = 2235, - [3078] = 2234, - [3079] = 2232, - [3080] = 2061, - [3081] = 1935, - [3082] = 3082, - [3083] = 1888, - [3084] = 1897, - [3085] = 2631, - [3086] = 1891, - [3087] = 2802, - [3088] = 3088, - [3089] = 2222, - [3090] = 2221, - [3091] = 2419, - [3092] = 2401, - [3093] = 2246, - [3094] = 2215, - [3095] = 3069, - [3096] = 2216, - [3097] = 3097, - [3098] = 1894, - [3099] = 2054, - [3100] = 3069, - [3101] = 1895, - [3102] = 1896, - [3103] = 2054, - [3104] = 2102, - [3105] = 2293, - [3106] = 2384, - [3107] = 2292, - [3108] = 2736, - [3109] = 1892, - [3110] = 338, - [3111] = 2378, - [3112] = 2310, - [3113] = 1888, - [3114] = 1897, - [3115] = 1891, - [3116] = 1894, - [3117] = 1895, - [3118] = 2740, - [3119] = 1896, - [3120] = 2341, - [3121] = 3121, - [3122] = 2340, - [3123] = 2054, - [3124] = 2730, - [3125] = 2339, - [3126] = 3069, - [3127] = 2311, - [3128] = 1889, - [3129] = 2335, - [3130] = 2314, - [3131] = 2056, - [3132] = 2315, - [3133] = 3069, - [3134] = 2189, - [3135] = 2225, - [3136] = 2957, - [3137] = 2943, - [3138] = 2225, - [3139] = 2945, - [3140] = 2976, - [3141] = 2956, - [3142] = 2963, - [3143] = 2947, - [3144] = 2960, - [3145] = 2073, - [3146] = 2948, - [3147] = 2949, - [3148] = 2957, - [3149] = 2310, - [3150] = 2239, - [3151] = 2956, - [3152] = 2073, - [3153] = 3153, - [3154] = 2311, - [3155] = 1889, - [3156] = 2995, - [3157] = 2137, - [3158] = 3097, - [3159] = 2638, - [3160] = 2314, - [3161] = 2035, - [3162] = 2969, - [3163] = 2315, - [3164] = 2361, - [3165] = 3165, - [3166] = 2710, - [3167] = 2995, - [3168] = 2705, - [3169] = 2176, - [3170] = 2272, - [3171] = 2099, - [3172] = 2724, - [3173] = 2267, - [3174] = 2031, - [3175] = 2239, - [3176] = 2975, - [3177] = 2966, - [3178] = 2960, - [3179] = 2969, - [3180] = 2966, - [3181] = 2965, - [3182] = 3182, - [3183] = 2179, - [3184] = 2292, - [3185] = 2961, - [3186] = 2189, - [3187] = 2293, - [3188] = 2949, - [3189] = 1889, - [3190] = 2974, - [3191] = 2099, - [3192] = 2250, - [3193] = 2965, - [3194] = 2179, - [3195] = 2948, - [3196] = 2250, - [3197] = 2024, - [3198] = 2947, - [3199] = 2702, - [3200] = 2975, - [3201] = 2681, - [3202] = 2943, - [3203] = 2335, - [3204] = 2945, - [3205] = 2976, - [3206] = 2963, - [3207] = 2974, - [3208] = 2683, - [3209] = 2961, - [3210] = 3088, - [3211] = 3211, - [3212] = 2176, - [3213] = 2339, - [3214] = 2322, - [3215] = 2137, - [3216] = 2340, - [3217] = 2341, - [3218] = 2384, - [3219] = 2378, - [3220] = 2698, - [3221] = 2246, - [3222] = 2038, - [3223] = 1898, - [3224] = 2237, - [3225] = 2238, - [3226] = 2208, - [3227] = 2448, - [3228] = 2402, - [3229] = 2250, - [3230] = 2398, - [3231] = 2232, - [3232] = 2242, - [3233] = 2216, - [3234] = 2189, - [3235] = 2272, - [3236] = 2829, - [3237] = 2215, - [3238] = 1892, - [3239] = 2046, - [3240] = 2452, - [3241] = 3241, - [3242] = 3097, - [3243] = 2177, - [3244] = 3241, - [3245] = 3241, - [3246] = 2179, - [3247] = 2245, - [3248] = 2421, - [3249] = 2266, - [3250] = 2249, - [3251] = 2178, - [3252] = 2267, - [3253] = 2176, - [3254] = 2180, - [3255] = 2219, - [3256] = 2210, - [3257] = 2237, - [3258] = 2238, - [3259] = 2221, - [3260] = 2222, - [3261] = 2240, - [3262] = 2234, - [3263] = 2235, - [3264] = 3241, - [3265] = 2242, - [3266] = 3241, - [3267] = 2703, - [3268] = 2245, - [3269] = 2249, - [3270] = 2181, - [3271] = 2230, - [3272] = 2198, - [3273] = 2435, - [3274] = 2434, - [3275] = 2419, - [3276] = 3241, - [3277] = 2669, - [3278] = 2454, - [3279] = 2195, - [3280] = 2210, - [3281] = 2219, - [3282] = 2194, - [3283] = 2193, - [3284] = 2453, - [3285] = 1888, - [3286] = 2181, - [3287] = 2180, - [3288] = 1897, - [3289] = 1891, - [3290] = 2172, - [3291] = 2178, - [3292] = 2177, - [3293] = 2415, - [3294] = 2204, - [3295] = 2209, - [3296] = 2137, - [3297] = 2214, - [3298] = 2217, - [3299] = 2218, - [3300] = 1894, - [3301] = 2226, - [3302] = 1066, - [3303] = 2233, - [3304] = 2193, - [3305] = 1895, - [3306] = 2240, - [3307] = 2194, - [3308] = 2172, - [3309] = 2322, - [3310] = 2195, - [3311] = 1896, - [3312] = 2234, - [3313] = 2198, - [3314] = 2222, - [3315] = 2221, - [3316] = 2666, - [3317] = 2690, - [3318] = 2215, - [3319] = 2216, - [3320] = 2361, - [3321] = 2225, - [3322] = 2725, - [3323] = 2099, - [3324] = 2393, - [3325] = 2394, - [3326] = 2395, - [3327] = 2396, - [3328] = 2266, - [3329] = 2708, - [3330] = 1889, - [3331] = 2235, - [3332] = 2401, - [3333] = 3241, - [3334] = 2230, - [3335] = 1898, - [3336] = 2227, - [3337] = 2233, - [3338] = 2226, - [3339] = 2073, - [3340] = 1065, - [3341] = 3088, - [3342] = 2218, - [3343] = 2217, - [3344] = 2214, - [3345] = 2227, - [3346] = 2239, - [3347] = 2209, - [3348] = 2204, - [3349] = 2823, - [3350] = 2222, - [3351] = 3153, - [3352] = 1957, - [3353] = 2421, - [3354] = 2778, - [3355] = 2384, - [3356] = 2666, - [3357] = 2137, - [3358] = 2378, - [3359] = 2708, - [3360] = 2173, - [3361] = 3361, - [3362] = 1964, - [3363] = 2793, - [3364] = 1960, - [3365] = 2770, - [3366] = 1962, - [3367] = 1963, - [3368] = 2698, - [3369] = 2764, - [3370] = 2771, - [3371] = 2266, - [3372] = 2683, - [3373] = 2681, - [3374] = 2765, - [3375] = 2730, - [3376] = 1958, - [3377] = 1947, - [3378] = 2808, - [3379] = 1953, - [3380] = 2341, - [3381] = 2219, - [3382] = 2210, - [3383] = 2266, - [3384] = 2759, - [3385] = 2452, - [3386] = 2340, - [3387] = 2721, - [3388] = 2975, - [3389] = 1956, - [3390] = 1959, - [3391] = 2830, - [3392] = 2666, - [3393] = 2702, - [3394] = 2001, - [3395] = 154, - [3396] = 2046, - [3397] = 2237, - [3398] = 2708, - [3399] = 2238, - [3400] = 2339, - [3401] = 2240, - [3402] = 2242, - [3403] = 1965, - [3404] = 1948, - [3405] = 2335, - [3406] = 2245, - [3407] = 2249, - [3408] = 2791, - [3409] = 2792, - [3410] = 153, - [3411] = 2448, - [3412] = 2758, - [3413] = 2754, - [3414] = 2753, - [3415] = 2773, - [3416] = 2743, - [3417] = 2227, - [3418] = 2742, - [3419] = 2788, - [3420] = 2802, - [3421] = 2099, - [3422] = 2798, - [3423] = 2230, - [3424] = 3424, - [3425] = 2198, - [3426] = 2784, - [3427] = 2666, - [3428] = 2195, - [3429] = 2755, - [3430] = 1949, - [3431] = 1950, - [3432] = 2995, - [3433] = 1951, - [3434] = 2975, - [3435] = 2194, - [3436] = 2193, - [3437] = 3437, - [3438] = 2181, - [3439] = 2180, - [3440] = 2178, - [3441] = 2177, - [3442] = 2819, - [3443] = 2815, - [3444] = 2668, - [3445] = 2818, - [3446] = 3153, - [3447] = 1952, - [3448] = 2419, - [3449] = 1889, - [3450] = 2969, - [3451] = 1954, - [3452] = 2966, - [3453] = 2837, - [3454] = 2961, - [3455] = 2836, - [3456] = 2736, - [3457] = 1898, - [3458] = 2315, - [3459] = 2741, - [3460] = 2735, - [3461] = 2740, - [3462] = 2733, - [3463] = 2711, - [3464] = 2820, - [3465] = 2995, - [3466] = 2811, - [3467] = 2960, - [3468] = 2957, - [3469] = 2956, - [3470] = 2314, - [3471] = 2974, - [3472] = 1955, - [3473] = 2401, - [3474] = 2638, - [3475] = 2826, - [3476] = 2204, - [3477] = 2209, - [3478] = 2789, - [3479] = 2214, - [3480] = 2217, - [3481] = 2218, - [3482] = 2226, - [3483] = 2233, - [3484] = 2969, - [3485] = 2965, - [3486] = 2311, - [3487] = 2768, - [3488] = 2761, - [3489] = 2767, - [3490] = 2310, - [3491] = 2763, - [3492] = 2666, - [3493] = 2960, - [3494] = 2073, - [3495] = 2756, - [3496] = 2949, - [3497] = 2762, - [3498] = 2948, - [3499] = 2705, - [3500] = 2801, - [3501] = 2803, - [3502] = 2722, - [3503] = 2728, - [3504] = 2813, - [3505] = 2814, - [3506] = 2745, - [3507] = 2966, - [3508] = 2834, - [3509] = 2752, - [3510] = 2748, - [3511] = 2757, - [3512] = 2963, - [3513] = 2172, - [3514] = 3514, - [3515] = 2724, - [3516] = 2769, - [3517] = 2976, - [3518] = 2945, - [3519] = 2943, - [3520] = 2235, - [3521] = 2234, - [3522] = 2831, - [3523] = 2947, - [3524] = 2948, - [3525] = 2949, - [3526] = 2221, - [3527] = 2957, - [3528] = 2825, - [3529] = 3211, - [3530] = 2215, - [3531] = 2965, - [3532] = 2216, - [3533] = 2956, - [3534] = 2173, - [3535] = 2961, - [3536] = 2974, - [3537] = 2835, - [3538] = 2947, - [3539] = 2943, - [3540] = 2402, - [3541] = 2293, - [3542] = 2963, - [3543] = 2710, - [3544] = 2976, - [3545] = 2945, - [3546] = 2292, - [3547] = 2638, - [3548] = 3548, - [3549] = 2995, - [3550] = 2666, - [3551] = 2099, - [3552] = 2708, - [3553] = 2724, - [3554] = 3554, - [3555] = 2209, - [3556] = 2137, - [3557] = 2215, - [3558] = 2193, - [3559] = 2194, - [3560] = 2415, - [3561] = 3554, - [3562] = 3562, - [3563] = 3097, - [3564] = 2195, - [3565] = 2434, - [3566] = 2435, - [3567] = 2230, - [3568] = 3568, - [3569] = 2239, - [3570] = 2219, - [3571] = 2210, - [3572] = 1898, - [3573] = 1066, - [3574] = 2237, - [3575] = 2225, - [3576] = 3568, - [3577] = 3153, - [3578] = 2666, - [3579] = 2454, - [3580] = 2969, - [3581] = 3568, - [3582] = 2453, - [3583] = 3568, - [3584] = 2725, - [3585] = 2173, - [3586] = 2238, - [3587] = 2966, - [3588] = 2834, - [3589] = 2172, - [3590] = 2814, - [3591] = 2813, - [3592] = 1952, - [3593] = 2803, - [3594] = 2669, - [3595] = 2965, - [3596] = 2801, - [3597] = 2762, - [3598] = 2240, - [3599] = 1065, - [3600] = 2253, - [3601] = 3568, - [3602] = 2179, - [3603] = 3568, - [3604] = 2198, - [3605] = 3568, - [3606] = 3211, - [3607] = 2239, - [3608] = 2398, - [3609] = 2666, - [3610] = 2189, - [3611] = 2221, - [3612] = 2233, - [3613] = 2226, - [3614] = 3614, - [3615] = 3615, - [3616] = 2176, - [3617] = 2046, - [3618] = 2204, - [3619] = 2769, - [3620] = 3088, - [3621] = 2710, - [3622] = 2176, - [3623] = 3614, - [3624] = 2666, - [3625] = 2250, - [3626] = 2235, - [3627] = 2179, - [3628] = 2956, - [3629] = 2957, - [3630] = 2949, - [3631] = 2948, - [3632] = 2703, - [3633] = 2947, - [3634] = 2943, - [3635] = 2945, - [3636] = 2976, - [3637] = 2963, - [3638] = 2705, - [3639] = 2960, - [3640] = 2234, - [3641] = 2225, - [3642] = 2222, - [3643] = 2393, - [3644] = 2189, - [3645] = 2736, - [3646] = 2394, - [3647] = 2395, - [3648] = 2396, - [3649] = 1960, - [3650] = 1898, - [3651] = 2073, - [3652] = 2829, - [3653] = 2214, - [3654] = 2698, - [3655] = 2826, - [3656] = 2826, - [3657] = 2249, - [3658] = 2217, - [3659] = 2218, - [3660] = 2974, - [3661] = 2246, - [3662] = 3568, - [3663] = 2200, - [3664] = 3554, - [3665] = 3088, - [3666] = 3568, - [3667] = 2245, - [3668] = 3568, - [3669] = 2177, - [3670] = 3548, - [3671] = 3554, - [3672] = 3614, - [3673] = 2690, - [3674] = 2001, - [3675] = 2178, - [3676] = 3097, - [3677] = 2683, - [3678] = 2681, - [3679] = 3614, - [3680] = 2242, - [3681] = 2200, - [3682] = 2253, - [3683] = 2180, - [3684] = 2769, - [3685] = 1964, - [3686] = 2975, - [3687] = 2181, - [3688] = 2763, - [3689] = 2702, - [3690] = 2216, - [3691] = 2250, - [3692] = 3568, - [3693] = 2763, - [3694] = 2961, - [3695] = 2393, - [3696] = 2753, - [3697] = 3697, - [3698] = 1986, - [3699] = 2219, - [3700] = 2742, - [3701] = 2210, - [3702] = 2761, - [3703] = 3615, - [3704] = 2762, - [3705] = 1951, - [3706] = 2825, - [3707] = 1950, - [3708] = 2949, - [3709] = 3709, - [3710] = 2957, - [3711] = 2801, - [3712] = 2803, - [3713] = 2813, - [3714] = 2814, - [3715] = 2834, - [3716] = 2956, - [3717] = 2835, - [3718] = 1066, - [3719] = 2304, - [3720] = 1949, - [3721] = 3721, - [3722] = 2237, - [3723] = 2238, - [3724] = 2240, - [3725] = 2242, - [3726] = 3726, - [3727] = 3211, - [3728] = 3088, - [3729] = 2245, - [3730] = 2249, - [3731] = 3731, - [3732] = 1957, - [3733] = 2740, - [3734] = 1959, - [3735] = 3709, - [3736] = 1956, - [3737] = 2778, - [3738] = 1985, - [3739] = 1982, - [3740] = 2400, - [3741] = 2724, - [3742] = 2948, - [3743] = 2439, - [3744] = 2666, - [3745] = 3731, - [3746] = 2710, - [3747] = 2668, - [3748] = 1964, - [3749] = 2965, - [3750] = 2391, - [3751] = 2764, - [3752] = 3726, - [3753] = 2770, - [3754] = 1963, - [3755] = 2736, - [3756] = 3756, - [3757] = 3757, - [3758] = 3721, - [3759] = 1948, - [3760] = 1962, - [3761] = 1065, - [3762] = 2448, - [3763] = 3726, - [3764] = 2227, - [3765] = 2758, - [3766] = 1960, - [3767] = 2947, - [3768] = 2793, - [3769] = 2253, - [3770] = 2230, - [3771] = 1954, - [3772] = 2198, - [3773] = 2419, - [3774] = 2195, - [3775] = 2757, - [3776] = 2754, - [3777] = 2708, - [3778] = 2399, - [3779] = 2752, - [3780] = 2966, - [3781] = 3756, - [3782] = 2194, - [3783] = 2193, - [3784] = 2743, - [3785] = 2969, - [3786] = 3697, - [3787] = 3697, - [3788] = 3697, - [3789] = 2943, - [3790] = 2453, - [3791] = 3097, - [3792] = 2945, - [3793] = 2415, - [3794] = 2173, - [3795] = 2976, - [3796] = 2722, - [3797] = 3697, - [3798] = 1955, - [3799] = 2963, - [3800] = 1965, - [3801] = 2181, - [3802] = 3757, - [3803] = 2748, - [3804] = 2745, - [3805] = 2666, - [3806] = 2728, - [3807] = 2180, - [3808] = 2784, - [3809] = 3721, - [3810] = 2755, - [3811] = 2705, - [3812] = 2178, - [3813] = 2177, - [3814] = 2831, - [3815] = 2756, - [3816] = 2767, - [3817] = 3721, - [3818] = 2802, - [3819] = 2792, - [3820] = 2791, - [3821] = 2960, - [3822] = 3726, - [3823] = 2995, - [3824] = 2711, - [3825] = 2390, - [3826] = 3726, - [3827] = 2768, - [3828] = 2434, - [3829] = 2435, - [3830] = 1957, - [3831] = 2974, - [3832] = 2703, - [3833] = 3709, - [3834] = 2765, - [3835] = 2789, - [3836] = 2815, - [3837] = 2818, - [3838] = 2401, - [3839] = 2961, - [3840] = 1954, - [3841] = 3731, - [3842] = 2820, - [3843] = 3731, - [3844] = 2735, - [3845] = 2741, - [3846] = 2454, - [3847] = 3756, - [3848] = 2811, - [3849] = 3731, - [3850] = 1973, - [3851] = 2304, - [3852] = 2829, - [3853] = 1962, - [3854] = 3709, - [3855] = 1963, - [3856] = 2733, - [3857] = 2200, - [3858] = 1952, - [3859] = 2771, - [3860] = 2698, - [3861] = 2683, - [3862] = 2702, - [3863] = 1951, - [3864] = 1950, - [3865] = 2436, - [3866] = 153, - [3867] = 1949, - [3868] = 2438, - [3869] = 2690, - [3870] = 2452, - [3871] = 2826, - [3872] = 2204, - [3873] = 1958, - [3874] = 3709, - [3875] = 2394, - [3876] = 1958, - [3877] = 3756, - [3878] = 2395, - [3879] = 2721, - [3880] = 2209, - [3881] = 2396, - [3882] = 3756, - [3883] = 1947, - [3884] = 1953, - [3885] = 3211, - [3886] = 2214, - [3887] = 2217, - [3888] = 2216, - [3889] = 1947, - [3890] = 2808, - [3891] = 2215, - [3892] = 2836, - [3893] = 2837, - [3894] = 2823, - [3895] = 2759, - [3896] = 2819, - [3897] = 1953, - [3898] = 3697, - [3899] = 1984, - [3900] = 2798, - [3901] = 3721, - [3902] = 2218, - [3903] = 2830, - [3904] = 3756, - [3905] = 2725, - [3906] = 154, - [3907] = 3709, - [3908] = 1948, - [3909] = 2226, - [3910] = 1955, - [3911] = 2233, - [3912] = 2975, - [3913] = 1965, - [3914] = 2669, - [3915] = 154, - [3916] = 2730, - [3917] = 2788, - [3918] = 3709, - [3919] = 2398, - [3920] = 2304, - [3921] = 2266, - [3922] = 2763, - [3923] = 153, - [3924] = 3721, - [3925] = 2773, - [3926] = 3709, - [3927] = 3709, - [3928] = 3726, - [3929] = 2681, - [3930] = 2666, - [3931] = 2221, - [3932] = 2222, - [3933] = 2234, - [3934] = 2172, - [3935] = 2235, - [3936] = 1956, - [3937] = 2769, - [3938] = 1959, - [3939] = 2698, - [3940] = 2826, - [3941] = 1953, - [3942] = 2765, - [3943] = 2711, - [3944] = 2791, - [3945] = 1955, - [3946] = 1898, - [3947] = 2001, - [3948] = 2792, - [3949] = 1958, - [3950] = 2763, - [3951] = 3757, - [3952] = 2436, - [3953] = 2820, - [3954] = 2438, - [3955] = 2960, - [3956] = 2705, - [3957] = 2668, - [3958] = 2963, - [3959] = 2771, - [3960] = 3424, - [3961] = 3961, - [3962] = 2802, - [3963] = 2976, - [3964] = 2943, - [3965] = 2789, - [3966] = 2947, - [3967] = 2948, - [3968] = 3961, - [3969] = 2408, - [3970] = 2949, - [3971] = 1957, - [3972] = 1065, - [3973] = 2778, - [3974] = 2768, - [3975] = 2957, - [3976] = 2391, - [3977] = 2767, - [3978] = 2769, - [3979] = 2831, - [3980] = 3980, - [3981] = 2756, - [3982] = 2956, - [3983] = 2773, - [3984] = 3211, - [3985] = 2974, - [3986] = 2788, - [3987] = 2965, - [3988] = 1954, - [3989] = 2834, - [3990] = 2400, - [3991] = 2439, - [3992] = 1948, - [3993] = 2752, - [3994] = 2836, - [3995] = 1965, - [3996] = 2757, - [3997] = 2811, - [3998] = 2399, - [3999] = 2798, - [4000] = 2733, - [4001] = 4001, - [4002] = 2638, - [4003] = 2028, - [4004] = 2758, - [4005] = 2814, - [4006] = 2173, - [4007] = 2046, - [4008] = 2735, - [4009] = 3961, - [4010] = 2741, - [4011] = 2721, - [4012] = 2761, - [4013] = 2754, - [4014] = 2753, - [4015] = 2764, - [4016] = 2813, - [4017] = 2803, - [4018] = 2829, - [4019] = 2801, - [4020] = 1962, - [4021] = 2743, - [4022] = 2742, - [4023] = 2762, - [4024] = 2702, - [4025] = 2784, - [4026] = 1963, - [4027] = 2740, - [4028] = 2755, - [4029] = 2439, - [4030] = 1066, - [4031] = 2975, - [4032] = 3961, - [4033] = 1982, - [4034] = 3961, - [4035] = 1951, - [4036] = 2390, - [4037] = 2001, - [4038] = 1947, - [4039] = 4039, - [4040] = 3211, - [4041] = 2770, - [4042] = 2830, - [4043] = 2837, - [4044] = 2408, - [4045] = 1950, - [4046] = 3961, - [4047] = 1949, - [4048] = 2945, - [4049] = 2961, - [4050] = 4050, - [4051] = 2722, - [4052] = 154, - [4053] = 2438, - [4054] = 4054, - [4055] = 2436, - [4056] = 2969, - [4057] = 3757, - [4058] = 2808, - [4059] = 2025, - [4060] = 2400, - [4061] = 2745, - [4062] = 2759, - [4063] = 1959, - [4064] = 2825, - [4065] = 2819, - [4066] = 2966, - [4067] = 2835, - [4068] = 3961, - [4069] = 2681, - [4070] = 2815, - [4071] = 2818, - [4072] = 1956, - [4073] = 2736, - [4074] = 2995, - [4075] = 2399, - [4076] = 2390, - [4077] = 3961, - [4078] = 1984, - [4079] = 1985, - [4080] = 4080, - [4081] = 2028, - [4082] = 2025, - [4083] = 2391, - [4084] = 4084, - [4085] = 2710, - [4086] = 2728, - [4087] = 2748, - [4088] = 3961, - [4089] = 2823, - [4090] = 2227, - [4091] = 1973, - [4092] = 1986, - [4093] = 153, - [4094] = 2683, - [4095] = 2730, - [4096] = 2793, - [4097] = 1935, - [4098] = 3757, - [4099] = 4039, - [4100] = 2046, - [4101] = 3757, - [4102] = 2253, - [4103] = 2304, - [4104] = 2623, - [4105] = 3757, - [4106] = 2028, - [4107] = 1982, - [4108] = 1986, - [4109] = 2631, - [4110] = 2408, - [4111] = 2200, - [4112] = 4112, - [4113] = 3757, - [4114] = 3088, - [4115] = 2631, - [4116] = 3548, - [4117] = 1973, - [4118] = 3980, - [4119] = 3757, - [4120] = 3757, - [4121] = 1888, - [4122] = 2056, - [4123] = 1896, - [4124] = 1895, - [4125] = 1894, - [4126] = 2025, - [4127] = 3097, - [4128] = 2054, - [4129] = 1891, - [4130] = 3211, - [4131] = 1897, - [4132] = 2725, - [4133] = 2102, - [4134] = 1985, - [4135] = 2061, - [4136] = 2623, - [4137] = 1984, - [4138] = 1892, - [4139] = 3757, - [4140] = 2638, - [4141] = 3757, - [4142] = 1898, - [4143] = 2778, - [4144] = 2390, - [4145] = 1948, - [4146] = 2733, - [4147] = 154, - [4148] = 2681, - [4149] = 2735, - [4150] = 2741, - [4151] = 2031, - [4152] = 1986, - [4153] = 1965, - [4154] = 3757, - [4155] = 2438, - [4156] = 1955, - [4157] = 2436, - [4158] = 2711, - [4159] = 3757, - [4160] = 2038, - [4161] = 1962, - [4162] = 2761, - [4163] = 2831, - [4164] = 4164, - [4165] = 1954, - [4166] = 2808, - [4167] = 2304, - [4168] = 1984, - [4169] = 1973, - [4170] = 2830, - [4171] = 1985, - [4172] = 2035, - [4173] = 2725, - [4174] = 2025, - [4175] = 1973, - [4176] = 1984, - [4177] = 2710, - [4178] = 1958, - [4179] = 2721, - [4180] = 1947, - [4181] = 1953, - [4182] = 2836, - [4183] = 2837, - [4184] = 2793, - [4185] = 153, - [4186] = 2025, - [4187] = 2802, - [4188] = 2823, - [4189] = 2819, - [4190] = 2740, - [4191] = 2759, - [4192] = 2698, - [4193] = 1986, - [4194] = 2798, - [4195] = 2820, - [4196] = 2024, - [4197] = 4164, - [4198] = 1982, - [4199] = 4164, - [4200] = 2818, - [4201] = 2815, - [4202] = 2788, - [4203] = 1985, - [4204] = 2399, - [4205] = 2798, - [4206] = 2439, - [4207] = 2730, - [4208] = 2764, - [4209] = 1963, - [4210] = 4164, - [4211] = 2789, - [4212] = 2773, - [4213] = 2758, - [4214] = 2757, - [4215] = 2754, - [4216] = 2753, - [4217] = 3757, - [4218] = 2232, - [4219] = 2770, - [4220] = 1951, - [4221] = 2391, - [4222] = 1950, - [4223] = 1949, - [4224] = 2400, - [4225] = 2752, - [4226] = 2208, - [4227] = 3757, - [4228] = 2767, - [4229] = 2683, - [4230] = 4164, - [4231] = 2743, - [4232] = 2733, - [4233] = 4164, - [4234] = 2742, - [4235] = 1984, - [4236] = 2246, - [4237] = 2702, - [4238] = 2784, - [4239] = 2755, - [4240] = 2028, - [4241] = 2028, - [4242] = 1957, - [4243] = 2705, - [4244] = 4164, - [4245] = 2768, - [4246] = 2767, - [4247] = 1985, - [4248] = 4164, - [4249] = 1956, - [4250] = 4164, - [4251] = 2808, - [4252] = 2756, - [4253] = 1959, - [4254] = 2820, - [4255] = 2054, - [4256] = 1973, - [4257] = 2102, - [4258] = 2770, - [4259] = 2208, - [4260] = 1892, - [4261] = 2232, - [4262] = 2304, - [4263] = 2408, - [4264] = 2623, - [4265] = 2056, - [4266] = 2061, - [4267] = 2742, - [4268] = 2768, - [4269] = 2818, - [4270] = 2764, - [4271] = 1888, - [4272] = 2788, - [4273] = 1897, - [4274] = 2631, - [4275] = 3757, - [4276] = 1984, - [4277] = 1891, - [4278] = 1894, - [4279] = 2823, - [4280] = 1985, - [4281] = 2752, - [4282] = 4001, - [4283] = 1935, - [4284] = 2208, - [4285] = 2743, - [4286] = 2756, - [4287] = 1895, - [4288] = 2758, - [4289] = 2631, - [4290] = 2773, - [4291] = 2623, - [4292] = 2753, - [4293] = 2815, - [4294] = 4294, - [4295] = 2754, - [4296] = 2837, - [4297] = 2735, - [4298] = 2759, - [4299] = 2757, - [4300] = 2831, - [4301] = 2836, - [4302] = 2819, - [4303] = 2741, - [4304] = 2789, - [4305] = 2793, - [4306] = 4001, - [4307] = 2173, - [4308] = 2830, - [4309] = 3757, - [4310] = 2232, - [4311] = 2784, - [4312] = 2778, - [4313] = 1896, - [4314] = 2755, - [4315] = 1986, - [4316] = 2310, - [4317] = 2314, - [4318] = 2035, - [4319] = 2031, - [4320] = 2384, - [4321] = 2293, - [4322] = 2024, - [4323] = 2378, - [4324] = 2038, - [4325] = 2304, - [4326] = 2028, - [4327] = 2293, - [4328] = 2038, - [4329] = 2341, - [4330] = 2340, - [4331] = 2339, - [4332] = 2292, - [4333] = 2335, - [4334] = 2311, - [4335] = 2035, - [4336] = 2031, - [4337] = 2335, - [4338] = 2246, - [4339] = 2315, - [4340] = 2341, - [4341] = 2024, - [4342] = 2340, - [4343] = 2315, - [4344] = 2340, - [4345] = 2401, - [4346] = 2339, - [4347] = 2314, - [4348] = 2339, - [4349] = 2314, - [4350] = 4350, - [4351] = 2025, - [4352] = 2311, - [4353] = 2419, - [4354] = 2384, - [4355] = 2315, - [4356] = 2293, - [4357] = 2341, - [4358] = 2310, - [4359] = 2310, - [4360] = 2384, - [4361] = 2378, - [4362] = 2335, - [4363] = 2311, - [4364] = 2292, - [4365] = 2378, - [4366] = 2292, - [4367] = 2448, - [4368] = 2452, - [4369] = 4369, - [4370] = 4369, - [4371] = 4371, - [4372] = 3757, - [4373] = 4373, - [4374] = 4374, - [4375] = 4369, - [4376] = 1889, + [3042] = 2273, + [3043] = 2396, + [3044] = 2271, + [3045] = 2224, + [3046] = 3046, + [3047] = 2779, + [3048] = 2225, + [3049] = 2328, + [3050] = 2428, + [3051] = 2756, + [3052] = 2391, + [3053] = 2240, + [3054] = 2326, + [3055] = 2178, + [3056] = 2272, + [3057] = 2174, + [3058] = 2293, + [3059] = 2421, + [3060] = 2326, + [3061] = 2328, + [3062] = 2173, + [3063] = 2301, + [3064] = 2295, + [3065] = 2611, + [3066] = 2396, + [3067] = 2263, + [3068] = 3068, + [3069] = 2757, + [3070] = 311, + [3071] = 2178, + [3072] = 2433, + [3073] = 2755, + [3074] = 2785, + [3075] = 2228, + [3076] = 2226, + [3077] = 2860, + [3078] = 2852, + [3079] = 2174, + [3080] = 2845, + [3081] = 2274, + [3082] = 2391, + [3083] = 3083, + [3084] = 1923, + [3085] = 1925, + [3086] = 2221, + [3087] = 1928, + [3088] = 2219, + [3089] = 2216, + [3090] = 2274, + [3091] = 2310, + [3092] = 2220, + [3093] = 1922, + [3094] = 1928, + [3095] = 1925, + [3096] = 2215, + [3097] = 2213, + [3098] = 2481, + [3099] = 1926, + [3100] = 2288, + [3101] = 2317, + [3102] = 1923, + [3103] = 2475, + [3104] = 2839, + [3105] = 1927, + [3106] = 1930, + [3107] = 1924, + [3108] = 2317, + [3109] = 1930, + [3110] = 1933, + [3111] = 2231, + [3112] = 2222, + [3113] = 2150, + [3114] = 2310, + [3115] = 2857, + [3116] = 2288, + [3117] = 327, + [3118] = 2209, + [3119] = 2826, + [3120] = 3120, + [3121] = 2259, + [3122] = 2237, + [3123] = 2258, + [3124] = 2309, + [3125] = 2293, + [3126] = 2227, + [3127] = 3127, + [3128] = 2458, + [3129] = 2247, + [3130] = 2255, + [3131] = 2267, + [3132] = 2173, + [3133] = 2248, + [3134] = 3120, + [3135] = 2150, + [3136] = 3136, + [3137] = 2202, + [3138] = 2435, + [3139] = 3139, + [3140] = 2203, + [3141] = 2204, + [3142] = 2217, + [3143] = 3120, + [3144] = 2295, + [3145] = 2250, + [3146] = 2251, + [3147] = 2325, + [3148] = 2309, + [3149] = 1922, + [3150] = 2324, + [3151] = 2324, + [3152] = 2325, + [3153] = 1922, + [3154] = 1930, + [3155] = 3120, + [3156] = 1924, + [3157] = 3120, + [3158] = 1927, + [3159] = 2242, + [3160] = 2274, + [3161] = 1923, + [3162] = 1925, + [3163] = 2173, + [3164] = 1928, + [3165] = 2396, + [3166] = 2293, + [3167] = 2984, + [3168] = 3022, + [3169] = 2068, + [3170] = 3013, + [3171] = 3171, + [3172] = 2751, + [3173] = 3026, + [3174] = 2746, + [3175] = 3013, + [3176] = 3021, + [3177] = 2749, + [3178] = 3009, + [3179] = 3007, + [3180] = 2733, + [3181] = 2238, + [3182] = 3020, + [3183] = 3183, + [3184] = 2338, + [3185] = 3018, + [3186] = 2223, + [3187] = 3017, + [3188] = 2166, + [3189] = 3016, + [3190] = 2252, + [3191] = 3014, + [3192] = 2726, + [3193] = 3009, + [3194] = 3194, + [3195] = 2706, + [3196] = 3026, + [3197] = 2059, + [3198] = 2238, + [3199] = 3041, + [3200] = 2200, + [3201] = 3032, + [3202] = 2081, + [3203] = 3083, + [3204] = 2310, + [3205] = 2061, + [3206] = 2702, + [3207] = 2295, + [3208] = 1933, + [3209] = 2391, + [3210] = 3171, + [3211] = 3019, + [3212] = 2223, + [3213] = 2317, + [3214] = 2252, + [3215] = 2991, + [3216] = 1926, + [3217] = 3032, + [3218] = 3218, + [3219] = 3022, + [3220] = 3021, + [3221] = 3020, + [3222] = 3019, + [3223] = 2081, + [3224] = 3018, + [3225] = 2168, + [3226] = 3017, + [3227] = 3016, + [3228] = 3014, + [3229] = 3031, + [3230] = 2997, + [3231] = 3031, + [3232] = 2991, + [3233] = 2984, + [3234] = 3007, + [3235] = 2997, + [3236] = 2680, + [3237] = 2325, + [3238] = 2166, + [3239] = 2324, + [3240] = 3240, + [3241] = 2347, + [3242] = 2256, + [3243] = 2309, + [3244] = 2288, + [3245] = 3171, + [3246] = 2274, + [3247] = 2200, + [3248] = 1926, + [3249] = 2069, + [3250] = 2256, + [3251] = 2265, + [3252] = 2330, + [3253] = 2326, + [3254] = 2168, + [3255] = 2328, + [3256] = 3171, + [3257] = 2290, + [3258] = 2265, + [3259] = 1923, + [3260] = 2250, + [3261] = 2242, + [3262] = 2259, + [3263] = 2799, + [3264] = 2330, + [3265] = 1926, + [3266] = 2255, + [3267] = 2267, + [3268] = 2213, + [3269] = 2202, + [3270] = 2203, + [3271] = 2737, + [3272] = 2217, + [3273] = 2204, + [3274] = 2215, + [3275] = 2216, + [3276] = 2204, + [3277] = 3277, + [3278] = 2217, + [3279] = 2219, + [3280] = 2081, + [3281] = 2221, + [3282] = 2226, + [3283] = 3277, + [3284] = 2203, + [3285] = 2202, + [3286] = 2421, + [3287] = 2166, + [3288] = 2429, + [3289] = 2228, + [3290] = 2242, + [3291] = 2496, + [3292] = 2495, + [3293] = 2267, + [3294] = 2251, + [3295] = 2255, + [3296] = 2250, + [3297] = 2248, + [3298] = 2247, + [3299] = 2227, + [3300] = 2273, + [3301] = 2271, + [3302] = 2704, + [3303] = 2258, + [3304] = 2237, + [3305] = 3277, + [3306] = 2258, + [3307] = 2433, + [3308] = 2222, + [3309] = 2259, + [3310] = 2231, + [3311] = 3277, + [3312] = 3041, + [3313] = 2301, + [3314] = 2240, + [3315] = 2235, + [3316] = 2168, + [3317] = 2251, + [3318] = 2727, + [3319] = 2225, + [3320] = 2338, + [3321] = 2248, + [3322] = 2301, + [3323] = 2224, + [3324] = 2224, + [3325] = 2225, + [3326] = 3277, + [3327] = 2235, + [3328] = 2247, + [3329] = 2240, + [3330] = 2227, + [3331] = 2237, + [3332] = 2458, + [3333] = 3277, + [3334] = 3277, + [3335] = 2471, + [3336] = 2470, + [3337] = 2468, + [3338] = 2461, + [3339] = 2238, + [3340] = 2422, + [3341] = 2423, + [3342] = 2271, + [3343] = 2481, + [3344] = 2273, + [3345] = 2223, + [3346] = 1930, + [3347] = 1924, + [3348] = 1927, + [3349] = 1933, + [3350] = 2290, + [3351] = 2748, + [3352] = 2734, + [3353] = 2272, + [3354] = 2265, + [3355] = 2428, + [3356] = 2272, + [3357] = 2263, + [3358] = 2256, + [3359] = 2200, + [3360] = 2220, + [3361] = 1922, + [3362] = 2252, + [3363] = 2209, + [3364] = 2499, + [3365] = 2228, + [3366] = 2226, + [3367] = 2347, + [3368] = 2071, + [3369] = 1065, + [3370] = 2221, + [3371] = 2209, + [3372] = 2231, + [3373] = 3083, + [3374] = 2219, + [3375] = 2752, + [3376] = 1064, + [3377] = 2216, + [3378] = 1928, + [3379] = 2215, + [3380] = 2222, + [3381] = 2213, + [3382] = 2475, + [3383] = 1925, + [3384] = 153, + [3385] = 2845, + [3386] = 1984, + [3387] = 1988, + [3388] = 1980, + [3389] = 2081, + [3390] = 2796, + [3391] = 3009, + [3392] = 2168, + [3393] = 2763, + [3394] = 2774, + [3395] = 3007, + [3396] = 2984, + [3397] = 3013, + [3398] = 1998, + [3399] = 1986, + [3400] = 3022, + [3401] = 3021, + [3402] = 3009, + [3403] = 2817, + [3404] = 2702, + [3405] = 3020, + [3406] = 3019, + [3407] = 3018, + [3408] = 1933, + [3409] = 3007, + [3410] = 3017, + [3411] = 3016, + [3412] = 2328, + [3413] = 3014, + [3414] = 3013, + [3415] = 2829, + [3416] = 3026, + [3417] = 1990, + [3418] = 3418, + [3419] = 3032, + [3420] = 2822, + [3421] = 2779, + [3422] = 2848, + [3423] = 2843, + [3424] = 2851, + [3425] = 2231, + [3426] = 2680, + [3427] = 2326, + [3428] = 2222, + [3429] = 2754, + [3430] = 2791, + [3431] = 2854, + [3432] = 2734, + [3433] = 2997, + [3434] = 2793, + [3435] = 2237, + [3436] = 2227, + [3437] = 3031, + [3438] = 1991, + [3439] = 1999, + [3440] = 2836, + [3441] = 2247, + [3442] = 2248, + [3443] = 2991, + [3444] = 2433, + [3445] = 3445, + [3446] = 2727, + [3447] = 1997, + [3448] = 2250, + [3449] = 2251, + [3450] = 2761, + [3451] = 2325, + [3452] = 3021, + [3453] = 2242, + [3454] = 1996, + [3455] = 2217, + [3456] = 2324, + [3457] = 2204, + [3458] = 2458, + [3459] = 2770, + [3460] = 2203, + [3461] = 2396, + [3462] = 2798, + [3463] = 2826, + [3464] = 2202, + [3465] = 2838, + [3466] = 2475, + [3467] = 2034, + [3468] = 2391, + [3469] = 2267, + [3470] = 2255, + [3471] = 1989, + [3472] = 2071, + [3473] = 2301, + [3474] = 2293, + [3475] = 2309, + [3476] = 2295, + [3477] = 2834, + [3478] = 3218, + [3479] = 2258, + [3480] = 2259, + [3481] = 2804, + [3482] = 2812, + [3483] = 2808, + [3484] = 2997, + [3485] = 2301, + [3486] = 2984, + [3487] = 2751, + [3488] = 2481, + [3489] = 2734, + [3490] = 2198, + [3491] = 2726, + [3492] = 2727, + [3493] = 2785, + [3494] = 2756, + [3495] = 3032, + [3496] = 151, + [3497] = 2991, + [3498] = 2790, + [3499] = 3031, + [3500] = 2855, + [3501] = 2856, + [3502] = 2428, + [3503] = 2807, + [3504] = 2166, + [3505] = 2849, + [3506] = 2288, + [3507] = 2421, + [3508] = 2764, + [3509] = 2733, + [3510] = 2765, + [3511] = 2213, + [3512] = 2732, + [3513] = 2743, + [3514] = 2215, + [3515] = 2776, + [3516] = 2821, + [3517] = 2835, + [3518] = 2706, + [3519] = 2777, + [3520] = 2216, + [3521] = 2818, + [3522] = 2219, + [3523] = 2221, + [3524] = 2781, + [3525] = 1995, + [3526] = 3526, + [3527] = 1926, + [3528] = 1982, + [3529] = 2226, + [3530] = 3022, + [3531] = 2228, + [3532] = 3019, + [3533] = 1994, + [3534] = 3018, + [3535] = 3218, + [3536] = 2198, + [3537] = 2831, + [3538] = 2832, + [3539] = 1981, + [3540] = 2783, + [3541] = 3017, + [3542] = 2766, + [3543] = 2310, + [3544] = 2780, + [3545] = 2747, + [3546] = 2273, + [3547] = 2734, + [3548] = 2317, + [3549] = 2749, + [3550] = 1992, + [3551] = 2746, + [3552] = 2788, + [3553] = 2839, + [3554] = 2714, + [3555] = 2775, + [3556] = 2209, + [3557] = 2852, + [3558] = 2860, + [3559] = 2755, + [3560] = 2794, + [3561] = 2721, + [3562] = 2757, + [3563] = 1983, + [3564] = 2271, + [3565] = 2272, + [3566] = 3566, + [3567] = 3020, + [3568] = 2841, + [3569] = 3183, + [3570] = 2853, + [3571] = 3016, + [3572] = 3014, + [3573] = 2828, + [3574] = 2857, + [3575] = 1993, + [3576] = 2240, + [3577] = 2235, + [3578] = 2734, + [3579] = 2225, + [3580] = 2224, + [3581] = 3026, + [3582] = 2702, + [3583] = 1064, + [3584] = 2231, + [3585] = 2726, + [3586] = 2734, + [3587] = 3218, + [3588] = 2217, + [3589] = 2274, + [3590] = 2204, + [3591] = 2757, + [3592] = 3592, + [3593] = 2756, + [3594] = 2247, + [3595] = 3595, + [3596] = 3183, + [3597] = 3597, + [3598] = 2227, + [3599] = 1933, + [3600] = 2221, + [3601] = 2213, + [3602] = 2257, + [3603] = 2237, + [3604] = 2734, + [3605] = 2766, + [3606] = 3606, + [3607] = 3597, + [3608] = 1933, + [3609] = 2984, + [3610] = 2680, + [3611] = 1989, + [3612] = 2252, + [3613] = 2258, + [3614] = 2282, + [3615] = 2202, + [3616] = 3041, + [3617] = 3592, + [3618] = 2081, + [3619] = 2200, + [3620] = 2273, + [3621] = 2071, + [3622] = 3083, + [3623] = 2271, + [3624] = 3624, + [3625] = 3041, + [3626] = 3597, + [3627] = 2238, + [3628] = 2242, + [3629] = 2991, + [3630] = 3597, + [3631] = 3031, + [3632] = 3597, + [3633] = 2267, + [3634] = 2423, + [3635] = 2422, + [3636] = 2727, + [3637] = 2997, + [3638] = 2248, + [3639] = 2215, + [3640] = 3592, + [3641] = 2461, + [3642] = 3597, + [3643] = 2222, + [3644] = 2228, + [3645] = 2841, + [3646] = 2255, + [3647] = 2256, + [3648] = 2166, + [3649] = 2250, + [3650] = 2168, + [3651] = 2251, + [3652] = 2203, + [3653] = 3595, + [3654] = 2219, + [3655] = 2252, + [3656] = 2429, + [3657] = 1065, + [3658] = 3007, + [3659] = 3009, + [3660] = 2259, + [3661] = 2860, + [3662] = 2265, + [3663] = 3014, + [3664] = 2737, + [3665] = 2733, + [3666] = 2240, + [3667] = 2235, + [3668] = 2852, + [3669] = 2223, + [3670] = 2198, + [3671] = 3016, + [3672] = 2200, + [3673] = 3017, + [3674] = 2845, + [3675] = 3018, + [3676] = 3019, + [3677] = 3020, + [3678] = 3021, + [3679] = 2706, + [3680] = 3013, + [3681] = 2225, + [3682] = 2272, + [3683] = 2224, + [3684] = 2470, + [3685] = 2256, + [3686] = 3597, + [3687] = 2471, + [3688] = 2749, + [3689] = 2746, + [3690] = 2257, + [3691] = 2238, + [3692] = 2265, + [3693] = 2226, + [3694] = 2839, + [3695] = 2841, + [3696] = 1990, + [3697] = 3026, + [3698] = 3698, + [3699] = 2496, + [3700] = 2751, + [3701] = 2282, + [3702] = 2856, + [3703] = 2748, + [3704] = 2495, + [3705] = 3022, + [3706] = 2734, + [3707] = 3597, + [3708] = 2752, + [3709] = 2734, + [3710] = 2216, + [3711] = 3597, + [3712] = 2755, + [3713] = 2223, + [3714] = 2034, + [3715] = 2799, + [3716] = 3032, + [3717] = 1993, + [3718] = 2704, + [3719] = 2766, + [3720] = 2499, + [3721] = 3597, + [3722] = 2856, + [3723] = 2468, + [3724] = 3083, + [3725] = 3597, + [3726] = 3018, + [3727] = 2804, + [3728] = 2202, + [3729] = 2203, + [3730] = 2822, + [3731] = 2204, + [3732] = 2209, + [3733] = 1989, + [3734] = 2217, + [3735] = 2267, + [3736] = 2257, + [3737] = 2255, + [3738] = 2706, + [3739] = 3021, + [3740] = 2242, + [3741] = 2198, + [3742] = 2258, + [3743] = 2721, + [3744] = 2259, + [3745] = 1983, + [3746] = 2726, + [3747] = 1982, + [3748] = 2308, + [3749] = 2471, + [3750] = 2470, + [3751] = 2468, + [3752] = 2461, + [3753] = 3013, + [3754] = 2308, + [3755] = 2734, + [3756] = 2428, + [3757] = 2821, + [3758] = 2282, + [3759] = 3022, + [3760] = 3032, + [3761] = 2836, + [3762] = 153, + [3763] = 2783, + [3764] = 2734, + [3765] = 3765, + [3766] = 2751, + [3767] = 3767, + [3768] = 2829, + [3769] = 2752, + [3770] = 1988, + [3771] = 2763, + [3772] = 3026, + [3773] = 3020, + [3774] = 2790, + [3775] = 2746, + [3776] = 2807, + [3777] = 1992, + [3778] = 3765, + [3779] = 2727, + [3780] = 2477, + [3781] = 2793, + [3782] = 3782, + [3783] = 1984, + [3784] = 2480, + [3785] = 3765, + [3786] = 2481, + [3787] = 2749, + [3788] = 2808, + [3789] = 2733, + [3790] = 1986, + [3791] = 2756, + [3792] = 2732, + [3793] = 1998, + [3794] = 2835, + [3795] = 2838, + [3796] = 3183, + [3797] = 2499, + [3798] = 3798, + [3799] = 2308, + [3800] = 2421, + [3801] = 3767, + [3802] = 2436, + [3803] = 2251, + [3804] = 2012, + [3805] = 2250, + [3806] = 2248, + [3807] = 3019, + [3808] = 1983, + [3809] = 2841, + [3810] = 3810, + [3811] = 2247, + [3812] = 3765, + [3813] = 2227, + [3814] = 2237, + [3815] = 2818, + [3816] = 2734, + [3817] = 1991, + [3818] = 2458, + [3819] = 3819, + [3820] = 3624, + [3821] = 1980, + [3822] = 2785, + [3823] = 1999, + [3824] = 3824, + [3825] = 1990, + [3826] = 2834, + [3827] = 3767, + [3828] = 2714, + [3829] = 2770, + [3830] = 3810, + [3831] = 3819, + [3832] = 3041, + [3833] = 2848, + [3834] = 1981, + [3835] = 1982, + [3836] = 1994, + [3837] = 1995, + [3838] = 1997, + [3839] = 2761, + [3840] = 3824, + [3841] = 2754, + [3842] = 2743, + [3843] = 2843, + [3844] = 1064, + [3845] = 2748, + [3846] = 3767, + [3847] = 2791, + [3848] = 3810, + [3849] = 3017, + [3850] = 3798, + [3851] = 3016, + [3852] = 2854, + [3853] = 1981, + [3854] = 3083, + [3855] = 1994, + [3856] = 2849, + [3857] = 2423, + [3858] = 2422, + [3859] = 2228, + [3860] = 2213, + [3861] = 2812, + [3862] = 1996, + [3863] = 3782, + [3864] = 2215, + [3865] = 1995, + [3866] = 2826, + [3867] = 2450, + [3868] = 2216, + [3869] = 3798, + [3870] = 3798, + [3871] = 2219, + [3872] = 3798, + [3873] = 3014, + [3874] = 3798, + [3875] = 2781, + [3876] = 2221, + [3877] = 2226, + [3878] = 1997, + [3879] = 3798, + [3880] = 1986, + [3881] = 1984, + [3882] = 3819, + [3883] = 1992, + [3884] = 2747, + [3885] = 3798, + [3886] = 3798, + [3887] = 3810, + [3888] = 1988, + [3889] = 2796, + [3890] = 3765, + [3891] = 2817, + [3892] = 2780, + [3893] = 151, + [3894] = 2704, + [3895] = 2774, + [3896] = 1980, + [3897] = 2231, + [3898] = 1999, + [3899] = 1991, + [3900] = 3009, + [3901] = 2857, + [3902] = 3007, + [3903] = 2445, + [3904] = 2222, + [3905] = 2008, + [3906] = 2831, + [3907] = 1998, + [3908] = 3810, + [3909] = 2832, + [3910] = 2794, + [3911] = 1065, + [3912] = 2839, + [3913] = 2845, + [3914] = 1996, + [3915] = 2852, + [3916] = 2799, + [3917] = 2495, + [3918] = 2496, + [3919] = 2860, + [3920] = 2755, + [3921] = 2764, + [3922] = 2757, + [3923] = 3765, + [3924] = 2788, + [3925] = 3767, + [3926] = 2856, + [3927] = 2702, + [3928] = 2851, + [3929] = 2828, + [3930] = 2997, + [3931] = 2022, + [3932] = 2429, + [3933] = 2442, + [3934] = 151, + [3935] = 2765, + [3936] = 2779, + [3937] = 3031, + [3938] = 2991, + [3939] = 2984, + [3940] = 2439, + [3941] = 2272, + [3942] = 2007, + [3943] = 2273, + [3944] = 3767, + [3945] = 2737, + [3946] = 2798, + [3947] = 3810, + [3948] = 3819, + [3949] = 2271, + [3950] = 3819, + [3951] = 3183, + [3952] = 2009, + [3953] = 2853, + [3954] = 2766, + [3955] = 1993, + [3956] = 2777, + [3957] = 2301, + [3958] = 2776, + [3959] = 153, + [3960] = 2224, + [3961] = 3824, + [3962] = 2225, + [3963] = 2235, + [3964] = 2775, + [3965] = 2240, + [3966] = 3824, + [3967] = 3824, + [3968] = 3819, + [3969] = 2855, + [3970] = 2439, + [3971] = 2785, + [3972] = 3972, + [3973] = 2749, + [3974] = 2761, + [3975] = 2746, + [3976] = 2783, + [3977] = 2845, + [3978] = 2733, + [3979] = 3979, + [3980] = 2839, + [3981] = 3026, + [3982] = 1982, + [3983] = 2751, + [3984] = 3979, + [3985] = 2821, + [3986] = 2445, + [3987] = 2799, + [3988] = 2838, + [3989] = 2435, + [3990] = 3990, + [3991] = 2822, + [3992] = 2754, + [3993] = 2442, + [3994] = 2714, + [3995] = 1980, + [3996] = 1981, + [3997] = 1994, + [3998] = 1995, + [3999] = 2860, + [4000] = 2442, + [4001] = 2755, + [4002] = 2757, + [4003] = 1992, + [4004] = 2775, + [4005] = 2445, + [4006] = 2450, + [4007] = 2780, + [4008] = 2034, + [4009] = 2209, + [4010] = 2997, + [4011] = 2791, + [4012] = 2796, + [4013] = 3979, + [4014] = 2022, + [4015] = 2766, + [4016] = 2436, + [4017] = 3782, + [4018] = 2071, + [4019] = 2007, + [4020] = 2817, + [4021] = 3979, + [4022] = 2807, + [4023] = 2790, + [4024] = 2798, + [4025] = 2851, + [4026] = 2198, + [4027] = 3032, + [4028] = 2804, + [4029] = 2808, + [4030] = 151, + [4031] = 1986, + [4032] = 1998, + [4033] = 1064, + [4034] = 153, + [4035] = 2818, + [4036] = 2779, + [4037] = 2732, + [4038] = 2074, + [4039] = 3979, + [4040] = 1988, + [4041] = 2008, + [4042] = 2831, + [4043] = 2832, + [4044] = 2763, + [4045] = 4045, + [4046] = 2680, + [4047] = 3979, + [4048] = 2856, + [4049] = 2853, + [4050] = 2826, + [4051] = 2793, + [4052] = 2009, + [4053] = 3183, + [4054] = 1933, + [4055] = 2835, + [4056] = 2836, + [4057] = 2774, + [4058] = 2743, + [4059] = 2070, + [4060] = 2070, + [4061] = 4061, + [4062] = 2828, + [4063] = 2794, + [4064] = 3022, + [4065] = 2843, + [4066] = 2854, + [4067] = 2788, + [4068] = 2074, + [4069] = 3782, + [4070] = 1984, + [4071] = 2984, + [4072] = 2747, + [4073] = 4073, + [4074] = 4074, + [4075] = 2012, + [4076] = 2756, + [4077] = 3445, + [4078] = 1983, + [4079] = 2721, + [4080] = 1991, + [4081] = 1999, + [4082] = 2848, + [4083] = 3183, + [4084] = 2829, + [4085] = 2812, + [4086] = 2034, + [4087] = 2439, + [4088] = 2857, + [4089] = 1065, + [4090] = 2436, + [4091] = 3013, + [4092] = 2706, + [4093] = 3021, + [4094] = 3020, + [4095] = 3019, + [4096] = 3018, + [4097] = 3017, + [4098] = 3979, + [4099] = 2435, + [4100] = 3016, + [4101] = 3014, + [4102] = 2991, + [4103] = 3009, + [4104] = 3979, + [4105] = 4105, + [4106] = 2477, + [4107] = 3007, + [4108] = 2841, + [4109] = 2477, + [4110] = 2480, + [4111] = 2781, + [4112] = 3031, + [4113] = 2777, + [4114] = 2702, + [4115] = 2776, + [4116] = 1997, + [4117] = 2765, + [4118] = 2764, + [4119] = 2849, + [4120] = 2855, + [4121] = 2480, + [4122] = 2852, + [4123] = 3979, + [4124] = 2450, + [4125] = 2770, + [4126] = 1996, + [4127] = 2834, + [4128] = 2611, + [4129] = 1974, + [4130] = 1933, + [4131] = 3782, + [4132] = 2612, + [4133] = 3782, + [4134] = 2071, + [4135] = 2435, + [4136] = 3782, + [4137] = 2070, + [4138] = 4138, + [4139] = 1928, + [4140] = 2611, + [4141] = 2150, + [4142] = 3782, + [4143] = 2282, + [4144] = 2308, + [4145] = 2257, + [4146] = 2012, + [4147] = 2074, + [4148] = 2737, + [4149] = 2022, + [4150] = 3782, + [4151] = 3083, + [4152] = 3782, + [4153] = 2174, + [4154] = 2178, + [4155] = 4045, + [4156] = 3183, + [4157] = 4105, + [4158] = 2680, + [4159] = 2009, + [4160] = 3782, + [4161] = 1922, + [4162] = 2173, + [4163] = 3041, + [4164] = 1925, + [4165] = 1923, + [4166] = 1927, + [4167] = 2008, + [4168] = 3782, + [4169] = 1924, + [4170] = 1930, + [4171] = 2612, + [4172] = 2007, + [4173] = 2061, + [4174] = 1986, + [4175] = 3782, + [4176] = 2765, + [4177] = 2074, + [4178] = 2838, + [4179] = 2851, + [4180] = 2074, + [4181] = 2070, + [4182] = 2012, + [4183] = 2853, + [4184] = 2721, + [4185] = 2702, + [4186] = 4186, + [4187] = 2274, + [4188] = 3782, + [4189] = 2781, + [4190] = 2780, + [4191] = 2777, + [4192] = 2022, + [4193] = 2828, + [4194] = 2828, + [4195] = 2007, + [4196] = 2832, + [4197] = 2791, + [4198] = 2831, + [4199] = 4186, + [4200] = 153, + [4201] = 2436, + [4202] = 2776, + [4203] = 2775, + [4204] = 2450, + [4205] = 2445, + [4206] = 2442, + [4207] = 4186, + [4208] = 4186, + [4209] = 2764, + [4210] = 151, + [4211] = 1980, + [4212] = 2706, + [4213] = 1984, + [4214] = 2849, + [4215] = 2480, + [4216] = 2477, + [4217] = 2439, + [4218] = 2069, + [4219] = 2751, + [4220] = 2855, + [4221] = 2754, + [4222] = 2008, + [4223] = 2733, + [4224] = 2009, + [4225] = 2798, + [4226] = 2059, + [4227] = 2838, + [4228] = 2308, + [4229] = 3782, + [4230] = 4186, + [4231] = 2022, + [4232] = 2007, + [4233] = 2263, + [4234] = 2747, + [4235] = 2785, + [4236] = 2070, + [4237] = 2008, + [4238] = 2009, + [4239] = 2857, + [4240] = 2821, + [4241] = 2843, + [4242] = 2794, + [4243] = 2749, + [4244] = 4186, + [4245] = 2746, + [4246] = 2788, + [4247] = 2848, + [4248] = 2829, + [4249] = 4186, + [4250] = 1982, + [4251] = 2068, + [4252] = 2008, + [4253] = 2783, + [4254] = 1983, + [4255] = 1988, + [4256] = 2774, + [4257] = 2763, + [4258] = 1992, + [4259] = 2834, + [4260] = 2770, + [4261] = 2761, + [4262] = 1981, + [4263] = 1994, + [4264] = 1995, + [4265] = 2779, + [4266] = 2791, + [4267] = 3782, + [4268] = 2009, + [4269] = 2854, + [4270] = 2812, + [4271] = 1996, + [4272] = 1997, + [4273] = 4186, + [4274] = 4186, + [4275] = 2798, + [4276] = 2826, + [4277] = 2804, + [4278] = 2808, + [4279] = 1991, + [4280] = 1999, + [4281] = 1998, + [4282] = 2220, + [4283] = 2737, + [4284] = 2831, + [4285] = 4285, + [4286] = 2435, + [4287] = 2848, + [4288] = 2812, + [4289] = 2774, + [4290] = 2007, + [4291] = 2008, + [4292] = 2783, + [4293] = 2829, + [4294] = 1974, + [4295] = 3782, + [4296] = 2851, + [4297] = 3782, + [4298] = 2832, + [4299] = 2009, + [4300] = 2220, + [4301] = 2834, + [4302] = 2612, + [4303] = 2178, + [4304] = 2174, + [4305] = 2794, + [4306] = 2150, + [4307] = 2853, + [4308] = 2770, + [4309] = 3972, + [4310] = 2781, + [4311] = 2843, + [4312] = 2780, + [4313] = 2263, + [4314] = 2764, + [4315] = 2777, + [4316] = 2173, + [4317] = 2220, + [4318] = 2761, + [4319] = 2022, + [4320] = 2308, + [4321] = 2854, + [4322] = 2775, + [4323] = 2198, + [4324] = 1922, + [4325] = 2612, + [4326] = 2765, + [4327] = 2808, + [4328] = 1928, + [4329] = 1925, + [4330] = 3972, + [4331] = 2804, + [4332] = 1923, + [4333] = 2788, + [4334] = 2849, + [4335] = 1927, + [4336] = 2263, + [4337] = 2611, + [4338] = 2611, + [4339] = 1924, + [4340] = 2754, + [4341] = 2855, + [4342] = 1930, + [4343] = 2821, + [4344] = 2776, + [4345] = 2763, + [4346] = 2293, + [4347] = 2325, + [4348] = 2481, + [4349] = 2391, + [4350] = 2324, + [4351] = 2396, + [4352] = 2068, + [4353] = 2310, + [4354] = 2309, + [4355] = 2288, + [4356] = 2328, + [4357] = 2059, + [4358] = 2317, + [4359] = 2458, + [4360] = 2061, + [4361] = 2295, + [4362] = 2310, + [4363] = 2293, + [4364] = 2317, + [4365] = 2391, + [4366] = 2317, + [4367] = 2068, + [4368] = 2295, + [4369] = 2396, + [4370] = 2288, + [4371] = 2326, + [4372] = 2288, + [4373] = 2069, + [4374] = 2309, + [4375] = 2328, + [4376] = 2325, [4377] = 4377, - [4378] = 4378, - [4379] = 4374, - [4380] = 4380, - [4381] = 4378, - [4382] = 2239, - [4383] = 4374, - [4384] = 4384, - [4385] = 2225, - [4386] = 4380, - [4387] = 4373, - [4388] = 4388, - [4389] = 4388, - [4390] = 4390, - [4391] = 4380, - [4392] = 4380, - [4393] = 4374, - [4394] = 4388, - [4395] = 4378, - [4396] = 3757, - [4397] = 4369, - [4398] = 4378, - [4399] = 2099, - [4400] = 4371, - [4401] = 4373, - [4402] = 4374, - [4403] = 4369, - [4404] = 4380, - [4405] = 4371, - [4406] = 4374, - [4407] = 4390, - [4408] = 4373, - [4409] = 4380, - [4410] = 4410, - [4411] = 4378, - [4412] = 4371, - [4413] = 4374, - [4414] = 4388, - [4415] = 4388, - [4416] = 4390, - [4417] = 2208, - [4418] = 4378, - [4419] = 3757, - [4420] = 4390, - [4421] = 2623, - [4422] = 2631, - [4423] = 4374, - [4424] = 4374, - [4425] = 4374, - [4426] = 4390, - [4427] = 4373, - [4428] = 4371, - [4429] = 4373, - [4430] = 4371, - [4431] = 4390, - [4432] = 2176, - [4433] = 4373, - [4434] = 4378, - [4435] = 4390, - [4436] = 3757, - [4437] = 4371, - [4438] = 2073, - [4439] = 2179, - [4440] = 4380, - [4441] = 4390, - [4442] = 4369, - [4443] = 4373, - [4444] = 4378, - [4445] = 2189, - [4446] = 2232, - [4447] = 4369, - [4448] = 4369, - [4449] = 4380, - [4450] = 4390, - [4451] = 4084, - [4452] = 2137, - [4453] = 2183, - [4454] = 3361, - [4455] = 2028, - [4456] = 4388, - [4457] = 4374, - [4458] = 4369, - [4459] = 4378, - [4460] = 4380, - [4461] = 4390, - [4462] = 2250, - [4463] = 4374, - [4464] = 4001, - [4465] = 4388, - [4466] = 4371, - [4467] = 4390, - [4468] = 4380, - [4469] = 4378, - [4470] = 4388, - [4471] = 4378, - [4472] = 4472, - [4473] = 4369, - [4474] = 4369, - [4475] = 2266, - [4476] = 2025, - [4477] = 4380, - [4478] = 2237, - [4479] = 2217, - [4480] = 2195, - [4481] = 4481, - [4482] = 4481, - [4483] = 2384, - [4484] = 2310, - [4485] = 4481, - [4486] = 2623, - [4487] = 2234, - [4488] = 2198, - [4489] = 2235, - [4490] = 4481, - [4491] = 2378, - [4492] = 2631, - [4493] = 2226, - [4494] = 2172, - [4495] = 2233, - [4496] = 2311, - [4497] = 4481, - [4498] = 2314, - [4499] = 2315, - [4500] = 4481, - [4501] = 2031, - [4502] = 2193, - [4503] = 2181, - [4504] = 4504, - [4505] = 2180, - [4506] = 2178, - [4507] = 2035, - [4508] = 2177, - [4509] = 2249, - [4510] = 2245, - [4511] = 2242, - [4512] = 2240, - [4513] = 2238, - [4514] = 2230, - [4515] = 2038, - [4516] = 2221, - [4517] = 2218, - [4518] = 4481, - [4519] = 2214, - [4520] = 2209, - [4521] = 2292, - [4522] = 4481, - [4523] = 2024, - [4524] = 2204, - [4525] = 4481, - [4526] = 2293, - [4527] = 4481, - [4528] = 4481, - [4529] = 2194, - [4530] = 1898, - [4531] = 4481, - [4532] = 2210, - [4533] = 2341, - [4534] = 2219, - [4535] = 2340, - [4536] = 2623, - [4537] = 4481, - [4538] = 2216, - [4539] = 2215, - [4540] = 2335, - [4541] = 2001, - [4542] = 2631, - [4543] = 2339, - [4544] = 4481, - [4545] = 2222, - [4546] = 2179, - [4547] = 2730, - [4548] = 4548, - [4549] = 2189, - [4550] = 2038, - [4551] = 2176, - [4552] = 4552, - [4553] = 4552, - [4554] = 2137, - [4555] = 4555, - [4556] = 4555, - [4557] = 2961, - [4558] = 2960, - [4559] = 4559, - [4560] = 2995, - [4561] = 2957, - [4562] = 2975, - [4563] = 2974, - [4564] = 2073, - [4565] = 4565, - [4566] = 2035, - [4567] = 2024, - [4568] = 4555, - [4569] = 4569, - [4570] = 4559, - [4571] = 4559, - [4572] = 3165, - [4573] = 2740, - [4574] = 2956, - [4575] = 4552, - [4576] = 4548, - [4577] = 2099, - [4578] = 4552, - [4579] = 4555, - [4580] = 2802, - [4581] = 4552, - [4582] = 2949, - [4583] = 2761, - [4584] = 4559, - [4585] = 2969, - [4586] = 4552, - [4587] = 4555, - [4588] = 2948, - [4589] = 2947, - [4590] = 2943, - [4591] = 2945, - [4592] = 2225, - [4593] = 2966, - [4594] = 4555, - [4595] = 4559, - [4596] = 2250, - [4597] = 3182, - [4598] = 2976, - [4599] = 4559, - [4600] = 2031, - [4601] = 2239, - [4602] = 2963, - [4603] = 2965, - [4604] = 2448, - [4605] = 2234, - [4606] = 2401, - [4607] = 2227, - [4608] = 2237, - [4609] = 2238, - [4610] = 2240, - [4611] = 2210, - [4612] = 2242, - [4613] = 2233, - [4614] = 2226, - [4615] = 2245, - [4616] = 2249, - [4617] = 2219, - [4618] = 2218, - [4619] = 2217, - [4620] = 2214, - [4621] = 1889, - [4622] = 2452, - [4623] = 2209, - [4624] = 2204, - [4625] = 2266, - [4626] = 3709, - [4627] = 2230, - [4628] = 2419, - [4629] = 2198, - [4630] = 2195, - [4631] = 1889, - [4632] = 2194, - [4633] = 2193, - [4634] = 2181, - [4635] = 2172, - [4636] = 2180, - [4637] = 2216, - [4638] = 2178, - [4639] = 2177, - [4640] = 3097, - [4641] = 2222, - [4642] = 2448, - [4643] = 2221, - [4644] = 3709, - [4645] = 3088, - [4646] = 2419, - [4647] = 2452, - [4648] = 2215, - [4649] = 2401, - [4650] = 2235, - [4651] = 2995, - [4652] = 2976, - [4653] = 2623, - [4654] = 2683, - [4655] = 4655, - [4656] = 371, - [4657] = 2681, - [4658] = 4658, - [4659] = 2966, - [4660] = 2969, - [4661] = 2974, - [4662] = 4658, - [4663] = 2949, - [4664] = 2975, - [4665] = 2710, - [4666] = 387, - [4667] = 4667, - [4668] = 2702, - [4669] = 1898, - [4670] = 4565, - [4671] = 3088, - [4672] = 2961, - [4673] = 2711, - [4674] = 2963, - [4675] = 4675, - [4676] = 2721, - [4677] = 3097, - [4678] = 274, - [4679] = 4679, - [4680] = 253, - [4681] = 4675, - [4682] = 2960, - [4683] = 2631, - [4684] = 1886, - [4685] = 4667, - [4686] = 2711, - [4687] = 2705, - [4688] = 2945, - [4689] = 2721, - [4690] = 4658, - [4691] = 2698, - [4692] = 2638, - [4693] = 4675, - [4694] = 271, - [4695] = 4675, - [4696] = 2965, - [4697] = 2943, - [4698] = 4667, - [4699] = 2947, - [4700] = 2956, - [4701] = 2957, - [4702] = 2948, - [4703] = 272, - [4704] = 3514, - [4705] = 2965, - [4706] = 2960, - [4707] = 3424, - [4708] = 2963, - [4709] = 1889, - [4710] = 2976, - [4711] = 4667, - [4712] = 2945, - [4713] = 2943, - [4714] = 1898, - [4715] = 4715, - [4716] = 2947, - [4717] = 3437, - [4718] = 2948, - [4719] = 3097, - [4720] = 2995, - [4721] = 2949, - [4722] = 2961, - [4723] = 2957, - [4724] = 2725, - [4725] = 2974, - [4726] = 3088, - [4727] = 4377, - [4728] = 2966, - [4729] = 2956, - [4730] = 2304, - [4731] = 4731, - [4732] = 2173, - [4733] = 4472, - [4734] = 4658, - [4735] = 2304, - [4736] = 2975, - [4737] = 2028, - [4738] = 2025, - [4739] = 2969, - [4740] = 2757, - [4741] = 2808, - [4742] = 2735, - [4743] = 2966, - [4744] = 4744, - [4745] = 4744, - [4746] = 4746, - [4747] = 4747, - [4748] = 2733, - [4749] = 4749, - [4750] = 4750, - [4751] = 4751, - [4752] = 4752, - [4753] = 2761, - [4754] = 4750, - [4755] = 4744, - [4756] = 4750, - [4757] = 154, - [4758] = 1951, - [4759] = 4759, - [4760] = 2956, - [4761] = 4751, - [4762] = 4750, - [4763] = 2740, - [4764] = 4747, - [4765] = 4667, + [4378] = 2328, + [4379] = 2326, + [4380] = 2324, + [4381] = 2325, + [4382] = 2326, + [4383] = 2421, + [4384] = 2069, + [4385] = 2295, + [4386] = 2293, + [4387] = 2308, + [4388] = 2061, + [4389] = 2391, + [4390] = 2428, + [4391] = 2324, + [4392] = 2309, + [4393] = 2396, + [4394] = 2059, + [4395] = 2274, + [4396] = 2074, + [4397] = 2070, + [4398] = 2310, + [4399] = 4399, + [4400] = 4399, + [4401] = 3782, + [4402] = 4402, + [4403] = 4403, + [4404] = 4404, + [4405] = 4405, + [4406] = 4404, + [4407] = 4402, + [4408] = 4404, + [4409] = 4409, + [4410] = 4402, + [4411] = 4409, + [4412] = 4399, + [4413] = 2166, + [4414] = 4074, + [4415] = 4403, + [4416] = 3782, + [4417] = 4409, + [4418] = 3526, + [4419] = 4403, + [4420] = 4402, + [4421] = 4404, + [4422] = 4422, + [4423] = 4403, + [4424] = 4404, + [4425] = 4405, + [4426] = 3782, + [4427] = 4404, + [4428] = 4428, + [4429] = 1926, + [4430] = 4430, + [4431] = 4431, + [4432] = 4399, + [4433] = 4405, + [4434] = 4431, + [4435] = 4431, + [4436] = 2223, + [4437] = 4430, + [4438] = 2263, + [4439] = 4405, + [4440] = 4431, + [4441] = 4431, + [4442] = 4403, + [4443] = 2265, + [4444] = 4402, + [4445] = 4430, + [4446] = 2210, + [4447] = 2238, + [4448] = 4405, + [4449] = 2070, + [4450] = 2256, + [4451] = 4409, + [4452] = 4405, + [4453] = 2074, + [4454] = 4405, + [4455] = 4431, + [4456] = 2200, + [4457] = 4409, + [4458] = 3972, + [4459] = 4403, + [4460] = 4430, + [4461] = 4403, + [4462] = 4402, + [4463] = 4399, + [4464] = 4404, + [4465] = 4430, + [4466] = 4409, + [4467] = 2301, + [4468] = 4431, + [4469] = 4409, + [4470] = 2081, + [4471] = 2220, + [4472] = 4409, + [4473] = 4473, + [4474] = 4405, + [4475] = 4409, + [4476] = 4402, + [4477] = 4402, + [4478] = 4404, + [4479] = 4403, + [4480] = 4399, + [4481] = 4431, + [4482] = 4404, + [4483] = 4409, + [4484] = 4403, + [4485] = 4430, + [4486] = 4404, + [4487] = 2611, + [4488] = 4402, + [4489] = 4431, + [4490] = 4402, + [4491] = 4431, + [4492] = 4431, + [4493] = 4409, + [4494] = 4402, + [4495] = 2168, + [4496] = 2612, + [4497] = 4404, + [4498] = 3782, + [4499] = 4399, + [4500] = 4430, + [4501] = 4403, + [4502] = 4403, + [4503] = 4430, + [4504] = 4399, + [4505] = 4505, + [4506] = 2252, + [4507] = 4404, + [4508] = 2231, + [4509] = 2251, + [4510] = 2248, + [4511] = 2611, + [4512] = 4512, + [4513] = 2247, + [4514] = 2240, + [4515] = 2227, + [4516] = 2237, + [4517] = 2235, + [4518] = 2068, + [4519] = 2034, + [4520] = 1933, + [4521] = 2222, + [4522] = 4512, + [4523] = 2396, + [4524] = 2225, + [4525] = 2224, + [4526] = 2242, + [4527] = 2059, + [4528] = 2391, + [4529] = 2217, + [4530] = 2204, + [4531] = 2203, + [4532] = 4512, + [4533] = 2202, + [4534] = 2267, + [4535] = 2255, + [4536] = 2612, + [4537] = 2293, + [4538] = 2258, + [4539] = 4512, + [4540] = 2272, + [4541] = 2271, + [4542] = 4542, + [4543] = 2259, + [4544] = 4512, + [4545] = 2325, + [4546] = 2295, + [4547] = 4512, + [4548] = 2228, + [4549] = 2324, + [4550] = 2226, + [4551] = 2612, + [4552] = 2221, + [4553] = 2309, + [4554] = 2219, + [4555] = 2288, + [4556] = 2216, + [4557] = 2273, + [4558] = 2215, + [4559] = 4512, + [4560] = 2213, + [4561] = 4512, + [4562] = 4512, + [4563] = 4512, + [4564] = 2250, + [4565] = 4512, + [4566] = 2310, + [4567] = 2611, + [4568] = 2317, + [4569] = 2061, + [4570] = 2328, + [4571] = 4512, + [4572] = 2326, + [4573] = 2069, + [4574] = 4512, + [4575] = 4512, + [4576] = 4576, + [4577] = 3018, + [4578] = 3021, + [4579] = 3020, + [4580] = 3019, + [4581] = 2779, + [4582] = 3017, + [4583] = 3016, + [4584] = 3014, + [4585] = 2252, + [4586] = 3026, + [4587] = 4587, + [4588] = 2168, + [4589] = 4576, + [4590] = 2081, + [4591] = 4576, + [4592] = 2059, + [4593] = 2200, + [4594] = 3013, + [4595] = 4587, + [4596] = 2256, + [4597] = 2166, + [4598] = 3009, + [4599] = 3007, + [4600] = 3240, + [4601] = 4601, + [4602] = 4602, + [4603] = 4603, + [4604] = 2997, + [4605] = 2265, + [4606] = 2068, + [4607] = 4576, + [4608] = 2857, + [4609] = 2785, + [4610] = 4587, + [4611] = 4601, + [4612] = 4602, + [4613] = 2826, + [4614] = 4601, + [4615] = 4587, + [4616] = 3022, + [4617] = 3031, + [4618] = 2991, + [4619] = 4601, + [4620] = 4620, + [4621] = 2238, + [4622] = 4587, + [4623] = 4601, + [4624] = 2061, + [4625] = 4601, + [4626] = 3032, + [4627] = 2069, + [4628] = 2223, + [4629] = 4576, + [4630] = 2984, + [4631] = 3194, + [4632] = 4576, + [4633] = 4587, + [4634] = 2271, + [4635] = 2213, + [4636] = 2224, + [4637] = 2225, + [4638] = 2235, + [4639] = 2237, + [4640] = 2227, + [4641] = 2240, + [4642] = 2247, + [4643] = 2481, + [4644] = 2248, + [4645] = 2216, + [4646] = 2219, + [4647] = 2250, + [4648] = 2221, + [4649] = 2251, + [4650] = 3083, + [4651] = 2209, + [4652] = 3041, + [4653] = 1926, + [4654] = 2226, + [4655] = 2458, + [4656] = 2228, + [4657] = 2458, + [4658] = 2428, + [4659] = 2215, + [4660] = 2242, + [4661] = 2231, + [4662] = 2428, + [4663] = 2217, + [4664] = 2204, + [4665] = 2203, + [4666] = 3798, + [4667] = 2202, + [4668] = 2222, + [4669] = 1926, + [4670] = 2273, + [4671] = 2272, + [4672] = 2267, + [4673] = 2255, + [4674] = 2301, + [4675] = 3798, + [4676] = 2481, + [4677] = 2421, + [4678] = 2258, + [4679] = 2421, + [4680] = 2259, + [4681] = 409, + [4682] = 2733, + [4683] = 3017, + [4684] = 2749, + [4685] = 2746, + [4686] = 2721, + [4687] = 2984, + [4688] = 2991, + [4689] = 2747, + [4690] = 393, + [4691] = 3031, + [4692] = 2702, + [4693] = 2997, + [4694] = 289, + [4695] = 4695, + [4696] = 4695, + [4697] = 328, + [4698] = 333, + [4699] = 1921, + [4700] = 3026, + [4701] = 2680, + [4702] = 2751, + [4703] = 2706, + [4704] = 4704, + [4705] = 332, + [4706] = 4704, + [4707] = 2747, + [4708] = 4708, + [4709] = 4708, + [4710] = 2611, + [4711] = 3041, + [4712] = 3032, + [4713] = 4708, + [4714] = 2612, + [4715] = 4603, + [4716] = 3007, + [4717] = 2721, + [4718] = 3083, + [4719] = 4695, + [4720] = 1933, + [4721] = 3009, + [4722] = 3022, + [4723] = 4723, + [4724] = 3014, + [4725] = 3021, + [4726] = 4726, + [4727] = 3020, + [4728] = 3019, + [4729] = 3016, + [4730] = 3018, + [4731] = 4704, + [4732] = 4708, + [4733] = 3013, + [4734] = 3032, + [4735] = 2308, + [4736] = 4704, + [4737] = 3020, + [4738] = 3418, + [4739] = 2070, + [4740] = 4473, + [4741] = 4422, + [4742] = 2198, + [4743] = 3014, + [4744] = 1926, + [4745] = 3026, + [4746] = 3445, + [4747] = 3009, + [4748] = 3566, + [4749] = 3013, + [4750] = 3007, + [4751] = 3031, + [4752] = 3083, + [4753] = 4753, + [4754] = 3021, + [4755] = 3016, + [4756] = 2997, + [4757] = 3019, + [4758] = 3022, + [4759] = 2984, + [4760] = 2991, + [4761] = 3018, + [4762] = 4695, + [4763] = 3017, + [4764] = 2308, + [4765] = 1933, [4766] = 4766, - [4767] = 2957, - [4768] = 4766, - [4769] = 2949, - [4770] = 4750, - [4771] = 4747, - [4772] = 2948, - [4773] = 4744, - [4774] = 4747, - [4775] = 1949, - [4776] = 1950, - [4777] = 2947, - [4778] = 2943, - [4779] = 2945, - [4780] = 2976, - [4781] = 4751, - [4782] = 4782, - [4783] = 4766, - [4784] = 4750, - [4785] = 1954, + [4767] = 3041, + [4768] = 2074, + [4769] = 2737, + [4770] = 4770, + [4771] = 3018, + [4772] = 3007, + [4773] = 4773, + [4774] = 4774, + [4775] = 2785, + [4776] = 4773, + [4777] = 4777, + [4778] = 4778, + [4779] = 4779, + [4780] = 4780, + [4781] = 4723, + [4782] = 2853, + [4783] = 1986, + [4784] = 1998, + [4785] = 2812, [4786] = 4786, - [4787] = 4766, - [4788] = 2969, - [4789] = 4750, - [4790] = 4759, - [4791] = 2820, - [4792] = 2963, - [4793] = 2960, - [4794] = 153, - [4795] = 4747, - [4796] = 4751, - [4797] = 1955, - [4798] = 2711, - [4799] = 4750, - [4800] = 2818, - [4801] = 4801, - [4802] = 1954, - [4803] = 2815, - [4804] = 4759, - [4805] = 2830, - [4806] = 4806, - [4807] = 2789, - [4808] = 2995, - [4809] = 4759, - [4810] = 2452, - [4811] = 4747, - [4812] = 1951, - [4813] = 1950, - [4814] = 1949, - [4815] = 4815, - [4816] = 4816, - [4817] = 2759, - [4818] = 2802, - [4819] = 2974, - [4820] = 4820, - [4821] = 1948, - [4822] = 4744, - [4823] = 2741, - [4824] = 4750, - [4825] = 4750, - [4826] = 1965, - [4827] = 1955, - [4828] = 4750, - [4829] = 153, - [4830] = 4750, - [4831] = 1957, - [4832] = 2768, - [4833] = 4751, - [4834] = 2767, - [4835] = 4835, - [4836] = 4836, - [4837] = 4744, - [4838] = 1959, - [4839] = 2836, - [4840] = 1956, - [4841] = 2837, - [4842] = 1948, - [4843] = 4751, - [4844] = 2961, - [4845] = 1965, - [4846] = 4744, - [4847] = 4847, - [4848] = 4766, - [4849] = 4750, - [4850] = 4751, - [4851] = 2965, - [4852] = 2755, - [4853] = 2784, - [4854] = 4679, - [4855] = 2448, - [4856] = 2758, - [4857] = 4766, - [4858] = 1959, - [4859] = 1956, - [4860] = 4679, - [4861] = 4861, - [4862] = 2756, - [4863] = 2730, - [4864] = 4766, - [4865] = 4750, - [4866] = 4750, - [4867] = 4744, - [4868] = 4750, - [4869] = 2742, - [4870] = 2975, - [4871] = 2743, - [4872] = 4751, - [4873] = 2253, - [4874] = 2764, - [4875] = 4875, - [4876] = 4875, - [4877] = 2753, - [4878] = 2770, - [4879] = 2819, - [4880] = 4747, - [4881] = 4658, - [4882] = 2721, - [4883] = 1982, - [4884] = 1957, - [4885] = 4820, - [4886] = 2419, - [4887] = 4667, - [4888] = 1953, - [4889] = 2823, - [4890] = 1947, - [4891] = 4766, - [4892] = 2798, - [4893] = 1953, - [4894] = 1947, - [4895] = 2793, - [4896] = 1958, - [4897] = 2754, - [4898] = 2788, - [4899] = 1958, - [4900] = 2752, - [4901] = 1963, - [4902] = 1962, - [4903] = 4816, - [4904] = 4750, - [4905] = 4750, - [4906] = 4906, - [4907] = 4766, - [4908] = 4658, - [4909] = 4747, - [4910] = 154, - [4911] = 4911, - [4912] = 2200, - [4913] = 2401, - [4914] = 4750, - [4915] = 4915, - [4916] = 2778, - [4917] = 4847, - [4918] = 1962, - [4919] = 2773, - [4920] = 2831, - [4921] = 1963, - [4922] = 4751, + [4787] = 4787, + [4788] = 4788, + [4789] = 4770, + [4790] = 2848, + [4791] = 4791, + [4792] = 4773, + [4793] = 4695, + [4794] = 4774, + [4795] = 1984, + [4796] = 153, + [4797] = 4780, + [4798] = 1988, + [4799] = 1980, + [4800] = 2428, + [4801] = 4704, + [4802] = 2843, + [4803] = 2857, + [4804] = 4774, + [4805] = 4774, + [4806] = 4791, + [4807] = 4807, + [4808] = 4773, + [4809] = 4809, + [4810] = 4773, + [4811] = 4811, + [4812] = 4773, + [4813] = 1983, + [4814] = 2721, + [4815] = 4770, + [4816] = 4811, + [4817] = 4791, + [4818] = 1992, + [4819] = 4770, + [4820] = 151, + [4821] = 4695, + [4822] = 3014, + [4823] = 3016, + [4824] = 4811, + [4825] = 1981, + [4826] = 1994, + [4827] = 1995, + [4828] = 2808, + [4829] = 4773, + [4830] = 4830, + [4831] = 4770, + [4832] = 4773, + [4833] = 4791, + [4834] = 4773, + [4835] = 4774, + [4836] = 2770, + [4837] = 2834, + [4838] = 2481, + [4839] = 4791, + [4840] = 4723, + [4841] = 3017, + [4842] = 4842, + [4843] = 4843, + [4844] = 4844, + [4845] = 2747, + [4846] = 2761, + [4847] = 4773, + [4848] = 2826, + [4849] = 4807, + [4850] = 2774, + [4851] = 2763, + [4852] = 2788, + [4853] = 1996, + [4854] = 2821, + [4855] = 4773, + [4856] = 1997, + [4857] = 4811, + [4858] = 4807, + [4859] = 4770, + [4860] = 2421, + [4861] = 4773, + [4862] = 4862, + [4863] = 4863, + [4864] = 3019, + [4865] = 2851, + [4866] = 2849, + [4867] = 2764, + [4868] = 4773, + [4869] = 1999, + [4870] = 1991, + [4871] = 4811, + [4872] = 2765, + [4873] = 1983, + [4874] = 4770, + [4875] = 2776, + [4876] = 2777, + [4877] = 1991, + [4878] = 1999, + [4879] = 4879, + [4880] = 4862, + [4881] = 2781, + [4882] = 2779, + [4883] = 4770, + [4884] = 4791, + [4885] = 4773, + [4886] = 1992, + [4887] = 4887, + [4888] = 2838, + [4889] = 3031, + [4890] = 2798, + [4891] = 151, + [4892] = 4791, + [4893] = 2828, + [4894] = 4788, + [4895] = 4773, + [4896] = 4791, + [4897] = 4774, + [4898] = 3032, + [4899] = 2012, + [4900] = 1980, + [4901] = 1988, + [4902] = 3026, + [4903] = 1984, + [4904] = 2997, + [4905] = 4811, + [4906] = 1997, + [4907] = 1998, + [4908] = 1986, + [4909] = 1982, + [4910] = 1996, + [4911] = 4704, + [4912] = 2458, + [4913] = 4773, + [4914] = 2984, + [4915] = 2257, + [4916] = 1982, + [4917] = 2754, + [4918] = 2791, + [4919] = 2829, + [4920] = 4791, + [4921] = 4921, + [4922] = 4807, [4923] = 4923, - [4924] = 4924, - [4925] = 4925, - [4926] = 4926, - [4927] = 4927, - [4928] = 4928, - [4929] = 4929, - [4930] = 2956, - [4931] = 4931, - [4932] = 2969, - [4933] = 4933, - [4934] = 4934, - [4935] = 4935, - [4936] = 4936, - [4937] = 4928, - [4938] = 4933, - [4939] = 2966, - [4940] = 2965, - [4941] = 3097, - [4942] = 4942, - [4943] = 4928, - [4944] = 4944, - [4945] = 4933, - [4946] = 4946, - [4947] = 4942, - [4948] = 4936, - [4949] = 4949, - [4950] = 4731, - [4951] = 2173, - [4952] = 4942, + [4924] = 2282, + [4925] = 3009, + [4926] = 2783, + [4927] = 3020, + [4928] = 153, + [4929] = 4774, + [4930] = 4773, + [4931] = 2855, + [4932] = 2832, + [4933] = 4811, + [4934] = 3021, + [4935] = 4811, + [4936] = 4773, + [4937] = 2804, + [4938] = 2780, + [4939] = 3013, + [4940] = 1995, + [4941] = 1994, + [4942] = 4777, + [4943] = 1981, + [4944] = 2775, + [4945] = 2794, + [4946] = 2831, + [4947] = 3022, + [4948] = 2854, + [4949] = 2991, + [4950] = 4811, + [4951] = 4774, + [4952] = 4773, [4953] = 4953, - [4954] = 4933, - [4955] = 2638, - [4956] = 4956, - [4957] = 2995, - [4958] = 2961, - [4959] = 4923, - [4960] = 4944, - [4961] = 4928, - [4962] = 4942, - [4963] = 3548, - [4964] = 4936, - [4965] = 4927, - [4966] = 2957, - [4967] = 4935, - [4968] = 4934, + [4954] = 2991, + [4955] = 4955, + [4956] = 3022, + [4957] = 4957, + [4958] = 3032, + [4959] = 4959, + [4960] = 4960, + [4961] = 4961, + [4962] = 4603, + [4963] = 4957, + [4964] = 4964, + [4965] = 4965, + [4966] = 4966, + [4967] = 4967, + [4968] = 4968, [4969] = 4969, - [4970] = 2949, - [4971] = 4971, + [4970] = 4970, + [4971] = 4960, [4972] = 4972, - [4973] = 4972, - [4974] = 4969, - [4975] = 4658, - [4976] = 2710, - [4977] = 4949, - [4978] = 2698, - [4979] = 4979, - [4980] = 4927, - [4981] = 2683, - [4982] = 2681, - [4983] = 4928, - [4984] = 4942, - [4985] = 4985, - [4986] = 2965, + [4973] = 4953, + [4974] = 4959, + [4975] = 4975, + [4976] = 4976, + [4977] = 4977, + [4978] = 3026, + [4979] = 4766, + [4980] = 4977, + [4981] = 4976, + [4982] = 4695, + [4983] = 4977, + [4984] = 4976, + [4985] = 4976, + [4986] = 4986, [4987] = 4987, - [4988] = 2948, - [4989] = 2947, - [4990] = 2943, - [4991] = 2945, - [4992] = 2976, - [4993] = 2963, - [4994] = 4994, - [4995] = 4936, - [4996] = 2956, - [4997] = 4936, - [4998] = 2960, - [4999] = 2957, - [5000] = 2949, - [5001] = 2948, - [5002] = 2947, - [5003] = 4933, - [5004] = 1898, - [5005] = 2943, - [5006] = 4927, - [5007] = 2945, - [5008] = 2976, - [5009] = 2963, - [5010] = 2705, - [5011] = 2960, - [5012] = 4928, - [5013] = 4925, - [5014] = 4923, - [5015] = 5015, - [5016] = 2975, - [5017] = 2702, - [5018] = 2966, - [5019] = 4667, - [5020] = 4936, - [5021] = 4969, - [5022] = 4933, - [5023] = 4927, - [5024] = 4944, - [5025] = 4925, - [5026] = 4927, - [5027] = 4925, - [5028] = 3088, - [5029] = 5029, - [5030] = 5030, - [5031] = 4927, - [5032] = 4942, - [5033] = 4944, - [5034] = 4949, - [5035] = 4942, - [5036] = 5036, - [5037] = 4933, - [5038] = 4933, - [5039] = 2969, - [5040] = 4928, - [5041] = 4925, - [5042] = 4944, - [5043] = 5043, - [5044] = 4972, - [5045] = 5045, - [5046] = 4925, - [5047] = 4927, - [5048] = 4925, + [4988] = 3014, + [4989] = 4989, + [4990] = 3032, + [4991] = 4986, + [4992] = 3013, + [4993] = 4968, + [4994] = 2706, + [4995] = 3022, + [4996] = 3021, + [4997] = 4997, + [4998] = 3020, + [4999] = 4972, + [5000] = 3019, + [5001] = 5001, + [5002] = 3018, + [5003] = 3017, + [5004] = 3016, + [5005] = 4986, + [5006] = 4964, + [5007] = 5007, + [5008] = 4972, + [5009] = 5009, + [5010] = 3007, + [5011] = 4953, + [5012] = 4976, + [5013] = 3013, + [5014] = 4977, + [5015] = 3021, + [5016] = 2751, + [5017] = 1933, + [5018] = 3020, + [5019] = 4964, + [5020] = 4704, + [5021] = 3026, + [5022] = 3019, + [5023] = 3018, + [5024] = 3017, + [5025] = 3016, + [5026] = 2746, + [5027] = 2198, + [5028] = 2749, + [5029] = 4957, + [5030] = 3009, + [5031] = 4953, + [5032] = 2702, + [5033] = 3007, + [5034] = 4972, + [5035] = 4977, + [5036] = 2680, + [5037] = 3041, + [5038] = 4955, + [5039] = 5039, + [5040] = 2733, + [5041] = 5041, + [5042] = 5042, + [5043] = 4953, + [5044] = 4968, + [5045] = 3014, + [5046] = 4977, + [5047] = 4960, + [5048] = 4953, [5049] = 5049, - [5050] = 1898, - [5051] = 5051, - [5052] = 5052, - [5053] = 4936, - [5054] = 2974, - [5055] = 4565, - [5056] = 5056, - [5057] = 4944, - [5058] = 4927, - [5059] = 5059, - [5060] = 4925, - [5061] = 2974, - [5062] = 4928, - [5063] = 2995, - [5064] = 4942, - [5065] = 5015, - [5066] = 2975, - [5067] = 2961, - [5068] = 4679, - [5069] = 2391, - [5070] = 5070, + [5050] = 4953, + [5051] = 4723, + [5052] = 2984, + [5053] = 4977, + [5054] = 5054, + [5055] = 5055, + [5056] = 4976, + [5057] = 5057, + [5058] = 4968, + [5059] = 4968, + [5060] = 4959, + [5061] = 4972, + [5062] = 4976, + [5063] = 4955, + [5064] = 4972, + [5065] = 4976, + [5066] = 4972, + [5067] = 4977, + [5068] = 4953, + [5069] = 5069, + [5070] = 4955, [5071] = 5071, - [5072] = 2438, - [5073] = 5073, - [5074] = 5074, - [5075] = 2200, - [5076] = 5076, - [5077] = 5077, - [5078] = 5078, - [5079] = 5079, - [5080] = 5080, - [5081] = 2439, - [5082] = 5082, - [5083] = 5083, - [5084] = 5084, - [5085] = 2253, - [5086] = 5086, - [5087] = 2436, - [5088] = 5088, - [5089] = 3097, - [5090] = 5086, - [5091] = 5091, - [5092] = 5091, - [5093] = 4972, - [5094] = 1982, - [5095] = 2698, - [5096] = 2631, - [5097] = 2623, - [5098] = 4969, - [5099] = 5086, - [5100] = 5100, - [5101] = 2400, - [5102] = 2399, - [5103] = 5103, - [5104] = 2390, + [5072] = 4968, + [5073] = 2997, + [5074] = 3595, + [5075] = 4972, + [5076] = 4986, + [5077] = 2997, + [5078] = 4955, + [5079] = 4986, + [5080] = 4986, + [5081] = 4972, + [5082] = 3083, + [5083] = 4987, + [5084] = 4989, + [5085] = 5085, + [5086] = 4955, + [5087] = 4968, + [5088] = 5055, + [5089] = 3031, + [5090] = 4986, + [5091] = 2991, + [5092] = 5092, + [5093] = 1933, + [5094] = 4986, + [5095] = 3009, + [5096] = 3031, + [5097] = 2984, + [5098] = 5098, + [5099] = 5099, + [5100] = 2746, + [5101] = 5101, + [5102] = 5102, + [5103] = 2749, + [5104] = 5104, [5105] = 5105, - [5106] = 2408, - [5107] = 5088, - [5108] = 5074, + [5106] = 5106, + [5107] = 4960, + [5108] = 5104, [5109] = 5109, - [5110] = 2683, - [5111] = 5103, - [5112] = 5112, - [5113] = 5074, - [5114] = 5114, - [5115] = 5074, - [5116] = 2681, - [5117] = 5117, - [5118] = 5084, - [5119] = 5084, - [5120] = 2702, - [5121] = 5080, - [5122] = 4923, - [5123] = 2304, - [5124] = 5080, - [5125] = 4949, - [5126] = 5103, - [5127] = 5105, - [5128] = 5128, - [5129] = 5117, + [5110] = 2751, + [5111] = 5111, + [5112] = 5101, + [5113] = 5113, + [5114] = 2733, + [5115] = 5099, + [5116] = 5104, + [5117] = 5109, + [5118] = 5099, + [5119] = 5113, + [5120] = 5101, + [5121] = 5121, + [5122] = 5122, + [5123] = 5123, + [5124] = 5102, + [5125] = 5121, + [5126] = 2070, + [5127] = 5109, + [5128] = 5121, + [5129] = 5121, [5130] = 5130, - [5131] = 2025, - [5132] = 5132, - [5133] = 5117, - [5134] = 5077, - [5135] = 5083, - [5136] = 5105, - [5137] = 5103, - [5138] = 4658, - [5139] = 2725, - [5140] = 5084, - [5141] = 5080, - [5142] = 5084, - [5143] = 5112, - [5144] = 5084, - [5145] = 5114, - [5146] = 5077, - [5147] = 5074, - [5148] = 5083, - [5149] = 5117, - [5150] = 5150, - [5151] = 5084, - [5152] = 5080, - [5153] = 5082, - [5154] = 5105, - [5155] = 5079, - [5156] = 5103, - [5157] = 5078, - [5158] = 5088, - [5159] = 2710, - [5160] = 5080, - [5161] = 5084, - [5162] = 5082, - [5163] = 5079, - [5164] = 5084, - [5165] = 5084, - [5166] = 2705, - [5167] = 5083, - [5168] = 5074, - [5169] = 5077, - [5170] = 5170, - [5171] = 5074, - [5172] = 4667, - [5173] = 2961, - [5174] = 2974, - [5175] = 2960, - [5176] = 5084, - [5177] = 2963, - [5178] = 2976, - [5179] = 5074, - [5180] = 2945, - [5181] = 5074, - [5182] = 2943, - [5183] = 2124, - [5184] = 2947, - [5185] = 5185, - [5186] = 5170, - [5187] = 5187, - [5188] = 2948, - [5189] = 2949, - [5190] = 5117, - [5191] = 2028, - [5192] = 2957, - [5193] = 2956, - [5194] = 2965, - [5195] = 2966, - [5196] = 5082, - [5197] = 5084, - [5198] = 5080, - [5199] = 2969, - [5200] = 2995, - [5201] = 5077, - [5202] = 5083, - [5203] = 5130, - [5204] = 5130, - [5205] = 5079, - [5206] = 5130, - [5207] = 5130, - [5208] = 5086, - [5209] = 5130, - [5210] = 5130, - [5211] = 5117, - [5212] = 5212, - [5213] = 5105, - [5214] = 5103, - [5215] = 5117, - [5216] = 2975, - [5217] = 5103, - [5218] = 5218, - [5219] = 5088, - [5220] = 5082, - [5221] = 5130, - [5222] = 5088, - [5223] = 5080, - [5224] = 5103, - [5225] = 5082, - [5226] = 5084, - [5227] = 5084, - [5228] = 5105, - [5229] = 5074, - [5230] = 3088, - [5231] = 5079, - [5232] = 5086, - [5233] = 5074, - [5234] = 5084, - [5235] = 5083, - [5236] = 5080, - [5237] = 5105, - [5238] = 5077, - [5239] = 5239, - [5240] = 5117, - [5241] = 5241, - [5242] = 5079, - [5243] = 5103, - [5244] = 5244, - [5245] = 5105, - [5246] = 5117, - [5247] = 2740, - [5248] = 4949, - [5249] = 2761, - [5250] = 4923, - [5251] = 4667, - [5252] = 5252, - [5253] = 2173, - [5254] = 2802, - [5255] = 5255, - [5256] = 2730, - [5257] = 4658, - [5258] = 4949, - [5259] = 4969, - [5260] = 5260, - [5261] = 4923, - [5262] = 2767, - [5263] = 2758, - [5264] = 2757, - [5265] = 2754, - [5266] = 2753, - [5267] = 2752, - [5268] = 5268, - [5269] = 2743, - [5270] = 2742, - [5271] = 2784, - [5272] = 2755, - [5273] = 2756, - [5274] = 2836, - [5275] = 2768, - [5276] = 4969, - [5277] = 4972, - [5278] = 2808, - [5279] = 2789, - [5280] = 2815, - [5281] = 2818, - [5282] = 4972, - [5283] = 2820, - [5284] = 5284, - [5285] = 2733, - [5286] = 2735, - [5287] = 2741, - [5288] = 2721, - [5289] = 2837, - [5290] = 2823, - [5291] = 2819, - [5292] = 2798, - [5293] = 2788, - [5294] = 5284, - [5295] = 2001, - [5296] = 2764, - [5297] = 2773, - [5298] = 2770, - [5299] = 2793, - [5300] = 2830, - [5301] = 2711, - [5302] = 2778, - [5303] = 2831, - [5304] = 2759, - [5305] = 5284, - [5306] = 2227, - [5307] = 2623, - [5308] = 5284, - [5309] = 2390, - [5310] = 2391, - [5311] = 2631, - [5312] = 2399, - [5313] = 2400, - [5314] = 2690, - [5315] = 1892, - [5316] = 2436, - [5317] = 2438, - [5318] = 2439, - [5319] = 2054, - [5320] = 1888, - [5321] = 1897, - [5322] = 1891, - [5323] = 1894, - [5324] = 1895, - [5325] = 1896, - [5326] = 2056, - [5327] = 2001, - [5328] = 2061, - [5329] = 4667, - [5330] = 2102, - [5331] = 4972, - [5332] = 1935, - [5333] = 4969, - [5334] = 2173, - [5335] = 4923, - [5336] = 2124, - [5337] = 4949, - [5338] = 5338, - [5339] = 4658, - [5340] = 2304, - [5341] = 2183, - [5342] = 2703, - [5343] = 2669, - [5344] = 4923, - [5345] = 2246, - [5346] = 5255, - [5347] = 2408, - [5348] = 4667, - [5349] = 5284, - [5350] = 5284, - [5351] = 2028, - [5352] = 5284, - [5353] = 2631, - [5354] = 5284, - [5355] = 2025, - [5356] = 4972, - [5357] = 5284, - [5358] = 2208, - [5359] = 5284, - [5360] = 4969, - [5361] = 2623, - [5362] = 2028, - [5363] = 5284, - [5364] = 5252, - [5365] = 2025, - [5366] = 4949, - [5367] = 5268, - [5368] = 4658, - [5369] = 5284, - [5370] = 5370, - [5371] = 2232, - [5372] = 2378, - [5373] = 5373, - [5374] = 2384, - [5375] = 4667, - [5376] = 2099, - [5377] = 4949, - [5378] = 5284, - [5379] = 4923, - [5380] = 4972, - [5381] = 2341, - [5382] = 2340, - [5383] = 5383, - [5384] = 5284, - [5385] = 4658, - [5386] = 5284, - [5387] = 2292, - [5388] = 5383, - [5389] = 2339, - [5390] = 2335, - [5391] = 5391, - [5392] = 2315, - [5393] = 2183, - [5394] = 2314, - [5395] = 2293, - [5396] = 4969, - [5397] = 5284, - [5398] = 5373, - [5399] = 2311, - [5400] = 4658, - [5401] = 2304, - [5402] = 2310, - [5403] = 4667, - [5404] = 2238, - [5405] = 4972, - [5406] = 4949, - [5407] = 4923, - [5408] = 5408, - [5409] = 5408, - [5410] = 5410, - [5411] = 5410, - [5412] = 4969, - [5413] = 5284, - [5414] = 5408, - [5415] = 2001, - [5416] = 5408, - [5417] = 2232, - [5418] = 2216, - [5419] = 2215, - [5420] = 2221, - [5421] = 2222, - [5422] = 2234, - [5423] = 5373, - [5424] = 2235, - [5425] = 5410, - [5426] = 5410, - [5427] = 2172, - [5428] = 2239, - [5429] = 5410, - [5430] = 5408, - [5431] = 5408, - [5432] = 2233, - [5433] = 2226, - [5434] = 2225, - [5435] = 2218, - [5436] = 2217, - [5437] = 2214, - [5438] = 2209, - [5439] = 2204, - [5440] = 2124, - [5441] = 5441, - [5442] = 5383, - [5443] = 5410, - [5444] = 5284, - [5445] = 2208, - [5446] = 2176, - [5447] = 2177, - [5448] = 2178, - [5449] = 5408, - [5450] = 2179, - [5451] = 2180, - [5452] = 5410, - [5453] = 5383, - [5454] = 2181, - [5455] = 2189, - [5456] = 2193, - [5457] = 2194, - [5458] = 2195, - [5459] = 2198, - [5460] = 2230, - [5461] = 2250, - [5462] = 2249, - [5463] = 2245, - [5464] = 5408, - [5465] = 2242, - [5466] = 2240, - [5467] = 2304, - [5468] = 2237, - [5469] = 5373, - [5470] = 5410, - [5471] = 5410, - [5472] = 5408, - [5473] = 5410, - [5474] = 2210, - [5475] = 2219, - [5476] = 5408, - [5477] = 5408, - [5478] = 5478, - [5479] = 5410, - [5480] = 2341, - [5481] = 5481, - [5482] = 5482, - [5483] = 5383, - [5484] = 2631, + [5131] = 5131, + [5132] = 5121, + [5133] = 5121, + [5134] = 5109, + [5135] = 5104, + [5136] = 5136, + [5137] = 5122, + [5138] = 5138, + [5139] = 4695, + [5140] = 5122, + [5141] = 5099, + [5142] = 5113, + [5143] = 5130, + [5144] = 5105, + [5145] = 5130, + [5146] = 5146, + [5147] = 5101, + [5148] = 5099, + [5149] = 5109, + [5150] = 5146, + [5151] = 5151, + [5152] = 5098, + [5153] = 2308, + [5154] = 5154, + [5155] = 5104, + [5156] = 5122, + [5157] = 5130, + [5158] = 5113, + [5159] = 5122, + [5160] = 5113, + [5161] = 5146, + [5162] = 5162, + [5163] = 2091, + [5164] = 5113, + [5165] = 5138, + [5166] = 2439, + [5167] = 5138, + [5168] = 2706, + [5169] = 5098, + [5170] = 5101, + [5171] = 5098, + [5172] = 5105, + [5173] = 5173, + [5174] = 2477, + [5175] = 5101, + [5176] = 2480, + [5177] = 5177, + [5178] = 5104, + [5179] = 4959, + [5180] = 5138, + [5181] = 5181, + [5182] = 2702, + [5183] = 5183, + [5184] = 5184, + [5185] = 5101, + [5186] = 5146, + [5187] = 3026, + [5188] = 5109, + [5189] = 5130, + [5190] = 5190, + [5191] = 2612, + [5192] = 5192, + [5193] = 2611, + [5194] = 5109, + [5195] = 5195, + [5196] = 5130, + [5197] = 5098, + [5198] = 5146, + [5199] = 5098, + [5200] = 2074, + [5201] = 5181, + [5202] = 4964, + [5203] = 4957, + [5204] = 5204, + [5205] = 5205, + [5206] = 5105, + [5207] = 5138, + [5208] = 5098, + [5209] = 5138, + [5210] = 5210, + [5211] = 5184, + [5212] = 5138, + [5213] = 5146, + [5214] = 4704, + [5215] = 5215, + [5216] = 5098, + [5217] = 5217, + [5218] = 5205, + [5219] = 5098, + [5220] = 5138, + [5221] = 5105, + [5222] = 5098, + [5223] = 2012, + [5224] = 5162, + [5225] = 5205, + [5226] = 5098, + [5227] = 5105, + [5228] = 5205, + [5229] = 5098, + [5230] = 5121, + [5231] = 5231, + [5232] = 5138, + [5233] = 2984, + [5234] = 3083, + [5235] = 2991, + [5236] = 3031, + [5237] = 2997, + [5238] = 2257, + [5239] = 2435, + [5240] = 2737, + [5241] = 2282, + [5242] = 5130, + [5243] = 2436, + [5244] = 5138, + [5245] = 5205, + [5246] = 2450, + [5247] = 5130, + [5248] = 5205, + [5249] = 3007, + [5250] = 5098, + [5251] = 5205, + [5252] = 3009, + [5253] = 3014, + [5254] = 3016, + [5255] = 3017, + [5256] = 3018, + [5257] = 5205, + [5258] = 5098, + [5259] = 5217, + [5260] = 3019, + [5261] = 5130, + [5262] = 5205, + [5263] = 3020, + [5264] = 5098, + [5265] = 3041, + [5266] = 3021, + [5267] = 5101, + [5268] = 2442, + [5269] = 2445, + [5270] = 5121, + [5271] = 3013, + [5272] = 3022, + [5273] = 3032, + [5274] = 5101, + [5275] = 5138, + [5276] = 5109, + [5277] = 2774, + [5278] = 2829, + [5279] = 2857, + [5280] = 2808, + [5281] = 2791, + [5282] = 4960, + [5283] = 2812, + [5284] = 4959, + [5285] = 2828, + [5286] = 2826, + [5287] = 2785, + [5288] = 2034, + [5289] = 4704, + [5290] = 2821, + [5291] = 2747, + [5292] = 5292, + [5293] = 2779, + [5294] = 2831, + [5295] = 2843, + [5296] = 2832, + [5297] = 4957, + [5298] = 4964, + [5299] = 2763, + [5300] = 5300, + [5301] = 2838, + [5302] = 2754, + [5303] = 4959, + [5304] = 2848, + [5305] = 2851, + [5306] = 2855, + [5307] = 2198, + [5308] = 2849, + [5309] = 2853, + [5310] = 5310, + [5311] = 5311, + [5312] = 5312, + [5313] = 2721, + [5314] = 4957, + [5315] = 2798, + [5316] = 4695, + [5317] = 2775, + [5318] = 2834, + [5319] = 2783, + [5320] = 2770, + [5321] = 2776, + [5322] = 2765, + [5323] = 5310, + [5324] = 4964, + [5325] = 2764, + [5326] = 2804, + [5327] = 2777, + [5328] = 2780, + [5329] = 2781, + [5330] = 2788, + [5331] = 2761, + [5332] = 4960, + [5333] = 2794, + [5334] = 2854, + [5335] = 1924, + [5336] = 2611, + [5337] = 5310, + [5338] = 2210, + [5339] = 2450, + [5340] = 5340, + [5341] = 2445, + [5342] = 2442, + [5343] = 2174, + [5344] = 2178, + [5345] = 1922, + [5346] = 2480, + [5347] = 2477, + [5348] = 2439, + [5349] = 2308, + [5350] = 1928, + [5351] = 1925, + [5352] = 1923, + [5353] = 1927, + [5354] = 2209, + [5355] = 1930, + [5356] = 2752, + [5357] = 4957, + [5358] = 2150, + [5359] = 4695, + [5360] = 2704, + [5361] = 2091, + [5362] = 4959, + [5363] = 2198, + [5364] = 4704, + [5365] = 2612, + [5366] = 4960, + [5367] = 5310, + [5368] = 2173, + [5369] = 4964, + [5370] = 2034, + [5371] = 2436, + [5372] = 2748, + [5373] = 1974, + [5374] = 4960, + [5375] = 2074, + [5376] = 5310, + [5377] = 2070, + [5378] = 2263, + [5379] = 4957, + [5380] = 5310, + [5381] = 4704, + [5382] = 4964, + [5383] = 5312, + [5384] = 5310, + [5385] = 5310, + [5386] = 5310, + [5387] = 2070, + [5388] = 4695, + [5389] = 5310, + [5390] = 5311, + [5391] = 5300, + [5392] = 5310, + [5393] = 2274, + [5394] = 2074, + [5395] = 2612, + [5396] = 5310, + [5397] = 5397, + [5398] = 2611, + [5399] = 2435, + [5400] = 2220, + [5401] = 4959, + [5402] = 2309, + [5403] = 5310, + [5404] = 5404, + [5405] = 4695, + [5406] = 4964, + [5407] = 2396, + [5408] = 5310, + [5409] = 2324, + [5410] = 2288, + [5411] = 2325, + [5412] = 5412, + [5413] = 2168, + [5414] = 2210, + [5415] = 2391, + [5416] = 4957, + [5417] = 4960, + [5418] = 5310, + [5419] = 5419, + [5420] = 4959, + [5421] = 4704, + [5422] = 5412, + [5423] = 4704, + [5424] = 4695, + [5425] = 2328, + [5426] = 2293, + [5427] = 2326, + [5428] = 2317, + [5429] = 5404, + [5430] = 2295, + [5431] = 2308, + [5432] = 5310, + [5433] = 2310, + [5434] = 2219, + [5435] = 5435, + [5436] = 2235, + [5437] = 5437, + [5438] = 2250, + [5439] = 2091, + [5440] = 2248, + [5441] = 5437, + [5442] = 5435, + [5443] = 2225, + [5444] = 5435, + [5445] = 5435, + [5446] = 5437, + [5447] = 2242, + [5448] = 5412, + [5449] = 2221, + [5450] = 2224, + [5451] = 2222, + [5452] = 2204, + [5453] = 2263, + [5454] = 5310, + [5455] = 2223, + [5456] = 2215, + [5457] = 2251, + [5458] = 2231, + [5459] = 2203, + [5460] = 2216, + [5461] = 5435, + [5462] = 5437, + [5463] = 2271, + [5464] = 5435, + [5465] = 5310, + [5466] = 2202, + [5467] = 5437, + [5468] = 4960, + [5469] = 2034, + [5470] = 4957, + [5471] = 2217, + [5472] = 2200, + [5473] = 2240, + [5474] = 2227, + [5475] = 4964, + [5476] = 5435, + [5477] = 5404, + [5478] = 2213, + [5479] = 4959, + [5480] = 5437, + [5481] = 5437, + [5482] = 5435, + [5483] = 2237, + [5484] = 2226, [5485] = 5485, [5486] = 5486, - [5487] = 2028, - [5488] = 5488, - [5489] = 2293, - [5490] = 2292, - [5491] = 5482, - [5492] = 5373, - [5493] = 5373, - [5494] = 5494, - [5495] = 5494, - [5496] = 4667, - [5497] = 5494, - [5498] = 5498, - [5499] = 5373, - [5500] = 5488, - [5501] = 2310, - [5502] = 5488, - [5503] = 2311, - [5504] = 2314, - [5505] = 2315, - [5506] = 5486, - [5507] = 5383, - [5508] = 5488, - [5509] = 5488, - [5510] = 5373, - [5511] = 5373, - [5512] = 5488, - [5513] = 5383, - [5514] = 2623, - [5515] = 4658, - [5516] = 5494, - [5517] = 4923, - [5518] = 5383, - [5519] = 2384, - [5520] = 2623, - [5521] = 4969, - [5522] = 4972, - [5523] = 2335, - [5524] = 5494, - [5525] = 5488, - [5526] = 5481, - [5527] = 5373, - [5528] = 5383, - [5529] = 5383, - [5530] = 5488, - [5531] = 5488, - [5532] = 5383, - [5533] = 2340, - [5534] = 2378, - [5535] = 4949, - [5536] = 4972, - [5537] = 2025, - [5538] = 5494, - [5539] = 5383, - [5540] = 4923, - [5541] = 5373, - [5542] = 2631, - [5543] = 5373, - [5544] = 2339, - [5545] = 5545, - [5546] = 5546, - [5547] = 5546, - [5548] = 5546, - [5549] = 5546, - [5550] = 5550, - [5551] = 4923, + [5487] = 5412, + [5488] = 2267, + [5489] = 5404, + [5490] = 5437, + [5491] = 2255, + [5492] = 5435, + [5493] = 2256, + [5494] = 2220, + [5495] = 2228, + [5496] = 2272, + [5497] = 2247, + [5498] = 5435, + [5499] = 2238, + [5500] = 5435, + [5501] = 5437, + [5502] = 5437, + [5503] = 2258, + [5504] = 2259, + [5505] = 2308, + [5506] = 2265, + [5507] = 2273, + [5508] = 2252, + [5509] = 5437, + [5510] = 2295, + [5511] = 2611, + [5512] = 5404, + [5513] = 4704, + [5514] = 2612, + [5515] = 5515, + [5516] = 4959, + [5517] = 5517, + [5518] = 5518, + [5519] = 4957, + [5520] = 5517, + [5521] = 5412, + [5522] = 5404, + [5523] = 2317, + [5524] = 2310, + [5525] = 5404, + [5526] = 5517, + [5527] = 5412, + [5528] = 5528, + [5529] = 5517, + [5530] = 2293, + [5531] = 5412, + [5532] = 2391, + [5533] = 2070, + [5534] = 2074, + [5535] = 4960, + [5536] = 2396, + [5537] = 5518, + [5538] = 5404, + [5539] = 5518, + [5540] = 5412, + [5541] = 5404, + [5542] = 2325, + [5543] = 5412, + [5544] = 5517, + [5545] = 4959, + [5546] = 5518, + [5547] = 2324, + [5548] = 5548, + [5549] = 2309, + [5550] = 2288, + [5551] = 5412, [5552] = 5552, - [5553] = 5550, - [5554] = 5550, - [5555] = 4923, - [5556] = 5284, - [5557] = 2073, - [5558] = 2250, - [5559] = 2124, - [5560] = 5560, - [5561] = 5284, - [5562] = 5562, - [5563] = 5546, - [5564] = 5560, - [5565] = 5565, - [5566] = 5552, - [5567] = 5546, - [5568] = 5552, - [5569] = 5373, - [5570] = 5560, - [5571] = 4969, - [5572] = 5550, - [5573] = 5560, - [5574] = 2124, - [5575] = 4949, - [5576] = 5560, - [5577] = 5560, - [5578] = 5552, - [5579] = 5550, - [5580] = 5560, - [5581] = 5545, - [5582] = 5545, - [5583] = 5383, - [5584] = 5284, - [5585] = 5545, - [5586] = 5383, - [5587] = 2189, - [5588] = 5560, - [5589] = 5562, - [5590] = 2099, - [5591] = 5545, - [5592] = 5562, - [5593] = 5546, - [5594] = 2179, - [5595] = 5562, - [5596] = 4969, - [5597] = 5546, - [5598] = 5546, - [5599] = 5560, - [5600] = 5373, - [5601] = 5550, - [5602] = 5562, - [5603] = 5284, - [5604] = 5546, - [5605] = 5546, - [5606] = 5373, - [5607] = 5545, - [5608] = 2239, - [5609] = 5609, - [5610] = 5552, - [5611] = 5562, - [5612] = 5562, - [5613] = 5546, - [5614] = 5550, - [5615] = 5550, - [5616] = 3615, - [5617] = 4972, - [5618] = 5618, - [5619] = 2225, - [5620] = 5546, - [5621] = 5546, - [5622] = 2137, - [5623] = 5550, - [5624] = 5552, - [5625] = 2176, - [5626] = 5560, - [5627] = 5373, - [5628] = 5546, - [5629] = 5383, - [5630] = 5562, - [5631] = 5545, - [5632] = 5383, - [5633] = 5545, - [5634] = 5552, - [5635] = 5560, - [5636] = 5546, - [5637] = 5546, - [5638] = 5550, - [5639] = 5550, - [5640] = 5546, - [5641] = 5546, - [5642] = 4972, - [5643] = 5546, - [5644] = 5546, - [5645] = 4949, - [5646] = 5552, - [5647] = 5647, - [5648] = 5648, - [5649] = 5649, - [5650] = 5373, - [5651] = 5651, - [5652] = 5647, - [5653] = 5653, - [5654] = 5648, - [5655] = 5655, - [5656] = 5649, - [5657] = 2240, - [5658] = 5655, - [5659] = 5659, - [5660] = 5441, - [5661] = 5661, - [5662] = 5647, - [5663] = 5659, - [5664] = 5648, - [5665] = 5653, - [5666] = 5655, - [5667] = 5647, - [5668] = 5659, - [5669] = 5649, - [5670] = 5648, - [5671] = 5655, - [5672] = 2237, - [5673] = 5648, - [5674] = 5651, - [5675] = 5653, - [5676] = 5676, - [5677] = 5655, - [5678] = 2227, - [5679] = 2245, - [5680] = 5651, - [5681] = 5649, - [5682] = 2210, - [5683] = 2177, - [5684] = 2178, - [5685] = 2266, - [5686] = 2204, - [5687] = 2209, - [5688] = 5648, - [5689] = 2219, - [5690] = 2214, - [5691] = 2217, - [5692] = 2218, - [5693] = 5693, - [5694] = 2238, - [5695] = 5653, - [5696] = 5659, - [5697] = 2173, - [5698] = 5659, - [5699] = 5648, - [5700] = 5651, - [5701] = 5648, - [5702] = 5659, - [5703] = 5647, - [5704] = 5653, - [5705] = 5648, - [5706] = 5659, - [5707] = 5653, - [5708] = 5653, - [5709] = 5648, - [5710] = 2226, - [5711] = 5383, - [5712] = 2233, - [5713] = 5653, - [5714] = 5383, - [5715] = 5661, - [5716] = 5659, - [5717] = 5659, - [5718] = 5651, - [5719] = 5661, - [5720] = 5655, - [5721] = 5676, - [5722] = 5647, - [5723] = 5659, - [5724] = 5653, - [5725] = 2631, - [5726] = 5659, - [5727] = 5649, - [5728] = 5653, - [5729] = 5649, - [5730] = 2172, - [5731] = 5648, - [5732] = 5653, - [5733] = 5653, - [5734] = 5676, - [5735] = 5661, - [5736] = 5647, - [5737] = 5653, - [5738] = 5649, - [5739] = 5659, - [5740] = 2180, - [5741] = 2235, - [5742] = 2234, - [5743] = 5659, - [5744] = 5648, - [5745] = 5653, - [5746] = 2181, - [5747] = 5653, - [5748] = 2193, - [5749] = 5651, - [5750] = 5648, - [5751] = 5648, - [5752] = 5659, - [5753] = 2194, - [5754] = 5655, - [5755] = 5653, - [5756] = 2222, - [5757] = 2221, - [5758] = 5651, - [5759] = 5676, - [5760] = 5659, - [5761] = 5648, - [5762] = 2195, - [5763] = 5653, - [5764] = 5659, - [5765] = 5653, - [5766] = 5648, - [5767] = 5649, - [5768] = 5648, - [5769] = 5651, - [5770] = 2198, - [5771] = 5676, - [5772] = 2230, - [5773] = 2215, - [5774] = 5659, - [5775] = 5775, + [5553] = 2611, + [5554] = 5518, + [5555] = 5548, + [5556] = 5412, + [5557] = 4957, + [5558] = 5404, + [5559] = 2326, + [5560] = 4964, + [5561] = 5528, + [5562] = 5404, + [5563] = 2328, + [5564] = 5518, + [5565] = 5517, + [5566] = 5517, + [5567] = 5517, + [5568] = 2612, + [5569] = 5412, + [5570] = 4695, + [5571] = 5515, + [5572] = 5404, + [5573] = 5517, + [5574] = 5574, + [5575] = 5575, + [5576] = 5576, + [5577] = 5575, + [5578] = 5575, + [5579] = 5575, + [5580] = 2091, + [5581] = 5581, + [5582] = 5582, + [5583] = 5575, + [5584] = 5575, + [5585] = 5581, + [5586] = 4959, + [5587] = 5576, + [5588] = 5588, + [5589] = 5589, + [5590] = 5576, + [5591] = 5588, + [5592] = 5589, + [5593] = 4957, + [5594] = 5581, + [5595] = 5575, + [5596] = 5404, + [5597] = 5575, + [5598] = 4960, + [5599] = 5599, + [5600] = 5576, + [5601] = 5582, + [5602] = 5575, + [5603] = 5589, + [5604] = 5404, + [5605] = 5576, + [5606] = 5576, + [5607] = 3624, + [5608] = 5581, + [5609] = 2168, + [5610] = 2166, + [5611] = 5581, + [5612] = 5404, + [5613] = 5575, + [5614] = 5575, + [5615] = 2238, + [5616] = 5576, + [5617] = 2091, + [5618] = 5310, + [5619] = 5412, + [5620] = 5575, + [5621] = 4960, + [5622] = 5575, + [5623] = 5310, + [5624] = 5310, + [5625] = 4959, + [5626] = 5588, + [5627] = 5576, + [5628] = 5589, + [5629] = 5582, + [5630] = 5581, + [5631] = 5588, + [5632] = 5412, + [5633] = 5576, + [5634] = 5581, + [5635] = 2265, + [5636] = 5575, + [5637] = 5575, + [5638] = 2256, + [5639] = 5588, + [5640] = 5575, + [5641] = 5581, + [5642] = 5588, + [5643] = 5575, + [5644] = 2200, + [5645] = 5582, + [5646] = 5588, + [5647] = 5310, + [5648] = 5588, + [5649] = 5582, + [5650] = 5575, + [5651] = 5589, + [5652] = 5412, + [5653] = 5589, + [5654] = 2252, + [5655] = 2081, + [5656] = 2223, + [5657] = 5575, + [5658] = 5575, + [5659] = 5588, + [5660] = 5588, + [5661] = 5589, + [5662] = 4964, + [5663] = 5412, + [5664] = 5664, + [5665] = 5582, + [5666] = 5582, + [5667] = 5576, + [5668] = 5588, + [5669] = 5575, + [5670] = 5404, + [5671] = 5671, + [5672] = 4957, + [5673] = 4964, + [5674] = 5582, + [5675] = 5589, + [5676] = 5576, + [5677] = 5677, + [5678] = 5677, + [5679] = 5679, + [5680] = 5680, + [5681] = 5677, + [5682] = 5680, + [5683] = 5683, + [5684] = 5683, + [5685] = 5683, + [5686] = 5680, + [5687] = 5687, + [5688] = 5688, + [5689] = 5680, + [5690] = 5690, + [5691] = 5677, + [5692] = 5692, + [5693] = 5677, + [5694] = 2612, + [5695] = 5690, + [5696] = 2611, + [5697] = 5683, + [5698] = 5679, + [5699] = 5699, + [5700] = 5683, + [5701] = 5699, + [5702] = 2301, + [5703] = 2198, + [5704] = 5692, + [5705] = 5699, + [5706] = 5680, + [5707] = 5692, + [5708] = 5687, + [5709] = 5709, + [5710] = 5687, + [5711] = 5711, + [5712] = 5683, + [5713] = 5679, + [5714] = 5683, + [5715] = 2231, + [5716] = 5709, + [5717] = 2222, + [5718] = 5680, + [5719] = 5680, + [5720] = 2237, + [5721] = 2227, + [5722] = 5683, + [5723] = 5677, + [5724] = 2248, + [5725] = 5683, + [5726] = 2250, + [5727] = 2251, + [5728] = 5679, + [5729] = 5677, + [5730] = 2612, + [5731] = 5683, + [5732] = 5683, + [5733] = 5680, + [5734] = 5677, + [5735] = 5680, + [5736] = 2242, + [5737] = 5679, + [5738] = 2217, + [5739] = 5680, + [5740] = 2204, + [5741] = 5683, + [5742] = 2611, + [5743] = 5709, + [5744] = 2203, + [5745] = 5687, + [5746] = 2202, + [5747] = 5680, + [5748] = 5680, + [5749] = 5687, + [5750] = 5692, + [5751] = 2267, + [5752] = 5699, + [5753] = 5679, + [5754] = 5699, + [5755] = 5692, + [5756] = 5692, + [5757] = 5687, + [5758] = 2255, + [5759] = 2247, + [5760] = 5680, + [5761] = 5677, + [5762] = 5680, + [5763] = 5677, + [5764] = 5687, + [5765] = 2258, + [5766] = 2259, + [5767] = 5692, + [5768] = 2209, + [5769] = 5699, + [5770] = 5412, + [5771] = 5677, + [5772] = 5683, + [5773] = 5687, + [5774] = 5699, + [5775] = 5677, [5776] = 5776, - [5777] = 5647, - [5778] = 2216, - [5779] = 5648, - [5780] = 5653, - [5781] = 5676, - [5782] = 5651, - [5783] = 5783, - [5784] = 5659, - [5785] = 5648, - [5786] = 2631, - [5787] = 5659, - [5788] = 5647, - [5789] = 5653, - [5790] = 5655, - [5791] = 2249, - [5792] = 5649, - [5793] = 2242, - [5794] = 5655, - [5795] = 5659, - [5796] = 5373, - [5797] = 5797, - [5798] = 5661, - [5799] = 2623, - [5800] = 2623, - [5801] = 5648, - [5802] = 5802, - [5803] = 5802, - [5804] = 5802, - [5805] = 5802, - [5806] = 5802, - [5807] = 5802, - [5808] = 4923, - [5809] = 5802, - [5810] = 5802, - [5811] = 2421, - [5812] = 5802, - [5813] = 3615, + [5777] = 5692, + [5778] = 2213, + [5779] = 2215, + [5780] = 5679, + [5781] = 5677, + [5782] = 5683, + [5783] = 5404, + [5784] = 5699, + [5785] = 2216, + [5786] = 5677, + [5787] = 2219, + [5788] = 2221, + [5789] = 5690, + [5790] = 5679, + [5791] = 5404, + [5792] = 5677, + [5793] = 5690, + [5794] = 2226, + [5795] = 2228, + [5796] = 5485, + [5797] = 5683, + [5798] = 5680, + [5799] = 5709, + [5800] = 5677, + [5801] = 5699, + [5802] = 5692, + [5803] = 2272, + [5804] = 5679, + [5805] = 2240, + [5806] = 2235, + [5807] = 2225, + [5808] = 2224, + [5809] = 5677, + [5810] = 5677, + [5811] = 5690, + [5812] = 5709, + [5813] = 5412, [5814] = 5814, - [5815] = 5814, - [5816] = 4949, - [5817] = 5802, - [5818] = 5802, - [5819] = 5802, - [5820] = 5802, - [5821] = 5802, - [5822] = 5802, - [5823] = 5823, - [5824] = 5802, - [5825] = 5802, - [5826] = 5826, - [5827] = 5826, - [5828] = 5802, - [5829] = 5802, - [5830] = 5823, - [5831] = 5802, - [5832] = 4972, - [5833] = 4969, - [5834] = 5814, - [5835] = 5383, - [5836] = 5823, - [5837] = 5826, - [5838] = 5826, - [5839] = 5823, - [5840] = 5383, - [5841] = 2304, - [5842] = 5814, - [5843] = 5373, - [5844] = 5383, - [5845] = 5373, - [5846] = 2208, - [5847] = 5373, - [5848] = 5373, - [5849] = 5383, - [5850] = 2232, - [5851] = 5826, - [5852] = 5823, - [5853] = 5826, - [5854] = 2399, - [5855] = 2400, - [5856] = 2253, - [5857] = 5826, - [5858] = 5823, - [5859] = 5859, - [5860] = 5823, - [5861] = 5826, - [5862] = 2439, - [5863] = 5814, - [5864] = 5776, - [5865] = 5775, - [5866] = 5814, - [5867] = 5814, - [5868] = 5814, - [5869] = 5826, - [5870] = 5826, - [5871] = 2391, - [5872] = 5814, - [5873] = 5823, - [5874] = 5823, - [5875] = 5814, - [5876] = 5826, - [5877] = 2390, - [5878] = 2436, - [5879] = 2200, - [5880] = 5823, - [5881] = 5814, - [5882] = 2438, - [5883] = 5883, - [5884] = 5826, - [5885] = 5823, - [5886] = 5823, - [5887] = 5814, - [5888] = 5814, - [5889] = 2314, - [5890] = 5826, - [5891] = 2339, - [5892] = 5814, - [5893] = 5893, - [5894] = 2292, - [5895] = 5814, - [5896] = 5893, - [5897] = 5823, - [5898] = 5893, - [5899] = 5893, - [5900] = 5823, - [5901] = 5814, - [5902] = 5893, - [5903] = 2315, - [5904] = 5826, - [5905] = 5823, - [5906] = 2335, - [5907] = 5893, - [5908] = 2293, - [5909] = 5893, - [5910] = 4377, - [5911] = 5893, - [5912] = 2341, - [5913] = 5826, - [5914] = 2311, - [5915] = 5826, - [5916] = 2310, - [5917] = 5823, - [5918] = 2384, - [5919] = 5893, - [5920] = 2378, - [5921] = 2340, - [5922] = 5826, - [5923] = 5823, - [5924] = 5924, - [5925] = 4472, - [5926] = 5924, - [5927] = 5826, - [5928] = 5823, - [5929] = 5814, - [5930] = 5814, - [5931] = 5924, - [5932] = 2408, - [5933] = 5933, - [5934] = 5934, - [5935] = 5924, - [5936] = 2124, - [5937] = 5937, - [5938] = 5938, - [5939] = 5939, - [5940] = 5826, - [5941] = 5937, - [5942] = 5814, - [5943] = 5943, - [5944] = 5943, - [5945] = 5943, - [5946] = 5939, - [5947] = 5939, - [5948] = 5948, - [5949] = 5943, - [5950] = 5939, - [5951] = 5939, - [5952] = 5924, - [5953] = 5937, - [5954] = 5823, - [5955] = 5939, - [5956] = 5956, - [5957] = 5938, - [5958] = 5937, - [5959] = 5924, - [5960] = 5943, - [5961] = 5939, - [5962] = 5826, - [5963] = 5937, - [5964] = 5939, - [5965] = 5826, - [5966] = 5943, - [5967] = 5823, - [5968] = 5814, - [5969] = 5948, + [5815] = 5680, + [5816] = 5683, + [5817] = 5680, + [5818] = 2271, + [5819] = 2273, + [5820] = 5820, + [5821] = 5683, + [5822] = 5687, + [5823] = 5683, + [5824] = 5680, + [5825] = 5683, + [5826] = 5680, + [5827] = 5677, + [5828] = 5709, + [5829] = 5680, + [5830] = 5677, + [5831] = 5683, + [5832] = 5832, + [5833] = 3624, + [5834] = 4964, + [5835] = 5835, + [5836] = 5832, + [5837] = 5837, + [5838] = 5832, + [5839] = 4960, + [5840] = 5832, + [5841] = 5832, + [5842] = 4959, + [5843] = 5832, + [5844] = 5832, + [5845] = 5832, + [5846] = 5832, + [5847] = 5832, + [5848] = 5832, + [5849] = 5835, + [5850] = 5832, + [5851] = 5832, + [5852] = 5852, + [5853] = 5837, + [5854] = 4957, + [5855] = 5832, + [5856] = 5852, + [5857] = 5832, + [5858] = 5832, + [5859] = 2433, + [5860] = 5832, + [5861] = 5832, + [5862] = 5832, + [5863] = 5832, + [5864] = 5404, + [5865] = 5837, + [5866] = 2220, + [5867] = 5412, + [5868] = 5837, + [5869] = 2308, + [5870] = 5852, + [5871] = 5412, + [5872] = 5852, + [5873] = 5404, + [5874] = 5835, + [5875] = 2263, + [5876] = 5412, + [5877] = 5835, + [5878] = 5404, + [5879] = 5404, + [5880] = 5412, + [5881] = 2480, + [5882] = 2282, + [5883] = 5835, + [5884] = 5837, + [5885] = 5814, + [5886] = 5835, + [5887] = 5835, + [5888] = 5852, + [5889] = 2436, + [5890] = 5852, + [5891] = 5852, + [5892] = 5835, + [5893] = 5837, + [5894] = 5837, + [5895] = 5895, + [5896] = 5820, + [5897] = 2477, + [5898] = 2439, + [5899] = 5837, + [5900] = 5835, + [5901] = 5852, + [5902] = 2257, + [5903] = 5835, + [5904] = 5837, + [5905] = 5852, + [5906] = 5835, + [5907] = 2442, + [5908] = 5837, + [5909] = 2445, + [5910] = 2450, + [5911] = 5852, + [5912] = 5912, + [5913] = 5852, + [5914] = 5837, + [5915] = 5852, + [5916] = 5835, + [5917] = 5837, + [5918] = 5835, + [5919] = 2293, + [5920] = 5852, + [5921] = 5921, + [5922] = 5921, + [5923] = 5837, + [5924] = 5921, + [5925] = 5835, + [5926] = 5837, + [5927] = 5921, + [5928] = 5852, + [5929] = 5921, + [5930] = 2317, + [5931] = 2310, + [5932] = 2295, + [5933] = 5837, + [5934] = 2328, + [5935] = 2391, + [5936] = 5835, + [5937] = 2326, + [5938] = 2288, + [5939] = 5921, + [5940] = 5835, + [5941] = 5921, + [5942] = 5852, + [5943] = 5921, + [5944] = 5921, + [5945] = 5837, + [5946] = 2325, + [5947] = 2396, + [5948] = 5852, + [5949] = 4422, + [5950] = 2309, + [5951] = 2324, + [5952] = 5835, + [5953] = 5837, + [5954] = 5954, + [5955] = 4473, + [5956] = 5954, + [5957] = 5852, + [5958] = 2435, + [5959] = 5954, + [5960] = 5835, + [5961] = 5837, + [5962] = 5852, + [5963] = 5963, + [5964] = 2091, + [5965] = 5954, + [5966] = 5966, + [5967] = 5967, + [5968] = 5835, + [5969] = 5967, [5970] = 5970, - [5971] = 5939, - [5972] = 5937, - [5973] = 5814, - [5974] = 5937, - [5975] = 5948, - [5976] = 5937, - [5977] = 5939, - [5978] = 5826, - [5979] = 5979, - [5980] = 5939, - [5981] = 5823, - [5982] = 5937, - [5983] = 5939, - [5984] = 5937, - [5985] = 5937, - [5986] = 5823, - [5987] = 5948, - [5988] = 5938, - [5989] = 5937, - [5990] = 5939, - [5991] = 5937, - [5992] = 5939, - [5993] = 5814, - [5994] = 5937, - [5995] = 5943, - [5996] = 5939, - [5997] = 5937, - [5998] = 5939, - [5999] = 5943, - [6000] = 5939, - [6001] = 5943, - [6002] = 5937, - [6003] = 5937, - [6004] = 5939, - [6005] = 5937, + [5971] = 5835, + [5972] = 5967, + [5973] = 5970, + [5974] = 5837, + [5975] = 5970, + [5976] = 5970, + [5977] = 5970, + [5978] = 5967, + [5979] = 5837, + [5980] = 5980, + [5981] = 5852, + [5982] = 5970, + [5983] = 5983, + [5984] = 5967, + [5985] = 5852, + [5986] = 5835, + [5987] = 5970, + [5988] = 5835, + [5989] = 5837, + [5990] = 5990, + [5991] = 5967, + [5992] = 5852, + [5993] = 5980, + [5994] = 5967, + [5995] = 5970, + [5996] = 5837, + [5997] = 5997, + [5998] = 5852, + [5999] = 5983, + [6000] = 5983, + [6001] = 5970, + [6002] = 5983, + [6003] = 5967, + [6004] = 5967, + [6005] = 5970, [6006] = 6006, - [6007] = 6007, - [6008] = 6006, - [6009] = 6009, - [6010] = 6010, - [6011] = 6011, - [6012] = 6007, - [6013] = 6010, - [6014] = 6009, - [6015] = 6015, - [6016] = 6015, - [6017] = 6015, - [6018] = 6010, - [6019] = 6007, - [6020] = 6020, - [6021] = 6009, - [6022] = 6006, - [6023] = 6007, - [6024] = 6006, - [6025] = 6010, - [6026] = 6015, - [6027] = 6009, - [6028] = 6010, - [6029] = 6009, - [6030] = 6030, - [6031] = 6015, - [6032] = 6010, - [6033] = 6010, - [6034] = 6009, - [6035] = 6006, - [6036] = 6007, - [6037] = 6015, - [6038] = 6009, - [6039] = 6007, - [6040] = 6007, - [6041] = 6015, - [6042] = 6006, - [6043] = 5924, - [6044] = 6015, - [6045] = 2183, - [6046] = 6007, - [6047] = 6006, - [6048] = 6006, - [6049] = 6009, - [6050] = 6015, - [6051] = 6007, - [6052] = 6006, - [6053] = 6010, - [6054] = 6010, - [6055] = 6007, - [6056] = 6009, - [6057] = 6009, - [6058] = 6010, - [6059] = 6011, - [6060] = 6010, - [6061] = 6009, - [6062] = 6006, - [6063] = 6015, - [6064] = 6007, - [6065] = 6015, - [6066] = 6007, - [6067] = 6006, - [6068] = 6006, - [6069] = 6007, - [6070] = 6015, - [6071] = 6010, - [6072] = 6007, - [6073] = 6009, - [6074] = 6007, - [6075] = 6015, - [6076] = 6007, - [6077] = 6010, - [6078] = 6015, - [6079] = 6079, - [6080] = 6010, - [6081] = 6009, - [6082] = 6015, - [6083] = 6009, - [6084] = 6007, - [6085] = 6006, - [6086] = 6009, - [6087] = 6009, - [6088] = 6010, - [6089] = 6010, - [6090] = 6009, - [6091] = 6010, - [6092] = 6006, - [6093] = 5979, - [6094] = 6006, - [6095] = 6015, - [6096] = 6015, - [6097] = 6020, - [6098] = 6010, - [6099] = 6007, - [6100] = 6009, - [6101] = 6010, - [6102] = 6006, - [6103] = 6007, - [6104] = 6015, - [6105] = 6009, - [6106] = 6011, - [6107] = 6006, - [6108] = 6006, - [6109] = 6009, - [6110] = 6010, - [6111] = 6007, - [6112] = 6006, - [6113] = 6015, - [6114] = 6015, - [6115] = 6020, - [6116] = 6006, - [6117] = 6117, - [6118] = 6118, - [6119] = 6119, - [6120] = 6118, - [6121] = 6121, - [6122] = 6122, - [6123] = 5970, - [6124] = 6124, - [6125] = 6125, - [6126] = 6122, - [6127] = 6127, - [6128] = 6128, - [6129] = 6129, - [6130] = 6130, - [6131] = 5956, - [6132] = 6132, - [6133] = 6133, - [6134] = 6127, - [6135] = 6135, - [6136] = 6118, - [6137] = 6137, - [6138] = 6138, - [6139] = 6124, - [6140] = 3088, - [6141] = 6118, - [6142] = 6142, - [6143] = 6130, - [6144] = 6144, - [6145] = 6145, - [6146] = 6124, + [6007] = 5983, + [6008] = 5980, + [6009] = 5970, + [6010] = 5967, + [6011] = 5967, + [6012] = 6012, + [6013] = 5970, + [6014] = 5967, + [6015] = 5980, + [6016] = 5967, + [6017] = 5970, + [6018] = 5954, + [6019] = 5983, + [6020] = 5970, + [6021] = 5970, + [6022] = 5967, + [6023] = 5970, + [6024] = 5967, + [6025] = 5970, + [6026] = 5967, + [6027] = 5954, + [6028] = 5983, + [6029] = 5967, + [6030] = 5990, + [6031] = 5983, + [6032] = 5970, + [6033] = 5983, + [6034] = 5967, + [6035] = 5990, + [6036] = 6036, + [6037] = 6037, + [6038] = 6038, + [6039] = 6039, + [6040] = 6036, + [6041] = 6037, + [6042] = 6038, + [6043] = 6039, + [6044] = 6044, + [6045] = 6038, + [6046] = 6039, + [6047] = 6044, + [6048] = 6012, + [6049] = 6037, + [6050] = 6037, + [6051] = 2210, + [6052] = 6036, + [6053] = 6039, + [6054] = 6044, + [6055] = 6036, + [6056] = 6037, + [6057] = 6037, + [6058] = 6037, + [6059] = 6044, + [6060] = 6039, + [6061] = 6036, + [6062] = 6038, + [6063] = 6037, + [6064] = 6044, + [6065] = 6036, + [6066] = 6039, + [6067] = 6038, + [6068] = 6039, + [6069] = 6044, + [6070] = 6044, + [6071] = 6038, + [6072] = 6038, + [6073] = 6037, + [6074] = 6036, + [6075] = 6075, + [6076] = 6039, + [6077] = 6044, + [6078] = 6038, + [6079] = 6037, + [6080] = 6036, + [6081] = 6044, + [6082] = 6036, + [6083] = 5954, + [6084] = 6037, + [6085] = 6039, + [6086] = 6037, + [6087] = 6087, + [6088] = 6039, + [6089] = 6036, + [6090] = 6036, + [6091] = 6091, + [6092] = 6091, + [6093] = 6093, + [6094] = 6038, + [6095] = 6038, + [6096] = 6038, + [6097] = 6039, + [6098] = 6091, + [6099] = 6044, + [6100] = 6038, + [6101] = 6036, + [6102] = 6037, + [6103] = 6037, + [6104] = 6038, + [6105] = 6039, + [6106] = 6036, + [6107] = 6039, + [6108] = 6036, + [6109] = 6037, + [6110] = 6044, + [6111] = 6039, + [6112] = 6044, + [6113] = 6044, + [6114] = 6038, + [6115] = 6038, + [6116] = 6036, + [6117] = 6037, + [6118] = 6039, + [6119] = 6044, + [6120] = 6038, + [6121] = 6038, + [6122] = 6036, + [6123] = 6038, + [6124] = 6039, + [6125] = 6037, + [6126] = 6044, + [6127] = 6044, + [6128] = 6044, + [6129] = 6044, + [6130] = 6075, + [6131] = 6039, + [6132] = 6039, + [6133] = 6075, + [6134] = 6044, + [6135] = 6039, + [6136] = 6037, + [6137] = 6038, + [6138] = 6036, + [6139] = 6036, + [6140] = 6037, + [6141] = 6044, + [6142] = 6037, + [6143] = 6036, + [6144] = 6039, + [6145] = 6036, + [6146] = 6038, [6147] = 6147, [6148] = 6148, [6149] = 6149, - [6150] = 6124, + [6150] = 6150, [6151] = 6151, - [6152] = 6124, - [6153] = 6128, - [6154] = 6147, + [6152] = 6152, + [6153] = 6153, + [6154] = 6154, [6155] = 6155, - [6156] = 6118, - [6157] = 6124, - [6158] = 6145, - [6159] = 6118, + [6156] = 6156, + [6157] = 6157, + [6158] = 6158, + [6159] = 6159, [6160] = 6160, - [6161] = 6118, - [6162] = 5924, - [6163] = 6137, - [6164] = 6137, + [6161] = 6006, + [6162] = 5997, + [6163] = 6163, + [6164] = 6164, [6165] = 6165, - [6166] = 6129, - [6167] = 6118, + [6166] = 6166, + [6167] = 6167, [6168] = 6168, - [6169] = 6124, - [6170] = 6124, - [6171] = 6124, - [6172] = 6172, - [6173] = 6147, - [6174] = 6132, + [6169] = 6169, + [6170] = 6170, + [6171] = 6171, + [6172] = 6159, + [6173] = 6173, + [6174] = 6164, [6175] = 6175, - [6176] = 6176, - [6177] = 6177, - [6178] = 6137, - [6179] = 6151, - [6180] = 6118, - [6181] = 6181, - [6182] = 6149, + [6176] = 6154, + [6177] = 6159, + [6178] = 6159, + [6179] = 6157, + [6180] = 6180, + [6181] = 6154, + [6182] = 6147, [6183] = 6183, - [6184] = 6133, + [6184] = 6157, [6185] = 6185, - [6186] = 6138, - [6187] = 6187, - [6188] = 6147, + [6186] = 6186, + [6187] = 6185, + [6188] = 6173, [6189] = 6189, [6190] = 6190, - [6191] = 6191, - [6192] = 6192, - [6193] = 6142, - [6194] = 6194, - [6195] = 6124, - [6196] = 6124, - [6197] = 6124, - [6198] = 6198, - [6199] = 6124, - [6200] = 6145, - [6201] = 6145, - [6202] = 6202, + [6191] = 6157, + [6192] = 6149, + [6193] = 6173, + [6194] = 6147, + [6195] = 6159, + [6196] = 6196, + [6197] = 6159, + [6198] = 6151, + [6199] = 6154, + [6200] = 6200, + [6201] = 6201, + [6202] = 6152, [6203] = 6203, [6204] = 6204, - [6205] = 6137, - [6206] = 6148, - [6207] = 6124, - [6208] = 6208, - [6209] = 6172, - [6210] = 6210, + [6205] = 6173, + [6206] = 6206, + [6207] = 6157, + [6208] = 6163, + [6209] = 6159, + [6210] = 6157, [6211] = 6211, - [6212] = 6198, - [6213] = 6202, - [6214] = 6192, - [6215] = 6215, - [6216] = 6216, - [6217] = 6119, - [6218] = 6218, + [6212] = 6165, + [6213] = 6147, + [6214] = 6157, + [6215] = 6157, + [6216] = 6166, + [6217] = 6157, + [6218] = 6175, [6219] = 6219, - [6220] = 6220, - [6221] = 6183, - [6222] = 6203, + [6220] = 6219, + [6221] = 6157, + [6222] = 6222, [6223] = 6223, [6224] = 6224, - [6225] = 6223, + [6225] = 3083, [6226] = 6226, - [6227] = 6227, - [6228] = 6227, - [6229] = 6229, + [6227] = 6167, + [6228] = 6159, + [6229] = 6154, [6230] = 6230, - [6231] = 6231, - [6232] = 6208, - [6233] = 6226, - [6234] = 6231, - [6235] = 6211, - [6236] = 6236, - [6237] = 6226, - [6238] = 1949, - [6239] = 6219, - [6240] = 2721, - [6241] = 6216, - [6242] = 1965, + [6231] = 5954, + [6232] = 6157, + [6233] = 6157, + [6234] = 6157, + [6235] = 6159, + [6236] = 6157, + [6237] = 6206, + [6238] = 6238, + [6239] = 6239, + [6240] = 6239, + [6241] = 6169, + [6242] = 6242, [6243] = 6243, - [6244] = 6187, - [6245] = 6245, - [6246] = 6117, - [6247] = 1958, - [6248] = 6175, - [6249] = 2721, - [6250] = 1953, - [6251] = 6251, - [6252] = 6252, - [6253] = 1947, - [6254] = 1957, - [6255] = 6255, - [6256] = 6229, - [6257] = 6257, - [6258] = 6226, - [6259] = 6190, - [6260] = 6210, + [6244] = 6180, + [6245] = 3083, + [6246] = 6246, + [6247] = 1980, + [6248] = 6183, + [6249] = 2747, + [6250] = 6250, + [6251] = 6189, + [6252] = 6190, + [6253] = 6170, + [6254] = 1984, + [6255] = 6158, + [6256] = 6250, + [6257] = 1983, + [6258] = 6258, + [6259] = 6259, + [6260] = 6260, [6261] = 6261, - [6262] = 6189, - [6263] = 6227, - [6264] = 6210, - [6265] = 6251, - [6266] = 6176, - [6267] = 1959, - [6268] = 6219, - [6269] = 6251, - [6270] = 2711, - [6271] = 6216, - [6272] = 6194, - [6273] = 1950, - [6274] = 6227, + [6262] = 1992, + [6263] = 6263, + [6264] = 6258, + [6265] = 6200, + [6266] = 1981, + [6267] = 6201, + [6268] = 6243, + [6269] = 6269, + [6270] = 6270, + [6271] = 6211, + [6272] = 1994, + [6273] = 1995, + [6274] = 1997, [6275] = 6275, - [6276] = 6276, - [6277] = 6226, - [6278] = 6229, - [6279] = 6279, - [6280] = 153, - [6281] = 6226, - [6282] = 154, - [6283] = 1956, - [6284] = 6219, - [6285] = 6210, - [6286] = 6216, - [6287] = 6191, - [6288] = 6288, - [6289] = 6219, - [6290] = 6216, - [6291] = 1955, - [6292] = 6251, + [6276] = 1999, + [6277] = 6275, + [6278] = 1991, + [6279] = 2747, + [6280] = 1988, + [6281] = 6275, + [6282] = 6243, + [6283] = 6283, + [6284] = 1998, + [6285] = 6285, + [6286] = 1986, + [6287] = 6148, + [6288] = 1996, + [6289] = 6289, + [6290] = 6290, + [6291] = 1982, + [6292] = 6292, [6293] = 6293, - [6294] = 6294, - [6295] = 6121, - [6296] = 2711, - [6297] = 1951, - [6298] = 6125, - [6299] = 1954, - [6300] = 6231, - [6301] = 6210, - [6302] = 6302, - [6303] = 6208, - [6304] = 6302, - [6305] = 6211, - [6306] = 6306, - [6307] = 6144, - [6308] = 6308, - [6309] = 6227, - [6310] = 6310, - [6311] = 1948, - [6312] = 5924, - [6313] = 6216, - [6314] = 6208, - [6315] = 1962, - [6316] = 6219, - [6317] = 6227, - [6318] = 6223, - [6319] = 6223, - [6320] = 6230, - [6321] = 1963, - [6322] = 6322, - [6323] = 6229, - [6324] = 6251, - [6325] = 6302, - [6326] = 6302, - [6327] = 6231, - [6328] = 6328, - [6329] = 6210, - [6330] = 6211, - [6331] = 3088, - [6332] = 6236, - [6333] = 2421, - [6334] = 6219, - [6335] = 6219, - [6336] = 6336, - [6337] = 6216, - [6338] = 6216, - [6339] = 5924, - [6340] = 6226, - [6341] = 6210, - [6342] = 6226, - [6343] = 6210, - [6344] = 6252, - [6345] = 6293, + [6294] = 6292, + [6295] = 6290, + [6296] = 6293, + [6297] = 6238, + [6298] = 6283, + [6299] = 6299, + [6300] = 6300, + [6301] = 6223, + [6302] = 6222, + [6303] = 6283, + [6304] = 6304, + [6305] = 6275, + [6306] = 6226, + [6307] = 6307, + [6308] = 6293, + [6309] = 6275, + [6310] = 6293, + [6311] = 6311, + [6312] = 6312, + [6313] = 6290, + [6314] = 2721, + [6315] = 6315, + [6316] = 6292, + [6317] = 6283, + [6318] = 6239, + [6319] = 6171, + [6320] = 6315, + [6321] = 6321, + [6322] = 5954, + [6323] = 6315, + [6324] = 6315, + [6325] = 6325, + [6326] = 6230, + [6327] = 6285, + [6328] = 6275, + [6329] = 6329, + [6330] = 6292, + [6331] = 6261, + [6332] = 6238, + [6333] = 6243, + [6334] = 6168, + [6335] = 6239, + [6336] = 6261, + [6337] = 6258, + [6338] = 6285, + [6339] = 6290, + [6340] = 6315, + [6341] = 2721, + [6342] = 6283, + [6343] = 6290, + [6344] = 6285, + [6345] = 6345, [6346] = 6346, [6347] = 6347, - [6348] = 6348, + [6348] = 6238, [6349] = 6349, - [6350] = 6348, - [6351] = 6349, - [6352] = 6349, - [6353] = 6216, - [6354] = 6354, - [6355] = 6349, - [6356] = 6354, - [6357] = 6357, - [6358] = 6357, - [6359] = 6354, - [6360] = 6348, - [6361] = 6349, - [6362] = 6354, - [6363] = 6363, - [6364] = 6210, - [6365] = 6216, - [6366] = 6210, - [6367] = 6216, - [6368] = 6219, - [6369] = 2028, - [6370] = 6354, - [6371] = 6226, - [6372] = 6354, - [6373] = 6210, - [6374] = 6216, - [6375] = 6219, + [6350] = 6261, + [6351] = 151, + [6352] = 6292, + [6353] = 6290, + [6354] = 6238, + [6355] = 6224, + [6356] = 6283, + [6357] = 6292, + [6358] = 6358, + [6359] = 6238, + [6360] = 153, + [6361] = 6258, + [6362] = 5954, + [6363] = 6345, + [6364] = 6312, + [6365] = 6365, + [6366] = 6292, + [6367] = 6290, + [6368] = 6283, + [6369] = 6275, + [6370] = 6292, + [6371] = 6263, + [6372] = 6290, + [6373] = 2433, + [6374] = 6275, + [6375] = 6283, [6376] = 6376, [6377] = 6377, - [6378] = 6219, + [6378] = 6378, [6379] = 6379, - [6380] = 6348, - [6381] = 6357, + [6380] = 6378, + [6381] = 6292, [6382] = 6382, [6383] = 6383, [6384] = 6384, - [6385] = 6226, - [6386] = 6384, - [6387] = 6387, - [6388] = 6388, - [6389] = 6226, - [6390] = 5924, + [6385] = 6283, + [6386] = 6378, + [6387] = 6275, + [6388] = 6290, + [6389] = 6292, + [6390] = 6390, [6391] = 6391, - [6392] = 6348, - [6393] = 6354, - [6394] = 6354, - [6395] = 5924, - [6396] = 6349, - [6397] = 6219, - [6398] = 6357, + [6392] = 6392, + [6393] = 6283, + [6394] = 6377, + [6395] = 6382, + [6396] = 6382, + [6397] = 6382, + [6398] = 6391, [6399] = 6399, - [6400] = 6400, - [6401] = 6348, - [6402] = 6402, - [6403] = 6357, - [6404] = 6348, - [6405] = 6405, - [6406] = 6357, + [6400] = 6391, + [6401] = 6382, + [6402] = 6391, + [6403] = 6378, + [6404] = 5954, + [6405] = 6275, + [6406] = 6378, [6407] = 6407, - [6408] = 6349, - [6409] = 6348, - [6410] = 6357, - [6411] = 6357, - [6412] = 6412, - [6413] = 6357, - [6414] = 6354, - [6415] = 6354, - [6416] = 6348, - [6417] = 6349, - [6418] = 6349, - [6419] = 6349, - [6420] = 6354, - [6421] = 2025, - [6422] = 6349, - [6423] = 6423, - [6424] = 6348, - [6425] = 6425, - [6426] = 6426, - [6427] = 6210, - [6428] = 6428, - [6429] = 6349, - [6430] = 6357, - [6431] = 6226, - [6432] = 6432, - [6433] = 6357, - [6434] = 6434, - [6435] = 6348, - [6436] = 6354, - [6437] = 6437, - [6438] = 6226, - [6439] = 1065, - [6440] = 6440, - [6441] = 1959, - [6442] = 6229, - [6443] = 154, - [6444] = 6226, - [6445] = 6445, - [6446] = 6208, - [6447] = 153, - [6448] = 6216, - [6449] = 6211, - [6450] = 6440, - [6451] = 1957, - [6452] = 6229, + [6408] = 6275, + [6409] = 6409, + [6410] = 6410, + [6411] = 6378, + [6412] = 6292, + [6413] = 6378, + [6414] = 6382, + [6415] = 6283, + [6416] = 6378, + [6417] = 6377, + [6418] = 6382, + [6419] = 6391, + [6420] = 6275, + [6421] = 6290, + [6422] = 6422, + [6423] = 6391, + [6424] = 6424, + [6425] = 6290, + [6426] = 6377, + [6427] = 6292, + [6428] = 6382, + [6429] = 6429, + [6430] = 6430, + [6431] = 5954, + [6432] = 6391, + [6433] = 6382, + [6434] = 6377, + [6435] = 6391, + [6436] = 6399, + [6437] = 6382, + [6438] = 2074, + [6439] = 6377, + [6440] = 6391, + [6441] = 6441, + [6442] = 6442, + [6443] = 6443, + [6444] = 6377, + [6445] = 6382, + [6446] = 2070, + [6447] = 6447, + [6448] = 6283, + [6449] = 6378, + [6450] = 6450, + [6451] = 6451, + [6452] = 6391, [6453] = 6453, - [6454] = 6440, - [6455] = 6440, - [6456] = 6210, - [6457] = 1965, - [6458] = 6440, - [6459] = 6216, - [6460] = 6440, - [6461] = 6440, - [6462] = 1948, - [6463] = 1963, - [6464] = 6453, - [6465] = 6465, - [6466] = 6440, - [6467] = 6211, - [6468] = 6440, - [6469] = 6306, - [6470] = 1962, - [6471] = 6440, - [6472] = 6440, + [6454] = 6290, + [6455] = 6377, + [6456] = 6391, + [6457] = 6377, + [6458] = 6378, + [6459] = 6378, + [6460] = 6378, + [6461] = 6391, + [6462] = 6377, + [6463] = 6463, + [6464] = 6464, + [6465] = 6377, + [6466] = 6466, + [6467] = 6467, + [6468] = 6290, + [6469] = 2727, + [6470] = 1065, + [6471] = 2747, + [6472] = 6472, [6473] = 6473, - [6474] = 6302, - [6475] = 6219, - [6476] = 2708, - [6477] = 5924, - [6478] = 6440, - [6479] = 1958, - [6480] = 1960, - [6481] = 1947, - [6482] = 1953, - [6483] = 1949, - [6484] = 2721, - [6485] = 1950, - [6486] = 6220, - [6487] = 6210, - [6488] = 1964, - [6489] = 6489, - [6490] = 1066, - [6491] = 1951, - [6492] = 5924, - [6493] = 2711, - [6494] = 6453, - [6495] = 6440, - [6496] = 6231, - [6497] = 6440, - [6498] = 6453, - [6499] = 6440, - [6500] = 1954, - [6501] = 6440, - [6502] = 1952, - [6503] = 6440, - [6504] = 1955, - [6505] = 6440, - [6506] = 1956, - [6507] = 6453, - [6508] = 6231, - [6509] = 6302, - [6510] = 6440, - [6511] = 6440, - [6512] = 6208, - [6513] = 6219, - [6514] = 6514, - [6515] = 6210, - [6516] = 6516, - [6517] = 6517, - [6518] = 2769, - [6519] = 6514, - [6520] = 2322, - [6521] = 6521, - [6522] = 6522, - [6523] = 6523, - [6524] = 6524, - [6525] = 6521, - [6526] = 6524, - [6527] = 6219, - [6528] = 6528, - [6529] = 6529, - [6530] = 6530, - [6531] = 6528, - [6532] = 6529, - [6533] = 6226, - [6534] = 6530, - [6535] = 2421, - [6536] = 2267, - [6537] = 6516, - [6538] = 6523, - [6539] = 6516, - [6540] = 6540, - [6541] = 6523, - [6542] = 2826, - [6543] = 2272, - [6544] = 6523, - [6545] = 6523, - [6546] = 6523, - [6547] = 6517, - [6548] = 6516, - [6549] = 6210, - [6550] = 6516, - [6551] = 6517, - [6552] = 2666, - [6553] = 6522, - [6554] = 6517, - [6555] = 6514, - [6556] = 6521, - [6557] = 6524, - [6558] = 6528, - [6559] = 6529, - [6560] = 6216, - [6561] = 6530, - [6562] = 6517, - [6563] = 6523, - [6564] = 6516, - [6565] = 6516, - [6566] = 6516, - [6567] = 6523, - [6568] = 6219, - [6569] = 6216, - [6570] = 6523, - [6571] = 6517, - [6572] = 6517, - [6573] = 2361, - [6574] = 6516, - [6575] = 6517, - [6576] = 6576, - [6577] = 6523, - [6578] = 6523, - [6579] = 6517, - [6580] = 6226, - [6581] = 6522, - [6582] = 6523, - [6583] = 6583, - [6584] = 6226, - [6585] = 6514, - [6586] = 5924, - [6587] = 6412, + [6474] = 6304, + [6475] = 6475, + [6476] = 6258, + [6477] = 6292, + [6478] = 6261, + [6479] = 1993, + [6480] = 6275, + [6481] = 6481, + [6482] = 6473, + [6483] = 6290, + [6484] = 6258, + [6485] = 6283, + [6486] = 6285, + [6487] = 6487, + [6488] = 6473, + [6489] = 6292, + [6490] = 1994, + [6491] = 6473, + [6492] = 6261, + [6493] = 6243, + [6494] = 6473, + [6495] = 6475, + [6496] = 6473, + [6497] = 6473, + [6498] = 6473, + [6499] = 1982, + [6500] = 5954, + [6501] = 6473, + [6502] = 6473, + [6503] = 6473, + [6504] = 151, + [6505] = 6239, + [6506] = 153, + [6507] = 1986, + [6508] = 1998, + [6509] = 6473, + [6510] = 5954, + [6511] = 6473, + [6512] = 1984, + [6513] = 1988, + [6514] = 1980, + [6515] = 6285, + [6516] = 1989, + [6517] = 6473, + [6518] = 6475, + [6519] = 6519, + [6520] = 6260, + [6521] = 6275, + [6522] = 6475, + [6523] = 6283, + [6524] = 6475, + [6525] = 1991, + [6526] = 1999, + [6527] = 6473, + [6528] = 1983, + [6529] = 1997, + [6530] = 1990, + [6531] = 1064, + [6532] = 6239, + [6533] = 6473, + [6534] = 1996, + [6535] = 6473, + [6536] = 6243, + [6537] = 6473, + [6538] = 2721, + [6539] = 1992, + [6540] = 6473, + [6541] = 1995, + [6542] = 6473, + [6543] = 1981, + [6544] = 6544, + [6545] = 6545, + [6546] = 6546, + [6547] = 6547, + [6548] = 6548, + [6549] = 6549, + [6550] = 6547, + [6551] = 6551, + [6552] = 6552, + [6553] = 6553, + [6554] = 6290, + [6555] = 2734, + [6556] = 6556, + [6557] = 6544, + [6558] = 6556, + [6559] = 2856, + [6560] = 6552, + [6561] = 2330, + [6562] = 2338, + [6563] = 2347, + [6564] = 6283, + [6565] = 6556, + [6566] = 6553, + [6567] = 6553, + [6568] = 6553, + [6569] = 6547, + [6570] = 2290, + [6571] = 2841, + [6572] = 6547, + [6573] = 6547, + [6574] = 6556, + [6575] = 6553, + [6576] = 6551, + [6577] = 6548, + [6578] = 6578, + [6579] = 6275, + [6580] = 6547, + [6581] = 6578, + [6582] = 2433, + [6583] = 6292, + [6584] = 6544, + [6585] = 6548, + [6586] = 6552, + [6587] = 6551, [6588] = 6588, - [6589] = 6302, - [6590] = 6208, - [6591] = 6591, - [6592] = 6592, - [6593] = 6231, - [6594] = 6594, - [6595] = 6387, - [6596] = 6596, - [6597] = 6597, - [6598] = 6591, - [6599] = 6596, - [6600] = 6231, - [6601] = 2721, - [6602] = 6588, - [6603] = 6210, - [6604] = 6591, - [6605] = 6521, - [6606] = 6524, - [6607] = 6597, - [6608] = 6597, - [6609] = 6609, - [6610] = 6596, - [6611] = 6588, - [6612] = 6588, - [6613] = 6347, - [6614] = 6522, - [6615] = 6588, - [6616] = 6382, - [6617] = 6528, - [6618] = 6216, + [6589] = 6547, + [6590] = 6283, + [6591] = 6547, + [6592] = 6553, + [6593] = 6556, + [6594] = 6549, + [6595] = 6545, + [6596] = 6290, + [6597] = 6553, + [6598] = 6553, + [6599] = 6292, + [6600] = 6275, + [6601] = 6556, + [6602] = 6578, + [6603] = 6553, + [6604] = 6553, + [6605] = 6556, + [6606] = 6553, + [6607] = 6549, + [6608] = 6553, + [6609] = 6556, + [6610] = 6556, + [6611] = 6545, + [6612] = 6547, + [6613] = 6613, + [6614] = 6614, + [6615] = 6615, + [6616] = 6430, + [6617] = 6424, + [6618] = 6275, [6619] = 6619, - [6620] = 6529, - [6621] = 6621, - [6622] = 6583, - [6623] = 6597, - [6624] = 6434, - [6625] = 6377, - [6626] = 6626, - [6627] = 6219, - [6628] = 6432, - [6629] = 6588, - [6630] = 6405, - [6631] = 6631, - [6632] = 6437, - [6633] = 2402, - [6634] = 6634, - [6635] = 6302, - [6636] = 6302, - [6637] = 6596, - [6638] = 6588, - [6639] = 6211, - [6640] = 6588, - [6641] = 6226, - [6642] = 6426, - [6643] = 2721, - [6644] = 6594, - [6645] = 6425, - [6646] = 6596, - [6647] = 6588, - [6648] = 6229, - [6649] = 6591, - [6650] = 6596, - [6651] = 6588, - [6652] = 6591, - [6653] = 2711, - [6654] = 6219, - [6655] = 6588, - [6656] = 6211, - [6657] = 6657, - [6658] = 6229, - [6659] = 6588, - [6660] = 2711, - [6661] = 6216, - [6662] = 6229, - [6663] = 6208, - [6664] = 6588, - [6665] = 6211, - [6666] = 6588, - [6667] = 6423, - [6668] = 6400, - [6669] = 6229, - [6670] = 6302, - [6671] = 6588, - [6672] = 6210, - [6673] = 6597, - [6674] = 6231, - [6675] = 6399, - [6676] = 1898, - [6677] = 6530, - [6678] = 6363, - [6679] = 6231, - [6680] = 6597, - [6681] = 6591, - [6682] = 6588, - [6683] = 6683, - [6684] = 6597, - [6685] = 6211, - [6686] = 6388, - [6687] = 6391, - [6688] = 6588, - [6689] = 6208, - [6690] = 6588, - [6691] = 6588, - [6692] = 6621, - [6693] = 6591, - [6694] = 6626, - [6695] = 6591, - [6696] = 6596, - [6697] = 6346, - [6698] = 6591, - [6699] = 6383, - [6700] = 6596, - [6701] = 6597, - [6702] = 6208, - [6703] = 6683, - [6704] = 6597, - [6705] = 6705, - [6706] = 6588, - [6707] = 6588, - [6708] = 6407, - [6709] = 6596, - [6710] = 6710, - [6711] = 6216, - [6712] = 6712, - [6713] = 6713, - [6714] = 6714, - [6715] = 6715, - [6716] = 6710, - [6717] = 6710, - [6718] = 6718, - [6719] = 6713, - [6720] = 6720, - [6721] = 2435, - [6722] = 6714, - [6723] = 6522, - [6724] = 6713, - [6725] = 6725, - [6726] = 6713, - [6727] = 6514, - [6728] = 6728, - [6729] = 6729, - [6730] = 2434, - [6731] = 6714, + [6620] = 6620, + [6621] = 6613, + [6622] = 6613, + [6623] = 6620, + [6624] = 6549, + [6625] = 6453, + [6626] = 6545, + [6627] = 6467, + [6628] = 6243, + [6629] = 6629, + [6630] = 2721, + [6631] = 6239, + [6632] = 6261, + [6633] = 6619, + [6634] = 6376, + [6635] = 6619, + [6636] = 6261, + [6637] = 6637, + [6638] = 6384, + [6639] = 6639, + [6640] = 2747, + [6641] = 6243, + [6642] = 6619, + [6643] = 6548, + [6644] = 6613, + [6645] = 6258, + [6646] = 6258, + [6647] = 6285, + [6648] = 2721, + [6649] = 6422, + [6650] = 6578, + [6651] = 6285, + [6652] = 6441, + [6653] = 6409, + [6654] = 6613, + [6655] = 6639, + [6656] = 6390, + [6657] = 6243, + [6658] = 6464, + [6659] = 6637, + [6660] = 6660, + [6661] = 6637, + [6662] = 6442, + [6663] = 6383, + [6664] = 6261, + [6665] = 6613, + [6666] = 6666, + [6667] = 6619, + [6668] = 6619, + [6669] = 6669, + [6670] = 6637, + [6671] = 6619, + [6672] = 6620, + [6673] = 6258, + [6674] = 6450, + [6675] = 6285, + [6676] = 6239, + [6677] = 6292, + [6678] = 6619, + [6679] = 6619, + [6680] = 2747, + [6681] = 6681, + [6682] = 6682, + [6683] = 1933, + [6684] = 2475, + [6685] = 6619, + [6686] = 6619, + [6687] = 6613, + [6688] = 6613, + [6689] = 6290, + [6690] = 6620, + [6691] = 6615, + [6692] = 6283, + [6693] = 6619, + [6694] = 6261, + [6695] = 6275, + [6696] = 6239, + [6697] = 6619, + [6698] = 6544, + [6699] = 6637, + [6700] = 6666, + [6701] = 6619, + [6702] = 6620, + [6703] = 6620, + [6704] = 6704, + [6705] = 6447, + [6706] = 6258, + [6707] = 6619, + [6708] = 6619, + [6709] = 6619, + [6710] = 6613, + [6711] = 6619, + [6712] = 6285, + [6713] = 6620, + [6714] = 6620, + [6715] = 6619, + [6716] = 6637, + [6717] = 6619, + [6718] = 6704, + [6719] = 6466, + [6720] = 6637, + [6721] = 6243, + [6722] = 6392, + [6723] = 6463, + [6724] = 6443, + [6725] = 6614, + [6726] = 6239, + [6727] = 6637, + [6728] = 6620, + [6729] = 6283, + [6730] = 5954, + [6731] = 6292, [6732] = 6732, - [6733] = 1985, - [6734] = 6714, - [6735] = 6522, - [6736] = 6514, - [6737] = 2272, - [6738] = 6521, - [6739] = 6714, - [6740] = 6713, - [6741] = 2454, - [6742] = 6528, - [6743] = 6524, - [6744] = 2361, - [6745] = 2322, - [6746] = 2267, - [6747] = 6528, - [6748] = 6529, - [6749] = 6530, - [6750] = 2393, - [6751] = 2394, - [6752] = 6713, - [6753] = 2396, - [6754] = 6521, - [6755] = 6524, - [6756] = 2415, - [6757] = 6710, + [6733] = 6410, + [6734] = 6734, + [6735] = 6290, + [6736] = 6619, + [6737] = 6551, + [6738] = 6552, + [6739] = 6637, + [6740] = 6740, + [6741] = 2290, + [6742] = 6283, + [6743] = 6544, + [6744] = 6290, + [6745] = 6292, + [6746] = 2461, + [6747] = 2008, + [6748] = 6748, + [6749] = 6749, + [6750] = 2468, + [6751] = 2495, + [6752] = 6752, + [6753] = 6740, + [6754] = 2496, + [6755] = 2009, + [6756] = 2470, + [6757] = 6545, [6758] = 6758, - [6759] = 2453, - [6760] = 6760, - [6761] = 6713, - [6762] = 2398, - [6763] = 6714, - [6764] = 6710, - [6765] = 1986, - [6766] = 1973, - [6767] = 6530, - [6768] = 6768, - [6769] = 6529, - [6770] = 6713, - [6771] = 6710, - [6772] = 2763, - [6773] = 6710, - [6774] = 2395, - [6775] = 6775, - [6776] = 2834, - [6777] = 2813, - [6778] = 2814, - [6779] = 6226, - [6780] = 2803, - [6781] = 6714, - [6782] = 6714, + [6759] = 2471, + [6760] = 6292, + [6761] = 6761, + [6762] = 6761, + [6763] = 6290, + [6764] = 6761, + [6765] = 6761, + [6766] = 6740, + [6767] = 6749, + [6768] = 6740, + [6769] = 6749, + [6770] = 6740, + [6771] = 2429, + [6772] = 6772, + [6773] = 6761, + [6774] = 6774, + [6775] = 6740, + [6776] = 2330, + [6777] = 2007, + [6778] = 6761, + [6779] = 6549, + [6780] = 2766, + [6781] = 6740, + [6782] = 6782, [6783] = 6783, - [6784] = 6714, - [6785] = 6226, - [6786] = 6710, - [6787] = 2801, - [6788] = 1984, - [6789] = 6219, - [6790] = 2762, - [6791] = 6219, - [6792] = 6216, - [6793] = 6210, - [6794] = 6710, - [6795] = 6210, - [6796] = 6713, - [6797] = 2736, + [6784] = 6749, + [6785] = 2022, + [6786] = 6761, + [6787] = 2499, + [6788] = 6788, + [6789] = 6551, + [6790] = 2755, + [6791] = 6740, + [6792] = 6792, + [6793] = 6740, + [6794] = 6761, + [6795] = 6548, + [6796] = 6578, + [6797] = 6283, [6798] = 6798, - [6799] = 6799, - [6800] = 6800, - [6801] = 6522, - [6802] = 6211, - [6803] = 2322, - [6804] = 6798, - [6805] = 6594, - [6806] = 6798, - [6807] = 6626, - [6808] = 6798, - [6809] = 6216, - [6810] = 6210, - [6811] = 2272, - [6812] = 6798, - [6813] = 6798, - [6814] = 2402, - [6815] = 6216, - [6816] = 6219, - [6817] = 6798, - [6818] = 6818, - [6819] = 6798, - [6820] = 6820, - [6821] = 6226, - [6822] = 6820, - [6823] = 6823, - [6824] = 6798, - [6825] = 6820, - [6826] = 6798, - [6827] = 6798, - [6828] = 6798, - [6829] = 6798, - [6830] = 6798, - [6831] = 6514, - [6832] = 6229, - [6833] = 6798, - [6834] = 6226, - [6835] = 6800, - [6836] = 2721, - [6837] = 2267, - [6838] = 6798, - [6839] = 6798, - [6840] = 6683, - [6841] = 6800, - [6842] = 6530, - [6843] = 6820, - [6844] = 6583, - [6845] = 6211, - [6846] = 6820, - [6847] = 6521, - [6848] = 6524, - [6849] = 6798, - [6850] = 2711, - [6851] = 6229, - [6852] = 6852, - [6853] = 6208, - [6854] = 6621, - [6855] = 6528, - [6856] = 6529, - [6857] = 6231, - [6858] = 6858, - [6859] = 6859, - [6860] = 2361, - [6861] = 6208, - [6862] = 6862, - [6863] = 6800, - [6864] = 6302, - [6865] = 6798, - [6866] = 6609, - [6867] = 6210, - [6868] = 6302, - [6869] = 6231, - [6870] = 6798, - [6871] = 6798, + [6799] = 2860, + [6800] = 2852, + [6801] = 2845, + [6802] = 2839, + [6803] = 6803, + [6804] = 6804, + [6805] = 6552, + [6806] = 6761, + [6807] = 6749, + [6808] = 2756, + [6809] = 6544, + [6810] = 6578, + [6811] = 6548, + [6812] = 6812, + [6813] = 6749, + [6814] = 6749, + [6815] = 6545, + [6816] = 6275, + [6817] = 6549, + [6818] = 2423, + [6819] = 2422, + [6820] = 6749, + [6821] = 2338, + [6822] = 6551, + [6823] = 6749, + [6824] = 2347, + [6825] = 6275, + [6826] = 6552, + [6827] = 2757, + [6828] = 6285, + [6829] = 6829, + [6830] = 6830, + [6831] = 6831, + [6832] = 6292, + [6833] = 2721, + [6834] = 6283, + [6835] = 6552, + [6836] = 6831, + [6837] = 6551, + [6838] = 6838, + [6839] = 6831, + [6840] = 6840, + [6841] = 6831, + [6842] = 6831, + [6843] = 6831, + [6844] = 6549, + [6845] = 2290, + [6846] = 6831, + [6847] = 6847, + [6848] = 6545, + [6849] = 6831, + [6850] = 6239, + [6851] = 6830, + [6852] = 6831, + [6853] = 6548, + [6854] = 6578, + [6855] = 2747, + [6856] = 6856, + [6857] = 6544, + [6858] = 6258, + [6859] = 6831, + [6860] = 2475, + [6861] = 6831, + [6862] = 6275, + [6863] = 6863, + [6864] = 6864, + [6865] = 6239, + [6866] = 6831, + [6867] = 6734, + [6868] = 6831, + [6869] = 6831, + [6870] = 6615, + [6871] = 6829, [6872] = 6872, - [6873] = 6800, - [6874] = 6219, - [6875] = 6875, - [6876] = 6876, - [6877] = 6877, - [6878] = 6876, - [6879] = 6876, - [6880] = 6880, - [6881] = 6229, - [6882] = 6882, - [6883] = 6875, - [6884] = 6875, - [6885] = 6876, - [6886] = 6886, - [6887] = 6887, - [6888] = 2721, - [6889] = 6889, - [6890] = 6514, - [6891] = 6891, - [6892] = 6208, - [6893] = 6891, - [6894] = 6880, - [6895] = 6895, - [6896] = 6521, - [6897] = 6524, - [6898] = 6211, - [6899] = 6880, - [6900] = 6900, - [6901] = 6522, - [6902] = 6229, - [6903] = 6875, - [6904] = 6208, - [6905] = 6880, - [6906] = 6583, + [6873] = 6873, + [6874] = 6261, + [6875] = 6830, + [6876] = 2347, + [6877] = 6830, + [6878] = 6243, + [6879] = 6283, + [6880] = 6290, + [6881] = 6275, + [6882] = 6285, + [6883] = 6831, + [6884] = 6831, + [6885] = 6831, + [6886] = 6258, + [6887] = 6831, + [6888] = 6831, + [6889] = 6261, + [6890] = 6292, + [6891] = 6831, + [6892] = 6829, + [6893] = 6639, + [6894] = 6666, + [6895] = 6831, + [6896] = 6243, + [6897] = 2338, + [6898] = 6830, + [6899] = 6829, + [6900] = 2330, + [6901] = 6829, + [6902] = 6290, + [6903] = 6704, + [6904] = 6614, + [6905] = 2721, + [6906] = 6906, [6907] = 6907, - [6908] = 6302, - [6909] = 6891, - [6910] = 6875, - [6911] = 6621, - [6912] = 6876, - [6913] = 2402, - [6914] = 6914, - [6915] = 6211, - [6916] = 6231, - [6917] = 6514, - [6918] = 6875, - [6919] = 6528, - [6920] = 6529, - [6921] = 6875, - [6922] = 6626, - [6923] = 6876, - [6924] = 6880, - [6925] = 6875, - [6926] = 6683, - [6927] = 6891, - [6928] = 6880, - [6929] = 6929, - [6930] = 6880, - [6931] = 6231, - [6932] = 6880, - [6933] = 6875, + [6908] = 6239, + [6909] = 6906, + [6910] = 6910, + [6911] = 6261, + [6912] = 6614, + [6913] = 6548, + [6914] = 6258, + [6915] = 2835, + [6916] = 6578, + [6917] = 6917, + [6918] = 2475, + [6919] = 6615, + [6920] = 6666, + [6921] = 6285, + [6922] = 6906, + [6923] = 6923, + [6924] = 6924, + [6925] = 6907, + [6926] = 6926, + [6927] = 6923, + [6928] = 6928, + [6929] = 6923, + [6930] = 6930, + [6931] = 6923, + [6932] = 6907, + [6933] = 6261, [6934] = 6934, - [6935] = 6891, - [6936] = 6875, - [6937] = 6891, + [6935] = 6935, + [6936] = 6923, + [6937] = 2747, [6938] = 6938, - [6939] = 6876, - [6940] = 6876, - [6941] = 6891, - [6942] = 6530, - [6943] = 2722, - [6944] = 6876, - [6945] = 6891, - [6946] = 2711, - [6947] = 6594, - [6948] = 6302, - [6949] = 6876, - [6950] = 6876, - [6951] = 6875, - [6952] = 2745, - [6953] = 6876, - [6954] = 6880, - [6955] = 6528, - [6956] = 6529, - [6957] = 6891, - [6958] = 6875, - [6959] = 1895, - [6960] = 6960, - [6961] = 6961, - [6962] = 6960, - [6963] = 6960, - [6964] = 1888, - [6965] = 6965, - [6966] = 6960, - [6967] = 6967, - [6968] = 6522, - [6969] = 6960, - [6970] = 6970, - [6971] = 6514, - [6972] = 1894, - [6973] = 6973, - [6974] = 6974, - [6975] = 6960, - [6976] = 6960, - [6977] = 6521, - [6978] = 6524, - [6979] = 6960, - [6980] = 6980, - [6981] = 6528, - [6982] = 6529, - [6983] = 6960, - [6984] = 6960, - [6985] = 6985, - [6986] = 1897, - [6987] = 6960, - [6988] = 6960, - [6989] = 1891, - [6990] = 1896, - [6991] = 6530, - [6992] = 6960, - [6993] = 1892, - [6994] = 6960, - [6995] = 6974, - [6996] = 6996, - [6997] = 6960, - [6998] = 6998, - [6999] = 6999, - [7000] = 7000, - [7001] = 6514, - [7002] = 7002, - [7003] = 6530, - [7004] = 7000, - [7005] = 7002, - [7006] = 7002, - [7007] = 6522, - [7008] = 7008, - [7009] = 6445, - [7010] = 7010, - [7011] = 7000, - [7012] = 7000, - [7013] = 7000, - [7014] = 7002, - [7015] = 2721, - [7016] = 7008, - [7017] = 7000, - [7018] = 7002, - [7019] = 2711, - [7020] = 6465, - [7021] = 7002, - [7022] = 7002, - [7023] = 7002, - [7024] = 7002, - [7025] = 7002, - [7026] = 7008, - [7027] = 7002, - [7028] = 7002, - [7029] = 7002, - [7030] = 7002, - [7031] = 7002, - [7032] = 7002, - [7033] = 7000, - [7034] = 7002, - [7035] = 7000, - [7036] = 7002, - [7037] = 6529, - [7038] = 7038, - [7039] = 7039, - [7040] = 7002, - [7041] = 7002, - [7042] = 6528, - [7043] = 7002, - [7044] = 7000, - [7045] = 7002, - [7046] = 7002, - [7047] = 6524, - [7048] = 7008, - [7049] = 6521, - [7050] = 7008, - [7051] = 6621, - [7052] = 7052, - [7053] = 7053, - [7054] = 6594, - [7055] = 7055, - [7056] = 6583, - [7057] = 7057, - [7058] = 7058, - [7059] = 7059, - [7060] = 7060, + [6939] = 6939, + [6940] = 6907, + [6941] = 6704, + [6942] = 6906, + [6943] = 6906, + [6944] = 6544, + [6945] = 6923, + [6946] = 6923, + [6947] = 6906, + [6948] = 6948, + [6949] = 6551, + [6950] = 6243, + [6951] = 6258, + [6952] = 6907, + [6953] = 6939, + [6954] = 6285, + [6955] = 6552, + [6956] = 6639, + [6957] = 6907, + [6958] = 6958, + [6959] = 6939, + [6960] = 6906, + [6961] = 6939, + [6962] = 6939, + [6963] = 6939, + [6964] = 6578, + [6965] = 6548, + [6966] = 6907, + [6967] = 6906, + [6968] = 6939, + [6969] = 6551, + [6970] = 6939, + [6971] = 6939, + [6972] = 2743, + [6973] = 6939, + [6974] = 6545, + [6975] = 6939, + [6976] = 6907, + [6977] = 6243, + [6978] = 6906, + [6979] = 6549, + [6980] = 6907, + [6981] = 6906, + [6982] = 6906, + [6983] = 6923, + [6984] = 6984, + [6985] = 6906, + [6986] = 6923, + [6987] = 6939, + [6988] = 6239, + [6989] = 6989, + [6990] = 6990, + [6991] = 6991, + [6992] = 6992, + [6993] = 6990, + [6994] = 6994, + [6995] = 6990, + [6996] = 6578, + [6997] = 6990, + [6998] = 6548, + [6999] = 6545, + [7000] = 6549, + [7001] = 7001, + [7002] = 6990, + [7003] = 6990, + [7004] = 6990, + [7005] = 6551, + [7006] = 6552, + [7007] = 1927, + [7008] = 6990, + [7009] = 6990, + [7010] = 1928, + [7011] = 7011, + [7012] = 6990, + [7013] = 7013, + [7014] = 6990, + [7015] = 6990, + [7016] = 7016, + [7017] = 1922, + [7018] = 1925, + [7019] = 7016, + [7020] = 7020, + [7021] = 1923, + [7022] = 6990, + [7023] = 6544, + [7024] = 6990, + [7025] = 1924, + [7026] = 1930, + [7027] = 7027, + [7028] = 6990, + [7029] = 7029, + [7030] = 7030, + [7031] = 7031, + [7032] = 6481, + [7033] = 7029, + [7034] = 7031, + [7035] = 2747, + [7036] = 7029, + [7037] = 7037, + [7038] = 7029, + [7039] = 7029, + [7040] = 7029, + [7041] = 7029, + [7042] = 7029, + [7043] = 7031, + [7044] = 6544, + [7045] = 7037, + [7046] = 7029, + [7047] = 7031, + [7048] = 7029, + [7049] = 7049, + [7050] = 7029, + [7051] = 7031, + [7052] = 7029, + [7053] = 7029, + [7054] = 7037, + [7055] = 7029, + [7056] = 7056, + [7057] = 7029, + [7058] = 7029, + [7059] = 7029, + [7060] = 2721, [7061] = 7061, - [7062] = 6619, - [7063] = 7063, - [7064] = 2666, - [7065] = 7055, - [7066] = 7052, - [7067] = 7067, - [7068] = 7058, - [7069] = 6465, - [7070] = 7070, - [7071] = 6592, - [7072] = 6529, - [7073] = 6528, - [7074] = 7052, - [7075] = 6683, - [7076] = 6524, - [7077] = 6521, - [7078] = 7078, - [7079] = 7052, - [7080] = 7080, + [7062] = 7031, + [7063] = 7037, + [7064] = 7029, + [7065] = 7031, + [7066] = 7029, + [7067] = 7029, + [7068] = 7029, + [7069] = 6551, + [7070] = 6545, + [7071] = 6552, + [7072] = 7031, + [7073] = 7029, + [7074] = 6519, + [7075] = 7031, + [7076] = 7029, + [7077] = 6549, + [7078] = 7037, + [7079] = 6578, + [7080] = 6548, [7081] = 7081, [7082] = 7082, [7083] = 7083, - [7084] = 7052, + [7084] = 7084, [7085] = 7085, [7086] = 7086, - [7087] = 7063, - [7088] = 7088, - [7089] = 7058, - [7090] = 7090, - [7091] = 7058, - [7092] = 7063, - [7093] = 7093, - [7094] = 6631, - [7095] = 6634, - [7096] = 7052, - [7097] = 7055, - [7098] = 7098, - [7099] = 7055, - [7100] = 6705, - [7101] = 7055, - [7102] = 7058, - [7103] = 7063, - [7104] = 6514, - [7105] = 7052, - [7106] = 7063, - [7107] = 6522, - [7108] = 7052, - [7109] = 6626, - [7110] = 7052, + [7087] = 7087, + [7088] = 7084, + [7089] = 7083, + [7090] = 6629, + [7091] = 7091, + [7092] = 7084, + [7093] = 7083, + [7094] = 6681, + [7095] = 7087, + [7096] = 7087, + [7097] = 6578, + [7098] = 6615, + [7099] = 6548, + [7100] = 7100, + [7101] = 7083, + [7102] = 6481, + [7103] = 6666, + [7104] = 6545, + [7105] = 6549, + [7106] = 7084, + [7107] = 7081, + [7108] = 7108, + [7109] = 7109, + [7110] = 7081, [7111] = 7111, - [7112] = 6530, - [7113] = 6445, + [7112] = 7112, + [7113] = 2734, [7114] = 7114, - [7115] = 6522, - [7116] = 7116, - [7117] = 6522, - [7118] = 2272, - [7119] = 7119, - [7120] = 7116, + [7115] = 6614, + [7116] = 6704, + [7117] = 6660, + [7118] = 7118, + [7119] = 6639, + [7120] = 7120, [7121] = 7121, - [7122] = 6521, - [7123] = 7116, - [7124] = 6529, - [7125] = 2857, + [7122] = 7083, + [7123] = 7081, + [7124] = 7087, + [7125] = 7125, [7126] = 7126, - [7127] = 7127, - [7128] = 6528, - [7129] = 6524, - [7130] = 6530, - [7131] = 7114, - [7132] = 6524, - [7133] = 7114, - [7134] = 7134, - [7135] = 6529, - [7136] = 7114, - [7137] = 6528, - [7138] = 7116, - [7139] = 6514, - [7140] = 7126, - [7141] = 7126, - [7142] = 2851, - [7143] = 2361, - [7144] = 2666, - [7145] = 2874, - [7146] = 6521, - [7147] = 7114, - [7148] = 6514, - [7149] = 7149, - [7150] = 7116, - [7151] = 7151, - [7152] = 7126, - [7153] = 2322, - [7154] = 7154, - [7155] = 6530, - [7156] = 7156, - [7157] = 7126, - [7158] = 7158, - [7159] = 7159, - [7160] = 2267, - [7161] = 2402, - [7162] = 7060, - [7163] = 7163, - [7164] = 6872, - [7165] = 7165, - [7166] = 7093, - [7167] = 6852, + [7127] = 6519, + [7128] = 7128, + [7129] = 6551, + [7130] = 7130, + [7131] = 7083, + [7132] = 7083, + [7133] = 7081, + [7134] = 6669, + [7135] = 6732, + [7136] = 7083, + [7137] = 7137, + [7138] = 7083, + [7139] = 6552, + [7140] = 7140, + [7141] = 6544, + [7142] = 7087, + [7143] = 7084, + [7144] = 7144, + [7145] = 7145, + [7146] = 7145, + [7147] = 7145, + [7148] = 2347, + [7149] = 6548, + [7150] = 7150, + [7151] = 7144, + [7152] = 7152, + [7153] = 2734, + [7154] = 7144, + [7155] = 7155, + [7156] = 6578, + [7157] = 7157, + [7158] = 7144, + [7159] = 2290, + [7160] = 6551, + [7161] = 7161, + [7162] = 6545, + [7163] = 6549, + [7164] = 6544, + [7165] = 2338, + [7166] = 6578, + [7167] = 2330, [7168] = 7168, - [7169] = 7080, - [7170] = 7170, + [7169] = 6548, + [7170] = 6544, [7171] = 7171, - [7172] = 7163, - [7173] = 7173, - [7174] = 7171, - [7175] = 7168, - [7176] = 7163, - [7177] = 6859, - [7178] = 7173, - [7179] = 2666, - [7180] = 7173, - [7181] = 7168, - [7182] = 7163, - [7183] = 7163, - [7184] = 7171, - [7185] = 7173, - [7186] = 7171, - [7187] = 7168, - [7188] = 7173, - [7189] = 7173, - [7190] = 7163, - [7191] = 7168, - [7192] = 7192, - [7193] = 7168, - [7194] = 2666, - [7195] = 7173, - [7196] = 7171, - [7197] = 7171, - [7198] = 7198, - [7199] = 7198, - [7200] = 7173, - [7201] = 7171, - [7202] = 7202, - [7203] = 7163, - [7204] = 7163, - [7205] = 7168, - [7206] = 7168, - [7207] = 7207, - [7208] = 7171, - [7209] = 7168, - [7210] = 7207, - [7211] = 7173, - [7212] = 7163, - [7213] = 7213, - [7214] = 7171, - [7215] = 7215, - [7216] = 6524, - [7217] = 7217, - [7218] = 2666, - [7219] = 7219, - [7220] = 7220, + [7172] = 2873, + [7173] = 6545, + [7174] = 6549, + [7175] = 2899, + [7176] = 7176, + [7177] = 7145, + [7178] = 6552, + [7179] = 7179, + [7180] = 7150, + [7181] = 6551, + [7182] = 6552, + [7183] = 7150, + [7184] = 2892, + [7185] = 7185, + [7186] = 7150, + [7187] = 7144, + [7188] = 7188, + [7189] = 7150, + [7190] = 7145, + [7191] = 7191, + [7192] = 7191, + [7193] = 7193, + [7194] = 7194, + [7195] = 2734, + [7196] = 7196, + [7197] = 6864, + [7198] = 7091, + [7199] = 7199, + [7200] = 7118, + [7201] = 7191, + [7202] = 2734, + [7203] = 7203, + [7204] = 2475, + [7205] = 7205, + [7206] = 7205, + [7207] = 7205, + [7208] = 7191, + [7209] = 7209, + [7210] = 7194, + [7211] = 7199, + [7212] = 7212, + [7213] = 7199, + [7214] = 7214, + [7215] = 7205, + [7216] = 7191, + [7217] = 7194, + [7218] = 7214, + [7219] = 7205, + [7220] = 7205, [7221] = 7221, - [7222] = 7222, - [7223] = 7223, - [7224] = 7224, - [7225] = 7225, - [7226] = 7220, - [7227] = 6514, - [7228] = 7228, - [7229] = 7229, - [7230] = 7217, - [7231] = 7231, - [7232] = 7217, - [7233] = 7233, - [7234] = 7231, - [7235] = 6529, - [7236] = 7236, - [7237] = 7237, - [7238] = 7238, - [7239] = 7239, - [7240] = 7240, - [7241] = 6528, - [7242] = 7236, - [7243] = 7240, - [7244] = 7244, - [7245] = 6522, - [7246] = 7223, - [7247] = 6530, - [7248] = 7219, - [7249] = 7222, + [7222] = 7194, + [7223] = 7199, + [7224] = 7199, + [7225] = 7199, + [7226] = 7205, + [7227] = 7209, + [7228] = 7191, + [7229] = 7191, + [7230] = 7194, + [7231] = 7191, + [7232] = 7194, + [7233] = 7194, + [7234] = 7205, + [7235] = 7191, + [7236] = 7194, + [7237] = 7205, + [7238] = 7199, + [7239] = 7194, + [7240] = 7140, + [7241] = 6840, + [7242] = 6838, + [7243] = 7199, + [7244] = 7199, + [7245] = 6544, + [7246] = 7246, + [7247] = 7247, + [7248] = 6552, + [7249] = 7249, [7250] = 7250, - [7251] = 2666, - [7252] = 7239, + [7251] = 7251, + [7252] = 7252, [7253] = 7253, - [7254] = 7240, + [7254] = 7254, [7255] = 7255, [7256] = 7256, - [7257] = 7236, - [7258] = 6521, - [7259] = 7231, - [7260] = 7244, - [7261] = 7261, - [7262] = 7228, - [7263] = 7240, - [7264] = 7236, + [7257] = 7257, + [7258] = 7258, + [7259] = 7247, + [7260] = 7260, + [7261] = 7250, + [7262] = 7262, + [7263] = 7263, + [7264] = 7264, [7265] = 7265, - [7266] = 7231, - [7267] = 7219, - [7268] = 7268, - [7269] = 7269, - [7270] = 7222, - [7271] = 7151, - [7272] = 7244, - [7273] = 7221, - [7274] = 7274, - [7275] = 7222, - [7276] = 7221, - [7277] = 7277, - [7278] = 7239, - [7279] = 7279, + [7266] = 7266, + [7267] = 7267, + [7268] = 7249, + [7269] = 7254, + [7270] = 7260, + [7271] = 7267, + [7272] = 6578, + [7273] = 7273, + [7274] = 6548, + [7275] = 7275, + [7276] = 7276, + [7277] = 6545, + [7278] = 6549, + [7279] = 2734, [7280] = 7280, - [7281] = 7244, - [7282] = 7282, - [7283] = 7221, + [7281] = 7250, + [7282] = 7280, + [7283] = 7263, [7284] = 7284, [7285] = 7285, - [7286] = 7239, - [7287] = 7219, - [7288] = 7288, - [7289] = 7217, - [7290] = 7244, - [7291] = 7291, - [7292] = 7292, - [7293] = 7293, + [7286] = 7258, + [7287] = 2734, + [7288] = 7258, + [7289] = 7249, + [7290] = 7262, + [7291] = 7264, + [7292] = 7265, + [7293] = 7171, [7294] = 7294, [7295] = 7295, - [7296] = 7296, + [7296] = 6551, [7297] = 7297, [7298] = 7298, - [7299] = 7299, - [7300] = 7300, - [7301] = 7301, - [7302] = 7302, - [7303] = 7303, - [7304] = 7303, + [7299] = 7249, + [7300] = 7250, + [7301] = 7254, + [7302] = 7260, + [7303] = 7258, + [7304] = 7267, [7305] = 7305, - [7306] = 7292, - [7307] = 7307, - [7308] = 7293, - [7309] = 7303, - [7310] = 7299, - [7311] = 7307, - [7312] = 7298, - [7313] = 7293, - [7314] = 7303, - [7315] = 7296, - [7316] = 7291, - [7317] = 7317, - [7318] = 7294, + [7306] = 7249, + [7307] = 7262, + [7308] = 7264, + [7309] = 7254, + [7310] = 7310, + [7311] = 7262, + [7312] = 7312, + [7313] = 7313, + [7314] = 7264, + [7315] = 7260, + [7316] = 7265, + [7317] = 7265, + [7318] = 7267, [7319] = 7319, [7320] = 7320, [7321] = 7321, - [7322] = 7291, - [7323] = 7317, - [7324] = 7324, + [7322] = 7322, + [7323] = 7323, + [7324] = 7203, [7325] = 7325, - [7326] = 7319, + [7326] = 7326, [7327] = 7327, [7328] = 7328, [7329] = 7329, [7330] = 7330, [7331] = 7331, [7332] = 7332, - [7333] = 7319, + [7333] = 7333, [7334] = 7334, - [7335] = 7302, - [7336] = 7336, - [7337] = 7332, - [7338] = 7331, - [7339] = 7339, - [7340] = 7307, - [7341] = 6445, - [7342] = 7342, - [7343] = 7329, - [7344] = 7321, - [7345] = 7317, - [7346] = 7291, - [7347] = 7299, - [7348] = 7342, - [7349] = 7349, - [7350] = 7321, - [7351] = 7328, - [7352] = 7307, - [7353] = 7325, - [7354] = 7329, - [7355] = 7329, - [7356] = 7303, - [7357] = 7357, - [7358] = 7331, - [7359] = 7336, - [7360] = 7332, - [7361] = 7307, - [7362] = 7320, - [7363] = 7291, - [7364] = 7317, - [7365] = 7303, - [7366] = 7299, - [7367] = 7357, - [7368] = 7328, - [7369] = 7303, - [7370] = 7299, - [7371] = 7332, - [7372] = 7294, - [7373] = 7334, - [7374] = 7292, - [7375] = 7329, - [7376] = 7331, - [7377] = 7342, - [7378] = 7378, - [7379] = 7329, - [7380] = 7302, - [7381] = 7296, - [7382] = 7325, - [7383] = 7334, - [7384] = 7299, - [7385] = 7298, - [7386] = 7319, - [7387] = 7294, - [7388] = 7388, - [7389] = 7331, - [7390] = 7325, - [7391] = 7391, - [7392] = 7319, - [7393] = 7393, - [7394] = 7331, - [7395] = 7302, - [7396] = 7339, - [7397] = 7303, - [7398] = 7329, - [7399] = 7296, - [7400] = 7334, + [7335] = 7335, + [7336] = 7334, + [7337] = 7337, + [7338] = 7335, + [7339] = 7334, + [7340] = 7340, + [7341] = 7335, + [7342] = 7334, + [7343] = 7343, + [7344] = 7344, + [7345] = 7335, + [7346] = 7334, + [7347] = 7347, + [7348] = 7335, + [7349] = 7334, + [7350] = 7350, + [7351] = 7351, + [7352] = 7352, + [7353] = 7335, + [7354] = 7334, + [7355] = 7355, + [7356] = 7335, + [7357] = 7334, + [7358] = 7335, + [7359] = 7334, + [7360] = 7360, + [7361] = 7361, + [7362] = 7332, + [7363] = 7333, + [7364] = 7364, + [7365] = 7365, + [7366] = 7366, + [7367] = 7331, + [7368] = 7368, + [7369] = 7369, + [7370] = 7370, + [7371] = 7323, + [7372] = 7335, + [7373] = 7373, + [7374] = 7374, + [7375] = 7375, + [7376] = 7376, + [7377] = 7334, + [7378] = 7331, + [7379] = 7374, + [7380] = 7380, + [7381] = 7333, + [7382] = 7322, + [7383] = 7380, + [7384] = 7384, + [7385] = 7385, + [7386] = 7386, + [7387] = 7335, + [7388] = 7374, + [7389] = 7389, + [7390] = 7390, + [7391] = 7380, + [7392] = 7321, + [7393] = 7333, + [7394] = 7394, + [7395] = 7322, + [7396] = 7384, + [7397] = 7397, + [7398] = 7398, + [7399] = 7399, + [7400] = 7389, [7401] = 7401, - [7402] = 7336, - [7403] = 7303, - [7404] = 7332, - [7405] = 7357, - [7406] = 7406, - [7407] = 7317, - [7408] = 7291, - [7409] = 7302, - [7410] = 7307, - [7411] = 7299, - [7412] = 7334, - [7413] = 7319, - [7414] = 7414, - [7415] = 7357, - [7416] = 7294, - [7417] = 7317, - [7418] = 7291, - [7419] = 7419, - [7420] = 7302, - [7421] = 7339, - [7422] = 7291, - [7423] = 7321, - [7424] = 7319, - [7425] = 7317, - [7426] = 7426, - [7427] = 7331, - [7428] = 7331, - [7429] = 7307, - [7430] = 7329, - [7431] = 7325, - [7432] = 7321, - [7433] = 7317, - [7434] = 7296, - [7435] = 7292, - [7436] = 7299, - [7437] = 7291, - [7438] = 7334, - [7439] = 7439, - [7440] = 7298, - [7441] = 7298, - [7442] = 7442, - [7443] = 7296, - [7444] = 7444, - [7445] = 7325, - [7446] = 7293, - [7447] = 7332, - [7448] = 7303, - [7449] = 7321, - [7450] = 7332, - [7451] = 7317, - [7452] = 7302, - [7453] = 7336, - [7454] = 7302, - [7455] = 7321, - [7456] = 7296, - [7457] = 7298, - [7458] = 7298, - [7459] = 7325, - [7460] = 7307, - [7461] = 7296, - [7462] = 7462, - [7463] = 7463, - [7464] = 7331, - [7465] = 7465, - [7466] = 7299, - [7467] = 7307, - [7468] = 7291, - [7469] = 7299, - [7470] = 7317, - [7471] = 7320, - [7472] = 7332, - [7473] = 7328, - [7474] = 7299, - [7475] = 7303, - [7476] = 7317, - [7477] = 7477, - [7478] = 7336, - [7479] = 7292, - [7480] = 7307, - [7481] = 7328, - [7482] = 7320, - [7483] = 7292, - [7484] = 7336, - [7485] = 7321, - [7486] = 7342, - [7487] = 7325, - [7488] = 7307, - [7489] = 7334, - [7490] = 7302, - [7491] = 7331, - [7492] = 7302, - [7493] = 7493, - [7494] = 7302, - [7495] = 7291, - [7496] = 7357, - [7497] = 7320, - [7498] = 7319, - [7499] = 7317, - [7500] = 7320, - [7501] = 7329, - [7502] = 7342, - [7503] = 7302, - [7504] = 7317, - [7505] = 7505, - [7506] = 7506, - [7507] = 7299, - [7508] = 7334, - [7509] = 7342, - [7510] = 7294, - [7511] = 7511, - [7512] = 7302, - [7513] = 7334, - [7514] = 7514, - [7515] = 7299, - [7516] = 7317, - [7517] = 7291, - [7518] = 7321, - [7519] = 7307, - [7520] = 7302, - [7521] = 7294, - [7522] = 7303, - [7523] = 7325, - [7524] = 7317, - [7525] = 7307, - [7526] = 7342, - [7527] = 7291, - [7528] = 7317, - [7529] = 7299, - [7530] = 7328, - [7531] = 7329, - [7532] = 7336, - [7533] = 7296, - [7534] = 7332, - [7535] = 7293, - [7536] = 7536, - [7537] = 7334, - [7538] = 7328, - [7539] = 7336, - [7540] = 7298, - [7541] = 7319, - [7542] = 7317, - [7543] = 7329, - [7544] = 7298, - [7545] = 7342, - [7546] = 7328, - [7547] = 7302, - [7548] = 7548, - [7549] = 7320, - [7550] = 7319, - [7551] = 7332, - [7552] = 7292, - [7553] = 7298, - [7554] = 7302, - [7555] = 7296, - [7556] = 7556, - [7557] = 7293, - [7558] = 7329, - [7559] = 7319, - [7560] = 7317, - [7561] = 7302, - [7562] = 7299, - [7563] = 7302, - [7564] = 7303, - [7565] = 7293, - [7566] = 7296, - [7567] = 7334, - [7568] = 7292, - [7569] = 7317, - [7570] = 7336, - [7571] = 7299, - [7572] = 7299, - [7573] = 7321, - [7574] = 7325, - [7575] = 7331, - [7576] = 7294, - [7577] = 7577, - [7578] = 7339, - [7579] = 7342, - [7580] = 7302, - [7581] = 7320, - [7582] = 7302, - [7583] = 7294, - [7584] = 7336, - [7585] = 7292, - [7586] = 7317, - [7587] = 7331, - [7588] = 7317, - [7589] = 7291, - [7590] = 7336, - [7591] = 7325, - [7592] = 7321, - [7593] = 7332, - [7594] = 7307, - [7595] = 7595, - [7596] = 7170, - [7597] = 7299, - [7598] = 7320, - [7599] = 7299, - [7600] = 7298, - [7601] = 7302, - [7602] = 7339, - [7603] = 7303, - [7604] = 7296, - [7605] = 7605, - [7606] = 7606, - [7607] = 7607, - [7608] = 7608, - [7609] = 7609, - [7610] = 7610, - [7611] = 7611, - [7612] = 7612, - [7613] = 7613, - [7614] = 7614, - [7615] = 7615, - [7616] = 7607, - [7617] = 7605, - [7618] = 7618, - [7619] = 7619, - [7620] = 7620, - [7621] = 7621, - [7622] = 7622, - [7623] = 7623, - [7624] = 7624, - [7625] = 7625, - [7626] = 7626, - [7627] = 7627, - [7628] = 7621, - [7629] = 7629, - [7630] = 7630, - [7631] = 7631, - [7632] = 7632, - [7633] = 7627, - [7634] = 7626, + [7402] = 7390, + [7403] = 7403, + [7404] = 7401, + [7405] = 7386, + [7406] = 7332, + [7407] = 7403, + [7408] = 7321, + [7409] = 7401, + [7410] = 7390, + [7411] = 7398, + [7412] = 6481, + [7413] = 7373, + [7414] = 7369, + [7415] = 7368, + [7416] = 7401, + [7417] = 7390, + [7418] = 7399, + [7419] = 7376, + [7420] = 7370, + [7421] = 7323, + [7422] = 7401, + [7423] = 7390, + [7424] = 7424, + [7425] = 7425, + [7426] = 7369, + [7427] = 7332, + [7428] = 7401, + [7429] = 7331, + [7430] = 7390, + [7431] = 7374, + [7432] = 7368, + [7433] = 7380, + [7434] = 7333, + [7435] = 7332, + [7436] = 7333, + [7437] = 7322, + [7438] = 7384, + [7439] = 7385, + [7440] = 7386, + [7441] = 7398, + [7442] = 7399, + [7443] = 7403, + [7444] = 7401, + [7445] = 7389, + [7446] = 7390, + [7447] = 7399, + [7448] = 7321, + [7449] = 7332, + [7450] = 7403, + [7451] = 7321, + [7452] = 7322, + [7453] = 7370, + [7454] = 7376, + [7455] = 7373, + [7456] = 7368, + [7457] = 7457, + [7458] = 7370, + [7459] = 7373, + [7460] = 7398, + [7461] = 7323, + [7462] = 7369, + [7463] = 7369, + [7464] = 7368, + [7465] = 7331, + [7466] = 7374, + [7467] = 7380, + [7468] = 7373, + [7469] = 7333, + [7470] = 7322, + [7471] = 7384, + [7472] = 7385, + [7473] = 7376, + [7474] = 7386, + [7475] = 7398, + [7476] = 7399, + [7477] = 7386, + [7478] = 7389, + [7479] = 7332, + [7480] = 7403, + [7481] = 7321, + [7482] = 7376, + [7483] = 7335, + [7484] = 7373, + [7485] = 7369, + [7486] = 7368, + [7487] = 7487, + [7488] = 7370, + [7489] = 7370, + [7490] = 7323, + [7491] = 7323, + [7492] = 7384, + [7493] = 7401, + [7494] = 7389, + [7495] = 7385, + [7496] = 7390, + [7497] = 7386, + [7498] = 7331, + [7499] = 7374, + [7500] = 7380, + [7501] = 7333, + [7502] = 7384, + [7503] = 7384, + [7504] = 7322, + [7505] = 7331, + [7506] = 7384, + [7507] = 7322, + [7508] = 7401, + [7509] = 7384, + [7510] = 7333, + [7511] = 7331, + [7512] = 7403, + [7513] = 7399, + [7514] = 7384, + [7515] = 7385, + [7516] = 7331, + [7517] = 7380, + [7518] = 7518, + [7519] = 7386, + [7520] = 7390, + [7521] = 7403, + [7522] = 7384, + [7523] = 7334, + [7524] = 7398, + [7525] = 7331, + [7526] = 7403, + [7527] = 7374, + [7528] = 7528, + [7529] = 7384, + [7530] = 7331, + [7531] = 7321, + [7532] = 7332, + [7533] = 7399, + [7534] = 7331, + [7535] = 7331, + [7536] = 7389, + [7537] = 7403, + [7538] = 7384, + [7539] = 7331, + [7540] = 7332, + [7541] = 7374, + [7542] = 7403, + [7543] = 7384, + [7544] = 7331, + [7545] = 7321, + [7546] = 7403, + [7547] = 7547, + [7548] = 7384, + [7549] = 7322, + [7550] = 7398, + [7551] = 7331, + [7552] = 7373, + [7553] = 7403, + [7554] = 7369, + [7555] = 7384, + [7556] = 7322, + [7557] = 7368, + [7558] = 7333, + [7559] = 7331, + [7560] = 7322, + [7561] = 7384, + [7562] = 7323, + [7563] = 7370, + [7564] = 7370, + [7565] = 7373, + [7566] = 7403, + [7567] = 7403, + [7568] = 7332, + [7569] = 7569, + [7570] = 7386, + [7571] = 7398, + [7572] = 7384, + [7573] = 7322, + [7574] = 7333, + [7575] = 7370, + [7576] = 7398, + [7577] = 7331, + [7578] = 7578, + [7579] = 7323, + [7580] = 7580, + [7581] = 7323, + [7582] = 7370, + [7583] = 7399, + [7584] = 7368, + [7585] = 7369, + [7586] = 7373, + [7587] = 7403, + [7588] = 7403, + [7589] = 7332, + [7590] = 7590, + [7591] = 7399, + [7592] = 7398, + [7593] = 7386, + [7594] = 7331, + [7595] = 7384, + [7596] = 7322, + [7597] = 7332, + [7598] = 7333, + [7599] = 7374, + [7600] = 7331, + [7601] = 7380, + [7602] = 7333, + [7603] = 7603, + [7604] = 7403, + [7605] = 7323, + [7606] = 7370, + [7607] = 7368, + [7608] = 7369, + [7609] = 7373, + [7610] = 7322, + [7611] = 7368, + [7612] = 7384, + [7613] = 7369, + [7614] = 7403, + [7615] = 7332, + [7616] = 7386, + [7617] = 7399, + [7618] = 7384, + [7619] = 7403, + [7620] = 7373, + [7621] = 7373, + [7622] = 7398, + [7623] = 7386, + [7624] = 7369, + [7625] = 7368, + [7626] = 7331, + [7627] = 7389, + [7628] = 7333, + [7629] = 7398, + [7630] = 7332, + [7631] = 7370, + [7632] = 7399, + [7633] = 7323, + [7634] = 7321, [7635] = 7635, [7636] = 7636, [7637] = 7637, [7638] = 7638, [7639] = 7639, - [7640] = 7640, + [7640] = 7140, [7641] = 7641, [7642] = 7642, [7643] = 7643, [7644] = 7644, [7645] = 7645, - [7646] = 7642, - [7647] = 2666, - [7648] = 7645, - [7649] = 7640, - [7650] = 7626, + [7646] = 7646, + [7647] = 7647, + [7648] = 7648, + [7649] = 7649, + [7650] = 7650, [7651] = 7651, - [7652] = 7631, + [7652] = 7652, [7653] = 7653, - [7654] = 7643, + [7654] = 7654, [7655] = 7655, - [7656] = 7653, - [7657] = 7605, + [7656] = 7656, + [7657] = 7653, [7658] = 7658, - [7659] = 7621, - [7660] = 7627, - [7661] = 7629, - [7662] = 7645, - [7663] = 7631, + [7659] = 7646, + [7660] = 7660, + [7661] = 7661, + [7662] = 7662, + [7663] = 7663, [7664] = 7664, [7665] = 7665, - [7666] = 7627, - [7667] = 7636, - [7668] = 7625, - [7669] = 7621, + [7666] = 7666, + [7667] = 7643, + [7668] = 7664, + [7669] = 7656, [7670] = 7670, - [7671] = 7671, - [7672] = 7060, - [7673] = 7642, - [7674] = 7674, - [7675] = 7606, - [7676] = 7676, - [7677] = 7643, - [7678] = 7608, - [7679] = 7623, - [7680] = 7622, - [7681] = 7681, - [7682] = 7609, - [7683] = 7610, - [7684] = 7611, - [7685] = 7612, - [7686] = 7613, + [7671] = 7636, + [7672] = 7672, + [7673] = 7656, + [7674] = 7643, + [7675] = 7662, + [7676] = 7637, + [7677] = 7637, + [7678] = 7678, + [7679] = 7679, + [7680] = 7664, + [7681] = 7645, + [7682] = 7645, + [7683] = 7664, + [7684] = 7684, + [7685] = 7646, + [7686] = 7641, [7687] = 7687, - [7688] = 7665, - [7689] = 7625, - [7690] = 7636, - [7691] = 7651, - [7692] = 7607, - [7693] = 7620, - [7694] = 7619, - [7695] = 7623, - [7696] = 7622, - [7697] = 7632, - [7698] = 7620, - [7699] = 7619, - [7700] = 7605, - [7701] = 7607, - [7702] = 7605, - [7703] = 7613, - [7704] = 7611, - [7705] = 7612, - [7706] = 7613, - [7707] = 7612, - [7708] = 7611, - [7709] = 7605, - [7710] = 7610, - [7711] = 7609, + [7688] = 7688, + [7689] = 7689, + [7690] = 7641, + [7691] = 7691, + [7692] = 7653, + [7693] = 7663, + [7694] = 7694, + [7695] = 7670, + [7696] = 7660, + [7697] = 7654, + [7698] = 7637, + [7699] = 7639, + [7700] = 7636, + [7701] = 7647, + [7702] = 7702, + [7703] = 7648, + [7704] = 7650, + [7705] = 7705, + [7706] = 7651, + [7707] = 7654, + [7708] = 7652, + [7709] = 7694, + [7710] = 7689, + [7711] = 7666, [7712] = 7712, - [7713] = 7619, - [7714] = 7639, - [7715] = 7620, - [7716] = 7716, - [7717] = 7681, - [7718] = 7632, - [7719] = 7607, - [7720] = 7651, - [7721] = 7608, - [7722] = 7627, - [7723] = 7627, - [7724] = 7624, - [7725] = 7631, + [7713] = 7713, + [7714] = 7654, + [7715] = 7665, + [7716] = 7639, + [7717] = 7717, + [7718] = 7645, + [7719] = 7719, + [7720] = 7658, + [7721] = 7721, + [7722] = 7722, + [7723] = 7723, + [7724] = 7656, + [7725] = 7725, [7726] = 7726, - [7727] = 7606, - [7728] = 7613, - [7729] = 7612, - [7730] = 7622, - [7731] = 7611, - [7732] = 7610, - [7733] = 7609, - [7734] = 7627, - [7735] = 7642, - [7736] = 7623, - [7737] = 7608, - [7738] = 7738, - [7739] = 7625, - [7740] = 7627, - [7741] = 7665, - [7742] = 7627, - [7743] = 7636, - [7744] = 7744, + [7727] = 7660, + [7728] = 7663, + [7729] = 7670, + [7730] = 7662, + [7731] = 7666, + [7732] = 7662, + [7733] = 7641, + [7734] = 7663, + [7735] = 7637, + [7736] = 7646, + [7737] = 7737, + [7738] = 7650, + [7739] = 7651, + [7740] = 7652, + [7741] = 7694, + [7742] = 7665, + [7743] = 7666, + [7744] = 7636, [7745] = 7745, - [7746] = 7629, - [7747] = 7627, - [7748] = 7681, - [7749] = 7749, - [7750] = 7750, - [7751] = 7608, - [7752] = 7619, - [7753] = 7620, + [7746] = 7746, + [7747] = 7660, + [7748] = 7656, + [7749] = 7653, + [7750] = 7723, + [7751] = 7751, + [7752] = 7670, + [7753] = 7753, [7754] = 7754, - [7755] = 7642, - [7756] = 7756, - [7757] = 7653, - [7758] = 7643, - [7759] = 7645, - [7760] = 7760, - [7761] = 7642, - [7762] = 7626, + [7755] = 7654, + [7756] = 7721, + [7757] = 7689, + [7758] = 7638, + [7759] = 7658, + [7760] = 7719, + [7761] = 7761, + [7762] = 7762, [7763] = 7763, - [7764] = 7764, - [7765] = 7631, - [7766] = 7621, - [7767] = 7642, - [7768] = 7676, - [7769] = 7621, - [7770] = 7676, - [7771] = 7636, - [7772] = 7606, - [7773] = 7773, - [7774] = 7671, - [7775] = 7631, + [7764] = 7643, + [7765] = 7636, + [7766] = 7638, + [7767] = 7767, + [7768] = 7641, + [7769] = 7769, + [7770] = 7666, + [7771] = 7665, + [7772] = 7772, + [7773] = 7670, + [7774] = 7689, + [7775] = 7672, [7776] = 7776, - [7777] = 7777, - [7778] = 7778, - [7779] = 7779, - [7780] = 7642, + [7777] = 7658, + [7778] = 7652, + [7779] = 7651, + [7780] = 7650, [7781] = 7781, - [7782] = 7642, - [7783] = 7606, - [7784] = 7784, - [7785] = 7611, - [7786] = 7612, - [7787] = 7613, - [7788] = 7645, - [7789] = 7627, - [7790] = 7645, - [7791] = 7643, - [7792] = 7640, - [7793] = 7643, - [7794] = 7636, - [7795] = 7624, - [7796] = 7796, - [7797] = 7629, - [7798] = 7640, - [7799] = 7653, - [7800] = 7653, - [7801] = 7801, - [7802] = 7665, - [7803] = 7625, - [7804] = 7804, - [7805] = 7623, - [7806] = 7653, - [7807] = 7807, - [7808] = 7622, - [7809] = 7620, - [7810] = 7619, - [7811] = 7629, - [7812] = 7636, - [7813] = 7640, - [7814] = 7607, - [7815] = 7613, - [7816] = 7643, - [7817] = 7817, - [7818] = 7645, - [7819] = 7612, - [7820] = 7611, - [7821] = 7671, - [7822] = 7610, - [7823] = 7681, - [7824] = 7609, - [7825] = 7606, - [7826] = 7826, - [7827] = 240, - [7828] = 7642, - [7829] = 7681, - [7830] = 7608, - [7831] = 7629, - [7832] = 7642, - [7833] = 7608, - [7834] = 7681, - [7835] = 7609, - [7836] = 7636, - [7837] = 7610, - [7838] = 7611, - [7839] = 7606, - [7840] = 7840, - [7841] = 7612, - [7842] = 7613, - [7843] = 7636, - [7844] = 7651, - [7845] = 7607, - [7846] = 7636, - [7847] = 7629, - [7848] = 7848, - [7849] = 7605, - [7850] = 7619, - [7851] = 7671, - [7852] = 7611, - [7853] = 7612, - [7854] = 7613, - [7855] = 7620, - [7856] = 7856, + [7782] = 7643, + [7783] = 7694, + [7784] = 7648, + [7785] = 7665, + [7786] = 7638, + [7787] = 7787, + [7788] = 7788, + [7789] = 7647, + [7790] = 7654, + [7791] = 2734, + [7792] = 7639, + [7793] = 7793, + [7794] = 252, + [7795] = 7795, + [7796] = 7664, + [7797] = 7647, + [7798] = 7652, + [7799] = 7635, + [7800] = 7647, + [7801] = 7648, + [7802] = 7654, + [7803] = 7651, + [7804] = 7646, + [7805] = 7648, + [7806] = 7656, + [7807] = 7650, + [7808] = 7656, + [7809] = 7648, + [7810] = 7647, + [7811] = 7694, + [7812] = 7689, + [7813] = 7653, + [7814] = 7670, + [7815] = 7650, + [7816] = 7651, + [7817] = 7650, + [7818] = 7818, + [7819] = 7653, + [7820] = 7650, + [7821] = 7651, + [7822] = 7652, + [7823] = 7823, + [7824] = 7824, + [7825] = 7646, + [7826] = 7651, + [7827] = 7661, + [7828] = 7641, + [7829] = 7664, + [7830] = 7830, + [7831] = 7831, + [7832] = 7666, + [7833] = 7665, + [7834] = 7652, + [7835] = 7663, + [7836] = 7662, + [7837] = 7636, + [7838] = 7654, + [7839] = 7660, + [7840] = 7643, + [7841] = 7656, + [7842] = 7652, + [7843] = 7654, + [7844] = 7654, + [7845] = 7635, + [7846] = 7645, + [7847] = 7847, + [7848] = 7658, + [7849] = 7719, + [7850] = 7678, + [7851] = 7661, + [7852] = 7852, + [7853] = 7853, + [7854] = 7645, + [7855] = 7635, + [7856] = 7678, [7857] = 7857, - [7858] = 7606, - [7859] = 7631, - [7860] = 7622, - [7861] = 7676, - [7862] = 7623, - [7863] = 7653, - [7864] = 7864, - [7865] = 7865, - [7866] = 7625, + [7858] = 7656, + [7859] = 7643, + [7860] = 7652, + [7861] = 7651, + [7862] = 7862, + [7863] = 7650, + [7864] = 7654, + [7865] = 7639, + [7866] = 7658, [7867] = 7643, - [7868] = 7665, - [7869] = 7645, - [7870] = 7671, - [7871] = 7871, - [7872] = 7642, - [7873] = 7873, - [7874] = 7874, - [7875] = 7642, + [7868] = 7648, + [7869] = 7869, + [7870] = 7641, + [7871] = 7647, + [7872] = 7694, + [7873] = 7645, + [7874] = 7636, + [7875] = 248, [7876] = 7876, - [7877] = 7636, - [7878] = 7611, - [7879] = 7612, - [7880] = 7613, - [7881] = 7848, - [7882] = 7882, - [7883] = 7883, - [7884] = 7629, - [7885] = 7631, - [7886] = 7886, - [7887] = 7621, - [7888] = 7622, - [7889] = 7608, - [7890] = 7623, - [7891] = 7627, - [7892] = 7681, - [7893] = 7893, - [7894] = 7894, - [7895] = 7895, - [7896] = 7642, - [7897] = 7897, - [7898] = 7621, - [7899] = 7899, - [7900] = 7900, - [7901] = 7636, - [7902] = 7611, - [7903] = 7612, - [7904] = 7613, - [7905] = 7624, - [7906] = 7906, - [7907] = 7907, - [7908] = 7621, - [7909] = 7636, - [7910] = 7910, - [7911] = 236, - [7912] = 7631, - [7913] = 7609, - [7914] = 7610, - [7915] = 7915, - [7916] = 7916, - [7917] = 7626, - [7918] = 7642, - [7919] = 7631, - [7920] = 7627, - [7921] = 7921, + [7877] = 7877, + [7878] = 7638, + [7879] = 7656, + [7880] = 7648, + [7881] = 7881, + [7882] = 7650, + [7883] = 7658, + [7884] = 7857, + [7885] = 7885, + [7886] = 7651, + [7887] = 7652, + [7888] = 7650, + [7889] = 7651, + [7890] = 7652, + [7891] = 7663, + [7892] = 7662, + [7893] = 7719, + [7894] = 7658, + [7895] = 7721, + [7896] = 7660, + [7897] = 7653, + [7898] = 7664, + [7899] = 7639, + [7900] = 7661, + [7901] = 7694, + [7902] = 7656, + [7903] = 7641, + [7904] = 7660, + [7905] = 7660, + [7906] = 7646, + [7907] = 7653, + [7908] = 7654, + [7909] = 7662, + [7910] = 7694, + [7911] = 7639, + [7912] = 7662, + [7913] = 7656, + [7914] = 7650, + [7915] = 7651, + [7916] = 7652, + [7917] = 7917, + [7918] = 7918, + [7919] = 7662, + [7920] = 7639, + [7921] = 7663, [7922] = 7636, - [7923] = 7611, - [7924] = 7612, - [7925] = 7613, - [7926] = 7612, - [7927] = 7927, - [7928] = 7613, + [7923] = 7645, + [7924] = 7638, + [7925] = 7663, + [7926] = 7926, + [7927] = 7654, + [7928] = 7646, [7929] = 7665, - [7930] = 7930, - [7931] = 7840, - [7932] = 7624, - [7933] = 7933, - [7934] = 7934, - [7935] = 7935, - [7936] = 7936, - [7937] = 7665, - [7938] = 7651, - [7939] = 7642, - [7940] = 7607, - [7941] = 7632, - [7942] = 7625, - [7943] = 7636, - [7944] = 7611, - [7945] = 7612, - [7946] = 7613, - [7947] = 7947, - [7948] = 7642, - [7949] = 7639, - [7950] = 7623, - [7951] = 7622, - [7952] = 7613, - [7953] = 7620, - [7954] = 7619, - [7955] = 7624, - [7956] = 7605, - [7957] = 7612, - [7958] = 7607, - [7959] = 7605, - [7960] = 7642, - [7961] = 7611, - [7962] = 7962, + [7930] = 7666, + [7931] = 7678, + [7932] = 7654, + [7933] = 7647, + [7934] = 7672, + [7935] = 7654, + [7936] = 7665, + [7937] = 7656, + [7938] = 7650, + [7939] = 7651, + [7940] = 7652, + [7941] = 7666, + [7942] = 7942, + [7943] = 7641, + [7944] = 7636, + [7945] = 7945, + [7946] = 7946, + [7947] = 7656, + [7948] = 7948, + [7949] = 7638, + [7950] = 7643, + [7951] = 7951, + [7952] = 7636, + [7953] = 7953, + [7954] = 7654, + [7955] = 7639, + [7956] = 7956, + [7957] = 7670, + [7958] = 7656, + [7959] = 7650, + [7960] = 7651, + [7961] = 7652, + [7962] = 7665, [7963] = 7636, - [7964] = 7611, - [7965] = 7612, - [7966] = 7613, - [7967] = 7645, - [7968] = 7613, - [7969] = 7612, - [7970] = 7611, - [7971] = 7643, - [7972] = 7610, - [7973] = 7619, - [7974] = 7609, - [7975] = 7620, - [7976] = 7610, - [7977] = 7609, - [7978] = 7978, - [7979] = 7979, - [7980] = 7642, - [7981] = 7653, - [7982] = 7681, - [7983] = 7636, - [7984] = 7611, - [7985] = 7612, - [7986] = 7613, - [7987] = 7608, - [7988] = 7988, - [7989] = 7606, - [7990] = 7625, - [7991] = 7622, - [7992] = 7992, - [7993] = 7611, - [7994] = 7623, - [7995] = 7995, - [7996] = 7624, - [7997] = 7665, - [7998] = 7642, - [7999] = 7999, - [8000] = 7627, - [8001] = 7636, - [8002] = 7611, - [8003] = 7612, - [8004] = 7613, - [8005] = 7625, - [8006] = 7636, - [8007] = 7629, - [8008] = 8008, - [8009] = 8009, - [8010] = 7642, - [8011] = 8011, - [8012] = 8012, - [8013] = 2818, - [8014] = 8014, - [8015] = 2815, - [8016] = 2823, - [8017] = 2784, - [8018] = 2742, - [8019] = 2743, - [8020] = 2753, - [8021] = 2754, - [8022] = 8011, - [8023] = 2758, - [8024] = 2755, + [7964] = 7689, + [7965] = 7645, + [7966] = 7966, + [7967] = 7636, + [7968] = 7968, + [7969] = 7636, + [7970] = 7678, + [7971] = 7971, + [7972] = 7664, + [7973] = 7666, + [7974] = 7660, + [7975] = 7654, + [7976] = 7672, + [7977] = 7977, + [7978] = 7670, + [7979] = 7656, + [7980] = 7650, + [7981] = 7651, + [7982] = 7652, + [7983] = 7983, + [7984] = 7638, + [7985] = 7661, + [7986] = 7689, + [7987] = 7646, + [7988] = 7653, + [7989] = 7989, + [7990] = 7647, + [7991] = 7648, + [7992] = 7636, + [7993] = 7672, + [7994] = 7994, + [7995] = 7637, + [7996] = 7654, + [7997] = 7723, + [7998] = 7663, + [7999] = 7656, + [8000] = 7650, + [8001] = 7651, + [8002] = 7652, + [8003] = 8003, + [8004] = 7721, + [8005] = 7637, + [8006] = 8006, + [8007] = 8007, + [8008] = 7658, + [8009] = 7654, + [8010] = 8010, + [8011] = 7638, + [8012] = 7651, + [8013] = 7652, + [8014] = 7650, + [8015] = 8015, + [8016] = 7654, + [8017] = 7670, + [8018] = 7689, + [8019] = 7656, + [8020] = 7650, + [8021] = 7651, + [8022] = 7652, + [8023] = 8023, + [8024] = 8024, [8025] = 8025, [8026] = 8026, - [8027] = 8026, - [8028] = 8028, - [8029] = 8026, - [8030] = 8026, - [8031] = 8011, - [8032] = 8026, - [8033] = 8011, - [8034] = 8026, - [8035] = 8035, - [8036] = 8026, + [8027] = 8027, + [8028] = 7719, + [8029] = 8029, + [8030] = 7654, + [8031] = 7639, + [8032] = 8032, + [8033] = 7656, + [8034] = 7650, + [8035] = 7651, + [8036] = 7652, [8037] = 8037, - [8038] = 8026, - [8039] = 8011, - [8040] = 8026, - [8041] = 8026, - [8042] = 8026, + [8038] = 7776, + [8039] = 8039, + [8040] = 8040, + [8041] = 2851, + [8042] = 8042, [8043] = 8043, - [8044] = 8026, + [8044] = 8044, [8045] = 8045, - [8046] = 8026, - [8047] = 8026, + [8046] = 8046, + [8047] = 8047, [8048] = 8048, - [8049] = 8026, + [8049] = 8049, [8050] = 8050, - [8051] = 8026, - [8052] = 8028, - [8053] = 8050, + [8051] = 8051, + [8052] = 8052, + [8053] = 8053, [8054] = 8054, [8055] = 8055, [8056] = 8056, - [8057] = 8026, - [8058] = 8058, - [8059] = 8059, + [8057] = 8057, + [8058] = 8051, + [8059] = 2770, [8060] = 8060, - [8061] = 8012, - [8062] = 8062, + [8061] = 8052, + [8062] = 8053, [8063] = 8063, [8064] = 8064, [8065] = 8065, [8066] = 8066, - [8067] = 8035, - [8068] = 8037, - [8069] = 8043, + [8067] = 8054, + [8068] = 8047, + [8069] = 8069, [8070] = 8070, - [8071] = 8026, - [8072] = 8011, - [8073] = 8073, + [8071] = 8071, + [8072] = 8072, + [8073] = 8060, [8074] = 8054, [8075] = 8075, - [8076] = 8012, - [8077] = 8062, - [8078] = 8075, - [8079] = 8050, + [8076] = 8076, + [8077] = 8076, + [8078] = 8052, + [8079] = 8079, [8080] = 8080, - [8081] = 8081, - [8082] = 8026, - [8083] = 8083, + [8081] = 8048, + [8082] = 8082, + [8083] = 8052, [8084] = 8084, - [8085] = 8054, - [8086] = 8086, + [8085] = 8085, + [8086] = 8066, [8087] = 8087, - [8088] = 8055, - [8089] = 8089, - [8090] = 8090, - [8091] = 8091, - [8092] = 8092, - [8093] = 8012, - [8094] = 8062, - [8095] = 8066, + [8088] = 8088, + [8089] = 8052, + [8090] = 8051, + [8091] = 8052, + [8092] = 8066, + [8093] = 8082, + [8094] = 8094, + [8095] = 8095, [8096] = 8096, - [8097] = 8097, - [8098] = 8011, + [8097] = 8057, + [8098] = 8098, [8099] = 8099, - [8100] = 8075, - [8101] = 8101, + [8100] = 8080, + [8101] = 8054, [8102] = 8102, - [8103] = 8103, - [8104] = 8104, - [8105] = 8105, - [8106] = 8050, + [8103] = 8096, + [8104] = 8075, + [8105] = 8084, + [8106] = 8095, [8107] = 8107, - [8108] = 8108, + [8108] = 8096, [8109] = 8109, - [8110] = 8110, - [8111] = 8111, + [8110] = 8052, + [8111] = 8082, [8112] = 8112, [8113] = 8113, - [8114] = 8054, - [8115] = 8115, - [8116] = 8055, + [8114] = 8047, + [8115] = 8096, + [8116] = 8079, [8117] = 8117, - [8118] = 8118, - [8119] = 8119, - [8120] = 8014, - [8121] = 8037, - [8122] = 8122, - [8123] = 8012, + [8118] = 8048, + [8119] = 8053, + [8120] = 8050, + [8121] = 8121, + [8122] = 8113, + [8123] = 8113, [8124] = 8124, [8125] = 8125, - [8126] = 8050, - [8127] = 8012, - [8128] = 8062, - [8129] = 8066, - [8130] = 8130, + [8126] = 8098, + [8127] = 8050, + [8128] = 2781, + [8129] = 8117, + [8130] = 8051, [8131] = 8131, - [8132] = 8075, - [8133] = 8070, - [8134] = 8011, - [8135] = 8135, - [8136] = 8136, - [8137] = 8099, - [8138] = 8138, + [8132] = 8082, + [8133] = 8096, + [8134] = 8131, + [8135] = 8082, + [8136] = 8079, + [8137] = 2777, + [8138] = 2776, [8139] = 8139, - [8140] = 8140, - [8141] = 8075, - [8142] = 8124, - [8143] = 8143, - [8144] = 8144, - [8145] = 8099, - [8146] = 8130, - [8147] = 8050, - [8148] = 8122, - [8149] = 8025, - [8150] = 8011, - [8151] = 8151, - [8152] = 8066, - [8153] = 8153, - [8154] = 8050, - [8155] = 8084, - [8156] = 8062, - [8157] = 8157, - [8158] = 8012, - [8159] = 8112, - [8160] = 8054, - [8161] = 8054, - [8162] = 8055, - [8163] = 8012, - [8164] = 8062, - [8165] = 8075, - [8166] = 8166, - [8167] = 8167, - [8168] = 8112, - [8169] = 8169, - [8170] = 8170, - [8171] = 8055, - [8172] = 8054, - [8173] = 8112, - [8174] = 8055, - [8175] = 8062, - [8176] = 8066, - [8177] = 8167, - [8178] = 8115, - [8179] = 8151, - [8180] = 8115, - [8181] = 8108, - [8182] = 8011, - [8183] = 8183, - [8184] = 8025, - [8185] = 8166, - [8186] = 8054, - [8187] = 8130, - [8188] = 8037, - [8189] = 8099, - [8190] = 8122, - [8191] = 8050, - [8192] = 8075, - [8193] = 8075, - [8194] = 8070, - [8195] = 8135, - [8196] = 8143, - [8197] = 8014, - [8198] = 8050, - [8199] = 8055, - [8200] = 8099, - [8201] = 8066, - [8202] = 8014, - [8203] = 8130, - [8204] = 8025, - [8205] = 8011, - [8206] = 8066, - [8207] = 8062, - [8208] = 8012, - [8209] = 8064, - [8210] = 8169, - [8211] = 8166, - [8212] = 8151, - [8213] = 8112, - [8214] = 8170, - [8215] = 8054, - [8216] = 8170, - [8217] = 8055, - [8218] = 8157, - [8219] = 8060, - [8220] = 8166, - [8221] = 8054, - [8222] = 8060, - [8223] = 8112, - [8224] = 8167, - [8225] = 8119, - [8226] = 8125, - [8227] = 8060, - [8228] = 8043, - [8229] = 8012, - [8230] = 8062, - [8231] = 8115, - [8232] = 8066, - [8233] = 8233, - [8234] = 8108, - [8235] = 8139, - [8236] = 8011, - [8237] = 8025, - [8238] = 8125, - [8239] = 8130, - [8240] = 8084, - [8241] = 8099, - [8242] = 8060, - [8243] = 8043, - [8244] = 8075, - [8245] = 8062, - [8246] = 8028, - [8247] = 8247, - [8248] = 8014, - [8249] = 8139, - [8250] = 8050, - [8251] = 8125, - [8252] = 8122, - [8253] = 8012, - [8254] = 8014, - [8255] = 8122, - [8256] = 8256, - [8257] = 8060, - [8258] = 8075, - [8259] = 8050, - [8260] = 8084, - [8261] = 8060, - [8262] = 8043, - [8263] = 8028, - [8264] = 8157, - [8265] = 8064, - [8266] = 8108, - [8267] = 8139, - [8268] = 8075, - [8269] = 8125, - [8270] = 8112, - [8271] = 8135, - [8272] = 8054, - [8273] = 8273, - [8274] = 8055, - [8275] = 8084, - [8276] = 8170, - [8277] = 8060, - [8278] = 8166, - [8279] = 8043, - [8280] = 8143, - [8281] = 8028, + [8140] = 2765, + [8141] = 8070, + [8142] = 8064, + [8143] = 2764, + [8144] = 2849, + [8145] = 2855, + [8146] = 8121, + [8147] = 8051, + [8148] = 8099, + [8149] = 8082, + [8150] = 8075, + [8151] = 8113, + [8152] = 8099, + [8153] = 8051, + [8154] = 8124, + [8155] = 8155, + [8156] = 8088, + [8157] = 8052, + [8158] = 8084, + [8159] = 8159, + [8160] = 8049, + [8161] = 8113, + [8162] = 8131, + [8163] = 8131, + [8164] = 2834, + [8165] = 8050, + [8166] = 8098, + [8167] = 8048, + [8168] = 8096, + [8169] = 8075, + [8170] = 8045, + [8171] = 8046, + [8172] = 8066, + [8173] = 8131, + [8174] = 8159, + [8175] = 8121, + [8176] = 8176, + [8177] = 8053, + [8178] = 8084, + [8179] = 8179, + [8180] = 8180, + [8181] = 8139, + [8182] = 8131, + [8183] = 8079, + [8184] = 8084, + [8185] = 8075, + [8186] = 8159, + [8187] = 8064, + [8188] = 8051, + [8189] = 8121, + [8190] = 8124, + [8191] = 8191, + [8192] = 8098, + [8193] = 8193, + [8194] = 8048, + [8195] = 8195, + [8196] = 8082, + [8197] = 8193, + [8198] = 8046, + [8199] = 8070, + [8200] = 8121, + [8201] = 8201, + [8202] = 8053, + [8203] = 8113, + [8204] = 8053, + [8205] = 8051, + [8206] = 8206, + [8207] = 8207, + [8208] = 8139, + [8209] = 8139, + [8210] = 8050, + [8211] = 8045, + [8212] = 8212, + [8213] = 8052, + [8214] = 8049, + [8215] = 8046, + [8216] = 8216, + [8217] = 8046, + [8218] = 8218, + [8219] = 8096, + [8220] = 8070, + [8221] = 8079, + [8222] = 8117, + [8223] = 8084, + [8224] = 8075, + [8225] = 8099, + [8226] = 8064, + [8227] = 8098, + [8228] = 8117, + [8229] = 8229, + [8230] = 8230, + [8231] = 8088, + [8232] = 8088, + [8233] = 8054, + [8234] = 8082, + [8235] = 8235, + [8236] = 8131, + [8237] = 8124, + [8238] = 8159, + [8239] = 8082, + [8240] = 8066, + [8241] = 8117, + [8242] = 8193, + [8243] = 8121, + [8244] = 8131, + [8245] = 8084, + [8246] = 8075, + [8247] = 8159, + [8248] = 8131, + [8249] = 8048, + [8250] = 8054, + [8251] = 8113, + [8252] = 8098, + [8253] = 8047, + [8254] = 8117, + [8255] = 8255, + [8256] = 8098, + [8257] = 8048, + [8258] = 8155, + [8259] = 8082, + [8260] = 8096, + [8261] = 8057, + [8262] = 8051, + [8263] = 8159, + [8264] = 8159, + [8265] = 8050, + [8266] = 8082, + [8267] = 8046, + [8268] = 8048, + [8269] = 8131, + [8270] = 8066, + [8271] = 8075, + [8272] = 8051, + [8273] = 8080, + [8274] = 8096, + [8275] = 8052, + [8276] = 8084, + [8277] = 8046, + [8278] = 8159, + [8279] = 8045, + [8280] = 8066, + [8281] = 8052, [8282] = 8282, - [8283] = 8099, - [8284] = 8157, - [8285] = 8130, - [8286] = 8139, - [8287] = 8125, - [8288] = 8012, - [8289] = 8062, - [8290] = 8119, - [8291] = 8025, - [8292] = 8066, - [8293] = 8050, - [8294] = 8011, - [8295] = 8084, - [8296] = 8151, - [8297] = 8066, - [8298] = 8011, - [8299] = 8099, - [8300] = 8064, - [8301] = 8169, - [8302] = 8011, - [8303] = 8025, - [8304] = 8060, - [8305] = 8130, - [8306] = 8306, - [8307] = 8099, - [8308] = 8062, - [8309] = 8012, - [8310] = 8043, - [8311] = 8035, - [8312] = 8028, - [8313] = 8169, - [8314] = 8166, - [8315] = 8157, - [8316] = 8139, - [8317] = 8050, - [8318] = 8170, - [8319] = 8122, - [8320] = 8055, - [8321] = 8014, - [8322] = 8125, - [8323] = 8119, - [8324] = 8054, - [8325] = 8075, - [8326] = 8167, - [8327] = 8084, - [8328] = 8115, - [8329] = 8108, - [8330] = 8070, - [8331] = 8064, - [8332] = 8060, - [8333] = 8112, - [8334] = 8108, - [8335] = 8043, - [8336] = 8054, - [8337] = 8070, - [8338] = 8055, - [8339] = 8037, - [8340] = 8135, - [8341] = 8035, - [8342] = 8170, - [8343] = 8028, - [8344] = 8166, - [8345] = 8345, - [8346] = 8166, - [8347] = 8014, - [8348] = 8157, - [8349] = 8139, - [8350] = 8028, - [8351] = 8122, - [8352] = 8112, - [8353] = 8035, - [8354] = 8125, - [8355] = 8037, - [8356] = 8050, - [8357] = 8119, - [8358] = 8084, - [8359] = 8143, - [8360] = 8043, - [8361] = 8075, - [8362] = 8135, - [8363] = 8143, - [8364] = 8070, - [8365] = 8012, - [8366] = 8062, - [8367] = 8050, - [8368] = 8368, - [8369] = 8066, - [8370] = 8064, - [8371] = 8060, - [8372] = 8099, - [8373] = 8011, - [8374] = 8060, - [8375] = 8064, - [8376] = 8070, - [8377] = 8130, - [8378] = 8025, - [8379] = 8050, - [8380] = 8130, - [8381] = 8025, - [8382] = 8099, - [8383] = 8139, - [8384] = 8043, - [8385] = 8125, - [8386] = 8084, - [8387] = 8011, - [8388] = 8169, - [8389] = 8037, - [8390] = 8151, - [8391] = 8035, - [8392] = 8028, - [8393] = 8135, - [8394] = 8075, - [8395] = 8066, - [8396] = 8062, - [8397] = 8119, - [8398] = 8125, - [8399] = 8050, - [8400] = 8122, - [8401] = 8139, - [8402] = 8402, - [8403] = 8157, - [8404] = 8014, - [8405] = 8108, - [8406] = 8167, - [8407] = 8112, - [8408] = 8054, - [8409] = 8055, - [8410] = 8170, - [8411] = 8166, - [8412] = 8169, - [8413] = 8050, - [8414] = 8011, - [8415] = 8415, - [8416] = 8416, - [8417] = 8417, - [8418] = 8418, - [8419] = 8419, - [8420] = 8420, - [8421] = 8421, - [8422] = 8422, - [8423] = 8415, - [8424] = 8424, - [8425] = 8425, - [8426] = 8426, - [8427] = 8427, - [8428] = 8428, - [8429] = 8429, - [8430] = 8430, - [8431] = 8431, - [8432] = 8432, - [8433] = 8433, - [8434] = 8434, - [8435] = 8435, - [8436] = 8436, - [8437] = 8437, - [8438] = 8438, - [8439] = 8439, - [8440] = 8440, - [8441] = 8441, - [8442] = 8416, - [8443] = 8443, - [8444] = 8444, + [8283] = 8079, + [8284] = 8052, + [8285] = 8070, + [8286] = 8054, + [8287] = 8053, + [8288] = 8159, + [8289] = 8289, + [8290] = 8071, + [8291] = 8064, + [8292] = 8117, + [8293] = 8080, + [8294] = 8159, + [8295] = 8075, + [8296] = 8084, + [8297] = 8049, + [8298] = 8131, + [8299] = 8193, + [8300] = 8121, + [8301] = 8084, + [8302] = 8282, + [8303] = 8079, + [8304] = 8113, + [8305] = 8051, + [8306] = 8155, + [8307] = 8307, + [8308] = 8060, + [8309] = 8099, + [8310] = 8310, + [8311] = 8071, + [8312] = 8046, + [8313] = 8131, + [8314] = 8050, + [8315] = 8070, + [8316] = 8124, + [8317] = 8099, + [8318] = 8318, + [8319] = 8095, + [8320] = 8099, + [8321] = 8082, + [8322] = 8080, + [8323] = 8096, + [8324] = 8324, + [8325] = 8070, + [8326] = 8049, + [8327] = 8327, + [8328] = 8282, + [8329] = 8052, + [8330] = 8084, + [8331] = 8075, + [8332] = 8332, + [8333] = 8064, + [8334] = 8082, + [8335] = 8098, + [8336] = 8336, + [8337] = 8139, + [8338] = 8045, + [8339] = 8046, + [8340] = 8282, + [8341] = 8082, + [8342] = 8048, + [8343] = 8282, + [8344] = 8048, + [8345] = 8079, + [8346] = 8053, + [8347] = 8060, + [8348] = 8131, + [8349] = 8071, + [8350] = 8155, + [8351] = 8064, + [8352] = 8159, + [8353] = 8051, + [8354] = 8117, + [8355] = 8124, + [8356] = 8082, + [8357] = 8357, + [8358] = 8282, + [8359] = 8282, + [8360] = 8360, + [8361] = 8124, + [8362] = 8193, + [8363] = 8363, + [8364] = 8052, + [8365] = 8070, + [8366] = 8366, + [8367] = 8282, + [8368] = 8075, + [8369] = 8193, + [8370] = 8282, + [8371] = 8139, + [8372] = 8121, + [8373] = 8098, + [8374] = 8054, + [8375] = 8375, + [8376] = 8075, + [8377] = 8060, + [8378] = 8113, + [8379] = 8155, + [8380] = 8098, + [8381] = 8098, + [8382] = 8064, + [8383] = 8050, + [8384] = 8084, + [8385] = 8071, + [8386] = 8066, + [8387] = 8060, + [8388] = 8282, + [8389] = 8057, + [8390] = 8282, + [8391] = 8282, + [8392] = 8079, + [8393] = 8282, + [8394] = 8095, + [8395] = 8080, + [8396] = 8096, + [8397] = 8052, + [8398] = 8052, + [8399] = 8052, + [8400] = 8400, + [8401] = 8079, + [8402] = 8084, + [8403] = 8075, + [8404] = 8082, + [8405] = 8075, + [8406] = 8096, + [8407] = 8080, + [8408] = 8095, + [8409] = 8098, + [8410] = 8282, + [8411] = 8088, + [8412] = 8050, + [8413] = 8282, + [8414] = 8282, + [8415] = 8282, + [8416] = 8155, + [8417] = 8113, + [8418] = 8282, + [8419] = 8082, + [8420] = 8117, + [8421] = 8121, + [8422] = 8282, + [8423] = 8423, + [8424] = 8057, + [8425] = 8193, + [8426] = 8053, + [8427] = 8095, + [8428] = 8048, + [8429] = 8046, + [8430] = 8047, + [8431] = 8131, + [8432] = 8159, + [8433] = 8057, + [8434] = 8095, + [8435] = 8051, + [8436] = 8084, + [8437] = 8052, + [8438] = 8082, + [8439] = 8054, + [8440] = 8064, + [8441] = 8070, + [8442] = 8071, + [8443] = 8051, + [8444] = 8060, [8445] = 8445, [8446] = 8446, [8447] = 8447, [8448] = 8448, [8449] = 8449, [8450] = 8450, - [8451] = 8417, + [8451] = 8451, [8452] = 8452, [8453] = 8453, - [8454] = 8452, + [8454] = 8454, [8455] = 8455, [8456] = 8456, [8457] = 8457, @@ -13179,920 +13186,951 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8468] = 8468, [8469] = 8469, [8470] = 8470, - [8471] = 8440, + [8471] = 8471, [8472] = 8472, [8473] = 8473, [8474] = 8474, [8475] = 8475, - [8476] = 8476, + [8476] = 8447, [8477] = 8477, [8478] = 8478, - [8479] = 8453, + [8479] = 8479, [8480] = 8480, - [8481] = 8448, - [8482] = 8449, - [8483] = 8428, + [8481] = 8481, + [8482] = 8482, + [8483] = 8448, [8484] = 8484, - [8485] = 8457, - [8486] = 8464, + [8485] = 8485, + [8486] = 8486, [8487] = 8487, - [8488] = 8474, - [8489] = 8468, - [8490] = 8467, - [8491] = 8478, - [8492] = 8480, - [8493] = 8476, - [8494] = 8470, - [8495] = 8469, - [8496] = 8460, + [8488] = 8488, + [8489] = 8489, + [8490] = 8490, + [8491] = 8491, + [8492] = 8492, + [8493] = 8493, + [8494] = 8494, + [8495] = 8495, + [8496] = 8496, [8497] = 8497, - [8498] = 8459, - [8499] = 8418, - [8500] = 8475, + [8498] = 8498, + [8499] = 8499, + [8500] = 8500, [8501] = 8501, - [8502] = 8419, - [8503] = 8428, - [8504] = 8436, - [8505] = 8466, - [8506] = 8437, - [8507] = 8416, - [8508] = 8458, - [8509] = 8444, - [8510] = 8450, - [8511] = 8455, + [8502] = 8502, + [8503] = 8503, + [8504] = 8477, + [8505] = 8505, + [8506] = 8464, + [8507] = 8507, + [8508] = 8508, + [8509] = 8509, + [8510] = 8510, + [8511] = 8511, [8512] = 8512, - [8513] = 8472, - [8514] = 8476, + [8513] = 8445, + [8514] = 8514, [8515] = 8515, - [8516] = 8452, - [8517] = 8517, - [8518] = 8440, - [8519] = 8456, - [8520] = 8463, - [8521] = 8512, - [8522] = 8417, - [8523] = 8470, - [8524] = 8478, - [8525] = 8449, + [8516] = 8516, + [8517] = 8466, + [8518] = 8518, + [8519] = 8468, + [8520] = 8511, + [8521] = 8474, + [8522] = 8522, + [8523] = 8449, + [8524] = 8524, + [8525] = 8473, [8526] = 8526, - [8527] = 6187, - [8528] = 8462, - [8529] = 8415, - [8530] = 8469, - [8531] = 8447, - [8532] = 8421, + [8527] = 8527, + [8528] = 8503, + [8529] = 8529, + [8530] = 8530, + [8531] = 8501, + [8532] = 8532, [8533] = 8533, - [8534] = 8431, + [8534] = 8534, [8535] = 8535, - [8536] = 8433, - [8537] = 8422, + [8536] = 8456, + [8537] = 8449, [8538] = 8538, - [8539] = 8539, - [8540] = 8540, - [8541] = 8541, - [8542] = 8542, + [8539] = 8448, + [8540] = 8466, + [8541] = 8468, + [8542] = 8479, [8543] = 8543, - [8544] = 8424, - [8545] = 8461, - [8546] = 8462, - [8547] = 8425, - [8548] = 8548, - [8549] = 8461, + [8544] = 8488, + [8545] = 8545, + [8546] = 8494, + [8547] = 8547, + [8548] = 8493, + [8549] = 8497, [8550] = 8550, [8551] = 8551, - [8552] = 8447, - [8553] = 8553, - [8554] = 8443, - [8555] = 8472, - [8556] = 8556, + [8552] = 8552, + [8553] = 8552, + [8554] = 8554, + [8555] = 8555, + [8556] = 8464, [8557] = 8557, - [8558] = 8441, - [8559] = 8559, - [8560] = 8560, - [8561] = 8446, - [8562] = 8480, - [8563] = 8426, - [8564] = 8427, - [8565] = 8565, - [8566] = 8566, - [8567] = 8439, - [8568] = 8438, - [8569] = 8434, - [8570] = 8432, - [8571] = 8429, - [8572] = 8430, - [8573] = 8430, - [8574] = 8432, - [8575] = 8434, - [8576] = 8435, - [8577] = 8427, - [8578] = 8426, - [8579] = 8475, - [8580] = 8453, - [8581] = 8438, - [8582] = 8439, - [8583] = 8425, - [8584] = 8424, + [8558] = 8555, + [8559] = 8557, + [8560] = 8455, + [8561] = 8561, + [8562] = 8512, + [8563] = 8563, + [8564] = 8564, + [8565] = 8463, + [8566] = 8458, + [8567] = 8465, + [8568] = 8568, + [8569] = 8502, + [8570] = 8570, + [8571] = 8571, + [8572] = 8572, + [8573] = 8573, + [8574] = 8574, + [8575] = 8575, + [8576] = 8493, + [8577] = 8494, + [8578] = 8578, + [8579] = 8579, + [8580] = 8580, + [8581] = 8581, + [8582] = 8582, + [8583] = 8583, + [8584] = 8584, [8585] = 8585, - [8586] = 8422, - [8587] = 8444, - [8588] = 8450, - [8589] = 8455, - [8590] = 8441, - [8591] = 8421, - [8592] = 8484, - [8593] = 8443, - [8594] = 8458, - [8595] = 8445, - [8596] = 8440, - [8597] = 8445, - [8598] = 8448, - [8599] = 8446, - [8600] = 8416, - [8601] = 8447, - [8602] = 8437, - [8603] = 8449, - [8604] = 8415, - [8605] = 8436, - [8606] = 8417, - [8607] = 8431, - [8608] = 8452, - [8609] = 8433, - [8610] = 8610, - [8611] = 8461, - [8612] = 8612, - [8613] = 8434, - [8614] = 8419, - [8615] = 8458, - [8616] = 8472, - [8617] = 8459, - [8618] = 8418, - [8619] = 8460, - [8620] = 8453, - [8621] = 8476, - [8622] = 8480, - [8623] = 8478, - [8624] = 8624, - [8625] = 8625, - [8626] = 8464, - [8627] = 8457, - [8628] = 8474, - [8629] = 8467, - [8630] = 8468, - [8631] = 8631, - [8632] = 8632, - [8633] = 8459, - [8634] = 8474, - [8635] = 8475, - [8636] = 8468, - [8637] = 8637, - [8638] = 8477, - [8639] = 8639, - [8640] = 8467, - [8641] = 8460, - [8642] = 8455, - [8643] = 8457, - [8644] = 8455, + [8586] = 8503, + [8587] = 8587, + [8588] = 8588, + [8589] = 8564, + [8590] = 8590, + [8591] = 8591, + [8592] = 8592, + [8593] = 8511, + [8594] = 8594, + [8595] = 8595, + [8596] = 8596, + [8597] = 8597, + [8598] = 8598, + [8599] = 8599, + [8600] = 8600, + [8601] = 8561, + [8602] = 8598, + [8603] = 8603, + [8604] = 8604, + [8605] = 8605, + [8606] = 8606, + [8607] = 8605, + [8608] = 8606, + [8609] = 8603, + [8610] = 8501, + [8611] = 8604, + [8612] = 8554, + [8613] = 8597, + [8614] = 8596, + [8615] = 8615, + [8616] = 8595, + [8617] = 8592, + [8618] = 8466, + [8619] = 8468, + [8620] = 8479, + [8621] = 8588, + [8622] = 8584, + [8623] = 8581, + [8624] = 8600, + [8625] = 8579, + [8626] = 8489, + [8627] = 8497, + [8628] = 8578, + [8629] = 8575, + [8630] = 8490, + [8631] = 8574, + [8632] = 8573, + [8633] = 8571, + [8634] = 8570, + [8635] = 8455, + [8636] = 8568, + [8637] = 6230, + [8638] = 8463, + [8639] = 8599, + [8640] = 8465, + [8641] = 8641, + [8642] = 8493, + [8643] = 8594, + [8644] = 8526, [8645] = 8645, - [8646] = 8484, - [8647] = 8647, - [8648] = 8440, - [8649] = 8649, - [8650] = 8460, - [8651] = 8459, - [8652] = 8458, - [8653] = 8653, - [8654] = 8464, - [8655] = 8450, - [8656] = 8415, - [8657] = 8657, - [8658] = 8658, - [8659] = 8431, - [8660] = 8478, - [8661] = 8433, - [8662] = 8453, - [8663] = 8461, - [8664] = 8664, - [8665] = 8452, - [8666] = 8417, - [8667] = 8667, - [8668] = 8668, - [8669] = 8476, - [8670] = 8449, - [8671] = 8671, - [8672] = 8672, - [8673] = 8673, - [8674] = 8674, - [8675] = 8470, - [8676] = 8447, - [8677] = 8469, - [8678] = 8475, - [8679] = 8443, - [8680] = 8680, - [8681] = 8681, - [8682] = 8441, - [8683] = 8418, - [8684] = 8455, - [8685] = 8685, - [8686] = 8438, - [8687] = 8416, - [8688] = 8688, - [8689] = 8689, - [8690] = 8440, - [8691] = 8501, - [8692] = 8432, - [8693] = 8430, - [8694] = 8444, - [8695] = 8695, - [8696] = 8418, - [8697] = 8501, - [8698] = 8424, - [8699] = 8699, - [8700] = 8700, - [8701] = 8431, - [8702] = 8702, - [8703] = 8433, - [8704] = 8704, - [8705] = 8461, - [8706] = 8427, - [8707] = 8419, - [8708] = 8426, - [8709] = 8709, - [8710] = 8710, - [8711] = 8428, - [8712] = 8425, - [8713] = 8436, - [8714] = 8437, - [8715] = 8416, - [8716] = 8716, - [8717] = 8717, - [8718] = 8424, - [8719] = 8422, - [8720] = 8475, - [8721] = 8448, + [8646] = 8646, + [8647] = 8503, + [8648] = 8561, + [8649] = 8547, + [8650] = 8591, + [8651] = 8545, + [8652] = 8543, + [8653] = 8511, + [8654] = 8456, + [8655] = 8580, + [8656] = 8457, + [8657] = 8518, + [8658] = 8516, + [8659] = 8515, + [8660] = 8445, + [8661] = 8467, + [8662] = 8510, + [8663] = 8496, + [8664] = 8490, + [8665] = 8448, + [8666] = 8501, + [8667] = 8590, + [8668] = 8489, + [8669] = 8580, + [8670] = 8477, + [8671] = 8587, + [8672] = 8447, + [8673] = 8479, + [8674] = 8583, + [8675] = 8462, + [8676] = 8590, + [8677] = 8585, + [8678] = 8583, + [8679] = 8497, + [8680] = 8457, + [8681] = 8469, + [8682] = 8580, + [8683] = 8572, + [8684] = 8502, + [8685] = 8499, + [8686] = 8448, + [8687] = 8455, + [8688] = 8464, + [8689] = 8502, + [8690] = 8463, + [8691] = 8564, + [8692] = 8465, + [8693] = 8512, + [8694] = 8493, + [8695] = 8449, + [8696] = 8453, + [8697] = 8474, + [8698] = 8645, + [8699] = 8561, + [8700] = 8465, + [8701] = 8473, + [8702] = 8474, + [8703] = 8463, + [8704] = 8458, + [8705] = 8557, + [8706] = 8594, + [8707] = 8488, + [8708] = 8473, + [8709] = 8501, + [8710] = 8552, + [8711] = 8555, + [8712] = 8552, + [8713] = 8555, + [8714] = 8557, + [8715] = 8479, + [8716] = 8488, + [8717] = 8455, + [8718] = 8598, + [8719] = 8462, + [8720] = 8458, + [8721] = 8497, [8722] = 8722, - [8723] = 8515, + [8723] = 8599, [8724] = 8724, - [8725] = 8421, - [8726] = 8455, - [8727] = 8727, - [8728] = 8728, - [8729] = 8729, - [8730] = 8730, - [8731] = 8731, - [8732] = 8440, - [8733] = 8733, - [8734] = 8448, - [8735] = 8456, - [8736] = 8463, - [8737] = 8424, - [8738] = 8512, - [8739] = 8415, - [8740] = 8740, - [8741] = 8741, - [8742] = 8431, - [8743] = 8743, - [8744] = 8433, - [8745] = 8437, - [8746] = 8461, - [8747] = 8436, - [8748] = 8421, - [8749] = 8428, - [8750] = 8533, - [8751] = 8535, - [8752] = 8422, - [8753] = 8478, - [8754] = 8539, - [8755] = 8540, - [8756] = 8541, - [8757] = 8542, - [8758] = 8464, - [8759] = 8543, - [8760] = 8475, - [8761] = 8424, - [8762] = 8425, - [8763] = 8548, - [8764] = 8550, - [8765] = 8464, - [8766] = 8551, - [8767] = 8556, - [8768] = 8560, - [8769] = 8440, - [8770] = 8457, - [8771] = 8426, - [8772] = 8427, - [8773] = 8565, - [8774] = 8566, - [8775] = 8474, - [8776] = 8468, - [8777] = 8431, - [8778] = 8429, - [8779] = 8433, - [8780] = 8467, - [8781] = 8624, - [8782] = 8430, - [8783] = 8460, - [8784] = 8784, - [8785] = 8475, - [8786] = 8432, - [8787] = 8459, - [8788] = 8434, - [8789] = 8440, - [8790] = 8435, - [8791] = 8458, - [8792] = 8433, - [8793] = 7261, - [8794] = 8438, - [8795] = 8452, - [8796] = 8419, - [8797] = 8475, + [8725] = 8561, + [8726] = 8512, + [8727] = 8564, + [8728] = 8473, + [8729] = 8455, + [8730] = 8496, + [8731] = 8474, + [8732] = 8463, + [8733] = 8468, + [8734] = 8465, + [8735] = 8466, + [8736] = 8493, + [8737] = 8557, + [8738] = 8580, + [8739] = 8583, + [8740] = 8585, + [8741] = 8587, + [8742] = 8590, + [8743] = 8591, + [8744] = 8457, + [8745] = 8453, + [8746] = 8594, + [8747] = 8497, + [8748] = 8449, + [8749] = 8598, + [8750] = 8599, + [8751] = 8501, + [8752] = 8479, + [8753] = 8464, + [8754] = 8468, + [8755] = 8462, + [8756] = 8466, + [8757] = 8479, + [8758] = 8600, + [8759] = 8499, + [8760] = 8555, + [8761] = 8583, + [8762] = 8641, + [8763] = 8497, + [8764] = 8606, + [8765] = 8456, + [8766] = 8448, + [8767] = 8510, + [8768] = 8510, + [8769] = 8585, + [8770] = 8455, + [8771] = 8724, + [8772] = 8552, + [8773] = 8463, + [8774] = 8604, + [8775] = 8465, + [8776] = 8776, + [8777] = 8493, + [8778] = 8605, + [8779] = 8606, + [8780] = 8780, + [8781] = 8458, + [8782] = 8603, + [8783] = 8554, + [8784] = 8597, + [8785] = 8596, + [8786] = 8786, + [8787] = 8499, + [8788] = 8788, + [8789] = 8469, + [8790] = 8488, + [8791] = 8501, + [8792] = 8592, + [8793] = 8502, + [8794] = 8572, + [8795] = 8462, + [8796] = 8796, + [8797] = 8526, [8798] = 8798, - [8799] = 8439, - [8800] = 8440, - [8801] = 8417, - [8802] = 8433, - [8803] = 8585, - [8804] = 8449, - [8805] = 8441, - [8806] = 8475, - [8807] = 8440, - [8808] = 8433, - [8809] = 8447, - [8810] = 8440, - [8811] = 8433, - [8812] = 8443, - [8813] = 8440, - [8814] = 8433, - [8815] = 8440, - [8816] = 8433, - [8817] = 8440, - [8818] = 8433, - [8819] = 8440, - [8820] = 8433, - [8821] = 8440, - [8822] = 8433, - [8823] = 8440, - [8824] = 8433, - [8825] = 8443, - [8826] = 8453, - [8827] = 8441, - [8828] = 8828, - [8829] = 8438, + [8799] = 8510, + [8800] = 8497, + [8801] = 8501, + [8802] = 8467, + [8803] = 8603, + [8804] = 8457, + [8805] = 8588, + [8806] = 8445, + [8807] = 8552, + [8808] = 8463, + [8809] = 8809, + [8810] = 8465, + [8811] = 8584, + [8812] = 8581, + [8813] = 8462, + [8814] = 8579, + [8815] = 8515, + [8816] = 8501, + [8817] = 8578, + [8818] = 8818, + [8819] = 8819, + [8820] = 8497, + [8821] = 8516, + [8822] = 8587, + [8823] = 8465, + [8824] = 8575, + [8825] = 8574, + [8826] = 8573, + [8827] = 8469, + [8828] = 8501, + [8829] = 8829, [8830] = 8830, - [8831] = 8831, - [8832] = 8445, - [8833] = 8446, - [8834] = 8834, - [8835] = 8447, - [8836] = 8836, - [8837] = 8837, - [8838] = 8434, - [8839] = 8449, - [8840] = 8432, - [8841] = 8417, - [8842] = 8416, - [8843] = 8843, - [8844] = 8452, - [8845] = 8453, - [8846] = 8458, - [8847] = 8459, - [8848] = 8460, - [8849] = 8430, - [8850] = 8450, - [8851] = 8444, - [8852] = 8427, - [8853] = 8538, - [8854] = 8437, - [8855] = 8517, - [8856] = 8426, - [8857] = 8624, - [8858] = 8425, - [8859] = 8428, - [8860] = 8526, - [8861] = 8557, - [8862] = 8467, - [8863] = 8436, - [8864] = 8468, - [8865] = 8484, - [8866] = 8478, - [8867] = 8474, - [8868] = 8424, - [8869] = 8477, - [8870] = 8422, - [8871] = 8457, - [8872] = 8484, - [8873] = 8421, - [8874] = 8443, - [8875] = 8728, - [8876] = 8460, - [8877] = 8631, - [8878] = 8464, - [8879] = 8466, - [8880] = 8467, - [8881] = 8448, - [8882] = 8416, - [8883] = 8476, - [8884] = 8470, - [8885] = 8469, - [8886] = 8437, - [8887] = 8436, - [8888] = 8428, - [8889] = 8418, - [8890] = 8501, - [8891] = 8416, - [8892] = 8419, - [8893] = 8893, - [8894] = 8441, - [8895] = 8428, - [8896] = 8436, - [8897] = 8437, - [8898] = 8898, - [8899] = 8716, - [8900] = 8501, - [8901] = 8716, - [8902] = 8902, - [8903] = 8448, - [8904] = 8515, - [8905] = 8585, - [8906] = 8478, - [8907] = 8907, - [8908] = 8456, - [8909] = 8463, - [8910] = 8910, - [8911] = 8512, - [8912] = 8556, - [8913] = 8464, - [8914] = 8914, - [8915] = 8439, - [8916] = 8916, - [8917] = 8917, - [8918] = 8438, - [8919] = 8415, - [8920] = 8421, - [8921] = 8533, - [8922] = 8535, - [8923] = 8422, - [8924] = 8539, - [8925] = 8540, - [8926] = 8541, - [8927] = 8542, - [8928] = 8543, - [8929] = 8424, - [8930] = 8425, - [8931] = 8548, - [8932] = 8550, - [8933] = 8551, - [8934] = 8457, - [8935] = 8560, - [8936] = 8426, - [8937] = 8427, - [8938] = 8565, - [8939] = 8566, - [8940] = 8433, - [8941] = 8431, - [8942] = 8429, - [8943] = 8474, - [8944] = 8430, - [8945] = 8432, - [8946] = 8434, - [8947] = 8435, - [8948] = 8468, - [8949] = 8467, - [8950] = 8438, - [8951] = 8439, - [8952] = 8460, - [8953] = 8585, - [8954] = 8441, - [8955] = 8458, - [8956] = 8443, - [8957] = 8453, - [8958] = 8445, - [8959] = 8446, - [8960] = 8559, - [8961] = 8447, - [8962] = 8474, - [8963] = 8449, - [8964] = 8452, - [8965] = 8417, - [8966] = 8452, - [8967] = 8453, - [8968] = 8417, - [8969] = 8458, - [8970] = 8459, - [8971] = 8460, - [8972] = 8450, - [8973] = 8444, - [8974] = 8415, - [8975] = 8449, - [8976] = 8435, - [8977] = 8447, - [8978] = 8907, - [8979] = 8443, - [8980] = 8441, - [8981] = 8434, - [8982] = 8432, - [8983] = 8460, - [8984] = 8430, - [8985] = 8448, - [8986] = 8624, - [8987] = 8434, - [8988] = 8426, - [8989] = 8467, - [8990] = 8468, - [8991] = 8425, - [8992] = 8992, - [8993] = 8478, - [8994] = 8992, - [8995] = 8432, - [8996] = 8477, - [8997] = 8422, - [8998] = 8421, - [8999] = 8457, - [9000] = 8893, - [9001] = 8484, - [9002] = 8430, + [8831] = 8497, + [8832] = 8555, + [8833] = 8465, + [8834] = 8571, + [8835] = 8570, + [8836] = 8568, + [8837] = 8501, + [8838] = 8497, + [8839] = 8465, + [8840] = 8840, + [8841] = 8497, + [8842] = 8465, + [8843] = 8646, + [8844] = 8497, + [8845] = 8465, + [8846] = 8497, + [8847] = 8465, + [8848] = 8497, + [8849] = 8465, + [8850] = 8497, + [8851] = 8465, + [8852] = 8497, + [8853] = 8465, + [8854] = 8497, + [8855] = 8465, + [8856] = 8447, + [8857] = 8477, + [8858] = 8547, + [8859] = 8859, + [8860] = 8590, + [8861] = 8861, + [8862] = 8862, + [8863] = 8545, + [8864] = 8543, + [8865] = 8865, + [8866] = 8595, + [8867] = 8867, + [8868] = 8868, + [8869] = 8526, + [8870] = 8518, + [8871] = 8455, + [8872] = 8489, + [8873] = 8515, + [8874] = 8490, + [8875] = 8588, + [8876] = 8496, + [8877] = 8557, + [8878] = 8518, + [8879] = 8511, + [8880] = 8515, + [8881] = 8510, + [8882] = 8467, + [8883] = 8445, + [8884] = 8459, + [8885] = 8515, + [8886] = 8487, + [8887] = 8516, + [8888] = 8458, + [8889] = 8518, + [8890] = 8457, + [8891] = 8796, + [8892] = 8819, + [8893] = 8467, + [8894] = 8469, + [8895] = 8599, + [8896] = 8572, + [8897] = 8503, + [8898] = 8584, + [8899] = 8496, + [8900] = 8490, + [8901] = 8489, + [8902] = 8467, + [8903] = 8543, + [8904] = 8545, + [8905] = 8573, + [8906] = 8906, + [8907] = 8474, + [8908] = 8908, + [8909] = 8445, + [8910] = 8547, + [8911] = 8494, + [8912] = 8493, + [8913] = 8515, + [8914] = 8477, + [8915] = 8447, + [8916] = 8568, + [8917] = 8598, + [8918] = 7246, + [8919] = 8919, + [8920] = 8489, + [8921] = 8518, + [8922] = 8591, + [8923] = 8469, + [8924] = 8446, + [8925] = 8584, + [8926] = 8594, + [8927] = 8599, + [8928] = 8928, + [8929] = 8929, + [8930] = 8572, + [8931] = 8599, + [8932] = 8932, + [8933] = 8453, + [8934] = 8934, + [8935] = 8935, + [8936] = 8936, + [8937] = 8937, + [8938] = 8938, + [8939] = 8939, + [8940] = 8940, + [8941] = 8941, + [8942] = 8942, + [8943] = 8943, + [8944] = 8944, + [8945] = 8561, + [8946] = 8496, + [8947] = 8462, + [8948] = 8510, + [8949] = 8497, + [8950] = 8950, + [8951] = 8467, + [8952] = 8445, + [8953] = 8584, + [8954] = 8583, + [8955] = 8515, + [8956] = 8457, + [8957] = 8518, + [8958] = 8572, + [8959] = 8502, + [8960] = 8584, + [8961] = 6148, + [8962] = 8599, + [8963] = 8488, + [8964] = 8499, + [8965] = 8568, + [8966] = 8600, + [8967] = 8967, + [8968] = 8448, + [8969] = 8604, + [8970] = 8584, + [8971] = 8599, + [8972] = 8464, + [8973] = 8573, + [8974] = 8449, + [8975] = 8584, + [8976] = 8518, + [8977] = 8584, + [8978] = 8599, + [8979] = 8474, + [8980] = 8980, + [8981] = 8981, + [8982] = 8982, + [8983] = 8983, + [8984] = 8561, + [8985] = 8515, + [8986] = 8605, + [8987] = 8473, + [8988] = 8445, + [8989] = 8458, + [8990] = 8990, + [8991] = 8467, + [8992] = 8584, + [8993] = 8599, + [8994] = 8510, + [8995] = 8488, + [8996] = 8588, + [8997] = 8552, + [8998] = 8603, + [8999] = 8555, + [9000] = 8557, + [9001] = 8561, + [9002] = 8584, [9003] = 9003, - [9004] = 8464, - [9005] = 8828, - [9006] = 8831, - [9007] = 8834, - [9008] = 8416, - [9009] = 8836, - [9010] = 9010, - [9011] = 8416, - [9012] = 8437, - [9013] = 8436, - [9014] = 8538, - [9015] = 8428, - [9016] = 8517, - [9017] = 9017, - [9018] = 8476, - [9019] = 8470, - [9020] = 8526, - [9021] = 8557, - [9022] = 8484, - [9023] = 8469, - [9024] = 8460, - [9025] = 8631, - [9026] = 8437, - [9027] = 8464, - [9028] = 9028, - [9029] = 8893, - [9030] = 8898, - [9031] = 8474, - [9032] = 8467, - [9033] = 8828, - [9034] = 8834, - [9035] = 8418, - [9036] = 8836, - [9037] = 8501, - [9038] = 8419, - [9039] = 8538, - [9040] = 8428, - [9041] = 8517, - [9042] = 8436, - [9043] = 8515, - [9044] = 8526, - [9045] = 8557, - [9046] = 8437, - [9047] = 8631, - [9048] = 8416, - [9049] = 8716, - [9050] = 8440, - [9051] = 8893, - [9052] = 8898, - [9053] = 8448, - [9054] = 8460, - [9055] = 8828, - [9056] = 8834, - [9057] = 8515, - [9058] = 8836, - [9059] = 8458, - [9060] = 8456, - [9061] = 8538, - [9062] = 8463, - [9063] = 8517, - [9064] = 8455, - [9065] = 8512, - [9066] = 8526, - [9067] = 8557, - [9068] = 8631, - [9069] = 8450, - [9070] = 9070, - [9071] = 8444, - [9072] = 8893, - [9073] = 8898, - [9074] = 8449, - [9075] = 8828, - [9076] = 8834, - [9077] = 8443, - [9078] = 8836, - [9079] = 6121, - [9080] = 8475, - [9081] = 8538, - [9082] = 8517, - [9083] = 8466, - [9084] = 9084, - [9085] = 8526, - [9086] = 8557, - [9087] = 8631, - [9088] = 8429, - [9089] = 9089, - [9090] = 8434, - [9091] = 8893, - [9092] = 8898, - [9093] = 8430, - [9094] = 8828, - [9095] = 8834, - [9096] = 8426, - [9097] = 8836, - [9098] = 8424, - [9099] = 9099, - [9100] = 8517, - [9101] = 8416, - [9102] = 9102, - [9103] = 8526, - [9104] = 8557, - [9105] = 8631, - [9106] = 9106, - [9107] = 8427, - [9108] = 9108, - [9109] = 8893, - [9110] = 8898, + [9004] = 9004, + [9005] = 8449, + [9006] = 8599, + [9007] = 8512, + [9008] = 8564, + [9009] = 8606, + [9010] = 8580, + [9011] = 8526, + [9012] = 9012, + [9013] = 9013, + [9014] = 8474, + [9015] = 8501, + [9016] = 8606, + [9017] = 8929, + [9018] = 9018, + [9019] = 8580, + [9020] = 9020, + [9021] = 8584, + [9022] = 8543, + [9023] = 8599, + [9024] = 8580, + [9025] = 8587, + [9026] = 8557, + [9027] = 8458, + [9028] = 8462, + [9029] = 8599, + [9030] = 8474, + [9031] = 8572, + [9032] = 8603, + [9033] = 8463, + [9034] = 8465, + [9035] = 8449, + [9036] = 8859, + [9037] = 8862, + [9038] = 8865, + [9039] = 9039, + [9040] = 8867, + [9041] = 8448, + [9042] = 8515, + [9043] = 9043, + [9044] = 8594, + [9045] = 8459, + [9046] = 8457, + [9047] = 8487, + [9048] = 8598, + [9049] = 8594, + [9050] = 8591, + [9051] = 8796, + [9052] = 8819, + [9053] = 8572, + [9054] = 9054, + [9055] = 8474, + [9056] = 8908, + [9057] = 8594, + [9058] = 8583, + [9059] = 8598, + [9060] = 8446, + [9061] = 8929, + [9062] = 8599, + [9063] = 8515, + [9064] = 8859, + [9065] = 8865, + [9066] = 8600, + [9067] = 8867, + [9068] = 9068, + [9069] = 8606, + [9070] = 8459, + [9071] = 8603, + [9072] = 8487, + [9073] = 6180, + [9074] = 8588, + [9075] = 8796, + [9076] = 8819, + [9077] = 8584, + [9078] = 8908, + [9079] = 8573, + [9080] = 8584, + [9081] = 8603, + [9082] = 8446, + [9083] = 8929, + [9084] = 8448, + [9085] = 9085, + [9086] = 8859, + [9087] = 8865, + [9088] = 9088, + [9089] = 8867, + [9090] = 8599, + [9091] = 9091, + [9092] = 8459, + [9093] = 8594, + [9094] = 8487, + [9095] = 8554, + [9096] = 8580, + [9097] = 8796, + [9098] = 8819, + [9099] = 8908, + [9100] = 8590, + [9101] = 8557, + [9102] = 8568, + [9103] = 8446, + [9104] = 8929, + [9105] = 9105, + [9106] = 8859, + [9107] = 8865, + [9108] = 8458, + [9109] = 8867, + [9110] = 9110, [9111] = 9111, - [9112] = 8828, - [9113] = 8834, - [9114] = 8566, - [9115] = 8836, - [9116] = 8565, - [9117] = 9117, - [9118] = 8517, - [9119] = 9119, + [9112] = 8459, + [9113] = 8487, + [9114] = 9114, + [9115] = 8464, + [9116] = 8796, + [9117] = 8819, + [9118] = 8908, + [9119] = 8458, [9120] = 9120, - [9121] = 8526, - [9122] = 8557, - [9123] = 8631, + [9121] = 9121, + [9122] = 8446, + [9123] = 8929, [9124] = 9124, - [9125] = 8898, - [9126] = 9126, - [9127] = 8893, - [9128] = 8898, - [9129] = 9129, - [9130] = 8828, - [9131] = 9131, - [9132] = 8836, - [9133] = 9133, - [9134] = 8436, - [9135] = 8428, - [9136] = 8426, - [9137] = 8526, - [9138] = 8557, - [9139] = 8431, - [9140] = 8433, - [9141] = 8474, - [9142] = 8893, - [9143] = 9143, - [9144] = 8828, - [9145] = 8836, - [9146] = 8467, - [9147] = 8557, - [9148] = 8460, - [9149] = 8458, - [9150] = 8893, - [9151] = 8449, - [9152] = 8828, - [9153] = 8836, - [9154] = 8443, - [9155] = 8557, - [9156] = 8484, - [9157] = 8893, - [9158] = 8828, - [9159] = 8836, - [9160] = 8557, - [9161] = 8893, - [9162] = 8557, - [9163] = 8893, - [9164] = 8557, - [9165] = 8893, - [9166] = 8557, - [9167] = 8893, - [9168] = 8557, - [9169] = 8893, - [9170] = 8557, - [9171] = 8893, - [9172] = 8557, - [9173] = 8893, - [9174] = 8557, - [9175] = 8893, - [9176] = 8475, - [9177] = 6203, - [9178] = 8831, - [9179] = 9179, - [9180] = 9180, - [9181] = 8434, - [9182] = 8430, - [9183] = 8426, - [9184] = 9184, - [9185] = 9185, - [9186] = 8424, - [9187] = 9187, - [9188] = 9188, - [9189] = 9189, - [9190] = 9190, - [9191] = 9191, - [9192] = 9192, - [9193] = 8416, - [9194] = 9194, - [9195] = 8728, - [9196] = 8473, - [9197] = 9197, - [9198] = 9198, - [9199] = 8560, - [9200] = 8556, - [9201] = 8551, - [9202] = 8550, - [9203] = 8548, - [9204] = 8474, - [9205] = 9205, - [9206] = 8480, - [9207] = 9207, - [9208] = 9208, - [9209] = 9209, + [9125] = 8859, + [9126] = 8865, + [9127] = 8597, + [9128] = 8867, + [9129] = 8596, + [9130] = 8595, + [9131] = 8487, + [9132] = 8592, + [9133] = 8474, + [9134] = 8796, + [9135] = 8819, + [9136] = 8908, + [9137] = 8590, + [9138] = 8449, + [9139] = 8547, + [9140] = 8446, + [9141] = 8929, + [9142] = 8449, + [9143] = 8859, + [9144] = 8865, + [9145] = 8448, + [9146] = 8867, + [9147] = 8545, + [9148] = 8590, + [9149] = 8487, + [9150] = 8515, + [9151] = 9151, + [9152] = 8796, + [9153] = 8819, + [9154] = 8908, + [9155] = 9155, + [9156] = 8598, + [9157] = 8587, + [9158] = 8446, + [9159] = 8929, + [9160] = 9160, + [9161] = 8859, + [9162] = 9162, + [9163] = 8867, + [9164] = 9164, + [9165] = 9165, + [9166] = 8599, + [9167] = 9167, + [9168] = 8796, + [9169] = 8819, + [9170] = 8583, + [9171] = 8474, + [9172] = 9172, + [9173] = 8446, + [9174] = 8568, + [9175] = 8859, + [9176] = 8867, + [9177] = 9177, + [9178] = 8819, + [9179] = 8518, + [9180] = 6171, + [9181] = 8446, + [9182] = 8515, + [9183] = 8859, + [9184] = 8867, + [9185] = 8445, + [9186] = 8819, + [9187] = 8573, + [9188] = 8446, + [9189] = 8859, + [9190] = 8867, + [9191] = 8819, + [9192] = 8446, + [9193] = 8819, + [9194] = 8446, + [9195] = 8819, + [9196] = 8446, + [9197] = 8819, + [9198] = 8446, + [9199] = 8819, + [9200] = 8446, + [9201] = 8819, + [9202] = 8446, + [9203] = 8819, + [9204] = 8446, + [9205] = 8819, + [9206] = 8446, + [9207] = 8510, + [9208] = 8588, + [9209] = 8862, [9210] = 9210, [9211] = 9211, - [9212] = 9212, - [9213] = 9180, - [9214] = 9179, - [9215] = 9215, - [9216] = 8543, - [9217] = 8474, + [9212] = 8467, + [9213] = 8584, + [9214] = 9214, + [9215] = 8445, + [9216] = 8584, + [9217] = 8552, [9218] = 9218, - [9219] = 8416, - [9220] = 8425, - [9221] = 8424, - [9222] = 8837, - [9223] = 9223, - [9224] = 8836, - [9225] = 9225, - [9226] = 9226, - [9227] = 9227, - [9228] = 9228, + [9219] = 8467, + [9220] = 8502, + [9221] = 9221, + [9222] = 9222, + [9223] = 8588, + [9224] = 8510, + [9225] = 8496, + [9226] = 8906, + [9227] = 8950, + [9228] = 8908, [9229] = 9229, [9230] = 9230, - [9231] = 9231, - [9232] = 9232, - [9233] = 9233, - [9234] = 8834, - [9235] = 8472, - [9236] = 8456, - [9237] = 8463, - [9238] = 8831, - [9239] = 9239, - [9240] = 8512, - [9241] = 9241, - [9242] = 8542, - [9243] = 8541, - [9244] = 8540, - [9245] = 8539, - [9246] = 8467, - [9247] = 9247, - [9248] = 9248, - [9249] = 8422, - [9250] = 9250, + [9231] = 8581, + [9232] = 8490, + [9233] = 8489, + [9234] = 8511, + [9235] = 8579, + [9236] = 9236, + [9237] = 9237, + [9238] = 8578, + [9239] = 8575, + [9240] = 8473, + [9241] = 9211, + [9242] = 9210, + [9243] = 8574, + [9244] = 8474, + [9245] = 8479, + [9246] = 8580, + [9247] = 8584, + [9248] = 8868, + [9249] = 9249, + [9250] = 8515, [9251] = 9251, - [9252] = 8430, - [9253] = 8704, - [9254] = 9254, - [9255] = 8460, - [9256] = 8831, - [9257] = 9179, - [9258] = 9180, - [9259] = 8458, - [9260] = 8830, - [9261] = 8449, - [9262] = 8728, - [9263] = 8473, - [9264] = 9264, - [9265] = 9265, - [9266] = 8443, - [9267] = 8831, - [9268] = 9179, - [9269] = 9180, - [9270] = 8430, - [9271] = 9271, - [9272] = 8728, - [9273] = 8473, - [9274] = 9274, - [9275] = 8535, - [9276] = 8533, - [9277] = 8831, - [9278] = 9179, - [9279] = 9180, - [9280] = 8424, - [9281] = 9281, - [9282] = 8728, - [9283] = 8473, - [9284] = 9284, - [9285] = 8421, - [9286] = 8828, - [9287] = 9179, - [9288] = 9180, - [9289] = 8480, + [9252] = 8867, + [9253] = 9253, + [9254] = 8603, + [9255] = 8603, + [9256] = 8606, + [9257] = 8458, + [9258] = 9258, + [9259] = 9259, + [9260] = 9260, + [9261] = 9261, + [9262] = 8865, + [9263] = 8503, + [9264] = 8543, + [9265] = 8545, + [9266] = 8862, + [9267] = 8502, + [9268] = 8547, + [9269] = 8599, + [9270] = 8594, + [9271] = 8580, + [9272] = 8477, + [9273] = 8488, + [9274] = 8573, + [9275] = 8447, + [9276] = 9276, + [9277] = 8557, + [9278] = 8561, + [9279] = 9279, + [9280] = 9280, + [9281] = 8468, + [9282] = 9282, + [9283] = 8458, + [9284] = 8555, + [9285] = 8571, + [9286] = 8861, + [9287] = 8862, + [9288] = 9210, + [9289] = 9211, [9290] = 9290, - [9291] = 8728, - [9292] = 8473, - [9293] = 9293, - [9294] = 9294, - [9295] = 9179, - [9296] = 9180, - [9297] = 9297, - [9298] = 9298, - [9299] = 8728, - [9300] = 8473, - [9301] = 9301, - [9302] = 9302, - [9303] = 9179, - [9304] = 9180, - [9305] = 8430, - [9306] = 9306, - [9307] = 8728, - [9308] = 8473, - [9309] = 9309, - [9310] = 9310, - [9311] = 9179, - [9312] = 9180, - [9313] = 8424, - [9314] = 8728, - [9315] = 8473, - [9316] = 1985, - [9317] = 9317, - [9318] = 8728, - [9319] = 8473, - [9320] = 1984, + [9291] = 8474, + [9292] = 8570, + [9293] = 8906, + [9294] = 8950, + [9295] = 8469, + [9296] = 8449, + [9297] = 8462, + [9298] = 8862, + [9299] = 9210, + [9300] = 9211, + [9301] = 8466, + [9302] = 8557, + [9303] = 8906, + [9304] = 8950, + [9305] = 9305, + [9306] = 8448, + [9307] = 8859, + [9308] = 8862, + [9309] = 9210, + [9310] = 9211, + [9311] = 8457, + [9312] = 8457, + [9313] = 8906, + [9314] = 8950, + [9315] = 8780, + [9316] = 8502, + [9317] = 8448, + [9318] = 9210, + [9319] = 9211, + [9320] = 9320, [9321] = 9321, - [9322] = 8473, - [9323] = 6117, - [9324] = 8473, - [9325] = 8472, - [9326] = 8473, - [9327] = 8430, - [9328] = 8473, - [9329] = 8424, - [9330] = 8473, - [9331] = 8477, - [9332] = 8473, - [9333] = 8430, - [9334] = 8473, - [9335] = 8424, - [9336] = 8473, - [9337] = 8457, - [9338] = 8473, - [9339] = 9233, - [9340] = 8553, - [9341] = 9341, - [9342] = 9233, - [9343] = 8553, - [9344] = 9191, - [9345] = 9233, - [9346] = 8553, - [9347] = 8462, - [9348] = 9233, - [9349] = 8553, - [9350] = 8461, - [9351] = 9233, - [9352] = 8553, - [9353] = 8430, - [9354] = 9233, - [9355] = 8553, - [9356] = 8424, - [9357] = 9233, - [9358] = 8553, - [9359] = 9359, - [9360] = 8553, - [9361] = 8553, - [9362] = 8553, - [9363] = 8553, - [9364] = 8553, - [9365] = 8553, - [9366] = 8553, - [9367] = 8553, - [9368] = 8553, - [9369] = 8553, - [9370] = 8553, - [9371] = 8424, - [9372] = 8430, - [9373] = 8430, - [9374] = 9133, - [9375] = 8462, - [9376] = 8424, - [9377] = 8461, - [9378] = 9232, - [9379] = 9232, - [9380] = 9232, - [9381] = 9232, - [9382] = 9232, - [9383] = 9232, - [9384] = 9232, + [9322] = 8906, + [9323] = 8950, + [9324] = 9324, + [9325] = 9325, + [9326] = 9210, + [9327] = 9211, + [9328] = 8510, + [9329] = 8467, + [9330] = 8906, + [9331] = 8950, + [9332] = 9332, + [9333] = 8445, + [9334] = 9210, + [9335] = 9211, + [9336] = 8515, + [9337] = 9337, + [9338] = 8906, + [9339] = 8950, + [9340] = 9340, + [9341] = 8568, + [9342] = 9210, + [9343] = 9211, + [9344] = 8464, + [9345] = 8906, + [9346] = 8950, + [9347] = 8449, + [9348] = 9348, + [9349] = 8906, + [9350] = 8950, + [9351] = 8474, + [9352] = 8473, + [9353] = 8950, + [9354] = 8568, + [9355] = 8950, + [9356] = 8573, + [9357] = 8950, + [9358] = 8584, + [9359] = 8950, + [9360] = 8588, + [9361] = 8950, + [9362] = 8603, + [9363] = 8950, + [9364] = 8488, + [9365] = 8950, + [9366] = 8906, + [9367] = 8950, + [9368] = 8599, + [9369] = 8950, + [9370] = 9261, + [9371] = 8818, + [9372] = 9372, + [9373] = 9261, + [9374] = 8818, + [9375] = 8552, + [9376] = 9261, + [9377] = 8818, + [9378] = 9378, + [9379] = 9261, + [9380] = 8818, + [9381] = 8598, + [9382] = 9261, + [9383] = 8818, + [9384] = 8594, + [9385] = 9261, + [9386] = 8818, + [9387] = 8555, + [9388] = 9261, + [9389] = 8818, + [9390] = 8583, + [9391] = 8818, + [9392] = 8818, + [9393] = 8818, + [9394] = 8818, + [9395] = 8818, + [9396] = 8818, + [9397] = 8818, + [9398] = 8818, + [9399] = 8818, + [9400] = 8818, + [9401] = 8818, + [9402] = 2008, + [9403] = 2009, + [9404] = 8580, + [9405] = 8557, + [9406] = 8494, + [9407] = 9111, + [9408] = 8493, + [9409] = 9260, + [9410] = 9260, + [9411] = 9260, + [9412] = 9260, + [9413] = 9260, + [9414] = 9260, + [9415] = 9260, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -58470,7 +58508,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(392) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -58583,19 +58623,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(374); END_STATE(); case 25: - if (lookahead == '\n') SKIP(283) + if (lookahead == '\n') SKIP(280) END_STATE(); case 26: - if (lookahead == '\n') SKIP(283) + if (lookahead == '\n') SKIP(280) if (lookahead == '\r') SKIP(25) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); END_STATE(); case 27: - if (lookahead == '\n') SKIP(280) + if (lookahead == '\n') SKIP(283) END_STATE(); case 28: - if (lookahead == '\n') SKIP(280) + if (lookahead == '\n') SKIP(283) if (lookahead == '\r') SKIP(27) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); @@ -58754,10 +58794,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(374); END_STATE(); case 63: - if (lookahead == '\n') SKIP(245) + if (lookahead == '\n') SKIP(244) END_STATE(); case 64: - if (lookahead == '\n') SKIP(245) + if (lookahead == '\n') SKIP(244) if (lookahead == '\r') SKIP(63) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); @@ -58781,37 +58821,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(374); END_STATE(); case 69: - if (lookahead == '\n') SKIP(255) + if (lookahead == '\n') SKIP(258) END_STATE(); case 70: - if (lookahead == '\n') SKIP(255) + if (lookahead == '\n') SKIP(258) if (lookahead == '\r') SKIP(69) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); END_STATE(); case 71: - if (lookahead == '\n') SKIP(258) + if (lookahead == '\n') SKIP(255) END_STATE(); case 72: - if (lookahead == '\n') SKIP(258) + if (lookahead == '\n') SKIP(255) if (lookahead == '\r') SKIP(71) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); END_STATE(); case 73: - if (lookahead == '\n') SKIP(260) + if (lookahead == '\n') SKIP(236) END_STATE(); case 74: - if (lookahead == '\n') SKIP(260) + if (lookahead == '\n') SKIP(236) if (lookahead == '\r') SKIP(73) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); END_STATE(); case 75: - if (lookahead == '\n') SKIP(236) + if (lookahead == '\n') SKIP(260) END_STATE(); case 76: - if (lookahead == '\n') SKIP(236) + if (lookahead == '\n') SKIP(260) if (lookahead == '\r') SKIP(75) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); @@ -58952,22 +58992,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(374); END_STATE(); case 107: - if (lookahead == '\n') SKIP(205) + if (lookahead == '\n') SKIP(109) END_STATE(); case 108: - if (lookahead == '\n') SKIP(205) + if (lookahead == '\n') SKIP(109) if (lookahead == '\r') SKIP(107) - if (lookahead == 'U') ADVANCE(382); - if (lookahead == 'u') ADVANCE(374); END_STATE(); case 109: - if (lookahead == '\n') SKIP(111) - END_STATE(); - case 110: - if (lookahead == '\n') SKIP(111) - if (lookahead == '\r') SKIP(109) - END_STATE(); - case 111: if (lookahead == '\n') ADVANCE(404); if (lookahead == '!') ADVANCE(309); if (lookahead == '%') ADVANCE(492); @@ -58980,11 +59011,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(516); if (lookahead == '=') ADVANCE(310); if (lookahead == '>') ADVANCE(507); - if (lookahead == '\\') SKIP(110) + if (lookahead == '\\') SKIP(108) if (lookahead == '^') ADVANCE(499); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(111) + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(109) + END_STATE(); + case 110: + if (lookahead == '\n') SKIP(205) + END_STATE(); + case 111: + if (lookahead == '\n') SKIP(205) + if (lookahead == '\r') SKIP(110) + if (lookahead == 'U') ADVANCE(382); + if (lookahead == 'u') ADVANCE(374); END_STATE(); case 112: if (lookahead == '\n') SKIP(389) @@ -59018,7 +59059,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(579); if (lookahead == '/') ADVANCE(582); if (lookahead == '\\') ADVANCE(581); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') ADVANCE(583); if (lookahead != 0) ADVANCE(580); END_STATE(); @@ -59036,7 +59078,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '"') ADVANCE(588); if (lookahead == '/') ADVANCE(589); if (lookahead == '\\') ADVANCE(119); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') ADVANCE(592); if (lookahead != 0) ADVANCE(593); END_STATE(); @@ -59046,7 +59089,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(398); if (lookahead == '/') ADVANCE(426); if (lookahead == '\\') ADVANCE(424); - if (('\t' <= lookahead && lookahead <= '\f') || + if (lookahead == '\t' || lookahead == ' ') SKIP(300) if (lookahead != 0) ADVANCE(427); END_STATE(); @@ -59055,7 +59098,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(125); if (lookahead == '/') ADVANCE(426); if (lookahead == '\\') ADVANCE(424); - if (('\t' <= lookahead && lookahead <= '\f') || + if (lookahead == '\t' || lookahead == ' ') SKIP(300) if (lookahead != 0) ADVANCE(427); END_STATE(); @@ -59065,7 +59108,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(467); if (lookahead == '/') ADVANCE(291); if (lookahead == '\\') SKIP(127) - if (('\t' <= lookahead && lookahead <= '\f') || + if (lookahead == '\t' || lookahead == ' ') SKIP(288) END_STATE(); case 124: @@ -59073,14 +59116,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(467); if (lookahead == '/') ADVANCE(291); if (lookahead == '\\') SKIP(127) - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(288) END_STATE(); case 125: if (lookahead == '\n') ADVANCE(396); if (lookahead == '/') ADVANCE(426); if (lookahead == '\\') ADVANCE(424); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') SKIP(300) if (lookahead != 0) ADVANCE(427); END_STATE(); @@ -59182,10 +59227,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(374); END_STATE(); case 148: - if (lookahead == '\n') SKIP(244) + if (lookahead == '\n') SKIP(245) END_STATE(); case 149: - if (lookahead == '\n') SKIP(244) + if (lookahead == '\n') SKIP(245) if (lookahead == '\r') SKIP(148) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); @@ -59227,10 +59272,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(374); END_STATE(); case 158: - if (lookahead == '\n') SKIP(268) + if (lookahead == '\n') SKIP(269) END_STATE(); case 159: - if (lookahead == '\n') SKIP(268) + if (lookahead == '\n') SKIP(269) if (lookahead == '\r') SKIP(158) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); @@ -59245,10 +59290,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(374); END_STATE(); case 162: - if (lookahead == '\n') SKIP(263) + if (lookahead == '\n') SKIP(262) END_STATE(); case 163: - if (lookahead == '\n') SKIP(263) + if (lookahead == '\n') SKIP(262) if (lookahead == '\r') SKIP(162) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); @@ -59272,19 +59317,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(374); END_STATE(); case 168: - if (lookahead == '\n') SKIP(238) + if (lookahead == '\n') SKIP(233) END_STATE(); case 169: - if (lookahead == '\n') SKIP(238) + if (lookahead == '\n') SKIP(233) if (lookahead == '\r') SKIP(168) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); END_STATE(); case 170: - if (lookahead == '\n') SKIP(248) + if (lookahead == '\n') SKIP(249) END_STATE(); case 171: - if (lookahead == '\n') SKIP(248) + if (lookahead == '\n') SKIP(249) if (lookahead == '\r') SKIP(170) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); @@ -59308,10 +59353,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(374); END_STATE(); case 176: - if (lookahead == '\n') SKIP(269) + if (lookahead == '\n') SKIP(268) END_STATE(); case 177: - if (lookahead == '\n') SKIP(269) + if (lookahead == '\n') SKIP(268) if (lookahead == '\r') SKIP(176) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); @@ -59326,28 +59371,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(374); END_STATE(); case 180: - if (lookahead == '\n') SKIP(262) + if (lookahead == '\n') SKIP(263) END_STATE(); case 181: - if (lookahead == '\n') SKIP(262) + if (lookahead == '\n') SKIP(263) if (lookahead == '\r') SKIP(180) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); END_STATE(); case 182: - if (lookahead == '\n') SKIP(233) + if (lookahead == '\n') SKIP(238) END_STATE(); case 183: - if (lookahead == '\n') SKIP(233) + if (lookahead == '\n') SKIP(238) if (lookahead == '\r') SKIP(182) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); END_STATE(); case 184: - if (lookahead == '\n') SKIP(249) + if (lookahead == '\n') SKIP(248) END_STATE(); case 185: - if (lookahead == '\n') SKIP(249) + if (lookahead == '\n') SKIP(248) if (lookahead == '\r') SKIP(184) if (lookahead == 'U') ADVANCE(382); if (lookahead == 'u') ADVANCE(374); @@ -59409,7 +59454,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(188) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -59461,7 +59508,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(189) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -59513,7 +59562,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(498); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(190) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -59561,7 +59612,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(191) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -59609,7 +59662,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(498); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(192) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -59657,7 +59712,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(193) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -59704,7 +59761,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(194) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -59751,7 +59810,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(498); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(195) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -59787,7 +59848,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(661); if (lookahead == '|') ADVANCE(497); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(196) END_STATE(); case 197: @@ -59810,7 +59873,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(197) END_STATE(); case 198: @@ -59831,7 +59896,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(307); if (lookahead == ';') ADVANCE(521); if (lookahead == '<') ADVANCE(308); - if (lookahead == '>') ADVANCE(506); + if (lookahead == '>') ADVANCE(311); if (lookahead == 'F') ADVANCE(633); if (lookahead == 'L') ADVANCE(602); if (lookahead == 'R') ADVANCE(605); @@ -59854,7 +59919,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(496); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(198) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -59905,7 +59972,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(357); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(199) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -59947,7 +60016,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(661); if (lookahead == '{') ADVANCE(525); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(200) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -59968,7 +60039,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(562); if (lookahead == ':') ADVANCE(307); if (lookahead == ';') ADVANCE(521); - if (lookahead == '>') ADVANCE(313); + if (lookahead == '>') ADVANCE(506); if (lookahead == 'F') ADVANCE(633); if (lookahead == 'L') ADVANCE(602); if (lookahead == 'R') ADVANCE(605); @@ -59990,7 +60061,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(661); if (lookahead == '{') ADVANCE(525); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(201) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -60011,7 +60084,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(562); if (lookahead == ':') ADVANCE(307); if (lookahead == ';') ADVANCE(521); - if (lookahead == '>') ADVANCE(311); + if (lookahead == '>') ADVANCE(313); if (lookahead == 'F') ADVANCE(633); if (lookahead == 'L') ADVANCE(602); if (lookahead == 'R') ADVANCE(605); @@ -60033,7 +60106,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(661); if (lookahead == '{') ADVANCE(525); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(202) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -60078,7 +60153,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(661); if (lookahead == '{') ADVANCE(525); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(203) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -60125,7 +60202,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(204) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -60142,10 +60221,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(562); if (lookahead == 'L') ADVANCE(688); if (lookahead == 'U') ADVANCE(689); - if (lookahead == '\\') ADVANCE(108); + if (lookahead == '\\') ADVANCE(111); if (lookahead == 'u') ADVANCE(626); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(205) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -60184,7 +60265,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(209) END_STATE(); case 207: @@ -60221,7 +60304,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(714); if (lookahead == '|') ADVANCE(498); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(210) END_STATE(); case 208: @@ -60256,7 +60341,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(208) END_STATE(); case 209: @@ -60291,7 +60378,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(209) END_STATE(); case 210: @@ -60325,7 +60414,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(610); if (lookahead == '|') ADVANCE(498); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(210) END_STATE(); case 211: @@ -60358,7 +60449,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('v' <= lookahead && lookahead <= 'z')) ADVANCE(720); if (lookahead == 'u') ADVANCE(714); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(214) END_STATE(); case 212: @@ -60391,7 +60484,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('v' <= lookahead && lookahead <= 'z')) ADVANCE(720); if (lookahead == 'u') ADVANCE(714); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(215) END_STATE(); case 213: @@ -60422,7 +60517,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(610); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(213) END_STATE(); case 214: @@ -60451,7 +60548,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(500); if (lookahead == 'u') ADVANCE(610); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(214) END_STATE(); case 215: @@ -60480,7 +60579,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(499); if (lookahead == 'u') ADVANCE(610); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(215) END_STATE(); case 216: @@ -60513,7 +60614,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('v' <= lookahead && lookahead <= 'z')) ADVANCE(720); if (lookahead == 'u') ADVANCE(714); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(221) END_STATE(); case 217: @@ -60545,7 +60648,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('v' <= lookahead && lookahead <= 'z')) ADVANCE(720); if (lookahead == 'u') ADVANCE(714); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(224) END_STATE(); case 218: @@ -60577,7 +60682,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('v' <= lookahead && lookahead <= 'z')) ADVANCE(720); if (lookahead == 'u') ADVANCE(714); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(225) END_STATE(); case 219: @@ -60609,7 +60716,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(219) END_STATE(); case 220: @@ -60640,7 +60749,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(610); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(220) END_STATE(); case 221: @@ -60669,7 +60780,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(500); if (lookahead == 'u') ADVANCE(610); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(221) END_STATE(); case 222: @@ -60703,7 +60816,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(222) END_STATE(); case 223: @@ -60733,7 +60848,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(610); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(223) END_STATE(); case 224: @@ -60761,7 +60878,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(500); if (lookahead == 'u') ADVANCE(610); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(224) END_STATE(); case 225: @@ -60789,7 +60908,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(499); if (lookahead == 'u') ADVANCE(610); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(225) END_STATE(); case 226: @@ -60819,7 +60940,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(226) END_STATE(); case 227: @@ -60850,7 +60973,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(235) END_STATE(); case 228: @@ -60881,7 +61006,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); if (lookahead == '|') ADVANCE(498); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(239) END_STATE(); case 229: @@ -60922,7 +61049,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(229) END_STATE(); case 230: @@ -60963,7 +61092,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(498); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(230) END_STATE(); case 231: @@ -60992,7 +61123,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(231) END_STATE(); case 232: @@ -61022,7 +61155,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(232) END_STATE(); case 233: @@ -61046,13 +61181,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(508); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(528); - if (lookahead == '\\') ADVANCE(183); + if (lookahead == '\\') ADVANCE(169); if (lookahead == ']') ADVANCE(531); if (lookahead == '^') ADVANCE(500); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(233) END_STATE(); case 234: @@ -61082,7 +61219,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(234) END_STATE(); case 235: @@ -61111,7 +61250,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(235) END_STATE(); case 236: @@ -61135,12 +61276,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(508); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(530); - if (lookahead == '\\') ADVANCE(76); + if (lookahead == '\\') ADVANCE(74); if (lookahead == ']') ADVANCE(531); if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(236) END_STATE(); case 237: @@ -61171,7 +61314,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(498); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(237) END_STATE(); case 238: @@ -61195,13 +61340,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(507); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(527); - if (lookahead == '\\') ADVANCE(169); + if (lookahead == '\\') ADVANCE(183); if (lookahead == ']') ADVANCE(531); if (lookahead == '^') ADVANCE(499); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(498); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(238) END_STATE(); case 239: @@ -61230,7 +61377,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(499); if (lookahead == '|') ADVANCE(498); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(239) END_STATE(); case 240: @@ -61257,7 +61406,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(246) END_STATE(); case 241: @@ -61284,7 +61435,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(250) END_STATE(); case 242: @@ -61320,7 +61473,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(661); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(242) END_STATE(); case 243: @@ -61361,7 +61516,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(498); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(243) END_STATE(); case 244: @@ -61383,11 +61540,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(508); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(527); - if (lookahead == '\\') ADVANCE(149); + if (lookahead == '\\') ADVANCE(64); if (lookahead == '^') ADVANCE(500); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(244) END_STATE(); case 245: @@ -61409,11 +61568,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(508); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(527); - if (lookahead == '\\') ADVANCE(64); + if (lookahead == '\\') ADVANCE(149); if (lookahead == '^') ADVANCE(500); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(245) END_STATE(); case 246: @@ -61437,7 +61598,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(90); if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(246) END_STATE(); case 247: @@ -61461,7 +61624,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(161); if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(247) END_STATE(); case 248: @@ -61483,11 +61648,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(507); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(527); - if (lookahead == '\\') ADVANCE(171); + if (lookahead == '\\') ADVANCE(185); if (lookahead == '^') ADVANCE(499); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(248) END_STATE(); case 249: @@ -61509,11 +61676,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(507); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(527); - if (lookahead == '\\') ADVANCE(185); + if (lookahead == '\\') ADVANCE(171); if (lookahead == '^') ADVANCE(499); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(249) END_STATE(); case 250: @@ -61537,7 +61706,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(179); if (lookahead == '^') ADVANCE(499); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(250) END_STATE(); case 251: @@ -61574,7 +61745,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(661); if (lookahead == '|') ADVANCE(498); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(251) END_STATE(); case 252: @@ -61595,13 +61768,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(508); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(527); - if (lookahead == '\\') ADVANCE(181); + if (lookahead == '\\') ADVANCE(163); if (lookahead == '^') ADVANCE(500); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(262) END_STATE(); case 253: @@ -61621,13 +61796,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(701); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(527); - if (lookahead == '\\') ADVANCE(159); + if (lookahead == '\\') ADVANCE(177); if (lookahead == '^') ADVANCE(500); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(268) END_STATE(); case 254: @@ -61653,7 +61830,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(720); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(274) END_STATE(); case 255: @@ -61674,7 +61853,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(508); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(527); - if (lookahead == '\\') ADVANCE(70); + if (lookahead == '\\') ADVANCE(72); if (lookahead == '^') ADVANCE(500); if (lookahead == 'b') ADVANCE(664); if (lookahead == 'c') ADVANCE(644); @@ -61689,7 +61868,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(661); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(255) END_STATE(); case 256: @@ -61724,7 +61905,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(661); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(256) END_STATE(); case 257: @@ -61764,7 +61947,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(498); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(257) END_STATE(); case 258: @@ -61784,7 +61969,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(701); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(527); - if (lookahead == '\\') ADVANCE(72); + if (lookahead == '\\') ADVANCE(70); if (lookahead == '^') ADVANCE(499); if (lookahead == 'b') ADVANCE(664); if (lookahead == 'c') ADVANCE(644); @@ -61799,7 +61984,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(661); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(258) END_STATE(); case 259: @@ -61826,7 +62013,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(500); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(259) END_STATE(); case 260: @@ -61848,11 +62037,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(508); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(527); - if (lookahead == '\\') ADVANCE(74); + if (lookahead == '\\') ADVANCE(76); if (lookahead == '^') ADVANCE(500); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(260) END_STATE(); case 261: @@ -61876,7 +62067,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(92); if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(261) END_STATE(); case 262: @@ -61897,10 +62090,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(508); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(527); - if (lookahead == '\\') ADVANCE(181); + if (lookahead == '\\') ADVANCE(163); if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(262) END_STATE(); case 263: @@ -61921,10 +62116,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(508); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(530); - if (lookahead == '\\') ADVANCE(163); + if (lookahead == '\\') ADVANCE(181); if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(263) END_STATE(); case 264: @@ -61951,7 +62148,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(500); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(264) END_STATE(); case 265: @@ -61976,7 +62175,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(500); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(265) END_STATE(); case 266: @@ -62001,7 +62202,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(266) END_STATE(); case 267: @@ -62024,7 +62227,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(86); if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(267) END_STATE(); case 268: @@ -62044,10 +62249,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(701); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(527); - if (lookahead == '\\') ADVANCE(159); + if (lookahead == '\\') ADVANCE(177); if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(268) END_STATE(); case 269: @@ -62067,10 +62274,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(701); if (lookahead == '?') ADVANCE(538); if (lookahead == '[') ADVANCE(530); - if (lookahead == '\\') ADVANCE(177); + if (lookahead == '\\') ADVANCE(159); if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(269) END_STATE(); case 270: @@ -62090,7 +62299,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(100); if (lookahead == '^') ADVANCE(500); if (lookahead == '|') ADVANCE(497); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(270) END_STATE(); case 271: @@ -62119,7 +62330,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(498); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(271) END_STATE(); case 272: @@ -62144,7 +62357,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(499); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(272) END_STATE(); case 273: @@ -62169,7 +62384,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(499); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(273) END_STATE(); case 274: @@ -62192,14 +62409,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(187); if (lookahead == '^') ADVANCE(499); if (lookahead == '|') ADVANCE(498); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(274) END_STATE(); case 275: if (lookahead == '"') ADVANCE(588); if (lookahead == '/') ADVANCE(291); if (lookahead == '\\') ADVANCE(119); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(275) END_STATE(); case 276: @@ -62226,7 +62447,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(611); if (lookahead == 'v') ADVANCE(661); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(276) END_STATE(); case 277: @@ -62240,7 +62463,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'U') ADVANCE(607); if (lookahead == '\\') ADVANCE(115); if (lookahead == 'u') ADVANCE(610); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(277) END_STATE(); case 278: @@ -62252,7 +62477,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'U') ADVANCE(608); if (lookahead == '\\') ADVANCE(117); if (lookahead == 'u') ADVANCE(612); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(278) END_STATE(); case 279: @@ -62269,7 +62496,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(307); if (lookahead == ';') ADVANCE(521); if (lookahead == '[') ADVANCE(528); - if (lookahead == '\\') ADVANCE(28); + if (lookahead == '\\') ADVANCE(26); if (lookahead == 'b') ADVANCE(664); if (lookahead == 'c') ADVANCE(644); if (lookahead == 'd') ADVANCE(660); @@ -62283,7 +62510,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(661); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(280) END_STATE(); case 281: @@ -62307,7 +62536,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(357); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(281) END_STATE(); case 282: @@ -62343,7 +62574,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(357); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(282) END_STATE(); case 283: @@ -62357,7 +62590,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(307); if (lookahead == ';') ADVANCE(521); if (lookahead == '[') ADVANCE(528); - if (lookahead == '\\') ADVANCE(26); + if (lookahead == '\\') ADVANCE(28); if (lookahead == 'b') ADVANCE(664); if (lookahead == 'c') ADVANCE(644); if (lookahead == 'd') ADVANCE(660); @@ -62370,7 +62603,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(649); if (lookahead == 'v') ADVANCE(661); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(283) END_STATE(); case 284: @@ -62394,14 +62629,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(357); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(284) END_STATE(); case 285: if (lookahead == '\'') ADVANCE(579); if (lookahead == '/') ADVANCE(291); if (lookahead == '\\') ADVANCE(119); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(285) END_STATE(); case 286: @@ -62423,7 +62662,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(467); if (lookahead == '/') ADVANCE(291); if (lookahead == '\\') SKIP(127) - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(288) END_STATE(); case 289: @@ -62471,7 +62712,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 300: if (lookahead == '/') ADVANCE(426); if (lookahead == '\\') ADVANCE(424); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(300) if (lookahead != 0) ADVANCE(427); END_STATE(); @@ -62874,7 +63117,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(649); if (lookahead == 'v') ADVANCE(661); if (lookahead == '{') ADVANCE(525); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(384) END_STATE(); case 385: @@ -62902,7 +63147,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(649); if (lookahead == 'v') ADVANCE(661); if (lookahead == '{') ADVANCE(525); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(385) END_STATE(); case 386: @@ -62917,7 +63164,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'f') ADVANCE(681); if (lookahead == 't') ADVANCE(669); if (lookahead == '{') ADVANCE(525); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(386) END_STATE(); case 387: @@ -62939,7 +63188,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(98); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(357); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(387) END_STATE(); case 388: @@ -62959,7 +63210,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(104); if (lookahead == '{') ADVANCE(525); if (lookahead == '|') ADVANCE(357); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(388) END_STATE(); case 389: @@ -62976,7 +63229,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(529); if (lookahead == '\\') ADVANCE(113); if (lookahead == '{') ADVANCE(525); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(389) END_STATE(); case 390: @@ -63039,7 +63294,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(497); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(392) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -63091,7 +63348,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(357); if (lookahead == '}') ADVANCE(526); if (lookahead == '~') ADVANCE(470); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(393) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(564); END_STATE(); @@ -64226,7 +64485,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead == '/') ADVANCE(589); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r') || + lookahead == '\r' || lookahead == ' ') ADVANCE(592); if (lookahead != 0 && lookahead != '\n' && @@ -65068,7 +65327,9 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(21); if (lookahead == 'w') ADVANCE(22); if (lookahead == 'x') ADVANCE(23); - if (('\t' <= lookahead && lookahead <= '\r') || + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: @@ -66948,7 +67209,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [39] = {.lex_state = 202}, [40] = {.lex_state = 202}, [41] = {.lex_state = 202}, - [42] = {.lex_state = 393}, + [42] = {.lex_state = 201}, [43] = {.lex_state = 393}, [44] = {.lex_state = 393}, [45] = {.lex_state = 393}, @@ -66986,15 +67247,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [77] = {.lex_state = 393}, [78] = {.lex_state = 393}, [79] = {.lex_state = 393}, - [80] = {.lex_state = 201}, + [80] = {.lex_state = 393}, [81] = {.lex_state = 393}, - [82] = {.lex_state = 201}, + [82] = {.lex_state = 393}, [83] = {.lex_state = 393}, [84] = {.lex_state = 393}, [85] = {.lex_state = 393}, [86] = {.lex_state = 393}, - [87] = {.lex_state = 393}, - [88] = {.lex_state = 201}, + [87] = {.lex_state = 201}, + [88] = {.lex_state = 393}, [89] = {.lex_state = 393}, [90] = {.lex_state = 393}, [91] = {.lex_state = 393}, @@ -67003,7 +67264,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [94] = {.lex_state = 393}, [95] = {.lex_state = 393}, [96] = {.lex_state = 393}, - [97] = {.lex_state = 393}, + [97] = {.lex_state = 201}, [98] = {.lex_state = 393}, [99] = {.lex_state = 393}, [100] = {.lex_state = 198}, @@ -67016,21 +67277,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [107] = {.lex_state = 202}, [108] = {.lex_state = 202}, [109] = {.lex_state = 202}, - [110] = {.lex_state = 393}, - [111] = {.lex_state = 201}, - [112] = {.lex_state = 201}, - [113] = {.lex_state = 201}, - [114] = {.lex_state = 393}, - [115] = {.lex_state = 393}, - [116] = {.lex_state = 201}, + [110] = {.lex_state = 201}, + [111] = {.lex_state = 393}, + [112] = {.lex_state = 393}, + [113] = {.lex_state = 393}, + [114] = {.lex_state = 201}, + [115] = {.lex_state = 201}, + [116] = {.lex_state = 393}, [117] = {.lex_state = 393}, - [118] = {.lex_state = 393}, - [119] = {.lex_state = 393}, + [118] = {.lex_state = 201}, + [119] = {.lex_state = 201}, [120] = {.lex_state = 393}, [121] = {.lex_state = 393}, [122] = {.lex_state = 393}, [123] = {.lex_state = 393}, - [124] = {.lex_state = 201}, + [124] = {.lex_state = 393}, [125] = {.lex_state = 200}, [126] = {.lex_state = 200}, [127] = {.lex_state = 200}, @@ -67057,22 +67318,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [148] = {.lex_state = 203}, [149] = {.lex_state = 203}, [150] = {.lex_state = 203}, - [151] = {.lex_state = 203}, + [151] = {.lex_state = 393}, [152] = {.lex_state = 189}, [153] = {.lex_state = 393}, - [154] = {.lex_state = 393}, - [155] = {.lex_state = 189}, - [156] = {.lex_state = 191}, + [154] = {.lex_state = 189}, + [155] = {.lex_state = 191}, + [156] = {.lex_state = 193}, [157] = {.lex_state = 200}, - [158] = {.lex_state = 193}, - [159] = {.lex_state = 189}, + [158] = {.lex_state = 189}, + [159] = {.lex_state = 200}, [160] = {.lex_state = 200}, [161] = {.lex_state = 200}, [162] = {.lex_state = 200}, [163] = {.lex_state = 200}, [164] = {.lex_state = 200}, [165] = {.lex_state = 200}, - [166] = {.lex_state = 194}, + [166] = {.lex_state = 200}, [167] = {.lex_state = 200}, [168] = {.lex_state = 200}, [169] = {.lex_state = 200}, @@ -67113,7 +67374,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [204] = {.lex_state = 200}, [205] = {.lex_state = 200}, [206] = {.lex_state = 200}, - [207] = {.lex_state = 200}, + [207] = {.lex_state = 194}, [208] = {.lex_state = 200}, [209] = {.lex_state = 200}, [210] = {.lex_state = 200}, @@ -67135,81 +67396,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [226] = {.lex_state = 200}, [227] = {.lex_state = 200}, [228] = {.lex_state = 200}, - [229] = {.lex_state = 200}, - [230] = {.lex_state = 189}, + [229] = {.lex_state = 189}, + [230] = {.lex_state = 198}, [231] = {.lex_state = 198}, - [232] = {.lex_state = 198}, + [232] = {.lex_state = 193}, [233] = {.lex_state = 198}, - [234] = {.lex_state = 193}, - [235] = {.lex_state = 198}, - [236] = {.lex_state = 198}, - [237] = {.lex_state = 202}, - [238] = {.lex_state = 198}, - [239] = {.lex_state = 198}, + [234] = {.lex_state = 198}, + [235] = {.lex_state = 204}, + [236] = {.lex_state = 204}, + [237] = {.lex_state = 204}, + [238] = {.lex_state = 204}, + [239] = {.lex_state = 204}, [240] = {.lex_state = 198}, - [241] = {.lex_state = 202}, - [242] = {.lex_state = 198}, - [243] = {.lex_state = 198}, - [244] = {.lex_state = 198}, - [245] = {.lex_state = 198}, - [246] = {.lex_state = 198}, + [241] = {.lex_state = 204}, + [242] = {.lex_state = 204}, + [243] = {.lex_state = 204}, + [244] = {.lex_state = 204}, + [245] = {.lex_state = 202}, + [246] = {.lex_state = 204}, [247] = {.lex_state = 204}, - [248] = {.lex_state = 204}, + [248] = {.lex_state = 198}, [249] = {.lex_state = 204}, - [250] = {.lex_state = 198}, - [251] = {.lex_state = 198}, - [252] = {.lex_state = 204}, - [253] = {.lex_state = 198}, + [250] = {.lex_state = 204}, + [251] = {.lex_state = 204}, + [252] = {.lex_state = 198}, + [253] = {.lex_state = 204}, [254] = {.lex_state = 204}, - [255] = {.lex_state = 198}, - [256] = {.lex_state = 198}, + [255] = {.lex_state = 204}, + [256] = {.lex_state = 204}, [257] = {.lex_state = 204}, - [258] = {.lex_state = 204}, - [259] = {.lex_state = 198}, + [258] = {.lex_state = 202}, + [259] = {.lex_state = 204}, [260] = {.lex_state = 198}, - [261] = {.lex_state = 198}, - [262] = {.lex_state = 198}, - [263] = {.lex_state = 198}, - [264] = {.lex_state = 198}, - [265] = {.lex_state = 198}, + [261] = {.lex_state = 204}, + [262] = {.lex_state = 204}, + [263] = {.lex_state = 204}, + [264] = {.lex_state = 204}, + [265] = {.lex_state = 204}, [266] = {.lex_state = 204}, - [267] = {.lex_state = 202}, - [268] = {.lex_state = 198}, + [267] = {.lex_state = 204}, + [268] = {.lex_state = 204}, [269] = {.lex_state = 198}, - [270] = {.lex_state = 198}, - [271] = {.lex_state = 198}, + [270] = {.lex_state = 204}, + [271] = {.lex_state = 204}, [272] = {.lex_state = 198}, [273] = {.lex_state = 198}, [274] = {.lex_state = 198}, [275] = {.lex_state = 198}, [276] = {.lex_state = 198}, - [277] = {.lex_state = 204}, + [277] = {.lex_state = 198}, [278] = {.lex_state = 198}, - [279] = {.lex_state = 204}, - [280] = {.lex_state = 204}, - [281] = {.lex_state = 204}, - [282] = {.lex_state = 204}, + [279] = {.lex_state = 198}, + [280] = {.lex_state = 198}, + [281] = {.lex_state = 198}, + [282] = {.lex_state = 198}, [283] = {.lex_state = 198}, - [284] = {.lex_state = 204}, + [284] = {.lex_state = 198}, [285] = {.lex_state = 198}, [286] = {.lex_state = 198}, - [287] = {.lex_state = 204}, + [287] = {.lex_state = 198}, [288] = {.lex_state = 198}, [289] = {.lex_state = 198}, [290] = {.lex_state = 198}, - [291] = {.lex_state = 204}, - [292] = {.lex_state = 204}, - [293] = {.lex_state = 204}, - [294] = {.lex_state = 204}, - [295] = {.lex_state = 204}, + [291] = {.lex_state = 198}, + [292] = {.lex_state = 198}, + [293] = {.lex_state = 198}, + [294] = {.lex_state = 198}, + [295] = {.lex_state = 198}, [296] = {.lex_state = 198}, [297] = {.lex_state = 198}, [298] = {.lex_state = 198}, [299] = {.lex_state = 198}, [300] = {.lex_state = 198}, - [301] = {.lex_state = 204}, - [302] = {.lex_state = 204}, - [303] = {.lex_state = 204}, + [301] = {.lex_state = 198}, + [302] = {.lex_state = 198}, + [303] = {.lex_state = 198}, [304] = {.lex_state = 198}, [305] = {.lex_state = 198}, [306] = {.lex_state = 198}, @@ -67221,29 +67482,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [312] = {.lex_state = 198}, [313] = {.lex_state = 198}, [314] = {.lex_state = 198}, - [315] = {.lex_state = 202}, + [315] = {.lex_state = 198}, [316] = {.lex_state = 198}, [317] = {.lex_state = 198}, [318] = {.lex_state = 198}, [319] = {.lex_state = 198}, - [320] = {.lex_state = 204}, + [320] = {.lex_state = 198}, [321] = {.lex_state = 198}, - [322] = {.lex_state = 204}, - [323] = {.lex_state = 204}, - [324] = {.lex_state = 198}, + [322] = {.lex_state = 198}, + [323] = {.lex_state = 198}, + [324] = {.lex_state = 202}, [325] = {.lex_state = 198}, [326] = {.lex_state = 198}, [327] = {.lex_state = 198}, [328] = {.lex_state = 198}, - [329] = {.lex_state = 204}, + [329] = {.lex_state = 198}, [330] = {.lex_state = 198}, [331] = {.lex_state = 198}, - [332] = {.lex_state = 204}, + [332] = {.lex_state = 198}, [333] = {.lex_state = 198}, [334] = {.lex_state = 198}, - [335] = {.lex_state = 204}, - [336] = {.lex_state = 204}, - [337] = {.lex_state = 198}, + [335] = {.lex_state = 198}, + [336] = {.lex_state = 198}, + [337] = {.lex_state = 202}, [338] = {.lex_state = 198}, [339] = {.lex_state = 198}, [340] = {.lex_state = 198}, @@ -67254,107 +67515,107 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [345] = {.lex_state = 198}, [346] = {.lex_state = 198}, [347] = {.lex_state = 198}, - [348] = {.lex_state = 393}, + [348] = {.lex_state = 201}, [349] = {.lex_state = 198}, - [350] = {.lex_state = 202}, + [350] = {.lex_state = 393}, [351] = {.lex_state = 202}, - [352] = {.lex_state = 282}, + [352] = {.lex_state = 201}, [353] = {.lex_state = 198}, [354] = {.lex_state = 198}, - [355] = {.lex_state = 393}, - [356] = {.lex_state = 282}, - [357] = {.lex_state = 198}, - [358] = {.lex_state = 201}, + [355] = {.lex_state = 202}, + [356] = {.lex_state = 198}, + [357] = {.lex_state = 282}, + [358] = {.lex_state = 198}, [359] = {.lex_state = 198}, - [360] = {.lex_state = 198}, - [361] = {.lex_state = 202}, + [360] = {.lex_state = 202}, + [361] = {.lex_state = 198}, [362] = {.lex_state = 198}, - [363] = {.lex_state = 198}, - [364] = {.lex_state = 198}, + [363] = {.lex_state = 393}, + [364] = {.lex_state = 282}, [365] = {.lex_state = 198}, - [366] = {.lex_state = 198}, - [367] = {.lex_state = 198}, - [368] = {.lex_state = 282}, + [366] = {.lex_state = 282}, + [367] = {.lex_state = 282}, + [368] = {.lex_state = 198}, [369] = {.lex_state = 198}, [370] = {.lex_state = 198}, - [371] = {.lex_state = 198}, - [372] = {.lex_state = 198}, + [371] = {.lex_state = 282}, + [372] = {.lex_state = 202}, [373] = {.lex_state = 198}, [374] = {.lex_state = 198}, [375] = {.lex_state = 198}, [376] = {.lex_state = 198}, [377] = {.lex_state = 198}, [378] = {.lex_state = 198}, - [379] = {.lex_state = 198}, - [380] = {.lex_state = 198}, + [379] = {.lex_state = 393}, + [380] = {.lex_state = 282}, [381] = {.lex_state = 198}, [382] = {.lex_state = 198}, [383] = {.lex_state = 198}, [384] = {.lex_state = 198}, - [385] = {.lex_state = 202}, + [385] = {.lex_state = 198}, [386] = {.lex_state = 198}, [387] = {.lex_state = 198}, [388] = {.lex_state = 198}, [389] = {.lex_state = 198}, - [390] = {.lex_state = 282}, + [390] = {.lex_state = 198}, [391] = {.lex_state = 198}, [392] = {.lex_state = 198}, [393] = {.lex_state = 198}, - [394] = {.lex_state = 393}, - [395] = {.lex_state = 282}, + [394] = {.lex_state = 198}, + [395] = {.lex_state = 198}, [396] = {.lex_state = 198}, [397] = {.lex_state = 198}, [398] = {.lex_state = 198}, - [399] = {.lex_state = 282}, - [400] = {.lex_state = 282}, + [399] = {.lex_state = 198}, + [400] = {.lex_state = 198}, [401] = {.lex_state = 198}, - [402] = {.lex_state = 202}, - [403] = {.lex_state = 198}, - [404] = {.lex_state = 198}, - [405] = {.lex_state = 198}, + [402] = {.lex_state = 198}, + [403] = {.lex_state = 393}, + [404] = {.lex_state = 202}, + [405] = {.lex_state = 282}, [406] = {.lex_state = 198}, [407] = {.lex_state = 198}, [408] = {.lex_state = 198}, [409] = {.lex_state = 198}, [410] = {.lex_state = 198}, [411] = {.lex_state = 198}, - [412] = {.lex_state = 198}, + [412] = {.lex_state = 282}, [413] = {.lex_state = 198}, - [414] = {.lex_state = 201}, + [414] = {.lex_state = 198}, [415] = {.lex_state = 198}, [416] = {.lex_state = 198}, [417] = {.lex_state = 198}, - [418] = {.lex_state = 393}, + [418] = {.lex_state = 198}, [419] = {.lex_state = 198}, [420] = {.lex_state = 198}, [421] = {.lex_state = 198}, [422] = {.lex_state = 198}, - [423] = {.lex_state = 282}, + [423] = {.lex_state = 198}, [424] = {.lex_state = 198}, [425] = {.lex_state = 198}, - [426] = {.lex_state = 198}, + [426] = {.lex_state = 202}, [427] = {.lex_state = 202}, - [428] = {.lex_state = 200}, + [428] = {.lex_state = 393}, [429] = {.lex_state = 202}, [430] = {.lex_state = 202}, [431] = {.lex_state = 202}, [432] = {.lex_state = 202}, [433] = {.lex_state = 202}, - [434] = {.lex_state = 202}, + [434] = {.lex_state = 201}, [435] = {.lex_state = 202}, - [436] = {.lex_state = 202}, + [436] = {.lex_state = 200}, [437] = {.lex_state = 202}, [438] = {.lex_state = 202}, - [439] = {.lex_state = 393}, - [440] = {.lex_state = 200}, + [439] = {.lex_state = 202}, + [440] = {.lex_state = 202}, [441] = {.lex_state = 202}, [442] = {.lex_state = 202}, - [443] = {.lex_state = 202}, - [444] = {.lex_state = 202}, - [445] = {.lex_state = 200}, + [443] = {.lex_state = 200}, + [444] = {.lex_state = 201}, + [445] = {.lex_state = 202}, [446] = {.lex_state = 202}, [447] = {.lex_state = 202}, - [448] = {.lex_state = 202}, + [448] = {.lex_state = 200}, [449] = {.lex_state = 202}, [450] = {.lex_state = 202}, [451] = {.lex_state = 202}, @@ -67375,15 +67636,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [466] = {.lex_state = 202}, [467] = {.lex_state = 202}, [468] = {.lex_state = 202}, - [469] = {.lex_state = 201}, - [470] = {.lex_state = 201}, + [469] = {.lex_state = 202}, + [470] = {.lex_state = 202}, [471] = {.lex_state = 202}, [472] = {.lex_state = 202}, [473] = {.lex_state = 202}, [474] = {.lex_state = 202}, [475] = {.lex_state = 202}, [476] = {.lex_state = 202}, - [477] = {.lex_state = 393}, + [477] = {.lex_state = 202}, [478] = {.lex_state = 202}, [479] = {.lex_state = 202}, [480] = {.lex_state = 202}, @@ -67401,7 +67662,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [492] = {.lex_state = 202}, [493] = {.lex_state = 202}, [494] = {.lex_state = 202}, - [495] = {.lex_state = 202}, + [495] = {.lex_state = 393}, [496] = {.lex_state = 202}, [497] = {.lex_state = 202}, [498] = {.lex_state = 202}, @@ -67411,107 +67672,107 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [502] = {.lex_state = 202}, [503] = {.lex_state = 202}, [504] = {.lex_state = 202}, - [505] = {.lex_state = 202}, - [506] = {.lex_state = 201}, - [507] = {.lex_state = 202}, + [505] = {.lex_state = 201}, + [506] = {.lex_state = 204}, + [507] = {.lex_state = 204}, [508] = {.lex_state = 201}, [509] = {.lex_state = 202}, [510] = {.lex_state = 204}, [511] = {.lex_state = 202}, [512] = {.lex_state = 204}, [513] = {.lex_state = 202}, - [514] = {.lex_state = 202}, - [515] = {.lex_state = 202}, - [516] = {.lex_state = 202}, + [514] = {.lex_state = 204}, + [515] = {.lex_state = 393}, + [516] = {.lex_state = 201}, [517] = {.lex_state = 202}, - [518] = {.lex_state = 202}, - [519] = {.lex_state = 201}, - [520] = {.lex_state = 202}, - [521] = {.lex_state = 202}, + [518] = {.lex_state = 204}, + [519] = {.lex_state = 202}, + [520] = {.lex_state = 393}, + [521] = {.lex_state = 204}, [522] = {.lex_state = 202}, [523] = {.lex_state = 393}, - [524] = {.lex_state = 202}, + [524] = {.lex_state = 204}, [525] = {.lex_state = 202}, - [526] = {.lex_state = 393}, - [527] = {.lex_state = 204}, - [528] = {.lex_state = 204}, - [529] = {.lex_state = 393}, + [526] = {.lex_state = 202}, + [527] = {.lex_state = 202}, + [528] = {.lex_state = 202}, + [529] = {.lex_state = 202}, [530] = {.lex_state = 202}, - [531] = {.lex_state = 202}, - [532] = {.lex_state = 393}, + [531] = {.lex_state = 204}, + [532] = {.lex_state = 202}, [533] = {.lex_state = 202}, - [534] = {.lex_state = 393}, - [535] = {.lex_state = 204}, + [534] = {.lex_state = 204}, + [535] = {.lex_state = 202}, [536] = {.lex_state = 202}, [537] = {.lex_state = 202}, [538] = {.lex_state = 202}, - [539] = {.lex_state = 202}, + [539] = {.lex_state = 204}, [540] = {.lex_state = 202}, - [541] = {.lex_state = 204}, + [541] = {.lex_state = 202}, [542] = {.lex_state = 202}, - [543] = {.lex_state = 204}, + [543] = {.lex_state = 202}, [544] = {.lex_state = 202}, [545] = {.lex_state = 202}, - [546] = {.lex_state = 202}, + [546] = {.lex_state = 204}, [547] = {.lex_state = 202}, [548] = {.lex_state = 202}, [549] = {.lex_state = 202}, - [550] = {.lex_state = 204}, - [551] = {.lex_state = 393}, - [552] = {.lex_state = 202}, - [553] = {.lex_state = 202}, + [550] = {.lex_state = 202}, + [551] = {.lex_state = 202}, + [552] = {.lex_state = 204}, + [553] = {.lex_state = 201}, [554] = {.lex_state = 393}, [555] = {.lex_state = 204}, [556] = {.lex_state = 202}, [557] = {.lex_state = 204}, [558] = {.lex_state = 202}, - [559] = {.lex_state = 204}, - [560] = {.lex_state = 202}, + [559] = {.lex_state = 202}, + [560] = {.lex_state = 204}, [561] = {.lex_state = 202}, [562] = {.lex_state = 202}, - [563] = {.lex_state = 202}, + [563] = {.lex_state = 393}, [564] = {.lex_state = 202}, [565] = {.lex_state = 202}, - [566] = {.lex_state = 204}, - [567] = {.lex_state = 202}, - [568] = {.lex_state = 201}, + [566] = {.lex_state = 202}, + [567] = {.lex_state = 393}, + [568] = {.lex_state = 202}, [569] = {.lex_state = 202}, [570] = {.lex_state = 202}, - [571] = {.lex_state = 202}, - [572] = {.lex_state = 204}, + [571] = {.lex_state = 393}, + [572] = {.lex_state = 202}, [573] = {.lex_state = 202}, [574] = {.lex_state = 204}, [575] = {.lex_state = 202}, - [576] = {.lex_state = 204}, - [577] = {.lex_state = 204}, + [576] = {.lex_state = 202}, + [577] = {.lex_state = 202}, [578] = {.lex_state = 202}, - [579] = {.lex_state = 204}, - [580] = {.lex_state = 202}, + [579] = {.lex_state = 202}, + [580] = {.lex_state = 204}, [581] = {.lex_state = 202}, [582] = {.lex_state = 202}, - [583] = {.lex_state = 204}, + [583] = {.lex_state = 202}, [584] = {.lex_state = 202}, - [585] = {.lex_state = 393}, - [586] = {.lex_state = 202}, + [585] = {.lex_state = 202}, + [586] = {.lex_state = 393}, [587] = {.lex_state = 202}, - [588] = {.lex_state = 202}, + [588] = {.lex_state = 201}, [589] = {.lex_state = 202}, [590] = {.lex_state = 202}, [591] = {.lex_state = 202}, [592] = {.lex_state = 202}, - [593] = {.lex_state = 201}, + [593] = {.lex_state = 202}, [594] = {.lex_state = 202}, - [595] = {.lex_state = 202}, + [595] = {.lex_state = 204}, [596] = {.lex_state = 202}, - [597] = {.lex_state = 204}, - [598] = {.lex_state = 202}, - [599] = {.lex_state = 201}, - [600] = {.lex_state = 201}, + [597] = {.lex_state = 202}, + [598] = {.lex_state = 393}, + [599] = {.lex_state = 393}, + [600] = {.lex_state = 393}, [601] = {.lex_state = 393}, - [602] = {.lex_state = 393}, + [602] = {.lex_state = 201}, [603] = {.lex_state = 251}, [604] = {.lex_state = 393}, - [605] = {.lex_state = 203}, + [605] = {.lex_state = 393}, [606] = {.lex_state = 393}, [607] = {.lex_state = 393}, [608] = {.lex_state = 393}, @@ -67519,126 +67780,126 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [610] = {.lex_state = 393}, [611] = {.lex_state = 393}, [612] = {.lex_state = 393}, - [613] = {.lex_state = 393}, + [613] = {.lex_state = 203}, [614] = {.lex_state = 201}, - [615] = {.lex_state = 201}, + [615] = {.lex_state = 393}, [616] = {.lex_state = 201}, [617] = {.lex_state = 393}, - [618] = {.lex_state = 201}, - [619] = {.lex_state = 393}, - [620] = {.lex_state = 393}, - [621] = {.lex_state = 201}, + [618] = {.lex_state = 393}, + [619] = {.lex_state = 201}, + [620] = {.lex_state = 201}, + [621] = {.lex_state = 393}, [622] = {.lex_state = 201}, [623] = {.lex_state = 393}, - [624] = {.lex_state = 393}, + [624] = {.lex_state = 201}, [625] = {.lex_state = 201}, [626] = {.lex_state = 201}, - [627] = {.lex_state = 393}, + [627] = {.lex_state = 201}, [628] = {.lex_state = 393}, - [629] = {.lex_state = 203}, + [629] = {.lex_state = 393}, [630] = {.lex_state = 393}, - [631] = {.lex_state = 393}, - [632] = {.lex_state = 393}, + [631] = {.lex_state = 201}, + [632] = {.lex_state = 201}, [633] = {.lex_state = 393}, - [634] = {.lex_state = 393}, - [635] = {.lex_state = 393}, - [636] = {.lex_state = 393}, - [637] = {.lex_state = 393}, - [638] = {.lex_state = 393}, + [634] = {.lex_state = 201}, + [635] = {.lex_state = 201}, + [636] = {.lex_state = 201}, + [637] = {.lex_state = 201}, + [638] = {.lex_state = 201}, [639] = {.lex_state = 201}, - [640] = {.lex_state = 393}, - [641] = {.lex_state = 393}, - [642] = {.lex_state = 393}, - [643] = {.lex_state = 201}, - [644] = {.lex_state = 393}, - [645] = {.lex_state = 393}, + [640] = {.lex_state = 201}, + [641] = {.lex_state = 201}, + [642] = {.lex_state = 201}, + [643] = {.lex_state = 393}, + [644] = {.lex_state = 201}, + [645] = {.lex_state = 201}, [646] = {.lex_state = 393}, [647] = {.lex_state = 393}, [648] = {.lex_state = 393}, [649] = {.lex_state = 393}, [650] = {.lex_state = 393}, - [651] = {.lex_state = 393}, + [651] = {.lex_state = 201}, [652] = {.lex_state = 393}, - [653] = {.lex_state = 200}, - [654] = {.lex_state = 393}, + [653] = {.lex_state = 393}, + [654] = {.lex_state = 201}, [655] = {.lex_state = 393}, - [656] = {.lex_state = 393}, - [657] = {.lex_state = 393}, + [656] = {.lex_state = 201}, + [657] = {.lex_state = 201}, [658] = {.lex_state = 393}, - [659] = {.lex_state = 393}, + [659] = {.lex_state = 201}, [660] = {.lex_state = 201}, - [661] = {.lex_state = 393}, + [661] = {.lex_state = 201}, [662] = {.lex_state = 393}, - [663] = {.lex_state = 393}, - [664] = {.lex_state = 393}, - [665] = {.lex_state = 393}, + [663] = {.lex_state = 201}, + [664] = {.lex_state = 201}, + [665] = {.lex_state = 201}, [666] = {.lex_state = 393}, - [667] = {.lex_state = 393}, - [668] = {.lex_state = 393}, - [669] = {.lex_state = 393}, + [667] = {.lex_state = 201}, + [668] = {.lex_state = 201}, + [669] = {.lex_state = 201}, [670] = {.lex_state = 393}, [671] = {.lex_state = 393}, - [672] = {.lex_state = 393}, - [673] = {.lex_state = 393}, + [672] = {.lex_state = 201}, + [673] = {.lex_state = 282}, [674] = {.lex_state = 393}, - [675] = {.lex_state = 393}, - [676] = {.lex_state = 393}, - [677] = {.lex_state = 393}, + [675] = {.lex_state = 201}, + [676] = {.lex_state = 201}, + [677] = {.lex_state = 201}, [678] = {.lex_state = 393}, - [679] = {.lex_state = 251}, - [680] = {.lex_state = 393}, - [681] = {.lex_state = 393}, - [682] = {.lex_state = 393}, + [679] = {.lex_state = 201}, + [680] = {.lex_state = 201}, + [681] = {.lex_state = 201}, + [682] = {.lex_state = 201}, [683] = {.lex_state = 393}, - [684] = {.lex_state = 393}, + [684] = {.lex_state = 201}, [685] = {.lex_state = 393}, [686] = {.lex_state = 393}, - [687] = {.lex_state = 393}, + [687] = {.lex_state = 201}, [688] = {.lex_state = 393}, - [689] = {.lex_state = 393}, - [690] = {.lex_state = 393}, + [689] = {.lex_state = 201}, + [690] = {.lex_state = 201}, [691] = {.lex_state = 393}, [692] = {.lex_state = 393}, - [693] = {.lex_state = 393}, - [694] = {.lex_state = 393}, - [695] = {.lex_state = 393}, - [696] = {.lex_state = 393}, - [697] = {.lex_state = 201}, - [698] = {.lex_state = 393}, - [699] = {.lex_state = 393}, + [693] = {.lex_state = 204}, + [694] = {.lex_state = 201}, + [695] = {.lex_state = 251}, + [696] = {.lex_state = 201}, + [697] = {.lex_state = 393}, + [698] = {.lex_state = 251}, + [699] = {.lex_state = 201}, [700] = {.lex_state = 393}, - [701] = {.lex_state = 393}, - [702] = {.lex_state = 393}, + [701] = {.lex_state = 201}, + [702] = {.lex_state = 200}, [703] = {.lex_state = 393}, [704] = {.lex_state = 201}, [705] = {.lex_state = 393}, - [706] = {.lex_state = 393}, + [706] = {.lex_state = 201}, [707] = {.lex_state = 393}, [708] = {.lex_state = 393}, [709] = {.lex_state = 393}, - [710] = {.lex_state = 393}, - [711] = {.lex_state = 393}, + [710] = {.lex_state = 201}, + [711] = {.lex_state = 201}, [712] = {.lex_state = 393}, - [713] = {.lex_state = 393}, + [713] = {.lex_state = 201}, [714] = {.lex_state = 393}, [715] = {.lex_state = 393}, - [716] = {.lex_state = 393}, - [717] = {.lex_state = 393}, - [718] = {.lex_state = 251}, - [719] = {.lex_state = 393}, - [720] = {.lex_state = 204}, - [721] = {.lex_state = 251}, - [722] = {.lex_state = 393}, + [716] = {.lex_state = 201}, + [717] = {.lex_state = 201}, + [718] = {.lex_state = 393}, + [719] = {.lex_state = 201}, + [720] = {.lex_state = 393}, + [721] = {.lex_state = 201}, + [722] = {.lex_state = 201}, [723] = {.lex_state = 393}, - [724] = {.lex_state = 251}, - [725] = {.lex_state = 201}, + [724] = {.lex_state = 201}, + [725] = {.lex_state = 393}, [726] = {.lex_state = 393}, [727] = {.lex_state = 201}, - [728] = {.lex_state = 393}, + [728] = {.lex_state = 201}, [729] = {.lex_state = 393}, [730] = {.lex_state = 393}, [731] = {.lex_state = 393}, - [732] = {.lex_state = 201}, + [732] = {.lex_state = 393}, [733] = {.lex_state = 393}, [734] = {.lex_state = 393}, [735] = {.lex_state = 393}, @@ -67648,171 +67909,171 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [739] = {.lex_state = 393}, [740] = {.lex_state = 393}, [741] = {.lex_state = 393}, - [742] = {.lex_state = 393}, + [742] = {.lex_state = 201}, [743] = {.lex_state = 393}, - [744] = {.lex_state = 393}, + [744] = {.lex_state = 251}, [745] = {.lex_state = 201}, - [746] = {.lex_state = 201}, + [746] = {.lex_state = 393}, [747] = {.lex_state = 393}, - [748] = {.lex_state = 201}, - [749] = {.lex_state = 201}, + [748] = {.lex_state = 393}, + [749] = {.lex_state = 393}, [750] = {.lex_state = 393}, - [751] = {.lex_state = 393}, + [751] = {.lex_state = 251}, [752] = {.lex_state = 393}, [753] = {.lex_state = 393}, - [754] = {.lex_state = 201}, + [754] = {.lex_state = 393}, [755] = {.lex_state = 201}, [756] = {.lex_state = 393}, - [757] = {.lex_state = 393}, + [757] = {.lex_state = 203}, [758] = {.lex_state = 393}, [759] = {.lex_state = 393}, - [760] = {.lex_state = 201}, - [761] = {.lex_state = 393}, - [762] = {.lex_state = 201}, - [763] = {.lex_state = 201}, - [764] = {.lex_state = 201}, - [765] = {.lex_state = 251}, - [766] = {.lex_state = 201}, + [760] = {.lex_state = 393}, + [761] = {.lex_state = 251}, + [762] = {.lex_state = 393}, + [763] = {.lex_state = 393}, + [764] = {.lex_state = 393}, + [765] = {.lex_state = 393}, + [766] = {.lex_state = 393}, [767] = {.lex_state = 201}, - [768] = {.lex_state = 201}, - [769] = {.lex_state = 201}, - [770] = {.lex_state = 251}, - [771] = {.lex_state = 201}, - [772] = {.lex_state = 201}, + [768] = {.lex_state = 393}, + [769] = {.lex_state = 393}, + [770] = {.lex_state = 393}, + [771] = {.lex_state = 393}, + [772] = {.lex_state = 393}, [773] = {.lex_state = 393}, - [774] = {.lex_state = 201}, + [774] = {.lex_state = 251}, [775] = {.lex_state = 393}, - [776] = {.lex_state = 201}, - [777] = {.lex_state = 201}, - [778] = {.lex_state = 201}, - [779] = {.lex_state = 201}, - [780] = {.lex_state = 201}, + [776] = {.lex_state = 393}, + [777] = {.lex_state = 251}, + [778] = {.lex_state = 393}, + [779] = {.lex_state = 393}, + [780] = {.lex_state = 393}, [781] = {.lex_state = 393}, - [782] = {.lex_state = 393}, - [783] = {.lex_state = 201}, - [784] = {.lex_state = 201}, - [785] = {.lex_state = 201}, - [786] = {.lex_state = 201}, + [782] = {.lex_state = 201}, + [783] = {.lex_state = 393}, + [784] = {.lex_state = 393}, + [785] = {.lex_state = 393}, + [786] = {.lex_state = 393}, [787] = {.lex_state = 201}, - [788] = {.lex_state = 201}, - [789] = {.lex_state = 201}, - [790] = {.lex_state = 201}, - [791] = {.lex_state = 201}, - [792] = {.lex_state = 201}, - [793] = {.lex_state = 201}, + [788] = {.lex_state = 393}, + [789] = {.lex_state = 393}, + [790] = {.lex_state = 251}, + [791] = {.lex_state = 393}, + [792] = {.lex_state = 393}, + [793] = {.lex_state = 393}, [794] = {.lex_state = 393}, - [795] = {.lex_state = 201}, + [795] = {.lex_state = 393}, [796] = {.lex_state = 201}, - [797] = {.lex_state = 201}, - [798] = {.lex_state = 201}, - [799] = {.lex_state = 201}, - [800] = {.lex_state = 201}, - [801] = {.lex_state = 201}, - [802] = {.lex_state = 201}, - [803] = {.lex_state = 201}, + [797] = {.lex_state = 393}, + [798] = {.lex_state = 393}, + [799] = {.lex_state = 393}, + [800] = {.lex_state = 393}, + [801] = {.lex_state = 393}, + [802] = {.lex_state = 393}, + [803] = {.lex_state = 393}, [804] = {.lex_state = 393}, - [805] = {.lex_state = 201}, - [806] = {.lex_state = 201}, - [807] = {.lex_state = 251}, - [808] = {.lex_state = 201}, + [805] = {.lex_state = 393}, + [806] = {.lex_state = 393}, + [807] = {.lex_state = 393}, + [808] = {.lex_state = 393}, [809] = {.lex_state = 393}, [810] = {.lex_state = 393}, - [811] = {.lex_state = 201}, - [812] = {.lex_state = 201}, - [813] = {.lex_state = 201}, - [814] = {.lex_state = 201}, - [815] = {.lex_state = 201}, - [816] = {.lex_state = 282}, - [817] = {.lex_state = 201}, + [811] = {.lex_state = 393}, + [812] = {.lex_state = 393}, + [813] = {.lex_state = 393}, + [814] = {.lex_state = 393}, + [815] = {.lex_state = 393}, + [816] = {.lex_state = 393}, + [817] = {.lex_state = 393}, [818] = {.lex_state = 393}, [819] = {.lex_state = 393}, - [820] = {.lex_state = 201}, - [821] = {.lex_state = 201}, + [820] = {.lex_state = 393}, + [821] = {.lex_state = 393}, [822] = {.lex_state = 393}, [823] = {.lex_state = 393}, [824] = {.lex_state = 393}, [825] = {.lex_state = 393}, [826] = {.lex_state = 251}, - [827] = {.lex_state = 251}, + [827] = {.lex_state = 393}, [828] = {.lex_state = 393}, - [829] = {.lex_state = 201}, + [829] = {.lex_state = 393}, [830] = {.lex_state = 201}, [831] = {.lex_state = 393}, - [832] = {.lex_state = 201}, - [833] = {.lex_state = 201}, - [834] = {.lex_state = 201}, - [835] = {.lex_state = 393}, - [836] = {.lex_state = 393}, + [832] = {.lex_state = 393}, + [833] = {.lex_state = 393}, + [834] = {.lex_state = 393}, + [835] = {.lex_state = 201}, + [836] = {.lex_state = 201}, [837] = {.lex_state = 201}, [838] = {.lex_state = 201}, [839] = {.lex_state = 201}, - [840] = {.lex_state = 393}, + [840] = {.lex_state = 201}, [841] = {.lex_state = 201}, [842] = {.lex_state = 201}, [843] = {.lex_state = 201}, - [844] = {.lex_state = 201}, - [845] = {.lex_state = 201}, - [846] = {.lex_state = 201}, - [847] = {.lex_state = 201}, + [844] = {.lex_state = 393}, + [845] = {.lex_state = 393}, + [846] = {.lex_state = 393}, + [847] = {.lex_state = 393}, [848] = {.lex_state = 201}, [849] = {.lex_state = 201}, - [850] = {.lex_state = 201}, + [850] = {.lex_state = 393}, [851] = {.lex_state = 201}, - [852] = {.lex_state = 201}, - [853] = {.lex_state = 201}, + [852] = {.lex_state = 393}, + [853] = {.lex_state = 393}, [854] = {.lex_state = 393}, - [855] = {.lex_state = 393}, - [856] = {.lex_state = 393}, - [857] = {.lex_state = 393}, - [858] = {.lex_state = 201}, + [855] = {.lex_state = 201}, + [856] = {.lex_state = 201}, + [857] = {.lex_state = 201}, + [858] = {.lex_state = 393}, [859] = {.lex_state = 393}, [860] = {.lex_state = 201}, [861] = {.lex_state = 201}, [862] = {.lex_state = 393}, [863] = {.lex_state = 201}, [864] = {.lex_state = 393}, - [865] = {.lex_state = 201}, - [866] = {.lex_state = 393}, + [865] = {.lex_state = 393}, + [866] = {.lex_state = 201}, [867] = {.lex_state = 201}, - [868] = {.lex_state = 393}, - [869] = {.lex_state = 201}, + [868] = {.lex_state = 201}, + [869] = {.lex_state = 393}, [870] = {.lex_state = 393}, [871] = {.lex_state = 201}, - [872] = {.lex_state = 393}, + [872] = {.lex_state = 201}, [873] = {.lex_state = 201}, - [874] = {.lex_state = 393}, + [874] = {.lex_state = 201}, [875] = {.lex_state = 201}, - [876] = {.lex_state = 201}, - [877] = {.lex_state = 393}, - [878] = {.lex_state = 201}, + [876] = {.lex_state = 393}, + [877] = {.lex_state = 201}, + [878] = {.lex_state = 393}, [879] = {.lex_state = 201}, - [880] = {.lex_state = 201}, + [880] = {.lex_state = 393}, [881] = {.lex_state = 201}, - [882] = {.lex_state = 201}, - [883] = {.lex_state = 393}, + [882] = {.lex_state = 393}, + [883] = {.lex_state = 201}, [884] = {.lex_state = 201}, - [885] = {.lex_state = 393}, - [886] = {.lex_state = 393}, - [887] = {.lex_state = 201}, + [885] = {.lex_state = 201}, + [886] = {.lex_state = 201}, + [887] = {.lex_state = 393}, [888] = {.lex_state = 393}, [889] = {.lex_state = 393}, - [890] = {.lex_state = 201}, + [890] = {.lex_state = 393}, [891] = {.lex_state = 201}, [892] = {.lex_state = 393}, [893] = {.lex_state = 393}, - [894] = {.lex_state = 393}, - [895] = {.lex_state = 393}, - [896] = {.lex_state = 393}, + [894] = {.lex_state = 201}, + [895] = {.lex_state = 201}, + [896] = {.lex_state = 201}, [897] = {.lex_state = 393}, [898] = {.lex_state = 393}, [899] = {.lex_state = 393}, - [900] = {.lex_state = 393}, + [900] = {.lex_state = 201}, [901] = {.lex_state = 393}, [902] = {.lex_state = 393}, - [903] = {.lex_state = 393}, + [903] = {.lex_state = 201}, [904] = {.lex_state = 393}, [905] = {.lex_state = 393}, - [906] = {.lex_state = 393}, + [906] = {.lex_state = 201}, [907] = {.lex_state = 393}, [908] = {.lex_state = 393}, [909] = {.lex_state = 393}, @@ -67820,30 +68081,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [911] = {.lex_state = 393}, [912] = {.lex_state = 393}, [913] = {.lex_state = 201}, - [914] = {.lex_state = 393}, + [914] = {.lex_state = 201}, [915] = {.lex_state = 201}, - [916] = {.lex_state = 393}, + [916] = {.lex_state = 201}, [917] = {.lex_state = 393}, [918] = {.lex_state = 393}, - [919] = {.lex_state = 201}, + [919] = {.lex_state = 393}, [920] = {.lex_state = 393}, - [921] = {.lex_state = 201}, - [922] = {.lex_state = 393}, + [921] = {.lex_state = 393}, + [922] = {.lex_state = 201}, [923] = {.lex_state = 201}, - [924] = {.lex_state = 393}, + [924] = {.lex_state = 201}, [925] = {.lex_state = 393}, [926] = {.lex_state = 201}, - [927] = {.lex_state = 201}, - [928] = {.lex_state = 393}, - [929] = {.lex_state = 201}, + [927] = {.lex_state = 393}, + [928] = {.lex_state = 201}, + [929] = {.lex_state = 393}, [930] = {.lex_state = 393}, [931] = {.lex_state = 393}, [932] = {.lex_state = 393}, - [933] = {.lex_state = 393}, - [934] = {.lex_state = 201}, + [933] = {.lex_state = 201}, + [934] = {.lex_state = 393}, [935] = {.lex_state = 201}, [936] = {.lex_state = 201}, - [937] = {.lex_state = 201}, + [937] = {.lex_state = 393}, [938] = {.lex_state = 201}, [939] = {.lex_state = 201}, [940] = {.lex_state = 393}, @@ -67853,38 +68114,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [944] = {.lex_state = 201}, [945] = {.lex_state = 201}, [946] = {.lex_state = 393}, - [947] = {.lex_state = 393}, - [948] = {.lex_state = 201}, - [949] = {.lex_state = 201}, - [950] = {.lex_state = 393}, + [947] = {.lex_state = 201}, + [948] = {.lex_state = 393}, + [949] = {.lex_state = 393}, + [950] = {.lex_state = 201}, [951] = {.lex_state = 393}, [952] = {.lex_state = 393}, [953] = {.lex_state = 393}, - [954] = {.lex_state = 201}, + [954] = {.lex_state = 190}, [955] = {.lex_state = 251}, - [956] = {.lex_state = 190}, + [956] = {.lex_state = 393}, [957] = {.lex_state = 393}, - [958] = {.lex_state = 393}, + [958] = {.lex_state = 280}, [959] = {.lex_state = 283}, - [960] = {.lex_state = 393}, + [960] = {.lex_state = 280}, [961] = {.lex_state = 393}, - [962] = {.lex_state = 280}, - [963] = {.lex_state = 393}, + [962] = {.lex_state = 393}, + [963] = {.lex_state = 280}, [964] = {.lex_state = 393}, - [965] = {.lex_state = 190}, - [966] = {.lex_state = 393}, - [967] = {.lex_state = 192}, - [968] = {.lex_state = 280}, - [969] = {.lex_state = 283}, + [965] = {.lex_state = 393}, + [966] = {.lex_state = 280}, + [967] = {.lex_state = 190}, + [968] = {.lex_state = 393}, + [969] = {.lex_state = 393}, [970] = {.lex_state = 280}, - [971] = {.lex_state = 280}, + [971] = {.lex_state = 393}, [972] = {.lex_state = 393}, - [973] = {.lex_state = 280}, + [973] = {.lex_state = 393}, [974] = {.lex_state = 393}, - [975] = {.lex_state = 393}, - [976] = {.lex_state = 280}, + [975] = {.lex_state = 280}, + [976] = {.lex_state = 393}, [977] = {.lex_state = 280}, - [978] = {.lex_state = 393}, + [978] = {.lex_state = 280}, [979] = {.lex_state = 393}, [980] = {.lex_state = 280}, [981] = {.lex_state = 393}, @@ -67892,76 +68153,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [983] = {.lex_state = 393}, [984] = {.lex_state = 393}, [985] = {.lex_state = 393}, - [986] = {.lex_state = 280}, + [986] = {.lex_state = 393}, [987] = {.lex_state = 393}, - [988] = {.lex_state = 393}, + [988] = {.lex_state = 280}, [989] = {.lex_state = 280}, - [990] = {.lex_state = 393}, - [991] = {.lex_state = 280}, + [990] = {.lex_state = 280}, + [991] = {.lex_state = 393}, [992] = {.lex_state = 393}, - [993] = {.lex_state = 393}, + [993] = {.lex_state = 280}, [994] = {.lex_state = 393}, [995] = {.lex_state = 393}, [996] = {.lex_state = 393}, - [997] = {.lex_state = 280}, - [998] = {.lex_state = 393}, - [999] = {.lex_state = 393}, - [1000] = {.lex_state = 280}, + [997] = {.lex_state = 393}, + [998] = {.lex_state = 280}, + [999] = {.lex_state = 280}, + [1000] = {.lex_state = 393}, [1001] = {.lex_state = 393}, [1002] = {.lex_state = 393}, - [1003] = {.lex_state = 280}, + [1003] = {.lex_state = 393}, [1004] = {.lex_state = 393}, [1005] = {.lex_state = 393}, - [1006] = {.lex_state = 280}, + [1006] = {.lex_state = 393}, [1007] = {.lex_state = 393}, - [1008] = {.lex_state = 393}, + [1008] = {.lex_state = 280}, [1009] = {.lex_state = 393}, - [1010] = {.lex_state = 280}, + [1010] = {.lex_state = 393}, [1011] = {.lex_state = 393}, [1012] = {.lex_state = 393}, - [1013] = {.lex_state = 393}, + [1013] = {.lex_state = 280}, [1014] = {.lex_state = 393}, [1015] = {.lex_state = 280}, - [1016] = {.lex_state = 280}, + [1016] = {.lex_state = 393}, [1017] = {.lex_state = 393}, [1018] = {.lex_state = 393}, [1019] = {.lex_state = 393}, - [1020] = {.lex_state = 393}, + [1020] = {.lex_state = 280}, [1021] = {.lex_state = 393}, [1022] = {.lex_state = 393}, [1023] = {.lex_state = 393}, [1024] = {.lex_state = 393}, - [1025] = {.lex_state = 283}, - [1026] = {.lex_state = 280}, + [1025] = {.lex_state = 393}, + [1026] = {.lex_state = 393}, [1027] = {.lex_state = 393}, [1028] = {.lex_state = 393}, [1029] = {.lex_state = 280}, - [1030] = {.lex_state = 393}, + [1030] = {.lex_state = 280}, [1031] = {.lex_state = 393}, [1032] = {.lex_state = 393}, [1033] = {.lex_state = 393}, [1034] = {.lex_state = 393}, - [1035] = {.lex_state = 393}, - [1036] = {.lex_state = 280}, - [1037] = {.lex_state = 280}, + [1035] = {.lex_state = 283}, + [1036] = {.lex_state = 393}, + [1037] = {.lex_state = 393}, [1038] = {.lex_state = 393}, [1039] = {.lex_state = 393}, - [1040] = {.lex_state = 393}, - [1041] = {.lex_state = 393}, + [1040] = {.lex_state = 280}, + [1041] = {.lex_state = 280}, [1042] = {.lex_state = 393}, [1043] = {.lex_state = 280}, - [1044] = {.lex_state = 393}, + [1044] = {.lex_state = 283}, [1045] = {.lex_state = 280}, [1046] = {.lex_state = 393}, - [1047] = {.lex_state = 393}, - [1048] = {.lex_state = 280}, - [1049] = {.lex_state = 190}, - [1050] = {.lex_state = 195}, + [1047] = {.lex_state = 192}, + [1048] = {.lex_state = 190}, + [1049] = {.lex_state = 195}, + [1050] = {.lex_state = 190}, [1051] = {.lex_state = 190}, [1052] = {.lex_state = 190}, - [1053] = {.lex_state = 190}, + [1053] = {.lex_state = 196}, [1054] = {.lex_state = 196}, - [1055] = {.lex_state = 196}, + [1055] = {.lex_state = 282}, [1056] = {.lex_state = 282}, [1057] = {.lex_state = 282}, [1058] = {.lex_state = 282}, @@ -67970,9 +68231,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1061] = {.lex_state = 282}, [1062] = {.lex_state = 282}, [1063] = {.lex_state = 282}, - [1064] = {.lex_state = 282}, + [1064] = {.lex_state = 393}, [1065] = {.lex_state = 393}, - [1066] = {.lex_state = 393}, + [1066] = {.lex_state = 282}, [1067] = {.lex_state = 282}, [1068] = {.lex_state = 282}, [1069] = {.lex_state = 282}, @@ -67981,10 +68242,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1072] = {.lex_state = 282}, [1073] = {.lex_state = 282}, [1074] = {.lex_state = 282}, - [1075] = {.lex_state = 282}, - [1076] = {.lex_state = 393}, + [1075] = {.lex_state = 393}, + [1076] = {.lex_state = 200}, [1077] = {.lex_state = 200}, - [1078] = {.lex_state = 200}, + [1078] = {.lex_state = 204}, [1079] = {.lex_state = 204}, [1080] = {.lex_state = 204}, [1081] = {.lex_state = 204}, @@ -68007,12 +68268,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1098] = {.lex_state = 204}, [1099] = {.lex_state = 204}, [1100] = {.lex_state = 204}, - [1101] = {.lex_state = 204}, - [1102] = {.lex_state = 200}, - [1103] = {.lex_state = 200}, - [1104] = {.lex_state = 203}, + [1101] = {.lex_state = 200}, + [1102] = {.lex_state = 203}, + [1103] = {.lex_state = 203}, + [1104] = {.lex_state = 200}, [1105] = {.lex_state = 200}, - [1106] = {.lex_state = 203}, + [1106] = {.lex_state = 200}, [1107] = {.lex_state = 200}, [1108] = {.lex_state = 200}, [1109] = {.lex_state = 200}, @@ -68088,72 +68349,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1179] = {.lex_state = 200}, [1180] = {.lex_state = 200}, [1181] = {.lex_state = 200}, - [1182] = {.lex_state = 200}, - [1183] = {.lex_state = 222}, + [1182] = {.lex_state = 222}, + [1183] = {.lex_state = 204}, [1184] = {.lex_state = 204}, - [1185] = {.lex_state = 204}, + [1185] = {.lex_state = 219}, [1186] = {.lex_state = 204}, [1187] = {.lex_state = 204}, - [1188] = {.lex_state = 204}, - [1189] = {.lex_state = 204}, + [1188] = {.lex_state = 222}, + [1189] = {.lex_state = 222}, [1190] = {.lex_state = 204}, [1191] = {.lex_state = 222}, - [1192] = {.lex_state = 219}, + [1192] = {.lex_state = 204}, [1193] = {.lex_state = 204}, [1194] = {.lex_state = 204}, - [1195] = {.lex_state = 204}, + [1195] = {.lex_state = 222}, [1196] = {.lex_state = 222}, [1197] = {.lex_state = 204}, [1198] = {.lex_state = 204}, - [1199] = {.lex_state = 204}, + [1199] = {.lex_state = 222}, [1200] = {.lex_state = 204}, [1201] = {.lex_state = 204}, - [1202] = {.lex_state = 204}, - [1203] = {.lex_state = 222}, - [1204] = {.lex_state = 222}, - [1205] = {.lex_state = 222}, - [1206] = {.lex_state = 204}, + [1202] = {.lex_state = 222}, + [1203] = {.lex_state = 204}, + [1204] = {.lex_state = 204}, + [1205] = {.lex_state = 204}, + [1206] = {.lex_state = 222}, [1207] = {.lex_state = 204}, - [1208] = {.lex_state = 204}, + [1208] = {.lex_state = 222}, [1209] = {.lex_state = 204}, [1210] = {.lex_state = 204}, - [1211] = {.lex_state = 222}, + [1211] = {.lex_state = 204}, [1212] = {.lex_state = 204}, [1213] = {.lex_state = 204}, [1214] = {.lex_state = 204}, [1215] = {.lex_state = 204}, - [1216] = {.lex_state = 222}, + [1216] = {.lex_state = 204}, [1217] = {.lex_state = 204}, - [1218] = {.lex_state = 222}, + [1218] = {.lex_state = 204}, [1219] = {.lex_state = 204}, [1220] = {.lex_state = 204}, [1221] = {.lex_state = 204}, - [1222] = {.lex_state = 204}, - [1223] = {.lex_state = 222}, - [1224] = {.lex_state = 222}, - [1225] = {.lex_state = 204}, + [1222] = {.lex_state = 222}, + [1223] = {.lex_state = 204}, + [1224] = {.lex_state = 204}, + [1225] = {.lex_state = 222}, [1226] = {.lex_state = 204}, - [1227] = {.lex_state = 222}, + [1227] = {.lex_state = 204}, [1228] = {.lex_state = 204}, [1229] = {.lex_state = 204}, - [1230] = {.lex_state = 204}, + [1230] = {.lex_state = 222}, [1231] = {.lex_state = 204}, [1232] = {.lex_state = 204}, [1233] = {.lex_state = 204}, [1234] = {.lex_state = 204}, [1235] = {.lex_state = 204}, [1236] = {.lex_state = 204}, - [1237] = {.lex_state = 222}, + [1237] = {.lex_state = 204}, [1238] = {.lex_state = 204}, - [1239] = {.lex_state = 222}, + [1239] = {.lex_state = 204}, [1240] = {.lex_state = 204}, - [1241] = {.lex_state = 204}, + [1241] = {.lex_state = 222}, [1242] = {.lex_state = 204}, [1243] = {.lex_state = 204}, [1244] = {.lex_state = 204}, [1245] = {.lex_state = 204}, - [1246] = {.lex_state = 204}, - [1247] = {.lex_state = 282}, + [1246] = {.lex_state = 282}, + [1247] = {.lex_state = 204}, [1248] = {.lex_state = 204}, [1249] = {.lex_state = 204}, [1250] = {.lex_state = 204}, @@ -68180,89 +68441,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1271] = {.lex_state = 204}, [1272] = {.lex_state = 204}, [1273] = {.lex_state = 204}, - [1274] = {.lex_state = 204}, + [1274] = {.lex_state = 203}, [1275] = {.lex_state = 204}, [1276] = {.lex_state = 204}, - [1277] = {.lex_state = 203}, - [1278] = {.lex_state = 203}, + [1277] = {.lex_state = 204}, + [1278] = {.lex_state = 204}, [1279] = {.lex_state = 204}, [1280] = {.lex_state = 204}, - [1281] = {.lex_state = 203}, + [1281] = {.lex_state = 204}, [1282] = {.lex_state = 204}, [1283] = {.lex_state = 203}, [1284] = {.lex_state = 204}, [1285] = {.lex_state = 203}, - [1286] = {.lex_state = 203}, + [1286] = {.lex_state = 204}, [1287] = {.lex_state = 203}, [1288] = {.lex_state = 204}, - [1289] = {.lex_state = 203}, + [1289] = {.lex_state = 204}, [1290] = {.lex_state = 204}, - [1291] = {.lex_state = 203}, - [1292] = {.lex_state = 203}, - [1293] = {.lex_state = 204}, - [1294] = {.lex_state = 204}, + [1291] = {.lex_state = 204}, + [1292] = {.lex_state = 204}, + [1293] = {.lex_state = 203}, + [1294] = {.lex_state = 203}, [1295] = {.lex_state = 204}, [1296] = {.lex_state = 204}, - [1297] = {.lex_state = 204}, + [1297] = {.lex_state = 203}, [1298] = {.lex_state = 204}, - [1299] = {.lex_state = 203}, + [1299] = {.lex_state = 204}, [1300] = {.lex_state = 203}, [1301] = {.lex_state = 203}, [1302] = {.lex_state = 204}, - [1303] = {.lex_state = 203}, + [1303] = {.lex_state = 204}, [1304] = {.lex_state = 204}, [1305] = {.lex_state = 204}, [1306] = {.lex_state = 204}, - [1307] = {.lex_state = 203}, + [1307] = {.lex_state = 204}, [1308] = {.lex_state = 204}, - [1309] = {.lex_state = 204}, + [1309] = {.lex_state = 203}, [1310] = {.lex_state = 204}, [1311] = {.lex_state = 204}, [1312] = {.lex_state = 204}, [1313] = {.lex_state = 204}, - [1314] = {.lex_state = 203}, + [1314] = {.lex_state = 204}, [1315] = {.lex_state = 204}, [1316] = {.lex_state = 203}, [1317] = {.lex_state = 204}, - [1318] = {.lex_state = 203}, + [1318] = {.lex_state = 204}, [1319] = {.lex_state = 204}, - [1320] = {.lex_state = 203}, - [1321] = {.lex_state = 203}, - [1322] = {.lex_state = 203}, - [1323] = {.lex_state = 203}, - [1324] = {.lex_state = 204}, + [1320] = {.lex_state = 204}, + [1321] = {.lex_state = 204}, + [1322] = {.lex_state = 204}, + [1323] = {.lex_state = 204}, + [1324] = {.lex_state = 203}, [1325] = {.lex_state = 203}, [1326] = {.lex_state = 203}, - [1327] = {.lex_state = 204}, + [1327] = {.lex_state = 203}, [1328] = {.lex_state = 204}, [1329] = {.lex_state = 204}, - [1330] = {.lex_state = 204}, + [1330] = {.lex_state = 203}, [1331] = {.lex_state = 204}, [1332] = {.lex_state = 203}, [1333] = {.lex_state = 204}, - [1334] = {.lex_state = 203}, + [1334] = {.lex_state = 204}, [1335] = {.lex_state = 204}, [1336] = {.lex_state = 203}, [1337] = {.lex_state = 204}, - [1338] = {.lex_state = 203}, + [1338] = {.lex_state = 204}, [1339] = {.lex_state = 204}, - [1340] = {.lex_state = 204}, - [1341] = {.lex_state = 204}, + [1340] = {.lex_state = 203}, + [1341] = {.lex_state = 203}, [1342] = {.lex_state = 203}, [1343] = {.lex_state = 203}, - [1344] = {.lex_state = 204}, + [1344] = {.lex_state = 203}, [1345] = {.lex_state = 204}, - [1346] = {.lex_state = 204}, - [1347] = {.lex_state = 204}, - [1348] = {.lex_state = 204}, - [1349] = {.lex_state = 204}, + [1346] = {.lex_state = 203}, + [1347] = {.lex_state = 203}, + [1348] = {.lex_state = 203}, + [1349] = {.lex_state = 203}, [1350] = {.lex_state = 204}, [1351] = {.lex_state = 204}, - [1352] = {.lex_state = 204}, + [1352] = {.lex_state = 203}, [1353] = {.lex_state = 204}, - [1354] = {.lex_state = 204}, + [1354] = {.lex_state = 203}, [1355] = {.lex_state = 204}, - [1356] = {.lex_state = 204}, + [1356] = {.lex_state = 203}, [1357] = {.lex_state = 204}, [1358] = {.lex_state = 204}, [1359] = {.lex_state = 204}, @@ -68786,236 +69047,236 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1877] = {.lex_state = 204}, [1878] = {.lex_state = 204}, [1879] = {.lex_state = 204}, - [1880] = {.lex_state = 282}, - [1881] = {.lex_state = 282}, - [1882] = {.lex_state = 282}, - [1883] = {.lex_state = 282}, - [1884] = {.lex_state = 282}, - [1885] = {.lex_state = 200}, - [1886] = {.lex_state = 200}, - [1887] = {.lex_state = 200}, - [1888] = {.lex_state = 226}, - [1889] = {.lex_state = 226}, - [1890] = {.lex_state = 231}, - [1891] = {.lex_state = 226}, - [1892] = {.lex_state = 226}, - [1893] = {.lex_state = 226}, - [1894] = {.lex_state = 226}, - [1895] = {.lex_state = 226}, - [1896] = {.lex_state = 226}, - [1897] = {.lex_state = 226}, - [1898] = {.lex_state = 226}, - [1899] = {.lex_state = 231}, - [1900] = {.lex_state = 231}, - [1901] = {.lex_state = 231}, - [1902] = {.lex_state = 231}, - [1903] = {.lex_state = 219}, - [1904] = {.lex_state = 231}, - [1905] = {.lex_state = 226}, - [1906] = {.lex_state = 231}, - [1907] = {.lex_state = 226}, - [1908] = {.lex_state = 231}, - [1909] = {.lex_state = 231}, - [1910] = {.lex_state = 226}, - [1911] = {.lex_state = 220}, - [1912] = {.lex_state = 282}, - [1913] = {.lex_state = 282}, - [1914] = {.lex_state = 223}, - [1915] = {.lex_state = 231}, - [1916] = {.lex_state = 231}, - [1917] = {.lex_state = 231}, - [1918] = {.lex_state = 231}, - [1919] = {.lex_state = 231}, - [1920] = {.lex_state = 231}, - [1921] = {.lex_state = 231}, - [1922] = {.lex_state = 231}, - [1923] = {.lex_state = 271}, - [1924] = {.lex_state = 271}, - [1925] = {.lex_state = 271}, - [1926] = {.lex_state = 271}, - [1927] = {.lex_state = 271}, - [1928] = {.lex_state = 271}, - [1929] = {.lex_state = 271}, - [1930] = {.lex_state = 282}, - [1931] = {.lex_state = 282}, - [1932] = {.lex_state = 282}, - [1933] = {.lex_state = 282}, - [1934] = {.lex_state = 282}, - [1935] = {.lex_state = 282}, - [1936] = {.lex_state = 282}, - [1937] = {.lex_state = 282}, - [1938] = {.lex_state = 282}, - [1939] = {.lex_state = 282}, - [1940] = {.lex_state = 282}, - [1941] = {.lex_state = 282}, - [1942] = {.lex_state = 282}, - [1943] = {.lex_state = 282}, - [1944] = {.lex_state = 282}, - [1945] = {.lex_state = 208}, + [1880] = {.lex_state = 204}, + [1881] = {.lex_state = 204}, + [1882] = {.lex_state = 204}, + [1883] = {.lex_state = 204}, + [1884] = {.lex_state = 204}, + [1885] = {.lex_state = 204}, + [1886] = {.lex_state = 204}, + [1887] = {.lex_state = 204}, + [1888] = {.lex_state = 204}, + [1889] = {.lex_state = 204}, + [1890] = {.lex_state = 204}, + [1891] = {.lex_state = 204}, + [1892] = {.lex_state = 204}, + [1893] = {.lex_state = 204}, + [1894] = {.lex_state = 204}, + [1895] = {.lex_state = 204}, + [1896] = {.lex_state = 204}, + [1897] = {.lex_state = 204}, + [1898] = {.lex_state = 204}, + [1899] = {.lex_state = 204}, + [1900] = {.lex_state = 204}, + [1901] = {.lex_state = 204}, + [1902] = {.lex_state = 204}, + [1903] = {.lex_state = 204}, + [1904] = {.lex_state = 204}, + [1905] = {.lex_state = 204}, + [1906] = {.lex_state = 204}, + [1907] = {.lex_state = 204}, + [1908] = {.lex_state = 204}, + [1909] = {.lex_state = 204}, + [1910] = {.lex_state = 204}, + [1911] = {.lex_state = 204}, + [1912] = {.lex_state = 204}, + [1913] = {.lex_state = 204}, + [1914] = {.lex_state = 282}, + [1915] = {.lex_state = 282}, + [1916] = {.lex_state = 282}, + [1917] = {.lex_state = 282}, + [1918] = {.lex_state = 282}, + [1919] = {.lex_state = 200}, + [1920] = {.lex_state = 200}, + [1921] = {.lex_state = 200}, + [1922] = {.lex_state = 226}, + [1923] = {.lex_state = 226}, + [1924] = {.lex_state = 226}, + [1925] = {.lex_state = 226}, + [1926] = {.lex_state = 231}, + [1927] = {.lex_state = 226}, + [1928] = {.lex_state = 226}, + [1929] = {.lex_state = 226}, + [1930] = {.lex_state = 226}, + [1931] = {.lex_state = 226}, + [1932] = {.lex_state = 231}, + [1933] = {.lex_state = 226}, + [1934] = {.lex_state = 219}, + [1935] = {.lex_state = 231}, + [1936] = {.lex_state = 231}, + [1937] = {.lex_state = 226}, + [1938] = {.lex_state = 231}, + [1939] = {.lex_state = 231}, + [1940] = {.lex_state = 231}, + [1941] = {.lex_state = 226}, + [1942] = {.lex_state = 231}, + [1943] = {.lex_state = 231}, + [1944] = {.lex_state = 226}, + [1945] = {.lex_state = 220}, [1946] = {.lex_state = 282}, [1947] = {.lex_state = 282}, - [1948] = {.lex_state = 282}, - [1949] = {.lex_state = 282}, - [1950] = {.lex_state = 282}, - [1951] = {.lex_state = 282}, - [1952] = {.lex_state = 206}, - [1953] = {.lex_state = 282}, - [1954] = {.lex_state = 282}, - [1955] = {.lex_state = 282}, - [1956] = {.lex_state = 282}, - [1957] = {.lex_state = 282}, - [1958] = {.lex_state = 282}, - [1959] = {.lex_state = 282}, - [1960] = {.lex_state = 206}, - [1961] = {.lex_state = 282}, - [1962] = {.lex_state = 282}, - [1963] = {.lex_state = 282}, - [1964] = {.lex_state = 206}, + [1948] = {.lex_state = 223}, + [1949] = {.lex_state = 231}, + [1950] = {.lex_state = 231}, + [1951] = {.lex_state = 231}, + [1952] = {.lex_state = 231}, + [1953] = {.lex_state = 231}, + [1954] = {.lex_state = 231}, + [1955] = {.lex_state = 231}, + [1956] = {.lex_state = 231}, + [1957] = {.lex_state = 271}, + [1958] = {.lex_state = 271}, + [1959] = {.lex_state = 271}, + [1960] = {.lex_state = 271}, + [1961] = {.lex_state = 271}, + [1962] = {.lex_state = 271}, + [1963] = {.lex_state = 271}, + [1964] = {.lex_state = 282}, [1965] = {.lex_state = 282}, [1966] = {.lex_state = 282}, - [1967] = {.lex_state = 271}, - [1968] = {.lex_state = 271}, - [1969] = {.lex_state = 200}, - [1970] = {.lex_state = 200}, - [1971] = {.lex_state = 271}, - [1972] = {.lex_state = 259}, - [1973] = {.lex_state = 206}, - [1974] = {.lex_state = 259}, - [1975] = {.lex_state = 259}, - [1976] = {.lex_state = 259}, - [1977] = {.lex_state = 259}, + [1967] = {.lex_state = 282}, + [1968] = {.lex_state = 282}, + [1969] = {.lex_state = 282}, + [1970] = {.lex_state = 282}, + [1971] = {.lex_state = 282}, + [1972] = {.lex_state = 282}, + [1973] = {.lex_state = 282}, + [1974] = {.lex_state = 282}, + [1975] = {.lex_state = 282}, + [1976] = {.lex_state = 282}, + [1977] = {.lex_state = 282}, [1978] = {.lex_state = 282}, - [1979] = {.lex_state = 282}, + [1979] = {.lex_state = 208}, [1980] = {.lex_state = 282}, [1981] = {.lex_state = 282}, - [1982] = {.lex_state = 230}, - [1983] = {.lex_state = 259}, - [1984] = {.lex_state = 206}, - [1985] = {.lex_state = 206}, - [1986] = {.lex_state = 206}, - [1987] = {.lex_state = 259}, + [1982] = {.lex_state = 282}, + [1983] = {.lex_state = 282}, + [1984] = {.lex_state = 282}, + [1985] = {.lex_state = 282}, + [1986] = {.lex_state = 282}, + [1987] = {.lex_state = 282}, [1988] = {.lex_state = 282}, - [1989] = {.lex_state = 282}, - [1990] = {.lex_state = 264}, + [1989] = {.lex_state = 206}, + [1990] = {.lex_state = 206}, [1991] = {.lex_state = 282}, - [1992] = {.lex_state = 264}, - [1993] = {.lex_state = 229}, - [1994] = {.lex_state = 264}, - [1995] = {.lex_state = 264}, - [1996] = {.lex_state = 208}, + [1992] = {.lex_state = 282}, + [1993] = {.lex_state = 206}, + [1994] = {.lex_state = 282}, + [1995] = {.lex_state = 282}, + [1996] = {.lex_state = 282}, [1997] = {.lex_state = 282}, - [1998] = {.lex_state = 264}, - [1999] = {.lex_state = 264}, + [1998] = {.lex_state = 282}, + [1999] = {.lex_state = 282}, [2000] = {.lex_state = 282}, - [2001] = {.lex_state = 234}, - [2002] = {.lex_state = 282}, - [2003] = {.lex_state = 264}, - [2004] = {.lex_state = 282}, - [2005] = {.lex_state = 271}, - [2006] = {.lex_state = 271}, - [2007] = {.lex_state = 271}, - [2008] = {.lex_state = 271}, - [2009] = {.lex_state = 282}, + [2001] = {.lex_state = 271}, + [2002] = {.lex_state = 271}, + [2003] = {.lex_state = 200}, + [2004] = {.lex_state = 271}, + [2005] = {.lex_state = 200}, + [2006] = {.lex_state = 259}, + [2007] = {.lex_state = 206}, + [2008] = {.lex_state = 206}, + [2009] = {.lex_state = 206}, [2010] = {.lex_state = 282}, - [2011] = {.lex_state = 271}, - [2012] = {.lex_state = 271}, - [2013] = {.lex_state = 271}, + [2011] = {.lex_state = 259}, + [2012] = {.lex_state = 230}, + [2013] = {.lex_state = 259}, [2014] = {.lex_state = 282}, - [2015] = {.lex_state = 271}, - [2016] = {.lex_state = 271}, - [2017] = {.lex_state = 271}, - [2018] = {.lex_state = 271}, - [2019] = {.lex_state = 271}, - [2020] = {.lex_state = 271}, - [2021] = {.lex_state = 271}, - [2022] = {.lex_state = 231}, - [2023] = {.lex_state = 251}, - [2024] = {.lex_state = 234}, - [2025] = {.lex_state = 232}, - [2026] = {.lex_state = 213}, - [2027] = {.lex_state = 251}, - [2028] = {.lex_state = 232}, - [2029] = {.lex_state = 213}, - [2030] = {.lex_state = 251}, - [2031] = {.lex_state = 234}, + [2015] = {.lex_state = 259}, + [2016] = {.lex_state = 282}, + [2017] = {.lex_state = 259}, + [2018] = {.lex_state = 282}, + [2019] = {.lex_state = 259}, + [2020] = {.lex_state = 282}, + [2021] = {.lex_state = 259}, + [2022] = {.lex_state = 206}, + [2023] = {.lex_state = 208}, + [2024] = {.lex_state = 264}, + [2025] = {.lex_state = 282}, + [2026] = {.lex_state = 264}, + [2027] = {.lex_state = 264}, + [2028] = {.lex_state = 282}, + [2029] = {.lex_state = 282}, + [2030] = {.lex_state = 264}, + [2031] = {.lex_state = 264}, [2032] = {.lex_state = 282}, - [2033] = {.lex_state = 259}, - [2034] = {.lex_state = 259}, - [2035] = {.lex_state = 234}, - [2036] = {.lex_state = 251}, - [2037] = {.lex_state = 259}, - [2038] = {.lex_state = 234}, - [2039] = {.lex_state = 282}, - [2040] = {.lex_state = 231}, - [2041] = {.lex_state = 259}, - [2042] = {.lex_state = 259}, - [2043] = {.lex_state = 259}, - [2044] = {.lex_state = 282}, - [2045] = {.lex_state = 259}, - [2046] = {.lex_state = 206}, - [2047] = {.lex_state = 259}, - [2048] = {.lex_state = 232}, + [2033] = {.lex_state = 282}, + [2034] = {.lex_state = 234}, + [2035] = {.lex_state = 264}, + [2036] = {.lex_state = 229}, + [2037] = {.lex_state = 264}, + [2038] = {.lex_state = 282}, + [2039] = {.lex_state = 231}, + [2040] = {.lex_state = 282}, + [2041] = {.lex_state = 231}, + [2042] = {.lex_state = 271}, + [2043] = {.lex_state = 271}, + [2044] = {.lex_state = 271}, + [2045] = {.lex_state = 271}, + [2046] = {.lex_state = 271}, + [2047] = {.lex_state = 271}, + [2048] = {.lex_state = 271}, [2049] = {.lex_state = 282}, - [2050] = {.lex_state = 282}, - [2051] = {.lex_state = 232}, - [2052] = {.lex_state = 282}, - [2053] = {.lex_state = 208}, - [2054] = {.lex_state = 243}, - [2055] = {.lex_state = 232}, - [2056] = {.lex_state = 232}, - [2057] = {.lex_state = 222}, + [2050] = {.lex_state = 271}, + [2051] = {.lex_state = 271}, + [2052] = {.lex_state = 271}, + [2053] = {.lex_state = 282}, + [2054] = {.lex_state = 271}, + [2055] = {.lex_state = 271}, + [2056] = {.lex_state = 271}, + [2057] = {.lex_state = 271}, [2058] = {.lex_state = 282}, - [2059] = {.lex_state = 282}, - [2060] = {.lex_state = 282}, - [2061] = {.lex_state = 232}, - [2062] = {.lex_state = 282}, - [2063] = {.lex_state = 282}, + [2059] = {.lex_state = 234}, + [2060] = {.lex_state = 251}, + [2061] = {.lex_state = 234}, + [2062] = {.lex_state = 259}, + [2063] = {.lex_state = 213}, [2064] = {.lex_state = 282}, - [2065] = {.lex_state = 232}, - [2066] = {.lex_state = 282}, - [2067] = {.lex_state = 243}, - [2068] = {.lex_state = 282}, - [2069] = {.lex_state = 232}, - [2070] = {.lex_state = 282}, - [2071] = {.lex_state = 243}, - [2072] = {.lex_state = 282}, - [2073] = {.lex_state = 243}, - [2074] = {.lex_state = 282}, + [2065] = {.lex_state = 282}, + [2066] = {.lex_state = 213}, + [2067] = {.lex_state = 251}, + [2068] = {.lex_state = 234}, + [2069] = {.lex_state = 234}, + [2070] = {.lex_state = 232}, + [2071] = {.lex_state = 206}, + [2072] = {.lex_state = 251}, + [2073] = {.lex_state = 251}, + [2074] = {.lex_state = 232}, [2075] = {.lex_state = 282}, - [2076] = {.lex_state = 251}, + [2076] = {.lex_state = 282}, [2077] = {.lex_state = 282}, - [2078] = {.lex_state = 206}, + [2078] = {.lex_state = 208}, [2079] = {.lex_state = 282}, - [2080] = {.lex_state = 211}, - [2081] = {.lex_state = 264}, - [2082] = {.lex_state = 211}, - [2083] = {.lex_state = 282}, - [2084] = {.lex_state = 211}, + [2080] = {.lex_state = 222}, + [2081] = {.lex_state = 243}, + [2082] = {.lex_state = 282}, + [2083] = {.lex_state = 208}, + [2084] = {.lex_state = 282}, [2085] = {.lex_state = 282}, [2086] = {.lex_state = 282}, - [2087] = {.lex_state = 282}, - [2088] = {.lex_state = 243}, + [2087] = {.lex_state = 222}, + [2088] = {.lex_state = 282}, [2089] = {.lex_state = 282}, - [2090] = {.lex_state = 282}, - [2091] = {.lex_state = 282}, + [2090] = {.lex_state = 206}, + [2091] = {.lex_state = 204}, [2092] = {.lex_state = 282}, [2093] = {.lex_state = 282}, [2094] = {.lex_state = 282}, [2095] = {.lex_state = 282}, [2096] = {.lex_state = 282}, [2097] = {.lex_state = 282}, - [2098] = {.lex_state = 232}, - [2099] = {.lex_state = 230}, + [2098] = {.lex_state = 282}, + [2099] = {.lex_state = 259}, [2100] = {.lex_state = 282}, - [2101] = {.lex_state = 219}, - [2102] = {.lex_state = 232}, + [2101] = {.lex_state = 282}, + [2102] = {.lex_state = 282}, [2103] = {.lex_state = 282}, [2104] = {.lex_state = 282}, [2105] = {.lex_state = 282}, - [2106] = {.lex_state = 259}, + [2106] = {.lex_state = 282}, [2107] = {.lex_state = 282}, [2108] = {.lex_state = 282}, - [2109] = {.lex_state = 232}, + [2109] = {.lex_state = 282}, [2110] = {.lex_state = 282}, [2111] = {.lex_state = 282}, [2112] = {.lex_state = 282}, @@ -69024,251 +69285,251 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2115] = {.lex_state = 282}, [2116] = {.lex_state = 282}, [2117] = {.lex_state = 282}, - [2118] = {.lex_state = 232}, - [2119] = {.lex_state = 232}, + [2118] = {.lex_state = 282}, + [2119] = {.lex_state = 282}, [2120] = {.lex_state = 282}, [2121] = {.lex_state = 282}, [2122] = {.lex_state = 282}, [2123] = {.lex_state = 282}, - [2124] = {.lex_state = 204}, - [2125] = {.lex_state = 208}, + [2124] = {.lex_state = 282}, + [2125] = {.lex_state = 232}, [2126] = {.lex_state = 282}, [2127] = {.lex_state = 282}, - [2128] = {.lex_state = 282}, + [2128] = {.lex_state = 232}, [2129] = {.lex_state = 282}, - [2130] = {.lex_state = 243}, - [2131] = {.lex_state = 219}, - [2132] = {.lex_state = 243}, - [2133] = {.lex_state = 219}, - [2134] = {.lex_state = 243}, + [2130] = {.lex_state = 232}, + [2131] = {.lex_state = 282}, + [2132] = {.lex_state = 282}, + [2133] = {.lex_state = 282}, + [2134] = {.lex_state = 282}, [2135] = {.lex_state = 282}, - [2136] = {.lex_state = 282}, - [2137] = {.lex_state = 243}, - [2138] = {.lex_state = 282}, + [2136] = {.lex_state = 222}, + [2137] = {.lex_state = 282}, + [2138] = {.lex_state = 251}, [2139] = {.lex_state = 282}, [2140] = {.lex_state = 282}, [2141] = {.lex_state = 282}, - [2142] = {.lex_state = 282}, - [2143] = {.lex_state = 208}, - [2144] = {.lex_state = 243}, - [2145] = {.lex_state = 243}, - [2146] = {.lex_state = 243}, - [2147] = {.lex_state = 251}, - [2148] = {.lex_state = 282}, - [2149] = {.lex_state = 282}, - [2150] = {.lex_state = 282}, + [2142] = {.lex_state = 232}, + [2143] = {.lex_state = 232}, + [2144] = {.lex_state = 211}, + [2145] = {.lex_state = 282}, + [2146] = {.lex_state = 282}, + [2147] = {.lex_state = 264}, + [2148] = {.lex_state = 232}, + [2149] = {.lex_state = 211}, + [2150] = {.lex_state = 243}, [2151] = {.lex_state = 243}, [2152] = {.lex_state = 282}, [2153] = {.lex_state = 282}, - [2154] = {.lex_state = 282}, + [2154] = {.lex_state = 219}, [2155] = {.lex_state = 282}, - [2156] = {.lex_state = 282}, + [2156] = {.lex_state = 211}, [2157] = {.lex_state = 282}, [2158] = {.lex_state = 282}, [2159] = {.lex_state = 282}, [2160] = {.lex_state = 282}, - [2161] = {.lex_state = 222}, - [2162] = {.lex_state = 222}, + [2161] = {.lex_state = 219}, + [2162] = {.lex_state = 232}, [2163] = {.lex_state = 282}, [2164] = {.lex_state = 282}, - [2165] = {.lex_state = 282}, - [2166] = {.lex_state = 282}, + [2165] = {.lex_state = 251}, + [2166] = {.lex_state = 243}, [2167] = {.lex_state = 282}, - [2168] = {.lex_state = 282}, + [2168] = {.lex_state = 230}, [2169] = {.lex_state = 282}, - [2170] = {.lex_state = 282}, + [2170] = {.lex_state = 208}, [2171] = {.lex_state = 282}, - [2172] = {.lex_state = 230}, + [2172] = {.lex_state = 232}, [2173] = {.lex_state = 232}, - [2174] = {.lex_state = 251}, - [2175] = {.lex_state = 206}, - [2176] = {.lex_state = 230}, - [2177] = {.lex_state = 230}, - [2178] = {.lex_state = 230}, - [2179] = {.lex_state = 230}, - [2180] = {.lex_state = 230}, - [2181] = {.lex_state = 230}, - [2182] = {.lex_state = 283}, - [2183] = {.lex_state = 282}, - [2184] = {.lex_state = 280}, - [2185] = {.lex_state = 208}, - [2186] = {.lex_state = 264}, - [2187] = {.lex_state = 251}, - [2188] = {.lex_state = 251}, - [2189] = {.lex_state = 230}, - [2190] = {.lex_state = 280}, - [2191] = {.lex_state = 280}, - [2192] = {.lex_state = 220}, - [2193] = {.lex_state = 230}, - [2194] = {.lex_state = 230}, - [2195] = {.lex_state = 230}, - [2196] = {.lex_state = 280}, - [2197] = {.lex_state = 216}, - [2198] = {.lex_state = 230}, - [2199] = {.lex_state = 282}, + [2174] = {.lex_state = 232}, + [2175] = {.lex_state = 282}, + [2176] = {.lex_state = 282}, + [2177] = {.lex_state = 282}, + [2178] = {.lex_state = 232}, + [2179] = {.lex_state = 243}, + [2180] = {.lex_state = 243}, + [2181] = {.lex_state = 232}, + [2182] = {.lex_state = 243}, + [2183] = {.lex_state = 243}, + [2184] = {.lex_state = 243}, + [2185] = {.lex_state = 282}, + [2186] = {.lex_state = 282}, + [2187] = {.lex_state = 282}, + [2188] = {.lex_state = 243}, + [2189] = {.lex_state = 282}, + [2190] = {.lex_state = 282}, + [2191] = {.lex_state = 243}, + [2192] = {.lex_state = 243}, + [2193] = {.lex_state = 243}, + [2194] = {.lex_state = 282}, + [2195] = {.lex_state = 282}, + [2196] = {.lex_state = 282}, + [2197] = {.lex_state = 206}, + [2198] = {.lex_state = 232}, + [2199] = {.lex_state = 283}, [2200] = {.lex_state = 230}, [2201] = {.lex_state = 208}, - [2202] = {.lex_state = 208}, - [2203] = {.lex_state = 208}, + [2202] = {.lex_state = 230}, + [2203] = {.lex_state = 230}, [2204] = {.lex_state = 230}, - [2205] = {.lex_state = 206}, - [2206] = {.lex_state = 211}, - [2207] = {.lex_state = 206}, - [2208] = {.lex_state = 234}, - [2209] = {.lex_state = 230}, - [2210] = {.lex_state = 230}, - [2211] = {.lex_state = 208}, - [2212] = {.lex_state = 283}, - [2213] = {.lex_state = 208}, - [2214] = {.lex_state = 230}, + [2205] = {.lex_state = 211}, + [2206] = {.lex_state = 282}, + [2207] = {.lex_state = 283}, + [2208] = {.lex_state = 208}, + [2209] = {.lex_state = 282}, + [2210] = {.lex_state = 282}, + [2211] = {.lex_state = 216}, + [2212] = {.lex_state = 280}, + [2213] = {.lex_state = 230}, + [2214] = {.lex_state = 208}, [2215] = {.lex_state = 230}, [2216] = {.lex_state = 230}, [2217] = {.lex_state = 230}, - [2218] = {.lex_state = 230}, + [2218] = {.lex_state = 282}, [2219] = {.lex_state = 230}, - [2220] = {.lex_state = 231}, + [2220] = {.lex_state = 234}, [2221] = {.lex_state = 230}, [2222] = {.lex_state = 230}, - [2223] = {.lex_state = 208}, - [2224] = {.lex_state = 282}, + [2223] = {.lex_state = 230}, + [2224] = {.lex_state = 230}, [2225] = {.lex_state = 230}, [2226] = {.lex_state = 230}, - [2227] = {.lex_state = 282}, - [2228] = {.lex_state = 216}, - [2229] = {.lex_state = 237}, - [2230] = {.lex_state = 230}, - [2231] = {.lex_state = 208}, - [2232] = {.lex_state = 234}, - [2233] = {.lex_state = 230}, - [2234] = {.lex_state = 230}, + [2227] = {.lex_state = 230}, + [2228] = {.lex_state = 230}, + [2229] = {.lex_state = 251}, + [2230] = {.lex_state = 251}, + [2231] = {.lex_state = 230}, + [2232] = {.lex_state = 206}, + [2233] = {.lex_state = 208}, + [2234] = {.lex_state = 208}, [2235] = {.lex_state = 230}, - [2236] = {.lex_state = 208}, + [2236] = {.lex_state = 220}, [2237] = {.lex_state = 230}, [2238] = {.lex_state = 230}, - [2239] = {.lex_state = 230}, + [2239] = {.lex_state = 216}, [2240] = {.lex_state = 230}, [2241] = {.lex_state = 208}, [2242] = {.lex_state = 230}, - [2243] = {.lex_state = 220}, - [2244] = {.lex_state = 282}, - [2245] = {.lex_state = 230}, - [2246] = {.lex_state = 234}, - [2247] = {.lex_state = 282}, - [2248] = {.lex_state = 282}, - [2249] = {.lex_state = 230}, + [2243] = {.lex_state = 216}, + [2244] = {.lex_state = 280}, + [2245] = {.lex_state = 206}, + [2246] = {.lex_state = 208}, + [2247] = {.lex_state = 230}, + [2248] = {.lex_state = 230}, + [2249] = {.lex_state = 264}, [2250] = {.lex_state = 230}, - [2251] = {.lex_state = 283}, - [2252] = {.lex_state = 282}, - [2253] = {.lex_state = 230}, - [2254] = {.lex_state = 282}, + [2251] = {.lex_state = 230}, + [2252] = {.lex_state = 230}, + [2253] = {.lex_state = 282}, + [2254] = {.lex_state = 283}, [2255] = {.lex_state = 230}, - [2256] = {.lex_state = 283}, - [2257] = {.lex_state = 282}, - [2258] = {.lex_state = 282}, - [2259] = {.lex_state = 216}, - [2260] = {.lex_state = 251}, - [2261] = {.lex_state = 283}, - [2262] = {.lex_state = 223}, - [2263] = {.lex_state = 251}, - [2264] = {.lex_state = 206}, - [2265] = {.lex_state = 251}, - [2266] = {.lex_state = 238}, - [2267] = {.lex_state = 233}, - [2268] = {.lex_state = 234}, - [2269] = {.lex_state = 251}, - [2270] = {.lex_state = 251}, - [2271] = {.lex_state = 251}, - [2272] = {.lex_state = 233}, - [2273] = {.lex_state = 251}, - [2274] = {.lex_state = 251}, - [2275] = {.lex_state = 251}, - [2276] = {.lex_state = 251}, - [2277] = {.lex_state = 251}, - [2278] = {.lex_state = 251}, + [2256] = {.lex_state = 230}, + [2257] = {.lex_state = 230}, + [2258] = {.lex_state = 230}, + [2259] = {.lex_state = 230}, + [2260] = {.lex_state = 282}, + [2261] = {.lex_state = 282}, + [2262] = {.lex_state = 208}, + [2263] = {.lex_state = 234}, + [2264] = {.lex_state = 280}, + [2265] = {.lex_state = 230}, + [2266] = {.lex_state = 282}, + [2267] = {.lex_state = 230}, + [2268] = {.lex_state = 208}, + [2269] = {.lex_state = 282}, + [2270] = {.lex_state = 208}, + [2271] = {.lex_state = 230}, + [2272] = {.lex_state = 230}, + [2273] = {.lex_state = 230}, + [2274] = {.lex_state = 234}, + [2275] = {.lex_state = 230}, + [2276] = {.lex_state = 282}, + [2277] = {.lex_state = 280}, + [2278] = {.lex_state = 237}, [2279] = {.lex_state = 282}, - [2280] = {.lex_state = 251}, - [2281] = {.lex_state = 251}, - [2282] = {.lex_state = 217}, + [2280] = {.lex_state = 283}, + [2281] = {.lex_state = 220}, + [2282] = {.lex_state = 230}, [2283] = {.lex_state = 251}, - [2284] = {.lex_state = 280}, + [2284] = {.lex_state = 282}, [2285] = {.lex_state = 251}, [2286] = {.lex_state = 251}, [2287] = {.lex_state = 251}, - [2288] = {.lex_state = 251}, + [2288] = {.lex_state = 234}, [2289] = {.lex_state = 251}, - [2290] = {.lex_state = 251}, + [2290] = {.lex_state = 233}, [2291] = {.lex_state = 251}, - [2292] = {.lex_state = 234}, + [2292] = {.lex_state = 282}, [2293] = {.lex_state = 234}, [2294] = {.lex_state = 251}, - [2295] = {.lex_state = 251}, + [2295] = {.lex_state = 234}, [2296] = {.lex_state = 251}, - [2297] = {.lex_state = 251}, - [2298] = {.lex_state = 232}, - [2299] = {.lex_state = 251}, - [2300] = {.lex_state = 251}, - [2301] = {.lex_state = 251}, + [2297] = {.lex_state = 283}, + [2298] = {.lex_state = 251}, + [2299] = {.lex_state = 232}, + [2300] = {.lex_state = 282}, + [2301] = {.lex_state = 238}, [2302] = {.lex_state = 251}, [2303] = {.lex_state = 251}, - [2304] = {.lex_state = 232}, - [2305] = {.lex_state = 251}, - [2306] = {.lex_state = 251}, + [2304] = {.lex_state = 217}, + [2305] = {.lex_state = 229}, + [2306] = {.lex_state = 208}, [2307] = {.lex_state = 251}, - [2308] = {.lex_state = 251}, - [2309] = {.lex_state = 251}, + [2308] = {.lex_state = 232}, + [2309] = {.lex_state = 234}, [2310] = {.lex_state = 234}, - [2311] = {.lex_state = 234}, + [2311] = {.lex_state = 229}, [2312] = {.lex_state = 251}, - [2313] = {.lex_state = 251}, - [2314] = {.lex_state = 234}, - [2315] = {.lex_state = 234}, - [2316] = {.lex_state = 232}, - [2317] = {.lex_state = 251}, - [2318] = {.lex_state = 206}, - [2319] = {.lex_state = 217}, - [2320] = {.lex_state = 204}, + [2313] = {.lex_state = 234}, + [2314] = {.lex_state = 251}, + [2315] = {.lex_state = 251}, + [2316] = {.lex_state = 206}, + [2317] = {.lex_state = 234}, + [2318] = {.lex_state = 251}, + [2319] = {.lex_state = 251}, + [2320] = {.lex_state = 251}, [2321] = {.lex_state = 251}, - [2322] = {.lex_state = 233}, + [2322] = {.lex_state = 223}, [2323] = {.lex_state = 251}, - [2324] = {.lex_state = 251}, - [2325] = {.lex_state = 251}, - [2326] = {.lex_state = 251}, - [2327] = {.lex_state = 251}, - [2328] = {.lex_state = 223}, - [2329] = {.lex_state = 282}, - [2330] = {.lex_state = 251}, - [2331] = {.lex_state = 251}, - [2332] = {.lex_state = 251}, - [2333] = {.lex_state = 238}, + [2324] = {.lex_state = 234}, + [2325] = {.lex_state = 234}, + [2326] = {.lex_state = 234}, + [2327] = {.lex_state = 282}, + [2328] = {.lex_state = 234}, + [2329] = {.lex_state = 251}, + [2330] = {.lex_state = 233}, + [2331] = {.lex_state = 283}, + [2332] = {.lex_state = 217}, + [2333] = {.lex_state = 251}, [2334] = {.lex_state = 251}, - [2335] = {.lex_state = 234}, - [2336] = {.lex_state = 251}, + [2335] = {.lex_state = 223}, + [2336] = {.lex_state = 232}, [2337] = {.lex_state = 251}, - [2338] = {.lex_state = 206}, - [2339] = {.lex_state = 234}, - [2340] = {.lex_state = 234}, - [2341] = {.lex_state = 234}, - [2342] = {.lex_state = 251}, + [2338] = {.lex_state = 233}, + [2339] = {.lex_state = 251}, + [2340] = {.lex_state = 251}, + [2341] = {.lex_state = 251}, + [2342] = {.lex_state = 204}, [2343] = {.lex_state = 251}, [2344] = {.lex_state = 251}, [2345] = {.lex_state = 251}, [2346] = {.lex_state = 251}, - [2347] = {.lex_state = 251}, - [2348] = {.lex_state = 280}, - [2349] = {.lex_state = 282}, - [2350] = {.lex_state = 206}, - [2351] = {.lex_state = 232}, + [2347] = {.lex_state = 233}, + [2348] = {.lex_state = 251}, + [2349] = {.lex_state = 251}, + [2350] = {.lex_state = 251}, + [2351] = {.lex_state = 251}, [2352] = {.lex_state = 251}, [2353] = {.lex_state = 251}, [2354] = {.lex_state = 251}, [2355] = {.lex_state = 251}, - [2356] = {.lex_state = 229}, + [2356] = {.lex_state = 251}, [2357] = {.lex_state = 251}, - [2358] = {.lex_state = 251}, - [2359] = {.lex_state = 251}, - [2360] = {.lex_state = 229}, - [2361] = {.lex_state = 233}, - [2362] = {.lex_state = 232}, + [2358] = {.lex_state = 206}, + [2359] = {.lex_state = 232}, + [2360] = {.lex_state = 251}, + [2361] = {.lex_state = 251}, + [2362] = {.lex_state = 251}, [2363] = {.lex_state = 251}, [2364] = {.lex_state = 251}, [2365] = {.lex_state = 251}, @@ -69276,456 +69537,456 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2367] = {.lex_state = 251}, [2368] = {.lex_state = 251}, [2369] = {.lex_state = 251}, - [2370] = {.lex_state = 208}, - [2371] = {.lex_state = 229}, + [2370] = {.lex_state = 251}, + [2371] = {.lex_state = 251}, [2372] = {.lex_state = 251}, [2373] = {.lex_state = 251}, - [2374] = {.lex_state = 229}, + [2374] = {.lex_state = 251}, [2375] = {.lex_state = 251}, [2376] = {.lex_state = 251}, [2377] = {.lex_state = 251}, - [2378] = {.lex_state = 234}, + [2378] = {.lex_state = 251}, [2379] = {.lex_state = 251}, - [2380] = {.lex_state = 217}, - [2381] = {.lex_state = 282}, - [2382] = {.lex_state = 251}, - [2383] = {.lex_state = 283}, - [2384] = {.lex_state = 234}, + [2380] = {.lex_state = 251}, + [2381] = {.lex_state = 280}, + [2382] = {.lex_state = 206}, + [2383] = {.lex_state = 251}, + [2384] = {.lex_state = 229}, [2385] = {.lex_state = 251}, - [2386] = {.lex_state = 234}, - [2387] = {.lex_state = 234}, - [2388] = {.lex_state = 206}, - [2389] = {.lex_state = 208}, - [2390] = {.lex_state = 238}, - [2391] = {.lex_state = 238}, - [2392] = {.lex_state = 282}, - [2393] = {.lex_state = 233}, - [2394] = {.lex_state = 233}, - [2395] = {.lex_state = 233}, - [2396] = {.lex_state = 233}, - [2397] = {.lex_state = 232}, - [2398] = {.lex_state = 233}, - [2399] = {.lex_state = 238}, - [2400] = {.lex_state = 238}, - [2401] = {.lex_state = 234}, - [2402] = {.lex_state = 233}, - [2403] = {.lex_state = 280}, - [2404] = {.lex_state = 234}, - [2405] = {.lex_state = 216}, - [2406] = {.lex_state = 211}, - [2407] = {.lex_state = 211}, + [2386] = {.lex_state = 206}, + [2387] = {.lex_state = 229}, + [2388] = {.lex_state = 251}, + [2389] = {.lex_state = 232}, + [2390] = {.lex_state = 251}, + [2391] = {.lex_state = 234}, + [2392] = {.lex_state = 251}, + [2393] = {.lex_state = 251}, + [2394] = {.lex_state = 251}, + [2395] = {.lex_state = 282}, + [2396] = {.lex_state = 234}, + [2397] = {.lex_state = 251}, + [2398] = {.lex_state = 217}, + [2399] = {.lex_state = 280}, + [2400] = {.lex_state = 251}, + [2401] = {.lex_state = 251}, + [2402] = {.lex_state = 251}, + [2403] = {.lex_state = 251}, + [2404] = {.lex_state = 251}, + [2405] = {.lex_state = 251}, + [2406] = {.lex_state = 251}, + [2407] = {.lex_state = 251}, [2408] = {.lex_state = 238}, - [2409] = {.lex_state = 234}, - [2410] = {.lex_state = 280}, + [2409] = {.lex_state = 251}, + [2410] = {.lex_state = 251}, [2411] = {.lex_state = 234}, - [2412] = {.lex_state = 234}, - [2413] = {.lex_state = 234}, + [2412] = {.lex_state = 244}, + [2413] = {.lex_state = 280}, [2414] = {.lex_state = 234}, - [2415] = {.lex_state = 233}, - [2416] = {.lex_state = 234}, - [2417] = {.lex_state = 280}, - [2418] = {.lex_state = 283}, - [2419] = {.lex_state = 234}, - [2420] = {.lex_state = 234}, - [2421] = {.lex_state = 233}, - [2422] = {.lex_state = 245}, - [2423] = {.lex_state = 234}, - [2424] = {.lex_state = 234}, - [2425] = {.lex_state = 234}, - [2426] = {.lex_state = 234}, - [2427] = {.lex_state = 234}, + [2415] = {.lex_state = 234}, + [2416] = {.lex_state = 280}, + [2417] = {.lex_state = 234}, + [2418] = {.lex_state = 232}, + [2419] = {.lex_state = 283}, + [2420] = {.lex_state = 283}, + [2421] = {.lex_state = 234}, + [2422] = {.lex_state = 233}, + [2423] = {.lex_state = 233}, + [2424] = {.lex_state = 206}, + [2425] = {.lex_state = 211}, + [2426] = {.lex_state = 211}, + [2427] = {.lex_state = 211}, [2428] = {.lex_state = 234}, - [2429] = {.lex_state = 259}, - [2430] = {.lex_state = 234}, - [2431] = {.lex_state = 282}, + [2429] = {.lex_state = 233}, + [2430] = {.lex_state = 282}, + [2431] = {.lex_state = 211}, [2432] = {.lex_state = 234}, - [2433] = {.lex_state = 234}, - [2434] = {.lex_state = 233}, - [2435] = {.lex_state = 233}, + [2433] = {.lex_state = 233}, + [2434] = {.lex_state = 234}, + [2435] = {.lex_state = 238}, [2436] = {.lex_state = 238}, - [2437] = {.lex_state = 211}, - [2438] = {.lex_state = 238}, + [2437] = {.lex_state = 234}, + [2438] = {.lex_state = 234}, [2439] = {.lex_state = 238}, [2440] = {.lex_state = 234}, [2441] = {.lex_state = 234}, - [2442] = {.lex_state = 234}, + [2442] = {.lex_state = 238}, [2443] = {.lex_state = 234}, [2444] = {.lex_state = 234}, - [2445] = {.lex_state = 234}, + [2445] = {.lex_state = 238}, [2446] = {.lex_state = 234}, - [2447] = {.lex_state = 283}, - [2448] = {.lex_state = 234}, - [2449] = {.lex_state = 283}, + [2447] = {.lex_state = 234}, + [2448] = {.lex_state = 208}, + [2449] = {.lex_state = 234}, [2450] = {.lex_state = 234}, [2451] = {.lex_state = 234}, [2452] = {.lex_state = 234}, - [2453] = {.lex_state = 233}, - [2454] = {.lex_state = 233}, - [2455] = {.lex_state = 244}, + [2453] = {.lex_state = 234}, + [2454] = {.lex_state = 234}, + [2455] = {.lex_state = 282}, [2456] = {.lex_state = 234}, - [2457] = {.lex_state = 211}, + [2457] = {.lex_state = 216}, [2458] = {.lex_state = 234}, - [2459] = {.lex_state = 234}, + [2459] = {.lex_state = 245}, [2460] = {.lex_state = 234}, - [2461] = {.lex_state = 234}, - [2462] = {.lex_state = 234}, + [2461] = {.lex_state = 233}, + [2462] = {.lex_state = 280}, [2463] = {.lex_state = 234}, [2464] = {.lex_state = 234}, [2465] = {.lex_state = 234}, [2466] = {.lex_state = 234}, [2467] = {.lex_state = 234}, - [2468] = {.lex_state = 234}, + [2468] = {.lex_state = 233}, [2469] = {.lex_state = 234}, - [2470] = {.lex_state = 234}, - [2471] = {.lex_state = 234}, + [2470] = {.lex_state = 233}, + [2471] = {.lex_state = 233}, [2472] = {.lex_state = 234}, [2473] = {.lex_state = 234}, [2474] = {.lex_state = 234}, - [2475] = {.lex_state = 234}, - [2476] = {.lex_state = 283}, - [2477] = {.lex_state = 283}, - [2478] = {.lex_state = 283}, - [2479] = {.lex_state = 280}, - [2480] = {.lex_state = 283}, - [2481] = {.lex_state = 283}, - [2482] = {.lex_state = 280}, - [2483] = {.lex_state = 280}, - [2484] = {.lex_state = 280}, - [2485] = {.lex_state = 283}, - [2486] = {.lex_state = 280}, - [2487] = {.lex_state = 280}, - [2488] = {.lex_state = 280}, - [2489] = {.lex_state = 280}, - [2490] = {.lex_state = 283}, - [2491] = {.lex_state = 280}, + [2475] = {.lex_state = 233}, + [2476] = {.lex_state = 234}, + [2477] = {.lex_state = 238}, + [2478] = {.lex_state = 234}, + [2479] = {.lex_state = 234}, + [2480] = {.lex_state = 238}, + [2481] = {.lex_state = 234}, + [2482] = {.lex_state = 234}, + [2483] = {.lex_state = 234}, + [2484] = {.lex_state = 234}, + [2485] = {.lex_state = 234}, + [2486] = {.lex_state = 234}, + [2487] = {.lex_state = 238}, + [2488] = {.lex_state = 283}, + [2489] = {.lex_state = 234}, + [2490] = {.lex_state = 234}, + [2491] = {.lex_state = 234}, [2492] = {.lex_state = 234}, - [2493] = {.lex_state = 280}, - [2494] = {.lex_state = 280}, - [2495] = {.lex_state = 234}, - [2496] = {.lex_state = 280}, - [2497] = {.lex_state = 280}, - [2498] = {.lex_state = 280}, - [2499] = {.lex_state = 280}, + [2493] = {.lex_state = 234}, + [2494] = {.lex_state = 234}, + [2495] = {.lex_state = 233}, + [2496] = {.lex_state = 233}, + [2497] = {.lex_state = 234}, + [2498] = {.lex_state = 234}, + [2499] = {.lex_state = 233}, [2500] = {.lex_state = 280}, [2501] = {.lex_state = 280}, - [2502] = {.lex_state = 280}, - [2503] = {.lex_state = 280}, + [2502] = {.lex_state = 283}, + [2503] = {.lex_state = 234}, [2504] = {.lex_state = 242}, - [2505] = {.lex_state = 244}, - [2506] = {.lex_state = 242}, - [2507] = {.lex_state = 232}, - [2508] = {.lex_state = 242}, - [2509] = {.lex_state = 206}, - [2510] = {.lex_state = 206}, - [2511] = {.lex_state = 283}, - [2512] = {.lex_state = 283}, - [2513] = {.lex_state = 206}, - [2514] = {.lex_state = 206}, + [2505] = {.lex_state = 280}, + [2506] = {.lex_state = 280}, + [2507] = {.lex_state = 280}, + [2508] = {.lex_state = 280}, + [2509] = {.lex_state = 280}, + [2510] = {.lex_state = 280}, + [2511] = {.lex_state = 280}, + [2512] = {.lex_state = 280}, + [2513] = {.lex_state = 242}, + [2514] = {.lex_state = 280}, [2515] = {.lex_state = 280}, - [2516] = {.lex_state = 280}, - [2517] = {.lex_state = 283}, + [2516] = {.lex_state = 216}, + [2517] = {.lex_state = 234}, [2518] = {.lex_state = 216}, [2519] = {.lex_state = 280}, [2520] = {.lex_state = 280}, - [2521] = {.lex_state = 283}, - [2522] = {.lex_state = 283}, - [2523] = {.lex_state = 283}, - [2524] = {.lex_state = 283}, - [2525] = {.lex_state = 280}, - [2526] = {.lex_state = 280}, - [2527] = {.lex_state = 280}, - [2528] = {.lex_state = 280}, + [2521] = {.lex_state = 280}, + [2522] = {.lex_state = 238}, + [2523] = {.lex_state = 234}, + [2524] = {.lex_state = 280}, + [2525] = {.lex_state = 234}, + [2526] = {.lex_state = 217}, + [2527] = {.lex_state = 283}, + [2528] = {.lex_state = 283}, [2529] = {.lex_state = 234}, [2530] = {.lex_state = 234}, - [2531] = {.lex_state = 280}, - [2532] = {.lex_state = 280}, - [2533] = {.lex_state = 280}, + [2531] = {.lex_state = 234}, + [2532] = {.lex_state = 216}, + [2533] = {.lex_state = 216}, [2534] = {.lex_state = 280}, - [2535] = {.lex_state = 283}, - [2536] = {.lex_state = 283}, - [2537] = {.lex_state = 283}, - [2538] = {.lex_state = 280}, - [2539] = {.lex_state = 283}, + [2535] = {.lex_state = 280}, + [2536] = {.lex_state = 280}, + [2537] = {.lex_state = 280}, + [2538] = {.lex_state = 234}, + [2539] = {.lex_state = 280}, [2540] = {.lex_state = 280}, - [2541] = {.lex_state = 283}, - [2542] = {.lex_state = 283}, - [2543] = {.lex_state = 283}, - [2544] = {.lex_state = 216}, - [2545] = {.lex_state = 280}, - [2546] = {.lex_state = 280}, - [2547] = {.lex_state = 283}, + [2541] = {.lex_state = 280}, + [2542] = {.lex_state = 280}, + [2543] = {.lex_state = 280}, + [2544] = {.lex_state = 280}, + [2545] = {.lex_state = 216}, + [2546] = {.lex_state = 232}, + [2547] = {.lex_state = 280}, [2548] = {.lex_state = 280}, [2549] = {.lex_state = 280}, - [2550] = {.lex_state = 283}, - [2551] = {.lex_state = 283}, - [2552] = {.lex_state = 283}, - [2553] = {.lex_state = 283}, - [2554] = {.lex_state = 283}, - [2555] = {.lex_state = 216}, - [2556] = {.lex_state = 283}, + [2550] = {.lex_state = 280}, + [2551] = {.lex_state = 280}, + [2552] = {.lex_state = 244}, + [2553] = {.lex_state = 280}, + [2554] = {.lex_state = 280}, + [2555] = {.lex_state = 280}, + [2556] = {.lex_state = 280}, [2557] = {.lex_state = 280}, - [2558] = {.lex_state = 283}, - [2559] = {.lex_state = 283}, + [2558] = {.lex_state = 280}, + [2559] = {.lex_state = 280}, [2560] = {.lex_state = 280}, [2561] = {.lex_state = 280}, - [2562] = {.lex_state = 216}, + [2562] = {.lex_state = 234}, [2563] = {.lex_state = 280}, - [2564] = {.lex_state = 280}, + [2564] = {.lex_state = 283}, [2565] = {.lex_state = 280}, [2566] = {.lex_state = 280}, [2567] = {.lex_state = 280}, - [2568] = {.lex_state = 283}, - [2569] = {.lex_state = 280}, - [2570] = {.lex_state = 280}, + [2568] = {.lex_state = 280}, + [2569] = {.lex_state = 283}, + [2570] = {.lex_state = 283}, [2571] = {.lex_state = 280}, [2572] = {.lex_state = 280}, - [2573] = {.lex_state = 280}, - [2574] = {.lex_state = 280}, - [2575] = {.lex_state = 283}, - [2576] = {.lex_state = 280}, - [2577] = {.lex_state = 280}, - [2578] = {.lex_state = 283}, - [2579] = {.lex_state = 217}, + [2573] = {.lex_state = 283}, + [2574] = {.lex_state = 283}, + [2575] = {.lex_state = 280}, + [2576] = {.lex_state = 283}, + [2577] = {.lex_state = 216}, + [2578] = {.lex_state = 280}, + [2579] = {.lex_state = 280}, [2580] = {.lex_state = 280}, - [2581] = {.lex_state = 283}, + [2581] = {.lex_state = 280}, [2582] = {.lex_state = 283}, [2583] = {.lex_state = 283}, [2584] = {.lex_state = 283}, - [2585] = {.lex_state = 234}, + [2585] = {.lex_state = 280}, [2586] = {.lex_state = 283}, [2587] = {.lex_state = 283}, - [2588] = {.lex_state = 280}, + [2588] = {.lex_state = 283}, [2589] = {.lex_state = 283}, - [2590] = {.lex_state = 280}, - [2591] = {.lex_state = 280}, - [2592] = {.lex_state = 280}, - [2593] = {.lex_state = 234}, + [2590] = {.lex_state = 283}, + [2591] = {.lex_state = 283}, + [2592] = {.lex_state = 283}, + [2593] = {.lex_state = 283}, [2594] = {.lex_state = 283}, - [2595] = {.lex_state = 280}, - [2596] = {.lex_state = 280}, + [2595] = {.lex_state = 283}, + [2596] = {.lex_state = 281}, [2597] = {.lex_state = 283}, - [2598] = {.lex_state = 280}, - [2599] = {.lex_state = 280}, - [2600] = {.lex_state = 280}, - [2601] = {.lex_state = 283}, + [2598] = {.lex_state = 283}, + [2599] = {.lex_state = 283}, + [2600] = {.lex_state = 283}, + [2601] = {.lex_state = 280}, [2602] = {.lex_state = 280}, [2603] = {.lex_state = 280}, [2604] = {.lex_state = 280}, - [2605] = {.lex_state = 280}, - [2606] = {.lex_state = 216}, + [2605] = {.lex_state = 283}, + [2606] = {.lex_state = 283}, [2607] = {.lex_state = 283}, - [2608] = {.lex_state = 280}, - [2609] = {.lex_state = 234}, + [2608] = {.lex_state = 283}, + [2609] = {.lex_state = 283}, [2610] = {.lex_state = 283}, - [2611] = {.lex_state = 283}, - [2612] = {.lex_state = 216}, + [2611] = {.lex_state = 234}, + [2612] = {.lex_state = 234}, [2613] = {.lex_state = 283}, [2614] = {.lex_state = 283}, - [2615] = {.lex_state = 280}, + [2615] = {.lex_state = 283}, [2616] = {.lex_state = 283}, - [2617] = {.lex_state = 280}, - [2618] = {.lex_state = 283}, - [2619] = {.lex_state = 283}, + [2617] = {.lex_state = 283}, + [2618] = {.lex_state = 280}, + [2619] = {.lex_state = 216}, [2620] = {.lex_state = 283}, [2621] = {.lex_state = 283}, [2622] = {.lex_state = 280}, - [2623] = {.lex_state = 234}, - [2624] = {.lex_state = 216}, - [2625] = {.lex_state = 238}, + [2623] = {.lex_state = 283}, + [2624] = {.lex_state = 283}, + [2625] = {.lex_state = 283}, [2626] = {.lex_state = 283}, [2627] = {.lex_state = 280}, [2628] = {.lex_state = 283}, - [2629] = {.lex_state = 234}, - [2630] = {.lex_state = 234}, - [2631] = {.lex_state = 234}, - [2632] = {.lex_state = 283}, - [2633] = {.lex_state = 281}, + [2629] = {.lex_state = 283}, + [2630] = {.lex_state = 242}, + [2631] = {.lex_state = 280}, + [2632] = {.lex_state = 280}, + [2633] = {.lex_state = 280}, [2634] = {.lex_state = 283}, - [2635] = {.lex_state = 283}, - [2636] = {.lex_state = 283}, - [2637] = {.lex_state = 280}, - [2638] = {.lex_state = 234}, - [2639] = {.lex_state = 283}, - [2640] = {.lex_state = 280}, - [2641] = {.lex_state = 280}, - [2642] = {.lex_state = 280}, - [2643] = {.lex_state = 283}, + [2635] = {.lex_state = 280}, + [2636] = {.lex_state = 280}, + [2637] = {.lex_state = 283}, + [2638] = {.lex_state = 283}, + [2639] = {.lex_state = 280}, + [2640] = {.lex_state = 283}, + [2641] = {.lex_state = 283}, + [2642] = {.lex_state = 206}, + [2643] = {.lex_state = 206}, [2644] = {.lex_state = 283}, [2645] = {.lex_state = 283}, [2646] = {.lex_state = 283}, [2647] = {.lex_state = 283}, [2648] = {.lex_state = 283}, - [2649] = {.lex_state = 283}, + [2649] = {.lex_state = 280}, [2650] = {.lex_state = 283}, [2651] = {.lex_state = 283}, [2652] = {.lex_state = 283}, [2653] = {.lex_state = 283}, - [2654] = {.lex_state = 280}, + [2654] = {.lex_state = 283}, [2655] = {.lex_state = 280}, [2656] = {.lex_state = 283}, [2657] = {.lex_state = 283}, [2658] = {.lex_state = 283}, [2659] = {.lex_state = 283}, - [2660] = {.lex_state = 283}, - [2661] = {.lex_state = 283}, - [2662] = {.lex_state = 283}, - [2663] = {.lex_state = 283}, - [2664] = {.lex_state = 280}, - [2665] = {.lex_state = 217}, - [2666] = {.lex_state = 234}, - [2667] = {.lex_state = 282}, - [2668] = {.lex_state = 234}, - [2669] = {.lex_state = 233}, - [2670] = {.lex_state = 206}, - [2671] = {.lex_state = 206}, - [2672] = {.lex_state = 282}, - [2673] = {.lex_state = 206}, - [2674] = {.lex_state = 259}, - [2675] = {.lex_state = 282}, - [2676] = {.lex_state = 255}, - [2677] = {.lex_state = 216}, - [2678] = {.lex_state = 255}, - [2679] = {.lex_state = 206}, - [2680] = {.lex_state = 217}, - [2681] = {.lex_state = 234}, - [2682] = {.lex_state = 217}, - [2683] = {.lex_state = 234}, - [2684] = {.lex_state = 245}, - [2685] = {.lex_state = 245}, - [2686] = {.lex_state = 245}, - [2687] = {.lex_state = 245}, - [2688] = {.lex_state = 244}, - [2689] = {.lex_state = 245}, - [2690] = {.lex_state = 233}, - [2691] = {.lex_state = 245}, - [2692] = {.lex_state = 245}, + [2660] = {.lex_state = 280}, + [2661] = {.lex_state = 280}, + [2662] = {.lex_state = 280}, + [2663] = {.lex_state = 280}, + [2664] = {.lex_state = 283}, + [2665] = {.lex_state = 283}, + [2666] = {.lex_state = 283}, + [2667] = {.lex_state = 280}, + [2668] = {.lex_state = 206}, + [2669] = {.lex_state = 283}, + [2670] = {.lex_state = 280}, + [2671] = {.lex_state = 280}, + [2672] = {.lex_state = 283}, + [2673] = {.lex_state = 283}, + [2674] = {.lex_state = 280}, + [2675] = {.lex_state = 283}, + [2676] = {.lex_state = 206}, + [2677] = {.lex_state = 283}, + [2678] = {.lex_state = 280}, + [2679] = {.lex_state = 283}, + [2680] = {.lex_state = 234}, + [2681] = {.lex_state = 283}, + [2682] = {.lex_state = 283}, + [2683] = {.lex_state = 283}, + [2684] = {.lex_state = 283}, + [2685] = {.lex_state = 280}, + [2686] = {.lex_state = 283}, + [2687] = {.lex_state = 280}, + [2688] = {.lex_state = 283}, + [2689] = {.lex_state = 206}, + [2690] = {.lex_state = 217}, + [2691] = {.lex_state = 217}, + [2692] = {.lex_state = 244}, [2693] = {.lex_state = 282}, - [2694] = {.lex_state = 282}, - [2695] = {.lex_state = 233}, - [2696] = {.lex_state = 244}, - [2697] = {.lex_state = 245}, - [2698] = {.lex_state = 234}, - [2699] = {.lex_state = 282}, - [2700] = {.lex_state = 258}, - [2701] = {.lex_state = 217}, + [2694] = {.lex_state = 233}, + [2695] = {.lex_state = 282}, + [2696] = {.lex_state = 282}, + [2697] = {.lex_state = 258}, + [2698] = {.lex_state = 282}, + [2699] = {.lex_state = 255}, + [2700] = {.lex_state = 282}, + [2701] = {.lex_state = 216}, [2702] = {.lex_state = 234}, - [2703] = {.lex_state = 233}, - [2704] = {.lex_state = 255}, - [2705] = {.lex_state = 234}, - [2706] = {.lex_state = 258}, - [2707] = {.lex_state = 260}, - [2708] = {.lex_state = 236}, - [2709] = {.lex_state = 216}, - [2710] = {.lex_state = 234}, - [2711] = {.lex_state = 282}, - [2712] = {.lex_state = 282}, - [2713] = {.lex_state = 282}, - [2714] = {.lex_state = 282}, + [2703] = {.lex_state = 244}, + [2704] = {.lex_state = 233}, + [2705] = {.lex_state = 244}, + [2706] = {.lex_state = 234}, + [2707] = {.lex_state = 282}, + [2708] = {.lex_state = 216}, + [2709] = {.lex_state = 244}, + [2710] = {.lex_state = 282}, + [2711] = {.lex_state = 244}, + [2712] = {.lex_state = 233}, + [2713] = {.lex_state = 259}, + [2714] = {.lex_state = 234}, [2715] = {.lex_state = 282}, - [2716] = {.lex_state = 282}, - [2717] = {.lex_state = 282}, - [2718] = {.lex_state = 282}, + [2716] = {.lex_state = 206}, + [2717] = {.lex_state = 206}, + [2718] = {.lex_state = 216}, [2719] = {.lex_state = 282}, - [2720] = {.lex_state = 258}, + [2720] = {.lex_state = 244}, [2721] = {.lex_state = 282}, - [2722] = {.lex_state = 234}, - [2723] = {.lex_state = 233}, - [2724] = {.lex_state = 234}, - [2725] = {.lex_state = 234}, - [2726] = {.lex_state = 216}, - [2727] = {.lex_state = 216}, - [2728] = {.lex_state = 234}, - [2729] = {.lex_state = 217}, - [2730] = {.lex_state = 234}, - [2731] = {.lex_state = 234}, - [2732] = {.lex_state = 217}, + [2722] = {.lex_state = 255}, + [2723] = {.lex_state = 206}, + [2724] = {.lex_state = 282}, + [2725] = {.lex_state = 282}, + [2726] = {.lex_state = 234}, + [2727] = {.lex_state = 236}, + [2728] = {.lex_state = 244}, + [2729] = {.lex_state = 258}, + [2730] = {.lex_state = 244}, + [2731] = {.lex_state = 282}, + [2732] = {.lex_state = 234}, [2733] = {.lex_state = 234}, - [2734] = {.lex_state = 244}, - [2735] = {.lex_state = 234}, - [2736] = {.lex_state = 234}, - [2737] = {.lex_state = 244}, - [2738] = {.lex_state = 244}, - [2739] = {.lex_state = 256}, - [2740] = {.lex_state = 234}, - [2741] = {.lex_state = 234}, - [2742] = {.lex_state = 234}, + [2734] = {.lex_state = 234}, + [2735] = {.lex_state = 216}, + [2736] = {.lex_state = 255}, + [2737] = {.lex_state = 234}, + [2738] = {.lex_state = 282}, + [2739] = {.lex_state = 282}, + [2740] = {.lex_state = 217}, + [2741] = {.lex_state = 244}, + [2742] = {.lex_state = 260}, [2743] = {.lex_state = 234}, - [2744] = {.lex_state = 244}, - [2745] = {.lex_state = 234}, - [2746] = {.lex_state = 244}, - [2747] = {.lex_state = 244}, - [2748] = {.lex_state = 234}, - [2749] = {.lex_state = 244}, - [2750] = {.lex_state = 256}, - [2751] = {.lex_state = 265}, - [2752] = {.lex_state = 234}, - [2753] = {.lex_state = 234}, + [2744] = {.lex_state = 258}, + [2745] = {.lex_state = 244}, + [2746] = {.lex_state = 234}, + [2747] = {.lex_state = 282}, + [2748] = {.lex_state = 233}, + [2749] = {.lex_state = 234}, + [2750] = {.lex_state = 217}, + [2751] = {.lex_state = 234}, + [2752] = {.lex_state = 233}, + [2753] = {.lex_state = 244}, [2754] = {.lex_state = 234}, [2755] = {.lex_state = 234}, [2756] = {.lex_state = 234}, [2757] = {.lex_state = 234}, [2758] = {.lex_state = 234}, - [2759] = {.lex_state = 234}, - [2760] = {.lex_state = 259}, + [2759] = {.lex_state = 245}, + [2760] = {.lex_state = 244}, [2761] = {.lex_state = 234}, - [2762] = {.lex_state = 234}, + [2762] = {.lex_state = 244}, [2763] = {.lex_state = 234}, [2764] = {.lex_state = 234}, [2765] = {.lex_state = 234}, [2766] = {.lex_state = 234}, - [2767] = {.lex_state = 234}, - [2768] = {.lex_state = 234}, - [2769] = {.lex_state = 234}, + [2767] = {.lex_state = 244}, + [2768] = {.lex_state = 244}, + [2769] = {.lex_state = 244}, [2770] = {.lex_state = 234}, - [2771] = {.lex_state = 234}, + [2771] = {.lex_state = 244}, [2772] = {.lex_state = 234}, - [2773] = {.lex_state = 234}, - [2774] = {.lex_state = 245}, - [2775] = {.lex_state = 245}, + [2773] = {.lex_state = 244}, + [2774] = {.lex_state = 234}, + [2775] = {.lex_state = 234}, [2776] = {.lex_state = 234}, [2777] = {.lex_state = 234}, - [2778] = {.lex_state = 234}, + [2778] = {.lex_state = 256}, [2779] = {.lex_state = 234}, - [2780] = {.lex_state = 244}, - [2781] = {.lex_state = 244}, - [2782] = {.lex_state = 256}, + [2780] = {.lex_state = 234}, + [2781] = {.lex_state = 234}, + [2782] = {.lex_state = 234}, [2783] = {.lex_state = 234}, [2784] = {.lex_state = 234}, - [2785] = {.lex_state = 244}, - [2786] = {.lex_state = 234}, - [2787] = {.lex_state = 245}, + [2785] = {.lex_state = 234}, + [2786] = {.lex_state = 217}, + [2787] = {.lex_state = 281}, [2788] = {.lex_state = 234}, - [2789] = {.lex_state = 234}, - [2790] = {.lex_state = 244}, + [2789] = {.lex_state = 264}, + [2790] = {.lex_state = 234}, [2791] = {.lex_state = 234}, - [2792] = {.lex_state = 234}, + [2792] = {.lex_state = 256}, [2793] = {.lex_state = 234}, [2794] = {.lex_state = 234}, - [2795] = {.lex_state = 216}, + [2795] = {.lex_state = 234}, [2796] = {.lex_state = 234}, - [2797] = {.lex_state = 217}, + [2797] = {.lex_state = 244}, [2798] = {.lex_state = 234}, - [2799] = {.lex_state = 238}, - [2800] = {.lex_state = 217}, - [2801] = {.lex_state = 234}, + [2799] = {.lex_state = 234}, + [2800] = {.lex_state = 234}, + [2801] = {.lex_state = 244}, [2802] = {.lex_state = 234}, [2803] = {.lex_state = 234}, [2804] = {.lex_state = 234}, - [2805] = {.lex_state = 234}, - [2806] = {.lex_state = 234}, - [2807] = {.lex_state = 281}, + [2805] = {.lex_state = 237}, + [2806] = {.lex_state = 265}, + [2807] = {.lex_state = 234}, [2808] = {.lex_state = 234}, - [2809] = {.lex_state = 238}, - [2810] = {.lex_state = 237}, - [2811] = {.lex_state = 234}, + [2809] = {.lex_state = 244}, + [2810] = {.lex_state = 245}, + [2811] = {.lex_state = 217}, [2812] = {.lex_state = 234}, [2813] = {.lex_state = 234}, - [2814] = {.lex_state = 234}, + [2814] = {.lex_state = 217}, [2815] = {.lex_state = 234}, - [2816] = {.lex_state = 244}, - [2817] = {.lex_state = 264}, + [2816] = {.lex_state = 234}, + [2817] = {.lex_state = 234}, [2818] = {.lex_state = 234}, - [2819] = {.lex_state = 234}, + [2819] = {.lex_state = 238}, [2820] = {.lex_state = 234}, [2821] = {.lex_state = 234}, [2822] = {.lex_state = 234}, @@ -69739,1575 +70000,1575 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2830] = {.lex_state = 234}, [2831] = {.lex_state = 234}, [2832] = {.lex_state = 234}, - [2833] = {.lex_state = 234}, + [2833] = {.lex_state = 238}, [2834] = {.lex_state = 234}, [2835] = {.lex_state = 234}, [2836] = {.lex_state = 234}, - [2837] = {.lex_state = 234}, - [2838] = {.lex_state = 216}, - [2839] = {.lex_state = 273}, - [2840] = {.lex_state = 245}, - [2841] = {.lex_state = 259}, - [2842] = {.lex_state = 216}, - [2843] = {.lex_state = 273}, - [2844] = {.lex_state = 238}, - [2845] = {.lex_state = 238}, - [2846] = {.lex_state = 238}, - [2847] = {.lex_state = 238}, - [2848] = {.lex_state = 259}, - [2849] = {.lex_state = 259}, - [2850] = {.lex_state = 207}, - [2851] = {.lex_state = 282}, - [2852] = {.lex_state = 273}, - [2853] = {.lex_state = 264}, - [2854] = {.lex_state = 273}, - [2855] = {.lex_state = 207}, - [2856] = {.lex_state = 259}, - [2857] = {.lex_state = 282}, - [2858] = {.lex_state = 238}, - [2859] = {.lex_state = 238}, - [2860] = {.lex_state = 238}, - [2861] = {.lex_state = 216}, - [2862] = {.lex_state = 216}, - [2863] = {.lex_state = 259}, - [2864] = {.lex_state = 259}, - [2865] = {.lex_state = 238}, - [2866] = {.lex_state = 259}, - [2867] = {.lex_state = 273}, - [2868] = {.lex_state = 245}, + [2837] = {.lex_state = 216}, + [2838] = {.lex_state = 234}, + [2839] = {.lex_state = 234}, + [2840] = {.lex_state = 217}, + [2841] = {.lex_state = 234}, + [2842] = {.lex_state = 234}, + [2843] = {.lex_state = 234}, + [2844] = {.lex_state = 259}, + [2845] = {.lex_state = 234}, + [2846] = {.lex_state = 244}, + [2847] = {.lex_state = 234}, + [2848] = {.lex_state = 234}, + [2849] = {.lex_state = 234}, + [2850] = {.lex_state = 234}, + [2851] = {.lex_state = 234}, + [2852] = {.lex_state = 234}, + [2853] = {.lex_state = 234}, + [2854] = {.lex_state = 234}, + [2855] = {.lex_state = 234}, + [2856] = {.lex_state = 234}, + [2857] = {.lex_state = 234}, + [2858] = {.lex_state = 234}, + [2859] = {.lex_state = 244}, + [2860] = {.lex_state = 234}, + [2861] = {.lex_state = 256}, + [2862] = {.lex_state = 238}, + [2863] = {.lex_state = 273}, + [2864] = {.lex_state = 238}, + [2865] = {.lex_state = 264}, + [2866] = {.lex_state = 238}, + [2867] = {.lex_state = 207}, + [2868] = {.lex_state = 273}, [2869] = {.lex_state = 259}, - [2870] = {.lex_state = 238}, - [2871] = {.lex_state = 238}, - [2872] = {.lex_state = 245}, - [2873] = {.lex_state = 245}, - [2874] = {.lex_state = 282}, - [2875] = {.lex_state = 207}, - [2876] = {.lex_state = 273}, - [2877] = {.lex_state = 238}, - [2878] = {.lex_state = 273}, - [2879] = {.lex_state = 237}, - [2880] = {.lex_state = 238}, - [2881] = {.lex_state = 245}, - [2882] = {.lex_state = 273}, - [2883] = {.lex_state = 259}, - [2884] = {.lex_state = 216}, - [2885] = {.lex_state = 216}, - [2886] = {.lex_state = 245}, - [2887] = {.lex_state = 259}, - [2888] = {.lex_state = 255}, - [2889] = {.lex_state = 259}, - [2890] = {.lex_state = 264}, - [2891] = {.lex_state = 255}, - [2892] = {.lex_state = 260}, - [2893] = {.lex_state = 264}, - [2894] = {.lex_state = 216}, - [2895] = {.lex_state = 259}, - [2896] = {.lex_state = 259}, - [2897] = {.lex_state = 264}, - [2898] = {.lex_state = 264}, - [2899] = {.lex_state = 264}, - [2900] = {.lex_state = 264}, + [2870] = {.lex_state = 273}, + [2871] = {.lex_state = 273}, + [2872] = {.lex_state = 273}, + [2873] = {.lex_state = 282}, + [2874] = {.lex_state = 238}, + [2875] = {.lex_state = 259}, + [2876] = {.lex_state = 259}, + [2877] = {.lex_state = 245}, + [2878] = {.lex_state = 238}, + [2879] = {.lex_state = 273}, + [2880] = {.lex_state = 259}, + [2881] = {.lex_state = 259}, + [2882] = {.lex_state = 238}, + [2883] = {.lex_state = 216}, + [2884] = {.lex_state = 259}, + [2885] = {.lex_state = 259}, + [2886] = {.lex_state = 238}, + [2887] = {.lex_state = 244}, + [2888] = {.lex_state = 237}, + [2889] = {.lex_state = 207}, + [2890] = {.lex_state = 259}, + [2891] = {.lex_state = 244}, + [2892] = {.lex_state = 282}, + [2893] = {.lex_state = 244}, + [2894] = {.lex_state = 238}, + [2895] = {.lex_state = 238}, + [2896] = {.lex_state = 216}, + [2897] = {.lex_state = 238}, + [2898] = {.lex_state = 216}, + [2899] = {.lex_state = 282}, + [2900] = {.lex_state = 259}, [2901] = {.lex_state = 273}, - [2902] = {.lex_state = 264}, - [2903] = {.lex_state = 259}, - [2904] = {.lex_state = 260}, - [2905] = {.lex_state = 264}, - [2906] = {.lex_state = 259}, - [2907] = {.lex_state = 216}, - [2908] = {.lex_state = 264}, + [2902] = {.lex_state = 207}, + [2903] = {.lex_state = 273}, + [2904] = {.lex_state = 238}, + [2905] = {.lex_state = 238}, + [2906] = {.lex_state = 216}, + [2907] = {.lex_state = 244}, + [2908] = {.lex_state = 216}, [2909] = {.lex_state = 259}, - [2910] = {.lex_state = 245}, - [2911] = {.lex_state = 255}, - [2912] = {.lex_state = 260}, - [2913] = {.lex_state = 245}, - [2914] = {.lex_state = 264}, - [2915] = {.lex_state = 204}, - [2916] = {.lex_state = 265}, - [2917] = {.lex_state = 245}, - [2918] = {.lex_state = 282}, - [2919] = {.lex_state = 245}, - [2920] = {.lex_state = 259}, - [2921] = {.lex_state = 204}, - [2922] = {.lex_state = 245}, - [2923] = {.lex_state = 245}, - [2924] = {.lex_state = 264}, - [2925] = {.lex_state = 245}, - [2926] = {.lex_state = 265}, - [2927] = {.lex_state = 260}, - [2928] = {.lex_state = 259}, + [2910] = {.lex_state = 264}, + [2911] = {.lex_state = 216}, + [2912] = {.lex_state = 259}, + [2913] = {.lex_state = 264}, + [2914] = {.lex_state = 255}, + [2915] = {.lex_state = 260}, + [2916] = {.lex_state = 259}, + [2917] = {.lex_state = 259}, + [2918] = {.lex_state = 264}, + [2919] = {.lex_state = 259}, + [2920] = {.lex_state = 264}, + [2921] = {.lex_state = 255}, + [2922] = {.lex_state = 264}, + [2923] = {.lex_state = 260}, + [2924] = {.lex_state = 216}, + [2925] = {.lex_state = 255}, + [2926] = {.lex_state = 259}, + [2927] = {.lex_state = 264}, + [2928] = {.lex_state = 264}, [2929] = {.lex_state = 264}, - [2930] = {.lex_state = 259}, + [2930] = {.lex_state = 273}, [2931] = {.lex_state = 259}, - [2932] = {.lex_state = 259}, - [2933] = {.lex_state = 264}, - [2934] = {.lex_state = 245}, - [2935] = {.lex_state = 259}, + [2932] = {.lex_state = 216}, + [2933] = {.lex_state = 244}, + [2934] = {.lex_state = 260}, + [2935] = {.lex_state = 244}, [2936] = {.lex_state = 264}, - [2937] = {.lex_state = 245}, - [2938] = {.lex_state = 264}, - [2939] = {.lex_state = 245}, - [2940] = {.lex_state = 245}, - [2941] = {.lex_state = 245}, - [2942] = {.lex_state = 245}, - [2943] = {.lex_state = 234}, - [2944] = {.lex_state = 284}, - [2945] = {.lex_state = 234}, - [2946] = {.lex_state = 272}, - [2947] = {.lex_state = 234}, - [2948] = {.lex_state = 234}, - [2949] = {.lex_state = 234}, - [2950] = {.lex_state = 272}, - [2951] = {.lex_state = 272}, - [2952] = {.lex_state = 245}, - [2953] = {.lex_state = 226}, - [2954] = {.lex_state = 264}, - [2955] = {.lex_state = 245}, - [2956] = {.lex_state = 234}, - [2957] = {.lex_state = 234}, - [2958] = {.lex_state = 245}, - [2959] = {.lex_state = 272}, - [2960] = {.lex_state = 234}, - [2961] = {.lex_state = 234}, - [2962] = {.lex_state = 259}, - [2963] = {.lex_state = 234}, - [2964] = {.lex_state = 259}, - [2965] = {.lex_state = 234}, - [2966] = {.lex_state = 234}, - [2967] = {.lex_state = 264}, - [2968] = {.lex_state = 259}, - [2969] = {.lex_state = 234}, - [2970] = {.lex_state = 245}, - [2971] = {.lex_state = 259}, + [2937] = {.lex_state = 260}, + [2938] = {.lex_state = 244}, + [2939] = {.lex_state = 259}, + [2940] = {.lex_state = 259}, + [2941] = {.lex_state = 282}, + [2942] = {.lex_state = 244}, + [2943] = {.lex_state = 259}, + [2944] = {.lex_state = 244}, + [2945] = {.lex_state = 244}, + [2946] = {.lex_state = 265}, + [2947] = {.lex_state = 204}, + [2948] = {.lex_state = 264}, + [2949] = {.lex_state = 244}, + [2950] = {.lex_state = 244}, + [2951] = {.lex_state = 244}, + [2952] = {.lex_state = 259}, + [2953] = {.lex_state = 259}, + [2954] = {.lex_state = 265}, + [2955] = {.lex_state = 204}, + [2956] = {.lex_state = 244}, + [2957] = {.lex_state = 264}, + [2958] = {.lex_state = 264}, + [2959] = {.lex_state = 259}, + [2960] = {.lex_state = 264}, + [2961] = {.lex_state = 244}, + [2962] = {.lex_state = 244}, + [2963] = {.lex_state = 264}, + [2964] = {.lex_state = 244}, + [2965] = {.lex_state = 244}, + [2966] = {.lex_state = 264}, + [2967] = {.lex_state = 259}, + [2968] = {.lex_state = 244}, + [2969] = {.lex_state = 272}, + [2970] = {.lex_state = 272}, + [2971] = {.lex_state = 272}, [2972] = {.lex_state = 259}, - [2973] = {.lex_state = 264}, - [2974] = {.lex_state = 234}, - [2975] = {.lex_state = 234}, - [2976] = {.lex_state = 234}, - [2977] = {.lex_state = 272}, - [2978] = {.lex_state = 259}, + [2973] = {.lex_state = 272}, + [2974] = {.lex_state = 272}, + [2975] = {.lex_state = 264}, + [2976] = {.lex_state = 244}, + [2977] = {.lex_state = 273}, + [2978] = {.lex_state = 272}, [2979] = {.lex_state = 272}, - [2980] = {.lex_state = 226}, - [2981] = {.lex_state = 259}, - [2982] = {.lex_state = 226}, - [2983] = {.lex_state = 244}, - [2984] = {.lex_state = 259}, - [2985] = {.lex_state = 226}, + [2980] = {.lex_state = 207}, + [2981] = {.lex_state = 207}, + [2982] = {.lex_state = 259}, + [2983] = {.lex_state = 259}, + [2984] = {.lex_state = 234}, + [2985] = {.lex_state = 264}, [2986] = {.lex_state = 284}, - [2987] = {.lex_state = 244}, + [2987] = {.lex_state = 265}, [2988] = {.lex_state = 272}, - [2989] = {.lex_state = 259}, + [2989] = {.lex_state = 244}, [2990] = {.lex_state = 207}, - [2991] = {.lex_state = 272}, - [2992] = {.lex_state = 272}, - [2993] = {.lex_state = 272}, - [2994] = {.lex_state = 245}, - [2995] = {.lex_state = 234}, - [2996] = {.lex_state = 265}, - [2997] = {.lex_state = 272}, - [2998] = {.lex_state = 273}, - [2999] = {.lex_state = 273}, - [3000] = {.lex_state = 272}, - [3001] = {.lex_state = 264}, + [2991] = {.lex_state = 234}, + [2992] = {.lex_state = 207}, + [2993] = {.lex_state = 259}, + [2994] = {.lex_state = 264}, + [2995] = {.lex_state = 259}, + [2996] = {.lex_state = 284}, + [2997] = {.lex_state = 234}, + [2998] = {.lex_state = 264}, + [2999] = {.lex_state = 259}, + [3000] = {.lex_state = 273}, + [3001] = {.lex_state = 259}, [3002] = {.lex_state = 259}, - [3003] = {.lex_state = 207}, - [3004] = {.lex_state = 259}, - [3005] = {.lex_state = 245}, - [3006] = {.lex_state = 207}, - [3007] = {.lex_state = 245}, - [3008] = {.lex_state = 207}, - [3009] = {.lex_state = 259}, - [3010] = {.lex_state = 204}, - [3011] = {.lex_state = 260}, - [3012] = {.lex_state = 273}, - [3013] = {.lex_state = 259}, - [3014] = {.lex_state = 233}, - [3015] = {.lex_state = 233}, - [3016] = {.lex_state = 264}, - [3017] = {.lex_state = 273}, - [3018] = {.lex_state = 245}, - [3019] = {.lex_state = 245}, - [3020] = {.lex_state = 284}, - [3021] = {.lex_state = 259}, - [3022] = {.lex_state = 273}, - [3023] = {.lex_state = 233}, - [3024] = {.lex_state = 284}, - [3025] = {.lex_state = 245}, - [3026] = {.lex_state = 259}, - [3027] = {.lex_state = 284}, - [3028] = {.lex_state = 245}, - [3029] = {.lex_state = 233}, - [3030] = {.lex_state = 226}, - [3031] = {.lex_state = 245}, - [3032] = {.lex_state = 245}, - [3033] = {.lex_state = 245}, - [3034] = {.lex_state = 245}, - [3035] = {.lex_state = 273}, - [3036] = {.lex_state = 226}, + [3003] = {.lex_state = 226}, + [3004] = {.lex_state = 244}, + [3005] = {.lex_state = 244}, + [3006] = {.lex_state = 226}, + [3007] = {.lex_state = 234}, + [3008] = {.lex_state = 272}, + [3009] = {.lex_state = 234}, + [3010] = {.lex_state = 244}, + [3011] = {.lex_state = 259}, + [3012] = {.lex_state = 244}, + [3013] = {.lex_state = 234}, + [3014] = {.lex_state = 234}, + [3015] = {.lex_state = 226}, + [3016] = {.lex_state = 234}, + [3017] = {.lex_state = 234}, + [3018] = {.lex_state = 234}, + [3019] = {.lex_state = 234}, + [3020] = {.lex_state = 234}, + [3021] = {.lex_state = 234}, + [3022] = {.lex_state = 234}, + [3023] = {.lex_state = 272}, + [3024] = {.lex_state = 226}, + [3025] = {.lex_state = 259}, + [3026] = {.lex_state = 234}, + [3027] = {.lex_state = 272}, + [3028] = {.lex_state = 272}, + [3029] = {.lex_state = 244}, + [3030] = {.lex_state = 244}, + [3031] = {.lex_state = 234}, + [3032] = {.lex_state = 234}, + [3033] = {.lex_state = 244}, + [3034] = {.lex_state = 259}, + [3035] = {.lex_state = 284}, + [3036] = {.lex_state = 259}, [3037] = {.lex_state = 259}, - [3038] = {.lex_state = 233}, - [3039] = {.lex_state = 226}, - [3040] = {.lex_state = 245}, - [3041] = {.lex_state = 204}, - [3042] = {.lex_state = 273}, - [3043] = {.lex_state = 245}, - [3044] = {.lex_state = 245}, - [3045] = {.lex_state = 284}, - [3046] = {.lex_state = 245}, - [3047] = {.lex_state = 245}, - [3048] = {.lex_state = 259}, - [3049] = {.lex_state = 245}, - [3050] = {.lex_state = 245}, - [3051] = {.lex_state = 245}, - [3052] = {.lex_state = 245}, - [3053] = {.lex_state = 233}, + [3038] = {.lex_state = 204}, + [3039] = {.lex_state = 259}, + [3040] = {.lex_state = 260}, + [3041] = {.lex_state = 227}, + [3042] = {.lex_state = 244}, + [3043] = {.lex_state = 259}, + [3044] = {.lex_state = 244}, + [3045] = {.lex_state = 244}, + [3046] = {.lex_state = 204}, + [3047] = {.lex_state = 257}, + [3048] = {.lex_state = 244}, + [3049] = {.lex_state = 259}, + [3050] = {.lex_state = 244}, + [3051] = {.lex_state = 233}, + [3052] = {.lex_state = 259}, + [3053] = {.lex_state = 244}, [3054] = {.lex_state = 259}, - [3055] = {.lex_state = 259}, - [3056] = {.lex_state = 245}, - [3057] = {.lex_state = 273}, - [3058] = {.lex_state = 245}, - [3059] = {.lex_state = 273}, - [3060] = {.lex_state = 245}, - [3061] = {.lex_state = 204}, - [3062] = {.lex_state = 245}, - [3063] = {.lex_state = 257}, - [3064] = {.lex_state = 245}, - [3065] = {.lex_state = 245}, - [3066] = {.lex_state = 245}, - [3067] = {.lex_state = 245}, - [3068] = {.lex_state = 245}, - [3069] = {.lex_state = 276}, - [3070] = {.lex_state = 245}, - [3071] = {.lex_state = 245}, - [3072] = {.lex_state = 204}, - [3073] = {.lex_state = 245}, - [3074] = {.lex_state = 259}, - [3075] = {.lex_state = 259}, - [3076] = {.lex_state = 204}, - [3077] = {.lex_state = 245}, - [3078] = {.lex_state = 245}, - [3079] = {.lex_state = 264}, - [3080] = {.lex_state = 204}, - [3081] = {.lex_state = 204}, - [3082] = {.lex_state = 204}, - [3083] = {.lex_state = 284}, + [3055] = {.lex_state = 204}, + [3056] = {.lex_state = 244}, + [3057] = {.lex_state = 204}, + [3058] = {.lex_state = 259}, + [3059] = {.lex_state = 244}, + [3060] = {.lex_state = 273}, + [3061] = {.lex_state = 273}, + [3062] = {.lex_state = 204}, + [3063] = {.lex_state = 244}, + [3064] = {.lex_state = 259}, + [3065] = {.lex_state = 260}, + [3066] = {.lex_state = 273}, + [3067] = {.lex_state = 264}, + [3068] = {.lex_state = 204}, + [3069] = {.lex_state = 233}, + [3070] = {.lex_state = 204}, + [3071] = {.lex_state = 284}, + [3072] = {.lex_state = 226}, + [3073] = {.lex_state = 233}, + [3074] = {.lex_state = 257}, + [3075] = {.lex_state = 244}, + [3076] = {.lex_state = 244}, + [3077] = {.lex_state = 233}, + [3078] = {.lex_state = 233}, + [3079] = {.lex_state = 284}, + [3080] = {.lex_state = 233}, + [3081] = {.lex_state = 273}, + [3082] = {.lex_state = 273}, + [3083] = {.lex_state = 227}, [3084] = {.lex_state = 284}, - [3085] = {.lex_state = 260}, - [3086] = {.lex_state = 284}, - [3087] = {.lex_state = 257}, - [3088] = {.lex_state = 227}, - [3089] = {.lex_state = 245}, - [3090] = {.lex_state = 245}, - [3091] = {.lex_state = 245}, - [3092] = {.lex_state = 245}, - [3093] = {.lex_state = 204}, - [3094] = {.lex_state = 245}, - [3095] = {.lex_state = 276}, - [3096] = {.lex_state = 245}, - [3097] = {.lex_state = 227}, - [3098] = {.lex_state = 284}, - [3099] = {.lex_state = 204}, - [3100] = {.lex_state = 276}, - [3101] = {.lex_state = 284}, - [3102] = {.lex_state = 284}, - [3103] = {.lex_state = 259}, - [3104] = {.lex_state = 284}, + [3085] = {.lex_state = 284}, + [3086] = {.lex_state = 244}, + [3087] = {.lex_state = 284}, + [3088] = {.lex_state = 244}, + [3089] = {.lex_state = 244}, + [3090] = {.lex_state = 284}, + [3091] = {.lex_state = 259}, + [3092] = {.lex_state = 264}, + [3093] = {.lex_state = 259}, + [3094] = {.lex_state = 259}, + [3095] = {.lex_state = 259}, + [3096] = {.lex_state = 244}, + [3097] = {.lex_state = 244}, + [3098] = {.lex_state = 244}, + [3099] = {.lex_state = 244}, + [3100] = {.lex_state = 273}, + [3101] = {.lex_state = 259}, + [3102] = {.lex_state = 259}, + [3103] = {.lex_state = 226}, + [3104] = {.lex_state = 233}, [3105] = {.lex_state = 259}, - [3106] = {.lex_state = 273}, - [3107] = {.lex_state = 259}, - [3108] = {.lex_state = 233}, - [3109] = {.lex_state = 204}, - [3110] = {.lex_state = 204}, - [3111] = {.lex_state = 273}, - [3112] = {.lex_state = 259}, - [3113] = {.lex_state = 204}, - [3114] = {.lex_state = 204}, - [3115] = {.lex_state = 204}, - [3116] = {.lex_state = 204}, + [3106] = {.lex_state = 284}, + [3107] = {.lex_state = 284}, + [3108] = {.lex_state = 273}, + [3109] = {.lex_state = 259}, + [3110] = {.lex_state = 226}, + [3111] = {.lex_state = 244}, + [3112] = {.lex_state = 244}, + [3113] = {.lex_state = 284}, + [3114] = {.lex_state = 273}, + [3115] = {.lex_state = 257}, + [3116] = {.lex_state = 259}, [3117] = {.lex_state = 204}, - [3118] = {.lex_state = 257}, - [3119] = {.lex_state = 204}, - [3120] = {.lex_state = 273}, - [3121] = {.lex_state = 204}, - [3122] = {.lex_state = 273}, - [3123] = {.lex_state = 284}, - [3124] = {.lex_state = 257}, + [3118] = {.lex_state = 244}, + [3119] = {.lex_state = 257}, + [3120] = {.lex_state = 276}, + [3121] = {.lex_state = 244}, + [3122] = {.lex_state = 244}, + [3123] = {.lex_state = 244}, + [3124] = {.lex_state = 259}, [3125] = {.lex_state = 273}, - [3126] = {.lex_state = 276}, - [3127] = {.lex_state = 259}, + [3126] = {.lex_state = 244}, + [3127] = {.lex_state = 204}, [3128] = {.lex_state = 244}, - [3129] = {.lex_state = 273}, - [3130] = {.lex_state = 259}, - [3131] = {.lex_state = 204}, + [3129] = {.lex_state = 244}, + [3130] = {.lex_state = 244}, + [3131] = {.lex_state = 244}, [3132] = {.lex_state = 259}, - [3133] = {.lex_state = 276}, - [3134] = {.lex_state = 259}, - [3135] = {.lex_state = 273}, - [3136] = {.lex_state = 245}, - [3137] = {.lex_state = 234}, + [3133] = {.lex_state = 244}, + [3134] = {.lex_state = 276}, + [3135] = {.lex_state = 204}, + [3136] = {.lex_state = 204}, + [3137] = {.lex_state = 244}, [3138] = {.lex_state = 259}, - [3139] = {.lex_state = 234}, - [3140] = {.lex_state = 234}, - [3141] = {.lex_state = 245}, - [3142] = {.lex_state = 234}, - [3143] = {.lex_state = 234}, - [3144] = {.lex_state = 234}, - [3145] = {.lex_state = 272}, - [3146] = {.lex_state = 234}, - [3147] = {.lex_state = 234}, - [3148] = {.lex_state = 234}, - [3149] = {.lex_state = 264}, - [3150] = {.lex_state = 259}, - [3151] = {.lex_state = 234}, + [3139] = {.lex_state = 204}, + [3140] = {.lex_state = 244}, + [3141] = {.lex_state = 244}, + [3142] = {.lex_state = 244}, + [3143] = {.lex_state = 276}, + [3144] = {.lex_state = 273}, + [3145] = {.lex_state = 244}, + [3146] = {.lex_state = 244}, + [3147] = {.lex_state = 273}, + [3148] = {.lex_state = 273}, + [3149] = {.lex_state = 284}, + [3150] = {.lex_state = 273}, + [3151] = {.lex_state = 259}, [3152] = {.lex_state = 259}, - [3153] = {.lex_state = 281}, - [3154] = {.lex_state = 264}, - [3155] = {.lex_state = 231}, - [3156] = {.lex_state = 234}, - [3157] = {.lex_state = 272}, - [3158] = {.lex_state = 227}, - [3159] = {.lex_state = 245}, - [3160] = {.lex_state = 264}, - [3161] = {.lex_state = 259}, - [3162] = {.lex_state = 234}, - [3163] = {.lex_state = 264}, - [3164] = {.lex_state = 231}, - [3165] = {.lex_state = 284}, - [3166] = {.lex_state = 245}, - [3167] = {.lex_state = 245}, - [3168] = {.lex_state = 245}, - [3169] = {.lex_state = 273}, - [3170] = {.lex_state = 231}, - [3171] = {.lex_state = 273}, - [3172] = {.lex_state = 245}, - [3173] = {.lex_state = 231}, - [3174] = {.lex_state = 259}, - [3175] = {.lex_state = 273}, + [3153] = {.lex_state = 204}, + [3154] = {.lex_state = 204}, + [3155] = {.lex_state = 276}, + [3156] = {.lex_state = 204}, + [3157] = {.lex_state = 276}, + [3158] = {.lex_state = 204}, + [3159] = {.lex_state = 244}, + [3160] = {.lex_state = 204}, + [3161] = {.lex_state = 204}, + [3162] = {.lex_state = 204}, + [3163] = {.lex_state = 284}, + [3164] = {.lex_state = 204}, + [3165] = {.lex_state = 264}, + [3166] = {.lex_state = 264}, + [3167] = {.lex_state = 234}, + [3168] = {.lex_state = 234}, + [3169] = {.lex_state = 259}, + [3170] = {.lex_state = 244}, + [3171] = {.lex_state = 259}, + [3172] = {.lex_state = 244}, + [3173] = {.lex_state = 244}, + [3174] = {.lex_state = 244}, + [3175] = {.lex_state = 234}, [3176] = {.lex_state = 234}, - [3177] = {.lex_state = 234}, - [3178] = {.lex_state = 245}, - [3179] = {.lex_state = 245}, - [3180] = {.lex_state = 245}, - [3181] = {.lex_state = 245}, - [3182] = {.lex_state = 284}, - [3183] = {.lex_state = 273}, - [3184] = {.lex_state = 264}, + [3177] = {.lex_state = 244}, + [3178] = {.lex_state = 244}, + [3179] = {.lex_state = 244}, + [3180] = {.lex_state = 244}, + [3181] = {.lex_state = 273}, + [3182] = {.lex_state = 234}, + [3183] = {.lex_state = 234}, + [3184] = {.lex_state = 231}, [3185] = {.lex_state = 234}, - [3186] = {.lex_state = 273}, - [3187] = {.lex_state = 264}, - [3188] = {.lex_state = 245}, - [3189] = {.lex_state = 226}, - [3190] = {.lex_state = 234}, - [3191] = {.lex_state = 259}, - [3192] = {.lex_state = 273}, + [3186] = {.lex_state = 259}, + [3187] = {.lex_state = 234}, + [3188] = {.lex_state = 272}, + [3189] = {.lex_state = 234}, + [3190] = {.lex_state = 273}, + [3191] = {.lex_state = 234}, + [3192] = {.lex_state = 244}, [3193] = {.lex_state = 234}, - [3194] = {.lex_state = 259}, - [3195] = {.lex_state = 245}, - [3196] = {.lex_state = 259}, + [3194] = {.lex_state = 284}, + [3195] = {.lex_state = 244}, + [3196] = {.lex_state = 234}, [3197] = {.lex_state = 259}, - [3198] = {.lex_state = 245}, - [3199] = {.lex_state = 245}, - [3200] = {.lex_state = 245}, - [3201] = {.lex_state = 245}, - [3202] = {.lex_state = 245}, - [3203] = {.lex_state = 264}, - [3204] = {.lex_state = 245}, - [3205] = {.lex_state = 245}, - [3206] = {.lex_state = 245}, - [3207] = {.lex_state = 245}, - [3208] = {.lex_state = 245}, - [3209] = {.lex_state = 245}, - [3210] = {.lex_state = 227}, + [3198] = {.lex_state = 259}, + [3199] = {.lex_state = 227}, + [3200] = {.lex_state = 273}, + [3201] = {.lex_state = 234}, + [3202] = {.lex_state = 259}, + [3203] = {.lex_state = 227}, + [3204] = {.lex_state = 264}, + [3205] = {.lex_state = 259}, + [3206] = {.lex_state = 244}, + [3207] = {.lex_state = 264}, + [3208] = {.lex_state = 244}, + [3209] = {.lex_state = 264}, + [3210] = {.lex_state = 259}, [3211] = {.lex_state = 234}, - [3212] = {.lex_state = 259}, + [3212] = {.lex_state = 273}, [3213] = {.lex_state = 264}, - [3214] = {.lex_state = 231}, - [3215] = {.lex_state = 259}, - [3216] = {.lex_state = 264}, - [3217] = {.lex_state = 264}, - [3218] = {.lex_state = 264}, - [3219] = {.lex_state = 264}, - [3220] = {.lex_state = 245}, - [3221] = {.lex_state = 260}, - [3222] = {.lex_state = 259}, - [3223] = {.lex_state = 244}, - [3224] = {.lex_state = 259}, + [3214] = {.lex_state = 259}, + [3215] = {.lex_state = 234}, + [3216] = {.lex_state = 226}, + [3217] = {.lex_state = 244}, + [3218] = {.lex_state = 281}, + [3219] = {.lex_state = 244}, + [3220] = {.lex_state = 244}, + [3221] = {.lex_state = 244}, + [3222] = {.lex_state = 244}, + [3223] = {.lex_state = 272}, + [3224] = {.lex_state = 244}, [3225] = {.lex_state = 259}, - [3226] = {.lex_state = 259}, - [3227] = {.lex_state = 259}, - [3228] = {.lex_state = 231}, - [3229] = {.lex_state = 264}, - [3230] = {.lex_state = 226}, - [3231] = {.lex_state = 259}, - [3232] = {.lex_state = 259}, - [3233] = {.lex_state = 259}, - [3234] = {.lex_state = 264}, - [3235] = {.lex_state = 267}, - [3236] = {.lex_state = 245}, - [3237] = {.lex_state = 259}, - [3238] = {.lex_state = 245}, - [3239] = {.lex_state = 207}, - [3240] = {.lex_state = 259}, - [3241] = {.lex_state = 197}, - [3242] = {.lex_state = 240}, - [3243] = {.lex_state = 259}, - [3244] = {.lex_state = 197}, - [3245] = {.lex_state = 197}, - [3246] = {.lex_state = 264}, + [3226] = {.lex_state = 244}, + [3227] = {.lex_state = 244}, + [3228] = {.lex_state = 244}, + [3229] = {.lex_state = 234}, + [3230] = {.lex_state = 244}, + [3231] = {.lex_state = 244}, + [3232] = {.lex_state = 244}, + [3233] = {.lex_state = 244}, + [3234] = {.lex_state = 234}, + [3235] = {.lex_state = 234}, + [3236] = {.lex_state = 244}, + [3237] = {.lex_state = 264}, + [3238] = {.lex_state = 259}, + [3239] = {.lex_state = 264}, + [3240] = {.lex_state = 284}, + [3241] = {.lex_state = 231}, + [3242] = {.lex_state = 273}, + [3243] = {.lex_state = 264}, + [3244] = {.lex_state = 264}, + [3245] = {.lex_state = 259}, + [3246] = {.lex_state = 260}, [3247] = {.lex_state = 259}, [3248] = {.lex_state = 231}, [3249] = {.lex_state = 259}, [3250] = {.lex_state = 259}, - [3251] = {.lex_state = 259}, - [3252] = {.lex_state = 267}, + [3251] = {.lex_state = 273}, + [3252] = {.lex_state = 231}, [3253] = {.lex_state = 264}, - [3254] = {.lex_state = 259}, - [3255] = {.lex_state = 273}, - [3256] = {.lex_state = 273}, - [3257] = {.lex_state = 273}, - [3258] = {.lex_state = 273}, - [3259] = {.lex_state = 259}, + [3254] = {.lex_state = 273}, + [3255] = {.lex_state = 264}, + [3256] = {.lex_state = 259}, + [3257] = {.lex_state = 231}, + [3258] = {.lex_state = 259}, + [3259] = {.lex_state = 245}, [3260] = {.lex_state = 259}, - [3261] = {.lex_state = 273}, - [3262] = {.lex_state = 259}, - [3263] = {.lex_state = 259}, - [3264] = {.lex_state = 197}, - [3265] = {.lex_state = 273}, - [3266] = {.lex_state = 197}, - [3267] = {.lex_state = 226}, + [3261] = {.lex_state = 259}, + [3262] = {.lex_state = 273}, + [3263] = {.lex_state = 244}, + [3264] = {.lex_state = 267}, + [3265] = {.lex_state = 259}, + [3266] = {.lex_state = 273}, + [3267] = {.lex_state = 273}, [3268] = {.lex_state = 273}, [3269] = {.lex_state = 273}, - [3270] = {.lex_state = 259}, - [3271] = {.lex_state = 273}, - [3272] = {.lex_state = 273}, - [3273] = {.lex_state = 226}, - [3274] = {.lex_state = 226}, - [3275] = {.lex_state = 259}, - [3276] = {.lex_state = 197}, - [3277] = {.lex_state = 226}, - [3278] = {.lex_state = 226}, + [3270] = {.lex_state = 273}, + [3271] = {.lex_state = 244}, + [3272] = {.lex_state = 259}, + [3273] = {.lex_state = 273}, + [3274] = {.lex_state = 273}, + [3275] = {.lex_state = 273}, + [3276] = {.lex_state = 259}, + [3277] = {.lex_state = 197}, + [3278] = {.lex_state = 273}, [3279] = {.lex_state = 273}, - [3280] = {.lex_state = 259}, - [3281] = {.lex_state = 259}, + [3280] = {.lex_state = 264}, + [3281] = {.lex_state = 273}, [3282] = {.lex_state = 273}, - [3283] = {.lex_state = 273}, - [3284] = {.lex_state = 226}, - [3285] = {.lex_state = 245}, - [3286] = {.lex_state = 273}, - [3287] = {.lex_state = 273}, - [3288] = {.lex_state = 245}, - [3289] = {.lex_state = 245}, - [3290] = {.lex_state = 259}, - [3291] = {.lex_state = 273}, - [3292] = {.lex_state = 273}, - [3293] = {.lex_state = 226}, + [3283] = {.lex_state = 197}, + [3284] = {.lex_state = 259}, + [3285] = {.lex_state = 259}, + [3286] = {.lex_state = 259}, + [3287] = {.lex_state = 264}, + [3288] = {.lex_state = 226}, + [3289] = {.lex_state = 273}, + [3290] = {.lex_state = 273}, + [3291] = {.lex_state = 226}, + [3292] = {.lex_state = 226}, + [3293] = {.lex_state = 259}, [3294] = {.lex_state = 273}, - [3295] = {.lex_state = 273}, - [3296] = {.lex_state = 264}, + [3295] = {.lex_state = 259}, + [3296] = {.lex_state = 273}, [3297] = {.lex_state = 273}, [3298] = {.lex_state = 273}, [3299] = {.lex_state = 273}, - [3300] = {.lex_state = 245}, - [3301] = {.lex_state = 273}, + [3300] = {.lex_state = 259}, + [3301] = {.lex_state = 259}, [3302] = {.lex_state = 226}, - [3303] = {.lex_state = 273}, - [3304] = {.lex_state = 259}, - [3305] = {.lex_state = 245}, - [3306] = {.lex_state = 259}, - [3307] = {.lex_state = 259}, + [3303] = {.lex_state = 259}, + [3304] = {.lex_state = 273}, + [3305] = {.lex_state = 197}, + [3306] = {.lex_state = 273}, + [3307] = {.lex_state = 231}, [3308] = {.lex_state = 273}, - [3309] = {.lex_state = 267}, - [3310] = {.lex_state = 259}, - [3311] = {.lex_state = 245}, - [3312] = {.lex_state = 273}, + [3309] = {.lex_state = 259}, + [3310] = {.lex_state = 273}, + [3311] = {.lex_state = 197}, + [3312] = {.lex_state = 240}, [3313] = {.lex_state = 259}, [3314] = {.lex_state = 273}, [3315] = {.lex_state = 273}, - [3316] = {.lex_state = 245}, - [3317] = {.lex_state = 226}, - [3318] = {.lex_state = 273}, + [3316] = {.lex_state = 264}, + [3317] = {.lex_state = 259}, + [3318] = {.lex_state = 247}, [3319] = {.lex_state = 273}, [3320] = {.lex_state = 267}, - [3321] = {.lex_state = 264}, - [3322] = {.lex_state = 245}, - [3323] = {.lex_state = 264}, - [3324] = {.lex_state = 226}, - [3325] = {.lex_state = 226}, - [3326] = {.lex_state = 226}, - [3327] = {.lex_state = 226}, - [3328] = {.lex_state = 273}, - [3329] = {.lex_state = 247}, + [3321] = {.lex_state = 259}, + [3322] = {.lex_state = 273}, + [3323] = {.lex_state = 273}, + [3324] = {.lex_state = 259}, + [3325] = {.lex_state = 259}, + [3326] = {.lex_state = 197}, + [3327] = {.lex_state = 259}, + [3328] = {.lex_state = 259}, + [3329] = {.lex_state = 259}, [3330] = {.lex_state = 259}, - [3331] = {.lex_state = 273}, + [3331] = {.lex_state = 259}, [3332] = {.lex_state = 259}, [3333] = {.lex_state = 197}, - [3334] = {.lex_state = 259}, - [3335] = {.lex_state = 231}, - [3336] = {.lex_state = 259}, - [3337] = {.lex_state = 259}, - [3338] = {.lex_state = 259}, + [3334] = {.lex_state = 197}, + [3335] = {.lex_state = 226}, + [3336] = {.lex_state = 226}, + [3337] = {.lex_state = 226}, + [3338] = {.lex_state = 226}, [3339] = {.lex_state = 264}, [3340] = {.lex_state = 226}, - [3341] = {.lex_state = 240}, - [3342] = {.lex_state = 259}, + [3341] = {.lex_state = 226}, + [3342] = {.lex_state = 273}, [3343] = {.lex_state = 259}, - [3344] = {.lex_state = 259}, - [3345] = {.lex_state = 273}, - [3346] = {.lex_state = 264}, - [3347] = {.lex_state = 259}, - [3348] = {.lex_state = 259}, - [3349] = {.lex_state = 245}, - [3350] = {.lex_state = 264}, - [3351] = {.lex_state = 281}, - [3352] = {.lex_state = 245}, - [3353] = {.lex_state = 267}, - [3354] = {.lex_state = 245}, + [3344] = {.lex_state = 273}, + [3345] = {.lex_state = 264}, + [3346] = {.lex_state = 245}, + [3347] = {.lex_state = 245}, + [3348] = {.lex_state = 245}, + [3349] = {.lex_state = 231}, + [3350] = {.lex_state = 267}, + [3351] = {.lex_state = 226}, + [3352] = {.lex_state = 244}, + [3353] = {.lex_state = 259}, + [3354] = {.lex_state = 264}, [3355] = {.lex_state = 259}, - [3356] = {.lex_state = 226}, - [3357] = {.lex_state = 284}, - [3358] = {.lex_state = 259}, - [3359] = {.lex_state = 261}, - [3360] = {.lex_state = 284}, - [3361] = {.lex_state = 282}, - [3362] = {.lex_state = 212}, - [3363] = {.lex_state = 245}, - [3364] = {.lex_state = 212}, - [3365] = {.lex_state = 245}, - [3366] = {.lex_state = 245}, - [3367] = {.lex_state = 245}, - [3368] = {.lex_state = 259}, - [3369] = {.lex_state = 245}, - [3370] = {.lex_state = 245}, - [3371] = {.lex_state = 264}, + [3356] = {.lex_state = 273}, + [3357] = {.lex_state = 259}, + [3358] = {.lex_state = 264}, + [3359] = {.lex_state = 264}, + [3360] = {.lex_state = 259}, + [3361] = {.lex_state = 245}, + [3362] = {.lex_state = 264}, + [3363] = {.lex_state = 259}, + [3364] = {.lex_state = 226}, + [3365] = {.lex_state = 259}, + [3366] = {.lex_state = 259}, + [3367] = {.lex_state = 267}, + [3368] = {.lex_state = 207}, + [3369] = {.lex_state = 226}, + [3370] = {.lex_state = 259}, + [3371] = {.lex_state = 273}, [3372] = {.lex_state = 259}, - [3373] = {.lex_state = 259}, - [3374] = {.lex_state = 245}, - [3375] = {.lex_state = 245}, - [3376] = {.lex_state = 245}, - [3377] = {.lex_state = 245}, + [3373] = {.lex_state = 240}, + [3374] = {.lex_state = 259}, + [3375] = {.lex_state = 226}, + [3376] = {.lex_state = 226}, + [3377] = {.lex_state = 259}, [3378] = {.lex_state = 245}, - [3379] = {.lex_state = 245}, + [3379] = {.lex_state = 259}, [3380] = {.lex_state = 259}, - [3381] = {.lex_state = 264}, - [3382] = {.lex_state = 264}, - [3383] = {.lex_state = 384}, - [3384] = {.lex_state = 245}, - [3385] = {.lex_state = 264}, - [3386] = {.lex_state = 259}, - [3387] = {.lex_state = 245}, - [3388] = {.lex_state = 259}, - [3389] = {.lex_state = 245}, - [3390] = {.lex_state = 245}, - [3391] = {.lex_state = 245}, - [3392] = {.lex_state = 231}, - [3393] = {.lex_state = 259}, - [3394] = {.lex_state = 284}, - [3395] = {.lex_state = 245}, - [3396] = {.lex_state = 207}, - [3397] = {.lex_state = 264}, - [3398] = {.lex_state = 266}, - [3399] = {.lex_state = 264}, - [3400] = {.lex_state = 259}, - [3401] = {.lex_state = 264}, - [3402] = {.lex_state = 264}, - [3403] = {.lex_state = 245}, - [3404] = {.lex_state = 245}, - [3405] = {.lex_state = 259}, - [3406] = {.lex_state = 264}, - [3407] = {.lex_state = 264}, - [3408] = {.lex_state = 245}, - [3409] = {.lex_state = 245}, - [3410] = {.lex_state = 245}, - [3411] = {.lex_state = 264}, - [3412] = {.lex_state = 245}, - [3413] = {.lex_state = 245}, - [3414] = {.lex_state = 245}, - [3415] = {.lex_state = 245}, - [3416] = {.lex_state = 245}, - [3417] = {.lex_state = 264}, - [3418] = {.lex_state = 245}, - [3419] = {.lex_state = 245}, - [3420] = {.lex_state = 245}, - [3421] = {.lex_state = 284}, - [3422] = {.lex_state = 245}, - [3423] = {.lex_state = 264}, - [3424] = {.lex_state = 284}, + [3381] = {.lex_state = 259}, + [3382] = {.lex_state = 231}, + [3383] = {.lex_state = 245}, + [3384] = {.lex_state = 244}, + [3385] = {.lex_state = 244}, + [3386] = {.lex_state = 244}, + [3387] = {.lex_state = 244}, + [3388] = {.lex_state = 244}, + [3389] = {.lex_state = 284}, + [3390] = {.lex_state = 244}, + [3391] = {.lex_state = 259}, + [3392] = {.lex_state = 284}, + [3393] = {.lex_state = 244}, + [3394] = {.lex_state = 244}, + [3395] = {.lex_state = 234}, + [3396] = {.lex_state = 259}, + [3397] = {.lex_state = 259}, + [3398] = {.lex_state = 244}, + [3399] = {.lex_state = 244}, + [3400] = {.lex_state = 234}, + [3401] = {.lex_state = 234}, + [3402] = {.lex_state = 234}, + [3403] = {.lex_state = 244}, + [3404] = {.lex_state = 259}, + [3405] = {.lex_state = 234}, + [3406] = {.lex_state = 234}, + [3407] = {.lex_state = 234}, + [3408] = {.lex_state = 259}, + [3409] = {.lex_state = 259}, + [3410] = {.lex_state = 234}, + [3411] = {.lex_state = 234}, + [3412] = {.lex_state = 259}, + [3413] = {.lex_state = 234}, + [3414] = {.lex_state = 234}, + [3415] = {.lex_state = 244}, + [3416] = {.lex_state = 234}, + [3417] = {.lex_state = 212}, + [3418] = {.lex_state = 284}, + [3419] = {.lex_state = 234}, + [3420] = {.lex_state = 244}, + [3421] = {.lex_state = 244}, + [3422] = {.lex_state = 244}, + [3423] = {.lex_state = 244}, + [3424] = {.lex_state = 244}, [3425] = {.lex_state = 264}, - [3426] = {.lex_state = 245}, - [3427] = {.lex_state = 231}, + [3426] = {.lex_state = 259}, + [3427] = {.lex_state = 259}, [3428] = {.lex_state = 264}, - [3429] = {.lex_state = 245}, - [3430] = {.lex_state = 245}, - [3431] = {.lex_state = 245}, - [3432] = {.lex_state = 234}, - [3433] = {.lex_state = 245}, - [3434] = {.lex_state = 234}, + [3429] = {.lex_state = 244}, + [3430] = {.lex_state = 244}, + [3431] = {.lex_state = 244}, + [3432] = {.lex_state = 231}, + [3433] = {.lex_state = 234}, + [3434] = {.lex_state = 244}, [3435] = {.lex_state = 264}, [3436] = {.lex_state = 264}, - [3437] = {.lex_state = 284}, - [3438] = {.lex_state = 264}, - [3439] = {.lex_state = 264}, - [3440] = {.lex_state = 264}, + [3437] = {.lex_state = 234}, + [3438] = {.lex_state = 244}, + [3439] = {.lex_state = 244}, + [3440] = {.lex_state = 244}, [3441] = {.lex_state = 264}, - [3442] = {.lex_state = 245}, - [3443] = {.lex_state = 245}, - [3444] = {.lex_state = 245}, - [3445] = {.lex_state = 245}, - [3446] = {.lex_state = 237}, - [3447] = {.lex_state = 212}, + [3442] = {.lex_state = 264}, + [3443] = {.lex_state = 234}, + [3444] = {.lex_state = 267}, + [3445] = {.lex_state = 284}, + [3446] = {.lex_state = 261}, + [3447] = {.lex_state = 244}, [3448] = {.lex_state = 264}, [3449] = {.lex_state = 264}, - [3450] = {.lex_state = 234}, - [3451] = {.lex_state = 245}, - [3452] = {.lex_state = 234}, - [3453] = {.lex_state = 245}, - [3454] = {.lex_state = 259}, - [3455] = {.lex_state = 245}, - [3456] = {.lex_state = 245}, - [3457] = {.lex_state = 259}, - [3458] = {.lex_state = 259}, - [3459] = {.lex_state = 245}, - [3460] = {.lex_state = 245}, - [3461] = {.lex_state = 245}, - [3462] = {.lex_state = 245}, - [3463] = {.lex_state = 245}, - [3464] = {.lex_state = 245}, - [3465] = {.lex_state = 259}, - [3466] = {.lex_state = 245}, - [3467] = {.lex_state = 234}, - [3468] = {.lex_state = 234}, - [3469] = {.lex_state = 234}, - [3470] = {.lex_state = 259}, - [3471] = {.lex_state = 259}, - [3472] = {.lex_state = 245}, + [3450] = {.lex_state = 244}, + [3451] = {.lex_state = 259}, + [3452] = {.lex_state = 259}, + [3453] = {.lex_state = 264}, + [3454] = {.lex_state = 244}, + [3455] = {.lex_state = 264}, + [3456] = {.lex_state = 259}, + [3457] = {.lex_state = 264}, + [3458] = {.lex_state = 264}, + [3459] = {.lex_state = 244}, + [3460] = {.lex_state = 264}, + [3461] = {.lex_state = 259}, + [3462] = {.lex_state = 244}, + [3463] = {.lex_state = 244}, + [3464] = {.lex_state = 264}, + [3465] = {.lex_state = 244}, + [3466] = {.lex_state = 267}, + [3467] = {.lex_state = 284}, + [3468] = {.lex_state = 259}, + [3469] = {.lex_state = 264}, + [3470] = {.lex_state = 264}, + [3471] = {.lex_state = 212}, + [3472] = {.lex_state = 207}, [3473] = {.lex_state = 264}, [3474] = {.lex_state = 259}, - [3475] = {.lex_state = 245}, - [3476] = {.lex_state = 264}, - [3477] = {.lex_state = 264}, - [3478] = {.lex_state = 245}, + [3475] = {.lex_state = 259}, + [3476] = {.lex_state = 259}, + [3477] = {.lex_state = 244}, + [3478] = {.lex_state = 237}, [3479] = {.lex_state = 264}, [3480] = {.lex_state = 264}, - [3481] = {.lex_state = 264}, - [3482] = {.lex_state = 264}, - [3483] = {.lex_state = 264}, + [3481] = {.lex_state = 244}, + [3482] = {.lex_state = 244}, + [3483] = {.lex_state = 244}, [3484] = {.lex_state = 259}, - [3485] = {.lex_state = 234}, - [3486] = {.lex_state = 259}, - [3487] = {.lex_state = 245}, - [3488] = {.lex_state = 245}, - [3489] = {.lex_state = 245}, - [3490] = {.lex_state = 259}, - [3491] = {.lex_state = 245}, - [3492] = {.lex_state = 226}, - [3493] = {.lex_state = 259}, - [3494] = {.lex_state = 284}, - [3495] = {.lex_state = 245}, - [3496] = {.lex_state = 234}, - [3497] = {.lex_state = 245}, - [3498] = {.lex_state = 234}, + [3485] = {.lex_state = 384}, + [3486] = {.lex_state = 234}, + [3487] = {.lex_state = 259}, + [3488] = {.lex_state = 264}, + [3489] = {.lex_state = 226}, + [3490] = {.lex_state = 284}, + [3491] = {.lex_state = 259}, + [3492] = {.lex_state = 266}, + [3493] = {.lex_state = 244}, + [3494] = {.lex_state = 244}, + [3495] = {.lex_state = 259}, + [3496] = {.lex_state = 244}, + [3497] = {.lex_state = 259}, + [3498] = {.lex_state = 244}, [3499] = {.lex_state = 259}, - [3500] = {.lex_state = 245}, - [3501] = {.lex_state = 245}, - [3502] = {.lex_state = 245}, - [3503] = {.lex_state = 245}, - [3504] = {.lex_state = 245}, - [3505] = {.lex_state = 245}, - [3506] = {.lex_state = 245}, - [3507] = {.lex_state = 259}, - [3508] = {.lex_state = 245}, - [3509] = {.lex_state = 245}, - [3510] = {.lex_state = 245}, - [3511] = {.lex_state = 245}, - [3512] = {.lex_state = 259}, - [3513] = {.lex_state = 264}, - [3514] = {.lex_state = 284}, - [3515] = {.lex_state = 259}, - [3516] = {.lex_state = 245}, - [3517] = {.lex_state = 259}, + [3500] = {.lex_state = 244}, + [3501] = {.lex_state = 244}, + [3502] = {.lex_state = 264}, + [3503] = {.lex_state = 244}, + [3504] = {.lex_state = 284}, + [3505] = {.lex_state = 244}, + [3506] = {.lex_state = 259}, + [3507] = {.lex_state = 264}, + [3508] = {.lex_state = 244}, + [3509] = {.lex_state = 259}, + [3510] = {.lex_state = 244}, + [3511] = {.lex_state = 264}, + [3512] = {.lex_state = 244}, + [3513] = {.lex_state = 244}, + [3514] = {.lex_state = 264}, + [3515] = {.lex_state = 244}, + [3516] = {.lex_state = 244}, + [3517] = {.lex_state = 244}, [3518] = {.lex_state = 259}, - [3519] = {.lex_state = 259}, + [3519] = {.lex_state = 244}, [3520] = {.lex_state = 264}, - [3521] = {.lex_state = 264}, - [3522] = {.lex_state = 245}, - [3523] = {.lex_state = 259}, - [3524] = {.lex_state = 259}, - [3525] = {.lex_state = 259}, - [3526] = {.lex_state = 264}, - [3527] = {.lex_state = 259}, - [3528] = {.lex_state = 245}, - [3529] = {.lex_state = 245}, - [3530] = {.lex_state = 264}, - [3531] = {.lex_state = 259}, - [3532] = {.lex_state = 264}, - [3533] = {.lex_state = 259}, - [3534] = {.lex_state = 284}, - [3535] = {.lex_state = 234}, - [3536] = {.lex_state = 234}, - [3537] = {.lex_state = 245}, - [3538] = {.lex_state = 234}, - [3539] = {.lex_state = 234}, - [3540] = {.lex_state = 267}, + [3521] = {.lex_state = 244}, + [3522] = {.lex_state = 264}, + [3523] = {.lex_state = 264}, + [3524] = {.lex_state = 244}, + [3525] = {.lex_state = 244}, + [3526] = {.lex_state = 282}, + [3527] = {.lex_state = 264}, + [3528] = {.lex_state = 244}, + [3529] = {.lex_state = 264}, + [3530] = {.lex_state = 259}, + [3531] = {.lex_state = 264}, + [3532] = {.lex_state = 259}, + [3533] = {.lex_state = 244}, + [3534] = {.lex_state = 259}, + [3535] = {.lex_state = 281}, + [3536] = {.lex_state = 284}, + [3537] = {.lex_state = 244}, + [3538] = {.lex_state = 244}, + [3539] = {.lex_state = 244}, + [3540] = {.lex_state = 244}, [3541] = {.lex_state = 259}, - [3542] = {.lex_state = 234}, + [3542] = {.lex_state = 244}, [3543] = {.lex_state = 259}, - [3544] = {.lex_state = 234}, - [3545] = {.lex_state = 234}, - [3546] = {.lex_state = 259}, - [3547] = {.lex_state = 264}, - [3548] = {.lex_state = 226}, - [3549] = {.lex_state = 264}, - [3550] = {.lex_state = 259}, + [3544] = {.lex_state = 244}, + [3545] = {.lex_state = 244}, + [3546] = {.lex_state = 264}, + [3547] = {.lex_state = 226}, + [3548] = {.lex_state = 259}, + [3549] = {.lex_state = 259}, + [3550] = {.lex_state = 244}, [3551] = {.lex_state = 259}, - [3552] = {.lex_state = 263}, - [3553] = {.lex_state = 264}, - [3554] = {.lex_state = 226}, - [3555] = {.lex_state = 284}, - [3556] = {.lex_state = 259}, - [3557] = {.lex_state = 284}, - [3558] = {.lex_state = 284}, - [3559] = {.lex_state = 284}, - [3560] = {.lex_state = 231}, - [3561] = {.lex_state = 231}, - [3562] = {.lex_state = 204}, - [3563] = {.lex_state = 227}, - [3564] = {.lex_state = 284}, - [3565] = {.lex_state = 231}, - [3566] = {.lex_state = 231}, - [3567] = {.lex_state = 284}, - [3568] = {.lex_state = 259}, - [3569] = {.lex_state = 259}, - [3570] = {.lex_state = 284}, - [3571] = {.lex_state = 284}, - [3572] = {.lex_state = 272}, - [3573] = {.lex_state = 231}, - [3574] = {.lex_state = 284}, - [3575] = {.lex_state = 259}, - [3576] = {.lex_state = 259}, - [3577] = {.lex_state = 237}, - [3578] = {.lex_state = 234}, - [3579] = {.lex_state = 231}, + [3552] = {.lex_state = 244}, + [3553] = {.lex_state = 244}, + [3554] = {.lex_state = 244}, + [3555] = {.lex_state = 244}, + [3556] = {.lex_state = 264}, + [3557] = {.lex_state = 244}, + [3558] = {.lex_state = 244}, + [3559] = {.lex_state = 244}, + [3560] = {.lex_state = 244}, + [3561] = {.lex_state = 244}, + [3562] = {.lex_state = 244}, + [3563] = {.lex_state = 244}, + [3564] = {.lex_state = 264}, + [3565] = {.lex_state = 264}, + [3566] = {.lex_state = 284}, + [3567] = {.lex_state = 259}, + [3568] = {.lex_state = 244}, + [3569] = {.lex_state = 244}, + [3570] = {.lex_state = 244}, + [3571] = {.lex_state = 259}, + [3572] = {.lex_state = 259}, + [3573] = {.lex_state = 244}, + [3574] = {.lex_state = 244}, + [3575] = {.lex_state = 212}, + [3576] = {.lex_state = 264}, + [3577] = {.lex_state = 264}, + [3578] = {.lex_state = 231}, + [3579] = {.lex_state = 264}, [3580] = {.lex_state = 264}, [3581] = {.lex_state = 259}, - [3582] = {.lex_state = 231}, - [3583] = {.lex_state = 259}, - [3584] = {.lex_state = 259}, - [3585] = {.lex_state = 237}, - [3586] = {.lex_state = 284}, - [3587] = {.lex_state = 264}, - [3588] = {.lex_state = 231}, - [3589] = {.lex_state = 284}, - [3590] = {.lex_state = 231}, + [3582] = {.lex_state = 264}, + [3583] = {.lex_state = 231}, + [3584] = {.lex_state = 284}, + [3585] = {.lex_state = 264}, + [3586] = {.lex_state = 259}, + [3587] = {.lex_state = 237}, + [3588] = {.lex_state = 284}, + [3589] = {.lex_state = 387}, + [3590] = {.lex_state = 284}, [3591] = {.lex_state = 231}, - [3592] = {.lex_state = 207}, + [3592] = {.lex_state = 226}, [3593] = {.lex_state = 231}, - [3594] = {.lex_state = 231}, - [3595] = {.lex_state = 264}, - [3596] = {.lex_state = 231}, - [3597] = {.lex_state = 231}, + [3594] = {.lex_state = 284}, + [3595] = {.lex_state = 226}, + [3596] = {.lex_state = 234}, + [3597] = {.lex_state = 259}, [3598] = {.lex_state = 284}, - [3599] = {.lex_state = 231}, - [3600] = {.lex_state = 282}, - [3601] = {.lex_state = 259}, - [3602] = {.lex_state = 284}, - [3603] = {.lex_state = 259}, - [3604] = {.lex_state = 284}, - [3605] = {.lex_state = 259}, + [3599] = {.lex_state = 264}, + [3600] = {.lex_state = 284}, + [3601] = {.lex_state = 284}, + [3602] = {.lex_state = 282}, + [3603] = {.lex_state = 284}, + [3604] = {.lex_state = 234}, + [3605] = {.lex_state = 226}, [3606] = {.lex_state = 234}, - [3607] = {.lex_state = 284}, - [3608] = {.lex_state = 231}, - [3609] = {.lex_state = 259}, - [3610] = {.lex_state = 284}, - [3611] = {.lex_state = 284}, - [3612] = {.lex_state = 284}, + [3607] = {.lex_state = 259}, + [3608] = {.lex_state = 272}, + [3609] = {.lex_state = 264}, + [3610] = {.lex_state = 264}, + [3611] = {.lex_state = 207}, + [3612] = {.lex_state = 259}, [3613] = {.lex_state = 284}, - [3614] = {.lex_state = 259}, + [3614] = {.lex_state = 282}, [3615] = {.lex_state = 284}, - [3616] = {.lex_state = 284}, - [3617] = {.lex_state = 212}, - [3618] = {.lex_state = 284}, - [3619] = {.lex_state = 226}, - [3620] = {.lex_state = 227}, - [3621] = {.lex_state = 264}, - [3622] = {.lex_state = 259}, - [3623] = {.lex_state = 259}, - [3624] = {.lex_state = 259}, - [3625] = {.lex_state = 284}, - [3626] = {.lex_state = 284}, + [3616] = {.lex_state = 227}, + [3617] = {.lex_state = 226}, + [3618] = {.lex_state = 259}, + [3619] = {.lex_state = 284}, + [3620] = {.lex_state = 284}, + [3621] = {.lex_state = 212}, + [3622] = {.lex_state = 227}, + [3623] = {.lex_state = 284}, + [3624] = {.lex_state = 284}, + [3625] = {.lex_state = 252}, + [3626] = {.lex_state = 259}, [3627] = {.lex_state = 259}, - [3628] = {.lex_state = 264}, + [3628] = {.lex_state = 284}, [3629] = {.lex_state = 264}, - [3630] = {.lex_state = 264}, + [3630] = {.lex_state = 259}, [3631] = {.lex_state = 264}, - [3632] = {.lex_state = 231}, - [3633] = {.lex_state = 264}, - [3634] = {.lex_state = 264}, - [3635] = {.lex_state = 264}, - [3636] = {.lex_state = 264}, + [3632] = {.lex_state = 259}, + [3633] = {.lex_state = 284}, + [3634] = {.lex_state = 231}, + [3635] = {.lex_state = 231}, + [3636] = {.lex_state = 263}, [3637] = {.lex_state = 264}, - [3638] = {.lex_state = 264}, - [3639] = {.lex_state = 264}, - [3640] = {.lex_state = 284}, - [3641] = {.lex_state = 284}, - [3642] = {.lex_state = 284}, - [3643] = {.lex_state = 231}, - [3644] = {.lex_state = 259}, - [3645] = {.lex_state = 231}, - [3646] = {.lex_state = 231}, - [3647] = {.lex_state = 231}, - [3648] = {.lex_state = 231}, - [3649] = {.lex_state = 207}, - [3650] = {.lex_state = 264}, - [3651] = {.lex_state = 259}, - [3652] = {.lex_state = 259}, - [3653] = {.lex_state = 284}, - [3654] = {.lex_state = 264}, - [3655] = {.lex_state = 226}, + [3638] = {.lex_state = 284}, + [3639] = {.lex_state = 284}, + [3640] = {.lex_state = 231}, + [3641] = {.lex_state = 231}, + [3642] = {.lex_state = 259}, + [3643] = {.lex_state = 284}, + [3644] = {.lex_state = 284}, + [3645] = {.lex_state = 226}, + [3646] = {.lex_state = 284}, + [3647] = {.lex_state = 284}, + [3648] = {.lex_state = 259}, + [3649] = {.lex_state = 284}, + [3650] = {.lex_state = 259}, + [3651] = {.lex_state = 284}, + [3652] = {.lex_state = 284}, + [3653] = {.lex_state = 231}, + [3654] = {.lex_state = 284}, + [3655] = {.lex_state = 284}, [3656] = {.lex_state = 231}, - [3657] = {.lex_state = 284}, - [3658] = {.lex_state = 284}, - [3659] = {.lex_state = 284}, - [3660] = {.lex_state = 264}, - [3661] = {.lex_state = 387}, - [3662] = {.lex_state = 259}, - [3663] = {.lex_state = 282}, - [3664] = {.lex_state = 231}, - [3665] = {.lex_state = 252}, - [3666] = {.lex_state = 259}, + [3657] = {.lex_state = 231}, + [3658] = {.lex_state = 264}, + [3659] = {.lex_state = 264}, + [3660] = {.lex_state = 284}, + [3661] = {.lex_state = 231}, + [3662] = {.lex_state = 284}, + [3663] = {.lex_state = 264}, + [3664] = {.lex_state = 259}, + [3665] = {.lex_state = 264}, + [3666] = {.lex_state = 284}, [3667] = {.lex_state = 284}, - [3668] = {.lex_state = 259}, - [3669] = {.lex_state = 284}, - [3670] = {.lex_state = 231}, - [3671] = {.lex_state = 226}, + [3668] = {.lex_state = 231}, + [3669] = {.lex_state = 259}, + [3670] = {.lex_state = 237}, + [3671] = {.lex_state = 264}, [3672] = {.lex_state = 259}, - [3673] = {.lex_state = 231}, - [3674] = {.lex_state = 238}, - [3675] = {.lex_state = 284}, - [3676] = {.lex_state = 252}, + [3673] = {.lex_state = 264}, + [3674] = {.lex_state = 231}, + [3675] = {.lex_state = 264}, + [3676] = {.lex_state = 264}, [3677] = {.lex_state = 264}, [3678] = {.lex_state = 264}, - [3679] = {.lex_state = 259}, - [3680] = {.lex_state = 284}, - [3681] = {.lex_state = 282}, - [3682] = {.lex_state = 282}, + [3679] = {.lex_state = 264}, + [3680] = {.lex_state = 264}, + [3681] = {.lex_state = 284}, + [3682] = {.lex_state = 284}, [3683] = {.lex_state = 284}, [3684] = {.lex_state = 231}, - [3685] = {.lex_state = 207}, - [3686] = {.lex_state = 264}, - [3687] = {.lex_state = 284}, - [3688] = {.lex_state = 226}, + [3685] = {.lex_state = 259}, + [3686] = {.lex_state = 259}, + [3687] = {.lex_state = 231}, + [3688] = {.lex_state = 264}, [3689] = {.lex_state = 264}, - [3690] = {.lex_state = 284}, - [3691] = {.lex_state = 259}, + [3690] = {.lex_state = 282}, + [3691] = {.lex_state = 284}, [3692] = {.lex_state = 259}, - [3693] = {.lex_state = 231}, - [3694] = {.lex_state = 264}, - [3695] = {.lex_state = 267}, - [3696] = {.lex_state = 259}, - [3697] = {.lex_state = 237}, - [3698] = {.lex_state = 207}, - [3699] = {.lex_state = 259}, - [3700] = {.lex_state = 259}, - [3701] = {.lex_state = 259}, - [3702] = {.lex_state = 259}, - [3703] = {.lex_state = 284}, - [3704] = {.lex_state = 259}, - [3705] = {.lex_state = 238}, + [3693] = {.lex_state = 284}, + [3694] = {.lex_state = 231}, + [3695] = {.lex_state = 231}, + [3696] = {.lex_state = 207}, + [3697] = {.lex_state = 264}, + [3698] = {.lex_state = 204}, + [3699] = {.lex_state = 231}, + [3700] = {.lex_state = 264}, + [3701] = {.lex_state = 282}, + [3702] = {.lex_state = 231}, + [3703] = {.lex_state = 231}, + [3704] = {.lex_state = 231}, + [3705] = {.lex_state = 264}, [3706] = {.lex_state = 259}, - [3707] = {.lex_state = 238}, - [3708] = {.lex_state = 234}, - [3709] = {.lex_state = 282}, - [3710] = {.lex_state = 234}, + [3707] = {.lex_state = 259}, + [3708] = {.lex_state = 231}, + [3709] = {.lex_state = 259}, + [3710] = {.lex_state = 284}, [3711] = {.lex_state = 259}, - [3712] = {.lex_state = 259}, - [3713] = {.lex_state = 259}, - [3714] = {.lex_state = 259}, + [3712] = {.lex_state = 231}, + [3713] = {.lex_state = 284}, + [3714] = {.lex_state = 238}, [3715] = {.lex_state = 259}, - [3716] = {.lex_state = 234}, - [3717] = {.lex_state = 259}, - [3718] = {.lex_state = 267}, - [3719] = {.lex_state = 284}, - [3720] = {.lex_state = 238}, - [3721] = {.lex_state = 237}, - [3722] = {.lex_state = 259}, - [3723] = {.lex_state = 259}, - [3724] = {.lex_state = 259}, + [3716] = {.lex_state = 264}, + [3717] = {.lex_state = 207}, + [3718] = {.lex_state = 231}, + [3719] = {.lex_state = 231}, + [3720] = {.lex_state = 231}, + [3721] = {.lex_state = 259}, + [3722] = {.lex_state = 226}, + [3723] = {.lex_state = 231}, + [3724] = {.lex_state = 252}, [3725] = {.lex_state = 259}, - [3726] = {.lex_state = 237}, - [3727] = {.lex_state = 234}, - [3728] = {.lex_state = 253}, + [3726] = {.lex_state = 234}, + [3727] = {.lex_state = 259}, + [3728] = {.lex_state = 259}, [3729] = {.lex_state = 259}, [3730] = {.lex_state = 259}, - [3731] = {.lex_state = 282}, - [3732] = {.lex_state = 238}, - [3733] = {.lex_state = 259}, - [3734] = {.lex_state = 238}, - [3735] = {.lex_state = 282}, - [3736] = {.lex_state = 238}, + [3731] = {.lex_state = 259}, + [3732] = {.lex_state = 259}, + [3733] = {.lex_state = 218}, + [3734] = {.lex_state = 259}, + [3735] = {.lex_state = 259}, + [3736] = {.lex_state = 230}, [3737] = {.lex_state = 259}, - [3738] = {.lex_state = 207}, - [3739] = {.lex_state = 284}, - [3740] = {.lex_state = 284}, - [3741] = {.lex_state = 234}, - [3742] = {.lex_state = 234}, - [3743] = {.lex_state = 284}, - [3744] = {.lex_state = 234}, - [3745] = {.lex_state = 282}, + [3738] = {.lex_state = 234}, + [3739] = {.lex_state = 234}, + [3740] = {.lex_state = 259}, + [3741] = {.lex_state = 237}, + [3742] = {.lex_state = 259}, + [3743] = {.lex_state = 259}, + [3744] = {.lex_state = 259}, + [3745] = {.lex_state = 259}, [3746] = {.lex_state = 234}, [3747] = {.lex_state = 259}, - [3748] = {.lex_state = 218}, - [3749] = {.lex_state = 234}, - [3750] = {.lex_state = 284}, - [3751] = {.lex_state = 259}, - [3752] = {.lex_state = 237}, - [3753] = {.lex_state = 259}, - [3754] = {.lex_state = 238}, - [3755] = {.lex_state = 259}, - [3756] = {.lex_state = 237}, - [3757] = {.lex_state = 284}, - [3758] = {.lex_state = 237}, - [3759] = {.lex_state = 238}, - [3760] = {.lex_state = 238}, - [3761] = {.lex_state = 267}, - [3762] = {.lex_state = 259}, - [3763] = {.lex_state = 237}, - [3764] = {.lex_state = 259}, - [3765] = {.lex_state = 259}, - [3766] = {.lex_state = 218}, - [3767] = {.lex_state = 234}, + [3748] = {.lex_state = 237}, + [3749] = {.lex_state = 267}, + [3750] = {.lex_state = 267}, + [3751] = {.lex_state = 267}, + [3752] = {.lex_state = 267}, + [3753] = {.lex_state = 234}, + [3754] = {.lex_state = 237}, + [3755] = {.lex_state = 264}, + [3756] = {.lex_state = 259}, + [3757] = {.lex_state = 259}, + [3758] = {.lex_state = 230}, + [3759] = {.lex_state = 234}, + [3760] = {.lex_state = 234}, + [3761] = {.lex_state = 259}, + [3762] = {.lex_state = 238}, + [3763] = {.lex_state = 259}, + [3764] = {.lex_state = 234}, + [3765] = {.lex_state = 237}, + [3766] = {.lex_state = 234}, + [3767] = {.lex_state = 237}, [3768] = {.lex_state = 259}, - [3769] = {.lex_state = 230}, - [3770] = {.lex_state = 259}, - [3771] = {.lex_state = 238}, - [3772] = {.lex_state = 259}, - [3773] = {.lex_state = 259}, + [3769] = {.lex_state = 267}, + [3770] = {.lex_state = 238}, + [3771] = {.lex_state = 259}, + [3772] = {.lex_state = 234}, + [3773] = {.lex_state = 234}, [3774] = {.lex_state = 259}, - [3775] = {.lex_state = 259}, + [3775] = {.lex_state = 234}, [3776] = {.lex_state = 259}, - [3777] = {.lex_state = 269}, - [3778] = {.lex_state = 284}, - [3779] = {.lex_state = 259}, - [3780] = {.lex_state = 234}, - [3781] = {.lex_state = 237}, - [3782] = {.lex_state = 259}, - [3783] = {.lex_state = 259}, - [3784] = {.lex_state = 259}, - [3785] = {.lex_state = 234}, - [3786] = {.lex_state = 237}, - [3787] = {.lex_state = 237}, - [3788] = {.lex_state = 237}, + [3777] = {.lex_state = 259}, + [3778] = {.lex_state = 237}, + [3779] = {.lex_state = 269}, + [3780] = {.lex_state = 284}, + [3781] = {.lex_state = 259}, + [3782] = {.lex_state = 284}, + [3783] = {.lex_state = 238}, + [3784] = {.lex_state = 284}, + [3785] = {.lex_state = 237}, + [3786] = {.lex_state = 259}, + [3787] = {.lex_state = 234}, + [3788] = {.lex_state = 259}, [3789] = {.lex_state = 234}, - [3790] = {.lex_state = 267}, - [3791] = {.lex_state = 253}, - [3792] = {.lex_state = 234}, - [3793] = {.lex_state = 267}, - [3794] = {.lex_state = 237}, - [3795] = {.lex_state = 234}, - [3796] = {.lex_state = 259}, - [3797] = {.lex_state = 237}, - [3798] = {.lex_state = 259}, - [3799] = {.lex_state = 234}, - [3800] = {.lex_state = 238}, - [3801] = {.lex_state = 259}, + [3790] = {.lex_state = 259}, + [3791] = {.lex_state = 259}, + [3792] = {.lex_state = 259}, + [3793] = {.lex_state = 259}, + [3794] = {.lex_state = 259}, + [3795] = {.lex_state = 259}, + [3796] = {.lex_state = 234}, + [3797] = {.lex_state = 267}, + [3798] = {.lex_state = 282}, + [3799] = {.lex_state = 284}, + [3800] = {.lex_state = 259}, + [3801] = {.lex_state = 237}, [3802] = {.lex_state = 284}, [3803] = {.lex_state = 259}, - [3804] = {.lex_state = 259}, - [3805] = {.lex_state = 264}, + [3804] = {.lex_state = 284}, + [3805] = {.lex_state = 259}, [3806] = {.lex_state = 259}, - [3807] = {.lex_state = 259}, - [3808] = {.lex_state = 259}, - [3809] = {.lex_state = 237}, - [3810] = {.lex_state = 259}, - [3811] = {.lex_state = 234}, - [3812] = {.lex_state = 259}, + [3807] = {.lex_state = 234}, + [3808] = {.lex_state = 238}, + [3809] = {.lex_state = 259}, + [3810] = {.lex_state = 237}, + [3811] = {.lex_state = 259}, + [3812] = {.lex_state = 237}, [3813] = {.lex_state = 259}, [3814] = {.lex_state = 259}, [3815] = {.lex_state = 259}, - [3816] = {.lex_state = 259}, - [3817] = {.lex_state = 237}, + [3816] = {.lex_state = 264}, + [3817] = {.lex_state = 238}, [3818] = {.lex_state = 259}, - [3819] = {.lex_state = 259}, - [3820] = {.lex_state = 259}, - [3821] = {.lex_state = 234}, - [3822] = {.lex_state = 237}, - [3823] = {.lex_state = 234}, - [3824] = {.lex_state = 259}, - [3825] = {.lex_state = 284}, - [3826] = {.lex_state = 237}, - [3827] = {.lex_state = 259}, - [3828] = {.lex_state = 267}, - [3829] = {.lex_state = 267}, - [3830] = {.lex_state = 259}, - [3831] = {.lex_state = 234}, - [3832] = {.lex_state = 267}, - [3833] = {.lex_state = 282}, + [3819] = {.lex_state = 237}, + [3820] = {.lex_state = 284}, + [3821] = {.lex_state = 238}, + [3822] = {.lex_state = 259}, + [3823] = {.lex_state = 238}, + [3824] = {.lex_state = 282}, + [3825] = {.lex_state = 218}, + [3826] = {.lex_state = 259}, + [3827] = {.lex_state = 237}, + [3828] = {.lex_state = 259}, + [3829] = {.lex_state = 259}, + [3830] = {.lex_state = 237}, + [3831] = {.lex_state = 237}, + [3832] = {.lex_state = 253}, + [3833] = {.lex_state = 259}, [3834] = {.lex_state = 259}, - [3835] = {.lex_state = 259}, + [3835] = {.lex_state = 238}, [3836] = {.lex_state = 259}, [3837] = {.lex_state = 259}, - [3838] = {.lex_state = 259}, - [3839] = {.lex_state = 234}, - [3840] = {.lex_state = 259}, - [3841] = {.lex_state = 282}, + [3838] = {.lex_state = 238}, + [3839] = {.lex_state = 259}, + [3840] = {.lex_state = 282}, + [3841] = {.lex_state = 259}, [3842] = {.lex_state = 259}, - [3843] = {.lex_state = 282}, - [3844] = {.lex_state = 259}, - [3845] = {.lex_state = 259}, - [3846] = {.lex_state = 267}, - [3847] = {.lex_state = 237}, - [3848] = {.lex_state = 259}, - [3849] = {.lex_state = 282}, - [3850] = {.lex_state = 207}, - [3851] = {.lex_state = 237}, - [3852] = {.lex_state = 264}, - [3853] = {.lex_state = 259}, - [3854] = {.lex_state = 282}, - [3855] = {.lex_state = 259}, + [3843] = {.lex_state = 259}, + [3844] = {.lex_state = 267}, + [3845] = {.lex_state = 267}, + [3846] = {.lex_state = 237}, + [3847] = {.lex_state = 259}, + [3848] = {.lex_state = 237}, + [3849] = {.lex_state = 234}, + [3850] = {.lex_state = 282}, + [3851] = {.lex_state = 234}, + [3852] = {.lex_state = 259}, + [3853] = {.lex_state = 238}, + [3854] = {.lex_state = 253}, + [3855] = {.lex_state = 238}, [3856] = {.lex_state = 259}, - [3857] = {.lex_state = 230}, - [3858] = {.lex_state = 218}, + [3857] = {.lex_state = 267}, + [3858] = {.lex_state = 267}, [3859] = {.lex_state = 259}, - [3860] = {.lex_state = 234}, - [3861] = {.lex_state = 234}, - [3862] = {.lex_state = 234}, - [3863] = {.lex_state = 259}, + [3860] = {.lex_state = 259}, + [3861] = {.lex_state = 259}, + [3862] = {.lex_state = 259}, + [3863] = {.lex_state = 284}, [3864] = {.lex_state = 259}, - [3865] = {.lex_state = 284}, + [3865] = {.lex_state = 238}, [3866] = {.lex_state = 259}, - [3867] = {.lex_state = 259}, - [3868] = {.lex_state = 284}, - [3869] = {.lex_state = 267}, - [3870] = {.lex_state = 259}, + [3867] = {.lex_state = 284}, + [3868] = {.lex_state = 259}, + [3869] = {.lex_state = 282}, + [3870] = {.lex_state = 282}, [3871] = {.lex_state = 259}, - [3872] = {.lex_state = 259}, - [3873] = {.lex_state = 259}, + [3872] = {.lex_state = 282}, + [3873] = {.lex_state = 234}, [3874] = {.lex_state = 282}, - [3875] = {.lex_state = 267}, - [3876] = {.lex_state = 238}, - [3877] = {.lex_state = 237}, - [3878] = {.lex_state = 267}, - [3879] = {.lex_state = 259}, - [3880] = {.lex_state = 259}, - [3881] = {.lex_state = 267}, + [3875] = {.lex_state = 259}, + [3876] = {.lex_state = 259}, + [3877] = {.lex_state = 259}, + [3878] = {.lex_state = 259}, + [3879] = {.lex_state = 282}, + [3880] = {.lex_state = 238}, + [3881] = {.lex_state = 259}, [3882] = {.lex_state = 237}, - [3883] = {.lex_state = 259}, + [3883] = {.lex_state = 238}, [3884] = {.lex_state = 259}, - [3885] = {.lex_state = 259}, - [3886] = {.lex_state = 259}, - [3887] = {.lex_state = 259}, + [3885] = {.lex_state = 282}, + [3886] = {.lex_state = 282}, + [3887] = {.lex_state = 237}, [3888] = {.lex_state = 259}, - [3889] = {.lex_state = 238}, - [3890] = {.lex_state = 259}, + [3889] = {.lex_state = 259}, + [3890] = {.lex_state = 237}, [3891] = {.lex_state = 259}, [3892] = {.lex_state = 259}, [3893] = {.lex_state = 259}, - [3894] = {.lex_state = 259}, + [3894] = {.lex_state = 267}, [3895] = {.lex_state = 259}, [3896] = {.lex_state = 259}, - [3897] = {.lex_state = 238}, - [3898] = {.lex_state = 237}, - [3899] = {.lex_state = 207}, - [3900] = {.lex_state = 259}, - [3901] = {.lex_state = 237}, - [3902] = {.lex_state = 259}, - [3903] = {.lex_state = 259}, - [3904] = {.lex_state = 237}, - [3905] = {.lex_state = 264}, + [3897] = {.lex_state = 259}, + [3898] = {.lex_state = 259}, + [3899] = {.lex_state = 259}, + [3900] = {.lex_state = 234}, + [3901] = {.lex_state = 259}, + [3902] = {.lex_state = 234}, + [3903] = {.lex_state = 284}, + [3904] = {.lex_state = 259}, + [3905] = {.lex_state = 207}, [3906] = {.lex_state = 259}, - [3907] = {.lex_state = 282}, - [3908] = {.lex_state = 259}, + [3907] = {.lex_state = 238}, + [3908] = {.lex_state = 237}, [3909] = {.lex_state = 259}, - [3910] = {.lex_state = 238}, - [3911] = {.lex_state = 259}, - [3912] = {.lex_state = 234}, + [3910] = {.lex_state = 259}, + [3911] = {.lex_state = 267}, + [3912] = {.lex_state = 259}, [3913] = {.lex_state = 259}, - [3914] = {.lex_state = 267}, - [3915] = {.lex_state = 238}, - [3916] = {.lex_state = 259}, - [3917] = {.lex_state = 259}, - [3918] = {.lex_state = 282}, - [3919] = {.lex_state = 267}, - [3920] = {.lex_state = 237}, + [3914] = {.lex_state = 238}, + [3915] = {.lex_state = 259}, + [3916] = {.lex_state = 264}, + [3917] = {.lex_state = 267}, + [3918] = {.lex_state = 267}, + [3919] = {.lex_state = 259}, + [3920] = {.lex_state = 259}, [3921] = {.lex_state = 259}, [3922] = {.lex_state = 259}, - [3923] = {.lex_state = 238}, - [3924] = {.lex_state = 237}, - [3925] = {.lex_state = 259}, - [3926] = {.lex_state = 282}, - [3927] = {.lex_state = 282}, - [3928] = {.lex_state = 237}, - [3929] = {.lex_state = 234}, - [3930] = {.lex_state = 264}, - [3931] = {.lex_state = 259}, - [3932] = {.lex_state = 259}, - [3933] = {.lex_state = 259}, - [3934] = {.lex_state = 259}, + [3923] = {.lex_state = 237}, + [3924] = {.lex_state = 259}, + [3925] = {.lex_state = 237}, + [3926] = {.lex_state = 259}, + [3927] = {.lex_state = 234}, + [3928] = {.lex_state = 259}, + [3929] = {.lex_state = 259}, + [3930] = {.lex_state = 234}, + [3931] = {.lex_state = 207}, + [3932] = {.lex_state = 267}, + [3933] = {.lex_state = 284}, + [3934] = {.lex_state = 238}, [3935] = {.lex_state = 259}, [3936] = {.lex_state = 259}, - [3937] = {.lex_state = 259}, - [3938] = {.lex_state = 259}, - [3939] = {.lex_state = 259}, - [3940] = {.lex_state = 264}, - [3941] = {.lex_state = 264}, - [3942] = {.lex_state = 264}, - [3943] = {.lex_state = 264}, - [3944] = {.lex_state = 264}, + [3937] = {.lex_state = 234}, + [3938] = {.lex_state = 234}, + [3939] = {.lex_state = 234}, + [3940] = {.lex_state = 284}, + [3941] = {.lex_state = 259}, + [3942] = {.lex_state = 207}, + [3943] = {.lex_state = 259}, + [3944] = {.lex_state = 237}, [3945] = {.lex_state = 264}, [3946] = {.lex_state = 259}, - [3947] = {.lex_state = 387}, - [3948] = {.lex_state = 264}, - [3949] = {.lex_state = 264}, - [3950] = {.lex_state = 264}, - [3951] = {.lex_state = 387}, - [3952] = {.lex_state = 284}, - [3953] = {.lex_state = 264}, - [3954] = {.lex_state = 284}, - [3955] = {.lex_state = 259}, + [3947] = {.lex_state = 237}, + [3948] = {.lex_state = 237}, + [3949] = {.lex_state = 259}, + [3950] = {.lex_state = 237}, + [3951] = {.lex_state = 259}, + [3952] = {.lex_state = 207}, + [3953] = {.lex_state = 259}, + [3954] = {.lex_state = 259}, + [3955] = {.lex_state = 218}, [3956] = {.lex_state = 259}, - [3957] = {.lex_state = 264}, + [3957] = {.lex_state = 259}, [3958] = {.lex_state = 259}, - [3959] = {.lex_state = 264}, - [3960] = {.lex_state = 282}, - [3961] = {.lex_state = 271}, - [3962] = {.lex_state = 264}, + [3959] = {.lex_state = 259}, + [3960] = {.lex_state = 259}, + [3961] = {.lex_state = 282}, + [3962] = {.lex_state = 259}, [3963] = {.lex_state = 259}, [3964] = {.lex_state = 259}, - [3965] = {.lex_state = 264}, - [3966] = {.lex_state = 259}, - [3967] = {.lex_state = 259}, - [3968] = {.lex_state = 271}, - [3969] = {.lex_state = 284}, - [3970] = {.lex_state = 259}, + [3965] = {.lex_state = 259}, + [3966] = {.lex_state = 282}, + [3967] = {.lex_state = 282}, + [3968] = {.lex_state = 237}, + [3969] = {.lex_state = 259}, + [3970] = {.lex_state = 284}, [3971] = {.lex_state = 264}, - [3972] = {.lex_state = 282}, - [3973] = {.lex_state = 264}, + [3972] = {.lex_state = 284}, + [3973] = {.lex_state = 259}, [3974] = {.lex_state = 264}, [3975] = {.lex_state = 259}, - [3976] = {.lex_state = 284}, + [3976] = {.lex_state = 264}, [3977] = {.lex_state = 264}, - [3978] = {.lex_state = 264}, - [3979] = {.lex_state = 264}, - [3980] = {.lex_state = 282}, - [3981] = {.lex_state = 264}, - [3982] = {.lex_state = 259}, - [3983] = {.lex_state = 264}, - [3984] = {.lex_state = 234}, - [3985] = {.lex_state = 259}, - [3986] = {.lex_state = 264}, - [3987] = {.lex_state = 259}, + [3978] = {.lex_state = 259}, + [3979] = {.lex_state = 271}, + [3980] = {.lex_state = 264}, + [3981] = {.lex_state = 259}, + [3982] = {.lex_state = 264}, + [3983] = {.lex_state = 259}, + [3984] = {.lex_state = 271}, + [3985] = {.lex_state = 264}, + [3986] = {.lex_state = 284}, + [3987] = {.lex_state = 234}, [3988] = {.lex_state = 264}, - [3989] = {.lex_state = 264}, - [3990] = {.lex_state = 237}, - [3991] = {.lex_state = 284}, + [3989] = {.lex_state = 284}, + [3990] = {.lex_state = 271}, + [3991] = {.lex_state = 264}, [3992] = {.lex_state = 264}, - [3993] = {.lex_state = 264}, + [3993] = {.lex_state = 284}, [3994] = {.lex_state = 264}, [3995] = {.lex_state = 264}, [3996] = {.lex_state = 264}, [3997] = {.lex_state = 264}, - [3998] = {.lex_state = 237}, + [3998] = {.lex_state = 264}, [3999] = {.lex_state = 264}, - [4000] = {.lex_state = 264}, - [4001] = {.lex_state = 284}, - [4002] = {.lex_state = 259}, - [4003] = {.lex_state = 237}, + [4000] = {.lex_state = 237}, + [4001] = {.lex_state = 264}, + [4002] = {.lex_state = 264}, + [4003] = {.lex_state = 264}, [4004] = {.lex_state = 264}, - [4005] = {.lex_state = 264}, - [4006] = {.lex_state = 248}, - [4007] = {.lex_state = 207}, - [4008] = {.lex_state = 264}, - [4009] = {.lex_state = 271}, - [4010] = {.lex_state = 264}, + [4005] = {.lex_state = 237}, + [4006] = {.lex_state = 237}, + [4007] = {.lex_state = 264}, + [4008] = {.lex_state = 249}, + [4009] = {.lex_state = 284}, + [4010] = {.lex_state = 259}, [4011] = {.lex_state = 264}, [4012] = {.lex_state = 264}, - [4013] = {.lex_state = 264}, - [4014] = {.lex_state = 264}, + [4013] = {.lex_state = 271}, + [4014] = {.lex_state = 212}, [4015] = {.lex_state = 264}, - [4016] = {.lex_state = 264}, - [4017] = {.lex_state = 264}, - [4018] = {.lex_state = 234}, - [4019] = {.lex_state = 264}, + [4016] = {.lex_state = 237}, + [4017] = {.lex_state = 387}, + [4018] = {.lex_state = 207}, + [4019] = {.lex_state = 212}, [4020] = {.lex_state = 264}, - [4021] = {.lex_state = 264}, + [4021] = {.lex_state = 271}, [4022] = {.lex_state = 264}, [4023] = {.lex_state = 264}, - [4024] = {.lex_state = 259}, + [4024] = {.lex_state = 264}, [4025] = {.lex_state = 264}, - [4026] = {.lex_state = 264}, - [4027] = {.lex_state = 264}, + [4026] = {.lex_state = 248}, + [4027] = {.lex_state = 259}, [4028] = {.lex_state = 264}, - [4029] = {.lex_state = 237}, - [4030] = {.lex_state = 282}, - [4031] = {.lex_state = 259}, - [4032] = {.lex_state = 271}, - [4033] = {.lex_state = 237}, - [4034] = {.lex_state = 271}, + [4029] = {.lex_state = 264}, + [4030] = {.lex_state = 264}, + [4031] = {.lex_state = 264}, + [4032] = {.lex_state = 264}, + [4033] = {.lex_state = 282}, + [4034] = {.lex_state = 264}, [4035] = {.lex_state = 264}, - [4036] = {.lex_state = 284}, - [4037] = {.lex_state = 249}, - [4038] = {.lex_state = 264}, - [4039] = {.lex_state = 282}, + [4036] = {.lex_state = 264}, + [4037] = {.lex_state = 264}, + [4038] = {.lex_state = 284}, + [4039] = {.lex_state = 271}, [4040] = {.lex_state = 264}, - [4041] = {.lex_state = 264}, + [4041] = {.lex_state = 212}, [4042] = {.lex_state = 264}, [4043] = {.lex_state = 264}, - [4044] = {.lex_state = 284}, - [4045] = {.lex_state = 264}, - [4046] = {.lex_state = 271}, - [4047] = {.lex_state = 264}, - [4048] = {.lex_state = 259}, - [4049] = {.lex_state = 259}, - [4050] = {.lex_state = 271}, + [4044] = {.lex_state = 264}, + [4045] = {.lex_state = 282}, + [4046] = {.lex_state = 259}, + [4047] = {.lex_state = 271}, + [4048] = {.lex_state = 264}, + [4049] = {.lex_state = 264}, + [4050] = {.lex_state = 264}, [4051] = {.lex_state = 264}, - [4052] = {.lex_state = 264}, - [4053] = {.lex_state = 237}, - [4054] = {.lex_state = 282}, - [4055] = {.lex_state = 237}, - [4056] = {.lex_state = 259}, - [4057] = {.lex_state = 387}, + [4052] = {.lex_state = 212}, + [4053] = {.lex_state = 234}, + [4054] = {.lex_state = 259}, + [4055] = {.lex_state = 264}, + [4056] = {.lex_state = 264}, + [4057] = {.lex_state = 264}, [4058] = {.lex_state = 264}, - [4059] = {.lex_state = 284}, + [4059] = {.lex_state = 237}, [4060] = {.lex_state = 284}, - [4061] = {.lex_state = 264}, + [4061] = {.lex_state = 284}, [4062] = {.lex_state = 264}, [4063] = {.lex_state = 264}, - [4064] = {.lex_state = 264}, + [4064] = {.lex_state = 259}, [4065] = {.lex_state = 264}, - [4066] = {.lex_state = 259}, + [4066] = {.lex_state = 264}, [4067] = {.lex_state = 264}, - [4068] = {.lex_state = 271}, - [4069] = {.lex_state = 259}, + [4068] = {.lex_state = 237}, + [4069] = {.lex_state = 387}, [4070] = {.lex_state = 264}, - [4071] = {.lex_state = 264}, + [4071] = {.lex_state = 259}, [4072] = {.lex_state = 264}, - [4073] = {.lex_state = 264}, - [4074] = {.lex_state = 259}, - [4075] = {.lex_state = 284}, - [4076] = {.lex_state = 237}, - [4077] = {.lex_state = 271}, - [4078] = {.lex_state = 212}, - [4079] = {.lex_state = 212}, - [4080] = {.lex_state = 284}, - [4081] = {.lex_state = 284}, - [4082] = {.lex_state = 237}, - [4083] = {.lex_state = 237}, - [4084] = {.lex_state = 282}, - [4085] = {.lex_state = 259}, - [4086] = {.lex_state = 264}, - [4087] = {.lex_state = 264}, - [4088] = {.lex_state = 271}, - [4089] = {.lex_state = 264}, + [4073] = {.lex_state = 282}, + [4074] = {.lex_state = 282}, + [4075] = {.lex_state = 237}, + [4076] = {.lex_state = 264}, + [4077] = {.lex_state = 282}, + [4078] = {.lex_state = 264}, + [4079] = {.lex_state = 264}, + [4080] = {.lex_state = 264}, + [4081] = {.lex_state = 264}, + [4082] = {.lex_state = 264}, + [4083] = {.lex_state = 264}, + [4084] = {.lex_state = 264}, + [4085] = {.lex_state = 264}, + [4086] = {.lex_state = 387}, + [4087] = {.lex_state = 237}, + [4088] = {.lex_state = 264}, + [4089] = {.lex_state = 282}, [4090] = {.lex_state = 284}, - [4091] = {.lex_state = 212}, - [4092] = {.lex_state = 212}, - [4093] = {.lex_state = 264}, + [4091] = {.lex_state = 259}, + [4092] = {.lex_state = 259}, + [4093] = {.lex_state = 259}, [4094] = {.lex_state = 259}, - [4095] = {.lex_state = 264}, - [4096] = {.lex_state = 264}, - [4097] = {.lex_state = 284}, - [4098] = {.lex_state = 387}, + [4095] = {.lex_state = 259}, + [4096] = {.lex_state = 259}, + [4097] = {.lex_state = 259}, + [4098] = {.lex_state = 271}, [4099] = {.lex_state = 284}, - [4100] = {.lex_state = 218}, - [4101] = {.lex_state = 284}, - [4102] = {.lex_state = 243}, - [4103] = {.lex_state = 248}, - [4104] = {.lex_state = 284}, - [4105] = {.lex_state = 387}, - [4106] = {.lex_state = 284}, - [4107] = {.lex_state = 243}, - [4108] = {.lex_state = 207}, - [4109] = {.lex_state = 238}, - [4110] = {.lex_state = 237}, - [4111] = {.lex_state = 243}, - [4112] = {.lex_state = 284}, - [4113] = {.lex_state = 387}, - [4114] = {.lex_state = 252}, - [4115] = {.lex_state = 284}, - [4116] = {.lex_state = 231}, - [4117] = {.lex_state = 207}, - [4118] = {.lex_state = 284}, - [4119] = {.lex_state = 284}, - [4120] = {.lex_state = 284}, + [4100] = {.lex_state = 259}, + [4101] = {.lex_state = 259}, + [4102] = {.lex_state = 259}, + [4103] = {.lex_state = 259}, + [4104] = {.lex_state = 271}, + [4105] = {.lex_state = 282}, + [4106] = {.lex_state = 237}, + [4107] = {.lex_state = 259}, + [4108] = {.lex_state = 264}, + [4109] = {.lex_state = 284}, + [4110] = {.lex_state = 284}, + [4111] = {.lex_state = 264}, + [4112] = {.lex_state = 259}, + [4113] = {.lex_state = 264}, + [4114] = {.lex_state = 259}, + [4115] = {.lex_state = 264}, + [4116] = {.lex_state = 264}, + [4117] = {.lex_state = 264}, + [4118] = {.lex_state = 264}, + [4119] = {.lex_state = 264}, + [4120] = {.lex_state = 264}, [4121] = {.lex_state = 237}, - [4122] = {.lex_state = 237}, - [4123] = {.lex_state = 237}, - [4124] = {.lex_state = 237}, - [4125] = {.lex_state = 237}, - [4126] = {.lex_state = 284}, - [4127] = {.lex_state = 252}, - [4128] = {.lex_state = 237}, - [4129] = {.lex_state = 237}, - [4130] = {.lex_state = 234}, - [4131] = {.lex_state = 237}, - [4132] = {.lex_state = 259}, - [4133] = {.lex_state = 237}, - [4134] = {.lex_state = 207}, + [4122] = {.lex_state = 264}, + [4123] = {.lex_state = 271}, + [4124] = {.lex_state = 284}, + [4125] = {.lex_state = 264}, + [4126] = {.lex_state = 264}, + [4127] = {.lex_state = 264}, + [4128] = {.lex_state = 284}, + [4129] = {.lex_state = 284}, + [4130] = {.lex_state = 237}, + [4131] = {.lex_state = 284}, + [4132] = {.lex_state = 238}, + [4133] = {.lex_state = 284}, + [4134] = {.lex_state = 218}, [4135] = {.lex_state = 237}, - [4136] = {.lex_state = 238}, - [4137] = {.lex_state = 207}, - [4138] = {.lex_state = 237}, - [4139] = {.lex_state = 387}, + [4136] = {.lex_state = 387}, + [4137] = {.lex_state = 284}, + [4138] = {.lex_state = 284}, + [4139] = {.lex_state = 237}, [4140] = {.lex_state = 238}, - [4141] = {.lex_state = 284}, - [4142] = {.lex_state = 237}, - [4143] = {.lex_state = 259}, + [4141] = {.lex_state = 237}, + [4142] = {.lex_state = 387}, + [4143] = {.lex_state = 243}, [4144] = {.lex_state = 248}, - [4145] = {.lex_state = 259}, - [4146] = {.lex_state = 259}, - [4147] = {.lex_state = 259}, - [4148] = {.lex_state = 237}, - [4149] = {.lex_state = 259}, - [4150] = {.lex_state = 259}, - [4151] = {.lex_state = 237}, - [4152] = {.lex_state = 218}, - [4153] = {.lex_state = 259}, - [4154] = {.lex_state = 271}, - [4155] = {.lex_state = 248}, - [4156] = {.lex_state = 259}, - [4157] = {.lex_state = 248}, - [4158] = {.lex_state = 259}, - [4159] = {.lex_state = 271}, - [4160] = {.lex_state = 237}, - [4161] = {.lex_state = 259}, - [4162] = {.lex_state = 259}, - [4163] = {.lex_state = 259}, - [4164] = {.lex_state = 271}, - [4165] = {.lex_state = 259}, - [4166] = {.lex_state = 238}, - [4167] = {.lex_state = 284}, - [4168] = {.lex_state = 282}, - [4169] = {.lex_state = 218}, - [4170] = {.lex_state = 259}, - [4171] = {.lex_state = 207}, - [4172] = {.lex_state = 237}, - [4173] = {.lex_state = 238}, - [4174] = {.lex_state = 237}, - [4175] = {.lex_state = 207}, - [4176] = {.lex_state = 207}, - [4177] = {.lex_state = 237}, - [4178] = {.lex_state = 259}, + [4145] = {.lex_state = 243}, + [4146] = {.lex_state = 243}, + [4147] = {.lex_state = 284}, + [4148] = {.lex_state = 259}, + [4149] = {.lex_state = 207}, + [4150] = {.lex_state = 387}, + [4151] = {.lex_state = 252}, + [4152] = {.lex_state = 284}, + [4153] = {.lex_state = 237}, + [4154] = {.lex_state = 237}, + [4155] = {.lex_state = 284}, + [4156] = {.lex_state = 234}, + [4157] = {.lex_state = 284}, + [4158] = {.lex_state = 238}, + [4159] = {.lex_state = 207}, + [4160] = {.lex_state = 387}, + [4161] = {.lex_state = 237}, + [4162] = {.lex_state = 237}, + [4163] = {.lex_state = 252}, + [4164] = {.lex_state = 237}, + [4165] = {.lex_state = 237}, + [4166] = {.lex_state = 237}, + [4167] = {.lex_state = 207}, + [4168] = {.lex_state = 284}, + [4169] = {.lex_state = 237}, + [4170] = {.lex_state = 237}, + [4171] = {.lex_state = 284}, + [4172] = {.lex_state = 207}, + [4173] = {.lex_state = 237}, + [4174] = {.lex_state = 259}, + [4175] = {.lex_state = 271}, + [4176] = {.lex_state = 259}, + [4177] = {.lex_state = 248}, + [4178] = {.lex_state = 238}, [4179] = {.lex_state = 259}, - [4180] = {.lex_state = 259}, - [4181] = {.lex_state = 259}, - [4182] = {.lex_state = 259}, + [4180] = {.lex_state = 237}, + [4181] = {.lex_state = 248}, + [4182] = {.lex_state = 249}, [4183] = {.lex_state = 259}, [4184] = {.lex_state = 259}, - [4185] = {.lex_state = 259}, - [4186] = {.lex_state = 248}, - [4187] = {.lex_state = 259}, - [4188] = {.lex_state = 259}, + [4185] = {.lex_state = 237}, + [4186] = {.lex_state = 271}, + [4187] = {.lex_state = 238}, + [4188] = {.lex_state = 271}, [4189] = {.lex_state = 259}, [4190] = {.lex_state = 259}, [4191] = {.lex_state = 259}, - [4192] = {.lex_state = 237}, - [4193] = {.lex_state = 207}, + [4192] = {.lex_state = 218}, + [4193] = {.lex_state = 238}, [4194] = {.lex_state = 259}, - [4195] = {.lex_state = 259}, - [4196] = {.lex_state = 237}, - [4197] = {.lex_state = 271}, - [4198] = {.lex_state = 248}, + [4195] = {.lex_state = 218}, + [4196] = {.lex_state = 259}, + [4197] = {.lex_state = 238}, + [4198] = {.lex_state = 259}, [4199] = {.lex_state = 271}, [4200] = {.lex_state = 259}, - [4201] = {.lex_state = 259}, + [4201] = {.lex_state = 249}, [4202] = {.lex_state = 259}, - [4203] = {.lex_state = 282}, - [4204] = {.lex_state = 248}, - [4205] = {.lex_state = 238}, - [4206] = {.lex_state = 248}, - [4207] = {.lex_state = 259}, - [4208] = {.lex_state = 259}, + [4203] = {.lex_state = 259}, + [4204] = {.lex_state = 249}, + [4205] = {.lex_state = 249}, + [4206] = {.lex_state = 249}, + [4207] = {.lex_state = 271}, + [4208] = {.lex_state = 271}, [4209] = {.lex_state = 259}, - [4210] = {.lex_state = 271}, + [4210] = {.lex_state = 259}, [4211] = {.lex_state = 259}, - [4212] = {.lex_state = 259}, + [4212] = {.lex_state = 237}, [4213] = {.lex_state = 259}, [4214] = {.lex_state = 259}, - [4215] = {.lex_state = 259}, - [4216] = {.lex_state = 259}, - [4217] = {.lex_state = 271}, - [4218] = {.lex_state = 284}, - [4219] = {.lex_state = 259}, + [4215] = {.lex_state = 249}, + [4216] = {.lex_state = 249}, + [4217] = {.lex_state = 249}, + [4218] = {.lex_state = 237}, + [4219] = {.lex_state = 237}, [4220] = {.lex_state = 259}, - [4221] = {.lex_state = 248}, - [4222] = {.lex_state = 259}, - [4223] = {.lex_state = 259}, - [4224] = {.lex_state = 248}, - [4225] = {.lex_state = 259}, - [4226] = {.lex_state = 284}, - [4227] = {.lex_state = 271}, - [4228] = {.lex_state = 238}, - [4229] = {.lex_state = 237}, + [4221] = {.lex_state = 259}, + [4222] = {.lex_state = 218}, + [4223] = {.lex_state = 237}, + [4224] = {.lex_state = 218}, + [4225] = {.lex_state = 238}, + [4226] = {.lex_state = 237}, + [4227] = {.lex_state = 259}, + [4228] = {.lex_state = 284}, + [4229] = {.lex_state = 271}, [4230] = {.lex_state = 271}, - [4231] = {.lex_state = 259}, - [4232] = {.lex_state = 238}, - [4233] = {.lex_state = 271}, + [4231] = {.lex_state = 207}, + [4232] = {.lex_state = 207}, + [4233] = {.lex_state = 284}, [4234] = {.lex_state = 259}, - [4235] = {.lex_state = 218}, - [4236] = {.lex_state = 238}, - [4237] = {.lex_state = 237}, - [4238] = {.lex_state = 259}, + [4235] = {.lex_state = 259}, + [4236] = {.lex_state = 237}, + [4237] = {.lex_state = 207}, + [4238] = {.lex_state = 207}, [4239] = {.lex_state = 259}, - [4240] = {.lex_state = 248}, - [4241] = {.lex_state = 237}, + [4240] = {.lex_state = 259}, + [4241] = {.lex_state = 259}, [4242] = {.lex_state = 259}, [4243] = {.lex_state = 237}, [4244] = {.lex_state = 271}, - [4245] = {.lex_state = 259}, + [4245] = {.lex_state = 237}, [4246] = {.lex_state = 259}, - [4247] = {.lex_state = 218}, - [4248] = {.lex_state = 271}, - [4249] = {.lex_state = 259}, - [4250] = {.lex_state = 271}, - [4251] = {.lex_state = 259}, - [4252] = {.lex_state = 259}, + [4247] = {.lex_state = 259}, + [4248] = {.lex_state = 259}, + [4249] = {.lex_state = 271}, + [4250] = {.lex_state = 259}, + [4251] = {.lex_state = 237}, + [4252] = {.lex_state = 282}, [4253] = {.lex_state = 259}, - [4254] = {.lex_state = 238}, - [4255] = {.lex_state = 248}, - [4256] = {.lex_state = 218}, - [4257] = {.lex_state = 248}, - [4258] = {.lex_state = 238}, - [4259] = {.lex_state = 284}, - [4260] = {.lex_state = 248}, - [4261] = {.lex_state = 237}, - [4262] = {.lex_state = 284}, - [4263] = {.lex_state = 248}, - [4264] = {.lex_state = 249}, - [4265] = {.lex_state = 248}, - [4266] = {.lex_state = 248}, - [4267] = {.lex_state = 238}, - [4268] = {.lex_state = 238}, - [4269] = {.lex_state = 238}, - [4270] = {.lex_state = 238}, - [4271] = {.lex_state = 248}, - [4272] = {.lex_state = 238}, - [4273] = {.lex_state = 248}, - [4274] = {.lex_state = 249}, - [4275] = {.lex_state = 284}, - [4276] = {.lex_state = 218}, - [4277] = {.lex_state = 248}, - [4278] = {.lex_state = 248}, - [4279] = {.lex_state = 238}, - [4280] = {.lex_state = 218}, - [4281] = {.lex_state = 238}, + [4254] = {.lex_state = 259}, + [4255] = {.lex_state = 259}, + [4256] = {.lex_state = 259}, + [4257] = {.lex_state = 259}, + [4258] = {.lex_state = 259}, + [4259] = {.lex_state = 259}, + [4260] = {.lex_state = 259}, + [4261] = {.lex_state = 259}, + [4262] = {.lex_state = 259}, + [4263] = {.lex_state = 259}, + [4264] = {.lex_state = 259}, + [4265] = {.lex_state = 259}, + [4266] = {.lex_state = 259}, + [4267] = {.lex_state = 271}, + [4268] = {.lex_state = 282}, + [4269] = {.lex_state = 259}, + [4270] = {.lex_state = 259}, + [4271] = {.lex_state = 259}, + [4272] = {.lex_state = 259}, + [4273] = {.lex_state = 271}, + [4274] = {.lex_state = 271}, + [4275] = {.lex_state = 259}, + [4276] = {.lex_state = 259}, + [4277] = {.lex_state = 259}, + [4278] = {.lex_state = 259}, + [4279] = {.lex_state = 259}, + [4280] = {.lex_state = 259}, + [4281] = {.lex_state = 259}, [4282] = {.lex_state = 284}, - [4283] = {.lex_state = 248}, - [4284] = {.lex_state = 237}, - [4285] = {.lex_state = 238}, - [4286] = {.lex_state = 238}, - [4287] = {.lex_state = 248}, + [4283] = {.lex_state = 238}, + [4284] = {.lex_state = 238}, + [4285] = {.lex_state = 284}, + [4286] = {.lex_state = 249}, + [4287] = {.lex_state = 238}, [4288] = {.lex_state = 238}, [4289] = {.lex_state = 238}, - [4290] = {.lex_state = 238}, - [4291] = {.lex_state = 238}, + [4290] = {.lex_state = 218}, + [4291] = {.lex_state = 218}, [4292] = {.lex_state = 238}, [4293] = {.lex_state = 238}, - [4294] = {.lex_state = 284}, - [4295] = {.lex_state = 238}, + [4294] = {.lex_state = 248}, + [4295] = {.lex_state = 284}, [4296] = {.lex_state = 238}, - [4297] = {.lex_state = 238}, + [4297] = {.lex_state = 284}, [4298] = {.lex_state = 238}, - [4299] = {.lex_state = 238}, - [4300] = {.lex_state = 238}, + [4299] = {.lex_state = 218}, + [4300] = {.lex_state = 284}, [4301] = {.lex_state = 238}, - [4302] = {.lex_state = 238}, - [4303] = {.lex_state = 238}, - [4304] = {.lex_state = 238}, + [4302] = {.lex_state = 249}, + [4303] = {.lex_state = 248}, + [4304] = {.lex_state = 248}, [4305] = {.lex_state = 238}, - [4306] = {.lex_state = 284}, - [4307] = {.lex_state = 272}, + [4306] = {.lex_state = 248}, + [4307] = {.lex_state = 238}, [4308] = {.lex_state = 238}, [4309] = {.lex_state = 284}, - [4310] = {.lex_state = 284}, + [4310] = {.lex_state = 238}, [4311] = {.lex_state = 238}, [4312] = {.lex_state = 238}, - [4313] = {.lex_state = 248}, + [4313] = {.lex_state = 237}, [4314] = {.lex_state = 238}, - [4315] = {.lex_state = 218}, - [4316] = {.lex_state = 284}, + [4315] = {.lex_state = 238}, + [4316] = {.lex_state = 248}, [4317] = {.lex_state = 237}, - [4318] = {.lex_state = 248}, - [4319] = {.lex_state = 248}, - [4320] = {.lex_state = 237}, - [4321] = {.lex_state = 237}, - [4322] = {.lex_state = 248}, - [4323] = {.lex_state = 237}, - [4324] = {.lex_state = 237}, - [4325] = {.lex_state = 272}, - [4326] = {.lex_state = 284}, - [4327] = {.lex_state = 284}, + [4318] = {.lex_state = 238}, + [4319] = {.lex_state = 218}, + [4320] = {.lex_state = 284}, + [4321] = {.lex_state = 238}, + [4322] = {.lex_state = 238}, + [4323] = {.lex_state = 272}, + [4324] = {.lex_state = 248}, + [4325] = {.lex_state = 238}, + [4326] = {.lex_state = 238}, + [4327] = {.lex_state = 238}, [4328] = {.lex_state = 248}, - [4329] = {.lex_state = 237}, - [4330] = {.lex_state = 237}, - [4331] = {.lex_state = 237}, - [4332] = {.lex_state = 237}, - [4333] = {.lex_state = 237}, - [4334] = {.lex_state = 284}, - [4335] = {.lex_state = 237}, - [4336] = {.lex_state = 237}, - [4337] = {.lex_state = 284}, + [4329] = {.lex_state = 248}, + [4330] = {.lex_state = 284}, + [4331] = {.lex_state = 238}, + [4332] = {.lex_state = 248}, + [4333] = {.lex_state = 238}, + [4334] = {.lex_state = 238}, + [4335] = {.lex_state = 248}, + [4336] = {.lex_state = 284}, + [4337] = {.lex_state = 238}, [4338] = {.lex_state = 249}, - [4339] = {.lex_state = 237}, - [4340] = {.lex_state = 284}, - [4341] = {.lex_state = 237}, - [4342] = {.lex_state = 284}, - [4343] = {.lex_state = 284}, - [4344] = {.lex_state = 284}, + [4339] = {.lex_state = 248}, + [4340] = {.lex_state = 238}, + [4341] = {.lex_state = 238}, + [4342] = {.lex_state = 248}, + [4343] = {.lex_state = 238}, + [4344] = {.lex_state = 238}, [4345] = {.lex_state = 238}, [4346] = {.lex_state = 284}, [4347] = {.lex_state = 284}, - [4348] = {.lex_state = 284}, + [4348] = {.lex_state = 238}, [4349] = {.lex_state = 284}, - [4350] = {.lex_state = 282}, + [4350] = {.lex_state = 284}, [4351] = {.lex_state = 284}, - [4352] = {.lex_state = 284}, - [4353] = {.lex_state = 238}, + [4352] = {.lex_state = 249}, + [4353] = {.lex_state = 284}, [4354] = {.lex_state = 284}, [4355] = {.lex_state = 284}, [4356] = {.lex_state = 284}, - [4357] = {.lex_state = 284}, + [4357] = {.lex_state = 249}, [4358] = {.lex_state = 284}, - [4359] = {.lex_state = 237}, - [4360] = {.lex_state = 284}, - [4361] = {.lex_state = 284}, - [4362] = {.lex_state = 284}, + [4359] = {.lex_state = 238}, + [4360] = {.lex_state = 237}, + [4361] = {.lex_state = 237}, + [4362] = {.lex_state = 237}, [4363] = {.lex_state = 237}, [4364] = {.lex_state = 284}, - [4365] = {.lex_state = 284}, - [4366] = {.lex_state = 284}, - [4367] = {.lex_state = 238}, - [4368] = {.lex_state = 238}, - [4369] = {.lex_state = 282}, - [4370] = {.lex_state = 282}, - [4371] = {.lex_state = 282}, - [4372] = {.lex_state = 387}, - [4373] = {.lex_state = 282}, - [4374] = {.lex_state = 282}, - [4375] = {.lex_state = 282}, + [4365] = {.lex_state = 237}, + [4366] = {.lex_state = 237}, + [4367] = {.lex_state = 237}, + [4368] = {.lex_state = 284}, + [4369] = {.lex_state = 237}, + [4370] = {.lex_state = 237}, + [4371] = {.lex_state = 237}, + [4372] = {.lex_state = 284}, + [4373] = {.lex_state = 237}, + [4374] = {.lex_state = 237}, + [4375] = {.lex_state = 237}, [4376] = {.lex_state = 284}, - [4377] = {.lex_state = 284}, - [4378] = {.lex_state = 282}, - [4379] = {.lex_state = 282}, - [4380] = {.lex_state = 282}, - [4381] = {.lex_state = 282}, - [4382] = {.lex_state = 237}, - [4383] = {.lex_state = 282}, - [4384] = {.lex_state = 282}, - [4385] = {.lex_state = 237}, - [4386] = {.lex_state = 282}, - [4387] = {.lex_state = 282}, - [4388] = {.lex_state = 282}, - [4389] = {.lex_state = 282}, - [4390] = {.lex_state = 282}, - [4391] = {.lex_state = 282}, - [4392] = {.lex_state = 282}, - [4393] = {.lex_state = 282}, - [4394] = {.lex_state = 282}, - [4395] = {.lex_state = 282}, - [4396] = {.lex_state = 387}, - [4397] = {.lex_state = 282}, - [4398] = {.lex_state = 282}, - [4399] = {.lex_state = 237}, + [4377] = {.lex_state = 282}, + [4378] = {.lex_state = 284}, + [4379] = {.lex_state = 284}, + [4380] = {.lex_state = 237}, + [4381] = {.lex_state = 237}, + [4382] = {.lex_state = 284}, + [4383] = {.lex_state = 238}, + [4384] = {.lex_state = 249}, + [4385] = {.lex_state = 284}, + [4386] = {.lex_state = 284}, + [4387] = {.lex_state = 272}, + [4388] = {.lex_state = 249}, + [4389] = {.lex_state = 284}, + [4390] = {.lex_state = 238}, + [4391] = {.lex_state = 284}, + [4392] = {.lex_state = 284}, + [4393] = {.lex_state = 284}, + [4394] = {.lex_state = 237}, + [4395] = {.lex_state = 249}, + [4396] = {.lex_state = 284}, + [4397] = {.lex_state = 284}, + [4398] = {.lex_state = 284}, + [4399] = {.lex_state = 282}, [4400] = {.lex_state = 282}, - [4401] = {.lex_state = 282}, + [4401] = {.lex_state = 387}, [4402] = {.lex_state = 282}, [4403] = {.lex_state = 282}, [4404] = {.lex_state = 282}, @@ -71319,725 +71580,725 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4410] = {.lex_state = 282}, [4411] = {.lex_state = 282}, [4412] = {.lex_state = 282}, - [4413] = {.lex_state = 282}, - [4414] = {.lex_state = 282}, + [4413] = {.lex_state = 237}, + [4414] = {.lex_state = 284}, [4415] = {.lex_state = 282}, - [4416] = {.lex_state = 282}, - [4417] = {.lex_state = 248}, - [4418] = {.lex_state = 282}, - [4419] = {.lex_state = 387}, + [4416] = {.lex_state = 387}, + [4417] = {.lex_state = 282}, + [4418] = {.lex_state = 284}, + [4419] = {.lex_state = 282}, [4420] = {.lex_state = 282}, - [4421] = {.lex_state = 271}, - [4422] = {.lex_state = 271}, + [4421] = {.lex_state = 282}, + [4422] = {.lex_state = 284}, [4423] = {.lex_state = 282}, [4424] = {.lex_state = 282}, [4425] = {.lex_state = 282}, - [4426] = {.lex_state = 282}, + [4426] = {.lex_state = 387}, [4427] = {.lex_state = 282}, [4428] = {.lex_state = 282}, - [4429] = {.lex_state = 282}, + [4429] = {.lex_state = 284}, [4430] = {.lex_state = 282}, [4431] = {.lex_state = 282}, - [4432] = {.lex_state = 237}, + [4432] = {.lex_state = 282}, [4433] = {.lex_state = 282}, [4434] = {.lex_state = 282}, [4435] = {.lex_state = 282}, - [4436] = {.lex_state = 387}, + [4436] = {.lex_state = 237}, [4437] = {.lex_state = 282}, - [4438] = {.lex_state = 237}, - [4439] = {.lex_state = 237}, + [4438] = {.lex_state = 249}, + [4439] = {.lex_state = 282}, [4440] = {.lex_state = 282}, [4441] = {.lex_state = 282}, [4442] = {.lex_state = 282}, - [4443] = {.lex_state = 282}, + [4443] = {.lex_state = 237}, [4444] = {.lex_state = 282}, - [4445] = {.lex_state = 237}, - [4446] = {.lex_state = 248}, - [4447] = {.lex_state = 282}, + [4445] = {.lex_state = 282}, + [4446] = {.lex_state = 284}, + [4447] = {.lex_state = 237}, [4448] = {.lex_state = 282}, - [4449] = {.lex_state = 282}, - [4450] = {.lex_state = 282}, - [4451] = {.lex_state = 284}, - [4452] = {.lex_state = 237}, - [4453] = {.lex_state = 284}, - [4454] = {.lex_state = 284}, - [4455] = {.lex_state = 272}, - [4456] = {.lex_state = 282}, + [4449] = {.lex_state = 272}, + [4450] = {.lex_state = 237}, + [4451] = {.lex_state = 282}, + [4452] = {.lex_state = 282}, + [4453] = {.lex_state = 272}, + [4454] = {.lex_state = 282}, + [4455] = {.lex_state = 282}, + [4456] = {.lex_state = 237}, [4457] = {.lex_state = 282}, - [4458] = {.lex_state = 282}, + [4458] = {.lex_state = 284}, [4459] = {.lex_state = 282}, [4460] = {.lex_state = 282}, [4461] = {.lex_state = 282}, - [4462] = {.lex_state = 237}, + [4462] = {.lex_state = 282}, [4463] = {.lex_state = 282}, - [4464] = {.lex_state = 284}, + [4464] = {.lex_state = 282}, [4465] = {.lex_state = 282}, [4466] = {.lex_state = 282}, - [4467] = {.lex_state = 282}, + [4467] = {.lex_state = 284}, [4468] = {.lex_state = 282}, [4469] = {.lex_state = 282}, - [4470] = {.lex_state = 282}, - [4471] = {.lex_state = 282}, - [4472] = {.lex_state = 284}, - [4473] = {.lex_state = 282}, + [4470] = {.lex_state = 237}, + [4471] = {.lex_state = 249}, + [4472] = {.lex_state = 282}, + [4473] = {.lex_state = 284}, [4474] = {.lex_state = 282}, - [4475] = {.lex_state = 284}, - [4476] = {.lex_state = 272}, + [4475] = {.lex_state = 282}, + [4476] = {.lex_state = 282}, [4477] = {.lex_state = 282}, - [4478] = {.lex_state = 237}, - [4479] = {.lex_state = 237}, - [4480] = {.lex_state = 237}, + [4478] = {.lex_state = 282}, + [4479] = {.lex_state = 282}, + [4480] = {.lex_state = 282}, [4481] = {.lex_state = 282}, [4482] = {.lex_state = 282}, - [4483] = {.lex_state = 248}, - [4484] = {.lex_state = 248}, + [4483] = {.lex_state = 282}, + [4484] = {.lex_state = 282}, [4485] = {.lex_state = 282}, - [4486] = {.lex_state = 273}, - [4487] = {.lex_state = 237}, - [4488] = {.lex_state = 237}, - [4489] = {.lex_state = 237}, + [4486] = {.lex_state = 282}, + [4487] = {.lex_state = 271}, + [4488] = {.lex_state = 282}, + [4489] = {.lex_state = 282}, [4490] = {.lex_state = 282}, - [4491] = {.lex_state = 248}, - [4492] = {.lex_state = 273}, - [4493] = {.lex_state = 237}, - [4494] = {.lex_state = 237}, + [4491] = {.lex_state = 282}, + [4492] = {.lex_state = 282}, + [4493] = {.lex_state = 282}, + [4494] = {.lex_state = 282}, [4495] = {.lex_state = 237}, - [4496] = {.lex_state = 248}, + [4496] = {.lex_state = 271}, [4497] = {.lex_state = 282}, - [4498] = {.lex_state = 248}, - [4499] = {.lex_state = 248}, + [4498] = {.lex_state = 387}, + [4499] = {.lex_state = 282}, [4500] = {.lex_state = 282}, - [4501] = {.lex_state = 238}, - [4502] = {.lex_state = 237}, - [4503] = {.lex_state = 237}, + [4501] = {.lex_state = 282}, + [4502] = {.lex_state = 282}, + [4503] = {.lex_state = 282}, [4504] = {.lex_state = 282}, - [4505] = {.lex_state = 237}, + [4505] = {.lex_state = 282}, [4506] = {.lex_state = 237}, - [4507] = {.lex_state = 238}, + [4507] = {.lex_state = 282}, [4508] = {.lex_state = 237}, [4509] = {.lex_state = 237}, [4510] = {.lex_state = 237}, - [4511] = {.lex_state = 237}, - [4512] = {.lex_state = 237}, + [4511] = {.lex_state = 273}, + [4512] = {.lex_state = 282}, [4513] = {.lex_state = 237}, [4514] = {.lex_state = 237}, - [4515] = {.lex_state = 238}, + [4515] = {.lex_state = 237}, [4516] = {.lex_state = 237}, [4517] = {.lex_state = 237}, - [4518] = {.lex_state = 282}, - [4519] = {.lex_state = 237}, - [4520] = {.lex_state = 237}, - [4521] = {.lex_state = 248}, + [4518] = {.lex_state = 238}, + [4519] = {.lex_state = 387}, + [4520] = {.lex_state = 284}, + [4521] = {.lex_state = 237}, [4522] = {.lex_state = 282}, - [4523] = {.lex_state = 238}, + [4523] = {.lex_state = 249}, [4524] = {.lex_state = 237}, - [4525] = {.lex_state = 282}, - [4526] = {.lex_state = 248}, - [4527] = {.lex_state = 282}, - [4528] = {.lex_state = 282}, + [4525] = {.lex_state = 237}, + [4526] = {.lex_state = 237}, + [4527] = {.lex_state = 238}, + [4528] = {.lex_state = 249}, [4529] = {.lex_state = 237}, - [4530] = {.lex_state = 284}, - [4531] = {.lex_state = 282}, - [4532] = {.lex_state = 237}, - [4533] = {.lex_state = 248}, + [4530] = {.lex_state = 237}, + [4531] = {.lex_state = 237}, + [4532] = {.lex_state = 282}, + [4533] = {.lex_state = 237}, [4534] = {.lex_state = 237}, - [4535] = {.lex_state = 248}, + [4535] = {.lex_state = 237}, [4536] = {.lex_state = 387}, - [4537] = {.lex_state = 282}, + [4537] = {.lex_state = 249}, [4538] = {.lex_state = 237}, - [4539] = {.lex_state = 237}, - [4540] = {.lex_state = 248}, - [4541] = {.lex_state = 387}, - [4542] = {.lex_state = 387}, - [4543] = {.lex_state = 248}, + [4539] = {.lex_state = 282}, + [4540] = {.lex_state = 237}, + [4541] = {.lex_state = 237}, + [4542] = {.lex_state = 282}, + [4543] = {.lex_state = 237}, [4544] = {.lex_state = 282}, - [4545] = {.lex_state = 237}, - [4546] = {.lex_state = 248}, - [4547] = {.lex_state = 238}, - [4548] = {.lex_state = 281}, - [4549] = {.lex_state = 248}, - [4550] = {.lex_state = 273}, - [4551] = {.lex_state = 248}, + [4545] = {.lex_state = 249}, + [4546] = {.lex_state = 249}, + [4547] = {.lex_state = 282}, + [4548] = {.lex_state = 237}, + [4549] = {.lex_state = 249}, + [4550] = {.lex_state = 237}, + [4551] = {.lex_state = 273}, [4552] = {.lex_state = 237}, - [4553] = {.lex_state = 237}, - [4554] = {.lex_state = 248}, - [4555] = {.lex_state = 237}, + [4553] = {.lex_state = 249}, + [4554] = {.lex_state = 237}, + [4555] = {.lex_state = 249}, [4556] = {.lex_state = 237}, [4557] = {.lex_state = 237}, [4558] = {.lex_state = 237}, - [4559] = {.lex_state = 237}, + [4559] = {.lex_state = 282}, [4560] = {.lex_state = 237}, - [4561] = {.lex_state = 237}, - [4562] = {.lex_state = 237}, - [4563] = {.lex_state = 237}, - [4564] = {.lex_state = 248}, - [4565] = {.lex_state = 237}, - [4566] = {.lex_state = 273}, - [4567] = {.lex_state = 273}, - [4568] = {.lex_state = 237}, - [4569] = {.lex_state = 281}, - [4570] = {.lex_state = 237}, - [4571] = {.lex_state = 237}, - [4572] = {.lex_state = 271}, + [4561] = {.lex_state = 282}, + [4562] = {.lex_state = 282}, + [4563] = {.lex_state = 282}, + [4564] = {.lex_state = 237}, + [4565] = {.lex_state = 282}, + [4566] = {.lex_state = 249}, + [4567] = {.lex_state = 387}, + [4568] = {.lex_state = 249}, + [4569] = {.lex_state = 238}, + [4570] = {.lex_state = 249}, + [4571] = {.lex_state = 282}, + [4572] = {.lex_state = 249}, [4573] = {.lex_state = 238}, - [4574] = {.lex_state = 237}, - [4575] = {.lex_state = 237}, - [4576] = {.lex_state = 281}, - [4577] = {.lex_state = 248}, + [4574] = {.lex_state = 282}, + [4575] = {.lex_state = 282}, + [4576] = {.lex_state = 237}, + [4577] = {.lex_state = 237}, [4578] = {.lex_state = 237}, [4579] = {.lex_state = 237}, - [4580] = {.lex_state = 238}, - [4581] = {.lex_state = 237}, + [4580] = {.lex_state = 237}, + [4581] = {.lex_state = 238}, [4582] = {.lex_state = 237}, - [4583] = {.lex_state = 238}, + [4583] = {.lex_state = 237}, [4584] = {.lex_state = 237}, - [4585] = {.lex_state = 237}, + [4585] = {.lex_state = 249}, [4586] = {.lex_state = 237}, [4587] = {.lex_state = 237}, - [4588] = {.lex_state = 237}, + [4588] = {.lex_state = 249}, [4589] = {.lex_state = 237}, - [4590] = {.lex_state = 237}, + [4590] = {.lex_state = 248}, [4591] = {.lex_state = 237}, - [4592] = {.lex_state = 248}, - [4593] = {.lex_state = 237}, + [4592] = {.lex_state = 273}, + [4593] = {.lex_state = 249}, [4594] = {.lex_state = 237}, [4595] = {.lex_state = 237}, - [4596] = {.lex_state = 248}, - [4597] = {.lex_state = 271}, + [4596] = {.lex_state = 249}, + [4597] = {.lex_state = 248}, [4598] = {.lex_state = 237}, [4599] = {.lex_state = 237}, - [4600] = {.lex_state = 273}, - [4601] = {.lex_state = 248}, - [4602] = {.lex_state = 237}, + [4600] = {.lex_state = 271}, + [4601] = {.lex_state = 237}, + [4602] = {.lex_state = 281}, [4603] = {.lex_state = 237}, [4604] = {.lex_state = 237}, - [4605] = {.lex_state = 248}, - [4606] = {.lex_state = 248}, - [4607] = {.lex_state = 248}, - [4608] = {.lex_state = 248}, - [4609] = {.lex_state = 248}, - [4610] = {.lex_state = 248}, - [4611] = {.lex_state = 248}, - [4612] = {.lex_state = 248}, - [4613] = {.lex_state = 248}, - [4614] = {.lex_state = 248}, - [4615] = {.lex_state = 248}, - [4616] = {.lex_state = 248}, - [4617] = {.lex_state = 248}, - [4618] = {.lex_state = 248}, - [4619] = {.lex_state = 248}, - [4620] = {.lex_state = 248}, - [4621] = {.lex_state = 284}, - [4622] = {.lex_state = 248}, - [4623] = {.lex_state = 248}, - [4624] = {.lex_state = 248}, - [4625] = {.lex_state = 248}, - [4626] = {.lex_state = 282}, - [4627] = {.lex_state = 248}, - [4628] = {.lex_state = 248}, - [4629] = {.lex_state = 248}, - [4630] = {.lex_state = 248}, - [4631] = {.lex_state = 284}, - [4632] = {.lex_state = 248}, - [4633] = {.lex_state = 248}, - [4634] = {.lex_state = 248}, - [4635] = {.lex_state = 248}, - [4636] = {.lex_state = 248}, - [4637] = {.lex_state = 248}, - [4638] = {.lex_state = 248}, - [4639] = {.lex_state = 248}, - [4640] = {.lex_state = 228}, - [4641] = {.lex_state = 248}, - [4642] = {.lex_state = 248}, - [4643] = {.lex_state = 248}, - [4644] = {.lex_state = 282}, - [4645] = {.lex_state = 228}, - [4646] = {.lex_state = 237}, - [4647] = {.lex_state = 237}, - [4648] = {.lex_state = 248}, - [4649] = {.lex_state = 237}, - [4650] = {.lex_state = 248}, - [4651] = {.lex_state = 248}, - [4652] = {.lex_state = 248}, - [4653] = {.lex_state = 387}, - [4654] = {.lex_state = 248}, - [4655] = {.lex_state = 282}, - [4656] = {.lex_state = 282}, - [4657] = {.lex_state = 248}, - [4658] = {.lex_state = 387}, - [4659] = {.lex_state = 248}, - [4660] = {.lex_state = 248}, - [4661] = {.lex_state = 248}, - [4662] = {.lex_state = 387}, - [4663] = {.lex_state = 248}, - [4664] = {.lex_state = 248}, - [4665] = {.lex_state = 248}, + [4605] = {.lex_state = 249}, + [4606] = {.lex_state = 273}, + [4607] = {.lex_state = 237}, + [4608] = {.lex_state = 238}, + [4609] = {.lex_state = 238}, + [4610] = {.lex_state = 237}, + [4611] = {.lex_state = 237}, + [4612] = {.lex_state = 281}, + [4613] = {.lex_state = 238}, + [4614] = {.lex_state = 237}, + [4615] = {.lex_state = 237}, + [4616] = {.lex_state = 237}, + [4617] = {.lex_state = 237}, + [4618] = {.lex_state = 237}, + [4619] = {.lex_state = 237}, + [4620] = {.lex_state = 281}, + [4621] = {.lex_state = 249}, + [4622] = {.lex_state = 237}, + [4623] = {.lex_state = 237}, + [4624] = {.lex_state = 273}, + [4625] = {.lex_state = 237}, + [4626] = {.lex_state = 237}, + [4627] = {.lex_state = 273}, + [4628] = {.lex_state = 249}, + [4629] = {.lex_state = 237}, + [4630] = {.lex_state = 237}, + [4631] = {.lex_state = 271}, + [4632] = {.lex_state = 237}, + [4633] = {.lex_state = 237}, + [4634] = {.lex_state = 249}, + [4635] = {.lex_state = 249}, + [4636] = {.lex_state = 249}, + [4637] = {.lex_state = 249}, + [4638] = {.lex_state = 249}, + [4639] = {.lex_state = 249}, + [4640] = {.lex_state = 249}, + [4641] = {.lex_state = 249}, + [4642] = {.lex_state = 249}, + [4643] = {.lex_state = 249}, + [4644] = {.lex_state = 249}, + [4645] = {.lex_state = 249}, + [4646] = {.lex_state = 249}, + [4647] = {.lex_state = 249}, + [4648] = {.lex_state = 249}, + [4649] = {.lex_state = 249}, + [4650] = {.lex_state = 228}, + [4651] = {.lex_state = 249}, + [4652] = {.lex_state = 228}, + [4653] = {.lex_state = 284}, + [4654] = {.lex_state = 249}, + [4655] = {.lex_state = 237}, + [4656] = {.lex_state = 249}, + [4657] = {.lex_state = 249}, + [4658] = {.lex_state = 249}, + [4659] = {.lex_state = 249}, + [4660] = {.lex_state = 249}, + [4661] = {.lex_state = 249}, + [4662] = {.lex_state = 237}, + [4663] = {.lex_state = 249}, + [4664] = {.lex_state = 249}, + [4665] = {.lex_state = 249}, [4666] = {.lex_state = 282}, - [4667] = {.lex_state = 387}, - [4668] = {.lex_state = 248}, - [4669] = {.lex_state = 248}, - [4670] = {.lex_state = 248}, - [4671] = {.lex_state = 228}, - [4672] = {.lex_state = 248}, - [4673] = {.lex_state = 237}, - [4674] = {.lex_state = 248}, - [4675] = {.lex_state = 237}, + [4667] = {.lex_state = 249}, + [4668] = {.lex_state = 249}, + [4669] = {.lex_state = 284}, + [4670] = {.lex_state = 249}, + [4671] = {.lex_state = 249}, + [4672] = {.lex_state = 249}, + [4673] = {.lex_state = 249}, + [4674] = {.lex_state = 249}, + [4675] = {.lex_state = 282}, [4676] = {.lex_state = 237}, - [4677] = {.lex_state = 228}, - [4678] = {.lex_state = 282}, - [4679] = {.lex_state = 281}, - [4680] = {.lex_state = 282}, - [4681] = {.lex_state = 237}, - [4682] = {.lex_state = 248}, - [4683] = {.lex_state = 387}, - [4684] = {.lex_state = 282}, - [4685] = {.lex_state = 284}, + [4677] = {.lex_state = 249}, + [4678] = {.lex_state = 249}, + [4679] = {.lex_state = 237}, + [4680] = {.lex_state = 249}, + [4681] = {.lex_state = 282}, + [4682] = {.lex_state = 249}, + [4683] = {.lex_state = 249}, + [4684] = {.lex_state = 249}, + [4685] = {.lex_state = 249}, [4686] = {.lex_state = 238}, - [4687] = {.lex_state = 248}, - [4688] = {.lex_state = 248}, - [4689] = {.lex_state = 238}, - [4690] = {.lex_state = 284}, - [4691] = {.lex_state = 248}, - [4692] = {.lex_state = 248}, - [4693] = {.lex_state = 237}, + [4687] = {.lex_state = 249}, + [4688] = {.lex_state = 249}, + [4689] = {.lex_state = 237}, + [4690] = {.lex_state = 282}, + [4691] = {.lex_state = 249}, + [4692] = {.lex_state = 249}, + [4693] = {.lex_state = 249}, [4694] = {.lex_state = 282}, - [4695] = {.lex_state = 237}, - [4696] = {.lex_state = 248}, - [4697] = {.lex_state = 248}, - [4698] = {.lex_state = 387}, - [4699] = {.lex_state = 248}, - [4700] = {.lex_state = 248}, - [4701] = {.lex_state = 248}, - [4702] = {.lex_state = 248}, - [4703] = {.lex_state = 282}, - [4704] = {.lex_state = 271}, - [4705] = {.lex_state = 237}, - [4706] = {.lex_state = 237}, - [4707] = {.lex_state = 271}, + [4695] = {.lex_state = 387}, + [4696] = {.lex_state = 284}, + [4697] = {.lex_state = 282}, + [4698] = {.lex_state = 282}, + [4699] = {.lex_state = 282}, + [4700] = {.lex_state = 249}, + [4701] = {.lex_state = 249}, + [4702] = {.lex_state = 249}, + [4703] = {.lex_state = 249}, + [4704] = {.lex_state = 387}, + [4705] = {.lex_state = 282}, + [4706] = {.lex_state = 284}, + [4707] = {.lex_state = 238}, [4708] = {.lex_state = 237}, - [4709] = {.lex_state = 284}, - [4710] = {.lex_state = 237}, - [4711] = {.lex_state = 281}, - [4712] = {.lex_state = 237}, + [4709] = {.lex_state = 237}, + [4710] = {.lex_state = 387}, + [4711] = {.lex_state = 228}, + [4712] = {.lex_state = 249}, [4713] = {.lex_state = 237}, - [4714] = {.lex_state = 271}, - [4715] = {.lex_state = 237}, - [4716] = {.lex_state = 237}, - [4717] = {.lex_state = 271}, - [4718] = {.lex_state = 237}, - [4719] = {.lex_state = 241}, - [4720] = {.lex_state = 237}, - [4721] = {.lex_state = 237}, - [4722] = {.lex_state = 237}, - [4723] = {.lex_state = 237}, - [4724] = {.lex_state = 248}, - [4725] = {.lex_state = 237}, - [4726] = {.lex_state = 241}, - [4727] = {.lex_state = 271}, - [4728] = {.lex_state = 237}, - [4729] = {.lex_state = 237}, - [4730] = {.lex_state = 284}, - [4731] = {.lex_state = 284}, - [4732] = {.lex_state = 284}, - [4733] = {.lex_state = 271}, - [4734] = {.lex_state = 281}, + [4714] = {.lex_state = 387}, + [4715] = {.lex_state = 249}, + [4716] = {.lex_state = 249}, + [4717] = {.lex_state = 237}, + [4718] = {.lex_state = 228}, + [4719] = {.lex_state = 387}, + [4720] = {.lex_state = 248}, + [4721] = {.lex_state = 249}, + [4722] = {.lex_state = 249}, + [4723] = {.lex_state = 281}, + [4724] = {.lex_state = 249}, + [4725] = {.lex_state = 249}, + [4726] = {.lex_state = 282}, + [4727] = {.lex_state = 249}, + [4728] = {.lex_state = 249}, + [4729] = {.lex_state = 249}, + [4730] = {.lex_state = 249}, + [4731] = {.lex_state = 387}, + [4732] = {.lex_state = 237}, + [4733] = {.lex_state = 249}, + [4734] = {.lex_state = 237}, [4735] = {.lex_state = 284}, - [4736] = {.lex_state = 237}, - [4737] = {.lex_state = 284}, - [4738] = {.lex_state = 284}, - [4739] = {.lex_state = 237}, - [4740] = {.lex_state = 248}, - [4741] = {.lex_state = 248}, - [4742] = {.lex_state = 248}, + [4736] = {.lex_state = 281}, + [4737] = {.lex_state = 237}, + [4738] = {.lex_state = 271}, + [4739] = {.lex_state = 284}, + [4740] = {.lex_state = 271}, + [4741] = {.lex_state = 271}, + [4742] = {.lex_state = 284}, [4743] = {.lex_state = 237}, - [4744] = {.lex_state = 237}, + [4744] = {.lex_state = 284}, [4745] = {.lex_state = 237}, - [4746] = {.lex_state = 237}, + [4746] = {.lex_state = 271}, [4747] = {.lex_state = 237}, - [4748] = {.lex_state = 248}, + [4748] = {.lex_state = 271}, [4749] = {.lex_state = 237}, - [4750] = {.lex_state = 273}, + [4750] = {.lex_state = 237}, [4751] = {.lex_state = 237}, - [4752] = {.lex_state = 270}, - [4753] = {.lex_state = 248}, - [4754] = {.lex_state = 273}, + [4752] = {.lex_state = 241}, + [4753] = {.lex_state = 237}, + [4754] = {.lex_state = 237}, [4755] = {.lex_state = 237}, - [4756] = {.lex_state = 273}, - [4757] = {.lex_state = 248}, - [4758] = {.lex_state = 273}, + [4756] = {.lex_state = 237}, + [4757] = {.lex_state = 237}, + [4758] = {.lex_state = 237}, [4759] = {.lex_state = 237}, [4760] = {.lex_state = 237}, [4761] = {.lex_state = 237}, - [4762] = {.lex_state = 273}, - [4763] = {.lex_state = 248}, - [4764] = {.lex_state = 237}, - [4765] = {.lex_state = 387}, - [4766] = {.lex_state = 237}, - [4767] = {.lex_state = 237}, - [4768] = {.lex_state = 237}, - [4769] = {.lex_state = 237}, - [4770] = {.lex_state = 273}, + [4762] = {.lex_state = 281}, + [4763] = {.lex_state = 237}, + [4764] = {.lex_state = 284}, + [4765] = {.lex_state = 271}, + [4766] = {.lex_state = 284}, + [4767] = {.lex_state = 241}, + [4768] = {.lex_state = 284}, + [4769] = {.lex_state = 249}, + [4770] = {.lex_state = 237}, [4771] = {.lex_state = 237}, [4772] = {.lex_state = 237}, - [4773] = {.lex_state = 237}, + [4773] = {.lex_state = 273}, [4774] = {.lex_state = 237}, - [4775] = {.lex_state = 273}, + [4775] = {.lex_state = 249}, [4776] = {.lex_state = 273}, - [4777] = {.lex_state = 237}, - [4778] = {.lex_state = 237}, + [4777] = {.lex_state = 271}, + [4778] = {.lex_state = 270}, [4779] = {.lex_state = 237}, - [4780] = {.lex_state = 237}, - [4781] = {.lex_state = 237}, - [4782] = {.lex_state = 237}, - [4783] = {.lex_state = 237}, + [4780] = {.lex_state = 271}, + [4781] = {.lex_state = 281}, + [4782] = {.lex_state = 249}, + [4783] = {.lex_state = 273}, [4784] = {.lex_state = 273}, - [4785] = {.lex_state = 273}, + [4785] = {.lex_state = 249}, [4786] = {.lex_state = 237}, [4787] = {.lex_state = 237}, - [4788] = {.lex_state = 237}, - [4789] = {.lex_state = 273}, - [4790] = {.lex_state = 237}, - [4791] = {.lex_state = 248}, - [4792] = {.lex_state = 237}, - [4793] = {.lex_state = 237}, - [4794] = {.lex_state = 248}, - [4795] = {.lex_state = 237}, - [4796] = {.lex_state = 237}, - [4797] = {.lex_state = 248}, - [4798] = {.lex_state = 248}, + [4788] = {.lex_state = 271}, + [4789] = {.lex_state = 237}, + [4790] = {.lex_state = 249}, + [4791] = {.lex_state = 237}, + [4792] = {.lex_state = 273}, + [4793] = {.lex_state = 284}, + [4794] = {.lex_state = 237}, + [4795] = {.lex_state = 273}, + [4796] = {.lex_state = 249}, + [4797] = {.lex_state = 271}, + [4798] = {.lex_state = 273}, [4799] = {.lex_state = 273}, - [4800] = {.lex_state = 248}, - [4801] = {.lex_state = 237}, - [4802] = {.lex_state = 248}, - [4803] = {.lex_state = 248}, + [4800] = {.lex_state = 273}, + [4801] = {.lex_state = 387}, + [4802] = {.lex_state = 249}, + [4803] = {.lex_state = 249}, [4804] = {.lex_state = 237}, - [4805] = {.lex_state = 248}, + [4805] = {.lex_state = 237}, [4806] = {.lex_state = 237}, - [4807] = {.lex_state = 248}, - [4808] = {.lex_state = 237}, + [4807] = {.lex_state = 237}, + [4808] = {.lex_state = 273}, [4809] = {.lex_state = 237}, [4810] = {.lex_state = 273}, [4811] = {.lex_state = 237}, - [4812] = {.lex_state = 248}, - [4813] = {.lex_state = 248}, - [4814] = {.lex_state = 248}, - [4815] = {.lex_state = 271}, - [4816] = {.lex_state = 271}, - [4817] = {.lex_state = 248}, - [4818] = {.lex_state = 248}, + [4812] = {.lex_state = 273}, + [4813] = {.lex_state = 249}, + [4814] = {.lex_state = 249}, + [4815] = {.lex_state = 237}, + [4816] = {.lex_state = 237}, + [4817] = {.lex_state = 237}, + [4818] = {.lex_state = 249}, [4819] = {.lex_state = 237}, - [4820] = {.lex_state = 271}, - [4821] = {.lex_state = 273}, + [4820] = {.lex_state = 249}, + [4821] = {.lex_state = 387}, [4822] = {.lex_state = 237}, - [4823] = {.lex_state = 248}, - [4824] = {.lex_state = 273}, - [4825] = {.lex_state = 273}, - [4826] = {.lex_state = 273}, - [4827] = {.lex_state = 273}, - [4828] = {.lex_state = 273}, + [4823] = {.lex_state = 237}, + [4824] = {.lex_state = 237}, + [4825] = {.lex_state = 249}, + [4826] = {.lex_state = 249}, + [4827] = {.lex_state = 249}, + [4828] = {.lex_state = 249}, [4829] = {.lex_state = 273}, - [4830] = {.lex_state = 273}, - [4831] = {.lex_state = 248}, - [4832] = {.lex_state = 248}, + [4830] = {.lex_state = 237}, + [4831] = {.lex_state = 237}, + [4832] = {.lex_state = 273}, [4833] = {.lex_state = 237}, - [4834] = {.lex_state = 248}, + [4834] = {.lex_state = 273}, [4835] = {.lex_state = 237}, - [4836] = {.lex_state = 237}, - [4837] = {.lex_state = 237}, + [4836] = {.lex_state = 249}, + [4837] = {.lex_state = 249}, [4838] = {.lex_state = 273}, - [4839] = {.lex_state = 248}, - [4840] = {.lex_state = 273}, - [4841] = {.lex_state = 248}, - [4842] = {.lex_state = 248}, - [4843] = {.lex_state = 237}, - [4844] = {.lex_state = 237}, - [4845] = {.lex_state = 248}, - [4846] = {.lex_state = 237}, - [4847] = {.lex_state = 271}, - [4848] = {.lex_state = 237}, - [4849] = {.lex_state = 273}, - [4850] = {.lex_state = 237}, - [4851] = {.lex_state = 237}, - [4852] = {.lex_state = 248}, - [4853] = {.lex_state = 248}, - [4854] = {.lex_state = 237}, + [4839] = {.lex_state = 237}, + [4840] = {.lex_state = 237}, + [4841] = {.lex_state = 237}, + [4842] = {.lex_state = 237}, + [4843] = {.lex_state = 271}, + [4844] = {.lex_state = 271}, + [4845] = {.lex_state = 249}, + [4846] = {.lex_state = 249}, + [4847] = {.lex_state = 273}, + [4848] = {.lex_state = 249}, + [4849] = {.lex_state = 237}, + [4850] = {.lex_state = 249}, + [4851] = {.lex_state = 249}, + [4852] = {.lex_state = 249}, + [4853] = {.lex_state = 249}, + [4854] = {.lex_state = 249}, [4855] = {.lex_state = 273}, - [4856] = {.lex_state = 248}, + [4856] = {.lex_state = 249}, [4857] = {.lex_state = 237}, - [4858] = {.lex_state = 248}, - [4859] = {.lex_state = 248}, - [4860] = {.lex_state = 281}, - [4861] = {.lex_state = 271}, - [4862] = {.lex_state = 248}, - [4863] = {.lex_state = 248}, + [4858] = {.lex_state = 237}, + [4859] = {.lex_state = 237}, + [4860] = {.lex_state = 273}, + [4861] = {.lex_state = 273}, + [4862] = {.lex_state = 271}, + [4863] = {.lex_state = 237}, [4864] = {.lex_state = 237}, - [4865] = {.lex_state = 273}, - [4866] = {.lex_state = 273}, - [4867] = {.lex_state = 237}, + [4865] = {.lex_state = 249}, + [4866] = {.lex_state = 249}, + [4867] = {.lex_state = 249}, [4868] = {.lex_state = 273}, - [4869] = {.lex_state = 248}, - [4870] = {.lex_state = 237}, - [4871] = {.lex_state = 248}, - [4872] = {.lex_state = 237}, - [4873] = {.lex_state = 384}, - [4874] = {.lex_state = 248}, - [4875] = {.lex_state = 271}, - [4876] = {.lex_state = 271}, - [4877] = {.lex_state = 248}, - [4878] = {.lex_state = 248}, - [4879] = {.lex_state = 248}, - [4880] = {.lex_state = 237}, - [4881] = {.lex_state = 284}, - [4882] = {.lex_state = 248}, - [4883] = {.lex_state = 384}, - [4884] = {.lex_state = 273}, - [4885] = {.lex_state = 271}, + [4869] = {.lex_state = 249}, + [4870] = {.lex_state = 249}, + [4871] = {.lex_state = 237}, + [4872] = {.lex_state = 249}, + [4873] = {.lex_state = 273}, + [4874] = {.lex_state = 237}, + [4875] = {.lex_state = 249}, + [4876] = {.lex_state = 249}, + [4877] = {.lex_state = 273}, + [4878] = {.lex_state = 273}, + [4879] = {.lex_state = 271}, + [4880] = {.lex_state = 271}, + [4881] = {.lex_state = 249}, + [4882] = {.lex_state = 249}, + [4883] = {.lex_state = 237}, + [4884] = {.lex_state = 237}, + [4885] = {.lex_state = 273}, [4886] = {.lex_state = 273}, - [4887] = {.lex_state = 284}, - [4888] = {.lex_state = 273}, - [4889] = {.lex_state = 248}, - [4890] = {.lex_state = 273}, - [4891] = {.lex_state = 237}, - [4892] = {.lex_state = 248}, - [4893] = {.lex_state = 248}, - [4894] = {.lex_state = 248}, - [4895] = {.lex_state = 248}, - [4896] = {.lex_state = 248}, - [4897] = {.lex_state = 248}, - [4898] = {.lex_state = 248}, - [4899] = {.lex_state = 273}, - [4900] = {.lex_state = 248}, - [4901] = {.lex_state = 248}, - [4902] = {.lex_state = 248}, - [4903] = {.lex_state = 271}, - [4904] = {.lex_state = 273}, - [4905] = {.lex_state = 273}, - [4906] = {.lex_state = 237}, - [4907] = {.lex_state = 237}, - [4908] = {.lex_state = 387}, - [4909] = {.lex_state = 237}, + [4887] = {.lex_state = 237}, + [4888] = {.lex_state = 249}, + [4889] = {.lex_state = 237}, + [4890] = {.lex_state = 249}, + [4891] = {.lex_state = 273}, + [4892] = {.lex_state = 237}, + [4893] = {.lex_state = 249}, + [4894] = {.lex_state = 271}, + [4895] = {.lex_state = 273}, + [4896] = {.lex_state = 237}, + [4897] = {.lex_state = 237}, + [4898] = {.lex_state = 237}, + [4899] = {.lex_state = 384}, + [4900] = {.lex_state = 249}, + [4901] = {.lex_state = 249}, + [4902] = {.lex_state = 237}, + [4903] = {.lex_state = 249}, + [4904] = {.lex_state = 237}, + [4905] = {.lex_state = 237}, + [4906] = {.lex_state = 273}, + [4907] = {.lex_state = 249}, + [4908] = {.lex_state = 249}, + [4909] = {.lex_state = 273}, [4910] = {.lex_state = 273}, - [4911] = {.lex_state = 271}, - [4912] = {.lex_state = 384}, + [4911] = {.lex_state = 284}, + [4912] = {.lex_state = 273}, [4913] = {.lex_state = 273}, - [4914] = {.lex_state = 273}, - [4915] = {.lex_state = 237}, - [4916] = {.lex_state = 248}, - [4917] = {.lex_state = 271}, - [4918] = {.lex_state = 273}, - [4919] = {.lex_state = 248}, - [4920] = {.lex_state = 248}, - [4921] = {.lex_state = 273}, + [4914] = {.lex_state = 237}, + [4915] = {.lex_state = 384}, + [4916] = {.lex_state = 249}, + [4917] = {.lex_state = 249}, + [4918] = {.lex_state = 249}, + [4919] = {.lex_state = 249}, + [4920] = {.lex_state = 237}, + [4921] = {.lex_state = 237}, [4922] = {.lex_state = 237}, - [4923] = {.lex_state = 387}, - [4924] = {.lex_state = 237}, - [4925] = {.lex_state = 282}, - [4926] = {.lex_state = 237}, + [4923] = {.lex_state = 237}, + [4924] = {.lex_state = 384}, + [4925] = {.lex_state = 237}, + [4926] = {.lex_state = 249}, [4927] = {.lex_state = 237}, - [4928] = {.lex_state = 282}, + [4928] = {.lex_state = 273}, [4929] = {.lex_state = 237}, - [4930] = {.lex_state = 237}, - [4931] = {.lex_state = 237}, - [4932] = {.lex_state = 273}, - [4933] = {.lex_state = 282}, + [4930] = {.lex_state = 273}, + [4931] = {.lex_state = 249}, + [4932] = {.lex_state = 249}, + [4933] = {.lex_state = 237}, [4934] = {.lex_state = 237}, [4935] = {.lex_state = 237}, - [4936] = {.lex_state = 237}, - [4937] = {.lex_state = 282}, - [4938] = {.lex_state = 282}, - [4939] = {.lex_state = 273}, + [4936] = {.lex_state = 273}, + [4937] = {.lex_state = 249}, + [4938] = {.lex_state = 249}, + [4939] = {.lex_state = 237}, [4940] = {.lex_state = 273}, - [4941] = {.lex_state = 228}, - [4942] = {.lex_state = 282}, - [4943] = {.lex_state = 282}, - [4944] = {.lex_state = 237}, - [4945] = {.lex_state = 282}, - [4946] = {.lex_state = 237}, - [4947] = {.lex_state = 282}, - [4948] = {.lex_state = 237}, - [4949] = {.lex_state = 284}, - [4950] = {.lex_state = 387}, - [4951] = {.lex_state = 281}, - [4952] = {.lex_state = 282}, - [4953] = {.lex_state = 237}, - [4954] = {.lex_state = 282}, - [4955] = {.lex_state = 273}, - [4956] = {.lex_state = 237}, - [4957] = {.lex_state = 273}, + [4941] = {.lex_state = 273}, + [4942] = {.lex_state = 271}, + [4943] = {.lex_state = 273}, + [4944] = {.lex_state = 249}, + [4945] = {.lex_state = 249}, + [4946] = {.lex_state = 249}, + [4947] = {.lex_state = 237}, + [4948] = {.lex_state = 249}, + [4949] = {.lex_state = 237}, + [4950] = {.lex_state = 237}, + [4951] = {.lex_state = 237}, + [4952] = {.lex_state = 273}, + [4953] = {.lex_state = 282}, + [4954] = {.lex_state = 273}, + [4955] = {.lex_state = 237}, + [4956] = {.lex_state = 273}, + [4957] = {.lex_state = 284}, [4958] = {.lex_state = 273}, - [4959] = {.lex_state = 284}, - [4960] = {.lex_state = 237}, - [4961] = {.lex_state = 282}, - [4962] = {.lex_state = 282}, - [4963] = {.lex_state = 271}, - [4964] = {.lex_state = 237}, + [4959] = {.lex_state = 387}, + [4960] = {.lex_state = 387}, + [4961] = {.lex_state = 237}, + [4962] = {.lex_state = 237}, + [4963] = {.lex_state = 387}, + [4964] = {.lex_state = 387}, [4965] = {.lex_state = 237}, [4966] = {.lex_state = 237}, - [4967] = {.lex_state = 273}, - [4968] = {.lex_state = 273}, - [4969] = {.lex_state = 284}, + [4967] = {.lex_state = 237}, + [4968] = {.lex_state = 237}, + [4969] = {.lex_state = 237}, [4970] = {.lex_state = 237}, - [4971] = {.lex_state = 237}, - [4972] = {.lex_state = 387}, - [4973] = {.lex_state = 284}, - [4974] = {.lex_state = 387}, - [4975] = {.lex_state = 271}, - [4976] = {.lex_state = 273}, - [4977] = {.lex_state = 387}, - [4978] = {.lex_state = 273}, - [4979] = {.lex_state = 237}, - [4980] = {.lex_state = 237}, - [4981] = {.lex_state = 273}, - [4982] = {.lex_state = 273}, + [4971] = {.lex_state = 284}, + [4972] = {.lex_state = 237}, + [4973] = {.lex_state = 282}, + [4974] = {.lex_state = 284}, + [4975] = {.lex_state = 237}, + [4976] = {.lex_state = 282}, + [4977] = {.lex_state = 282}, + [4978] = {.lex_state = 237}, + [4979] = {.lex_state = 387}, + [4980] = {.lex_state = 282}, + [4981] = {.lex_state = 282}, + [4982] = {.lex_state = 271}, [4983] = {.lex_state = 282}, [4984] = {.lex_state = 282}, - [4985] = {.lex_state = 237}, - [4986] = {.lex_state = 237}, + [4985] = {.lex_state = 282}, + [4986] = {.lex_state = 282}, [4987] = {.lex_state = 273}, - [4988] = {.lex_state = 237}, - [4989] = {.lex_state = 237}, + [4988] = {.lex_state = 273}, + [4989] = {.lex_state = 273}, [4990] = {.lex_state = 237}, - [4991] = {.lex_state = 237}, - [4992] = {.lex_state = 237}, + [4991] = {.lex_state = 282}, + [4992] = {.lex_state = 273}, [4993] = {.lex_state = 237}, - [4994] = {.lex_state = 237}, + [4994] = {.lex_state = 273}, [4995] = {.lex_state = 237}, [4996] = {.lex_state = 273}, [4997] = {.lex_state = 237}, - [4998] = {.lex_state = 237}, - [4999] = {.lex_state = 273}, + [4998] = {.lex_state = 273}, + [4999] = {.lex_state = 237}, [5000] = {.lex_state = 273}, - [5001] = {.lex_state = 273}, + [5001] = {.lex_state = 237}, [5002] = {.lex_state = 273}, - [5003] = {.lex_state = 282}, - [5004] = {.lex_state = 271}, - [5005] = {.lex_state = 273}, - [5006] = {.lex_state = 237}, - [5007] = {.lex_state = 273}, - [5008] = {.lex_state = 273}, - [5009] = {.lex_state = 273}, + [5003] = {.lex_state = 273}, + [5004] = {.lex_state = 273}, + [5005] = {.lex_state = 282}, + [5006] = {.lex_state = 284}, + [5007] = {.lex_state = 237}, + [5008] = {.lex_state = 237}, + [5009] = {.lex_state = 237}, [5010] = {.lex_state = 273}, - [5011] = {.lex_state = 273}, + [5011] = {.lex_state = 282}, [5012] = {.lex_state = 282}, - [5013] = {.lex_state = 282}, - [5014] = {.lex_state = 387}, + [5013] = {.lex_state = 237}, + [5014] = {.lex_state = 282}, [5015] = {.lex_state = 237}, [5016] = {.lex_state = 273}, - [5017] = {.lex_state = 273}, + [5017] = {.lex_state = 272}, [5018] = {.lex_state = 237}, - [5019] = {.lex_state = 271}, - [5020] = {.lex_state = 237}, - [5021] = {.lex_state = 387}, - [5022] = {.lex_state = 282}, + [5019] = {.lex_state = 387}, + [5020] = {.lex_state = 271}, + [5021] = {.lex_state = 273}, + [5022] = {.lex_state = 237}, [5023] = {.lex_state = 237}, [5024] = {.lex_state = 237}, - [5025] = {.lex_state = 282}, - [5026] = {.lex_state = 237}, - [5027] = {.lex_state = 282}, - [5028] = {.lex_state = 228}, - [5029] = {.lex_state = 237}, + [5025] = {.lex_state = 237}, + [5026] = {.lex_state = 273}, + [5027] = {.lex_state = 281}, + [5028] = {.lex_state = 273}, + [5029] = {.lex_state = 387}, [5030] = {.lex_state = 237}, - [5031] = {.lex_state = 237}, - [5032] = {.lex_state = 282}, + [5031] = {.lex_state = 282}, + [5032] = {.lex_state = 273}, [5033] = {.lex_state = 237}, - [5034] = {.lex_state = 387}, + [5034] = {.lex_state = 237}, [5035] = {.lex_state = 282}, - [5036] = {.lex_state = 237}, - [5037] = {.lex_state = 282}, - [5038] = {.lex_state = 282}, + [5036] = {.lex_state = 273}, + [5037] = {.lex_state = 228}, + [5038] = {.lex_state = 237}, [5039] = {.lex_state = 237}, - [5040] = {.lex_state = 282}, - [5041] = {.lex_state = 282}, + [5040] = {.lex_state = 273}, + [5041] = {.lex_state = 237}, [5042] = {.lex_state = 237}, - [5043] = {.lex_state = 237}, - [5044] = {.lex_state = 387}, + [5043] = {.lex_state = 282}, + [5044] = {.lex_state = 237}, [5045] = {.lex_state = 237}, [5046] = {.lex_state = 282}, - [5047] = {.lex_state = 237}, + [5047] = {.lex_state = 387}, [5048] = {.lex_state = 282}, - [5049] = {.lex_state = 237}, - [5050] = {.lex_state = 272}, + [5049] = {.lex_state = 273}, + [5050] = {.lex_state = 282}, [5051] = {.lex_state = 237}, - [5052] = {.lex_state = 237}, - [5053] = {.lex_state = 237}, - [5054] = {.lex_state = 273}, - [5055] = {.lex_state = 237}, - [5056] = {.lex_state = 237}, + [5052] = {.lex_state = 273}, + [5053] = {.lex_state = 282}, + [5054] = {.lex_state = 237}, + [5055] = {.lex_state = 273}, + [5056] = {.lex_state = 282}, [5057] = {.lex_state = 237}, [5058] = {.lex_state = 237}, [5059] = {.lex_state = 237}, - [5060] = {.lex_state = 282}, + [5060] = {.lex_state = 387}, [5061] = {.lex_state = 237}, [5062] = {.lex_state = 282}, [5063] = {.lex_state = 237}, - [5064] = {.lex_state = 282}, - [5065] = {.lex_state = 273}, + [5064] = {.lex_state = 237}, + [5065] = {.lex_state = 282}, [5066] = {.lex_state = 237}, - [5067] = {.lex_state = 237}, - [5068] = {.lex_state = 237}, - [5069] = {.lex_state = 387}, + [5067] = {.lex_state = 282}, + [5068] = {.lex_state = 282}, + [5069] = {.lex_state = 237}, [5070] = {.lex_state = 237}, [5071] = {.lex_state = 237}, - [5072] = {.lex_state = 387}, + [5072] = {.lex_state = 237}, [5073] = {.lex_state = 237}, - [5074] = {.lex_state = 237}, - [5075] = {.lex_state = 385}, - [5076] = {.lex_state = 237}, - [5077] = {.lex_state = 237}, + [5074] = {.lex_state = 271}, + [5075] = {.lex_state = 237}, + [5076] = {.lex_state = 282}, + [5077] = {.lex_state = 273}, [5078] = {.lex_state = 237}, - [5079] = {.lex_state = 237}, - [5080] = {.lex_state = 237}, - [5081] = {.lex_state = 387}, - [5082] = {.lex_state = 238}, + [5079] = {.lex_state = 282}, + [5080] = {.lex_state = 282}, + [5081] = {.lex_state = 237}, + [5082] = {.lex_state = 228}, [5083] = {.lex_state = 237}, - [5084] = {.lex_state = 238}, - [5085] = {.lex_state = 385}, + [5084] = {.lex_state = 237}, + [5085] = {.lex_state = 237}, [5086] = {.lex_state = 237}, - [5087] = {.lex_state = 387}, + [5087] = {.lex_state = 237}, [5088] = {.lex_state = 237}, - [5089] = {.lex_state = 254}, - [5090] = {.lex_state = 237}, + [5089] = {.lex_state = 237}, + [5090] = {.lex_state = 282}, [5091] = {.lex_state = 237}, [5092] = {.lex_state = 237}, - [5093] = {.lex_state = 281}, - [5094] = {.lex_state = 385}, - [5095] = {.lex_state = 238}, - [5096] = {.lex_state = 387}, - [5097] = {.lex_state = 387}, - [5098] = {.lex_state = 281}, + [5093] = {.lex_state = 271}, + [5094] = {.lex_state = 282}, + [5095] = {.lex_state = 273}, + [5096] = {.lex_state = 273}, + [5097] = {.lex_state = 237}, + [5098] = {.lex_state = 238}, [5099] = {.lex_state = 237}, - [5100] = {.lex_state = 237}, - [5101] = {.lex_state = 387}, - [5102] = {.lex_state = 387}, - [5103] = {.lex_state = 237}, - [5104] = {.lex_state = 387}, - [5105] = {.lex_state = 237}, - [5106] = {.lex_state = 387}, - [5107] = {.lex_state = 237}, + [5100] = {.lex_state = 238}, + [5101] = {.lex_state = 237}, + [5102] = {.lex_state = 237}, + [5103] = {.lex_state = 238}, + [5104] = {.lex_state = 237}, + [5105] = {.lex_state = 238}, + [5106] = {.lex_state = 237}, + [5107] = {.lex_state = 281}, [5108] = {.lex_state = 237}, [5109] = {.lex_state = 237}, [5110] = {.lex_state = 238}, [5111] = {.lex_state = 237}, [5112] = {.lex_state = 237}, [5113] = {.lex_state = 237}, - [5114] = {.lex_state = 237}, + [5114] = {.lex_state = 238}, [5115] = {.lex_state = 237}, - [5116] = {.lex_state = 238}, + [5116] = {.lex_state = 237}, [5117] = {.lex_state = 237}, - [5118] = {.lex_state = 238}, - [5119] = {.lex_state = 238}, - [5120] = {.lex_state = 238}, + [5118] = {.lex_state = 237}, + [5119] = {.lex_state = 237}, + [5120] = {.lex_state = 237}, [5121] = {.lex_state = 237}, - [5122] = {.lex_state = 281}, - [5123] = {.lex_state = 281}, + [5122] = {.lex_state = 237}, + [5123] = {.lex_state = 237}, [5124] = {.lex_state = 237}, - [5125] = {.lex_state = 281}, - [5126] = {.lex_state = 237}, + [5125] = {.lex_state = 237}, + [5126] = {.lex_state = 281}, [5127] = {.lex_state = 237}, [5128] = {.lex_state = 237}, [5129] = {.lex_state = 237}, [5130] = {.lex_state = 237}, - [5131] = {.lex_state = 281}, + [5131] = {.lex_state = 237}, [5132] = {.lex_state = 237}, [5133] = {.lex_state = 237}, [5134] = {.lex_state = 237}, @@ -72045,10 +72306,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5136] = {.lex_state = 237}, [5137] = {.lex_state = 237}, [5138] = {.lex_state = 237}, - [5139] = {.lex_state = 273}, - [5140] = {.lex_state = 238}, + [5139] = {.lex_state = 237}, + [5140] = {.lex_state = 237}, [5141] = {.lex_state = 237}, - [5142] = {.lex_state = 238}, + [5142] = {.lex_state = 237}, [5143] = {.lex_state = 237}, [5144] = {.lex_state = 238}, [5145] = {.lex_state = 237}, @@ -72057,64 +72318,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5148] = {.lex_state = 237}, [5149] = {.lex_state = 237}, [5150] = {.lex_state = 237}, - [5151] = {.lex_state = 238}, - [5152] = {.lex_state = 237}, - [5153] = {.lex_state = 238}, + [5151] = {.lex_state = 237}, + [5152] = {.lex_state = 238}, + [5153] = {.lex_state = 281}, [5154] = {.lex_state = 237}, [5155] = {.lex_state = 237}, [5156] = {.lex_state = 237}, [5157] = {.lex_state = 237}, [5158] = {.lex_state = 237}, - [5159] = {.lex_state = 238}, + [5159] = {.lex_state = 237}, [5160] = {.lex_state = 237}, - [5161] = {.lex_state = 238}, - [5162] = {.lex_state = 238}, - [5163] = {.lex_state = 237}, - [5164] = {.lex_state = 238}, - [5165] = {.lex_state = 238}, - [5166] = {.lex_state = 238}, + [5161] = {.lex_state = 237}, + [5162] = {.lex_state = 237}, + [5163] = {.lex_state = 284}, + [5164] = {.lex_state = 237}, + [5165] = {.lex_state = 237}, + [5166] = {.lex_state = 387}, [5167] = {.lex_state = 237}, - [5168] = {.lex_state = 237}, - [5169] = {.lex_state = 237}, + [5168] = {.lex_state = 238}, + [5169] = {.lex_state = 238}, [5170] = {.lex_state = 237}, - [5171] = {.lex_state = 237}, - [5172] = {.lex_state = 237}, - [5173] = {.lex_state = 238}, - [5174] = {.lex_state = 238}, - [5175] = {.lex_state = 238}, - [5176] = {.lex_state = 238}, - [5177] = {.lex_state = 238}, - [5178] = {.lex_state = 238}, - [5179] = {.lex_state = 237}, - [5180] = {.lex_state = 238}, + [5171] = {.lex_state = 238}, + [5172] = {.lex_state = 238}, + [5173] = {.lex_state = 237}, + [5174] = {.lex_state = 387}, + [5175] = {.lex_state = 237}, + [5176] = {.lex_state = 387}, + [5177] = {.lex_state = 237}, + [5178] = {.lex_state = 237}, + [5179] = {.lex_state = 281}, + [5180] = {.lex_state = 237}, [5181] = {.lex_state = 237}, [5182] = {.lex_state = 238}, - [5183] = {.lex_state = 284}, - [5184] = {.lex_state = 238}, + [5183] = {.lex_state = 237}, + [5184] = {.lex_state = 237}, [5185] = {.lex_state = 237}, [5186] = {.lex_state = 237}, - [5187] = {.lex_state = 237}, - [5188] = {.lex_state = 238}, - [5189] = {.lex_state = 238}, + [5187] = {.lex_state = 238}, + [5188] = {.lex_state = 237}, + [5189] = {.lex_state = 237}, [5190] = {.lex_state = 237}, - [5191] = {.lex_state = 281}, - [5192] = {.lex_state = 238}, - [5193] = {.lex_state = 238}, - [5194] = {.lex_state = 238}, - [5195] = {.lex_state = 238}, - [5196] = {.lex_state = 238}, + [5191] = {.lex_state = 387}, + [5192] = {.lex_state = 237}, + [5193] = {.lex_state = 387}, + [5194] = {.lex_state = 237}, + [5195] = {.lex_state = 237}, + [5196] = {.lex_state = 237}, [5197] = {.lex_state = 238}, [5198] = {.lex_state = 237}, [5199] = {.lex_state = 238}, - [5200] = {.lex_state = 238}, + [5200] = {.lex_state = 281}, [5201] = {.lex_state = 237}, - [5202] = {.lex_state = 237}, - [5203] = {.lex_state = 237}, + [5202] = {.lex_state = 281}, + [5203] = {.lex_state = 281}, [5204] = {.lex_state = 237}, [5205] = {.lex_state = 237}, - [5206] = {.lex_state = 237}, + [5206] = {.lex_state = 238}, [5207] = {.lex_state = 237}, - [5208] = {.lex_state = 237}, + [5208] = {.lex_state = 238}, [5209] = {.lex_state = 237}, [5210] = {.lex_state = 237}, [5211] = {.lex_state = 237}, @@ -72125,786 +72386,786 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5216] = {.lex_state = 238}, [5217] = {.lex_state = 237}, [5218] = {.lex_state = 237}, - [5219] = {.lex_state = 237}, - [5220] = {.lex_state = 238}, - [5221] = {.lex_state = 237}, - [5222] = {.lex_state = 237}, - [5223] = {.lex_state = 237}, + [5219] = {.lex_state = 238}, + [5220] = {.lex_state = 237}, + [5221] = {.lex_state = 238}, + [5222] = {.lex_state = 238}, + [5223] = {.lex_state = 385}, [5224] = {.lex_state = 237}, - [5225] = {.lex_state = 238}, + [5225] = {.lex_state = 237}, [5226] = {.lex_state = 238}, [5227] = {.lex_state = 238}, [5228] = {.lex_state = 237}, - [5229] = {.lex_state = 237}, - [5230] = {.lex_state = 254}, + [5229] = {.lex_state = 238}, + [5230] = {.lex_state = 237}, [5231] = {.lex_state = 237}, [5232] = {.lex_state = 237}, - [5233] = {.lex_state = 237}, - [5234] = {.lex_state = 238}, - [5235] = {.lex_state = 237}, - [5236] = {.lex_state = 237}, - [5237] = {.lex_state = 237}, - [5238] = {.lex_state = 237}, - [5239] = {.lex_state = 237}, - [5240] = {.lex_state = 237}, - [5241] = {.lex_state = 237}, + [5233] = {.lex_state = 238}, + [5234] = {.lex_state = 254}, + [5235] = {.lex_state = 238}, + [5236] = {.lex_state = 238}, + [5237] = {.lex_state = 238}, + [5238] = {.lex_state = 385}, + [5239] = {.lex_state = 387}, + [5240] = {.lex_state = 273}, + [5241] = {.lex_state = 385}, [5242] = {.lex_state = 237}, - [5243] = {.lex_state = 237}, + [5243] = {.lex_state = 387}, [5244] = {.lex_state = 237}, [5245] = {.lex_state = 237}, - [5246] = {.lex_state = 237}, - [5247] = {.lex_state = 273}, - [5248] = {.lex_state = 387}, - [5249] = {.lex_state = 273}, - [5250] = {.lex_state = 387}, - [5251] = {.lex_state = 281}, - [5252] = {.lex_state = 284}, - [5253] = {.lex_state = 281}, - [5254] = {.lex_state = 273}, - [5255] = {.lex_state = 284}, - [5256] = {.lex_state = 273}, - [5257] = {.lex_state = 281}, - [5258] = {.lex_state = 284}, - [5259] = {.lex_state = 387}, - [5260] = {.lex_state = 237}, - [5261] = {.lex_state = 284}, - [5262] = {.lex_state = 273}, - [5263] = {.lex_state = 273}, - [5264] = {.lex_state = 273}, - [5265] = {.lex_state = 273}, - [5266] = {.lex_state = 273}, - [5267] = {.lex_state = 273}, - [5268] = {.lex_state = 284}, - [5269] = {.lex_state = 273}, - [5270] = {.lex_state = 273}, - [5271] = {.lex_state = 273}, - [5272] = {.lex_state = 273}, - [5273] = {.lex_state = 273}, - [5274] = {.lex_state = 273}, - [5275] = {.lex_state = 273}, - [5276] = {.lex_state = 284}, - [5277] = {.lex_state = 284}, + [5246] = {.lex_state = 387}, + [5247] = {.lex_state = 237}, + [5248] = {.lex_state = 237}, + [5249] = {.lex_state = 238}, + [5250] = {.lex_state = 238}, + [5251] = {.lex_state = 237}, + [5252] = {.lex_state = 238}, + [5253] = {.lex_state = 238}, + [5254] = {.lex_state = 238}, + [5255] = {.lex_state = 238}, + [5256] = {.lex_state = 238}, + [5257] = {.lex_state = 237}, + [5258] = {.lex_state = 238}, + [5259] = {.lex_state = 237}, + [5260] = {.lex_state = 238}, + [5261] = {.lex_state = 237}, + [5262] = {.lex_state = 237}, + [5263] = {.lex_state = 238}, + [5264] = {.lex_state = 238}, + [5265] = {.lex_state = 254}, + [5266] = {.lex_state = 238}, + [5267] = {.lex_state = 237}, + [5268] = {.lex_state = 387}, + [5269] = {.lex_state = 387}, + [5270] = {.lex_state = 237}, + [5271] = {.lex_state = 238}, + [5272] = {.lex_state = 238}, + [5273] = {.lex_state = 238}, + [5274] = {.lex_state = 237}, + [5275] = {.lex_state = 237}, + [5276] = {.lex_state = 237}, + [5277] = {.lex_state = 273}, [5278] = {.lex_state = 273}, [5279] = {.lex_state = 273}, [5280] = {.lex_state = 273}, [5281] = {.lex_state = 273}, - [5282] = {.lex_state = 387}, + [5282] = {.lex_state = 284}, [5283] = {.lex_state = 273}, [5284] = {.lex_state = 284}, [5285] = {.lex_state = 273}, [5286] = {.lex_state = 273}, [5287] = {.lex_state = 273}, - [5288] = {.lex_state = 273}, - [5289] = {.lex_state = 273}, + [5288] = {.lex_state = 387}, + [5289] = {.lex_state = 281}, [5290] = {.lex_state = 273}, [5291] = {.lex_state = 273}, - [5292] = {.lex_state = 273}, + [5292] = {.lex_state = 237}, [5293] = {.lex_state = 273}, - [5294] = {.lex_state = 284}, - [5295] = {.lex_state = 387}, + [5294] = {.lex_state = 273}, + [5295] = {.lex_state = 273}, [5296] = {.lex_state = 273}, - [5297] = {.lex_state = 273}, - [5298] = {.lex_state = 273}, + [5297] = {.lex_state = 387}, + [5298] = {.lex_state = 387}, [5299] = {.lex_state = 273}, - [5300] = {.lex_state = 273}, + [5300] = {.lex_state = 284}, [5301] = {.lex_state = 273}, [5302] = {.lex_state = 273}, - [5303] = {.lex_state = 273}, + [5303] = {.lex_state = 387}, [5304] = {.lex_state = 273}, - [5305] = {.lex_state = 387}, - [5306] = {.lex_state = 387}, - [5307] = {.lex_state = 387}, - [5308] = {.lex_state = 387}, - [5309] = {.lex_state = 281}, - [5310] = {.lex_state = 281}, - [5311] = {.lex_state = 387}, - [5312] = {.lex_state = 281}, - [5313] = {.lex_state = 281}, - [5314] = {.lex_state = 387}, - [5315] = {.lex_state = 281}, + [5305] = {.lex_state = 273}, + [5306] = {.lex_state = 273}, + [5307] = {.lex_state = 281}, + [5308] = {.lex_state = 273}, + [5309] = {.lex_state = 273}, + [5310] = {.lex_state = 284}, + [5311] = {.lex_state = 284}, + [5312] = {.lex_state = 284}, + [5313] = {.lex_state = 273}, + [5314] = {.lex_state = 284}, + [5315] = {.lex_state = 273}, [5316] = {.lex_state = 281}, - [5317] = {.lex_state = 281}, - [5318] = {.lex_state = 281}, - [5319] = {.lex_state = 281}, - [5320] = {.lex_state = 281}, - [5321] = {.lex_state = 281}, - [5322] = {.lex_state = 281}, - [5323] = {.lex_state = 281}, - [5324] = {.lex_state = 281}, - [5325] = {.lex_state = 281}, - [5326] = {.lex_state = 281}, - [5327] = {.lex_state = 388}, - [5328] = {.lex_state = 281}, - [5329] = {.lex_state = 387}, - [5330] = {.lex_state = 281}, - [5331] = {.lex_state = 271}, - [5332] = {.lex_state = 281}, - [5333] = {.lex_state = 271}, - [5334] = {.lex_state = 281}, - [5335] = {.lex_state = 271}, + [5317] = {.lex_state = 273}, + [5318] = {.lex_state = 273}, + [5319] = {.lex_state = 273}, + [5320] = {.lex_state = 273}, + [5321] = {.lex_state = 273}, + [5322] = {.lex_state = 273}, + [5323] = {.lex_state = 284}, + [5324] = {.lex_state = 284}, + [5325] = {.lex_state = 273}, + [5326] = {.lex_state = 273}, + [5327] = {.lex_state = 273}, + [5328] = {.lex_state = 273}, + [5329] = {.lex_state = 273}, + [5330] = {.lex_state = 273}, + [5331] = {.lex_state = 273}, + [5332] = {.lex_state = 387}, + [5333] = {.lex_state = 273}, + [5334] = {.lex_state = 273}, + [5335] = {.lex_state = 281}, [5336] = {.lex_state = 387}, - [5337] = {.lex_state = 271}, - [5338] = {.lex_state = 237}, - [5339] = {.lex_state = 387}, - [5340] = {.lex_state = 281}, + [5337] = {.lex_state = 387}, + [5338] = {.lex_state = 281}, + [5339] = {.lex_state = 281}, + [5340] = {.lex_state = 237}, [5341] = {.lex_state = 281}, - [5342] = {.lex_state = 387}, - [5343] = {.lex_state = 387}, - [5344] = {.lex_state = 237}, - [5345] = {.lex_state = 388}, - [5346] = {.lex_state = 387}, + [5342] = {.lex_state = 281}, + [5343] = {.lex_state = 281}, + [5344] = {.lex_state = 281}, + [5345] = {.lex_state = 281}, + [5346] = {.lex_state = 281}, [5347] = {.lex_state = 281}, - [5348] = {.lex_state = 238}, - [5349] = {.lex_state = 284}, - [5350] = {.lex_state = 387}, + [5348] = {.lex_state = 281}, + [5349] = {.lex_state = 281}, + [5350] = {.lex_state = 281}, [5351] = {.lex_state = 281}, - [5352] = {.lex_state = 284}, - [5353] = {.lex_state = 388}, + [5352] = {.lex_state = 281}, + [5353] = {.lex_state = 281}, [5354] = {.lex_state = 387}, [5355] = {.lex_state = 281}, - [5356] = {.lex_state = 237}, - [5357] = {.lex_state = 387}, - [5358] = {.lex_state = 387}, - [5359] = {.lex_state = 284}, - [5360] = {.lex_state = 237}, - [5361] = {.lex_state = 388}, - [5362] = {.lex_state = 281}, - [5363] = {.lex_state = 387}, + [5356] = {.lex_state = 387}, + [5357] = {.lex_state = 271}, + [5358] = {.lex_state = 281}, + [5359] = {.lex_state = 387}, + [5360] = {.lex_state = 387}, + [5361] = {.lex_state = 387}, + [5362] = {.lex_state = 271}, + [5363] = {.lex_state = 281}, [5364] = {.lex_state = 387}, - [5365] = {.lex_state = 281}, - [5366] = {.lex_state = 237}, + [5365] = {.lex_state = 387}, + [5366] = {.lex_state = 271}, [5367] = {.lex_state = 387}, - [5368] = {.lex_state = 238}, - [5369] = {.lex_state = 284}, - [5370] = {.lex_state = 282}, - [5371] = {.lex_state = 387}, + [5368] = {.lex_state = 281}, + [5369] = {.lex_state = 271}, + [5370] = {.lex_state = 388}, + [5371] = {.lex_state = 281}, [5372] = {.lex_state = 387}, - [5373] = {.lex_state = 284}, - [5374] = {.lex_state = 387}, + [5373] = {.lex_state = 281}, + [5374] = {.lex_state = 237}, [5375] = {.lex_state = 281}, - [5376] = {.lex_state = 387}, + [5376] = {.lex_state = 284}, [5377] = {.lex_state = 281}, - [5378] = {.lex_state = 271}, - [5379] = {.lex_state = 281}, - [5380] = {.lex_state = 281}, - [5381] = {.lex_state = 387}, - [5382] = {.lex_state = 387}, - [5383] = {.lex_state = 284}, - [5384] = {.lex_state = 271}, - [5385] = {.lex_state = 237}, - [5386] = {.lex_state = 271}, - [5387] = {.lex_state = 387}, - [5388] = {.lex_state = 284}, - [5389] = {.lex_state = 387}, + [5378] = {.lex_state = 387}, + [5379] = {.lex_state = 237}, + [5380] = {.lex_state = 284}, + [5381] = {.lex_state = 238}, + [5382] = {.lex_state = 237}, + [5383] = {.lex_state = 387}, + [5384] = {.lex_state = 387}, + [5385] = {.lex_state = 387}, + [5386] = {.lex_state = 387}, + [5387] = {.lex_state = 281}, + [5388] = {.lex_state = 238}, + [5389] = {.lex_state = 284}, [5390] = {.lex_state = 387}, - [5391] = {.lex_state = 284}, - [5392] = {.lex_state = 387}, - [5393] = {.lex_state = 387}, - [5394] = {.lex_state = 387}, - [5395] = {.lex_state = 387}, - [5396] = {.lex_state = 281}, - [5397] = {.lex_state = 271}, - [5398] = {.lex_state = 284}, - [5399] = {.lex_state = 387}, - [5400] = {.lex_state = 281}, - [5401] = {.lex_state = 281}, + [5391] = {.lex_state = 387}, + [5392] = {.lex_state = 284}, + [5393] = {.lex_state = 388}, + [5394] = {.lex_state = 281}, + [5395] = {.lex_state = 388}, + [5396] = {.lex_state = 387}, + [5397] = {.lex_state = 282}, + [5398] = {.lex_state = 388}, + [5399] = {.lex_state = 281}, + [5400] = {.lex_state = 387}, + [5401] = {.lex_state = 237}, [5402] = {.lex_state = 387}, - [5403] = {.lex_state = 237}, - [5404] = {.lex_state = 387}, - [5405] = {.lex_state = 387}, - [5406] = {.lex_state = 387}, + [5403] = {.lex_state = 271}, + [5404] = {.lex_state = 284}, + [5405] = {.lex_state = 237}, + [5406] = {.lex_state = 281}, [5407] = {.lex_state = 387}, - [5408] = {.lex_state = 282}, - [5409] = {.lex_state = 282}, - [5410] = {.lex_state = 282}, - [5411] = {.lex_state = 282}, - [5412] = {.lex_state = 387}, - [5413] = {.lex_state = 284}, - [5414] = {.lex_state = 282}, - [5415] = {.lex_state = 230}, - [5416] = {.lex_state = 282}, + [5408] = {.lex_state = 271}, + [5409] = {.lex_state = 387}, + [5410] = {.lex_state = 387}, + [5411] = {.lex_state = 387}, + [5412] = {.lex_state = 284}, + [5413] = {.lex_state = 387}, + [5414] = {.lex_state = 387}, + [5415] = {.lex_state = 387}, + [5416] = {.lex_state = 281}, [5417] = {.lex_state = 281}, - [5418] = {.lex_state = 387}, - [5419] = {.lex_state = 387}, - [5420] = {.lex_state = 387}, - [5421] = {.lex_state = 387}, - [5422] = {.lex_state = 387}, - [5423] = {.lex_state = 387}, - [5424] = {.lex_state = 387}, - [5425] = {.lex_state = 282}, - [5426] = {.lex_state = 282}, + [5418] = {.lex_state = 271}, + [5419] = {.lex_state = 284}, + [5420] = {.lex_state = 281}, + [5421] = {.lex_state = 237}, + [5422] = {.lex_state = 284}, + [5423] = {.lex_state = 281}, + [5424] = {.lex_state = 281}, + [5425] = {.lex_state = 387}, + [5426] = {.lex_state = 387}, [5427] = {.lex_state = 387}, [5428] = {.lex_state = 387}, - [5429] = {.lex_state = 282}, - [5430] = {.lex_state = 282}, - [5431] = {.lex_state = 282}, - [5432] = {.lex_state = 387}, + [5429] = {.lex_state = 284}, + [5430] = {.lex_state = 387}, + [5431] = {.lex_state = 281}, + [5432] = {.lex_state = 271}, [5433] = {.lex_state = 387}, [5434] = {.lex_state = 387}, - [5435] = {.lex_state = 387}, + [5435] = {.lex_state = 282}, [5436] = {.lex_state = 387}, - [5437] = {.lex_state = 387}, + [5437] = {.lex_state = 282}, [5438] = {.lex_state = 387}, - [5439] = {.lex_state = 387}, - [5440] = {.lex_state = 282}, - [5441] = {.lex_state = 237}, - [5442] = {.lex_state = 387}, - [5443] = {.lex_state = 282}, - [5444] = {.lex_state = 284}, - [5445] = {.lex_state = 281}, - [5446] = {.lex_state = 387}, + [5439] = {.lex_state = 282}, + [5440] = {.lex_state = 387}, + [5441] = {.lex_state = 282}, + [5442] = {.lex_state = 282}, + [5443] = {.lex_state = 387}, + [5444] = {.lex_state = 282}, + [5445] = {.lex_state = 282}, + [5446] = {.lex_state = 282}, [5447] = {.lex_state = 387}, [5448] = {.lex_state = 387}, - [5449] = {.lex_state = 282}, + [5449] = {.lex_state = 387}, [5450] = {.lex_state = 387}, [5451] = {.lex_state = 387}, - [5452] = {.lex_state = 282}, - [5453] = {.lex_state = 387}, - [5454] = {.lex_state = 387}, + [5452] = {.lex_state = 387}, + [5453] = {.lex_state = 281}, + [5454] = {.lex_state = 284}, [5455] = {.lex_state = 387}, [5456] = {.lex_state = 387}, [5457] = {.lex_state = 387}, [5458] = {.lex_state = 387}, [5459] = {.lex_state = 387}, [5460] = {.lex_state = 387}, - [5461] = {.lex_state = 387}, - [5462] = {.lex_state = 387}, + [5461] = {.lex_state = 282}, + [5462] = {.lex_state = 282}, [5463] = {.lex_state = 387}, [5464] = {.lex_state = 282}, - [5465] = {.lex_state = 387}, + [5465] = {.lex_state = 284}, [5466] = {.lex_state = 387}, - [5467] = {.lex_state = 284}, + [5467] = {.lex_state = 282}, [5468] = {.lex_state = 387}, - [5469] = {.lex_state = 387}, - [5470] = {.lex_state = 282}, - [5471] = {.lex_state = 282}, - [5472] = {.lex_state = 282}, - [5473] = {.lex_state = 282}, + [5469] = {.lex_state = 230}, + [5470] = {.lex_state = 387}, + [5471] = {.lex_state = 387}, + [5472] = {.lex_state = 387}, + [5473] = {.lex_state = 387}, [5474] = {.lex_state = 387}, [5475] = {.lex_state = 387}, [5476] = {.lex_state = 282}, - [5477] = {.lex_state = 282}, + [5477] = {.lex_state = 387}, [5478] = {.lex_state = 387}, - [5479] = {.lex_state = 282}, - [5480] = {.lex_state = 281}, - [5481] = {.lex_state = 271}, - [5482] = {.lex_state = 271}, - [5483] = {.lex_state = 284}, - [5484] = {.lex_state = 273}, + [5479] = {.lex_state = 387}, + [5480] = {.lex_state = 282}, + [5481] = {.lex_state = 282}, + [5482] = {.lex_state = 282}, + [5483] = {.lex_state = 387}, + [5484] = {.lex_state = 387}, [5485] = {.lex_state = 237}, - [5486] = {.lex_state = 271}, - [5487] = {.lex_state = 282}, - [5488] = {.lex_state = 237}, - [5489] = {.lex_state = 281}, - [5490] = {.lex_state = 281}, - [5491] = {.lex_state = 271}, - [5492] = {.lex_state = 284}, - [5493] = {.lex_state = 284}, - [5494] = {.lex_state = 237}, - [5495] = {.lex_state = 237}, - [5496] = {.lex_state = 238}, - [5497] = {.lex_state = 237}, - [5498] = {.lex_state = 237}, + [5486] = {.lex_state = 387}, + [5487] = {.lex_state = 387}, + [5488] = {.lex_state = 387}, + [5489] = {.lex_state = 387}, + [5490] = {.lex_state = 282}, + [5491] = {.lex_state = 387}, + [5492] = {.lex_state = 282}, + [5493] = {.lex_state = 387}, + [5494] = {.lex_state = 281}, + [5495] = {.lex_state = 387}, + [5496] = {.lex_state = 387}, + [5497] = {.lex_state = 387}, + [5498] = {.lex_state = 282}, [5499] = {.lex_state = 387}, - [5500] = {.lex_state = 237}, - [5501] = {.lex_state = 281}, - [5502] = {.lex_state = 237}, - [5503] = {.lex_state = 281}, - [5504] = {.lex_state = 281}, - [5505] = {.lex_state = 281}, - [5506] = {.lex_state = 271}, - [5507] = {.lex_state = 284}, - [5508] = {.lex_state = 237}, - [5509] = {.lex_state = 237}, - [5510] = {.lex_state = 387}, - [5511] = {.lex_state = 284}, - [5512] = {.lex_state = 237}, - [5513] = {.lex_state = 387}, - [5514] = {.lex_state = 273}, - [5515] = {.lex_state = 238}, - [5516] = {.lex_state = 237}, - [5517] = {.lex_state = 281}, - [5518] = {.lex_state = 387}, + [5500] = {.lex_state = 282}, + [5501] = {.lex_state = 282}, + [5502] = {.lex_state = 282}, + [5503] = {.lex_state = 387}, + [5504] = {.lex_state = 387}, + [5505] = {.lex_state = 284}, + [5506] = {.lex_state = 387}, + [5507] = {.lex_state = 387}, + [5508] = {.lex_state = 387}, + [5509] = {.lex_state = 282}, + [5510] = {.lex_state = 281}, + [5511] = {.lex_state = 238}, + [5512] = {.lex_state = 387}, + [5513] = {.lex_state = 238}, + [5514] = {.lex_state = 238}, + [5515] = {.lex_state = 271}, + [5516] = {.lex_state = 238}, + [5517] = {.lex_state = 237}, + [5518] = {.lex_state = 237}, [5519] = {.lex_state = 281}, - [5520] = {.lex_state = 238}, - [5521] = {.lex_state = 238}, - [5522] = {.lex_state = 238}, + [5520] = {.lex_state = 237}, + [5521] = {.lex_state = 387}, + [5522] = {.lex_state = 387}, [5523] = {.lex_state = 281}, - [5524] = {.lex_state = 237}, - [5525] = {.lex_state = 237}, - [5526] = {.lex_state = 271}, + [5524] = {.lex_state = 281}, + [5525] = {.lex_state = 284}, + [5526] = {.lex_state = 237}, [5527] = {.lex_state = 284}, - [5528] = {.lex_state = 387}, - [5529] = {.lex_state = 284}, - [5530] = {.lex_state = 237}, - [5531] = {.lex_state = 237}, - [5532] = {.lex_state = 284}, - [5533] = {.lex_state = 281}, - [5534] = {.lex_state = 281}, + [5528] = {.lex_state = 271}, + [5529] = {.lex_state = 237}, + [5530] = {.lex_state = 281}, + [5531] = {.lex_state = 387}, + [5532] = {.lex_state = 281}, + [5533] = {.lex_state = 282}, + [5534] = {.lex_state = 282}, [5535] = {.lex_state = 238}, [5536] = {.lex_state = 281}, - [5537] = {.lex_state = 282}, - [5538] = {.lex_state = 237}, - [5539] = {.lex_state = 387}, - [5540] = {.lex_state = 238}, + [5537] = {.lex_state = 237}, + [5538] = {.lex_state = 387}, + [5539] = {.lex_state = 237}, + [5540] = {.lex_state = 284}, [5541] = {.lex_state = 387}, - [5542] = {.lex_state = 238}, + [5542] = {.lex_state = 281}, [5543] = {.lex_state = 387}, - [5544] = {.lex_state = 281}, - [5545] = {.lex_state = 282}, - [5546] = {.lex_state = 282}, - [5547] = {.lex_state = 282}, - [5548] = {.lex_state = 282}, - [5549] = {.lex_state = 282}, - [5550] = {.lex_state = 282}, - [5551] = {.lex_state = 237}, - [5552] = {.lex_state = 282}, - [5553] = {.lex_state = 282}, - [5554] = {.lex_state = 282}, - [5555] = {.lex_state = 281}, + [5544] = {.lex_state = 237}, + [5545] = {.lex_state = 281}, + [5546] = {.lex_state = 237}, + [5547] = {.lex_state = 281}, + [5548] = {.lex_state = 271}, + [5549] = {.lex_state = 281}, + [5550] = {.lex_state = 281}, + [5551] = {.lex_state = 284}, + [5552] = {.lex_state = 237}, + [5553] = {.lex_state = 273}, + [5554] = {.lex_state = 237}, + [5555] = {.lex_state = 271}, [5556] = {.lex_state = 387}, - [5557] = {.lex_state = 281}, - [5558] = {.lex_state = 281}, + [5557] = {.lex_state = 238}, + [5558] = {.lex_state = 284}, [5559] = {.lex_state = 281}, - [5560] = {.lex_state = 282}, - [5561] = {.lex_state = 387}, - [5562] = {.lex_state = 282}, - [5563] = {.lex_state = 282}, - [5564] = {.lex_state = 282}, - [5565] = {.lex_state = 282}, - [5566] = {.lex_state = 282}, - [5567] = {.lex_state = 282}, - [5568] = {.lex_state = 282}, - [5569] = {.lex_state = 226}, - [5570] = {.lex_state = 282}, - [5571] = {.lex_state = 281}, - [5572] = {.lex_state = 282}, - [5573] = {.lex_state = 282}, - [5574] = {.lex_state = 281}, - [5575] = {.lex_state = 237}, + [5560] = {.lex_state = 238}, + [5561] = {.lex_state = 271}, + [5562] = {.lex_state = 284}, + [5563] = {.lex_state = 281}, + [5564] = {.lex_state = 237}, + [5565] = {.lex_state = 237}, + [5566] = {.lex_state = 237}, + [5567] = {.lex_state = 237}, + [5568] = {.lex_state = 273}, + [5569] = {.lex_state = 284}, + [5570] = {.lex_state = 238}, + [5571] = {.lex_state = 271}, + [5572] = {.lex_state = 284}, + [5573] = {.lex_state = 237}, + [5574] = {.lex_state = 237}, + [5575] = {.lex_state = 282}, [5576] = {.lex_state = 282}, [5577] = {.lex_state = 282}, [5578] = {.lex_state = 282}, [5579] = {.lex_state = 282}, - [5580] = {.lex_state = 282}, + [5580] = {.lex_state = 281}, [5581] = {.lex_state = 282}, [5582] = {.lex_state = 282}, - [5583] = {.lex_state = 226}, - [5584] = {.lex_state = 387}, + [5583] = {.lex_state = 282}, + [5584] = {.lex_state = 282}, [5585] = {.lex_state = 282}, - [5586] = {.lex_state = 226}, - [5587] = {.lex_state = 281}, + [5586] = {.lex_state = 281}, + [5587] = {.lex_state = 282}, [5588] = {.lex_state = 282}, [5589] = {.lex_state = 282}, - [5590] = {.lex_state = 281}, + [5590] = {.lex_state = 282}, [5591] = {.lex_state = 282}, [5592] = {.lex_state = 282}, - [5593] = {.lex_state = 282}, - [5594] = {.lex_state = 281}, + [5593] = {.lex_state = 281}, + [5594] = {.lex_state = 282}, [5595] = {.lex_state = 282}, - [5596] = {.lex_state = 237}, + [5596] = {.lex_state = 226}, [5597] = {.lex_state = 282}, - [5598] = {.lex_state = 282}, + [5598] = {.lex_state = 281}, [5599] = {.lex_state = 282}, - [5600] = {.lex_state = 226}, + [5600] = {.lex_state = 282}, [5601] = {.lex_state = 282}, [5602] = {.lex_state = 282}, - [5603] = {.lex_state = 387}, - [5604] = {.lex_state = 282}, + [5603] = {.lex_state = 282}, + [5604] = {.lex_state = 226}, [5605] = {.lex_state = 282}, - [5606] = {.lex_state = 226}, - [5607] = {.lex_state = 282}, - [5608] = {.lex_state = 281}, - [5609] = {.lex_state = 237}, - [5610] = {.lex_state = 282}, + [5606] = {.lex_state = 282}, + [5607] = {.lex_state = 281}, + [5608] = {.lex_state = 282}, + [5609] = {.lex_state = 281}, + [5610] = {.lex_state = 281}, [5611] = {.lex_state = 282}, - [5612] = {.lex_state = 282}, + [5612] = {.lex_state = 226}, [5613] = {.lex_state = 282}, [5614] = {.lex_state = 282}, - [5615] = {.lex_state = 282}, - [5616] = {.lex_state = 281}, - [5617] = {.lex_state = 237}, - [5618] = {.lex_state = 282}, - [5619] = {.lex_state = 281}, + [5615] = {.lex_state = 281}, + [5616] = {.lex_state = 282}, + [5617] = {.lex_state = 281}, + [5618] = {.lex_state = 387}, + [5619] = {.lex_state = 226}, [5620] = {.lex_state = 282}, - [5621] = {.lex_state = 282}, - [5622] = {.lex_state = 281}, - [5623] = {.lex_state = 282}, - [5624] = {.lex_state = 282}, - [5625] = {.lex_state = 281}, + [5621] = {.lex_state = 237}, + [5622] = {.lex_state = 282}, + [5623] = {.lex_state = 387}, + [5624] = {.lex_state = 387}, + [5625] = {.lex_state = 237}, [5626] = {.lex_state = 282}, - [5627] = {.lex_state = 226}, + [5627] = {.lex_state = 282}, [5628] = {.lex_state = 282}, - [5629] = {.lex_state = 226}, + [5629] = {.lex_state = 282}, [5630] = {.lex_state = 282}, [5631] = {.lex_state = 282}, [5632] = {.lex_state = 226}, [5633] = {.lex_state = 282}, [5634] = {.lex_state = 282}, - [5635] = {.lex_state = 282}, + [5635] = {.lex_state = 281}, [5636] = {.lex_state = 282}, [5637] = {.lex_state = 282}, - [5638] = {.lex_state = 282}, + [5638] = {.lex_state = 281}, [5639] = {.lex_state = 282}, [5640] = {.lex_state = 282}, [5641] = {.lex_state = 282}, - [5642] = {.lex_state = 281}, + [5642] = {.lex_state = 282}, [5643] = {.lex_state = 282}, - [5644] = {.lex_state = 282}, - [5645] = {.lex_state = 281}, + [5644] = {.lex_state = 281}, + [5645] = {.lex_state = 282}, [5646] = {.lex_state = 282}, - [5647] = {.lex_state = 226}, - [5648] = {.lex_state = 226}, - [5649] = {.lex_state = 226}, - [5650] = {.lex_state = 284}, - [5651] = {.lex_state = 226}, + [5647] = {.lex_state = 387}, + [5648] = {.lex_state = 282}, + [5649] = {.lex_state = 282}, + [5650] = {.lex_state = 282}, + [5651] = {.lex_state = 282}, [5652] = {.lex_state = 226}, - [5653] = {.lex_state = 226}, - [5654] = {.lex_state = 226}, - [5655] = {.lex_state = 237}, - [5656] = {.lex_state = 226}, - [5657] = {.lex_state = 281}, - [5658] = {.lex_state = 237}, - [5659] = {.lex_state = 226}, + [5653] = {.lex_state = 282}, + [5654] = {.lex_state = 281}, + [5655] = {.lex_state = 281}, + [5656] = {.lex_state = 281}, + [5657] = {.lex_state = 282}, + [5658] = {.lex_state = 282}, + [5659] = {.lex_state = 282}, [5660] = {.lex_state = 282}, - [5661] = {.lex_state = 237}, - [5662] = {.lex_state = 226}, + [5661] = {.lex_state = 282}, + [5662] = {.lex_state = 237}, [5663] = {.lex_state = 226}, - [5664] = {.lex_state = 226}, - [5665] = {.lex_state = 226}, - [5666] = {.lex_state = 237}, - [5667] = {.lex_state = 226}, - [5668] = {.lex_state = 226}, - [5669] = {.lex_state = 226}, + [5664] = {.lex_state = 237}, + [5665] = {.lex_state = 282}, + [5666] = {.lex_state = 282}, + [5667] = {.lex_state = 282}, + [5668] = {.lex_state = 282}, + [5669] = {.lex_state = 282}, [5670] = {.lex_state = 226}, - [5671] = {.lex_state = 237}, - [5672] = {.lex_state = 281}, - [5673] = {.lex_state = 226}, - [5674] = {.lex_state = 226}, - [5675] = {.lex_state = 226}, - [5676] = {.lex_state = 237}, - [5677] = {.lex_state = 237}, - [5678] = {.lex_state = 281}, - [5679] = {.lex_state = 281}, + [5671] = {.lex_state = 282}, + [5672] = {.lex_state = 237}, + [5673] = {.lex_state = 281}, + [5674] = {.lex_state = 282}, + [5675] = {.lex_state = 282}, + [5676] = {.lex_state = 282}, + [5677] = {.lex_state = 226}, + [5678] = {.lex_state = 226}, + [5679] = {.lex_state = 237}, [5680] = {.lex_state = 226}, [5681] = {.lex_state = 226}, - [5682] = {.lex_state = 281}, - [5683] = {.lex_state = 281}, - [5684] = {.lex_state = 281}, - [5685] = {.lex_state = 281}, - [5686] = {.lex_state = 281}, - [5687] = {.lex_state = 281}, - [5688] = {.lex_state = 226}, - [5689] = {.lex_state = 281}, - [5690] = {.lex_state = 281}, - [5691] = {.lex_state = 281}, - [5692] = {.lex_state = 281}, - [5693] = {.lex_state = 237}, - [5694] = {.lex_state = 281}, - [5695] = {.lex_state = 226}, - [5696] = {.lex_state = 226}, - [5697] = {.lex_state = 282}, - [5698] = {.lex_state = 226}, + [5682] = {.lex_state = 226}, + [5683] = {.lex_state = 226}, + [5684] = {.lex_state = 226}, + [5685] = {.lex_state = 226}, + [5686] = {.lex_state = 226}, + [5687] = {.lex_state = 226}, + [5688] = {.lex_state = 237}, + [5689] = {.lex_state = 226}, + [5690] = {.lex_state = 237}, + [5691] = {.lex_state = 226}, + [5692] = {.lex_state = 226}, + [5693] = {.lex_state = 226}, + [5694] = {.lex_state = 387}, + [5695] = {.lex_state = 237}, + [5696] = {.lex_state = 387}, + [5697] = {.lex_state = 226}, + [5698] = {.lex_state = 237}, [5699] = {.lex_state = 226}, [5700] = {.lex_state = 226}, [5701] = {.lex_state = 226}, - [5702] = {.lex_state = 226}, - [5703] = {.lex_state = 226}, + [5702] = {.lex_state = 281}, + [5703] = {.lex_state = 282}, [5704] = {.lex_state = 226}, [5705] = {.lex_state = 226}, [5706] = {.lex_state = 226}, [5707] = {.lex_state = 226}, [5708] = {.lex_state = 226}, - [5709] = {.lex_state = 226}, - [5710] = {.lex_state = 281}, - [5711] = {.lex_state = 284}, - [5712] = {.lex_state = 281}, - [5713] = {.lex_state = 226}, - [5714] = {.lex_state = 284}, - [5715] = {.lex_state = 237}, - [5716] = {.lex_state = 226}, - [5717] = {.lex_state = 226}, + [5709] = {.lex_state = 237}, + [5710] = {.lex_state = 226}, + [5711] = {.lex_state = 237}, + [5712] = {.lex_state = 226}, + [5713] = {.lex_state = 237}, + [5714] = {.lex_state = 226}, + [5715] = {.lex_state = 281}, + [5716] = {.lex_state = 237}, + [5717] = {.lex_state = 281}, [5718] = {.lex_state = 226}, - [5719] = {.lex_state = 237}, - [5720] = {.lex_state = 237}, - [5721] = {.lex_state = 237}, + [5719] = {.lex_state = 226}, + [5720] = {.lex_state = 281}, + [5721] = {.lex_state = 281}, [5722] = {.lex_state = 226}, [5723] = {.lex_state = 226}, - [5724] = {.lex_state = 226}, - [5725] = {.lex_state = 387}, - [5726] = {.lex_state = 226}, - [5727] = {.lex_state = 226}, - [5728] = {.lex_state = 226}, + [5724] = {.lex_state = 281}, + [5725] = {.lex_state = 226}, + [5726] = {.lex_state = 281}, + [5727] = {.lex_state = 281}, + [5728] = {.lex_state = 237}, [5729] = {.lex_state = 226}, - [5730] = {.lex_state = 281}, + [5730] = {.lex_state = 230}, [5731] = {.lex_state = 226}, [5732] = {.lex_state = 226}, [5733] = {.lex_state = 226}, - [5734] = {.lex_state = 237}, - [5735] = {.lex_state = 237}, - [5736] = {.lex_state = 226}, - [5737] = {.lex_state = 226}, - [5738] = {.lex_state = 226}, + [5734] = {.lex_state = 226}, + [5735] = {.lex_state = 226}, + [5736] = {.lex_state = 281}, + [5737] = {.lex_state = 237}, + [5738] = {.lex_state = 281}, [5739] = {.lex_state = 226}, [5740] = {.lex_state = 281}, - [5741] = {.lex_state = 281}, - [5742] = {.lex_state = 281}, - [5743] = {.lex_state = 226}, - [5744] = {.lex_state = 226}, + [5741] = {.lex_state = 226}, + [5742] = {.lex_state = 230}, + [5743] = {.lex_state = 237}, + [5744] = {.lex_state = 281}, [5745] = {.lex_state = 226}, [5746] = {.lex_state = 281}, [5747] = {.lex_state = 226}, - [5748] = {.lex_state = 281}, + [5748] = {.lex_state = 226}, [5749] = {.lex_state = 226}, [5750] = {.lex_state = 226}, - [5751] = {.lex_state = 226}, + [5751] = {.lex_state = 281}, [5752] = {.lex_state = 226}, - [5753] = {.lex_state = 281}, - [5754] = {.lex_state = 237}, + [5753] = {.lex_state = 237}, + [5754] = {.lex_state = 226}, [5755] = {.lex_state = 226}, - [5756] = {.lex_state = 281}, - [5757] = {.lex_state = 281}, - [5758] = {.lex_state = 226}, - [5759] = {.lex_state = 237}, + [5756] = {.lex_state = 226}, + [5757] = {.lex_state = 226}, + [5758] = {.lex_state = 281}, + [5759] = {.lex_state = 281}, [5760] = {.lex_state = 226}, [5761] = {.lex_state = 226}, - [5762] = {.lex_state = 281}, + [5762] = {.lex_state = 226}, [5763] = {.lex_state = 226}, [5764] = {.lex_state = 226}, - [5765] = {.lex_state = 226}, - [5766] = {.lex_state = 226}, + [5765] = {.lex_state = 281}, + [5766] = {.lex_state = 281}, [5767] = {.lex_state = 226}, - [5768] = {.lex_state = 226}, + [5768] = {.lex_state = 281}, [5769] = {.lex_state = 226}, - [5770] = {.lex_state = 281}, - [5771] = {.lex_state = 237}, - [5772] = {.lex_state = 281}, - [5773] = {.lex_state = 281}, + [5770] = {.lex_state = 284}, + [5771] = {.lex_state = 226}, + [5772] = {.lex_state = 226}, + [5773] = {.lex_state = 226}, [5774] = {.lex_state = 226}, - [5775] = {.lex_state = 237}, + [5775] = {.lex_state = 226}, [5776] = {.lex_state = 237}, [5777] = {.lex_state = 226}, [5778] = {.lex_state = 281}, - [5779] = {.lex_state = 226}, - [5780] = {.lex_state = 226}, - [5781] = {.lex_state = 237}, + [5779] = {.lex_state = 281}, + [5780] = {.lex_state = 237}, + [5781] = {.lex_state = 226}, [5782] = {.lex_state = 226}, - [5783] = {.lex_state = 237}, + [5783] = {.lex_state = 284}, [5784] = {.lex_state = 226}, - [5785] = {.lex_state = 226}, - [5786] = {.lex_state = 230}, - [5787] = {.lex_state = 226}, - [5788] = {.lex_state = 226}, - [5789] = {.lex_state = 226}, + [5785] = {.lex_state = 281}, + [5786] = {.lex_state = 226}, + [5787] = {.lex_state = 281}, + [5788] = {.lex_state = 281}, + [5789] = {.lex_state = 237}, [5790] = {.lex_state = 237}, - [5791] = {.lex_state = 281}, + [5791] = {.lex_state = 284}, [5792] = {.lex_state = 226}, - [5793] = {.lex_state = 281}, - [5794] = {.lex_state = 237}, - [5795] = {.lex_state = 226}, - [5796] = {.lex_state = 284}, - [5797] = {.lex_state = 237}, - [5798] = {.lex_state = 237}, - [5799] = {.lex_state = 387}, - [5800] = {.lex_state = 230}, + [5793] = {.lex_state = 237}, + [5794] = {.lex_state = 281}, + [5795] = {.lex_state = 281}, + [5796] = {.lex_state = 282}, + [5797] = {.lex_state = 226}, + [5798] = {.lex_state = 226}, + [5799] = {.lex_state = 237}, + [5800] = {.lex_state = 226}, [5801] = {.lex_state = 226}, [5802] = {.lex_state = 226}, - [5803] = {.lex_state = 226}, - [5804] = {.lex_state = 226}, - [5805] = {.lex_state = 226}, - [5806] = {.lex_state = 226}, - [5807] = {.lex_state = 226}, - [5808] = {.lex_state = 238}, + [5803] = {.lex_state = 281}, + [5804] = {.lex_state = 237}, + [5805] = {.lex_state = 281}, + [5806] = {.lex_state = 281}, + [5807] = {.lex_state = 281}, + [5808] = {.lex_state = 281}, [5809] = {.lex_state = 226}, [5810] = {.lex_state = 226}, - [5811] = {.lex_state = 284}, - [5812] = {.lex_state = 226}, - [5813] = {.lex_state = 237}, - [5814] = {.lex_state = 284}, - [5815] = {.lex_state = 284}, - [5816] = {.lex_state = 238}, + [5811] = {.lex_state = 237}, + [5812] = {.lex_state = 237}, + [5813] = {.lex_state = 284}, + [5814] = {.lex_state = 237}, + [5815] = {.lex_state = 226}, + [5816] = {.lex_state = 226}, [5817] = {.lex_state = 226}, - [5818] = {.lex_state = 226}, - [5819] = {.lex_state = 226}, - [5820] = {.lex_state = 226}, + [5818] = {.lex_state = 281}, + [5819] = {.lex_state = 281}, + [5820] = {.lex_state = 237}, [5821] = {.lex_state = 226}, [5822] = {.lex_state = 226}, - [5823] = {.lex_state = 284}, + [5823] = {.lex_state = 226}, [5824] = {.lex_state = 226}, [5825] = {.lex_state = 226}, - [5826] = {.lex_state = 284}, - [5827] = {.lex_state = 284}, - [5828] = {.lex_state = 226}, + [5826] = {.lex_state = 226}, + [5827] = {.lex_state = 226}, + [5828] = {.lex_state = 237}, [5829] = {.lex_state = 226}, - [5830] = {.lex_state = 284}, + [5830] = {.lex_state = 226}, [5831] = {.lex_state = 226}, - [5832] = {.lex_state = 238}, - [5833] = {.lex_state = 238}, - [5834] = {.lex_state = 387}, - [5835] = {.lex_state = 233}, - [5836] = {.lex_state = 387}, - [5837] = {.lex_state = 387}, - [5838] = {.lex_state = 387}, - [5839] = {.lex_state = 387}, - [5840] = {.lex_state = 233}, - [5841] = {.lex_state = 282}, - [5842] = {.lex_state = 387}, - [5843] = {.lex_state = 233}, - [5844] = {.lex_state = 233}, - [5845] = {.lex_state = 233}, - [5846] = {.lex_state = 282}, - [5847] = {.lex_state = 233}, - [5848] = {.lex_state = 233}, - [5849] = {.lex_state = 233}, - [5850] = {.lex_state = 282}, - [5851] = {.lex_state = 387}, + [5832] = {.lex_state = 226}, + [5833] = {.lex_state = 237}, + [5834] = {.lex_state = 238}, + [5835] = {.lex_state = 284}, + [5836] = {.lex_state = 226}, + [5837] = {.lex_state = 284}, + [5838] = {.lex_state = 226}, + [5839] = {.lex_state = 238}, + [5840] = {.lex_state = 226}, + [5841] = {.lex_state = 226}, + [5842] = {.lex_state = 238}, + [5843] = {.lex_state = 226}, + [5844] = {.lex_state = 226}, + [5845] = {.lex_state = 226}, + [5846] = {.lex_state = 226}, + [5847] = {.lex_state = 226}, + [5848] = {.lex_state = 226}, + [5849] = {.lex_state = 284}, + [5850] = {.lex_state = 226}, + [5851] = {.lex_state = 226}, [5852] = {.lex_state = 284}, [5853] = {.lex_state = 284}, - [5854] = {.lex_state = 282}, - [5855] = {.lex_state = 282}, - [5856] = {.lex_state = 282}, - [5857] = {.lex_state = 284}, - [5858] = {.lex_state = 387}, - [5859] = {.lex_state = 282}, - [5860] = {.lex_state = 284}, - [5861] = {.lex_state = 387}, - [5862] = {.lex_state = 282}, - [5863] = {.lex_state = 387}, - [5864] = {.lex_state = 282}, - [5865] = {.lex_state = 282}, - [5866] = {.lex_state = 284}, - [5867] = {.lex_state = 284}, + [5854] = {.lex_state = 238}, + [5855] = {.lex_state = 226}, + [5856] = {.lex_state = 284}, + [5857] = {.lex_state = 226}, + [5858] = {.lex_state = 226}, + [5859] = {.lex_state = 284}, + [5860] = {.lex_state = 226}, + [5861] = {.lex_state = 226}, + [5862] = {.lex_state = 226}, + [5863] = {.lex_state = 226}, + [5864] = {.lex_state = 233}, + [5865] = {.lex_state = 387}, + [5866] = {.lex_state = 282}, + [5867] = {.lex_state = 233}, [5868] = {.lex_state = 387}, - [5869] = {.lex_state = 387}, + [5869] = {.lex_state = 282}, [5870] = {.lex_state = 387}, - [5871] = {.lex_state = 282}, + [5871] = {.lex_state = 233}, [5872] = {.lex_state = 387}, - [5873] = {.lex_state = 387}, - [5874] = {.lex_state = 284}, - [5875] = {.lex_state = 284}, - [5876] = {.lex_state = 284}, - [5877] = {.lex_state = 282}, - [5878] = {.lex_state = 282}, - [5879] = {.lex_state = 282}, - [5880] = {.lex_state = 387}, - [5881] = {.lex_state = 387}, + [5873] = {.lex_state = 233}, + [5874] = {.lex_state = 387}, + [5875] = {.lex_state = 282}, + [5876] = {.lex_state = 233}, + [5877] = {.lex_state = 387}, + [5878] = {.lex_state = 233}, + [5879] = {.lex_state = 233}, + [5880] = {.lex_state = 233}, + [5881] = {.lex_state = 282}, [5882] = {.lex_state = 282}, - [5883] = {.lex_state = 282}, + [5883] = {.lex_state = 284}, [5884] = {.lex_state = 284}, - [5885] = {.lex_state = 284}, + [5885] = {.lex_state = 282}, [5886] = {.lex_state = 387}, [5887] = {.lex_state = 284}, - [5888] = {.lex_state = 226}, + [5888] = {.lex_state = 284}, [5889] = {.lex_state = 282}, - [5890] = {.lex_state = 226}, - [5891] = {.lex_state = 282}, - [5892] = {.lex_state = 226}, - [5893] = {.lex_state = 386}, - [5894] = {.lex_state = 282}, - [5895] = {.lex_state = 226}, - [5896] = {.lex_state = 386}, - [5897] = {.lex_state = 226}, - [5898] = {.lex_state = 386}, - [5899] = {.lex_state = 386}, - [5900] = {.lex_state = 226}, - [5901] = {.lex_state = 226}, - [5902] = {.lex_state = 386}, - [5903] = {.lex_state = 282}, - [5904] = {.lex_state = 226}, - [5905] = {.lex_state = 226}, - [5906] = {.lex_state = 282}, - [5907] = {.lex_state = 386}, - [5908] = {.lex_state = 282}, - [5909] = {.lex_state = 386}, - [5910] = {.lex_state = 281}, - [5911] = {.lex_state = 386}, + [5890] = {.lex_state = 387}, + [5891] = {.lex_state = 284}, + [5892] = {.lex_state = 387}, + [5893] = {.lex_state = 387}, + [5894] = {.lex_state = 284}, + [5895] = {.lex_state = 282}, + [5896] = {.lex_state = 282}, + [5897] = {.lex_state = 282}, + [5898] = {.lex_state = 282}, + [5899] = {.lex_state = 387}, + [5900] = {.lex_state = 387}, + [5901] = {.lex_state = 387}, + [5902] = {.lex_state = 282}, + [5903] = {.lex_state = 284}, + [5904] = {.lex_state = 284}, + [5905] = {.lex_state = 387}, + [5906] = {.lex_state = 284}, + [5907] = {.lex_state = 282}, + [5908] = {.lex_state = 284}, + [5909] = {.lex_state = 282}, + [5910] = {.lex_state = 282}, + [5911] = {.lex_state = 284}, [5912] = {.lex_state = 282}, - [5913] = {.lex_state = 226}, - [5914] = {.lex_state = 282}, - [5915] = {.lex_state = 226}, - [5916] = {.lex_state = 282}, - [5917] = {.lex_state = 226}, - [5918] = {.lex_state = 282}, - [5919] = {.lex_state = 386}, - [5920] = {.lex_state = 282}, - [5921] = {.lex_state = 282}, - [5922] = {.lex_state = 284}, - [5923] = {.lex_state = 284}, - [5924] = {.lex_state = 387}, - [5925] = {.lex_state = 281}, - [5926] = {.lex_state = 284}, - [5927] = {.lex_state = 284}, - [5928] = {.lex_state = 284}, - [5929] = {.lex_state = 284}, - [5930] = {.lex_state = 284}, - [5931] = {.lex_state = 387}, + [5913] = {.lex_state = 284}, + [5914] = {.lex_state = 387}, + [5915] = {.lex_state = 387}, + [5916] = {.lex_state = 387}, + [5917] = {.lex_state = 387}, + [5918] = {.lex_state = 226}, + [5919] = {.lex_state = 282}, + [5920] = {.lex_state = 226}, + [5921] = {.lex_state = 386}, + [5922] = {.lex_state = 386}, + [5923] = {.lex_state = 226}, + [5924] = {.lex_state = 386}, + [5925] = {.lex_state = 226}, + [5926] = {.lex_state = 226}, + [5927] = {.lex_state = 386}, + [5928] = {.lex_state = 226}, + [5929] = {.lex_state = 386}, + [5930] = {.lex_state = 282}, + [5931] = {.lex_state = 282}, [5932] = {.lex_state = 282}, - [5933] = {.lex_state = 282}, + [5933] = {.lex_state = 226}, [5934] = {.lex_state = 282}, - [5935] = {.lex_state = 281}, - [5936] = {.lex_state = 238}, - [5937] = {.lex_state = 386}, - [5938] = {.lex_state = 271}, + [5935] = {.lex_state = 282}, + [5936] = {.lex_state = 226}, + [5937] = {.lex_state = 282}, + [5938] = {.lex_state = 282}, [5939] = {.lex_state = 386}, - [5940] = {.lex_state = 233}, + [5940] = {.lex_state = 226}, [5941] = {.lex_state = 386}, - [5942] = {.lex_state = 233}, + [5942] = {.lex_state = 226}, [5943] = {.lex_state = 386}, [5944] = {.lex_state = 386}, - [5945] = {.lex_state = 386}, - [5946] = {.lex_state = 386}, - [5947] = {.lex_state = 386}, - [5948] = {.lex_state = 387}, - [5949] = {.lex_state = 386}, - [5950] = {.lex_state = 386}, - [5951] = {.lex_state = 386}, + [5945] = {.lex_state = 226}, + [5946] = {.lex_state = 282}, + [5947] = {.lex_state = 282}, + [5948] = {.lex_state = 226}, + [5949] = {.lex_state = 281}, + [5950] = {.lex_state = 282}, + [5951] = {.lex_state = 282}, [5952] = {.lex_state = 284}, - [5953] = {.lex_state = 386}, - [5954] = {.lex_state = 233}, - [5955] = {.lex_state = 386}, + [5953] = {.lex_state = 284}, + [5954] = {.lex_state = 387}, + [5955] = {.lex_state = 281}, [5956] = {.lex_state = 284}, - [5957] = {.lex_state = 271}, - [5958] = {.lex_state = 386}, + [5957] = {.lex_state = 284}, + [5958] = {.lex_state = 282}, [5959] = {.lex_state = 387}, - [5960] = {.lex_state = 386}, - [5961] = {.lex_state = 386}, - [5962] = {.lex_state = 233}, - [5963] = {.lex_state = 386}, - [5964] = {.lex_state = 386}, - [5965] = {.lex_state = 233}, - [5966] = {.lex_state = 386}, - [5967] = {.lex_state = 233}, + [5960] = {.lex_state = 284}, + [5961] = {.lex_state = 284}, + [5962] = {.lex_state = 284}, + [5963] = {.lex_state = 282}, + [5964] = {.lex_state = 238}, + [5965] = {.lex_state = 281}, + [5966] = {.lex_state = 282}, + [5967] = {.lex_state = 386}, [5968] = {.lex_state = 233}, - [5969] = {.lex_state = 387}, - [5970] = {.lex_state = 284}, - [5971] = {.lex_state = 386}, + [5969] = {.lex_state = 386}, + [5970] = {.lex_state = 386}, + [5971] = {.lex_state = 233}, [5972] = {.lex_state = 386}, - [5973] = {.lex_state = 233}, - [5974] = {.lex_state = 386}, - [5975] = {.lex_state = 387}, + [5973] = {.lex_state = 386}, + [5974] = {.lex_state = 233}, + [5975] = {.lex_state = 386}, [5976] = {.lex_state = 386}, [5977] = {.lex_state = 386}, - [5978] = {.lex_state = 233}, - [5979] = {.lex_state = 251}, - [5980] = {.lex_state = 386}, + [5978] = {.lex_state = 386}, + [5979] = {.lex_state = 233}, + [5980] = {.lex_state = 387}, [5981] = {.lex_state = 233}, [5982] = {.lex_state = 386}, [5983] = {.lex_state = 386}, [5984] = {.lex_state = 386}, - [5985] = {.lex_state = 386}, + [5985] = {.lex_state = 233}, [5986] = {.lex_state = 233}, - [5987] = {.lex_state = 387}, - [5988] = {.lex_state = 271}, - [5989] = {.lex_state = 386}, - [5990] = {.lex_state = 386}, + [5987] = {.lex_state = 386}, + [5988] = {.lex_state = 233}, + [5989] = {.lex_state = 233}, + [5990] = {.lex_state = 271}, [5991] = {.lex_state = 386}, - [5992] = {.lex_state = 386}, - [5993] = {.lex_state = 233}, + [5992] = {.lex_state = 233}, + [5993] = {.lex_state = 387}, [5994] = {.lex_state = 386}, [5995] = {.lex_state = 386}, - [5996] = {.lex_state = 386}, - [5997] = {.lex_state = 386}, - [5998] = {.lex_state = 386}, + [5996] = {.lex_state = 233}, + [5997] = {.lex_state = 284}, + [5998] = {.lex_state = 233}, [5999] = {.lex_state = 386}, [6000] = {.lex_state = 386}, [6001] = {.lex_state = 386}, @@ -72912,36 +73173,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6003] = {.lex_state = 386}, [6004] = {.lex_state = 386}, [6005] = {.lex_state = 386}, - [6006] = {.lex_state = 226}, - [6007] = {.lex_state = 226}, - [6008] = {.lex_state = 226}, - [6009] = {.lex_state = 226}, - [6010] = {.lex_state = 226}, - [6011] = {.lex_state = 205}, - [6012] = {.lex_state = 226}, - [6013] = {.lex_state = 226}, - [6014] = {.lex_state = 226}, - [6015] = {.lex_state = 226}, - [6016] = {.lex_state = 226}, - [6017] = {.lex_state = 226}, - [6018] = {.lex_state = 226}, - [6019] = {.lex_state = 226}, - [6020] = {.lex_state = 251}, - [6021] = {.lex_state = 226}, - [6022] = {.lex_state = 226}, - [6023] = {.lex_state = 226}, - [6024] = {.lex_state = 226}, - [6025] = {.lex_state = 226}, - [6026] = {.lex_state = 226}, - [6027] = {.lex_state = 226}, - [6028] = {.lex_state = 226}, - [6029] = {.lex_state = 226}, + [6006] = {.lex_state = 284}, + [6007] = {.lex_state = 386}, + [6008] = {.lex_state = 387}, + [6009] = {.lex_state = 386}, + [6010] = {.lex_state = 386}, + [6011] = {.lex_state = 386}, + [6012] = {.lex_state = 251}, + [6013] = {.lex_state = 386}, + [6014] = {.lex_state = 386}, + [6015] = {.lex_state = 387}, + [6016] = {.lex_state = 386}, + [6017] = {.lex_state = 386}, + [6018] = {.lex_state = 387}, + [6019] = {.lex_state = 386}, + [6020] = {.lex_state = 386}, + [6021] = {.lex_state = 386}, + [6022] = {.lex_state = 386}, + [6023] = {.lex_state = 386}, + [6024] = {.lex_state = 386}, + [6025] = {.lex_state = 386}, + [6026] = {.lex_state = 386}, + [6027] = {.lex_state = 284}, + [6028] = {.lex_state = 386}, + [6029] = {.lex_state = 386}, [6030] = {.lex_state = 271}, - [6031] = {.lex_state = 226}, - [6032] = {.lex_state = 226}, - [6033] = {.lex_state = 226}, - [6034] = {.lex_state = 226}, - [6035] = {.lex_state = 226}, + [6031] = {.lex_state = 386}, + [6032] = {.lex_state = 386}, + [6033] = {.lex_state = 386}, + [6034] = {.lex_state = 386}, + [6035] = {.lex_state = 271}, [6036] = {.lex_state = 226}, [6037] = {.lex_state = 226}, [6038] = {.lex_state = 226}, @@ -72949,15 +73210,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6040] = {.lex_state = 226}, [6041] = {.lex_state = 226}, [6042] = {.lex_state = 226}, - [6043] = {.lex_state = 271}, + [6043] = {.lex_state = 226}, [6044] = {.lex_state = 226}, - [6045] = {.lex_state = 238}, + [6045] = {.lex_state = 226}, [6046] = {.lex_state = 226}, [6047] = {.lex_state = 226}, - [6048] = {.lex_state = 226}, + [6048] = {.lex_state = 109}, [6049] = {.lex_state = 226}, [6050] = {.lex_state = 226}, - [6051] = {.lex_state = 226}, + [6051] = {.lex_state = 238}, [6052] = {.lex_state = 226}, [6053] = {.lex_state = 226}, [6054] = {.lex_state = 226}, @@ -72965,7 +73226,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6056] = {.lex_state = 226}, [6057] = {.lex_state = 226}, [6058] = {.lex_state = 226}, - [6059] = {.lex_state = 205}, + [6059] = {.lex_state = 226}, [6060] = {.lex_state = 226}, [6061] = {.lex_state = 226}, [6062] = {.lex_state = 226}, @@ -72981,30 +73242,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6072] = {.lex_state = 226}, [6073] = {.lex_state = 226}, [6074] = {.lex_state = 226}, - [6075] = {.lex_state = 226}, + [6075] = {.lex_state = 251}, [6076] = {.lex_state = 226}, [6077] = {.lex_state = 226}, [6078] = {.lex_state = 226}, - [6079] = {.lex_state = 387}, + [6079] = {.lex_state = 226}, [6080] = {.lex_state = 226}, [6081] = {.lex_state = 226}, [6082] = {.lex_state = 226}, - [6083] = {.lex_state = 226}, + [6083] = {.lex_state = 271}, [6084] = {.lex_state = 226}, [6085] = {.lex_state = 226}, [6086] = {.lex_state = 226}, - [6087] = {.lex_state = 226}, + [6087] = {.lex_state = 271}, [6088] = {.lex_state = 226}, [6089] = {.lex_state = 226}, [6090] = {.lex_state = 226}, - [6091] = {.lex_state = 226}, - [6092] = {.lex_state = 226}, - [6093] = {.lex_state = 111}, + [6091] = {.lex_state = 205}, + [6092] = {.lex_state = 205}, + [6093] = {.lex_state = 387}, [6094] = {.lex_state = 226}, [6095] = {.lex_state = 226}, [6096] = {.lex_state = 226}, - [6097] = {.lex_state = 251}, - [6098] = {.lex_state = 226}, + [6097] = {.lex_state = 226}, + [6098] = {.lex_state = 205}, [6099] = {.lex_state = 226}, [6100] = {.lex_state = 226}, [6101] = {.lex_state = 226}, @@ -73012,7 +73273,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6103] = {.lex_state = 226}, [6104] = {.lex_state = 226}, [6105] = {.lex_state = 226}, - [6106] = {.lex_state = 205}, + [6106] = {.lex_state = 226}, [6107] = {.lex_state = 226}, [6108] = {.lex_state = 226}, [6109] = {.lex_state = 226}, @@ -73021,2061 +73282,2061 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6112] = {.lex_state = 226}, [6113] = {.lex_state = 226}, [6114] = {.lex_state = 226}, - [6115] = {.lex_state = 251}, + [6115] = {.lex_state = 226}, [6116] = {.lex_state = 226}, - [6117] = {.lex_state = 251}, - [6118] = {.lex_state = 284}, - [6119] = {.lex_state = 251}, - [6120] = {.lex_state = 284}, - [6121] = {.lex_state = 251}, - [6122] = {.lex_state = 205}, - [6123] = {.lex_state = 387}, - [6124] = {.lex_state = 271}, - [6125] = {.lex_state = 251}, - [6126] = {.lex_state = 205}, - [6127] = {.lex_state = 205}, - [6128] = {.lex_state = 205}, - [6129] = {.lex_state = 205}, - [6130] = {.lex_state = 205}, - [6131] = {.lex_state = 387}, - [6132] = {.lex_state = 205}, - [6133] = {.lex_state = 205}, - [6134] = {.lex_state = 205}, - [6135] = {.lex_state = 205}, - [6136] = {.lex_state = 284}, - [6137] = {.lex_state = 205}, - [6138] = {.lex_state = 205}, - [6139] = {.lex_state = 271}, - [6140] = {.lex_state = 251}, - [6141] = {.lex_state = 284}, - [6142] = {.lex_state = 205}, - [6143] = {.lex_state = 205}, - [6144] = {.lex_state = 251}, - [6145] = {.lex_state = 205}, - [6146] = {.lex_state = 271}, - [6147] = {.lex_state = 271}, - [6148] = {.lex_state = 205}, + [6117] = {.lex_state = 226}, + [6118] = {.lex_state = 226}, + [6119] = {.lex_state = 226}, + [6120] = {.lex_state = 226}, + [6121] = {.lex_state = 226}, + [6122] = {.lex_state = 226}, + [6123] = {.lex_state = 226}, + [6124] = {.lex_state = 226}, + [6125] = {.lex_state = 226}, + [6126] = {.lex_state = 226}, + [6127] = {.lex_state = 226}, + [6128] = {.lex_state = 226}, + [6129] = {.lex_state = 226}, + [6130] = {.lex_state = 251}, + [6131] = {.lex_state = 226}, + [6132] = {.lex_state = 226}, + [6133] = {.lex_state = 251}, + [6134] = {.lex_state = 226}, + [6135] = {.lex_state = 226}, + [6136] = {.lex_state = 226}, + [6137] = {.lex_state = 226}, + [6138] = {.lex_state = 226}, + [6139] = {.lex_state = 226}, + [6140] = {.lex_state = 226}, + [6141] = {.lex_state = 226}, + [6142] = {.lex_state = 226}, + [6143] = {.lex_state = 226}, + [6144] = {.lex_state = 226}, + [6145] = {.lex_state = 226}, + [6146] = {.lex_state = 226}, + [6147] = {.lex_state = 205}, + [6148] = {.lex_state = 251}, [6149] = {.lex_state = 205}, - [6150] = {.lex_state = 271}, + [6150] = {.lex_state = 205}, [6151] = {.lex_state = 205}, - [6152] = {.lex_state = 271}, + [6152] = {.lex_state = 205}, [6153] = {.lex_state = 205}, - [6154] = {.lex_state = 271}, + [6154] = {.lex_state = 205}, [6155] = {.lex_state = 205}, - [6156] = {.lex_state = 284}, + [6156] = {.lex_state = 205}, [6157] = {.lex_state = 271}, - [6158] = {.lex_state = 205}, + [6158] = {.lex_state = 251}, [6159] = {.lex_state = 284}, [6160] = {.lex_state = 205}, - [6161] = {.lex_state = 284}, - [6162] = {.lex_state = 237}, + [6161] = {.lex_state = 387}, + [6162] = {.lex_state = 387}, [6163] = {.lex_state = 205}, [6164] = {.lex_state = 205}, - [6165] = {.lex_state = 251}, + [6165] = {.lex_state = 205}, [6166] = {.lex_state = 205}, - [6167] = {.lex_state = 284}, - [6168] = {.lex_state = 205}, - [6169] = {.lex_state = 271}, - [6170] = {.lex_state = 271}, - [6171] = {.lex_state = 271}, - [6172] = {.lex_state = 251}, + [6167] = {.lex_state = 205}, + [6168] = {.lex_state = 251}, + [6169] = {.lex_state = 251}, + [6170] = {.lex_state = 251}, + [6171] = {.lex_state = 251}, + [6172] = {.lex_state = 284}, [6173] = {.lex_state = 271}, [6174] = {.lex_state = 205}, - [6175] = {.lex_state = 251}, - [6176] = {.lex_state = 251}, - [6177] = {.lex_state = 205}, - [6178] = {.lex_state = 205}, - [6179] = {.lex_state = 205}, - [6180] = {.lex_state = 284}, + [6175] = {.lex_state = 205}, + [6176] = {.lex_state = 205}, + [6177] = {.lex_state = 284}, + [6178] = {.lex_state = 284}, + [6179] = {.lex_state = 271}, + [6180] = {.lex_state = 251}, [6181] = {.lex_state = 205}, [6182] = {.lex_state = 205}, [6183] = {.lex_state = 251}, - [6184] = {.lex_state = 205}, + [6184] = {.lex_state = 271}, [6185] = {.lex_state = 205}, [6186] = {.lex_state = 205}, - [6187] = {.lex_state = 251}, + [6187] = {.lex_state = 205}, [6188] = {.lex_state = 271}, [6189] = {.lex_state = 251}, [6190] = {.lex_state = 251}, - [6191] = {.lex_state = 251}, - [6192] = {.lex_state = 251}, - [6193] = {.lex_state = 205}, - [6194] = {.lex_state = 251}, - [6195] = {.lex_state = 271}, - [6196] = {.lex_state = 271}, - [6197] = {.lex_state = 271}, - [6198] = {.lex_state = 251}, - [6199] = {.lex_state = 271}, - [6200] = {.lex_state = 205}, - [6201] = {.lex_state = 205}, - [6202] = {.lex_state = 251}, - [6203] = {.lex_state = 251}, + [6191] = {.lex_state = 271}, + [6192] = {.lex_state = 205}, + [6193] = {.lex_state = 271}, + [6194] = {.lex_state = 205}, + [6195] = {.lex_state = 284}, + [6196] = {.lex_state = 251}, + [6197] = {.lex_state = 284}, + [6198] = {.lex_state = 205}, + [6199] = {.lex_state = 205}, + [6200] = {.lex_state = 251}, + [6201] = {.lex_state = 251}, + [6202] = {.lex_state = 205}, + [6203] = {.lex_state = 205}, [6204] = {.lex_state = 205}, - [6205] = {.lex_state = 205}, + [6205] = {.lex_state = 271}, [6206] = {.lex_state = 205}, [6207] = {.lex_state = 271}, - [6208] = {.lex_state = 387}, - [6209] = {.lex_state = 111}, - [6210] = {.lex_state = 387}, - [6211] = {.lex_state = 387}, - [6212] = {.lex_state = 111}, - [6213] = {.lex_state = 111}, - [6214] = {.lex_state = 111}, - [6215] = {.lex_state = 387}, - [6216] = {.lex_state = 387}, - [6217] = {.lex_state = 111}, - [6218] = {.lex_state = 387}, - [6219] = {.lex_state = 387}, - [6220] = {.lex_state = 387}, - [6221] = {.lex_state = 111}, - [6222] = {.lex_state = 111}, - [6223] = {.lex_state = 111}, - [6224] = {.lex_state = 111}, - [6225] = {.lex_state = 111}, - [6226] = {.lex_state = 387}, - [6227] = {.lex_state = 271}, - [6228] = {.lex_state = 271}, - [6229] = {.lex_state = 387}, + [6208] = {.lex_state = 205}, + [6209] = {.lex_state = 284}, + [6210] = {.lex_state = 271}, + [6211] = {.lex_state = 251}, + [6212] = {.lex_state = 205}, + [6213] = {.lex_state = 205}, + [6214] = {.lex_state = 271}, + [6215] = {.lex_state = 271}, + [6216] = {.lex_state = 205}, + [6217] = {.lex_state = 271}, + [6218] = {.lex_state = 205}, + [6219] = {.lex_state = 205}, + [6220] = {.lex_state = 205}, + [6221] = {.lex_state = 271}, + [6222] = {.lex_state = 251}, + [6223] = {.lex_state = 251}, + [6224] = {.lex_state = 251}, + [6225] = {.lex_state = 251}, + [6226] = {.lex_state = 251}, + [6227] = {.lex_state = 205}, + [6228] = {.lex_state = 284}, + [6229] = {.lex_state = 205}, [6230] = {.lex_state = 251}, - [6231] = {.lex_state = 387}, - [6232] = {.lex_state = 387}, - [6233] = {.lex_state = 284}, - [6234] = {.lex_state = 284}, - [6235] = {.lex_state = 387}, - [6236] = {.lex_state = 284}, - [6237] = {.lex_state = 387}, - [6238] = {.lex_state = 387}, + [6231] = {.lex_state = 237}, + [6232] = {.lex_state = 271}, + [6233] = {.lex_state = 271}, + [6234] = {.lex_state = 271}, + [6235] = {.lex_state = 284}, + [6236] = {.lex_state = 271}, + [6237] = {.lex_state = 205}, + [6238] = {.lex_state = 271}, [6239] = {.lex_state = 387}, - [6240] = {.lex_state = 284}, - [6241] = {.lex_state = 387}, + [6240] = {.lex_state = 387}, + [6241] = {.lex_state = 109}, [6242] = {.lex_state = 387}, [6243] = {.lex_state = 387}, - [6244] = {.lex_state = 111}, - [6245] = {.lex_state = 387}, - [6246] = {.lex_state = 111}, + [6244] = {.lex_state = 109}, + [6245] = {.lex_state = 109}, + [6246] = {.lex_state = 109}, [6247] = {.lex_state = 387}, - [6248] = {.lex_state = 111}, + [6248] = {.lex_state = 109}, [6249] = {.lex_state = 387}, - [6250] = {.lex_state = 387}, - [6251] = {.lex_state = 111}, - [6252] = {.lex_state = 284}, - [6253] = {.lex_state = 387}, + [6250] = {.lex_state = 251}, + [6251] = {.lex_state = 109}, + [6252] = {.lex_state = 109}, + [6253] = {.lex_state = 109}, [6254] = {.lex_state = 387}, - [6255] = {.lex_state = 226}, - [6256] = {.lex_state = 387}, - [6257] = {.lex_state = 111}, + [6255] = {.lex_state = 109}, + [6256] = {.lex_state = 251}, + [6257] = {.lex_state = 387}, [6258] = {.lex_state = 387}, - [6259] = {.lex_state = 111}, + [6259] = {.lex_state = 109}, [6260] = {.lex_state = 387}, - [6261] = {.lex_state = 111}, - [6262] = {.lex_state = 111}, - [6263] = {.lex_state = 271}, + [6261] = {.lex_state = 387}, + [6262] = {.lex_state = 387}, + [6263] = {.lex_state = 284}, [6264] = {.lex_state = 387}, - [6265] = {.lex_state = 111}, - [6266] = {.lex_state = 111}, - [6267] = {.lex_state = 387}, - [6268] = {.lex_state = 284}, - [6269] = {.lex_state = 111}, - [6270] = {.lex_state = 284}, - [6271] = {.lex_state = 284}, - [6272] = {.lex_state = 111}, + [6265] = {.lex_state = 109}, + [6266] = {.lex_state = 387}, + [6267] = {.lex_state = 109}, + [6268] = {.lex_state = 387}, + [6269] = {.lex_state = 109}, + [6270] = {.lex_state = 387}, + [6271] = {.lex_state = 109}, + [6272] = {.lex_state = 387}, [6273] = {.lex_state = 387}, - [6274] = {.lex_state = 271}, - [6275] = {.lex_state = 111}, - [6276] = {.lex_state = 226}, + [6274] = {.lex_state = 387}, + [6275] = {.lex_state = 387}, + [6276] = {.lex_state = 387}, [6277] = {.lex_state = 387}, - [6278] = {.lex_state = 284}, - [6279] = {.lex_state = 111}, + [6278] = {.lex_state = 387}, + [6279] = {.lex_state = 284}, [6280] = {.lex_state = 387}, - [6281] = {.lex_state = 284}, - [6282] = {.lex_state = 387}, + [6281] = {.lex_state = 387}, + [6282] = {.lex_state = 284}, [6283] = {.lex_state = 387}, - [6284] = {.lex_state = 284}, - [6285] = {.lex_state = 284}, - [6286] = {.lex_state = 284}, - [6287] = {.lex_state = 111}, - [6288] = {.lex_state = 226}, + [6284] = {.lex_state = 387}, + [6285] = {.lex_state = 387}, + [6286] = {.lex_state = 387}, + [6287] = {.lex_state = 109}, + [6288] = {.lex_state = 387}, [6289] = {.lex_state = 387}, [6290] = {.lex_state = 387}, [6291] = {.lex_state = 387}, - [6292] = {.lex_state = 111}, - [6293] = {.lex_state = 284}, - [6294] = {.lex_state = 387}, - [6295] = {.lex_state = 111}, - [6296] = {.lex_state = 387}, - [6297] = {.lex_state = 387}, - [6298] = {.lex_state = 111}, - [6299] = {.lex_state = 387}, - [6300] = {.lex_state = 284}, - [6301] = {.lex_state = 284}, - [6302] = {.lex_state = 284}, + [6292] = {.lex_state = 387}, + [6293] = {.lex_state = 109}, + [6294] = {.lex_state = 284}, + [6295] = {.lex_state = 284}, + [6296] = {.lex_state = 109}, + [6297] = {.lex_state = 271}, + [6298] = {.lex_state = 387}, + [6299] = {.lex_state = 226}, + [6300] = {.lex_state = 109}, + [6301] = {.lex_state = 109}, + [6302] = {.lex_state = 109}, [6303] = {.lex_state = 284}, - [6304] = {.lex_state = 284}, + [6304] = {.lex_state = 387}, [6305] = {.lex_state = 284}, - [6306] = {.lex_state = 387}, - [6307] = {.lex_state = 111}, - [6308] = {.lex_state = 226}, - [6309] = {.lex_state = 271}, - [6310] = {.lex_state = 387}, - [6311] = {.lex_state = 387}, - [6312] = {.lex_state = 281}, + [6306] = {.lex_state = 109}, + [6307] = {.lex_state = 387}, + [6308] = {.lex_state = 109}, + [6309] = {.lex_state = 387}, + [6310] = {.lex_state = 109}, + [6311] = {.lex_state = 226}, + [6312] = {.lex_state = 284}, [6313] = {.lex_state = 387}, - [6314] = {.lex_state = 284}, - [6315] = {.lex_state = 387}, + [6314] = {.lex_state = 387}, + [6315] = {.lex_state = 109}, [6316] = {.lex_state = 387}, - [6317] = {.lex_state = 271}, - [6318] = {.lex_state = 111}, - [6319] = {.lex_state = 111}, - [6320] = {.lex_state = 251}, - [6321] = {.lex_state = 387}, - [6322] = {.lex_state = 111}, - [6323] = {.lex_state = 284}, - [6324] = {.lex_state = 111}, + [6317] = {.lex_state = 387}, + [6318] = {.lex_state = 284}, + [6319] = {.lex_state = 109}, + [6320] = {.lex_state = 109}, + [6321] = {.lex_state = 226}, + [6322] = {.lex_state = 281}, + [6323] = {.lex_state = 109}, + [6324] = {.lex_state = 109}, [6325] = {.lex_state = 387}, - [6326] = {.lex_state = 387}, - [6327] = {.lex_state = 387}, - [6328] = {.lex_state = 111}, - [6329] = {.lex_state = 387}, - [6330] = {.lex_state = 284}, - [6331] = {.lex_state = 111}, - [6332] = {.lex_state = 387}, - [6333] = {.lex_state = 387}, - [6334] = {.lex_state = 281}, - [6335] = {.lex_state = 281}, - [6336] = {.lex_state = 387}, - [6337] = {.lex_state = 281}, - [6338] = {.lex_state = 281}, + [6326] = {.lex_state = 109}, + [6327] = {.lex_state = 284}, + [6328] = {.lex_state = 284}, + [6329] = {.lex_state = 109}, + [6330] = {.lex_state = 387}, + [6331] = {.lex_state = 387}, + [6332] = {.lex_state = 271}, + [6333] = {.lex_state = 284}, + [6334] = {.lex_state = 109}, + [6335] = {.lex_state = 284}, + [6336] = {.lex_state = 284}, + [6337] = {.lex_state = 284}, + [6338] = {.lex_state = 284}, [6339] = {.lex_state = 387}, - [6340] = {.lex_state = 281}, - [6341] = {.lex_state = 281}, - [6342] = {.lex_state = 281}, - [6343] = {.lex_state = 281}, + [6340] = {.lex_state = 109}, + [6341] = {.lex_state = 284}, + [6342] = {.lex_state = 284}, + [6343] = {.lex_state = 284}, [6344] = {.lex_state = 387}, - [6345] = {.lex_state = 387}, + [6345] = {.lex_state = 284}, [6346] = {.lex_state = 387}, - [6347] = {.lex_state = 387}, - [6348] = {.lex_state = 282}, - [6349] = {.lex_state = 203}, - [6350] = {.lex_state = 282}, - [6351] = {.lex_state = 203}, - [6352] = {.lex_state = 203}, + [6347] = {.lex_state = 226}, + [6348] = {.lex_state = 271}, + [6349] = {.lex_state = 109}, + [6350] = {.lex_state = 284}, + [6351] = {.lex_state = 387}, + [6352] = {.lex_state = 387}, [6353] = {.lex_state = 387}, - [6354] = {.lex_state = 237}, - [6355] = {.lex_state = 203}, - [6356] = {.lex_state = 237}, - [6357] = {.lex_state = 282}, - [6358] = {.lex_state = 282}, - [6359] = {.lex_state = 237}, - [6360] = {.lex_state = 282}, - [6361] = {.lex_state = 203}, - [6362] = {.lex_state = 237}, + [6354] = {.lex_state = 271}, + [6355] = {.lex_state = 109}, + [6356] = {.lex_state = 387}, + [6357] = {.lex_state = 284}, + [6358] = {.lex_state = 109}, + [6359] = {.lex_state = 271}, + [6360] = {.lex_state = 387}, + [6361] = {.lex_state = 284}, + [6362] = {.lex_state = 387}, [6363] = {.lex_state = 387}, [6364] = {.lex_state = 387}, [6365] = {.lex_state = 387}, - [6366] = {.lex_state = 284}, - [6367] = {.lex_state = 284}, - [6368] = {.lex_state = 284}, + [6366] = {.lex_state = 281}, + [6367] = {.lex_state = 281}, + [6368] = {.lex_state = 281}, [6369] = {.lex_state = 281}, - [6370] = {.lex_state = 237}, - [6371] = {.lex_state = 284}, - [6372] = {.lex_state = 237}, - [6373] = {.lex_state = 284}, - [6374] = {.lex_state = 284}, - [6375] = {.lex_state = 284}, - [6376] = {.lex_state = 284}, - [6377] = {.lex_state = 387}, - [6378] = {.lex_state = 387}, + [6370] = {.lex_state = 281}, + [6371] = {.lex_state = 387}, + [6372] = {.lex_state = 281}, + [6373] = {.lex_state = 387}, + [6374] = {.lex_state = 281}, + [6375] = {.lex_state = 281}, + [6376] = {.lex_state = 387}, + [6377] = {.lex_state = 282}, + [6378] = {.lex_state = 203}, [6379] = {.lex_state = 271}, - [6380] = {.lex_state = 282}, - [6381] = {.lex_state = 282}, - [6382] = {.lex_state = 387}, + [6380] = {.lex_state = 203}, + [6381] = {.lex_state = 387}, + [6382] = {.lex_state = 282}, [6383] = {.lex_state = 387}, - [6384] = {.lex_state = 271}, - [6385] = {.lex_state = 284}, - [6386] = {.lex_state = 271}, + [6384] = {.lex_state = 387}, + [6385] = {.lex_state = 387}, + [6386] = {.lex_state = 203}, [6387] = {.lex_state = 387}, - [6388] = {.lex_state = 387}, - [6389] = {.lex_state = 387}, - [6390] = {.lex_state = 281}, - [6391] = {.lex_state = 387}, - [6392] = {.lex_state = 282}, - [6393] = {.lex_state = 237}, - [6394] = {.lex_state = 237}, - [6395] = {.lex_state = 238}, - [6396] = {.lex_state = 203}, - [6397] = {.lex_state = 387}, - [6398] = {.lex_state = 282}, - [6399] = {.lex_state = 387}, - [6400] = {.lex_state = 387}, + [6388] = {.lex_state = 284}, + [6389] = {.lex_state = 284}, + [6390] = {.lex_state = 387}, + [6391] = {.lex_state = 237}, + [6392] = {.lex_state = 387}, + [6393] = {.lex_state = 284}, + [6394] = {.lex_state = 282}, + [6395] = {.lex_state = 282}, + [6396] = {.lex_state = 282}, + [6397] = {.lex_state = 282}, + [6398] = {.lex_state = 237}, + [6399] = {.lex_state = 271}, + [6400] = {.lex_state = 237}, [6401] = {.lex_state = 282}, - [6402] = {.lex_state = 271}, - [6403] = {.lex_state = 282}, - [6404] = {.lex_state = 282}, - [6405] = {.lex_state = 387}, - [6406] = {.lex_state = 282}, - [6407] = {.lex_state = 387}, - [6408] = {.lex_state = 203}, - [6409] = {.lex_state = 282}, - [6410] = {.lex_state = 282}, - [6411] = {.lex_state = 282}, + [6402] = {.lex_state = 237}, + [6403] = {.lex_state = 203}, + [6404] = {.lex_state = 281}, + [6405] = {.lex_state = 284}, + [6406] = {.lex_state = 203}, + [6407] = {.lex_state = 284}, + [6408] = {.lex_state = 284}, + [6409] = {.lex_state = 387}, + [6410] = {.lex_state = 387}, + [6411] = {.lex_state = 203}, [6412] = {.lex_state = 387}, - [6413] = {.lex_state = 282}, - [6414] = {.lex_state = 237}, - [6415] = {.lex_state = 237}, - [6416] = {.lex_state = 282}, - [6417] = {.lex_state = 203}, - [6418] = {.lex_state = 203}, - [6419] = {.lex_state = 203}, - [6420] = {.lex_state = 237}, - [6421] = {.lex_state = 281}, - [6422] = {.lex_state = 203}, - [6423] = {.lex_state = 387}, - [6424] = {.lex_state = 282}, - [6425] = {.lex_state = 387}, - [6426] = {.lex_state = 387}, - [6427] = {.lex_state = 387}, - [6428] = {.lex_state = 284}, - [6429] = {.lex_state = 203}, - [6430] = {.lex_state = 282}, - [6431] = {.lex_state = 387}, - [6432] = {.lex_state = 387}, + [6413] = {.lex_state = 203}, + [6414] = {.lex_state = 282}, + [6415] = {.lex_state = 284}, + [6416] = {.lex_state = 203}, + [6417] = {.lex_state = 282}, + [6418] = {.lex_state = 282}, + [6419] = {.lex_state = 237}, + [6420] = {.lex_state = 387}, + [6421] = {.lex_state = 387}, + [6422] = {.lex_state = 387}, + [6423] = {.lex_state = 237}, + [6424] = {.lex_state = 387}, + [6425] = {.lex_state = 284}, + [6426] = {.lex_state = 282}, + [6427] = {.lex_state = 284}, + [6428] = {.lex_state = 282}, + [6429] = {.lex_state = 284}, + [6430] = {.lex_state = 387}, + [6431] = {.lex_state = 238}, + [6432] = {.lex_state = 237}, [6433] = {.lex_state = 282}, - [6434] = {.lex_state = 387}, - [6435] = {.lex_state = 282}, - [6436] = {.lex_state = 237}, - [6437] = {.lex_state = 387}, - [6438] = {.lex_state = 226}, - [6439] = {.lex_state = 387}, - [6440] = {.lex_state = 282}, - [6441] = {.lex_state = 281}, - [6442] = {.lex_state = 281}, - [6443] = {.lex_state = 281}, - [6444] = {.lex_state = 226}, - [6445] = {.lex_state = 284}, + [6434] = {.lex_state = 282}, + [6435] = {.lex_state = 237}, + [6436] = {.lex_state = 271}, + [6437] = {.lex_state = 282}, + [6438] = {.lex_state = 281}, + [6439] = {.lex_state = 282}, + [6440] = {.lex_state = 237}, + [6441] = {.lex_state = 387}, + [6442] = {.lex_state = 387}, + [6443] = {.lex_state = 387}, + [6444] = {.lex_state = 282}, + [6445] = {.lex_state = 282}, [6446] = {.lex_state = 281}, - [6447] = {.lex_state = 281}, - [6448] = {.lex_state = 226}, - [6449] = {.lex_state = 281}, - [6450] = {.lex_state = 282}, - [6451] = {.lex_state = 281}, - [6452] = {.lex_state = 281}, - [6453] = {.lex_state = 282}, - [6454] = {.lex_state = 282}, + [6447] = {.lex_state = 387}, + [6448] = {.lex_state = 387}, + [6449] = {.lex_state = 203}, + [6450] = {.lex_state = 387}, + [6451] = {.lex_state = 271}, + [6452] = {.lex_state = 237}, + [6453] = {.lex_state = 387}, + [6454] = {.lex_state = 387}, [6455] = {.lex_state = 282}, - [6456] = {.lex_state = 226}, - [6457] = {.lex_state = 281}, - [6458] = {.lex_state = 282}, - [6459] = {.lex_state = 226}, - [6460] = {.lex_state = 282}, - [6461] = {.lex_state = 282}, - [6462] = {.lex_state = 281}, - [6463] = {.lex_state = 281}, - [6464] = {.lex_state = 282}, - [6465] = {.lex_state = 284}, - [6466] = {.lex_state = 282}, - [6467] = {.lex_state = 281}, - [6468] = {.lex_state = 282}, - [6469] = {.lex_state = 388}, - [6470] = {.lex_state = 281}, - [6471] = {.lex_state = 282}, - [6472] = {.lex_state = 282}, + [6456] = {.lex_state = 237}, + [6457] = {.lex_state = 282}, + [6458] = {.lex_state = 203}, + [6459] = {.lex_state = 203}, + [6460] = {.lex_state = 203}, + [6461] = {.lex_state = 237}, + [6462] = {.lex_state = 282}, + [6463] = {.lex_state = 387}, + [6464] = {.lex_state = 387}, + [6465] = {.lex_state = 282}, + [6466] = {.lex_state = 387}, + [6467] = {.lex_state = 387}, + [6468] = {.lex_state = 226}, + [6469] = {.lex_state = 389}, + [6470] = {.lex_state = 387}, + [6471] = {.lex_state = 281}, + [6472] = {.lex_state = 284}, [6473] = {.lex_state = 282}, - [6474] = {.lex_state = 281}, - [6475] = {.lex_state = 226}, - [6476] = {.lex_state = 389}, - [6477] = {.lex_state = 203}, - [6478] = {.lex_state = 282}, - [6479] = {.lex_state = 281}, - [6480] = {.lex_state = 277}, - [6481] = {.lex_state = 281}, - [6482] = {.lex_state = 281}, - [6483] = {.lex_state = 281}, + [6474] = {.lex_state = 388}, + [6475] = {.lex_state = 282}, + [6476] = {.lex_state = 281}, + [6477] = {.lex_state = 226}, + [6478] = {.lex_state = 281}, + [6479] = {.lex_state = 277}, + [6480] = {.lex_state = 226}, + [6481] = {.lex_state = 284}, + [6482] = {.lex_state = 282}, + [6483] = {.lex_state = 226}, [6484] = {.lex_state = 281}, - [6485] = {.lex_state = 281}, - [6486] = {.lex_state = 388}, - [6487] = {.lex_state = 226}, - [6488] = {.lex_state = 277}, - [6489] = {.lex_state = 284}, - [6490] = {.lex_state = 387}, - [6491] = {.lex_state = 281}, - [6492] = {.lex_state = 203}, + [6485] = {.lex_state = 226}, + [6486] = {.lex_state = 281}, + [6487] = {.lex_state = 282}, + [6488] = {.lex_state = 282}, + [6489] = {.lex_state = 226}, + [6490] = {.lex_state = 281}, + [6491] = {.lex_state = 282}, + [6492] = {.lex_state = 281}, [6493] = {.lex_state = 281}, [6494] = {.lex_state = 282}, [6495] = {.lex_state = 282}, - [6496] = {.lex_state = 281}, + [6496] = {.lex_state = 282}, [6497] = {.lex_state = 282}, [6498] = {.lex_state = 282}, - [6499] = {.lex_state = 282}, - [6500] = {.lex_state = 281}, + [6499] = {.lex_state = 281}, + [6500] = {.lex_state = 203}, [6501] = {.lex_state = 282}, - [6502] = {.lex_state = 277}, + [6502] = {.lex_state = 282}, [6503] = {.lex_state = 282}, [6504] = {.lex_state = 281}, - [6505] = {.lex_state = 282}, + [6505] = {.lex_state = 281}, [6506] = {.lex_state = 281}, - [6507] = {.lex_state = 282}, + [6507] = {.lex_state = 281}, [6508] = {.lex_state = 281}, - [6509] = {.lex_state = 281}, - [6510] = {.lex_state = 282}, + [6509] = {.lex_state = 282}, + [6510] = {.lex_state = 203}, [6511] = {.lex_state = 282}, [6512] = {.lex_state = 281}, - [6513] = {.lex_state = 226}, - [6514] = {.lex_state = 387}, - [6515] = {.lex_state = 264}, - [6516] = {.lex_state = 206}, - [6517] = {.lex_state = 206}, - [6518] = {.lex_state = 387}, + [6513] = {.lex_state = 281}, + [6514] = {.lex_state = 281}, + [6515] = {.lex_state = 281}, + [6516] = {.lex_state = 277}, + [6517] = {.lex_state = 282}, + [6518] = {.lex_state = 282}, [6519] = {.lex_state = 284}, - [6520] = {.lex_state = 284}, - [6521] = {.lex_state = 284}, - [6522] = {.lex_state = 387}, - [6523] = {.lex_state = 203}, - [6524] = {.lex_state = 284}, - [6525] = {.lex_state = 387}, - [6526] = {.lex_state = 387}, - [6527] = {.lex_state = 264}, - [6528] = {.lex_state = 387}, - [6529] = {.lex_state = 387}, - [6530] = {.lex_state = 387}, - [6531] = {.lex_state = 284}, - [6532] = {.lex_state = 284}, - [6533] = {.lex_state = 264}, - [6534] = {.lex_state = 284}, - [6535] = {.lex_state = 284}, - [6536] = {.lex_state = 284}, - [6537] = {.lex_state = 206}, - [6538] = {.lex_state = 203}, - [6539] = {.lex_state = 206}, - [6540] = {.lex_state = 226}, - [6541] = {.lex_state = 203}, - [6542] = {.lex_state = 387}, - [6543] = {.lex_state = 284}, - [6544] = {.lex_state = 203}, - [6545] = {.lex_state = 203}, - [6546] = {.lex_state = 203}, + [6520] = {.lex_state = 388}, + [6521] = {.lex_state = 226}, + [6522] = {.lex_state = 282}, + [6523] = {.lex_state = 226}, + [6524] = {.lex_state = 282}, + [6525] = {.lex_state = 281}, + [6526] = {.lex_state = 281}, + [6527] = {.lex_state = 282}, + [6528] = {.lex_state = 281}, + [6529] = {.lex_state = 281}, + [6530] = {.lex_state = 277}, + [6531] = {.lex_state = 387}, + [6532] = {.lex_state = 281}, + [6533] = {.lex_state = 282}, + [6534] = {.lex_state = 281}, + [6535] = {.lex_state = 282}, + [6536] = {.lex_state = 281}, + [6537] = {.lex_state = 282}, + [6538] = {.lex_state = 281}, + [6539] = {.lex_state = 281}, + [6540] = {.lex_state = 282}, + [6541] = {.lex_state = 281}, + [6542] = {.lex_state = 282}, + [6543] = {.lex_state = 281}, + [6544] = {.lex_state = 387}, + [6545] = {.lex_state = 387}, + [6546] = {.lex_state = 387}, [6547] = {.lex_state = 206}, - [6548] = {.lex_state = 206}, - [6549] = {.lex_state = 264}, + [6548] = {.lex_state = 284}, + [6549] = {.lex_state = 387}, [6550] = {.lex_state = 206}, - [6551] = {.lex_state = 206}, + [6551] = {.lex_state = 387}, [6552] = {.lex_state = 387}, - [6553] = {.lex_state = 387}, - [6554] = {.lex_state = 206}, + [6553] = {.lex_state = 203}, + [6554] = {.lex_state = 264}, [6555] = {.lex_state = 387}, - [6556] = {.lex_state = 387}, + [6556] = {.lex_state = 206}, [6557] = {.lex_state = 387}, - [6558] = {.lex_state = 387}, + [6558] = {.lex_state = 206}, [6559] = {.lex_state = 387}, - [6560] = {.lex_state = 264}, - [6561] = {.lex_state = 387}, - [6562] = {.lex_state = 206}, - [6563] = {.lex_state = 203}, - [6564] = {.lex_state = 206}, + [6560] = {.lex_state = 387}, + [6561] = {.lex_state = 284}, + [6562] = {.lex_state = 284}, + [6563] = {.lex_state = 284}, + [6564] = {.lex_state = 264}, [6565] = {.lex_state = 206}, - [6566] = {.lex_state = 206}, + [6566] = {.lex_state = 203}, [6567] = {.lex_state = 203}, - [6568] = {.lex_state = 264}, - [6569] = {.lex_state = 264}, - [6570] = {.lex_state = 203}, - [6571] = {.lex_state = 206}, + [6568] = {.lex_state = 203}, + [6569] = {.lex_state = 206}, + [6570] = {.lex_state = 284}, + [6571] = {.lex_state = 387}, [6572] = {.lex_state = 206}, - [6573] = {.lex_state = 284}, + [6573] = {.lex_state = 206}, [6574] = {.lex_state = 206}, - [6575] = {.lex_state = 206}, + [6575] = {.lex_state = 203}, [6576] = {.lex_state = 387}, - [6577] = {.lex_state = 203}, - [6578] = {.lex_state = 203}, - [6579] = {.lex_state = 206}, - [6580] = {.lex_state = 264}, - [6581] = {.lex_state = 284}, - [6582] = {.lex_state = 203}, - [6583] = {.lex_state = 284}, - [6584] = {.lex_state = 264}, - [6585] = {.lex_state = 281}, - [6586] = {.lex_state = 230}, - [6587] = {.lex_state = 388}, + [6577] = {.lex_state = 387}, + [6578] = {.lex_state = 387}, + [6579] = {.lex_state = 264}, + [6580] = {.lex_state = 206}, + [6581] = {.lex_state = 387}, + [6582] = {.lex_state = 284}, + [6583] = {.lex_state = 264}, + [6584] = {.lex_state = 284}, + [6585] = {.lex_state = 387}, + [6586] = {.lex_state = 284}, + [6587] = {.lex_state = 284}, [6588] = {.lex_state = 226}, - [6589] = {.lex_state = 234}, - [6590] = {.lex_state = 234}, - [6591] = {.lex_state = 222}, - [6592] = {.lex_state = 387}, - [6593] = {.lex_state = 234}, + [6589] = {.lex_state = 206}, + [6590] = {.lex_state = 264}, + [6591] = {.lex_state = 206}, + [6592] = {.lex_state = 203}, + [6593] = {.lex_state = 206}, [6594] = {.lex_state = 387}, - [6595] = {.lex_state = 388}, - [6596] = {.lex_state = 222}, - [6597] = {.lex_state = 222}, - [6598] = {.lex_state = 222}, - [6599] = {.lex_state = 222}, - [6600] = {.lex_state = 226}, - [6601] = {.lex_state = 226}, - [6602] = {.lex_state = 226}, - [6603] = {.lex_state = 264}, - [6604] = {.lex_state = 222}, - [6605] = {.lex_state = 281}, - [6606] = {.lex_state = 281}, - [6607] = {.lex_state = 222}, - [6608] = {.lex_state = 222}, - [6609] = {.lex_state = 284}, - [6610] = {.lex_state = 222}, - [6611] = {.lex_state = 226}, - [6612] = {.lex_state = 226}, - [6613] = {.lex_state = 388}, - [6614] = {.lex_state = 281}, - [6615] = {.lex_state = 226}, + [6595] = {.lex_state = 387}, + [6596] = {.lex_state = 264}, + [6597] = {.lex_state = 203}, + [6598] = {.lex_state = 203}, + [6599] = {.lex_state = 264}, + [6600] = {.lex_state = 264}, + [6601] = {.lex_state = 206}, + [6602] = {.lex_state = 284}, + [6603] = {.lex_state = 203}, + [6604] = {.lex_state = 203}, + [6605] = {.lex_state = 206}, + [6606] = {.lex_state = 203}, + [6607] = {.lex_state = 284}, + [6608] = {.lex_state = 203}, + [6609] = {.lex_state = 206}, + [6610] = {.lex_state = 206}, + [6611] = {.lex_state = 284}, + [6612] = {.lex_state = 206}, + [6613] = {.lex_state = 222}, + [6614] = {.lex_state = 284}, + [6615] = {.lex_state = 284}, [6616] = {.lex_state = 388}, - [6617] = {.lex_state = 281}, + [6617] = {.lex_state = 388}, [6618] = {.lex_state = 264}, - [6619] = {.lex_state = 387}, - [6620] = {.lex_state = 281}, - [6621] = {.lex_state = 387}, - [6622] = {.lex_state = 387}, + [6619] = {.lex_state = 226}, + [6620] = {.lex_state = 222}, + [6621] = {.lex_state = 222}, + [6622] = {.lex_state = 222}, [6623] = {.lex_state = 222}, - [6624] = {.lex_state = 388}, + [6624] = {.lex_state = 281}, [6625] = {.lex_state = 388}, - [6626] = {.lex_state = 284}, - [6627] = {.lex_state = 264}, - [6628] = {.lex_state = 388}, - [6629] = {.lex_state = 226}, - [6630] = {.lex_state = 388}, - [6631] = {.lex_state = 387}, - [6632] = {.lex_state = 388}, - [6633] = {.lex_state = 284}, - [6634] = {.lex_state = 387}, - [6635] = {.lex_state = 234}, - [6636] = {.lex_state = 226}, + [6626] = {.lex_state = 281}, + [6627] = {.lex_state = 388}, + [6628] = {.lex_state = 226}, + [6629] = {.lex_state = 387}, + [6630] = {.lex_state = 234}, + [6631] = {.lex_state = 226}, + [6632] = {.lex_state = 226}, + [6633] = {.lex_state = 226}, + [6634] = {.lex_state = 388}, + [6635] = {.lex_state = 226}, + [6636] = {.lex_state = 234}, [6637] = {.lex_state = 222}, - [6638] = {.lex_state = 226}, - [6639] = {.lex_state = 226}, + [6638] = {.lex_state = 388}, + [6639] = {.lex_state = 387}, [6640] = {.lex_state = 226}, - [6641] = {.lex_state = 264}, - [6642] = {.lex_state = 388}, - [6643] = {.lex_state = 234}, - [6644] = {.lex_state = 284}, - [6645] = {.lex_state = 388}, - [6646] = {.lex_state = 222}, + [6641] = {.lex_state = 226}, + [6642] = {.lex_state = 226}, + [6643] = {.lex_state = 281}, + [6644] = {.lex_state = 222}, + [6645] = {.lex_state = 234}, + [6646] = {.lex_state = 226}, [6647] = {.lex_state = 226}, - [6648] = {.lex_state = 234}, - [6649] = {.lex_state = 222}, - [6650] = {.lex_state = 222}, - [6651] = {.lex_state = 226}, - [6652] = {.lex_state = 222}, - [6653] = {.lex_state = 226}, - [6654] = {.lex_state = 264}, - [6655] = {.lex_state = 226}, - [6656] = {.lex_state = 226}, - [6657] = {.lex_state = 231}, - [6658] = {.lex_state = 226}, - [6659] = {.lex_state = 226}, - [6660] = {.lex_state = 234}, - [6661] = {.lex_state = 264}, - [6662] = {.lex_state = 234}, - [6663] = {.lex_state = 226}, - [6664] = {.lex_state = 226}, - [6665] = {.lex_state = 234}, - [6666] = {.lex_state = 226}, - [6667] = {.lex_state = 388}, - [6668] = {.lex_state = 388}, - [6669] = {.lex_state = 226}, - [6670] = {.lex_state = 226}, + [6648] = {.lex_state = 226}, + [6649] = {.lex_state = 388}, + [6650] = {.lex_state = 281}, + [6651] = {.lex_state = 234}, + [6652] = {.lex_state = 388}, + [6653] = {.lex_state = 388}, + [6654] = {.lex_state = 222}, + [6655] = {.lex_state = 284}, + [6656] = {.lex_state = 388}, + [6657] = {.lex_state = 234}, + [6658] = {.lex_state = 388}, + [6659] = {.lex_state = 222}, + [6660] = {.lex_state = 387}, + [6661] = {.lex_state = 222}, + [6662] = {.lex_state = 388}, + [6663] = {.lex_state = 388}, + [6664] = {.lex_state = 234}, + [6665] = {.lex_state = 222}, + [6666] = {.lex_state = 387}, + [6667] = {.lex_state = 226}, + [6668] = {.lex_state = 226}, + [6669] = {.lex_state = 387}, + [6670] = {.lex_state = 222}, [6671] = {.lex_state = 226}, - [6672] = {.lex_state = 264}, - [6673] = {.lex_state = 222}, - [6674] = {.lex_state = 226}, - [6675] = {.lex_state = 388}, - [6676] = {.lex_state = 284}, - [6677] = {.lex_state = 281}, - [6678] = {.lex_state = 388}, - [6679] = {.lex_state = 234}, - [6680] = {.lex_state = 222}, - [6681] = {.lex_state = 222}, - [6682] = {.lex_state = 226}, + [6672] = {.lex_state = 222}, + [6673] = {.lex_state = 234}, + [6674] = {.lex_state = 388}, + [6675] = {.lex_state = 234}, + [6676] = {.lex_state = 226}, + [6677] = {.lex_state = 264}, + [6678] = {.lex_state = 226}, + [6679] = {.lex_state = 226}, + [6680] = {.lex_state = 234}, + [6681] = {.lex_state = 387}, + [6682] = {.lex_state = 231}, [6683] = {.lex_state = 284}, - [6684] = {.lex_state = 222}, - [6685] = {.lex_state = 234}, - [6686] = {.lex_state = 388}, - [6687] = {.lex_state = 388}, - [6688] = {.lex_state = 226}, - [6689] = {.lex_state = 234}, - [6690] = {.lex_state = 226}, - [6691] = {.lex_state = 226}, - [6692] = {.lex_state = 284}, - [6693] = {.lex_state = 222}, - [6694] = {.lex_state = 387}, - [6695] = {.lex_state = 222}, - [6696] = {.lex_state = 222}, - [6697] = {.lex_state = 388}, - [6698] = {.lex_state = 222}, - [6699] = {.lex_state = 388}, - [6700] = {.lex_state = 222}, - [6701] = {.lex_state = 222}, - [6702] = {.lex_state = 226}, - [6703] = {.lex_state = 387}, - [6704] = {.lex_state = 222}, - [6705] = {.lex_state = 387}, + [6684] = {.lex_state = 284}, + [6685] = {.lex_state = 226}, + [6686] = {.lex_state = 226}, + [6687] = {.lex_state = 222}, + [6688] = {.lex_state = 222}, + [6689] = {.lex_state = 264}, + [6690] = {.lex_state = 222}, + [6691] = {.lex_state = 387}, + [6692] = {.lex_state = 264}, + [6693] = {.lex_state = 226}, + [6694] = {.lex_state = 226}, + [6695] = {.lex_state = 264}, + [6696] = {.lex_state = 234}, + [6697] = {.lex_state = 226}, + [6698] = {.lex_state = 281}, + [6699] = {.lex_state = 222}, + [6700] = {.lex_state = 284}, + [6701] = {.lex_state = 226}, + [6702] = {.lex_state = 222}, + [6703] = {.lex_state = 222}, + [6704] = {.lex_state = 387}, + [6705] = {.lex_state = 388}, [6706] = {.lex_state = 226}, [6707] = {.lex_state = 226}, - [6708] = {.lex_state = 388}, - [6709] = {.lex_state = 222}, - [6710] = {.lex_state = 387}, - [6711] = {.lex_state = 233}, + [6708] = {.lex_state = 226}, + [6709] = {.lex_state = 226}, + [6710] = {.lex_state = 222}, + [6711] = {.lex_state = 226}, [6712] = {.lex_state = 226}, - [6713] = {.lex_state = 0}, - [6714] = {.lex_state = 387}, + [6713] = {.lex_state = 222}, + [6714] = {.lex_state = 222}, [6715] = {.lex_state = 226}, - [6716] = {.lex_state = 387}, - [6717] = {.lex_state = 387}, - [6718] = {.lex_state = 387}, - [6719] = {.lex_state = 0}, - [6720] = {.lex_state = 387}, - [6721] = {.lex_state = 387}, - [6722] = {.lex_state = 387}, - [6723] = {.lex_state = 387}, - [6724] = {.lex_state = 0}, + [6716] = {.lex_state = 222}, + [6717] = {.lex_state = 226}, + [6718] = {.lex_state = 284}, + [6719] = {.lex_state = 388}, + [6720] = {.lex_state = 222}, + [6721] = {.lex_state = 234}, + [6722] = {.lex_state = 388}, + [6723] = {.lex_state = 388}, + [6724] = {.lex_state = 388}, [6725] = {.lex_state = 387}, - [6726] = {.lex_state = 0}, - [6727] = {.lex_state = 387}, - [6728] = {.lex_state = 387}, - [6729] = {.lex_state = 387}, - [6730] = {.lex_state = 387}, - [6731] = {.lex_state = 387}, - [6732] = {.lex_state = 203}, - [6733] = {.lex_state = 277}, - [6734] = {.lex_state = 387}, - [6735] = {.lex_state = 284}, - [6736] = {.lex_state = 284}, - [6737] = {.lex_state = 387}, - [6738] = {.lex_state = 284}, - [6739] = {.lex_state = 387}, - [6740] = {.lex_state = 0}, + [6726] = {.lex_state = 234}, + [6727] = {.lex_state = 222}, + [6728] = {.lex_state = 222}, + [6729] = {.lex_state = 264}, + [6730] = {.lex_state = 230}, + [6731] = {.lex_state = 264}, + [6732] = {.lex_state = 387}, + [6733] = {.lex_state = 388}, + [6734] = {.lex_state = 284}, + [6735] = {.lex_state = 264}, + [6736] = {.lex_state = 226}, + [6737] = {.lex_state = 281}, + [6738] = {.lex_state = 281}, + [6739] = {.lex_state = 222}, + [6740] = {.lex_state = 387}, [6741] = {.lex_state = 387}, - [6742] = {.lex_state = 387}, - [6743] = {.lex_state = 284}, - [6744] = {.lex_state = 387}, - [6745] = {.lex_state = 387}, + [6742] = {.lex_state = 233}, + [6743] = {.lex_state = 387}, + [6744] = {.lex_state = 233}, + [6745] = {.lex_state = 233}, [6746] = {.lex_state = 387}, - [6747] = {.lex_state = 284}, - [6748] = {.lex_state = 284}, - [6749] = {.lex_state = 284}, + [6747] = {.lex_state = 277}, + [6748] = {.lex_state = 387}, + [6749] = {.lex_state = 387}, [6750] = {.lex_state = 387}, [6751] = {.lex_state = 387}, - [6752] = {.lex_state = 0}, + [6752] = {.lex_state = 387}, [6753] = {.lex_state = 387}, [6754] = {.lex_state = 387}, - [6755] = {.lex_state = 387}, + [6755] = {.lex_state = 277}, [6756] = {.lex_state = 387}, [6757] = {.lex_state = 387}, - [6758] = {.lex_state = 387}, + [6758] = {.lex_state = 226}, [6759] = {.lex_state = 387}, - [6760] = {.lex_state = 387}, + [6760] = {.lex_state = 233}, [6761] = {.lex_state = 0}, - [6762] = {.lex_state = 387}, - [6763] = {.lex_state = 387}, - [6764] = {.lex_state = 387}, - [6765] = {.lex_state = 277}, - [6766] = {.lex_state = 277}, + [6762] = {.lex_state = 0}, + [6763] = {.lex_state = 233}, + [6764] = {.lex_state = 0}, + [6765] = {.lex_state = 0}, + [6766] = {.lex_state = 387}, [6767] = {.lex_state = 387}, - [6768] = {.lex_state = 226}, + [6768] = {.lex_state = 387}, [6769] = {.lex_state = 387}, - [6770] = {.lex_state = 0}, + [6770] = {.lex_state = 387}, [6771] = {.lex_state = 387}, [6772] = {.lex_state = 387}, - [6773] = {.lex_state = 387}, + [6773] = {.lex_state = 0}, [6774] = {.lex_state = 387}, [6775] = {.lex_state = 387}, [6776] = {.lex_state = 387}, - [6777] = {.lex_state = 387}, - [6778] = {.lex_state = 387}, - [6779] = {.lex_state = 233}, + [6777] = {.lex_state = 277}, + [6778] = {.lex_state = 0}, + [6779] = {.lex_state = 387}, [6780] = {.lex_state = 387}, [6781] = {.lex_state = 387}, [6782] = {.lex_state = 387}, [6783] = {.lex_state = 387}, [6784] = {.lex_state = 387}, - [6785] = {.lex_state = 233}, - [6786] = {.lex_state = 387}, + [6785] = {.lex_state = 277}, + [6786] = {.lex_state = 0}, [6787] = {.lex_state = 387}, - [6788] = {.lex_state = 277}, - [6789] = {.lex_state = 233}, + [6788] = {.lex_state = 387}, + [6789] = {.lex_state = 387}, [6790] = {.lex_state = 387}, - [6791] = {.lex_state = 233}, - [6792] = {.lex_state = 233}, - [6793] = {.lex_state = 233}, - [6794] = {.lex_state = 387}, - [6795] = {.lex_state = 233}, - [6796] = {.lex_state = 0}, - [6797] = {.lex_state = 387}, + [6791] = {.lex_state = 387}, + [6792] = {.lex_state = 387}, + [6793] = {.lex_state = 387}, + [6794] = {.lex_state = 0}, + [6795] = {.lex_state = 387}, + [6796] = {.lex_state = 387}, + [6797] = {.lex_state = 233}, [6798] = {.lex_state = 226}, - [6799] = {.lex_state = 226}, + [6799] = {.lex_state = 387}, [6800] = {.lex_state = 387}, - [6801] = {.lex_state = 226}, - [6802] = {.lex_state = 264}, - [6803] = {.lex_state = 226}, + [6801] = {.lex_state = 387}, + [6802] = {.lex_state = 387}, + [6803] = {.lex_state = 387}, [6804] = {.lex_state = 226}, - [6805] = {.lex_state = 393}, - [6806] = {.lex_state = 226}, - [6807] = {.lex_state = 393}, - [6808] = {.lex_state = 226}, - [6809] = {.lex_state = 234}, - [6810] = {.lex_state = 234}, - [6811] = {.lex_state = 226}, - [6812] = {.lex_state = 226}, - [6813] = {.lex_state = 226}, + [6805] = {.lex_state = 387}, + [6806] = {.lex_state = 0}, + [6807] = {.lex_state = 387}, + [6808] = {.lex_state = 387}, + [6809] = {.lex_state = 284}, + [6810] = {.lex_state = 284}, + [6811] = {.lex_state = 284}, + [6812] = {.lex_state = 203}, + [6813] = {.lex_state = 387}, [6814] = {.lex_state = 387}, - [6815] = {.lex_state = 234}, - [6816] = {.lex_state = 234}, - [6817] = {.lex_state = 226}, - [6818] = {.lex_state = 226}, - [6819] = {.lex_state = 226}, + [6815] = {.lex_state = 284}, + [6816] = {.lex_state = 233}, + [6817] = {.lex_state = 284}, + [6818] = {.lex_state = 387}, + [6819] = {.lex_state = 387}, [6820] = {.lex_state = 387}, - [6821] = {.lex_state = 234}, - [6822] = {.lex_state = 387}, - [6823] = {.lex_state = 0}, - [6824] = {.lex_state = 226}, - [6825] = {.lex_state = 387}, - [6826] = {.lex_state = 226}, - [6827] = {.lex_state = 226}, - [6828] = {.lex_state = 226}, - [6829] = {.lex_state = 226}, - [6830] = {.lex_state = 226}, + [6821] = {.lex_state = 387}, + [6822] = {.lex_state = 284}, + [6823] = {.lex_state = 387}, + [6824] = {.lex_state = 387}, + [6825] = {.lex_state = 233}, + [6826] = {.lex_state = 284}, + [6827] = {.lex_state = 387}, + [6828] = {.lex_state = 264}, + [6829] = {.lex_state = 387}, + [6830] = {.lex_state = 387}, [6831] = {.lex_state = 226}, - [6832] = {.lex_state = 264}, - [6833] = {.lex_state = 226}, + [6832] = {.lex_state = 234}, + [6833] = {.lex_state = 264}, [6834] = {.lex_state = 234}, - [6835] = {.lex_state = 387}, - [6836] = {.lex_state = 264}, + [6835] = {.lex_state = 226}, + [6836] = {.lex_state = 226}, [6837] = {.lex_state = 226}, - [6838] = {.lex_state = 226}, + [6838] = {.lex_state = 387}, [6839] = {.lex_state = 226}, - [6840] = {.lex_state = 393}, - [6841] = {.lex_state = 387}, + [6840] = {.lex_state = 387}, + [6841] = {.lex_state = 226}, [6842] = {.lex_state = 226}, - [6843] = {.lex_state = 387}, - [6844] = {.lex_state = 393}, - [6845] = {.lex_state = 264}, - [6846] = {.lex_state = 387}, + [6843] = {.lex_state = 226}, + [6844] = {.lex_state = 226}, + [6845] = {.lex_state = 226}, + [6846] = {.lex_state = 226}, [6847] = {.lex_state = 226}, [6848] = {.lex_state = 226}, [6849] = {.lex_state = 226}, [6850] = {.lex_state = 264}, - [6851] = {.lex_state = 264}, - [6852] = {.lex_state = 387}, - [6853] = {.lex_state = 264}, - [6854] = {.lex_state = 393}, - [6855] = {.lex_state = 226}, - [6856] = {.lex_state = 226}, - [6857] = {.lex_state = 264}, - [6858] = {.lex_state = 226}, - [6859] = {.lex_state = 387}, - [6860] = {.lex_state = 226}, - [6861] = {.lex_state = 264}, - [6862] = {.lex_state = 226}, - [6863] = {.lex_state = 387}, - [6864] = {.lex_state = 264}, - [6865] = {.lex_state = 226}, - [6866] = {.lex_state = 387}, - [6867] = {.lex_state = 234}, - [6868] = {.lex_state = 264}, - [6869] = {.lex_state = 264}, - [6870] = {.lex_state = 226}, - [6871] = {.lex_state = 226}, - [6872] = {.lex_state = 387}, - [6873] = {.lex_state = 387}, - [6874] = {.lex_state = 234}, - [6875] = {.lex_state = 226}, + [6851] = {.lex_state = 387}, + [6852] = {.lex_state = 226}, + [6853] = {.lex_state = 226}, + [6854] = {.lex_state = 226}, + [6855] = {.lex_state = 264}, + [6856] = {.lex_state = 0}, + [6857] = {.lex_state = 226}, + [6858] = {.lex_state = 264}, + [6859] = {.lex_state = 226}, + [6860] = {.lex_state = 387}, + [6861] = {.lex_state = 226}, + [6862] = {.lex_state = 234}, + [6863] = {.lex_state = 226}, + [6864] = {.lex_state = 387}, + [6865] = {.lex_state = 264}, + [6866] = {.lex_state = 226}, + [6867] = {.lex_state = 387}, + [6868] = {.lex_state = 226}, + [6869] = {.lex_state = 226}, + [6870] = {.lex_state = 393}, + [6871] = {.lex_state = 387}, + [6872] = {.lex_state = 226}, + [6873] = {.lex_state = 226}, + [6874] = {.lex_state = 264}, + [6875] = {.lex_state = 387}, [6876] = {.lex_state = 226}, [6877] = {.lex_state = 387}, - [6878] = {.lex_state = 226}, - [6879] = {.lex_state = 226}, - [6880] = {.lex_state = 226}, - [6881] = {.lex_state = 233}, - [6882] = {.lex_state = 387}, + [6878] = {.lex_state = 264}, + [6879] = {.lex_state = 234}, + [6880] = {.lex_state = 234}, + [6881] = {.lex_state = 234}, + [6882] = {.lex_state = 264}, [6883] = {.lex_state = 226}, [6884] = {.lex_state = 226}, [6885] = {.lex_state = 226}, - [6886] = {.lex_state = 387}, - [6887] = {.lex_state = 387}, - [6888] = {.lex_state = 233}, - [6889] = {.lex_state = 387}, - [6890] = {.lex_state = 281}, + [6886] = {.lex_state = 264}, + [6887] = {.lex_state = 226}, + [6888] = {.lex_state = 226}, + [6889] = {.lex_state = 264}, + [6890] = {.lex_state = 234}, [6891] = {.lex_state = 226}, - [6892] = {.lex_state = 233}, - [6893] = {.lex_state = 226}, - [6894] = {.lex_state = 226}, - [6895] = {.lex_state = 231}, - [6896] = {.lex_state = 259}, - [6897] = {.lex_state = 259}, - [6898] = {.lex_state = 233}, - [6899] = {.lex_state = 226}, - [6900] = {.lex_state = 387}, - [6901] = {.lex_state = 259}, - [6902] = {.lex_state = 233}, - [6903] = {.lex_state = 226}, - [6904] = {.lex_state = 233}, - [6905] = {.lex_state = 226}, + [6892] = {.lex_state = 387}, + [6893] = {.lex_state = 393}, + [6894] = {.lex_state = 393}, + [6895] = {.lex_state = 226}, + [6896] = {.lex_state = 264}, + [6897] = {.lex_state = 226}, + [6898] = {.lex_state = 387}, + [6899] = {.lex_state = 387}, + [6900] = {.lex_state = 226}, + [6901] = {.lex_state = 387}, + [6902] = {.lex_state = 234}, + [6903] = {.lex_state = 393}, + [6904] = {.lex_state = 393}, + [6905] = {.lex_state = 233}, [6906] = {.lex_state = 226}, - [6907] = {.lex_state = 231}, + [6907] = {.lex_state = 226}, [6908] = {.lex_state = 233}, [6909] = {.lex_state = 226}, [6910] = {.lex_state = 226}, - [6911] = {.lex_state = 226}, + [6911] = {.lex_state = 233}, [6912] = {.lex_state = 226}, - [6913] = {.lex_state = 226}, - [6914] = {.lex_state = 226}, - [6915] = {.lex_state = 233}, - [6916] = {.lex_state = 233}, - [6917] = {.lex_state = 259}, + [6913] = {.lex_state = 281}, + [6914] = {.lex_state = 233}, + [6915] = {.lex_state = 387}, + [6916] = {.lex_state = 281}, + [6917] = {.lex_state = 387}, [6918] = {.lex_state = 226}, - [6919] = {.lex_state = 259}, - [6920] = {.lex_state = 259}, - [6921] = {.lex_state = 226}, + [6919] = {.lex_state = 226}, + [6920] = {.lex_state = 226}, + [6921] = {.lex_state = 233}, [6922] = {.lex_state = 226}, [6923] = {.lex_state = 226}, - [6924] = {.lex_state = 226}, + [6924] = {.lex_state = 387}, [6925] = {.lex_state = 226}, - [6926] = {.lex_state = 226}, + [6926] = {.lex_state = 387}, [6927] = {.lex_state = 226}, [6928] = {.lex_state = 226}, [6929] = {.lex_state = 226}, - [6930] = {.lex_state = 226}, - [6931] = {.lex_state = 233}, + [6930] = {.lex_state = 231}, + [6931] = {.lex_state = 226}, [6932] = {.lex_state = 226}, - [6933] = {.lex_state = 226}, + [6933] = {.lex_state = 233}, [6934] = {.lex_state = 231}, - [6935] = {.lex_state = 226}, + [6935] = {.lex_state = 387}, [6936] = {.lex_state = 226}, - [6937] = {.lex_state = 226}, + [6937] = {.lex_state = 233}, [6938] = {.lex_state = 387}, [6939] = {.lex_state = 226}, [6940] = {.lex_state = 226}, [6941] = {.lex_state = 226}, - [6942] = {.lex_state = 259}, - [6943] = {.lex_state = 387}, - [6944] = {.lex_state = 226}, + [6942] = {.lex_state = 226}, + [6943] = {.lex_state = 226}, + [6944] = {.lex_state = 259}, [6945] = {.lex_state = 226}, - [6946] = {.lex_state = 233}, + [6946] = {.lex_state = 226}, [6947] = {.lex_state = 226}, - [6948] = {.lex_state = 233}, - [6949] = {.lex_state = 226}, - [6950] = {.lex_state = 226}, - [6951] = {.lex_state = 226}, - [6952] = {.lex_state = 387}, + [6948] = {.lex_state = 231}, + [6949] = {.lex_state = 259}, + [6950] = {.lex_state = 233}, + [6951] = {.lex_state = 233}, + [6952] = {.lex_state = 226}, [6953] = {.lex_state = 226}, - [6954] = {.lex_state = 226}, - [6955] = {.lex_state = 281}, - [6956] = {.lex_state = 281}, + [6954] = {.lex_state = 233}, + [6955] = {.lex_state = 259}, + [6956] = {.lex_state = 226}, [6957] = {.lex_state = 226}, - [6958] = {.lex_state = 226}, - [6959] = {.lex_state = 387}, - [6960] = {.lex_state = 271}, - [6961] = {.lex_state = 206}, - [6962] = {.lex_state = 271}, - [6963] = {.lex_state = 271}, - [6964] = {.lex_state = 387}, - [6965] = {.lex_state = 393}, - [6966] = {.lex_state = 271}, + [6958] = {.lex_state = 387}, + [6959] = {.lex_state = 226}, + [6960] = {.lex_state = 226}, + [6961] = {.lex_state = 226}, + [6962] = {.lex_state = 226}, + [6963] = {.lex_state = 226}, + [6964] = {.lex_state = 259}, + [6965] = {.lex_state = 259}, + [6966] = {.lex_state = 226}, [6967] = {.lex_state = 226}, - [6968] = {.lex_state = 264}, - [6969] = {.lex_state = 271}, + [6968] = {.lex_state = 226}, + [6969] = {.lex_state = 281}, [6970] = {.lex_state = 226}, - [6971] = {.lex_state = 264}, + [6971] = {.lex_state = 226}, [6972] = {.lex_state = 387}, - [6973] = {.lex_state = 206}, - [6974] = {.lex_state = 393}, - [6975] = {.lex_state = 271}, - [6976] = {.lex_state = 271}, - [6977] = {.lex_state = 264}, - [6978] = {.lex_state = 264}, - [6979] = {.lex_state = 271}, + [6973] = {.lex_state = 226}, + [6974] = {.lex_state = 259}, + [6975] = {.lex_state = 226}, + [6976] = {.lex_state = 226}, + [6977] = {.lex_state = 233}, + [6978] = {.lex_state = 226}, + [6979] = {.lex_state = 259}, [6980] = {.lex_state = 226}, - [6981] = {.lex_state = 264}, - [6982] = {.lex_state = 264}, - [6983] = {.lex_state = 271}, - [6984] = {.lex_state = 271}, + [6981] = {.lex_state = 226}, + [6982] = {.lex_state = 226}, + [6983] = {.lex_state = 226}, + [6984] = {.lex_state = 387}, [6985] = {.lex_state = 226}, - [6986] = {.lex_state = 387}, - [6987] = {.lex_state = 271}, - [6988] = {.lex_state = 271}, - [6989] = {.lex_state = 387}, - [6990] = {.lex_state = 387}, - [6991] = {.lex_state = 264}, - [6992] = {.lex_state = 271}, - [6993] = {.lex_state = 387}, - [6994] = {.lex_state = 271}, - [6995] = {.lex_state = 393}, - [6996] = {.lex_state = 226}, + [6986] = {.lex_state = 226}, + [6987] = {.lex_state = 226}, + [6988] = {.lex_state = 233}, + [6989] = {.lex_state = 226}, + [6990] = {.lex_state = 271}, + [6991] = {.lex_state = 226}, + [6992] = {.lex_state = 226}, + [6993] = {.lex_state = 271}, + [6994] = {.lex_state = 226}, + [6995] = {.lex_state = 271}, + [6996] = {.lex_state = 264}, [6997] = {.lex_state = 271}, - [6998] = {.lex_state = 226}, - [6999] = {.lex_state = 226}, - [7000] = {.lex_state = 226}, - [7001] = {.lex_state = 233}, - [7002] = {.lex_state = 226}, - [7003] = {.lex_state = 233}, - [7004] = {.lex_state = 226}, - [7005] = {.lex_state = 226}, - [7006] = {.lex_state = 226}, - [7007] = {.lex_state = 233}, - [7008] = {.lex_state = 278}, - [7009] = {.lex_state = 393}, - [7010] = {.lex_state = 226}, - [7011] = {.lex_state = 226}, - [7012] = {.lex_state = 226}, + [6998] = {.lex_state = 264}, + [6999] = {.lex_state = 264}, + [7000] = {.lex_state = 264}, + [7001] = {.lex_state = 393}, + [7002] = {.lex_state = 271}, + [7003] = {.lex_state = 271}, + [7004] = {.lex_state = 271}, + [7005] = {.lex_state = 264}, + [7006] = {.lex_state = 264}, + [7007] = {.lex_state = 387}, + [7008] = {.lex_state = 271}, + [7009] = {.lex_state = 271}, + [7010] = {.lex_state = 387}, + [7011] = {.lex_state = 206}, + [7012] = {.lex_state = 271}, [7013] = {.lex_state = 226}, - [7014] = {.lex_state = 226}, - [7015] = {.lex_state = 237}, - [7016] = {.lex_state = 278}, - [7017] = {.lex_state = 226}, - [7018] = {.lex_state = 226}, - [7019] = {.lex_state = 237}, - [7020] = {.lex_state = 393}, - [7021] = {.lex_state = 226}, - [7022] = {.lex_state = 226}, - [7023] = {.lex_state = 226}, - [7024] = {.lex_state = 226}, - [7025] = {.lex_state = 226}, - [7026] = {.lex_state = 278}, + [7014] = {.lex_state = 271}, + [7015] = {.lex_state = 271}, + [7016] = {.lex_state = 393}, + [7017] = {.lex_state = 387}, + [7018] = {.lex_state = 387}, + [7019] = {.lex_state = 393}, + [7020] = {.lex_state = 206}, + [7021] = {.lex_state = 387}, + [7022] = {.lex_state = 271}, + [7023] = {.lex_state = 264}, + [7024] = {.lex_state = 271}, + [7025] = {.lex_state = 387}, + [7026] = {.lex_state = 387}, [7027] = {.lex_state = 226}, - [7028] = {.lex_state = 226}, + [7028] = {.lex_state = 271}, [7029] = {.lex_state = 226}, [7030] = {.lex_state = 226}, [7031] = {.lex_state = 226}, - [7032] = {.lex_state = 226}, + [7032] = {.lex_state = 393}, [7033] = {.lex_state = 226}, [7034] = {.lex_state = 226}, - [7035] = {.lex_state = 226}, + [7035] = {.lex_state = 237}, [7036] = {.lex_state = 226}, - [7037] = {.lex_state = 233}, + [7037] = {.lex_state = 278}, [7038] = {.lex_state = 226}, - [7039] = {.lex_state = 203}, + [7039] = {.lex_state = 226}, [7040] = {.lex_state = 226}, [7041] = {.lex_state = 226}, - [7042] = {.lex_state = 233}, + [7042] = {.lex_state = 226}, [7043] = {.lex_state = 226}, - [7044] = {.lex_state = 226}, - [7045] = {.lex_state = 226}, + [7044] = {.lex_state = 233}, + [7045] = {.lex_state = 278}, [7046] = {.lex_state = 226}, - [7047] = {.lex_state = 233}, - [7048] = {.lex_state = 278}, - [7049] = {.lex_state = 233}, - [7050] = {.lex_state = 278}, - [7051] = {.lex_state = 233}, - [7052] = {.lex_state = 393}, - [7053] = {.lex_state = 393}, - [7054] = {.lex_state = 233}, + [7047] = {.lex_state = 226}, + [7048] = {.lex_state = 226}, + [7049] = {.lex_state = 226}, + [7050] = {.lex_state = 226}, + [7051] = {.lex_state = 226}, + [7052] = {.lex_state = 226}, + [7053] = {.lex_state = 226}, + [7054] = {.lex_state = 278}, [7055] = {.lex_state = 226}, - [7056] = {.lex_state = 233}, - [7057] = {.lex_state = 271}, - [7058] = {.lex_state = 393}, - [7059] = {.lex_state = 203}, - [7060] = {.lex_state = 281}, + [7056] = {.lex_state = 203}, + [7057] = {.lex_state = 226}, + [7058] = {.lex_state = 226}, + [7059] = {.lex_state = 226}, + [7060] = {.lex_state = 237}, [7061] = {.lex_state = 226}, - [7062] = {.lex_state = 393}, - [7063] = {.lex_state = 393}, - [7064] = {.lex_state = 384}, + [7062] = {.lex_state = 226}, + [7063] = {.lex_state = 278}, + [7064] = {.lex_state = 226}, [7065] = {.lex_state = 226}, - [7066] = {.lex_state = 393}, - [7067] = {.lex_state = 393}, - [7068] = {.lex_state = 393}, - [7069] = {.lex_state = 284}, - [7070] = {.lex_state = 206}, - [7071] = {.lex_state = 393}, - [7072] = {.lex_state = 234}, - [7073] = {.lex_state = 234}, + [7066] = {.lex_state = 226}, + [7067] = {.lex_state = 226}, + [7068] = {.lex_state = 226}, + [7069] = {.lex_state = 233}, + [7070] = {.lex_state = 233}, + [7071] = {.lex_state = 233}, + [7072] = {.lex_state = 226}, + [7073] = {.lex_state = 226}, [7074] = {.lex_state = 393}, - [7075] = {.lex_state = 233}, - [7076] = {.lex_state = 234}, - [7077] = {.lex_state = 234}, - [7078] = {.lex_state = 226}, - [7079] = {.lex_state = 393}, - [7080] = {.lex_state = 231}, + [7075] = {.lex_state = 226}, + [7076] = {.lex_state = 226}, + [7077] = {.lex_state = 233}, + [7078] = {.lex_state = 278}, + [7079] = {.lex_state = 233}, + [7080] = {.lex_state = 233}, [7081] = {.lex_state = 226}, - [7082] = {.lex_state = 233}, - [7083] = {.lex_state = 226}, + [7082] = {.lex_state = 226}, + [7083] = {.lex_state = 393}, [7084] = {.lex_state = 393}, - [7085] = {.lex_state = 271}, - [7086] = {.lex_state = 203}, + [7085] = {.lex_state = 393}, + [7086] = {.lex_state = 393}, [7087] = {.lex_state = 393}, - [7088] = {.lex_state = 226}, + [7088] = {.lex_state = 393}, [7089] = {.lex_state = 393}, - [7090] = {.lex_state = 226}, - [7091] = {.lex_state = 393}, + [7090] = {.lex_state = 393}, + [7091] = {.lex_state = 231}, [7092] = {.lex_state = 393}, - [7093] = {.lex_state = 231}, + [7093] = {.lex_state = 393}, [7094] = {.lex_state = 393}, [7095] = {.lex_state = 393}, [7096] = {.lex_state = 393}, - [7097] = {.lex_state = 226}, - [7098] = {.lex_state = 226}, - [7099] = {.lex_state = 226}, - [7100] = {.lex_state = 393}, - [7101] = {.lex_state = 226}, - [7102] = {.lex_state = 393}, - [7103] = {.lex_state = 393}, + [7097] = {.lex_state = 234}, + [7098] = {.lex_state = 233}, + [7099] = {.lex_state = 234}, + [7100] = {.lex_state = 271}, + [7101] = {.lex_state = 393}, + [7102] = {.lex_state = 284}, + [7103] = {.lex_state = 233}, [7104] = {.lex_state = 234}, - [7105] = {.lex_state = 393}, + [7105] = {.lex_state = 234}, [7106] = {.lex_state = 393}, - [7107] = {.lex_state = 234}, - [7108] = {.lex_state = 393}, - [7109] = {.lex_state = 233}, - [7110] = {.lex_state = 393}, - [7111] = {.lex_state = 281}, - [7112] = {.lex_state = 234}, - [7113] = {.lex_state = 284}, + [7107] = {.lex_state = 226}, + [7108] = {.lex_state = 226}, + [7109] = {.lex_state = 226}, + [7110] = {.lex_state = 226}, + [7111] = {.lex_state = 226}, + [7112] = {.lex_state = 233}, + [7113] = {.lex_state = 384}, [7114] = {.lex_state = 226}, - [7115] = {.lex_state = 203}, - [7116] = {.lex_state = 393}, - [7117] = {.lex_state = 203}, - [7118] = {.lex_state = 233}, - [7119] = {.lex_state = 203}, - [7120] = {.lex_state = 393}, - [7121] = {.lex_state = 203}, - [7122] = {.lex_state = 203}, - [7123] = {.lex_state = 393}, - [7124] = {.lex_state = 203}, - [7125] = {.lex_state = 237}, + [7115] = {.lex_state = 233}, + [7116] = {.lex_state = 233}, + [7117] = {.lex_state = 393}, + [7118] = {.lex_state = 231}, + [7119] = {.lex_state = 233}, + [7120] = {.lex_state = 206}, + [7121] = {.lex_state = 271}, + [7122] = {.lex_state = 393}, + [7123] = {.lex_state = 226}, + [7124] = {.lex_state = 393}, + [7125] = {.lex_state = 203}, [7126] = {.lex_state = 226}, - [7127] = {.lex_state = 203}, - [7128] = {.lex_state = 203}, - [7129] = {.lex_state = 203}, - [7130] = {.lex_state = 203}, - [7131] = {.lex_state = 226}, - [7132] = {.lex_state = 203}, + [7127] = {.lex_state = 284}, + [7128] = {.lex_state = 281}, + [7129] = {.lex_state = 234}, + [7130] = {.lex_state = 226}, + [7131] = {.lex_state = 393}, + [7132] = {.lex_state = 393}, [7133] = {.lex_state = 226}, [7134] = {.lex_state = 393}, - [7135] = {.lex_state = 203}, - [7136] = {.lex_state = 226}, + [7135] = {.lex_state = 393}, + [7136] = {.lex_state = 393}, [7137] = {.lex_state = 203}, [7138] = {.lex_state = 393}, - [7139] = {.lex_state = 203}, - [7140] = {.lex_state = 226}, - [7141] = {.lex_state = 226}, - [7142] = {.lex_state = 237}, - [7143] = {.lex_state = 233}, - [7144] = {.lex_state = 284}, - [7145] = {.lex_state = 237}, - [7146] = {.lex_state = 203}, + [7139] = {.lex_state = 234}, + [7140] = {.lex_state = 281}, + [7141] = {.lex_state = 234}, + [7142] = {.lex_state = 393}, + [7143] = {.lex_state = 393}, + [7144] = {.lex_state = 393}, + [7145] = {.lex_state = 226}, + [7146] = {.lex_state = 226}, [7147] = {.lex_state = 226}, - [7148] = {.lex_state = 203}, + [7148] = {.lex_state = 233}, [7149] = {.lex_state = 203}, - [7150] = {.lex_state = 393}, - [7151] = {.lex_state = 231}, - [7152] = {.lex_state = 226}, - [7153] = {.lex_state = 233}, - [7154] = {.lex_state = 203}, - [7155] = {.lex_state = 203}, + [7150] = {.lex_state = 226}, + [7151] = {.lex_state = 393}, + [7152] = {.lex_state = 203}, + [7153] = {.lex_state = 284}, + [7154] = {.lex_state = 393}, + [7155] = {.lex_state = 393}, [7156] = {.lex_state = 203}, - [7157] = {.lex_state = 226}, - [7158] = {.lex_state = 203}, - [7159] = {.lex_state = 393}, - [7160] = {.lex_state = 233}, - [7161] = {.lex_state = 233}, - [7162] = {.lex_state = 284}, - [7163] = {.lex_state = 281}, - [7164] = {.lex_state = 393}, - [7165] = {.lex_state = 0}, - [7166] = {.lex_state = 226}, - [7167] = {.lex_state = 393}, - [7168] = {.lex_state = 226}, - [7169] = {.lex_state = 226}, - [7170] = {.lex_state = 231}, - [7171] = {.lex_state = 226}, - [7172] = {.lex_state = 281}, - [7173] = {.lex_state = 281}, - [7174] = {.lex_state = 226}, - [7175] = {.lex_state = 226}, - [7176] = {.lex_state = 281}, - [7177] = {.lex_state = 393}, - [7178] = {.lex_state = 281}, + [7157] = {.lex_state = 203}, + [7158] = {.lex_state = 393}, + [7159] = {.lex_state = 233}, + [7160] = {.lex_state = 203}, + [7161] = {.lex_state = 203}, + [7162] = {.lex_state = 203}, + [7163] = {.lex_state = 203}, + [7164] = {.lex_state = 203}, + [7165] = {.lex_state = 233}, + [7166] = {.lex_state = 203}, + [7167] = {.lex_state = 233}, + [7168] = {.lex_state = 203}, + [7169] = {.lex_state = 203}, + [7170] = {.lex_state = 203}, + [7171] = {.lex_state = 231}, + [7172] = {.lex_state = 237}, + [7173] = {.lex_state = 203}, + [7174] = {.lex_state = 203}, + [7175] = {.lex_state = 237}, + [7176] = {.lex_state = 203}, + [7177] = {.lex_state = 226}, + [7178] = {.lex_state = 203}, [7179] = {.lex_state = 393}, - [7180] = {.lex_state = 281}, - [7181] = {.lex_state = 226}, - [7182] = {.lex_state = 281}, - [7183] = {.lex_state = 281}, - [7184] = {.lex_state = 226}, - [7185] = {.lex_state = 281}, + [7180] = {.lex_state = 226}, + [7181] = {.lex_state = 203}, + [7182] = {.lex_state = 203}, + [7183] = {.lex_state = 226}, + [7184] = {.lex_state = 237}, + [7185] = {.lex_state = 203}, [7186] = {.lex_state = 226}, - [7187] = {.lex_state = 226}, - [7188] = {.lex_state = 281}, - [7189] = {.lex_state = 281}, - [7190] = {.lex_state = 281}, - [7191] = {.lex_state = 226}, - [7192] = {.lex_state = 226}, - [7193] = {.lex_state = 226}, - [7194] = {.lex_state = 393}, - [7195] = {.lex_state = 281}, - [7196] = {.lex_state = 226}, - [7197] = {.lex_state = 226}, + [7187] = {.lex_state = 393}, + [7188] = {.lex_state = 203}, + [7189] = {.lex_state = 226}, + [7190] = {.lex_state = 226}, + [7191] = {.lex_state = 281}, + [7192] = {.lex_state = 281}, + [7193] = {.lex_state = 0}, + [7194] = {.lex_state = 226}, + [7195] = {.lex_state = 393}, + [7196] = {.lex_state = 0}, + [7197] = {.lex_state = 393}, [7198] = {.lex_state = 226}, - [7199] = {.lex_state = 226}, - [7200] = {.lex_state = 281}, - [7201] = {.lex_state = 226}, - [7202] = {.lex_state = 0}, - [7203] = {.lex_state = 281}, - [7204] = {.lex_state = 281}, + [7199] = {.lex_state = 281}, + [7200] = {.lex_state = 226}, + [7201] = {.lex_state = 281}, + [7202] = {.lex_state = 393}, + [7203] = {.lex_state = 231}, + [7204] = {.lex_state = 233}, [7205] = {.lex_state = 226}, [7206] = {.lex_state = 226}, - [7207] = {.lex_state = 203}, - [7208] = {.lex_state = 226}, + [7207] = {.lex_state = 226}, + [7208] = {.lex_state = 281}, [7209] = {.lex_state = 226}, - [7210] = {.lex_state = 203}, + [7210] = {.lex_state = 226}, [7211] = {.lex_state = 281}, - [7212] = {.lex_state = 281}, - [7213] = {.lex_state = 0}, - [7214] = {.lex_state = 226}, + [7212] = {.lex_state = 226}, + [7213] = {.lex_state = 281}, + [7214] = {.lex_state = 203}, [7215] = {.lex_state = 226}, - [7216] = {.lex_state = 206}, + [7216] = {.lex_state = 281}, [7217] = {.lex_state = 226}, - [7218] = {.lex_state = 393}, + [7218] = {.lex_state = 203}, [7219] = {.lex_state = 226}, - [7220] = {.lex_state = 203}, - [7221] = {.lex_state = 226}, + [7220] = {.lex_state = 226}, + [7221] = {.lex_state = 0}, [7222] = {.lex_state = 226}, - [7223] = {.lex_state = 203}, - [7224] = {.lex_state = 226}, - [7225] = {.lex_state = 226}, - [7226] = {.lex_state = 203}, - [7227] = {.lex_state = 206}, - [7228] = {.lex_state = 393}, - [7229] = {.lex_state = 226}, + [7223] = {.lex_state = 281}, + [7224] = {.lex_state = 281}, + [7225] = {.lex_state = 281}, + [7226] = {.lex_state = 226}, + [7227] = {.lex_state = 226}, + [7228] = {.lex_state = 281}, + [7229] = {.lex_state = 281}, [7230] = {.lex_state = 226}, - [7231] = {.lex_state = 226}, + [7231] = {.lex_state = 281}, [7232] = {.lex_state = 226}, [7233] = {.lex_state = 226}, [7234] = {.lex_state = 226}, - [7235] = {.lex_state = 206}, + [7235] = {.lex_state = 281}, [7236] = {.lex_state = 226}, - [7237] = {.lex_state = 264}, + [7237] = {.lex_state = 226}, [7238] = {.lex_state = 281}, [7239] = {.lex_state = 226}, - [7240] = {.lex_state = 226}, - [7241] = {.lex_state = 206}, - [7242] = {.lex_state = 226}, - [7243] = {.lex_state = 226}, - [7244] = {.lex_state = 226}, + [7240] = {.lex_state = 284}, + [7241] = {.lex_state = 393}, + [7242] = {.lex_state = 393}, + [7243] = {.lex_state = 281}, + [7244] = {.lex_state = 281}, [7245] = {.lex_state = 206}, - [7246] = {.lex_state = 203}, - [7247] = {.lex_state = 206}, - [7248] = {.lex_state = 226}, + [7246] = {.lex_state = 226}, + [7247] = {.lex_state = 203}, + [7248] = {.lex_state = 206}, [7249] = {.lex_state = 226}, - [7250] = {.lex_state = 264}, - [7251] = {.lex_state = 393}, - [7252] = {.lex_state = 226}, - [7253] = {.lex_state = 226}, + [7250] = {.lex_state = 226}, + [7251] = {.lex_state = 281}, + [7252] = {.lex_state = 264}, + [7253] = {.lex_state = 264}, [7254] = {.lex_state = 226}, [7255] = {.lex_state = 226}, [7256] = {.lex_state = 226}, [7257] = {.lex_state = 226}, - [7258] = {.lex_state = 206}, - [7259] = {.lex_state = 226}, + [7258] = {.lex_state = 226}, + [7259] = {.lex_state = 203}, [7260] = {.lex_state = 226}, [7261] = {.lex_state = 226}, - [7262] = {.lex_state = 393}, - [7263] = {.lex_state = 226}, + [7262] = {.lex_state = 226}, + [7263] = {.lex_state = 393}, [7264] = {.lex_state = 226}, [7265] = {.lex_state = 226}, - [7266] = {.lex_state = 226}, + [7266] = {.lex_state = 393}, [7267] = {.lex_state = 226}, [7268] = {.lex_state = 226}, [7269] = {.lex_state = 226}, [7270] = {.lex_state = 226}, [7271] = {.lex_state = 226}, - [7272] = {.lex_state = 226}, + [7272] = {.lex_state = 206}, [7273] = {.lex_state = 226}, - [7274] = {.lex_state = 226}, - [7275] = {.lex_state = 226}, + [7274] = {.lex_state = 206}, + [7275] = {.lex_state = 393}, [7276] = {.lex_state = 226}, - [7277] = {.lex_state = 226}, - [7278] = {.lex_state = 226}, + [7277] = {.lex_state = 206}, + [7278] = {.lex_state = 206}, [7279] = {.lex_state = 393}, - [7280] = {.lex_state = 226}, + [7280] = {.lex_state = 203}, [7281] = {.lex_state = 226}, - [7282] = {.lex_state = 226}, - [7283] = {.lex_state = 226}, + [7282] = {.lex_state = 203}, + [7283] = {.lex_state = 393}, [7284] = {.lex_state = 226}, [7285] = {.lex_state = 226}, [7286] = {.lex_state = 226}, - [7287] = {.lex_state = 226}, - [7288] = {.lex_state = 393}, + [7287] = {.lex_state = 393}, + [7288] = {.lex_state = 226}, [7289] = {.lex_state = 226}, [7290] = {.lex_state = 226}, - [7291] = {.lex_state = 118}, - [7292] = {.lex_state = 281}, + [7291] = {.lex_state = 226}, + [7292] = {.lex_state = 226}, [7293] = {.lex_state = 226}, - [7294] = {.lex_state = 393}, - [7295] = {.lex_state = 281}, - [7296] = {.lex_state = 203}, - [7297] = {.lex_state = 281}, + [7294] = {.lex_state = 226}, + [7295] = {.lex_state = 226}, + [7296] = {.lex_state = 206}, + [7297] = {.lex_state = 226}, [7298] = {.lex_state = 226}, - [7299] = {.lex_state = 0}, + [7299] = {.lex_state = 226}, [7300] = {.lex_state = 226}, [7301] = {.lex_state = 226}, - [7302] = {.lex_state = 120}, - [7303] = {.lex_state = 206}, - [7304] = {.lex_state = 206}, - [7305] = {.lex_state = 393}, - [7306] = {.lex_state = 281}, - [7307] = {.lex_state = 206}, + [7302] = {.lex_state = 226}, + [7303] = {.lex_state = 226}, + [7304] = {.lex_state = 226}, + [7305] = {.lex_state = 226}, + [7306] = {.lex_state = 226}, + [7307] = {.lex_state = 226}, [7308] = {.lex_state = 226}, - [7309] = {.lex_state = 206}, - [7310] = {.lex_state = 0}, - [7311] = {.lex_state = 206}, + [7309] = {.lex_state = 226}, + [7310] = {.lex_state = 226}, + [7311] = {.lex_state = 226}, [7312] = {.lex_state = 226}, [7313] = {.lex_state = 226}, - [7314] = {.lex_state = 206}, - [7315] = {.lex_state = 203}, - [7316] = {.lex_state = 118}, - [7317] = {.lex_state = 120}, - [7318] = {.lex_state = 393}, + [7314] = {.lex_state = 226}, + [7315] = {.lex_state = 226}, + [7316] = {.lex_state = 226}, + [7317] = {.lex_state = 226}, + [7318] = {.lex_state = 226}, [7319] = {.lex_state = 226}, - [7320] = {.lex_state = 206}, - [7321] = {.lex_state = 226}, + [7320] = {.lex_state = 226}, + [7321] = {.lex_state = 393}, [7322] = {.lex_state = 118}, - [7323] = {.lex_state = 120}, + [7323] = {.lex_state = 226}, [7324] = {.lex_state = 226}, - [7325] = {.lex_state = 226}, - [7326] = {.lex_state = 226}, - [7327] = {.lex_state = 226}, - [7328] = {.lex_state = 393}, - [7329] = {.lex_state = 203}, - [7330] = {.lex_state = 226}, - [7331] = {.lex_state = 203}, - [7332] = {.lex_state = 393}, - [7333] = {.lex_state = 226}, + [7325] = {.lex_state = 206}, + [7326] = {.lex_state = 206}, + [7327] = {.lex_state = 206}, + [7328] = {.lex_state = 206}, + [7329] = {.lex_state = 206}, + [7330] = {.lex_state = 206}, + [7331] = {.lex_state = 120}, + [7332] = {.lex_state = 206}, + [7333] = {.lex_state = 206}, [7334] = {.lex_state = 393}, - [7335] = {.lex_state = 120}, + [7335] = {.lex_state = 393}, [7336] = {.lex_state = 393}, - [7337] = {.lex_state = 393}, - [7338] = {.lex_state = 203}, + [7337] = {.lex_state = 206}, + [7338] = {.lex_state = 393}, [7339] = {.lex_state = 393}, [7340] = {.lex_state = 206}, [7341] = {.lex_state = 393}, - [7342] = {.lex_state = 121}, - [7343] = {.lex_state = 203}, + [7342] = {.lex_state = 393}, + [7343] = {.lex_state = 0}, [7344] = {.lex_state = 226}, - [7345] = {.lex_state = 120}, - [7346] = {.lex_state = 118}, - [7347] = {.lex_state = 0}, - [7348] = {.lex_state = 121}, - [7349] = {.lex_state = 226}, + [7345] = {.lex_state = 393}, + [7346] = {.lex_state = 393}, + [7347] = {.lex_state = 226}, + [7348] = {.lex_state = 393}, + [7349] = {.lex_state = 393}, [7350] = {.lex_state = 226}, - [7351] = {.lex_state = 393}, - [7352] = {.lex_state = 206}, - [7353] = {.lex_state = 226}, - [7354] = {.lex_state = 203}, - [7355] = {.lex_state = 203}, - [7356] = {.lex_state = 206}, - [7357] = {.lex_state = 226}, - [7358] = {.lex_state = 203}, + [7351] = {.lex_state = 226}, + [7352] = {.lex_state = 226}, + [7353] = {.lex_state = 393}, + [7354] = {.lex_state = 393}, + [7355] = {.lex_state = 226}, + [7356] = {.lex_state = 393}, + [7357] = {.lex_state = 393}, + [7358] = {.lex_state = 393}, [7359] = {.lex_state = 393}, - [7360] = {.lex_state = 393}, + [7360] = {.lex_state = 226}, [7361] = {.lex_state = 206}, [7362] = {.lex_state = 206}, - [7363] = {.lex_state = 118}, - [7364] = {.lex_state = 120}, - [7365] = {.lex_state = 206}, - [7366] = {.lex_state = 0}, - [7367] = {.lex_state = 226}, - [7368] = {.lex_state = 393}, - [7369] = {.lex_state = 206}, - [7370] = {.lex_state = 0}, - [7371] = {.lex_state = 393}, + [7363] = {.lex_state = 206}, + [7364] = {.lex_state = 0}, + [7365] = {.lex_state = 226}, + [7366] = {.lex_state = 226}, + [7367] = {.lex_state = 120}, + [7368] = {.lex_state = 226}, + [7369] = {.lex_state = 226}, + [7370] = {.lex_state = 203}, + [7371] = {.lex_state = 226}, [7372] = {.lex_state = 393}, - [7373] = {.lex_state = 393}, - [7374] = {.lex_state = 281}, - [7375] = {.lex_state = 203}, - [7376] = {.lex_state = 203}, - [7377] = {.lex_state = 121}, - [7378] = {.lex_state = 203}, - [7379] = {.lex_state = 203}, - [7380] = {.lex_state = 120}, - [7381] = {.lex_state = 203}, - [7382] = {.lex_state = 226}, + [7373] = {.lex_state = 203}, + [7374] = {.lex_state = 121}, + [7375] = {.lex_state = 264}, + [7376] = {.lex_state = 226}, + [7377] = {.lex_state = 393}, + [7378] = {.lex_state = 120}, + [7379] = {.lex_state = 121}, + [7380] = {.lex_state = 393}, + [7381] = {.lex_state = 206}, + [7382] = {.lex_state = 118}, [7383] = {.lex_state = 393}, - [7384] = {.lex_state = 0}, - [7385] = {.lex_state = 226}, - [7386] = {.lex_state = 226}, + [7384] = {.lex_state = 120}, + [7385] = {.lex_state = 393}, + [7386] = {.lex_state = 393}, [7387] = {.lex_state = 393}, - [7388] = {.lex_state = 226}, - [7389] = {.lex_state = 203}, - [7390] = {.lex_state = 226}, - [7391] = {.lex_state = 0}, - [7392] = {.lex_state = 226}, - [7393] = {.lex_state = 226}, - [7394] = {.lex_state = 203}, - [7395] = {.lex_state = 120}, - [7396] = {.lex_state = 393}, - [7397] = {.lex_state = 206}, + [7388] = {.lex_state = 121}, + [7389] = {.lex_state = 226}, + [7390] = {.lex_state = 206}, + [7391] = {.lex_state = 393}, + [7392] = {.lex_state = 393}, + [7393] = {.lex_state = 206}, + [7394] = {.lex_state = 226}, + [7395] = {.lex_state = 118}, + [7396] = {.lex_state = 120}, + [7397] = {.lex_state = 0}, [7398] = {.lex_state = 203}, - [7399] = {.lex_state = 203}, - [7400] = {.lex_state = 393}, - [7401] = {.lex_state = 206}, - [7402] = {.lex_state = 393}, - [7403] = {.lex_state = 206}, - [7404] = {.lex_state = 393}, - [7405] = {.lex_state = 226}, - [7406] = {.lex_state = 226}, - [7407] = {.lex_state = 120}, - [7408] = {.lex_state = 118}, - [7409] = {.lex_state = 120}, + [7399] = {.lex_state = 226}, + [7400] = {.lex_state = 226}, + [7401] = {.lex_state = 281}, + [7402] = {.lex_state = 206}, + [7403] = {.lex_state = 0}, + [7404] = {.lex_state = 281}, + [7405] = {.lex_state = 393}, + [7406] = {.lex_state = 206}, + [7407] = {.lex_state = 0}, + [7408] = {.lex_state = 393}, + [7409] = {.lex_state = 281}, [7410] = {.lex_state = 206}, - [7411] = {.lex_state = 0}, + [7411] = {.lex_state = 203}, [7412] = {.lex_state = 393}, - [7413] = {.lex_state = 226}, - [7414] = {.lex_state = 0}, + [7413] = {.lex_state = 203}, + [7414] = {.lex_state = 226}, [7415] = {.lex_state = 226}, - [7416] = {.lex_state = 393}, - [7417] = {.lex_state = 120}, - [7418] = {.lex_state = 118}, - [7419] = {.lex_state = 0}, - [7420] = {.lex_state = 120}, - [7421] = {.lex_state = 393}, - [7422] = {.lex_state = 118}, - [7423] = {.lex_state = 226}, - [7424] = {.lex_state = 226}, - [7425] = {.lex_state = 120}, + [7416] = {.lex_state = 281}, + [7417] = {.lex_state = 206}, + [7418] = {.lex_state = 226}, + [7419] = {.lex_state = 226}, + [7420] = {.lex_state = 203}, + [7421] = {.lex_state = 226}, + [7422] = {.lex_state = 281}, + [7423] = {.lex_state = 206}, + [7424] = {.lex_state = 393}, + [7425] = {.lex_state = 226}, [7426] = {.lex_state = 226}, - [7427] = {.lex_state = 203}, - [7428] = {.lex_state = 203}, - [7429] = {.lex_state = 206}, - [7430] = {.lex_state = 203}, - [7431] = {.lex_state = 226}, + [7427] = {.lex_state = 206}, + [7428] = {.lex_state = 281}, + [7429] = {.lex_state = 120}, + [7430] = {.lex_state = 206}, + [7431] = {.lex_state = 121}, [7432] = {.lex_state = 226}, - [7433] = {.lex_state = 120}, - [7434] = {.lex_state = 203}, - [7435] = {.lex_state = 281}, - [7436] = {.lex_state = 0}, + [7433] = {.lex_state = 393}, + [7434] = {.lex_state = 206}, + [7435] = {.lex_state = 206}, + [7436] = {.lex_state = 206}, [7437] = {.lex_state = 118}, - [7438] = {.lex_state = 393}, - [7439] = {.lex_state = 206}, - [7440] = {.lex_state = 226}, - [7441] = {.lex_state = 226}, - [7442] = {.lex_state = 206}, - [7443] = {.lex_state = 203}, - [7444] = {.lex_state = 393}, + [7438] = {.lex_state = 120}, + [7439] = {.lex_state = 393}, + [7440] = {.lex_state = 393}, + [7441] = {.lex_state = 203}, + [7442] = {.lex_state = 226}, + [7443] = {.lex_state = 0}, + [7444] = {.lex_state = 281}, [7445] = {.lex_state = 226}, - [7446] = {.lex_state = 226}, - [7447] = {.lex_state = 393}, - [7448] = {.lex_state = 206}, - [7449] = {.lex_state = 226}, - [7450] = {.lex_state = 393}, - [7451] = {.lex_state = 120}, - [7452] = {.lex_state = 120}, - [7453] = {.lex_state = 393}, - [7454] = {.lex_state = 120}, - [7455] = {.lex_state = 226}, - [7456] = {.lex_state = 203}, + [7446] = {.lex_state = 206}, + [7447] = {.lex_state = 226}, + [7448] = {.lex_state = 393}, + [7449] = {.lex_state = 206}, + [7450] = {.lex_state = 0}, + [7451] = {.lex_state = 393}, + [7452] = {.lex_state = 118}, + [7453] = {.lex_state = 203}, + [7454] = {.lex_state = 226}, + [7455] = {.lex_state = 203}, + [7456] = {.lex_state = 226}, [7457] = {.lex_state = 226}, - [7458] = {.lex_state = 226}, - [7459] = {.lex_state = 226}, - [7460] = {.lex_state = 206}, - [7461] = {.lex_state = 203}, - [7462] = {.lex_state = 118}, - [7463] = {.lex_state = 264}, - [7464] = {.lex_state = 203}, + [7458] = {.lex_state = 203}, + [7459] = {.lex_state = 203}, + [7460] = {.lex_state = 203}, + [7461] = {.lex_state = 226}, + [7462] = {.lex_state = 226}, + [7463] = {.lex_state = 226}, + [7464] = {.lex_state = 226}, [7465] = {.lex_state = 120}, - [7466] = {.lex_state = 0}, - [7467] = {.lex_state = 206}, - [7468] = {.lex_state = 118}, - [7469] = {.lex_state = 0}, - [7470] = {.lex_state = 120}, - [7471] = {.lex_state = 206}, + [7466] = {.lex_state = 121}, + [7467] = {.lex_state = 393}, + [7468] = {.lex_state = 203}, + [7469] = {.lex_state = 206}, + [7470] = {.lex_state = 118}, + [7471] = {.lex_state = 120}, [7472] = {.lex_state = 393}, - [7473] = {.lex_state = 393}, - [7474] = {.lex_state = 0}, - [7475] = {.lex_state = 206}, - [7476] = {.lex_state = 120}, - [7477] = {.lex_state = 206}, - [7478] = {.lex_state = 393}, - [7479] = {.lex_state = 281}, - [7480] = {.lex_state = 206}, + [7473] = {.lex_state = 226}, + [7474] = {.lex_state = 393}, + [7475] = {.lex_state = 203}, + [7476] = {.lex_state = 226}, + [7477] = {.lex_state = 393}, + [7478] = {.lex_state = 226}, + [7479] = {.lex_state = 206}, + [7480] = {.lex_state = 0}, [7481] = {.lex_state = 393}, - [7482] = {.lex_state = 206}, - [7483] = {.lex_state = 281}, - [7484] = {.lex_state = 393}, + [7482] = {.lex_state = 226}, + [7483] = {.lex_state = 393}, + [7484] = {.lex_state = 203}, [7485] = {.lex_state = 226}, - [7486] = {.lex_state = 121}, - [7487] = {.lex_state = 226}, - [7488] = {.lex_state = 206}, - [7489] = {.lex_state = 393}, - [7490] = {.lex_state = 120}, - [7491] = {.lex_state = 203}, + [7486] = {.lex_state = 226}, + [7487] = {.lex_state = 393}, + [7488] = {.lex_state = 203}, + [7489] = {.lex_state = 203}, + [7490] = {.lex_state = 226}, + [7491] = {.lex_state = 226}, [7492] = {.lex_state = 120}, - [7493] = {.lex_state = 206}, - [7494] = {.lex_state = 120}, - [7495] = {.lex_state = 118}, - [7496] = {.lex_state = 226}, - [7497] = {.lex_state = 206}, - [7498] = {.lex_state = 226}, - [7499] = {.lex_state = 120}, - [7500] = {.lex_state = 206}, - [7501] = {.lex_state = 203}, - [7502] = {.lex_state = 121}, + [7493] = {.lex_state = 281}, + [7494] = {.lex_state = 226}, + [7495] = {.lex_state = 393}, + [7496] = {.lex_state = 206}, + [7497] = {.lex_state = 393}, + [7498] = {.lex_state = 120}, + [7499] = {.lex_state = 121}, + [7500] = {.lex_state = 393}, + [7501] = {.lex_state = 206}, + [7502] = {.lex_state = 120}, [7503] = {.lex_state = 120}, - [7504] = {.lex_state = 120}, - [7505] = {.lex_state = 206}, - [7506] = {.lex_state = 206}, - [7507] = {.lex_state = 0}, - [7508] = {.lex_state = 393}, - [7509] = {.lex_state = 121}, - [7510] = {.lex_state = 393}, - [7511] = {.lex_state = 281}, - [7512] = {.lex_state = 120}, - [7513] = {.lex_state = 393}, - [7514] = {.lex_state = 226}, - [7515] = {.lex_state = 0}, + [7504] = {.lex_state = 118}, + [7505] = {.lex_state = 120}, + [7506] = {.lex_state = 120}, + [7507] = {.lex_state = 118}, + [7508] = {.lex_state = 281}, + [7509] = {.lex_state = 120}, + [7510] = {.lex_state = 206}, + [7511] = {.lex_state = 120}, + [7512] = {.lex_state = 0}, + [7513] = {.lex_state = 226}, + [7514] = {.lex_state = 120}, + [7515] = {.lex_state = 393}, [7516] = {.lex_state = 120}, - [7517] = {.lex_state = 118}, - [7518] = {.lex_state = 226}, - [7519] = {.lex_state = 206}, - [7520] = {.lex_state = 120}, - [7521] = {.lex_state = 393}, - [7522] = {.lex_state = 206}, - [7523] = {.lex_state = 226}, - [7524] = {.lex_state = 120}, - [7525] = {.lex_state = 206}, - [7526] = {.lex_state = 121}, - [7527] = {.lex_state = 118}, - [7528] = {.lex_state = 120}, - [7529] = {.lex_state = 0}, - [7530] = {.lex_state = 393}, - [7531] = {.lex_state = 203}, - [7532] = {.lex_state = 393}, - [7533] = {.lex_state = 203}, - [7534] = {.lex_state = 393}, - [7535] = {.lex_state = 226}, + [7517] = {.lex_state = 393}, + [7518] = {.lex_state = 0}, + [7519] = {.lex_state = 393}, + [7520] = {.lex_state = 206}, + [7521] = {.lex_state = 0}, + [7522] = {.lex_state = 120}, + [7523] = {.lex_state = 393}, + [7524] = {.lex_state = 203}, + [7525] = {.lex_state = 120}, + [7526] = {.lex_state = 0}, + [7527] = {.lex_state = 121}, + [7528] = {.lex_state = 226}, + [7529] = {.lex_state = 120}, + [7530] = {.lex_state = 120}, + [7531] = {.lex_state = 393}, + [7532] = {.lex_state = 206}, + [7533] = {.lex_state = 226}, + [7534] = {.lex_state = 120}, + [7535] = {.lex_state = 120}, [7536] = {.lex_state = 226}, - [7537] = {.lex_state = 393}, - [7538] = {.lex_state = 393}, - [7539] = {.lex_state = 393}, - [7540] = {.lex_state = 226}, - [7541] = {.lex_state = 226}, - [7542] = {.lex_state = 120}, - [7543] = {.lex_state = 203}, - [7544] = {.lex_state = 226}, - [7545] = {.lex_state = 121}, - [7546] = {.lex_state = 393}, - [7547] = {.lex_state = 120}, - [7548] = {.lex_state = 0}, - [7549] = {.lex_state = 206}, - [7550] = {.lex_state = 226}, - [7551] = {.lex_state = 393}, - [7552] = {.lex_state = 281}, - [7553] = {.lex_state = 226}, - [7554] = {.lex_state = 120}, - [7555] = {.lex_state = 203}, - [7556] = {.lex_state = 226}, + [7537] = {.lex_state = 0}, + [7538] = {.lex_state = 120}, + [7539] = {.lex_state = 120}, + [7540] = {.lex_state = 206}, + [7541] = {.lex_state = 121}, + [7542] = {.lex_state = 0}, + [7543] = {.lex_state = 120}, + [7544] = {.lex_state = 120}, + [7545] = {.lex_state = 393}, + [7546] = {.lex_state = 0}, + [7547] = {.lex_state = 203}, + [7548] = {.lex_state = 120}, + [7549] = {.lex_state = 118}, + [7550] = {.lex_state = 203}, + [7551] = {.lex_state = 120}, + [7552] = {.lex_state = 203}, + [7553] = {.lex_state = 0}, + [7554] = {.lex_state = 226}, + [7555] = {.lex_state = 120}, + [7556] = {.lex_state = 118}, [7557] = {.lex_state = 226}, - [7558] = {.lex_state = 203}, - [7559] = {.lex_state = 226}, - [7560] = {.lex_state = 120}, + [7558] = {.lex_state = 206}, + [7559] = {.lex_state = 120}, + [7560] = {.lex_state = 118}, [7561] = {.lex_state = 120}, - [7562] = {.lex_state = 0}, - [7563] = {.lex_state = 120}, - [7564] = {.lex_state = 206}, - [7565] = {.lex_state = 226}, - [7566] = {.lex_state = 203}, - [7567] = {.lex_state = 393}, - [7568] = {.lex_state = 281}, - [7569] = {.lex_state = 120}, + [7562] = {.lex_state = 226}, + [7563] = {.lex_state = 203}, + [7564] = {.lex_state = 203}, + [7565] = {.lex_state = 203}, + [7566] = {.lex_state = 0}, + [7567] = {.lex_state = 0}, + [7568] = {.lex_state = 206}, + [7569] = {.lex_state = 281}, [7570] = {.lex_state = 393}, - [7571] = {.lex_state = 0}, - [7572] = {.lex_state = 0}, - [7573] = {.lex_state = 226}, - [7574] = {.lex_state = 226}, + [7571] = {.lex_state = 203}, + [7572] = {.lex_state = 120}, + [7573] = {.lex_state = 118}, + [7574] = {.lex_state = 206}, [7575] = {.lex_state = 203}, - [7576] = {.lex_state = 393}, - [7577] = {.lex_state = 206}, - [7578] = {.lex_state = 393}, - [7579] = {.lex_state = 121}, - [7580] = {.lex_state = 120}, - [7581] = {.lex_state = 206}, - [7582] = {.lex_state = 120}, - [7583] = {.lex_state = 393}, - [7584] = {.lex_state = 393}, - [7585] = {.lex_state = 281}, - [7586] = {.lex_state = 120}, - [7587] = {.lex_state = 203}, - [7588] = {.lex_state = 120}, - [7589] = {.lex_state = 118}, - [7590] = {.lex_state = 393}, + [7576] = {.lex_state = 203}, + [7577] = {.lex_state = 120}, + [7578] = {.lex_state = 281}, + [7579] = {.lex_state = 226}, + [7580] = {.lex_state = 281}, + [7581] = {.lex_state = 226}, + [7582] = {.lex_state = 203}, + [7583] = {.lex_state = 226}, + [7584] = {.lex_state = 226}, + [7585] = {.lex_state = 226}, + [7586] = {.lex_state = 203}, + [7587] = {.lex_state = 0}, + [7588] = {.lex_state = 0}, + [7589] = {.lex_state = 206}, + [7590] = {.lex_state = 118}, [7591] = {.lex_state = 226}, - [7592] = {.lex_state = 226}, + [7592] = {.lex_state = 203}, [7593] = {.lex_state = 393}, - [7594] = {.lex_state = 206}, - [7595] = {.lex_state = 206}, - [7596] = {.lex_state = 226}, - [7597] = {.lex_state = 0}, + [7594] = {.lex_state = 120}, + [7595] = {.lex_state = 120}, + [7596] = {.lex_state = 118}, + [7597] = {.lex_state = 206}, [7598] = {.lex_state = 206}, - [7599] = {.lex_state = 0}, - [7600] = {.lex_state = 226}, - [7601] = {.lex_state = 120}, - [7602] = {.lex_state = 393}, - [7603] = {.lex_state = 206}, - [7604] = {.lex_state = 203}, - [7605] = {.lex_state = 0}, - [7606] = {.lex_state = 226}, + [7599] = {.lex_state = 121}, + [7600] = {.lex_state = 120}, + [7601] = {.lex_state = 393}, + [7602] = {.lex_state = 206}, + [7603] = {.lex_state = 120}, + [7604] = {.lex_state = 0}, + [7605] = {.lex_state = 226}, + [7606] = {.lex_state = 203}, [7607] = {.lex_state = 226}, - [7608] = {.lex_state = 0}, - [7609] = {.lex_state = 206}, - [7610] = {.lex_state = 206}, - [7611] = {.lex_state = 0}, - [7612] = {.lex_state = 0}, - [7613] = {.lex_state = 0}, + [7608] = {.lex_state = 226}, + [7609] = {.lex_state = 203}, + [7610] = {.lex_state = 118}, + [7611] = {.lex_state = 226}, + [7612] = {.lex_state = 120}, + [7613] = {.lex_state = 226}, [7614] = {.lex_state = 0}, - [7615] = {.lex_state = 0}, - [7616] = {.lex_state = 226}, - [7617] = {.lex_state = 0}, - [7618] = {.lex_state = 393}, - [7619] = {.lex_state = 206}, - [7620] = {.lex_state = 206}, - [7621] = {.lex_state = 393}, - [7622] = {.lex_state = 206}, - [7623] = {.lex_state = 206}, + [7615] = {.lex_state = 206}, + [7616] = {.lex_state = 393}, + [7617] = {.lex_state = 226}, + [7618] = {.lex_state = 120}, + [7619] = {.lex_state = 0}, + [7620] = {.lex_state = 203}, + [7621] = {.lex_state = 203}, + [7622] = {.lex_state = 203}, + [7623] = {.lex_state = 393}, [7624] = {.lex_state = 226}, - [7625] = {.lex_state = 206}, - [7626] = {.lex_state = 123}, - [7627] = {.lex_state = 118}, - [7628] = {.lex_state = 393}, - [7629] = {.lex_state = 206}, - [7630] = {.lex_state = 0}, - [7631] = {.lex_state = 226}, - [7632] = {.lex_state = 0}, - [7633] = {.lex_state = 118}, - [7634] = {.lex_state = 123}, + [7625] = {.lex_state = 226}, + [7626] = {.lex_state = 120}, + [7627] = {.lex_state = 226}, + [7628] = {.lex_state = 206}, + [7629] = {.lex_state = 203}, + [7630] = {.lex_state = 206}, + [7631] = {.lex_state = 203}, + [7632] = {.lex_state = 226}, + [7633] = {.lex_state = 226}, + [7634] = {.lex_state = 393}, [7635] = {.lex_state = 0}, - [7636] = {.lex_state = 0}, - [7637] = {.lex_state = 0}, - [7638] = {.lex_state = 0}, - [7639] = {.lex_state = 0}, - [7640] = {.lex_state = 0}, + [7636] = {.lex_state = 118}, + [7637] = {.lex_state = 226}, + [7638] = {.lex_state = 393}, + [7639] = {.lex_state = 226}, + [7640] = {.lex_state = 393}, [7641] = {.lex_state = 0}, - [7642] = {.lex_state = 226}, - [7643] = {.lex_state = 0}, - [7644] = {.lex_state = 0}, - [7645] = {.lex_state = 393}, - [7646] = {.lex_state = 226}, - [7647] = {.lex_state = 393}, - [7648] = {.lex_state = 393}, - [7649] = {.lex_state = 0}, - [7650] = {.lex_state = 123}, + [7642] = {.lex_state = 206}, + [7643] = {.lex_state = 206}, + [7644] = {.lex_state = 206}, + [7645] = {.lex_state = 226}, + [7646] = {.lex_state = 0}, + [7647] = {.lex_state = 206}, + [7648] = {.lex_state = 206}, + [7649] = {.lex_state = 206}, + [7650] = {.lex_state = 0}, [7651] = {.lex_state = 0}, - [7652] = {.lex_state = 226}, - [7653] = {.lex_state = 0}, - [7654] = {.lex_state = 0}, + [7652] = {.lex_state = 0}, + [7653] = {.lex_state = 393}, + [7654] = {.lex_state = 226}, [7655] = {.lex_state = 0}, [7656] = {.lex_state = 0}, - [7657] = {.lex_state = 0}, - [7658] = {.lex_state = 0}, - [7659] = {.lex_state = 393}, - [7660] = {.lex_state = 118}, - [7661] = {.lex_state = 206}, - [7662] = {.lex_state = 393}, - [7663] = {.lex_state = 226}, + [7657] = {.lex_state = 393}, + [7658] = {.lex_state = 226}, + [7659] = {.lex_state = 0}, + [7660] = {.lex_state = 0}, + [7661] = {.lex_state = 0}, + [7662] = {.lex_state = 206}, + [7663] = {.lex_state = 206}, [7664] = {.lex_state = 0}, - [7665] = {.lex_state = 0}, - [7666] = {.lex_state = 118}, - [7667] = {.lex_state = 0}, - [7668] = {.lex_state = 206}, - [7669] = {.lex_state = 393}, - [7670] = {.lex_state = 0}, - [7671] = {.lex_state = 0}, - [7672] = {.lex_state = 393}, - [7673] = {.lex_state = 226}, - [7674] = {.lex_state = 0}, - [7675] = {.lex_state = 226}, - [7676] = {.lex_state = 0}, - [7677] = {.lex_state = 0}, + [7665] = {.lex_state = 206}, + [7666] = {.lex_state = 206}, + [7667] = {.lex_state = 206}, + [7668] = {.lex_state = 0}, + [7669] = {.lex_state = 0}, + [7670] = {.lex_state = 206}, + [7671] = {.lex_state = 118}, + [7672] = {.lex_state = 123}, + [7673] = {.lex_state = 0}, + [7674] = {.lex_state = 206}, + [7675] = {.lex_state = 206}, + [7676] = {.lex_state = 226}, + [7677] = {.lex_state = 226}, [7678] = {.lex_state = 0}, [7679] = {.lex_state = 206}, - [7680] = {.lex_state = 206}, - [7681] = {.lex_state = 0}, - [7682] = {.lex_state = 206}, - [7683] = {.lex_state = 206}, - [7684] = {.lex_state = 0}, + [7680] = {.lex_state = 0}, + [7681] = {.lex_state = 226}, + [7682] = {.lex_state = 226}, + [7683] = {.lex_state = 0}, + [7684] = {.lex_state = 393}, [7685] = {.lex_state = 0}, [7686] = {.lex_state = 0}, [7687] = {.lex_state = 0}, [7688] = {.lex_state = 0}, - [7689] = {.lex_state = 206}, + [7689] = {.lex_state = 0}, [7690] = {.lex_state = 0}, [7691] = {.lex_state = 0}, - [7692] = {.lex_state = 226}, + [7692] = {.lex_state = 393}, [7693] = {.lex_state = 206}, - [7694] = {.lex_state = 206}, + [7694] = {.lex_state = 0}, [7695] = {.lex_state = 206}, - [7696] = {.lex_state = 206}, - [7697] = {.lex_state = 0}, - [7698] = {.lex_state = 206}, - [7699] = {.lex_state = 206}, - [7700] = {.lex_state = 0}, - [7701] = {.lex_state = 226}, - [7702] = {.lex_state = 0}, - [7703] = {.lex_state = 0}, + [7696] = {.lex_state = 0}, + [7697] = {.lex_state = 226}, + [7698] = {.lex_state = 226}, + [7699] = {.lex_state = 226}, + [7700] = {.lex_state = 118}, + [7701] = {.lex_state = 206}, + [7702] = {.lex_state = 206}, + [7703] = {.lex_state = 206}, [7704] = {.lex_state = 0}, - [7705] = {.lex_state = 0}, + [7705] = {.lex_state = 206}, [7706] = {.lex_state = 0}, - [7707] = {.lex_state = 0}, + [7707] = {.lex_state = 226}, [7708] = {.lex_state = 0}, [7709] = {.lex_state = 0}, - [7710] = {.lex_state = 206}, + [7710] = {.lex_state = 0}, [7711] = {.lex_state = 206}, - [7712] = {.lex_state = 393}, - [7713] = {.lex_state = 206}, - [7714] = {.lex_state = 0}, + [7712] = {.lex_state = 0}, + [7713] = {.lex_state = 0}, + [7714] = {.lex_state = 226}, [7715] = {.lex_state = 206}, - [7716] = {.lex_state = 0}, + [7716] = {.lex_state = 226}, [7717] = {.lex_state = 0}, - [7718] = {.lex_state = 0}, - [7719] = {.lex_state = 226}, - [7720] = {.lex_state = 0}, + [7718] = {.lex_state = 226}, + [7719] = {.lex_state = 0}, + [7720] = {.lex_state = 226}, [7721] = {.lex_state = 0}, - [7722] = {.lex_state = 118}, - [7723] = {.lex_state = 118}, - [7724] = {.lex_state = 226}, - [7725] = {.lex_state = 226}, + [7722] = {.lex_state = 226}, + [7723] = {.lex_state = 0}, + [7724] = {.lex_state = 0}, + [7725] = {.lex_state = 0}, [7726] = {.lex_state = 0}, - [7727] = {.lex_state = 226}, - [7728] = {.lex_state = 0}, - [7729] = {.lex_state = 0}, + [7727] = {.lex_state = 0}, + [7728] = {.lex_state = 206}, + [7729] = {.lex_state = 206}, [7730] = {.lex_state = 206}, - [7731] = {.lex_state = 0}, + [7731] = {.lex_state = 206}, [7732] = {.lex_state = 206}, - [7733] = {.lex_state = 206}, - [7734] = {.lex_state = 118}, + [7733] = {.lex_state = 0}, + [7734] = {.lex_state = 206}, [7735] = {.lex_state = 226}, - [7736] = {.lex_state = 206}, - [7737] = {.lex_state = 0}, + [7736] = {.lex_state = 0}, + [7737] = {.lex_state = 203}, [7738] = {.lex_state = 0}, - [7739] = {.lex_state = 206}, - [7740] = {.lex_state = 118}, + [7739] = {.lex_state = 0}, + [7740] = {.lex_state = 0}, [7741] = {.lex_state = 0}, - [7742] = {.lex_state = 118}, - [7743] = {.lex_state = 0}, - [7744] = {.lex_state = 0}, - [7745] = {.lex_state = 0}, - [7746] = {.lex_state = 206}, - [7747] = {.lex_state = 118}, + [7742] = {.lex_state = 206}, + [7743] = {.lex_state = 206}, + [7744] = {.lex_state = 118}, + [7745] = {.lex_state = 206}, + [7746] = {.lex_state = 0}, + [7747] = {.lex_state = 0}, [7748] = {.lex_state = 0}, - [7749] = {.lex_state = 0}, + [7749] = {.lex_state = 393}, [7750] = {.lex_state = 0}, [7751] = {.lex_state = 0}, [7752] = {.lex_state = 206}, - [7753] = {.lex_state = 206}, - [7754] = {.lex_state = 203}, + [7753] = {.lex_state = 226}, + [7754] = {.lex_state = 226}, [7755] = {.lex_state = 226}, [7756] = {.lex_state = 0}, [7757] = {.lex_state = 0}, - [7758] = {.lex_state = 0}, - [7759] = {.lex_state = 393}, + [7758] = {.lex_state = 393}, + [7759] = {.lex_state = 226}, [7760] = {.lex_state = 0}, - [7761] = {.lex_state = 226}, - [7762] = {.lex_state = 123}, - [7763] = {.lex_state = 0}, - [7764] = {.lex_state = 0}, - [7765] = {.lex_state = 226}, + [7761] = {.lex_state = 189}, + [7762] = {.lex_state = 0}, + [7763] = {.lex_state = 203}, + [7764] = {.lex_state = 206}, + [7765] = {.lex_state = 118}, [7766] = {.lex_state = 393}, - [7767] = {.lex_state = 226}, + [7767] = {.lex_state = 0}, [7768] = {.lex_state = 0}, [7769] = {.lex_state = 393}, - [7770] = {.lex_state = 0}, - [7771] = {.lex_state = 0}, + [7770] = {.lex_state = 206}, + [7771] = {.lex_state = 206}, [7772] = {.lex_state = 226}, - [7773] = {.lex_state = 0}, + [7773] = {.lex_state = 206}, [7774] = {.lex_state = 0}, - [7775] = {.lex_state = 226}, + [7775] = {.lex_state = 123}, [7776] = {.lex_state = 0}, - [7777] = {.lex_state = 0}, + [7777] = {.lex_state = 226}, [7778] = {.lex_state = 0}, [7779] = {.lex_state = 0}, - [7780] = {.lex_state = 226}, + [7780] = {.lex_state = 0}, [7781] = {.lex_state = 0}, - [7782] = {.lex_state = 226}, - [7783] = {.lex_state = 226}, - [7784] = {.lex_state = 0}, - [7785] = {.lex_state = 0}, - [7786] = {.lex_state = 0}, + [7782] = {.lex_state = 206}, + [7783] = {.lex_state = 0}, + [7784] = {.lex_state = 206}, + [7785] = {.lex_state = 206}, + [7786] = {.lex_state = 393}, [7787] = {.lex_state = 0}, - [7788] = {.lex_state = 393}, - [7789] = {.lex_state = 118}, - [7790] = {.lex_state = 393}, - [7791] = {.lex_state = 0}, - [7792] = {.lex_state = 0}, + [7788] = {.lex_state = 0}, + [7789] = {.lex_state = 206}, + [7790] = {.lex_state = 226}, + [7791] = {.lex_state = 393}, + [7792] = {.lex_state = 226}, [7793] = {.lex_state = 0}, - [7794] = {.lex_state = 0}, - [7795] = {.lex_state = 226}, + [7794] = {.lex_state = 226}, + [7795] = {.lex_state = 0}, [7796] = {.lex_state = 0}, [7797] = {.lex_state = 206}, [7798] = {.lex_state = 0}, [7799] = {.lex_state = 0}, - [7800] = {.lex_state = 0}, - [7801] = {.lex_state = 0}, - [7802] = {.lex_state = 0}, - [7803] = {.lex_state = 206}, + [7800] = {.lex_state = 206}, + [7801] = {.lex_state = 206}, + [7802] = {.lex_state = 226}, + [7803] = {.lex_state = 0}, [7804] = {.lex_state = 0}, [7805] = {.lex_state = 206}, [7806] = {.lex_state = 0}, [7807] = {.lex_state = 0}, - [7808] = {.lex_state = 206}, + [7808] = {.lex_state = 0}, [7809] = {.lex_state = 206}, [7810] = {.lex_state = 206}, - [7811] = {.lex_state = 206}, + [7811] = {.lex_state = 0}, [7812] = {.lex_state = 0}, - [7813] = {.lex_state = 0}, - [7814] = {.lex_state = 226}, + [7813] = {.lex_state = 393}, + [7814] = {.lex_state = 206}, [7815] = {.lex_state = 0}, [7816] = {.lex_state = 0}, - [7817] = {.lex_state = 203}, - [7818] = {.lex_state = 393}, - [7819] = {.lex_state = 0}, + [7817] = {.lex_state = 0}, + [7818] = {.lex_state = 0}, + [7819] = {.lex_state = 393}, [7820] = {.lex_state = 0}, [7821] = {.lex_state = 0}, - [7822] = {.lex_state = 206}, - [7823] = {.lex_state = 0}, - [7824] = {.lex_state = 206}, - [7825] = {.lex_state = 226}, + [7822] = {.lex_state = 0}, + [7823] = {.lex_state = 203}, + [7824] = {.lex_state = 0}, + [7825] = {.lex_state = 0}, [7826] = {.lex_state = 0}, - [7827] = {.lex_state = 226}, - [7828] = {.lex_state = 226}, + [7827] = {.lex_state = 0}, + [7828] = {.lex_state = 0}, [7829] = {.lex_state = 0}, [7830] = {.lex_state = 0}, - [7831] = {.lex_state = 206}, - [7832] = {.lex_state = 226}, - [7833] = {.lex_state = 0}, + [7831] = {.lex_state = 0}, + [7832] = {.lex_state = 206}, + [7833] = {.lex_state = 206}, [7834] = {.lex_state = 0}, [7835] = {.lex_state = 206}, - [7836] = {.lex_state = 0}, - [7837] = {.lex_state = 206}, - [7838] = {.lex_state = 0}, - [7839] = {.lex_state = 226}, - [7840] = {.lex_state = 0}, + [7836] = {.lex_state = 206}, + [7837] = {.lex_state = 118}, + [7838] = {.lex_state = 226}, + [7839] = {.lex_state = 0}, + [7840] = {.lex_state = 206}, [7841] = {.lex_state = 0}, [7842] = {.lex_state = 0}, - [7843] = {.lex_state = 0}, - [7844] = {.lex_state = 0}, - [7845] = {.lex_state = 226}, - [7846] = {.lex_state = 0}, - [7847] = {.lex_state = 206}, - [7848] = {.lex_state = 0}, + [7843] = {.lex_state = 226}, + [7844] = {.lex_state = 226}, + [7845] = {.lex_state = 0}, + [7846] = {.lex_state = 226}, + [7847] = {.lex_state = 0}, + [7848] = {.lex_state = 226}, [7849] = {.lex_state = 0}, - [7850] = {.lex_state = 206}, + [7850] = {.lex_state = 0}, [7851] = {.lex_state = 0}, [7852] = {.lex_state = 0}, [7853] = {.lex_state = 0}, - [7854] = {.lex_state = 0}, - [7855] = {.lex_state = 206}, - [7856] = {.lex_state = 206}, + [7854] = {.lex_state = 226}, + [7855] = {.lex_state = 0}, + [7856] = {.lex_state = 0}, [7857] = {.lex_state = 0}, - [7858] = {.lex_state = 226}, - [7859] = {.lex_state = 226}, - [7860] = {.lex_state = 206}, + [7858] = {.lex_state = 0}, + [7859] = {.lex_state = 206}, + [7860] = {.lex_state = 0}, [7861] = {.lex_state = 0}, - [7862] = {.lex_state = 206}, + [7862] = {.lex_state = 0}, [7863] = {.lex_state = 0}, - [7864] = {.lex_state = 0}, - [7865] = {.lex_state = 0}, - [7866] = {.lex_state = 206}, - [7867] = {.lex_state = 0}, - [7868] = {.lex_state = 0}, - [7869] = {.lex_state = 393}, + [7864] = {.lex_state = 226}, + [7865] = {.lex_state = 226}, + [7866] = {.lex_state = 226}, + [7867] = {.lex_state = 206}, + [7868] = {.lex_state = 206}, + [7869] = {.lex_state = 0}, [7870] = {.lex_state = 0}, - [7871] = {.lex_state = 0}, - [7872] = {.lex_state = 226}, - [7873] = {.lex_state = 0}, - [7874] = {.lex_state = 203}, + [7871] = {.lex_state = 206}, + [7872] = {.lex_state = 0}, + [7873] = {.lex_state = 226}, + [7874] = {.lex_state = 118}, [7875] = {.lex_state = 226}, [7876] = {.lex_state = 0}, [7877] = {.lex_state = 0}, - [7878] = {.lex_state = 0}, + [7878] = {.lex_state = 393}, [7879] = {.lex_state = 0}, - [7880] = {.lex_state = 0}, + [7880] = {.lex_state = 206}, [7881] = {.lex_state = 0}, - [7882] = {.lex_state = 393}, - [7883] = {.lex_state = 0}, - [7884] = {.lex_state = 206}, - [7885] = {.lex_state = 226}, + [7882] = {.lex_state = 0}, + [7883] = {.lex_state = 226}, + [7884] = {.lex_state = 0}, + [7885] = {.lex_state = 0}, [7886] = {.lex_state = 0}, - [7887] = {.lex_state = 393}, - [7888] = {.lex_state = 206}, + [7887] = {.lex_state = 0}, + [7888] = {.lex_state = 0}, [7889] = {.lex_state = 0}, - [7890] = {.lex_state = 206}, - [7891] = {.lex_state = 118}, - [7892] = {.lex_state = 0}, - [7893] = {.lex_state = 206}, - [7894] = {.lex_state = 206}, + [7890] = {.lex_state = 0}, + [7891] = {.lex_state = 206}, + [7892] = {.lex_state = 206}, + [7893] = {.lex_state = 0}, + [7894] = {.lex_state = 226}, [7895] = {.lex_state = 0}, - [7896] = {.lex_state = 226}, - [7897] = {.lex_state = 226}, - [7898] = {.lex_state = 393}, - [7899] = {.lex_state = 0}, - [7900] = {.lex_state = 189}, + [7896] = {.lex_state = 0}, + [7897] = {.lex_state = 393}, + [7898] = {.lex_state = 0}, + [7899] = {.lex_state = 226}, + [7900] = {.lex_state = 0}, [7901] = {.lex_state = 0}, [7902] = {.lex_state = 0}, [7903] = {.lex_state = 0}, [7904] = {.lex_state = 0}, - [7905] = {.lex_state = 226}, + [7905] = {.lex_state = 0}, [7906] = {.lex_state = 0}, - [7907] = {.lex_state = 206}, - [7908] = {.lex_state = 393}, - [7909] = {.lex_state = 0}, + [7907] = {.lex_state = 393}, + [7908] = {.lex_state = 226}, + [7909] = {.lex_state = 206}, [7910] = {.lex_state = 0}, [7911] = {.lex_state = 226}, - [7912] = {.lex_state = 226}, - [7913] = {.lex_state = 206}, - [7914] = {.lex_state = 206}, - [7915] = {.lex_state = 206}, + [7912] = {.lex_state = 206}, + [7913] = {.lex_state = 0}, + [7914] = {.lex_state = 0}, + [7915] = {.lex_state = 0}, [7916] = {.lex_state = 0}, - [7917] = {.lex_state = 123}, - [7918] = {.lex_state = 226}, - [7919] = {.lex_state = 226}, - [7920] = {.lex_state = 118}, + [7917] = {.lex_state = 0}, + [7918] = {.lex_state = 0}, + [7919] = {.lex_state = 206}, + [7920] = {.lex_state = 226}, [7921] = {.lex_state = 206}, - [7922] = {.lex_state = 0}, - [7923] = {.lex_state = 0}, - [7924] = {.lex_state = 0}, - [7925] = {.lex_state = 0}, + [7922] = {.lex_state = 118}, + [7923] = {.lex_state = 226}, + [7924] = {.lex_state = 393}, + [7925] = {.lex_state = 206}, [7926] = {.lex_state = 0}, - [7927] = {.lex_state = 206}, + [7927] = {.lex_state = 226}, [7928] = {.lex_state = 0}, - [7929] = {.lex_state = 0}, - [7930] = {.lex_state = 264}, + [7929] = {.lex_state = 206}, + [7930] = {.lex_state = 206}, [7931] = {.lex_state = 0}, [7932] = {.lex_state = 226}, - [7933] = {.lex_state = 226}, - [7934] = {.lex_state = 226}, - [7935] = {.lex_state = 0}, - [7936] = {.lex_state = 0}, + [7933] = {.lex_state = 206}, + [7934] = {.lex_state = 123}, + [7935] = {.lex_state = 226}, + [7936] = {.lex_state = 206}, [7937] = {.lex_state = 0}, [7938] = {.lex_state = 0}, - [7939] = {.lex_state = 226}, - [7940] = {.lex_state = 226}, - [7941] = {.lex_state = 0}, - [7942] = {.lex_state = 206}, + [7939] = {.lex_state = 0}, + [7940] = {.lex_state = 0}, + [7941] = {.lex_state = 206}, + [7942] = {.lex_state = 0}, [7943] = {.lex_state = 0}, - [7944] = {.lex_state = 0}, + [7944] = {.lex_state = 118}, [7945] = {.lex_state = 0}, [7946] = {.lex_state = 0}, [7947] = {.lex_state = 0}, - [7948] = {.lex_state = 226}, - [7949] = {.lex_state = 0}, + [7948] = {.lex_state = 0}, + [7949] = {.lex_state = 393}, [7950] = {.lex_state = 206}, - [7951] = {.lex_state = 206}, - [7952] = {.lex_state = 0}, - [7953] = {.lex_state = 206}, - [7954] = {.lex_state = 206}, + [7951] = {.lex_state = 0}, + [7952] = {.lex_state = 118}, + [7953] = {.lex_state = 0}, + [7954] = {.lex_state = 226}, [7955] = {.lex_state = 226}, [7956] = {.lex_state = 0}, - [7957] = {.lex_state = 0}, - [7958] = {.lex_state = 226}, + [7957] = {.lex_state = 206}, + [7958] = {.lex_state = 0}, [7959] = {.lex_state = 0}, - [7960] = {.lex_state = 226}, + [7960] = {.lex_state = 0}, [7961] = {.lex_state = 0}, - [7962] = {.lex_state = 0}, - [7963] = {.lex_state = 0}, + [7962] = {.lex_state = 206}, + [7963] = {.lex_state = 118}, [7964] = {.lex_state = 0}, - [7965] = {.lex_state = 0}, + [7965] = {.lex_state = 226}, [7966] = {.lex_state = 0}, - [7967] = {.lex_state = 393}, + [7967] = {.lex_state = 118}, [7968] = {.lex_state = 0}, - [7969] = {.lex_state = 0}, + [7969] = {.lex_state = 118}, [7970] = {.lex_state = 0}, [7971] = {.lex_state = 0}, - [7972] = {.lex_state = 206}, + [7972] = {.lex_state = 0}, [7973] = {.lex_state = 206}, - [7974] = {.lex_state = 206}, - [7975] = {.lex_state = 206}, - [7976] = {.lex_state = 206}, - [7977] = {.lex_state = 206}, - [7978] = {.lex_state = 0}, + [7974] = {.lex_state = 0}, + [7975] = {.lex_state = 226}, + [7976] = {.lex_state = 123}, + [7977] = {.lex_state = 0}, + [7978] = {.lex_state = 206}, [7979] = {.lex_state = 0}, - [7980] = {.lex_state = 226}, + [7980] = {.lex_state = 0}, [7981] = {.lex_state = 0}, [7982] = {.lex_state = 0}, [7983] = {.lex_state = 0}, - [7984] = {.lex_state = 0}, + [7984] = {.lex_state = 393}, [7985] = {.lex_state = 0}, [7986] = {.lex_state = 0}, [7987] = {.lex_state = 0}, - [7988] = {.lex_state = 0}, - [7989] = {.lex_state = 226}, + [7988] = {.lex_state = 393}, + [7989] = {.lex_state = 0}, [7990] = {.lex_state = 206}, [7991] = {.lex_state = 206}, - [7992] = {.lex_state = 0}, - [7993] = {.lex_state = 0}, - [7994] = {.lex_state = 206}, - [7995] = {.lex_state = 0}, + [7992] = {.lex_state = 118}, + [7993] = {.lex_state = 123}, + [7994] = {.lex_state = 0}, + [7995] = {.lex_state = 226}, [7996] = {.lex_state = 226}, [7997] = {.lex_state = 0}, - [7998] = {.lex_state = 226}, + [7998] = {.lex_state = 206}, [7999] = {.lex_state = 0}, - [8000] = {.lex_state = 118}, + [8000] = {.lex_state = 0}, [8001] = {.lex_state = 0}, [8002] = {.lex_state = 0}, [8003] = {.lex_state = 0}, [8004] = {.lex_state = 0}, - [8005] = {.lex_state = 206}, + [8005] = {.lex_state = 226}, [8006] = {.lex_state = 0}, - [8007] = {.lex_state = 206}, + [8007] = {.lex_state = 0}, [8008] = {.lex_state = 226}, - [8009] = {.lex_state = 0}, - [8010] = {.lex_state = 226}, + [8009] = {.lex_state = 226}, + [8010] = {.lex_state = 0}, [8011] = {.lex_state = 393}, [8012] = {.lex_state = 0}, - [8013] = {.lex_state = 226}, - [8014] = {.lex_state = 122}, - [8015] = {.lex_state = 226}, + [8013] = {.lex_state = 0}, + [8014] = {.lex_state = 0}, + [8015] = {.lex_state = 264}, [8016] = {.lex_state = 226}, - [8017] = {.lex_state = 226}, - [8018] = {.lex_state = 226}, - [8019] = {.lex_state = 226}, - [8020] = {.lex_state = 226}, - [8021] = {.lex_state = 226}, - [8022] = {.lex_state = 393}, - [8023] = {.lex_state = 226}, - [8024] = {.lex_state = 226}, - [8025] = {.lex_state = 122}, - [8026] = {.lex_state = 393, .external_lex_state = 2}, - [8027] = {.lex_state = 393, .external_lex_state = 2}, - [8028] = {.lex_state = 226}, - [8029] = {.lex_state = 393, .external_lex_state = 2}, - [8030] = {.lex_state = 393, .external_lex_state = 2}, - [8031] = {.lex_state = 393}, - [8032] = {.lex_state = 393, .external_lex_state = 2}, - [8033] = {.lex_state = 393}, - [8034] = {.lex_state = 393, .external_lex_state = 2}, - [8035] = {.lex_state = 393}, - [8036] = {.lex_state = 393, .external_lex_state = 2}, - [8037] = {.lex_state = 393}, - [8038] = {.lex_state = 393, .external_lex_state = 2}, - [8039] = {.lex_state = 393}, - [8040] = {.lex_state = 393, .external_lex_state = 2}, - [8041] = {.lex_state = 393, .external_lex_state = 2}, - [8042] = {.lex_state = 393, .external_lex_state = 2}, + [8017] = {.lex_state = 206}, + [8018] = {.lex_state = 0}, + [8019] = {.lex_state = 0}, + [8020] = {.lex_state = 0}, + [8021] = {.lex_state = 0}, + [8022] = {.lex_state = 0}, + [8023] = {.lex_state = 393}, + [8024] = {.lex_state = 0}, + [8025] = {.lex_state = 0}, + [8026] = {.lex_state = 0}, + [8027] = {.lex_state = 0}, + [8028] = {.lex_state = 0}, + [8029] = {.lex_state = 0}, + [8030] = {.lex_state = 226}, + [8031] = {.lex_state = 226}, + [8032] = {.lex_state = 0}, + [8033] = {.lex_state = 0}, + [8034] = {.lex_state = 0}, + [8035] = {.lex_state = 0}, + [8036] = {.lex_state = 0}, + [8037] = {.lex_state = 0}, + [8038] = {.lex_state = 0}, + [8039] = {.lex_state = 0}, + [8040] = {.lex_state = 0}, + [8041] = {.lex_state = 226}, + [8042] = {.lex_state = 0}, [8043] = {.lex_state = 0}, - [8044] = {.lex_state = 393, .external_lex_state = 2}, + [8044] = {.lex_state = 0}, [8045] = {.lex_state = 0}, - [8046] = {.lex_state = 393, .external_lex_state = 2}, - [8047] = {.lex_state = 393, .external_lex_state = 2}, + [8046] = {.lex_state = 0}, + [8047] = {.lex_state = 0}, [8048] = {.lex_state = 0}, - [8049] = {.lex_state = 393, .external_lex_state = 2}, + [8049] = {.lex_state = 393}, [8050] = {.lex_state = 226}, - [8051] = {.lex_state = 393, .external_lex_state = 2}, + [8051] = {.lex_state = 0}, [8052] = {.lex_state = 226}, - [8053] = {.lex_state = 226}, - [8054] = {.lex_state = 0}, - [8055] = {.lex_state = 0}, - [8056] = {.lex_state = 0}, - [8057] = {.lex_state = 393, .external_lex_state = 2}, - [8058] = {.lex_state = 393}, - [8059] = {.lex_state = 0}, + [8053] = {.lex_state = 0}, + [8054] = {.lex_state = 122}, + [8055] = {.lex_state = 393}, + [8056] = {.lex_state = 393}, + [8057] = {.lex_state = 0}, + [8058] = {.lex_state = 0}, + [8059] = {.lex_state = 226}, [8060] = {.lex_state = 393}, - [8061] = {.lex_state = 0}, + [8061] = {.lex_state = 226}, [8062] = {.lex_state = 0}, - [8063] = {.lex_state = 226}, - [8064] = {.lex_state = 0}, - [8065] = {.lex_state = 0}, + [8063] = {.lex_state = 0}, + [8064] = {.lex_state = 226}, + [8065] = {.lex_state = 393}, [8066] = {.lex_state = 0}, - [8067] = {.lex_state = 393}, - [8068] = {.lex_state = 393}, + [8067] = {.lex_state = 122}, + [8068] = {.lex_state = 0}, [8069] = {.lex_state = 0}, - [8070] = {.lex_state = 393}, - [8071] = {.lex_state = 393, .external_lex_state = 2}, - [8072] = {.lex_state = 393}, - [8073] = {.lex_state = 0}, - [8074] = {.lex_state = 0}, + [8070] = {.lex_state = 0}, + [8071] = {.lex_state = 393}, + [8072] = {.lex_state = 226}, + [8073] = {.lex_state = 393}, + [8074] = {.lex_state = 122}, [8075] = {.lex_state = 0}, - [8076] = {.lex_state = 0}, - [8077] = {.lex_state = 0}, - [8078] = {.lex_state = 0}, - [8079] = {.lex_state = 226}, - [8080] = {.lex_state = 122}, + [8076] = {.lex_state = 226}, + [8077] = {.lex_state = 226}, + [8078] = {.lex_state = 226}, + [8079] = {.lex_state = 0}, + [8080] = {.lex_state = 0}, [8081] = {.lex_state = 0}, - [8082] = {.lex_state = 393, .external_lex_state = 2}, - [8083] = {.lex_state = 0}, - [8084] = {.lex_state = 226}, - [8085] = {.lex_state = 0}, - [8086] = {.lex_state = 393}, - [8087] = {.lex_state = 0}, + [8082] = {.lex_state = 393}, + [8083] = {.lex_state = 226}, + [8084] = {.lex_state = 0}, + [8085] = {.lex_state = 122}, + [8086] = {.lex_state = 0}, + [8087] = {.lex_state = 393}, [8088] = {.lex_state = 0}, - [8089] = {.lex_state = 0}, + [8089] = {.lex_state = 226}, [8090] = {.lex_state = 0}, - [8091] = {.lex_state = 0}, + [8091] = {.lex_state = 226}, [8092] = {.lex_state = 0}, - [8093] = {.lex_state = 0}, + [8093] = {.lex_state = 393}, [8094] = {.lex_state = 0}, - [8095] = {.lex_state = 0}, - [8096] = {.lex_state = 0}, + [8095] = {.lex_state = 393}, + [8096] = {.lex_state = 393}, [8097] = {.lex_state = 0}, - [8098] = {.lex_state = 393}, + [8098] = {.lex_state = 0}, [8099] = {.lex_state = 0}, [8100] = {.lex_state = 0}, - [8101] = {.lex_state = 0}, + [8101] = {.lex_state = 122}, [8102] = {.lex_state = 0}, - [8103] = {.lex_state = 0}, + [8103] = {.lex_state = 393}, [8104] = {.lex_state = 0}, [8105] = {.lex_state = 0}, - [8106] = {.lex_state = 226}, + [8106] = {.lex_state = 393}, [8107] = {.lex_state = 0}, - [8108] = {.lex_state = 0}, + [8108] = {.lex_state = 393}, [8109] = {.lex_state = 0}, - [8110] = {.lex_state = 393}, - [8111] = {.lex_state = 122}, + [8110] = {.lex_state = 226}, + [8111] = {.lex_state = 393}, [8112] = {.lex_state = 0}, - [8113] = {.lex_state = 226}, + [8113] = {.lex_state = 393}, [8114] = {.lex_state = 0}, [8115] = {.lex_state = 393}, [8116] = {.lex_state = 0}, - [8117] = {.lex_state = 393}, - [8118] = {.lex_state = 393}, - [8119] = {.lex_state = 393}, - [8120] = {.lex_state = 122}, - [8121] = {.lex_state = 393}, - [8122] = {.lex_state = 0}, - [8123] = {.lex_state = 0}, - [8124] = {.lex_state = 226}, - [8125] = {.lex_state = 393}, - [8126] = {.lex_state = 226}, - [8127] = {.lex_state = 0}, - [8128] = {.lex_state = 0}, - [8129] = {.lex_state = 0}, + [8117] = {.lex_state = 122}, + [8118] = {.lex_state = 0}, + [8119] = {.lex_state = 0}, + [8120] = {.lex_state = 226}, + [8121] = {.lex_state = 0}, + [8122] = {.lex_state = 393}, + [8123] = {.lex_state = 393}, + [8124] = {.lex_state = 0}, + [8125] = {.lex_state = 0}, + [8126] = {.lex_state = 0}, + [8127] = {.lex_state = 226}, + [8128] = {.lex_state = 226}, + [8129] = {.lex_state = 122}, [8130] = {.lex_state = 0}, [8131] = {.lex_state = 0}, - [8132] = {.lex_state = 0}, + [8132] = {.lex_state = 393}, [8133] = {.lex_state = 393}, - [8134] = {.lex_state = 393}, - [8135] = {.lex_state = 0}, + [8134] = {.lex_state = 0}, + [8135] = {.lex_state = 393}, [8136] = {.lex_state = 0}, - [8137] = {.lex_state = 0}, - [8138] = {.lex_state = 393}, - [8139] = {.lex_state = 0}, + [8137] = {.lex_state = 226}, + [8138] = {.lex_state = 226}, + [8139] = {.lex_state = 393}, [8140] = {.lex_state = 226}, [8141] = {.lex_state = 0}, [8142] = {.lex_state = 226}, - [8143] = {.lex_state = 0}, - [8144] = {.lex_state = 393}, - [8145] = {.lex_state = 0}, + [8143] = {.lex_state = 226}, + [8144] = {.lex_state = 226}, + [8145] = {.lex_state = 226}, [8146] = {.lex_state = 0}, - [8147] = {.lex_state = 226}, + [8147] = {.lex_state = 0}, [8148] = {.lex_state = 0}, - [8149] = {.lex_state = 122}, - [8150] = {.lex_state = 393}, - [8151] = {.lex_state = 0}, + [8149] = {.lex_state = 393}, + [8150] = {.lex_state = 0}, + [8151] = {.lex_state = 393}, [8152] = {.lex_state = 0}, [8153] = {.lex_state = 0}, - [8154] = {.lex_state = 226}, - [8155] = {.lex_state = 226}, + [8154] = {.lex_state = 0}, + [8155] = {.lex_state = 393}, [8156] = {.lex_state = 0}, - [8157] = {.lex_state = 393}, + [8157] = {.lex_state = 226}, [8158] = {.lex_state = 0}, [8159] = {.lex_state = 0}, - [8160] = {.lex_state = 0}, - [8161] = {.lex_state = 0}, + [8160] = {.lex_state = 393}, + [8161] = {.lex_state = 393}, [8162] = {.lex_state = 0}, [8163] = {.lex_state = 0}, - [8164] = {.lex_state = 0}, - [8165] = {.lex_state = 0}, + [8164] = {.lex_state = 226}, + [8165] = {.lex_state = 226}, [8166] = {.lex_state = 0}, [8167] = {.lex_state = 0}, - [8168] = {.lex_state = 0}, - [8169] = {.lex_state = 393}, + [8168] = {.lex_state = 393}, + [8169] = {.lex_state = 0}, [8170] = {.lex_state = 0}, [8171] = {.lex_state = 0}, [8172] = {.lex_state = 0}, @@ -75084,43 +75345,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8175] = {.lex_state = 0}, [8176] = {.lex_state = 0}, [8177] = {.lex_state = 0}, - [8178] = {.lex_state = 393}, + [8178] = {.lex_state = 0}, [8179] = {.lex_state = 0}, - [8180] = {.lex_state = 393}, - [8181] = {.lex_state = 0}, - [8182] = {.lex_state = 393}, + [8180] = {.lex_state = 0}, + [8181] = {.lex_state = 393}, + [8182] = {.lex_state = 0}, [8183] = {.lex_state = 0}, - [8184] = {.lex_state = 122}, + [8184] = {.lex_state = 0}, [8185] = {.lex_state = 0}, [8186] = {.lex_state = 0}, - [8187] = {.lex_state = 0}, - [8188] = {.lex_state = 393}, + [8187] = {.lex_state = 226}, + [8188] = {.lex_state = 0}, [8189] = {.lex_state = 0}, [8190] = {.lex_state = 0}, - [8191] = {.lex_state = 226}, + [8191] = {.lex_state = 0}, [8192] = {.lex_state = 0}, - [8193] = {.lex_state = 0}, - [8194] = {.lex_state = 393}, + [8193] = {.lex_state = 393}, + [8194] = {.lex_state = 0}, [8195] = {.lex_state = 0}, - [8196] = {.lex_state = 0}, - [8197] = {.lex_state = 122}, - [8198] = {.lex_state = 226}, + [8196] = {.lex_state = 393}, + [8197] = {.lex_state = 393}, + [8198] = {.lex_state = 0}, [8199] = {.lex_state = 0}, [8200] = {.lex_state = 0}, [8201] = {.lex_state = 0}, - [8202] = {.lex_state = 122}, - [8203] = {.lex_state = 0}, - [8204] = {.lex_state = 122}, - [8205] = {.lex_state = 393}, - [8206] = {.lex_state = 0}, + [8202] = {.lex_state = 0}, + [8203] = {.lex_state = 393}, + [8204] = {.lex_state = 0}, + [8205] = {.lex_state = 0}, + [8206] = {.lex_state = 226}, [8207] = {.lex_state = 0}, - [8208] = {.lex_state = 0}, - [8209] = {.lex_state = 0}, - [8210] = {.lex_state = 393}, + [8208] = {.lex_state = 393}, + [8209] = {.lex_state = 393}, + [8210] = {.lex_state = 226}, [8211] = {.lex_state = 0}, [8212] = {.lex_state = 0}, - [8213] = {.lex_state = 0}, - [8214] = {.lex_state = 0}, + [8213] = {.lex_state = 226}, + [8214] = {.lex_state = 393}, [8215] = {.lex_state = 0}, [8216] = {.lex_state = 0}, [8217] = {.lex_state = 0}, @@ -75128,771 +75389,771 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8219] = {.lex_state = 393}, [8220] = {.lex_state = 0}, [8221] = {.lex_state = 0}, - [8222] = {.lex_state = 393}, + [8222] = {.lex_state = 122}, [8223] = {.lex_state = 0}, [8224] = {.lex_state = 0}, - [8225] = {.lex_state = 393}, - [8226] = {.lex_state = 393}, - [8227] = {.lex_state = 393}, - [8228] = {.lex_state = 0}, + [8225] = {.lex_state = 0}, + [8226] = {.lex_state = 226}, + [8227] = {.lex_state = 0}, + [8228] = {.lex_state = 122}, [8229] = {.lex_state = 0}, [8230] = {.lex_state = 0}, - [8231] = {.lex_state = 393}, + [8231] = {.lex_state = 0}, [8232] = {.lex_state = 0}, - [8233] = {.lex_state = 393}, - [8234] = {.lex_state = 0}, - [8235] = {.lex_state = 0}, - [8236] = {.lex_state = 393}, - [8237] = {.lex_state = 122}, - [8238] = {.lex_state = 393}, - [8239] = {.lex_state = 0}, - [8240] = {.lex_state = 226}, - [8241] = {.lex_state = 0}, + [8233] = {.lex_state = 122}, + [8234] = {.lex_state = 393}, + [8235] = {.lex_state = 122}, + [8236] = {.lex_state = 0}, + [8237] = {.lex_state = 0}, + [8238] = {.lex_state = 0}, + [8239] = {.lex_state = 393}, + [8240] = {.lex_state = 0}, + [8241] = {.lex_state = 122}, [8242] = {.lex_state = 393}, [8243] = {.lex_state = 0}, [8244] = {.lex_state = 0}, [8245] = {.lex_state = 0}, - [8246] = {.lex_state = 226}, + [8246] = {.lex_state = 0}, [8247] = {.lex_state = 0}, - [8248] = {.lex_state = 122}, + [8248] = {.lex_state = 0}, [8249] = {.lex_state = 0}, - [8250] = {.lex_state = 226}, + [8250] = {.lex_state = 122}, [8251] = {.lex_state = 393}, [8252] = {.lex_state = 0}, [8253] = {.lex_state = 0}, [8254] = {.lex_state = 122}, [8255] = {.lex_state = 0}, [8256] = {.lex_state = 0}, - [8257] = {.lex_state = 393}, - [8258] = {.lex_state = 0}, - [8259] = {.lex_state = 226}, - [8260] = {.lex_state = 226}, - [8261] = {.lex_state = 393}, + [8257] = {.lex_state = 0}, + [8258] = {.lex_state = 393}, + [8259] = {.lex_state = 393}, + [8260] = {.lex_state = 393}, + [8261] = {.lex_state = 0}, [8262] = {.lex_state = 0}, - [8263] = {.lex_state = 226}, - [8264] = {.lex_state = 393}, - [8265] = {.lex_state = 0}, - [8266] = {.lex_state = 0}, + [8263] = {.lex_state = 0}, + [8264] = {.lex_state = 0}, + [8265] = {.lex_state = 226}, + [8266] = {.lex_state = 393}, [8267] = {.lex_state = 0}, [8268] = {.lex_state = 0}, - [8269] = {.lex_state = 393}, + [8269] = {.lex_state = 0}, [8270] = {.lex_state = 0}, [8271] = {.lex_state = 0}, [8272] = {.lex_state = 0}, [8273] = {.lex_state = 0}, - [8274] = {.lex_state = 0}, + [8274] = {.lex_state = 393}, [8275] = {.lex_state = 226}, [8276] = {.lex_state = 0}, - [8277] = {.lex_state = 393}, + [8277] = {.lex_state = 0}, [8278] = {.lex_state = 0}, [8279] = {.lex_state = 0}, [8280] = {.lex_state = 0}, [8281] = {.lex_state = 226}, - [8282] = {.lex_state = 0}, + [8282] = {.lex_state = 393, .external_lex_state = 2}, [8283] = {.lex_state = 0}, - [8284] = {.lex_state = 393}, + [8284] = {.lex_state = 226}, [8285] = {.lex_state = 0}, - [8286] = {.lex_state = 0}, - [8287] = {.lex_state = 393}, + [8286] = {.lex_state = 122}, + [8287] = {.lex_state = 0}, [8288] = {.lex_state = 0}, - [8289] = {.lex_state = 0}, + [8289] = {.lex_state = 122}, [8290] = {.lex_state = 393}, - [8291] = {.lex_state = 122}, - [8292] = {.lex_state = 0}, - [8293] = {.lex_state = 226}, - [8294] = {.lex_state = 393}, - [8295] = {.lex_state = 226}, + [8291] = {.lex_state = 226}, + [8292] = {.lex_state = 122}, + [8293] = {.lex_state = 0}, + [8294] = {.lex_state = 0}, + [8295] = {.lex_state = 0}, [8296] = {.lex_state = 0}, - [8297] = {.lex_state = 0}, - [8298] = {.lex_state = 393}, - [8299] = {.lex_state = 0}, + [8297] = {.lex_state = 393}, + [8298] = {.lex_state = 0}, + [8299] = {.lex_state = 393}, [8300] = {.lex_state = 0}, - [8301] = {.lex_state = 393}, - [8302] = {.lex_state = 393}, - [8303] = {.lex_state = 122}, + [8301] = {.lex_state = 0}, + [8302] = {.lex_state = 393, .external_lex_state = 2}, + [8303] = {.lex_state = 0}, [8304] = {.lex_state = 393}, [8305] = {.lex_state = 0}, - [8306] = {.lex_state = 0}, + [8306] = {.lex_state = 393}, [8307] = {.lex_state = 0}, - [8308] = {.lex_state = 0}, + [8308] = {.lex_state = 393}, [8309] = {.lex_state = 0}, [8310] = {.lex_state = 0}, [8311] = {.lex_state = 393}, - [8312] = {.lex_state = 226}, - [8313] = {.lex_state = 393}, - [8314] = {.lex_state = 0}, - [8315] = {.lex_state = 393}, + [8312] = {.lex_state = 0}, + [8313] = {.lex_state = 0}, + [8314] = {.lex_state = 226}, + [8315] = {.lex_state = 0}, [8316] = {.lex_state = 0}, - [8317] = {.lex_state = 226}, - [8318] = {.lex_state = 0}, - [8319] = {.lex_state = 0}, + [8317] = {.lex_state = 0}, + [8318] = {.lex_state = 226}, + [8319] = {.lex_state = 393}, [8320] = {.lex_state = 0}, - [8321] = {.lex_state = 122}, - [8322] = {.lex_state = 393}, + [8321] = {.lex_state = 393}, + [8322] = {.lex_state = 0}, [8323] = {.lex_state = 393}, [8324] = {.lex_state = 0}, [8325] = {.lex_state = 0}, - [8326] = {.lex_state = 0}, - [8327] = {.lex_state = 226}, - [8328] = {.lex_state = 393}, - [8329] = {.lex_state = 0}, - [8330] = {.lex_state = 393}, + [8326] = {.lex_state = 393}, + [8327] = {.lex_state = 393}, + [8328] = {.lex_state = 393, .external_lex_state = 2}, + [8329] = {.lex_state = 226}, + [8330] = {.lex_state = 0}, [8331] = {.lex_state = 0}, - [8332] = {.lex_state = 393}, - [8333] = {.lex_state = 0}, - [8334] = {.lex_state = 0}, + [8332] = {.lex_state = 0}, + [8333] = {.lex_state = 226}, + [8334] = {.lex_state = 393}, [8335] = {.lex_state = 0}, [8336] = {.lex_state = 0}, [8337] = {.lex_state = 393}, [8338] = {.lex_state = 0}, - [8339] = {.lex_state = 393}, - [8340] = {.lex_state = 0}, + [8339] = {.lex_state = 0}, + [8340] = {.lex_state = 393, .external_lex_state = 2}, [8341] = {.lex_state = 393}, [8342] = {.lex_state = 0}, - [8343] = {.lex_state = 226}, + [8343] = {.lex_state = 393, .external_lex_state = 2}, [8344] = {.lex_state = 0}, - [8345] = {.lex_state = 122}, + [8345] = {.lex_state = 0}, [8346] = {.lex_state = 0}, - [8347] = {.lex_state = 122}, - [8348] = {.lex_state = 393}, - [8349] = {.lex_state = 0}, - [8350] = {.lex_state = 226}, - [8351] = {.lex_state = 0}, + [8347] = {.lex_state = 393}, + [8348] = {.lex_state = 0}, + [8349] = {.lex_state = 393}, + [8350] = {.lex_state = 393}, + [8351] = {.lex_state = 226}, [8352] = {.lex_state = 0}, - [8353] = {.lex_state = 393}, - [8354] = {.lex_state = 393}, - [8355] = {.lex_state = 393}, - [8356] = {.lex_state = 226}, - [8357] = {.lex_state = 393}, - [8358] = {.lex_state = 226}, - [8359] = {.lex_state = 0}, + [8353] = {.lex_state = 0}, + [8354] = {.lex_state = 122}, + [8355] = {.lex_state = 0}, + [8356] = {.lex_state = 393}, + [8357] = {.lex_state = 0}, + [8358] = {.lex_state = 393, .external_lex_state = 2}, + [8359] = {.lex_state = 393, .external_lex_state = 2}, [8360] = {.lex_state = 0}, [8361] = {.lex_state = 0}, - [8362] = {.lex_state = 0}, + [8362] = {.lex_state = 393}, [8363] = {.lex_state = 0}, - [8364] = {.lex_state = 393}, + [8364] = {.lex_state = 226}, [8365] = {.lex_state = 0}, - [8366] = {.lex_state = 0}, - [8367] = {.lex_state = 226}, + [8366] = {.lex_state = 393}, + [8367] = {.lex_state = 393, .external_lex_state = 2}, [8368] = {.lex_state = 0}, - [8369] = {.lex_state = 0}, - [8370] = {.lex_state = 0}, + [8369] = {.lex_state = 393}, + [8370] = {.lex_state = 393, .external_lex_state = 2}, [8371] = {.lex_state = 393}, [8372] = {.lex_state = 0}, - [8373] = {.lex_state = 393}, - [8374] = {.lex_state = 393}, + [8373] = {.lex_state = 0}, + [8374] = {.lex_state = 122}, [8375] = {.lex_state = 0}, - [8376] = {.lex_state = 393}, - [8377] = {.lex_state = 0}, - [8378] = {.lex_state = 122}, - [8379] = {.lex_state = 226}, + [8376] = {.lex_state = 0}, + [8377] = {.lex_state = 393}, + [8378] = {.lex_state = 393}, + [8379] = {.lex_state = 393}, [8380] = {.lex_state = 0}, - [8381] = {.lex_state = 122}, - [8382] = {.lex_state = 0}, - [8383] = {.lex_state = 0}, + [8381] = {.lex_state = 0}, + [8382] = {.lex_state = 226}, + [8383] = {.lex_state = 226}, [8384] = {.lex_state = 0}, [8385] = {.lex_state = 393}, - [8386] = {.lex_state = 226}, + [8386] = {.lex_state = 0}, [8387] = {.lex_state = 393}, - [8388] = {.lex_state = 393}, - [8389] = {.lex_state = 393}, - [8390] = {.lex_state = 0}, - [8391] = {.lex_state = 393}, - [8392] = {.lex_state = 226}, - [8393] = {.lex_state = 0}, - [8394] = {.lex_state = 0}, + [8388] = {.lex_state = 393, .external_lex_state = 2}, + [8389] = {.lex_state = 0}, + [8390] = {.lex_state = 393, .external_lex_state = 2}, + [8391] = {.lex_state = 393, .external_lex_state = 2}, + [8392] = {.lex_state = 0}, + [8393] = {.lex_state = 393, .external_lex_state = 2}, + [8394] = {.lex_state = 393}, [8395] = {.lex_state = 0}, - [8396] = {.lex_state = 0}, - [8397] = {.lex_state = 393}, - [8398] = {.lex_state = 393}, + [8396] = {.lex_state = 393}, + [8397] = {.lex_state = 226}, + [8398] = {.lex_state = 226}, [8399] = {.lex_state = 226}, - [8400] = {.lex_state = 0}, + [8400] = {.lex_state = 393}, [8401] = {.lex_state = 0}, [8402] = {.lex_state = 0}, - [8403] = {.lex_state = 393}, - [8404] = {.lex_state = 122}, + [8403] = {.lex_state = 0}, + [8404] = {.lex_state = 393}, [8405] = {.lex_state = 0}, - [8406] = {.lex_state = 0}, + [8406] = {.lex_state = 393}, [8407] = {.lex_state = 0}, - [8408] = {.lex_state = 0}, + [8408] = {.lex_state = 393}, [8409] = {.lex_state = 0}, - [8410] = {.lex_state = 0}, + [8410] = {.lex_state = 393, .external_lex_state = 2}, [8411] = {.lex_state = 0}, - [8412] = {.lex_state = 393}, - [8413] = {.lex_state = 226}, - [8414] = {.lex_state = 393}, - [8415] = {.lex_state = 226}, - [8416] = {.lex_state = 0}, - [8417] = {.lex_state = 0}, - [8418] = {.lex_state = 0}, - [8419] = {.lex_state = 226}, - [8420] = {.lex_state = 393}, + [8412] = {.lex_state = 226}, + [8413] = {.lex_state = 393, .external_lex_state = 2}, + [8414] = {.lex_state = 393, .external_lex_state = 2}, + [8415] = {.lex_state = 393, .external_lex_state = 2}, + [8416] = {.lex_state = 393}, + [8417] = {.lex_state = 393}, + [8418] = {.lex_state = 393, .external_lex_state = 2}, + [8419] = {.lex_state = 393}, + [8420] = {.lex_state = 122}, [8421] = {.lex_state = 0}, - [8422] = {.lex_state = 0}, - [8423] = {.lex_state = 226}, + [8422] = {.lex_state = 393, .external_lex_state = 2}, + [8423] = {.lex_state = 0}, [8424] = {.lex_state = 0}, - [8425] = {.lex_state = 0}, + [8425] = {.lex_state = 393}, [8426] = {.lex_state = 0}, - [8427] = {.lex_state = 0}, + [8427] = {.lex_state = 393}, [8428] = {.lex_state = 0}, - [8429] = {.lex_state = 200}, + [8429] = {.lex_state = 0}, [8430] = {.lex_state = 0}, [8431] = {.lex_state = 0}, [8432] = {.lex_state = 0}, - [8433] = {.lex_state = 0, .external_lex_state = 2}, - [8434] = {.lex_state = 0}, + [8433] = {.lex_state = 0}, + [8434] = {.lex_state = 393}, [8435] = {.lex_state = 0}, [8436] = {.lex_state = 0}, - [8437] = {.lex_state = 0}, - [8438] = {.lex_state = 0}, - [8439] = {.lex_state = 0}, - [8440] = {.lex_state = 0}, + [8437] = {.lex_state = 226}, + [8438] = {.lex_state = 393}, + [8439] = {.lex_state = 122}, + [8440] = {.lex_state = 226}, [8441] = {.lex_state = 0}, - [8442] = {.lex_state = 0}, + [8442] = {.lex_state = 393}, [8443] = {.lex_state = 0}, - [8444] = {.lex_state = 0}, - [8445] = {.lex_state = 200}, - [8446] = {.lex_state = 200}, - [8447] = {.lex_state = 123}, - [8448] = {.lex_state = 123}, - [8449] = {.lex_state = 226}, - [8450] = {.lex_state = 0}, - [8451] = {.lex_state = 0}, - [8452] = {.lex_state = 0}, - [8453] = {.lex_state = 0}, - [8454] = {.lex_state = 0}, + [8444] = {.lex_state = 393}, + [8445] = {.lex_state = 0}, + [8446] = {.lex_state = 0}, + [8447] = {.lex_state = 0}, + [8448] = {.lex_state = 0}, + [8449] = {.lex_state = 0}, + [8450] = {.lex_state = 393}, + [8451] = {.lex_state = 198}, + [8452] = {.lex_state = 198}, + [8453] = {.lex_state = 206}, + [8454] = {.lex_state = 393}, [8455] = {.lex_state = 226}, - [8456] = {.lex_state = 0}, - [8457] = {.lex_state = 123}, + [8456] = {.lex_state = 226}, + [8457] = {.lex_state = 0}, [8458] = {.lex_state = 0}, - [8459] = {.lex_state = 0}, - [8460] = {.lex_state = 0}, - [8461] = {.lex_state = 226}, - [8462] = {.lex_state = 226}, + [8459] = {.lex_state = 226}, + [8460] = {.lex_state = 198}, + [8461] = {.lex_state = 198}, + [8462] = {.lex_state = 0}, [8463] = {.lex_state = 0}, [8464] = {.lex_state = 0}, - [8465] = {.lex_state = 0}, - [8466] = {.lex_state = 226}, + [8465] = {.lex_state = 0, .external_lex_state = 2}, + [8466] = {.lex_state = 0}, [8467] = {.lex_state = 0}, [8468] = {.lex_state = 0}, - [8469] = {.lex_state = 0}, + [8469] = {.lex_state = 226}, [8470] = {.lex_state = 0}, [8471] = {.lex_state = 0}, - [8472] = {.lex_state = 226}, - [8473] = {.lex_state = 0, .external_lex_state = 3}, + [8472] = {.lex_state = 0}, + [8473] = {.lex_state = 0}, [8474] = {.lex_state = 0}, - [8475] = {.lex_state = 393}, - [8476] = {.lex_state = 226}, - [8477] = {.lex_state = 200}, + [8475] = {.lex_state = 0}, + [8476] = {.lex_state = 0}, + [8477] = {.lex_state = 0}, [8478] = {.lex_state = 0}, - [8479] = {.lex_state = 0}, - [8480] = {.lex_state = 393}, - [8481] = {.lex_state = 123}, - [8482] = {.lex_state = 226}, + [8479] = {.lex_state = 226}, + [8480] = {.lex_state = 0}, + [8481] = {.lex_state = 200}, + [8482] = {.lex_state = 198}, [8483] = {.lex_state = 0}, - [8484] = {.lex_state = 393}, - [8485] = {.lex_state = 123}, + [8484] = {.lex_state = 0}, + [8485] = {.lex_state = 202}, [8486] = {.lex_state = 0}, - [8487] = {.lex_state = 226}, + [8487] = {.lex_state = 393}, [8488] = {.lex_state = 0}, [8489] = {.lex_state = 0}, [8490] = {.lex_state = 0}, [8491] = {.lex_state = 0}, - [8492] = {.lex_state = 393}, + [8492] = {.lex_state = 0}, [8493] = {.lex_state = 226}, - [8494] = {.lex_state = 0}, + [8494] = {.lex_state = 226}, [8495] = {.lex_state = 0}, - [8496] = {.lex_state = 0}, + [8496] = {.lex_state = 226}, [8497] = {.lex_state = 0}, - [8498] = {.lex_state = 0}, - [8499] = {.lex_state = 0}, - [8500] = {.lex_state = 393}, - [8501] = {.lex_state = 0}, - [8502] = {.lex_state = 226}, - [8503] = {.lex_state = 0}, + [8498] = {.lex_state = 226}, + [8499] = {.lex_state = 200}, + [8500] = {.lex_state = 0}, + [8501] = {.lex_state = 393}, + [8502] = {.lex_state = 123}, + [8503] = {.lex_state = 226}, [8504] = {.lex_state = 0}, - [8505] = {.lex_state = 226}, + [8505] = {.lex_state = 0}, [8506] = {.lex_state = 0}, [8507] = {.lex_state = 0}, - [8508] = {.lex_state = 0}, - [8509] = {.lex_state = 0}, + [8508] = {.lex_state = 226}, + [8509] = {.lex_state = 226}, [8510] = {.lex_state = 0}, - [8511] = {.lex_state = 226}, - [8512] = {.lex_state = 206}, - [8513] = {.lex_state = 226}, - [8514] = {.lex_state = 226}, - [8515] = {.lex_state = 123}, + [8511] = {.lex_state = 393}, + [8512] = {.lex_state = 200}, + [8513] = {.lex_state = 0}, + [8514] = {.lex_state = 393}, + [8515] = {.lex_state = 0}, [8516] = {.lex_state = 0}, - [8517] = {.lex_state = 393}, - [8518] = {.lex_state = 0}, + [8517] = {.lex_state = 0}, + [8518] = {.lex_state = 123}, [8519] = {.lex_state = 0}, - [8520] = {.lex_state = 0}, - [8521] = {.lex_state = 206}, - [8522] = {.lex_state = 0}, + [8520] = {.lex_state = 393}, + [8521] = {.lex_state = 0}, + [8522] = {.lex_state = 226}, [8523] = {.lex_state = 0}, - [8524] = {.lex_state = 0}, - [8525] = {.lex_state = 226}, - [8526] = {.lex_state = 393}, - [8527] = {.lex_state = 123}, + [8524] = {.lex_state = 393}, + [8525] = {.lex_state = 0}, + [8526] = {.lex_state = 123}, + [8527] = {.lex_state = 226}, [8528] = {.lex_state = 226}, - [8529] = {.lex_state = 226}, - [8530] = {.lex_state = 0}, - [8531] = {.lex_state = 123}, - [8532] = {.lex_state = 0}, + [8529] = {.lex_state = 393}, + [8530] = {.lex_state = 393}, + [8531] = {.lex_state = 393}, + [8532] = {.lex_state = 226}, [8533] = {.lex_state = 0}, - [8534] = {.lex_state = 0}, + [8534] = {.lex_state = 393}, [8535] = {.lex_state = 0}, - [8536] = {.lex_state = 0, .external_lex_state = 2}, + [8536] = {.lex_state = 226}, [8537] = {.lex_state = 0}, - [8538] = {.lex_state = 226}, + [8538] = {.lex_state = 0}, [8539] = {.lex_state = 0}, [8540] = {.lex_state = 0}, [8541] = {.lex_state = 0}, - [8542] = {.lex_state = 0}, - [8543] = {.lex_state = 200}, + [8542] = {.lex_state = 226}, + [8543] = {.lex_state = 0}, [8544] = {.lex_state = 0}, - [8545] = {.lex_state = 226}, + [8545] = {.lex_state = 0}, [8546] = {.lex_state = 226}, - [8547] = {.lex_state = 0}, - [8548] = {.lex_state = 0}, - [8549] = {.lex_state = 226}, - [8550] = {.lex_state = 0}, - [8551] = {.lex_state = 0}, - [8552] = {.lex_state = 123}, - [8553] = {.lex_state = 393}, - [8554] = {.lex_state = 0}, - [8555] = {.lex_state = 226}, - [8556] = {.lex_state = 200}, - [8557] = {.lex_state = 0, .external_lex_state = 3}, + [8547] = {.lex_state = 206}, + [8548] = {.lex_state = 226}, + [8549] = {.lex_state = 0}, + [8550] = {.lex_state = 201}, + [8551] = {.lex_state = 282}, + [8552] = {.lex_state = 0}, + [8553] = {.lex_state = 0}, + [8554] = {.lex_state = 200}, + [8555] = {.lex_state = 0}, + [8556] = {.lex_state = 0}, + [8557] = {.lex_state = 226}, [8558] = {.lex_state = 0}, - [8559] = {.lex_state = 0}, - [8560] = {.lex_state = 200}, - [8561] = {.lex_state = 200}, - [8562] = {.lex_state = 393}, - [8563] = {.lex_state = 0}, - [8564] = {.lex_state = 0}, + [8559] = {.lex_state = 226}, + [8560] = {.lex_state = 226}, + [8561] = {.lex_state = 123}, + [8562] = {.lex_state = 200}, + [8563] = {.lex_state = 251}, + [8564] = {.lex_state = 200}, [8565] = {.lex_state = 0}, - [8566] = {.lex_state = 200}, - [8567] = {.lex_state = 0}, + [8566] = {.lex_state = 0}, + [8567] = {.lex_state = 0, .external_lex_state = 2}, [8568] = {.lex_state = 0}, - [8569] = {.lex_state = 0}, + [8569] = {.lex_state = 123}, [8570] = {.lex_state = 0}, - [8571] = {.lex_state = 200}, - [8572] = {.lex_state = 0}, + [8571] = {.lex_state = 0}, + [8572] = {.lex_state = 393}, [8573] = {.lex_state = 0}, [8574] = {.lex_state = 0}, [8575] = {.lex_state = 0}, - [8576] = {.lex_state = 0}, - [8577] = {.lex_state = 0}, + [8576] = {.lex_state = 226}, + [8577] = {.lex_state = 226}, [8578] = {.lex_state = 0}, - [8579] = {.lex_state = 393}, + [8579] = {.lex_state = 0}, [8580] = {.lex_state = 0}, - [8581] = {.lex_state = 0}, + [8581] = {.lex_state = 200}, [8582] = {.lex_state = 0}, [8583] = {.lex_state = 0}, [8584] = {.lex_state = 0}, [8585] = {.lex_state = 0}, - [8586] = {.lex_state = 0}, + [8586] = {.lex_state = 226}, [8587] = {.lex_state = 0}, [8588] = {.lex_state = 0}, - [8589] = {.lex_state = 226}, + [8589] = {.lex_state = 200}, [8590] = {.lex_state = 0}, [8591] = {.lex_state = 0}, - [8592] = {.lex_state = 393}, - [8593] = {.lex_state = 0}, + [8592] = {.lex_state = 0}, + [8593] = {.lex_state = 393}, [8594] = {.lex_state = 0}, - [8595] = {.lex_state = 200}, + [8595] = {.lex_state = 0}, [8596] = {.lex_state = 0}, [8597] = {.lex_state = 200}, - [8598] = {.lex_state = 123}, - [8599] = {.lex_state = 200}, - [8600] = {.lex_state = 0}, + [8598] = {.lex_state = 0}, + [8599] = {.lex_state = 0}, + [8600] = {.lex_state = 200}, [8601] = {.lex_state = 123}, [8602] = {.lex_state = 0}, - [8603] = {.lex_state = 226}, - [8604] = {.lex_state = 226}, + [8603] = {.lex_state = 0}, + [8604] = {.lex_state = 200}, [8605] = {.lex_state = 0}, [8606] = {.lex_state = 0}, [8607] = {.lex_state = 0}, [8608] = {.lex_state = 0}, - [8609] = {.lex_state = 0, .external_lex_state = 2}, - [8610] = {.lex_state = 198}, - [8611] = {.lex_state = 226}, - [8612] = {.lex_state = 0}, - [8613] = {.lex_state = 0}, - [8614] = {.lex_state = 226}, - [8615] = {.lex_state = 0}, - [8616] = {.lex_state = 226}, + [8609] = {.lex_state = 0}, + [8610] = {.lex_state = 393}, + [8611] = {.lex_state = 200}, + [8612] = {.lex_state = 200}, + [8613] = {.lex_state = 200}, + [8614] = {.lex_state = 0}, + [8615] = {.lex_state = 226}, + [8616] = {.lex_state = 0}, [8617] = {.lex_state = 0}, [8618] = {.lex_state = 0}, [8619] = {.lex_state = 0}, - [8620] = {.lex_state = 0}, - [8621] = {.lex_state = 226}, - [8622] = {.lex_state = 393}, - [8623] = {.lex_state = 0}, - [8624] = {.lex_state = 206}, - [8625] = {.lex_state = 251}, + [8620] = {.lex_state = 226}, + [8621] = {.lex_state = 0}, + [8622] = {.lex_state = 0}, + [8623] = {.lex_state = 200}, + [8624] = {.lex_state = 200}, + [8625] = {.lex_state = 0}, [8626] = {.lex_state = 0}, - [8627] = {.lex_state = 123}, + [8627] = {.lex_state = 0}, [8628] = {.lex_state = 0}, [8629] = {.lex_state = 0}, [8630] = {.lex_state = 0}, [8631] = {.lex_state = 0}, - [8632] = {.lex_state = 282}, + [8632] = {.lex_state = 0}, [8633] = {.lex_state = 0}, [8634] = {.lex_state = 0}, - [8635] = {.lex_state = 393}, + [8635] = {.lex_state = 226}, [8636] = {.lex_state = 0}, - [8637] = {.lex_state = 393}, - [8638] = {.lex_state = 200}, - [8639] = {.lex_state = 393}, - [8640] = {.lex_state = 0}, + [8637] = {.lex_state = 123}, + [8638] = {.lex_state = 0}, + [8639] = {.lex_state = 0}, + [8640] = {.lex_state = 0, .external_lex_state = 2}, [8641] = {.lex_state = 0}, [8642] = {.lex_state = 226}, - [8643] = {.lex_state = 123}, - [8644] = {.lex_state = 226}, + [8643] = {.lex_state = 0}, + [8644] = {.lex_state = 123}, [8645] = {.lex_state = 0}, - [8646] = {.lex_state = 393}, - [8647] = {.lex_state = 0}, - [8648] = {.lex_state = 0}, - [8649] = {.lex_state = 226}, + [8646] = {.lex_state = 226}, + [8647] = {.lex_state = 226}, + [8648] = {.lex_state = 123}, + [8649] = {.lex_state = 206}, [8650] = {.lex_state = 0}, [8651] = {.lex_state = 0}, [8652] = {.lex_state = 0}, [8653] = {.lex_state = 393}, - [8654] = {.lex_state = 0}, + [8654] = {.lex_state = 226}, [8655] = {.lex_state = 0}, - [8656] = {.lex_state = 226}, - [8657] = {.lex_state = 200}, + [8656] = {.lex_state = 0}, + [8657] = {.lex_state = 123}, [8658] = {.lex_state = 0}, [8659] = {.lex_state = 0}, [8660] = {.lex_state = 0}, - [8661] = {.lex_state = 0, .external_lex_state = 2}, + [8661] = {.lex_state = 0}, [8662] = {.lex_state = 0}, [8663] = {.lex_state = 226}, [8664] = {.lex_state = 0}, [8665] = {.lex_state = 0}, - [8666] = {.lex_state = 0}, + [8666] = {.lex_state = 393}, [8667] = {.lex_state = 0}, - [8668] = {.lex_state = 198}, - [8669] = {.lex_state = 226}, - [8670] = {.lex_state = 226}, - [8671] = {.lex_state = 202}, - [8672] = {.lex_state = 198}, - [8673] = {.lex_state = 393}, - [8674] = {.lex_state = 198}, + [8668] = {.lex_state = 0}, + [8669] = {.lex_state = 0}, + [8670] = {.lex_state = 0}, + [8671] = {.lex_state = 0}, + [8672] = {.lex_state = 0}, + [8673] = {.lex_state = 226}, + [8674] = {.lex_state = 0}, [8675] = {.lex_state = 0}, - [8676] = {.lex_state = 123}, + [8676] = {.lex_state = 0}, [8677] = {.lex_state = 0}, - [8678] = {.lex_state = 393}, + [8678] = {.lex_state = 0}, [8679] = {.lex_state = 0}, - [8680] = {.lex_state = 202}, - [8681] = {.lex_state = 393}, + [8680] = {.lex_state = 0}, + [8681] = {.lex_state = 226}, [8682] = {.lex_state = 0}, - [8683] = {.lex_state = 0}, - [8684] = {.lex_state = 226}, - [8685] = {.lex_state = 0}, + [8683] = {.lex_state = 393}, + [8684] = {.lex_state = 123}, + [8685] = {.lex_state = 200}, [8686] = {.lex_state = 0}, - [8687] = {.lex_state = 0}, + [8687] = {.lex_state = 226}, [8688] = {.lex_state = 0}, - [8689] = {.lex_state = 0}, + [8689] = {.lex_state = 123}, [8690] = {.lex_state = 0}, - [8691] = {.lex_state = 0}, - [8692] = {.lex_state = 0}, - [8693] = {.lex_state = 0}, - [8694] = {.lex_state = 0}, + [8691] = {.lex_state = 200}, + [8692] = {.lex_state = 0, .external_lex_state = 2}, + [8693] = {.lex_state = 200}, + [8694] = {.lex_state = 226}, [8695] = {.lex_state = 0}, - [8696] = {.lex_state = 0}, + [8696] = {.lex_state = 206}, [8697] = {.lex_state = 0}, [8698] = {.lex_state = 0}, - [8699] = {.lex_state = 393}, - [8700] = {.lex_state = 0}, + [8699] = {.lex_state = 123}, + [8700] = {.lex_state = 0, .external_lex_state = 2}, [8701] = {.lex_state = 0}, [8702] = {.lex_state = 0}, - [8703] = {.lex_state = 0, .external_lex_state = 2}, - [8704] = {.lex_state = 226}, + [8703] = {.lex_state = 0}, + [8704] = {.lex_state = 0}, [8705] = {.lex_state = 226}, [8706] = {.lex_state = 0}, - [8707] = {.lex_state = 226}, + [8707] = {.lex_state = 0}, [8708] = {.lex_state = 0}, - [8709] = {.lex_state = 201}, + [8709] = {.lex_state = 393}, [8710] = {.lex_state = 0}, [8711] = {.lex_state = 0}, [8712] = {.lex_state = 0}, [8713] = {.lex_state = 0}, - [8714] = {.lex_state = 0}, - [8715] = {.lex_state = 0}, + [8714] = {.lex_state = 226}, + [8715] = {.lex_state = 226}, [8716] = {.lex_state = 0}, - [8717] = {.lex_state = 0}, + [8717] = {.lex_state = 226}, [8718] = {.lex_state = 0}, [8719] = {.lex_state = 0}, - [8720] = {.lex_state = 393}, - [8721] = {.lex_state = 123}, - [8722] = {.lex_state = 0}, - [8723] = {.lex_state = 123}, - [8724] = {.lex_state = 226}, - [8725] = {.lex_state = 0}, - [8726] = {.lex_state = 226}, - [8727] = {.lex_state = 0}, - [8728] = {.lex_state = 226}, + [8720] = {.lex_state = 0}, + [8721] = {.lex_state = 0}, + [8722] = {.lex_state = 226}, + [8723] = {.lex_state = 0}, + [8724] = {.lex_state = 393}, + [8725] = {.lex_state = 123}, + [8726] = {.lex_state = 200}, + [8727] = {.lex_state = 200}, + [8728] = {.lex_state = 0}, [8729] = {.lex_state = 226}, [8730] = {.lex_state = 226}, - [8731] = {.lex_state = 226}, + [8731] = {.lex_state = 0}, [8732] = {.lex_state = 0}, - [8733] = {.lex_state = 226}, - [8734] = {.lex_state = 123}, + [8733] = {.lex_state = 0}, + [8734] = {.lex_state = 0, .external_lex_state = 2}, [8735] = {.lex_state = 0}, - [8736] = {.lex_state = 0}, - [8737] = {.lex_state = 0}, - [8738] = {.lex_state = 206}, - [8739] = {.lex_state = 226}, + [8736] = {.lex_state = 226}, + [8737] = {.lex_state = 226}, + [8738] = {.lex_state = 0}, + [8739] = {.lex_state = 0}, [8740] = {.lex_state = 0}, [8741] = {.lex_state = 0}, [8742] = {.lex_state = 0}, - [8743] = {.lex_state = 393}, - [8744] = {.lex_state = 0, .external_lex_state = 2}, - [8745] = {.lex_state = 0}, - [8746] = {.lex_state = 226}, + [8743] = {.lex_state = 0}, + [8744] = {.lex_state = 0}, + [8745] = {.lex_state = 206}, + [8746] = {.lex_state = 0}, [8747] = {.lex_state = 0}, [8748] = {.lex_state = 0}, [8749] = {.lex_state = 0}, [8750] = {.lex_state = 0}, - [8751] = {.lex_state = 0}, - [8752] = {.lex_state = 0}, + [8751] = {.lex_state = 393}, + [8752] = {.lex_state = 226}, [8753] = {.lex_state = 0}, [8754] = {.lex_state = 0}, [8755] = {.lex_state = 0}, [8756] = {.lex_state = 0}, - [8757] = {.lex_state = 0}, - [8758] = {.lex_state = 0}, + [8757] = {.lex_state = 226}, + [8758] = {.lex_state = 200}, [8759] = {.lex_state = 200}, - [8760] = {.lex_state = 393}, + [8760] = {.lex_state = 0}, [8761] = {.lex_state = 0}, [8762] = {.lex_state = 0}, [8763] = {.lex_state = 0}, [8764] = {.lex_state = 0}, - [8765] = {.lex_state = 0}, + [8765] = {.lex_state = 226}, [8766] = {.lex_state = 0}, - [8767] = {.lex_state = 200}, - [8768] = {.lex_state = 200}, + [8767] = {.lex_state = 0}, + [8768] = {.lex_state = 0}, [8769] = {.lex_state = 0}, - [8770] = {.lex_state = 123}, - [8771] = {.lex_state = 0}, + [8770] = {.lex_state = 226}, + [8771] = {.lex_state = 393}, [8772] = {.lex_state = 0}, [8773] = {.lex_state = 0}, [8774] = {.lex_state = 200}, - [8775] = {.lex_state = 0}, - [8776] = {.lex_state = 0}, - [8777] = {.lex_state = 0}, - [8778] = {.lex_state = 200}, - [8779] = {.lex_state = 0, .external_lex_state = 2}, - [8780] = {.lex_state = 0}, - [8781] = {.lex_state = 206}, + [8775] = {.lex_state = 0, .external_lex_state = 2}, + [8776] = {.lex_state = 393}, + [8777] = {.lex_state = 226}, + [8778] = {.lex_state = 0}, + [8779] = {.lex_state = 0}, + [8780] = {.lex_state = 226}, + [8781] = {.lex_state = 0}, [8782] = {.lex_state = 0}, - [8783] = {.lex_state = 0}, - [8784] = {.lex_state = 226}, - [8785] = {.lex_state = 393}, - [8786] = {.lex_state = 0}, - [8787] = {.lex_state = 0}, + [8783] = {.lex_state = 200}, + [8784] = {.lex_state = 200}, + [8785] = {.lex_state = 0}, + [8786] = {.lex_state = 226}, + [8787] = {.lex_state = 200}, [8788] = {.lex_state = 0}, - [8789] = {.lex_state = 0}, + [8789] = {.lex_state = 226}, [8790] = {.lex_state = 0}, - [8791] = {.lex_state = 0}, - [8792] = {.lex_state = 0, .external_lex_state = 2}, - [8793] = {.lex_state = 206}, - [8794] = {.lex_state = 0}, + [8791] = {.lex_state = 393}, + [8792] = {.lex_state = 0}, + [8793] = {.lex_state = 123}, + [8794] = {.lex_state = 393}, [8795] = {.lex_state = 0}, - [8796] = {.lex_state = 226}, - [8797] = {.lex_state = 393}, - [8798] = {.lex_state = 0}, + [8796] = {.lex_state = 393}, + [8797] = {.lex_state = 123}, + [8798] = {.lex_state = 226}, [8799] = {.lex_state = 0}, [8800] = {.lex_state = 0}, - [8801] = {.lex_state = 0}, - [8802] = {.lex_state = 0, .external_lex_state = 2}, + [8801] = {.lex_state = 393}, + [8802] = {.lex_state = 0}, [8803] = {.lex_state = 0}, - [8804] = {.lex_state = 226}, + [8804] = {.lex_state = 0}, [8805] = {.lex_state = 0}, - [8806] = {.lex_state = 393}, + [8806] = {.lex_state = 0}, [8807] = {.lex_state = 0}, - [8808] = {.lex_state = 0, .external_lex_state = 2}, - [8809] = {.lex_state = 123}, - [8810] = {.lex_state = 0}, - [8811] = {.lex_state = 0, .external_lex_state = 2}, - [8812] = {.lex_state = 0}, + [8808] = {.lex_state = 0}, + [8809] = {.lex_state = 0}, + [8810] = {.lex_state = 0, .external_lex_state = 2}, + [8811] = {.lex_state = 0}, + [8812] = {.lex_state = 200}, [8813] = {.lex_state = 0}, - [8814] = {.lex_state = 0, .external_lex_state = 2}, + [8814] = {.lex_state = 0}, [8815] = {.lex_state = 0}, - [8816] = {.lex_state = 0, .external_lex_state = 2}, + [8816] = {.lex_state = 393}, [8817] = {.lex_state = 0}, - [8818] = {.lex_state = 0, .external_lex_state = 2}, - [8819] = {.lex_state = 0}, - [8820] = {.lex_state = 0, .external_lex_state = 2}, + [8818] = {.lex_state = 393}, + [8819] = {.lex_state = 0, .external_lex_state = 3}, + [8820] = {.lex_state = 0}, [8821] = {.lex_state = 0}, - [8822] = {.lex_state = 0, .external_lex_state = 2}, - [8823] = {.lex_state = 0}, - [8824] = {.lex_state = 0, .external_lex_state = 2}, + [8822] = {.lex_state = 0}, + [8823] = {.lex_state = 0, .external_lex_state = 2}, + [8824] = {.lex_state = 0}, [8825] = {.lex_state = 0}, [8826] = {.lex_state = 0}, - [8827] = {.lex_state = 0}, + [8827] = {.lex_state = 226}, [8828] = {.lex_state = 393}, [8829] = {.lex_state = 0}, - [8830] = {.lex_state = 393}, - [8831] = {.lex_state = 393}, - [8832] = {.lex_state = 200}, - [8833] = {.lex_state = 200}, - [8834] = {.lex_state = 393}, - [8835] = {.lex_state = 123}, - [8836] = {.lex_state = 393}, + [8830] = {.lex_state = 0}, + [8831] = {.lex_state = 0}, + [8832] = {.lex_state = 0}, + [8833] = {.lex_state = 0, .external_lex_state = 2}, + [8834] = {.lex_state = 0}, + [8835] = {.lex_state = 0}, + [8836] = {.lex_state = 0}, [8837] = {.lex_state = 393}, [8838] = {.lex_state = 0}, - [8839] = {.lex_state = 226}, - [8840] = {.lex_state = 0}, + [8839] = {.lex_state = 0, .external_lex_state = 2}, + [8840] = {.lex_state = 393}, [8841] = {.lex_state = 0}, - [8842] = {.lex_state = 0}, - [8843] = {.lex_state = 393}, + [8842] = {.lex_state = 0, .external_lex_state = 2}, + [8843] = {.lex_state = 226}, [8844] = {.lex_state = 0}, - [8845] = {.lex_state = 0}, + [8845] = {.lex_state = 0, .external_lex_state = 2}, [8846] = {.lex_state = 0}, - [8847] = {.lex_state = 0}, + [8847] = {.lex_state = 0, .external_lex_state = 2}, [8848] = {.lex_state = 0}, - [8849] = {.lex_state = 0}, + [8849] = {.lex_state = 0, .external_lex_state = 2}, [8850] = {.lex_state = 0}, - [8851] = {.lex_state = 0}, + [8851] = {.lex_state = 0, .external_lex_state = 2}, [8852] = {.lex_state = 0}, - [8853] = {.lex_state = 226}, + [8853] = {.lex_state = 0, .external_lex_state = 2}, [8854] = {.lex_state = 0}, - [8855] = {.lex_state = 393}, + [8855] = {.lex_state = 0, .external_lex_state = 2}, [8856] = {.lex_state = 0}, - [8857] = {.lex_state = 206}, - [8858] = {.lex_state = 0}, - [8859] = {.lex_state = 0}, - [8860] = {.lex_state = 393}, - [8861] = {.lex_state = 0, .external_lex_state = 3}, - [8862] = {.lex_state = 0}, + [8857] = {.lex_state = 0}, + [8858] = {.lex_state = 206}, + [8859] = {.lex_state = 393}, + [8860] = {.lex_state = 0}, + [8861] = {.lex_state = 393}, + [8862] = {.lex_state = 393}, [8863] = {.lex_state = 0}, [8864] = {.lex_state = 0}, [8865] = {.lex_state = 393}, [8866] = {.lex_state = 0}, - [8867] = {.lex_state = 0}, - [8868] = {.lex_state = 0}, - [8869] = {.lex_state = 200}, - [8870] = {.lex_state = 0}, - [8871] = {.lex_state = 123}, - [8872] = {.lex_state = 393}, + [8867] = {.lex_state = 393}, + [8868] = {.lex_state = 393}, + [8869] = {.lex_state = 123}, + [8870] = {.lex_state = 123}, + [8871] = {.lex_state = 226}, + [8872] = {.lex_state = 0}, [8873] = {.lex_state = 0}, [8874] = {.lex_state = 0}, - [8875] = {.lex_state = 226}, - [8876] = {.lex_state = 0}, - [8877] = {.lex_state = 0}, - [8878] = {.lex_state = 0}, - [8879] = {.lex_state = 226}, + [8875] = {.lex_state = 0}, + [8876] = {.lex_state = 226}, + [8877] = {.lex_state = 226}, + [8878] = {.lex_state = 123}, + [8879] = {.lex_state = 393}, [8880] = {.lex_state = 0}, - [8881] = {.lex_state = 123}, + [8881] = {.lex_state = 0}, [8882] = {.lex_state = 0}, - [8883] = {.lex_state = 226}, - [8884] = {.lex_state = 0}, + [8883] = {.lex_state = 0}, + [8884] = {.lex_state = 226}, [8885] = {.lex_state = 0}, - [8886] = {.lex_state = 0}, + [8886] = {.lex_state = 393}, [8887] = {.lex_state = 0}, [8888] = {.lex_state = 0}, - [8889] = {.lex_state = 0}, + [8889] = {.lex_state = 123}, [8890] = {.lex_state = 0}, - [8891] = {.lex_state = 0}, - [8892] = {.lex_state = 226}, + [8891] = {.lex_state = 393}, + [8892] = {.lex_state = 0, .external_lex_state = 3}, [8893] = {.lex_state = 0}, - [8894] = {.lex_state = 0}, + [8894] = {.lex_state = 226}, [8895] = {.lex_state = 0}, - [8896] = {.lex_state = 0}, - [8897] = {.lex_state = 0}, - [8898] = {.lex_state = 206}, - [8899] = {.lex_state = 0}, + [8896] = {.lex_state = 393}, + [8897] = {.lex_state = 226}, + [8898] = {.lex_state = 0}, + [8899] = {.lex_state = 226}, [8900] = {.lex_state = 0}, [8901] = {.lex_state = 0}, - [8902] = {.lex_state = 226}, - [8903] = {.lex_state = 123}, - [8904] = {.lex_state = 123}, + [8902] = {.lex_state = 0}, + [8903] = {.lex_state = 0}, + [8904] = {.lex_state = 0}, [8905] = {.lex_state = 0}, - [8906] = {.lex_state = 0}, - [8907] = {.lex_state = 393}, + [8906] = {.lex_state = 226}, + [8907] = {.lex_state = 0}, [8908] = {.lex_state = 0}, [8909] = {.lex_state = 0}, - [8910] = {.lex_state = 226}, - [8911] = {.lex_state = 206}, - [8912] = {.lex_state = 200}, + [8910] = {.lex_state = 206}, + [8911] = {.lex_state = 226}, + [8912] = {.lex_state = 226}, [8913] = {.lex_state = 0}, [8914] = {.lex_state = 0}, [8915] = {.lex_state = 0}, [8916] = {.lex_state = 0}, [8917] = {.lex_state = 0}, - [8918] = {.lex_state = 0}, - [8919] = {.lex_state = 226}, + [8918] = {.lex_state = 206}, + [8919] = {.lex_state = 0}, [8920] = {.lex_state = 0}, - [8921] = {.lex_state = 0}, + [8921] = {.lex_state = 123}, [8922] = {.lex_state = 0}, - [8923] = {.lex_state = 0}, + [8923] = {.lex_state = 226}, [8924] = {.lex_state = 0}, [8925] = {.lex_state = 0}, [8926] = {.lex_state = 0}, [8927] = {.lex_state = 0}, - [8928] = {.lex_state = 200}, - [8929] = {.lex_state = 0}, - [8930] = {.lex_state = 0}, + [8928] = {.lex_state = 0}, + [8929] = {.lex_state = 206}, + [8930] = {.lex_state = 393}, [8931] = {.lex_state = 0}, [8932] = {.lex_state = 0}, - [8933] = {.lex_state = 0}, - [8934] = {.lex_state = 123}, - [8935] = {.lex_state = 200}, + [8933] = {.lex_state = 206}, + [8934] = {.lex_state = 0}, + [8935] = {.lex_state = 0}, [8936] = {.lex_state = 0}, [8937] = {.lex_state = 0}, [8938] = {.lex_state = 0}, - [8939] = {.lex_state = 200}, - [8940] = {.lex_state = 0, .external_lex_state = 2}, + [8939] = {.lex_state = 0}, + [8940] = {.lex_state = 0}, [8941] = {.lex_state = 0}, - [8942] = {.lex_state = 200}, + [8942] = {.lex_state = 0}, [8943] = {.lex_state = 0}, [8944] = {.lex_state = 0}, - [8945] = {.lex_state = 0}, - [8946] = {.lex_state = 0}, + [8945] = {.lex_state = 123}, + [8946] = {.lex_state = 226}, [8947] = {.lex_state = 0}, [8948] = {.lex_state = 0}, [8949] = {.lex_state = 0}, - [8950] = {.lex_state = 0}, + [8950] = {.lex_state = 0, .external_lex_state = 3}, [8951] = {.lex_state = 0}, [8952] = {.lex_state = 0}, [8953] = {.lex_state = 0}, [8954] = {.lex_state = 0}, [8955] = {.lex_state = 0}, [8956] = {.lex_state = 0}, - [8957] = {.lex_state = 0}, - [8958] = {.lex_state = 200}, - [8959] = {.lex_state = 200}, + [8957] = {.lex_state = 123}, + [8958] = {.lex_state = 393}, + [8959] = {.lex_state = 123}, [8960] = {.lex_state = 0}, [8961] = {.lex_state = 123}, [8962] = {.lex_state = 0}, - [8963] = {.lex_state = 226}, - [8964] = {.lex_state = 0}, + [8963] = {.lex_state = 0}, + [8964] = {.lex_state = 200}, [8965] = {.lex_state = 0}, - [8966] = {.lex_state = 0}, - [8967] = {.lex_state = 0}, + [8966] = {.lex_state = 200}, + [8967] = {.lex_state = 200}, [8968] = {.lex_state = 0}, - [8969] = {.lex_state = 0}, + [8969] = {.lex_state = 200}, [8970] = {.lex_state = 0}, [8971] = {.lex_state = 0}, [8972] = {.lex_state = 0}, [8973] = {.lex_state = 0}, - [8974] = {.lex_state = 226}, - [8975] = {.lex_state = 226}, - [8976] = {.lex_state = 0}, - [8977] = {.lex_state = 123}, - [8978] = {.lex_state = 393}, + [8974] = {.lex_state = 0}, + [8975] = {.lex_state = 0}, + [8976] = {.lex_state = 123}, + [8977] = {.lex_state = 0}, + [8978] = {.lex_state = 0}, [8979] = {.lex_state = 0}, - [8980] = {.lex_state = 0}, - [8981] = {.lex_state = 0}, - [8982] = {.lex_state = 0}, - [8983] = {.lex_state = 0}, - [8984] = {.lex_state = 0}, - [8985] = {.lex_state = 123}, - [8986] = {.lex_state = 206}, + [8980] = {.lex_state = 200}, + [8981] = {.lex_state = 200}, + [8982] = {.lex_state = 200}, + [8983] = {.lex_state = 226}, + [8984] = {.lex_state = 123}, + [8985] = {.lex_state = 0}, + [8986] = {.lex_state = 0}, [8987] = {.lex_state = 0}, [8988] = {.lex_state = 0}, [8989] = {.lex_state = 0}, @@ -75902,395 +76163,449 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8993] = {.lex_state = 0}, [8994] = {.lex_state = 0}, [8995] = {.lex_state = 0}, - [8996] = {.lex_state = 200}, + [8996] = {.lex_state = 0}, [8997] = {.lex_state = 0}, [8998] = {.lex_state = 0}, - [8999] = {.lex_state = 123}, - [9000] = {.lex_state = 0}, - [9001] = {.lex_state = 393}, + [8999] = {.lex_state = 0}, + [9000] = {.lex_state = 226}, + [9001] = {.lex_state = 123}, [9002] = {.lex_state = 0}, - [9003] = {.lex_state = 226}, + [9003] = {.lex_state = 0}, [9004] = {.lex_state = 0}, - [9005] = {.lex_state = 393}, - [9006] = {.lex_state = 393}, - [9007] = {.lex_state = 393}, - [9008] = {.lex_state = 0}, - [9009] = {.lex_state = 393}, + [9005] = {.lex_state = 0}, + [9006] = {.lex_state = 0}, + [9007] = {.lex_state = 200}, + [9008] = {.lex_state = 200}, + [9009] = {.lex_state = 0}, [9010] = {.lex_state = 0}, - [9011] = {.lex_state = 0}, + [9011] = {.lex_state = 123}, [9012] = {.lex_state = 0}, [9013] = {.lex_state = 0}, - [9014] = {.lex_state = 226}, - [9015] = {.lex_state = 0}, - [9016] = {.lex_state = 393}, - [9017] = {.lex_state = 0}, + [9014] = {.lex_state = 0}, + [9015] = {.lex_state = 393}, + [9016] = {.lex_state = 0}, + [9017] = {.lex_state = 206}, [9018] = {.lex_state = 226}, [9019] = {.lex_state = 0}, [9020] = {.lex_state = 393}, - [9021] = {.lex_state = 0, .external_lex_state = 3}, - [9022] = {.lex_state = 393}, + [9021] = {.lex_state = 0}, + [9022] = {.lex_state = 0}, [9023] = {.lex_state = 0}, [9024] = {.lex_state = 0}, [9025] = {.lex_state = 0}, - [9026] = {.lex_state = 0}, + [9026] = {.lex_state = 226}, [9027] = {.lex_state = 0}, - [9028] = {.lex_state = 226}, + [9028] = {.lex_state = 0}, [9029] = {.lex_state = 0}, - [9030] = {.lex_state = 206}, - [9031] = {.lex_state = 0}, + [9030] = {.lex_state = 0}, + [9031] = {.lex_state = 393}, [9032] = {.lex_state = 0}, - [9033] = {.lex_state = 393}, - [9034] = {.lex_state = 393}, + [9033] = {.lex_state = 0}, + [9034] = {.lex_state = 0, .external_lex_state = 2}, [9035] = {.lex_state = 0}, [9036] = {.lex_state = 393}, - [9037] = {.lex_state = 0}, - [9038] = {.lex_state = 226}, - [9039] = {.lex_state = 226}, - [9040] = {.lex_state = 0}, - [9041] = {.lex_state = 393}, + [9037] = {.lex_state = 393}, + [9038] = {.lex_state = 393}, + [9039] = {.lex_state = 0}, + [9040] = {.lex_state = 393}, + [9041] = {.lex_state = 0}, [9042] = {.lex_state = 0}, - [9043] = {.lex_state = 123}, - [9044] = {.lex_state = 393}, - [9045] = {.lex_state = 0, .external_lex_state = 3}, + [9043] = {.lex_state = 0}, + [9044] = {.lex_state = 0}, + [9045] = {.lex_state = 226}, [9046] = {.lex_state = 0}, - [9047] = {.lex_state = 0}, + [9047] = {.lex_state = 393}, [9048] = {.lex_state = 0}, [9049] = {.lex_state = 0}, [9050] = {.lex_state = 0}, - [9051] = {.lex_state = 0}, - [9052] = {.lex_state = 206}, - [9053] = {.lex_state = 123}, - [9054] = {.lex_state = 0}, - [9055] = {.lex_state = 393}, - [9056] = {.lex_state = 393}, - [9057] = {.lex_state = 123}, - [9058] = {.lex_state = 393}, + [9051] = {.lex_state = 393}, + [9052] = {.lex_state = 0, .external_lex_state = 3}, + [9053] = {.lex_state = 393}, + [9054] = {.lex_state = 200}, + [9055] = {.lex_state = 0}, + [9056] = {.lex_state = 0}, + [9057] = {.lex_state = 0}, + [9058] = {.lex_state = 0}, [9059] = {.lex_state = 0}, [9060] = {.lex_state = 0}, - [9061] = {.lex_state = 226}, + [9061] = {.lex_state = 206}, [9062] = {.lex_state = 0}, - [9063] = {.lex_state = 393}, - [9064] = {.lex_state = 226}, - [9065] = {.lex_state = 206}, - [9066] = {.lex_state = 393}, - [9067] = {.lex_state = 0, .external_lex_state = 3}, + [9063] = {.lex_state = 0}, + [9064] = {.lex_state = 393}, + [9065] = {.lex_state = 393}, + [9066] = {.lex_state = 200}, + [9067] = {.lex_state = 393}, [9068] = {.lex_state = 0}, [9069] = {.lex_state = 0}, - [9070] = {.lex_state = 200}, + [9070] = {.lex_state = 226}, [9071] = {.lex_state = 0}, - [9072] = {.lex_state = 0}, - [9073] = {.lex_state = 206}, - [9074] = {.lex_state = 226}, + [9072] = {.lex_state = 393}, + [9073] = {.lex_state = 123}, + [9074] = {.lex_state = 0}, [9075] = {.lex_state = 393}, - [9076] = {.lex_state = 393}, + [9076] = {.lex_state = 0, .external_lex_state = 3}, [9077] = {.lex_state = 0}, - [9078] = {.lex_state = 393}, - [9079] = {.lex_state = 123}, - [9080] = {.lex_state = 393}, - [9081] = {.lex_state = 226}, - [9082] = {.lex_state = 393}, - [9083] = {.lex_state = 226}, + [9078] = {.lex_state = 0}, + [9079] = {.lex_state = 0}, + [9080] = {.lex_state = 0}, + [9081] = {.lex_state = 0}, + [9082] = {.lex_state = 0}, + [9083] = {.lex_state = 206}, [9084] = {.lex_state = 0}, - [9085] = {.lex_state = 393}, - [9086] = {.lex_state = 0, .external_lex_state = 3}, - [9087] = {.lex_state = 0}, + [9085] = {.lex_state = 200}, + [9086] = {.lex_state = 393}, + [9087] = {.lex_state = 393}, [9088] = {.lex_state = 200}, - [9089] = {.lex_state = 200}, + [9089] = {.lex_state = 393}, [9090] = {.lex_state = 0}, - [9091] = {.lex_state = 0}, - [9092] = {.lex_state = 206}, + [9091] = {.lex_state = 200}, + [9092] = {.lex_state = 226}, [9093] = {.lex_state = 0}, [9094] = {.lex_state = 393}, - [9095] = {.lex_state = 393}, + [9095] = {.lex_state = 200}, [9096] = {.lex_state = 0}, [9097] = {.lex_state = 393}, - [9098] = {.lex_state = 0}, + [9098] = {.lex_state = 0, .external_lex_state = 3}, [9099] = {.lex_state = 0}, - [9100] = {.lex_state = 393}, - [9101] = {.lex_state = 0}, - [9102] = {.lex_state = 200}, - [9103] = {.lex_state = 393}, - [9104] = {.lex_state = 0, .external_lex_state = 3}, + [9100] = {.lex_state = 0}, + [9101] = {.lex_state = 226}, + [9102] = {.lex_state = 0}, + [9103] = {.lex_state = 0}, + [9104] = {.lex_state = 206}, [9105] = {.lex_state = 0}, - [9106] = {.lex_state = 200}, - [9107] = {.lex_state = 0}, - [9108] = {.lex_state = 226}, - [9109] = {.lex_state = 0}, - [9110] = {.lex_state = 206}, + [9106] = {.lex_state = 393}, + [9107] = {.lex_state = 393}, + [9108] = {.lex_state = 0}, + [9109] = {.lex_state = 393}, + [9110] = {.lex_state = 200}, [9111] = {.lex_state = 0}, - [9112] = {.lex_state = 393}, + [9112] = {.lex_state = 226}, [9113] = {.lex_state = 393}, - [9114] = {.lex_state = 200}, - [9115] = {.lex_state = 393}, - [9116] = {.lex_state = 0}, - [9117] = {.lex_state = 0}, - [9118] = {.lex_state = 393}, + [9114] = {.lex_state = 0}, + [9115] = {.lex_state = 0}, + [9116] = {.lex_state = 393}, + [9117] = {.lex_state = 0, .external_lex_state = 3}, + [9118] = {.lex_state = 0}, [9119] = {.lex_state = 0}, - [9120] = {.lex_state = 0}, - [9121] = {.lex_state = 393}, - [9122] = {.lex_state = 0, .external_lex_state = 3}, - [9123] = {.lex_state = 0}, - [9124] = {.lex_state = 200}, - [9125] = {.lex_state = 206}, - [9126] = {.lex_state = 226}, - [9127] = {.lex_state = 0}, - [9128] = {.lex_state = 206}, - [9129] = {.lex_state = 393}, - [9130] = {.lex_state = 393}, - [9131] = {.lex_state = 0}, - [9132] = {.lex_state = 393}, - [9133] = {.lex_state = 226}, - [9134] = {.lex_state = 0}, - [9135] = {.lex_state = 0}, + [9120] = {.lex_state = 226}, + [9121] = {.lex_state = 200}, + [9122] = {.lex_state = 0}, + [9123] = {.lex_state = 206}, + [9124] = {.lex_state = 0}, + [9125] = {.lex_state = 393}, + [9126] = {.lex_state = 393}, + [9127] = {.lex_state = 200}, + [9128] = {.lex_state = 393}, + [9129] = {.lex_state = 0}, + [9130] = {.lex_state = 0}, + [9131] = {.lex_state = 393}, + [9132] = {.lex_state = 0}, + [9133] = {.lex_state = 0}, + [9134] = {.lex_state = 393}, + [9135] = {.lex_state = 0, .external_lex_state = 3}, [9136] = {.lex_state = 0}, - [9137] = {.lex_state = 393}, - [9138] = {.lex_state = 0, .external_lex_state = 3}, - [9139] = {.lex_state = 0}, - [9140] = {.lex_state = 0, .external_lex_state = 2}, - [9141] = {.lex_state = 0}, + [9137] = {.lex_state = 0}, + [9138] = {.lex_state = 0}, + [9139] = {.lex_state = 206}, + [9140] = {.lex_state = 0}, + [9141] = {.lex_state = 206}, [9142] = {.lex_state = 0}, - [9143] = {.lex_state = 0}, + [9143] = {.lex_state = 393}, [9144] = {.lex_state = 393}, - [9145] = {.lex_state = 393}, - [9146] = {.lex_state = 0}, - [9147] = {.lex_state = 0, .external_lex_state = 3}, + [9145] = {.lex_state = 0}, + [9146] = {.lex_state = 393}, + [9147] = {.lex_state = 0}, [9148] = {.lex_state = 0}, - [9149] = {.lex_state = 0}, + [9149] = {.lex_state = 393}, [9150] = {.lex_state = 0}, - [9151] = {.lex_state = 226}, + [9151] = {.lex_state = 0}, [9152] = {.lex_state = 393}, - [9153] = {.lex_state = 393}, + [9153] = {.lex_state = 0, .external_lex_state = 3}, [9154] = {.lex_state = 0}, - [9155] = {.lex_state = 0, .external_lex_state = 3}, - [9156] = {.lex_state = 393}, + [9155] = {.lex_state = 226}, + [9156] = {.lex_state = 0}, [9157] = {.lex_state = 0}, - [9158] = {.lex_state = 393}, - [9159] = {.lex_state = 393}, - [9160] = {.lex_state = 0, .external_lex_state = 3}, - [9161] = {.lex_state = 0}, - [9162] = {.lex_state = 0, .external_lex_state = 3}, - [9163] = {.lex_state = 0}, - [9164] = {.lex_state = 0, .external_lex_state = 3}, + [9158] = {.lex_state = 0}, + [9159] = {.lex_state = 206}, + [9160] = {.lex_state = 0}, + [9161] = {.lex_state = 393}, + [9162] = {.lex_state = 0}, + [9163] = {.lex_state = 393}, + [9164] = {.lex_state = 0}, [9165] = {.lex_state = 0}, - [9166] = {.lex_state = 0, .external_lex_state = 3}, - [9167] = {.lex_state = 0}, - [9168] = {.lex_state = 0, .external_lex_state = 3}, - [9169] = {.lex_state = 0}, - [9170] = {.lex_state = 0, .external_lex_state = 3}, + [9166] = {.lex_state = 0}, + [9167] = {.lex_state = 226}, + [9168] = {.lex_state = 393}, + [9169] = {.lex_state = 0, .external_lex_state = 3}, + [9170] = {.lex_state = 0}, [9171] = {.lex_state = 0}, - [9172] = {.lex_state = 0, .external_lex_state = 3}, + [9172] = {.lex_state = 226}, [9173] = {.lex_state = 0}, - [9174] = {.lex_state = 0, .external_lex_state = 3}, - [9175] = {.lex_state = 0}, + [9174] = {.lex_state = 0}, + [9175] = {.lex_state = 393}, [9176] = {.lex_state = 393}, - [9177] = {.lex_state = 123}, - [9178] = {.lex_state = 393}, - [9179] = {.lex_state = 393}, - [9180] = {.lex_state = 226}, + [9177] = {.lex_state = 393}, + [9178] = {.lex_state = 0, .external_lex_state = 3}, + [9179] = {.lex_state = 123}, + [9180] = {.lex_state = 123}, [9181] = {.lex_state = 0}, [9182] = {.lex_state = 0}, - [9183] = {.lex_state = 0}, - [9184] = {.lex_state = 226}, - [9185] = {.lex_state = 200}, - [9186] = {.lex_state = 0}, - [9187] = {.lex_state = 200}, - [9188] = {.lex_state = 200}, - [9189] = {.lex_state = 0}, - [9190] = {.lex_state = 200}, - [9191] = {.lex_state = 0}, + [9183] = {.lex_state = 393}, + [9184] = {.lex_state = 393}, + [9185] = {.lex_state = 0}, + [9186] = {.lex_state = 0, .external_lex_state = 3}, + [9187] = {.lex_state = 0}, + [9188] = {.lex_state = 0}, + [9189] = {.lex_state = 393}, + [9190] = {.lex_state = 393}, + [9191] = {.lex_state = 0, .external_lex_state = 3}, [9192] = {.lex_state = 0}, - [9193] = {.lex_state = 0}, + [9193] = {.lex_state = 0, .external_lex_state = 3}, [9194] = {.lex_state = 0}, - [9195] = {.lex_state = 226}, - [9196] = {.lex_state = 0, .external_lex_state = 3}, - [9197] = {.lex_state = 0}, - [9198] = {.lex_state = 200}, - [9199] = {.lex_state = 200}, - [9200] = {.lex_state = 200}, - [9201] = {.lex_state = 0}, + [9195] = {.lex_state = 0, .external_lex_state = 3}, + [9196] = {.lex_state = 0}, + [9197] = {.lex_state = 0, .external_lex_state = 3}, + [9198] = {.lex_state = 0}, + [9199] = {.lex_state = 0, .external_lex_state = 3}, + [9200] = {.lex_state = 0}, + [9201] = {.lex_state = 0, .external_lex_state = 3}, [9202] = {.lex_state = 0}, - [9203] = {.lex_state = 0}, + [9203] = {.lex_state = 0, .external_lex_state = 3}, [9204] = {.lex_state = 0}, - [9205] = {.lex_state = 0}, - [9206] = {.lex_state = 393}, + [9205] = {.lex_state = 0, .external_lex_state = 3}, + [9206] = {.lex_state = 0}, [9207] = {.lex_state = 0}, [9208] = {.lex_state = 0}, - [9209] = {.lex_state = 0}, - [9210] = {.lex_state = 0}, - [9211] = {.lex_state = 0}, + [9209] = {.lex_state = 393}, + [9210] = {.lex_state = 393}, + [9211] = {.lex_state = 226}, [9212] = {.lex_state = 0}, - [9213] = {.lex_state = 226}, - [9214] = {.lex_state = 393}, - [9215] = {.lex_state = 226}, - [9216] = {.lex_state = 200}, + [9213] = {.lex_state = 0}, + [9214] = {.lex_state = 0}, + [9215] = {.lex_state = 0}, + [9216] = {.lex_state = 0}, [9217] = {.lex_state = 0}, - [9218] = {.lex_state = 393}, + [9218] = {.lex_state = 200}, [9219] = {.lex_state = 0}, - [9220] = {.lex_state = 0}, - [9221] = {.lex_state = 0}, - [9222] = {.lex_state = 393}, + [9220] = {.lex_state = 123}, + [9221] = {.lex_state = 200}, + [9222] = {.lex_state = 0}, [9223] = {.lex_state = 0}, - [9224] = {.lex_state = 393}, - [9225] = {.lex_state = 200}, - [9226] = {.lex_state = 0}, - [9227] = {.lex_state = 200}, + [9224] = {.lex_state = 0}, + [9225] = {.lex_state = 226}, + [9226] = {.lex_state = 226}, + [9227] = {.lex_state = 0, .external_lex_state = 3}, [9228] = {.lex_state = 0}, [9229] = {.lex_state = 200}, [9230] = {.lex_state = 0}, - [9231] = {.lex_state = 0}, - [9232] = {.lex_state = 393}, - [9233] = {.lex_state = 393}, + [9231] = {.lex_state = 200}, + [9232] = {.lex_state = 0}, + [9233] = {.lex_state = 0}, [9234] = {.lex_state = 393}, - [9235] = {.lex_state = 226}, + [9235] = {.lex_state = 0}, [9236] = {.lex_state = 0}, [9237] = {.lex_state = 0}, - [9238] = {.lex_state = 393}, + [9238] = {.lex_state = 0}, [9239] = {.lex_state = 0}, - [9240] = {.lex_state = 206}, - [9241] = {.lex_state = 0}, - [9242] = {.lex_state = 0}, + [9240] = {.lex_state = 0}, + [9241] = {.lex_state = 226}, + [9242] = {.lex_state = 393}, [9243] = {.lex_state = 0}, [9244] = {.lex_state = 0}, - [9245] = {.lex_state = 0}, + [9245] = {.lex_state = 226}, [9246] = {.lex_state = 0}, [9247] = {.lex_state = 0}, - [9248] = {.lex_state = 0}, - [9249] = {.lex_state = 0}, + [9248] = {.lex_state = 393}, + [9249] = {.lex_state = 200}, [9250] = {.lex_state = 0}, [9251] = {.lex_state = 0}, - [9252] = {.lex_state = 0}, - [9253] = {.lex_state = 226}, + [9252] = {.lex_state = 393}, + [9253] = {.lex_state = 0}, [9254] = {.lex_state = 0}, [9255] = {.lex_state = 0}, - [9256] = {.lex_state = 393}, - [9257] = {.lex_state = 393}, - [9258] = {.lex_state = 226}, + [9256] = {.lex_state = 0}, + [9257] = {.lex_state = 0}, + [9258] = {.lex_state = 0}, [9259] = {.lex_state = 0}, [9260] = {.lex_state = 393}, - [9261] = {.lex_state = 226}, - [9262] = {.lex_state = 226}, - [9263] = {.lex_state = 0, .external_lex_state = 3}, + [9261] = {.lex_state = 393}, + [9262] = {.lex_state = 393}, + [9263] = {.lex_state = 226}, [9264] = {.lex_state = 0}, - [9265] = {.lex_state = 200}, - [9266] = {.lex_state = 0}, - [9267] = {.lex_state = 393}, - [9268] = {.lex_state = 393}, - [9269] = {.lex_state = 226}, + [9265] = {.lex_state = 0}, + [9266] = {.lex_state = 393}, + [9267] = {.lex_state = 123}, + [9268] = {.lex_state = 206}, + [9269] = {.lex_state = 0}, [9270] = {.lex_state = 0}, - [9271] = {.lex_state = 200}, - [9272] = {.lex_state = 226}, - [9273] = {.lex_state = 0, .external_lex_state = 3}, - [9274] = {.lex_state = 200}, + [9271] = {.lex_state = 0}, + [9272] = {.lex_state = 0}, + [9273] = {.lex_state = 0}, + [9274] = {.lex_state = 0}, [9275] = {.lex_state = 0}, [9276] = {.lex_state = 0}, - [9277] = {.lex_state = 393}, - [9278] = {.lex_state = 393}, - [9279] = {.lex_state = 226}, - [9280] = {.lex_state = 0}, + [9277] = {.lex_state = 226}, + [9278] = {.lex_state = 123}, + [9279] = {.lex_state = 0}, + [9280] = {.lex_state = 200}, [9281] = {.lex_state = 0}, - [9282] = {.lex_state = 226}, - [9283] = {.lex_state = 0, .external_lex_state = 3}, - [9284] = {.lex_state = 393}, + [9282] = {.lex_state = 200}, + [9283] = {.lex_state = 0}, + [9284] = {.lex_state = 0}, [9285] = {.lex_state = 0}, [9286] = {.lex_state = 393}, [9287] = {.lex_state = 393}, - [9288] = {.lex_state = 226}, - [9289] = {.lex_state = 393}, - [9290] = {.lex_state = 200}, - [9291] = {.lex_state = 226}, - [9292] = {.lex_state = 0, .external_lex_state = 3}, - [9293] = {.lex_state = 200}, - [9294] = {.lex_state = 200}, - [9295] = {.lex_state = 393}, - [9296] = {.lex_state = 226}, + [9288] = {.lex_state = 393}, + [9289] = {.lex_state = 226}, + [9290] = {.lex_state = 0}, + [9291] = {.lex_state = 0}, + [9292] = {.lex_state = 0}, + [9293] = {.lex_state = 226}, + [9294] = {.lex_state = 0, .external_lex_state = 3}, + [9295] = {.lex_state = 226}, + [9296] = {.lex_state = 0}, [9297] = {.lex_state = 0}, - [9298] = {.lex_state = 0}, - [9299] = {.lex_state = 226}, - [9300] = {.lex_state = 0, .external_lex_state = 3}, - [9301] = {.lex_state = 206}, + [9298] = {.lex_state = 393}, + [9299] = {.lex_state = 393}, + [9300] = {.lex_state = 226}, + [9301] = {.lex_state = 0}, [9302] = {.lex_state = 226}, - [9303] = {.lex_state = 393}, - [9304] = {.lex_state = 226}, - [9305] = {.lex_state = 0}, - [9306] = {.lex_state = 393}, - [9307] = {.lex_state = 226}, - [9308] = {.lex_state = 0, .external_lex_state = 3}, - [9309] = {.lex_state = 226}, - [9310] = {.lex_state = 0}, - [9311] = {.lex_state = 393}, - [9312] = {.lex_state = 226}, - [9313] = {.lex_state = 0}, - [9314] = {.lex_state = 226}, - [9315] = {.lex_state = 0, .external_lex_state = 3}, + [9303] = {.lex_state = 226}, + [9304] = {.lex_state = 0, .external_lex_state = 3}, + [9305] = {.lex_state = 393}, + [9306] = {.lex_state = 0}, + [9307] = {.lex_state = 393}, + [9308] = {.lex_state = 393}, + [9309] = {.lex_state = 393}, + [9310] = {.lex_state = 226}, + [9311] = {.lex_state = 0}, + [9312] = {.lex_state = 0}, + [9313] = {.lex_state = 226}, + [9314] = {.lex_state = 0, .external_lex_state = 3}, + [9315] = {.lex_state = 226}, [9316] = {.lex_state = 123}, [9317] = {.lex_state = 0}, - [9318] = {.lex_state = 226}, - [9319] = {.lex_state = 0, .external_lex_state = 3}, - [9320] = {.lex_state = 123}, - [9321] = {.lex_state = 0}, - [9322] = {.lex_state = 0, .external_lex_state = 3}, - [9323] = {.lex_state = 123}, - [9324] = {.lex_state = 0, .external_lex_state = 3}, - [9325] = {.lex_state = 226}, - [9326] = {.lex_state = 0, .external_lex_state = 3}, - [9327] = {.lex_state = 0}, - [9328] = {.lex_state = 0, .external_lex_state = 3}, + [9318] = {.lex_state = 393}, + [9319] = {.lex_state = 226}, + [9320] = {.lex_state = 0}, + [9321] = {.lex_state = 200}, + [9322] = {.lex_state = 226}, + [9323] = {.lex_state = 0, .external_lex_state = 3}, + [9324] = {.lex_state = 200}, + [9325] = {.lex_state = 200}, + [9326] = {.lex_state = 393}, + [9327] = {.lex_state = 226}, + [9328] = {.lex_state = 0}, [9329] = {.lex_state = 0}, - [9330] = {.lex_state = 0, .external_lex_state = 3}, - [9331] = {.lex_state = 200}, - [9332] = {.lex_state = 0, .external_lex_state = 3}, + [9330] = {.lex_state = 226}, + [9331] = {.lex_state = 0, .external_lex_state = 3}, + [9332] = {.lex_state = 206}, [9333] = {.lex_state = 0}, - [9334] = {.lex_state = 0, .external_lex_state = 3}, - [9335] = {.lex_state = 0}, - [9336] = {.lex_state = 0, .external_lex_state = 3}, - [9337] = {.lex_state = 123}, - [9338] = {.lex_state = 0, .external_lex_state = 3}, - [9339] = {.lex_state = 393}, + [9334] = {.lex_state = 393}, + [9335] = {.lex_state = 226}, + [9336] = {.lex_state = 0}, + [9337] = {.lex_state = 226}, + [9338] = {.lex_state = 226}, + [9339] = {.lex_state = 0, .external_lex_state = 3}, [9340] = {.lex_state = 393}, - [9341] = {.lex_state = 226}, + [9341] = {.lex_state = 0}, [9342] = {.lex_state = 393}, - [9343] = {.lex_state = 393}, + [9343] = {.lex_state = 226}, [9344] = {.lex_state = 0}, - [9345] = {.lex_state = 393}, - [9346] = {.lex_state = 393}, - [9347] = {.lex_state = 226}, - [9348] = {.lex_state = 393}, - [9349] = {.lex_state = 393}, - [9350] = {.lex_state = 226}, - [9351] = {.lex_state = 393}, - [9352] = {.lex_state = 393}, - [9353] = {.lex_state = 0}, - [9354] = {.lex_state = 393}, - [9355] = {.lex_state = 393}, + [9345] = {.lex_state = 226}, + [9346] = {.lex_state = 0, .external_lex_state = 3}, + [9347] = {.lex_state = 0}, + [9348] = {.lex_state = 226}, + [9349] = {.lex_state = 226}, + [9350] = {.lex_state = 0, .external_lex_state = 3}, + [9351] = {.lex_state = 0}, + [9352] = {.lex_state = 0}, + [9353] = {.lex_state = 0, .external_lex_state = 3}, + [9354] = {.lex_state = 0}, + [9355] = {.lex_state = 0, .external_lex_state = 3}, [9356] = {.lex_state = 0}, - [9357] = {.lex_state = 393}, - [9358] = {.lex_state = 393}, - [9359] = {.lex_state = 0}, - [9360] = {.lex_state = 393}, - [9361] = {.lex_state = 393}, - [9362] = {.lex_state = 393}, - [9363] = {.lex_state = 393}, - [9364] = {.lex_state = 393}, - [9365] = {.lex_state = 393}, - [9366] = {.lex_state = 393}, - [9367] = {.lex_state = 393}, - [9368] = {.lex_state = 393}, - [9369] = {.lex_state = 393}, + [9357] = {.lex_state = 0, .external_lex_state = 3}, + [9358] = {.lex_state = 0}, + [9359] = {.lex_state = 0, .external_lex_state = 3}, + [9360] = {.lex_state = 0}, + [9361] = {.lex_state = 0, .external_lex_state = 3}, + [9362] = {.lex_state = 0}, + [9363] = {.lex_state = 0, .external_lex_state = 3}, + [9364] = {.lex_state = 0}, + [9365] = {.lex_state = 0, .external_lex_state = 3}, + [9366] = {.lex_state = 226}, + [9367] = {.lex_state = 0, .external_lex_state = 3}, + [9368] = {.lex_state = 0}, + [9369] = {.lex_state = 0, .external_lex_state = 3}, [9370] = {.lex_state = 393}, - [9371] = {.lex_state = 0}, - [9372] = {.lex_state = 0}, - [9373] = {.lex_state = 0}, - [9374] = {.lex_state = 226}, - [9375] = {.lex_state = 226}, - [9376] = {.lex_state = 0}, - [9377] = {.lex_state = 226}, - [9378] = {.lex_state = 393}, + [9371] = {.lex_state = 393}, + [9372] = {.lex_state = 226}, + [9373] = {.lex_state = 393}, + [9374] = {.lex_state = 393}, + [9375] = {.lex_state = 0}, + [9376] = {.lex_state = 393}, + [9377] = {.lex_state = 393}, + [9378] = {.lex_state = 0}, [9379] = {.lex_state = 393}, [9380] = {.lex_state = 393}, - [9381] = {.lex_state = 393}, + [9381] = {.lex_state = 0}, [9382] = {.lex_state = 393}, [9383] = {.lex_state = 393}, - [9384] = {.lex_state = 393}, + [9384] = {.lex_state = 0}, + [9385] = {.lex_state = 393}, + [9386] = {.lex_state = 393}, + [9387] = {.lex_state = 0}, + [9388] = {.lex_state = 393}, + [9389] = {.lex_state = 393}, + [9390] = {.lex_state = 0}, + [9391] = {.lex_state = 393}, + [9392] = {.lex_state = 393}, + [9393] = {.lex_state = 393}, + [9394] = {.lex_state = 393}, + [9395] = {.lex_state = 393}, + [9396] = {.lex_state = 393}, + [9397] = {.lex_state = 393}, + [9398] = {.lex_state = 393}, + [9399] = {.lex_state = 393}, + [9400] = {.lex_state = 393}, + [9401] = {.lex_state = 393}, + [9402] = {.lex_state = 123}, + [9403] = {.lex_state = 123}, + [9404] = {.lex_state = 0}, + [9405] = {.lex_state = 226}, + [9406] = {.lex_state = 226}, + [9407] = {.lex_state = 0}, + [9408] = {.lex_state = 226}, + [9409] = {.lex_state = 393}, + [9410] = {.lex_state = 393}, + [9411] = {.lex_state = 393}, + [9412] = {.lex_state = 393}, + [9413] = {.lex_state = 393}, + [9414] = {.lex_state = 393}, + [9415] = {.lex_state = 393}, +}; + +enum { + ts_external_token_raw_string_delimiter = 0, + ts_external_token_raw_string_content = 1, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token_raw_string_delimiter] = sym_raw_string_delimiter, + [ts_external_token_raw_string_content] = sym_raw_string_content, +}; + +static const bool ts_external_scanner_states[4][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token_raw_string_delimiter] = true, + [ts_external_token_raw_string_content] = true, + }, + [2] = { + [ts_external_token_raw_string_delimiter] = true, + }, + [3] = { + [ts_external_token_raw_string_content] = true, + }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -76499,7 +76814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_content] = ACTIONS(1), }, [1] = { - [sym_translation_unit] = STATE(9209), + [sym_translation_unit] = STATE(9237), [sym_preproc_include] = STATE(98), [sym_preproc_def] = STATE(98), [sym_preproc_function_def] = STATE(98), @@ -76509,28 +76824,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(98), [sym_declaration] = STATE(98), [sym_type_definition] = STATE(98), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5530), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5573), [sym_linkage_specification] = STATE(98), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2244), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6873), - [sym_array_declarator] = STATE(6760), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2253), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6901), + [sym_array_declarator] = STATE(6752), [sym_compound_statement] = STATE(98), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4009), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3979), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(98), [sym_labeled_statement] = STATE(98), [sym__top_level_expression_statement] = STATE(98), @@ -76544,50 +76859,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(98), [sym_continue_statement] = STATE(98), [sym_goto_statement] = STATE(98), - [sym__expression] = STATE(5260), - [sym__expression_not_binary] = STATE(5338), - [sym_conditional_expression] = STATE(5338), - [sym_assignment_expression] = STATE(5338), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(5338), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(5338), - [sym_cast_expression] = STATE(5338), - [sym_sizeof_expression] = STATE(5338), - [sym_alignof_expression] = STATE(5338), - [sym_offsetof_expression] = STATE(5338), - [sym_generic_expression] = STATE(5338), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(5338), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(5338), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(5338), + [sym__expression] = STATE(5292), + [sym__expression_not_binary] = STATE(5340), + [sym_conditional_expression] = STATE(5340), + [sym_assignment_expression] = STATE(5340), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(5340), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(5340), + [sym_cast_expression] = STATE(5340), + [sym_sizeof_expression] = STATE(5340), + [sym_alignof_expression] = STATE(5340), + [sym_offsetof_expression] = STATE(5340), + [sym_generic_expression] = STATE(5340), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(5340), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(5340), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(5340), [sym__empty_declaration] = STATE(98), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2006), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2048), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(98), [sym_template_instantiation] = STATE(98), - [sym_operator_cast] = STATE(7203), - [sym__constructor_specifiers] = STATE(2006), + [sym_operator_cast] = STATE(7216), + [sym__constructor_specifiers] = STATE(2048), [sym_operator_cast_definition] = STATE(98), [sym_operator_cast_declaration] = STATE(98), [sym_constructor_or_destructor_definition] = STATE(98), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), [sym_namespace_definition] = STATE(98), [sym_namespace_alias_definition] = STATE(98), [sym_using_declaration] = STATE(98), @@ -76599,29 +76914,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(98), [sym_throw_statement] = STATE(98), [sym_try_statement] = STATE(98), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(5338), - [sym_new_expression] = STATE(5338), - [sym_delete_expression] = STATE(5338), - [sym_requires_clause] = STATE(5338), - [sym_requires_expression] = STATE(5338), - [sym_lambda_expression] = STATE(5338), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(5338), - [sym_parameter_pack_expansion] = STATE(5338), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7203), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(5340), + [sym_new_expression] = STATE(5340), + [sym_delete_expression] = STATE(5340), + [sym_requires_clause] = STATE(5340), + [sym_requires_expression] = STATE(5340), + [sym_lambda_expression] = STATE(5340), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(5340), + [sym_parameter_pack_expansion] = STATE(5340), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7216), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), [aux_sym_translation_unit_repeat1] = STATE(98), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2006), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2048), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -76751,137 +77066,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(113), }, [2] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(85), + [sym_preproc_def] = STATE(85), + [sym_preproc_function_def] = STATE(85), + [sym_preproc_call] = STATE(85), + [sym_preproc_if] = STATE(85), + [sym_preproc_ifdef] = STATE(85), + [sym_function_definition] = STATE(85), + [sym_declaration] = STATE(85), + [sym_type_definition] = STATE(85), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(85), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(85), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(85), + [sym_labeled_statement] = STATE(85), + [sym_expression_statement] = STATE(85), + [sym_if_statement] = STATE(85), + [sym_switch_statement] = STATE(85), + [sym_case_statement] = STATE(85), + [sym_while_statement] = STATE(85), + [sym_do_statement] = STATE(85), + [sym_for_statement] = STATE(85), + [sym_return_statement] = STATE(85), + [sym_break_statement] = STATE(85), + [sym_continue_statement] = STATE(85), + [sym_goto_statement] = STATE(85), + [sym_seh_try_statement] = STATE(85), + [sym_seh_leave_statement] = STATE(85), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(85), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(85), + [sym_template_instantiation] = STATE(85), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(85), + [sym_operator_cast_declaration] = STATE(85), + [sym_constructor_or_destructor_definition] = STATE(85), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(85), + [sym_for_range_loop] = STATE(85), + [sym_co_return_statement] = STATE(85), + [sym_co_yield_statement] = STATE(85), + [sym_throw_statement] = STATE(85), + [sym_try_statement] = STATE(85), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(85), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -77016,137 +77331,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [3] = { - [sym_preproc_include] = STATE(65), - [sym_preproc_def] = STATE(65), - [sym_preproc_function_def] = STATE(65), - [sym_preproc_call] = STATE(65), - [sym_preproc_if] = STATE(65), - [sym_preproc_ifdef] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(65), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_case_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym_seh_try_statement] = STATE(65), - [sym_seh_leave_statement] = STATE(65), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(65), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(65), - [sym_template_instantiation] = STATE(65), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(65), - [sym_operator_cast_declaration] = STATE(65), - [sym_constructor_or_destructor_definition] = STATE(65), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(65), - [sym_namespace_alias_definition] = STATE(65), - [sym_using_declaration] = STATE(65), - [sym_alias_declaration] = STATE(65), - [sym_static_assert_declaration] = STATE(65), - [sym_concept_definition] = STATE(65), - [sym_for_range_loop] = STATE(65), - [sym_co_return_statement] = STATE(65), - [sym_co_yield_statement] = STATE(65), - [sym_throw_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(65), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_case_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_seh_try_statement] = STATE(51), + [sym_seh_leave_statement] = STATE(51), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(51), + [sym_namespace_alias_definition] = STATE(51), + [sym_using_declaration] = STATE(51), + [sym_alias_declaration] = STATE(51), + [sym_static_assert_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(51), + [sym_co_return_statement] = STATE(51), + [sym_co_yield_statement] = STATE(51), + [sym_throw_statement] = STATE(51), + [sym_try_statement] = STATE(51), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -77281,137 +77596,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [4] = { - [sym_preproc_include] = STATE(68), - [sym_preproc_def] = STATE(68), - [sym_preproc_function_def] = STATE(68), - [sym_preproc_call] = STATE(68), - [sym_preproc_if] = STATE(68), - [sym_preproc_ifdef] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(68), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_case_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(68), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(68), - [sym_template_instantiation] = STATE(68), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(68), - [sym_operator_cast_declaration] = STATE(68), - [sym_constructor_or_destructor_definition] = STATE(68), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(68), - [sym_namespace_alias_definition] = STATE(68), - [sym_using_declaration] = STATE(68), - [sym_alias_declaration] = STATE(68), - [sym_static_assert_declaration] = STATE(68), - [sym_concept_definition] = STATE(68), - [sym_for_range_loop] = STATE(68), - [sym_co_return_statement] = STATE(68), - [sym_co_yield_statement] = STATE(68), - [sym_throw_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(68), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_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_seh_try_statement] = STATE(45), + [sym_seh_leave_statement] = STATE(45), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -77546,137 +77861,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [5] = { - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(47), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(47), - [sym_template_instantiation] = STATE(47), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(47), - [sym_operator_cast_declaration] = STATE(47), - [sym_constructor_or_destructor_definition] = STATE(47), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(47), - [sym_namespace_alias_definition] = STATE(47), - [sym_using_declaration] = STATE(47), - [sym_alias_declaration] = STATE(47), - [sym_static_assert_declaration] = STATE(47), - [sym_concept_definition] = STATE(47), - [sym_for_range_loop] = STATE(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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(49), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(49), + [sym_namespace_alias_definition] = STATE(49), + [sym_using_declaration] = STATE(49), + [sym_alias_declaration] = STATE(49), + [sym_static_assert_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(49), + [sym_co_return_statement] = STATE(49), + [sym_co_yield_statement] = STATE(49), + [sym_throw_statement] = STATE(49), + [sym_try_statement] = STATE(49), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -77811,137 +78126,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [6] = { - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(47), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(47), - [sym_template_instantiation] = STATE(47), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(47), - [sym_operator_cast_declaration] = STATE(47), - [sym_constructor_or_destructor_definition] = STATE(47), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(47), - [sym_namespace_alias_definition] = STATE(47), - [sym_using_declaration] = STATE(47), - [sym_alias_declaration] = STATE(47), - [sym_static_assert_declaration] = STATE(47), - [sym_concept_definition] = STATE(47), - [sym_for_range_loop] = STATE(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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(49), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(49), + [sym_namespace_alias_definition] = STATE(49), + [sym_using_declaration] = STATE(49), + [sym_alias_declaration] = STATE(49), + [sym_static_assert_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(49), + [sym_co_return_statement] = STATE(49), + [sym_co_yield_statement] = STATE(49), + [sym_throw_statement] = STATE(49), + [sym_try_statement] = STATE(49), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -78076,137 +78391,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [7] = { - [sym_preproc_include] = STATE(89), - [sym_preproc_def] = STATE(89), - [sym_preproc_function_def] = STATE(89), - [sym_preproc_call] = STATE(89), - [sym_preproc_if] = STATE(89), - [sym_preproc_ifdef] = STATE(89), - [sym_function_definition] = STATE(89), - [sym_declaration] = STATE(89), - [sym_type_definition] = STATE(89), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(89), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(89), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_case_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym_seh_try_statement] = STATE(89), - [sym_seh_leave_statement] = STATE(89), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(89), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(89), - [sym_template_instantiation] = STATE(89), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(89), - [sym_operator_cast_declaration] = STATE(89), - [sym_constructor_or_destructor_definition] = STATE(89), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(89), - [sym_for_range_loop] = STATE(89), - [sym_co_return_statement] = STATE(89), - [sym_co_yield_statement] = STATE(89), - [sym_throw_statement] = STATE(89), - [sym_try_statement] = STATE(89), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(89), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(85), + [sym_preproc_def] = STATE(85), + [sym_preproc_function_def] = STATE(85), + [sym_preproc_call] = STATE(85), + [sym_preproc_if] = STATE(85), + [sym_preproc_ifdef] = STATE(85), + [sym_function_definition] = STATE(85), + [sym_declaration] = STATE(85), + [sym_type_definition] = STATE(85), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(85), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(85), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(85), + [sym_labeled_statement] = STATE(85), + [sym_expression_statement] = STATE(85), + [sym_if_statement] = STATE(85), + [sym_switch_statement] = STATE(85), + [sym_case_statement] = STATE(85), + [sym_while_statement] = STATE(85), + [sym_do_statement] = STATE(85), + [sym_for_statement] = STATE(85), + [sym_return_statement] = STATE(85), + [sym_break_statement] = STATE(85), + [sym_continue_statement] = STATE(85), + [sym_goto_statement] = STATE(85), + [sym_seh_try_statement] = STATE(85), + [sym_seh_leave_statement] = STATE(85), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(85), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(85), + [sym_template_instantiation] = STATE(85), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(85), + [sym_operator_cast_declaration] = STATE(85), + [sym_constructor_or_destructor_definition] = STATE(85), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(85), + [sym_for_range_loop] = STATE(85), + [sym_co_return_statement] = STATE(85), + [sym_co_yield_statement] = STATE(85), + [sym_throw_statement] = STATE(85), + [sym_try_statement] = STATE(85), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(85), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -78341,137 +78656,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [8] = { - [sym_preproc_include] = STATE(74), - [sym_preproc_def] = STATE(74), - [sym_preproc_function_def] = STATE(74), - [sym_preproc_call] = STATE(74), - [sym_preproc_if] = STATE(74), - [sym_preproc_ifdef] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(74), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_case_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym_seh_try_statement] = STATE(74), - [sym_seh_leave_statement] = STATE(74), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(74), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(74), - [sym_template_instantiation] = STATE(74), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(74), - [sym_operator_cast_declaration] = STATE(74), - [sym_constructor_or_destructor_definition] = STATE(74), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(74), - [sym_namespace_alias_definition] = STATE(74), - [sym_using_declaration] = STATE(74), - [sym_alias_declaration] = STATE(74), - [sym_static_assert_declaration] = STATE(74), - [sym_concept_definition] = STATE(74), - [sym_for_range_loop] = STATE(74), - [sym_co_return_statement] = STATE(74), - [sym_co_yield_statement] = STATE(74), - [sym_throw_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(74), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym_seh_try_statement] = STATE(48), + [sym_seh_leave_statement] = STATE(48), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(48), + [sym_namespace_alias_definition] = STATE(48), + [sym_using_declaration] = STATE(48), + [sym_alias_declaration] = STATE(48), + [sym_static_assert_declaration] = STATE(48), + [sym_concept_definition] = STATE(48), + [sym_for_range_loop] = STATE(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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -78606,137 +78921,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [9] = { - [sym_preproc_include] = STATE(59), - [sym_preproc_def] = STATE(59), - [sym_preproc_function_def] = STATE(59), - [sym_preproc_call] = STATE(59), - [sym_preproc_if] = STATE(59), - [sym_preproc_ifdef] = STATE(59), - [sym_function_definition] = STATE(59), - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_case_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(59), - [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(59), - [sym_operator_cast_declaration] = STATE(59), - [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(59), - [sym_namespace_alias_definition] = STATE(59), - [sym_using_declaration] = STATE(59), - [sym_alias_declaration] = STATE(59), - [sym_static_assert_declaration] = STATE(59), - [sym_concept_definition] = STATE(59), - [sym_for_range_loop] = STATE(59), - [sym_co_return_statement] = STATE(59), - [sym_co_yield_statement] = STATE(59), - [sym_throw_statement] = STATE(59), - [sym_try_statement] = STATE(59), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_case_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_seh_try_statement] = STATE(51), + [sym_seh_leave_statement] = STATE(51), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(51), + [sym_namespace_alias_definition] = STATE(51), + [sym_using_declaration] = STATE(51), + [sym_alias_declaration] = STATE(51), + [sym_static_assert_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(51), + [sym_co_return_statement] = STATE(51), + [sym_co_yield_statement] = STATE(51), + [sym_throw_statement] = STATE(51), + [sym_try_statement] = STATE(51), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -78871,137 +79186,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [10] = { - [sym_preproc_include] = STATE(58), - [sym_preproc_def] = STATE(58), - [sym_preproc_function_def] = STATE(58), - [sym_preproc_call] = STATE(58), - [sym_preproc_if] = STATE(58), - [sym_preproc_ifdef] = STATE(58), - [sym_function_definition] = STATE(58), - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(58), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_case_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym_seh_try_statement] = STATE(58), - [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(58), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(58), - [sym_template_instantiation] = STATE(58), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(58), - [sym_operator_cast_declaration] = STATE(58), - [sym_constructor_or_destructor_definition] = STATE(58), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(58), - [sym_namespace_alias_definition] = STATE(58), - [sym_using_declaration] = STATE(58), - [sym_alias_declaration] = STATE(58), - [sym_static_assert_declaration] = STATE(58), - [sym_concept_definition] = STATE(58), - [sym_for_range_loop] = STATE(58), - [sym_co_return_statement] = STATE(58), - [sym_co_yield_statement] = STATE(58), - [sym_throw_statement] = STATE(58), - [sym_try_statement] = STATE(58), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(58), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(81), + [sym_preproc_def] = STATE(81), + [sym_preproc_function_def] = STATE(81), + [sym_preproc_call] = STATE(81), + [sym_preproc_if] = STATE(81), + [sym_preproc_ifdef] = STATE(81), + [sym_function_definition] = STATE(81), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(81), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(81), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(81), + [sym_template_instantiation] = STATE(81), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(81), + [sym_operator_cast_declaration] = STATE(81), + [sym_constructor_or_destructor_definition] = STATE(81), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(81), + [sym_namespace_alias_definition] = STATE(81), + [sym_using_declaration] = STATE(81), + [sym_alias_declaration] = STATE(81), + [sym_static_assert_declaration] = STATE(81), + [sym_concept_definition] = STATE(81), + [sym_for_range_loop] = STATE(81), + [sym_co_return_statement] = STATE(81), + [sym_co_yield_statement] = STATE(81), + [sym_throw_statement] = STATE(81), + [sym_try_statement] = STATE(81), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -79136,137 +79451,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [11] = { - [sym_preproc_include] = STATE(68), - [sym_preproc_def] = STATE(68), - [sym_preproc_function_def] = STATE(68), - [sym_preproc_call] = STATE(68), - [sym_preproc_if] = STATE(68), - [sym_preproc_ifdef] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(68), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_case_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(68), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(68), - [sym_template_instantiation] = STATE(68), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(68), - [sym_operator_cast_declaration] = STATE(68), - [sym_constructor_or_destructor_definition] = STATE(68), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(68), - [sym_namespace_alias_definition] = STATE(68), - [sym_using_declaration] = STATE(68), - [sym_alias_declaration] = STATE(68), - [sym_static_assert_declaration] = STATE(68), - [sym_concept_definition] = STATE(68), - [sym_for_range_loop] = STATE(68), - [sym_co_return_statement] = STATE(68), - [sym_co_yield_statement] = STATE(68), - [sym_throw_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(68), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(89), + [sym_preproc_def] = STATE(89), + [sym_preproc_function_def] = STATE(89), + [sym_preproc_call] = STATE(89), + [sym_preproc_if] = STATE(89), + [sym_preproc_ifdef] = STATE(89), + [sym_function_definition] = STATE(89), + [sym_declaration] = STATE(89), + [sym_type_definition] = STATE(89), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(89), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(89), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(89), + [sym_template_instantiation] = STATE(89), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(89), + [sym_operator_cast_declaration] = STATE(89), + [sym_constructor_or_destructor_definition] = STATE(89), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(89), + [sym_for_range_loop] = STATE(89), + [sym_co_return_statement] = STATE(89), + [sym_co_yield_statement] = STATE(89), + [sym_throw_statement] = STATE(89), + [sym_try_statement] = STATE(89), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(89), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -79401,137 +79716,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [12] = { - [sym_preproc_include] = STATE(90), - [sym_preproc_def] = STATE(90), - [sym_preproc_function_def] = STATE(90), - [sym_preproc_call] = STATE(90), - [sym_preproc_if] = STATE(90), - [sym_preproc_ifdef] = STATE(90), - [sym_function_definition] = STATE(90), - [sym_declaration] = STATE(90), - [sym_type_definition] = STATE(90), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(90), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(90), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym_seh_try_statement] = STATE(90), - [sym_seh_leave_statement] = STATE(90), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(90), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(90), - [sym_template_instantiation] = STATE(90), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(90), - [sym_operator_cast_declaration] = STATE(90), - [sym_constructor_or_destructor_definition] = STATE(90), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(90), - [sym_for_range_loop] = STATE(90), - [sym_co_return_statement] = STATE(90), - [sym_co_yield_statement] = STATE(90), - [sym_throw_statement] = STATE(90), - [sym_try_statement] = STATE(90), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(90), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(59), + [sym_preproc_def] = STATE(59), + [sym_preproc_function_def] = STATE(59), + [sym_preproc_call] = STATE(59), + [sym_preproc_if] = STATE(59), + [sym_preproc_ifdef] = STATE(59), + [sym_function_definition] = STATE(59), + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(59), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_case_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym_seh_try_statement] = STATE(59), + [sym_seh_leave_statement] = STATE(59), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(59), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(59), + [sym_template_instantiation] = STATE(59), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(59), + [sym_operator_cast_declaration] = STATE(59), + [sym_constructor_or_destructor_definition] = STATE(59), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(59), + [sym_namespace_alias_definition] = STATE(59), + [sym_using_declaration] = STATE(59), + [sym_alias_declaration] = STATE(59), + [sym_static_assert_declaration] = STATE(59), + [sym_concept_definition] = STATE(59), + [sym_for_range_loop] = STATE(59), + [sym_co_return_statement] = STATE(59), + [sym_co_yield_statement] = STATE(59), + [sym_throw_statement] = STATE(59), + [sym_try_statement] = STATE(59), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(59), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -79666,137 +79981,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [13] = { - [sym_preproc_include] = STATE(58), - [sym_preproc_def] = STATE(58), - [sym_preproc_function_def] = STATE(58), - [sym_preproc_call] = STATE(58), - [sym_preproc_if] = STATE(58), - [sym_preproc_ifdef] = STATE(58), - [sym_function_definition] = STATE(58), - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(58), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_case_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym_seh_try_statement] = STATE(58), - [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(58), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(58), - [sym_template_instantiation] = STATE(58), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(58), - [sym_operator_cast_declaration] = STATE(58), - [sym_constructor_or_destructor_definition] = STATE(58), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(58), - [sym_namespace_alias_definition] = STATE(58), - [sym_using_declaration] = STATE(58), - [sym_alias_declaration] = STATE(58), - [sym_static_assert_declaration] = STATE(58), - [sym_concept_definition] = STATE(58), - [sym_for_range_loop] = STATE(58), - [sym_co_return_statement] = STATE(58), - [sym_co_yield_statement] = STATE(58), - [sym_throw_statement] = STATE(58), - [sym_try_statement] = STATE(58), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(58), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(89), + [sym_preproc_def] = STATE(89), + [sym_preproc_function_def] = STATE(89), + [sym_preproc_call] = STATE(89), + [sym_preproc_if] = STATE(89), + [sym_preproc_ifdef] = STATE(89), + [sym_function_definition] = STATE(89), + [sym_declaration] = STATE(89), + [sym_type_definition] = STATE(89), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(89), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(89), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(89), + [sym_template_instantiation] = STATE(89), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(89), + [sym_operator_cast_declaration] = STATE(89), + [sym_constructor_or_destructor_definition] = STATE(89), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(89), + [sym_for_range_loop] = STATE(89), + [sym_co_return_statement] = STATE(89), + [sym_co_yield_statement] = STATE(89), + [sym_throw_statement] = STATE(89), + [sym_try_statement] = STATE(89), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(89), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -79931,137 +80246,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [14] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(61), + [sym_preproc_def] = STATE(61), + [sym_preproc_function_def] = STATE(61), + [sym_preproc_call] = STATE(61), + [sym_preproc_if] = STATE(61), + [sym_preproc_ifdef] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(61), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_case_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym_seh_try_statement] = STATE(61), + [sym_seh_leave_statement] = STATE(61), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(61), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(61), + [sym_template_instantiation] = STATE(61), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(61), + [sym_operator_cast_declaration] = STATE(61), + [sym_constructor_or_destructor_definition] = STATE(61), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(61), + [sym_namespace_alias_definition] = STATE(61), + [sym_using_declaration] = STATE(61), + [sym_alias_declaration] = STATE(61), + [sym_static_assert_declaration] = STATE(61), + [sym_concept_definition] = STATE(61), + [sym_for_range_loop] = STATE(61), + [sym_co_return_statement] = STATE(61), + [sym_co_yield_statement] = STATE(61), + [sym_throw_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(61), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -80196,137 +80511,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [15] = { - [sym_preproc_include] = STATE(74), - [sym_preproc_def] = STATE(74), - [sym_preproc_function_def] = STATE(74), - [sym_preproc_call] = STATE(74), - [sym_preproc_if] = STATE(74), - [sym_preproc_ifdef] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(74), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_case_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym_seh_try_statement] = STATE(74), - [sym_seh_leave_statement] = STATE(74), - [sym__expression] = STATE(4715), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(74), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(74), - [sym_template_instantiation] = STATE(74), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(74), - [sym_operator_cast_declaration] = STATE(74), - [sym_constructor_or_destructor_definition] = STATE(74), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(74), - [sym_namespace_alias_definition] = STATE(74), - [sym_using_declaration] = STATE(74), - [sym_alias_declaration] = STATE(74), - [sym_static_assert_declaration] = STATE(74), - [sym_concept_definition] = STATE(74), - [sym_for_range_loop] = STATE(74), - [sym_co_return_statement] = STATE(74), - [sym_co_yield_statement] = STATE(74), - [sym_throw_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(74), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym_seh_try_statement] = STATE(48), + [sym_seh_leave_statement] = STATE(48), + [sym__expression] = STATE(4753), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(48), + [sym_namespace_alias_definition] = STATE(48), + [sym_using_declaration] = STATE(48), + [sym_alias_declaration] = STATE(48), + [sym_static_assert_declaration] = STATE(48), + [sym_concept_definition] = STATE(48), + [sym_for_range_loop] = STATE(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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), [sym_identifier] = ACTIONS(159), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), @@ -80461,134 +80776,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [16] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_call] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(9331), - [sym_preproc_elif] = STATE(9331), - [sym_preproc_elifdef] = STATE(9331), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6863), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_case_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_goto_statement] = STATE(17), - [sym_seh_try_statement] = STATE(17), - [sym_seh_leave_statement] = STATE(17), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(17), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2013), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(17), - [sym_template_instantiation] = STATE(17), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2013), - [sym_operator_cast_definition] = STATE(17), - [sym_operator_cast_declaration] = STATE(17), - [sym_constructor_or_destructor_definition] = STATE(17), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(17), - [sym_namespace_alias_definition] = STATE(17), - [sym_using_declaration] = STATE(17), - [sym_alias_declaration] = STATE(17), - [sym_static_assert_declaration] = STATE(17), - [sym_concept_definition] = STATE(17), - [sym_for_range_loop] = STATE(17), - [sym_co_return_statement] = STATE(17), - [sym_co_yield_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2013), + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_preproc_else] = STATE(8499), + [sym_preproc_elif] = STATE(8499), + [sym_preproc_elifdef] = STATE(8499), + [sym_function_definition] = STATE(23), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6899), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym_seh_try_statement] = STATE(23), + [sym_seh_leave_statement] = STATE(23), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(23), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2051), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(23), + [sym_template_instantiation] = STATE(23), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2051), + [sym_operator_cast_definition] = STATE(23), + [sym_operator_cast_declaration] = STATE(23), + [sym_constructor_or_destructor_definition] = STATE(23), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(23), + [sym_namespace_alias_definition] = STATE(23), + [sym_using_declaration] = STATE(23), + [sym_alias_declaration] = STATE(23), + [sym_static_assert_declaration] = STATE(23), + [sym_concept_definition] = STATE(23), + [sym_for_range_loop] = STATE(23), + [sym_co_return_statement] = STATE(23), + [sym_co_yield_statement] = STATE(23), + [sym_throw_statement] = STATE(23), + [sym_try_statement] = STATE(23), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2051), [sym_identifier] = ACTIONS(263), [aux_sym_preproc_include_token1] = ACTIONS(265), [aux_sym_preproc_def_token1] = ACTIONS(267), @@ -80725,134 +81040,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [17] = { - [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(8597), - [sym_preproc_elif] = STATE(8597), - [sym_preproc_elifdef] = STATE(8597), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6863), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym_seh_try_statement] = STATE(38), - [sym_seh_leave_statement] = STATE(38), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(38), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2013), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(38), - [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2013), - [sym_operator_cast_definition] = STATE(38), - [sym_operator_cast_declaration] = STATE(38), - [sym_constructor_or_destructor_definition] = STATE(38), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(38), - [sym_namespace_alias_definition] = STATE(38), - [sym_using_declaration] = STATE(38), - [sym_alias_declaration] = STATE(38), - [sym_static_assert_declaration] = STATE(38), - [sym_concept_definition] = STATE(38), - [sym_for_range_loop] = STATE(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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2013), + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_preproc_else] = STATE(8964), + [sym_preproc_elif] = STATE(8964), + [sym_preproc_elifdef] = STATE(8964), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6899), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym_seh_try_statement] = STATE(25), + [sym_seh_leave_statement] = STATE(25), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(25), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2051), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(25), + [sym_template_instantiation] = STATE(25), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2051), + [sym_operator_cast_definition] = STATE(25), + [sym_operator_cast_declaration] = STATE(25), + [sym_constructor_or_destructor_definition] = STATE(25), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(25), + [sym_namespace_alias_definition] = STATE(25), + [sym_using_declaration] = STATE(25), + [sym_alias_declaration] = STATE(25), + [sym_static_assert_declaration] = STATE(25), + [sym_concept_definition] = STATE(25), + [sym_for_range_loop] = STATE(25), + [sym_co_return_statement] = STATE(25), + [sym_co_yield_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2051), [sym_identifier] = ACTIONS(263), [aux_sym_preproc_include_token1] = ACTIONS(265), [aux_sym_preproc_def_token1] = ACTIONS(267), @@ -80995,34 +81310,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(38), [sym_preproc_if] = STATE(38), [sym_preproc_ifdef] = STATE(38), - [sym_preproc_else] = STATE(8958), - [sym_preproc_elif] = STATE(8958), - [sym_preproc_elifdef] = STATE(8958), + [sym_preproc_else] = STATE(8727), + [sym_preproc_elif] = STATE(8727), + [sym_preproc_elifdef] = STATE(8727), [sym_function_definition] = STATE(38), [sym_declaration] = STATE(38), [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6863), - [sym_array_declarator] = STATE(6760), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6899), + [sym_array_declarator] = STATE(6752), [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(38), [sym_labeled_statement] = STATE(38), [sym_expression_statement] = STATE(38), @@ -81038,51 +81353,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(38), [sym_seh_try_statement] = STATE(38), [sym_seh_leave_statement] = STATE(38), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), [sym__empty_declaration] = STATE(38), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2013), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2051), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(38), [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2013), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2051), [sym_operator_cast_definition] = STATE(38), [sym_operator_cast_declaration] = STATE(38), [sym_constructor_or_destructor_definition] = STATE(38), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), [sym_namespace_definition] = STATE(38), [sym_namespace_alias_definition] = STATE(38), [sym_using_declaration] = STATE(38), @@ -81094,29 +81409,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(38), [sym_throw_statement] = STATE(38), [sym_try_statement] = STATE(38), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2013), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2051), [sym_identifier] = ACTIONS(263), [aux_sym_preproc_include_token1] = ACTIONS(265), [aux_sym_preproc_def_token1] = ACTIONS(267), @@ -81253,134 +81568,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [19] = { - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(8996), - [sym_preproc_elif] = STATE(8996), - [sym_preproc_elifdef] = STATE(8996), - [sym_function_definition] = STATE(18), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6863), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(18), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_case_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym_seh_try_statement] = STATE(18), - [sym_seh_leave_statement] = STATE(18), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(18), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2013), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(18), - [sym_template_instantiation] = STATE(18), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2013), - [sym_operator_cast_definition] = STATE(18), - [sym_operator_cast_declaration] = STATE(18), - [sym_constructor_or_destructor_definition] = STATE(18), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(18), - [sym_namespace_alias_definition] = STATE(18), - [sym_using_declaration] = STATE(18), - [sym_alias_declaration] = STATE(18), - [sym_static_assert_declaration] = STATE(18), - [sym_concept_definition] = STATE(18), - [sym_for_range_loop] = STATE(18), - [sym_co_return_statement] = STATE(18), - [sym_co_yield_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2013), + [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(8589), + [sym_preproc_elif] = STATE(8589), + [sym_preproc_elifdef] = STATE(8589), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6899), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(38), + [sym_labeled_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym_seh_try_statement] = STATE(38), + [sym_seh_leave_statement] = STATE(38), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(38), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2051), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(38), + [sym_template_instantiation] = STATE(38), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2051), + [sym_operator_cast_definition] = STATE(38), + [sym_operator_cast_declaration] = STATE(38), + [sym_constructor_or_destructor_definition] = STATE(38), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(38), + [sym_namespace_alias_definition] = STATE(38), + [sym_using_declaration] = STATE(38), + [sym_alias_declaration] = STATE(38), + [sym_static_assert_declaration] = STATE(38), + [sym_concept_definition] = STATE(38), + [sym_for_range_loop] = STATE(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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2051), [sym_identifier] = ACTIONS(263), [aux_sym_preproc_include_token1] = ACTIONS(265), [aux_sym_preproc_def_token1] = ACTIONS(267), @@ -81523,34 +81838,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(38), [sym_preproc_if] = STATE(38), [sym_preproc_ifdef] = STATE(38), - [sym_preproc_else] = STATE(8595), - [sym_preproc_elif] = STATE(8595), - [sym_preproc_elifdef] = STATE(8595), + [sym_preproc_else] = STATE(8691), + [sym_preproc_elif] = STATE(8691), + [sym_preproc_elifdef] = STATE(8691), [sym_function_definition] = STATE(38), [sym_declaration] = STATE(38), [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6863), - [sym_array_declarator] = STATE(6760), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6899), + [sym_array_declarator] = STATE(6752), [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(38), [sym_labeled_statement] = STATE(38), [sym_expression_statement] = STATE(38), @@ -81566,51 +81881,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(38), [sym_seh_try_statement] = STATE(38), [sym_seh_leave_statement] = STATE(38), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), [sym__empty_declaration] = STATE(38), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2013), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2051), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(38), [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2013), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2051), [sym_operator_cast_definition] = STATE(38), [sym_operator_cast_declaration] = STATE(38), [sym_constructor_or_destructor_definition] = STATE(38), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), [sym_namespace_definition] = STATE(38), [sym_namespace_alias_definition] = STATE(38), [sym_using_declaration] = STATE(38), @@ -81622,29 +81937,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(38), [sym_throw_statement] = STATE(38), [sym_try_statement] = STATE(38), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2013), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2051), [sym_identifier] = ACTIONS(263), [aux_sym_preproc_include_token1] = ACTIONS(265), [aux_sym_preproc_def_token1] = ACTIONS(267), @@ -81781,134 +82096,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [21] = { - [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(8832), - [sym_preproc_elif] = STATE(8832), - [sym_preproc_elifdef] = STATE(8832), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6863), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym_seh_try_statement] = STATE(38), - [sym_seh_leave_statement] = STATE(38), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(38), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2013), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(38), - [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2013), - [sym_operator_cast_definition] = STATE(38), - [sym_operator_cast_declaration] = STATE(38), - [sym_constructor_or_destructor_definition] = STATE(38), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(38), - [sym_namespace_alias_definition] = STATE(38), - [sym_using_declaration] = STATE(38), - [sym_alias_declaration] = STATE(38), - [sym_static_assert_declaration] = STATE(38), - [sym_concept_definition] = STATE(38), - [sym_for_range_loop] = STATE(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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2013), + [sym_preproc_include] = STATE(19), + [sym_preproc_def] = STATE(19), + [sym_preproc_function_def] = STATE(19), + [sym_preproc_call] = STATE(19), + [sym_preproc_if] = STATE(19), + [sym_preproc_ifdef] = STATE(19), + [sym_preproc_else] = STATE(8759), + [sym_preproc_elif] = STATE(8759), + [sym_preproc_elifdef] = STATE(8759), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6899), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(19), + [sym_labeled_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_case_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_goto_statement] = STATE(19), + [sym_seh_try_statement] = STATE(19), + [sym_seh_leave_statement] = STATE(19), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(19), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2051), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(19), + [sym_template_instantiation] = STATE(19), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2051), + [sym_operator_cast_definition] = STATE(19), + [sym_operator_cast_declaration] = STATE(19), + [sym_constructor_or_destructor_definition] = STATE(19), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(19), + [sym_for_range_loop] = STATE(19), + [sym_co_return_statement] = STATE(19), + [sym_co_yield_statement] = STATE(19), + [sym_throw_statement] = STATE(19), + [sym_try_statement] = STATE(19), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2051), [sym_identifier] = ACTIONS(263), [aux_sym_preproc_include_token1] = ACTIONS(265), [aux_sym_preproc_def_token1] = ACTIONS(267), @@ -82045,134 +82360,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [22] = { - [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(8445), - [sym_preproc_elif] = STATE(8445), - [sym_preproc_elifdef] = STATE(8445), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6863), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym_seh_try_statement] = STATE(38), - [sym_seh_leave_statement] = STATE(38), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(38), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2013), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(38), - [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2013), - [sym_operator_cast_definition] = STATE(38), - [sym_operator_cast_declaration] = STATE(38), - [sym_constructor_or_destructor_definition] = STATE(38), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(38), - [sym_namespace_alias_definition] = STATE(38), - [sym_using_declaration] = STATE(38), - [sym_alias_declaration] = STATE(38), - [sym_static_assert_declaration] = STATE(38), - [sym_concept_definition] = STATE(38), - [sym_for_range_loop] = STATE(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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2013), + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(8685), + [sym_preproc_elif] = STATE(8685), + [sym_preproc_elifdef] = STATE(8685), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6899), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_case_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym_seh_try_statement] = STATE(18), + [sym_seh_leave_statement] = STATE(18), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(18), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2051), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(18), + [sym_template_instantiation] = STATE(18), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2051), + [sym_operator_cast_definition] = STATE(18), + [sym_operator_cast_declaration] = STATE(18), + [sym_constructor_or_destructor_definition] = STATE(18), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(18), + [sym_namespace_alias_definition] = STATE(18), + [sym_using_declaration] = STATE(18), + [sym_alias_declaration] = STATE(18), + [sym_static_assert_declaration] = STATE(18), + [sym_concept_definition] = STATE(18), + [sym_for_range_loop] = STATE(18), + [sym_co_return_statement] = STATE(18), + [sym_co_yield_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2051), [sym_identifier] = ACTIONS(263), [aux_sym_preproc_include_token1] = ACTIONS(265), [aux_sym_preproc_def_token1] = ACTIONS(267), @@ -82309,134 +82624,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [23] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(8638), - [sym_preproc_elif] = STATE(8638), - [sym_preproc_elifdef] = STATE(8638), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6863), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym_seh_try_statement] = STATE(20), - [sym_seh_leave_statement] = STATE(20), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(20), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2013), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(20), - [sym_template_instantiation] = STATE(20), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2013), - [sym_operator_cast_definition] = STATE(20), - [sym_operator_cast_declaration] = STATE(20), - [sym_constructor_or_destructor_definition] = STATE(20), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(20), - [sym_namespace_alias_definition] = STATE(20), - [sym_using_declaration] = STATE(20), - [sym_alias_declaration] = STATE(20), - [sym_static_assert_declaration] = STATE(20), - [sym_concept_definition] = STATE(20), - [sym_for_range_loop] = STATE(20), - [sym_co_return_statement] = STATE(20), - [sym_co_yield_statement] = STATE(20), - [sym_throw_statement] = STATE(20), - [sym_try_statement] = STATE(20), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2013), + [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(8564), + [sym_preproc_elif] = STATE(8564), + [sym_preproc_elifdef] = STATE(8564), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6899), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(38), + [sym_labeled_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym_seh_try_statement] = STATE(38), + [sym_seh_leave_statement] = STATE(38), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(38), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2051), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(38), + [sym_template_instantiation] = STATE(38), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2051), + [sym_operator_cast_definition] = STATE(38), + [sym_operator_cast_declaration] = STATE(38), + [sym_constructor_or_destructor_definition] = STATE(38), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(38), + [sym_namespace_alias_definition] = STATE(38), + [sym_using_declaration] = STATE(38), + [sym_alias_declaration] = STATE(38), + [sym_static_assert_declaration] = STATE(38), + [sym_concept_definition] = STATE(38), + [sym_for_range_loop] = STATE(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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2051), [sym_identifier] = ACTIONS(263), [aux_sym_preproc_include_token1] = ACTIONS(265), [aux_sym_preproc_def_token1] = ACTIONS(267), @@ -82573,134 +82888,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [24] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(8477), - [sym_preproc_elif] = STATE(8477), - [sym_preproc_elifdef] = STATE(8477), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6863), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(22), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2013), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(22), - [sym_template_instantiation] = STATE(22), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2013), - [sym_operator_cast_definition] = STATE(22), - [sym_operator_cast_declaration] = STATE(22), - [sym_constructor_or_destructor_definition] = STATE(22), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(22), - [sym_namespace_alias_definition] = STATE(22), - [sym_using_declaration] = STATE(22), - [sym_alias_declaration] = STATE(22), - [sym_static_assert_declaration] = STATE(22), - [sym_concept_definition] = STATE(22), - [sym_for_range_loop] = STATE(22), - [sym_co_return_statement] = STATE(22), - [sym_co_yield_statement] = STATE(22), - [sym_throw_statement] = STATE(22), - [sym_try_statement] = STATE(22), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2013), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(8787), + [sym_preproc_elif] = STATE(8787), + [sym_preproc_elifdef] = STATE(8787), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6899), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym_seh_try_statement] = STATE(20), + [sym_seh_leave_statement] = STATE(20), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(20), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2051), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(20), + [sym_template_instantiation] = STATE(20), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2051), + [sym_operator_cast_definition] = STATE(20), + [sym_operator_cast_declaration] = STATE(20), + [sym_constructor_or_destructor_definition] = STATE(20), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(20), + [sym_namespace_alias_definition] = STATE(20), + [sym_using_declaration] = STATE(20), + [sym_alias_declaration] = STATE(20), + [sym_static_assert_declaration] = STATE(20), + [sym_concept_definition] = STATE(20), + [sym_for_range_loop] = STATE(20), + [sym_co_return_statement] = STATE(20), + [sym_co_yield_statement] = STATE(20), + [sym_throw_statement] = STATE(20), + [sym_try_statement] = STATE(20), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2051), [sym_identifier] = ACTIONS(263), [aux_sym_preproc_include_token1] = ACTIONS(265), [aux_sym_preproc_def_token1] = ACTIONS(267), @@ -82837,134 +83152,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [25] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(8869), - [sym_preproc_elif] = STATE(8869), - [sym_preproc_elifdef] = STATE(8869), - [sym_function_definition] = STATE(21), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6863), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym_seh_try_statement] = STATE(21), - [sym_seh_leave_statement] = STATE(21), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(21), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2013), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(21), - [sym_template_instantiation] = STATE(21), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2013), - [sym_operator_cast_definition] = STATE(21), - [sym_operator_cast_declaration] = STATE(21), - [sym_constructor_or_destructor_definition] = STATE(21), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(21), - [sym_namespace_alias_definition] = STATE(21), - [sym_using_declaration] = STATE(21), - [sym_alias_declaration] = STATE(21), - [sym_static_assert_declaration] = STATE(21), - [sym_concept_definition] = STATE(21), - [sym_for_range_loop] = STATE(21), - [sym_co_return_statement] = STATE(21), - [sym_co_yield_statement] = STATE(21), - [sym_throw_statement] = STATE(21), - [sym_try_statement] = STATE(21), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2013), + [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(9008), + [sym_preproc_elif] = STATE(9008), + [sym_preproc_elifdef] = STATE(9008), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6899), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(38), + [sym_labeled_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym_seh_try_statement] = STATE(38), + [sym_seh_leave_statement] = STATE(38), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(38), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2051), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(38), + [sym_template_instantiation] = STATE(38), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2051), + [sym_operator_cast_definition] = STATE(38), + [sym_operator_cast_declaration] = STATE(38), + [sym_constructor_or_destructor_definition] = STATE(38), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(38), + [sym_namespace_alias_definition] = STATE(38), + [sym_using_declaration] = STATE(38), + [sym_alias_declaration] = STATE(38), + [sym_static_assert_declaration] = STATE(38), + [sym_concept_definition] = STATE(38), + [sym_for_range_loop] = STATE(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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2051), [sym_identifier] = ACTIONS(263), [aux_sym_preproc_include_token1] = ACTIONS(265), [aux_sym_preproc_def_token1] = ACTIONS(267), @@ -83101,133 +83416,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [26] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(8833), - [sym_preproc_elif] = STATE(8833), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(27), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(27), - [sym_template_instantiation] = STATE(27), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), - [sym_operator_cast_definition] = STATE(27), - [sym_operator_cast_declaration] = STATE(27), - [sym_constructor_or_destructor_definition] = STATE(27), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(27), - [sym_namespace_alias_definition] = STATE(27), - [sym_using_declaration] = STATE(27), - [sym_alias_declaration] = STATE(27), - [sym_static_assert_declaration] = STATE(27), - [sym_concept_definition] = STATE(27), - [sym_for_range_loop] = STATE(27), - [sym_co_return_statement] = STATE(27), - [sym_co_yield_statement] = STATE(27), - [sym_throw_statement] = STATE(27), - [sym_try_statement] = STATE(27), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [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(8512), + [sym_preproc_elif] = STATE(8512), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(35), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(35), + [sym_template_instantiation] = STATE(35), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), + [sym_operator_cast_definition] = STATE(35), + [sym_operator_cast_declaration] = STATE(35), + [sym_constructor_or_destructor_definition] = STATE(35), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -83368,33 +83683,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(41), [sym_preproc_if] = STATE(41), [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(8778), - [sym_preproc_elif] = STATE(8778), + [sym_preproc_else] = STATE(8758), + [sym_preproc_elif] = STATE(8758), [sym_function_definition] = STATE(41), [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(41), [sym_labeled_statement] = STATE(41), [sym_expression_statement] = STATE(41), @@ -83410,51 +83725,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(41), [sym_seh_try_statement] = STATE(41), [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(41), [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), [sym_operator_cast_definition] = STATE(41), [sym_operator_cast_declaration] = STATE(41), [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), [sym_namespace_definition] = STATE(41), [sym_namespace_alias_definition] = STATE(41), [sym_using_declaration] = STATE(41), @@ -83466,29 +83781,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(41), [sym_throw_statement] = STATE(41), [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -83623,133 +83938,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [28] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(8429), - [sym_preproc_elif] = STATE(8429), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym_seh_try_statement] = STATE(41), - [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(41), - [sym_namespace_alias_definition] = STATE(41), - [sym_using_declaration] = STATE(41), - [sym_alias_declaration] = STATE(41), - [sym_static_assert_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(41), - [sym_co_return_statement] = STATE(41), - [sym_co_yield_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_preproc_else] = STATE(9007), + [sym_preproc_elif] = STATE(9007), + [sym_function_definition] = STATE(30), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_case_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym_seh_try_statement] = STATE(30), + [sym_seh_leave_statement] = STATE(30), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(30), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(30), + [sym_template_instantiation] = STATE(30), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), + [sym_operator_cast_definition] = STATE(30), + [sym_operator_cast_declaration] = STATE(30), + [sym_constructor_or_destructor_definition] = STATE(30), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(30), + [sym_namespace_alias_definition] = STATE(30), + [sym_using_declaration] = STATE(30), + [sym_alias_declaration] = STATE(30), + [sym_static_assert_declaration] = STATE(30), + [sym_concept_definition] = STATE(30), + [sym_for_range_loop] = STATE(30), + [sym_co_return_statement] = STATE(30), + [sym_co_yield_statement] = STATE(30), + [sym_throw_statement] = STATE(30), + [sym_try_statement] = STATE(30), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -83890,33 +84205,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(41), [sym_preproc_if] = STATE(41), [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(9225), - [sym_preproc_elif] = STATE(9225), + [sym_preproc_else] = STATE(8624), + [sym_preproc_elif] = STATE(8624), [sym_function_definition] = STATE(41), [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(41), [sym_labeled_statement] = STATE(41), [sym_expression_statement] = STATE(41), @@ -83932,51 +84247,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(41), [sym_seh_try_statement] = STATE(41), [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(41), [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), [sym_operator_cast_definition] = STATE(41), [sym_operator_cast_declaration] = STATE(41), [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), [sym_namespace_definition] = STATE(41), [sym_namespace_alias_definition] = STATE(41), [sym_using_declaration] = STATE(41), @@ -83988,29 +84303,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(41), [sym_throw_statement] = STATE(41), [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -84151,33 +84466,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(41), [sym_preproc_if] = STATE(41), [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(9185), - [sym_preproc_elif] = STATE(9185), + [sym_preproc_else] = STATE(9066), + [sym_preproc_elif] = STATE(9066), [sym_function_definition] = STATE(41), [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(41), [sym_labeled_statement] = STATE(41), [sym_expression_statement] = STATE(41), @@ -84193,51 +84508,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(41), [sym_seh_try_statement] = STATE(41), [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(41), [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), [sym_operator_cast_definition] = STATE(41), [sym_operator_cast_declaration] = STATE(41), [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), [sym_namespace_definition] = STATE(41), [sym_namespace_alias_definition] = STATE(41), [sym_using_declaration] = STATE(41), @@ -84249,29 +84564,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(41), [sym_throw_statement] = STATE(41), [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -84406,133 +84721,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [31] = { - [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(8599), - [sym_preproc_elif] = STATE(8599), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym_seh_try_statement] = STATE(37), - [sym_seh_leave_statement] = STATE(37), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(37), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(37), - [sym_namespace_alias_definition] = STATE(37), - [sym_using_declaration] = STATE(37), - [sym_alias_declaration] = STATE(37), - [sym_static_assert_declaration] = STATE(37), - [sym_concept_definition] = STATE(37), - [sym_for_range_loop] = STATE(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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_preproc_else] = STATE(8693), + [sym_preproc_elif] = STATE(8693), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym_seh_try_statement] = STATE(29), + [sym_seh_leave_statement] = STATE(29), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(29), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(29), + [sym_template_instantiation] = STATE(29), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), + [sym_operator_cast_definition] = STATE(29), + [sym_operator_cast_declaration] = STATE(29), + [sym_constructor_or_destructor_definition] = STATE(29), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(29), + [sym_for_range_loop] = STATE(29), + [sym_co_return_statement] = STATE(29), + [sym_co_yield_statement] = STATE(29), + [sym_throw_statement] = STATE(29), + [sym_try_statement] = STATE(29), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -84667,133 +84982,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [32] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(8942), - [sym_preproc_elif] = STATE(8942), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym_seh_try_statement] = STATE(41), - [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(41), - [sym_namespace_alias_definition] = STATE(41), - [sym_using_declaration] = STATE(41), - [sym_alias_declaration] = STATE(41), - [sym_static_assert_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(41), - [sym_co_return_statement] = STATE(41), - [sym_co_yield_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [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(8562), + [sym_preproc_elif] = STATE(8562), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym_seh_try_statement] = STATE(33), + [sym_seh_leave_statement] = STATE(33), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(33), + [sym_namespace_alias_definition] = STATE(33), + [sym_using_declaration] = STATE(33), + [sym_alias_declaration] = STATE(33), + [sym_static_assert_declaration] = STATE(33), + [sym_concept_definition] = STATE(33), + [sym_for_range_loop] = STATE(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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -84928,133 +85243,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [33] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(8446), - [sym_preproc_elif] = STATE(8446), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym_seh_try_statement] = STATE(28), - [sym_seh_leave_statement] = STATE(28), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_preproc_else] = STATE(8600), + [sym_preproc_elif] = STATE(8600), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(41), + [sym_namespace_alias_definition] = STATE(41), + [sym_using_declaration] = STATE(41), + [sym_alias_declaration] = STATE(41), + [sym_static_assert_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(41), + [sym_co_return_statement] = STATE(41), + [sym_co_yield_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -85189,133 +85504,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [34] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_preproc_else] = STATE(8561), - [sym_preproc_elif] = STATE(8561), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym_seh_try_statement] = STATE(40), - [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(40), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(40), - [sym_template_instantiation] = STATE(40), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), - [sym_operator_cast_definition] = STATE(40), - [sym_operator_cast_declaration] = STATE(40), - [sym_constructor_or_destructor_definition] = STATE(40), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(40), - [sym_namespace_alias_definition] = STATE(40), - [sym_using_declaration] = STATE(40), - [sym_alias_declaration] = STATE(40), - [sym_static_assert_declaration] = STATE(40), - [sym_concept_definition] = STATE(40), - [sym_for_range_loop] = STATE(40), - [sym_co_return_statement] = STATE(40), - [sym_co_yield_statement] = STATE(40), - [sym_throw_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_preproc_else] = STATE(9218), + [sym_preproc_elif] = STATE(9218), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(41), + [sym_namespace_alias_definition] = STATE(41), + [sym_using_declaration] = STATE(41), + [sym_alias_declaration] = STATE(41), + [sym_static_assert_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(41), + [sym_co_return_statement] = STATE(41), + [sym_co_yield_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -85450,133 +85765,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [35] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_preproc_else] = STATE(8959), - [sym_preproc_elif] = STATE(8959), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym_seh_try_statement] = STATE(32), - [sym_seh_leave_statement] = STATE(32), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(32), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(32), - [sym_namespace_alias_definition] = STATE(32), - [sym_using_declaration] = STATE(32), - [sym_alias_declaration] = STATE(32), - [sym_static_assert_declaration] = STATE(32), - [sym_concept_definition] = STATE(32), - [sym_for_range_loop] = STATE(32), - [sym_co_return_statement] = STATE(32), - [sym_co_yield_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_preproc_else] = STATE(8966), + [sym_preproc_elif] = STATE(8966), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(41), + [sym_namespace_alias_definition] = STATE(41), + [sym_using_declaration] = STATE(41), + [sym_alias_declaration] = STATE(41), + [sym_static_assert_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(41), + [sym_co_return_statement] = STATE(41), + [sym_co_yield_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -85711,133 +86026,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [36] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_preproc_else] = STATE(9124), - [sym_preproc_elif] = STATE(9124), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym_seh_try_statement] = STATE(29), - [sym_seh_leave_statement] = STATE(29), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_preproc_else] = STATE(9088), + [sym_preproc_elif] = STATE(9088), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(41), + [sym_namespace_alias_definition] = STATE(41), + [sym_using_declaration] = STATE(41), + [sym_alias_declaration] = STATE(41), + [sym_static_assert_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(41), + [sym_co_return_statement] = STATE(41), + [sym_co_yield_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -85972,133 +86287,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [37] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(8571), - [sym_preproc_elif] = STATE(8571), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym_seh_try_statement] = STATE(41), - [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(41), - [sym_namespace_alias_definition] = STATE(41), - [sym_using_declaration] = STATE(41), - [sym_alias_declaration] = STATE(41), - [sym_static_assert_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(41), - [sym_co_return_statement] = STATE(41), - [sym_co_yield_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [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(9085), + [sym_preproc_elif] = STATE(9085), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(34), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(34), + [sym_template_instantiation] = STATE(34), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), + [sym_operator_cast_definition] = STATE(34), + [sym_operator_cast_declaration] = STATE(34), + [sym_constructor_or_destructor_definition] = STATE(34), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -86242,28 +86557,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(38), [sym_declaration] = STATE(38), [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6863), - [sym_array_declarator] = STATE(6760), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6899), + [sym_array_declarator] = STATE(6752), [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(38), [sym_labeled_statement] = STATE(38), [sym_expression_statement] = STATE(38), @@ -86279,51 +86594,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(38), [sym_seh_try_statement] = STATE(38), [sym_seh_leave_statement] = STATE(38), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), [sym__empty_declaration] = STATE(38), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2013), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2051), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(38), [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2013), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2051), [sym_operator_cast_definition] = STATE(38), [sym_operator_cast_declaration] = STATE(38), [sym_constructor_or_destructor_definition] = STATE(38), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), [sym_namespace_definition] = STATE(38), [sym_namespace_alias_definition] = STATE(38), [sym_using_declaration] = STATE(38), @@ -86335,29 +86650,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(38), [sym_throw_statement] = STATE(38), [sym_try_statement] = STATE(38), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2013), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2051), [sym_identifier] = ACTIONS(449), [aux_sym_preproc_include_token1] = ACTIONS(452), [aux_sym_preproc_def_token1] = ACTIONS(455), @@ -86494,133 +86809,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(619), }, [39] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_preproc_else] = STATE(9089), - [sym_preproc_elif] = STATE(9089), - [sym_function_definition] = STATE(30), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_case_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_goto_statement] = STATE(30), - [sym_seh_try_statement] = STATE(30), - [sym_seh_leave_statement] = STATE(30), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(30), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(30), - [sym_template_instantiation] = STATE(30), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), - [sym_operator_cast_definition] = STATE(30), - [sym_operator_cast_declaration] = STATE(30), - [sym_constructor_or_destructor_definition] = STATE(30), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(30), - [sym_namespace_alias_definition] = STATE(30), - [sym_using_declaration] = STATE(30), - [sym_alias_declaration] = STATE(30), - [sym_static_assert_declaration] = STATE(30), - [sym_concept_definition] = STATE(30), - [sym_for_range_loop] = STATE(30), - [sym_co_return_statement] = STATE(30), - [sym_co_yield_statement] = STATE(30), - [sym_throw_statement] = STATE(30), - [sym_try_statement] = STATE(30), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(8726), + [sym_preproc_elif] = STATE(8726), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(27), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(27), + [sym_template_instantiation] = STATE(27), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), + [sym_operator_cast_definition] = STATE(27), + [sym_operator_cast_declaration] = STATE(27), + [sym_constructor_or_destructor_definition] = STATE(27), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(27), + [sym_namespace_alias_definition] = STATE(27), + [sym_using_declaration] = STATE(27), + [sym_alias_declaration] = STATE(27), + [sym_static_assert_declaration] = STATE(27), + [sym_concept_definition] = STATE(27), + [sym_for_range_loop] = STATE(27), + [sym_co_return_statement] = STATE(27), + [sym_co_yield_statement] = STATE(27), + [sym_throw_statement] = STATE(27), + [sym_try_statement] = STATE(27), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -86755,133 +87070,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [40] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_preproc_else] = STATE(9088), - [sym_preproc_elif] = STATE(9088), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym_seh_try_statement] = STATE(41), - [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(41), - [sym_namespace_alias_definition] = STATE(41), - [sym_using_declaration] = STATE(41), - [sym_alias_declaration] = STATE(41), - [sym_static_assert_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(41), - [sym_co_return_statement] = STATE(41), - [sym_co_yield_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [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(8967), + [sym_preproc_elif] = STATE(8967), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym_seh_try_statement] = STATE(36), + [sym_seh_leave_statement] = STATE(36), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(36), + [sym_template_instantiation] = STATE(36), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(36), + [sym_namespace_alias_definition] = STATE(36), + [sym_using_declaration] = STATE(36), + [sym_alias_declaration] = STATE(36), + [sym_static_assert_declaration] = STATE(36), + [sym_concept_definition] = STATE(36), + [sym_for_range_loop] = STATE(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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(357), [aux_sym_preproc_include_token1] = ACTIONS(359), [aux_sym_preproc_def_token1] = ACTIONS(361), @@ -87025,28 +87340,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(41), [sym_declaration] = STATE(41), [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6841), - [sym_array_declarator] = STATE(6760), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6829), + [sym_array_declarator] = STATE(6752), [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(41), [sym_labeled_statement] = STATE(41), [sym_expression_statement] = STATE(41), @@ -87062,51 +87377,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(41), [sym_seh_try_statement] = STATE(41), [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2008), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2052), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(41), [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2008), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2052), [sym_operator_cast_definition] = STATE(41), [sym_operator_cast_declaration] = STATE(41), [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), [sym_namespace_definition] = STATE(41), [sym_namespace_alias_definition] = STATE(41), [sym_using_declaration] = STATE(41), @@ -87118,29 +87433,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(41), [sym_throw_statement] = STATE(41), [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2008), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2052), [sym_identifier] = ACTIONS(692), [aux_sym_preproc_include_token1] = ACTIONS(695), [aux_sym_preproc_def_token1] = ACTIONS(698), @@ -87275,132 +87590,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(619), }, [42] = { - [sym_preproc_include] = STATE(59), - [sym_preproc_def] = STATE(59), - [sym_preproc_function_def] = STATE(59), - [sym_preproc_call] = STATE(59), - [sym_preproc_if] = STATE(59), - [sym_preproc_ifdef] = STATE(59), - [sym_function_definition] = STATE(59), - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_case_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(59), - [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(59), - [sym_operator_cast_declaration] = STATE(59), - [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(59), - [sym_namespace_alias_definition] = STATE(59), - [sym_using_declaration] = STATE(59), - [sym_alias_declaration] = STATE(59), - [sym_static_assert_declaration] = STATE(59), - [sym_concept_definition] = STATE(59), - [sym_for_range_loop] = STATE(59), - [sym_co_return_statement] = STATE(59), - [sym_co_yield_statement] = STATE(59), - [sym_throw_statement] = STATE(59), - [sym_try_statement] = STATE(59), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5565), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2206), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6871), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4047), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(42), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym_seh_try_statement] = STATE(42), + [sym_seh_leave_statement] = STATE(42), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2055), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), + [sym_operator_cast] = STATE(7201), + [sym__constructor_specifiers] = STATE(2055), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(42), + [sym_namespace_alias_definition] = STATE(42), + [sym_using_declaration] = STATE(42), + [sym_alias_declaration] = STATE(42), + [sym_static_assert_declaration] = STATE(42), + [sym_concept_definition] = STATE(42), + [sym_for_range_loop] = STATE(42), + [sym_co_return_statement] = STATE(42), + [sym_co_yield_statement] = STATE(42), + [sym_throw_statement] = STATE(42), + [sym_try_statement] = STATE(42), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7201), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2055), [sym_identifier] = ACTIONS(794), + [aux_sym_preproc_include_token1] = ACTIONS(797), + [aux_sym_preproc_def_token1] = ACTIONS(800), + [aux_sym_preproc_if_token1] = ACTIONS(803), + [aux_sym_preproc_if_token2] = ACTIONS(461), + [aux_sym_preproc_ifdef_token1] = ACTIONS(806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(806), + [sym_preproc_directive] = ACTIONS(809), + [anon_sym_LPAREN2] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym___extension__] = ACTIONS(815), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(821), + [anon_sym___attribute__] = ACTIONS(502), + [anon_sym_COLON_COLON] = ACTIONS(505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(508), + [anon_sym___declspec] = ACTIONS(511), + [anon_sym___based] = ACTIONS(514), + [anon_sym___cdecl] = ACTIONS(517), + [anon_sym___clrcall] = ACTIONS(517), + [anon_sym___stdcall] = ACTIONS(517), + [anon_sym___fastcall] = ACTIONS(517), + [anon_sym___thiscall] = ACTIONS(517), + [anon_sym___vectorcall] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_signed] = ACTIONS(523), + [anon_sym_unsigned] = ACTIONS(523), + [anon_sym_long] = ACTIONS(523), + [anon_sym_short] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(526), + [anon_sym_static] = ACTIONS(529), + [anon_sym_register] = ACTIONS(529), + [anon_sym_inline] = ACTIONS(827), + [anon_sym___inline] = ACTIONS(529), + [anon_sym___inline__] = ACTIONS(529), + [anon_sym___forceinline] = ACTIONS(529), + [anon_sym_thread_local] = ACTIONS(529), + [anon_sym___thread] = ACTIONS(529), + [anon_sym_const] = ACTIONS(535), + [anon_sym_constexpr] = ACTIONS(535), + [anon_sym_volatile] = ACTIONS(535), + [anon_sym_restrict] = ACTIONS(535), + [anon_sym___restrict__] = ACTIONS(535), + [anon_sym__Atomic] = ACTIONS(535), + [anon_sym__Noreturn] = ACTIONS(535), + [anon_sym_noreturn] = ACTIONS(535), + [anon_sym_mutable] = ACTIONS(535), + [anon_sym_constinit] = ACTIONS(535), + [anon_sym_consteval] = ACTIONS(535), + [sym_primitive_type] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(541), + [anon_sym_class] = ACTIONS(544), + [anon_sym_struct] = ACTIONS(547), + [anon_sym_union] = ACTIONS(550), + [anon_sym_if] = ACTIONS(830), + [anon_sym_switch] = ACTIONS(833), + [anon_sym_case] = ACTIONS(836), + [anon_sym_default] = ACTIONS(839), + [anon_sym_while] = ACTIONS(842), + [anon_sym_do] = ACTIONS(845), + [anon_sym_for] = ACTIONS(848), + [anon_sym_return] = ACTIONS(851), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(857), + [anon_sym_goto] = ACTIONS(860), + [anon_sym___try] = ACTIONS(863), + [anon_sym___leave] = ACTIONS(866), + [anon_sym_not] = ACTIONS(478), + [anon_sym_compl] = ACTIONS(478), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_sizeof] = ACTIONS(595), + [anon_sym___alignof__] = ACTIONS(598), + [anon_sym___alignof] = ACTIONS(598), + [anon_sym__alignof] = ACTIONS(598), + [anon_sym_alignof] = ACTIONS(598), + [anon_sym__Alignof] = ACTIONS(598), + [anon_sym_offsetof] = ACTIONS(601), + [anon_sym__Generic] = ACTIONS(604), + [anon_sym_asm] = ACTIONS(607), + [anon_sym___asm__] = ACTIONS(607), + [sym_number_literal] = ACTIONS(610), + [anon_sym_L_SQUOTE] = ACTIONS(613), + [anon_sym_u_SQUOTE] = ACTIONS(613), + [anon_sym_U_SQUOTE] = ACTIONS(613), + [anon_sym_u8_SQUOTE] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_L_DQUOTE] = ACTIONS(616), + [anon_sym_u_DQUOTE] = ACTIONS(616), + [anon_sym_U_DQUOTE] = ACTIONS(616), + [anon_sym_u8_DQUOTE] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(616), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [anon_sym_NULL] = ACTIONS(622), + [anon_sym_nullptr] = ACTIONS(622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(625), + [anon_sym_decltype] = ACTIONS(628), + [anon_sym_virtual] = ACTIONS(631), + [anon_sym_alignas] = ACTIONS(634), + [anon_sym_explicit] = ACTIONS(637), + [anon_sym_typename] = ACTIONS(640), + [anon_sym_template] = ACTIONS(869), + [anon_sym_operator] = ACTIONS(646), + [anon_sym_try] = ACTIONS(872), + [anon_sym_delete] = ACTIONS(652), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_using] = ACTIONS(881), + [anon_sym_static_assert] = ACTIONS(884), + [anon_sym_concept] = ACTIONS(887), + [anon_sym_co_return] = ACTIONS(890), + [anon_sym_co_yield] = ACTIONS(893), + [anon_sym_R_DQUOTE] = ACTIONS(676), + [anon_sym_LR_DQUOTE] = ACTIONS(676), + [anon_sym_uR_DQUOTE] = ACTIONS(676), + [anon_sym_UR_DQUOTE] = ACTIONS(676), + [anon_sym_u8R_DQUOTE] = ACTIONS(676), + [anon_sym_co_await] = ACTIONS(679), + [anon_sym_new] = ACTIONS(682), + [anon_sym_requires] = ACTIONS(685), + [sym_this] = ACTIONS(619), + }, + [43] = { + [sym_preproc_include] = STATE(89), + [sym_preproc_def] = STATE(89), + [sym_preproc_function_def] = STATE(89), + [sym_preproc_call] = STATE(89), + [sym_preproc_if] = STATE(89), + [sym_preproc_ifdef] = STATE(89), + [sym_function_definition] = STATE(89), + [sym_declaration] = STATE(89), + [sym_type_definition] = STATE(89), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(89), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym_seh_try_statement] = STATE(89), + [sym_seh_leave_statement] = STATE(89), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(89), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(89), + [sym_template_instantiation] = STATE(89), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(89), + [sym_operator_cast_declaration] = STATE(89), + [sym_constructor_or_destructor_definition] = STATE(89), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(89), + [sym_for_range_loop] = STATE(89), + [sym_co_return_statement] = STATE(89), + [sym_co_yield_statement] = STATE(89), + [sym_throw_statement] = STATE(89), + [sym_try_statement] = STATE(89), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(89), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -87430,8 +88002,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(900), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -87531,133 +88103,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [43] = { - [sym_preproc_include] = STATE(84), - [sym_preproc_def] = STATE(84), - [sym_preproc_function_def] = STATE(84), - [sym_preproc_call] = STATE(84), - [sym_preproc_if] = STATE(84), - [sym_preproc_ifdef] = STATE(84), - [sym_function_definition] = STATE(84), - [sym_declaration] = STATE(84), - [sym_type_definition] = STATE(84), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(84), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(84), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_case_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym_seh_try_statement] = STATE(84), - [sym_seh_leave_statement] = STATE(84), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(84), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(84), - [sym_template_instantiation] = STATE(84), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(84), - [sym_operator_cast_declaration] = STATE(84), - [sym_constructor_or_destructor_definition] = STATE(84), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(84), - [sym_namespace_alias_definition] = STATE(84), - [sym_using_declaration] = STATE(84), - [sym_alias_declaration] = STATE(84), - [sym_static_assert_declaration] = STATE(84), - [sym_concept_definition] = STATE(84), - [sym_for_range_loop] = STATE(84), - [sym_co_return_statement] = STATE(84), - [sym_co_yield_statement] = STATE(84), - [sym_throw_statement] = STATE(84), - [sym_try_statement] = STATE(84), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(84), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [44] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -87687,8 +88259,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(902), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -87788,133 +88360,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [44] = { - [sym_preproc_include] = STATE(66), - [sym_preproc_def] = STATE(66), - [sym_preproc_function_def] = STATE(66), - [sym_preproc_call] = STATE(66), - [sym_preproc_if] = STATE(66), - [sym_preproc_ifdef] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(66), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_case_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym_seh_try_statement] = STATE(66), - [sym_seh_leave_statement] = STATE(66), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(66), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(66), - [sym_template_instantiation] = STATE(66), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(66), - [sym_operator_cast_declaration] = STATE(66), - [sym_constructor_or_destructor_definition] = STATE(66), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(66), - [sym_namespace_alias_definition] = STATE(66), - [sym_using_declaration] = STATE(66), - [sym_alias_declaration] = STATE(66), - [sym_static_assert_declaration] = STATE(66), - [sym_concept_definition] = STATE(66), - [sym_for_range_loop] = STATE(66), - [sym_co_return_statement] = STATE(66), - [sym_co_yield_statement] = STATE(66), - [sym_throw_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(66), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [45] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -87944,8 +88516,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(904), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -88045,133 +88617,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [45] = { - [sym_preproc_include] = STATE(94), - [sym_preproc_def] = STATE(94), - [sym_preproc_function_def] = STATE(94), - [sym_preproc_call] = STATE(94), - [sym_preproc_if] = STATE(94), - [sym_preproc_ifdef] = STATE(94), - [sym_function_definition] = STATE(94), - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(94), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_case_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym_seh_try_statement] = STATE(94), - [sym_seh_leave_statement] = STATE(94), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(94), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(94), - [sym_template_instantiation] = STATE(94), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(94), - [sym_operator_cast_declaration] = STATE(94), - [sym_constructor_or_destructor_definition] = STATE(94), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(94), - [sym_for_range_loop] = STATE(94), - [sym_co_return_statement] = STATE(94), - [sym_co_yield_statement] = STATE(94), - [sym_throw_statement] = STATE(94), - [sym_try_statement] = STATE(94), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(94), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [46] = { + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym_seh_try_statement] = STATE(69), + [sym_seh_leave_statement] = STATE(69), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -88201,8 +88773,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(906), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -88302,133 +88874,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [46] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [47] = { + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym_seh_try_statement] = STATE(48), + [sym_seh_leave_statement] = STATE(48), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(48), + [sym_namespace_alias_definition] = STATE(48), + [sym_using_declaration] = STATE(48), + [sym_alias_declaration] = STATE(48), + [sym_static_assert_declaration] = STATE(48), + [sym_concept_definition] = STATE(48), + [sym_for_range_loop] = STATE(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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -88458,8 +89030,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(908), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -88559,133 +89131,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [47] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [48] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -88715,8 +89287,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(910), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -88816,133 +89388,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [48] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [49] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -88972,265 +89544,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(810), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(187), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(189), - [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(193), - [anon_sym_default] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_do] = ACTIONS(199), - [anon_sym_for] = ACTIONS(201), - [anon_sym_return] = ACTIONS(203), - [anon_sym_break] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_goto] = ACTIONS(209), - [anon_sym___try] = ACTIONS(211), - [anon_sym___leave] = ACTIONS(213), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(219), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(221), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(223), - [anon_sym_namespace] = ACTIONS(225), - [anon_sym_using] = ACTIONS(227), - [anon_sym_static_assert] = ACTIONS(229), - [anon_sym_concept] = ACTIONS(231), - [anon_sym_co_return] = ACTIONS(233), - [anon_sym_co_yield] = ACTIONS(235), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [49] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(48), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(48), - [sym_template_instantiation] = STATE(48), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(48), - [sym_operator_cast_declaration] = STATE(48), - [sym_constructor_or_destructor_definition] = STATE(48), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(48), - [sym_namespace_alias_definition] = STATE(48), - [sym_using_declaration] = STATE(48), - [sym_alias_declaration] = STATE(48), - [sym_static_assert_declaration] = STATE(48), - [sym_concept_definition] = STATE(48), - [sym_for_range_loop] = STATE(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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), - [aux_sym_preproc_include_token1] = ACTIONS(161), - [aux_sym_preproc_def_token1] = ACTIONS(163), - [aux_sym_preproc_if_token1] = ACTIONS(167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(169), - [sym_preproc_directive] = ACTIONS(171), - [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(173), - [anon_sym___extension__] = ACTIONS(175), - [anon_sym_typedef] = ACTIONS(177), - [anon_sym_extern] = ACTIONS(179), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(912), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -89331,132 +89646,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [50] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_case_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_seh_try_statement] = STATE(51), + [sym_seh_leave_statement] = STATE(51), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(51), + [sym_namespace_alias_definition] = STATE(51), + [sym_using_declaration] = STATE(51), + [sym_alias_declaration] = STATE(51), + [sym_static_assert_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(51), + [sym_co_return_statement] = STATE(51), + [sym_co_yield_statement] = STATE(51), + [sym_throw_statement] = STATE(51), + [sym_try_statement] = STATE(51), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -89486,8 +89801,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(914), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -89588,132 +89903,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [51] = { - [sym_preproc_include] = STATE(92), - [sym_preproc_def] = STATE(92), - [sym_preproc_function_def] = STATE(92), - [sym_preproc_call] = STATE(92), - [sym_preproc_if] = STATE(92), - [sym_preproc_ifdef] = STATE(92), - [sym_function_definition] = STATE(92), - [sym_declaration] = STATE(92), - [sym_type_definition] = STATE(92), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(92), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(92), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym_seh_try_statement] = STATE(92), - [sym_seh_leave_statement] = STATE(92), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(92), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(92), - [sym_template_instantiation] = STATE(92), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(92), - [sym_operator_cast_declaration] = STATE(92), - [sym_constructor_or_destructor_definition] = STATE(92), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(92), - [sym_for_range_loop] = STATE(92), - [sym_co_return_statement] = STATE(92), - [sym_co_yield_statement] = STATE(92), - [sym_throw_statement] = STATE(92), - [sym_try_statement] = STATE(92), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(92), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -89743,8 +90058,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(916), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -89845,132 +90160,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [52] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_case_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym_seh_try_statement] = STATE(53), + [sym_seh_leave_statement] = STATE(53), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(53), + [sym_co_return_statement] = STATE(53), + [sym_co_yield_statement] = STATE(53), + [sym_throw_statement] = STATE(53), + [sym_try_statement] = STATE(53), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -90000,8 +90315,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(918), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -90102,132 +90417,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [53] = { - [sym_preproc_include] = STATE(62), - [sym_preproc_def] = STATE(62), - [sym_preproc_function_def] = STATE(62), - [sym_preproc_call] = STATE(62), - [sym_preproc_if] = STATE(62), - [sym_preproc_ifdef] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_case_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym_seh_try_statement] = STATE(62), - [sym_seh_leave_statement] = STATE(62), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(62), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(62), - [sym_namespace_alias_definition] = STATE(62), - [sym_using_declaration] = STATE(62), - [sym_alias_declaration] = STATE(62), - [sym_static_assert_declaration] = STATE(62), - [sym_concept_definition] = STATE(62), - [sym_for_range_loop] = STATE(62), - [sym_co_return_statement] = STATE(62), - [sym_co_yield_statement] = STATE(62), - [sym_throw_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(62), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -90257,8 +90572,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(920), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -90359,132 +90674,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [54] = { - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(47), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(47), - [sym_template_instantiation] = STATE(47), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(47), - [sym_operator_cast_declaration] = STATE(47), - [sym_constructor_or_destructor_definition] = STATE(47), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(47), - [sym_namespace_alias_definition] = STATE(47), - [sym_using_declaration] = STATE(47), - [sym_alias_declaration] = STATE(47), - [sym_static_assert_declaration] = STATE(47), - [sym_concept_definition] = STATE(47), - [sym_for_range_loop] = STATE(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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(61), + [sym_preproc_def] = STATE(61), + [sym_preproc_function_def] = STATE(61), + [sym_preproc_call] = STATE(61), + [sym_preproc_if] = STATE(61), + [sym_preproc_ifdef] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(61), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_case_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym_seh_try_statement] = STATE(61), + [sym_seh_leave_statement] = STATE(61), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(61), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(61), + [sym_template_instantiation] = STATE(61), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(61), + [sym_operator_cast_declaration] = STATE(61), + [sym_constructor_or_destructor_definition] = STATE(61), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(61), + [sym_namespace_alias_definition] = STATE(61), + [sym_using_declaration] = STATE(61), + [sym_alias_declaration] = STATE(61), + [sym_static_assert_declaration] = STATE(61), + [sym_concept_definition] = STATE(61), + [sym_for_range_loop] = STATE(61), + [sym_co_return_statement] = STATE(61), + [sym_co_yield_statement] = STATE(61), + [sym_throw_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(61), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -90514,8 +90829,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(922), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -90616,132 +90931,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [55] = { - [sym_preproc_include] = STATE(95), - [sym_preproc_def] = STATE(95), - [sym_preproc_function_def] = STATE(95), - [sym_preproc_call] = STATE(95), - [sym_preproc_if] = STATE(95), - [sym_preproc_ifdef] = STATE(95), - [sym_function_definition] = STATE(95), - [sym_declaration] = STATE(95), - [sym_type_definition] = STATE(95), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(95), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(95), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(95), - [sym_labeled_statement] = STATE(95), - [sym_expression_statement] = STATE(95), - [sym_if_statement] = STATE(95), - [sym_switch_statement] = STATE(95), - [sym_case_statement] = STATE(95), - [sym_while_statement] = STATE(95), - [sym_do_statement] = STATE(95), - [sym_for_statement] = STATE(95), - [sym_return_statement] = STATE(95), - [sym_break_statement] = STATE(95), - [sym_continue_statement] = STATE(95), - [sym_goto_statement] = STATE(95), - [sym_seh_try_statement] = STATE(95), - [sym_seh_leave_statement] = STATE(95), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(95), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(95), - [sym_template_instantiation] = STATE(95), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(95), - [sym_operator_cast_declaration] = STATE(95), - [sym_constructor_or_destructor_definition] = STATE(95), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(95), - [sym_for_range_loop] = STATE(95), - [sym_co_return_statement] = STATE(95), - [sym_co_yield_statement] = STATE(95), - [sym_throw_statement] = STATE(95), - [sym_try_statement] = STATE(95), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(95), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(56), + [sym_preproc_def] = STATE(56), + [sym_preproc_function_def] = STATE(56), + [sym_preproc_call] = STATE(56), + [sym_preproc_if] = STATE(56), + [sym_preproc_ifdef] = STATE(56), + [sym_function_definition] = STATE(56), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(56), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_case_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym_seh_try_statement] = STATE(56), + [sym_seh_leave_statement] = STATE(56), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(56), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(56), + [sym_template_instantiation] = STATE(56), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(56), + [sym_operator_cast_declaration] = STATE(56), + [sym_constructor_or_destructor_definition] = STATE(56), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(56), + [sym_namespace_alias_definition] = STATE(56), + [sym_using_declaration] = STATE(56), + [sym_alias_declaration] = STATE(56), + [sym_static_assert_declaration] = STATE(56), + [sym_concept_definition] = STATE(56), + [sym_for_range_loop] = STATE(56), + [sym_co_return_statement] = STATE(56), + [sym_co_yield_statement] = STATE(56), + [sym_throw_statement] = STATE(56), + [sym_try_statement] = STATE(56), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(56), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -90771,8 +91086,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(924), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -90873,389 +91188,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [56] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(826), - [aux_sym_preproc_include_token1] = ACTIONS(829), - [aux_sym_preproc_def_token1] = ACTIONS(832), - [aux_sym_preproc_if_token1] = ACTIONS(835), - [aux_sym_preproc_ifdef_token1] = ACTIONS(838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(838), - [sym_preproc_directive] = ACTIONS(841), - [anon_sym_LPAREN2] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(472), - [anon_sym_TILDE] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_AMP] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(844), - [anon_sym___extension__] = ACTIONS(847), - [anon_sym_typedef] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(853), - [anon_sym___attribute__] = ACTIONS(502), - [anon_sym_COLON_COLON] = ACTIONS(505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(508), - [anon_sym___declspec] = ACTIONS(511), - [anon_sym___based] = ACTIONS(514), - [anon_sym___cdecl] = ACTIONS(517), - [anon_sym___clrcall] = ACTIONS(517), - [anon_sym___stdcall] = ACTIONS(517), - [anon_sym___fastcall] = ACTIONS(517), - [anon_sym___thiscall] = ACTIONS(517), - [anon_sym___vectorcall] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(856), - [anon_sym_RBRACE] = ACTIONS(859), - [anon_sym_signed] = ACTIONS(523), - [anon_sym_unsigned] = ACTIONS(523), - [anon_sym_long] = ACTIONS(523), - [anon_sym_short] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(526), - [anon_sym_static] = ACTIONS(529), - [anon_sym_register] = ACTIONS(529), - [anon_sym_inline] = ACTIONS(861), - [anon_sym___inline] = ACTIONS(529), - [anon_sym___inline__] = ACTIONS(529), - [anon_sym___forceinline] = ACTIONS(529), - [anon_sym_thread_local] = ACTIONS(529), - [anon_sym___thread] = ACTIONS(529), - [anon_sym_const] = ACTIONS(535), - [anon_sym_constexpr] = ACTIONS(535), - [anon_sym_volatile] = ACTIONS(535), - [anon_sym_restrict] = ACTIONS(535), - [anon_sym___restrict__] = ACTIONS(535), - [anon_sym__Atomic] = ACTIONS(535), - [anon_sym__Noreturn] = ACTIONS(535), - [anon_sym_noreturn] = ACTIONS(535), - [anon_sym_mutable] = ACTIONS(535), - [anon_sym_constinit] = ACTIONS(535), - [anon_sym_consteval] = ACTIONS(535), - [sym_primitive_type] = ACTIONS(538), - [anon_sym_enum] = ACTIONS(541), - [anon_sym_class] = ACTIONS(544), - [anon_sym_struct] = ACTIONS(547), - [anon_sym_union] = ACTIONS(550), - [anon_sym_if] = ACTIONS(864), - [anon_sym_switch] = ACTIONS(867), - [anon_sym_case] = ACTIONS(870), - [anon_sym_default] = ACTIONS(873), - [anon_sym_while] = ACTIONS(876), - [anon_sym_do] = ACTIONS(879), - [anon_sym_for] = ACTIONS(882), - [anon_sym_return] = ACTIONS(885), - [anon_sym_break] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_goto] = ACTIONS(894), - [anon_sym___try] = ACTIONS(897), - [anon_sym___leave] = ACTIONS(900), - [anon_sym_not] = ACTIONS(478), - [anon_sym_compl] = ACTIONS(478), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(595), - [anon_sym___alignof__] = ACTIONS(598), - [anon_sym___alignof] = ACTIONS(598), - [anon_sym__alignof] = ACTIONS(598), - [anon_sym_alignof] = ACTIONS(598), - [anon_sym__Alignof] = ACTIONS(598), - [anon_sym_offsetof] = ACTIONS(601), - [anon_sym__Generic] = ACTIONS(604), - [anon_sym_asm] = ACTIONS(607), - [anon_sym___asm__] = ACTIONS(607), - [sym_number_literal] = ACTIONS(610), - [anon_sym_L_SQUOTE] = ACTIONS(613), - [anon_sym_u_SQUOTE] = ACTIONS(613), - [anon_sym_U_SQUOTE] = ACTIONS(613), - [anon_sym_u8_SQUOTE] = ACTIONS(613), - [anon_sym_SQUOTE] = ACTIONS(613), - [anon_sym_L_DQUOTE] = ACTIONS(616), - [anon_sym_u_DQUOTE] = ACTIONS(616), - [anon_sym_U_DQUOTE] = ACTIONS(616), - [anon_sym_u8_DQUOTE] = ACTIONS(616), - [anon_sym_DQUOTE] = ACTIONS(616), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [anon_sym_NULL] = ACTIONS(622), - [anon_sym_nullptr] = ACTIONS(622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(625), - [anon_sym_decltype] = ACTIONS(628), - [anon_sym_virtual] = ACTIONS(631), - [anon_sym_alignas] = ACTIONS(634), - [anon_sym_explicit] = ACTIONS(637), - [anon_sym_typename] = ACTIONS(640), - [anon_sym_template] = ACTIONS(903), - [anon_sym_operator] = ACTIONS(646), - [anon_sym_try] = ACTIONS(906), - [anon_sym_delete] = ACTIONS(652), - [anon_sym_throw] = ACTIONS(909), - [anon_sym_namespace] = ACTIONS(912), - [anon_sym_using] = ACTIONS(915), - [anon_sym_static_assert] = ACTIONS(918), - [anon_sym_concept] = ACTIONS(921), - [anon_sym_co_return] = ACTIONS(924), - [anon_sym_co_yield] = ACTIONS(927), - [anon_sym_R_DQUOTE] = ACTIONS(676), - [anon_sym_LR_DQUOTE] = ACTIONS(676), - [anon_sym_uR_DQUOTE] = ACTIONS(676), - [anon_sym_UR_DQUOTE] = ACTIONS(676), - [anon_sym_u8R_DQUOTE] = ACTIONS(676), - [anon_sym_co_await] = ACTIONS(679), - [anon_sym_new] = ACTIONS(682), - [anon_sym_requires] = ACTIONS(685), - [sym_this] = ACTIONS(619), - }, - [57] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -91285,8 +91343,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(926), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -91386,133 +91444,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [58] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [57] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -91542,8 +91600,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(928), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -91643,133 +91701,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [59] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [58] = { + [sym_preproc_include] = STATE(62), + [sym_preproc_def] = STATE(62), + [sym_preproc_function_def] = STATE(62), + [sym_preproc_call] = STATE(62), + [sym_preproc_if] = STATE(62), + [sym_preproc_ifdef] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(62), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_case_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym_seh_try_statement] = STATE(62), + [sym_seh_leave_statement] = STATE(62), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(62), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(62), + [sym_template_instantiation] = STATE(62), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(62), + [sym_operator_cast_declaration] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(62), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(62), + [sym_namespace_alias_definition] = STATE(62), + [sym_using_declaration] = STATE(62), + [sym_alias_declaration] = STATE(62), + [sym_static_assert_declaration] = STATE(62), + [sym_concept_definition] = STATE(62), + [sym_for_range_loop] = STATE(62), + [sym_co_return_statement] = STATE(62), + [sym_co_yield_statement] = STATE(62), + [sym_throw_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(62), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -91799,8 +91857,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(930), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -91900,133 +91958,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [60] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [59] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -92056,8 +92114,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(932), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -92157,133 +92215,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [61] = { - [sym_preproc_include] = STATE(85), - [sym_preproc_def] = STATE(85), - [sym_preproc_function_def] = STATE(85), - [sym_preproc_call] = STATE(85), - [sym_preproc_if] = STATE(85), - [sym_preproc_ifdef] = STATE(85), - [sym_function_definition] = STATE(85), - [sym_declaration] = STATE(85), - [sym_type_definition] = STATE(85), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(85), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(85), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym_seh_try_statement] = STATE(85), - [sym_seh_leave_statement] = STATE(85), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(85), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(85), - [sym_template_instantiation] = STATE(85), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(85), - [sym_operator_cast_declaration] = STATE(85), - [sym_constructor_or_destructor_definition] = STATE(85), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(85), - [sym_for_range_loop] = STATE(85), - [sym_co_return_statement] = STATE(85), - [sym_co_yield_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_try_statement] = STATE(85), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(85), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [60] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -92313,8 +92371,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(934), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -92414,133 +92472,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [62] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [61] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -92570,8 +92628,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(936), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -92671,133 +92729,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [63] = { - [sym_preproc_include] = STATE(65), - [sym_preproc_def] = STATE(65), - [sym_preproc_function_def] = STATE(65), - [sym_preproc_call] = STATE(65), - [sym_preproc_if] = STATE(65), - [sym_preproc_ifdef] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(65), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_case_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym_seh_try_statement] = STATE(65), - [sym_seh_leave_statement] = STATE(65), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(65), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(65), - [sym_template_instantiation] = STATE(65), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(65), - [sym_operator_cast_declaration] = STATE(65), - [sym_constructor_or_destructor_definition] = STATE(65), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(65), - [sym_namespace_alias_definition] = STATE(65), - [sym_using_declaration] = STATE(65), - [sym_alias_declaration] = STATE(65), - [sym_static_assert_declaration] = STATE(65), - [sym_concept_definition] = STATE(65), - [sym_for_range_loop] = STATE(65), - [sym_co_return_statement] = STATE(65), - [sym_co_yield_statement] = STATE(65), - [sym_throw_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(65), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [62] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -92827,8 +92885,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(938), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -92928,133 +92986,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [64] = { - [sym_preproc_include] = STATE(58), - [sym_preproc_def] = STATE(58), - [sym_preproc_function_def] = STATE(58), - [sym_preproc_call] = STATE(58), - [sym_preproc_if] = STATE(58), - [sym_preproc_ifdef] = STATE(58), - [sym_function_definition] = STATE(58), - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(58), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_case_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym_seh_try_statement] = STATE(58), - [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(58), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(58), - [sym_template_instantiation] = STATE(58), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(58), - [sym_operator_cast_declaration] = STATE(58), - [sym_constructor_or_destructor_definition] = STATE(58), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(58), - [sym_namespace_alias_definition] = STATE(58), - [sym_using_declaration] = STATE(58), - [sym_alias_declaration] = STATE(58), - [sym_static_assert_declaration] = STATE(58), - [sym_concept_definition] = STATE(58), - [sym_for_range_loop] = STATE(58), - [sym_co_return_statement] = STATE(58), - [sym_co_yield_statement] = STATE(58), - [sym_throw_statement] = STATE(58), - [sym_try_statement] = STATE(58), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(58), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [63] = { + [sym_preproc_include] = STATE(82), + [sym_preproc_def] = STATE(82), + [sym_preproc_function_def] = STATE(82), + [sym_preproc_call] = STATE(82), + [sym_preproc_if] = STATE(82), + [sym_preproc_ifdef] = STATE(82), + [sym_function_definition] = STATE(82), + [sym_declaration] = STATE(82), + [sym_type_definition] = STATE(82), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(82), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(82), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(82), + [sym_labeled_statement] = STATE(82), + [sym_expression_statement] = STATE(82), + [sym_if_statement] = STATE(82), + [sym_switch_statement] = STATE(82), + [sym_case_statement] = STATE(82), + [sym_while_statement] = STATE(82), + [sym_do_statement] = STATE(82), + [sym_for_statement] = STATE(82), + [sym_return_statement] = STATE(82), + [sym_break_statement] = STATE(82), + [sym_continue_statement] = STATE(82), + [sym_goto_statement] = STATE(82), + [sym_seh_try_statement] = STATE(82), + [sym_seh_leave_statement] = STATE(82), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(82), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(82), + [sym_template_instantiation] = STATE(82), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(82), + [sym_operator_cast_declaration] = STATE(82), + [sym_constructor_or_destructor_definition] = STATE(82), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(82), + [sym_namespace_alias_definition] = STATE(82), + [sym_using_declaration] = STATE(82), + [sym_alias_declaration] = STATE(82), + [sym_static_assert_declaration] = STATE(82), + [sym_concept_definition] = STATE(82), + [sym_for_range_loop] = STATE(82), + [sym_co_return_statement] = STATE(82), + [sym_co_yield_statement] = STATE(82), + [sym_throw_statement] = STATE(82), + [sym_try_statement] = STATE(82), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(82), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -93084,8 +93142,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(940), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -93185,133 +93243,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [65] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [64] = { + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_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_seh_try_statement] = STATE(45), + [sym_seh_leave_statement] = STATE(45), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -93341,8 +93399,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(942), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -93442,133 +93500,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [66] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [65] = { + [sym_preproc_include] = STATE(85), + [sym_preproc_def] = STATE(85), + [sym_preproc_function_def] = STATE(85), + [sym_preproc_call] = STATE(85), + [sym_preproc_if] = STATE(85), + [sym_preproc_ifdef] = STATE(85), + [sym_function_definition] = STATE(85), + [sym_declaration] = STATE(85), + [sym_type_definition] = STATE(85), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(85), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(85), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(85), + [sym_labeled_statement] = STATE(85), + [sym_expression_statement] = STATE(85), + [sym_if_statement] = STATE(85), + [sym_switch_statement] = STATE(85), + [sym_case_statement] = STATE(85), + [sym_while_statement] = STATE(85), + [sym_do_statement] = STATE(85), + [sym_for_statement] = STATE(85), + [sym_return_statement] = STATE(85), + [sym_break_statement] = STATE(85), + [sym_continue_statement] = STATE(85), + [sym_goto_statement] = STATE(85), + [sym_seh_try_statement] = STATE(85), + [sym_seh_leave_statement] = STATE(85), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(85), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(85), + [sym_template_instantiation] = STATE(85), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(85), + [sym_operator_cast_declaration] = STATE(85), + [sym_constructor_or_destructor_definition] = STATE(85), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(85), + [sym_for_range_loop] = STATE(85), + [sym_co_return_statement] = STATE(85), + [sym_co_yield_statement] = STATE(85), + [sym_throw_statement] = STATE(85), + [sym_try_statement] = STATE(85), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(85), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -93598,8 +93656,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(944), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -93699,133 +93757,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [67] = { - [sym_preproc_include] = STATE(89), - [sym_preproc_def] = STATE(89), - [sym_preproc_function_def] = STATE(89), - [sym_preproc_call] = STATE(89), - [sym_preproc_if] = STATE(89), - [sym_preproc_ifdef] = STATE(89), - [sym_function_definition] = STATE(89), - [sym_declaration] = STATE(89), - [sym_type_definition] = STATE(89), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(89), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(89), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_case_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym_seh_try_statement] = STATE(89), - [sym_seh_leave_statement] = STATE(89), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(89), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(89), - [sym_template_instantiation] = STATE(89), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(89), - [sym_operator_cast_declaration] = STATE(89), - [sym_constructor_or_destructor_definition] = STATE(89), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(89), - [sym_for_range_loop] = STATE(89), - [sym_co_return_statement] = STATE(89), - [sym_co_yield_statement] = STATE(89), - [sym_throw_statement] = STATE(89), - [sym_try_statement] = STATE(89), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(89), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [66] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -93855,8 +93913,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(946), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -93956,133 +94014,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, + [67] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(951), + [aux_sym_preproc_def_token1] = ACTIONS(954), + [aux_sym_preproc_if_token1] = ACTIONS(957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(963), + [anon_sym_LPAREN2] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym___extension__] = ACTIONS(969), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(975), + [anon_sym___attribute__] = ACTIONS(502), + [anon_sym_COLON_COLON] = ACTIONS(505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(508), + [anon_sym___declspec] = ACTIONS(511), + [anon_sym___based] = ACTIONS(514), + [anon_sym___cdecl] = ACTIONS(517), + [anon_sym___clrcall] = ACTIONS(517), + [anon_sym___stdcall] = ACTIONS(517), + [anon_sym___fastcall] = ACTIONS(517), + [anon_sym___thiscall] = ACTIONS(517), + [anon_sym___vectorcall] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_signed] = ACTIONS(523), + [anon_sym_unsigned] = ACTIONS(523), + [anon_sym_long] = ACTIONS(523), + [anon_sym_short] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(526), + [anon_sym_static] = ACTIONS(529), + [anon_sym_register] = ACTIONS(529), + [anon_sym_inline] = ACTIONS(983), + [anon_sym___inline] = ACTIONS(529), + [anon_sym___inline__] = ACTIONS(529), + [anon_sym___forceinline] = ACTIONS(529), + [anon_sym_thread_local] = ACTIONS(529), + [anon_sym___thread] = ACTIONS(529), + [anon_sym_const] = ACTIONS(535), + [anon_sym_constexpr] = ACTIONS(535), + [anon_sym_volatile] = ACTIONS(535), + [anon_sym_restrict] = ACTIONS(535), + [anon_sym___restrict__] = ACTIONS(535), + [anon_sym__Atomic] = ACTIONS(535), + [anon_sym__Noreturn] = ACTIONS(535), + [anon_sym_noreturn] = ACTIONS(535), + [anon_sym_mutable] = ACTIONS(535), + [anon_sym_constinit] = ACTIONS(535), + [anon_sym_consteval] = ACTIONS(535), + [sym_primitive_type] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(541), + [anon_sym_class] = ACTIONS(544), + [anon_sym_struct] = ACTIONS(547), + [anon_sym_union] = ACTIONS(550), + [anon_sym_if] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(989), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(995), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1007), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym___try] = ACTIONS(1019), + [anon_sym___leave] = ACTIONS(1022), + [anon_sym_not] = ACTIONS(478), + [anon_sym_compl] = ACTIONS(478), + [anon_sym_DASH_DASH] = ACTIONS(592), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_sizeof] = ACTIONS(595), + [anon_sym___alignof__] = ACTIONS(598), + [anon_sym___alignof] = ACTIONS(598), + [anon_sym__alignof] = ACTIONS(598), + [anon_sym_alignof] = ACTIONS(598), + [anon_sym__Alignof] = ACTIONS(598), + [anon_sym_offsetof] = ACTIONS(601), + [anon_sym__Generic] = ACTIONS(604), + [anon_sym_asm] = ACTIONS(607), + [anon_sym___asm__] = ACTIONS(607), + [sym_number_literal] = ACTIONS(610), + [anon_sym_L_SQUOTE] = ACTIONS(613), + [anon_sym_u_SQUOTE] = ACTIONS(613), + [anon_sym_U_SQUOTE] = ACTIONS(613), + [anon_sym_u8_SQUOTE] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_L_DQUOTE] = ACTIONS(616), + [anon_sym_u_DQUOTE] = ACTIONS(616), + [anon_sym_U_DQUOTE] = ACTIONS(616), + [anon_sym_u8_DQUOTE] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(616), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [anon_sym_NULL] = ACTIONS(622), + [anon_sym_nullptr] = ACTIONS(622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(625), + [anon_sym_decltype] = ACTIONS(628), + [anon_sym_virtual] = ACTIONS(631), + [anon_sym_alignas] = ACTIONS(634), + [anon_sym_explicit] = ACTIONS(637), + [anon_sym_typename] = ACTIONS(640), + [anon_sym_template] = ACTIONS(1025), + [anon_sym_operator] = ACTIONS(646), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_delete] = ACTIONS(652), + [anon_sym_throw] = ACTIONS(1031), + [anon_sym_namespace] = ACTIONS(1034), + [anon_sym_using] = ACTIONS(1037), + [anon_sym_static_assert] = ACTIONS(1040), + [anon_sym_concept] = ACTIONS(1043), + [anon_sym_co_return] = ACTIONS(1046), + [anon_sym_co_yield] = ACTIONS(1049), + [anon_sym_R_DQUOTE] = ACTIONS(676), + [anon_sym_LR_DQUOTE] = ACTIONS(676), + [anon_sym_uR_DQUOTE] = ACTIONS(676), + [anon_sym_UR_DQUOTE] = ACTIONS(676), + [anon_sym_u8R_DQUOTE] = ACTIONS(676), + [anon_sym_co_await] = ACTIONS(679), + [anon_sym_new] = ACTIONS(682), + [anon_sym_requires] = ACTIONS(685), + [sym_this] = ACTIONS(619), + }, [68] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(96), + [sym_preproc_def] = STATE(96), + [sym_preproc_function_def] = STATE(96), + [sym_preproc_call] = STATE(96), + [sym_preproc_if] = STATE(96), + [sym_preproc_ifdef] = STATE(96), + [sym_function_definition] = STATE(96), + [sym_declaration] = STATE(96), + [sym_type_definition] = STATE(96), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(96), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(96), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_case_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym_seh_try_statement] = STATE(96), + [sym_seh_leave_statement] = STATE(96), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(96), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(96), + [sym_template_instantiation] = STATE(96), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(96), + [sym_operator_cast_declaration] = STATE(96), + [sym_constructor_or_destructor_definition] = STATE(96), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(96), + [sym_for_range_loop] = STATE(96), + [sym_co_return_statement] = STATE(96), + [sym_co_yield_statement] = STATE(96), + [sym_throw_statement] = STATE(96), + [sym_try_statement] = STATE(96), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(96), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -94112,8 +94427,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1052), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -94214,132 +94529,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [69] = { - [sym_preproc_include] = STATE(68), - [sym_preproc_def] = STATE(68), - [sym_preproc_function_def] = STATE(68), - [sym_preproc_call] = STATE(68), - [sym_preproc_if] = STATE(68), - [sym_preproc_ifdef] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(68), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_case_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(68), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(68), - [sym_template_instantiation] = STATE(68), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(68), - [sym_operator_cast_declaration] = STATE(68), - [sym_constructor_or_destructor_definition] = STATE(68), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(68), - [sym_namespace_alias_definition] = STATE(68), - [sym_using_declaration] = STATE(68), - [sym_alias_declaration] = STATE(68), - [sym_static_assert_declaration] = STATE(68), - [sym_concept_definition] = STATE(68), - [sym_for_range_loop] = STATE(68), - [sym_co_return_statement] = STATE(68), - [sym_co_yield_statement] = STATE(68), - [sym_throw_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(68), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -94369,8 +94684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1054), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -94471,132 +94786,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [70] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(75), + [sym_co_return_statement] = STATE(75), + [sym_co_yield_statement] = STATE(75), + [sym_throw_statement] = STATE(75), + [sym_try_statement] = STATE(75), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -94626,8 +94941,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1056), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -94728,132 +95043,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [71] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym_seh_try_statement] = STATE(70), - [sym_seh_leave_statement] = STATE(70), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(76), + [sym_preproc_def] = STATE(76), + [sym_preproc_function_def] = STATE(76), + [sym_preproc_call] = STATE(76), + [sym_preproc_if] = STATE(76), + [sym_preproc_ifdef] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(76), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(76), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(76), + [sym_template_instantiation] = STATE(76), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(76), + [sym_operator_cast_declaration] = STATE(76), + [sym_constructor_or_destructor_definition] = STATE(76), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(76), + [sym_namespace_alias_definition] = STATE(76), + [sym_using_declaration] = STATE(76), + [sym_alias_declaration] = STATE(76), + [sym_static_assert_declaration] = STATE(76), + [sym_concept_definition] = STATE(76), + [sym_for_range_loop] = STATE(76), + [sym_co_return_statement] = STATE(76), + [sym_co_yield_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_try_statement] = STATE(76), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(76), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -94883,8 +95198,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1058), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -94985,132 +95300,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [72] = { - [sym_preproc_include] = STATE(57), - [sym_preproc_def] = STATE(57), - [sym_preproc_function_def] = STATE(57), - [sym_preproc_call] = STATE(57), - [sym_preproc_if] = STATE(57), - [sym_preproc_ifdef] = STATE(57), - [sym_function_definition] = STATE(57), - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(57), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_case_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym_seh_try_statement] = STATE(57), - [sym_seh_leave_statement] = STATE(57), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(57), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(57), - [sym_template_instantiation] = STATE(57), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(57), - [sym_operator_cast_declaration] = STATE(57), - [sym_constructor_or_destructor_definition] = STATE(57), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(57), - [sym_namespace_alias_definition] = STATE(57), - [sym_using_declaration] = STATE(57), - [sym_alias_declaration] = STATE(57), - [sym_static_assert_declaration] = STATE(57), - [sym_concept_definition] = STATE(57), - [sym_for_range_loop] = STATE(57), - [sym_co_return_statement] = STATE(57), - [sym_co_yield_statement] = STATE(57), - [sym_throw_statement] = STATE(57), - [sym_try_statement] = STATE(57), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(57), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -95140,8 +95455,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1060), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -95242,132 +95557,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [73] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(81), + [sym_preproc_def] = STATE(81), + [sym_preproc_function_def] = STATE(81), + [sym_preproc_call] = STATE(81), + [sym_preproc_if] = STATE(81), + [sym_preproc_ifdef] = STATE(81), + [sym_function_definition] = STATE(81), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(81), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(81), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(81), + [sym_template_instantiation] = STATE(81), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(81), + [sym_operator_cast_declaration] = STATE(81), + [sym_constructor_or_destructor_definition] = STATE(81), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(81), + [sym_namespace_alias_definition] = STATE(81), + [sym_using_declaration] = STATE(81), + [sym_alias_declaration] = STATE(81), + [sym_static_assert_declaration] = STATE(81), + [sym_concept_definition] = STATE(81), + [sym_for_range_loop] = STATE(81), + [sym_co_return_statement] = STATE(81), + [sym_co_yield_statement] = STATE(81), + [sym_throw_statement] = STATE(81), + [sym_try_statement] = STATE(81), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -95397,8 +95712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1062), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -95499,132 +95814,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [74] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(60), + [sym_preproc_def] = STATE(60), + [sym_preproc_function_def] = STATE(60), + [sym_preproc_call] = STATE(60), + [sym_preproc_if] = STATE(60), + [sym_preproc_ifdef] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(60), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_case_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym_seh_try_statement] = STATE(60), + [sym_seh_leave_statement] = STATE(60), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(60), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(60), + [sym_template_instantiation] = STATE(60), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(60), + [sym_operator_cast_declaration] = STATE(60), + [sym_constructor_or_destructor_definition] = STATE(60), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(60), + [sym_namespace_alias_definition] = STATE(60), + [sym_using_declaration] = STATE(60), + [sym_alias_declaration] = STATE(60), + [sym_static_assert_declaration] = STATE(60), + [sym_concept_definition] = STATE(60), + [sym_for_range_loop] = STATE(60), + [sym_co_return_statement] = STATE(60), + [sym_co_yield_statement] = STATE(60), + [sym_throw_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -95654,8 +95969,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1064), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -95756,132 +96071,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [75] = { - [sym_preproc_include] = STATE(86), - [sym_preproc_def] = STATE(86), - [sym_preproc_function_def] = STATE(86), - [sym_preproc_call] = STATE(86), - [sym_preproc_if] = STATE(86), - [sym_preproc_ifdef] = STATE(86), - [sym_function_definition] = STATE(86), - [sym_declaration] = STATE(86), - [sym_type_definition] = STATE(86), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(86), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(86), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(86), - [sym_labeled_statement] = STATE(86), - [sym_expression_statement] = STATE(86), - [sym_if_statement] = STATE(86), - [sym_switch_statement] = STATE(86), - [sym_case_statement] = STATE(86), - [sym_while_statement] = STATE(86), - [sym_do_statement] = STATE(86), - [sym_for_statement] = STATE(86), - [sym_return_statement] = STATE(86), - [sym_break_statement] = STATE(86), - [sym_continue_statement] = STATE(86), - [sym_goto_statement] = STATE(86), - [sym_seh_try_statement] = STATE(86), - [sym_seh_leave_statement] = STATE(86), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(86), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(86), - [sym_template_instantiation] = STATE(86), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(86), - [sym_operator_cast_declaration] = STATE(86), - [sym_constructor_or_destructor_definition] = STATE(86), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(86), - [sym_for_range_loop] = STATE(86), - [sym_co_return_statement] = STATE(86), - [sym_co_yield_statement] = STATE(86), - [sym_throw_statement] = STATE(86), - [sym_try_statement] = STATE(86), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -95911,8 +96226,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1066), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -96013,132 +96328,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [76] = { - [sym_preproc_include] = STATE(93), - [sym_preproc_def] = STATE(93), - [sym_preproc_function_def] = STATE(93), - [sym_preproc_call] = STATE(93), - [sym_preproc_if] = STATE(93), - [sym_preproc_ifdef] = STATE(93), - [sym_function_definition] = STATE(93), - [sym_declaration] = STATE(93), - [sym_type_definition] = STATE(93), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(93), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(93), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(93), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(93), - [sym_template_instantiation] = STATE(93), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(93), - [sym_operator_cast_declaration] = STATE(93), - [sym_constructor_or_destructor_definition] = STATE(93), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(93), - [sym_for_range_loop] = STATE(93), - [sym_co_return_statement] = STATE(93), - [sym_co_yield_statement] = STATE(93), - [sym_throw_statement] = STATE(93), - [sym_try_statement] = STATE(93), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(93), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -96168,8 +96483,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1068), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -96270,132 +96585,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [77] = { - [sym_preproc_include] = STATE(91), - [sym_preproc_def] = STATE(91), - [sym_preproc_function_def] = STATE(91), - [sym_preproc_call] = STATE(91), - [sym_preproc_if] = STATE(91), - [sym_preproc_ifdef] = STATE(91), - [sym_function_definition] = STATE(91), - [sym_declaration] = STATE(91), - [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(91), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_case_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym_seh_try_statement] = STATE(91), - [sym_seh_leave_statement] = STATE(91), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(91), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(91), - [sym_template_instantiation] = STATE(91), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(91), - [sym_operator_cast_declaration] = STATE(91), - [sym_constructor_or_destructor_definition] = STATE(91), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(91), - [sym_for_range_loop] = STATE(91), - [sym_co_return_statement] = STATE(91), - [sym_co_yield_statement] = STATE(91), - [sym_throw_statement] = STATE(91), - [sym_try_statement] = STATE(91), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(91), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(49), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(49), + [sym_namespace_alias_definition] = STATE(49), + [sym_using_declaration] = STATE(49), + [sym_alias_declaration] = STATE(49), + [sym_static_assert_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(49), + [sym_co_return_statement] = STATE(49), + [sym_co_yield_statement] = STATE(49), + [sym_throw_statement] = STATE(49), + [sym_try_statement] = STATE(49), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -96425,8 +96740,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1070), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -96527,132 +96842,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [78] = { - [sym_preproc_include] = STATE(79), - [sym_preproc_def] = STATE(79), - [sym_preproc_function_def] = STATE(79), - [sym_preproc_call] = STATE(79), - [sym_preproc_if] = STATE(79), - [sym_preproc_ifdef] = STATE(79), - [sym_function_definition] = STATE(79), - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(79), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(79), - [sym_labeled_statement] = STATE(79), - [sym_expression_statement] = STATE(79), - [sym_if_statement] = STATE(79), - [sym_switch_statement] = STATE(79), - [sym_case_statement] = STATE(79), - [sym_while_statement] = STATE(79), - [sym_do_statement] = STATE(79), - [sym_for_statement] = STATE(79), - [sym_return_statement] = STATE(79), - [sym_break_statement] = STATE(79), - [sym_continue_statement] = STATE(79), - [sym_goto_statement] = STATE(79), - [sym_seh_try_statement] = STATE(79), - [sym_seh_leave_statement] = STATE(79), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(79), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(79), - [sym_template_instantiation] = STATE(79), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(79), - [sym_operator_cast_declaration] = STATE(79), - [sym_constructor_or_destructor_definition] = STATE(79), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(79), - [sym_namespace_alias_definition] = STATE(79), - [sym_using_declaration] = STATE(79), - [sym_alias_declaration] = STATE(79), - [sym_static_assert_declaration] = STATE(79), - [sym_concept_definition] = STATE(79), - [sym_for_range_loop] = STATE(79), - [sym_co_return_statement] = STATE(79), - [sym_co_yield_statement] = STATE(79), - [sym_throw_statement] = STATE(79), - [sym_try_statement] = STATE(79), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(79), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(66), + [sym_preproc_def] = STATE(66), + [sym_preproc_function_def] = STATE(66), + [sym_preproc_call] = STATE(66), + [sym_preproc_if] = STATE(66), + [sym_preproc_ifdef] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(66), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_case_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(66), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(66), + [sym_template_instantiation] = STATE(66), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(66), + [sym_operator_cast_declaration] = STATE(66), + [sym_constructor_or_destructor_definition] = STATE(66), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(66), + [sym_namespace_alias_definition] = STATE(66), + [sym_using_declaration] = STATE(66), + [sym_alias_declaration] = STATE(66), + [sym_static_assert_declaration] = STATE(66), + [sym_concept_definition] = STATE(66), + [sym_for_range_loop] = STATE(66), + [sym_co_return_statement] = STATE(66), + [sym_co_yield_statement] = STATE(66), + [sym_throw_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(66), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -96682,8 +96997,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1072), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -96784,132 +97099,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [79] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(90), + [sym_preproc_def] = STATE(90), + [sym_preproc_function_def] = STATE(90), + [sym_preproc_call] = STATE(90), + [sym_preproc_if] = STATE(90), + [sym_preproc_ifdef] = STATE(90), + [sym_function_definition] = STATE(90), + [sym_declaration] = STATE(90), + [sym_type_definition] = STATE(90), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(90), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(90), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_case_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym_seh_try_statement] = STATE(90), + [sym_seh_leave_statement] = STATE(90), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(90), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(90), + [sym_template_instantiation] = STATE(90), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(90), + [sym_operator_cast_declaration] = STATE(90), + [sym_constructor_or_destructor_definition] = STATE(90), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(90), + [sym_for_range_loop] = STATE(90), + [sym_co_return_statement] = STATE(90), + [sym_co_yield_statement] = STATE(90), + [sym_throw_statement] = STATE(90), + [sym_try_statement] = STATE(90), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(90), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -96939,8 +97254,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1074), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -97041,139 +97356,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [80] = { - [sym_preproc_include] = STATE(82), - [sym_preproc_def] = STATE(82), - [sym_preproc_function_def] = STATE(82), - [sym_preproc_call] = STATE(82), - [sym_preproc_if] = STATE(82), - [sym_preproc_ifdef] = STATE(82), - [sym_function_definition] = STATE(82), - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5509), - [sym_linkage_specification] = STATE(82), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2171), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6800), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4088), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_case_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym_seh_try_statement] = STATE(82), - [sym_seh_leave_statement] = STATE(82), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(82), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2020), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(82), - [sym_template_instantiation] = STATE(82), - [sym_operator_cast] = STATE(7183), - [sym__constructor_specifiers] = STATE(2020), - [sym_operator_cast_definition] = STATE(82), - [sym_operator_cast_declaration] = STATE(82), - [sym_constructor_or_destructor_definition] = STATE(82), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(82), - [sym_namespace_alias_definition] = STATE(82), - [sym_using_declaration] = STATE(82), - [sym_alias_declaration] = STATE(82), - [sym_static_assert_declaration] = STATE(82), - [sym_concept_definition] = STATE(82), - [sym_for_range_loop] = STATE(82), - [sym_co_return_statement] = STATE(82), - [sym_co_yield_statement] = STATE(82), - [sym_throw_statement] = STATE(82), - [sym_try_statement] = STATE(82), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7183), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(82), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2020), - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(988), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_preproc_if] = STATE(72), + [sym_preproc_ifdef] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_case_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym_seh_try_statement] = STATE(72), + [sym_seh_leave_statement] = STATE(72), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(72), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(72), + [sym_namespace_alias_definition] = STATE(72), + [sym_using_declaration] = STATE(72), + [sym_alias_declaration] = STATE(72), + [sym_static_assert_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(72), + [sym_co_return_statement] = STATE(72), + [sym_co_yield_statement] = STATE(72), + [sym_throw_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(72), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -97182,10 +97496,10 @@ 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(990), - [anon_sym___extension__] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -97197,7 +97511,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1076), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -97205,7 +97520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -97227,19 +97542,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym___try] = ACTIONS(211), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -97276,17 +97591,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1028), + [anon_sym_template] = ACTIONS(219), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_using] = ACTIONS(1036), - [anon_sym_static_assert] = ACTIONS(1038), - [anon_sym_concept] = ACTIONS(1040), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_namespace] = ACTIONS(225), + [anon_sym_using] = ACTIONS(227), + [anon_sym_static_assert] = ACTIONS(229), + [anon_sym_concept] = ACTIONS(231), + [anon_sym_co_return] = ACTIONS(233), + [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -97298,132 +97613,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [81] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -97453,8 +97768,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1078), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -97555,139 +97870,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [82] = { - [sym_preproc_include] = STATE(88), - [sym_preproc_def] = STATE(88), - [sym_preproc_function_def] = STATE(88), - [sym_preproc_call] = STATE(88), - [sym_preproc_if] = STATE(88), - [sym_preproc_ifdef] = STATE(88), - [sym_function_definition] = STATE(88), - [sym_declaration] = STATE(88), - [sym_type_definition] = STATE(88), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5509), - [sym_linkage_specification] = STATE(88), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2171), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6800), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(88), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4088), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(88), - [sym_labeled_statement] = STATE(88), - [sym_expression_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_case_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym_seh_try_statement] = STATE(88), - [sym_seh_leave_statement] = STATE(88), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(88), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2020), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(88), - [sym_template_instantiation] = STATE(88), - [sym_operator_cast] = STATE(7183), - [sym__constructor_specifiers] = STATE(2020), - [sym_operator_cast_definition] = STATE(88), - [sym_operator_cast_declaration] = STATE(88), - [sym_constructor_or_destructor_definition] = STATE(88), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(88), - [sym_for_range_loop] = STATE(88), - [sym_co_return_statement] = STATE(88), - [sym_co_yield_statement] = STATE(88), - [sym_throw_statement] = STATE(88), - [sym_try_statement] = STATE(88), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7183), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(88), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2020), - [sym_identifier] = ACTIONS(976), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(980), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(988), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), + [aux_sym_preproc_include_token1] = ACTIONS(161), + [aux_sym_preproc_def_token1] = ACTIONS(163), + [aux_sym_preproc_if_token1] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(169), + [sym_preproc_directive] = ACTIONS(171), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -97696,10 +98010,10 @@ 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(990), - [anon_sym___extension__] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), + [anon_sym_extern] = ACTIONS(179), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -97711,7 +98025,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1080), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -97719,7 +98034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(187), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -97741,19 +98056,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym___try] = ACTIONS(211), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -97790,17 +98105,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1028), + [anon_sym_template] = ACTIONS(219), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_using] = ACTIONS(1036), - [anon_sym_static_assert] = ACTIONS(1038), - [anon_sym_concept] = ACTIONS(1040), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_namespace] = ACTIONS(225), + [anon_sym_using] = ACTIONS(227), + [anon_sym_static_assert] = ACTIONS(229), + [anon_sym_concept] = ACTIONS(231), + [anon_sym_co_return] = ACTIONS(233), + [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -97812,132 +98127,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [83] = { - [sym_preproc_include] = STATE(90), - [sym_preproc_def] = STATE(90), - [sym_preproc_function_def] = STATE(90), - [sym_preproc_call] = STATE(90), - [sym_preproc_if] = STATE(90), - [sym_preproc_ifdef] = STATE(90), - [sym_function_definition] = STATE(90), - [sym_declaration] = STATE(90), - [sym_type_definition] = STATE(90), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(90), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(90), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym_seh_try_statement] = STATE(90), - [sym_seh_leave_statement] = STATE(90), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(90), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(90), - [sym_template_instantiation] = STATE(90), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(90), - [sym_operator_cast_declaration] = STATE(90), - [sym_constructor_or_destructor_definition] = STATE(90), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(90), - [sym_for_range_loop] = STATE(90), - [sym_co_return_statement] = STATE(90), - [sym_co_yield_statement] = STATE(90), - [sym_throw_statement] = STATE(90), - [sym_try_statement] = STATE(90), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(90), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(59), + [sym_preproc_def] = STATE(59), + [sym_preproc_function_def] = STATE(59), + [sym_preproc_call] = STATE(59), + [sym_preproc_if] = STATE(59), + [sym_preproc_ifdef] = STATE(59), + [sym_function_definition] = STATE(59), + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(59), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_case_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym_seh_try_statement] = STATE(59), + [sym_seh_leave_statement] = STATE(59), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(59), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(59), + [sym_template_instantiation] = STATE(59), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(59), + [sym_operator_cast_declaration] = STATE(59), + [sym_constructor_or_destructor_definition] = STATE(59), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(59), + [sym_namespace_alias_definition] = STATE(59), + [sym_using_declaration] = STATE(59), + [sym_alias_declaration] = STATE(59), + [sym_static_assert_declaration] = STATE(59), + [sym_concept_definition] = STATE(59), + [sym_for_range_loop] = STATE(59), + [sym_co_return_statement] = STATE(59), + [sym_co_yield_statement] = STATE(59), + [sym_throw_statement] = STATE(59), + [sym_try_statement] = STATE(59), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(59), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -97967,8 +98282,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1082), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -98069,132 +98384,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [84] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(57), + [sym_preproc_def] = STATE(57), + [sym_preproc_function_def] = STATE(57), + [sym_preproc_call] = STATE(57), + [sym_preproc_if] = STATE(57), + [sym_preproc_ifdef] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(57), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(57), + [sym_labeled_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_switch_statement] = STATE(57), + [sym_case_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym_seh_try_statement] = STATE(57), + [sym_seh_leave_statement] = STATE(57), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(57), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(57), + [sym_template_instantiation] = STATE(57), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(57), + [sym_operator_cast_declaration] = STATE(57), + [sym_constructor_or_destructor_definition] = STATE(57), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(57), + [sym_namespace_alias_definition] = STATE(57), + [sym_using_declaration] = STATE(57), + [sym_alias_declaration] = STATE(57), + [sym_static_assert_declaration] = STATE(57), + [sym_concept_definition] = STATE(57), + [sym_for_range_loop] = STATE(57), + [sym_co_return_statement] = STATE(57), + [sym_co_yield_statement] = STATE(57), + [sym_throw_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(57), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -98224,8 +98539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1084), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -98326,132 +98641,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [85] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -98481,8 +98796,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1086), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -98583,132 +98898,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [86] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -98738,8 +99053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1088), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -98840,132 +99155,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [87] = { - [sym_preproc_include] = STATE(74), - [sym_preproc_def] = STATE(74), - [sym_preproc_function_def] = STATE(74), - [sym_preproc_call] = STATE(74), - [sym_preproc_if] = STATE(74), - [sym_preproc_ifdef] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(74), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_case_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym_seh_try_statement] = STATE(74), - [sym_seh_leave_statement] = STATE(74), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(74), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(74), - [sym_template_instantiation] = STATE(74), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(74), - [sym_operator_cast_declaration] = STATE(74), - [sym_constructor_or_destructor_definition] = STATE(74), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(74), - [sym_namespace_alias_definition] = STATE(74), - [sym_using_declaration] = STATE(74), - [sym_alias_declaration] = STATE(74), - [sym_static_assert_declaration] = STATE(74), - [sym_concept_definition] = STATE(74), - [sym_for_range_loop] = STATE(74), - [sym_co_return_statement] = STATE(74), - [sym_co_yield_statement] = STATE(74), - [sym_throw_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(74), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(97), + [sym_preproc_def] = STATE(97), + [sym_preproc_function_def] = STATE(97), + [sym_preproc_call] = STATE(97), + [sym_preproc_if] = STATE(97), + [sym_preproc_ifdef] = STATE(97), + [sym_function_definition] = STATE(97), + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5565), + [sym_linkage_specification] = STATE(97), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2206), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6871), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4047), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_case_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym_seh_try_statement] = STATE(97), + [sym_seh_leave_statement] = STATE(97), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(97), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2055), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(97), + [sym_template_instantiation] = STATE(97), + [sym_operator_cast] = STATE(7201), + [sym__constructor_specifiers] = STATE(2055), + [sym_operator_cast_definition] = STATE(97), + [sym_operator_cast_declaration] = STATE(97), + [sym_constructor_or_destructor_definition] = STATE(97), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(97), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7201), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(97), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2055), + [sym_identifier] = ACTIONS(1090), + [aux_sym_preproc_include_token1] = ACTIONS(1092), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token2] = ACTIONS(1098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), + [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(1104), + [anon_sym___extension__] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(63), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1142), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_try] = ACTIONS(1144), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_namespace] = ACTIONS(1148), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_static_assert] = ACTIONS(1152), + [anon_sym_concept] = ACTIONS(1154), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [88] = { + [sym_preproc_include] = STATE(86), + [sym_preproc_def] = STATE(86), + [sym_preproc_function_def] = STATE(86), + [sym_preproc_call] = STATE(86), + [sym_preproc_if] = STATE(86), + [sym_preproc_ifdef] = STATE(86), + [sym_function_definition] = STATE(86), + [sym_declaration] = STATE(86), + [sym_type_definition] = STATE(86), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(86), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(86), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_case_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym_seh_try_statement] = STATE(86), + [sym_seh_leave_statement] = STATE(86), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(86), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(86), + [sym_template_instantiation] = STATE(86), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(86), + [sym_operator_cast_declaration] = STATE(86), + [sym_constructor_or_destructor_definition] = STATE(86), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(86), + [sym_for_range_loop] = STATE(86), + [sym_co_return_statement] = STATE(86), + [sym_co_yield_statement] = STATE(86), + [sym_throw_statement] = STATE(86), + [sym_try_statement] = STATE(86), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(86), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -98995,8 +99567,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1160), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -99096,390 +99668,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [88] = { - [sym_preproc_include] = STATE(88), - [sym_preproc_def] = STATE(88), - [sym_preproc_function_def] = STATE(88), - [sym_preproc_call] = STATE(88), - [sym_preproc_if] = STATE(88), - [sym_preproc_ifdef] = STATE(88), - [sym_function_definition] = STATE(88), - [sym_declaration] = STATE(88), - [sym_type_definition] = STATE(88), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5509), - [sym_linkage_specification] = STATE(88), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2171), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6800), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(88), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4088), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(88), - [sym_labeled_statement] = STATE(88), - [sym_expression_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_case_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym_seh_try_statement] = STATE(88), - [sym_seh_leave_statement] = STATE(88), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(88), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2020), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(88), - [sym_template_instantiation] = STATE(88), - [sym_operator_cast] = STATE(7183), - [sym__constructor_specifiers] = STATE(2020), - [sym_operator_cast_definition] = STATE(88), - [sym_operator_cast_declaration] = STATE(88), - [sym_constructor_or_destructor_definition] = STATE(88), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [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_concept_definition] = STATE(88), - [sym_for_range_loop] = STATE(88), - [sym_co_return_statement] = STATE(88), - [sym_co_yield_statement] = STATE(88), - [sym_throw_statement] = STATE(88), - [sym_try_statement] = STATE(88), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7183), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(88), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2020), - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1063), - [aux_sym_preproc_def_token1] = ACTIONS(1066), - [aux_sym_preproc_if_token1] = ACTIONS(1069), - [aux_sym_preproc_if_token2] = ACTIONS(461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1075), - [anon_sym_LPAREN2] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(472), - [anon_sym_TILDE] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_AMP] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym___extension__] = ACTIONS(1081), - [anon_sym_typedef] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1087), - [anon_sym___attribute__] = ACTIONS(502), - [anon_sym_COLON_COLON] = ACTIONS(505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(508), - [anon_sym___declspec] = ACTIONS(511), - [anon_sym___based] = ACTIONS(514), - [anon_sym___cdecl] = ACTIONS(517), - [anon_sym___clrcall] = ACTIONS(517), - [anon_sym___stdcall] = ACTIONS(517), - [anon_sym___fastcall] = ACTIONS(517), - [anon_sym___thiscall] = ACTIONS(517), - [anon_sym___vectorcall] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_signed] = ACTIONS(523), - [anon_sym_unsigned] = ACTIONS(523), - [anon_sym_long] = ACTIONS(523), - [anon_sym_short] = ACTIONS(523), - [anon_sym_LBRACK] = ACTIONS(526), - [anon_sym_static] = ACTIONS(529), - [anon_sym_register] = ACTIONS(529), - [anon_sym_inline] = ACTIONS(1093), - [anon_sym___inline] = ACTIONS(529), - [anon_sym___inline__] = ACTIONS(529), - [anon_sym___forceinline] = ACTIONS(529), - [anon_sym_thread_local] = ACTIONS(529), - [anon_sym___thread] = ACTIONS(529), - [anon_sym_const] = ACTIONS(535), - [anon_sym_constexpr] = ACTIONS(535), - [anon_sym_volatile] = ACTIONS(535), - [anon_sym_restrict] = ACTIONS(535), - [anon_sym___restrict__] = ACTIONS(535), - [anon_sym__Atomic] = ACTIONS(535), - [anon_sym__Noreturn] = ACTIONS(535), - [anon_sym_noreturn] = ACTIONS(535), - [anon_sym_mutable] = ACTIONS(535), - [anon_sym_constinit] = ACTIONS(535), - [anon_sym_consteval] = ACTIONS(535), - [sym_primitive_type] = ACTIONS(538), - [anon_sym_enum] = ACTIONS(541), - [anon_sym_class] = ACTIONS(544), - [anon_sym_struct] = ACTIONS(547), - [anon_sym_union] = ACTIONS(550), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_switch] = ACTIONS(1099), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1111), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1123), - [anon_sym_goto] = ACTIONS(1126), - [anon_sym___try] = ACTIONS(1129), - [anon_sym___leave] = ACTIONS(1132), - [anon_sym_not] = ACTIONS(478), - [anon_sym_compl] = ACTIONS(478), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(595), - [anon_sym___alignof__] = ACTIONS(598), - [anon_sym___alignof] = ACTIONS(598), - [anon_sym__alignof] = ACTIONS(598), - [anon_sym_alignof] = ACTIONS(598), - [anon_sym__Alignof] = ACTIONS(598), - [anon_sym_offsetof] = ACTIONS(601), - [anon_sym__Generic] = ACTIONS(604), - [anon_sym_asm] = ACTIONS(607), - [anon_sym___asm__] = ACTIONS(607), - [sym_number_literal] = ACTIONS(610), - [anon_sym_L_SQUOTE] = ACTIONS(613), - [anon_sym_u_SQUOTE] = ACTIONS(613), - [anon_sym_U_SQUOTE] = ACTIONS(613), - [anon_sym_u8_SQUOTE] = ACTIONS(613), - [anon_sym_SQUOTE] = ACTIONS(613), - [anon_sym_L_DQUOTE] = ACTIONS(616), - [anon_sym_u_DQUOTE] = ACTIONS(616), - [anon_sym_U_DQUOTE] = ACTIONS(616), - [anon_sym_u8_DQUOTE] = ACTIONS(616), - [anon_sym_DQUOTE] = ACTIONS(616), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [anon_sym_NULL] = ACTIONS(622), - [anon_sym_nullptr] = ACTIONS(622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(625), - [anon_sym_decltype] = ACTIONS(628), - [anon_sym_virtual] = ACTIONS(631), - [anon_sym_alignas] = ACTIONS(634), - [anon_sym_explicit] = ACTIONS(637), - [anon_sym_typename] = ACTIONS(640), - [anon_sym_template] = ACTIONS(1135), - [anon_sym_operator] = ACTIONS(646), - [anon_sym_try] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(652), - [anon_sym_throw] = ACTIONS(1141), - [anon_sym_namespace] = ACTIONS(1144), - [anon_sym_using] = ACTIONS(1147), - [anon_sym_static_assert] = ACTIONS(1150), - [anon_sym_concept] = ACTIONS(1153), - [anon_sym_co_return] = ACTIONS(1156), - [anon_sym_co_yield] = ACTIONS(1159), - [anon_sym_R_DQUOTE] = ACTIONS(676), - [anon_sym_LR_DQUOTE] = ACTIONS(676), - [anon_sym_uR_DQUOTE] = ACTIONS(676), - [anon_sym_UR_DQUOTE] = ACTIONS(676), - [anon_sym_u8R_DQUOTE] = ACTIONS(676), - [anon_sym_co_await] = ACTIONS(679), - [anon_sym_new] = ACTIONS(682), - [anon_sym_requires] = ACTIONS(685), - [sym_this] = ACTIONS(619), - }, [89] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -99509,7 +99824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_RBRACE] = ACTIONS(1162), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -99611,132 +99926,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [90] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -99766,7 +100081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_RBRACE] = ACTIONS(1164), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -99868,132 +100183,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [91] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym_seh_try_statement] = STATE(44), + [sym_seh_leave_statement] = STATE(44), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(44), + [sym_namespace_alias_definition] = STATE(44), + [sym_using_declaration] = STATE(44), + [sym_alias_declaration] = STATE(44), + [sym_static_assert_declaration] = STATE(44), + [sym_concept_definition] = STATE(44), + [sym_for_range_loop] = STATE(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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -100023,7 +100338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_RBRACE] = ACTIONS(1166), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -100125,132 +100440,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [92] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(94), + [sym_preproc_def] = STATE(94), + [sym_preproc_function_def] = STATE(94), + [sym_preproc_call] = STATE(94), + [sym_preproc_if] = STATE(94), + [sym_preproc_ifdef] = STATE(94), + [sym_function_definition] = STATE(94), + [sym_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(94), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(94), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_case_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym_seh_try_statement] = STATE(94), + [sym_seh_leave_statement] = STATE(94), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(94), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(94), + [sym_template_instantiation] = STATE(94), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(94), + [sym_operator_cast_declaration] = STATE(94), + [sym_constructor_or_destructor_definition] = STATE(94), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(94), + [sym_for_range_loop] = STATE(94), + [sym_co_return_statement] = STATE(94), + [sym_co_yield_statement] = STATE(94), + [sym_throw_statement] = STATE(94), + [sym_try_statement] = STATE(94), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(94), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -100280,7 +100595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_RBRACE] = ACTIONS(1168), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -100382,132 +100697,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [93] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(95), + [sym_preproc_def] = STATE(95), + [sym_preproc_function_def] = STATE(95), + [sym_preproc_call] = STATE(95), + [sym_preproc_if] = STATE(95), + [sym_preproc_ifdef] = STATE(95), + [sym_function_definition] = STATE(95), + [sym_declaration] = STATE(95), + [sym_type_definition] = STATE(95), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(95), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(95), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_case_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym_seh_try_statement] = STATE(95), + [sym_seh_leave_statement] = STATE(95), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(95), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(95), + [sym_template_instantiation] = STATE(95), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(95), + [sym_operator_cast_declaration] = STATE(95), + [sym_constructor_or_destructor_definition] = STATE(95), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [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_concept_definition] = STATE(95), + [sym_for_range_loop] = STATE(95), + [sym_co_return_statement] = STATE(95), + [sym_co_yield_statement] = STATE(95), + [sym_throw_statement] = STATE(95), + [sym_try_statement] = STATE(95), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(95), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -100537,7 +100852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_RBRACE] = ACTIONS(1170), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -100639,132 +100954,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [94] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -100794,7 +101109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_RBRACE] = ACTIONS(1172), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -100896,132 +101211,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [95] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -101051,7 +101366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_RBRACE] = ACTIONS(1174), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -101153,132 +101468,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [96] = { - [sym_preproc_include] = STATE(60), - [sym_preproc_def] = STATE(60), - [sym_preproc_function_def] = STATE(60), - [sym_preproc_call] = STATE(60), - [sym_preproc_if] = STATE(60), - [sym_preproc_ifdef] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(60), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_case_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym_seh_try_statement] = STATE(60), - [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(60), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(60), - [sym_template_instantiation] = STATE(60), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(60), - [sym_operator_cast_declaration] = STATE(60), - [sym_constructor_or_destructor_definition] = STATE(60), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(60), - [sym_namespace_alias_definition] = STATE(60), - [sym_using_declaration] = STATE(60), - [sym_alias_declaration] = STATE(60), - [sym_static_assert_declaration] = STATE(60), - [sym_concept_definition] = STATE(60), - [sym_for_range_loop] = STATE(60), - [sym_co_return_statement] = STATE(60), - [sym_co_yield_statement] = STATE(60), - [sym_throw_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(60), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6892), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2050), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2050), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(896), [aux_sym_preproc_include_token1] = ACTIONS(161), [aux_sym_preproc_def_token1] = ACTIONS(163), [aux_sym_preproc_if_token1] = ACTIONS(167), @@ -101308,7 +101623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_RBRACE] = ACTIONS(1176), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -101410,138 +101725,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [97] = { - [sym_preproc_include] = STATE(81), - [sym_preproc_def] = STATE(81), - [sym_preproc_function_def] = STATE(81), - [sym_preproc_call] = STATE(81), - [sym_preproc_if] = STATE(81), - [sym_preproc_ifdef] = STATE(81), - [sym_function_definition] = STATE(81), - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_linkage_specification] = STATE(81), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6835), - [sym_array_declarator] = STATE(6760), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym__empty_declaration] = STATE(81), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2017), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(81), - [sym_template_instantiation] = STATE(81), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2017), - [sym_operator_cast_definition] = STATE(81), - [sym_operator_cast_declaration] = STATE(81), - [sym_constructor_or_destructor_definition] = STATE(81), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), - [sym_namespace_definition] = STATE(81), - [sym_namespace_alias_definition] = STATE(81), - [sym_using_declaration] = STATE(81), - [sym_alias_declaration] = STATE(81), - [sym_static_assert_declaration] = STATE(81), - [sym_concept_definition] = STATE(81), - [sym_for_range_loop] = STATE(81), - [sym_co_return_statement] = STATE(81), - [sym_co_yield_statement] = STATE(81), - [sym_throw_statement] = STATE(81), - [sym_try_statement] = STATE(81), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_preproc_if_repeat1] = STATE(81), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(794), - [aux_sym_preproc_include_token1] = ACTIONS(161), - [aux_sym_preproc_def_token1] = ACTIONS(163), - [aux_sym_preproc_if_token1] = ACTIONS(167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(169), - [aux_sym_preproc_ifdef_token2] = ACTIONS(169), - [sym_preproc_directive] = ACTIONS(171), + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5565), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2206), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6871), + [sym_array_declarator] = STATE(6752), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4047), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(42), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym_seh_try_statement] = STATE(42), + [sym_seh_leave_statement] = STATE(42), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2055), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), + [sym_operator_cast] = STATE(7201), + [sym__constructor_specifiers] = STATE(2055), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), + [sym_namespace_definition] = STATE(42), + [sym_namespace_alias_definition] = STATE(42), + [sym_using_declaration] = STATE(42), + [sym_alias_declaration] = STATE(42), + [sym_static_assert_declaration] = STATE(42), + [sym_concept_definition] = STATE(42), + [sym_for_range_loop] = STATE(42), + [sym_co_return_statement] = STATE(42), + [sym_co_yield_statement] = STATE(42), + [sym_throw_statement] = STATE(42), + [sym_try_statement] = STATE(42), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7201), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2055), + [sym_identifier] = ACTIONS(1090), + [aux_sym_preproc_include_token1] = ACTIONS(1092), + [aux_sym_preproc_def_token1] = ACTIONS(1094), + [aux_sym_preproc_if_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token2] = ACTIONS(1178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1102), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -101550,10 +101866,10 @@ 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(173), - [anon_sym___extension__] = ACTIONS(175), - [anon_sym_typedef] = ACTIONS(177), - [anon_sym_extern] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym___extension__] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1110), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -101565,8 +101881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1112), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -101574,7 +101889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(55), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(187), + [anon_sym_inline] = ACTIONS(1114), [anon_sym___inline] = ACTIONS(57), [anon_sym___inline__] = ACTIONS(57), [anon_sym___forceinline] = ACTIONS(57), @@ -101596,19 +101911,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(189), - [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(193), - [anon_sym_default] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_do] = ACTIONS(199), - [anon_sym_for] = ACTIONS(201), - [anon_sym_return] = ACTIONS(203), - [anon_sym_break] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_goto] = ACTIONS(209), - [anon_sym___try] = ACTIONS(211), - [anon_sym___leave] = ACTIONS(213), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -101645,17 +101960,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(219), + [anon_sym_template] = ACTIONS(1142), [anon_sym_operator] = ACTIONS(131), - [anon_sym_try] = ACTIONS(221), + [anon_sym_try] = ACTIONS(1144), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(223), - [anon_sym_namespace] = ACTIONS(225), - [anon_sym_using] = ACTIONS(227), - [anon_sym_static_assert] = ACTIONS(229), - [anon_sym_concept] = ACTIONS(231), - [anon_sym_co_return] = ACTIONS(233), - [anon_sym_co_yield] = ACTIONS(235), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_namespace] = ACTIONS(1148), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_static_assert] = ACTIONS(1152), + [anon_sym_concept] = ACTIONS(1154), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -101676,28 +101991,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(99), [sym_declaration] = STATE(99), [sym_type_definition] = STATE(99), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5530), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5573), [sym_linkage_specification] = STATE(99), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2244), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6873), - [sym_array_declarator] = STATE(6760), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2253), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6901), + [sym_array_declarator] = STATE(6752), [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4009), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3979), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(99), [sym_labeled_statement] = STATE(99), [sym__top_level_expression_statement] = STATE(99), @@ -101711,50 +102026,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(99), [sym_continue_statement] = STATE(99), [sym_goto_statement] = STATE(99), - [sym__expression] = STATE(5260), - [sym__expression_not_binary] = STATE(5338), - [sym_conditional_expression] = STATE(5338), - [sym_assignment_expression] = STATE(5338), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(5338), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(5338), - [sym_cast_expression] = STATE(5338), - [sym_sizeof_expression] = STATE(5338), - [sym_alignof_expression] = STATE(5338), - [sym_offsetof_expression] = STATE(5338), - [sym_generic_expression] = STATE(5338), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(5338), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(5338), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(5338), + [sym__expression] = STATE(5292), + [sym__expression_not_binary] = STATE(5340), + [sym_conditional_expression] = STATE(5340), + [sym_assignment_expression] = STATE(5340), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(5340), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(5340), + [sym_cast_expression] = STATE(5340), + [sym_sizeof_expression] = STATE(5340), + [sym_alignof_expression] = STATE(5340), + [sym_offsetof_expression] = STATE(5340), + [sym_generic_expression] = STATE(5340), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(5340), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(5340), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(5340), [sym__empty_declaration] = STATE(99), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2006), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2048), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(99), [sym_template_instantiation] = STATE(99), - [sym_operator_cast] = STATE(7203), - [sym__constructor_specifiers] = STATE(2006), + [sym_operator_cast] = STATE(7216), + [sym__constructor_specifiers] = STATE(2048), [sym_operator_cast_definition] = STATE(99), [sym_operator_cast_declaration] = STATE(99), [sym_constructor_or_destructor_definition] = STATE(99), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), [sym_namespace_definition] = STATE(99), [sym_namespace_alias_definition] = STATE(99), [sym_using_declaration] = STATE(99), @@ -101766,29 +102081,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(99), [sym_throw_statement] = STATE(99), [sym_try_statement] = STATE(99), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(5338), - [sym_new_expression] = STATE(5338), - [sym_delete_expression] = STATE(5338), - [sym_requires_clause] = STATE(5338), - [sym_requires_expression] = STATE(5338), - [sym_lambda_expression] = STATE(5338), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(5338), - [sym_parameter_pack_expansion] = STATE(5338), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7203), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(5340), + [sym_new_expression] = STATE(5340), + [sym_delete_expression] = STATE(5340), + [sym_requires_clause] = STATE(5340), + [sym_requires_expression] = STATE(5340), + [sym_lambda_expression] = STATE(5340), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(5340), + [sym_parameter_pack_expansion] = STATE(5340), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7216), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), [aux_sym_translation_unit_repeat1] = STATE(99), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2006), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2048), [ts_builtin_sym_end] = ACTIONS(1180), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -101927,28 +102242,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(99), [sym_declaration] = STATE(99), [sym_type_definition] = STATE(99), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5530), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5573), [sym_linkage_specification] = STATE(99), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(1076), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2244), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6873), - [sym_array_declarator] = STATE(6760), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(1075), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2253), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6901), + [sym_array_declarator] = STATE(6752), [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4009), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3979), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(99), [sym_labeled_statement] = STATE(99), [sym__top_level_expression_statement] = STATE(99), @@ -101962,50 +102277,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(99), [sym_continue_statement] = STATE(99), [sym_goto_statement] = STATE(99), - [sym__expression] = STATE(5260), - [sym__expression_not_binary] = STATE(5338), - [sym_conditional_expression] = STATE(5338), - [sym_assignment_expression] = STATE(5338), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(5338), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(5338), - [sym_cast_expression] = STATE(5338), - [sym_sizeof_expression] = STATE(5338), - [sym_alignof_expression] = STATE(5338), - [sym_offsetof_expression] = STATE(5338), - [sym_generic_expression] = STATE(5338), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(5338), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(5338), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(5338), + [sym__expression] = STATE(5292), + [sym__expression_not_binary] = STATE(5340), + [sym_conditional_expression] = STATE(5340), + [sym_assignment_expression] = STATE(5340), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(5340), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(5340), + [sym_cast_expression] = STATE(5340), + [sym_sizeof_expression] = STATE(5340), + [sym_alignof_expression] = STATE(5340), + [sym_offsetof_expression] = STATE(5340), + [sym_generic_expression] = STATE(5340), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(5340), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(5340), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(5340), [sym__empty_declaration] = STATE(99), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2006), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2048), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(99), [sym_template_instantiation] = STATE(99), - [sym_operator_cast] = STATE(7203), - [sym__constructor_specifiers] = STATE(2006), + [sym_operator_cast] = STATE(7216), + [sym__constructor_specifiers] = STATE(2048), [sym_operator_cast_definition] = STATE(99), [sym_operator_cast_declaration] = STATE(99), [sym_constructor_or_destructor_definition] = STATE(99), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4963), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(5074), [sym_namespace_definition] = STATE(99), [sym_namespace_alias_definition] = STATE(99), [sym_using_declaration] = STATE(99), @@ -102017,29 +102332,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(99), [sym_throw_statement] = STATE(99), [sym_try_statement] = STATE(99), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(5338), - [sym_new_expression] = STATE(5338), - [sym_delete_expression] = STATE(5338), - [sym_requires_clause] = STATE(5338), - [sym_requires_expression] = STATE(5338), - [sym_lambda_expression] = STATE(5338), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(5338), - [sym_parameter_pack_expansion] = STATE(5338), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5938), - [sym_qualified_identifier] = STATE(3671), - [sym_qualified_type_identifier] = STATE(4472), - [sym_qualified_operator_cast_identifier] = STATE(7203), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3606), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(5340), + [sym_new_expression] = STATE(5340), + [sym_delete_expression] = STATE(5340), + [sym_requires_clause] = STATE(5340), + [sym_requires_expression] = STATE(5340), + [sym_lambda_expression] = STATE(5340), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(5340), + [sym_parameter_pack_expansion] = STATE(5340), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6035), + [sym_qualified_identifier] = STATE(3617), + [sym_qualified_type_identifier] = STATE(4473), + [sym_qualified_operator_cast_identifier] = STATE(7216), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3596), [aux_sym_translation_unit_repeat1] = STATE(99), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2006), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2048), [ts_builtin_sym_end] = ACTIONS(1182), [sym_identifier] = ACTIONS(1184), [aux_sym_preproc_include_token1] = ACTIONS(1187), @@ -102169,245 +102484,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1343), }, [100] = { - [sym_declaration] = STATE(103), - [sym_type_definition] = STATE(103), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5516), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(103), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(103), - [sym_labeled_statement] = STATE(103), - [sym_expression_statement] = STATE(103), - [sym_if_statement] = STATE(103), - [sym_switch_statement] = STATE(103), - [sym_while_statement] = STATE(103), - [sym_do_statement] = STATE(103), - [sym_for_statement] = STATE(103), - [sym_return_statement] = STATE(103), - [sym_break_statement] = STATE(103), - [sym_continue_statement] = STATE(103), - [sym_goto_statement] = STATE(103), - [sym_seh_try_statement] = STATE(103), - [sym_seh_leave_statement] = STATE(103), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(103), - [sym_co_return_statement] = STATE(103), - [sym_co_yield_statement] = STATE(103), - [sym_throw_statement] = STATE(103), - [sym_try_statement] = STATE(103), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(1412), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [aux_sym_preproc_else_token1] = ACTIONS(1414), - [aux_sym_preproc_elif_token1] = ACTIONS(1414), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(283), - [anon_sym___extension__] = ACTIONS(285), - [anon_sym_typedef] = ACTIONS(287), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(295), - [anon_sym_else] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(297), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(303), - [anon_sym_do] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_return] = ACTIONS(309), - [anon_sym_break] = ACTIONS(311), - [anon_sym_continue] = ACTIONS(313), - [anon_sym_goto] = ACTIONS(315), - [anon_sym___try] = ACTIONS(317), - [anon_sym___leave] = ACTIONS(319), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1414), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(323), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(325), - [anon_sym_namespace] = ACTIONS(1414), - [anon_sym_using] = ACTIONS(1414), - [anon_sym_static_assert] = ACTIONS(1414), - [anon_sym_concept] = ACTIONS(1414), - [anon_sym_co_return] = ACTIONS(335), - [anon_sym_co_yield] = ACTIONS(337), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [101] = { [sym_declaration] = STATE(102), [sym_type_definition] = STATE(102), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5516), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5564), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), [sym_compound_statement] = STATE(102), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(102), [sym_labeled_statement] = STATE(102), [sym_expression_statement] = STATE(102), @@ -102422,83 +102513,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(102), [sym_seh_try_statement] = STATE(102), [sym_seh_leave_statement] = STATE(102), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), [sym_for_range_loop] = STATE(102), [sym_co_return_statement] = STATE(102), [sym_co_yield_statement] = STATE(102), [sym_throw_statement] = STATE(102), [sym_try_statement] = STATE(102), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [aux_sym_case_statement_repeat1] = STATE(102), [sym_identifier] = ACTIONS(1412), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [aux_sym_preproc_else_token1] = ACTIONS(1430), - [aux_sym_preproc_elif_token1] = ACTIONS(1430), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [aux_sym_preproc_else_token1] = ACTIONS(1414), + [aux_sym_preproc_elif_token1] = ACTIONS(1414), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1432), + [anon_sym_AMP_AMP] = ACTIONS(1420), [anon_sym_AMP] = ACTIONS(1422), [anon_sym_SEMI] = ACTIONS(283), [anon_sym___extension__] = ACTIONS(285), @@ -102508,13 +102599,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym___based] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -102546,10 +102637,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(295), - [anon_sym_else] = ACTIONS(1430), + [anon_sym_else] = ACTIONS(1414), [anon_sym_switch] = ACTIONS(297), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), [anon_sym_while] = ACTIONS(303), [anon_sym_do] = ACTIONS(305), [anon_sym_for] = ACTIONS(307), @@ -102593,17 +102684,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1430), + [anon_sym_explicit] = ACTIONS(1414), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1430), + [anon_sym_operator] = ACTIONS(1414), [anon_sym_try] = ACTIONS(323), [anon_sym_delete] = ACTIONS(135), [anon_sym_throw] = ACTIONS(325), - [anon_sym_namespace] = ACTIONS(1430), - [anon_sym_using] = ACTIONS(1430), - [anon_sym_static_assert] = ACTIONS(1430), - [anon_sym_concept] = ACTIONS(1430), + [anon_sym_namespace] = ACTIONS(1414), + [anon_sym_using] = ACTIONS(1414), + [anon_sym_static_assert] = ACTIONS(1414), + [anon_sym_concept] = ACTIONS(1414), [anon_sym_co_return] = ACTIONS(335), [anon_sym_co_yield] = ACTIONS(337), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -102616,337 +102707,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [102] = { - [sym_declaration] = STATE(102), - [sym_type_definition] = STATE(102), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5516), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(102), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(102), - [sym_labeled_statement] = STATE(102), - [sym_expression_statement] = STATE(102), - [sym_if_statement] = STATE(102), - [sym_switch_statement] = STATE(102), - [sym_while_statement] = STATE(102), - [sym_do_statement] = STATE(102), - [sym_for_statement] = STATE(102), - [sym_return_statement] = STATE(102), - [sym_break_statement] = STATE(102), - [sym_continue_statement] = STATE(102), - [sym_goto_statement] = STATE(102), - [sym_seh_try_statement] = STATE(102), - [sym_seh_leave_statement] = STATE(102), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(102), - [sym_co_return_statement] = STATE(102), - [sym_co_yield_statement] = STATE(102), - [sym_throw_statement] = STATE(102), - [sym_try_statement] = STATE(102), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(102), - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token2] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1437), - [aux_sym_preproc_else_token1] = ACTIONS(1437), - [aux_sym_preproc_elif_token1] = ACTIONS(1437), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1437), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym___extension__] = ACTIONS(1459), - [anon_sym_typedef] = ACTIONS(1462), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1477), - [anon_sym___based] = ACTIONS(1437), - [anon_sym___cdecl] = ACTIONS(1437), - [anon_sym___clrcall] = ACTIONS(1437), - [anon_sym___stdcall] = ACTIONS(1437), - [anon_sym___fastcall] = ACTIONS(1437), - [anon_sym___thiscall] = ACTIONS(1437), - [anon_sym___vectorcall] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [anon_sym___inline] = ACTIONS(1465), - [anon_sym___inline__] = ACTIONS(1465), - [anon_sym___forceinline] = ACTIONS(1465), - [anon_sym_thread_local] = ACTIONS(1465), - [anon_sym___thread] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_constexpr] = ACTIONS(1489), - [anon_sym_volatile] = ACTIONS(1489), - [anon_sym_restrict] = ACTIONS(1489), - [anon_sym___restrict__] = ACTIONS(1489), - [anon_sym__Atomic] = ACTIONS(1489), - [anon_sym__Noreturn] = ACTIONS(1489), - [anon_sym_noreturn] = ACTIONS(1489), - [anon_sym_mutable] = ACTIONS(1489), - [anon_sym_constinit] = ACTIONS(1489), - [anon_sym_consteval] = ACTIONS(1489), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_class] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_else] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1510), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_goto] = ACTIONS(1531), - [anon_sym___try] = ACTIONS(1534), - [anon_sym___leave] = ACTIONS(1537), - [anon_sym_not] = ACTIONS(1445), - [anon_sym_compl] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1543), - [anon_sym___alignof__] = ACTIONS(1546), - [anon_sym___alignof] = ACTIONS(1546), - [anon_sym__alignof] = ACTIONS(1546), - [anon_sym_alignof] = ACTIONS(1546), - [anon_sym__Alignof] = ACTIONS(1546), - [anon_sym_offsetof] = ACTIONS(1549), - [anon_sym__Generic] = ACTIONS(1552), - [anon_sym_asm] = ACTIONS(1555), - [anon_sym___asm__] = ACTIONS(1555), - [sym_number_literal] = ACTIONS(1558), - [anon_sym_L_SQUOTE] = ACTIONS(1561), - [anon_sym_u_SQUOTE] = ACTIONS(1561), - [anon_sym_U_SQUOTE] = ACTIONS(1561), - [anon_sym_u8_SQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_L_DQUOTE] = ACTIONS(1564), - [anon_sym_u_DQUOTE] = ACTIONS(1564), - [anon_sym_U_DQUOTE] = ACTIONS(1564), - [anon_sym_u8_DQUOTE] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [anon_sym_NULL] = ACTIONS(1570), - [anon_sym_nullptr] = ACTIONS(1570), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1573), - [anon_sym_decltype] = ACTIONS(1576), - [anon_sym_virtual] = ACTIONS(1579), - [anon_sym_alignas] = ACTIONS(1582), - [anon_sym_explicit] = ACTIONS(1437), - [anon_sym_typename] = ACTIONS(1585), - [anon_sym_template] = ACTIONS(1588), - [anon_sym_operator] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1591), - [anon_sym_delete] = ACTIONS(1594), - [anon_sym_throw] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1437), - [anon_sym_using] = ACTIONS(1437), - [anon_sym_static_assert] = ACTIONS(1437), - [anon_sym_concept] = ACTIONS(1437), - [anon_sym_co_return] = ACTIONS(1600), - [anon_sym_co_yield] = ACTIONS(1603), - [anon_sym_R_DQUOTE] = ACTIONS(1606), - [anon_sym_LR_DQUOTE] = ACTIONS(1606), - [anon_sym_uR_DQUOTE] = ACTIONS(1606), - [anon_sym_UR_DQUOTE] = ACTIONS(1606), - [anon_sym_u8R_DQUOTE] = ACTIONS(1606), - [anon_sym_co_await] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_requires] = ACTIONS(1615), - [sym_this] = ACTIONS(1567), - }, - [103] = { - [sym_declaration] = STATE(102), - [sym_type_definition] = STATE(102), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5516), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(102), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(102), - [sym_labeled_statement] = STATE(102), - [sym_expression_statement] = STATE(102), - [sym_if_statement] = STATE(102), - [sym_switch_statement] = STATE(102), - [sym_while_statement] = STATE(102), - [sym_do_statement] = STATE(102), - [sym_for_statement] = STATE(102), - [sym_return_statement] = STATE(102), - [sym_break_statement] = STATE(102), - [sym_continue_statement] = STATE(102), - [sym_goto_statement] = STATE(102), - [sym_seh_try_statement] = STATE(102), - [sym_seh_leave_statement] = STATE(102), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(102), - [sym_co_return_statement] = STATE(102), - [sym_co_yield_statement] = STATE(102), - [sym_throw_statement] = STATE(102), - [sym_try_statement] = STATE(102), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(102), + [101] = { + [sym_declaration] = STATE(104), + [sym_type_definition] = STATE(104), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5564), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(104), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(104), + [sym_labeled_statement] = STATE(104), + [sym_expression_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_switch_statement] = STATE(104), + [sym_while_statement] = STATE(104), + [sym_do_statement] = STATE(104), + [sym_for_statement] = STATE(104), + [sym_return_statement] = STATE(104), + [sym_break_statement] = STATE(104), + [sym_continue_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym_seh_try_statement] = STATE(104), + [sym_seh_leave_statement] = STATE(104), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(104), + [sym_co_return_statement] = STATE(104), + [sym_co_yield_statement] = STATE(104), + [sym_throw_statement] = STATE(104), + [sym_try_statement] = STATE(104), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(104), [sym_identifier] = ACTIONS(1412), - [aux_sym_preproc_include_token1] = ACTIONS(1618), - [aux_sym_preproc_def_token1] = ACTIONS(1618), - [aux_sym_preproc_if_token1] = ACTIONS(1618), - [aux_sym_preproc_if_token2] = ACTIONS(1618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1618), - [aux_sym_preproc_else_token1] = ACTIONS(1618), - [aux_sym_preproc_elif_token1] = ACTIONS(1618), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1618), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1618), - [sym_preproc_directive] = ACTIONS(1618), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [aux_sym_preproc_else_token1] = ACTIONS(1430), + [aux_sym_preproc_elif_token1] = ACTIONS(1430), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1620), + [anon_sym_AMP_AMP] = ACTIONS(1432), [anon_sym_AMP] = ACTIONS(1422), [anon_sym_SEMI] = ACTIONS(283), [anon_sym___extension__] = ACTIONS(285), @@ -102956,13 +102823,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1618), - [anon_sym___cdecl] = ACTIONS(1618), - [anon_sym___clrcall] = ACTIONS(1618), - [anon_sym___stdcall] = ACTIONS(1618), - [anon_sym___fastcall] = ACTIONS(1618), - [anon_sym___thiscall] = ACTIONS(1618), - [anon_sym___vectorcall] = ACTIONS(1618), + [anon_sym___based] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -102994,10 +102861,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(295), - [anon_sym_else] = ACTIONS(1618), + [anon_sym_else] = ACTIONS(1430), [anon_sym_switch] = ACTIONS(297), - [anon_sym_case] = ACTIONS(1618), - [anon_sym_default] = ACTIONS(1618), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), [anon_sym_while] = ACTIONS(303), [anon_sym_do] = ACTIONS(305), [anon_sym_for] = ACTIONS(307), @@ -103041,17 +102908,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1618), + [anon_sym_explicit] = ACTIONS(1430), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1618), + [anon_sym_operator] = ACTIONS(1430), [anon_sym_try] = ACTIONS(323), [anon_sym_delete] = ACTIONS(135), [anon_sym_throw] = ACTIONS(325), - [anon_sym_namespace] = ACTIONS(1618), - [anon_sym_using] = ACTIONS(1618), - [anon_sym_static_assert] = ACTIONS(1618), - [anon_sym_concept] = ACTIONS(1618), + [anon_sym_namespace] = ACTIONS(1430), + [anon_sym_using] = ACTIONS(1430), + [anon_sym_static_assert] = ACTIONS(1430), + [anon_sym_concept] = ACTIONS(1430), [anon_sym_co_return] = ACTIONS(335), [anon_sym_co_yield] = ACTIONS(337), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -103064,113 +102931,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [104] = { - [sym_declaration] = STATE(101), - [sym_type_definition] = STATE(101), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5516), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(101), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(101), - [sym_labeled_statement] = STATE(101), - [sym_expression_statement] = STATE(101), - [sym_if_statement] = STATE(101), - [sym_switch_statement] = STATE(101), - [sym_while_statement] = STATE(101), - [sym_do_statement] = STATE(101), - [sym_for_statement] = STATE(101), - [sym_return_statement] = STATE(101), - [sym_break_statement] = STATE(101), - [sym_continue_statement] = STATE(101), - [sym_goto_statement] = STATE(101), - [sym_seh_try_statement] = STATE(101), - [sym_seh_leave_statement] = STATE(101), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(101), - [sym_co_return_statement] = STATE(101), - [sym_co_yield_statement] = STATE(101), - [sym_throw_statement] = STATE(101), - [sym_try_statement] = STATE(101), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(101), + [102] = { + [sym_declaration] = STATE(104), + [sym_type_definition] = STATE(104), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5564), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(104), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(104), + [sym_labeled_statement] = STATE(104), + [sym_expression_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_switch_statement] = STATE(104), + [sym_while_statement] = STATE(104), + [sym_do_statement] = STATE(104), + [sym_for_statement] = STATE(104), + [sym_return_statement] = STATE(104), + [sym_break_statement] = STATE(104), + [sym_continue_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym_seh_try_statement] = STATE(104), + [sym_seh_leave_statement] = STATE(104), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(104), + [sym_co_return_statement] = STATE(104), + [sym_co_yield_statement] = STATE(104), + [sym_throw_statement] = STATE(104), + [sym_try_statement] = STATE(104), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(104), [sym_identifier] = ACTIONS(1412), - [aux_sym_preproc_include_token1] = ACTIONS(1622), - [aux_sym_preproc_def_token1] = ACTIONS(1622), - [aux_sym_preproc_if_token1] = ACTIONS(1622), - [aux_sym_preproc_if_token2] = ACTIONS(1622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1622), - [aux_sym_preproc_else_token1] = ACTIONS(1622), - [aux_sym_preproc_elif_token1] = ACTIONS(1622), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1622), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1622), - [sym_preproc_directive] = ACTIONS(1622), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [aux_sym_preproc_else_token1] = ACTIONS(1434), + [aux_sym_preproc_elif_token1] = ACTIONS(1434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_AMP_AMP] = ACTIONS(1436), [anon_sym_AMP] = ACTIONS(1422), [anon_sym_SEMI] = ACTIONS(283), [anon_sym___extension__] = ACTIONS(285), @@ -103180,13 +103047,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1622), - [anon_sym___cdecl] = ACTIONS(1622), - [anon_sym___clrcall] = ACTIONS(1622), - [anon_sym___stdcall] = ACTIONS(1622), - [anon_sym___fastcall] = ACTIONS(1622), - [anon_sym___thiscall] = ACTIONS(1622), - [anon_sym___vectorcall] = ACTIONS(1622), + [anon_sym___based] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -103218,10 +103085,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(295), - [anon_sym_else] = ACTIONS(1622), + [anon_sym_else] = ACTIONS(1434), [anon_sym_switch] = ACTIONS(297), - [anon_sym_case] = ACTIONS(1622), - [anon_sym_default] = ACTIONS(1622), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), [anon_sym_while] = ACTIONS(303), [anon_sym_do] = ACTIONS(305), [anon_sym_for] = ACTIONS(307), @@ -103265,17 +103132,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1622), + [anon_sym_explicit] = ACTIONS(1434), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1622), + [anon_sym_operator] = ACTIONS(1434), [anon_sym_try] = ACTIONS(323), [anon_sym_delete] = ACTIONS(135), [anon_sym_throw] = ACTIONS(325), - [anon_sym_namespace] = ACTIONS(1622), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_static_assert] = ACTIONS(1622), - [anon_sym_concept] = ACTIONS(1622), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_using] = ACTIONS(1434), + [anon_sym_static_assert] = ACTIONS(1434), + [anon_sym_concept] = ACTIONS(1434), [anon_sym_co_return] = ACTIONS(335), [anon_sym_co_yield] = ACTIONS(337), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -103288,128 +103155,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [105] = { - [sym_declaration] = STATE(106), - [sym_type_definition] = STATE(106), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5497), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(106), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(106), - [sym_labeled_statement] = STATE(106), - [sym_expression_statement] = STATE(106), - [sym_if_statement] = STATE(106), - [sym_switch_statement] = STATE(106), - [sym_while_statement] = STATE(106), - [sym_do_statement] = STATE(106), - [sym_for_statement] = STATE(106), - [sym_return_statement] = STATE(106), - [sym_break_statement] = STATE(106), - [sym_continue_statement] = STATE(106), - [sym_goto_statement] = STATE(106), - [sym_seh_try_statement] = STATE(106), - [sym_seh_leave_statement] = STATE(106), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(106), - [sym_co_return_statement] = STATE(106), - [sym_co_yield_statement] = STATE(106), - [sym_throw_statement] = STATE(106), - [sym_try_statement] = STATE(106), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(106), - [sym_identifier] = ACTIONS(1626), - [aux_sym_preproc_include_token1] = ACTIONS(1622), - [aux_sym_preproc_def_token1] = ACTIONS(1622), - [aux_sym_preproc_if_token1] = ACTIONS(1622), - [aux_sym_preproc_if_token2] = ACTIONS(1622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1622), - [aux_sym_preproc_else_token1] = ACTIONS(1622), - [aux_sym_preproc_elif_token1] = ACTIONS(1622), - [sym_preproc_directive] = ACTIONS(1622), + [103] = { + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5564), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(101), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(101), + [sym_labeled_statement] = STATE(101), + [sym_expression_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_switch_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_do_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_return_statement] = STATE(101), + [sym_break_statement] = STATE(101), + [sym_continue_statement] = STATE(101), + [sym_goto_statement] = STATE(101), + [sym_seh_try_statement] = STATE(101), + [sym_seh_leave_statement] = STATE(101), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(101), + [sym_co_return_statement] = STATE(101), + [sym_co_yield_statement] = STATE(101), + [sym_throw_statement] = STATE(101), + [sym_try_statement] = STATE(101), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [aux_sym_preproc_else_token1] = ACTIONS(1438), + [aux_sym_preproc_elif_token1] = ACTIONS(1438), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_AMP_AMP] = ACTIONS(1440), [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(371), - [anon_sym___extension__] = ACTIONS(373), - [anon_sym_typedef] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym___extension__] = ACTIONS(285), + [anon_sym_typedef] = ACTIONS(287), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1622), - [anon_sym___cdecl] = ACTIONS(1622), - [anon_sym___clrcall] = ACTIONS(1622), - [anon_sym___stdcall] = ACTIONS(1622), - [anon_sym___fastcall] = ACTIONS(1622), - [anon_sym___thiscall] = ACTIONS(1622), - [anon_sym___vectorcall] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym___based] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -103439,20 +103308,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(383), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_switch] = ACTIONS(385), - [anon_sym_case] = ACTIONS(1622), - [anon_sym_default] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_goto] = ACTIONS(403), - [anon_sym___try] = ACTIONS(405), - [anon_sym___leave] = ACTIONS(407), + [anon_sym_if] = ACTIONS(295), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(297), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(303), + [anon_sym_do] = ACTIONS(305), + [anon_sym_for] = ACTIONS(307), + [anon_sym_return] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_goto] = ACTIONS(315), + [anon_sym___try] = ACTIONS(317), + [anon_sym___leave] = ACTIONS(319), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -103487,19 +103356,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1622), + [anon_sym_explicit] = ACTIONS(1438), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_try] = ACTIONS(411), + [anon_sym_operator] = ACTIONS(1438), + [anon_sym_try] = ACTIONS(323), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(413), - [anon_sym_namespace] = ACTIONS(1622), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_static_assert] = ACTIONS(1622), - [anon_sym_concept] = ACTIONS(1622), - [anon_sym_co_return] = ACTIONS(423), - [anon_sym_co_yield] = ACTIONS(425), + [anon_sym_throw] = ACTIONS(325), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_static_assert] = ACTIONS(1438), + [anon_sym_concept] = ACTIONS(1438), + [anon_sym_co_return] = ACTIONS(335), + [anon_sym_co_yield] = ACTIONS(337), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -103510,111 +103379,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [106] = { - [sym_declaration] = STATE(108), - [sym_type_definition] = STATE(108), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5497), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(108), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(108), - [sym_labeled_statement] = STATE(108), - [sym_expression_statement] = STATE(108), - [sym_if_statement] = STATE(108), - [sym_switch_statement] = STATE(108), - [sym_while_statement] = STATE(108), - [sym_do_statement] = STATE(108), - [sym_for_statement] = STATE(108), - [sym_return_statement] = STATE(108), - [sym_break_statement] = STATE(108), - [sym_continue_statement] = STATE(108), - [sym_goto_statement] = STATE(108), - [sym_seh_try_statement] = STATE(108), - [sym_seh_leave_statement] = STATE(108), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(108), - [sym_co_return_statement] = STATE(108), - [sym_co_yield_statement] = STATE(108), - [sym_throw_statement] = STATE(108), - [sym_try_statement] = STATE(108), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [104] = { + [sym_declaration] = STATE(104), + [sym_type_definition] = STATE(104), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5564), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(104), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(104), + [sym_labeled_statement] = STATE(104), + [sym_expression_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_switch_statement] = STATE(104), + [sym_while_statement] = STATE(104), + [sym_do_statement] = STATE(104), + [sym_for_statement] = STATE(104), + [sym_return_statement] = STATE(104), + [sym_break_statement] = STATE(104), + [sym_continue_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym_seh_try_statement] = STATE(104), + [sym_seh_leave_statement] = STATE(104), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(104), + [sym_co_return_statement] = STATE(104), + [sym_co_yield_statement] = STATE(104), + [sym_throw_statement] = STATE(104), + [sym_try_statement] = STATE(104), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(104), + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1445), + [aux_sym_preproc_def_token1] = ACTIONS(1445), + [aux_sym_preproc_if_token1] = ACTIONS(1445), + [aux_sym_preproc_if_token2] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1445), + [aux_sym_preproc_else_token1] = ACTIONS(1445), + [aux_sym_preproc_elif_token1] = ACTIONS(1445), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1445), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1445), + [sym_preproc_directive] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1467), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1479), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1485), + [anon_sym___based] = ACTIONS(1445), + [anon_sym___cdecl] = ACTIONS(1445), + [anon_sym___clrcall] = ACTIONS(1445), + [anon_sym___stdcall] = ACTIONS(1445), + [anon_sym___fastcall] = ACTIONS(1445), + [anon_sym___thiscall] = ACTIONS(1445), + [anon_sym___vectorcall] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1491), + [anon_sym_unsigned] = ACTIONS(1491), + [anon_sym_long] = ACTIONS(1491), + [anon_sym_short] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym___inline] = ACTIONS(1473), + [anon_sym___inline__] = ACTIONS(1473), + [anon_sym___forceinline] = ACTIONS(1473), + [anon_sym_thread_local] = ACTIONS(1473), + [anon_sym___thread] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_constexpr] = ACTIONS(1497), + [anon_sym_volatile] = ACTIONS(1497), + [anon_sym_restrict] = ACTIONS(1497), + [anon_sym___restrict__] = ACTIONS(1497), + [anon_sym__Atomic] = ACTIONS(1497), + [anon_sym__Noreturn] = ACTIONS(1497), + [anon_sym_noreturn] = ACTIONS(1497), + [anon_sym_mutable] = ACTIONS(1497), + [anon_sym_constinit] = ACTIONS(1497), + [anon_sym_consteval] = ACTIONS(1497), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_class] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1518), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1527), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1539), + [anon_sym___try] = ACTIONS(1542), + [anon_sym___leave] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_DASH_DASH] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1548), + [anon_sym_sizeof] = ACTIONS(1551), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1557), + [anon_sym__Generic] = ACTIONS(1560), + [anon_sym_asm] = ACTIONS(1563), + [anon_sym___asm__] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1566), + [anon_sym_L_SQUOTE] = ACTIONS(1569), + [anon_sym_u_SQUOTE] = ACTIONS(1569), + [anon_sym_U_SQUOTE] = ACTIONS(1569), + [anon_sym_u8_SQUOTE] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1569), + [anon_sym_L_DQUOTE] = ACTIONS(1572), + [anon_sym_u_DQUOTE] = ACTIONS(1572), + [anon_sym_U_DQUOTE] = ACTIONS(1572), + [anon_sym_u8_DQUOTE] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym_true] = ACTIONS(1575), + [sym_false] = ACTIONS(1575), + [anon_sym_NULL] = ACTIONS(1578), + [anon_sym_nullptr] = ACTIONS(1578), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1581), + [anon_sym_decltype] = ACTIONS(1584), + [anon_sym_virtual] = ACTIONS(1587), + [anon_sym_alignas] = ACTIONS(1590), + [anon_sym_explicit] = ACTIONS(1445), + [anon_sym_typename] = ACTIONS(1593), + [anon_sym_template] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_throw] = ACTIONS(1605), + [anon_sym_namespace] = ACTIONS(1445), + [anon_sym_using] = ACTIONS(1445), + [anon_sym_static_assert] = ACTIONS(1445), + [anon_sym_concept] = ACTIONS(1445), + [anon_sym_co_return] = ACTIONS(1608), + [anon_sym_co_yield] = ACTIONS(1611), + [anon_sym_R_DQUOTE] = ACTIONS(1614), + [anon_sym_LR_DQUOTE] = ACTIONS(1614), + [anon_sym_uR_DQUOTE] = ACTIONS(1614), + [anon_sym_UR_DQUOTE] = ACTIONS(1614), + [anon_sym_u8R_DQUOTE] = ACTIONS(1614), + [anon_sym_co_await] = ACTIONS(1617), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_requires] = ACTIONS(1623), + [sym_this] = ACTIONS(1575), + }, + [105] = { + [sym_declaration] = STATE(107), + [sym_type_definition] = STATE(107), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5546), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(107), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(107), + [sym_labeled_statement] = STATE(107), + [sym_expression_statement] = STATE(107), + [sym_if_statement] = STATE(107), + [sym_switch_statement] = STATE(107), + [sym_while_statement] = STATE(107), + [sym_do_statement] = STATE(107), + [sym_for_statement] = STATE(107), + [sym_return_statement] = STATE(107), + [sym_break_statement] = STATE(107), + [sym_continue_statement] = STATE(107), + [sym_goto_statement] = STATE(107), + [sym_seh_try_statement] = STATE(107), + [sym_seh_leave_statement] = STATE(107), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(107), + [sym_co_return_statement] = STATE(107), + [sym_co_yield_statement] = STATE(107), + [sym_throw_statement] = STATE(107), + [sym_try_statement] = STATE(107), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(108), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(107), [sym_identifier] = ACTIONS(1626), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [aux_sym_preproc_else_token1] = ACTIONS(1430), - [aux_sym_preproc_elif_token1] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [aux_sym_preproc_else_token1] = ACTIONS(1414), + [aux_sym_preproc_elif_token1] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1432), + [anon_sym_AMP_AMP] = ACTIONS(1420), [anon_sym_AMP] = ACTIONS(1422), [anon_sym_SEMI] = ACTIONS(371), [anon_sym___extension__] = ACTIONS(373), @@ -103624,13 +103717,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym___based] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), [anon_sym_LBRACE] = ACTIONS(379), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -103662,10 +103755,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(383), - [anon_sym_else] = ACTIONS(1430), + [anon_sym_else] = ACTIONS(1414), [anon_sym_switch] = ACTIONS(385), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), [anon_sym_while] = ACTIONS(391), [anon_sym_do] = ACTIONS(393), [anon_sym_for] = ACTIONS(395), @@ -103709,17 +103802,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1430), + [anon_sym_explicit] = ACTIONS(1414), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1430), + [anon_sym_operator] = ACTIONS(1414), [anon_sym_try] = ACTIONS(411), [anon_sym_delete] = ACTIONS(135), [anon_sym_throw] = ACTIONS(413), - [anon_sym_namespace] = ACTIONS(1430), - [anon_sym_using] = ACTIONS(1430), - [anon_sym_static_assert] = ACTIONS(1430), - [anon_sym_concept] = ACTIONS(1430), + [anon_sym_namespace] = ACTIONS(1414), + [anon_sym_using] = ACTIONS(1414), + [anon_sym_static_assert] = ACTIONS(1414), + [anon_sym_concept] = ACTIONS(1414), [anon_sym_co_return] = ACTIONS(423), [anon_sym_co_yield] = ACTIONS(425), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -103732,22 +103825,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [107] = { + [106] = { [sym_declaration] = STATE(109), [sym_type_definition] = STATE(109), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5497), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5546), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), [sym_compound_statement] = STATE(109), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(109), [sym_labeled_statement] = STATE(109), [sym_expression_statement] = STATE(109), @@ -103762,81 +103855,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(109), [sym_seh_try_statement] = STATE(109), [sym_seh_leave_statement] = STATE(109), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), [sym_for_range_loop] = STATE(109), [sym_co_return_statement] = STATE(109), [sym_co_yield_statement] = STATE(109), [sym_throw_statement] = STATE(109), [sym_try_statement] = STATE(109), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [aux_sym_case_statement_repeat1] = STATE(109), [sym_identifier] = ACTIONS(1626), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [aux_sym_preproc_else_token1] = ACTIONS(1414), - [aux_sym_preproc_elif_token1] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [aux_sym_preproc_else_token1] = ACTIONS(1438), + [aux_sym_preproc_elif_token1] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_AMP_AMP] = ACTIONS(1440), [anon_sym_AMP] = ACTIONS(1422), [anon_sym_SEMI] = ACTIONS(371), [anon_sym___extension__] = ACTIONS(373), @@ -103846,13 +103939,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym___based] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), [anon_sym_LBRACE] = ACTIONS(379), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -103884,10 +103977,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(383), - [anon_sym_else] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1438), [anon_sym_switch] = ACTIONS(385), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), [anon_sym_while] = ACTIONS(391), [anon_sym_do] = ACTIONS(393), [anon_sym_for] = ACTIONS(395), @@ -103931,17 +104024,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1414), + [anon_sym_explicit] = ACTIONS(1438), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1414), + [anon_sym_operator] = ACTIONS(1438), [anon_sym_try] = ACTIONS(411), [anon_sym_delete] = ACTIONS(135), [anon_sym_throw] = ACTIONS(413), - [anon_sym_namespace] = ACTIONS(1414), - [anon_sym_using] = ACTIONS(1414), - [anon_sym_static_assert] = ACTIONS(1414), - [anon_sym_concept] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_static_assert] = ACTIONS(1438), + [anon_sym_concept] = ACTIONS(1438), + [anon_sym_co_return] = ACTIONS(423), + [anon_sym_co_yield] = ACTIONS(425), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [107] = { + [sym_declaration] = STATE(108), + [sym_type_definition] = STATE(108), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5546), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(108), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(108), + [sym_labeled_statement] = STATE(108), + [sym_expression_statement] = STATE(108), + [sym_if_statement] = STATE(108), + [sym_switch_statement] = STATE(108), + [sym_while_statement] = STATE(108), + [sym_do_statement] = STATE(108), + [sym_for_statement] = STATE(108), + [sym_return_statement] = STATE(108), + [sym_break_statement] = STATE(108), + [sym_continue_statement] = STATE(108), + [sym_goto_statement] = STATE(108), + [sym_seh_try_statement] = STATE(108), + [sym_seh_leave_statement] = STATE(108), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(108), + [sym_co_return_statement] = STATE(108), + [sym_co_yield_statement] = STATE(108), + [sym_throw_statement] = STATE(108), + [sym_try_statement] = STATE(108), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(108), + [sym_identifier] = ACTIONS(1626), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [aux_sym_preproc_else_token1] = ACTIONS(1434), + [aux_sym_preproc_elif_token1] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP_AMP] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(371), + [anon_sym___extension__] = ACTIONS(373), + [anon_sym_typedef] = ACTIONS(375), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(63), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [anon_sym_if] = ACTIONS(383), + [anon_sym_else] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_goto] = ACTIONS(403), + [anon_sym___try] = ACTIONS(405), + [anon_sym___leave] = ACTIONS(407), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(1434), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(411), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(413), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_using] = ACTIONS(1434), + [anon_sym_static_assert] = ACTIONS(1434), + [anon_sym_concept] = ACTIONS(1434), [anon_sym_co_return] = ACTIONS(423), [anon_sym_co_yield] = ACTIONS(425), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -103957,19 +104272,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [108] = { [sym_declaration] = STATE(108), [sym_type_definition] = STATE(108), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5497), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5546), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), [sym_compound_statement] = STATE(108), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(108), [sym_labeled_statement] = STATE(108), [sym_expression_statement] = STATE(108), @@ -103984,132 +104299,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(108), [sym_seh_try_statement] = STATE(108), [sym_seh_leave_statement] = STATE(108), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), [sym_for_range_loop] = STATE(108), [sym_co_return_statement] = STATE(108), [sym_co_yield_statement] = STATE(108), [sym_throw_statement] = STATE(108), [sym_try_statement] = STATE(108), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [aux_sym_case_statement_repeat1] = STATE(108), [sym_identifier] = ACTIONS(1628), - [aux_sym_preproc_include_token1] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token2] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1437), - [aux_sym_preproc_else_token1] = ACTIONS(1437), - [aux_sym_preproc_elif_token1] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1453), + [aux_sym_preproc_include_token1] = ACTIONS(1445), + [aux_sym_preproc_def_token1] = ACTIONS(1445), + [aux_sym_preproc_if_token1] = ACTIONS(1445), + [aux_sym_preproc_if_token2] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1445), + [aux_sym_preproc_else_token1] = ACTIONS(1445), + [aux_sym_preproc_elif_token1] = ACTIONS(1445), + [sym_preproc_directive] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), [anon_sym_SEMI] = ACTIONS(1631), [anon_sym___extension__] = ACTIONS(1634), [anon_sym_typedef] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1477), - [anon_sym___based] = ACTIONS(1437), - [anon_sym___cdecl] = ACTIONS(1437), - [anon_sym___clrcall] = ACTIONS(1437), - [anon_sym___stdcall] = ACTIONS(1437), - [anon_sym___fastcall] = ACTIONS(1437), - [anon_sym___thiscall] = ACTIONS(1437), - [anon_sym___vectorcall] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1479), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1485), + [anon_sym___based] = ACTIONS(1445), + [anon_sym___cdecl] = ACTIONS(1445), + [anon_sym___clrcall] = ACTIONS(1445), + [anon_sym___stdcall] = ACTIONS(1445), + [anon_sym___fastcall] = ACTIONS(1445), + [anon_sym___thiscall] = ACTIONS(1445), + [anon_sym___vectorcall] = ACTIONS(1445), [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [anon_sym___inline] = ACTIONS(1465), - [anon_sym___inline__] = ACTIONS(1465), - [anon_sym___forceinline] = ACTIONS(1465), - [anon_sym_thread_local] = ACTIONS(1465), - [anon_sym___thread] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_constexpr] = ACTIONS(1489), - [anon_sym_volatile] = ACTIONS(1489), - [anon_sym_restrict] = ACTIONS(1489), - [anon_sym___restrict__] = ACTIONS(1489), - [anon_sym__Atomic] = ACTIONS(1489), - [anon_sym__Noreturn] = ACTIONS(1489), - [anon_sym_noreturn] = ACTIONS(1489), - [anon_sym_mutable] = ACTIONS(1489), - [anon_sym_constinit] = ACTIONS(1489), - [anon_sym_consteval] = ACTIONS(1489), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_class] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1504), + [anon_sym_signed] = ACTIONS(1491), + [anon_sym_unsigned] = ACTIONS(1491), + [anon_sym_long] = ACTIONS(1491), + [anon_sym_short] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym___inline] = ACTIONS(1473), + [anon_sym___inline__] = ACTIONS(1473), + [anon_sym___forceinline] = ACTIONS(1473), + [anon_sym_thread_local] = ACTIONS(1473), + [anon_sym___thread] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_constexpr] = ACTIONS(1497), + [anon_sym_volatile] = ACTIONS(1497), + [anon_sym_restrict] = ACTIONS(1497), + [anon_sym___restrict__] = ACTIONS(1497), + [anon_sym__Atomic] = ACTIONS(1497), + [anon_sym__Noreturn] = ACTIONS(1497), + [anon_sym_noreturn] = ACTIONS(1497), + [anon_sym_mutable] = ACTIONS(1497), + [anon_sym_constinit] = ACTIONS(1497), + [anon_sym_consteval] = ACTIONS(1497), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_class] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1512), [anon_sym_if] = ACTIONS(1643), - [anon_sym_else] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1445), [anon_sym_switch] = ACTIONS(1646), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), [anon_sym_while] = ACTIONS(1649), [anon_sym_do] = ACTIONS(1652), [anon_sym_for] = ACTIONS(1655), @@ -104119,79 +104434,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(1667), [anon_sym___try] = ACTIONS(1670), [anon_sym___leave] = ACTIONS(1673), - [anon_sym_not] = ACTIONS(1445), - [anon_sym_compl] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1543), - [anon_sym___alignof__] = ACTIONS(1546), - [anon_sym___alignof] = ACTIONS(1546), - [anon_sym__alignof] = ACTIONS(1546), - [anon_sym_alignof] = ACTIONS(1546), - [anon_sym__Alignof] = ACTIONS(1546), - [anon_sym_offsetof] = ACTIONS(1549), - [anon_sym__Generic] = ACTIONS(1552), - [anon_sym_asm] = ACTIONS(1555), - [anon_sym___asm__] = ACTIONS(1555), - [sym_number_literal] = ACTIONS(1558), - [anon_sym_L_SQUOTE] = ACTIONS(1561), - [anon_sym_u_SQUOTE] = ACTIONS(1561), - [anon_sym_U_SQUOTE] = ACTIONS(1561), - [anon_sym_u8_SQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_L_DQUOTE] = ACTIONS(1564), - [anon_sym_u_DQUOTE] = ACTIONS(1564), - [anon_sym_U_DQUOTE] = ACTIONS(1564), - [anon_sym_u8_DQUOTE] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [anon_sym_NULL] = ACTIONS(1570), - [anon_sym_nullptr] = ACTIONS(1570), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1573), - [anon_sym_decltype] = ACTIONS(1576), - [anon_sym_virtual] = ACTIONS(1579), - [anon_sym_alignas] = ACTIONS(1582), - [anon_sym_explicit] = ACTIONS(1437), - [anon_sym_typename] = ACTIONS(1585), - [anon_sym_template] = ACTIONS(1588), - [anon_sym_operator] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_DASH_DASH] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1548), + [anon_sym_sizeof] = ACTIONS(1551), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1557), + [anon_sym__Generic] = ACTIONS(1560), + [anon_sym_asm] = ACTIONS(1563), + [anon_sym___asm__] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1566), + [anon_sym_L_SQUOTE] = ACTIONS(1569), + [anon_sym_u_SQUOTE] = ACTIONS(1569), + [anon_sym_U_SQUOTE] = ACTIONS(1569), + [anon_sym_u8_SQUOTE] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1569), + [anon_sym_L_DQUOTE] = ACTIONS(1572), + [anon_sym_u_DQUOTE] = ACTIONS(1572), + [anon_sym_U_DQUOTE] = ACTIONS(1572), + [anon_sym_u8_DQUOTE] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym_true] = ACTIONS(1575), + [sym_false] = ACTIONS(1575), + [anon_sym_NULL] = ACTIONS(1578), + [anon_sym_nullptr] = ACTIONS(1578), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1581), + [anon_sym_decltype] = ACTIONS(1584), + [anon_sym_virtual] = ACTIONS(1587), + [anon_sym_alignas] = ACTIONS(1590), + [anon_sym_explicit] = ACTIONS(1445), + [anon_sym_typename] = ACTIONS(1593), + [anon_sym_template] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1445), [anon_sym_try] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1594), + [anon_sym_delete] = ACTIONS(1602), [anon_sym_throw] = ACTIONS(1679), - [anon_sym_namespace] = ACTIONS(1437), - [anon_sym_using] = ACTIONS(1437), - [anon_sym_static_assert] = ACTIONS(1437), - [anon_sym_concept] = ACTIONS(1437), + [anon_sym_namespace] = ACTIONS(1445), + [anon_sym_using] = ACTIONS(1445), + [anon_sym_static_assert] = ACTIONS(1445), + [anon_sym_concept] = ACTIONS(1445), [anon_sym_co_return] = ACTIONS(1682), [anon_sym_co_yield] = ACTIONS(1685), - [anon_sym_R_DQUOTE] = ACTIONS(1606), - [anon_sym_LR_DQUOTE] = ACTIONS(1606), - [anon_sym_uR_DQUOTE] = ACTIONS(1606), - [anon_sym_UR_DQUOTE] = ACTIONS(1606), - [anon_sym_u8R_DQUOTE] = ACTIONS(1606), - [anon_sym_co_await] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_requires] = ACTIONS(1615), - [sym_this] = ACTIONS(1567), + [anon_sym_R_DQUOTE] = ACTIONS(1614), + [anon_sym_LR_DQUOTE] = ACTIONS(1614), + [anon_sym_uR_DQUOTE] = ACTIONS(1614), + [anon_sym_UR_DQUOTE] = ACTIONS(1614), + [anon_sym_u8R_DQUOTE] = ACTIONS(1614), + [anon_sym_co_await] = ACTIONS(1617), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_requires] = ACTIONS(1623), + [sym_this] = ACTIONS(1575), }, [109] = { [sym_declaration] = STATE(108), [sym_type_definition] = STATE(108), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5497), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5546), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), [sym_compound_statement] = STATE(108), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(108), [sym_labeled_statement] = STATE(108), [sym_expression_statement] = STATE(108), @@ -104206,81 +104521,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(108), [sym_seh_try_statement] = STATE(108), [sym_seh_leave_statement] = STATE(108), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), [sym_for_range_loop] = STATE(108), [sym_co_return_statement] = STATE(108), [sym_co_yield_statement] = STATE(108), [sym_throw_statement] = STATE(108), [sym_try_statement] = STATE(108), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), [aux_sym_attributed_declarator_repeat1] = STATE(203), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [aux_sym_case_statement_repeat1] = STATE(108), [sym_identifier] = ACTIONS(1626), - [aux_sym_preproc_include_token1] = ACTIONS(1618), - [aux_sym_preproc_def_token1] = ACTIONS(1618), - [aux_sym_preproc_if_token1] = ACTIONS(1618), - [aux_sym_preproc_if_token2] = ACTIONS(1618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1618), - [aux_sym_preproc_else_token1] = ACTIONS(1618), - [aux_sym_preproc_elif_token1] = ACTIONS(1618), - [sym_preproc_directive] = ACTIONS(1618), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [aux_sym_preproc_else_token1] = ACTIONS(1430), + [aux_sym_preproc_elif_token1] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1620), + [anon_sym_AMP_AMP] = ACTIONS(1432), [anon_sym_AMP] = ACTIONS(1422), [anon_sym_SEMI] = ACTIONS(371), [anon_sym___extension__] = ACTIONS(373), @@ -104290,13 +104605,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1618), - [anon_sym___cdecl] = ACTIONS(1618), - [anon_sym___clrcall] = ACTIONS(1618), - [anon_sym___stdcall] = ACTIONS(1618), - [anon_sym___fastcall] = ACTIONS(1618), - [anon_sym___thiscall] = ACTIONS(1618), - [anon_sym___vectorcall] = ACTIONS(1618), + [anon_sym___based] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), [anon_sym_LBRACE] = ACTIONS(379), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -104328,10 +104643,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(383), - [anon_sym_else] = ACTIONS(1618), + [anon_sym_else] = ACTIONS(1430), [anon_sym_switch] = ACTIONS(385), - [anon_sym_case] = ACTIONS(1618), - [anon_sym_default] = ACTIONS(1618), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), [anon_sym_while] = ACTIONS(391), [anon_sym_do] = ACTIONS(393), [anon_sym_for] = ACTIONS(395), @@ -104375,17 +104690,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1618), + [anon_sym_explicit] = ACTIONS(1430), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1618), + [anon_sym_operator] = ACTIONS(1430), [anon_sym_try] = ACTIONS(411), [anon_sym_delete] = ACTIONS(135), [anon_sym_throw] = ACTIONS(413), - [anon_sym_namespace] = ACTIONS(1618), - [anon_sym_using] = ACTIONS(1618), - [anon_sym_static_assert] = ACTIONS(1618), - [anon_sym_concept] = ACTIONS(1618), + [anon_sym_namespace] = ACTIONS(1430), + [anon_sym_using] = ACTIONS(1430), + [anon_sym_static_assert] = ACTIONS(1430), + [anon_sym_concept] = ACTIONS(1430), [anon_sym_co_return] = ACTIONS(423), [anon_sym_co_yield] = ACTIONS(425), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -104401,19 +104716,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [110] = { [sym_declaration] = STATE(110), [sym_type_definition] = STATE(110), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5494), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5554), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(110), [sym_labeled_statement] = STATE(110), [sym_expression_statement] = STATE(110), @@ -104428,130 +104743,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(110), [sym_seh_try_statement] = STATE(110), [sym_seh_leave_statement] = STATE(110), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), [sym_for_range_loop] = STATE(110), [sym_co_return_statement] = STATE(110), [sym_co_yield_statement] = STATE(110), [sym_throw_statement] = STATE(110), [sym_try_statement] = STATE(110), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [aux_sym_case_statement_repeat1] = STATE(110), - [ts_builtin_sym_end] = ACTIONS(1451), [sym_identifier] = ACTIONS(1688), - [aux_sym_preproc_include_token1] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1453), + [aux_sym_preproc_include_token1] = ACTIONS(1445), + [aux_sym_preproc_def_token1] = ACTIONS(1445), + [aux_sym_preproc_if_token1] = ACTIONS(1445), + [aux_sym_preproc_if_token2] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1445), + [sym_preproc_directive] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), [anon_sym_SEMI] = ACTIONS(1691), [anon_sym___extension__] = ACTIONS(1694), [anon_sym_typedef] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1477), - [anon_sym___based] = ACTIONS(1437), - [anon_sym___cdecl] = ACTIONS(1437), - [anon_sym___clrcall] = ACTIONS(1437), - [anon_sym___stdcall] = ACTIONS(1437), - [anon_sym___fastcall] = ACTIONS(1437), - [anon_sym___thiscall] = ACTIONS(1437), - [anon_sym___vectorcall] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1479), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1485), + [anon_sym___based] = ACTIONS(1445), + [anon_sym___cdecl] = ACTIONS(1445), + [anon_sym___clrcall] = ACTIONS(1445), + [anon_sym___stdcall] = ACTIONS(1445), + [anon_sym___fastcall] = ACTIONS(1445), + [anon_sym___thiscall] = ACTIONS(1445), + [anon_sym___vectorcall] = ACTIONS(1445), [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [anon_sym___inline] = ACTIONS(1465), - [anon_sym___inline__] = ACTIONS(1465), - [anon_sym___forceinline] = ACTIONS(1465), - [anon_sym_thread_local] = ACTIONS(1465), - [anon_sym___thread] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_constexpr] = ACTIONS(1489), - [anon_sym_volatile] = ACTIONS(1489), - [anon_sym_restrict] = ACTIONS(1489), - [anon_sym___restrict__] = ACTIONS(1489), - [anon_sym__Atomic] = ACTIONS(1489), - [anon_sym__Noreturn] = ACTIONS(1489), - [anon_sym_noreturn] = ACTIONS(1489), - [anon_sym_mutable] = ACTIONS(1489), - [anon_sym_constinit] = ACTIONS(1489), - [anon_sym_consteval] = ACTIONS(1489), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_class] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1504), + [anon_sym_signed] = ACTIONS(1491), + [anon_sym_unsigned] = ACTIONS(1491), + [anon_sym_long] = ACTIONS(1491), + [anon_sym_short] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym___inline] = ACTIONS(1473), + [anon_sym___inline__] = ACTIONS(1473), + [anon_sym___forceinline] = ACTIONS(1473), + [anon_sym_thread_local] = ACTIONS(1473), + [anon_sym___thread] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_constexpr] = ACTIONS(1497), + [anon_sym_volatile] = ACTIONS(1497), + [anon_sym_restrict] = ACTIONS(1497), + [anon_sym___restrict__] = ACTIONS(1497), + [anon_sym__Atomic] = ACTIONS(1497), + [anon_sym__Noreturn] = ACTIONS(1497), + [anon_sym_noreturn] = ACTIONS(1497), + [anon_sym_mutable] = ACTIONS(1497), + [anon_sym_constinit] = ACTIONS(1497), + [anon_sym_consteval] = ACTIONS(1497), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_class] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1512), [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1445), [anon_sym_switch] = ACTIONS(1706), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), [anon_sym_while] = ACTIONS(1709), [anon_sym_do] = ACTIONS(1712), [anon_sym_for] = ACTIONS(1715), @@ -104561,183 +104876,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(1727), [anon_sym___try] = ACTIONS(1730), [anon_sym___leave] = ACTIONS(1733), - [anon_sym_not] = ACTIONS(1445), - [anon_sym_compl] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1543), - [anon_sym___alignof__] = ACTIONS(1546), - [anon_sym___alignof] = ACTIONS(1546), - [anon_sym__alignof] = ACTIONS(1546), - [anon_sym_alignof] = ACTIONS(1546), - [anon_sym__Alignof] = ACTIONS(1546), - [anon_sym_offsetof] = ACTIONS(1549), - [anon_sym__Generic] = ACTIONS(1552), - [anon_sym_asm] = ACTIONS(1555), - [anon_sym___asm__] = ACTIONS(1555), - [sym_number_literal] = ACTIONS(1558), - [anon_sym_L_SQUOTE] = ACTIONS(1561), - [anon_sym_u_SQUOTE] = ACTIONS(1561), - [anon_sym_U_SQUOTE] = ACTIONS(1561), - [anon_sym_u8_SQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_L_DQUOTE] = ACTIONS(1564), - [anon_sym_u_DQUOTE] = ACTIONS(1564), - [anon_sym_U_DQUOTE] = ACTIONS(1564), - [anon_sym_u8_DQUOTE] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [anon_sym_NULL] = ACTIONS(1570), - [anon_sym_nullptr] = ACTIONS(1570), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1573), - [anon_sym_decltype] = ACTIONS(1576), - [anon_sym_virtual] = ACTIONS(1579), - [anon_sym_alignas] = ACTIONS(1582), - [anon_sym_explicit] = ACTIONS(1437), - [anon_sym_typename] = ACTIONS(1585), - [anon_sym_template] = ACTIONS(1588), - [anon_sym_operator] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_DASH_DASH] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1548), + [anon_sym_sizeof] = ACTIONS(1551), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1557), + [anon_sym__Generic] = ACTIONS(1560), + [anon_sym_asm] = ACTIONS(1563), + [anon_sym___asm__] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1566), + [anon_sym_L_SQUOTE] = ACTIONS(1569), + [anon_sym_u_SQUOTE] = ACTIONS(1569), + [anon_sym_U_SQUOTE] = ACTIONS(1569), + [anon_sym_u8_SQUOTE] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1569), + [anon_sym_L_DQUOTE] = ACTIONS(1572), + [anon_sym_u_DQUOTE] = ACTIONS(1572), + [anon_sym_U_DQUOTE] = ACTIONS(1572), + [anon_sym_u8_DQUOTE] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym_true] = ACTIONS(1575), + [sym_false] = ACTIONS(1575), + [anon_sym_NULL] = ACTIONS(1578), + [anon_sym_nullptr] = ACTIONS(1578), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1581), + [anon_sym_decltype] = ACTIONS(1584), + [anon_sym_virtual] = ACTIONS(1587), + [anon_sym_alignas] = ACTIONS(1590), + [anon_sym_explicit] = ACTIONS(1445), + [anon_sym_typename] = ACTIONS(1593), + [anon_sym_template] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1445), [anon_sym_try] = ACTIONS(1736), - [anon_sym_delete] = ACTIONS(1594), + [anon_sym_delete] = ACTIONS(1602), [anon_sym_throw] = ACTIONS(1739), - [anon_sym_namespace] = ACTIONS(1437), - [anon_sym_using] = ACTIONS(1437), - [anon_sym_static_assert] = ACTIONS(1437), - [anon_sym_concept] = ACTIONS(1437), + [anon_sym_namespace] = ACTIONS(1445), + [anon_sym_using] = ACTIONS(1445), + [anon_sym_static_assert] = ACTIONS(1445), + [anon_sym_concept] = ACTIONS(1445), [anon_sym_co_return] = ACTIONS(1742), [anon_sym_co_yield] = ACTIONS(1745), - [anon_sym_R_DQUOTE] = ACTIONS(1606), - [anon_sym_LR_DQUOTE] = ACTIONS(1606), - [anon_sym_uR_DQUOTE] = ACTIONS(1606), - [anon_sym_UR_DQUOTE] = ACTIONS(1606), - [anon_sym_u8R_DQUOTE] = ACTIONS(1606), - [anon_sym_co_await] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_requires] = ACTIONS(1615), - [sym_this] = ACTIONS(1567), + [anon_sym_R_DQUOTE] = ACTIONS(1614), + [anon_sym_LR_DQUOTE] = ACTIONS(1614), + [anon_sym_uR_DQUOTE] = ACTIONS(1614), + [anon_sym_UR_DQUOTE] = ACTIONS(1614), + [anon_sym_u8R_DQUOTE] = ACTIONS(1614), + [anon_sym_co_await] = ACTIONS(1617), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_requires] = ACTIONS(1623), + [sym_this] = ACTIONS(1575), }, [111] = { - [sym_declaration] = STATE(113), - [sym_type_definition] = STATE(113), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5495), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(113), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(113), - [sym_labeled_statement] = STATE(113), - [sym_expression_statement] = STATE(113), - [sym_if_statement] = STATE(113), - [sym_switch_statement] = STATE(113), - [sym_while_statement] = STATE(113), - [sym_do_statement] = STATE(113), - [sym_for_statement] = STATE(113), - [sym_return_statement] = STATE(113), - [sym_break_statement] = STATE(113), - [sym_continue_statement] = STATE(113), - [sym_goto_statement] = STATE(113), - [sym_seh_try_statement] = STATE(113), - [sym_seh_leave_statement] = STATE(113), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(113), + [sym_declaration] = STATE(116), + [sym_type_definition] = STATE(116), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5539), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(116), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(116), + [sym_labeled_statement] = STATE(116), + [sym_expression_statement] = STATE(116), + [sym_if_statement] = STATE(116), + [sym_switch_statement] = STATE(116), + [sym_while_statement] = STATE(116), + [sym_do_statement] = STATE(116), + [sym_for_statement] = STATE(116), + [sym_return_statement] = STATE(116), + [sym_break_statement] = STATE(116), + [sym_continue_statement] = STATE(116), + [sym_goto_statement] = STATE(116), + [sym_seh_try_statement] = STATE(116), + [sym_seh_leave_statement] = STATE(116), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(116), + [sym_co_return_statement] = STATE(116), + [sym_co_yield_statement] = STATE(116), + [sym_throw_statement] = STATE(116), + [sym_try_statement] = STATE(116), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(116), [sym_identifier] = ACTIONS(1748), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1432), + [anon_sym_AMP_AMP] = ACTIONS(1440), [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym___extension__] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym___based] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1440), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -104767,20 +105082,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym___try] = ACTIONS(211), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -104815,19 +105130,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1430), + [anon_sym_explicit] = ACTIONS(1438), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_operator] = ACTIONS(1438), + [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1430), - [anon_sym_using] = ACTIONS(1430), - [anon_sym_static_assert] = ACTIONS(1430), - [anon_sym_concept] = ACTIONS(1430), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_static_assert] = ACTIONS(1438), + [anon_sym_concept] = ACTIONS(1438), + [anon_sym_co_return] = ACTIONS(233), + [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -104841,19 +105156,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [112] = { [sym_declaration] = STATE(113), [sym_type_definition] = STATE(113), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5495), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5537), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), [sym_compound_statement] = STATE(113), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(113), [sym_labeled_statement] = STATE(113), [sym_expression_statement] = STATE(113), @@ -104868,96 +105183,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(113), [sym_seh_try_statement] = STATE(113), [sym_seh_leave_statement] = STATE(113), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [aux_sym_case_statement_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(1748), - [aux_sym_preproc_include_token1] = ACTIONS(1618), - [aux_sym_preproc_def_token1] = ACTIONS(1618), - [aux_sym_preproc_if_token1] = ACTIONS(1618), - [aux_sym_preproc_if_token2] = ACTIONS(1618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1618), - [sym_preproc_directive] = ACTIONS(1618), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1750), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1620), + [anon_sym_AMP_AMP] = ACTIONS(1432), [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym___extension__] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1618), - [anon_sym___cdecl] = ACTIONS(1618), - [anon_sym___clrcall] = ACTIONS(1618), - [anon_sym___stdcall] = ACTIONS(1618), - [anon_sym___fastcall] = ACTIONS(1618), - [anon_sym___thiscall] = ACTIONS(1618), - [anon_sym___vectorcall] = ACTIONS(1618), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym___based] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -104987,20 +105302,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1618), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1618), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(1754), + [anon_sym___leave] = ACTIONS(1756), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -105035,19 +105350,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1618), + [anon_sym_explicit] = ACTIONS(1430), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1618), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_operator] = ACTIONS(1430), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1618), - [anon_sym_using] = ACTIONS(1618), - [anon_sym_static_assert] = ACTIONS(1618), - [anon_sym_concept] = ACTIONS(1618), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1430), + [anon_sym_using] = ACTIONS(1430), + [anon_sym_static_assert] = ACTIONS(1430), + [anon_sym_concept] = ACTIONS(1430), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -105061,19 +105376,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [113] = { [sym_declaration] = STATE(113), [sym_type_definition] = STATE(113), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5495), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5537), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), [sym_compound_statement] = STATE(113), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(113), [sym_labeled_statement] = STATE(113), [sym_expression_statement] = STATE(113), @@ -105088,316 +105403,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(113), [sym_seh_try_statement] = STATE(113), [sym_seh_leave_statement] = STATE(113), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [aux_sym_case_statement_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token2] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym___extension__] = ACTIONS(1756), - [anon_sym_typedef] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1477), - [anon_sym___based] = ACTIONS(1437), - [anon_sym___cdecl] = ACTIONS(1437), - [anon_sym___clrcall] = ACTIONS(1437), - [anon_sym___stdcall] = ACTIONS(1437), - [anon_sym___fastcall] = ACTIONS(1437), - [anon_sym___thiscall] = ACTIONS(1437), - [anon_sym___vectorcall] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [anon_sym___inline] = ACTIONS(1465), - [anon_sym___inline__] = ACTIONS(1465), - [anon_sym___forceinline] = ACTIONS(1465), - [anon_sym_thread_local] = ACTIONS(1465), - [anon_sym___thread] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_constexpr] = ACTIONS(1489), - [anon_sym_volatile] = ACTIONS(1489), - [anon_sym_restrict] = ACTIONS(1489), - [anon_sym___restrict__] = ACTIONS(1489), - [anon_sym__Atomic] = ACTIONS(1489), - [anon_sym__Noreturn] = ACTIONS(1489), - [anon_sym_noreturn] = ACTIONS(1489), - [anon_sym_mutable] = ACTIONS(1489), - [anon_sym_constinit] = ACTIONS(1489), - [anon_sym_consteval] = ACTIONS(1489), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_class] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1768), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [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(1445), - [anon_sym_compl] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1543), - [anon_sym___alignof__] = ACTIONS(1546), - [anon_sym___alignof] = ACTIONS(1546), - [anon_sym__alignof] = ACTIONS(1546), - [anon_sym_alignof] = ACTIONS(1546), - [anon_sym__Alignof] = ACTIONS(1546), - [anon_sym_offsetof] = ACTIONS(1549), - [anon_sym__Generic] = ACTIONS(1552), - [anon_sym_asm] = ACTIONS(1555), - [anon_sym___asm__] = ACTIONS(1555), - [sym_number_literal] = ACTIONS(1558), - [anon_sym_L_SQUOTE] = ACTIONS(1561), - [anon_sym_u_SQUOTE] = ACTIONS(1561), - [anon_sym_U_SQUOTE] = ACTIONS(1561), - [anon_sym_u8_SQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_L_DQUOTE] = ACTIONS(1564), - [anon_sym_u_DQUOTE] = ACTIONS(1564), - [anon_sym_U_DQUOTE] = ACTIONS(1564), - [anon_sym_u8_DQUOTE] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [anon_sym_NULL] = ACTIONS(1570), - [anon_sym_nullptr] = ACTIONS(1570), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1573), - [anon_sym_decltype] = ACTIONS(1576), - [anon_sym_virtual] = ACTIONS(1579), - [anon_sym_alignas] = ACTIONS(1582), - [anon_sym_explicit] = ACTIONS(1437), - [anon_sym_typename] = ACTIONS(1585), - [anon_sym_template] = ACTIONS(1588), - [anon_sym_operator] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1798), - [anon_sym_delete] = ACTIONS(1594), - [anon_sym_throw] = ACTIONS(1801), - [anon_sym_namespace] = ACTIONS(1437), - [anon_sym_using] = ACTIONS(1437), - [anon_sym_static_assert] = ACTIONS(1437), - [anon_sym_concept] = ACTIONS(1437), - [anon_sym_co_return] = ACTIONS(1804), - [anon_sym_co_yield] = ACTIONS(1807), - [anon_sym_R_DQUOTE] = ACTIONS(1606), - [anon_sym_LR_DQUOTE] = ACTIONS(1606), - [anon_sym_uR_DQUOTE] = ACTIONS(1606), - [anon_sym_UR_DQUOTE] = ACTIONS(1606), - [anon_sym_u8R_DQUOTE] = ACTIONS(1606), - [anon_sym_co_await] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_requires] = ACTIONS(1615), - [sym_this] = ACTIONS(1567), + [ts_builtin_sym_end] = ACTIONS(1459), + [sym_identifier] = ACTIONS(1758), + [aux_sym_preproc_include_token1] = ACTIONS(1445), + [aux_sym_preproc_def_token1] = ACTIONS(1445), + [aux_sym_preproc_if_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1445), + [sym_preproc_directive] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym___extension__] = ACTIONS(1764), + [anon_sym_typedef] = ACTIONS(1767), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1479), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1485), + [anon_sym___based] = ACTIONS(1445), + [anon_sym___cdecl] = ACTIONS(1445), + [anon_sym___clrcall] = ACTIONS(1445), + [anon_sym___stdcall] = ACTIONS(1445), + [anon_sym___fastcall] = ACTIONS(1445), + [anon_sym___thiscall] = ACTIONS(1445), + [anon_sym___vectorcall] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_signed] = ACTIONS(1491), + [anon_sym_unsigned] = ACTIONS(1491), + [anon_sym_long] = ACTIONS(1491), + [anon_sym_short] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym___inline] = ACTIONS(1473), + [anon_sym___inline__] = ACTIONS(1473), + [anon_sym___forceinline] = ACTIONS(1473), + [anon_sym_thread_local] = ACTIONS(1473), + [anon_sym___thread] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_constexpr] = ACTIONS(1497), + [anon_sym_volatile] = ACTIONS(1497), + [anon_sym_restrict] = ACTIONS(1497), + [anon_sym___restrict__] = ACTIONS(1497), + [anon_sym__Atomic] = ACTIONS(1497), + [anon_sym__Noreturn] = ACTIONS(1497), + [anon_sym_noreturn] = ACTIONS(1497), + [anon_sym_mutable] = ACTIONS(1497), + [anon_sym_constinit] = ACTIONS(1497), + [anon_sym_consteval] = ACTIONS(1497), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_class] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1776), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1794), + [anon_sym_goto] = ACTIONS(1797), + [anon_sym___try] = ACTIONS(1800), + [anon_sym___leave] = ACTIONS(1803), + [anon_sym_not] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_DASH_DASH] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1548), + [anon_sym_sizeof] = ACTIONS(1551), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1557), + [anon_sym__Generic] = ACTIONS(1560), + [anon_sym_asm] = ACTIONS(1563), + [anon_sym___asm__] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1566), + [anon_sym_L_SQUOTE] = ACTIONS(1569), + [anon_sym_u_SQUOTE] = ACTIONS(1569), + [anon_sym_U_SQUOTE] = ACTIONS(1569), + [anon_sym_u8_SQUOTE] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1569), + [anon_sym_L_DQUOTE] = ACTIONS(1572), + [anon_sym_u_DQUOTE] = ACTIONS(1572), + [anon_sym_U_DQUOTE] = ACTIONS(1572), + [anon_sym_u8_DQUOTE] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym_true] = ACTIONS(1575), + [sym_false] = ACTIONS(1575), + [anon_sym_NULL] = ACTIONS(1578), + [anon_sym_nullptr] = ACTIONS(1578), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1581), + [anon_sym_decltype] = ACTIONS(1584), + [anon_sym_virtual] = ACTIONS(1587), + [anon_sym_alignas] = ACTIONS(1590), + [anon_sym_explicit] = ACTIONS(1445), + [anon_sym_typename] = ACTIONS(1593), + [anon_sym_template] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1806), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_throw] = ACTIONS(1809), + [anon_sym_namespace] = ACTIONS(1445), + [anon_sym_using] = ACTIONS(1445), + [anon_sym_static_assert] = ACTIONS(1445), + [anon_sym_concept] = ACTIONS(1445), + [anon_sym_co_return] = ACTIONS(1812), + [anon_sym_co_yield] = ACTIONS(1815), + [anon_sym_R_DQUOTE] = ACTIONS(1614), + [anon_sym_LR_DQUOTE] = ACTIONS(1614), + [anon_sym_uR_DQUOTE] = ACTIONS(1614), + [anon_sym_UR_DQUOTE] = ACTIONS(1614), + [anon_sym_u8R_DQUOTE] = ACTIONS(1614), + [anon_sym_co_await] = ACTIONS(1617), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_requires] = ACTIONS(1623), + [sym_this] = ACTIONS(1575), }, [114] = { - [sym_declaration] = STATE(119), - [sym_type_definition] = STATE(119), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5494), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(119), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(119), - [sym_labeled_statement] = STATE(119), - [sym_expression_statement] = STATE(119), - [sym_if_statement] = STATE(119), - [sym_switch_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_seh_try_statement] = STATE(119), - [sym_seh_leave_statement] = STATE(119), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(119), - [ts_builtin_sym_end] = ACTIONS(1624), - [sym_identifier] = ACTIONS(1810), - [aux_sym_preproc_include_token1] = ACTIONS(1622), - [aux_sym_preproc_def_token1] = ACTIONS(1622), - [aux_sym_preproc_if_token1] = ACTIONS(1622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1622), - [sym_preproc_directive] = ACTIONS(1622), + [sym_declaration] = STATE(118), + [sym_type_definition] = STATE(118), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5554), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(118), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(118), + [sym_labeled_statement] = STATE(118), + [sym_expression_statement] = STATE(118), + [sym_if_statement] = STATE(118), + [sym_switch_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_seh_try_statement] = STATE(118), + [sym_seh_leave_statement] = STATE(118), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(1818), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_AMP_AMP] = ACTIONS(1420), [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym___extension__] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym___extension__] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1108), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1622), - [anon_sym___cdecl] = ACTIONS(1622), - [anon_sym___clrcall] = ACTIONS(1622), - [anon_sym___stdcall] = ACTIONS(1622), - [anon_sym___fastcall] = ACTIONS(1622), - [anon_sym___thiscall] = ACTIONS(1622), - [anon_sym___vectorcall] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1112), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -105427,20 +105742,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1622), - [anon_sym_default] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1816), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -105475,19 +105790,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1622), + [anon_sym_explicit] = ACTIONS(1414), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_try] = ACTIONS(133), + [anon_sym_operator] = ACTIONS(1414), + [anon_sym_try] = ACTIONS(1144), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_namespace] = ACTIONS(1622), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_static_assert] = ACTIONS(1622), - [anon_sym_concept] = ACTIONS(1622), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_namespace] = ACTIONS(1414), + [anon_sym_using] = ACTIONS(1414), + [anon_sym_static_assert] = ACTIONS(1414), + [anon_sym_concept] = ACTIONS(1414), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -105499,125 +105814,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [115] = { - [sym_declaration] = STATE(110), - [sym_type_definition] = STATE(110), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5494), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(110), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(110), - [sym_co_return_statement] = STATE(110), - [sym_co_yield_statement] = STATE(110), - [sym_throw_statement] = STATE(110), - [sym_try_statement] = STATE(110), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(110), - [ts_builtin_sym_end] = ACTIONS(1620), - [sym_identifier] = ACTIONS(1810), - [aux_sym_preproc_include_token1] = ACTIONS(1618), - [aux_sym_preproc_def_token1] = ACTIONS(1618), - [aux_sym_preproc_if_token1] = ACTIONS(1618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1618), - [sym_preproc_directive] = ACTIONS(1618), + [sym_declaration] = STATE(119), + [sym_type_definition] = STATE(119), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5554), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(119), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(119), + [sym_labeled_statement] = STATE(119), + [sym_expression_statement] = STATE(119), + [sym_if_statement] = STATE(119), + [sym_switch_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_seh_try_statement] = STATE(119), + [sym_seh_leave_statement] = STATE(119), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(1818), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1620), + [anon_sym_AMP_AMP] = ACTIONS(1440), [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym___extension__] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym___extension__] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1108), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1618), - [anon_sym___cdecl] = ACTIONS(1618), - [anon_sym___clrcall] = ACTIONS(1618), - [anon_sym___stdcall] = ACTIONS(1618), - [anon_sym___fastcall] = ACTIONS(1618), - [anon_sym___thiscall] = ACTIONS(1618), - [anon_sym___vectorcall] = ACTIONS(1618), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1112), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -105647,20 +105962,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), - [anon_sym_else] = ACTIONS(1618), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1618), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1816), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -105695,19 +106010,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1618), + [anon_sym_explicit] = ACTIONS(1438), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1618), - [anon_sym_try] = ACTIONS(133), + [anon_sym_operator] = ACTIONS(1438), + [anon_sym_try] = ACTIONS(1144), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_namespace] = ACTIONS(1618), - [anon_sym_using] = ACTIONS(1618), - [anon_sym_static_assert] = ACTIONS(1618), - [anon_sym_concept] = ACTIONS(1618), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_static_assert] = ACTIONS(1438), + [anon_sym_concept] = ACTIONS(1438), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -105719,125 +106034,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [116] = { - [sym_declaration] = STATE(111), - [sym_type_definition] = STATE(111), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5495), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(111), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(111), - [sym_labeled_statement] = STATE(111), - [sym_expression_statement] = STATE(111), - [sym_if_statement] = STATE(111), - [sym_switch_statement] = STATE(111), - [sym_while_statement] = STATE(111), - [sym_do_statement] = STATE(111), - [sym_for_statement] = STATE(111), - [sym_return_statement] = STATE(111), - [sym_break_statement] = STATE(111), - [sym_continue_statement] = STATE(111), - [sym_goto_statement] = STATE(111), - [sym_seh_try_statement] = STATE(111), - [sym_seh_leave_statement] = STATE(111), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(111), - [sym_co_return_statement] = STATE(111), - [sym_co_yield_statement] = STATE(111), - [sym_throw_statement] = STATE(111), - [sym_try_statement] = STATE(111), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(111), + [sym_declaration] = STATE(117), + [sym_type_definition] = STATE(117), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5539), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(117), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(117), + [sym_labeled_statement] = STATE(117), + [sym_expression_statement] = STATE(117), + [sym_if_statement] = STATE(117), + [sym_switch_statement] = STATE(117), + [sym_while_statement] = STATE(117), + [sym_do_statement] = STATE(117), + [sym_for_statement] = STATE(117), + [sym_return_statement] = STATE(117), + [sym_break_statement] = STATE(117), + [sym_continue_statement] = STATE(117), + [sym_goto_statement] = STATE(117), + [sym_seh_try_statement] = STATE(117), + [sym_seh_leave_statement] = STATE(117), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(117), + [sym_co_return_statement] = STATE(117), + [sym_co_yield_statement] = STATE(117), + [sym_throw_statement] = STATE(117), + [sym_try_statement] = STATE(117), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(117), [sym_identifier] = ACTIONS(1748), - [aux_sym_preproc_include_token1] = ACTIONS(1622), - [aux_sym_preproc_def_token1] = ACTIONS(1622), - [aux_sym_preproc_if_token1] = ACTIONS(1622), - [aux_sym_preproc_if_token2] = ACTIONS(1622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1622), - [sym_preproc_directive] = ACTIONS(1622), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_AMP_AMP] = ACTIONS(1432), [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym___extension__] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1622), - [anon_sym___cdecl] = ACTIONS(1622), - [anon_sym___clrcall] = ACTIONS(1622), - [anon_sym___stdcall] = ACTIONS(1622), - [anon_sym___fastcall] = ACTIONS(1622), - [anon_sym___thiscall] = ACTIONS(1622), - [anon_sym___vectorcall] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym___based] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1432), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -105867,20 +106182,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1622), - [anon_sym_default] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(189), + [anon_sym_else] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym___try] = ACTIONS(211), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -105915,19 +106230,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1622), + [anon_sym_explicit] = ACTIONS(1430), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_operator] = ACTIONS(1430), + [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1622), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_static_assert] = ACTIONS(1622), - [anon_sym_concept] = ACTIONS(1622), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_namespace] = ACTIONS(1430), + [anon_sym_using] = ACTIONS(1430), + [anon_sym_static_assert] = ACTIONS(1430), + [anon_sym_concept] = ACTIONS(1430), + [anon_sym_co_return] = ACTIONS(233), + [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -105939,125 +106254,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [117] = { - [sym_declaration] = STATE(118), - [sym_type_definition] = STATE(118), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5538), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(118), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(118), - [sym_labeled_statement] = STATE(118), - [sym_expression_statement] = STATE(118), - [sym_if_statement] = STATE(118), - [sym_switch_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_seh_try_statement] = STATE(118), - [sym_seh_leave_statement] = STATE(118), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(118), + [sym_declaration] = STATE(117), + [sym_type_definition] = STATE(117), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5539), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(117), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(117), + [sym_labeled_statement] = STATE(117), + [sym_expression_statement] = STATE(117), + [sym_if_statement] = STATE(117), + [sym_switch_statement] = STATE(117), + [sym_while_statement] = STATE(117), + [sym_do_statement] = STATE(117), + [sym_for_statement] = STATE(117), + [sym_return_statement] = STATE(117), + [sym_break_statement] = STATE(117), + [sym_continue_statement] = STATE(117), + [sym_goto_statement] = STATE(117), + [sym_seh_try_statement] = STATE(117), + [sym_seh_leave_statement] = STATE(117), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(117), + [sym_co_return_statement] = STATE(117), + [sym_co_yield_statement] = STATE(117), + [sym_throw_statement] = STATE(117), + [sym_try_statement] = STATE(117), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(117), + [sym_identifier] = ACTIONS(1820), + [aux_sym_preproc_include_token1] = ACTIONS(1445), + [aux_sym_preproc_def_token1] = ACTIONS(1445), + [aux_sym_preproc_if_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1445), + [sym_preproc_directive] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym___extension__] = ACTIONS(1826), + [anon_sym_typedef] = ACTIONS(1829), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1479), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1485), + [anon_sym___based] = ACTIONS(1445), + [anon_sym___cdecl] = ACTIONS(1445), + [anon_sym___clrcall] = ACTIONS(1445), + [anon_sym___stdcall] = ACTIONS(1445), + [anon_sym___fastcall] = ACTIONS(1445), + [anon_sym___thiscall] = ACTIONS(1445), + [anon_sym___vectorcall] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_signed] = ACTIONS(1491), + [anon_sym_unsigned] = ACTIONS(1491), + [anon_sym_long] = ACTIONS(1491), + [anon_sym_short] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym___inline] = ACTIONS(1473), + [anon_sym___inline__] = ACTIONS(1473), + [anon_sym___forceinline] = ACTIONS(1473), + [anon_sym_thread_local] = ACTIONS(1473), + [anon_sym___thread] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_constexpr] = ACTIONS(1497), + [anon_sym_volatile] = ACTIONS(1497), + [anon_sym_restrict] = ACTIONS(1497), + [anon_sym___restrict__] = ACTIONS(1497), + [anon_sym__Atomic] = ACTIONS(1497), + [anon_sym__Noreturn] = ACTIONS(1497), + [anon_sym_noreturn] = ACTIONS(1497), + [anon_sym_mutable] = ACTIONS(1497), + [anon_sym_constinit] = ACTIONS(1497), + [anon_sym_consteval] = ACTIONS(1497), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_class] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1838), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1856), + [anon_sym_goto] = ACTIONS(1859), + [anon_sym___try] = ACTIONS(1862), + [anon_sym___leave] = ACTIONS(1865), + [anon_sym_not] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_DASH_DASH] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1548), + [anon_sym_sizeof] = ACTIONS(1551), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1557), + [anon_sym__Generic] = ACTIONS(1560), + [anon_sym_asm] = ACTIONS(1563), + [anon_sym___asm__] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1566), + [anon_sym_L_SQUOTE] = ACTIONS(1569), + [anon_sym_u_SQUOTE] = ACTIONS(1569), + [anon_sym_U_SQUOTE] = ACTIONS(1569), + [anon_sym_u8_SQUOTE] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1569), + [anon_sym_L_DQUOTE] = ACTIONS(1572), + [anon_sym_u_DQUOTE] = ACTIONS(1572), + [anon_sym_U_DQUOTE] = ACTIONS(1572), + [anon_sym_u8_DQUOTE] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym_true] = ACTIONS(1575), + [sym_false] = ACTIONS(1575), + [anon_sym_NULL] = ACTIONS(1578), + [anon_sym_nullptr] = ACTIONS(1578), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1581), + [anon_sym_decltype] = ACTIONS(1584), + [anon_sym_virtual] = ACTIONS(1587), + [anon_sym_alignas] = ACTIONS(1590), + [anon_sym_explicit] = ACTIONS(1445), + [anon_sym_typename] = ACTIONS(1593), + [anon_sym_template] = ACTIONS(1596), + [anon_sym_operator] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1868), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_throw] = ACTIONS(1871), + [anon_sym_namespace] = ACTIONS(1445), + [anon_sym_using] = ACTIONS(1445), + [anon_sym_static_assert] = ACTIONS(1445), + [anon_sym_concept] = ACTIONS(1445), + [anon_sym_co_return] = ACTIONS(1874), + [anon_sym_co_yield] = ACTIONS(1877), + [anon_sym_R_DQUOTE] = ACTIONS(1614), + [anon_sym_LR_DQUOTE] = ACTIONS(1614), + [anon_sym_uR_DQUOTE] = ACTIONS(1614), + [anon_sym_UR_DQUOTE] = ACTIONS(1614), + [anon_sym_u8R_DQUOTE] = ACTIONS(1614), + [anon_sym_co_await] = ACTIONS(1617), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_requires] = ACTIONS(1623), + [sym_this] = ACTIONS(1575), + }, + [118] = { + [sym_declaration] = STATE(110), + [sym_type_definition] = STATE(110), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5554), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(110), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(110), + [sym_labeled_statement] = STATE(110), + [sym_expression_statement] = STATE(110), + [sym_if_statement] = STATE(110), + [sym_switch_statement] = STATE(110), + [sym_while_statement] = STATE(110), + [sym_do_statement] = STATE(110), + [sym_for_statement] = STATE(110), + [sym_return_statement] = STATE(110), + [sym_break_statement] = STATE(110), + [sym_continue_statement] = STATE(110), + [sym_goto_statement] = STATE(110), + [sym_seh_try_statement] = STATE(110), + [sym_seh_leave_statement] = STATE(110), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(110), + [sym_co_return_statement] = STATE(110), + [sym_co_yield_statement] = STATE(110), + [sym_throw_statement] = STATE(110), + [sym_try_statement] = STATE(110), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(110), [sym_identifier] = ACTIONS(1818), - [aux_sym_preproc_include_token1] = ACTIONS(1618), - [aux_sym_preproc_def_token1] = ACTIONS(1618), - [aux_sym_preproc_if_token1] = ACTIONS(1618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1618), - [sym_preproc_directive] = ACTIONS(1618), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1620), + [anon_sym_AMP_AMP] = ACTIONS(1436), [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym___extension__] = ACTIONS(175), - [anon_sym_typedef] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym___extension__] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1108), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1618), - [anon_sym___cdecl] = ACTIONS(1618), - [anon_sym___clrcall] = ACTIONS(1618), - [anon_sym___stdcall] = ACTIONS(1618), - [anon_sym___fastcall] = ACTIONS(1618), - [anon_sym___thiscall] = ACTIONS(1618), - [anon_sym___vectorcall] = ACTIONS(1618), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym___based] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1112), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -106087,20 +106622,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(189), - [anon_sym_else] = ACTIONS(1618), - [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(1618), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_while] = ACTIONS(197), - [anon_sym_do] = ACTIONS(199), - [anon_sym_for] = ACTIONS(201), - [anon_sym_return] = ACTIONS(203), - [anon_sym_break] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_goto] = ACTIONS(209), - [anon_sym___try] = ACTIONS(211), - [anon_sym___leave] = ACTIONS(213), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_else] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -106135,19 +106670,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1618), + [anon_sym_explicit] = ACTIONS(1434), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1618), - [anon_sym_try] = ACTIONS(221), + [anon_sym_operator] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1144), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(223), - [anon_sym_namespace] = ACTIONS(1618), - [anon_sym_using] = ACTIONS(1618), - [anon_sym_static_assert] = ACTIONS(1618), - [anon_sym_concept] = ACTIONS(1618), - [anon_sym_co_return] = ACTIONS(233), - [anon_sym_co_yield] = ACTIONS(235), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_using] = ACTIONS(1434), + [anon_sym_static_assert] = ACTIONS(1434), + [anon_sym_concept] = ACTIONS(1434), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -106158,242 +106693,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [118] = { - [sym_declaration] = STATE(118), - [sym_type_definition] = STATE(118), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5538), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(118), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(118), - [sym_labeled_statement] = STATE(118), - [sym_expression_statement] = STATE(118), - [sym_if_statement] = STATE(118), - [sym_switch_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_seh_try_statement] = STATE(118), - [sym_seh_leave_statement] = STATE(118), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(1820), - [aux_sym_preproc_include_token1] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym___extension__] = ACTIONS(1826), - [anon_sym_typedef] = ACTIONS(1829), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1477), - [anon_sym___based] = ACTIONS(1437), - [anon_sym___cdecl] = ACTIONS(1437), - [anon_sym___clrcall] = ACTIONS(1437), - [anon_sym___stdcall] = ACTIONS(1437), - [anon_sym___fastcall] = ACTIONS(1437), - [anon_sym___thiscall] = ACTIONS(1437), - [anon_sym___vectorcall] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [anon_sym___inline] = ACTIONS(1465), - [anon_sym___inline__] = ACTIONS(1465), - [anon_sym___forceinline] = ACTIONS(1465), - [anon_sym_thread_local] = ACTIONS(1465), - [anon_sym___thread] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_constexpr] = ACTIONS(1489), - [anon_sym_volatile] = ACTIONS(1489), - [anon_sym_restrict] = ACTIONS(1489), - [anon_sym___restrict__] = ACTIONS(1489), - [anon_sym__Atomic] = ACTIONS(1489), - [anon_sym__Noreturn] = ACTIONS(1489), - [anon_sym_noreturn] = ACTIONS(1489), - [anon_sym_mutable] = ACTIONS(1489), - [anon_sym_constinit] = ACTIONS(1489), - [anon_sym_consteval] = ACTIONS(1489), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_class] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_goto] = ACTIONS(1859), - [anon_sym___try] = ACTIONS(1862), - [anon_sym___leave] = ACTIONS(1865), - [anon_sym_not] = ACTIONS(1445), - [anon_sym_compl] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1543), - [anon_sym___alignof__] = ACTIONS(1546), - [anon_sym___alignof] = ACTIONS(1546), - [anon_sym__alignof] = ACTIONS(1546), - [anon_sym_alignof] = ACTIONS(1546), - [anon_sym__Alignof] = ACTIONS(1546), - [anon_sym_offsetof] = ACTIONS(1549), - [anon_sym__Generic] = ACTIONS(1552), - [anon_sym_asm] = ACTIONS(1555), - [anon_sym___asm__] = ACTIONS(1555), - [sym_number_literal] = ACTIONS(1558), - [anon_sym_L_SQUOTE] = ACTIONS(1561), - [anon_sym_u_SQUOTE] = ACTIONS(1561), - [anon_sym_U_SQUOTE] = ACTIONS(1561), - [anon_sym_u8_SQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_L_DQUOTE] = ACTIONS(1564), - [anon_sym_u_DQUOTE] = ACTIONS(1564), - [anon_sym_U_DQUOTE] = ACTIONS(1564), - [anon_sym_u8_DQUOTE] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [anon_sym_NULL] = ACTIONS(1570), - [anon_sym_nullptr] = ACTIONS(1570), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1573), - [anon_sym_decltype] = ACTIONS(1576), - [anon_sym_virtual] = ACTIONS(1579), - [anon_sym_alignas] = ACTIONS(1582), - [anon_sym_explicit] = ACTIONS(1437), - [anon_sym_typename] = ACTIONS(1585), - [anon_sym_template] = ACTIONS(1588), - [anon_sym_operator] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1868), - [anon_sym_delete] = ACTIONS(1594), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1437), - [anon_sym_using] = ACTIONS(1437), - [anon_sym_static_assert] = ACTIONS(1437), - [anon_sym_concept] = ACTIONS(1437), - [anon_sym_co_return] = ACTIONS(1874), - [anon_sym_co_yield] = ACTIONS(1877), - [anon_sym_R_DQUOTE] = ACTIONS(1606), - [anon_sym_LR_DQUOTE] = ACTIONS(1606), - [anon_sym_uR_DQUOTE] = ACTIONS(1606), - [anon_sym_UR_DQUOTE] = ACTIONS(1606), - [anon_sym_u8R_DQUOTE] = ACTIONS(1606), - [anon_sym_co_await] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_requires] = ACTIONS(1615), - [sym_this] = ACTIONS(1567), - }, [119] = { [sym_declaration] = STATE(110), [sym_type_definition] = STATE(110), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5494), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5554), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(110), [sym_labeled_statement] = STATE(110), [sym_expression_statement] = STATE(110), @@ -106408,69 +106723,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(110), [sym_seh_try_statement] = STATE(110), [sym_seh_leave_statement] = STATE(110), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), [sym_for_range_loop] = STATE(110), [sym_co_return_statement] = STATE(110), [sym_co_yield_statement] = STATE(110), [sym_throw_statement] = STATE(110), [sym_try_statement] = STATE(110), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [aux_sym_case_statement_repeat1] = STATE(110), - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1818), [aux_sym_preproc_include_token1] = ACTIONS(1430), [aux_sym_preproc_def_token1] = ACTIONS(1430), [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), [sym_preproc_directive] = ACTIONS(1430), @@ -106482,9 +106797,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP_AMP] = ACTIONS(1432), [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym___extension__] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym___extension__] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1108), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), @@ -106497,7 +106812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1430), [anon_sym___thiscall] = ACTIONS(1430), [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1112), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -106527,20 +106842,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), + [anon_sym_if] = ACTIONS(1116), [anon_sym_else] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(75), + [anon_sym_switch] = ACTIONS(1118), [anon_sym_case] = ACTIONS(1430), [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1816), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -106579,15 +106894,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), [anon_sym_operator] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(1144), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), + [anon_sym_throw] = ACTIONS(1146), [anon_sym_namespace] = ACTIONS(1430), [anon_sym_using] = ACTIONS(1430), [anon_sym_static_assert] = ACTIONS(1430), [anon_sym_concept] = ACTIONS(1430), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -106599,110 +106914,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [120] = { - [sym_declaration] = STATE(115), - [sym_type_definition] = STATE(115), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5494), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(115), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(115), - [sym_labeled_statement] = STATE(115), - [sym_expression_statement] = STATE(115), - [sym_if_statement] = STATE(115), - [sym_switch_statement] = STATE(115), - [sym_while_statement] = STATE(115), - [sym_do_statement] = STATE(115), - [sym_for_statement] = STATE(115), - [sym_return_statement] = STATE(115), - [sym_break_statement] = STATE(115), - [sym_continue_statement] = STATE(115), - [sym_goto_statement] = STATE(115), - [sym_seh_try_statement] = STATE(115), - [sym_seh_leave_statement] = STATE(115), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(115), - [sym_co_return_statement] = STATE(115), - [sym_co_yield_statement] = STATE(115), - [sym_throw_statement] = STATE(115), - [sym_try_statement] = STATE(115), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(115), - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1810), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), + [sym_declaration] = STATE(113), + [sym_type_definition] = STATE(113), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5537), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(113), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(113), + [sym_labeled_statement] = STATE(113), + [sym_expression_statement] = STATE(113), + [sym_if_statement] = STATE(113), + [sym_switch_statement] = STATE(113), + [sym_while_statement] = STATE(113), + [sym_do_statement] = STATE(113), + [sym_for_statement] = STATE(113), + [sym_return_statement] = STATE(113), + [sym_break_statement] = STATE(113), + [sym_continue_statement] = STATE(113), + [sym_goto_statement] = STATE(113), + [sym_seh_try_statement] = STATE(113), + [sym_seh_leave_statement] = STATE(113), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(113), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1750), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_AMP_AMP] = ACTIONS(1436), [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1752), [anon_sym___extension__] = ACTIONS(33), [anon_sym_typedef] = ACTIONS(35), [anon_sym_extern] = ACTIONS(57), @@ -106710,13 +107025,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym___based] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), @@ -106748,10 +107063,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(73), - [anon_sym_else] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1434), [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), [anon_sym_while] = ACTIONS(81), [anon_sym_do] = ACTIONS(83), [anon_sym_for] = ACTIONS(85), @@ -106759,8 +107074,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(89), [anon_sym_continue] = ACTIONS(91), [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1816), + [anon_sym___try] = ACTIONS(1754), + [anon_sym___leave] = ACTIONS(1756), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -106795,17 +107110,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1414), + [anon_sym_explicit] = ACTIONS(1434), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1414), + [anon_sym_operator] = ACTIONS(1434), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), [anon_sym_throw] = ACTIONS(137), - [anon_sym_namespace] = ACTIONS(1414), - [anon_sym_using] = ACTIONS(1414), - [anon_sym_static_assert] = ACTIONS(1414), - [anon_sym_concept] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_using] = ACTIONS(1434), + [anon_sym_static_assert] = ACTIONS(1434), + [anon_sym_concept] = ACTIONS(1434), [anon_sym_co_return] = ACTIONS(147), [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -106819,125 +107134,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [121] = { - [sym_declaration] = STATE(118), - [sym_type_definition] = STATE(118), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5538), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(118), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(118), - [sym_labeled_statement] = STATE(118), - [sym_expression_statement] = STATE(118), - [sym_if_statement] = STATE(118), - [sym_switch_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_seh_try_statement] = STATE(118), - [sym_seh_leave_statement] = STATE(118), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(1818), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), + [sym_declaration] = STATE(112), + [sym_type_definition] = STATE(112), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5537), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_seh_try_statement] = STATE(112), + [sym_seh_leave_statement] = STATE(112), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1750), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1432), + [anon_sym_AMP_AMP] = ACTIONS(1440), [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym___extension__] = ACTIONS(175), - [anon_sym_typedef] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym___based] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -106967,20 +107282,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(189), - [anon_sym_else] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(197), - [anon_sym_do] = ACTIONS(199), - [anon_sym_for] = ACTIONS(201), - [anon_sym_return] = ACTIONS(203), - [anon_sym_break] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_goto] = ACTIONS(209), - [anon_sym___try] = ACTIONS(211), - [anon_sym___leave] = ACTIONS(213), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(1754), + [anon_sym___leave] = ACTIONS(1756), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -107015,19 +107330,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1430), + [anon_sym_explicit] = ACTIONS(1438), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(221), + [anon_sym_operator] = ACTIONS(1438), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(223), - [anon_sym_namespace] = ACTIONS(1430), - [anon_sym_using] = ACTIONS(1430), - [anon_sym_static_assert] = ACTIONS(1430), - [anon_sym_concept] = ACTIONS(1430), - [anon_sym_co_return] = ACTIONS(233), - [anon_sym_co_yield] = ACTIONS(235), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1438), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_static_assert] = ACTIONS(1438), + [anon_sym_concept] = ACTIONS(1438), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -107041,19 +107356,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [122] = { [sym_declaration] = STATE(117), [sym_type_definition] = STATE(117), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5538), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5539), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), [sym_compound_statement] = STATE(117), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(117), [sym_labeled_statement] = STATE(117), [sym_expression_statement] = STATE(117), @@ -107068,78 +107383,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(117), [sym_seh_try_statement] = STATE(117), [sym_seh_leave_statement] = STATE(117), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), [sym_for_range_loop] = STATE(117), [sym_co_return_statement] = STATE(117), [sym_co_yield_statement] = STATE(117), [sym_throw_statement] = STATE(117), [sym_try_statement] = STATE(117), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [aux_sym_case_statement_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(1818), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1748), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_AMP_AMP] = ACTIONS(1436), [anon_sym_AMP] = ACTIONS(1422), [anon_sym_SEMI] = ACTIONS(173), [anon_sym___extension__] = ACTIONS(175), @@ -107149,15 +107464,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym___based] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1436), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -107188,10 +107503,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(189), - [anon_sym_else] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1434), [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), [anon_sym_while] = ACTIONS(197), [anon_sym_do] = ACTIONS(199), [anon_sym_for] = ACTIONS(201), @@ -107235,17 +107550,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1414), + [anon_sym_explicit] = ACTIONS(1434), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1414), + [anon_sym_operator] = ACTIONS(1434), [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), [anon_sym_throw] = ACTIONS(223), - [anon_sym_namespace] = ACTIONS(1414), - [anon_sym_using] = ACTIONS(1414), - [anon_sym_static_assert] = ACTIONS(1414), - [anon_sym_concept] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1434), + [anon_sym_using] = ACTIONS(1434), + [anon_sym_static_assert] = ACTIONS(1434), + [anon_sym_concept] = ACTIONS(1434), [anon_sym_co_return] = ACTIONS(233), [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -107259,125 +107574,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [123] = { - [sym_declaration] = STATE(121), - [sym_type_definition] = STATE(121), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5538), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(121), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [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(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(1818), - [aux_sym_preproc_include_token1] = ACTIONS(1622), - [aux_sym_preproc_def_token1] = ACTIONS(1622), - [aux_sym_preproc_if_token1] = ACTIONS(1622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1622), - [sym_preproc_directive] = ACTIONS(1622), + [sym_declaration] = STATE(120), + [sym_type_definition] = STATE(120), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5537), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(120), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(120), + [sym_labeled_statement] = STATE(120), + [sym_expression_statement] = STATE(120), + [sym_if_statement] = STATE(120), + [sym_switch_statement] = STATE(120), + [sym_while_statement] = STATE(120), + [sym_do_statement] = STATE(120), + [sym_for_statement] = STATE(120), + [sym_return_statement] = STATE(120), + [sym_break_statement] = STATE(120), + [sym_continue_statement] = STATE(120), + [sym_goto_statement] = STATE(120), + [sym_seh_try_statement] = STATE(120), + [sym_seh_leave_statement] = STATE(120), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(120), + [sym_co_return_statement] = STATE(120), + [sym_co_yield_statement] = STATE(120), + [sym_throw_statement] = STATE(120), + [sym_try_statement] = STATE(120), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(120), + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1750), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_AMP_AMP] = ACTIONS(1420), [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym___extension__] = ACTIONS(175), - [anon_sym_typedef] = ACTIONS(177), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1622), - [anon_sym___cdecl] = ACTIONS(1622), - [anon_sym___clrcall] = ACTIONS(1622), - [anon_sym___stdcall] = ACTIONS(1622), - [anon_sym___fastcall] = ACTIONS(1622), - [anon_sym___thiscall] = ACTIONS(1622), - [anon_sym___vectorcall] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym___based] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -107407,20 +107722,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(189), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(1622), - [anon_sym_default] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(197), - [anon_sym_do] = ACTIONS(199), - [anon_sym_for] = ACTIONS(201), - [anon_sym_return] = ACTIONS(203), - [anon_sym_break] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_goto] = ACTIONS(209), - [anon_sym___try] = ACTIONS(211), - [anon_sym___leave] = ACTIONS(213), + [anon_sym_if] = ACTIONS(73), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(1754), + [anon_sym___leave] = ACTIONS(1756), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -107455,19 +107770,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(1622), + [anon_sym_explicit] = ACTIONS(1414), [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1622), - [anon_sym_try] = ACTIONS(221), + [anon_sym_operator] = ACTIONS(1414), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(223), - [anon_sym_namespace] = ACTIONS(1622), - [anon_sym_using] = ACTIONS(1622), - [anon_sym_static_assert] = ACTIONS(1622), - [anon_sym_concept] = ACTIONS(1622), - [anon_sym_co_return] = ACTIONS(233), - [anon_sym_co_yield] = ACTIONS(235), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_namespace] = ACTIONS(1414), + [anon_sym_using] = ACTIONS(1414), + [anon_sym_static_assert] = ACTIONS(1414), + [anon_sym_concept] = ACTIONS(1414), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -107479,98 +107794,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [124] = { - [sym_declaration] = STATE(112), - [sym_type_definition] = STATE(112), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5495), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(112), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_attributed_statement] = STATE(112), - [sym_labeled_statement] = STATE(112), - [sym_expression_statement] = STATE(112), - [sym_if_statement] = STATE(112), - [sym_switch_statement] = STATE(112), - [sym_while_statement] = STATE(112), - [sym_do_statement] = STATE(112), - [sym_for_statement] = STATE(112), - [sym_return_statement] = STATE(112), - [sym_break_statement] = STATE(112), - [sym_continue_statement] = STATE(112), - [sym_goto_statement] = STATE(112), - [sym_seh_try_statement] = STATE(112), - [sym_seh_leave_statement] = STATE(112), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(112), + [sym_declaration] = STATE(122), + [sym_type_definition] = STATE(122), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5539), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(122), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_attributed_statement] = STATE(122), + [sym_labeled_statement] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_if_statement] = STATE(122), + [sym_switch_statement] = STATE(122), + [sym_while_statement] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_break_statement] = STATE(122), + [sym_continue_statement] = STATE(122), + [sym_goto_statement] = STATE(122), + [sym_seh_try_statement] = STATE(122), + [sym_seh_leave_statement] = STATE(122), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(122), + [sym_co_return_statement] = STATE(122), + [sym_co_yield_statement] = STATE(122), + [sym_throw_statement] = STATE(122), + [sym_try_statement] = STATE(122), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(122), [sym_identifier] = ACTIONS(1748), [aux_sym_preproc_include_token1] = ACTIONS(1414), [aux_sym_preproc_def_token1] = ACTIONS(1414), [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), [sym_preproc_directive] = ACTIONS(1414), @@ -107582,9 +107896,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP_AMP] = ACTIONS(1420), [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym___extension__] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym___extension__] = ACTIONS(175), + [anon_sym_typedef] = ACTIONS(177), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), @@ -107597,7 +107911,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1414), [anon_sym___thiscall] = ACTIONS(1414), [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(1420), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -107627,20 +107942,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(189), [anon_sym_else] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(191), [anon_sym_case] = ACTIONS(1414), [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym___try] = ACTIONS(211), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -107679,15 +107994,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), [anon_sym_operator] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), + [anon_sym_throw] = ACTIONS(223), [anon_sym_namespace] = ACTIONS(1414), [anon_sym_using] = ACTIONS(1414), [anon_sym_static_assert] = ACTIONS(1414), [anon_sym_concept] = ACTIONS(1414), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_co_return] = ACTIONS(233), + [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -107699,93 +108014,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [125] = { - [sym_declaration] = STATE(127), - [sym_type_definition] = STATE(127), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5524), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(127), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [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(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(211), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(127), + [sym_declaration] = STATE(128), + [sym_type_definition] = STATE(128), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5518), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(128), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [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(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(128), [sym_identifier] = ACTIONS(1880), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), @@ -107833,7 +108148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1430), + [anon_sym_else] = ACTIONS(1438), [anon_sym_switch] = ACTIONS(1892), [anon_sym_while] = ACTIONS(1894), [anon_sym_do] = ACTIONS(1896), @@ -107896,93 +108211,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [126] = { - [sym_declaration] = STATE(127), - [sym_type_definition] = STATE(127), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5524), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(127), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [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(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(211), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(127), + [sym_declaration] = STATE(126), + [sym_type_definition] = STATE(126), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5518), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(126), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [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(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1923), + [anon_sym___extension__] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1929), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1479), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1491), + [anon_sym_unsigned] = ACTIONS(1491), + [anon_sym_long] = ACTIONS(1491), + [anon_sym_short] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym___inline] = ACTIONS(1473), + [anon_sym___inline__] = ACTIONS(1473), + [anon_sym___forceinline] = ACTIONS(1473), + [anon_sym_thread_local] = ACTIONS(1473), + [anon_sym___thread] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_constexpr] = ACTIONS(1497), + [anon_sym_volatile] = ACTIONS(1497), + [anon_sym_restrict] = ACTIONS(1497), + [anon_sym___restrict__] = ACTIONS(1497), + [anon_sym__Atomic] = ACTIONS(1497), + [anon_sym__Noreturn] = ACTIONS(1497), + [anon_sym_noreturn] = ACTIONS(1497), + [anon_sym_mutable] = ACTIONS(1497), + [anon_sym_constinit] = ACTIONS(1497), + [anon_sym_consteval] = ACTIONS(1497), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_class] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1941), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1956), + [anon_sym_goto] = ACTIONS(1959), + [anon_sym___try] = ACTIONS(1962), + [anon_sym___leave] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(1453), + [anon_sym_compl] = ACTIONS(1453), + [anon_sym_DASH_DASH] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1548), + [anon_sym_sizeof] = ACTIONS(1551), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1557), + [anon_sym__Generic] = ACTIONS(1560), + [anon_sym_asm] = ACTIONS(1563), + [anon_sym___asm__] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1566), + [anon_sym_L_SQUOTE] = ACTIONS(1569), + [anon_sym_u_SQUOTE] = ACTIONS(1569), + [anon_sym_U_SQUOTE] = ACTIONS(1569), + [anon_sym_u8_SQUOTE] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1569), + [anon_sym_L_DQUOTE] = ACTIONS(1572), + [anon_sym_u_DQUOTE] = ACTIONS(1572), + [anon_sym_U_DQUOTE] = ACTIONS(1572), + [anon_sym_u8_DQUOTE] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [sym_true] = ACTIONS(1575), + [sym_false] = ACTIONS(1575), + [anon_sym_NULL] = ACTIONS(1578), + [anon_sym_nullptr] = ACTIONS(1578), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1581), + [anon_sym_decltype] = ACTIONS(1584), + [anon_sym_virtual] = ACTIONS(1587), + [anon_sym_alignas] = ACTIONS(1590), + [anon_sym_typename] = ACTIONS(1593), + [anon_sym_template] = ACTIONS(1596), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_delete] = ACTIONS(1602), + [anon_sym_throw] = ACTIONS(1971), + [anon_sym_co_return] = ACTIONS(1974), + [anon_sym_co_yield] = ACTIONS(1977), + [anon_sym_R_DQUOTE] = ACTIONS(1614), + [anon_sym_LR_DQUOTE] = ACTIONS(1614), + [anon_sym_uR_DQUOTE] = ACTIONS(1614), + [anon_sym_UR_DQUOTE] = ACTIONS(1614), + [anon_sym_u8R_DQUOTE] = ACTIONS(1614), + [anon_sym_co_await] = ACTIONS(1617), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_requires] = ACTIONS(1623), + [sym_this] = ACTIONS(1575), + }, + [127] = { + [sym_declaration] = STATE(129), + [sym_type_definition] = STATE(129), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5518), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(129), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [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(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(129), [sym_identifier] = ACTIONS(1880), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), @@ -108030,7 +108542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1618), + [anon_sym_else] = ACTIONS(1414), [anon_sym_switch] = ACTIONS(1892), [anon_sym_while] = ACTIONS(1894), [anon_sym_do] = ACTIONS(1896), @@ -108092,291 +108604,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [127] = { - [sym_declaration] = STATE(127), - [sym_type_definition] = STATE(127), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5524), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(127), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [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(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(211), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym___extension__] = ACTIONS(1926), - [anon_sym_typedef] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1932), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [anon_sym___inline] = ACTIONS(1465), - [anon_sym___inline__] = ACTIONS(1465), - [anon_sym___forceinline] = ACTIONS(1465), - [anon_sym_thread_local] = ACTIONS(1465), - [anon_sym___thread] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_constexpr] = ACTIONS(1489), - [anon_sym_volatile] = ACTIONS(1489), - [anon_sym_restrict] = ACTIONS(1489), - [anon_sym___restrict__] = ACTIONS(1489), - [anon_sym__Atomic] = ACTIONS(1489), - [anon_sym__Noreturn] = ACTIONS(1489), - [anon_sym_noreturn] = ACTIONS(1489), - [anon_sym_mutable] = ACTIONS(1489), - [anon_sym_constinit] = ACTIONS(1489), - [anon_sym_consteval] = ACTIONS(1489), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_class] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1950), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_goto] = ACTIONS(1959), - [anon_sym___try] = ACTIONS(1962), - [anon_sym___leave] = ACTIONS(1965), - [anon_sym_not] = ACTIONS(1445), - [anon_sym_compl] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_sizeof] = ACTIONS(1543), - [anon_sym___alignof__] = ACTIONS(1546), - [anon_sym___alignof] = ACTIONS(1546), - [anon_sym__alignof] = ACTIONS(1546), - [anon_sym_alignof] = ACTIONS(1546), - [anon_sym__Alignof] = ACTIONS(1546), - [anon_sym_offsetof] = ACTIONS(1549), - [anon_sym__Generic] = ACTIONS(1552), - [anon_sym_asm] = ACTIONS(1555), - [anon_sym___asm__] = ACTIONS(1555), - [sym_number_literal] = ACTIONS(1558), - [anon_sym_L_SQUOTE] = ACTIONS(1561), - [anon_sym_u_SQUOTE] = ACTIONS(1561), - [anon_sym_U_SQUOTE] = ACTIONS(1561), - [anon_sym_u8_SQUOTE] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_L_DQUOTE] = ACTIONS(1564), - [anon_sym_u_DQUOTE] = ACTIONS(1564), - [anon_sym_U_DQUOTE] = ACTIONS(1564), - [anon_sym_u8_DQUOTE] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [anon_sym_NULL] = ACTIONS(1570), - [anon_sym_nullptr] = ACTIONS(1570), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1573), - [anon_sym_decltype] = ACTIONS(1576), - [anon_sym_virtual] = ACTIONS(1579), - [anon_sym_alignas] = ACTIONS(1582), - [anon_sym_typename] = ACTIONS(1585), - [anon_sym_template] = ACTIONS(1588), - [anon_sym_try] = ACTIONS(1968), - [anon_sym_delete] = ACTIONS(1594), - [anon_sym_throw] = ACTIONS(1971), - [anon_sym_co_return] = ACTIONS(1974), - [anon_sym_co_yield] = ACTIONS(1977), - [anon_sym_R_DQUOTE] = ACTIONS(1606), - [anon_sym_LR_DQUOTE] = ACTIONS(1606), - [anon_sym_uR_DQUOTE] = ACTIONS(1606), - [anon_sym_UR_DQUOTE] = ACTIONS(1606), - [anon_sym_u8R_DQUOTE] = ACTIONS(1606), - [anon_sym_co_await] = ACTIONS(1609), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_requires] = ACTIONS(1615), - [sym_this] = ACTIONS(1567), - }, [128] = { - [sym_declaration] = STATE(125), - [sym_type_definition] = STATE(125), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5524), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_compound_statement] = STATE(125), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [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(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(211), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_case_statement_repeat1] = STATE(125), + [sym_declaration] = STATE(126), + [sym_type_definition] = STATE(126), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5518), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_compound_statement] = STATE(126), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [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(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_case_statement_repeat1] = STATE(126), [sym_identifier] = ACTIONS(1880), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), @@ -108424,7 +108739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1622), + [anon_sym_else] = ACTIONS(1430), [anon_sym_switch] = ACTIONS(1892), [anon_sym_while] = ACTIONS(1894), [anon_sym_do] = ACTIONS(1896), @@ -108489,19 +108804,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [129] = { [sym_declaration] = STATE(126), [sym_type_definition] = STATE(126), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5524), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(1176), - [sym_ms_declspec_modifier] = STATE(2279), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5518), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(1155), + [sym_ms_declspec_modifier] = STATE(2292), [sym_compound_statement] = STATE(126), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym_attributed_statement] = STATE(126), [sym_labeled_statement] = STATE(126), [sym_expression_statement] = STATE(126), @@ -108516,63 +108831,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(126), [sym_seh_try_statement] = STATE(126), [sym_seh_leave_statement] = STATE(126), - [sym__expression] = STATE(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), + [sym__expression] = STATE(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), [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(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_attributed_declarator_repeat1] = STATE(211), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [aux_sym_case_statement_repeat1] = STATE(126), [sym_identifier] = ACTIONS(1880), [anon_sym_LPAREN2] = ACTIONS(1416), @@ -108621,7 +108936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(69), [anon_sym_union] = ACTIONS(71), [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1434), [anon_sym_switch] = ACTIONS(1892), [anon_sym_while] = ACTIONS(1894), [anon_sym_do] = ACTIONS(1896), @@ -108684,76 +108999,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [130] = { - [sym_declaration] = STATE(445), - [sym_type_definition] = STATE(4684), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_expression_statement] = STATE(4684), - [sym__for_statement_body] = STATE(9071), - [sym__expression] = STATE(4979), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8664), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_alias_declaration] = STATE(4684), - [sym__for_range_loop_body] = STATE(9069), - [sym_init_statement] = STATE(2199), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_declaration] = STATE(436), + [sym_type_definition] = STATE(4699), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5574), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_expression_statement] = STATE(4699), + [sym__for_statement_body] = STATE(9301), + [sym__expression] = STATE(5071), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9290), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_alias_declaration] = STATE(4699), + [sym__for_range_loop_body] = STATE(9281), + [sym_init_statement] = STATE(2276), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1980), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), @@ -108848,76 +109163,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [131] = { - [sym_declaration] = STATE(445), - [sym_type_definition] = STATE(4684), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_expression_statement] = STATE(4684), - [sym__for_statement_body] = STATE(8694), - [sym__expression] = STATE(4979), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8664), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_alias_declaration] = STATE(4684), - [sym__for_range_loop_body] = STATE(8655), - [sym_init_statement] = STATE(2199), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_declaration] = STATE(436), + [sym_type_definition] = STATE(4699), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5574), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_expression_statement] = STATE(4699), + [sym__for_statement_body] = STATE(8466), + [sym__expression] = STATE(5071), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9290), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_alias_declaration] = STATE(4699), + [sym__for_range_loop_body] = STATE(8468), + [sym_init_statement] = STATE(2276), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1980), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), @@ -109012,76 +109327,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [132] = { - [sym_declaration] = STATE(445), - [sym_type_definition] = STATE(4684), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_expression_statement] = STATE(4684), - [sym__for_statement_body] = STATE(8509), - [sym__expression] = STATE(4979), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8664), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_alias_declaration] = STATE(4684), - [sym__for_range_loop_body] = STATE(8510), - [sym_init_statement] = STATE(2199), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_declaration] = STATE(436), + [sym_type_definition] = STATE(4699), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5574), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_expression_statement] = STATE(4699), + [sym__for_statement_body] = STATE(8735), + [sym__expression] = STATE(5071), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9290), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_alias_declaration] = STATE(4699), + [sym__for_range_loop_body] = STATE(8733), + [sym_init_statement] = STATE(2276), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1980), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), @@ -109176,76 +109491,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [133] = { - [sym_declaration] = STATE(445), - [sym_type_definition] = STATE(4684), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_expression_statement] = STATE(4684), - [sym__for_statement_body] = STATE(8851), - [sym__expression] = STATE(4979), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8664), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_alias_declaration] = STATE(4684), - [sym__for_range_loop_body] = STATE(8850), - [sym_init_statement] = STATE(2199), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_declaration] = STATE(436), + [sym_type_definition] = STATE(4699), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5574), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_expression_statement] = STATE(4699), + [sym__for_statement_body] = STATE(8517), + [sym__expression] = STATE(5071), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9290), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_alias_declaration] = STATE(4699), + [sym__for_range_loop_body] = STATE(8519), + [sym_init_statement] = STATE(2276), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1980), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), @@ -109340,76 +109655,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [134] = { - [sym_declaration] = STATE(445), - [sym_type_definition] = STATE(4684), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_expression_statement] = STATE(4684), - [sym__for_statement_body] = STATE(8444), - [sym__expression] = STATE(4979), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8664), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_alias_declaration] = STATE(4684), - [sym__for_range_loop_body] = STATE(8450), - [sym_init_statement] = STATE(2199), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_declaration] = STATE(436), + [sym_type_definition] = STATE(4699), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5574), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_expression_statement] = STATE(4699), + [sym__for_statement_body] = STATE(8540), + [sym__expression] = STATE(5071), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9290), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_alias_declaration] = STATE(4699), + [sym__for_range_loop_body] = STATE(8541), + [sym_init_statement] = STATE(2276), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1980), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), @@ -109504,76 +109819,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [135] = { - [sym_declaration] = STATE(445), - [sym_type_definition] = STATE(4684), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_expression_statement] = STATE(4684), - [sym__for_statement_body] = STATE(8973), - [sym__expression] = STATE(4979), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8664), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_alias_declaration] = STATE(4684), - [sym__for_range_loop_body] = STATE(8972), - [sym_init_statement] = STATE(2199), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_declaration] = STATE(436), + [sym_type_definition] = STATE(4699), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5574), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_expression_statement] = STATE(4699), + [sym__for_statement_body] = STATE(8756), + [sym__expression] = STATE(5071), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9290), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_alias_declaration] = STATE(4699), + [sym__for_range_loop_body] = STATE(8754), + [sym_init_statement] = STATE(2276), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1980), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), @@ -109668,76 +109983,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [136] = { - [sym_declaration] = STATE(445), - [sym_type_definition] = STATE(4684), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5498), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_expression_statement] = STATE(4684), - [sym__for_statement_body] = STATE(8587), - [sym__expression] = STATE(4979), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8664), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_alias_declaration] = STATE(4684), - [sym__for_range_loop_body] = STATE(8588), - [sym_init_statement] = STATE(2199), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_declaration] = STATE(436), + [sym_type_definition] = STATE(4699), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5574), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_expression_statement] = STATE(4699), + [sym__for_statement_body] = STATE(8618), + [sym__expression] = STATE(5071), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9290), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_alias_declaration] = STATE(4699), + [sym__for_range_loop_body] = STATE(8619), + [sym_init_statement] = STATE(2276), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1980), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), @@ -109832,75 +110147,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [137] = { - [sym_declaration] = STATE(1886), - [sym_type_definition] = STATE(1886), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5485), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_expression_statement] = STATE(1886), - [sym__expression] = STATE(4801), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8256), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_alias_declaration] = STATE(1886), + [sym_declaration] = STATE(1921), + [sym_type_definition] = STATE(1921), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5552), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_expression_statement] = STATE(1921), + [sym__expression] = STATE(4842), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8375), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_alias_declaration] = STATE(1921), [sym_init_statement] = STATE(147), - [sym_condition_declaration] = STATE(8727), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym_condition_declaration] = STATE(9320), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1980), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), @@ -109995,74 +110310,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [138] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7910), - [sym__expression] = STATE(3692), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8122), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7910), - [sym_variadic_parameter_declaration] = STATE(7910), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8437), - [sym__unary_right_fold] = STATE(8436), - [sym__binary_fold] = STATE(8428), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6152), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(8039), + [sym__expression] = STATE(3721), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8092), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(8039), + [sym_variadic_parameter_declaration] = STATE(8039), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(9215), + [sym__unary_right_fold] = STATE(9212), + [sym__binary_fold] = STATE(9207), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6191), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3951), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1994), [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), [anon_sym_RPAREN] = ACTIONS(1998), @@ -110156,235 +110471,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2038), }, [139] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_compound_statement] = STATE(7654), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7870), - [sym__expression] = STATE(4850), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7654), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7870), - [sym_variadic_parameter_declaration] = STATE(7870), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6207), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(2054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), - [anon_sym_RPAREN] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(2060), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [140] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7910), - [sym__expression] = STATE(3601), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8122), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7910), - [sym_variadic_parameter_declaration] = STATE(7910), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9012), - [sym__unary_right_fold] = STATE(9013), - [sym__binary_fold] = STATE(9015), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6152), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(8039), + [sym__expression] = STATE(3707), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8092), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(8039), + [sym_variadic_parameter_declaration] = STATE(8039), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8660), + [sym__unary_right_fold] = STATE(8661), + [sym__binary_fold] = STATE(8662), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6191), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3951), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1994), [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), [anon_sym_RPAREN] = ACTIONS(1998), @@ -110477,75 +110631,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2052), [sym_this] = ACTIONS(2038), }, - [141] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7910), - [sym__expression] = STATE(3576), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8122), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7910), - [sym_variadic_parameter_declaration] = STATE(7910), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8897), - [sym__unary_right_fold] = STATE(8896), - [sym__binary_fold] = STATE(8895), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6152), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [140] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(8039), + [sym__expression] = STATE(3630), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8092), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(8039), + [sym_variadic_parameter_declaration] = STATE(8039), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8883), + [sym__unary_right_fold] = STATE(8882), + [sym__binary_fold] = STATE(8881), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6191), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3951), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1994), [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), [anon_sym_RPAREN] = ACTIONS(1998), @@ -110638,75 +110792,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2052), [sym_this] = ACTIONS(2038), }, - [142] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7910), - [sym__expression] = STATE(3603), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8122), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7910), - [sym_variadic_parameter_declaration] = STATE(7910), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8506), - [sym__unary_right_fold] = STATE(8504), - [sym__binary_fold] = STATE(8503), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6152), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [141] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(8039), + [sym__expression] = STATE(3686), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8092), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(8039), + [sym_variadic_parameter_declaration] = STATE(8039), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(9185), + [sym__unary_right_fold] = STATE(9219), + [sym__binary_fold] = STATE(9224), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6191), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3951), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1994), [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), [anon_sym_RPAREN] = ACTIONS(1998), @@ -110799,75 +110953,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2052), [sym_this] = ACTIONS(2038), }, + [142] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_compound_statement] = STATE(7928), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(7970), + [sym__expression] = STATE(4896), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7928), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(7970), + [sym_variadic_parameter_declaration] = STATE(7970), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6217), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), + [anon_sym_RPAREN] = ACTIONS(2058), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(63), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(2042), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, [143] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7910), - [sym__expression] = STATE(3662), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8122), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7910), - [sym_variadic_parameter_declaration] = STATE(7910), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9026), - [sym__unary_right_fold] = STATE(9134), - [sym__binary_fold] = STATE(9135), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6152), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(8039), + [sym__expression] = STATE(3642), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8092), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(8039), + [sym_variadic_parameter_declaration] = STATE(8039), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8513), + [sym__unary_right_fold] = STATE(8467), + [sym__binary_fold] = STATE(8510), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6191), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3951), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1994), [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), [anon_sym_RPAREN] = ACTIONS(1998), @@ -110961,74 +111276,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2038), }, [144] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7910), - [sym__expression] = STATE(3581), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8122), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7910), - [sym_variadic_parameter_declaration] = STATE(7910), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8714), - [sym__unary_right_fold] = STATE(8713), - [sym__binary_fold] = STATE(8711), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6152), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(8039), + [sym__expression] = STATE(3597), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8092), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(8039), + [sym_variadic_parameter_declaration] = STATE(8039), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(9333), + [sym__unary_right_fold] = STATE(9329), + [sym__binary_fold] = STATE(9328), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6191), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3951), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1994), [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), [anon_sym_RPAREN] = ACTIONS(1998), @@ -111122,74 +111437,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2038), }, [145] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7910), - [sym__expression] = STATE(3668), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8122), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7910), - [sym_variadic_parameter_declaration] = STATE(7910), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6152), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(8039), + [sym__expression] = STATE(3711), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8092), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(8039), + [sym_variadic_parameter_declaration] = STATE(8039), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8445), + [sym__unary_right_fold] = STATE(8893), + [sym__binary_fold] = STATE(8768), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6191), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3951), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1994), [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), [anon_sym_RPAREN] = ACTIONS(1998), @@ -111283,74 +111598,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2038), }, [146] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7910), - [sym__expression] = STATE(3666), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8122), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7910), - [sym_variadic_parameter_declaration] = STATE(7910), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9046), - [sym__unary_right_fold] = STATE(9042), - [sym__binary_fold] = STATE(9040), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6152), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(8039), + [sym__expression] = STATE(3632), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8092), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(8039), + [sym_variadic_parameter_declaration] = STATE(8039), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6191), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3951), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1994), [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), [anon_sym_RPAREN] = ACTIONS(1998), @@ -111444,70 +111759,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2038), }, [147] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5783), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__expression] = STATE(5030), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8914), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8148), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4377), - [sym_template_function] = STATE(4258), - [sym_condition_declaration] = STATE(8914), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6197), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(4472), - [sym_user_defined_literal] = STATE(3606), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5711), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__expression] = STATE(4970), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8809), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8240), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4422), + [sym_template_function] = STATE(4287), + [sym_condition_declaration] = STATE(8809), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6157), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(4473), + [sym_user_defined_literal] = STATE(3596), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), [sym_identifier] = ACTIONS(1980), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), @@ -111599,94 +111914,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [148] = { - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7053), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8416), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4116), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8897), - [sym__unary_right_fold] = STATE(8896), - [sym__binary_fold] = STATE(8895), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6196), - [sym_qualified_identifier] = STATE(3561), - [sym_qualified_type_identifier] = STATE(5925), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7085), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6752), + [sym_array_declarator] = STATE(6752), + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8515), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3653), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8513), + [sym__unary_right_fold] = STATE(8467), + [sym__binary_fold] = STATE(8510), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6236), + [sym_qualified_identifier] = STATE(3640), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), [sym_identifier] = ACTIONS(2064), [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), [anon_sym_LPAREN2] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2076), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2078), [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -111698,146 +112014,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_operator] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, [149] = { - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7053), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8891), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4116), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6196), - [sym_qualified_identifier] = STATE(3561), - [sym_qualified_type_identifier] = STATE(5925), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7085), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6752), + [sym_array_declarator] = STATE(6752), + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8815), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3653), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6236), + [sym_qualified_identifier] = STATE(3640), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), [sym_identifier] = ACTIONS(2064), [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), [anon_sym_LPAREN2] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2076), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2078), [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -111849,146 +112166,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_operator] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, [150] = { - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7053), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3614), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(9049), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(9048), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4116), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9046), - [sym__unary_right_fold] = STATE(9042), - [sym__binary_fold] = STATE(9040), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6196), - [sym_qualified_identifier] = STATE(3561), - [sym_qualified_type_identifier] = STATE(5925), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7085), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6752), + [sym_array_declarator] = STATE(6752), + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3245), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8887), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8885), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3653), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8883), + [sym__unary_right_fold] = STATE(8882), + [sym__binary_fold] = STATE(8881), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6236), + [sym_qualified_identifier] = STATE(3640), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8887), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), [sym_identifier] = ACTIONS(2064), [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), [anon_sym_LPAREN2] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2076), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2078), [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2082), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -112000,918 +112318,624 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_operator] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, [151] = { - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7053), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3614), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(9049), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8715), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4116), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8714), - [sym__unary_right_fold] = STATE(8713), - [sym__binary_fold] = STATE(8711), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6196), - [sym_qualified_identifier] = STATE(3561), - [sym_qualified_type_identifier] = STATE(5925), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [152] = { - [sym__expression] = STATE(2710), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_initializer_list] = STATE(2773), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [aux_sym_preproc_if_token2] = ACTIONS(2098), - [aux_sym_preproc_else_token1] = ACTIONS(2098), - [aux_sym_preproc_elif_token1] = ACTIONS(2096), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2098), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2100), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_EQ] = ACTIONS(2096), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_STAR_EQ] = ACTIONS(2098), - [anon_sym_SLASH_EQ] = ACTIONS(2098), - [anon_sym_PERCENT_EQ] = ACTIONS(2098), - [anon_sym_PLUS_EQ] = ACTIONS(2098), - [anon_sym_DASH_EQ] = ACTIONS(2098), - [anon_sym_LT_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_GT_EQ] = ACTIONS(2098), - [anon_sym_AMP_EQ] = ACTIONS(2098), - [anon_sym_CARET_EQ] = ACTIONS(2098), - [anon_sym_PIPE_EQ] = ACTIONS(2098), - [anon_sym_and_eq] = ACTIONS(2096), - [anon_sym_or_eq] = ACTIONS(2096), - [anon_sym_xor_eq] = ACTIONS(2096), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2136), + [aux_sym_preproc_include_token1] = ACTIONS(2136), + [aux_sym_preproc_def_token1] = ACTIONS(2136), + [anon_sym_COMMA] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2136), + [sym_preproc_directive] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym___extension__] = ACTIONS(2136), + [anon_sym_typedef] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym___attribute__] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2134), + [anon_sym___declspec] = ACTIONS(2136), + [anon_sym___based] = ACTIONS(2136), + [anon_sym___cdecl] = ACTIONS(2136), + [anon_sym___clrcall] = ACTIONS(2136), + [anon_sym___stdcall] = ACTIONS(2136), + [anon_sym___fastcall] = ACTIONS(2136), + [anon_sym___thiscall] = ACTIONS(2136), + [anon_sym___vectorcall] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_signed] = ACTIONS(2136), + [anon_sym_unsigned] = ACTIONS(2136), + [anon_sym_long] = ACTIONS(2136), + [anon_sym_short] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_EQ] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_register] = ACTIONS(2136), + [anon_sym_inline] = ACTIONS(2136), + [anon_sym___inline] = ACTIONS(2136), + [anon_sym___inline__] = ACTIONS(2136), + [anon_sym___forceinline] = ACTIONS(2136), + [anon_sym_thread_local] = ACTIONS(2136), + [anon_sym___thread] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_constexpr] = ACTIONS(2136), + [anon_sym_volatile] = ACTIONS(2136), + [anon_sym_restrict] = ACTIONS(2136), + [anon_sym___restrict__] = ACTIONS(2136), + [anon_sym__Atomic] = ACTIONS(2136), + [anon_sym__Noreturn] = ACTIONS(2136), + [anon_sym_noreturn] = ACTIONS(2136), + [anon_sym_mutable] = ACTIONS(2136), + [anon_sym_constinit] = ACTIONS(2136), + [anon_sym_consteval] = ACTIONS(2136), + [sym_primitive_type] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_class] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_else] = ACTIONS(2136), + [anon_sym_switch] = ACTIONS(2136), + [anon_sym_case] = ACTIONS(2136), + [anon_sym_default] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_do] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_return] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_goto] = ACTIONS(2136), + [anon_sym___try] = ACTIONS(2136), + [anon_sym___except] = ACTIONS(2136), + [anon_sym___finally] = ACTIONS(2136), + [anon_sym___leave] = ACTIONS(2136), + [anon_sym_not] = ACTIONS(2136), + [anon_sym_compl] = ACTIONS(2136), + [anon_sym_or] = ACTIONS(2136), + [anon_sym_and] = ACTIONS(2136), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2136), + [anon_sym___alignof__] = ACTIONS(2136), + [anon_sym___alignof] = ACTIONS(2136), + [anon_sym__alignof] = ACTIONS(2136), + [anon_sym_alignof] = ACTIONS(2136), + [anon_sym__Alignof] = ACTIONS(2136), + [anon_sym_offsetof] = ACTIONS(2136), + [anon_sym__Generic] = ACTIONS(2136), + [anon_sym_asm] = ACTIONS(2136), + [anon_sym___asm__] = ACTIONS(2136), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2136), + [sym_false] = ACTIONS(2136), + [anon_sym_NULL] = ACTIONS(2136), + [anon_sym_nullptr] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2136), + [anon_sym_decltype] = ACTIONS(2136), + [anon_sym_final] = ACTIONS(2136), + [anon_sym_override] = ACTIONS(2136), + [anon_sym_virtual] = ACTIONS(2136), + [anon_sym_alignas] = ACTIONS(2136), + [anon_sym_explicit] = ACTIONS(2136), + [anon_sym_typename] = ACTIONS(2136), + [anon_sym_template] = ACTIONS(2136), + [anon_sym_GT2] = ACTIONS(2134), + [anon_sym_operator] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2136), + [anon_sym_delete] = ACTIONS(2136), + [anon_sym_throw] = ACTIONS(2136), + [anon_sym_namespace] = ACTIONS(2136), + [anon_sym_using] = ACTIONS(2136), + [anon_sym_static_assert] = ACTIONS(2136), + [anon_sym_concept] = ACTIONS(2136), + [anon_sym_co_return] = ACTIONS(2136), + [anon_sym_co_yield] = ACTIONS(2136), + [anon_sym_catch] = ACTIONS(2136), [anon_sym_R_DQUOTE] = ACTIONS(2134), [anon_sym_LR_DQUOTE] = ACTIONS(2134), [anon_sym_uR_DQUOTE] = ACTIONS(2134), [anon_sym_UR_DQUOTE] = ACTIONS(2134), [anon_sym_u8R_DQUOTE] = ACTIONS(2134), [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2136), + [anon_sym_requires] = ACTIONS(2136), + [sym_this] = ACTIONS(2136), }, - [153] = { - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2142), - [anon_sym_RPAREN] = ACTIONS(2142), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), + [152] = { + [sym__expression] = STATE(2702), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_initializer_list] = STATE(2788), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [aux_sym_preproc_if_token2] = ACTIONS(2140), + [aux_sym_preproc_else_token1] = ACTIONS(2140), + [aux_sym_preproc_elif_token1] = ACTIONS(2138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2140), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym___cdecl] = ACTIONS(2144), - [anon_sym___clrcall] = ACTIONS(2144), - [anon_sym___stdcall] = ACTIONS(2144), - [anon_sym___fastcall] = ACTIONS(2144), - [anon_sym___thiscall] = ACTIONS(2144), - [anon_sym___vectorcall] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_EQ] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym___try] = ACTIONS(2144), - [anon_sym___except] = ACTIONS(2144), - [anon_sym___finally] = ACTIONS(2144), - [anon_sym___leave] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2144), - [anon_sym_compl] = ACTIONS(2144), - [anon_sym_or] = ACTIONS(2144), - [anon_sym_and] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2144), - [anon_sym___alignof__] = ACTIONS(2144), - [anon_sym___alignof] = ACTIONS(2144), - [anon_sym__alignof] = ACTIONS(2144), - [anon_sym_alignof] = ACTIONS(2144), - [anon_sym__Alignof] = ACTIONS(2144), - [anon_sym_offsetof] = ACTIONS(2144), - [anon_sym__Generic] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym___asm__] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2142), - [anon_sym_L_SQUOTE] = ACTIONS(2142), - [anon_sym_u_SQUOTE] = ACTIONS(2142), - [anon_sym_U_SQUOTE] = ACTIONS(2142), - [anon_sym_u8_SQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_L_DQUOTE] = ACTIONS(2142), - [anon_sym_u_DQUOTE] = ACTIONS(2142), - [anon_sym_U_DQUOTE] = ACTIONS(2142), - [anon_sym_u8_DQUOTE] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [anon_sym_NULL] = ACTIONS(2144), - [anon_sym_nullptr] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_final] = ACTIONS(2144), - [anon_sym_override] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2142), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_delete] = ACTIONS(2144), - [anon_sym_throw] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_concept] = ACTIONS(2144), - [anon_sym_co_return] = ACTIONS(2144), - [anon_sym_co_yield] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_R_DQUOTE] = ACTIONS(2142), - [anon_sym_LR_DQUOTE] = ACTIONS(2142), - [anon_sym_uR_DQUOTE] = ACTIONS(2142), - [anon_sym_UR_DQUOTE] = ACTIONS(2142), - [anon_sym_u8R_DQUOTE] = ACTIONS(2142), - [anon_sym_co_await] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2144), - [anon_sym_requires] = ACTIONS(2144), - [sym_this] = ACTIONS(2144), - }, - [154] = { - [ts_builtin_sym_end] = ACTIONS(2146), - [sym_identifier] = ACTIONS(2148), - [aux_sym_preproc_include_token1] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2146), - [aux_sym_preproc_if_token1] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), - [sym_preproc_directive] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_PIPE_PIPE] = ACTIONS(2146), - [anon_sym_AMP_AMP] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym___extension__] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym___attribute__] = ACTIONS(2148), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2148), - [anon_sym___based] = ACTIONS(2148), - [anon_sym___cdecl] = ACTIONS(2148), - [anon_sym___clrcall] = ACTIONS(2148), - [anon_sym___stdcall] = ACTIONS(2148), - [anon_sym___fastcall] = ACTIONS(2148), - [anon_sym___thiscall] = ACTIONS(2148), - [anon_sym___vectorcall] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2148), - [anon_sym_unsigned] = ACTIONS(2148), - [anon_sym_long] = ACTIONS(2148), - [anon_sym_short] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_EQ] = ACTIONS(2146), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym___inline] = ACTIONS(2148), - [anon_sym___inline__] = ACTIONS(2148), - [anon_sym___forceinline] = ACTIONS(2148), - [anon_sym_thread_local] = ACTIONS(2148), - [anon_sym___thread] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_constexpr] = ACTIONS(2148), - [anon_sym_volatile] = ACTIONS(2148), - [anon_sym_restrict] = ACTIONS(2148), - [anon_sym___restrict__] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(2148), - [anon_sym__Noreturn] = ACTIONS(2148), - [anon_sym_noreturn] = ACTIONS(2148), - [anon_sym_mutable] = ACTIONS(2148), - [anon_sym_constinit] = ACTIONS(2148), - [anon_sym_consteval] = ACTIONS(2148), - [sym_primitive_type] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_class] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_else] = ACTIONS(2148), - [anon_sym_switch] = ACTIONS(2148), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_do] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_goto] = ACTIONS(2148), - [anon_sym___try] = ACTIONS(2148), - [anon_sym___except] = ACTIONS(2148), - [anon_sym___finally] = ACTIONS(2148), - [anon_sym___leave] = ACTIONS(2148), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_or] = ACTIONS(2148), - [anon_sym_and] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2146), - [anon_sym_PLUS_PLUS] = ACTIONS(2146), - [anon_sym_sizeof] = ACTIONS(2148), - [anon_sym___alignof__] = ACTIONS(2148), - [anon_sym___alignof] = ACTIONS(2148), - [anon_sym__alignof] = ACTIONS(2148), - [anon_sym_alignof] = ACTIONS(2148), - [anon_sym__Alignof] = ACTIONS(2148), - [anon_sym_offsetof] = ACTIONS(2148), - [anon_sym__Generic] = ACTIONS(2148), - [anon_sym_asm] = ACTIONS(2148), - [anon_sym___asm__] = ACTIONS(2148), - [sym_number_literal] = ACTIONS(2146), - [anon_sym_L_SQUOTE] = ACTIONS(2146), - [anon_sym_u_SQUOTE] = ACTIONS(2146), - [anon_sym_U_SQUOTE] = ACTIONS(2146), - [anon_sym_u8_SQUOTE] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2146), - [anon_sym_L_DQUOTE] = ACTIONS(2146), - [anon_sym_u_DQUOTE] = ACTIONS(2146), - [anon_sym_U_DQUOTE] = ACTIONS(2146), - [anon_sym_u8_DQUOTE] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym_true] = ACTIONS(2148), - [sym_false] = ACTIONS(2148), - [anon_sym_NULL] = ACTIONS(2148), - [anon_sym_nullptr] = ACTIONS(2148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2148), - [anon_sym_decltype] = ACTIONS(2148), - [anon_sym_final] = ACTIONS(2148), - [anon_sym_override] = ACTIONS(2148), - [anon_sym_virtual] = ACTIONS(2148), - [anon_sym_alignas] = ACTIONS(2148), - [anon_sym_explicit] = ACTIONS(2148), - [anon_sym_typename] = ACTIONS(2148), - [anon_sym_template] = ACTIONS(2148), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_operator] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [anon_sym_delete] = ACTIONS(2148), - [anon_sym_throw] = ACTIONS(2148), - [anon_sym_namespace] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2148), - [anon_sym_static_assert] = ACTIONS(2148), - [anon_sym_concept] = ACTIONS(2148), - [anon_sym_co_return] = ACTIONS(2148), - [anon_sym_co_yield] = ACTIONS(2148), - [anon_sym_catch] = ACTIONS(2148), - [anon_sym_R_DQUOTE] = ACTIONS(2146), - [anon_sym_LR_DQUOTE] = ACTIONS(2146), - [anon_sym_uR_DQUOTE] = ACTIONS(2146), - [anon_sym_UR_DQUOTE] = ACTIONS(2146), - [anon_sym_u8R_DQUOTE] = ACTIONS(2146), - [anon_sym_co_await] = ACTIONS(2148), - [anon_sym_new] = ACTIONS(2148), - [anon_sym_requires] = ACTIONS(2148), - [sym_this] = ACTIONS(2148), - }, - [155] = { - [sym__expression] = STATE(2710), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_initializer_list] = STATE(2773), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_RBRACK] = ACTIONS(2098), - [anon_sym_EQ] = ACTIONS(2096), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_STAR_EQ] = ACTIONS(2098), - [anon_sym_SLASH_EQ] = ACTIONS(2098), - [anon_sym_PERCENT_EQ] = ACTIONS(2098), - [anon_sym_PLUS_EQ] = ACTIONS(2098), - [anon_sym_DASH_EQ] = ACTIONS(2098), - [anon_sym_LT_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_GT_EQ] = ACTIONS(2098), - [anon_sym_AMP_EQ] = ACTIONS(2098), - [anon_sym_CARET_EQ] = ACTIONS(2098), - [anon_sym_PIPE_EQ] = ACTIONS(2098), - [anon_sym_and_eq] = ACTIONS(2096), - [anon_sym_or_eq] = ACTIONS(2096), - [anon_sym_xor_eq] = ACTIONS(2096), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_EQ] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_STAR_EQ] = ACTIONS(2140), + [anon_sym_SLASH_EQ] = ACTIONS(2140), + [anon_sym_PERCENT_EQ] = ACTIONS(2140), + [anon_sym_PLUS_EQ] = ACTIONS(2140), + [anon_sym_DASH_EQ] = ACTIONS(2140), + [anon_sym_LT_LT_EQ] = ACTIONS(2140), + [anon_sym_GT_GT_EQ] = ACTIONS(2140), + [anon_sym_AMP_EQ] = ACTIONS(2140), + [anon_sym_CARET_EQ] = ACTIONS(2140), + [anon_sym_PIPE_EQ] = ACTIONS(2140), + [anon_sym_and_eq] = ACTIONS(2138), + [anon_sym_or_eq] = ACTIONS(2138), + [anon_sym_xor_eq] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [156] = { - [sym__expression] = STATE(3166), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_initializer_list] = STATE(3415), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [aux_sym_preproc_if_token2] = ACTIONS(2098), - [aux_sym_preproc_else_token1] = ACTIONS(2098), - [aux_sym_preproc_elif_token1] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_EQ] = ACTIONS(2096), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_STAR_EQ] = ACTIONS(2098), - [anon_sym_SLASH_EQ] = ACTIONS(2098), - [anon_sym_PERCENT_EQ] = ACTIONS(2098), - [anon_sym_PLUS_EQ] = ACTIONS(2098), - [anon_sym_DASH_EQ] = ACTIONS(2098), - [anon_sym_LT_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_GT_EQ] = ACTIONS(2098), - [anon_sym_AMP_EQ] = ACTIONS(2098), - [anon_sym_CARET_EQ] = ACTIONS(2098), - [anon_sym_PIPE_EQ] = ACTIONS(2098), - [anon_sym_and_eq] = ACTIONS(2096), - [anon_sym_or_eq] = ACTIONS(2096), - [anon_sym_xor_eq] = ACTIONS(2096), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(2184), + [153] = { + [ts_builtin_sym_end] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2184), + [anon_sym_RPAREN] = ACTIONS(2184), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_PIPE_PIPE] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_EQ] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___except] = ACTIONS(2186), + [anon_sym___finally] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_or] = ACTIONS(2186), + [anon_sym_and] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2186), [anon_sym___alignof__] = ACTIONS(2186), [anon_sym___alignof] = ACTIONS(2186), [anon_sym__alignof] = ACTIONS(2186), [anon_sym_alignof] = ACTIONS(2186), [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_final] = ACTIONS(2186), + [anon_sym_override] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_GT2] = ACTIONS(2184), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), + }, + [154] = { + [sym__expression] = STATE(2702), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_initializer_list] = STATE(2788), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2190), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_RBRACK] = ACTIONS(2140), + [anon_sym_EQ] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_STAR_EQ] = ACTIONS(2140), + [anon_sym_SLASH_EQ] = ACTIONS(2140), + [anon_sym_PERCENT_EQ] = ACTIONS(2140), + [anon_sym_PLUS_EQ] = ACTIONS(2140), + [anon_sym_DASH_EQ] = ACTIONS(2140), + [anon_sym_LT_LT_EQ] = ACTIONS(2140), + [anon_sym_GT_GT_EQ] = ACTIONS(2140), + [anon_sym_AMP_EQ] = ACTIONS(2140), + [anon_sym_CARET_EQ] = ACTIONS(2140), + [anon_sym_PIPE_EQ] = ACTIONS(2140), + [anon_sym_and_eq] = ACTIONS(2138), + [anon_sym_or_eq] = ACTIONS(2138), + [anon_sym_xor_eq] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(2204), [anon_sym_R_DQUOTE] = ACTIONS(2206), @@ -112921,78 +112945,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u8R_DQUOTE] = ACTIONS(2206), [anon_sym_co_await] = ACTIONS(2208), [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [155] = { + [sym__expression] = STATE(3206), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_initializer_list] = STATE(3552), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [aux_sym_preproc_if_token2] = ACTIONS(2140), + [aux_sym_preproc_else_token1] = ACTIONS(2140), + [aux_sym_preproc_elif_token1] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_EQ] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_STAR_EQ] = ACTIONS(2140), + [anon_sym_SLASH_EQ] = ACTIONS(2140), + [anon_sym_PERCENT_EQ] = ACTIONS(2140), + [anon_sym_PLUS_EQ] = ACTIONS(2140), + [anon_sym_DASH_EQ] = ACTIONS(2140), + [anon_sym_LT_LT_EQ] = ACTIONS(2140), + [anon_sym_GT_GT_EQ] = ACTIONS(2140), + [anon_sym_AMP_EQ] = ACTIONS(2140), + [anon_sym_CARET_EQ] = ACTIONS(2140), + [anon_sym_PIPE_EQ] = ACTIONS(2140), + [anon_sym_and_eq] = ACTIONS(2138), + [anon_sym_or_eq] = ACTIONS(2138), + [anon_sym_xor_eq] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [156] = { + [sym__expression] = STATE(3404), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_initializer_list] = STATE(3924), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_EQ] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_STAR_EQ] = ACTIONS(2140), + [anon_sym_SLASH_EQ] = ACTIONS(2140), + [anon_sym_PERCENT_EQ] = ACTIONS(2140), + [anon_sym_PLUS_EQ] = ACTIONS(2140), + [anon_sym_DASH_EQ] = ACTIONS(2140), + [anon_sym_LT_LT_EQ] = ACTIONS(2140), + [anon_sym_GT_GT_EQ] = ACTIONS(2140), + [anon_sym_AMP_EQ] = ACTIONS(2140), + [anon_sym_CARET_EQ] = ACTIONS(2140), + [anon_sym_PIPE_EQ] = ACTIONS(2140), + [anon_sym_and_eq] = ACTIONS(2138), + [anon_sym_or_eq] = ACTIONS(2138), + [anon_sym_xor_eq] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [anon_sym_DASH_GT_STAR] = ACTIONS(2140), + [sym_this] = ACTIONS(2112), }, [157] = { - [sym_attribute_declaration] = STATE(163), - [sym_compound_statement] = STATE(719), - [sym_attributed_statement] = STATE(719), - [sym_labeled_statement] = STATE(719), - [sym_expression_statement] = STATE(719), - [sym_if_statement] = STATE(719), - [sym_switch_statement] = STATE(719), - [sym_case_statement] = STATE(719), - [sym_while_statement] = STATE(719), - [sym_do_statement] = STATE(719), - [sym_for_statement] = STATE(719), - [sym_return_statement] = STATE(719), - [sym_break_statement] = STATE(719), - [sym_continue_statement] = STATE(719), - [sym_goto_statement] = STATE(719), - [sym_seh_try_statement] = STATE(719), - [sym_seh_leave_statement] = STATE(719), - [sym__expression] = STATE(4835), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), + [sym_attribute_declaration] = STATE(227), + [sym_compound_statement] = STATE(671), + [sym_attributed_statement] = STATE(671), + [sym_labeled_statement] = STATE(671), + [sym_expression_statement] = STATE(671), + [sym_if_statement] = STATE(671), + [sym_switch_statement] = STATE(671), + [sym_case_statement] = STATE(671), + [sym_while_statement] = STATE(671), + [sym_do_statement] = STATE(671), + [sym_for_statement] = STATE(671), + [sym_return_statement] = STATE(671), + [sym_break_statement] = STATE(671), + [sym_continue_statement] = STATE(671), + [sym_goto_statement] = STATE(671), + [sym_seh_try_statement] = STATE(671), + [sym_seh_leave_statement] = STATE(671), + [sym__expression] = STATE(4830), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), [sym_initializer_list] = STATE(8107), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(719), - [sym_co_return_statement] = STATE(719), - [sym_co_yield_statement] = STATE(719), - [sym_throw_statement] = STATE(719), - [sym_try_statement] = STATE(719), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(2214), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(671), + [sym_co_return_statement] = STATE(671), + [sym_co_yield_statement] = STATE(671), + [sym_throw_statement] = STATE(671), + [sym_try_statement] = STATE(671), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(2258), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -113005,7 +113314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_if] = ACTIONS(189), [anon_sym_switch] = ACTIONS(191), [anon_sym_case] = ACTIONS(193), @@ -113049,7 +113358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), @@ -113067,357 +113376,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [158] = { - [sym__expression] = STATE(3543), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_initializer_list] = STATE(3925), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_EQ] = ACTIONS(2096), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_STAR_EQ] = ACTIONS(2098), - [anon_sym_SLASH_EQ] = ACTIONS(2098), - [anon_sym_PERCENT_EQ] = ACTIONS(2098), - [anon_sym_PLUS_EQ] = ACTIONS(2098), - [anon_sym_DASH_EQ] = ACTIONS(2098), - [anon_sym_LT_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_GT_EQ] = ACTIONS(2098), - [anon_sym_AMP_EQ] = ACTIONS(2098), - [anon_sym_CARET_EQ] = ACTIONS(2098), - [anon_sym_PIPE_EQ] = ACTIONS(2098), - [anon_sym_and_eq] = ACTIONS(2096), - [anon_sym_or_eq] = ACTIONS(2096), - [anon_sym_xor_eq] = ACTIONS(2096), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2096), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym__expression] = STATE(2702), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_initializer_list] = STATE(2788), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_EQ] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_STAR_EQ] = ACTIONS(2140), + [anon_sym_SLASH_EQ] = ACTIONS(2140), + [anon_sym_PERCENT_EQ] = ACTIONS(2140), + [anon_sym_PLUS_EQ] = ACTIONS(2140), + [anon_sym_DASH_EQ] = ACTIONS(2140), + [anon_sym_LT_LT_EQ] = ACTIONS(2140), + [anon_sym_GT_GT_EQ] = ACTIONS(2140), + [anon_sym_AMP_EQ] = ACTIONS(2140), + [anon_sym_CARET_EQ] = ACTIONS(2140), + [anon_sym_PIPE_EQ] = ACTIONS(2140), + [anon_sym_and_eq] = ACTIONS(2138), + [anon_sym_or_eq] = ACTIONS(2138), + [anon_sym_xor_eq] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [anon_sym_DASH_GT_STAR] = ACTIONS(2098), - [sym_this] = ACTIONS(2246), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, [159] = { - [sym__expression] = STATE(2710), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_initializer_list] = STATE(2773), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym___attribute__] = ACTIONS(2096), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_EQ] = ACTIONS(2096), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_STAR_EQ] = ACTIONS(2098), - [anon_sym_SLASH_EQ] = ACTIONS(2098), - [anon_sym_PERCENT_EQ] = ACTIONS(2098), - [anon_sym_PLUS_EQ] = ACTIONS(2098), - [anon_sym_DASH_EQ] = ACTIONS(2098), - [anon_sym_LT_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_GT_EQ] = ACTIONS(2098), - [anon_sym_AMP_EQ] = ACTIONS(2098), - [anon_sym_CARET_EQ] = ACTIONS(2098), - [anon_sym_PIPE_EQ] = ACTIONS(2098), - [anon_sym_and_eq] = ACTIONS(2096), - [anon_sym_or_eq] = ACTIONS(2096), - [anon_sym_xor_eq] = ACTIONS(2096), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [160] = { - [sym_attribute_declaration] = STATE(163), - [sym_compound_statement] = STATE(585), - [sym_attributed_statement] = STATE(585), - [sym_labeled_statement] = STATE(585), - [sym_expression_statement] = STATE(585), - [sym_if_statement] = STATE(585), - [sym_switch_statement] = STATE(585), - [sym_case_statement] = STATE(585), - [sym_while_statement] = STATE(585), - [sym_do_statement] = STATE(585), - [sym_for_statement] = STATE(585), - [sym_return_statement] = STATE(585), - [sym_break_statement] = STATE(585), - [sym_continue_statement] = STATE(585), - [sym_goto_statement] = STATE(585), - [sym_seh_try_statement] = STATE(585), - [sym_seh_leave_statement] = STATE(585), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(585), - [sym_co_return_statement] = STATE(585), - [sym_co_yield_statement] = STATE(585), - [sym_throw_statement] = STATE(585), - [sym_try_statement] = STATE(585), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(2214), + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(8884), + [sym_attributed_statement] = STATE(8884), + [sym_labeled_statement] = STATE(8884), + [sym_expression_statement] = STATE(8884), + [sym_if_statement] = STATE(8884), + [sym_switch_statement] = STATE(8884), + [sym_case_statement] = STATE(8884), + [sym_while_statement] = STATE(8884), + [sym_do_statement] = STATE(8884), + [sym_for_statement] = STATE(8884), + [sym_return_statement] = STATE(8884), + [sym_break_statement] = STATE(8884), + [sym_continue_statement] = STATE(8884), + [sym_goto_statement] = STATE(8884), + [sym_seh_try_statement] = STATE(8884), + [sym_seh_leave_statement] = STATE(8884), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(8884), + [sym_co_return_statement] = STATE(8884), + [sym_co_yield_statement] = STATE(8884), + [sym_throw_statement] = STATE(8884), + [sym_try_statement] = STATE(8884), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -113428,21 +113595,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(189), - [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(193), - [anon_sym_default] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_do] = ACTIONS(199), - [anon_sym_for] = ACTIONS(201), - [anon_sym_return] = ACTIONS(203), - [anon_sym_break] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_goto] = ACTIONS(209), - [anon_sym___try] = ACTIONS(211), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(2296), [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -113474,13 +113641,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(221), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(223), - [anon_sym_co_return] = ACTIONS(233), - [anon_sym_co_yield] = ACTIONS(235), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [160] = { + [sym_attribute_declaration] = STATE(215), + [sym_compound_statement] = STATE(618), + [sym_attributed_statement] = STATE(618), + [sym_labeled_statement] = STATE(618), + [sym_expression_statement] = STATE(618), + [sym_if_statement] = STATE(618), + [sym_switch_statement] = STATE(618), + [sym_case_statement] = STATE(618), + [sym_while_statement] = STATE(618), + [sym_do_statement] = STATE(618), + [sym_for_statement] = STATE(618), + [sym_return_statement] = STATE(618), + [sym_break_statement] = STATE(618), + [sym_continue_statement] = STATE(618), + [sym_goto_statement] = STATE(618), + [sym_seh_try_statement] = STATE(618), + [sym_seh_leave_statement] = STATE(618), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(618), + [sym_co_return_statement] = STATE(618), + [sym_co_yield_statement] = STATE(618), + [sym_throw_statement] = STATE(618), + [sym_try_statement] = STATE(618), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(2298), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(1754), + [anon_sym___leave] = ACTIONS(1756), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_try] = ACTIONS(133), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -113492,73 +113800,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [161] = { - [sym_attribute_declaration] = STATE(211), - [sym_compound_statement] = STATE(1181), - [sym_attributed_statement] = STATE(1179), - [sym_labeled_statement] = STATE(1177), - [sym_expression_statement] = STATE(1175), - [sym_if_statement] = STATE(1173), - [sym_switch_statement] = STATE(1171), - [sym_case_statement] = STATE(1170), - [sym_while_statement] = STATE(1169), - [sym_do_statement] = STATE(1168), - [sym_for_statement] = STATE(1167), - [sym_return_statement] = STATE(1166), - [sym_break_statement] = STATE(1165), - [sym_continue_statement] = STATE(1164), - [sym_goto_statement] = STATE(1163), - [sym_seh_try_statement] = STATE(1162), - [sym_seh_leave_statement] = STATE(1161), - [sym__expression] = STATE(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(1160), - [sym_co_return_statement] = STATE(1159), - [sym_co_yield_statement] = STATE(1157), - [sym_throw_statement] = STATE(1155), - [sym_try_statement] = STATE(1154), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(2282), + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [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(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(2298), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -113566,25 +113874,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1892), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym___try] = ACTIONS(1908), - [anon_sym___leave] = ACTIONS(1910), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(1754), + [anon_sym___leave] = ACTIONS(1756), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -113615,13 +113923,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1912), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1914), - [anon_sym_co_return] = ACTIONS(1916), - [anon_sym_co_yield] = ACTIONS(1918), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -113633,73 +113941,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [162] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(484), - [sym_attributed_statement] = STATE(484), - [sym_labeled_statement] = STATE(484), - [sym_expression_statement] = STATE(484), - [sym_if_statement] = STATE(484), - [sym_switch_statement] = STATE(484), - [sym_case_statement] = STATE(484), - [sym_while_statement] = STATE(484), - [sym_do_statement] = STATE(484), - [sym_for_statement] = STATE(484), - [sym_return_statement] = STATE(484), - [sym_break_statement] = STATE(484), - [sym_continue_statement] = STATE(484), - [sym_goto_statement] = STATE(484), - [sym_seh_try_statement] = STATE(484), - [sym_seh_leave_statement] = STATE(484), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(484), - [sym_co_return_statement] = STATE(484), - [sym_co_yield_statement] = STATE(484), - [sym_throw_statement] = STATE(484), - [sym_try_statement] = STATE(484), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2288), + [sym_attribute_declaration] = STATE(183), + [sym_compound_statement] = STATE(553), + [sym_attributed_statement] = STATE(553), + [sym_labeled_statement] = STATE(553), + [sym_expression_statement] = STATE(553), + [sym_if_statement] = STATE(553), + [sym_switch_statement] = STATE(553), + [sym_case_statement] = STATE(553), + [sym_while_statement] = STATE(553), + [sym_do_statement] = STATE(553), + [sym_for_statement] = STATE(553), + [sym_return_statement] = STATE(553), + [sym_break_statement] = STATE(553), + [sym_continue_statement] = STATE(553), + [sym_goto_statement] = STATE(553), + [sym_seh_try_statement] = STATE(553), + [sym_seh_leave_statement] = STATE(553), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(553), + [sym_co_return_statement] = STATE(553), + [sym_co_yield_statement] = STATE(553), + [sym_throw_statement] = STATE(553), + [sym_try_statement] = STATE(553), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(2300), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -113707,25 +114015,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(1104), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(1112), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(383), - [anon_sym_switch] = ACTIONS(385), - [anon_sym_case] = ACTIONS(387), - [anon_sym_default] = ACTIONS(389), - [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_goto] = ACTIONS(403), - [anon_sym___try] = ACTIONS(405), - [anon_sym___leave] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -113756,13 +114064,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(411), + [anon_sym_try] = ACTIONS(1144), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(413), - [anon_sym_co_return] = ACTIONS(423), - [anon_sym_co_yield] = ACTIONS(425), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -113774,73 +114082,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [163] = { - [sym_attribute_declaration] = STATE(180), - [sym_compound_statement] = STATE(656), - [sym_attributed_statement] = STATE(656), - [sym_labeled_statement] = STATE(656), - [sym_expression_statement] = STATE(656), - [sym_if_statement] = STATE(656), - [sym_switch_statement] = STATE(656), - [sym_case_statement] = STATE(656), - [sym_while_statement] = STATE(656), - [sym_do_statement] = STATE(656), - [sym_for_statement] = STATE(656), - [sym_return_statement] = STATE(656), - [sym_break_statement] = STATE(656), - [sym_continue_statement] = STATE(656), - [sym_goto_statement] = STATE(656), - [sym_seh_try_statement] = STATE(656), - [sym_seh_leave_statement] = STATE(656), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(656), - [sym_co_return_statement] = STATE(656), - [sym_co_yield_statement] = STATE(656), - [sym_throw_statement] = STATE(656), - [sym_try_statement] = STATE(656), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(180), - [sym_identifier] = ACTIONS(2214), + [sym_attribute_declaration] = STATE(227), + [sym_compound_statement] = STATE(554), + [sym_attributed_statement] = STATE(554), + [sym_labeled_statement] = STATE(554), + [sym_expression_statement] = STATE(554), + [sym_if_statement] = STATE(554), + [sym_switch_statement] = STATE(554), + [sym_case_statement] = STATE(554), + [sym_while_statement] = STATE(554), + [sym_do_statement] = STATE(554), + [sym_for_statement] = STATE(554), + [sym_return_statement] = STATE(554), + [sym_break_statement] = STATE(554), + [sym_continue_statement] = STATE(554), + [sym_goto_statement] = STATE(554), + [sym_seh_try_statement] = STATE(554), + [sym_seh_leave_statement] = STATE(554), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(554), + [sym_co_return_statement] = STATE(554), + [sym_co_yield_statement] = STATE(554), + [sym_throw_statement] = STATE(554), + [sym_try_statement] = STATE(554), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(2258), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -113851,9 +114159,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_if] = ACTIONS(189), [anon_sym_switch] = ACTIONS(191), [anon_sym_case] = ACTIONS(193), @@ -113897,7 +114205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), @@ -113915,73 +114223,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [164] = { - [sym_attribute_declaration] = STATE(211), - [sym_compound_statement] = STATE(1112), - [sym_attributed_statement] = STATE(1112), - [sym_labeled_statement] = STATE(1112), - [sym_expression_statement] = STATE(1112), - [sym_if_statement] = STATE(1112), - [sym_switch_statement] = STATE(1112), - [sym_case_statement] = STATE(1112), - [sym_while_statement] = STATE(1112), - [sym_do_statement] = STATE(1112), - [sym_for_statement] = STATE(1112), - [sym_return_statement] = STATE(1112), - [sym_break_statement] = STATE(1112), - [sym_continue_statement] = STATE(1112), - [sym_goto_statement] = STATE(1112), - [sym_seh_try_statement] = STATE(1112), - [sym_seh_leave_statement] = STATE(1112), - [sym__expression] = STATE(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(1112), - [sym_co_return_statement] = STATE(1112), - [sym_co_yield_statement] = STATE(1112), - [sym_throw_statement] = STATE(1112), - [sym_try_statement] = STATE(1112), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(2282), + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(339), + [sym_attributed_statement] = STATE(296), + [sym_labeled_statement] = STATE(293), + [sym_expression_statement] = STATE(292), + [sym_if_statement] = STATE(283), + [sym_switch_statement] = STATE(273), + [sym_case_statement] = STATE(280), + [sym_while_statement] = STATE(284), + [sym_do_statement] = STATE(285), + [sym_for_statement] = STATE(295), + [sym_return_statement] = STATE(300), + [sym_break_statement] = STATE(326), + [sym_continue_statement] = STATE(341), + [sym_goto_statement] = STATE(303), + [sym_seh_try_statement] = STATE(336), + [sym_seh_leave_statement] = STATE(299), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(301), + [sym_co_return_statement] = STATE(304), + [sym_co_yield_statement] = STATE(305), + [sym_throw_statement] = STATE(308), + [sym_try_statement] = STATE(309), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2302), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -113989,25 +114297,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(283), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1892), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym___try] = ACTIONS(1908), - [anon_sym___leave] = ACTIONS(1910), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(295), + [anon_sym_switch] = ACTIONS(297), + [anon_sym_case] = ACTIONS(299), + [anon_sym_default] = ACTIONS(301), + [anon_sym_while] = ACTIONS(303), + [anon_sym_do] = ACTIONS(305), + [anon_sym_for] = ACTIONS(307), + [anon_sym_return] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_goto] = ACTIONS(315), + [anon_sym___try] = ACTIONS(317), + [anon_sym___leave] = ACTIONS(319), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -114038,13 +114346,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1912), + [anon_sym_try] = ACTIONS(323), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1914), - [anon_sym_co_return] = ACTIONS(1916), - [anon_sym_co_yield] = ACTIONS(1918), + [anon_sym_throw] = ACTIONS(325), + [anon_sym_co_return] = ACTIONS(335), + [anon_sym_co_yield] = ACTIONS(337), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -114056,73 +114364,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [165] = { - [sym_attribute_declaration] = STATE(211), - [sym_compound_statement] = STATE(1105), - [sym_attributed_statement] = STATE(1105), - [sym_labeled_statement] = STATE(1105), - [sym_expression_statement] = STATE(1105), - [sym_if_statement] = STATE(1105), - [sym_switch_statement] = STATE(1105), - [sym_case_statement] = STATE(1105), - [sym_while_statement] = STATE(1105), - [sym_do_statement] = STATE(1105), - [sym_for_statement] = STATE(1105), - [sym_return_statement] = STATE(1105), - [sym_break_statement] = STATE(1105), - [sym_continue_statement] = STATE(1105), - [sym_goto_statement] = STATE(1105), - [sym_seh_try_statement] = STATE(1105), - [sym_seh_leave_statement] = STATE(1105), - [sym__expression] = STATE(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(1105), - [sym_co_return_statement] = STATE(1105), - [sym_co_yield_statement] = STATE(1105), - [sym_throw_statement] = STATE(1105), - [sym_try_statement] = STATE(1105), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(2282), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1181), + [sym_attributed_statement] = STATE(1181), + [sym_labeled_statement] = STATE(1181), + [sym_expression_statement] = STATE(1181), + [sym_if_statement] = STATE(1181), + [sym_switch_statement] = STATE(1181), + [sym_case_statement] = STATE(1181), + [sym_while_statement] = STATE(1181), + [sym_do_statement] = STATE(1181), + [sym_for_statement] = STATE(1181), + [sym_return_statement] = STATE(1181), + [sym_break_statement] = STATE(1181), + [sym_continue_statement] = STATE(1181), + [sym_goto_statement] = STATE(1181), + [sym_seh_try_statement] = STATE(1181), + [sym_seh_leave_statement] = STATE(1181), + [sym__expression] = STATE(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(1181), + [sym_co_return_statement] = STATE(1181), + [sym_co_yield_statement] = STATE(1181), + [sym_throw_statement] = STATE(1181), + [sym_try_statement] = STATE(1181), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(2304), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -114135,11 +114443,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(1888), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_if] = ACTIONS(1890), [anon_sym_switch] = ACTIONS(1892), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), [anon_sym_while] = ACTIONS(1894), [anon_sym_do] = ACTIONS(1896), [anon_sym_for] = ACTIONS(1898), @@ -114179,7 +114487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(1912), [anon_sym_delete] = ACTIONS(135), @@ -114197,214 +114505,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [166] = { - [sym__expression] = STATE(3621), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_initializer_list] = STATE(3983), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2096), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_EQ] = ACTIONS(2096), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_STAR_EQ] = ACTIONS(2098), - [anon_sym_SLASH_EQ] = ACTIONS(2098), - [anon_sym_PERCENT_EQ] = ACTIONS(2098), - [anon_sym_PLUS_EQ] = ACTIONS(2098), - [anon_sym_DASH_EQ] = ACTIONS(2098), - [anon_sym_LT_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_GT_EQ] = ACTIONS(2096), - [anon_sym_AMP_EQ] = ACTIONS(2098), - [anon_sym_CARET_EQ] = ACTIONS(2098), - [anon_sym_PIPE_EQ] = ACTIONS(2098), - [anon_sym_and_eq] = ACTIONS(2096), - [anon_sym_or_eq] = ACTIONS(2096), - [anon_sym_xor_eq] = ACTIONS(2096), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(2098), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [167] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2288), + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(313), + [sym_attributed_statement] = STATE(314), + [sym_labeled_statement] = STATE(320), + [sym_expression_statement] = STATE(321), + [sym_if_statement] = STATE(338), + [sym_switch_statement] = STATE(291), + [sym_case_statement] = STATE(288), + [sym_while_statement] = STATE(287), + [sym_do_statement] = STATE(274), + [sym_for_statement] = STATE(275), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(282), + [sym_continue_statement] = STATE(294), + [sym_goto_statement] = STATE(297), + [sym_seh_try_statement] = STATE(298), + [sym_seh_leave_statement] = STATE(302), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(272), + [sym_co_return_statement] = STATE(306), + [sym_co_yield_statement] = STATE(323), + [sym_throw_statement] = STATE(334), + [sym_try_statement] = STATE(331), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2302), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -114412,25 +114579,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(283), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(383), - [anon_sym_switch] = ACTIONS(385), - [anon_sym_case] = ACTIONS(387), - [anon_sym_default] = ACTIONS(389), - [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_goto] = ACTIONS(403), - [anon_sym___try] = ACTIONS(405), - [anon_sym___leave] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(295), + [anon_sym_switch] = ACTIONS(297), + [anon_sym_case] = ACTIONS(299), + [anon_sym_default] = ACTIONS(301), + [anon_sym_while] = ACTIONS(303), + [anon_sym_do] = ACTIONS(305), + [anon_sym_for] = ACTIONS(307), + [anon_sym_return] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_goto] = ACTIONS(315), + [anon_sym___try] = ACTIONS(317), + [anon_sym___leave] = ACTIONS(319), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -114461,13 +114628,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(411), + [anon_sym_try] = ACTIONS(323), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(413), - [anon_sym_co_return] = ACTIONS(423), - [anon_sym_co_yield] = ACTIONS(425), + [anon_sym_throw] = ACTIONS(325), + [anon_sym_co_return] = ACTIONS(335), + [anon_sym_co_yield] = ACTIONS(337), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -114478,74 +114645,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [168] = { - [sym_attribute_declaration] = STATE(211), - [sym_compound_statement] = STATE(1153), - [sym_attributed_statement] = STATE(1152), - [sym_labeled_statement] = STATE(1151), - [sym_expression_statement] = STATE(1149), - [sym_if_statement] = STATE(1148), - [sym_switch_statement] = STATE(1110), - [sym_case_statement] = STATE(1145), - [sym_while_statement] = STATE(1144), - [sym_do_statement] = STATE(1143), - [sym_for_statement] = STATE(1142), - [sym_return_statement] = STATE(1139), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1137), - [sym_goto_statement] = STATE(1136), - [sym_seh_try_statement] = STATE(1133), - [sym_seh_leave_statement] = STATE(1131), - [sym__expression] = STATE(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(1130), - [sym_co_return_statement] = STATE(1128), - [sym_co_yield_statement] = STATE(1127), - [sym_throw_statement] = STATE(1126), - [sym_try_statement] = STATE(1122), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(2282), + [167] = { + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(7875), + [sym_attributed_statement] = STATE(7875), + [sym_labeled_statement] = STATE(7875), + [sym_expression_statement] = STATE(7875), + [sym_if_statement] = STATE(7875), + [sym_switch_statement] = STATE(7875), + [sym_case_statement] = STATE(7875), + [sym_while_statement] = STATE(7875), + [sym_do_statement] = STATE(7875), + [sym_for_statement] = STATE(7875), + [sym_return_statement] = STATE(7875), + [sym_break_statement] = STATE(7875), + [sym_continue_statement] = STATE(7875), + [sym_goto_statement] = STATE(7875), + [sym_seh_try_statement] = STATE(7875), + [sym_seh_leave_statement] = STATE(7875), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(7875), + [sym_co_return_statement] = STATE(7875), + [sym_co_yield_statement] = STATE(7875), + [sym_throw_statement] = STATE(7875), + [sym_try_statement] = STATE(7875), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -114553,25 +114720,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1892), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym___try] = ACTIONS(1908), - [anon_sym___leave] = ACTIONS(1910), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(2296), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -114602,13 +114769,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1912), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1914), - [anon_sym_co_return] = ACTIONS(1916), - [anon_sym_co_yield] = ACTIONS(1918), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -114619,74 +114786,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [169] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(361), - [sym_attributed_statement] = STATE(361), - [sym_labeled_statement] = STATE(361), - [sym_expression_statement] = STATE(361), - [sym_if_statement] = STATE(361), - [sym_switch_statement] = STATE(361), - [sym_case_statement] = STATE(361), - [sym_while_statement] = STATE(361), - [sym_do_statement] = STATE(361), - [sym_for_statement] = STATE(361), - [sym_return_statement] = STATE(361), - [sym_break_statement] = STATE(361), - [sym_continue_statement] = STATE(361), - [sym_goto_statement] = STATE(361), - [sym_seh_try_statement] = STATE(361), - [sym_seh_leave_statement] = STATE(361), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(361), - [sym_co_return_statement] = STATE(361), - [sym_co_yield_statement] = STATE(361), - [sym_throw_statement] = STATE(361), - [sym_try_statement] = STATE(361), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2288), + [168] = { + [sym_attribute_declaration] = STATE(227), + [sym_compound_statement] = STATE(623), + [sym_attributed_statement] = STATE(633), + [sym_labeled_statement] = STATE(648), + [sym_expression_statement] = STATE(652), + [sym_if_statement] = STATE(827), + [sym_switch_statement] = STATE(825), + [sym_case_statement] = STATE(823), + [sym_while_statement] = STATE(816), + [sym_do_statement] = STATE(810), + [sym_for_statement] = STATE(803), + [sym_return_statement] = STATE(802), + [sym_break_statement] = STATE(801), + [sym_continue_statement] = STATE(800), + [sym_goto_statement] = STATE(799), + [sym_seh_try_statement] = STATE(599), + [sym_seh_leave_statement] = STATE(772), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(771), + [sym_co_return_statement] = STATE(749), + [sym_co_yield_statement] = STATE(747), + [sym_throw_statement] = STATE(741), + [sym_try_statement] = STATE(739), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(2258), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -114694,25 +114861,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(383), - [anon_sym_switch] = ACTIONS(385), - [anon_sym_case] = ACTIONS(387), - [anon_sym_default] = ACTIONS(389), - [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_goto] = ACTIONS(403), - [anon_sym___try] = ACTIONS(405), - [anon_sym___leave] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym___try] = ACTIONS(211), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -114743,13 +114910,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(411), + [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(413), - [anon_sym_co_return] = ACTIONS(423), - [anon_sym_co_yield] = ACTIONS(425), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_co_return] = ACTIONS(233), + [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -114760,215 +114927,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [170] = { - [sym_attribute_declaration] = STATE(170), - [sym_compound_statement] = STATE(806), - [sym_attributed_statement] = STATE(806), - [sym_labeled_statement] = STATE(806), - [sym_expression_statement] = STATE(806), - [sym_if_statement] = STATE(806), - [sym_switch_statement] = STATE(806), - [sym_case_statement] = STATE(806), - [sym_while_statement] = STATE(806), - [sym_do_statement] = STATE(806), - [sym_for_statement] = STATE(806), - [sym_return_statement] = STATE(806), - [sym_break_statement] = STATE(806), - [sym_continue_statement] = STATE(806), - [sym_goto_statement] = STATE(806), - [sym_seh_try_statement] = STATE(806), - [sym_seh_leave_statement] = STATE(806), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(806), - [sym_co_return_statement] = STATE(806), - [sym_co_yield_statement] = STATE(806), - [sym_throw_statement] = STATE(806), - [sym_try_statement] = STATE(806), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(2332), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2356), - [anon_sym_LBRACK] = ACTIONS(2359), - [sym_primitive_type] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_switch] = ACTIONS(2368), - [anon_sym_case] = ACTIONS(2371), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_do] = ACTIONS(2380), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2392), - [anon_sym_goto] = ACTIONS(2395), - [anon_sym___try] = ACTIONS(2398), - [anon_sym___leave] = ACTIONS(2401), - [anon_sym_not] = ACTIONS(2341), - [anon_sym_compl] = ACTIONS(2341), - [anon_sym_DASH_DASH] = ACTIONS(2404), - [anon_sym_PLUS_PLUS] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2407), - [anon_sym___alignof__] = ACTIONS(2410), - [anon_sym___alignof] = ACTIONS(2410), - [anon_sym__alignof] = ACTIONS(2410), - [anon_sym_alignof] = ACTIONS(2410), - [anon_sym__Alignof] = ACTIONS(2410), - [anon_sym_offsetof] = ACTIONS(2413), - [anon_sym__Generic] = ACTIONS(2416), - [anon_sym_asm] = ACTIONS(2419), - [anon_sym___asm__] = ACTIONS(2419), - [sym_number_literal] = ACTIONS(2422), - [anon_sym_L_SQUOTE] = ACTIONS(2425), - [anon_sym_u_SQUOTE] = ACTIONS(2425), - [anon_sym_U_SQUOTE] = ACTIONS(2425), - [anon_sym_u8_SQUOTE] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [anon_sym_L_DQUOTE] = ACTIONS(2428), - [anon_sym_u_DQUOTE] = ACTIONS(2428), - [anon_sym_U_DQUOTE] = ACTIONS(2428), - [anon_sym_u8_DQUOTE] = ACTIONS(2428), - [anon_sym_DQUOTE] = ACTIONS(2428), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [anon_sym_NULL] = ACTIONS(2434), - [anon_sym_nullptr] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2437), - [anon_sym_template] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_delete] = ACTIONS(2446), - [anon_sym_throw] = ACTIONS(2449), - [anon_sym_co_return] = ACTIONS(2452), - [anon_sym_co_yield] = ACTIONS(2455), - [anon_sym_R_DQUOTE] = ACTIONS(2458), - [anon_sym_LR_DQUOTE] = ACTIONS(2458), - [anon_sym_uR_DQUOTE] = ACTIONS(2458), - [anon_sym_UR_DQUOTE] = ACTIONS(2458), - [anon_sym_u8R_DQUOTE] = ACTIONS(2458), - [anon_sym_co_await] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_requires] = ACTIONS(2467), - [sym_this] = ACTIONS(2431), - }, - [171] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(240), - [sym_attributed_statement] = STATE(240), - [sym_labeled_statement] = STATE(240), - [sym_expression_statement] = STATE(240), - [sym_if_statement] = STATE(240), - [sym_switch_statement] = STATE(240), - [sym_case_statement] = STATE(240), - [sym_while_statement] = STATE(240), - [sym_do_statement] = STATE(240), - [sym_for_statement] = STATE(240), - [sym_return_statement] = STATE(240), - [sym_break_statement] = STATE(240), - [sym_continue_statement] = STATE(240), - [sym_goto_statement] = STATE(240), - [sym_seh_try_statement] = STATE(240), - [sym_seh_leave_statement] = STATE(240), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(240), - [sym_co_return_statement] = STATE(240), - [sym_co_yield_statement] = STATE(240), - [sym_throw_statement] = STATE(240), - [sym_try_statement] = STATE(240), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2470), + [169] = { + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(604), + [sym_attributed_statement] = STATE(604), + [sym_labeled_statement] = STATE(604), + [sym_expression_statement] = STATE(604), + [sym_if_statement] = STATE(604), + [sym_switch_statement] = STATE(604), + [sym_case_statement] = STATE(604), + [sym_while_statement] = STATE(604), + [sym_do_statement] = STATE(604), + [sym_for_statement] = STATE(604), + [sym_return_statement] = STATE(604), + [sym_break_statement] = STATE(604), + [sym_continue_statement] = STATE(604), + [sym_goto_statement] = STATE(604), + [sym_seh_try_statement] = STATE(604), + [sym_seh_leave_statement] = STATE(604), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(604), + [sym_co_return_statement] = STATE(604), + [sym_co_yield_statement] = STATE(604), + [sym_throw_statement] = STATE(604), + [sym_try_statement] = STATE(604), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -114976,25 +115002,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(295), - [anon_sym_switch] = ACTIONS(297), - [anon_sym_case] = ACTIONS(299), - [anon_sym_default] = ACTIONS(301), - [anon_sym_while] = ACTIONS(303), - [anon_sym_do] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_return] = ACTIONS(309), - [anon_sym_break] = ACTIONS(311), - [anon_sym_continue] = ACTIONS(313), - [anon_sym_goto] = ACTIONS(315), - [anon_sym___try] = ACTIONS(317), - [anon_sym___leave] = ACTIONS(319), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(2296), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -115025,13 +115051,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(323), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(325), - [anon_sym_co_return] = ACTIONS(335), - [anon_sym_co_yield] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -115042,74 +115068,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [172] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(265), - [sym_attributed_statement] = STATE(265), - [sym_labeled_statement] = STATE(265), - [sym_expression_statement] = STATE(265), - [sym_if_statement] = STATE(265), - [sym_switch_statement] = STATE(265), - [sym_case_statement] = STATE(265), - [sym_while_statement] = STATE(265), - [sym_do_statement] = STATE(265), - [sym_for_statement] = STATE(265), - [sym_return_statement] = STATE(265), - [sym_break_statement] = STATE(265), - [sym_continue_statement] = STATE(265), - [sym_goto_statement] = STATE(265), - [sym_seh_try_statement] = STATE(265), - [sym_seh_leave_statement] = STATE(265), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(265), - [sym_co_return_statement] = STATE(265), - [sym_co_yield_statement] = STATE(265), - [sym_throw_statement] = STATE(265), - [sym_try_statement] = STATE(265), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2470), + [170] = { + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1157), + [sym_attributed_statement] = STATE(1157), + [sym_labeled_statement] = STATE(1157), + [sym_expression_statement] = STATE(1157), + [sym_if_statement] = STATE(1157), + [sym_switch_statement] = STATE(1157), + [sym_case_statement] = STATE(1157), + [sym_while_statement] = STATE(1157), + [sym_do_statement] = STATE(1157), + [sym_for_statement] = STATE(1157), + [sym_return_statement] = STATE(1157), + [sym_break_statement] = STATE(1157), + [sym_continue_statement] = STATE(1157), + [sym_goto_statement] = STATE(1157), + [sym_seh_try_statement] = STATE(1157), + [sym_seh_leave_statement] = STATE(1157), + [sym__expression] = STATE(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(1157), + [sym_co_return_statement] = STATE(1157), + [sym_co_yield_statement] = STATE(1157), + [sym_throw_statement] = STATE(1157), + [sym_try_statement] = STATE(1157), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(2304), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -115117,25 +115143,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(1882), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1888), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(295), - [anon_sym_switch] = ACTIONS(297), - [anon_sym_case] = ACTIONS(299), - [anon_sym_default] = ACTIONS(301), - [anon_sym_while] = ACTIONS(303), - [anon_sym_do] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_return] = ACTIONS(309), - [anon_sym_break] = ACTIONS(311), - [anon_sym_continue] = ACTIONS(313), - [anon_sym_goto] = ACTIONS(315), - [anon_sym___try] = ACTIONS(317), - [anon_sym___leave] = ACTIONS(319), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1906), + [anon_sym___try] = ACTIONS(1908), + [anon_sym___leave] = ACTIONS(1910), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -115166,13 +115192,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(323), + [anon_sym_try] = ACTIONS(1912), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(325), - [anon_sym_co_return] = ACTIONS(335), - [anon_sym_co_yield] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1914), + [anon_sym_co_return] = ACTIONS(1916), + [anon_sym_co_yield] = ACTIONS(1918), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -115183,74 +115209,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [173] = { - [sym_attribute_declaration] = STATE(178), - [sym_compound_statement] = STATE(604), - [sym_attributed_statement] = STATE(604), - [sym_labeled_statement] = STATE(604), - [sym_expression_statement] = STATE(604), - [sym_if_statement] = STATE(604), - [sym_switch_statement] = STATE(604), - [sym_case_statement] = STATE(604), - [sym_while_statement] = STATE(604), - [sym_do_statement] = STATE(604), - [sym_for_statement] = STATE(604), - [sym_return_statement] = STATE(604), - [sym_break_statement] = STATE(604), - [sym_continue_statement] = STATE(604), - [sym_goto_statement] = STATE(604), - [sym_seh_try_statement] = STATE(604), - [sym_seh_leave_statement] = STATE(604), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(604), - [sym_co_return_statement] = STATE(604), - [sym_co_yield_statement] = STATE(604), - [sym_throw_statement] = STATE(604), - [sym_try_statement] = STATE(604), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(2472), + [171] = { + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1154), + [sym_attributed_statement] = STATE(1153), + [sym_labeled_statement] = STATE(1152), + [sym_expression_statement] = STATE(1151), + [sym_if_statement] = STATE(1150), + [sym_switch_statement] = STATE(1149), + [sym_case_statement] = STATE(1148), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1146), + [sym_for_statement] = STATE(1145), + [sym_return_statement] = STATE(1144), + [sym_break_statement] = STATE(1143), + [sym_continue_statement] = STATE(1142), + [sym_goto_statement] = STATE(1109), + [sym_seh_try_statement] = STATE(1139), + [sym_seh_leave_statement] = STATE(1138), + [sym__expression] = STATE(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(1136), + [sym_co_return_statement] = STATE(1135), + [sym_co_yield_statement] = STATE(1134), + [sym_throw_statement] = STATE(1132), + [sym_try_statement] = STATE(1131), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(2304), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -115258,25 +115284,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1882), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1888), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1906), + [anon_sym___try] = ACTIONS(1908), + [anon_sym___leave] = ACTIONS(1910), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -115307,13 +115333,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(1912), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(1914), + [anon_sym_co_return] = ACTIONS(1916), + [anon_sym_co_yield] = ACTIONS(1918), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -115324,74 +115350,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [174] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(261), - [sym_attributed_statement] = STATE(261), - [sym_labeled_statement] = STATE(261), - [sym_expression_statement] = STATE(261), - [sym_if_statement] = STATE(261), - [sym_switch_statement] = STATE(261), - [sym_case_statement] = STATE(261), - [sym_while_statement] = STATE(261), - [sym_do_statement] = STATE(261), - [sym_for_statement] = STATE(261), - [sym_return_statement] = STATE(261), - [sym_break_statement] = STATE(261), - [sym_continue_statement] = STATE(261), - [sym_goto_statement] = STATE(261), - [sym_seh_try_statement] = STATE(261), - [sym_seh_leave_statement] = STATE(261), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(261), - [sym_co_return_statement] = STATE(261), - [sym_co_yield_statement] = STATE(261), - [sym_throw_statement] = STATE(261), - [sym_try_statement] = STATE(261), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2470), + [172] = { + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1130), + [sym_attributed_statement] = STATE(1129), + [sym_labeled_statement] = STATE(1128), + [sym_expression_statement] = STATE(1127), + [sym_if_statement] = STATE(1126), + [sym_switch_statement] = STATE(1125), + [sym_case_statement] = STATE(1124), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1120), + [sym_for_statement] = STATE(1118), + [sym_return_statement] = STATE(1141), + [sym_break_statement] = STATE(1137), + [sym_continue_statement] = STATE(1169), + [sym_goto_statement] = STATE(1117), + [sym_seh_try_statement] = STATE(1116), + [sym_seh_leave_statement] = STATE(1115), + [sym__expression] = STATE(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(1114), + [sym_co_return_statement] = STATE(1113), + [sym_co_yield_statement] = STATE(1112), + [sym_throw_statement] = STATE(1111), + [sym_try_statement] = STATE(1110), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(2304), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -115399,25 +115425,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(1882), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1888), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(295), - [anon_sym_switch] = ACTIONS(297), - [anon_sym_case] = ACTIONS(299), - [anon_sym_default] = ACTIONS(301), - [anon_sym_while] = ACTIONS(303), - [anon_sym_do] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_return] = ACTIONS(309), - [anon_sym_break] = ACTIONS(311), - [anon_sym_continue] = ACTIONS(313), - [anon_sym_goto] = ACTIONS(315), - [anon_sym___try] = ACTIONS(317), - [anon_sym___leave] = ACTIONS(319), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1906), + [anon_sym___try] = ACTIONS(1908), + [anon_sym___leave] = ACTIONS(1910), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -115448,13 +115474,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(323), + [anon_sym_try] = ACTIONS(1912), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(325), - [anon_sym_co_return] = ACTIONS(335), - [anon_sym_co_yield] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1914), + [anon_sym_co_return] = ACTIONS(1916), + [anon_sym_co_yield] = ACTIONS(1918), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -115465,74 +115491,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [175] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(508), - [sym_attributed_statement] = STATE(508), - [sym_labeled_statement] = STATE(508), - [sym_expression_statement] = STATE(508), - [sym_if_statement] = STATE(508), - [sym_switch_statement] = STATE(508), - [sym_case_statement] = STATE(508), - [sym_while_statement] = STATE(508), - [sym_do_statement] = STATE(508), - [sym_for_statement] = STATE(508), - [sym_return_statement] = STATE(508), - [sym_break_statement] = STATE(508), - [sym_continue_statement] = STATE(508), - [sym_goto_statement] = STATE(508), - [sym_seh_try_statement] = STATE(508), - [sym_seh_leave_statement] = STATE(508), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(508), - [sym_co_return_statement] = STATE(508), - [sym_co_yield_statement] = STATE(508), - [sym_throw_statement] = STATE(508), - [sym_try_statement] = STATE(508), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2474), + [173] = { + [sym_attribute_declaration] = STATE(227), + [sym_compound_statement] = STATE(753), + [sym_attributed_statement] = STATE(756), + [sym_labeled_statement] = STATE(758), + [sym_expression_statement] = STATE(763), + [sym_if_statement] = STATE(768), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(784), + [sym_do_statement] = STATE(794), + [sym_for_statement] = STATE(811), + [sym_return_statement] = STATE(817), + [sym_break_statement] = STATE(818), + [sym_continue_statement] = STATE(703), + [sym_goto_statement] = STATE(629), + [sym_seh_try_statement] = STATE(607), + [sym_seh_leave_statement] = STATE(605), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(611), + [sym_co_return_statement] = STATE(608), + [sym_co_yield_statement] = STATE(612), + [sym_throw_statement] = STATE(615), + [sym_try_statement] = STATE(621), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(2258), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -115540,25 +115566,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym___try] = ACTIONS(211), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -115589,13 +115615,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_co_return] = ACTIONS(233), + [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -115606,356 +115632,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [176] = { - [sym_attribute_declaration] = STATE(176), - [sym_compound_statement] = STATE(471), - [sym_attributed_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_expression_statement] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_case_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_goto_statement] = STATE(471), - [sym_seh_try_statement] = STATE(471), - [sym_seh_leave_statement] = STATE(471), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(471), - [sym_co_return_statement] = STATE(471), - [sym_co_yield_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(2476), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_COLON_COLON] = ACTIONS(2350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_LBRACK] = ACTIONS(2359), - [sym_primitive_type] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_switch] = ACTIONS(2488), - [anon_sym_case] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_goto] = ACTIONS(2515), - [anon_sym___try] = ACTIONS(2518), - [anon_sym___leave] = ACTIONS(2521), - [anon_sym_not] = ACTIONS(2341), - [anon_sym_compl] = ACTIONS(2341), - [anon_sym_DASH_DASH] = ACTIONS(2404), - [anon_sym_PLUS_PLUS] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2407), - [anon_sym___alignof__] = ACTIONS(2410), - [anon_sym___alignof] = ACTIONS(2410), - [anon_sym__alignof] = ACTIONS(2410), - [anon_sym_alignof] = ACTIONS(2410), - [anon_sym__Alignof] = ACTIONS(2410), - [anon_sym_offsetof] = ACTIONS(2413), - [anon_sym__Generic] = ACTIONS(2416), - [anon_sym_asm] = ACTIONS(2419), - [anon_sym___asm__] = ACTIONS(2419), - [sym_number_literal] = ACTIONS(2422), - [anon_sym_L_SQUOTE] = ACTIONS(2425), - [anon_sym_u_SQUOTE] = ACTIONS(2425), - [anon_sym_U_SQUOTE] = ACTIONS(2425), - [anon_sym_u8_SQUOTE] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [anon_sym_L_DQUOTE] = ACTIONS(2428), - [anon_sym_u_DQUOTE] = ACTIONS(2428), - [anon_sym_U_DQUOTE] = ACTIONS(2428), - [anon_sym_u8_DQUOTE] = ACTIONS(2428), - [anon_sym_DQUOTE] = ACTIONS(2428), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [anon_sym_NULL] = ACTIONS(2434), - [anon_sym_nullptr] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2437), - [anon_sym_template] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2524), - [anon_sym_delete] = ACTIONS(2446), - [anon_sym_throw] = ACTIONS(2527), - [anon_sym_co_return] = ACTIONS(2530), - [anon_sym_co_yield] = ACTIONS(2533), - [anon_sym_R_DQUOTE] = ACTIONS(2458), - [anon_sym_LR_DQUOTE] = ACTIONS(2458), - [anon_sym_uR_DQUOTE] = ACTIONS(2458), - [anon_sym_UR_DQUOTE] = ACTIONS(2458), - [anon_sym_u8R_DQUOTE] = ACTIONS(2458), - [anon_sym_co_await] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_requires] = ACTIONS(2467), - [sym_this] = ACTIONS(2431), - }, - [177] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(313), - [sym_attributed_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym_seh_try_statement] = STATE(313), - [sym_seh_leave_statement] = STATE(313), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(313), - [sym_co_return_statement] = STATE(313), - [sym_co_yield_statement] = STATE(313), - [sym_throw_statement] = STATE(313), - [sym_try_statement] = STATE(313), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2536), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_COLON_COLON] = ACTIONS(2350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2359), - [sym_primitive_type] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_switch] = ACTIONS(2548), - [anon_sym_case] = ACTIONS(2551), - [anon_sym_default] = ACTIONS(2554), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2560), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2566), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2572), - [anon_sym_goto] = ACTIONS(2575), - [anon_sym___try] = ACTIONS(2578), - [anon_sym___leave] = ACTIONS(2581), - [anon_sym_not] = ACTIONS(2341), - [anon_sym_compl] = ACTIONS(2341), - [anon_sym_DASH_DASH] = ACTIONS(2404), - [anon_sym_PLUS_PLUS] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2407), - [anon_sym___alignof__] = ACTIONS(2410), - [anon_sym___alignof] = ACTIONS(2410), - [anon_sym__alignof] = ACTIONS(2410), - [anon_sym_alignof] = ACTIONS(2410), - [anon_sym__Alignof] = ACTIONS(2410), - [anon_sym_offsetof] = ACTIONS(2413), - [anon_sym__Generic] = ACTIONS(2416), - [anon_sym_asm] = ACTIONS(2419), - [anon_sym___asm__] = ACTIONS(2419), - [sym_number_literal] = ACTIONS(2422), - [anon_sym_L_SQUOTE] = ACTIONS(2425), - [anon_sym_u_SQUOTE] = ACTIONS(2425), - [anon_sym_U_SQUOTE] = ACTIONS(2425), - [anon_sym_u8_SQUOTE] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [anon_sym_L_DQUOTE] = ACTIONS(2428), - [anon_sym_u_DQUOTE] = ACTIONS(2428), - [anon_sym_U_DQUOTE] = ACTIONS(2428), - [anon_sym_u8_DQUOTE] = ACTIONS(2428), - [anon_sym_DQUOTE] = ACTIONS(2428), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [anon_sym_NULL] = ACTIONS(2434), - [anon_sym_nullptr] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2437), - [anon_sym_template] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2584), - [anon_sym_delete] = ACTIONS(2446), - [anon_sym_throw] = ACTIONS(2587), - [anon_sym_co_return] = ACTIONS(2590), - [anon_sym_co_yield] = ACTIONS(2593), - [anon_sym_R_DQUOTE] = ACTIONS(2458), - [anon_sym_LR_DQUOTE] = ACTIONS(2458), - [anon_sym_uR_DQUOTE] = ACTIONS(2458), - [anon_sym_UR_DQUOTE] = ACTIONS(2458), - [anon_sym_u8R_DQUOTE] = ACTIONS(2458), - [anon_sym_co_await] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_requires] = ACTIONS(2467), - [sym_this] = ACTIONS(2431), - }, - [178] = { - [sym_attribute_declaration] = STATE(208), - [sym_compound_statement] = STATE(775), - [sym_attributed_statement] = STATE(775), - [sym_labeled_statement] = STATE(775), - [sym_expression_statement] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_case_statement] = STATE(775), - [sym_while_statement] = STATE(775), - [sym_do_statement] = STATE(775), - [sym_for_statement] = STATE(775), - [sym_return_statement] = STATE(775), - [sym_break_statement] = STATE(775), - [sym_continue_statement] = STATE(775), - [sym_goto_statement] = STATE(775), - [sym_seh_try_statement] = STATE(775), - [sym_seh_leave_statement] = STATE(775), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(775), - [sym_co_return_statement] = STATE(775), - [sym_co_yield_statement] = STATE(775), - [sym_throw_statement] = STATE(775), - [sym_try_statement] = STATE(775), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(2472), + [174] = { + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(9112), + [sym_attributed_statement] = STATE(9112), + [sym_labeled_statement] = STATE(9112), + [sym_expression_statement] = STATE(9112), + [sym_if_statement] = STATE(9112), + [sym_switch_statement] = STATE(9112), + [sym_case_statement] = STATE(9112), + [sym_while_statement] = STATE(9112), + [sym_do_statement] = STATE(9112), + [sym_for_statement] = STATE(9112), + [sym_return_statement] = STATE(9112), + [sym_break_statement] = STATE(9112), + [sym_continue_statement] = STATE(9112), + [sym_goto_statement] = STATE(9112), + [sym_seh_try_statement] = STATE(9112), + [sym_seh_leave_statement] = STATE(9112), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(9112), + [sym_co_return_statement] = STATE(9112), + [sym_co_yield_statement] = STATE(9112), + [sym_throw_statement] = STATE(9112), + [sym_try_statement] = STATE(9112), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -115963,25 +115707,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(73), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), + [anon_sym_for] = ACTIONS(2294), [anon_sym_return] = ACTIONS(87), [anon_sym_break] = ACTIONS(89), [anon_sym_continue] = ACTIONS(91), [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1816), + [anon_sym___try] = ACTIONS(2296), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -116012,7 +115756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -116029,74 +115773,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [179] = { - [sym_attribute_declaration] = STATE(170), - [sym_compound_statement] = STATE(806), - [sym_attributed_statement] = STATE(806), - [sym_labeled_statement] = STATE(806), - [sym_expression_statement] = STATE(806), - [sym_if_statement] = STATE(806), - [sym_switch_statement] = STATE(806), - [sym_case_statement] = STATE(806), - [sym_while_statement] = STATE(806), - [sym_do_statement] = STATE(806), - [sym_for_statement] = STATE(806), - [sym_return_statement] = STATE(806), - [sym_break_statement] = STATE(806), - [sym_continue_statement] = STATE(806), - [sym_goto_statement] = STATE(806), - [sym_seh_try_statement] = STATE(806), - [sym_seh_leave_statement] = STATE(806), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(806), - [sym_co_return_statement] = STATE(806), - [sym_co_yield_statement] = STATE(806), - [sym_throw_statement] = STATE(806), - [sym_try_statement] = STATE(806), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(2474), + [175] = { + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(9092), + [sym_attributed_statement] = STATE(9092), + [sym_labeled_statement] = STATE(9092), + [sym_expression_statement] = STATE(9092), + [sym_if_statement] = STATE(9092), + [sym_switch_statement] = STATE(9092), + [sym_case_statement] = STATE(9092), + [sym_while_statement] = STATE(9092), + [sym_do_statement] = STATE(9092), + [sym_for_statement] = STATE(9092), + [sym_return_statement] = STATE(9092), + [sym_break_statement] = STATE(9092), + [sym_continue_statement] = STATE(9092), + [sym_goto_statement] = STATE(9092), + [sym_seh_try_statement] = STATE(9092), + [sym_seh_leave_statement] = STATE(9092), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(9092), + [sym_co_return_statement] = STATE(9092), + [sym_co_yield_statement] = STATE(9092), + [sym_throw_statement] = STATE(9092), + [sym_try_statement] = STATE(9092), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -116104,25 +115848,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(2296), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -116153,13 +115897,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -116170,215 +115914,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [180] = { - [sym_attribute_declaration] = STATE(180), - [sym_compound_statement] = STATE(656), - [sym_attributed_statement] = STATE(656), - [sym_labeled_statement] = STATE(656), - [sym_expression_statement] = STATE(656), - [sym_if_statement] = STATE(656), - [sym_switch_statement] = STATE(656), - [sym_case_statement] = STATE(656), - [sym_while_statement] = STATE(656), - [sym_do_statement] = STATE(656), - [sym_for_statement] = STATE(656), - [sym_return_statement] = STATE(656), - [sym_break_statement] = STATE(656), - [sym_continue_statement] = STATE(656), - [sym_goto_statement] = STATE(656), - [sym_seh_try_statement] = STATE(656), - [sym_seh_leave_statement] = STATE(656), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(656), - [sym_co_return_statement] = STATE(656), - [sym_co_yield_statement] = STATE(656), - [sym_throw_statement] = STATE(656), - [sym_try_statement] = STATE(656), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(180), - [sym_identifier] = ACTIONS(2596), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(2359), - [sym_primitive_type] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_switch] = ACTIONS(2608), - [anon_sym_case] = ACTIONS(2611), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2620), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2632), - [anon_sym_goto] = ACTIONS(2635), - [anon_sym___try] = ACTIONS(2638), - [anon_sym___leave] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2341), - [anon_sym_compl] = ACTIONS(2341), - [anon_sym_DASH_DASH] = ACTIONS(2404), - [anon_sym_PLUS_PLUS] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2407), - [anon_sym___alignof__] = ACTIONS(2410), - [anon_sym___alignof] = ACTIONS(2410), - [anon_sym__alignof] = ACTIONS(2410), - [anon_sym_alignof] = ACTIONS(2410), - [anon_sym__Alignof] = ACTIONS(2410), - [anon_sym_offsetof] = ACTIONS(2413), - [anon_sym__Generic] = ACTIONS(2416), - [anon_sym_asm] = ACTIONS(2419), - [anon_sym___asm__] = ACTIONS(2419), - [sym_number_literal] = ACTIONS(2422), - [anon_sym_L_SQUOTE] = ACTIONS(2425), - [anon_sym_u_SQUOTE] = ACTIONS(2425), - [anon_sym_U_SQUOTE] = ACTIONS(2425), - [anon_sym_u8_SQUOTE] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [anon_sym_L_DQUOTE] = ACTIONS(2428), - [anon_sym_u_DQUOTE] = ACTIONS(2428), - [anon_sym_U_DQUOTE] = ACTIONS(2428), - [anon_sym_u8_DQUOTE] = ACTIONS(2428), - [anon_sym_DQUOTE] = ACTIONS(2428), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [anon_sym_NULL] = ACTIONS(2434), - [anon_sym_nullptr] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2437), - [anon_sym_template] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2644), - [anon_sym_delete] = ACTIONS(2446), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2650), - [anon_sym_co_yield] = ACTIONS(2653), - [anon_sym_R_DQUOTE] = ACTIONS(2458), - [anon_sym_LR_DQUOTE] = ACTIONS(2458), - [anon_sym_uR_DQUOTE] = ACTIONS(2458), - [anon_sym_UR_DQUOTE] = ACTIONS(2458), - [anon_sym_u8R_DQUOTE] = ACTIONS(2458), - [anon_sym_co_await] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_requires] = ACTIONS(2467), - [sym_this] = ACTIONS(2431), - }, - [181] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(236), - [sym_attributed_statement] = STATE(236), - [sym_labeled_statement] = STATE(236), - [sym_expression_statement] = STATE(236), - [sym_if_statement] = STATE(236), - [sym_switch_statement] = STATE(236), - [sym_case_statement] = STATE(236), - [sym_while_statement] = STATE(236), - [sym_do_statement] = STATE(236), - [sym_for_statement] = STATE(236), - [sym_return_statement] = STATE(236), - [sym_break_statement] = STATE(236), - [sym_continue_statement] = STATE(236), - [sym_goto_statement] = STATE(236), - [sym_seh_try_statement] = STATE(236), - [sym_seh_leave_statement] = STATE(236), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(236), - [sym_co_return_statement] = STATE(236), - [sym_co_yield_statement] = STATE(236), - [sym_throw_statement] = STATE(236), - [sym_try_statement] = STATE(236), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2470), + [176] = { + [sym_attribute_declaration] = STATE(190), + [sym_compound_statement] = STATE(277), + [sym_attributed_statement] = STATE(277), + [sym_labeled_statement] = STATE(277), + [sym_expression_statement] = STATE(277), + [sym_if_statement] = STATE(277), + [sym_switch_statement] = STATE(277), + [sym_case_statement] = STATE(277), + [sym_while_statement] = STATE(277), + [sym_do_statement] = STATE(277), + [sym_for_statement] = STATE(277), + [sym_return_statement] = STATE(277), + [sym_break_statement] = STATE(277), + [sym_continue_statement] = STATE(277), + [sym_goto_statement] = STATE(277), + [sym_seh_try_statement] = STATE(277), + [sym_seh_leave_statement] = STATE(277), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(277), + [sym_co_return_statement] = STATE(277), + [sym_co_yield_statement] = STATE(277), + [sym_throw_statement] = STATE(277), + [sym_try_statement] = STATE(277), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(190), + [sym_identifier] = ACTIONS(2302), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -116391,7 +115994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_if] = ACTIONS(295), [anon_sym_switch] = ACTIONS(297), [anon_sym_case] = ACTIONS(299), @@ -116435,7 +116038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(323), [anon_sym_delete] = ACTIONS(135), @@ -116452,74 +116055,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [182] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(8853), - [sym_attributed_statement] = STATE(8853), - [sym_labeled_statement] = STATE(8853), - [sym_expression_statement] = STATE(8853), - [sym_if_statement] = STATE(8853), - [sym_switch_statement] = STATE(8853), - [sym_case_statement] = STATE(8853), - [sym_while_statement] = STATE(8853), - [sym_do_statement] = STATE(8853), - [sym_for_statement] = STATE(8853), - [sym_return_statement] = STATE(8853), - [sym_break_statement] = STATE(8853), - [sym_continue_statement] = STATE(8853), - [sym_goto_statement] = STATE(8853), - [sym_seh_try_statement] = STATE(8853), - [sym_seh_leave_statement] = STATE(8853), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(8853), - [sym_co_return_statement] = STATE(8853), - [sym_co_yield_statement] = STATE(8853), - [sym_throw_statement] = STATE(8853), - [sym_try_statement] = STATE(8853), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), + [177] = { + [sym_attribute_declaration] = STATE(177), + [sym_compound_statement] = STATE(616), + [sym_attributed_statement] = STATE(616), + [sym_labeled_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_if_statement] = STATE(616), + [sym_switch_statement] = STATE(616), + [sym_case_statement] = STATE(616), + [sym_while_statement] = STATE(616), + [sym_do_statement] = STATE(616), + [sym_for_statement] = STATE(616), + [sym_return_statement] = STATE(616), + [sym_break_statement] = STATE(616), + [sym_continue_statement] = STATE(616), + [sym_goto_statement] = STATE(616), + [sym_seh_try_statement] = STATE(616), + [sym_seh_leave_statement] = STATE(616), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(616), + [sym_co_return_statement] = STATE(616), + [sym_co_yield_statement] = STATE(616), + [sym_throw_statement] = STATE(616), + [sym_try_statement] = STATE(616), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(2306), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2312), + [anon_sym_TILDE] = ACTIONS(2312), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2330), + [anon_sym_LBRACK] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2339), + [anon_sym_switch] = ACTIONS(2342), + [anon_sym_case] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_do] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_goto] = ACTIONS(2369), + [anon_sym___try] = ACTIONS(2372), + [anon_sym___leave] = ACTIONS(2375), + [anon_sym_not] = ACTIONS(2315), + [anon_sym_compl] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_sizeof] = ACTIONS(2381), + [anon_sym___alignof__] = ACTIONS(2384), + [anon_sym___alignof] = ACTIONS(2384), + [anon_sym__alignof] = ACTIONS(2384), + [anon_sym_alignof] = ACTIONS(2384), + [anon_sym__Alignof] = ACTIONS(2384), + [anon_sym_offsetof] = ACTIONS(2387), + [anon_sym__Generic] = ACTIONS(2390), + [anon_sym_asm] = ACTIONS(2393), + [anon_sym___asm__] = ACTIONS(2393), + [sym_number_literal] = ACTIONS(2396), + [anon_sym_L_SQUOTE] = ACTIONS(2399), + [anon_sym_u_SQUOTE] = ACTIONS(2399), + [anon_sym_U_SQUOTE] = ACTIONS(2399), + [anon_sym_u8_SQUOTE] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_L_DQUOTE] = ACTIONS(2402), + [anon_sym_u_DQUOTE] = ACTIONS(2402), + [anon_sym_U_DQUOTE] = ACTIONS(2402), + [anon_sym_u8_DQUOTE] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2423), + [anon_sym_co_return] = ACTIONS(2426), + [anon_sym_co_yield] = ACTIONS(2429), + [anon_sym_R_DQUOTE] = ACTIONS(2432), + [anon_sym_LR_DQUOTE] = ACTIONS(2432), + [anon_sym_uR_DQUOTE] = ACTIONS(2432), + [anon_sym_UR_DQUOTE] = ACTIONS(2432), + [anon_sym_u8R_DQUOTE] = ACTIONS(2432), + [anon_sym_co_await] = ACTIONS(2435), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_requires] = ACTIONS(2441), + [sym_this] = ACTIONS(2405), + }, + [178] = { + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(9070), + [sym_attributed_statement] = STATE(9070), + [sym_labeled_statement] = STATE(9070), + [sym_expression_statement] = STATE(9070), + [sym_if_statement] = STATE(9070), + [sym_switch_statement] = STATE(9070), + [sym_case_statement] = STATE(9070), + [sym_while_statement] = STATE(9070), + [sym_do_statement] = STATE(9070), + [sym_for_statement] = STATE(9070), + [sym_return_statement] = STATE(9070), + [sym_break_statement] = STATE(9070), + [sym_continue_statement] = STATE(9070), + [sym_goto_statement] = STATE(9070), + [sym_seh_try_statement] = STATE(9070), + [sym_seh_leave_statement] = STATE(9070), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(9070), + [sym_co_return_statement] = STATE(9070), + [sym_co_yield_statement] = STATE(9070), + [sym_throw_statement] = STATE(9070), + [sym_try_statement] = STATE(9070), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -116532,19 +116276,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), + [anon_sym_for] = ACTIONS(2294), [anon_sym_return] = ACTIONS(87), [anon_sym_break] = ACTIONS(89), [anon_sym_continue] = ACTIONS(91), [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), + [anon_sym___try] = ACTIONS(2296), [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -116576,7 +116320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -116593,74 +116337,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [183] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(402), - [sym_attributed_statement] = STATE(402), - [sym_labeled_statement] = STATE(402), - [sym_expression_statement] = STATE(402), - [sym_if_statement] = STATE(402), - [sym_switch_statement] = STATE(402), - [sym_case_statement] = STATE(402), - [sym_while_statement] = STATE(402), - [sym_do_statement] = STATE(402), - [sym_for_statement] = STATE(402), - [sym_return_statement] = STATE(402), - [sym_break_statement] = STATE(402), - [sym_continue_statement] = STATE(402), - [sym_goto_statement] = STATE(402), - [sym_seh_try_statement] = STATE(402), - [sym_seh_leave_statement] = STATE(402), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(402), - [sym_co_return_statement] = STATE(402), - [sym_co_yield_statement] = STATE(402), - [sym_throw_statement] = STATE(402), - [sym_try_statement] = STATE(402), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2288), + [179] = { + [sym_attribute_declaration] = STATE(227), + [sym_compound_statement] = STATE(737), + [sym_attributed_statement] = STATE(737), + [sym_labeled_statement] = STATE(737), + [sym_expression_statement] = STATE(737), + [sym_if_statement] = STATE(737), + [sym_switch_statement] = STATE(737), + [sym_case_statement] = STATE(737), + [sym_while_statement] = STATE(737), + [sym_do_statement] = STATE(737), + [sym_for_statement] = STATE(737), + [sym_return_statement] = STATE(737), + [sym_break_statement] = STATE(737), + [sym_continue_statement] = STATE(737), + [sym_goto_statement] = STATE(737), + [sym_seh_try_statement] = STATE(737), + [sym_seh_leave_statement] = STATE(737), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(737), + [sym_co_return_statement] = STATE(737), + [sym_co_yield_statement] = STATE(737), + [sym_throw_statement] = STATE(737), + [sym_try_statement] = STATE(737), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(2258), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -116668,25 +116412,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(383), - [anon_sym_switch] = ACTIONS(385), - [anon_sym_case] = ACTIONS(387), - [anon_sym_default] = ACTIONS(389), - [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_goto] = ACTIONS(403), - [anon_sym___try] = ACTIONS(405), - [anon_sym___leave] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym___try] = ACTIONS(211), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -116717,13 +116461,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(411), + [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(413), - [anon_sym_co_return] = ACTIONS(423), - [anon_sym_co_yield] = ACTIONS(425), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_co_return] = ACTIONS(233), + [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -116734,74 +116478,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [184] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(495), - [sym_attributed_statement] = STATE(495), - [sym_labeled_statement] = STATE(495), - [sym_expression_statement] = STATE(495), - [sym_if_statement] = STATE(495), - [sym_switch_statement] = STATE(495), - [sym_case_statement] = STATE(495), - [sym_while_statement] = STATE(495), - [sym_do_statement] = STATE(495), - [sym_for_statement] = STATE(495), - [sym_return_statement] = STATE(495), - [sym_break_statement] = STATE(495), - [sym_continue_statement] = STATE(495), - [sym_goto_statement] = STATE(495), - [sym_seh_try_statement] = STATE(495), - [sym_seh_leave_statement] = STATE(495), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(495), - [sym_co_return_statement] = STATE(495), - [sym_co_yield_statement] = STATE(495), - [sym_throw_statement] = STATE(495), - [sym_try_statement] = STATE(495), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2288), + [180] = { + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(617), + [sym_attributed_statement] = STATE(617), + [sym_labeled_statement] = STATE(617), + [sym_expression_statement] = STATE(617), + [sym_if_statement] = STATE(617), + [sym_switch_statement] = STATE(617), + [sym_case_statement] = STATE(617), + [sym_while_statement] = STATE(617), + [sym_do_statement] = STATE(617), + [sym_for_statement] = STATE(617), + [sym_return_statement] = STATE(617), + [sym_break_statement] = STATE(617), + [sym_continue_statement] = STATE(617), + [sym_goto_statement] = STATE(617), + [sym_seh_try_statement] = STATE(617), + [sym_seh_leave_statement] = STATE(617), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(617), + [sym_co_return_statement] = STATE(617), + [sym_co_yield_statement] = STATE(617), + [sym_throw_statement] = STATE(617), + [sym_try_statement] = STATE(617), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -116809,25 +116553,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(383), - [anon_sym_switch] = ACTIONS(385), - [anon_sym_case] = ACTIONS(387), - [anon_sym_default] = ACTIONS(389), - [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_goto] = ACTIONS(403), - [anon_sym___try] = ACTIONS(405), - [anon_sym___leave] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(2296), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -116858,13 +116602,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(411), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(413), - [anon_sym_co_return] = ACTIONS(423), - [anon_sym_co_yield] = ACTIONS(425), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -116875,74 +116619,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [185] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(491), - [sym_attributed_statement] = STATE(467), - [sym_labeled_statement] = STATE(489), - [sym_expression_statement] = STATE(486), - [sym_if_statement] = STATE(485), - [sym_switch_statement] = STATE(483), - [sym_case_statement] = STATE(481), - [sym_while_statement] = STATE(479), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(476), - [sym_return_statement] = STATE(475), - [sym_break_statement] = STATE(474), - [sym_continue_statement] = STATE(468), - [sym_goto_statement] = STATE(464), - [sym_seh_try_statement] = STATE(463), - [sym_seh_leave_statement] = STATE(462), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(459), - [sym_co_return_statement] = STATE(458), - [sym_co_yield_statement] = STATE(456), - [sym_throw_statement] = STATE(454), - [sym_try_statement] = STATE(430), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2288), + [181] = { + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(9045), + [sym_attributed_statement] = STATE(9045), + [sym_labeled_statement] = STATE(9045), + [sym_expression_statement] = STATE(9045), + [sym_if_statement] = STATE(9045), + [sym_switch_statement] = STATE(9045), + [sym_case_statement] = STATE(9045), + [sym_while_statement] = STATE(9045), + [sym_do_statement] = STATE(9045), + [sym_for_statement] = STATE(9045), + [sym_return_statement] = STATE(9045), + [sym_break_statement] = STATE(9045), + [sym_continue_statement] = STATE(9045), + [sym_goto_statement] = STATE(9045), + [sym_seh_try_statement] = STATE(9045), + [sym_seh_leave_statement] = STATE(9045), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(9045), + [sym_co_return_statement] = STATE(9045), + [sym_co_yield_statement] = STATE(9045), + [sym_throw_statement] = STATE(9045), + [sym_try_statement] = STATE(9045), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -116950,25 +116694,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(383), - [anon_sym_switch] = ACTIONS(385), - [anon_sym_case] = ACTIONS(387), - [anon_sym_default] = ACTIONS(389), - [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_goto] = ACTIONS(403), - [anon_sym___try] = ACTIONS(405), - [anon_sym___leave] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(2296), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -116999,13 +116743,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(411), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(413), - [anon_sym_co_return] = ACTIONS(423), - [anon_sym_co_yield] = ACTIONS(425), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -117016,8 +116760,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [186] = { - [sym_attribute_declaration] = STATE(213), + [182] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(618), + [sym_attributed_statement] = STATE(618), + [sym_labeled_statement] = STATE(618), + [sym_expression_statement] = STATE(618), + [sym_if_statement] = STATE(618), + [sym_switch_statement] = STATE(618), + [sym_case_statement] = STATE(618), + [sym_while_statement] = STATE(618), + [sym_do_statement] = STATE(618), + [sym_for_statement] = STATE(618), + [sym_return_statement] = STATE(618), + [sym_break_statement] = STATE(618), + [sym_continue_statement] = STATE(618), + [sym_goto_statement] = STATE(618), + [sym_seh_try_statement] = STATE(618), + [sym_seh_leave_statement] = STATE(618), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(618), + [sym_co_return_statement] = STATE(618), + [sym_co_yield_statement] = STATE(618), + [sym_throw_statement] = STATE(618), + [sym_try_statement] = STATE(618), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2444), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2312), + [anon_sym_TILDE] = ACTIONS(2312), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_COLON_COLON] = ACTIONS(2324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_case] = ACTIONS(2459), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_goto] = ACTIONS(2483), + [anon_sym___try] = ACTIONS(2486), + [anon_sym___leave] = ACTIONS(2489), + [anon_sym_not] = ACTIONS(2315), + [anon_sym_compl] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_sizeof] = ACTIONS(2381), + [anon_sym___alignof__] = ACTIONS(2384), + [anon_sym___alignof] = ACTIONS(2384), + [anon_sym__alignof] = ACTIONS(2384), + [anon_sym_alignof] = ACTIONS(2384), + [anon_sym__Alignof] = ACTIONS(2384), + [anon_sym_offsetof] = ACTIONS(2387), + [anon_sym__Generic] = ACTIONS(2390), + [anon_sym_asm] = ACTIONS(2393), + [anon_sym___asm__] = ACTIONS(2393), + [sym_number_literal] = ACTIONS(2396), + [anon_sym_L_SQUOTE] = ACTIONS(2399), + [anon_sym_u_SQUOTE] = ACTIONS(2399), + [anon_sym_U_SQUOTE] = ACTIONS(2399), + [anon_sym_u8_SQUOTE] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_L_DQUOTE] = ACTIONS(2402), + [anon_sym_u_DQUOTE] = ACTIONS(2402), + [anon_sym_U_DQUOTE] = ACTIONS(2402), + [anon_sym_u8_DQUOTE] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2495), + [anon_sym_co_return] = ACTIONS(2498), + [anon_sym_co_yield] = ACTIONS(2501), + [anon_sym_R_DQUOTE] = ACTIONS(2432), + [anon_sym_LR_DQUOTE] = ACTIONS(2432), + [anon_sym_uR_DQUOTE] = ACTIONS(2432), + [anon_sym_UR_DQUOTE] = ACTIONS(2432), + [anon_sym_u8R_DQUOTE] = ACTIONS(2432), + [anon_sym_co_await] = ACTIONS(2435), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_requires] = ACTIONS(2441), + [sym_this] = ACTIONS(2405), + }, + [183] = { + [sym_attribute_declaration] = STATE(177), + [sym_compound_statement] = STATE(616), + [sym_attributed_statement] = STATE(616), + [sym_labeled_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_if_statement] = STATE(616), + [sym_switch_statement] = STATE(616), + [sym_case_statement] = STATE(616), + [sym_while_statement] = STATE(616), + [sym_do_statement] = STATE(616), + [sym_for_statement] = STATE(616), + [sym_return_statement] = STATE(616), + [sym_break_statement] = STATE(616), + [sym_continue_statement] = STATE(616), + [sym_goto_statement] = STATE(616), + [sym_seh_try_statement] = STATE(616), + [sym_seh_leave_statement] = STATE(616), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(616), + [sym_co_return_statement] = STATE(616), + [sym_co_yield_statement] = STATE(616), + [sym_throw_statement] = STATE(616), + [sym_try_statement] = STATE(616), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(2300), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1104), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_try] = ACTIONS(1144), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [184] = { + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1104), + [sym_attributed_statement] = STATE(1104), + [sym_labeled_statement] = STATE(1104), + [sym_expression_statement] = STATE(1104), + [sym_if_statement] = STATE(1104), + [sym_switch_statement] = STATE(1104), + [sym_case_statement] = STATE(1104), + [sym_while_statement] = STATE(1104), + [sym_do_statement] = STATE(1104), + [sym_for_statement] = STATE(1104), + [sym_return_statement] = STATE(1104), + [sym_break_statement] = STATE(1104), + [sym_continue_statement] = STATE(1104), + [sym_goto_statement] = STATE(1104), + [sym_seh_try_statement] = STATE(1104), + [sym_seh_leave_statement] = STATE(1104), + [sym__expression] = STATE(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(1104), + [sym_co_return_statement] = STATE(1104), + [sym_co_yield_statement] = STATE(1104), + [sym_throw_statement] = STATE(1104), + [sym_try_statement] = STATE(1104), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(2304), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1906), + [anon_sym___try] = ACTIONS(1908), + [anon_sym___leave] = ACTIONS(1910), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_try] = ACTIONS(1912), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(1914), + [anon_sym_co_return] = ACTIONS(1916), + [anon_sym_co_yield] = ACTIONS(1918), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [185] = { + [sym_attribute_declaration] = STATE(176), [sym_compound_statement] = STATE(307), [sym_attributed_statement] = STATE(307), [sym_labeled_statement] = STATE(307), @@ -117034,56 +117201,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(307), [sym_seh_try_statement] = STATE(307), [sym_seh_leave_statement] = STATE(307), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), [sym_for_range_loop] = STATE(307), [sym_co_return_statement] = STATE(307), [sym_co_yield_statement] = STATE(307), [sym_throw_statement] = STATE(307), [sym_try_statement] = STATE(307), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2470), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2302), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -117096,7 +117263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_if] = ACTIONS(295), [anon_sym_switch] = ACTIONS(297), [anon_sym_case] = ACTIONS(299), @@ -117140,7 +117307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(323), [anon_sym_delete] = ACTIONS(135), @@ -117157,74 +117324,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [187] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(309), - [sym_attributed_statement] = STATE(310), - [sym_labeled_statement] = STATE(311), - [sym_expression_statement] = STATE(312), - [sym_if_statement] = STATE(316), - [sym_switch_statement] = STATE(317), - [sym_case_statement] = STATE(318), - [sym_while_statement] = STATE(319), - [sym_do_statement] = STATE(321), - [sym_for_statement] = STATE(324), - [sym_return_statement] = STATE(325), - [sym_break_statement] = STATE(326), - [sym_continue_statement] = STATE(327), - [sym_goto_statement] = STATE(328), - [sym_seh_try_statement] = STATE(330), - [sym_seh_leave_statement] = STATE(331), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(333), - [sym_co_return_statement] = STATE(334), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(340), - [sym_try_statement] = STATE(341), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2470), + [186] = { + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(7794), + [sym_attributed_statement] = STATE(7794), + [sym_labeled_statement] = STATE(7794), + [sym_expression_statement] = STATE(7794), + [sym_if_statement] = STATE(7794), + [sym_switch_statement] = STATE(7794), + [sym_case_statement] = STATE(7794), + [sym_while_statement] = STATE(7794), + [sym_do_statement] = STATE(7794), + [sym_for_statement] = STATE(7794), + [sym_return_statement] = STATE(7794), + [sym_break_statement] = STATE(7794), + [sym_continue_statement] = STATE(7794), + [sym_goto_statement] = STATE(7794), + [sym_seh_try_statement] = STATE(7794), + [sym_seh_leave_statement] = STATE(7794), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(7794), + [sym_co_return_statement] = STATE(7794), + [sym_co_yield_statement] = STATE(7794), + [sym_throw_statement] = STATE(7794), + [sym_try_statement] = STATE(7794), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -117232,25 +117399,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(295), - [anon_sym_switch] = ACTIONS(297), - [anon_sym_case] = ACTIONS(299), - [anon_sym_default] = ACTIONS(301), - [anon_sym_while] = ACTIONS(303), - [anon_sym_do] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_return] = ACTIONS(309), - [anon_sym_break] = ACTIONS(311), - [anon_sym_continue] = ACTIONS(313), - [anon_sym_goto] = ACTIONS(315), - [anon_sym___try] = ACTIONS(317), - [anon_sym___leave] = ACTIONS(319), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(2296), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -117281,13 +117448,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(323), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(325), - [anon_sym_co_return] = ACTIONS(335), - [anon_sym_co_yield] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -117298,74 +117465,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [188] = { - [sym_attribute_declaration] = STATE(203), - [sym_compound_statement] = STATE(431), - [sym_attributed_statement] = STATE(432), - [sym_labeled_statement] = STATE(436), - [sym_expression_statement] = STATE(437), - [sym_if_statement] = STATE(438), - [sym_switch_statement] = STATE(441), - [sym_case_statement] = STATE(442), - [sym_while_statement] = STATE(443), - [sym_do_statement] = STATE(444), - [sym_for_statement] = STATE(446), - [sym_return_statement] = STATE(448), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(450), - [sym_goto_statement] = STATE(452), - [sym_seh_try_statement] = STATE(453), - [sym_seh_leave_statement] = STATE(457), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(460), - [sym_co_return_statement] = STATE(490), - [sym_co_yield_statement] = STATE(455), - [sym_throw_statement] = STATE(505), - [sym_try_statement] = STATE(502), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(2288), + [187] = { + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [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(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [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(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -117373,25 +117540,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(383), - [anon_sym_switch] = ACTIONS(385), - [anon_sym_case] = ACTIONS(387), - [anon_sym_default] = ACTIONS(389), - [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_goto] = ACTIONS(403), - [anon_sym___try] = ACTIONS(405), - [anon_sym___leave] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(2296), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -117422,13 +117589,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(411), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(413), - [anon_sym_co_return] = ACTIONS(423), - [anon_sym_co_yield] = ACTIONS(425), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -117439,74 +117606,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [189] = { - [sym_attribute_declaration] = STATE(213), - [sym_compound_statement] = STATE(342), - [sym_attributed_statement] = STATE(343), - [sym_labeled_statement] = STATE(344), - [sym_expression_statement] = STATE(345), - [sym_if_statement] = STATE(346), - [sym_switch_statement] = STATE(259), - [sym_case_statement] = STATE(300), - [sym_while_statement] = STATE(299), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(264), - [sym_return_statement] = STATE(283), - [sym_break_statement] = STATE(243), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(289), - [sym_seh_try_statement] = STATE(288), - [sym_seh_leave_statement] = STATE(286), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(276), - [sym_co_return_statement] = STATE(275), - [sym_co_yield_statement] = STATE(273), - [sym_throw_statement] = STATE(270), - [sym_try_statement] = STATE(262), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(2470), + [188] = { + [sym_attribute_declaration] = STATE(183), + [sym_compound_statement] = STATE(508), + [sym_attributed_statement] = STATE(508), + [sym_labeled_statement] = STATE(508), + [sym_expression_statement] = STATE(508), + [sym_if_statement] = STATE(508), + [sym_switch_statement] = STATE(508), + [sym_case_statement] = STATE(508), + [sym_while_statement] = STATE(508), + [sym_do_statement] = STATE(508), + [sym_for_statement] = STATE(508), + [sym_return_statement] = STATE(508), + [sym_break_statement] = STATE(508), + [sym_continue_statement] = STATE(508), + [sym_goto_statement] = STATE(508), + [sym_seh_try_statement] = STATE(508), + [sym_seh_leave_statement] = STATE(508), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(508), + [sym_co_return_statement] = STATE(508), + [sym_co_yield_statement] = STATE(508), + [sym_throw_statement] = STATE(508), + [sym_try_statement] = STATE(508), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(2300), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -117514,25 +117681,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(1104), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1112), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(295), - [anon_sym_switch] = ACTIONS(297), - [anon_sym_case] = ACTIONS(299), - [anon_sym_default] = ACTIONS(301), - [anon_sym_while] = ACTIONS(303), - [anon_sym_do] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_return] = ACTIONS(309), - [anon_sym_break] = ACTIONS(311), - [anon_sym_continue] = ACTIONS(313), - [anon_sym_goto] = ACTIONS(315), - [anon_sym___try] = ACTIONS(317), - [anon_sym___leave] = ACTIONS(319), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -117563,13 +117730,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(323), + [anon_sym_try] = ACTIONS(1144), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(325), - [anon_sym_co_return] = ACTIONS(335), - [anon_sym_co_yield] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -117580,74 +117747,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [190] = { - [sym_attribute_declaration] = STATE(163), - [sym_compound_statement] = STATE(719), - [sym_attributed_statement] = STATE(719), - [sym_labeled_statement] = STATE(719), - [sym_expression_statement] = STATE(719), - [sym_if_statement] = STATE(719), - [sym_switch_statement] = STATE(719), - [sym_case_statement] = STATE(719), - [sym_while_statement] = STATE(719), - [sym_do_statement] = STATE(719), - [sym_for_statement] = STATE(719), - [sym_return_statement] = STATE(719), - [sym_break_statement] = STATE(719), - [sym_continue_statement] = STATE(719), - [sym_goto_statement] = STATE(719), - [sym_seh_try_statement] = STATE(719), - [sym_seh_leave_statement] = STATE(719), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(719), - [sym_co_return_statement] = STATE(719), - [sym_co_yield_statement] = STATE(719), - [sym_throw_statement] = STATE(719), - [sym_try_statement] = STATE(719), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(2214), + [189] = { + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(691), + [sym_attributed_statement] = STATE(697), + [sym_labeled_statement] = STATE(700), + [sym_expression_statement] = STATE(708), + [sym_if_statement] = STATE(712), + [sym_switch_statement] = STATE(720), + [sym_case_statement] = STATE(723), + [sym_while_statement] = STATE(725), + [sym_do_statement] = STATE(729), + [sym_for_statement] = STATE(730), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(733), + [sym_continue_statement] = STATE(746), + [sym_goto_statement] = STATE(748), + [sym_seh_try_statement] = STATE(750), + [sym_seh_leave_statement] = STATE(754), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(759), + [sym_co_return_statement] = STATE(760), + [sym_co_yield_statement] = STATE(762), + [sym_throw_statement] = STATE(765), + [sym_try_statement] = STATE(766), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -117658,21 +117825,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(189), - [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(193), - [anon_sym_default] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_do] = ACTIONS(199), - [anon_sym_for] = ACTIONS(201), - [anon_sym_return] = ACTIONS(203), - [anon_sym_break] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_goto] = ACTIONS(209), - [anon_sym___try] = ACTIONS(211), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(2296), [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -117704,13 +117871,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(221), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(223), - [anon_sym_co_return] = ACTIONS(233), - [anon_sym_co_yield] = ACTIONS(235), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -117721,74 +117888,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, + [190] = { + [sym_attribute_declaration] = STATE(190), + [sym_compound_statement] = STATE(277), + [sym_attributed_statement] = STATE(277), + [sym_labeled_statement] = STATE(277), + [sym_expression_statement] = STATE(277), + [sym_if_statement] = STATE(277), + [sym_switch_statement] = STATE(277), + [sym_case_statement] = STATE(277), + [sym_while_statement] = STATE(277), + [sym_do_statement] = STATE(277), + [sym_for_statement] = STATE(277), + [sym_return_statement] = STATE(277), + [sym_break_statement] = STATE(277), + [sym_continue_statement] = STATE(277), + [sym_goto_statement] = STATE(277), + [sym_seh_try_statement] = STATE(277), + [sym_seh_leave_statement] = STATE(277), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(277), + [sym_co_return_statement] = STATE(277), + [sym_co_yield_statement] = STATE(277), + [sym_throw_statement] = STATE(277), + [sym_try_statement] = STATE(277), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(190), + [sym_identifier] = ACTIONS(2504), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2312), + [anon_sym_TILDE] = ACTIONS(2312), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LBRACK] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2519), + [anon_sym_default] = ACTIONS(2522), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2534), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_goto] = ACTIONS(2543), + [anon_sym___try] = ACTIONS(2546), + [anon_sym___leave] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2315), + [anon_sym_compl] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_sizeof] = ACTIONS(2381), + [anon_sym___alignof__] = ACTIONS(2384), + [anon_sym___alignof] = ACTIONS(2384), + [anon_sym__alignof] = ACTIONS(2384), + [anon_sym_alignof] = ACTIONS(2384), + [anon_sym__Alignof] = ACTIONS(2384), + [anon_sym_offsetof] = ACTIONS(2387), + [anon_sym__Generic] = ACTIONS(2390), + [anon_sym_asm] = ACTIONS(2393), + [anon_sym___asm__] = ACTIONS(2393), + [sym_number_literal] = ACTIONS(2396), + [anon_sym_L_SQUOTE] = ACTIONS(2399), + [anon_sym_u_SQUOTE] = ACTIONS(2399), + [anon_sym_U_SQUOTE] = ACTIONS(2399), + [anon_sym_u8_SQUOTE] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_L_DQUOTE] = ACTIONS(2402), + [anon_sym_u_DQUOTE] = ACTIONS(2402), + [anon_sym_U_DQUOTE] = ACTIONS(2402), + [anon_sym_u8_DQUOTE] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2552), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2558), + [anon_sym_co_yield] = ACTIONS(2561), + [anon_sym_R_DQUOTE] = ACTIONS(2432), + [anon_sym_LR_DQUOTE] = ACTIONS(2432), + [anon_sym_uR_DQUOTE] = ACTIONS(2432), + [anon_sym_UR_DQUOTE] = ACTIONS(2432), + [anon_sym_u8R_DQUOTE] = ACTIONS(2432), + [anon_sym_co_await] = ACTIONS(2435), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_requires] = ACTIONS(2441), + [sym_this] = ACTIONS(2405), + }, [191] = { - [sym_attribute_declaration] = STATE(163), - [sym_compound_statement] = STATE(713), - [sym_attributed_statement] = STATE(713), - [sym_labeled_statement] = STATE(713), - [sym_expression_statement] = STATE(713), - [sym_if_statement] = STATE(713), - [sym_switch_statement] = STATE(713), - [sym_case_statement] = STATE(713), - [sym_while_statement] = STATE(713), - [sym_do_statement] = STATE(713), - [sym_for_statement] = STATE(713), - [sym_return_statement] = STATE(713), - [sym_break_statement] = STATE(713), - [sym_continue_statement] = STATE(713), - [sym_goto_statement] = STATE(713), - [sym_seh_try_statement] = STATE(713), - [sym_seh_leave_statement] = STATE(713), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(713), - [sym_co_return_statement] = STATE(713), - [sym_co_yield_statement] = STATE(713), - [sym_throw_statement] = STATE(713), - [sym_try_statement] = STATE(713), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(2214), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1105), + [sym_attributed_statement] = STATE(1105), + [sym_labeled_statement] = STATE(1105), + [sym_expression_statement] = STATE(1105), + [sym_if_statement] = STATE(1105), + [sym_switch_statement] = STATE(1105), + [sym_case_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_return_statement] = STATE(1105), + [sym_break_statement] = STATE(1105), + [sym_continue_statement] = STATE(1105), + [sym_goto_statement] = STATE(1105), + [sym_seh_try_statement] = STATE(1105), + [sym_seh_leave_statement] = STATE(1105), + [sym__expression] = STATE(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(1105), + [sym_co_return_statement] = STATE(1105), + [sym_co_yield_statement] = STATE(1105), + [sym_throw_statement] = STATE(1105), + [sym_try_statement] = STATE(1105), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(2304), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -117796,25 +118104,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(1882), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1888), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(189), - [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(193), - [anon_sym_default] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_do] = ACTIONS(199), - [anon_sym_for] = ACTIONS(201), - [anon_sym_return] = ACTIONS(203), - [anon_sym_break] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_goto] = ACTIONS(209), - [anon_sym___try] = ACTIONS(211), - [anon_sym___leave] = ACTIONS(213), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1906), + [anon_sym___try] = ACTIONS(1908), + [anon_sym___leave] = ACTIONS(1910), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -117845,13 +118153,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(221), + [anon_sym_try] = ACTIONS(1912), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(223), - [anon_sym_co_return] = ACTIONS(233), - [anon_sym_co_yield] = ACTIONS(235), + [anon_sym_throw] = ACTIONS(1914), + [anon_sym_co_return] = ACTIONS(1916), + [anon_sym_co_yield] = ACTIONS(1918), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -117863,73 +118171,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [192] = { - [sym_attribute_declaration] = STATE(163), - [sym_compound_statement] = STATE(529), - [sym_attributed_statement] = STATE(529), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(529), - [sym_co_return_statement] = STATE(529), - [sym_co_yield_statement] = STATE(529), - [sym_throw_statement] = STATE(529), - [sym_try_statement] = STATE(529), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(2214), + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(775), + [sym_attributed_statement] = STATE(776), + [sym_labeled_statement] = STATE(778), + [sym_expression_statement] = STATE(786), + [sym_if_statement] = STATE(788), + [sym_switch_statement] = STATE(792), + [sym_case_statement] = STATE(795), + [sym_while_statement] = STATE(797), + [sym_do_statement] = STATE(798), + [sym_for_statement] = STATE(804), + [sym_return_statement] = STATE(806), + [sym_break_statement] = STATE(807), + [sym_continue_statement] = STATE(812), + [sym_goto_statement] = STATE(813), + [sym_seh_try_statement] = STATE(814), + [sym_seh_leave_statement] = STATE(815), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(820), + [sym_co_return_statement] = STATE(821), + [sym_co_yield_statement] = STATE(822), + [sym_throw_statement] = STATE(824), + [sym_try_statement] = STATE(828), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -117940,21 +118248,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(189), - [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(193), - [anon_sym_default] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_do] = ACTIONS(199), - [anon_sym_for] = ACTIONS(201), - [anon_sym_return] = ACTIONS(203), - [anon_sym_break] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_goto] = ACTIONS(209), - [anon_sym___try] = ACTIONS(211), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(2296), [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -117986,13 +118294,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(221), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(223), - [anon_sym_co_return] = ACTIONS(233), - [anon_sym_co_yield] = ACTIONS(235), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -118004,214 +118312,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [193] = { - [sym_attribute_declaration] = STATE(193), - [sym_compound_statement] = STATE(1140), - [sym_attributed_statement] = STATE(1140), - [sym_labeled_statement] = STATE(1140), - [sym_expression_statement] = STATE(1140), - [sym_if_statement] = STATE(1140), - [sym_switch_statement] = STATE(1140), - [sym_case_statement] = STATE(1140), - [sym_while_statement] = STATE(1140), - [sym_do_statement] = STATE(1140), - [sym_for_statement] = STATE(1140), - [sym_return_statement] = STATE(1140), - [sym_break_statement] = STATE(1140), - [sym_continue_statement] = STATE(1140), - [sym_goto_statement] = STATE(1140), - [sym_seh_try_statement] = STATE(1140), - [sym_seh_leave_statement] = STATE(1140), - [sym__expression] = STATE(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(1140), - [sym_co_return_statement] = STATE(1140), - [sym_co_yield_statement] = STATE(1140), - [sym_throw_statement] = STATE(1140), - [sym_try_statement] = STATE(1140), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(2666), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2359), - [sym_primitive_type] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2675), - [anon_sym_switch] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2684), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_do] = ACTIONS(2690), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2696), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_goto] = ACTIONS(2705), - [anon_sym___try] = ACTIONS(2708), - [anon_sym___leave] = ACTIONS(2711), - [anon_sym_not] = ACTIONS(2341), - [anon_sym_compl] = ACTIONS(2341), - [anon_sym_DASH_DASH] = ACTIONS(2404), - [anon_sym_PLUS_PLUS] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2407), - [anon_sym___alignof__] = ACTIONS(2410), - [anon_sym___alignof] = ACTIONS(2410), - [anon_sym__alignof] = ACTIONS(2410), - [anon_sym_alignof] = ACTIONS(2410), - [anon_sym__Alignof] = ACTIONS(2410), - [anon_sym_offsetof] = ACTIONS(2413), - [anon_sym__Generic] = ACTIONS(2416), - [anon_sym_asm] = ACTIONS(2419), - [anon_sym___asm__] = ACTIONS(2419), - [sym_number_literal] = ACTIONS(2422), - [anon_sym_L_SQUOTE] = ACTIONS(2425), - [anon_sym_u_SQUOTE] = ACTIONS(2425), - [anon_sym_U_SQUOTE] = ACTIONS(2425), - [anon_sym_u8_SQUOTE] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [anon_sym_L_DQUOTE] = ACTIONS(2428), - [anon_sym_u_DQUOTE] = ACTIONS(2428), - [anon_sym_U_DQUOTE] = ACTIONS(2428), - [anon_sym_u8_DQUOTE] = ACTIONS(2428), - [anon_sym_DQUOTE] = ACTIONS(2428), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [anon_sym_NULL] = ACTIONS(2434), - [anon_sym_nullptr] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2437), - [anon_sym_template] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_delete] = ACTIONS(2446), - [anon_sym_throw] = ACTIONS(2717), - [anon_sym_co_return] = ACTIONS(2720), - [anon_sym_co_yield] = ACTIONS(2723), - [anon_sym_R_DQUOTE] = ACTIONS(2458), - [anon_sym_LR_DQUOTE] = ACTIONS(2458), - [anon_sym_uR_DQUOTE] = ACTIONS(2458), - [anon_sym_UR_DQUOTE] = ACTIONS(2458), - [anon_sym_u8R_DQUOTE] = ACTIONS(2458), - [anon_sym_co_await] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_requires] = ACTIONS(2467), - [sym_this] = ACTIONS(2431), - }, - [194] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(7827), - [sym_attributed_statement] = STATE(7827), - [sym_labeled_statement] = STATE(7827), - [sym_expression_statement] = STATE(7827), - [sym_if_statement] = STATE(7827), - [sym_switch_statement] = STATE(7827), - [sym_case_statement] = STATE(7827), - [sym_while_statement] = STATE(7827), - [sym_do_statement] = STATE(7827), - [sym_for_statement] = STATE(7827), - [sym_return_statement] = STATE(7827), - [sym_break_statement] = STATE(7827), - [sym_continue_statement] = STATE(7827), - [sym_goto_statement] = STATE(7827), - [sym_seh_try_statement] = STATE(7827), - [sym_seh_leave_statement] = STATE(7827), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(7827), - [sym_co_return_statement] = STATE(7827), - [sym_co_yield_statement] = STATE(7827), - [sym_throw_statement] = STATE(7827), - [sym_try_statement] = STATE(7827), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), + [sym_attribute_declaration] = STATE(183), + [sym_compound_statement] = STATE(627), + [sym_attributed_statement] = STATE(627), + [sym_labeled_statement] = STATE(627), + [sym_expression_statement] = STATE(627), + [sym_if_statement] = STATE(627), + [sym_switch_statement] = STATE(627), + [sym_case_statement] = STATE(627), + [sym_while_statement] = STATE(627), + [sym_do_statement] = STATE(627), + [sym_for_statement] = STATE(627), + [sym_return_statement] = STATE(627), + [sym_break_statement] = STATE(627), + [sym_continue_statement] = STATE(627), + [sym_goto_statement] = STATE(627), + [sym_seh_try_statement] = STATE(627), + [sym_seh_leave_statement] = STATE(627), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(627), + [sym_co_return_statement] = STATE(627), + [sym_co_yield_statement] = STATE(627), + [sym_throw_statement] = STATE(627), + [sym_try_statement] = STATE(627), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(2300), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -118219,25 +118386,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(1104), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1112), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), - [anon_sym___leave] = ACTIONS(213), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -118268,13 +118435,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(1144), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -118285,74 +118452,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [195] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(619), - [sym_attributed_statement] = STATE(619), - [sym_labeled_statement] = STATE(619), - [sym_expression_statement] = STATE(619), - [sym_if_statement] = STATE(619), - [sym_switch_statement] = STATE(619), - [sym_case_statement] = STATE(619), - [sym_while_statement] = STATE(619), - [sym_do_statement] = STATE(619), - [sym_for_statement] = STATE(619), - [sym_return_statement] = STATE(619), - [sym_break_statement] = STATE(619), - [sym_continue_statement] = STATE(619), - [sym_goto_statement] = STATE(619), - [sym_seh_try_statement] = STATE(619), - [sym_seh_leave_statement] = STATE(619), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(619), - [sym_co_return_statement] = STATE(619), - [sym_co_yield_statement] = STATE(619), - [sym_throw_statement] = STATE(619), - [sym_try_statement] = STATE(619), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), + [194] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(504), + [sym_attributed_statement] = STATE(486), + [sym_labeled_statement] = STATE(494), + [sym_expression_statement] = STATE(499), + [sym_if_statement] = STATE(500), + [sym_switch_statement] = STATE(427), + [sym_case_statement] = STATE(477), + [sym_while_statement] = STATE(476), + [sym_do_statement] = STATE(475), + [sym_for_statement] = STATE(474), + [sym_return_statement] = STATE(472), + [sym_break_statement] = STATE(470), + [sym_continue_statement] = STATE(466), + [sym_goto_statement] = STATE(461), + [sym_seh_try_statement] = STATE(460), + [sym_seh_leave_statement] = STATE(459), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(458), + [sym_co_return_statement] = STATE(457), + [sym_co_yield_statement] = STATE(456), + [sym_throw_statement] = STATE(455), + [sym_try_statement] = STATE(453), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2564), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -118360,25 +118527,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(371), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), - [anon_sym___leave] = ACTIONS(213), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_default] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_goto] = ACTIONS(403), + [anon_sym___try] = ACTIONS(405), + [anon_sym___leave] = ACTIONS(407), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -118409,13 +118576,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(411), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(413), + [anon_sym_co_return] = ACTIONS(423), + [anon_sym_co_yield] = ACTIONS(425), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -118426,74 +118593,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [196] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(604), - [sym_attributed_statement] = STATE(604), - [sym_labeled_statement] = STATE(604), - [sym_expression_statement] = STATE(604), - [sym_if_statement] = STATE(604), - [sym_switch_statement] = STATE(604), - [sym_case_statement] = STATE(604), - [sym_while_statement] = STATE(604), - [sym_do_statement] = STATE(604), - [sym_for_statement] = STATE(604), - [sym_return_statement] = STATE(604), - [sym_break_statement] = STATE(604), - [sym_continue_statement] = STATE(604), - [sym_goto_statement] = STATE(604), - [sym_seh_try_statement] = STATE(604), - [sym_seh_leave_statement] = STATE(604), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(604), - [sym_co_return_statement] = STATE(604), - [sym_co_yield_statement] = STATE(604), - [sym_throw_statement] = STATE(604), - [sym_try_statement] = STATE(604), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), + [195] = { + [sym_attribute_declaration] = STATE(227), + [sym_compound_statement] = STATE(649), + [sym_attributed_statement] = STATE(649), + [sym_labeled_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_if_statement] = STATE(649), + [sym_switch_statement] = STATE(649), + [sym_case_statement] = STATE(649), + [sym_while_statement] = STATE(649), + [sym_do_statement] = STATE(649), + [sym_for_statement] = STATE(649), + [sym_return_statement] = STATE(649), + [sym_break_statement] = STATE(649), + [sym_continue_statement] = STATE(649), + [sym_goto_statement] = STATE(649), + [sym_seh_try_statement] = STATE(649), + [sym_seh_leave_statement] = STATE(649), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(649), + [sym_co_return_statement] = STATE(649), + [sym_co_yield_statement] = STATE(649), + [sym_throw_statement] = STATE(649), + [sym_try_statement] = STATE(649), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(2258), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -118504,21 +118671,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym___try] = ACTIONS(211), [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -118550,13 +118717,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_co_return] = ACTIONS(233), + [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -118567,74 +118734,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, + [196] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_seh_try_statement] = STATE(809), + [sym_seh_leave_statement] = STATE(809), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(809), + [sym_co_return_statement] = STATE(809), + [sym_co_yield_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_try_statement] = STATE(809), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2566), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2312), + [anon_sym_TILDE] = ACTIONS(2312), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_COLON_COLON] = ACTIONS(2324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_switch] = ACTIONS(2575), + [anon_sym_case] = ACTIONS(2578), + [anon_sym_default] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2584), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2596), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_goto] = ACTIONS(2602), + [anon_sym___try] = ACTIONS(2605), + [anon_sym___leave] = ACTIONS(2489), + [anon_sym_not] = ACTIONS(2315), + [anon_sym_compl] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_sizeof] = ACTIONS(2381), + [anon_sym___alignof__] = ACTIONS(2384), + [anon_sym___alignof] = ACTIONS(2384), + [anon_sym__alignof] = ACTIONS(2384), + [anon_sym_alignof] = ACTIONS(2384), + [anon_sym__Alignof] = ACTIONS(2384), + [anon_sym_offsetof] = ACTIONS(2387), + [anon_sym__Generic] = ACTIONS(2390), + [anon_sym_asm] = ACTIONS(2393), + [anon_sym___asm__] = ACTIONS(2393), + [sym_number_literal] = ACTIONS(2396), + [anon_sym_L_SQUOTE] = ACTIONS(2399), + [anon_sym_u_SQUOTE] = ACTIONS(2399), + [anon_sym_U_SQUOTE] = ACTIONS(2399), + [anon_sym_u8_SQUOTE] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_L_DQUOTE] = ACTIONS(2402), + [anon_sym_u_DQUOTE] = ACTIONS(2402), + [anon_sym_U_DQUOTE] = ACTIONS(2402), + [anon_sym_u8_DQUOTE] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2608), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2614), + [anon_sym_co_yield] = ACTIONS(2617), + [anon_sym_R_DQUOTE] = ACTIONS(2432), + [anon_sym_LR_DQUOTE] = ACTIONS(2432), + [anon_sym_uR_DQUOTE] = ACTIONS(2432), + [anon_sym_UR_DQUOTE] = ACTIONS(2432), + [anon_sym_u8R_DQUOTE] = ACTIONS(2432), + [anon_sym_co_await] = ACTIONS(2435), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_requires] = ACTIONS(2441), + [sym_this] = ACTIONS(2405), + }, [197] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(814), - [sym_attributed_statement] = STATE(814), - [sym_labeled_statement] = STATE(814), - [sym_expression_statement] = STATE(814), - [sym_if_statement] = STATE(814), - [sym_switch_statement] = STATE(814), - [sym_case_statement] = STATE(814), - [sym_while_statement] = STATE(814), - [sym_do_statement] = STATE(814), - [sym_for_statement] = STATE(814), - [sym_return_statement] = STATE(814), - [sym_break_statement] = STATE(814), - [sym_continue_statement] = STATE(814), - [sym_goto_statement] = STATE(814), - [sym_seh_try_statement] = STATE(814), - [sym_seh_leave_statement] = STATE(814), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(814), - [sym_co_return_statement] = STATE(814), - [sym_co_yield_statement] = STATE(814), - [sym_throw_statement] = STATE(814), - [sym_try_statement] = STATE(814), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2474), + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(468), + [sym_attributed_statement] = STATE(469), + [sym_labeled_statement] = STATE(429), + [sym_expression_statement] = STATE(471), + [sym_if_statement] = STATE(478), + [sym_switch_statement] = STATE(479), + [sym_case_statement] = STATE(481), + [sym_while_statement] = STATE(483), + [sym_do_statement] = STATE(484), + [sym_for_statement] = STATE(485), + [sym_return_statement] = STATE(487), + [sym_break_statement] = STATE(489), + [sym_continue_statement] = STATE(491), + [sym_goto_statement] = STATE(492), + [sym_seh_try_statement] = STATE(493), + [sym_seh_leave_statement] = STATE(496), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(497), + [sym_co_return_statement] = STATE(498), + [sym_co_yield_statement] = STATE(426), + [sym_throw_statement] = STATE(502), + [sym_try_statement] = STATE(503), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2564), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -118642,25 +118950,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(371), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_default] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_goto] = ACTIONS(403), + [anon_sym___try] = ACTIONS(405), + [anon_sym___leave] = ACTIONS(407), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -118691,13 +118999,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(411), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(413), + [anon_sym_co_return] = ACTIONS(423), + [anon_sym_co_yield] = ACTIONS(425), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -118709,73 +119017,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [198] = { - [sym_attribute_declaration] = STATE(178), - [sym_compound_statement] = STATE(671), - [sym_attributed_statement] = STATE(672), - [sym_labeled_statement] = STATE(673), - [sym_expression_statement] = STATE(682), - [sym_if_statement] = STATE(684), - [sym_switch_statement] = STATE(685), - [sym_case_statement] = STATE(687), - [sym_while_statement] = STATE(689), - [sym_do_statement] = STATE(691), - [sym_for_statement] = STATE(692), - [sym_return_statement] = STATE(693), - [sym_break_statement] = STATE(695), - [sym_continue_statement] = STATE(696), - [sym_goto_statement] = STATE(698), - [sym_seh_try_statement] = STATE(703), - [sym_seh_leave_statement] = STATE(705), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(706), - [sym_co_return_statement] = STATE(707), - [sym_co_yield_statement] = STATE(708), - [sym_throw_statement] = STATE(709), - [sym_try_statement] = STATE(710), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(2472), + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(316), + [sym_attributed_statement] = STATE(316), + [sym_labeled_statement] = STATE(316), + [sym_expression_statement] = STATE(316), + [sym_if_statement] = STATE(316), + [sym_switch_statement] = STATE(316), + [sym_case_statement] = STATE(316), + [sym_while_statement] = STATE(316), + [sym_do_statement] = STATE(316), + [sym_for_statement] = STATE(316), + [sym_return_statement] = STATE(316), + [sym_break_statement] = STATE(316), + [sym_continue_statement] = STATE(316), + [sym_goto_statement] = STATE(316), + [sym_seh_try_statement] = STATE(316), + [sym_seh_leave_statement] = STATE(316), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(316), + [sym_co_return_statement] = STATE(316), + [sym_co_yield_statement] = STATE(316), + [sym_throw_statement] = STATE(316), + [sym_try_statement] = STATE(316), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2302), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -118783,25 +119091,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(283), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(295), + [anon_sym_switch] = ACTIONS(297), + [anon_sym_case] = ACTIONS(299), + [anon_sym_default] = ACTIONS(301), + [anon_sym_while] = ACTIONS(303), + [anon_sym_do] = ACTIONS(305), + [anon_sym_for] = ACTIONS(307), + [anon_sym_return] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_goto] = ACTIONS(315), + [anon_sym___try] = ACTIONS(317), + [anon_sym___leave] = ACTIONS(319), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -118832,13 +119140,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(323), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(325), + [anon_sym_co_return] = ACTIONS(335), + [anon_sym_co_yield] = ACTIONS(337), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -118850,73 +119158,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [199] = { - [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(775), - [sym_attributed_statement] = STATE(775), - [sym_labeled_statement] = STATE(775), - [sym_expression_statement] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_case_statement] = STATE(775), - [sym_while_statement] = STATE(775), - [sym_do_statement] = STATE(775), - [sym_for_statement] = STATE(775), - [sym_return_statement] = STATE(775), - [sym_break_statement] = STATE(775), - [sym_continue_statement] = STATE(775), - [sym_goto_statement] = STATE(775), - [sym_seh_try_statement] = STATE(775), - [sym_seh_leave_statement] = STATE(775), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(775), - [sym_co_return_statement] = STATE(775), - [sym_co_yield_statement] = STATE(775), - [sym_throw_statement] = STATE(775), - [sym_try_statement] = STATE(775), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2656), + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(691), + [sym_attributed_statement] = STATE(697), + [sym_labeled_statement] = STATE(700), + [sym_expression_statement] = STATE(708), + [sym_if_statement] = STATE(712), + [sym_switch_statement] = STATE(720), + [sym_case_statement] = STATE(723), + [sym_while_statement] = STATE(725), + [sym_do_statement] = STATE(729), + [sym_for_statement] = STATE(730), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(733), + [sym_continue_statement] = STATE(746), + [sym_goto_statement] = STATE(748), + [sym_seh_try_statement] = STATE(750), + [sym_seh_leave_statement] = STATE(754), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(759), + [sym_co_return_statement] = STATE(760), + [sym_co_yield_statement] = STATE(762), + [sym_throw_statement] = STATE(765), + [sym_try_statement] = STATE(766), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(2298), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -118924,25 +119232,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(73), [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), + [anon_sym_for] = ACTIONS(85), [anon_sym_return] = ACTIONS(87), [anon_sym_break] = ACTIONS(89), [anon_sym_continue] = ACTIONS(91), [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), - [anon_sym___leave] = ACTIONS(213), + [anon_sym___try] = ACTIONS(1754), + [anon_sym___leave] = ACTIONS(1756), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -118973,7 +119281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -118991,73 +119299,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [200] = { - [sym_attribute_declaration] = STATE(178), - [sym_compound_statement] = STATE(630), - [sym_attributed_statement] = STATE(631), - [sym_labeled_statement] = STATE(633), - [sym_expression_statement] = STATE(634), - [sym_if_statement] = STATE(635), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(640), - [sym_while_statement] = STATE(641), - [sym_do_statement] = STATE(644), - [sym_for_statement] = STATE(647), - [sym_return_statement] = STATE(648), - [sym_break_statement] = STATE(649), - [sym_continue_statement] = STATE(650), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(657), - [sym_seh_leave_statement] = STATE(659), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(662), - [sym_co_return_statement] = STATE(664), - [sym_co_yield_statement] = STATE(666), - [sym_throw_statement] = STATE(668), - [sym_try_statement] = STATE(670), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(2472), + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(1177), + [sym_attributed_statement] = STATE(1177), + [sym_labeled_statement] = STATE(1177), + [sym_expression_statement] = STATE(1177), + [sym_if_statement] = STATE(1177), + [sym_switch_statement] = STATE(1177), + [sym_case_statement] = STATE(1177), + [sym_while_statement] = STATE(1177), + [sym_do_statement] = STATE(1177), + [sym_for_statement] = STATE(1177), + [sym_return_statement] = STATE(1177), + [sym_break_statement] = STATE(1177), + [sym_continue_statement] = STATE(1177), + [sym_goto_statement] = STATE(1177), + [sym_seh_try_statement] = STATE(1177), + [sym_seh_leave_statement] = STATE(1177), + [sym__expression] = STATE(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(1177), + [sym_co_return_statement] = STATE(1177), + [sym_co_yield_statement] = STATE(1177), + [sym_throw_statement] = STATE(1177), + [sym_try_statement] = STATE(1177), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2304), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -119065,25 +119373,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1882), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1888), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1906), + [anon_sym___try] = ACTIONS(1908), + [anon_sym___leave] = ACTIONS(1910), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -119114,13 +119422,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(1912), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(1914), + [anon_sym_co_return] = ACTIONS(1916), + [anon_sym_co_yield] = ACTIONS(1918), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -119132,73 +119440,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [201] = { - [sym_attribute_declaration] = STATE(178), - [sym_compound_statement] = STATE(534), - [sym_attributed_statement] = STATE(534), - [sym_labeled_statement] = STATE(534), - [sym_expression_statement] = STATE(534), - [sym_if_statement] = STATE(534), - [sym_switch_statement] = STATE(534), - [sym_case_statement] = STATE(534), - [sym_while_statement] = STATE(534), - [sym_do_statement] = STATE(534), - [sym_for_statement] = STATE(534), - [sym_return_statement] = STATE(534), - [sym_break_statement] = STATE(534), - [sym_continue_statement] = STATE(534), - [sym_goto_statement] = STATE(534), - [sym_seh_try_statement] = STATE(534), - [sym_seh_leave_statement] = STATE(534), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(534), - [sym_co_return_statement] = STATE(534), - [sym_co_yield_statement] = STATE(534), - [sym_throw_statement] = STATE(534), - [sym_try_statement] = STATE(534), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(2472), + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(618), + [sym_attributed_statement] = STATE(618), + [sym_labeled_statement] = STATE(618), + [sym_expression_statement] = STATE(618), + [sym_if_statement] = STATE(618), + [sym_switch_statement] = STATE(618), + [sym_case_statement] = STATE(618), + [sym_while_statement] = STATE(618), + [sym_do_statement] = STATE(618), + [sym_for_statement] = STATE(618), + [sym_return_statement] = STATE(618), + [sym_break_statement] = STATE(618), + [sym_continue_statement] = STATE(618), + [sym_goto_statement] = STATE(618), + [sym_seh_try_statement] = STATE(618), + [sym_seh_leave_statement] = STATE(618), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(618), + [sym_co_return_statement] = STATE(618), + [sym_co_yield_statement] = STATE(618), + [sym_throw_statement] = STATE(618), + [sym_try_statement] = STATE(618), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -119206,25 +119514,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(73), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), + [anon_sym_for] = ACTIONS(2294), [anon_sym_return] = ACTIONS(87), [anon_sym_break] = ACTIONS(89), [anon_sym_continue] = ACTIONS(91), [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1816), + [anon_sym___try] = ACTIONS(2296), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -119255,7 +119563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -119273,73 +119581,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [202] = { - [sym_attribute_declaration] = STATE(163), - [sym_compound_statement] = STATE(701), - [sym_attributed_statement] = STATE(700), - [sym_labeled_statement] = STATE(699), - [sym_expression_statement] = STATE(694), - [sym_if_statement] = STATE(690), - [sym_switch_statement] = STATE(688), - [sym_case_statement] = STATE(686), - [sym_while_statement] = STATE(683), - [sym_do_statement] = STATE(678), - [sym_for_statement] = STATE(677), - [sym_return_statement] = STATE(675), - [sym_break_statement] = STATE(669), - [sym_continue_statement] = STATE(667), - [sym_goto_statement] = STATE(661), - [sym_seh_try_statement] = STATE(658), - [sym_seh_leave_statement] = STATE(655), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(654), - [sym_co_return_statement] = STATE(651), - [sym_co_yield_statement] = STATE(642), - [sym_throw_statement] = STATE(761), - [sym_try_statement] = STATE(638), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(2214), + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(344), + [sym_attributed_statement] = STATE(344), + [sym_labeled_statement] = STATE(344), + [sym_expression_statement] = STATE(344), + [sym_if_statement] = STATE(344), + [sym_switch_statement] = STATE(344), + [sym_case_statement] = STATE(344), + [sym_while_statement] = STATE(344), + [sym_do_statement] = STATE(344), + [sym_for_statement] = STATE(344), + [sym_return_statement] = STATE(344), + [sym_break_statement] = STATE(344), + [sym_continue_statement] = STATE(344), + [sym_goto_statement] = STATE(344), + [sym_seh_try_statement] = STATE(344), + [sym_seh_leave_statement] = STATE(344), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(344), + [sym_co_return_statement] = STATE(344), + [sym_co_yield_statement] = STATE(344), + [sym_throw_statement] = STATE(344), + [sym_try_statement] = STATE(344), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2302), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -119347,25 +119655,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(283), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(189), - [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(193), - [anon_sym_default] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_do] = ACTIONS(199), - [anon_sym_for] = ACTIONS(201), - [anon_sym_return] = ACTIONS(203), - [anon_sym_break] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_goto] = ACTIONS(209), - [anon_sym___try] = ACTIONS(211), - [anon_sym___leave] = ACTIONS(213), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(295), + [anon_sym_switch] = ACTIONS(297), + [anon_sym_case] = ACTIONS(299), + [anon_sym_default] = ACTIONS(301), + [anon_sym_while] = ACTIONS(303), + [anon_sym_do] = ACTIONS(305), + [anon_sym_for] = ACTIONS(307), + [anon_sym_return] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_goto] = ACTIONS(315), + [anon_sym___try] = ACTIONS(317), + [anon_sym___leave] = ACTIONS(319), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -119396,13 +119704,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(221), + [anon_sym_try] = ACTIONS(323), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(223), - [anon_sym_co_return] = ACTIONS(233), - [anon_sym_co_yield] = ACTIONS(235), + [anon_sym_throw] = ACTIONS(325), + [anon_sym_co_return] = ACTIONS(335), + [anon_sym_co_yield] = ACTIONS(337), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -119414,73 +119722,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [203] = { - [sym_attribute_declaration] = STATE(176), - [sym_compound_statement] = STATE(471), - [sym_attributed_statement] = STATE(471), - [sym_labeled_statement] = STATE(471), - [sym_expression_statement] = STATE(471), - [sym_if_statement] = STATE(471), - [sym_switch_statement] = STATE(471), - [sym_case_statement] = STATE(471), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(471), - [sym_for_statement] = STATE(471), - [sym_return_statement] = STATE(471), - [sym_break_statement] = STATE(471), - [sym_continue_statement] = STATE(471), - [sym_goto_statement] = STATE(471), - [sym_seh_try_statement] = STATE(471), - [sym_seh_leave_statement] = STATE(471), - [sym__expression] = STATE(5053), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8499), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(471), - [sym_co_return_statement] = STATE(471), - [sym_co_yield_statement] = STATE(471), - [sym_throw_statement] = STATE(471), - [sym_try_statement] = STATE(471), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(2288), + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(473), + [sym_attributed_statement] = STATE(473), + [sym_labeled_statement] = STATE(473), + [sym_expression_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_switch_statement] = STATE(473), + [sym_case_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_do_statement] = STATE(473), + [sym_for_statement] = STATE(473), + [sym_return_statement] = STATE(473), + [sym_break_statement] = STATE(473), + [sym_continue_statement] = STATE(473), + [sym_goto_statement] = STATE(473), + [sym_seh_try_statement] = STATE(473), + [sym_seh_leave_statement] = STATE(473), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(473), + [sym_co_return_statement] = STATE(473), + [sym_co_yield_statement] = STATE(473), + [sym_throw_statement] = STATE(473), + [sym_try_statement] = STATE(473), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(2564), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -119493,7 +119801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_if] = ACTIONS(383), [anon_sym_switch] = ACTIONS(385), [anon_sym_case] = ACTIONS(387), @@ -119537,7 +119845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(411), [anon_sym_delete] = ACTIONS(135), @@ -119555,73 +119863,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [204] = { - [sym_attribute_declaration] = STATE(163), - [sym_compound_statement] = STATE(750), - [sym_attributed_statement] = STATE(747), - [sym_labeled_statement] = STATE(744), - [sym_expression_statement] = STATE(743), - [sym_if_statement] = STATE(742), - [sym_switch_statement] = STATE(741), - [sym_case_statement] = STATE(740), - [sym_while_statement] = STATE(739), - [sym_do_statement] = STATE(737), - [sym_for_statement] = STATE(736), - [sym_return_statement] = STATE(733), - [sym_break_statement] = STATE(731), - [sym_continue_statement] = STATE(730), - [sym_goto_statement] = STATE(729), - [sym_seh_try_statement] = STATE(728), - [sym_seh_leave_statement] = STATE(723), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(722), - [sym_co_return_statement] = STATE(717), - [sym_co_yield_statement] = STATE(714), - [sym_throw_statement] = STATE(712), - [sym_try_statement] = STATE(702), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(2214), + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(465), + [sym_attributed_statement] = STATE(465), + [sym_labeled_statement] = STATE(465), + [sym_expression_statement] = STATE(465), + [sym_if_statement] = STATE(465), + [sym_switch_statement] = STATE(465), + [sym_case_statement] = STATE(465), + [sym_while_statement] = STATE(465), + [sym_do_statement] = STATE(465), + [sym_for_statement] = STATE(465), + [sym_return_statement] = STATE(465), + [sym_break_statement] = STATE(465), + [sym_continue_statement] = STATE(465), + [sym_goto_statement] = STATE(465), + [sym_seh_try_statement] = STATE(465), + [sym_seh_leave_statement] = STATE(465), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(465), + [sym_co_return_statement] = STATE(465), + [sym_co_yield_statement] = STATE(465), + [sym_throw_statement] = STATE(465), + [sym_try_statement] = STATE(465), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2564), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -119629,25 +119937,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(371), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(189), - [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(193), - [anon_sym_default] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_do] = ACTIONS(199), - [anon_sym_for] = ACTIONS(201), - [anon_sym_return] = ACTIONS(203), - [anon_sym_break] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_goto] = ACTIONS(209), - [anon_sym___try] = ACTIONS(211), - [anon_sym___leave] = ACTIONS(213), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_default] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_goto] = ACTIONS(403), + [anon_sym___try] = ACTIONS(405), + [anon_sym___leave] = ACTIONS(407), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -119678,13 +119986,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(221), + [anon_sym_try] = ACTIONS(411), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(223), - [anon_sym_co_return] = ACTIONS(233), - [anon_sym_co_yield] = ACTIONS(235), + [anon_sym_throw] = ACTIONS(413), + [anon_sym_co_return] = ACTIONS(423), + [anon_sym_co_yield] = ACTIONS(425), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -119696,73 +120004,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [205] = { - [sym_attribute_declaration] = STATE(163), - [sym_compound_statement] = STATE(753), - [sym_attributed_statement] = STATE(753), - [sym_labeled_statement] = STATE(753), - [sym_expression_statement] = STATE(753), - [sym_if_statement] = STATE(753), - [sym_switch_statement] = STATE(753), - [sym_case_statement] = STATE(753), - [sym_while_statement] = STATE(753), - [sym_do_statement] = STATE(753), - [sym_for_statement] = STATE(753), - [sym_return_statement] = STATE(753), - [sym_break_statement] = STATE(753), - [sym_continue_statement] = STATE(753), - [sym_goto_statement] = STATE(753), - [sym_seh_try_statement] = STATE(753), - [sym_seh_leave_statement] = STATE(753), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(753), - [sym_co_return_statement] = STATE(753), - [sym_co_yield_statement] = STATE(753), - [sym_throw_statement] = STATE(753), - [sym_try_statement] = STATE(753), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(163), - [sym_identifier] = ACTIONS(2214), + [sym_attribute_declaration] = STATE(201), + [sym_compound_statement] = STATE(8459), + [sym_attributed_statement] = STATE(8459), + [sym_labeled_statement] = STATE(8459), + [sym_expression_statement] = STATE(8459), + [sym_if_statement] = STATE(8459), + [sym_switch_statement] = STATE(8459), + [sym_case_statement] = STATE(8459), + [sym_while_statement] = STATE(8459), + [sym_do_statement] = STATE(8459), + [sym_for_statement] = STATE(8459), + [sym_return_statement] = STATE(8459), + [sym_break_statement] = STATE(8459), + [sym_continue_statement] = STATE(8459), + [sym_goto_statement] = STATE(8459), + [sym_seh_try_statement] = STATE(8459), + [sym_seh_leave_statement] = STATE(8459), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(8459), + [sym_co_return_statement] = STATE(8459), + [sym_co_yield_statement] = STATE(8459), + [sym_throw_statement] = STATE(8459), + [sym_try_statement] = STATE(8459), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(2284), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -119773,21 +120081,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(189), - [anon_sym_switch] = ACTIONS(191), - [anon_sym_case] = ACTIONS(193), - [anon_sym_default] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_do] = ACTIONS(199), - [anon_sym_for] = ACTIONS(201), - [anon_sym_return] = ACTIONS(203), - [anon_sym_break] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_goto] = ACTIONS(209), - [anon_sym___try] = ACTIONS(211), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(2296), [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -119819,13 +120127,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(221), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(223), - [anon_sym_co_return] = ACTIONS(233), - [anon_sym_co_yield] = ACTIONS(235), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -119837,73 +120145,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [206] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(9081), - [sym_attributed_statement] = STATE(9081), - [sym_labeled_statement] = STATE(9081), - [sym_expression_statement] = STATE(9081), - [sym_if_statement] = STATE(9081), - [sym_switch_statement] = STATE(9081), - [sym_case_statement] = STATE(9081), - [sym_while_statement] = STATE(9081), - [sym_do_statement] = STATE(9081), - [sym_for_statement] = STATE(9081), - [sym_return_statement] = STATE(9081), - [sym_break_statement] = STATE(9081), - [sym_continue_statement] = STATE(9081), - [sym_goto_statement] = STATE(9081), - [sym_seh_try_statement] = STATE(9081), - [sym_seh_leave_statement] = STATE(9081), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(9081), - [sym_co_return_statement] = STATE(9081), - [sym_co_yield_statement] = STATE(9081), - [sym_throw_statement] = STATE(9081), - [sym_try_statement] = STATE(9081), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), + [sym_attribute_declaration] = STATE(183), + [sym_compound_statement] = STATE(624), + [sym_attributed_statement] = STATE(624), + [sym_labeled_statement] = STATE(624), + [sym_expression_statement] = STATE(624), + [sym_if_statement] = STATE(624), + [sym_switch_statement] = STATE(624), + [sym_case_statement] = STATE(624), + [sym_while_statement] = STATE(624), + [sym_do_statement] = STATE(624), + [sym_for_statement] = STATE(624), + [sym_return_statement] = STATE(624), + [sym_break_statement] = STATE(624), + [sym_continue_statement] = STATE(624), + [sym_goto_statement] = STATE(624), + [sym_seh_try_statement] = STATE(624), + [sym_seh_leave_statement] = STATE(624), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(624), + [sym_co_return_statement] = STATE(624), + [sym_co_yield_statement] = STATE(624), + [sym_throw_statement] = STATE(624), + [sym_try_statement] = STATE(624), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(2300), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -119911,25 +120219,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(1104), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1112), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), - [anon_sym___leave] = ACTIONS(213), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -119960,13 +120268,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(1144), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -119978,73 +120286,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [207] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(8538), - [sym_attributed_statement] = STATE(8538), - [sym_labeled_statement] = STATE(8538), - [sym_expression_statement] = STATE(8538), - [sym_if_statement] = STATE(8538), - [sym_switch_statement] = STATE(8538), - [sym_case_statement] = STATE(8538), - [sym_while_statement] = STATE(8538), - [sym_do_statement] = STATE(8538), - [sym_for_statement] = STATE(8538), - [sym_return_statement] = STATE(8538), - [sym_break_statement] = STATE(8538), - [sym_continue_statement] = STATE(8538), - [sym_goto_statement] = STATE(8538), - [sym_seh_try_statement] = STATE(8538), - [sym_seh_leave_statement] = STATE(8538), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(8538), - [sym_co_return_statement] = STATE(8538), - [sym_co_yield_statement] = STATE(8538), - [sym_throw_statement] = STATE(8538), - [sym_try_statement] = STATE(8538), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), + [sym__expression] = STATE(3582), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_initializer_list] = STATE(4067), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_EQ] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_STAR_EQ] = ACTIONS(2140), + [anon_sym_SLASH_EQ] = ACTIONS(2140), + [anon_sym_PERCENT_EQ] = ACTIONS(2140), + [anon_sym_PLUS_EQ] = ACTIONS(2140), + [anon_sym_DASH_EQ] = ACTIONS(2140), + [anon_sym_LT_LT_EQ] = ACTIONS(2140), + [anon_sym_GT_GT_EQ] = ACTIONS(2138), + [anon_sym_AMP_EQ] = ACTIONS(2140), + [anon_sym_CARET_EQ] = ACTIONS(2140), + [anon_sym_PIPE_EQ] = ACTIONS(2140), + [anon_sym_and_eq] = ACTIONS(2138), + [anon_sym_or_eq] = ACTIONS(2138), + [anon_sym_xor_eq] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_GT2] = ACTIONS(2140), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), + }, + [208] = { + [sym_attribute_declaration] = STATE(183), + [sym_compound_statement] = STATE(639), + [sym_attributed_statement] = STATE(639), + [sym_labeled_statement] = STATE(639), + [sym_expression_statement] = STATE(639), + [sym_if_statement] = STATE(639), + [sym_switch_statement] = STATE(639), + [sym_case_statement] = STATE(639), + [sym_while_statement] = STATE(639), + [sym_do_statement] = STATE(639), + [sym_for_statement] = STATE(639), + [sym_return_statement] = STATE(639), + [sym_break_statement] = STATE(639), + [sym_continue_statement] = STATE(639), + [sym_goto_statement] = STATE(639), + [sym_seh_try_statement] = STATE(639), + [sym_seh_leave_statement] = STATE(639), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(639), + [sym_co_return_statement] = STATE(639), + [sym_co_yield_statement] = STATE(639), + [sym_throw_statement] = STATE(639), + [sym_try_statement] = STATE(639), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(2300), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -120052,25 +120501,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(1104), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1112), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), - [anon_sym___leave] = ACTIONS(213), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -120101,13 +120550,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(1144), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -120118,215 +120567,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [208] = { - [sym_attribute_declaration] = STATE(208), - [sym_compound_statement] = STATE(775), - [sym_attributed_statement] = STATE(775), - [sym_labeled_statement] = STATE(775), - [sym_expression_statement] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_case_statement] = STATE(775), - [sym_while_statement] = STATE(775), - [sym_do_statement] = STATE(775), - [sym_for_statement] = STATE(775), - [sym_return_statement] = STATE(775), - [sym_break_statement] = STATE(775), - [sym_continue_statement] = STATE(775), - [sym_goto_statement] = STATE(775), - [sym_seh_try_statement] = STATE(775), - [sym_seh_leave_statement] = STATE(775), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(775), - [sym_co_return_statement] = STATE(775), - [sym_co_yield_statement] = STATE(775), - [sym_throw_statement] = STATE(775), - [sym_try_statement] = STATE(775), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(2726), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym_COLON_COLON] = ACTIONS(2350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2359), - [sym_primitive_type] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_switch] = ACTIONS(2738), - [anon_sym_case] = ACTIONS(2741), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym___try] = ACTIONS(2768), - [anon_sym___leave] = ACTIONS(2771), - [anon_sym_not] = ACTIONS(2341), - [anon_sym_compl] = ACTIONS(2341), - [anon_sym_DASH_DASH] = ACTIONS(2404), - [anon_sym_PLUS_PLUS] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2407), - [anon_sym___alignof__] = ACTIONS(2410), - [anon_sym___alignof] = ACTIONS(2410), - [anon_sym__alignof] = ACTIONS(2410), - [anon_sym_alignof] = ACTIONS(2410), - [anon_sym__Alignof] = ACTIONS(2410), - [anon_sym_offsetof] = ACTIONS(2413), - [anon_sym__Generic] = ACTIONS(2416), - [anon_sym_asm] = ACTIONS(2419), - [anon_sym___asm__] = ACTIONS(2419), - [sym_number_literal] = ACTIONS(2422), - [anon_sym_L_SQUOTE] = ACTIONS(2425), - [anon_sym_u_SQUOTE] = ACTIONS(2425), - [anon_sym_U_SQUOTE] = ACTIONS(2425), - [anon_sym_u8_SQUOTE] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [anon_sym_L_DQUOTE] = ACTIONS(2428), - [anon_sym_u_DQUOTE] = ACTIONS(2428), - [anon_sym_U_DQUOTE] = ACTIONS(2428), - [anon_sym_u8_DQUOTE] = ACTIONS(2428), - [anon_sym_DQUOTE] = ACTIONS(2428), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [anon_sym_NULL] = ACTIONS(2434), - [anon_sym_nullptr] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2437), - [anon_sym_template] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2446), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2780), - [anon_sym_co_yield] = ACTIONS(2783), - [anon_sym_R_DQUOTE] = ACTIONS(2458), - [anon_sym_LR_DQUOTE] = ACTIONS(2458), - [anon_sym_uR_DQUOTE] = ACTIONS(2458), - [anon_sym_UR_DQUOTE] = ACTIONS(2458), - [anon_sym_u8R_DQUOTE] = ACTIONS(2458), - [anon_sym_co_await] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_requires] = ACTIONS(2467), - [sym_this] = ACTIONS(2431), - }, [209] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(795), - [sym_attributed_statement] = STATE(599), - [sym_labeled_statement] = STATE(796), - [sym_expression_statement] = STATE(800), - [sym_if_statement] = STATE(801), - [sym_switch_statement] = STATE(802), - [sym_case_statement] = STATE(803), - [sym_while_statement] = STATE(805), - [sym_do_statement] = STATE(808), - [sym_for_statement] = STATE(811), - [sym_return_statement] = STATE(813), - [sym_break_statement] = STATE(829), - [sym_continue_statement] = STATE(821), - [sym_goto_statement] = STATE(815), - [sym_seh_try_statement] = STATE(600), - [sym_seh_leave_statement] = STATE(820), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(817), - [sym_co_return_statement] = STATE(798), - [sym_co_yield_statement] = STATE(797), - [sym_throw_statement] = STATE(792), - [sym_try_statement] = STATE(785), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2474), + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(775), + [sym_attributed_statement] = STATE(776), + [sym_labeled_statement] = STATE(778), + [sym_expression_statement] = STATE(786), + [sym_if_statement] = STATE(788), + [sym_switch_statement] = STATE(792), + [sym_case_statement] = STATE(795), + [sym_while_statement] = STATE(797), + [sym_do_statement] = STATE(798), + [sym_for_statement] = STATE(804), + [sym_return_statement] = STATE(806), + [sym_break_statement] = STATE(807), + [sym_continue_statement] = STATE(812), + [sym_goto_statement] = STATE(813), + [sym_seh_try_statement] = STATE(814), + [sym_seh_leave_statement] = STATE(815), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(820), + [sym_co_return_statement] = STATE(821), + [sym_co_yield_statement] = STATE(822), + [sym_throw_statement] = STATE(824), + [sym_try_statement] = STATE(828), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(2298), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -120334,25 +120642,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(1754), + [anon_sym___leave] = ACTIONS(1756), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -120383,13 +120691,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -120401,73 +120709,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [210] = { - [sym_attribute_declaration] = STATE(178), - [sym_compound_statement] = STATE(554), - [sym_attributed_statement] = STATE(554), - [sym_labeled_statement] = STATE(554), - [sym_expression_statement] = STATE(554), - [sym_if_statement] = STATE(554), - [sym_switch_statement] = STATE(554), - [sym_case_statement] = STATE(554), - [sym_while_statement] = STATE(554), - [sym_do_statement] = STATE(554), - [sym_for_statement] = STATE(554), - [sym_return_statement] = STATE(554), - [sym_break_statement] = STATE(554), - [sym_continue_statement] = STATE(554), - [sym_goto_statement] = STATE(554), - [sym_seh_try_statement] = STATE(554), - [sym_seh_leave_statement] = STATE(554), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(554), - [sym_co_return_statement] = STATE(554), - [sym_co_yield_statement] = STATE(554), - [sym_throw_statement] = STATE(554), - [sym_try_statement] = STATE(554), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(2472), + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(567), + [sym_attributed_statement] = STATE(567), + [sym_labeled_statement] = STATE(567), + [sym_expression_statement] = STATE(567), + [sym_if_statement] = STATE(567), + [sym_switch_statement] = STATE(567), + [sym_case_statement] = STATE(567), + [sym_while_statement] = STATE(567), + [sym_do_statement] = STATE(567), + [sym_for_statement] = STATE(567), + [sym_return_statement] = STATE(567), + [sym_break_statement] = STATE(567), + [sym_continue_statement] = STATE(567), + [sym_goto_statement] = STATE(567), + [sym_seh_try_statement] = STATE(567), + [sym_seh_leave_statement] = STATE(567), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(567), + [sym_co_return_statement] = STATE(567), + [sym_co_yield_statement] = STATE(567), + [sym_throw_statement] = STATE(567), + [sym_try_statement] = STATE(567), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(2298), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -120475,12 +120783,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_if] = ACTIONS(73), [anon_sym_switch] = ACTIONS(75), [anon_sym_case] = ACTIONS(77), @@ -120492,8 +120800,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(89), [anon_sym_continue] = ACTIONS(91), [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1816), + [anon_sym___try] = ACTIONS(1754), + [anon_sym___leave] = ACTIONS(1756), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -120524,7 +120832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -120542,73 +120850,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [211] = { - [sym_attribute_declaration] = STATE(193), - [sym_compound_statement] = STATE(1140), - [sym_attributed_statement] = STATE(1140), - [sym_labeled_statement] = STATE(1140), - [sym_expression_statement] = STATE(1140), - [sym_if_statement] = STATE(1140), - [sym_switch_statement] = STATE(1140), - [sym_case_statement] = STATE(1140), - [sym_while_statement] = STATE(1140), - [sym_do_statement] = STATE(1140), - [sym_for_statement] = STATE(1140), - [sym_return_statement] = STATE(1140), - [sym_break_statement] = STATE(1140), - [sym_continue_statement] = STATE(1140), - [sym_goto_statement] = STATE(1140), - [sym_seh_try_statement] = STATE(1140), - [sym_seh_leave_statement] = STATE(1140), - [sym__expression] = STATE(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(1140), - [sym_co_return_statement] = STATE(1140), - [sym_co_yield_statement] = STATE(1140), - [sym_throw_statement] = STATE(1140), - [sym_try_statement] = STATE(1140), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(2282), + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(248), + [sym_attributed_statement] = STATE(248), + [sym_labeled_statement] = STATE(248), + [sym_expression_statement] = STATE(248), + [sym_if_statement] = STATE(248), + [sym_switch_statement] = STATE(248), + [sym_case_statement] = STATE(248), + [sym_while_statement] = STATE(248), + [sym_do_statement] = STATE(248), + [sym_for_statement] = STATE(248), + [sym_return_statement] = STATE(248), + [sym_break_statement] = STATE(248), + [sym_continue_statement] = STATE(248), + [sym_goto_statement] = STATE(248), + [sym_seh_try_statement] = STATE(248), + [sym_seh_leave_statement] = STATE(248), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(248), + [sym_co_return_statement] = STATE(248), + [sym_co_yield_statement] = STATE(248), + [sym_throw_statement] = STATE(248), + [sym_try_statement] = STATE(248), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2302), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -120616,25 +120924,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(283), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1892), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym___try] = ACTIONS(1908), - [anon_sym___leave] = ACTIONS(1910), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(295), + [anon_sym_switch] = ACTIONS(297), + [anon_sym_case] = ACTIONS(299), + [anon_sym_default] = ACTIONS(301), + [anon_sym_while] = ACTIONS(303), + [anon_sym_do] = ACTIONS(305), + [anon_sym_for] = ACTIONS(307), + [anon_sym_return] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_goto] = ACTIONS(315), + [anon_sym___try] = ACTIONS(317), + [anon_sym___leave] = ACTIONS(319), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -120665,13 +120973,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1912), + [anon_sym_try] = ACTIONS(323), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1914), - [anon_sym_co_return] = ACTIONS(1916), - [anon_sym_co_yield] = ACTIONS(1918), + [anon_sym_throw] = ACTIONS(325), + [anon_sym_co_return] = ACTIONS(335), + [anon_sym_co_yield] = ACTIONS(337), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -120683,73 +120991,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [212] = { - [sym_attribute_declaration] = STATE(178), - [sym_compound_statement] = STATE(624), - [sym_attributed_statement] = STATE(624), - [sym_labeled_statement] = STATE(624), - [sym_expression_statement] = STATE(624), - [sym_if_statement] = STATE(624), - [sym_switch_statement] = STATE(624), - [sym_case_statement] = STATE(624), - [sym_while_statement] = STATE(624), - [sym_do_statement] = STATE(624), - [sym_for_statement] = STATE(624), - [sym_return_statement] = STATE(624), - [sym_break_statement] = STATE(624), - [sym_continue_statement] = STATE(624), - [sym_goto_statement] = STATE(624), - [sym_seh_try_statement] = STATE(624), - [sym_seh_leave_statement] = STATE(624), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(624), - [sym_co_return_statement] = STATE(624), - [sym_co_yield_statement] = STATE(624), - [sym_throw_statement] = STATE(624), - [sym_try_statement] = STATE(624), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(2472), + [sym_attribute_declaration] = STATE(183), + [sym_compound_statement] = STATE(642), + [sym_attributed_statement] = STATE(644), + [sym_labeled_statement] = STATE(645), + [sym_expression_statement] = STATE(651), + [sym_if_statement] = STATE(654), + [sym_switch_statement] = STATE(656), + [sym_case_statement] = STATE(657), + [sym_while_statement] = STATE(660), + [sym_do_statement] = STATE(661), + [sym_for_statement] = STATE(663), + [sym_return_statement] = STATE(664), + [sym_break_statement] = STATE(665), + [sym_continue_statement] = STATE(667), + [sym_goto_statement] = STATE(668), + [sym_seh_try_statement] = STATE(669), + [sym_seh_leave_statement] = STATE(675), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(676), + [sym_co_return_statement] = STATE(677), + [sym_co_yield_statement] = STATE(679), + [sym_throw_statement] = STATE(680), + [sym_try_statement] = STATE(681), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(2300), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -120757,25 +121065,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1104), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1112), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -120806,13 +121114,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(1144), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -120824,73 +121132,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [213] = { - [sym_attribute_declaration] = STATE(177), - [sym_compound_statement] = STATE(313), - [sym_attributed_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym_seh_try_statement] = STATE(313), - [sym_seh_leave_statement] = STATE(313), - [sym__expression] = STATE(4997), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8889), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(313), - [sym_co_return_statement] = STATE(313), - [sym_co_yield_statement] = STATE(313), - [sym_throw_statement] = STATE(313), - [sym_try_statement] = STATE(313), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(2470), + [sym_attribute_declaration] = STATE(183), + [sym_compound_statement] = STATE(682), + [sym_attributed_statement] = STATE(684), + [sym_labeled_statement] = STATE(687), + [sym_expression_statement] = STATE(689), + [sym_if_statement] = STATE(690), + [sym_switch_statement] = STATE(694), + [sym_case_statement] = STATE(696), + [sym_while_statement] = STATE(699), + [sym_do_statement] = STATE(701), + [sym_for_statement] = STATE(706), + [sym_return_statement] = STATE(710), + [sym_break_statement] = STATE(711), + [sym_continue_statement] = STATE(713), + [sym_goto_statement] = STATE(716), + [sym_seh_try_statement] = STATE(717), + [sym_seh_leave_statement] = STATE(719), + [sym__expression] = STATE(5058), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9233), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(721), + [sym_co_return_statement] = STATE(722), + [sym_co_yield_statement] = STATE(724), + [sym_throw_statement] = STATE(727), + [sym_try_statement] = STATE(728), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(2300), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -120898,25 +121206,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(1104), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1112), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(295), - [anon_sym_switch] = ACTIONS(297), - [anon_sym_case] = ACTIONS(299), - [anon_sym_default] = ACTIONS(301), - [anon_sym_while] = ACTIONS(303), - [anon_sym_do] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_return] = ACTIONS(309), - [anon_sym_break] = ACTIONS(311), - [anon_sym_continue] = ACTIONS(313), - [anon_sym_goto] = ACTIONS(315), - [anon_sym___try] = ACTIONS(317), - [anon_sym___leave] = ACTIONS(319), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1138), + [anon_sym___leave] = ACTIONS(1140), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -120947,13 +121255,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(323), + [anon_sym_try] = ACTIONS(1144), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(325), - [anon_sym_co_return] = ACTIONS(335), - [anon_sym_co_yield] = ACTIONS(337), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_co_return] = ACTIONS(1156), + [anon_sym_co_yield] = ACTIONS(1158), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -120965,73 +121273,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [214] = { - [sym_attribute_declaration] = STATE(178), - [sym_compound_statement] = STATE(619), - [sym_attributed_statement] = STATE(619), - [sym_labeled_statement] = STATE(619), - [sym_expression_statement] = STATE(619), - [sym_if_statement] = STATE(619), - [sym_switch_statement] = STATE(619), - [sym_case_statement] = STATE(619), - [sym_while_statement] = STATE(619), - [sym_do_statement] = STATE(619), - [sym_for_statement] = STATE(619), - [sym_return_statement] = STATE(619), - [sym_break_statement] = STATE(619), - [sym_continue_statement] = STATE(619), - [sym_goto_statement] = STATE(619), - [sym_seh_try_statement] = STATE(619), - [sym_seh_leave_statement] = STATE(619), - [sym__expression] = STATE(5020), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9035), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(619), - [sym_co_return_statement] = STATE(619), - [sym_co_yield_statement] = STATE(619), - [sym_throw_statement] = STATE(619), - [sym_try_statement] = STATE(619), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(2472), + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(604), + [sym_attributed_statement] = STATE(604), + [sym_labeled_statement] = STATE(604), + [sym_expression_statement] = STATE(604), + [sym_if_statement] = STATE(604), + [sym_switch_statement] = STATE(604), + [sym_case_statement] = STATE(604), + [sym_while_statement] = STATE(604), + [sym_do_statement] = STATE(604), + [sym_for_statement] = STATE(604), + [sym_return_statement] = STATE(604), + [sym_break_statement] = STATE(604), + [sym_continue_statement] = STATE(604), + [sym_goto_statement] = STATE(604), + [sym_seh_try_statement] = STATE(604), + [sym_seh_leave_statement] = STATE(604), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(604), + [sym_co_return_statement] = STATE(604), + [sym_co_yield_statement] = STATE(604), + [sym_throw_statement] = STATE(604), + [sym_try_statement] = STATE(604), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(2298), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -121039,12 +121347,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_if] = ACTIONS(73), [anon_sym_switch] = ACTIONS(75), [anon_sym_case] = ACTIONS(77), @@ -121056,8 +121364,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(89), [anon_sym_continue] = ACTIONS(91), [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(1814), - [anon_sym___leave] = ACTIONS(1816), + [anon_sym___try] = ACTIONS(1754), + [anon_sym___leave] = ACTIONS(1756), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -121088,7 +121396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -121106,73 +121414,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [215] = { - [sym_attribute_declaration] = STATE(211), - [sym_compound_statement] = STATE(1120), - [sym_attributed_statement] = STATE(1120), - [sym_labeled_statement] = STATE(1120), - [sym_expression_statement] = STATE(1120), - [sym_if_statement] = STATE(1120), - [sym_switch_statement] = STATE(1120), - [sym_case_statement] = STATE(1120), - [sym_while_statement] = STATE(1120), - [sym_do_statement] = STATE(1120), - [sym_for_statement] = STATE(1120), - [sym_return_statement] = STATE(1120), - [sym_break_statement] = STATE(1120), - [sym_continue_statement] = STATE(1120), - [sym_goto_statement] = STATE(1120), - [sym_seh_try_statement] = STATE(1120), - [sym_seh_leave_statement] = STATE(1120), - [sym__expression] = STATE(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(1120), - [sym_co_return_statement] = STATE(1120), - [sym_co_yield_statement] = STATE(1120), - [sym_throw_statement] = STATE(1120), - [sym_try_statement] = STATE(1120), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(2282), + [sym_attribute_declaration] = STATE(215), + [sym_compound_statement] = STATE(618), + [sym_attributed_statement] = STATE(618), + [sym_labeled_statement] = STATE(618), + [sym_expression_statement] = STATE(618), + [sym_if_statement] = STATE(618), + [sym_switch_statement] = STATE(618), + [sym_case_statement] = STATE(618), + [sym_while_statement] = STATE(618), + [sym_do_statement] = STATE(618), + [sym_for_statement] = STATE(618), + [sym_return_statement] = STATE(618), + [sym_break_statement] = STATE(618), + [sym_continue_statement] = STATE(618), + [sym_goto_statement] = STATE(618), + [sym_seh_try_statement] = STATE(618), + [sym_seh_leave_statement] = STATE(618), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(618), + [sym_co_return_statement] = STATE(618), + [sym_co_yield_statement] = STATE(618), + [sym_throw_statement] = STATE(618), + [sym_try_statement] = STATE(618), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(2662), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2312), + [anon_sym_TILDE] = ACTIONS(2312), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2668), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_case] = ACTIONS(2671), + [anon_sym_default] = ACTIONS(2674), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_goto] = ACTIONS(2483), + [anon_sym___try] = ACTIONS(2683), + [anon_sym___leave] = ACTIONS(2686), + [anon_sym_not] = ACTIONS(2315), + [anon_sym_compl] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_sizeof] = ACTIONS(2381), + [anon_sym___alignof__] = ACTIONS(2384), + [anon_sym___alignof] = ACTIONS(2384), + [anon_sym__alignof] = ACTIONS(2384), + [anon_sym_alignof] = ACTIONS(2384), + [anon_sym__Alignof] = ACTIONS(2384), + [anon_sym_offsetof] = ACTIONS(2387), + [anon_sym__Generic] = ACTIONS(2390), + [anon_sym_asm] = ACTIONS(2393), + [anon_sym___asm__] = ACTIONS(2393), + [sym_number_literal] = ACTIONS(2396), + [anon_sym_L_SQUOTE] = ACTIONS(2399), + [anon_sym_u_SQUOTE] = ACTIONS(2399), + [anon_sym_U_SQUOTE] = ACTIONS(2399), + [anon_sym_u8_SQUOTE] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_L_DQUOTE] = ACTIONS(2402), + [anon_sym_u_DQUOTE] = ACTIONS(2402), + [anon_sym_U_DQUOTE] = ACTIONS(2402), + [anon_sym_u8_DQUOTE] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2495), + [anon_sym_co_return] = ACTIONS(2498), + [anon_sym_co_yield] = ACTIONS(2501), + [anon_sym_R_DQUOTE] = ACTIONS(2432), + [anon_sym_LR_DQUOTE] = ACTIONS(2432), + [anon_sym_uR_DQUOTE] = ACTIONS(2432), + [anon_sym_UR_DQUOTE] = ACTIONS(2432), + [anon_sym_u8R_DQUOTE] = ACTIONS(2432), + [anon_sym_co_await] = ACTIONS(2435), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_requires] = ACTIONS(2441), + [sym_this] = ACTIONS(2405), + }, + [216] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(404), + [sym_attributed_statement] = STATE(404), + [sym_labeled_statement] = STATE(404), + [sym_expression_statement] = STATE(404), + [sym_if_statement] = STATE(404), + [sym_switch_statement] = STATE(404), + [sym_case_statement] = STATE(404), + [sym_while_statement] = STATE(404), + [sym_do_statement] = STATE(404), + [sym_for_statement] = STATE(404), + [sym_return_statement] = STATE(404), + [sym_break_statement] = STATE(404), + [sym_continue_statement] = STATE(404), + [sym_goto_statement] = STATE(404), + [sym_seh_try_statement] = STATE(404), + [sym_seh_leave_statement] = STATE(404), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(404), + [sym_co_return_statement] = STATE(404), + [sym_co_yield_statement] = STATE(404), + [sym_throw_statement] = STATE(404), + [sym_try_statement] = STATE(404), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2564), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -121180,25 +121629,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(371), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1892), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym___try] = ACTIONS(1908), - [anon_sym___leave] = ACTIONS(1910), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_default] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_goto] = ACTIONS(403), + [anon_sym___try] = ACTIONS(405), + [anon_sym___leave] = ACTIONS(407), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -121229,13 +121678,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1912), + [anon_sym_try] = ACTIONS(411), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1914), - [anon_sym_co_return] = ACTIONS(1916), - [anon_sym_co_yield] = ACTIONS(1918), + [anon_sym_throw] = ACTIONS(413), + [anon_sym_co_return] = ACTIONS(423), + [anon_sym_co_yield] = ACTIONS(425), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -121246,215 +121695,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [216] = { - [sym_attribute_declaration] = STATE(216), - [sym_compound_statement] = STATE(775), - [sym_attributed_statement] = STATE(775), - [sym_labeled_statement] = STATE(775), - [sym_expression_statement] = STATE(775), - [sym_if_statement] = STATE(775), - [sym_switch_statement] = STATE(775), - [sym_case_statement] = STATE(775), - [sym_while_statement] = STATE(775), - [sym_do_statement] = STATE(775), - [sym_for_statement] = STATE(775), - [sym_return_statement] = STATE(775), - [sym_break_statement] = STATE(775), - [sym_continue_statement] = STATE(775), - [sym_goto_statement] = STATE(775), - [sym_seh_try_statement] = STATE(775), - [sym_seh_leave_statement] = STATE(775), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(775), - [sym_co_return_statement] = STATE(775), - [sym_co_yield_statement] = STATE(775), - [sym_throw_statement] = STATE(775), - [sym_try_statement] = STATE(775), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(2786), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_COLON_COLON] = ACTIONS(2350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2359), - [sym_primitive_type] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2738), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2684), - [anon_sym_while] = ACTIONS(2792), - [anon_sym_do] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2795), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_goto] = ACTIONS(2765), - [anon_sym___try] = ACTIONS(2798), - [anon_sym___leave] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2341), - [anon_sym_compl] = ACTIONS(2341), - [anon_sym_DASH_DASH] = ACTIONS(2404), - [anon_sym_PLUS_PLUS] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2407), - [anon_sym___alignof__] = ACTIONS(2410), - [anon_sym___alignof] = ACTIONS(2410), - [anon_sym__alignof] = ACTIONS(2410), - [anon_sym_alignof] = ACTIONS(2410), - [anon_sym__Alignof] = ACTIONS(2410), - [anon_sym_offsetof] = ACTIONS(2413), - [anon_sym__Generic] = ACTIONS(2416), - [anon_sym_asm] = ACTIONS(2419), - [anon_sym___asm__] = ACTIONS(2419), - [sym_number_literal] = ACTIONS(2422), - [anon_sym_L_SQUOTE] = ACTIONS(2425), - [anon_sym_u_SQUOTE] = ACTIONS(2425), - [anon_sym_U_SQUOTE] = ACTIONS(2425), - [anon_sym_u8_SQUOTE] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [anon_sym_L_DQUOTE] = ACTIONS(2428), - [anon_sym_u_DQUOTE] = ACTIONS(2428), - [anon_sym_U_DQUOTE] = ACTIONS(2428), - [anon_sym_u8_DQUOTE] = ACTIONS(2428), - [anon_sym_DQUOTE] = ACTIONS(2428), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [anon_sym_NULL] = ACTIONS(2434), - [anon_sym_nullptr] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2437), - [anon_sym_template] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2446), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2780), - [anon_sym_co_yield] = ACTIONS(2783), - [anon_sym_R_DQUOTE] = ACTIONS(2458), - [anon_sym_LR_DQUOTE] = ACTIONS(2458), - [anon_sym_uR_DQUOTE] = ACTIONS(2458), - [anon_sym_UR_DQUOTE] = ACTIONS(2458), - [anon_sym_u8R_DQUOTE] = ACTIONS(2458), - [anon_sym_co_await] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_requires] = ACTIONS(2467), - [sym_this] = ACTIONS(2431), - }, [217] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(762), - [sym_attributed_statement] = STATE(763), - [sym_labeled_statement] = STATE(764), - [sym_expression_statement] = STATE(766), - [sym_if_statement] = STATE(767), - [sym_switch_statement] = STATE(768), - [sym_case_statement] = STATE(769), - [sym_while_statement] = STATE(771), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(774), - [sym_return_statement] = STATE(776), - [sym_break_statement] = STATE(777), - [sym_continue_statement] = STATE(778), - [sym_goto_statement] = STATE(780), - [sym_seh_try_statement] = STATE(784), - [sym_seh_leave_statement] = STATE(786), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(787), - [sym_co_return_statement] = STATE(789), - [sym_co_yield_statement] = STATE(790), - [sym_throw_statement] = STATE(791), - [sym_try_statement] = STATE(793), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2474), + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(520), + [sym_attributed_statement] = STATE(520), + [sym_labeled_statement] = STATE(520), + [sym_expression_statement] = STATE(520), + [sym_if_statement] = STATE(520), + [sym_switch_statement] = STATE(520), + [sym_case_statement] = STATE(520), + [sym_while_statement] = STATE(520), + [sym_do_statement] = STATE(520), + [sym_for_statement] = STATE(520), + [sym_return_statement] = STATE(520), + [sym_break_statement] = STATE(520), + [sym_continue_statement] = STATE(520), + [sym_goto_statement] = STATE(520), + [sym_seh_try_statement] = STATE(520), + [sym_seh_leave_statement] = STATE(520), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(520), + [sym_co_return_statement] = STATE(520), + [sym_co_yield_statement] = STATE(520), + [sym_throw_statement] = STATE(520), + [sym_try_statement] = STATE(520), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(2298), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -121462,25 +121770,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_do] = ACTIONS(83), + [anon_sym_for] = ACTIONS(85), + [anon_sym_return] = ACTIONS(87), + [anon_sym_break] = ACTIONS(89), + [anon_sym_continue] = ACTIONS(91), + [anon_sym_goto] = ACTIONS(93), + [anon_sym___try] = ACTIONS(1754), + [anon_sym___leave] = ACTIONS(1756), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -121511,13 +121819,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(137), + [anon_sym_co_return] = ACTIONS(147), + [anon_sym_co_yield] = ACTIONS(149), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -121529,73 +121837,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [218] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(7911), - [sym_attributed_statement] = STATE(7911), - [sym_labeled_statement] = STATE(7911), - [sym_expression_statement] = STATE(7911), - [sym_if_statement] = STATE(7911), - [sym_switch_statement] = STATE(7911), - [sym_case_statement] = STATE(7911), - [sym_while_statement] = STATE(7911), - [sym_do_statement] = STATE(7911), - [sym_for_statement] = STATE(7911), - [sym_return_statement] = STATE(7911), - [sym_break_statement] = STATE(7911), - [sym_continue_statement] = STATE(7911), - [sym_goto_statement] = STATE(7911), - [sym_seh_try_statement] = STATE(7911), - [sym_seh_leave_statement] = STATE(7911), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(7911), - [sym_co_return_statement] = STATE(7911), - [sym_co_yield_statement] = STATE(7911), - [sym_throw_statement] = STATE(7911), - [sym_try_statement] = STATE(7911), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(617), + [sym_attributed_statement] = STATE(617), + [sym_labeled_statement] = STATE(617), + [sym_expression_statement] = STATE(617), + [sym_if_statement] = STATE(617), + [sym_switch_statement] = STATE(617), + [sym_case_statement] = STATE(617), + [sym_while_statement] = STATE(617), + [sym_do_statement] = STATE(617), + [sym_for_statement] = STATE(617), + [sym_return_statement] = STATE(617), + [sym_break_statement] = STATE(617), + [sym_continue_statement] = STATE(617), + [sym_goto_statement] = STATE(617), + [sym_seh_try_statement] = STATE(617), + [sym_seh_leave_statement] = STATE(617), + [sym__expression] = STATE(4968), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8872), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(617), + [sym_co_return_statement] = STATE(617), + [sym_co_yield_statement] = STATE(617), + [sym_throw_statement] = STATE(617), + [sym_try_statement] = STATE(617), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(2298), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -121603,25 +121911,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(1752), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(73), [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), + [anon_sym_case] = ACTIONS(77), + [anon_sym_default] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), + [anon_sym_for] = ACTIONS(85), [anon_sym_return] = ACTIONS(87), [anon_sym_break] = ACTIONS(89), [anon_sym_continue] = ACTIONS(91), [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), - [anon_sym___leave] = ACTIONS(213), + [anon_sym___try] = ACTIONS(1754), + [anon_sym___leave] = ACTIONS(1756), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -121652,7 +121960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_try] = ACTIONS(133), [anon_sym_delete] = ACTIONS(135), @@ -121670,73 +121978,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [219] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(624), - [sym_attributed_statement] = STATE(624), - [sym_labeled_statement] = STATE(624), - [sym_expression_statement] = STATE(624), - [sym_if_statement] = STATE(624), - [sym_switch_statement] = STATE(624), - [sym_case_statement] = STATE(624), - [sym_while_statement] = STATE(624), - [sym_do_statement] = STATE(624), - [sym_for_statement] = STATE(624), - [sym_return_statement] = STATE(624), - [sym_break_statement] = STATE(624), - [sym_continue_statement] = STATE(624), - [sym_goto_statement] = STATE(624), - [sym_seh_try_statement] = STATE(624), - [sym_seh_leave_statement] = STATE(624), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(624), - [sym_co_return_statement] = STATE(624), - [sym_co_yield_statement] = STATE(624), - [sym_throw_statement] = STATE(624), - [sym_try_statement] = STATE(624), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(372), + [sym_attributed_statement] = STATE(372), + [sym_labeled_statement] = STATE(372), + [sym_expression_statement] = STATE(372), + [sym_if_statement] = STATE(372), + [sym_switch_statement] = STATE(372), + [sym_case_statement] = STATE(372), + [sym_while_statement] = STATE(372), + [sym_do_statement] = STATE(372), + [sym_for_statement] = STATE(372), + [sym_return_statement] = STATE(372), + [sym_break_statement] = STATE(372), + [sym_continue_statement] = STATE(372), + [sym_goto_statement] = STATE(372), + [sym_seh_try_statement] = STATE(372), + [sym_seh_leave_statement] = STATE(372), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(372), + [sym_co_return_statement] = STATE(372), + [sym_co_yield_statement] = STATE(372), + [sym_throw_statement] = STATE(372), + [sym_try_statement] = STATE(372), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2564), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -121744,25 +122052,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(371), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), - [anon_sym___leave] = ACTIONS(213), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_default] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_goto] = ACTIONS(403), + [anon_sym___try] = ACTIONS(405), + [anon_sym___leave] = ACTIONS(407), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -121793,13 +122101,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(411), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(413), + [anon_sym_co_return] = ACTIONS(423), + [anon_sym_co_yield] = ACTIONS(425), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -121811,73 +122119,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [220] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(754), - [sym_attributed_statement] = STATE(754), - [sym_labeled_statement] = STATE(754), - [sym_expression_statement] = STATE(754), - [sym_if_statement] = STATE(754), - [sym_switch_statement] = STATE(754), - [sym_case_statement] = STATE(754), - [sym_while_statement] = STATE(754), - [sym_do_statement] = STATE(754), - [sym_for_statement] = STATE(754), - [sym_return_statement] = STATE(754), - [sym_break_statement] = STATE(754), - [sym_continue_statement] = STATE(754), - [sym_goto_statement] = STATE(754), - [sym_seh_try_statement] = STATE(754), - [sym_seh_leave_statement] = STATE(754), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(754), - [sym_co_return_statement] = STATE(754), - [sym_co_yield_statement] = STATE(754), - [sym_throw_statement] = STATE(754), - [sym_try_statement] = STATE(754), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2474), + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(252), + [sym_attributed_statement] = STATE(252), + [sym_labeled_statement] = STATE(252), + [sym_expression_statement] = STATE(252), + [sym_if_statement] = STATE(252), + [sym_switch_statement] = STATE(252), + [sym_case_statement] = STATE(252), + [sym_while_statement] = STATE(252), + [sym_do_statement] = STATE(252), + [sym_for_statement] = STATE(252), + [sym_return_statement] = STATE(252), + [sym_break_statement] = STATE(252), + [sym_continue_statement] = STATE(252), + [sym_goto_statement] = STATE(252), + [sym_seh_try_statement] = STATE(252), + [sym_seh_leave_statement] = STATE(252), + [sym__expression] = STATE(5087), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8489), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(252), + [sym_co_return_statement] = STATE(252), + [sym_co_yield_statement] = STATE(252), + [sym_throw_statement] = STATE(252), + [sym_try_statement] = STATE(252), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(2302), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -121885,25 +122193,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(283), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(295), + [anon_sym_switch] = ACTIONS(297), + [anon_sym_case] = ACTIONS(299), + [anon_sym_default] = ACTIONS(301), + [anon_sym_while] = ACTIONS(303), + [anon_sym_do] = ACTIONS(305), + [anon_sym_for] = ACTIONS(307), + [anon_sym_return] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_goto] = ACTIONS(315), + [anon_sym___try] = ACTIONS(317), + [anon_sym___leave] = ACTIONS(319), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -121934,13 +122242,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(323), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(325), + [anon_sym_co_return] = ACTIONS(335), + [anon_sym_co_yield] = ACTIONS(337), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -121952,73 +122260,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [221] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(630), - [sym_attributed_statement] = STATE(631), - [sym_labeled_statement] = STATE(633), - [sym_expression_statement] = STATE(634), - [sym_if_statement] = STATE(635), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(640), - [sym_while_statement] = STATE(641), - [sym_do_statement] = STATE(644), - [sym_for_statement] = STATE(647), - [sym_return_statement] = STATE(648), - [sym_break_statement] = STATE(649), - [sym_continue_statement] = STATE(650), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(657), - [sym_seh_leave_statement] = STATE(659), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(662), - [sym_co_return_statement] = STATE(664), - [sym_co_yield_statement] = STATE(666), - [sym_throw_statement] = STATE(668), - [sym_try_statement] = STATE(670), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), + [sym_attribute_declaration] = STATE(227), + [sym_compound_statement] = STATE(523), + [sym_attributed_statement] = STATE(523), + [sym_labeled_statement] = STATE(523), + [sym_expression_statement] = STATE(523), + [sym_if_statement] = STATE(523), + [sym_switch_statement] = STATE(523), + [sym_case_statement] = STATE(523), + [sym_while_statement] = STATE(523), + [sym_do_statement] = STATE(523), + [sym_for_statement] = STATE(523), + [sym_return_statement] = STATE(523), + [sym_break_statement] = STATE(523), + [sym_continue_statement] = STATE(523), + [sym_goto_statement] = STATE(523), + [sym_seh_try_statement] = STATE(523), + [sym_seh_leave_statement] = STATE(523), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(523), + [sym_co_return_statement] = STATE(523), + [sym_co_yield_statement] = STATE(523), + [sym_throw_statement] = STATE(523), + [sym_try_statement] = STATE(523), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(2258), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -122029,21 +122337,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym___try] = ACTIONS(211), [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -122075,13 +122383,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_co_return] = ACTIONS(233), + [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -122093,73 +122401,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [222] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(671), - [sym_attributed_statement] = STATE(672), - [sym_labeled_statement] = STATE(673), - [sym_expression_statement] = STATE(682), - [sym_if_statement] = STATE(684), - [sym_switch_statement] = STATE(685), - [sym_case_statement] = STATE(687), - [sym_while_statement] = STATE(689), - [sym_do_statement] = STATE(691), - [sym_for_statement] = STATE(692), - [sym_return_statement] = STATE(693), - [sym_break_statement] = STATE(695), - [sym_continue_statement] = STATE(696), - [sym_goto_statement] = STATE(698), - [sym_seh_try_statement] = STATE(703), - [sym_seh_leave_statement] = STATE(705), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(706), - [sym_co_return_statement] = STATE(707), - [sym_co_yield_statement] = STATE(708), - [sym_throw_statement] = STATE(709), - [sym_try_statement] = STATE(710), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(473), + [sym_attributed_statement] = STATE(473), + [sym_labeled_statement] = STATE(473), + [sym_expression_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_switch_statement] = STATE(473), + [sym_case_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_do_statement] = STATE(473), + [sym_for_statement] = STATE(473), + [sym_return_statement] = STATE(473), + [sym_break_statement] = STATE(473), + [sym_continue_statement] = STATE(473), + [sym_goto_statement] = STATE(473), + [sym_seh_try_statement] = STATE(473), + [sym_seh_leave_statement] = STATE(473), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(473), + [sym_co_return_statement] = STATE(473), + [sym_co_yield_statement] = STATE(473), + [sym_throw_statement] = STATE(473), + [sym_try_statement] = STATE(473), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2312), + [anon_sym_TILDE] = ACTIONS(2312), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2698), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2707), + [anon_sym_while] = ACTIONS(2710), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2719), + [anon_sym_break] = ACTIONS(2722), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2728), + [anon_sym___try] = ACTIONS(2731), + [anon_sym___leave] = ACTIONS(2734), + [anon_sym_not] = ACTIONS(2315), + [anon_sym_compl] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_sizeof] = ACTIONS(2381), + [anon_sym___alignof__] = ACTIONS(2384), + [anon_sym___alignof] = ACTIONS(2384), + [anon_sym__alignof] = ACTIONS(2384), + [anon_sym_alignof] = ACTIONS(2384), + [anon_sym__Alignof] = ACTIONS(2384), + [anon_sym_offsetof] = ACTIONS(2387), + [anon_sym__Generic] = ACTIONS(2390), + [anon_sym_asm] = ACTIONS(2393), + [anon_sym___asm__] = ACTIONS(2393), + [sym_number_literal] = ACTIONS(2396), + [anon_sym_L_SQUOTE] = ACTIONS(2399), + [anon_sym_u_SQUOTE] = ACTIONS(2399), + [anon_sym_U_SQUOTE] = ACTIONS(2399), + [anon_sym_u8_SQUOTE] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_L_DQUOTE] = ACTIONS(2402), + [anon_sym_u_DQUOTE] = ACTIONS(2402), + [anon_sym_U_DQUOTE] = ACTIONS(2402), + [anon_sym_u8_DQUOTE] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2740), + [anon_sym_co_return] = ACTIONS(2743), + [anon_sym_co_yield] = ACTIONS(2746), + [anon_sym_R_DQUOTE] = ACTIONS(2432), + [anon_sym_LR_DQUOTE] = ACTIONS(2432), + [anon_sym_uR_DQUOTE] = ACTIONS(2432), + [anon_sym_UR_DQUOTE] = ACTIONS(2432), + [anon_sym_u8R_DQUOTE] = ACTIONS(2432), + [anon_sym_co_await] = ACTIONS(2435), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_requires] = ACTIONS(2441), + [sym_this] = ACTIONS(2405), + }, + [223] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(488), + [sym_attributed_statement] = STATE(488), + [sym_labeled_statement] = STATE(488), + [sym_expression_statement] = STATE(488), + [sym_if_statement] = STATE(488), + [sym_switch_statement] = STATE(488), + [sym_case_statement] = STATE(488), + [sym_while_statement] = STATE(488), + [sym_do_statement] = STATE(488), + [sym_for_statement] = STATE(488), + [sym_return_statement] = STATE(488), + [sym_break_statement] = STATE(488), + [sym_continue_statement] = STATE(488), + [sym_goto_statement] = STATE(488), + [sym_seh_try_statement] = STATE(488), + [sym_seh_leave_statement] = STATE(488), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(488), + [sym_co_return_statement] = STATE(488), + [sym_co_yield_statement] = STATE(488), + [sym_throw_statement] = STATE(488), + [sym_try_statement] = STATE(488), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2564), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -122167,25 +122616,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(371), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), - [anon_sym___leave] = ACTIONS(213), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_default] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_goto] = ACTIONS(403), + [anon_sym___try] = ACTIONS(405), + [anon_sym___leave] = ACTIONS(407), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -122216,154 +122665,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [223] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(9014), - [sym_attributed_statement] = STATE(9014), - [sym_labeled_statement] = STATE(9014), - [sym_expression_statement] = STATE(9014), - [sym_if_statement] = STATE(9014), - [sym_switch_statement] = STATE(9014), - [sym_case_statement] = STATE(9014), - [sym_while_statement] = STATE(9014), - [sym_do_statement] = STATE(9014), - [sym_for_statement] = STATE(9014), - [sym_return_statement] = STATE(9014), - [sym_break_statement] = STATE(9014), - [sym_continue_statement] = STATE(9014), - [sym_goto_statement] = STATE(9014), - [sym_seh_try_statement] = STATE(9014), - [sym_seh_leave_statement] = STATE(9014), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(9014), - [sym_co_return_statement] = STATE(9014), - [sym_co_yield_statement] = STATE(9014), - [sym_throw_statement] = STATE(9014), - [sym_try_statement] = STATE(9014), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), - [anon_sym___leave] = ACTIONS(213), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(411), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(413), + [anon_sym_co_return] = ACTIONS(423), + [anon_sym_co_yield] = ACTIONS(425), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -122375,214 +122683,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [224] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(568), - [sym_attributed_statement] = STATE(568), - [sym_labeled_statement] = STATE(568), - [sym_expression_statement] = STATE(568), - [sym_if_statement] = STATE(568), - [sym_switch_statement] = STATE(568), - [sym_case_statement] = STATE(568), - [sym_while_statement] = STATE(568), - [sym_do_statement] = STATE(568), - [sym_for_statement] = STATE(568), - [sym_return_statement] = STATE(568), - [sym_break_statement] = STATE(568), - [sym_continue_statement] = STATE(568), - [sym_goto_statement] = STATE(568), - [sym_seh_try_statement] = STATE(568), - [sym_seh_leave_statement] = STATE(568), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(568), - [sym_co_return_statement] = STATE(568), - [sym_co_yield_statement] = STATE(568), - [sym_throw_statement] = STATE(568), - [sym_try_statement] = STATE(568), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2474), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1030), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_attribute_declaration] = STATE(224), + [sym_compound_statement] = STATE(1177), + [sym_attributed_statement] = STATE(1177), + [sym_labeled_statement] = STATE(1177), + [sym_expression_statement] = STATE(1177), + [sym_if_statement] = STATE(1177), + [sym_switch_statement] = STATE(1177), + [sym_case_statement] = STATE(1177), + [sym_while_statement] = STATE(1177), + [sym_do_statement] = STATE(1177), + [sym_for_statement] = STATE(1177), + [sym_return_statement] = STATE(1177), + [sym_break_statement] = STATE(1177), + [sym_continue_statement] = STATE(1177), + [sym_goto_statement] = STATE(1177), + [sym_seh_try_statement] = STATE(1177), + [sym_seh_leave_statement] = STATE(1177), + [sym__expression] = STATE(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(1177), + [sym_co_return_statement] = STATE(1177), + [sym_co_yield_statement] = STATE(1177), + [sym_throw_statement] = STATE(1177), + [sym_try_statement] = STATE(1177), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LPAREN2] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2312), + [anon_sym_TILDE] = ACTIONS(2312), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2333), + [sym_primitive_type] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_case] = ACTIONS(2459), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_do] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2770), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2782), + [anon_sym___try] = ACTIONS(2785), + [anon_sym___leave] = ACTIONS(2788), + [anon_sym_not] = ACTIONS(2315), + [anon_sym_compl] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_sizeof] = ACTIONS(2381), + [anon_sym___alignof__] = ACTIONS(2384), + [anon_sym___alignof] = ACTIONS(2384), + [anon_sym__alignof] = ACTIONS(2384), + [anon_sym_alignof] = ACTIONS(2384), + [anon_sym__Alignof] = ACTIONS(2384), + [anon_sym_offsetof] = ACTIONS(2387), + [anon_sym__Generic] = ACTIONS(2390), + [anon_sym_asm] = ACTIONS(2393), + [anon_sym___asm__] = ACTIONS(2393), + [sym_number_literal] = ACTIONS(2396), + [anon_sym_L_SQUOTE] = ACTIONS(2399), + [anon_sym_u_SQUOTE] = ACTIONS(2399), + [anon_sym_U_SQUOTE] = ACTIONS(2399), + [anon_sym_u8_SQUOTE] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_L_DQUOTE] = ACTIONS(2402), + [anon_sym_u_DQUOTE] = ACTIONS(2402), + [anon_sym_U_DQUOTE] = ACTIONS(2402), + [anon_sym_u8_DQUOTE] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [anon_sym_NULL] = ACTIONS(2408), + [anon_sym_nullptr] = ACTIONS(2408), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2791), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2794), + [anon_sym_co_return] = ACTIONS(2797), + [anon_sym_co_yield] = ACTIONS(2800), + [anon_sym_R_DQUOTE] = ACTIONS(2432), + [anon_sym_LR_DQUOTE] = ACTIONS(2432), + [anon_sym_uR_DQUOTE] = ACTIONS(2432), + [anon_sym_UR_DQUOTE] = ACTIONS(2432), + [anon_sym_u8R_DQUOTE] = ACTIONS(2432), + [anon_sym_co_await] = ACTIONS(2435), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_requires] = ACTIONS(2441), + [sym_this] = ACTIONS(2405), }, [225] = { - [sym_attribute_declaration] = STATE(179), - [sym_compound_statement] = STATE(779), - [sym_attributed_statement] = STATE(779), - [sym_labeled_statement] = STATE(779), - [sym_expression_statement] = STATE(779), - [sym_if_statement] = STATE(779), - [sym_switch_statement] = STATE(779), - [sym_case_statement] = STATE(779), - [sym_while_statement] = STATE(779), - [sym_do_statement] = STATE(779), - [sym_for_statement] = STATE(779), - [sym_return_statement] = STATE(779), - [sym_break_statement] = STATE(779), - [sym_continue_statement] = STATE(779), - [sym_goto_statement] = STATE(779), - [sym_seh_try_statement] = STATE(779), - [sym_seh_leave_statement] = STATE(779), - [sym__expression] = STATE(4995), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8418), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(779), - [sym_co_return_statement] = STATE(779), - [sym_co_yield_statement] = STATE(779), - [sym_throw_statement] = STATE(779), - [sym_try_statement] = STATE(779), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(2474), + [sym_attribute_declaration] = STATE(200), + [sym_compound_statement] = STATE(1173), + [sym_attributed_statement] = STATE(1173), + [sym_labeled_statement] = STATE(1173), + [sym_expression_statement] = STATE(1173), + [sym_if_statement] = STATE(1173), + [sym_switch_statement] = STATE(1173), + [sym_case_statement] = STATE(1173), + [sym_while_statement] = STATE(1173), + [sym_do_statement] = STATE(1173), + [sym_for_statement] = STATE(1173), + [sym_return_statement] = STATE(1173), + [sym_break_statement] = STATE(1173), + [sym_continue_statement] = STATE(1173), + [sym_goto_statement] = STATE(1173), + [sym_seh_try_statement] = STATE(1173), + [sym_seh_leave_statement] = STATE(1173), + [sym__expression] = STATE(5044), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8920), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(1173), + [sym_co_return_statement] = STATE(1173), + [sym_co_yield_statement] = STATE(1173), + [sym_throw_statement] = STATE(1173), + [sym_try_statement] = STATE(1173), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(2304), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -122590,25 +122898,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(1882), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1888), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1010), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1022), - [anon_sym___try] = ACTIONS(1024), - [anon_sym___leave] = ACTIONS(1026), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1906), + [anon_sym___try] = ACTIONS(1908), + [anon_sym___leave] = ACTIONS(1910), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -122639,13 +122947,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(1912), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1032), - [anon_sym_co_return] = ACTIONS(1042), - [anon_sym_co_yield] = ACTIONS(1044), + [anon_sym_throw] = ACTIONS(1914), + [anon_sym_co_return] = ACTIONS(1916), + [anon_sym_co_yield] = ACTIONS(1918), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -122657,73 +122965,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [226] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(9039), - [sym_attributed_statement] = STATE(9039), - [sym_labeled_statement] = STATE(9039), - [sym_expression_statement] = STATE(9039), - [sym_if_statement] = STATE(9039), - [sym_switch_statement] = STATE(9039), - [sym_case_statement] = STATE(9039), - [sym_while_statement] = STATE(9039), - [sym_do_statement] = STATE(9039), - [sym_for_statement] = STATE(9039), - [sym_return_statement] = STATE(9039), - [sym_break_statement] = STATE(9039), - [sym_continue_statement] = STATE(9039), - [sym_goto_statement] = STATE(9039), - [sym_seh_try_statement] = STATE(9039), - [sym_seh_leave_statement] = STATE(9039), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(9039), - [sym_co_return_statement] = STATE(9039), - [sym_co_yield_statement] = STATE(9039), - [sym_throw_statement] = STATE(9039), - [sym_try_statement] = STATE(9039), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(501), + [sym_attributed_statement] = STATE(501), + [sym_labeled_statement] = STATE(501), + [sym_expression_statement] = STATE(501), + [sym_if_statement] = STATE(501), + [sym_switch_statement] = STATE(501), + [sym_case_statement] = STATE(501), + [sym_while_statement] = STATE(501), + [sym_do_statement] = STATE(501), + [sym_for_statement] = STATE(501), + [sym_return_statement] = STATE(501), + [sym_break_statement] = STATE(501), + [sym_continue_statement] = STATE(501), + [sym_goto_statement] = STATE(501), + [sym_seh_try_statement] = STATE(501), + [sym_seh_leave_statement] = STATE(501), + [sym__expression] = STATE(5059), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8901), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(501), + [sym_co_return_statement] = STATE(501), + [sym_co_yield_statement] = STATE(501), + [sym_throw_statement] = STATE(501), + [sym_try_statement] = STATE(501), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(2564), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -122731,25 +123039,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(371), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(379), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), - [anon_sym___leave] = ACTIONS(213), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(383), + [anon_sym_switch] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_default] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(401), + [anon_sym_goto] = ACTIONS(403), + [anon_sym___try] = ACTIONS(405), + [anon_sym___leave] = ACTIONS(407), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -122780,13 +123088,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(411), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(413), + [anon_sym_co_return] = ACTIONS(423), + [anon_sym_co_yield] = ACTIONS(425), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -122798,73 +123106,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [227] = { - [sym_attribute_declaration] = STATE(211), - [sym_compound_statement] = STATE(1111), - [sym_attributed_statement] = STATE(1111), - [sym_labeled_statement] = STATE(1111), - [sym_expression_statement] = STATE(1111), - [sym_if_statement] = STATE(1111), - [sym_switch_statement] = STATE(1111), - [sym_case_statement] = STATE(1111), - [sym_while_statement] = STATE(1111), - [sym_do_statement] = STATE(1111), - [sym_for_statement] = STATE(1111), - [sym_return_statement] = STATE(1111), - [sym_break_statement] = STATE(1111), - [sym_continue_statement] = STATE(1111), - [sym_goto_statement] = STATE(1111), - [sym_seh_try_statement] = STATE(1111), - [sym_seh_leave_statement] = STATE(1111), - [sym__expression] = STATE(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(1111), - [sym_co_return_statement] = STATE(1111), - [sym_co_yield_statement] = STATE(1111), - [sym_throw_statement] = STATE(1111), - [sym_try_statement] = STATE(1111), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(2282), + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(809), + [sym_attributed_statement] = STATE(809), + [sym_labeled_statement] = STATE(809), + [sym_expression_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_switch_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(809), + [sym_for_statement] = STATE(809), + [sym_return_statement] = STATE(809), + [sym_break_statement] = STATE(809), + [sym_continue_statement] = STATE(809), + [sym_goto_statement] = STATE(809), + [sym_seh_try_statement] = STATE(809), + [sym_seh_leave_statement] = STATE(809), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(809), + [sym_co_return_statement] = STATE(809), + [sym_co_yield_statement] = STATE(809), + [sym_throw_statement] = STATE(809), + [sym_try_statement] = STATE(809), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2258), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -122872,25 +123180,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1892), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym___try] = ACTIONS(1908), - [anon_sym___leave] = ACTIONS(1910), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym___try] = ACTIONS(211), + [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -122921,13 +123229,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1912), + [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1914), - [anon_sym_co_return] = ACTIONS(1916), - [anon_sym_co_yield] = ACTIONS(1918), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_co_return] = ACTIONS(233), + [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -122939,73 +123247,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [228] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(9061), - [sym_attributed_statement] = STATE(9061), - [sym_labeled_statement] = STATE(9061), - [sym_expression_statement] = STATE(9061), - [sym_if_statement] = STATE(9061), - [sym_switch_statement] = STATE(9061), - [sym_case_statement] = STATE(9061), - [sym_while_statement] = STATE(9061), - [sym_do_statement] = STATE(9061), - [sym_for_statement] = STATE(9061), - [sym_return_statement] = STATE(9061), - [sym_break_statement] = STATE(9061), - [sym_continue_statement] = STATE(9061), - [sym_goto_statement] = STATE(9061), - [sym_seh_try_statement] = STATE(9061), - [sym_seh_leave_statement] = STATE(9061), - [sym__expression] = STATE(4936), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8683), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(9061), - [sym_co_return_statement] = STATE(9061), - [sym_co_yield_statement] = STATE(9061), - [sym_throw_statement] = STATE(9061), - [sym_try_statement] = STATE(9061), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2656), + [sym_attribute_declaration] = STATE(227), + [sym_compound_statement] = STATE(671), + [sym_attributed_statement] = STATE(671), + [sym_labeled_statement] = STATE(671), + [sym_expression_statement] = STATE(671), + [sym_if_statement] = STATE(671), + [sym_switch_statement] = STATE(671), + [sym_case_statement] = STATE(671), + [sym_while_statement] = STATE(671), + [sym_do_statement] = STATE(671), + [sym_for_statement] = STATE(671), + [sym_return_statement] = STATE(671), + [sym_break_statement] = STATE(671), + [sym_continue_statement] = STATE(671), + [sym_goto_statement] = STATE(671), + [sym_seh_try_statement] = STATE(671), + [sym_seh_leave_statement] = STATE(671), + [sym__expression] = STATE(5072), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8626), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_for_range_loop] = STATE(671), + [sym_co_return_statement] = STATE(671), + [sym_co_yield_statement] = STATE(671), + [sym_throw_statement] = STATE(671), + [sym_try_statement] = STATE(671), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_attributed_declarator_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(2258), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -123016,21 +123324,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(173), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym___try] = ACTIONS(2664), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(189), + [anon_sym_switch] = ACTIONS(191), + [anon_sym_case] = ACTIONS(193), + [anon_sym_default] = ACTIONS(195), + [anon_sym_while] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_for] = ACTIONS(201), + [anon_sym_return] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_continue] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(209), + [anon_sym___try] = ACTIONS(211), [anon_sym___leave] = ACTIONS(213), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -123062,13 +123370,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(133), + [anon_sym_try] = ACTIONS(221), [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(137), - [anon_sym_co_return] = ACTIONS(147), - [anon_sym_co_yield] = ACTIONS(149), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_co_return] = ACTIONS(233), + [anon_sym_co_yield] = ACTIONS(235), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), @@ -123080,801 +123388,521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(217), }, [229] = { - [sym_attribute_declaration] = STATE(211), - [sym_compound_statement] = STATE(1107), - [sym_attributed_statement] = STATE(1107), - [sym_labeled_statement] = STATE(1107), - [sym_expression_statement] = STATE(1107), - [sym_if_statement] = STATE(1107), - [sym_switch_statement] = STATE(1107), - [sym_case_statement] = STATE(1107), - [sym_while_statement] = STATE(1107), - [sym_do_statement] = STATE(1107), - [sym_for_statement] = STATE(1107), - [sym_return_statement] = STATE(1107), - [sym_break_statement] = STATE(1107), - [sym_continue_statement] = STATE(1107), - [sym_goto_statement] = STATE(1107), - [sym_seh_try_statement] = STATE(1107), - [sym_seh_leave_statement] = STATE(1107), - [sym__expression] = STATE(4964), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8618), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_for_range_loop] = STATE(1107), - [sym_co_return_statement] = STATE(1107), - [sym_co_yield_statement] = STATE(1107), - [sym_throw_statement] = STATE(1107), - [sym_try_statement] = STATE(1107), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_attributed_declarator_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(2282), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1892), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym___try] = ACTIONS(1908), - [anon_sym___leave] = ACTIONS(1910), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym__expression] = STATE(3927), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_initializer_list] = STATE(2788), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2803), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_EQ] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_COLON] = ACTIONS(2138), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_STAR_EQ] = ACTIONS(2140), + [anon_sym_SLASH_EQ] = ACTIONS(2140), + [anon_sym_PERCENT_EQ] = ACTIONS(2140), + [anon_sym_PLUS_EQ] = ACTIONS(2140), + [anon_sym_DASH_EQ] = ACTIONS(2140), + [anon_sym_LT_LT_EQ] = ACTIONS(2140), + [anon_sym_GT_GT_EQ] = ACTIONS(2140), + [anon_sym_AMP_EQ] = ACTIONS(2140), + [anon_sym_CARET_EQ] = ACTIONS(2140), + [anon_sym_PIPE_EQ] = ACTIONS(2140), + [anon_sym_and_eq] = ACTIONS(2138), + [anon_sym_or_eq] = ACTIONS(2138), + [anon_sym_xor_eq] = ACTIONS(2138), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1912), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_throw] = ACTIONS(1914), - [anon_sym_co_return] = ACTIONS(1916), - [anon_sym_co_yield] = ACTIONS(1918), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, [230] = { - [sym__expression] = STATE(3746), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_initializer_list] = STATE(2773), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_EQ] = ACTIONS(2096), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_COLON] = ACTIONS(2096), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_STAR_EQ] = ACTIONS(2098), - [anon_sym_SLASH_EQ] = ACTIONS(2098), - [anon_sym_PERCENT_EQ] = ACTIONS(2098), - [anon_sym_PLUS_EQ] = ACTIONS(2098), - [anon_sym_DASH_EQ] = ACTIONS(2098), - [anon_sym_LT_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_GT_EQ] = ACTIONS(2098), - [anon_sym_AMP_EQ] = ACTIONS(2098), - [anon_sym_CARET_EQ] = ACTIONS(2098), - [anon_sym_PIPE_EQ] = ACTIONS(2098), - [anon_sym_and_eq] = ACTIONS(2096), - [anon_sym_or_eq] = ACTIONS(2096), - [anon_sym_xor_eq] = ACTIONS(2096), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [sym_catch_clause] = STATE(230), + [aux_sym_constructor_try_statement_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_include_token1] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token2] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [aux_sym_preproc_else_token1] = ACTIONS(2815), + [aux_sym_preproc_elif_token1] = ACTIONS(2815), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym___cdecl] = ACTIONS(2815), + [anon_sym___clrcall] = ACTIONS(2815), + [anon_sym___stdcall] = ACTIONS(2815), + [anon_sym___fastcall] = ACTIONS(2815), + [anon_sym___thiscall] = ACTIONS(2815), + [anon_sym___vectorcall] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym___inline] = ACTIONS(2815), + [anon_sym___inline__] = ACTIONS(2815), + [anon_sym___forceinline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym___thread] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym___restrict__] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym__Noreturn] = ACTIONS(2815), + [anon_sym_noreturn] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_goto] = ACTIONS(2815), + [anon_sym___try] = ACTIONS(2815), + [anon_sym___leave] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_compl] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2815), + [anon_sym___alignof__] = ACTIONS(2815), + [anon_sym___alignof] = ACTIONS(2815), + [anon_sym__alignof] = ACTIONS(2815), + [anon_sym_alignof] = ACTIONS(2815), + [anon_sym__Alignof] = ACTIONS(2815), + [anon_sym_offsetof] = ACTIONS(2815), + [anon_sym__Generic] = ACTIONS(2815), + [anon_sym_asm] = ACTIONS(2815), + [anon_sym___asm__] = ACTIONS(2815), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2817), + [anon_sym_u_SQUOTE] = ACTIONS(2817), + [anon_sym_U_SQUOTE] = ACTIONS(2817), + [anon_sym_u8_SQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_L_DQUOTE] = ACTIONS(2817), + [anon_sym_u_DQUOTE] = ACTIONS(2817), + [anon_sym_U_DQUOTE] = ACTIONS(2817), + [anon_sym_u8_DQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [anon_sym_NULL] = ACTIONS(2815), + [anon_sym_nullptr] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_alignas] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_namespace] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_concept] = ACTIONS(2815), + [anon_sym_co_return] = ACTIONS(2815), + [anon_sym_co_yield] = ACTIONS(2815), + [anon_sym_catch] = ACTIONS(2819), + [anon_sym_R_DQUOTE] = ACTIONS(2817), + [anon_sym_LR_DQUOTE] = ACTIONS(2817), + [anon_sym_uR_DQUOTE] = ACTIONS(2817), + [anon_sym_UR_DQUOTE] = ACTIONS(2817), + [anon_sym_u8R_DQUOTE] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_requires] = ACTIONS(2815), + [sym_this] = ACTIONS(2815), }, [231] = { - [sym_catch_clause] = STATE(231), - [aux_sym_constructor_try_statement_repeat1] = STATE(231), - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_include_token1] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token2] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [aux_sym_preproc_else_token1] = ACTIONS(2813), - [aux_sym_preproc_elif_token1] = ACTIONS(2813), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym___extension__] = ACTIONS(2813), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym___cdecl] = ACTIONS(2813), - [anon_sym___clrcall] = ACTIONS(2813), - [anon_sym___stdcall] = ACTIONS(2813), - [anon_sym___fastcall] = ACTIONS(2813), - [anon_sym___thiscall] = ACTIONS(2813), - [anon_sym___vectorcall] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym___inline] = ACTIONS(2813), - [anon_sym___inline__] = ACTIONS(2813), - [anon_sym___forceinline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym___thread] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym___restrict__] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym__Noreturn] = ACTIONS(2813), - [anon_sym_noreturn] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_else] = ACTIONS(2813), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_case] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_do] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_goto] = ACTIONS(2813), - [anon_sym___try] = ACTIONS(2813), - [anon_sym___leave] = ACTIONS(2813), - [anon_sym_not] = ACTIONS(2813), - [anon_sym_compl] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_sizeof] = ACTIONS(2813), - [anon_sym___alignof__] = ACTIONS(2813), - [anon_sym___alignof] = ACTIONS(2813), - [anon_sym__alignof] = ACTIONS(2813), - [anon_sym_alignof] = ACTIONS(2813), - [anon_sym__Alignof] = ACTIONS(2813), - [anon_sym_offsetof] = ACTIONS(2813), - [anon_sym__Generic] = ACTIONS(2813), - [anon_sym_asm] = ACTIONS(2813), - [anon_sym___asm__] = ACTIONS(2813), - [sym_number_literal] = ACTIONS(2815), - [anon_sym_L_SQUOTE] = ACTIONS(2815), - [anon_sym_u_SQUOTE] = ACTIONS(2815), - [anon_sym_U_SQUOTE] = ACTIONS(2815), - [anon_sym_u8_SQUOTE] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_L_DQUOTE] = ACTIONS(2815), - [anon_sym_u_DQUOTE] = ACTIONS(2815), - [anon_sym_U_DQUOTE] = ACTIONS(2815), - [anon_sym_u8_DQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [anon_sym_NULL] = ACTIONS(2813), - [anon_sym_nullptr] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_alignas] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_delete] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_namespace] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_concept] = ACTIONS(2813), - [anon_sym_co_return] = ACTIONS(2813), - [anon_sym_co_yield] = ACTIONS(2813), - [anon_sym_catch] = ACTIONS(2817), - [anon_sym_R_DQUOTE] = ACTIONS(2815), - [anon_sym_LR_DQUOTE] = ACTIONS(2815), - [anon_sym_uR_DQUOTE] = ACTIONS(2815), - [anon_sym_UR_DQUOTE] = ACTIONS(2815), - [anon_sym_u8R_DQUOTE] = ACTIONS(2815), - [anon_sym_co_await] = ACTIONS(2813), - [anon_sym_new] = ACTIONS(2813), - [anon_sym_requires] = ACTIONS(2813), - [sym_this] = ACTIONS(2813), + [sym_catch_clause] = STATE(230), + [aux_sym_constructor_try_statement_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2822), + [aux_sym_preproc_include_token1] = ACTIONS(2822), + [aux_sym_preproc_def_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token2] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), + [aux_sym_preproc_else_token1] = ACTIONS(2822), + [aux_sym_preproc_elif_token1] = ACTIONS(2822), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2822), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2822), + [sym_preproc_directive] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_AMP_AMP] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym___extension__] = ACTIONS(2822), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), + [anon_sym___declspec] = ACTIONS(2822), + [anon_sym___based] = ACTIONS(2822), + [anon_sym___cdecl] = ACTIONS(2822), + [anon_sym___clrcall] = ACTIONS(2822), + [anon_sym___stdcall] = ACTIONS(2822), + [anon_sym___fastcall] = ACTIONS(2822), + [anon_sym___thiscall] = ACTIONS(2822), + [anon_sym___vectorcall] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym___inline] = ACTIONS(2822), + [anon_sym___inline__] = ACTIONS(2822), + [anon_sym___forceinline] = ACTIONS(2822), + [anon_sym_thread_local] = ACTIONS(2822), + [anon_sym___thread] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_constexpr] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym___restrict__] = ACTIONS(2822), + [anon_sym__Atomic] = ACTIONS(2822), + [anon_sym__Noreturn] = ACTIONS(2822), + [anon_sym_noreturn] = ACTIONS(2822), + [anon_sym_mutable] = ACTIONS(2822), + [anon_sym_constinit] = ACTIONS(2822), + [anon_sym_consteval] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_else] = ACTIONS(2822), + [anon_sym_switch] = ACTIONS(2822), + [anon_sym_case] = ACTIONS(2822), + [anon_sym_default] = ACTIONS(2822), + [anon_sym_while] = ACTIONS(2822), + [anon_sym_do] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_goto] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2822), + [anon_sym___leave] = ACTIONS(2822), + [anon_sym_not] = ACTIONS(2822), + [anon_sym_compl] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_sizeof] = ACTIONS(2822), + [anon_sym___alignof__] = ACTIONS(2822), + [anon_sym___alignof] = ACTIONS(2822), + [anon_sym__alignof] = ACTIONS(2822), + [anon_sym_alignof] = ACTIONS(2822), + [anon_sym__Alignof] = ACTIONS(2822), + [anon_sym_offsetof] = ACTIONS(2822), + [anon_sym__Generic] = ACTIONS(2822), + [anon_sym_asm] = ACTIONS(2822), + [anon_sym___asm__] = ACTIONS(2822), + [sym_number_literal] = ACTIONS(2824), + [anon_sym_L_SQUOTE] = ACTIONS(2824), + [anon_sym_u_SQUOTE] = ACTIONS(2824), + [anon_sym_U_SQUOTE] = ACTIONS(2824), + [anon_sym_u8_SQUOTE] = ACTIONS(2824), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_L_DQUOTE] = ACTIONS(2824), + [anon_sym_u_DQUOTE] = ACTIONS(2824), + [anon_sym_U_DQUOTE] = ACTIONS(2824), + [anon_sym_u8_DQUOTE] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2824), + [sym_true] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [anon_sym_NULL] = ACTIONS(2822), + [anon_sym_nullptr] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2822), + [anon_sym_decltype] = ACTIONS(2822), + [anon_sym_virtual] = ACTIONS(2822), + [anon_sym_alignas] = ACTIONS(2822), + [anon_sym_explicit] = ACTIONS(2822), + [anon_sym_typename] = ACTIONS(2822), + [anon_sym_template] = ACTIONS(2822), + [anon_sym_operator] = ACTIONS(2822), + [anon_sym_try] = ACTIONS(2822), + [anon_sym_delete] = ACTIONS(2822), + [anon_sym_throw] = ACTIONS(2822), + [anon_sym_namespace] = ACTIONS(2822), + [anon_sym_using] = ACTIONS(2822), + [anon_sym_static_assert] = ACTIONS(2822), + [anon_sym_concept] = ACTIONS(2822), + [anon_sym_co_return] = ACTIONS(2822), + [anon_sym_co_yield] = ACTIONS(2822), + [anon_sym_catch] = ACTIONS(2826), + [anon_sym_R_DQUOTE] = ACTIONS(2824), + [anon_sym_LR_DQUOTE] = ACTIONS(2824), + [anon_sym_uR_DQUOTE] = ACTIONS(2824), + [anon_sym_UR_DQUOTE] = ACTIONS(2824), + [anon_sym_u8R_DQUOTE] = ACTIONS(2824), + [anon_sym_co_await] = ACTIONS(2822), + [anon_sym_new] = ACTIONS(2822), + [anon_sym_requires] = ACTIONS(2822), + [sym_this] = ACTIONS(2822), }, [232] = { - [sym_catch_clause] = STATE(231), - [aux_sym_constructor_try_statement_repeat1] = STATE(231), - [sym_identifier] = ACTIONS(2820), - [aux_sym_preproc_include_token1] = ACTIONS(2820), - [aux_sym_preproc_def_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token2] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), - [aux_sym_preproc_else_token1] = ACTIONS(2820), - [aux_sym_preproc_elif_token1] = ACTIONS(2820), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2820), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2820), - [sym_preproc_directive] = ACTIONS(2820), - [anon_sym_LPAREN2] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym___extension__] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym___attribute__] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), - [anon_sym___declspec] = ACTIONS(2820), - [anon_sym___based] = ACTIONS(2820), - [anon_sym___cdecl] = ACTIONS(2820), - [anon_sym___clrcall] = ACTIONS(2820), - [anon_sym___stdcall] = ACTIONS(2820), - [anon_sym___fastcall] = ACTIONS(2820), - [anon_sym___thiscall] = ACTIONS(2820), - [anon_sym___vectorcall] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_signed] = ACTIONS(2820), - [anon_sym_unsigned] = ACTIONS(2820), - [anon_sym_long] = ACTIONS(2820), - [anon_sym_short] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_register] = ACTIONS(2820), - [anon_sym_inline] = ACTIONS(2820), - [anon_sym___inline] = ACTIONS(2820), - [anon_sym___inline__] = ACTIONS(2820), - [anon_sym___forceinline] = ACTIONS(2820), - [anon_sym_thread_local] = ACTIONS(2820), - [anon_sym___thread] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_constexpr] = ACTIONS(2820), - [anon_sym_volatile] = ACTIONS(2820), - [anon_sym_restrict] = ACTIONS(2820), - [anon_sym___restrict__] = ACTIONS(2820), - [anon_sym__Atomic] = ACTIONS(2820), - [anon_sym__Noreturn] = ACTIONS(2820), - [anon_sym_noreturn] = ACTIONS(2820), - [anon_sym_mutable] = ACTIONS(2820), - [anon_sym_constinit] = ACTIONS(2820), - [anon_sym_consteval] = ACTIONS(2820), - [sym_primitive_type] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2820), - [anon_sym_switch] = ACTIONS(2820), - [anon_sym_case] = ACTIONS(2820), - [anon_sym_default] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_do] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym___try] = ACTIONS(2820), - [anon_sym___leave] = ACTIONS(2820), - [anon_sym_not] = ACTIONS(2820), - [anon_sym_compl] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_sizeof] = ACTIONS(2820), - [anon_sym___alignof__] = ACTIONS(2820), - [anon_sym___alignof] = ACTIONS(2820), - [anon_sym__alignof] = ACTIONS(2820), - [anon_sym_alignof] = ACTIONS(2820), - [anon_sym__Alignof] = ACTIONS(2820), - [anon_sym_offsetof] = ACTIONS(2820), - [anon_sym__Generic] = ACTIONS(2820), - [anon_sym_asm] = ACTIONS(2820), - [anon_sym___asm__] = ACTIONS(2820), - [sym_number_literal] = ACTIONS(2822), - [anon_sym_L_SQUOTE] = ACTIONS(2822), - [anon_sym_u_SQUOTE] = ACTIONS(2822), - [anon_sym_U_SQUOTE] = ACTIONS(2822), - [anon_sym_u8_SQUOTE] = ACTIONS(2822), - [anon_sym_SQUOTE] = ACTIONS(2822), - [anon_sym_L_DQUOTE] = ACTIONS(2822), - [anon_sym_u_DQUOTE] = ACTIONS(2822), - [anon_sym_U_DQUOTE] = ACTIONS(2822), - [anon_sym_u8_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [anon_sym_NULL] = ACTIONS(2820), - [anon_sym_nullptr] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2820), - [anon_sym_decltype] = ACTIONS(2820), - [anon_sym_virtual] = ACTIONS(2820), - [anon_sym_alignas] = ACTIONS(2820), - [anon_sym_explicit] = ACTIONS(2820), - [anon_sym_typename] = ACTIONS(2820), - [anon_sym_template] = ACTIONS(2820), - [anon_sym_operator] = ACTIONS(2820), - [anon_sym_try] = ACTIONS(2820), - [anon_sym_delete] = ACTIONS(2820), - [anon_sym_throw] = ACTIONS(2820), - [anon_sym_namespace] = ACTIONS(2820), - [anon_sym_using] = ACTIONS(2820), - [anon_sym_static_assert] = ACTIONS(2820), - [anon_sym_concept] = ACTIONS(2820), - [anon_sym_co_return] = ACTIONS(2820), - [anon_sym_co_yield] = ACTIONS(2820), - [anon_sym_catch] = ACTIONS(2824), - [anon_sym_R_DQUOTE] = ACTIONS(2822), - [anon_sym_LR_DQUOTE] = ACTIONS(2822), - [anon_sym_uR_DQUOTE] = ACTIONS(2822), - [anon_sym_UR_DQUOTE] = ACTIONS(2822), - [anon_sym_u8R_DQUOTE] = ACTIONS(2822), - [anon_sym_co_await] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2820), - [anon_sym_requires] = ACTIONS(2820), - [sym_this] = ACTIONS(2820), - }, - [233] = { - [sym_catch_clause] = STATE(231), - [aux_sym_constructor_try_statement_repeat1] = STATE(231), - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_include_token1] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token2] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [aux_sym_preproc_else_token1] = ACTIONS(2826), - [aux_sym_preproc_elif_token1] = ACTIONS(2826), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym___extension__] = ACTIONS(2826), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym___cdecl] = ACTIONS(2826), - [anon_sym___clrcall] = ACTIONS(2826), - [anon_sym___stdcall] = ACTIONS(2826), - [anon_sym___fastcall] = ACTIONS(2826), - [anon_sym___thiscall] = ACTIONS(2826), - [anon_sym___vectorcall] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym___inline] = ACTIONS(2826), - [anon_sym___inline__] = ACTIONS(2826), - [anon_sym___forceinline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym___thread] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym___restrict__] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym__Noreturn] = ACTIONS(2826), - [anon_sym_noreturn] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_goto] = ACTIONS(2826), - [anon_sym___try] = ACTIONS(2826), - [anon_sym___leave] = ACTIONS(2826), - [anon_sym_not] = ACTIONS(2826), - [anon_sym_compl] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_sizeof] = ACTIONS(2826), - [anon_sym___alignof__] = ACTIONS(2826), - [anon_sym___alignof] = ACTIONS(2826), - [anon_sym__alignof] = ACTIONS(2826), - [anon_sym_alignof] = ACTIONS(2826), - [anon_sym__Alignof] = ACTIONS(2826), - [anon_sym_offsetof] = ACTIONS(2826), - [anon_sym__Generic] = ACTIONS(2826), - [anon_sym_asm] = ACTIONS(2826), - [anon_sym___asm__] = ACTIONS(2826), - [sym_number_literal] = ACTIONS(2828), - [anon_sym_L_SQUOTE] = ACTIONS(2828), - [anon_sym_u_SQUOTE] = ACTIONS(2828), - [anon_sym_U_SQUOTE] = ACTIONS(2828), - [anon_sym_u8_SQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_L_DQUOTE] = ACTIONS(2828), - [anon_sym_u_DQUOTE] = ACTIONS(2828), - [anon_sym_U_DQUOTE] = ACTIONS(2828), - [anon_sym_u8_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [anon_sym_NULL] = ACTIONS(2826), - [anon_sym_nullptr] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_alignas] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_concept] = ACTIONS(2826), - [anon_sym_co_return] = ACTIONS(2826), - [anon_sym_co_yield] = ACTIONS(2826), - [anon_sym_catch] = ACTIONS(2824), - [anon_sym_R_DQUOTE] = ACTIONS(2828), - [anon_sym_LR_DQUOTE] = ACTIONS(2828), - [anon_sym_uR_DQUOTE] = ACTIONS(2828), - [anon_sym_UR_DQUOTE] = ACTIONS(2828), - [anon_sym_u8R_DQUOTE] = ACTIONS(2828), - [anon_sym_co_await] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_requires] = ACTIONS(2826), - [sym_this] = ACTIONS(2826), - }, - [234] = { - [sym__expression] = STATE(4085), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_initializer_list] = STATE(4212), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), + [sym__expression] = STATE(4114), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_initializer_list] = STATE(4246), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), [anon_sym_BANG] = ACTIONS(2004), [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2096), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_EQ] = ACTIONS(2096), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_STAR_EQ] = ACTIONS(2098), - [anon_sym_SLASH_EQ] = ACTIONS(2098), - [anon_sym_PERCENT_EQ] = ACTIONS(2098), - [anon_sym_PLUS_EQ] = ACTIONS(2098), - [anon_sym_DASH_EQ] = ACTIONS(2098), - [anon_sym_LT_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_GT_EQ] = ACTIONS(2098), - [anon_sym_AMP_EQ] = ACTIONS(2098), - [anon_sym_CARET_EQ] = ACTIONS(2098), - [anon_sym_PIPE_EQ] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_EQ] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_STAR_EQ] = ACTIONS(2140), + [anon_sym_SLASH_EQ] = ACTIONS(2140), + [anon_sym_PERCENT_EQ] = ACTIONS(2140), + [anon_sym_PLUS_EQ] = ACTIONS(2140), + [anon_sym_DASH_EQ] = ACTIONS(2140), + [anon_sym_LT_LT_EQ] = ACTIONS(2140), + [anon_sym_GT_GT_EQ] = ACTIONS(2140), + [anon_sym_AMP_EQ] = ACTIONS(2140), + [anon_sym_CARET_EQ] = ACTIONS(2140), + [anon_sym_PIPE_EQ] = ACTIONS(2140), [anon_sym_not] = ACTIONS(2004), [anon_sym_compl] = ACTIONS(2004), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), [anon_sym_sizeof] = ACTIONS(2022), [anon_sym___alignof__] = ACTIONS(2024), [anon_sym___alignof] = ACTIONS(2024), @@ -123885,9 +123913,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(2028), [anon_sym_asm] = ACTIONS(2030), [anon_sym___asm__] = ACTIONS(2030), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2096), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2138), [sym_number_literal] = ACTIONS(2032), [anon_sym_L_SQUOTE] = ACTIONS(2034), [anon_sym_u_SQUOTE] = ACTIONS(2034), @@ -123904,7 +123932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(2040), [anon_sym_nullptr] = ACTIONS(2040), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(2044), [anon_sym_R_DQUOTE] = ACTIONS(2046), @@ -123915,1252 +123943,4980 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_co_await] = ACTIONS(2048), [anon_sym_new] = ACTIONS(2050), [anon_sym_requires] = ACTIONS(2052), - [anon_sym_DASH_GT_STAR] = ACTIONS(2098), + [anon_sym_DASH_GT_STAR] = ACTIONS(2140), [sym_this] = ACTIONS(2038), }, + [233] = { + [sym_catch_clause] = STATE(230), + [aux_sym_constructor_try_statement_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2834), + [aux_sym_preproc_include_token1] = ACTIONS(2834), + [aux_sym_preproc_def_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token2] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), + [aux_sym_preproc_else_token1] = ACTIONS(2834), + [aux_sym_preproc_elif_token1] = ACTIONS(2834), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2834), + [sym_preproc_directive] = ACTIONS(2834), + [anon_sym_LPAREN2] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_PLUS] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_AMP_AMP] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym___extension__] = ACTIONS(2834), + [anon_sym_typedef] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym___attribute__] = ACTIONS(2834), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), + [anon_sym___declspec] = ACTIONS(2834), + [anon_sym___based] = ACTIONS(2834), + [anon_sym___cdecl] = ACTIONS(2834), + [anon_sym___clrcall] = ACTIONS(2834), + [anon_sym___stdcall] = ACTIONS(2834), + [anon_sym___fastcall] = ACTIONS(2834), + [anon_sym___thiscall] = ACTIONS(2834), + [anon_sym___vectorcall] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_signed] = ACTIONS(2834), + [anon_sym_unsigned] = ACTIONS(2834), + [anon_sym_long] = ACTIONS(2834), + [anon_sym_short] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_register] = ACTIONS(2834), + [anon_sym_inline] = ACTIONS(2834), + [anon_sym___inline] = ACTIONS(2834), + [anon_sym___inline__] = ACTIONS(2834), + [anon_sym___forceinline] = ACTIONS(2834), + [anon_sym_thread_local] = ACTIONS(2834), + [anon_sym___thread] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_constexpr] = ACTIONS(2834), + [anon_sym_volatile] = ACTIONS(2834), + [anon_sym_restrict] = ACTIONS(2834), + [anon_sym___restrict__] = ACTIONS(2834), + [anon_sym__Atomic] = ACTIONS(2834), + [anon_sym__Noreturn] = ACTIONS(2834), + [anon_sym_noreturn] = ACTIONS(2834), + [anon_sym_mutable] = ACTIONS(2834), + [anon_sym_constinit] = ACTIONS(2834), + [anon_sym_consteval] = ACTIONS(2834), + [sym_primitive_type] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_class] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_switch] = ACTIONS(2834), + [anon_sym_case] = ACTIONS(2834), + [anon_sym_default] = ACTIONS(2834), + [anon_sym_while] = ACTIONS(2834), + [anon_sym_do] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_goto] = ACTIONS(2834), + [anon_sym___try] = ACTIONS(2834), + [anon_sym___leave] = ACTIONS(2834), + [anon_sym_not] = ACTIONS(2834), + [anon_sym_compl] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_PLUS_PLUS] = ACTIONS(2836), + [anon_sym_sizeof] = ACTIONS(2834), + [anon_sym___alignof__] = ACTIONS(2834), + [anon_sym___alignof] = ACTIONS(2834), + [anon_sym__alignof] = ACTIONS(2834), + [anon_sym_alignof] = ACTIONS(2834), + [anon_sym__Alignof] = ACTIONS(2834), + [anon_sym_offsetof] = ACTIONS(2834), + [anon_sym__Generic] = ACTIONS(2834), + [anon_sym_asm] = ACTIONS(2834), + [anon_sym___asm__] = ACTIONS(2834), + [sym_number_literal] = ACTIONS(2836), + [anon_sym_L_SQUOTE] = ACTIONS(2836), + [anon_sym_u_SQUOTE] = ACTIONS(2836), + [anon_sym_U_SQUOTE] = ACTIONS(2836), + [anon_sym_u8_SQUOTE] = ACTIONS(2836), + [anon_sym_SQUOTE] = ACTIONS(2836), + [anon_sym_L_DQUOTE] = ACTIONS(2836), + [anon_sym_u_DQUOTE] = ACTIONS(2836), + [anon_sym_U_DQUOTE] = ACTIONS(2836), + [anon_sym_u8_DQUOTE] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2836), + [sym_true] = ACTIONS(2834), + [sym_false] = ACTIONS(2834), + [anon_sym_NULL] = ACTIONS(2834), + [anon_sym_nullptr] = ACTIONS(2834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2834), + [anon_sym_decltype] = ACTIONS(2834), + [anon_sym_virtual] = ACTIONS(2834), + [anon_sym_alignas] = ACTIONS(2834), + [anon_sym_explicit] = ACTIONS(2834), + [anon_sym_typename] = ACTIONS(2834), + [anon_sym_template] = ACTIONS(2834), + [anon_sym_operator] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2834), + [anon_sym_delete] = ACTIONS(2834), + [anon_sym_throw] = ACTIONS(2834), + [anon_sym_namespace] = ACTIONS(2834), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_static_assert] = ACTIONS(2834), + [anon_sym_concept] = ACTIONS(2834), + [anon_sym_co_return] = ACTIONS(2834), + [anon_sym_co_yield] = ACTIONS(2834), + [anon_sym_catch] = ACTIONS(2826), + [anon_sym_R_DQUOTE] = ACTIONS(2836), + [anon_sym_LR_DQUOTE] = ACTIONS(2836), + [anon_sym_uR_DQUOTE] = ACTIONS(2836), + [anon_sym_UR_DQUOTE] = ACTIONS(2836), + [anon_sym_u8R_DQUOTE] = ACTIONS(2836), + [anon_sym_co_await] = ACTIONS(2834), + [anon_sym_new] = ACTIONS(2834), + [anon_sym_requires] = ACTIONS(2834), + [sym_this] = ACTIONS(2834), + }, + [234] = { + [sym_catch_clause] = STATE(230), + [aux_sym_constructor_try_statement_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2838), + [aux_sym_preproc_include_token1] = ACTIONS(2838), + [aux_sym_preproc_def_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token2] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), + [aux_sym_preproc_else_token1] = ACTIONS(2838), + [aux_sym_preproc_elif_token1] = ACTIONS(2838), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2838), + [sym_preproc_directive] = ACTIONS(2838), + [anon_sym_LPAREN2] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_PLUS] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym___extension__] = ACTIONS(2838), + [anon_sym_typedef] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym___attribute__] = ACTIONS(2838), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), + [anon_sym___declspec] = ACTIONS(2838), + [anon_sym___based] = ACTIONS(2838), + [anon_sym___cdecl] = ACTIONS(2838), + [anon_sym___clrcall] = ACTIONS(2838), + [anon_sym___stdcall] = ACTIONS(2838), + [anon_sym___fastcall] = ACTIONS(2838), + [anon_sym___thiscall] = ACTIONS(2838), + [anon_sym___vectorcall] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_signed] = ACTIONS(2838), + [anon_sym_unsigned] = ACTIONS(2838), + [anon_sym_long] = ACTIONS(2838), + [anon_sym_short] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_register] = ACTIONS(2838), + [anon_sym_inline] = ACTIONS(2838), + [anon_sym___inline] = ACTIONS(2838), + [anon_sym___inline__] = ACTIONS(2838), + [anon_sym___forceinline] = ACTIONS(2838), + [anon_sym_thread_local] = ACTIONS(2838), + [anon_sym___thread] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_constexpr] = ACTIONS(2838), + [anon_sym_volatile] = ACTIONS(2838), + [anon_sym_restrict] = ACTIONS(2838), + [anon_sym___restrict__] = ACTIONS(2838), + [anon_sym__Atomic] = ACTIONS(2838), + [anon_sym__Noreturn] = ACTIONS(2838), + [anon_sym_noreturn] = ACTIONS(2838), + [anon_sym_mutable] = ACTIONS(2838), + [anon_sym_constinit] = ACTIONS(2838), + [anon_sym_consteval] = ACTIONS(2838), + [sym_primitive_type] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_class] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_switch] = ACTIONS(2838), + [anon_sym_case] = ACTIONS(2838), + [anon_sym_default] = ACTIONS(2838), + [anon_sym_while] = ACTIONS(2838), + [anon_sym_do] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_goto] = ACTIONS(2838), + [anon_sym___try] = ACTIONS(2838), + [anon_sym___leave] = ACTIONS(2838), + [anon_sym_not] = ACTIONS(2838), + [anon_sym_compl] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_sizeof] = ACTIONS(2838), + [anon_sym___alignof__] = ACTIONS(2838), + [anon_sym___alignof] = ACTIONS(2838), + [anon_sym__alignof] = ACTIONS(2838), + [anon_sym_alignof] = ACTIONS(2838), + [anon_sym__Alignof] = ACTIONS(2838), + [anon_sym_offsetof] = ACTIONS(2838), + [anon_sym__Generic] = ACTIONS(2838), + [anon_sym_asm] = ACTIONS(2838), + [anon_sym___asm__] = ACTIONS(2838), + [sym_number_literal] = ACTIONS(2840), + [anon_sym_L_SQUOTE] = ACTIONS(2840), + [anon_sym_u_SQUOTE] = ACTIONS(2840), + [anon_sym_U_SQUOTE] = ACTIONS(2840), + [anon_sym_u8_SQUOTE] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2840), + [anon_sym_L_DQUOTE] = ACTIONS(2840), + [anon_sym_u_DQUOTE] = ACTIONS(2840), + [anon_sym_U_DQUOTE] = ACTIONS(2840), + [anon_sym_u8_DQUOTE] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2840), + [sym_true] = ACTIONS(2838), + [sym_false] = ACTIONS(2838), + [anon_sym_NULL] = ACTIONS(2838), + [anon_sym_nullptr] = ACTIONS(2838), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2838), + [anon_sym_decltype] = ACTIONS(2838), + [anon_sym_virtual] = ACTIONS(2838), + [anon_sym_alignas] = ACTIONS(2838), + [anon_sym_explicit] = ACTIONS(2838), + [anon_sym_typename] = ACTIONS(2838), + [anon_sym_template] = ACTIONS(2838), + [anon_sym_operator] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2838), + [anon_sym_delete] = ACTIONS(2838), + [anon_sym_throw] = ACTIONS(2838), + [anon_sym_namespace] = ACTIONS(2838), + [anon_sym_using] = ACTIONS(2838), + [anon_sym_static_assert] = ACTIONS(2838), + [anon_sym_concept] = ACTIONS(2838), + [anon_sym_co_return] = ACTIONS(2838), + [anon_sym_co_yield] = ACTIONS(2838), + [anon_sym_catch] = ACTIONS(2826), + [anon_sym_R_DQUOTE] = ACTIONS(2840), + [anon_sym_LR_DQUOTE] = ACTIONS(2840), + [anon_sym_uR_DQUOTE] = ACTIONS(2840), + [anon_sym_UR_DQUOTE] = ACTIONS(2840), + [anon_sym_u8R_DQUOTE] = ACTIONS(2840), + [anon_sym_co_await] = ACTIONS(2838), + [anon_sym_new] = ACTIONS(2838), + [anon_sym_requires] = ACTIONS(2838), + [sym_this] = ACTIONS(2838), + }, [235] = { - [sym_catch_clause] = STATE(231), - [aux_sym_constructor_try_statement_repeat1] = STATE(231), - [sym_identifier] = ACTIONS(2836), - [aux_sym_preproc_include_token1] = ACTIONS(2836), - [aux_sym_preproc_def_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token2] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), - [aux_sym_preproc_else_token1] = ACTIONS(2836), - [aux_sym_preproc_elif_token1] = ACTIONS(2836), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2836), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2836), - [sym_preproc_directive] = ACTIONS(2836), - [anon_sym_LPAREN2] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_SEMI] = ACTIONS(2838), - [anon_sym___extension__] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym___attribute__] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2838), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), - [anon_sym___declspec] = ACTIONS(2836), - [anon_sym___based] = ACTIONS(2836), - [anon_sym___cdecl] = ACTIONS(2836), - [anon_sym___clrcall] = ACTIONS(2836), - [anon_sym___stdcall] = ACTIONS(2836), - [anon_sym___fastcall] = ACTIONS(2836), - [anon_sym___thiscall] = ACTIONS(2836), - [anon_sym___vectorcall] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_signed] = ACTIONS(2836), - [anon_sym_unsigned] = ACTIONS(2836), - [anon_sym_long] = ACTIONS(2836), - [anon_sym_short] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_register] = ACTIONS(2836), - [anon_sym_inline] = ACTIONS(2836), - [anon_sym___inline] = ACTIONS(2836), - [anon_sym___inline__] = ACTIONS(2836), - [anon_sym___forceinline] = ACTIONS(2836), - [anon_sym_thread_local] = ACTIONS(2836), - [anon_sym___thread] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_constexpr] = ACTIONS(2836), - [anon_sym_volatile] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(2836), - [anon_sym___restrict__] = ACTIONS(2836), - [anon_sym__Atomic] = ACTIONS(2836), - [anon_sym__Noreturn] = ACTIONS(2836), - [anon_sym_noreturn] = ACTIONS(2836), - [anon_sym_mutable] = ACTIONS(2836), - [anon_sym_constinit] = ACTIONS(2836), - [anon_sym_consteval] = ACTIONS(2836), - [sym_primitive_type] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_switch] = ACTIONS(2836), - [anon_sym_case] = ACTIONS(2836), - [anon_sym_default] = ACTIONS(2836), - [anon_sym_while] = ACTIONS(2836), - [anon_sym_do] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_goto] = ACTIONS(2836), - [anon_sym___try] = ACTIONS(2836), - [anon_sym___leave] = ACTIONS(2836), - [anon_sym_not] = ACTIONS(2836), - [anon_sym_compl] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_sizeof] = ACTIONS(2836), - [anon_sym___alignof__] = ACTIONS(2836), - [anon_sym___alignof] = ACTIONS(2836), - [anon_sym__alignof] = ACTIONS(2836), - [anon_sym_alignof] = ACTIONS(2836), - [anon_sym__Alignof] = ACTIONS(2836), - [anon_sym_offsetof] = ACTIONS(2836), - [anon_sym__Generic] = ACTIONS(2836), - [anon_sym_asm] = ACTIONS(2836), - [anon_sym___asm__] = ACTIONS(2836), - [sym_number_literal] = ACTIONS(2838), - [anon_sym_L_SQUOTE] = ACTIONS(2838), - [anon_sym_u_SQUOTE] = ACTIONS(2838), - [anon_sym_U_SQUOTE] = ACTIONS(2838), - [anon_sym_u8_SQUOTE] = ACTIONS(2838), - [anon_sym_SQUOTE] = ACTIONS(2838), - [anon_sym_L_DQUOTE] = ACTIONS(2838), - [anon_sym_u_DQUOTE] = ACTIONS(2838), - [anon_sym_U_DQUOTE] = ACTIONS(2838), - [anon_sym_u8_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [anon_sym_NULL] = ACTIONS(2836), - [anon_sym_nullptr] = ACTIONS(2836), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2836), - [anon_sym_decltype] = ACTIONS(2836), - [anon_sym_virtual] = ACTIONS(2836), - [anon_sym_alignas] = ACTIONS(2836), - [anon_sym_explicit] = ACTIONS(2836), - [anon_sym_typename] = ACTIONS(2836), - [anon_sym_template] = ACTIONS(2836), - [anon_sym_operator] = ACTIONS(2836), - [anon_sym_try] = ACTIONS(2836), - [anon_sym_delete] = ACTIONS(2836), - [anon_sym_throw] = ACTIONS(2836), - [anon_sym_namespace] = ACTIONS(2836), - [anon_sym_using] = ACTIONS(2836), - [anon_sym_static_assert] = ACTIONS(2836), - [anon_sym_concept] = ACTIONS(2836), - [anon_sym_co_return] = ACTIONS(2836), - [anon_sym_co_yield] = ACTIONS(2836), - [anon_sym_catch] = ACTIONS(2824), - [anon_sym_R_DQUOTE] = ACTIONS(2838), - [anon_sym_LR_DQUOTE] = ACTIONS(2838), - [anon_sym_uR_DQUOTE] = ACTIONS(2838), - [anon_sym_UR_DQUOTE] = ACTIONS(2838), - [anon_sym_u8R_DQUOTE] = ACTIONS(2838), - [anon_sym_co_await] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2836), - [anon_sym_requires] = ACTIONS(2836), - [sym_this] = ACTIONS(2836), + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8955), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, [236] = { - [sym_else_clause] = STATE(306), - [sym_identifier] = ACTIONS(2840), - [aux_sym_preproc_include_token1] = ACTIONS(2840), - [aux_sym_preproc_def_token1] = ACTIONS(2840), - [aux_sym_preproc_if_token1] = ACTIONS(2840), - [aux_sym_preproc_if_token2] = ACTIONS(2840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), - [aux_sym_preproc_else_token1] = ACTIONS(2840), - [aux_sym_preproc_elif_token1] = ACTIONS(2840), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2840), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2840), - [sym_preproc_directive] = ACTIONS(2840), - [anon_sym_LPAREN2] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2842), - [anon_sym___extension__] = ACTIONS(2840), - [anon_sym_typedef] = ACTIONS(2840), - [anon_sym_extern] = ACTIONS(2840), - [anon_sym___attribute__] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2842), - [anon_sym___declspec] = ACTIONS(2840), - [anon_sym___based] = ACTIONS(2840), - [anon_sym___cdecl] = ACTIONS(2840), - [anon_sym___clrcall] = ACTIONS(2840), - [anon_sym___stdcall] = ACTIONS(2840), - [anon_sym___fastcall] = ACTIONS(2840), - [anon_sym___thiscall] = ACTIONS(2840), - [anon_sym___vectorcall] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_signed] = ACTIONS(2840), - [anon_sym_unsigned] = ACTIONS(2840), - [anon_sym_long] = ACTIONS(2840), - [anon_sym_short] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_register] = ACTIONS(2840), - [anon_sym_inline] = ACTIONS(2840), - [anon_sym___inline] = ACTIONS(2840), - [anon_sym___inline__] = ACTIONS(2840), - [anon_sym___forceinline] = ACTIONS(2840), - [anon_sym_thread_local] = ACTIONS(2840), - [anon_sym___thread] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_constexpr] = ACTIONS(2840), - [anon_sym_volatile] = ACTIONS(2840), - [anon_sym_restrict] = ACTIONS(2840), - [anon_sym___restrict__] = ACTIONS(2840), - [anon_sym__Atomic] = ACTIONS(2840), - [anon_sym__Noreturn] = ACTIONS(2840), - [anon_sym_noreturn] = ACTIONS(2840), - [anon_sym_mutable] = ACTIONS(2840), - [anon_sym_constinit] = ACTIONS(2840), - [anon_sym_consteval] = ACTIONS(2840), - [sym_primitive_type] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_else] = ACTIONS(2844), - [anon_sym_switch] = ACTIONS(2840), - [anon_sym_case] = ACTIONS(2840), - [anon_sym_default] = ACTIONS(2840), - [anon_sym_while] = ACTIONS(2840), - [anon_sym_do] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym___try] = ACTIONS(2840), - [anon_sym___leave] = ACTIONS(2840), - [anon_sym_not] = ACTIONS(2840), - [anon_sym_compl] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_sizeof] = ACTIONS(2840), - [anon_sym___alignof__] = ACTIONS(2840), - [anon_sym___alignof] = ACTIONS(2840), - [anon_sym__alignof] = ACTIONS(2840), - [anon_sym_alignof] = ACTIONS(2840), - [anon_sym__Alignof] = ACTIONS(2840), - [anon_sym_offsetof] = ACTIONS(2840), - [anon_sym__Generic] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym___asm__] = ACTIONS(2840), - [sym_number_literal] = ACTIONS(2842), - [anon_sym_L_SQUOTE] = ACTIONS(2842), - [anon_sym_u_SQUOTE] = ACTIONS(2842), - [anon_sym_U_SQUOTE] = ACTIONS(2842), - [anon_sym_u8_SQUOTE] = ACTIONS(2842), - [anon_sym_SQUOTE] = ACTIONS(2842), - [anon_sym_L_DQUOTE] = ACTIONS(2842), - [anon_sym_u_DQUOTE] = ACTIONS(2842), - [anon_sym_U_DQUOTE] = ACTIONS(2842), - [anon_sym_u8_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [anon_sym_NULL] = ACTIONS(2840), - [anon_sym_nullptr] = ACTIONS(2840), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2840), - [anon_sym_decltype] = ACTIONS(2840), - [anon_sym_virtual] = ACTIONS(2840), - [anon_sym_alignas] = ACTIONS(2840), - [anon_sym_explicit] = ACTIONS(2840), - [anon_sym_typename] = ACTIONS(2840), - [anon_sym_template] = ACTIONS(2840), - [anon_sym_operator] = ACTIONS(2840), - [anon_sym_try] = ACTIONS(2840), - [anon_sym_delete] = ACTIONS(2840), - [anon_sym_throw] = ACTIONS(2840), - [anon_sym_namespace] = ACTIONS(2840), - [anon_sym_using] = ACTIONS(2840), - [anon_sym_static_assert] = ACTIONS(2840), - [anon_sym_concept] = ACTIONS(2840), - [anon_sym_co_return] = ACTIONS(2840), - [anon_sym_co_yield] = ACTIONS(2840), - [anon_sym_R_DQUOTE] = ACTIONS(2842), - [anon_sym_LR_DQUOTE] = ACTIONS(2842), - [anon_sym_uR_DQUOTE] = ACTIONS(2842), - [anon_sym_UR_DQUOTE] = ACTIONS(2842), - [anon_sym_u8R_DQUOTE] = ACTIONS(2842), - [anon_sym_co_await] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2840), - [anon_sym_requires] = ACTIONS(2840), - [sym_this] = ACTIONS(2840), + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3171), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8516), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9182), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(9185), + [sym__unary_right_fold] = STATE(9219), + [sym__binary_fold] = STATE(9224), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8516), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, [237] = { - [sym_catch_clause] = STATE(237), - [aux_sym_constructor_try_statement_repeat1] = STATE(237), - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_include_token1] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token2] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [aux_sym_preproc_else_token1] = ACTIONS(2813), - [aux_sym_preproc_elif_token1] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym___extension__] = ACTIONS(2813), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym___cdecl] = ACTIONS(2813), - [anon_sym___clrcall] = ACTIONS(2813), - [anon_sym___stdcall] = ACTIONS(2813), - [anon_sym___fastcall] = ACTIONS(2813), - [anon_sym___thiscall] = ACTIONS(2813), - [anon_sym___vectorcall] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym___inline] = ACTIONS(2813), - [anon_sym___inline__] = ACTIONS(2813), - [anon_sym___forceinline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym___thread] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym___restrict__] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym__Noreturn] = ACTIONS(2813), - [anon_sym_noreturn] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_else] = ACTIONS(2813), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_case] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_do] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_goto] = ACTIONS(2813), - [anon_sym___try] = ACTIONS(2813), - [anon_sym___leave] = ACTIONS(2813), - [anon_sym_not] = ACTIONS(2813), - [anon_sym_compl] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_sizeof] = ACTIONS(2813), - [anon_sym___alignof__] = ACTIONS(2813), - [anon_sym___alignof] = ACTIONS(2813), - [anon_sym__alignof] = ACTIONS(2813), - [anon_sym_alignof] = ACTIONS(2813), - [anon_sym__Alignof] = ACTIONS(2813), - [anon_sym_offsetof] = ACTIONS(2813), - [anon_sym__Generic] = ACTIONS(2813), - [anon_sym_asm] = ACTIONS(2813), - [anon_sym___asm__] = ACTIONS(2813), - [sym_number_literal] = ACTIONS(2815), - [anon_sym_L_SQUOTE] = ACTIONS(2815), - [anon_sym_u_SQUOTE] = ACTIONS(2815), - [anon_sym_U_SQUOTE] = ACTIONS(2815), - [anon_sym_u8_SQUOTE] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_L_DQUOTE] = ACTIONS(2815), - [anon_sym_u_DQUOTE] = ACTIONS(2815), - [anon_sym_U_DQUOTE] = ACTIONS(2815), - [anon_sym_u8_DQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [anon_sym_NULL] = ACTIONS(2813), - [anon_sym_nullptr] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_alignas] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_delete] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_namespace] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_concept] = ACTIONS(2813), - [anon_sym_co_return] = ACTIONS(2813), - [anon_sym_co_yield] = ACTIONS(2813), - [anon_sym_catch] = ACTIONS(2846), - [anon_sym_R_DQUOTE] = ACTIONS(2815), - [anon_sym_LR_DQUOTE] = ACTIONS(2815), - [anon_sym_uR_DQUOTE] = ACTIONS(2815), - [anon_sym_UR_DQUOTE] = ACTIONS(2815), - [anon_sym_u8R_DQUOTE] = ACTIONS(2815), - [anon_sym_co_await] = ACTIONS(2813), - [anon_sym_new] = ACTIONS(2813), - [anon_sym_requires] = ACTIONS(2813), - [sym_this] = ACTIONS(2813), + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8521), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8513), + [sym__unary_right_fold] = STATE(8467), + [sym__binary_fold] = STATE(8510), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, [238] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [aux_sym_preproc_else_token1] = ACTIONS(2144), - [aux_sym_preproc_elif_token1] = ACTIONS(2144), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym___cdecl] = ACTIONS(2144), - [anon_sym___clrcall] = ACTIONS(2144), - [anon_sym___stdcall] = ACTIONS(2144), - [anon_sym___fastcall] = ACTIONS(2144), - [anon_sym___thiscall] = ACTIONS(2144), - [anon_sym___vectorcall] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym___try] = ACTIONS(2144), - [anon_sym___leave] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2144), - [anon_sym_compl] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2144), - [anon_sym___alignof__] = ACTIONS(2144), - [anon_sym___alignof] = ACTIONS(2144), - [anon_sym__alignof] = ACTIONS(2144), - [anon_sym_alignof] = ACTIONS(2144), - [anon_sym__Alignof] = ACTIONS(2144), - [anon_sym_offsetof] = ACTIONS(2144), - [anon_sym__Generic] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym___asm__] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2142), - [anon_sym_L_SQUOTE] = ACTIONS(2142), - [anon_sym_u_SQUOTE] = ACTIONS(2142), - [anon_sym_U_SQUOTE] = ACTIONS(2142), - [anon_sym_u8_SQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_L_DQUOTE] = ACTIONS(2142), - [anon_sym_u_DQUOTE] = ACTIONS(2142), - [anon_sym_U_DQUOTE] = ACTIONS(2142), - [anon_sym_u8_DQUOTE] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [anon_sym_NULL] = ACTIONS(2144), - [anon_sym_nullptr] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_delete] = ACTIONS(2144), - [anon_sym_throw] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_concept] = ACTIONS(2144), - [anon_sym_co_return] = ACTIONS(2144), - [anon_sym_co_yield] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_R_DQUOTE] = ACTIONS(2142), - [anon_sym_LR_DQUOTE] = ACTIONS(2142), - [anon_sym_uR_DQUOTE] = ACTIONS(2142), - [anon_sym_UR_DQUOTE] = ACTIONS(2142), - [anon_sym_u8R_DQUOTE] = ACTIONS(2142), - [anon_sym_co_await] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2144), - [anon_sym_requires] = ACTIONS(2144), - [sym_this] = ACTIONS(2144), + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8474), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, [239] = { - [sym_identifier] = ACTIONS(2849), - [aux_sym_preproc_include_token1] = ACTIONS(2849), - [aux_sym_preproc_def_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token2] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), - [aux_sym_preproc_else_token1] = ACTIONS(2849), - [aux_sym_preproc_elif_token1] = ACTIONS(2849), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2849), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2849), - [sym_preproc_directive] = ACTIONS(2849), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym___extension__] = ACTIONS(2849), - [anon_sym_typedef] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), - [anon_sym___declspec] = ACTIONS(2849), - [anon_sym___based] = ACTIONS(2849), - [anon_sym___cdecl] = ACTIONS(2849), - [anon_sym___clrcall] = ACTIONS(2849), - [anon_sym___stdcall] = ACTIONS(2849), - [anon_sym___fastcall] = ACTIONS(2849), - [anon_sym___thiscall] = ACTIONS(2849), - [anon_sym___vectorcall] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_signed] = ACTIONS(2849), - [anon_sym_unsigned] = ACTIONS(2849), - [anon_sym_long] = ACTIONS(2849), - [anon_sym_short] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_register] = ACTIONS(2849), - [anon_sym_inline] = ACTIONS(2849), - [anon_sym___inline] = ACTIONS(2849), - [anon_sym___inline__] = ACTIONS(2849), - [anon_sym___forceinline] = ACTIONS(2849), - [anon_sym_thread_local] = ACTIONS(2849), - [anon_sym___thread] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_constexpr] = ACTIONS(2849), - [anon_sym_volatile] = ACTIONS(2849), - [anon_sym_restrict] = ACTIONS(2849), - [anon_sym___restrict__] = ACTIONS(2849), - [anon_sym__Atomic] = ACTIONS(2849), - [anon_sym__Noreturn] = ACTIONS(2849), - [anon_sym_noreturn] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [sym_primitive_type] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_class] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_else] = ACTIONS(2849), - [anon_sym_switch] = ACTIONS(2849), - [anon_sym_case] = ACTIONS(2849), - [anon_sym_default] = ACTIONS(2849), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_do] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_goto] = ACTIONS(2849), - [anon_sym___try] = ACTIONS(2849), - [anon_sym___leave] = ACTIONS(2849), - [anon_sym_not] = ACTIONS(2849), - [anon_sym_compl] = ACTIONS(2849), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_sizeof] = ACTIONS(2849), - [anon_sym___alignof__] = ACTIONS(2849), - [anon_sym___alignof] = ACTIONS(2849), - [anon_sym__alignof] = ACTIONS(2849), - [anon_sym_alignof] = ACTIONS(2849), - [anon_sym__Alignof] = ACTIONS(2849), - [anon_sym_offsetof] = ACTIONS(2849), - [anon_sym__Generic] = ACTIONS(2849), - [anon_sym_asm] = ACTIONS(2849), - [anon_sym___asm__] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2851), - [anon_sym_u_SQUOTE] = ACTIONS(2851), - [anon_sym_U_SQUOTE] = ACTIONS(2851), - [anon_sym_u8_SQUOTE] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [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(2849), - [sym_false] = ACTIONS(2849), - [anon_sym_NULL] = ACTIONS(2849), - [anon_sym_nullptr] = ACTIONS(2849), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2849), - [anon_sym_decltype] = ACTIONS(2849), - [anon_sym_virtual] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym_explicit] = ACTIONS(2849), - [anon_sym_typename] = ACTIONS(2849), - [anon_sym_template] = ACTIONS(2849), - [anon_sym_operator] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2849), - [anon_sym_delete] = ACTIONS(2849), - [anon_sym_throw] = ACTIONS(2849), - [anon_sym_namespace] = ACTIONS(2849), - [anon_sym_using] = ACTIONS(2849), - [anon_sym_static_assert] = ACTIONS(2849), - [anon_sym_concept] = ACTIONS(2849), - [anon_sym_co_return] = ACTIONS(2849), - [anon_sym_co_yield] = ACTIONS(2849), - [anon_sym_catch] = ACTIONS(2849), - [anon_sym_R_DQUOTE] = ACTIONS(2851), - [anon_sym_LR_DQUOTE] = ACTIONS(2851), - [anon_sym_uR_DQUOTE] = ACTIONS(2851), - [anon_sym_UR_DQUOTE] = ACTIONS(2851), - [anon_sym_u8R_DQUOTE] = ACTIONS(2851), - [anon_sym_co_await] = ACTIONS(2849), - [anon_sym_new] = ACTIONS(2849), - [anon_sym_requires] = ACTIONS(2849), - [sym_this] = ACTIONS(2849), + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9250), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8513), + [sym__unary_right_fold] = STATE(8467), + [sym__binary_fold] = STATE(8510), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, [240] = { - [sym_else_clause] = STATE(260), - [sym_identifier] = ACTIONS(2853), - [aux_sym_preproc_include_token1] = ACTIONS(2853), - [aux_sym_preproc_def_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token2] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), - [aux_sym_preproc_else_token1] = ACTIONS(2853), - [aux_sym_preproc_elif_token1] = ACTIONS(2853), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2853), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2855), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym___based] = ACTIONS(2853), - [anon_sym___cdecl] = ACTIONS(2853), - [anon_sym___clrcall] = ACTIONS(2853), - [anon_sym___stdcall] = ACTIONS(2853), - [anon_sym___fastcall] = ACTIONS(2853), - [anon_sym___thiscall] = ACTIONS(2853), - [anon_sym___vectorcall] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2844), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym___try] = ACTIONS(2853), - [anon_sym___leave] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(2853), - [anon_sym_compl] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_sizeof] = ACTIONS(2853), - [anon_sym___alignof__] = ACTIONS(2853), - [anon_sym___alignof] = ACTIONS(2853), - [anon_sym__alignof] = ACTIONS(2853), - [anon_sym_alignof] = ACTIONS(2853), - [anon_sym__Alignof] = ACTIONS(2853), - [anon_sym_offsetof] = ACTIONS(2853), - [anon_sym__Generic] = ACTIONS(2853), - [anon_sym_asm] = ACTIONS(2853), - [anon_sym___asm__] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2855), - [anon_sym_L_SQUOTE] = ACTIONS(2855), - [anon_sym_u_SQUOTE] = ACTIONS(2855), - [anon_sym_U_SQUOTE] = ACTIONS(2855), - [anon_sym_u8_SQUOTE] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2853), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_explicit] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2853), - [anon_sym_operator] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_using] = ACTIONS(2853), - [anon_sym_static_assert] = ACTIONS(2853), - [anon_sym_concept] = ACTIONS(2853), - [anon_sym_co_return] = ACTIONS(2853), - [anon_sym_co_yield] = 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(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_requires] = ACTIONS(2853), - [sym_this] = ACTIONS(2853), + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [aux_sym_preproc_else_token1] = ACTIONS(2186), + [aux_sym_preproc_elif_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), }, [241] = { - [sym_catch_clause] = STATE(237), - [aux_sym_constructor_try_statement_repeat1] = STATE(237), - [sym_identifier] = ACTIONS(2820), - [aux_sym_preproc_include_token1] = ACTIONS(2820), - [aux_sym_preproc_def_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token2] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), - [aux_sym_preproc_else_token1] = ACTIONS(2820), - [aux_sym_preproc_elif_token1] = ACTIONS(2820), - [sym_preproc_directive] = ACTIONS(2820), - [anon_sym_LPAREN2] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym___extension__] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym___attribute__] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), - [anon_sym___declspec] = ACTIONS(2820), - [anon_sym___based] = ACTIONS(2820), - [anon_sym___cdecl] = ACTIONS(2820), - [anon_sym___clrcall] = ACTIONS(2820), - [anon_sym___stdcall] = ACTIONS(2820), - [anon_sym___fastcall] = ACTIONS(2820), - [anon_sym___thiscall] = ACTIONS(2820), - [anon_sym___vectorcall] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_signed] = ACTIONS(2820), - [anon_sym_unsigned] = ACTIONS(2820), - [anon_sym_long] = ACTIONS(2820), - [anon_sym_short] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_register] = ACTIONS(2820), - [anon_sym_inline] = ACTIONS(2820), - [anon_sym___inline] = ACTIONS(2820), - [anon_sym___inline__] = ACTIONS(2820), - [anon_sym___forceinline] = ACTIONS(2820), - [anon_sym_thread_local] = ACTIONS(2820), - [anon_sym___thread] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_constexpr] = ACTIONS(2820), - [anon_sym_volatile] = ACTIONS(2820), - [anon_sym_restrict] = ACTIONS(2820), - [anon_sym___restrict__] = ACTIONS(2820), - [anon_sym__Atomic] = ACTIONS(2820), - [anon_sym__Noreturn] = ACTIONS(2820), - [anon_sym_noreturn] = ACTIONS(2820), - [anon_sym_mutable] = ACTIONS(2820), - [anon_sym_constinit] = ACTIONS(2820), - [anon_sym_consteval] = ACTIONS(2820), - [sym_primitive_type] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2820), - [anon_sym_switch] = ACTIONS(2820), - [anon_sym_case] = ACTIONS(2820), - [anon_sym_default] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_do] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym___try] = ACTIONS(2820), - [anon_sym___leave] = ACTIONS(2820), - [anon_sym_not] = ACTIONS(2820), - [anon_sym_compl] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_sizeof] = ACTIONS(2820), - [anon_sym___alignof__] = ACTIONS(2820), - [anon_sym___alignof] = ACTIONS(2820), - [anon_sym__alignof] = ACTIONS(2820), - [anon_sym_alignof] = ACTIONS(2820), - [anon_sym__Alignof] = ACTIONS(2820), - [anon_sym_offsetof] = ACTIONS(2820), - [anon_sym__Generic] = ACTIONS(2820), - [anon_sym_asm] = ACTIONS(2820), - [anon_sym___asm__] = ACTIONS(2820), - [sym_number_literal] = ACTIONS(2822), - [anon_sym_L_SQUOTE] = ACTIONS(2822), - [anon_sym_u_SQUOTE] = ACTIONS(2822), - [anon_sym_U_SQUOTE] = ACTIONS(2822), - [anon_sym_u8_SQUOTE] = ACTIONS(2822), - [anon_sym_SQUOTE] = ACTIONS(2822), - [anon_sym_L_DQUOTE] = ACTIONS(2822), - [anon_sym_u_DQUOTE] = ACTIONS(2822), - [anon_sym_U_DQUOTE] = ACTIONS(2822), - [anon_sym_u8_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [anon_sym_NULL] = ACTIONS(2820), - [anon_sym_nullptr] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2820), - [anon_sym_decltype] = ACTIONS(2820), - [anon_sym_virtual] = ACTIONS(2820), - [anon_sym_alignas] = ACTIONS(2820), - [anon_sym_explicit] = ACTIONS(2820), - [anon_sym_typename] = ACTIONS(2820), - [anon_sym_template] = ACTIONS(2820), - [anon_sym_operator] = ACTIONS(2820), - [anon_sym_try] = ACTIONS(2820), - [anon_sym_delete] = ACTIONS(2820), - [anon_sym_throw] = ACTIONS(2820), - [anon_sym_namespace] = ACTIONS(2820), - [anon_sym_using] = ACTIONS(2820), - [anon_sym_static_assert] = ACTIONS(2820), - [anon_sym_concept] = ACTIONS(2820), - [anon_sym_co_return] = ACTIONS(2820), - [anon_sym_co_yield] = ACTIONS(2820), - [anon_sym_catch] = ACTIONS(2857), - [anon_sym_R_DQUOTE] = ACTIONS(2822), - [anon_sym_LR_DQUOTE] = ACTIONS(2822), - [anon_sym_uR_DQUOTE] = ACTIONS(2822), - [anon_sym_UR_DQUOTE] = ACTIONS(2822), - [anon_sym_u8R_DQUOTE] = ACTIONS(2822), - [anon_sym_co_await] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2820), - [anon_sym_requires] = ACTIONS(2820), - [sym_this] = ACTIONS(2820), + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9014), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8513), + [sym__unary_right_fold] = STATE(8467), + [sym__binary_fold] = STATE(8510), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, [242] = { - [sym_identifier] = ACTIONS(2148), - [aux_sym_preproc_include_token1] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token2] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), - [aux_sym_preproc_else_token1] = ACTIONS(2148), - [aux_sym_preproc_elif_token1] = ACTIONS(2148), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2148), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2148), - [sym_preproc_directive] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_AMP_AMP] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym___extension__] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym___attribute__] = ACTIONS(2148), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2148), - [anon_sym___based] = ACTIONS(2148), - [anon_sym___cdecl] = ACTIONS(2148), - [anon_sym___clrcall] = ACTIONS(2148), - [anon_sym___stdcall] = ACTIONS(2148), - [anon_sym___fastcall] = ACTIONS(2148), - [anon_sym___thiscall] = ACTIONS(2148), - [anon_sym___vectorcall] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2148), - [anon_sym_unsigned] = ACTIONS(2148), - [anon_sym_long] = ACTIONS(2148), - [anon_sym_short] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym___inline] = ACTIONS(2148), - [anon_sym___inline__] = ACTIONS(2148), - [anon_sym___forceinline] = ACTIONS(2148), - [anon_sym_thread_local] = ACTIONS(2148), - [anon_sym___thread] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_constexpr] = ACTIONS(2148), - [anon_sym_volatile] = ACTIONS(2148), - [anon_sym_restrict] = ACTIONS(2148), - [anon_sym___restrict__] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(2148), - [anon_sym__Noreturn] = ACTIONS(2148), - [anon_sym_noreturn] = ACTIONS(2148), - [anon_sym_mutable] = ACTIONS(2148), - [anon_sym_constinit] = ACTIONS(2148), - [anon_sym_consteval] = ACTIONS(2148), - [sym_primitive_type] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_class] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_else] = ACTIONS(2148), - [anon_sym_switch] = ACTIONS(2148), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_do] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_goto] = ACTIONS(2148), - [anon_sym___try] = ACTIONS(2148), - [anon_sym___leave] = ACTIONS(2148), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2146), - [anon_sym_PLUS_PLUS] = ACTIONS(2146), - [anon_sym_sizeof] = ACTIONS(2148), - [anon_sym___alignof__] = ACTIONS(2148), - [anon_sym___alignof] = ACTIONS(2148), - [anon_sym__alignof] = ACTIONS(2148), - [anon_sym_alignof] = ACTIONS(2148), - [anon_sym__Alignof] = ACTIONS(2148), - [anon_sym_offsetof] = ACTIONS(2148), - [anon_sym__Generic] = ACTIONS(2148), - [anon_sym_asm] = ACTIONS(2148), - [anon_sym___asm__] = ACTIONS(2148), - [sym_number_literal] = ACTIONS(2146), - [anon_sym_L_SQUOTE] = ACTIONS(2146), - [anon_sym_u_SQUOTE] = ACTIONS(2146), - [anon_sym_U_SQUOTE] = ACTIONS(2146), - [anon_sym_u8_SQUOTE] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2146), - [anon_sym_L_DQUOTE] = ACTIONS(2146), - [anon_sym_u_DQUOTE] = ACTIONS(2146), - [anon_sym_U_DQUOTE] = ACTIONS(2146), - [anon_sym_u8_DQUOTE] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym_true] = ACTIONS(2148), - [sym_false] = ACTIONS(2148), - [anon_sym_NULL] = ACTIONS(2148), - [anon_sym_nullptr] = ACTIONS(2148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2148), - [anon_sym_decltype] = ACTIONS(2148), - [anon_sym_virtual] = ACTIONS(2148), - [anon_sym_alignas] = ACTIONS(2148), - [anon_sym_explicit] = ACTIONS(2148), - [anon_sym_typename] = ACTIONS(2148), - [anon_sym_template] = ACTIONS(2148), - [anon_sym_operator] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [anon_sym_delete] = ACTIONS(2148), - [anon_sym_throw] = ACTIONS(2148), - [anon_sym_namespace] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2148), - [anon_sym_static_assert] = ACTIONS(2148), - [anon_sym_concept] = ACTIONS(2148), - [anon_sym_co_return] = ACTIONS(2148), - [anon_sym_co_yield] = ACTIONS(2148), - [anon_sym_catch] = ACTIONS(2148), - [anon_sym_R_DQUOTE] = ACTIONS(2146), - [anon_sym_LR_DQUOTE] = ACTIONS(2146), - [anon_sym_uR_DQUOTE] = ACTIONS(2146), - [anon_sym_UR_DQUOTE] = ACTIONS(2146), - [anon_sym_u8R_DQUOTE] = ACTIONS(2146), - [anon_sym_co_await] = ACTIONS(2148), - [anon_sym_new] = ACTIONS(2148), - [anon_sym_requires] = ACTIONS(2148), - [sym_this] = ACTIONS(2148), + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8515), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8513), + [sym__unary_right_fold] = STATE(8467), + [sym__binary_fold] = STATE(8510), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, [243] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9133), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8513), + [sym__unary_right_fold] = STATE(8467), + [sym__binary_fold] = STATE(8510), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, [244] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3171), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8516), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9351), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(9185), + [sym__unary_right_fold] = STATE(9219), + [sym__binary_fold] = STATE(9224), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8516), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [245] = { + [sym_catch_clause] = STATE(245), + [aux_sym_constructor_try_statement_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_include_token1] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token2] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [aux_sym_preproc_else_token1] = ACTIONS(2815), + [aux_sym_preproc_elif_token1] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym___cdecl] = ACTIONS(2815), + [anon_sym___clrcall] = ACTIONS(2815), + [anon_sym___stdcall] = ACTIONS(2815), + [anon_sym___fastcall] = ACTIONS(2815), + [anon_sym___thiscall] = ACTIONS(2815), + [anon_sym___vectorcall] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym___inline] = ACTIONS(2815), + [anon_sym___inline__] = ACTIONS(2815), + [anon_sym___forceinline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym___thread] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym___restrict__] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym__Noreturn] = ACTIONS(2815), + [anon_sym_noreturn] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_goto] = ACTIONS(2815), + [anon_sym___try] = ACTIONS(2815), + [anon_sym___leave] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_compl] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2815), + [anon_sym___alignof__] = ACTIONS(2815), + [anon_sym___alignof] = ACTIONS(2815), + [anon_sym__alignof] = ACTIONS(2815), + [anon_sym_alignof] = ACTIONS(2815), + [anon_sym__Alignof] = ACTIONS(2815), + [anon_sym_offsetof] = ACTIONS(2815), + [anon_sym__Generic] = ACTIONS(2815), + [anon_sym_asm] = ACTIONS(2815), + [anon_sym___asm__] = ACTIONS(2815), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2817), + [anon_sym_u_SQUOTE] = ACTIONS(2817), + [anon_sym_U_SQUOTE] = ACTIONS(2817), + [anon_sym_u8_SQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_L_DQUOTE] = ACTIONS(2817), + [anon_sym_u_DQUOTE] = ACTIONS(2817), + [anon_sym_U_DQUOTE] = ACTIONS(2817), + [anon_sym_u8_DQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [anon_sym_NULL] = ACTIONS(2815), + [anon_sym_nullptr] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_alignas] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_namespace] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_concept] = ACTIONS(2815), + [anon_sym_co_return] = ACTIONS(2815), + [anon_sym_co_yield] = ACTIONS(2815), + [anon_sym_catch] = ACTIONS(2848), + [anon_sym_R_DQUOTE] = ACTIONS(2817), + [anon_sym_LR_DQUOTE] = ACTIONS(2817), + [anon_sym_uR_DQUOTE] = ACTIONS(2817), + [anon_sym_UR_DQUOTE] = ACTIONS(2817), + [anon_sym_u8R_DQUOTE] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_requires] = ACTIONS(2815), + [sym_this] = ACTIONS(2815), + }, + [246] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3245), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8887), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8880), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8445), + [sym__unary_right_fold] = STATE(8893), + [sym__binary_fold] = STATE(8768), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8887), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [247] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3171), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8516), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8697), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8660), + [sym__unary_right_fold] = STATE(8661), + [sym__binary_fold] = STATE(8662), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8516), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [248] = { + [sym_else_clause] = STATE(319), + [sym_identifier] = ACTIONS(2851), + [aux_sym_preproc_include_token1] = ACTIONS(2851), + [aux_sym_preproc_def_token1] = ACTIONS(2851), + [aux_sym_preproc_if_token1] = ACTIONS(2851), + [aux_sym_preproc_if_token2] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2851), + [aux_sym_preproc_else_token1] = ACTIONS(2851), + [aux_sym_preproc_elif_token1] = ACTIONS(2851), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2851), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2851), + [sym_preproc_directive] = ACTIONS(2851), + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym___extension__] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2851), + [anon_sym_extern] = ACTIONS(2851), + [anon_sym___attribute__] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), + [anon_sym___declspec] = ACTIONS(2851), + [anon_sym___based] = ACTIONS(2851), + [anon_sym___cdecl] = ACTIONS(2851), + [anon_sym___clrcall] = ACTIONS(2851), + [anon_sym___stdcall] = ACTIONS(2851), + [anon_sym___fastcall] = ACTIONS(2851), + [anon_sym___thiscall] = ACTIONS(2851), + [anon_sym___vectorcall] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2851), + [anon_sym_unsigned] = ACTIONS(2851), + [anon_sym_long] = ACTIONS(2851), + [anon_sym_short] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2851), + [anon_sym_register] = ACTIONS(2851), + [anon_sym_inline] = ACTIONS(2851), + [anon_sym___inline] = ACTIONS(2851), + [anon_sym___inline__] = ACTIONS(2851), + [anon_sym___forceinline] = ACTIONS(2851), + [anon_sym_thread_local] = ACTIONS(2851), + [anon_sym___thread] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_constexpr] = ACTIONS(2851), + [anon_sym_volatile] = ACTIONS(2851), + [anon_sym_restrict] = ACTIONS(2851), + [anon_sym___restrict__] = ACTIONS(2851), + [anon_sym__Atomic] = ACTIONS(2851), + [anon_sym__Noreturn] = ACTIONS(2851), + [anon_sym_noreturn] = ACTIONS(2851), + [anon_sym_mutable] = ACTIONS(2851), + [anon_sym_constinit] = ACTIONS(2851), + [anon_sym_consteval] = ACTIONS(2851), + [sym_primitive_type] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), + [anon_sym_class] = ACTIONS(2851), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_union] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_else] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2851), + [anon_sym_case] = ACTIONS(2851), + [anon_sym_default] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_do] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_goto] = ACTIONS(2851), + [anon_sym___try] = ACTIONS(2851), + [anon_sym___leave] = ACTIONS(2851), + [anon_sym_not] = ACTIONS(2851), + [anon_sym_compl] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_sizeof] = ACTIONS(2851), + [anon_sym___alignof__] = ACTIONS(2851), + [anon_sym___alignof] = ACTIONS(2851), + [anon_sym__alignof] = ACTIONS(2851), + [anon_sym_alignof] = ACTIONS(2851), + [anon_sym__Alignof] = ACTIONS(2851), + [anon_sym_offsetof] = ACTIONS(2851), + [anon_sym__Generic] = ACTIONS(2851), + [anon_sym_asm] = ACTIONS(2851), + [anon_sym___asm__] = ACTIONS(2851), + [sym_number_literal] = ACTIONS(2853), + [anon_sym_L_SQUOTE] = ACTIONS(2853), + [anon_sym_u_SQUOTE] = ACTIONS(2853), + [anon_sym_U_SQUOTE] = ACTIONS(2853), + [anon_sym_u8_SQUOTE] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2853), + [anon_sym_L_DQUOTE] = ACTIONS(2853), + [anon_sym_u_DQUOTE] = ACTIONS(2853), + [anon_sym_U_DQUOTE] = ACTIONS(2853), + [anon_sym_u8_DQUOTE] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2853), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2851), + [anon_sym_nullptr] = ACTIONS(2851), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2851), + [anon_sym_decltype] = ACTIONS(2851), + [anon_sym_virtual] = ACTIONS(2851), + [anon_sym_alignas] = ACTIONS(2851), + [anon_sym_explicit] = ACTIONS(2851), + [anon_sym_typename] = ACTIONS(2851), + [anon_sym_template] = ACTIONS(2851), + [anon_sym_operator] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [anon_sym_delete] = ACTIONS(2851), + [anon_sym_throw] = ACTIONS(2851), + [anon_sym_namespace] = ACTIONS(2851), + [anon_sym_using] = ACTIONS(2851), + [anon_sym_static_assert] = ACTIONS(2851), + [anon_sym_concept] = ACTIONS(2851), + [anon_sym_co_return] = ACTIONS(2851), + [anon_sym_co_yield] = ACTIONS(2851), + [anon_sym_R_DQUOTE] = ACTIONS(2853), + [anon_sym_LR_DQUOTE] = ACTIONS(2853), + [anon_sym_uR_DQUOTE] = ACTIONS(2853), + [anon_sym_UR_DQUOTE] = ACTIONS(2853), + [anon_sym_u8R_DQUOTE] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(2851), + [anon_sym_requires] = ACTIONS(2851), + [sym_this] = ACTIONS(2851), + }, + [249] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9244), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [250] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3210), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8658), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9030), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(9215), + [sym__unary_right_fold] = STATE(9212), + [sym__binary_fold] = STATE(9207), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8658), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [251] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9150), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8513), + [sym__unary_right_fold] = STATE(8467), + [sym__binary_fold] = STATE(8510), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [252] = { + [sym_else_clause] = STATE(343), + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token2] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [aux_sym_preproc_else_token1] = ACTIONS(2857), + [aux_sym_preproc_elif_token1] = ACTIONS(2857), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym___extension__] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym___inline] = ACTIONS(2857), + [anon_sym___inline__] = ACTIONS(2857), + [anon_sym___forceinline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym___thread] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym___restrict__] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym__Noreturn] = ACTIONS(2857), + [anon_sym_noreturn] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_else] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym___try] = ACTIONS(2857), + [anon_sym___leave] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [anon_sym___alignof__] = ACTIONS(2857), + [anon_sym___alignof] = ACTIONS(2857), + [anon_sym__alignof] = ACTIONS(2857), + [anon_sym_alignof] = ACTIONS(2857), + [anon_sym__Alignof] = ACTIONS(2857), + [anon_sym_offsetof] = ACTIONS(2857), + [anon_sym__Generic] = ACTIONS(2857), + [anon_sym_asm] = ACTIONS(2857), + [anon_sym___asm__] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [anon_sym_NULL] = ACTIONS(2857), + [anon_sym_nullptr] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_alignas] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_R_DQUOTE] = ACTIONS(2859), + [anon_sym_LR_DQUOTE] = ACTIONS(2859), + [anon_sym_uR_DQUOTE] = ACTIONS(2859), + [anon_sym_UR_DQUOTE] = ACTIONS(2859), + [anon_sym_u8R_DQUOTE] = ACTIONS(2859), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), + }, + [253] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3245), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8887), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8731), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8883), + [sym__unary_right_fold] = STATE(8882), + [sym__binary_fold] = STATE(8881), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8887), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [254] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9171), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8513), + [sym__unary_right_fold] = STATE(8467), + [sym__binary_fold] = STATE(8510), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [255] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9042), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [256] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8873), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [257] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3210), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8658), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9063), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(9215), + [sym__unary_right_fold] = STATE(9212), + [sym__binary_fold] = STATE(9207), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8658), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [258] = { + [sym_catch_clause] = STATE(245), + [aux_sym_constructor_try_statement_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(2822), + [aux_sym_preproc_include_token1] = ACTIONS(2822), + [aux_sym_preproc_def_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token2] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), + [aux_sym_preproc_else_token1] = ACTIONS(2822), + [aux_sym_preproc_elif_token1] = ACTIONS(2822), + [sym_preproc_directive] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_AMP_AMP] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym___extension__] = ACTIONS(2822), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), + [anon_sym___declspec] = ACTIONS(2822), + [anon_sym___based] = ACTIONS(2822), + [anon_sym___cdecl] = ACTIONS(2822), + [anon_sym___clrcall] = ACTIONS(2822), + [anon_sym___stdcall] = ACTIONS(2822), + [anon_sym___fastcall] = ACTIONS(2822), + [anon_sym___thiscall] = ACTIONS(2822), + [anon_sym___vectorcall] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym___inline] = ACTIONS(2822), + [anon_sym___inline__] = ACTIONS(2822), + [anon_sym___forceinline] = ACTIONS(2822), + [anon_sym_thread_local] = ACTIONS(2822), + [anon_sym___thread] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_constexpr] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym___restrict__] = ACTIONS(2822), + [anon_sym__Atomic] = ACTIONS(2822), + [anon_sym__Noreturn] = ACTIONS(2822), + [anon_sym_noreturn] = ACTIONS(2822), + [anon_sym_mutable] = ACTIONS(2822), + [anon_sym_constinit] = ACTIONS(2822), + [anon_sym_consteval] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_else] = ACTIONS(2822), + [anon_sym_switch] = ACTIONS(2822), + [anon_sym_case] = ACTIONS(2822), + [anon_sym_default] = ACTIONS(2822), + [anon_sym_while] = ACTIONS(2822), + [anon_sym_do] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_goto] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2822), + [anon_sym___leave] = ACTIONS(2822), + [anon_sym_not] = ACTIONS(2822), + [anon_sym_compl] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_sizeof] = ACTIONS(2822), + [anon_sym___alignof__] = ACTIONS(2822), + [anon_sym___alignof] = ACTIONS(2822), + [anon_sym__alignof] = ACTIONS(2822), + [anon_sym_alignof] = ACTIONS(2822), + [anon_sym__Alignof] = ACTIONS(2822), + [anon_sym_offsetof] = ACTIONS(2822), + [anon_sym__Generic] = ACTIONS(2822), + [anon_sym_asm] = ACTIONS(2822), + [anon_sym___asm__] = ACTIONS(2822), + [sym_number_literal] = ACTIONS(2824), + [anon_sym_L_SQUOTE] = ACTIONS(2824), + [anon_sym_u_SQUOTE] = ACTIONS(2824), + [anon_sym_U_SQUOTE] = ACTIONS(2824), + [anon_sym_u8_SQUOTE] = ACTIONS(2824), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_L_DQUOTE] = ACTIONS(2824), + [anon_sym_u_DQUOTE] = ACTIONS(2824), + [anon_sym_U_DQUOTE] = ACTIONS(2824), + [anon_sym_u8_DQUOTE] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2824), + [sym_true] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [anon_sym_NULL] = ACTIONS(2822), + [anon_sym_nullptr] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2822), + [anon_sym_decltype] = ACTIONS(2822), + [anon_sym_virtual] = ACTIONS(2822), + [anon_sym_alignas] = ACTIONS(2822), + [anon_sym_explicit] = ACTIONS(2822), + [anon_sym_typename] = ACTIONS(2822), + [anon_sym_template] = ACTIONS(2822), + [anon_sym_operator] = ACTIONS(2822), + [anon_sym_try] = ACTIONS(2822), + [anon_sym_delete] = ACTIONS(2822), + [anon_sym_throw] = ACTIONS(2822), + [anon_sym_namespace] = ACTIONS(2822), + [anon_sym_using] = ACTIONS(2822), + [anon_sym_static_assert] = ACTIONS(2822), + [anon_sym_concept] = ACTIONS(2822), + [anon_sym_co_return] = ACTIONS(2822), + [anon_sym_co_yield] = ACTIONS(2822), + [anon_sym_catch] = ACTIONS(2861), + [anon_sym_R_DQUOTE] = ACTIONS(2824), + [anon_sym_LR_DQUOTE] = ACTIONS(2824), + [anon_sym_uR_DQUOTE] = ACTIONS(2824), + [anon_sym_UR_DQUOTE] = ACTIONS(2824), + [anon_sym_u8R_DQUOTE] = ACTIONS(2824), + [anon_sym_co_await] = ACTIONS(2822), + [anon_sym_new] = ACTIONS(2822), + [anon_sym_requires] = ACTIONS(2822), + [sym_this] = ACTIONS(2822), + }, + [259] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8985), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8513), + [sym__unary_right_fold] = STATE(8467), + [sym__binary_fold] = STATE(8510), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [260] = { + [sym_identifier] = ACTIONS(2136), + [aux_sym_preproc_include_token1] = ACTIONS(2136), + [aux_sym_preproc_def_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token2] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2136), + [aux_sym_preproc_else_token1] = ACTIONS(2136), + [aux_sym_preproc_elif_token1] = ACTIONS(2136), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2136), + [sym_preproc_directive] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym___extension__] = ACTIONS(2136), + [anon_sym_typedef] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym___attribute__] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2134), + [anon_sym___declspec] = ACTIONS(2136), + [anon_sym___based] = ACTIONS(2136), + [anon_sym___cdecl] = ACTIONS(2136), + [anon_sym___clrcall] = ACTIONS(2136), + [anon_sym___stdcall] = ACTIONS(2136), + [anon_sym___fastcall] = ACTIONS(2136), + [anon_sym___thiscall] = ACTIONS(2136), + [anon_sym___vectorcall] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_signed] = ACTIONS(2136), + [anon_sym_unsigned] = ACTIONS(2136), + [anon_sym_long] = ACTIONS(2136), + [anon_sym_short] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_register] = ACTIONS(2136), + [anon_sym_inline] = ACTIONS(2136), + [anon_sym___inline] = ACTIONS(2136), + [anon_sym___inline__] = ACTIONS(2136), + [anon_sym___forceinline] = ACTIONS(2136), + [anon_sym_thread_local] = ACTIONS(2136), + [anon_sym___thread] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_constexpr] = ACTIONS(2136), + [anon_sym_volatile] = ACTIONS(2136), + [anon_sym_restrict] = ACTIONS(2136), + [anon_sym___restrict__] = ACTIONS(2136), + [anon_sym__Atomic] = ACTIONS(2136), + [anon_sym__Noreturn] = ACTIONS(2136), + [anon_sym_noreturn] = ACTIONS(2136), + [anon_sym_mutable] = ACTIONS(2136), + [anon_sym_constinit] = ACTIONS(2136), + [anon_sym_consteval] = ACTIONS(2136), + [sym_primitive_type] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_class] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_else] = ACTIONS(2136), + [anon_sym_switch] = ACTIONS(2136), + [anon_sym_case] = ACTIONS(2136), + [anon_sym_default] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_do] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_return] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_goto] = ACTIONS(2136), + [anon_sym___try] = ACTIONS(2136), + [anon_sym___leave] = ACTIONS(2136), + [anon_sym_not] = ACTIONS(2136), + [anon_sym_compl] = ACTIONS(2136), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2136), + [anon_sym___alignof__] = ACTIONS(2136), + [anon_sym___alignof] = ACTIONS(2136), + [anon_sym__alignof] = ACTIONS(2136), + [anon_sym_alignof] = ACTIONS(2136), + [anon_sym__Alignof] = ACTIONS(2136), + [anon_sym_offsetof] = ACTIONS(2136), + [anon_sym__Generic] = ACTIONS(2136), + [anon_sym_asm] = ACTIONS(2136), + [anon_sym___asm__] = ACTIONS(2136), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2136), + [sym_false] = ACTIONS(2136), + [anon_sym_NULL] = ACTIONS(2136), + [anon_sym_nullptr] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2136), + [anon_sym_decltype] = ACTIONS(2136), + [anon_sym_virtual] = ACTIONS(2136), + [anon_sym_alignas] = ACTIONS(2136), + [anon_sym_explicit] = ACTIONS(2136), + [anon_sym_typename] = ACTIONS(2136), + [anon_sym_template] = ACTIONS(2136), + [anon_sym_operator] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2136), + [anon_sym_delete] = ACTIONS(2136), + [anon_sym_throw] = ACTIONS(2136), + [anon_sym_namespace] = ACTIONS(2136), + [anon_sym_using] = ACTIONS(2136), + [anon_sym_static_assert] = ACTIONS(2136), + [anon_sym_concept] = ACTIONS(2136), + [anon_sym_co_return] = ACTIONS(2136), + [anon_sym_co_yield] = ACTIONS(2136), + [anon_sym_catch] = ACTIONS(2136), + [anon_sym_R_DQUOTE] = ACTIONS(2134), + [anon_sym_LR_DQUOTE] = ACTIONS(2134), + [anon_sym_uR_DQUOTE] = ACTIONS(2134), + [anon_sym_UR_DQUOTE] = ACTIONS(2134), + [anon_sym_u8R_DQUOTE] = ACTIONS(2134), + [anon_sym_co_await] = ACTIONS(2136), + [anon_sym_new] = ACTIONS(2136), + [anon_sym_requires] = ACTIONS(2136), + [sym_this] = ACTIONS(2136), + }, + [261] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3210), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8658), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9336), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(9333), + [sym__unary_right_fold] = STATE(9329), + [sym__binary_fold] = STATE(9328), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8658), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [262] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3210), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8658), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9291), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(9333), + [sym__unary_right_fold] = STATE(9329), + [sym__binary_fold] = STATE(9328), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8658), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [263] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(9055), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [264] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8702), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [265] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8815), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [266] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8907), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [267] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3171), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8516), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8659), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8660), + [sym__unary_right_fold] = STATE(8661), + [sym__binary_fold] = STATE(8662), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8516), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [268] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3245), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8887), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8885), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8883), + [sym__unary_right_fold] = STATE(8882), + [sym__binary_fold] = STATE(8881), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8887), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [269] = { [sym_identifier] = ACTIONS(2863), [aux_sym_preproc_include_token1] = ACTIONS(2863), [aux_sym_preproc_def_token1] = ACTIONS(2863), @@ -125287,6 +129043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2863), [anon_sym_co_return] = ACTIONS(2863), [anon_sym_co_yield] = ACTIONS(2863), + [anon_sym_catch] = ACTIONS(2863), [anon_sym_R_DQUOTE] = ACTIONS(2865), [anon_sym_LR_DQUOTE] = ACTIONS(2865), [anon_sym_uR_DQUOTE] = ACTIONS(2865), @@ -125297,7 +129054,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2863), [sym_this] = ACTIONS(2863), }, - [245] = { + [270] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3256), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8913), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [271] = { + [sym_type_qualifier] = STATE(4532), + [sym__type_specifier] = STATE(5405), + [sym_sized_type_specifier] = STATE(2271), + [sym_enum_specifier] = STATE(2271), + [sym_struct_specifier] = STATE(2271), + [sym_union_specifier] = STATE(2271), + [sym__expression] = STATE(3245), + [sym__expression_not_binary] = STATE(3833), + [sym_comma_expression] = STATE(8887), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_type_descriptor] = STATE(8979), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_placeholder_type_specifier] = STATE(2271), + [sym_decltype_auto] = STATE(2273), + [sym_decltype] = STATE(2081), + [sym_class_specifier] = STATE(2271), + [sym__class_name] = STATE(8066), + [sym_dependent_type] = STATE(2271), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym__unary_left_fold] = STATE(8445), + [sym__unary_right_fold] = STATE(8893), + [sym__binary_fold] = STATE(8768), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6207), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(5955), + [sym_assignment_expression_lhs_expression] = STATE(8887), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4532), + [aux_sym_sized_type_specifier_repeat1] = STATE(2282), + [sym_identifier] = ACTIONS(2842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_class] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2116), + [anon_sym_decltype] = ACTIONS(2118), + [anon_sym_typename] = ACTIONS(2120), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [272] = { [sym_identifier] = ACTIONS(2867), [aux_sym_preproc_include_token1] = ACTIONS(2867), [aux_sym_preproc_def_token1] = ACTIONS(2867), @@ -125434,6893 +129467,6756 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2867), [sym_this] = ACTIONS(2867), }, - [246] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [aux_sym_preproc_else_token1] = ACTIONS(2144), - [aux_sym_preproc_elif_token1] = ACTIONS(2144), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym___cdecl] = ACTIONS(2144), - [anon_sym___clrcall] = ACTIONS(2144), - [anon_sym___stdcall] = ACTIONS(2144), - [anon_sym___fastcall] = ACTIONS(2144), - [anon_sym___thiscall] = ACTIONS(2144), - [anon_sym___vectorcall] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym___try] = ACTIONS(2144), - [anon_sym___leave] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2144), - [anon_sym_compl] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2144), - [anon_sym___alignof__] = ACTIONS(2144), - [anon_sym___alignof] = ACTIONS(2144), - [anon_sym__alignof] = ACTIONS(2144), - [anon_sym_alignof] = ACTIONS(2144), - [anon_sym__Alignof] = ACTIONS(2144), - [anon_sym_offsetof] = ACTIONS(2144), - [anon_sym__Generic] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym___asm__] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2142), - [anon_sym_L_SQUOTE] = ACTIONS(2142), - [anon_sym_u_SQUOTE] = ACTIONS(2142), - [anon_sym_U_SQUOTE] = ACTIONS(2142), - [anon_sym_u8_SQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_L_DQUOTE] = ACTIONS(2142), - [anon_sym_u_DQUOTE] = ACTIONS(2142), - [anon_sym_U_DQUOTE] = ACTIONS(2142), - [anon_sym_u8_DQUOTE] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [anon_sym_NULL] = ACTIONS(2144), - [anon_sym_nullptr] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_delete] = ACTIONS(2144), - [anon_sym_throw] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_concept] = ACTIONS(2144), - [anon_sym_co_return] = ACTIONS(2144), - [anon_sym_co_yield] = ACTIONS(2144), - [anon_sym_R_DQUOTE] = ACTIONS(2142), - [anon_sym_LR_DQUOTE] = ACTIONS(2142), - [anon_sym_uR_DQUOTE] = ACTIONS(2142), - [anon_sym_UR_DQUOTE] = ACTIONS(2142), - [anon_sym_u8R_DQUOTE] = ACTIONS(2142), - [anon_sym_co_await] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2144), - [anon_sym_requires] = ACTIONS(2144), - [sym_this] = ACTIONS(2144), - }, - [247] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3614), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(9049), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8971), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9046), - [sym__unary_right_fold] = STATE(9042), - [sym__binary_fold] = STATE(9040), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [273] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [248] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3614), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(9049), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(9048), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9046), - [sym__unary_right_fold] = STATE(9042), - [sym__binary_fold] = STATE(9040), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [274] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [249] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(9148), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8897), - [sym__unary_right_fold] = STATE(8896), - [sym__binary_fold] = STATE(8895), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [275] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [250] = { - [sym_identifier] = ACTIONS(2877), - [aux_sym_preproc_include_token1] = ACTIONS(2877), - [aux_sym_preproc_def_token1] = ACTIONS(2877), - [aux_sym_preproc_if_token1] = ACTIONS(2877), - [aux_sym_preproc_if_token2] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2877), - [aux_sym_preproc_else_token1] = ACTIONS(2877), - [aux_sym_preproc_elif_token1] = ACTIONS(2877), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2877), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2877), - [sym_preproc_directive] = ACTIONS(2877), - [anon_sym_LPAREN2] = ACTIONS(2879), - [anon_sym_BANG] = ACTIONS(2879), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2879), - [anon_sym_AMP_AMP] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym___extension__] = ACTIONS(2877), - [anon_sym_typedef] = ACTIONS(2877), - [anon_sym_extern] = ACTIONS(2877), - [anon_sym___attribute__] = ACTIONS(2877), - [anon_sym_COLON_COLON] = ACTIONS(2879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2879), - [anon_sym___declspec] = ACTIONS(2877), - [anon_sym___based] = ACTIONS(2877), - [anon_sym___cdecl] = ACTIONS(2877), - [anon_sym___clrcall] = ACTIONS(2877), - [anon_sym___stdcall] = ACTIONS(2877), - [anon_sym___fastcall] = ACTIONS(2877), - [anon_sym___thiscall] = ACTIONS(2877), - [anon_sym___vectorcall] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_signed] = ACTIONS(2877), - [anon_sym_unsigned] = ACTIONS(2877), - [anon_sym_long] = ACTIONS(2877), - [anon_sym_short] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_register] = ACTIONS(2877), - [anon_sym_inline] = ACTIONS(2877), - [anon_sym___inline] = ACTIONS(2877), - [anon_sym___inline__] = ACTIONS(2877), - [anon_sym___forceinline] = ACTIONS(2877), - [anon_sym_thread_local] = ACTIONS(2877), - [anon_sym___thread] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_constexpr] = ACTIONS(2877), - [anon_sym_volatile] = ACTIONS(2877), - [anon_sym_restrict] = ACTIONS(2877), - [anon_sym___restrict__] = ACTIONS(2877), - [anon_sym__Atomic] = ACTIONS(2877), - [anon_sym__Noreturn] = ACTIONS(2877), - [anon_sym_noreturn] = ACTIONS(2877), - [anon_sym_mutable] = ACTIONS(2877), - [anon_sym_constinit] = ACTIONS(2877), - [anon_sym_consteval] = ACTIONS(2877), - [sym_primitive_type] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_else] = ACTIONS(2877), - [anon_sym_switch] = ACTIONS(2877), - [anon_sym_case] = ACTIONS(2877), - [anon_sym_default] = ACTIONS(2877), - [anon_sym_while] = ACTIONS(2877), - [anon_sym_do] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_goto] = ACTIONS(2877), - [anon_sym___try] = ACTIONS(2877), - [anon_sym___leave] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2877), - [anon_sym_compl] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2877), - [anon_sym___alignof__] = ACTIONS(2877), - [anon_sym___alignof] = ACTIONS(2877), - [anon_sym__alignof] = ACTIONS(2877), - [anon_sym_alignof] = ACTIONS(2877), - [anon_sym__Alignof] = ACTIONS(2877), - [anon_sym_offsetof] = ACTIONS(2877), - [anon_sym__Generic] = ACTIONS(2877), - [anon_sym_asm] = ACTIONS(2877), - [anon_sym___asm__] = ACTIONS(2877), - [sym_number_literal] = ACTIONS(2879), - [anon_sym_L_SQUOTE] = ACTIONS(2879), - [anon_sym_u_SQUOTE] = ACTIONS(2879), - [anon_sym_U_SQUOTE] = ACTIONS(2879), - [anon_sym_u8_SQUOTE] = ACTIONS(2879), - [anon_sym_SQUOTE] = ACTIONS(2879), - [anon_sym_L_DQUOTE] = ACTIONS(2879), - [anon_sym_u_DQUOTE] = ACTIONS(2879), - [anon_sym_U_DQUOTE] = ACTIONS(2879), - [anon_sym_u8_DQUOTE] = ACTIONS(2879), - [anon_sym_DQUOTE] = ACTIONS(2879), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [anon_sym_NULL] = ACTIONS(2877), - [anon_sym_nullptr] = ACTIONS(2877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2877), - [anon_sym_decltype] = ACTIONS(2877), - [anon_sym_virtual] = ACTIONS(2877), - [anon_sym_alignas] = ACTIONS(2877), - [anon_sym_explicit] = ACTIONS(2877), - [anon_sym_typename] = ACTIONS(2877), - [anon_sym_template] = ACTIONS(2877), - [anon_sym_operator] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2877), - [anon_sym_delete] = ACTIONS(2877), - [anon_sym_throw] = ACTIONS(2877), - [anon_sym_namespace] = ACTIONS(2877), - [anon_sym_using] = ACTIONS(2877), - [anon_sym_static_assert] = ACTIONS(2877), - [anon_sym_concept] = ACTIONS(2877), - [anon_sym_co_return] = ACTIONS(2877), - [anon_sym_co_yield] = ACTIONS(2877), - [anon_sym_R_DQUOTE] = ACTIONS(2879), - [anon_sym_LR_DQUOTE] = ACTIONS(2879), - [anon_sym_uR_DQUOTE] = ACTIONS(2879), - [anon_sym_UR_DQUOTE] = ACTIONS(2879), - [anon_sym_u8R_DQUOTE] = ACTIONS(2879), - [anon_sym_co_await] = ACTIONS(2877), - [anon_sym_new] = ACTIONS(2877), - [anon_sym_requires] = ACTIONS(2877), - [sym_this] = ACTIONS(2877), - }, - [251] = { - [sym_identifier] = ACTIONS(2881), - [aux_sym_preproc_include_token1] = ACTIONS(2881), - [aux_sym_preproc_def_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token2] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2881), - [aux_sym_preproc_else_token1] = ACTIONS(2881), - [aux_sym_preproc_elif_token1] = ACTIONS(2881), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2881), - [sym_preproc_directive] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym___based] = ACTIONS(2881), - [anon_sym___cdecl] = ACTIONS(2881), - [anon_sym___clrcall] = ACTIONS(2881), - [anon_sym___stdcall] = ACTIONS(2881), - [anon_sym___fastcall] = ACTIONS(2881), - [anon_sym___thiscall] = ACTIONS(2881), - [anon_sym___vectorcall] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym___try] = ACTIONS(2881), - [anon_sym___leave] = ACTIONS(2881), - [anon_sym_not] = ACTIONS(2881), - [anon_sym_compl] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_sizeof] = ACTIONS(2881), - [anon_sym___alignof__] = ACTIONS(2881), - [anon_sym___alignof] = ACTIONS(2881), - [anon_sym__alignof] = ACTIONS(2881), - [anon_sym_alignof] = ACTIONS(2881), - [anon_sym__Alignof] = ACTIONS(2881), - [anon_sym_offsetof] = ACTIONS(2881), - [anon_sym__Generic] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - [anon_sym___asm__] = ACTIONS(2881), - [sym_number_literal] = ACTIONS(2883), - [anon_sym_L_SQUOTE] = ACTIONS(2883), - [anon_sym_u_SQUOTE] = ACTIONS(2883), - [anon_sym_U_SQUOTE] = ACTIONS(2883), - [anon_sym_u8_SQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_L_DQUOTE] = ACTIONS(2883), - [anon_sym_u_DQUOTE] = ACTIONS(2883), - [anon_sym_U_DQUOTE] = ACTIONS(2883), - [anon_sym_u8_DQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [anon_sym_NULL] = ACTIONS(2881), - [anon_sym_nullptr] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_explicit] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_operator] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_static_assert] = ACTIONS(2881), - [anon_sym_concept] = ACTIONS(2881), - [anon_sym_co_return] = ACTIONS(2881), - [anon_sym_co_yield] = ACTIONS(2881), - [anon_sym_R_DQUOTE] = ACTIONS(2883), - [anon_sym_LR_DQUOTE] = ACTIONS(2883), - [anon_sym_uR_DQUOTE] = ACTIONS(2883), - [anon_sym_UR_DQUOTE] = ACTIONS(2883), - [anon_sym_u8R_DQUOTE] = ACTIONS(2883), - [anon_sym_co_await] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_requires] = ACTIONS(2881), - [sym_this] = ACTIONS(2881), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [252] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3614), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(9049), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8715), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8714), - [sym__unary_right_fold] = STATE(8713), - [sym__binary_fold] = STATE(8711), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), + [276] = { + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [aux_sym_preproc_else_token1] = ACTIONS(2875), + [aux_sym_preproc_elif_token1] = ACTIONS(2875), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym___cdecl] = ACTIONS(2875), + [anon_sym___clrcall] = ACTIONS(2875), + [anon_sym___stdcall] = ACTIONS(2875), + [anon_sym___fastcall] = ACTIONS(2875), + [anon_sym___thiscall] = ACTIONS(2875), + [anon_sym___vectorcall] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_else] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym___try] = ACTIONS(2875), + [anon_sym___leave] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [anon_sym___alignof__] = ACTIONS(2875), + [anon_sym___alignof] = ACTIONS(2875), + [anon_sym__alignof] = ACTIONS(2875), + [anon_sym_alignof] = ACTIONS(2875), + [anon_sym__Alignof] = ACTIONS(2875), + [anon_sym_offsetof] = ACTIONS(2875), + [anon_sym__Generic] = ACTIONS(2875), + [anon_sym_asm] = ACTIONS(2875), + [anon_sym___asm__] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [anon_sym_NULL] = ACTIONS(2875), + [anon_sym_nullptr] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + [anon_sym_concept] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_R_DQUOTE] = ACTIONS(2877), + [anon_sym_LR_DQUOTE] = ACTIONS(2877), + [anon_sym_uR_DQUOTE] = ACTIONS(2877), + [anon_sym_UR_DQUOTE] = ACTIONS(2877), + [anon_sym_u8R_DQUOTE] = ACTIONS(2877), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), }, - [253] = { - [sym_identifier] = ACTIONS(2885), - [aux_sym_preproc_include_token1] = ACTIONS(2885), - [aux_sym_preproc_def_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token2] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2885), - [aux_sym_preproc_else_token1] = ACTIONS(2885), - [aux_sym_preproc_elif_token1] = ACTIONS(2885), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2885), - [sym_preproc_directive] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym___based] = ACTIONS(2885), - [anon_sym___cdecl] = ACTIONS(2885), - [anon_sym___clrcall] = ACTIONS(2885), - [anon_sym___stdcall] = ACTIONS(2885), - [anon_sym___fastcall] = ACTIONS(2885), - [anon_sym___thiscall] = ACTIONS(2885), - [anon_sym___vectorcall] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym___try] = ACTIONS(2885), - [anon_sym___leave] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2885), - [anon_sym_compl] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_sizeof] = ACTIONS(2885), - [anon_sym___alignof__] = ACTIONS(2885), - [anon_sym___alignof] = ACTIONS(2885), - [anon_sym__alignof] = ACTIONS(2885), - [anon_sym_alignof] = ACTIONS(2885), - [anon_sym__Alignof] = ACTIONS(2885), - [anon_sym_offsetof] = ACTIONS(2885), - [anon_sym__Generic] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym___asm__] = ACTIONS(2885), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_L_SQUOTE] = ACTIONS(2887), - [anon_sym_u_SQUOTE] = ACTIONS(2887), - [anon_sym_U_SQUOTE] = ACTIONS(2887), - [anon_sym_u8_SQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_L_DQUOTE] = ACTIONS(2887), - [anon_sym_u_DQUOTE] = ACTIONS(2887), - [anon_sym_U_DQUOTE] = ACTIONS(2887), - [anon_sym_u8_DQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [anon_sym_NULL] = ACTIONS(2885), - [anon_sym_nullptr] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_explicit] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_operator] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_static_assert] = ACTIONS(2885), - [anon_sym_concept] = ACTIONS(2885), - [anon_sym_co_return] = ACTIONS(2885), - [anon_sym_co_yield] = ACTIONS(2885), - [anon_sym_R_DQUOTE] = ACTIONS(2887), - [anon_sym_LR_DQUOTE] = ACTIONS(2887), - [anon_sym_uR_DQUOTE] = ACTIONS(2887), - [anon_sym_UR_DQUOTE] = ACTIONS(2887), - [anon_sym_u8R_DQUOTE] = ACTIONS(2887), - [anon_sym_co_await] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_requires] = ACTIONS(2885), - [sym_this] = ACTIONS(2885), + [277] = { + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_include_token1] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token2] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [aux_sym_preproc_else_token1] = ACTIONS(2879), + [aux_sym_preproc_elif_token1] = ACTIONS(2879), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym___extension__] = ACTIONS(2879), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym___cdecl] = ACTIONS(2879), + [anon_sym___clrcall] = ACTIONS(2879), + [anon_sym___stdcall] = ACTIONS(2879), + [anon_sym___fastcall] = ACTIONS(2879), + [anon_sym___thiscall] = ACTIONS(2879), + [anon_sym___vectorcall] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym___inline] = ACTIONS(2879), + [anon_sym___inline__] = ACTIONS(2879), + [anon_sym___forceinline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym___thread] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym___restrict__] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym__Noreturn] = ACTIONS(2879), + [anon_sym_noreturn] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_else] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym___try] = ACTIONS(2879), + [anon_sym___leave] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [anon_sym___alignof__] = ACTIONS(2879), + [anon_sym___alignof] = ACTIONS(2879), + [anon_sym__alignof] = ACTIONS(2879), + [anon_sym_alignof] = ACTIONS(2879), + [anon_sym__Alignof] = ACTIONS(2879), + [anon_sym_offsetof] = ACTIONS(2879), + [anon_sym__Generic] = ACTIONS(2879), + [anon_sym_asm] = ACTIONS(2879), + [anon_sym___asm__] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [anon_sym_NULL] = ACTIONS(2879), + [anon_sym_nullptr] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_alignas] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), + [anon_sym_concept] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_R_DQUOTE] = ACTIONS(2881), + [anon_sym_LR_DQUOTE] = ACTIONS(2881), + [anon_sym_uR_DQUOTE] = ACTIONS(2881), + [anon_sym_UR_DQUOTE] = ACTIONS(2881), + [anon_sym_u8R_DQUOTE] = ACTIONS(2881), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), }, - [254] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8848), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8897), - [sym__unary_right_fold] = STATE(8896), - [sym__binary_fold] = STATE(8895), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [278] = { + [sym_identifier] = ACTIONS(2883), + [aux_sym_preproc_include_token1] = ACTIONS(2883), + [aux_sym_preproc_def_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token2] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), + [aux_sym_preproc_else_token1] = ACTIONS(2883), + [aux_sym_preproc_elif_token1] = ACTIONS(2883), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2883), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2883), + [sym_preproc_directive] = ACTIONS(2883), + [anon_sym_LPAREN2] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym___extension__] = ACTIONS(2883), + [anon_sym_typedef] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym___attribute__] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), + [anon_sym___declspec] = ACTIONS(2883), + [anon_sym___based] = ACTIONS(2883), + [anon_sym___cdecl] = ACTIONS(2883), + [anon_sym___clrcall] = ACTIONS(2883), + [anon_sym___stdcall] = ACTIONS(2883), + [anon_sym___fastcall] = ACTIONS(2883), + [anon_sym___thiscall] = ACTIONS(2883), + [anon_sym___vectorcall] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_signed] = ACTIONS(2883), + [anon_sym_unsigned] = ACTIONS(2883), + [anon_sym_long] = ACTIONS(2883), + [anon_sym_short] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_register] = ACTIONS(2883), + [anon_sym_inline] = ACTIONS(2883), + [anon_sym___inline] = ACTIONS(2883), + [anon_sym___inline__] = ACTIONS(2883), + [anon_sym___forceinline] = ACTIONS(2883), + [anon_sym_thread_local] = ACTIONS(2883), + [anon_sym___thread] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_constexpr] = ACTIONS(2883), + [anon_sym_volatile] = ACTIONS(2883), + [anon_sym_restrict] = ACTIONS(2883), + [anon_sym___restrict__] = ACTIONS(2883), + [anon_sym__Atomic] = ACTIONS(2883), + [anon_sym__Noreturn] = ACTIONS(2883), + [anon_sym_noreturn] = ACTIONS(2883), + [anon_sym_mutable] = ACTIONS(2883), + [anon_sym_constinit] = ACTIONS(2883), + [anon_sym_consteval] = ACTIONS(2883), + [sym_primitive_type] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_else] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym___try] = ACTIONS(2883), + [anon_sym___leave] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2883), + [anon_sym_compl] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_sizeof] = ACTIONS(2883), + [anon_sym___alignof__] = ACTIONS(2883), + [anon_sym___alignof] = ACTIONS(2883), + [anon_sym__alignof] = ACTIONS(2883), + [anon_sym_alignof] = ACTIONS(2883), + [anon_sym__Alignof] = ACTIONS(2883), + [anon_sym_offsetof] = ACTIONS(2883), + [anon_sym__Generic] = ACTIONS(2883), + [anon_sym_asm] = ACTIONS(2883), + [anon_sym___asm__] = ACTIONS(2883), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_L_SQUOTE] = ACTIONS(2885), + [anon_sym_u_SQUOTE] = ACTIONS(2885), + [anon_sym_U_SQUOTE] = ACTIONS(2885), + [anon_sym_u8_SQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_L_DQUOTE] = ACTIONS(2885), + [anon_sym_u_DQUOTE] = ACTIONS(2885), + [anon_sym_U_DQUOTE] = ACTIONS(2885), + [anon_sym_u8_DQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [anon_sym_NULL] = ACTIONS(2883), + [anon_sym_nullptr] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2883), + [anon_sym_decltype] = ACTIONS(2883), + [anon_sym_virtual] = ACTIONS(2883), + [anon_sym_alignas] = ACTIONS(2883), + [anon_sym_explicit] = ACTIONS(2883), + [anon_sym_typename] = ACTIONS(2883), + [anon_sym_template] = ACTIONS(2883), + [anon_sym_operator] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_static_assert] = ACTIONS(2883), + [anon_sym_concept] = ACTIONS(2883), + [anon_sym_co_return] = ACTIONS(2883), + [anon_sym_co_yield] = ACTIONS(2883), + [anon_sym_R_DQUOTE] = ACTIONS(2885), + [anon_sym_LR_DQUOTE] = ACTIONS(2885), + [anon_sym_uR_DQUOTE] = ACTIONS(2885), + [anon_sym_UR_DQUOTE] = ACTIONS(2885), + [anon_sym_u8R_DQUOTE] = ACTIONS(2885), + [anon_sym_co_await] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_requires] = ACTIONS(2883), + [sym_this] = ACTIONS(2883), }, - [255] = { - [sym_identifier] = ACTIONS(2889), - [aux_sym_preproc_include_token1] = ACTIONS(2889), - [aux_sym_preproc_def_token1] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2889), - [aux_sym_preproc_if_token2] = ACTIONS(2889), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2889), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2889), - [aux_sym_preproc_else_token1] = ACTIONS(2889), - [aux_sym_preproc_elif_token1] = ACTIONS(2889), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2889), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2889), - [sym_preproc_directive] = ACTIONS(2889), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym___extension__] = ACTIONS(2889), - [anon_sym_typedef] = ACTIONS(2889), - [anon_sym_extern] = ACTIONS(2889), - [anon_sym___attribute__] = ACTIONS(2889), - [anon_sym_COLON_COLON] = ACTIONS(2891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2891), - [anon_sym___declspec] = ACTIONS(2889), - [anon_sym___based] = ACTIONS(2889), - [anon_sym___cdecl] = ACTIONS(2889), - [anon_sym___clrcall] = ACTIONS(2889), - [anon_sym___stdcall] = ACTIONS(2889), - [anon_sym___fastcall] = ACTIONS(2889), - [anon_sym___thiscall] = ACTIONS(2889), - [anon_sym___vectorcall] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_signed] = ACTIONS(2889), - [anon_sym_unsigned] = ACTIONS(2889), - [anon_sym_long] = ACTIONS(2889), - [anon_sym_short] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_register] = ACTIONS(2889), - [anon_sym_inline] = ACTIONS(2889), - [anon_sym___inline] = ACTIONS(2889), - [anon_sym___inline__] = ACTIONS(2889), - [anon_sym___forceinline] = ACTIONS(2889), - [anon_sym_thread_local] = ACTIONS(2889), - [anon_sym___thread] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_constexpr] = ACTIONS(2889), - [anon_sym_volatile] = ACTIONS(2889), - [anon_sym_restrict] = ACTIONS(2889), - [anon_sym___restrict__] = ACTIONS(2889), - [anon_sym__Atomic] = ACTIONS(2889), - [anon_sym__Noreturn] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_mutable] = ACTIONS(2889), - [anon_sym_constinit] = ACTIONS(2889), - [anon_sym_consteval] = ACTIONS(2889), - [sym_primitive_type] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_union] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_do] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_goto] = ACTIONS(2889), - [anon_sym___try] = ACTIONS(2889), - [anon_sym___leave] = ACTIONS(2889), - [anon_sym_not] = ACTIONS(2889), - [anon_sym_compl] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_sizeof] = ACTIONS(2889), - [anon_sym___alignof__] = ACTIONS(2889), - [anon_sym___alignof] = ACTIONS(2889), - [anon_sym__alignof] = ACTIONS(2889), - [anon_sym_alignof] = ACTIONS(2889), - [anon_sym__Alignof] = ACTIONS(2889), - [anon_sym_offsetof] = ACTIONS(2889), - [anon_sym__Generic] = ACTIONS(2889), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [anon_sym_L_SQUOTE] = ACTIONS(2891), - [anon_sym_u_SQUOTE] = ACTIONS(2891), - [anon_sym_U_SQUOTE] = ACTIONS(2891), - [anon_sym_u8_SQUOTE] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2891), - [anon_sym_L_DQUOTE] = ACTIONS(2891), - [anon_sym_u_DQUOTE] = ACTIONS(2891), - [anon_sym_U_DQUOTE] = ACTIONS(2891), - [anon_sym_u8_DQUOTE] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2891), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [anon_sym_NULL] = ACTIONS(2889), - [anon_sym_nullptr] = ACTIONS(2889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2889), - [anon_sym_decltype] = ACTIONS(2889), - [anon_sym_virtual] = ACTIONS(2889), - [anon_sym_alignas] = ACTIONS(2889), - [anon_sym_explicit] = ACTIONS(2889), - [anon_sym_typename] = ACTIONS(2889), - [anon_sym_template] = ACTIONS(2889), - [anon_sym_operator] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_namespace] = ACTIONS(2889), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_static_assert] = ACTIONS(2889), - [anon_sym_concept] = ACTIONS(2889), - [anon_sym_co_return] = ACTIONS(2889), - [anon_sym_co_yield] = ACTIONS(2889), - [anon_sym_R_DQUOTE] = ACTIONS(2891), - [anon_sym_LR_DQUOTE] = ACTIONS(2891), - [anon_sym_uR_DQUOTE] = ACTIONS(2891), - [anon_sym_UR_DQUOTE] = ACTIONS(2891), - [anon_sym_u8R_DQUOTE] = ACTIONS(2891), - [anon_sym_co_await] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_requires] = ACTIONS(2889), - [sym_this] = ACTIONS(2889), + [279] = { + [sym_identifier] = ACTIONS(2887), + [aux_sym_preproc_include_token1] = ACTIONS(2887), + [aux_sym_preproc_def_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token2] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), + [aux_sym_preproc_else_token1] = ACTIONS(2887), + [aux_sym_preproc_elif_token1] = ACTIONS(2887), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2887), + [sym_preproc_directive] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym___extension__] = ACTIONS(2887), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym___based] = ACTIONS(2887), + [anon_sym___cdecl] = ACTIONS(2887), + [anon_sym___clrcall] = ACTIONS(2887), + [anon_sym___stdcall] = ACTIONS(2887), + [anon_sym___fastcall] = ACTIONS(2887), + [anon_sym___thiscall] = ACTIONS(2887), + [anon_sym___vectorcall] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym___inline] = ACTIONS(2887), + [anon_sym___inline__] = ACTIONS(2887), + [anon_sym___forceinline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym___thread] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym___restrict__] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym__Noreturn] = ACTIONS(2887), + [anon_sym_noreturn] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_else] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym___try] = ACTIONS(2887), + [anon_sym___leave] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [anon_sym___alignof__] = ACTIONS(2887), + [anon_sym___alignof] = ACTIONS(2887), + [anon_sym__alignof] = ACTIONS(2887), + [anon_sym_alignof] = ACTIONS(2887), + [anon_sym__Alignof] = ACTIONS(2887), + [anon_sym_offsetof] = ACTIONS(2887), + [anon_sym__Generic] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym___asm__] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [anon_sym_NULL] = ACTIONS(2887), + [anon_sym_nullptr] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_alignas] = ACTIONS(2887), + [anon_sym_explicit] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_operator] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_static_assert] = ACTIONS(2887), + [anon_sym_concept] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_R_DQUOTE] = ACTIONS(2889), + [anon_sym_LR_DQUOTE] = ACTIONS(2889), + [anon_sym_uR_DQUOTE] = ACTIONS(2889), + [anon_sym_UR_DQUOTE] = ACTIONS(2889), + [anon_sym_u8R_DQUOTE] = ACTIONS(2889), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), }, - [256] = { - [sym_identifier] = ACTIONS(2893), - [aux_sym_preproc_include_token1] = ACTIONS(2893), - [aux_sym_preproc_def_token1] = ACTIONS(2893), - [aux_sym_preproc_if_token1] = ACTIONS(2893), - [aux_sym_preproc_if_token2] = ACTIONS(2893), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2893), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2893), - [aux_sym_preproc_else_token1] = ACTIONS(2893), - [aux_sym_preproc_elif_token1] = ACTIONS(2893), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2893), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2893), - [anon_sym_LPAREN2] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2893), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym___extension__] = ACTIONS(2893), - [anon_sym_typedef] = ACTIONS(2893), - [anon_sym_extern] = ACTIONS(2893), - [anon_sym___attribute__] = ACTIONS(2893), - [anon_sym_COLON_COLON] = ACTIONS(2895), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2895), - [anon_sym___declspec] = ACTIONS(2893), - [anon_sym___based] = ACTIONS(2893), - [anon_sym___cdecl] = ACTIONS(2893), - [anon_sym___clrcall] = ACTIONS(2893), - [anon_sym___stdcall] = ACTIONS(2893), - [anon_sym___fastcall] = ACTIONS(2893), - [anon_sym___thiscall] = ACTIONS(2893), - [anon_sym___vectorcall] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_signed] = ACTIONS(2893), - [anon_sym_unsigned] = ACTIONS(2893), - [anon_sym_long] = ACTIONS(2893), - [anon_sym_short] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_register] = ACTIONS(2893), - [anon_sym_inline] = ACTIONS(2893), - [anon_sym___inline] = ACTIONS(2893), - [anon_sym___inline__] = ACTIONS(2893), - [anon_sym___forceinline] = ACTIONS(2893), - [anon_sym_thread_local] = ACTIONS(2893), - [anon_sym___thread] = ACTIONS(2893), - [anon_sym_const] = ACTIONS(2893), - [anon_sym_constexpr] = ACTIONS(2893), - [anon_sym_volatile] = ACTIONS(2893), - [anon_sym_restrict] = ACTIONS(2893), - [anon_sym___restrict__] = ACTIONS(2893), - [anon_sym__Atomic] = ACTIONS(2893), - [anon_sym__Noreturn] = ACTIONS(2893), - [anon_sym_noreturn] = ACTIONS(2893), - [anon_sym_mutable] = ACTIONS(2893), - [anon_sym_constinit] = ACTIONS(2893), - [anon_sym_consteval] = ACTIONS(2893), - [sym_primitive_type] = ACTIONS(2893), - [anon_sym_enum] = ACTIONS(2893), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2893), - [anon_sym_union] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_else] = ACTIONS(2893), - [anon_sym_switch] = ACTIONS(2893), - [anon_sym_case] = ACTIONS(2893), - [anon_sym_default] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_do] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2893), - [anon_sym_continue] = ACTIONS(2893), - [anon_sym_goto] = ACTIONS(2893), - [anon_sym___try] = ACTIONS(2893), - [anon_sym___leave] = ACTIONS(2893), - [anon_sym_not] = ACTIONS(2893), - [anon_sym_compl] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_sizeof] = ACTIONS(2893), - [anon_sym___alignof__] = ACTIONS(2893), - [anon_sym___alignof] = ACTIONS(2893), - [anon_sym__alignof] = ACTIONS(2893), - [anon_sym_alignof] = ACTIONS(2893), - [anon_sym__Alignof] = ACTIONS(2893), - [anon_sym_offsetof] = ACTIONS(2893), - [anon_sym__Generic] = ACTIONS(2893), - [anon_sym_asm] = ACTIONS(2893), - [anon_sym___asm__] = ACTIONS(2893), - [sym_number_literal] = ACTIONS(2895), - [anon_sym_L_SQUOTE] = ACTIONS(2895), - [anon_sym_u_SQUOTE] = ACTIONS(2895), - [anon_sym_U_SQUOTE] = ACTIONS(2895), - [anon_sym_u8_SQUOTE] = ACTIONS(2895), - [anon_sym_SQUOTE] = ACTIONS(2895), - [anon_sym_L_DQUOTE] = ACTIONS(2895), - [anon_sym_u_DQUOTE] = ACTIONS(2895), - [anon_sym_U_DQUOTE] = ACTIONS(2895), - [anon_sym_u8_DQUOTE] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [sym_true] = ACTIONS(2893), - [sym_false] = ACTIONS(2893), - [anon_sym_NULL] = ACTIONS(2893), - [anon_sym_nullptr] = ACTIONS(2893), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2893), - [anon_sym_decltype] = ACTIONS(2893), - [anon_sym_virtual] = ACTIONS(2893), - [anon_sym_alignas] = ACTIONS(2893), - [anon_sym_explicit] = ACTIONS(2893), - [anon_sym_typename] = ACTIONS(2893), - [anon_sym_template] = ACTIONS(2893), - [anon_sym_operator] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [anon_sym_delete] = ACTIONS(2893), - [anon_sym_throw] = ACTIONS(2893), - [anon_sym_namespace] = ACTIONS(2893), - [anon_sym_using] = ACTIONS(2893), - [anon_sym_static_assert] = ACTIONS(2893), - [anon_sym_concept] = ACTIONS(2893), - [anon_sym_co_return] = ACTIONS(2893), - [anon_sym_co_yield] = ACTIONS(2893), - [anon_sym_R_DQUOTE] = ACTIONS(2895), - [anon_sym_LR_DQUOTE] = ACTIONS(2895), - [anon_sym_uR_DQUOTE] = ACTIONS(2895), - [anon_sym_UR_DQUOTE] = ACTIONS(2895), - [anon_sym_u8R_DQUOTE] = ACTIONS(2895), - [anon_sym_co_await] = ACTIONS(2893), - [anon_sym_new] = ACTIONS(2893), - [anon_sym_requires] = ACTIONS(2893), - [sym_this] = ACTIONS(2893), + [280] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [257] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8842), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [281] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [258] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8891), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [282] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [259] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [283] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [260] = { - [sym_identifier] = ACTIONS(2897), - [aux_sym_preproc_include_token1] = ACTIONS(2897), - [aux_sym_preproc_def_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token2] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2897), - [aux_sym_preproc_else_token1] = ACTIONS(2897), - [aux_sym_preproc_elif_token1] = ACTIONS(2897), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2897), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2897), - [sym_preproc_directive] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym___extension__] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym___attribute__] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2899), - [anon_sym___declspec] = ACTIONS(2897), - [anon_sym___based] = ACTIONS(2897), - [anon_sym___cdecl] = ACTIONS(2897), - [anon_sym___clrcall] = ACTIONS(2897), - [anon_sym___stdcall] = ACTIONS(2897), - [anon_sym___fastcall] = ACTIONS(2897), - [anon_sym___thiscall] = ACTIONS(2897), - [anon_sym___vectorcall] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_signed] = ACTIONS(2897), - [anon_sym_unsigned] = ACTIONS(2897), - [anon_sym_long] = ACTIONS(2897), - [anon_sym_short] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_register] = ACTIONS(2897), - [anon_sym_inline] = ACTIONS(2897), - [anon_sym___inline] = ACTIONS(2897), - [anon_sym___inline__] = ACTIONS(2897), - [anon_sym___forceinline] = ACTIONS(2897), - [anon_sym_thread_local] = ACTIONS(2897), - [anon_sym___thread] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_constexpr] = ACTIONS(2897), - [anon_sym_volatile] = ACTIONS(2897), - [anon_sym_restrict] = ACTIONS(2897), - [anon_sym___restrict__] = ACTIONS(2897), - [anon_sym__Atomic] = ACTIONS(2897), - [anon_sym__Noreturn] = ACTIONS(2897), - [anon_sym_noreturn] = ACTIONS(2897), - [anon_sym_mutable] = ACTIONS(2897), - [anon_sym_constinit] = ACTIONS(2897), - [anon_sym_consteval] = ACTIONS(2897), - [sym_primitive_type] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_goto] = ACTIONS(2897), - [anon_sym___try] = ACTIONS(2897), - [anon_sym___leave] = ACTIONS(2897), - [anon_sym_not] = ACTIONS(2897), - [anon_sym_compl] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_sizeof] = ACTIONS(2897), - [anon_sym___alignof__] = ACTIONS(2897), - [anon_sym___alignof] = ACTIONS(2897), - [anon_sym__alignof] = ACTIONS(2897), - [anon_sym_alignof] = ACTIONS(2897), - [anon_sym__Alignof] = ACTIONS(2897), - [anon_sym_offsetof] = ACTIONS(2897), - [anon_sym__Generic] = ACTIONS(2897), - [anon_sym_asm] = ACTIONS(2897), - [anon_sym___asm__] = ACTIONS(2897), - [sym_number_literal] = ACTIONS(2899), - [anon_sym_L_SQUOTE] = ACTIONS(2899), - [anon_sym_u_SQUOTE] = ACTIONS(2899), - [anon_sym_U_SQUOTE] = ACTIONS(2899), - [anon_sym_u8_SQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_L_DQUOTE] = ACTIONS(2899), - [anon_sym_u_DQUOTE] = ACTIONS(2899), - [anon_sym_U_DQUOTE] = ACTIONS(2899), - [anon_sym_u8_DQUOTE] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2897), - [anon_sym_nullptr] = ACTIONS(2897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2897), - [anon_sym_decltype] = ACTIONS(2897), - [anon_sym_virtual] = ACTIONS(2897), - [anon_sym_alignas] = ACTIONS(2897), - [anon_sym_explicit] = ACTIONS(2897), - [anon_sym_typename] = ACTIONS(2897), - [anon_sym_template] = ACTIONS(2897), - [anon_sym_operator] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_namespace] = ACTIONS(2897), - [anon_sym_using] = ACTIONS(2897), - [anon_sym_static_assert] = ACTIONS(2897), - [anon_sym_concept] = ACTIONS(2897), - [anon_sym_co_return] = ACTIONS(2897), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2899), - [anon_sym_LR_DQUOTE] = ACTIONS(2899), - [anon_sym_uR_DQUOTE] = ACTIONS(2899), - [anon_sym_UR_DQUOTE] = ACTIONS(2899), - [anon_sym_u8R_DQUOTE] = ACTIONS(2899), - [anon_sym_co_await] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_requires] = ACTIONS(2897), - [sym_this] = ACTIONS(2897), + [284] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [261] = { - [sym_identifier] = ACTIONS(2901), - [aux_sym_preproc_include_token1] = ACTIONS(2901), - [aux_sym_preproc_def_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token2] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), - [aux_sym_preproc_else_token1] = ACTIONS(2901), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2901), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2901), - [sym_preproc_directive] = ACTIONS(2901), - [anon_sym_LPAREN2] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym___extension__] = ACTIONS(2901), - [anon_sym_typedef] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym___attribute__] = ACTIONS(2901), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), - [anon_sym___declspec] = ACTIONS(2901), - [anon_sym___based] = ACTIONS(2901), - [anon_sym___cdecl] = ACTIONS(2901), - [anon_sym___clrcall] = ACTIONS(2901), - [anon_sym___stdcall] = ACTIONS(2901), - [anon_sym___fastcall] = ACTIONS(2901), - [anon_sym___thiscall] = ACTIONS(2901), - [anon_sym___vectorcall] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2901), - [anon_sym_unsigned] = ACTIONS(2901), - [anon_sym_long] = ACTIONS(2901), - [anon_sym_short] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_register] = ACTIONS(2901), - [anon_sym_inline] = ACTIONS(2901), - [anon_sym___inline] = ACTIONS(2901), - [anon_sym___inline__] = ACTIONS(2901), - [anon_sym___forceinline] = ACTIONS(2901), - [anon_sym_thread_local] = ACTIONS(2901), - [anon_sym___thread] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_constexpr] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_restrict] = ACTIONS(2901), - [anon_sym___restrict__] = ACTIONS(2901), - [anon_sym__Atomic] = ACTIONS(2901), - [anon_sym__Noreturn] = ACTIONS(2901), - [anon_sym_noreturn] = ACTIONS(2901), - [anon_sym_mutable] = ACTIONS(2901), - [anon_sym_constinit] = ACTIONS(2901), - [anon_sym_consteval] = ACTIONS(2901), - [sym_primitive_type] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym___try] = ACTIONS(2901), - [anon_sym___leave] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2901), - [anon_sym_compl] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym___alignof__] = ACTIONS(2901), - [anon_sym___alignof] = ACTIONS(2901), - [anon_sym__alignof] = ACTIONS(2901), - [anon_sym_alignof] = ACTIONS(2901), - [anon_sym__Alignof] = ACTIONS(2901), - [anon_sym_offsetof] = ACTIONS(2901), - [anon_sym__Generic] = ACTIONS(2901), - [anon_sym_asm] = ACTIONS(2901), - [anon_sym___asm__] = ACTIONS(2901), - [sym_number_literal] = ACTIONS(2903), - [anon_sym_L_SQUOTE] = ACTIONS(2903), - [anon_sym_u_SQUOTE] = ACTIONS(2903), - [anon_sym_U_SQUOTE] = ACTIONS(2903), - [anon_sym_u8_SQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_L_DQUOTE] = ACTIONS(2903), - [anon_sym_u_DQUOTE] = ACTIONS(2903), - [anon_sym_U_DQUOTE] = ACTIONS(2903), - [anon_sym_u8_DQUOTE] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [anon_sym_NULL] = ACTIONS(2901), - [anon_sym_nullptr] = ACTIONS(2901), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_alignas] = ACTIONS(2901), - [anon_sym_explicit] = ACTIONS(2901), - [anon_sym_typename] = ACTIONS(2901), - [anon_sym_template] = ACTIONS(2901), - [anon_sym_operator] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_static_assert] = ACTIONS(2901), - [anon_sym_concept] = ACTIONS(2901), - [anon_sym_co_return] = ACTIONS(2901), - [anon_sym_co_yield] = ACTIONS(2901), - [anon_sym_R_DQUOTE] = ACTIONS(2903), - [anon_sym_LR_DQUOTE] = ACTIONS(2903), - [anon_sym_uR_DQUOTE] = ACTIONS(2903), - [anon_sym_UR_DQUOTE] = ACTIONS(2903), - [anon_sym_u8R_DQUOTE] = ACTIONS(2903), - [anon_sym_co_await] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_requires] = ACTIONS(2901), - [sym_this] = ACTIONS(2901), - }, - [262] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [263] = { - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token2] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [aux_sym_preproc_else_token1] = ACTIONS(2905), - [aux_sym_preproc_elif_token1] = ACTIONS(2905), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym___try] = ACTIONS(2905), - [anon_sym___leave] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [sym_number_literal] = ACTIONS(2907), - [anon_sym_L_SQUOTE] = ACTIONS(2907), - [anon_sym_u_SQUOTE] = ACTIONS(2907), - [anon_sym_U_SQUOTE] = ACTIONS(2907), - [anon_sym_u8_SQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_L_DQUOTE] = ACTIONS(2907), - [anon_sym_u_DQUOTE] = ACTIONS(2907), - [anon_sym_U_DQUOTE] = ACTIONS(2907), - [anon_sym_u8_DQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [anon_sym_R_DQUOTE] = ACTIONS(2907), - [anon_sym_LR_DQUOTE] = ACTIONS(2907), - [anon_sym_uR_DQUOTE] = ACTIONS(2907), - [anon_sym_UR_DQUOTE] = ACTIONS(2907), - [anon_sym_u8R_DQUOTE] = ACTIONS(2907), - [anon_sym_co_await] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [sym_this] = ACTIONS(2905), + [285] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [264] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [286] = { + [sym_identifier] = ACTIONS(2891), + [aux_sym_preproc_include_token1] = ACTIONS(2891), + [aux_sym_preproc_def_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token2] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), + [aux_sym_preproc_else_token1] = ACTIONS(2891), + [aux_sym_preproc_elif_token1] = ACTIONS(2891), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2891), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2891), + [sym_preproc_directive] = ACTIONS(2891), + [anon_sym_LPAREN2] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym___extension__] = ACTIONS(2891), + [anon_sym_typedef] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym___attribute__] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), + [anon_sym___declspec] = ACTIONS(2891), + [anon_sym___based] = ACTIONS(2891), + [anon_sym___cdecl] = ACTIONS(2891), + [anon_sym___clrcall] = ACTIONS(2891), + [anon_sym___stdcall] = ACTIONS(2891), + [anon_sym___fastcall] = ACTIONS(2891), + [anon_sym___thiscall] = ACTIONS(2891), + [anon_sym___vectorcall] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_signed] = ACTIONS(2891), + [anon_sym_unsigned] = ACTIONS(2891), + [anon_sym_long] = ACTIONS(2891), + [anon_sym_short] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_register] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym___inline] = ACTIONS(2891), + [anon_sym___inline__] = ACTIONS(2891), + [anon_sym___forceinline] = ACTIONS(2891), + [anon_sym_thread_local] = ACTIONS(2891), + [anon_sym___thread] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_constexpr] = ACTIONS(2891), + [anon_sym_volatile] = ACTIONS(2891), + [anon_sym_restrict] = ACTIONS(2891), + [anon_sym___restrict__] = ACTIONS(2891), + [anon_sym__Atomic] = ACTIONS(2891), + [anon_sym__Noreturn] = ACTIONS(2891), + [anon_sym_noreturn] = ACTIONS(2891), + [anon_sym_mutable] = ACTIONS(2891), + [anon_sym_constinit] = ACTIONS(2891), + [anon_sym_consteval] = ACTIONS(2891), + [sym_primitive_type] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_else] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym___try] = ACTIONS(2891), + [anon_sym___leave] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_compl] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2891), + [anon_sym___alignof__] = ACTIONS(2891), + [anon_sym___alignof] = ACTIONS(2891), + [anon_sym__alignof] = ACTIONS(2891), + [anon_sym_alignof] = ACTIONS(2891), + [anon_sym__Alignof] = ACTIONS(2891), + [anon_sym_offsetof] = ACTIONS(2891), + [anon_sym__Generic] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym___asm__] = ACTIONS(2891), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_L_SQUOTE] = ACTIONS(2893), + [anon_sym_u_SQUOTE] = ACTIONS(2893), + [anon_sym_U_SQUOTE] = ACTIONS(2893), + [anon_sym_u8_SQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_L_DQUOTE] = ACTIONS(2893), + [anon_sym_u_DQUOTE] = ACTIONS(2893), + [anon_sym_U_DQUOTE] = ACTIONS(2893), + [anon_sym_u8_DQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [anon_sym_NULL] = ACTIONS(2891), + [anon_sym_nullptr] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2891), + [anon_sym_virtual] = ACTIONS(2891), + [anon_sym_alignas] = ACTIONS(2891), + [anon_sym_explicit] = ACTIONS(2891), + [anon_sym_typename] = ACTIONS(2891), + [anon_sym_template] = ACTIONS(2891), + [anon_sym_operator] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_static_assert] = ACTIONS(2891), + [anon_sym_concept] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2891), + [anon_sym_co_yield] = ACTIONS(2891), + [anon_sym_R_DQUOTE] = ACTIONS(2893), + [anon_sym_LR_DQUOTE] = ACTIONS(2893), + [anon_sym_uR_DQUOTE] = ACTIONS(2893), + [anon_sym_UR_DQUOTE] = ACTIONS(2893), + [anon_sym_u8R_DQUOTE] = ACTIONS(2893), + [anon_sym_co_await] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_requires] = ACTIONS(2891), + [sym_this] = ACTIONS(2891), }, - [265] = { - [sym_identifier] = ACTIONS(2909), - [aux_sym_preproc_include_token1] = ACTIONS(2909), - [aux_sym_preproc_def_token1] = ACTIONS(2909), - [aux_sym_preproc_if_token1] = ACTIONS(2909), - [aux_sym_preproc_if_token2] = ACTIONS(2909), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2909), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2909), - [aux_sym_preproc_else_token1] = ACTIONS(2909), - [aux_sym_preproc_elif_token1] = ACTIONS(2909), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2909), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2909), - [sym_preproc_directive] = ACTIONS(2909), - [anon_sym_LPAREN2] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym___extension__] = ACTIONS(2909), - [anon_sym_typedef] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym___attribute__] = ACTIONS(2909), - [anon_sym_COLON_COLON] = ACTIONS(2911), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2911), - [anon_sym___declspec] = ACTIONS(2909), - [anon_sym___based] = ACTIONS(2909), - [anon_sym___cdecl] = ACTIONS(2909), - [anon_sym___clrcall] = ACTIONS(2909), - [anon_sym___stdcall] = ACTIONS(2909), - [anon_sym___fastcall] = ACTIONS(2909), - [anon_sym___thiscall] = ACTIONS(2909), - [anon_sym___vectorcall] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_signed] = ACTIONS(2909), - [anon_sym_unsigned] = ACTIONS(2909), - [anon_sym_long] = ACTIONS(2909), - [anon_sym_short] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_register] = ACTIONS(2909), - [anon_sym_inline] = ACTIONS(2909), - [anon_sym___inline] = ACTIONS(2909), - [anon_sym___inline__] = ACTIONS(2909), - [anon_sym___forceinline] = ACTIONS(2909), - [anon_sym_thread_local] = ACTIONS(2909), - [anon_sym___thread] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_constexpr] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_restrict] = ACTIONS(2909), - [anon_sym___restrict__] = ACTIONS(2909), - [anon_sym__Atomic] = ACTIONS(2909), - [anon_sym__Noreturn] = ACTIONS(2909), - [anon_sym_noreturn] = ACTIONS(2909), - [anon_sym_mutable] = ACTIONS(2909), - [anon_sym_constinit] = ACTIONS(2909), - [anon_sym_consteval] = ACTIONS(2909), - [sym_primitive_type] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_class] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_case] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym___try] = ACTIONS(2909), - [anon_sym___leave] = ACTIONS(2909), - [anon_sym_not] = ACTIONS(2909), - [anon_sym_compl] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_sizeof] = ACTIONS(2909), - [anon_sym___alignof__] = ACTIONS(2909), - [anon_sym___alignof] = ACTIONS(2909), - [anon_sym__alignof] = ACTIONS(2909), - [anon_sym_alignof] = ACTIONS(2909), - [anon_sym__Alignof] = ACTIONS(2909), - [anon_sym_offsetof] = ACTIONS(2909), - [anon_sym__Generic] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym___asm__] = ACTIONS(2909), - [sym_number_literal] = ACTIONS(2911), - [anon_sym_L_SQUOTE] = ACTIONS(2911), - [anon_sym_u_SQUOTE] = ACTIONS(2911), - [anon_sym_U_SQUOTE] = ACTIONS(2911), - [anon_sym_u8_SQUOTE] = ACTIONS(2911), - [anon_sym_SQUOTE] = ACTIONS(2911), - [anon_sym_L_DQUOTE] = ACTIONS(2911), - [anon_sym_u_DQUOTE] = ACTIONS(2911), - [anon_sym_U_DQUOTE] = ACTIONS(2911), - [anon_sym_u8_DQUOTE] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [anon_sym_NULL] = ACTIONS(2909), - [anon_sym_nullptr] = ACTIONS(2909), + [287] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2909), - [anon_sym_decltype] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_alignas] = ACTIONS(2909), - [anon_sym_explicit] = ACTIONS(2909), - [anon_sym_typename] = ACTIONS(2909), - [anon_sym_template] = ACTIONS(2909), - [anon_sym_operator] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_delete] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_namespace] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_static_assert] = ACTIONS(2909), - [anon_sym_concept] = ACTIONS(2909), - [anon_sym_co_return] = ACTIONS(2909), - [anon_sym_co_yield] = ACTIONS(2909), - [anon_sym_R_DQUOTE] = ACTIONS(2911), - [anon_sym_LR_DQUOTE] = ACTIONS(2911), - [anon_sym_uR_DQUOTE] = ACTIONS(2911), - [anon_sym_UR_DQUOTE] = ACTIONS(2911), - [anon_sym_u8R_DQUOTE] = ACTIONS(2911), - [anon_sym_co_await] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2909), - [sym_this] = ACTIONS(2909), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [266] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8783), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [288] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [267] = { - [sym_catch_clause] = STATE(237), - [aux_sym_constructor_try_statement_repeat1] = STATE(237), - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_include_token1] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token2] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [aux_sym_preproc_else_token1] = ACTIONS(2826), - [aux_sym_preproc_elif_token1] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym___extension__] = ACTIONS(2826), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym___cdecl] = ACTIONS(2826), - [anon_sym___clrcall] = ACTIONS(2826), - [anon_sym___stdcall] = ACTIONS(2826), - [anon_sym___fastcall] = ACTIONS(2826), - [anon_sym___thiscall] = ACTIONS(2826), - [anon_sym___vectorcall] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym___inline] = ACTIONS(2826), - [anon_sym___inline__] = ACTIONS(2826), - [anon_sym___forceinline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym___thread] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym___restrict__] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym__Noreturn] = ACTIONS(2826), - [anon_sym_noreturn] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_goto] = ACTIONS(2826), - [anon_sym___try] = ACTIONS(2826), - [anon_sym___leave] = ACTIONS(2826), - [anon_sym_not] = ACTIONS(2826), - [anon_sym_compl] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_sizeof] = ACTIONS(2826), - [anon_sym___alignof__] = ACTIONS(2826), - [anon_sym___alignof] = ACTIONS(2826), - [anon_sym__alignof] = ACTIONS(2826), - [anon_sym_alignof] = ACTIONS(2826), - [anon_sym__Alignof] = ACTIONS(2826), - [anon_sym_offsetof] = ACTIONS(2826), - [anon_sym__Generic] = ACTIONS(2826), - [anon_sym_asm] = ACTIONS(2826), - [anon_sym___asm__] = ACTIONS(2826), - [sym_number_literal] = ACTIONS(2828), - [anon_sym_L_SQUOTE] = ACTIONS(2828), - [anon_sym_u_SQUOTE] = ACTIONS(2828), - [anon_sym_U_SQUOTE] = ACTIONS(2828), - [anon_sym_u8_SQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_L_DQUOTE] = ACTIONS(2828), - [anon_sym_u_DQUOTE] = ACTIONS(2828), - [anon_sym_U_DQUOTE] = ACTIONS(2828), - [anon_sym_u8_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [anon_sym_NULL] = ACTIONS(2826), - [anon_sym_nullptr] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_alignas] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_concept] = ACTIONS(2826), - [anon_sym_co_return] = ACTIONS(2826), - [anon_sym_co_yield] = ACTIONS(2826), - [anon_sym_catch] = ACTIONS(2857), - [anon_sym_R_DQUOTE] = ACTIONS(2828), - [anon_sym_LR_DQUOTE] = ACTIONS(2828), - [anon_sym_uR_DQUOTE] = ACTIONS(2828), - [anon_sym_UR_DQUOTE] = ACTIONS(2828), - [anon_sym_u8R_DQUOTE] = ACTIONS(2828), - [anon_sym_co_await] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_requires] = ACTIONS(2826), - [sym_this] = ACTIONS(2826), + [289] = { + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_include_token1] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token2] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [aux_sym_preproc_else_token1] = ACTIONS(2895), + [aux_sym_preproc_elif_token1] = ACTIONS(2895), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym___cdecl] = ACTIONS(2895), + [anon_sym___clrcall] = ACTIONS(2895), + [anon_sym___stdcall] = ACTIONS(2895), + [anon_sym___fastcall] = ACTIONS(2895), + [anon_sym___thiscall] = ACTIONS(2895), + [anon_sym___vectorcall] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_else] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym___try] = ACTIONS(2895), + [anon_sym___leave] = ACTIONS(2895), + [anon_sym_not] = ACTIONS(2895), + [anon_sym_compl] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_sizeof] = ACTIONS(2895), + [anon_sym___alignof__] = ACTIONS(2895), + [anon_sym___alignof] = ACTIONS(2895), + [anon_sym__alignof] = ACTIONS(2895), + [anon_sym_alignof] = ACTIONS(2895), + [anon_sym__Alignof] = ACTIONS(2895), + [anon_sym_offsetof] = ACTIONS(2895), + [anon_sym__Generic] = ACTIONS(2895), + [anon_sym_asm] = ACTIONS(2895), + [anon_sym___asm__] = ACTIONS(2895), + [sym_number_literal] = ACTIONS(2897), + [anon_sym_L_SQUOTE] = ACTIONS(2897), + [anon_sym_u_SQUOTE] = ACTIONS(2897), + [anon_sym_U_SQUOTE] = ACTIONS(2897), + [anon_sym_u8_SQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_L_DQUOTE] = ACTIONS(2897), + [anon_sym_u_DQUOTE] = ACTIONS(2897), + [anon_sym_U_DQUOTE] = ACTIONS(2897), + [anon_sym_u8_DQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [anon_sym_NULL] = ACTIONS(2895), + [anon_sym_nullptr] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + [anon_sym_concept] = ACTIONS(2895), + [anon_sym_co_return] = ACTIONS(2895), + [anon_sym_co_yield] = ACTIONS(2895), + [anon_sym_R_DQUOTE] = ACTIONS(2897), + [anon_sym_LR_DQUOTE] = ACTIONS(2897), + [anon_sym_uR_DQUOTE] = ACTIONS(2897), + [anon_sym_UR_DQUOTE] = ACTIONS(2897), + [anon_sym_u8R_DQUOTE] = ACTIONS(2897), + [anon_sym_co_await] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_requires] = ACTIONS(2895), + [sym_this] = ACTIONS(2895), }, - [268] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [290] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [aux_sym_preproc_else_token1] = ACTIONS(2186), + [aux_sym_preproc_elif_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), }, - [269] = { - [sym_identifier] = ACTIONS(2913), - [aux_sym_preproc_include_token1] = ACTIONS(2913), - [aux_sym_preproc_def_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token2] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), - [aux_sym_preproc_else_token1] = ACTIONS(2913), - [aux_sym_preproc_elif_token1] = ACTIONS(2913), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2913), - [sym_preproc_directive] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym___based] = ACTIONS(2913), - [anon_sym___cdecl] = ACTIONS(2913), - [anon_sym___clrcall] = ACTIONS(2913), - [anon_sym___stdcall] = ACTIONS(2913), - [anon_sym___fastcall] = ACTIONS(2913), - [anon_sym___thiscall] = ACTIONS(2913), - [anon_sym___vectorcall] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_case] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym___try] = ACTIONS(2913), - [anon_sym___leave] = ACTIONS(2913), - [anon_sym_not] = ACTIONS(2913), - [anon_sym_compl] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2913), - [anon_sym___alignof__] = ACTIONS(2913), - [anon_sym___alignof] = ACTIONS(2913), - [anon_sym__alignof] = ACTIONS(2913), - [anon_sym_alignof] = ACTIONS(2913), - [anon_sym__Alignof] = ACTIONS(2913), - [anon_sym_offsetof] = ACTIONS(2913), - [anon_sym__Generic] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym___asm__] = ACTIONS(2913), - [sym_number_literal] = ACTIONS(2915), - [anon_sym_L_SQUOTE] = ACTIONS(2915), - [anon_sym_u_SQUOTE] = ACTIONS(2915), - [anon_sym_U_SQUOTE] = ACTIONS(2915), - [anon_sym_u8_SQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_L_DQUOTE] = ACTIONS(2915), - [anon_sym_u_DQUOTE] = ACTIONS(2915), - [anon_sym_U_DQUOTE] = ACTIONS(2915), - [anon_sym_u8_DQUOTE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [anon_sym_NULL] = ACTIONS(2913), - [anon_sym_nullptr] = ACTIONS(2913), + [291] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_explicit] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_operator] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_namespace] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_static_assert] = ACTIONS(2913), - [anon_sym_concept] = ACTIONS(2913), - [anon_sym_co_return] = ACTIONS(2913), - [anon_sym_co_yield] = ACTIONS(2913), - [anon_sym_R_DQUOTE] = ACTIONS(2915), - [anon_sym_LR_DQUOTE] = ACTIONS(2915), - [anon_sym_uR_DQUOTE] = ACTIONS(2915), - [anon_sym_UR_DQUOTE] = ACTIONS(2915), - [anon_sym_u8R_DQUOTE] = ACTIONS(2915), - [anon_sym_co_await] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_requires] = ACTIONS(2913), - [sym_this] = ACTIONS(2913), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [270] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [292] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [271] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [aux_sym_preproc_else_token1] = ACTIONS(2917), - [aux_sym_preproc_elif_token1] = ACTIONS(2917), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym___try] = ACTIONS(2917), - [anon_sym___leave] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), - }, - [272] = { - [sym_identifier] = ACTIONS(2921), - [aux_sym_preproc_include_token1] = ACTIONS(2921), - [aux_sym_preproc_def_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token2] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), - [aux_sym_preproc_else_token1] = ACTIONS(2921), - [aux_sym_preproc_elif_token1] = ACTIONS(2921), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2921), - [sym_preproc_directive] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym___based] = ACTIONS(2921), - [anon_sym___cdecl] = ACTIONS(2921), - [anon_sym___clrcall] = ACTIONS(2921), - [anon_sym___stdcall] = ACTIONS(2921), - [anon_sym___fastcall] = ACTIONS(2921), - [anon_sym___thiscall] = ACTIONS(2921), - [anon_sym___vectorcall] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_case] = ACTIONS(2921), - [anon_sym_default] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym___try] = ACTIONS(2921), - [anon_sym___leave] = ACTIONS(2921), - [anon_sym_not] = ACTIONS(2921), - [anon_sym_compl] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_sizeof] = ACTIONS(2921), - [anon_sym___alignof__] = ACTIONS(2921), - [anon_sym___alignof] = ACTIONS(2921), - [anon_sym__alignof] = ACTIONS(2921), - [anon_sym_alignof] = ACTIONS(2921), - [anon_sym__Alignof] = ACTIONS(2921), - [anon_sym_offsetof] = ACTIONS(2921), - [anon_sym__Generic] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym___asm__] = ACTIONS(2921), - [sym_number_literal] = ACTIONS(2923), - [anon_sym_L_SQUOTE] = ACTIONS(2923), - [anon_sym_u_SQUOTE] = ACTIONS(2923), - [anon_sym_U_SQUOTE] = ACTIONS(2923), - [anon_sym_u8_SQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_L_DQUOTE] = ACTIONS(2923), - [anon_sym_u_DQUOTE] = ACTIONS(2923), - [anon_sym_U_DQUOTE] = ACTIONS(2923), - [anon_sym_u8_DQUOTE] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [anon_sym_NULL] = ACTIONS(2921), - [anon_sym_nullptr] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_explicit] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_namespace] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_static_assert] = ACTIONS(2921), - [anon_sym_concept] = ACTIONS(2921), - [anon_sym_co_return] = ACTIONS(2921), - [anon_sym_co_yield] = ACTIONS(2921), - [anon_sym_R_DQUOTE] = ACTIONS(2923), - [anon_sym_LR_DQUOTE] = ACTIONS(2923), - [anon_sym_uR_DQUOTE] = ACTIONS(2923), - [anon_sym_UR_DQUOTE] = ACTIONS(2923), - [anon_sym_u8R_DQUOTE] = ACTIONS(2923), - [anon_sym_co_await] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_requires] = ACTIONS(2921), - [sym_this] = ACTIONS(2921), - }, - [273] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [293] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [274] = { - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_include_token1] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token2] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [aux_sym_preproc_else_token1] = ACTIONS(2925), - [aux_sym_preproc_elif_token1] = ACTIONS(2925), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym___cdecl] = ACTIONS(2925), - [anon_sym___clrcall] = ACTIONS(2925), - [anon_sym___stdcall] = ACTIONS(2925), - [anon_sym___fastcall] = ACTIONS(2925), - [anon_sym___thiscall] = ACTIONS(2925), - [anon_sym___vectorcall] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_case] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym___try] = ACTIONS(2925), - [anon_sym___leave] = ACTIONS(2925), - [anon_sym_not] = ACTIONS(2925), - [anon_sym_compl] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(2925), - [anon_sym___alignof__] = ACTIONS(2925), - [anon_sym___alignof] = ACTIONS(2925), - [anon_sym__alignof] = ACTIONS(2925), - [anon_sym_alignof] = ACTIONS(2925), - [anon_sym__Alignof] = ACTIONS(2925), - [anon_sym_offsetof] = ACTIONS(2925), - [anon_sym__Generic] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym___asm__] = ACTIONS(2925), - [sym_number_literal] = ACTIONS(2927), - [anon_sym_L_SQUOTE] = ACTIONS(2927), - [anon_sym_u_SQUOTE] = ACTIONS(2927), - [anon_sym_U_SQUOTE] = ACTIONS(2927), - [anon_sym_u8_SQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_L_DQUOTE] = ACTIONS(2927), - [anon_sym_u_DQUOTE] = ACTIONS(2927), - [anon_sym_U_DQUOTE] = ACTIONS(2927), - [anon_sym_u8_DQUOTE] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [anon_sym_NULL] = ACTIONS(2925), - [anon_sym_nullptr] = ACTIONS(2925), + [294] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_namespace] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - [anon_sym_concept] = ACTIONS(2925), - [anon_sym_co_return] = ACTIONS(2925), - [anon_sym_co_yield] = ACTIONS(2925), - [anon_sym_R_DQUOTE] = ACTIONS(2927), - [anon_sym_LR_DQUOTE] = ACTIONS(2927), - [anon_sym_uR_DQUOTE] = ACTIONS(2927), - [anon_sym_UR_DQUOTE] = ACTIONS(2927), - [anon_sym_u8R_DQUOTE] = ACTIONS(2927), - [anon_sym_co_await] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_requires] = ACTIONS(2925), - [sym_this] = ACTIONS(2925), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [275] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [295] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [276] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [296] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [277] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3672), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8716), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(9193), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9026), - [sym__unary_right_fold] = STATE(9134), - [sym__binary_fold] = STATE(9135), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [297] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [278] = { - [sym_identifier] = ACTIONS(2929), - [aux_sym_preproc_include_token1] = ACTIONS(2929), - [aux_sym_preproc_def_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token2] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), - [aux_sym_preproc_else_token1] = ACTIONS(2929), - [aux_sym_preproc_elif_token1] = ACTIONS(2929), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2929), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2929), - [sym_preproc_directive] = ACTIONS(2929), - [anon_sym_LPAREN2] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym___extension__] = ACTIONS(2929), - [anon_sym_typedef] = ACTIONS(2929), - [anon_sym_extern] = ACTIONS(2929), - [anon_sym___attribute__] = ACTIONS(2929), - [anon_sym_COLON_COLON] = ACTIONS(2931), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2931), - [anon_sym___declspec] = ACTIONS(2929), - [anon_sym___based] = ACTIONS(2929), - [anon_sym___cdecl] = ACTIONS(2929), - [anon_sym___clrcall] = ACTIONS(2929), - [anon_sym___stdcall] = ACTIONS(2929), - [anon_sym___fastcall] = ACTIONS(2929), - [anon_sym___thiscall] = ACTIONS(2929), - [anon_sym___vectorcall] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2929), - [anon_sym_unsigned] = ACTIONS(2929), - [anon_sym_long] = ACTIONS(2929), - [anon_sym_short] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_static] = ACTIONS(2929), - [anon_sym_register] = ACTIONS(2929), - [anon_sym_inline] = ACTIONS(2929), - [anon_sym___inline] = ACTIONS(2929), - [anon_sym___inline__] = ACTIONS(2929), - [anon_sym___forceinline] = ACTIONS(2929), - [anon_sym_thread_local] = ACTIONS(2929), - [anon_sym___thread] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2929), - [anon_sym_constexpr] = ACTIONS(2929), - [anon_sym_volatile] = ACTIONS(2929), - [anon_sym_restrict] = ACTIONS(2929), - [anon_sym___restrict__] = ACTIONS(2929), - [anon_sym__Atomic] = ACTIONS(2929), - [anon_sym__Noreturn] = ACTIONS(2929), - [anon_sym_noreturn] = ACTIONS(2929), - [anon_sym_mutable] = ACTIONS(2929), - [anon_sym_constinit] = ACTIONS(2929), - [anon_sym_consteval] = ACTIONS(2929), - [sym_primitive_type] = ACTIONS(2929), - [anon_sym_enum] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2929), - [anon_sym_union] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2929), - [anon_sym_switch] = ACTIONS(2929), - [anon_sym_case] = ACTIONS(2929), - [anon_sym_default] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_do] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_goto] = ACTIONS(2929), - [anon_sym___try] = ACTIONS(2929), - [anon_sym___leave] = ACTIONS(2929), - [anon_sym_not] = ACTIONS(2929), - [anon_sym_compl] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_sizeof] = ACTIONS(2929), - [anon_sym___alignof__] = ACTIONS(2929), - [anon_sym___alignof] = ACTIONS(2929), - [anon_sym__alignof] = ACTIONS(2929), - [anon_sym_alignof] = ACTIONS(2929), - [anon_sym__Alignof] = ACTIONS(2929), - [anon_sym_offsetof] = ACTIONS(2929), - [anon_sym__Generic] = ACTIONS(2929), - [anon_sym_asm] = ACTIONS(2929), - [anon_sym___asm__] = ACTIONS(2929), - [sym_number_literal] = ACTIONS(2931), - [anon_sym_L_SQUOTE] = ACTIONS(2931), - [anon_sym_u_SQUOTE] = ACTIONS(2931), - [anon_sym_U_SQUOTE] = ACTIONS(2931), - [anon_sym_u8_SQUOTE] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_L_DQUOTE] = ACTIONS(2931), - [anon_sym_u_DQUOTE] = ACTIONS(2931), - [anon_sym_U_DQUOTE] = ACTIONS(2931), - [anon_sym_u8_DQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [sym_true] = ACTIONS(2929), - [sym_false] = ACTIONS(2929), - [anon_sym_NULL] = ACTIONS(2929), - [anon_sym_nullptr] = ACTIONS(2929), + [298] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2929), - [anon_sym_decltype] = ACTIONS(2929), - [anon_sym_virtual] = ACTIONS(2929), - [anon_sym_alignas] = ACTIONS(2929), - [anon_sym_explicit] = ACTIONS(2929), - [anon_sym_typename] = ACTIONS(2929), - [anon_sym_template] = ACTIONS(2929), - [anon_sym_operator] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2929), - [anon_sym_delete] = ACTIONS(2929), - [anon_sym_throw] = ACTIONS(2929), - [anon_sym_namespace] = ACTIONS(2929), - [anon_sym_using] = ACTIONS(2929), - [anon_sym_static_assert] = ACTIONS(2929), - [anon_sym_concept] = ACTIONS(2929), - [anon_sym_co_return] = ACTIONS(2929), - [anon_sym_co_yield] = ACTIONS(2929), - [anon_sym_R_DQUOTE] = ACTIONS(2931), - [anon_sym_LR_DQUOTE] = ACTIONS(2931), - [anon_sym_uR_DQUOTE] = ACTIONS(2931), - [anon_sym_UR_DQUOTE] = ACTIONS(2931), - [anon_sym_u8R_DQUOTE] = ACTIONS(2931), - [anon_sym_co_await] = ACTIONS(2929), - [anon_sym_new] = ACTIONS(2929), - [anon_sym_requires] = ACTIONS(2929), - [sym_this] = ACTIONS(2929), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [279] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8600), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [299] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [280] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3672), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8716), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(9255), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9026), - [sym__unary_right_fold] = STATE(9134), - [sym__binary_fold] = STATE(9135), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [300] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [281] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(9101), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8897), - [sym__unary_right_fold] = STATE(8896), - [sym__binary_fold] = STATE(8895), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [301] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [282] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8687), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [302] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [283] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [303] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [284] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8952), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8897), - [sym__unary_right_fold] = STATE(8896), - [sym__binary_fold] = STATE(8895), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [304] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [285] = { - [sym_identifier] = ACTIONS(2933), - [aux_sym_preproc_include_token1] = ACTIONS(2933), - [aux_sym_preproc_def_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token2] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), - [aux_sym_preproc_else_token1] = ACTIONS(2933), - [aux_sym_preproc_elif_token1] = ACTIONS(2933), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2933), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2933), - [sym_preproc_directive] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2933), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym___extension__] = ACTIONS(2933), - [anon_sym_typedef] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym___attribute__] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2933), - [anon_sym___based] = ACTIONS(2933), - [anon_sym___cdecl] = ACTIONS(2933), - [anon_sym___clrcall] = ACTIONS(2933), - [anon_sym___stdcall] = ACTIONS(2933), - [anon_sym___fastcall] = ACTIONS(2933), - [anon_sym___thiscall] = ACTIONS(2933), - [anon_sym___vectorcall] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2933), - [anon_sym_unsigned] = ACTIONS(2933), - [anon_sym_long] = ACTIONS(2933), - [anon_sym_short] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_register] = ACTIONS(2933), - [anon_sym_inline] = ACTIONS(2933), - [anon_sym___inline] = ACTIONS(2933), - [anon_sym___inline__] = ACTIONS(2933), - [anon_sym___forceinline] = ACTIONS(2933), - [anon_sym_thread_local] = ACTIONS(2933), - [anon_sym___thread] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_constexpr] = ACTIONS(2933), - [anon_sym_volatile] = ACTIONS(2933), - [anon_sym_restrict] = ACTIONS(2933), - [anon_sym___restrict__] = ACTIONS(2933), - [anon_sym__Atomic] = ACTIONS(2933), - [anon_sym__Noreturn] = ACTIONS(2933), - [anon_sym_noreturn] = ACTIONS(2933), - [anon_sym_mutable] = ACTIONS(2933), - [anon_sym_constinit] = ACTIONS(2933), - [anon_sym_consteval] = ACTIONS(2933), - [sym_primitive_type] = ACTIONS(2933), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2933), - [anon_sym_switch] = ACTIONS(2933), - [anon_sym_case] = ACTIONS(2933), - [anon_sym_default] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_do] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_goto] = ACTIONS(2933), - [anon_sym___try] = ACTIONS(2933), - [anon_sym___leave] = ACTIONS(2933), - [anon_sym_not] = ACTIONS(2933), - [anon_sym_compl] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(2933), - [anon_sym___alignof__] = ACTIONS(2933), - [anon_sym___alignof] = ACTIONS(2933), - [anon_sym__alignof] = ACTIONS(2933), - [anon_sym_alignof] = ACTIONS(2933), - [anon_sym__Alignof] = ACTIONS(2933), - [anon_sym_offsetof] = ACTIONS(2933), - [anon_sym__Generic] = ACTIONS(2933), - [anon_sym_asm] = ACTIONS(2933), - [anon_sym___asm__] = ACTIONS(2933), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_L_SQUOTE] = ACTIONS(2935), - [anon_sym_u_SQUOTE] = ACTIONS(2935), - [anon_sym_U_SQUOTE] = ACTIONS(2935), - [anon_sym_u8_SQUOTE] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_L_DQUOTE] = ACTIONS(2935), - [anon_sym_u_DQUOTE] = ACTIONS(2935), - [anon_sym_U_DQUOTE] = ACTIONS(2935), - [anon_sym_u8_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_true] = ACTIONS(2933), - [sym_false] = ACTIONS(2933), - [anon_sym_NULL] = ACTIONS(2933), - [anon_sym_nullptr] = ACTIONS(2933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2933), - [anon_sym_decltype] = ACTIONS(2933), - [anon_sym_virtual] = ACTIONS(2933), - [anon_sym_alignas] = ACTIONS(2933), - [anon_sym_explicit] = ACTIONS(2933), - [anon_sym_typename] = ACTIONS(2933), - [anon_sym_template] = ACTIONS(2933), - [anon_sym_operator] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2933), - [anon_sym_delete] = ACTIONS(2933), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_using] = ACTIONS(2933), - [anon_sym_static_assert] = ACTIONS(2933), - [anon_sym_concept] = ACTIONS(2933), - [anon_sym_co_return] = ACTIONS(2933), - [anon_sym_co_yield] = ACTIONS(2933), - [anon_sym_R_DQUOTE] = ACTIONS(2935), - [anon_sym_LR_DQUOTE] = ACTIONS(2935), - [anon_sym_uR_DQUOTE] = ACTIONS(2935), - [anon_sym_UR_DQUOTE] = ACTIONS(2935), - [anon_sym_u8R_DQUOTE] = ACTIONS(2935), - [anon_sym_co_await] = ACTIONS(2933), - [anon_sym_new] = ACTIONS(2933), - [anon_sym_requires] = ACTIONS(2933), - [sym_this] = ACTIONS(2933), + [305] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [286] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [306] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [287] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8876), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [307] = { + [sym_identifier] = ACTIONS(2901), + [aux_sym_preproc_include_token1] = ACTIONS(2901), + [aux_sym_preproc_def_token1] = ACTIONS(2901), + [aux_sym_preproc_if_token1] = ACTIONS(2901), + [aux_sym_preproc_if_token2] = ACTIONS(2901), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), + [aux_sym_preproc_else_token1] = ACTIONS(2901), + [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2901), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2901), + [sym_preproc_directive] = ACTIONS(2901), + [anon_sym_LPAREN2] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2903), + [anon_sym___extension__] = ACTIONS(2901), + [anon_sym_typedef] = ACTIONS(2901), + [anon_sym_extern] = ACTIONS(2901), + [anon_sym___attribute__] = ACTIONS(2901), + [anon_sym_COLON_COLON] = ACTIONS(2903), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), + [anon_sym___declspec] = ACTIONS(2901), + [anon_sym___based] = ACTIONS(2901), + [anon_sym___cdecl] = ACTIONS(2901), + [anon_sym___clrcall] = ACTIONS(2901), + [anon_sym___stdcall] = ACTIONS(2901), + [anon_sym___fastcall] = ACTIONS(2901), + [anon_sym___thiscall] = ACTIONS(2901), + [anon_sym___vectorcall] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_signed] = ACTIONS(2901), + [anon_sym_unsigned] = ACTIONS(2901), + [anon_sym_long] = ACTIONS(2901), + [anon_sym_short] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_static] = ACTIONS(2901), + [anon_sym_register] = ACTIONS(2901), + [anon_sym_inline] = ACTIONS(2901), + [anon_sym___inline] = ACTIONS(2901), + [anon_sym___inline__] = ACTIONS(2901), + [anon_sym___forceinline] = ACTIONS(2901), + [anon_sym_thread_local] = ACTIONS(2901), + [anon_sym___thread] = ACTIONS(2901), + [anon_sym_const] = ACTIONS(2901), + [anon_sym_constexpr] = ACTIONS(2901), + [anon_sym_volatile] = ACTIONS(2901), + [anon_sym_restrict] = ACTIONS(2901), + [anon_sym___restrict__] = ACTIONS(2901), + [anon_sym__Atomic] = ACTIONS(2901), + [anon_sym__Noreturn] = ACTIONS(2901), + [anon_sym_noreturn] = ACTIONS(2901), + [anon_sym_mutable] = ACTIONS(2901), + [anon_sym_constinit] = ACTIONS(2901), + [anon_sym_consteval] = ACTIONS(2901), + [sym_primitive_type] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_class] = ACTIONS(2901), + [anon_sym_struct] = ACTIONS(2901), + [anon_sym_union] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_else] = ACTIONS(2901), + [anon_sym_switch] = ACTIONS(2901), + [anon_sym_case] = ACTIONS(2901), + [anon_sym_default] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_do] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_goto] = ACTIONS(2901), + [anon_sym___try] = ACTIONS(2901), + [anon_sym___leave] = ACTIONS(2901), + [anon_sym_not] = ACTIONS(2901), + [anon_sym_compl] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_sizeof] = ACTIONS(2901), + [anon_sym___alignof__] = ACTIONS(2901), + [anon_sym___alignof] = ACTIONS(2901), + [anon_sym__alignof] = ACTIONS(2901), + [anon_sym_alignof] = ACTIONS(2901), + [anon_sym__Alignof] = ACTIONS(2901), + [anon_sym_offsetof] = ACTIONS(2901), + [anon_sym__Generic] = ACTIONS(2901), + [anon_sym_asm] = ACTIONS(2901), + [anon_sym___asm__] = ACTIONS(2901), + [sym_number_literal] = ACTIONS(2903), + [anon_sym_L_SQUOTE] = ACTIONS(2903), + [anon_sym_u_SQUOTE] = ACTIONS(2903), + [anon_sym_U_SQUOTE] = ACTIONS(2903), + [anon_sym_u8_SQUOTE] = ACTIONS(2903), + [anon_sym_SQUOTE] = ACTIONS(2903), + [anon_sym_L_DQUOTE] = ACTIONS(2903), + [anon_sym_u_DQUOTE] = ACTIONS(2903), + [anon_sym_U_DQUOTE] = ACTIONS(2903), + [anon_sym_u8_DQUOTE] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2903), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [anon_sym_NULL] = ACTIONS(2901), + [anon_sym_nullptr] = ACTIONS(2901), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(2901), + [anon_sym_decltype] = ACTIONS(2901), + [anon_sym_virtual] = ACTIONS(2901), + [anon_sym_alignas] = ACTIONS(2901), + [anon_sym_explicit] = ACTIONS(2901), + [anon_sym_typename] = ACTIONS(2901), + [anon_sym_template] = ACTIONS(2901), + [anon_sym_operator] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2901), + [anon_sym_delete] = ACTIONS(2901), + [anon_sym_throw] = ACTIONS(2901), + [anon_sym_namespace] = ACTIONS(2901), + [anon_sym_using] = ACTIONS(2901), + [anon_sym_static_assert] = ACTIONS(2901), + [anon_sym_concept] = ACTIONS(2901), + [anon_sym_co_return] = ACTIONS(2901), + [anon_sym_co_yield] = ACTIONS(2901), + [anon_sym_R_DQUOTE] = ACTIONS(2903), + [anon_sym_LR_DQUOTE] = ACTIONS(2903), + [anon_sym_uR_DQUOTE] = ACTIONS(2903), + [anon_sym_UR_DQUOTE] = ACTIONS(2903), + [anon_sym_u8R_DQUOTE] = ACTIONS(2903), + [anon_sym_co_await] = ACTIONS(2901), + [anon_sym_new] = ACTIONS(2901), + [anon_sym_requires] = ACTIONS(2901), + [sym_this] = ACTIONS(2901), }, - [288] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [308] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [289] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [309] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [290] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [310] = { + [sym_identifier] = ACTIONS(2905), + [aux_sym_preproc_include_token1] = ACTIONS(2905), + [aux_sym_preproc_def_token1] = ACTIONS(2905), + [aux_sym_preproc_if_token1] = ACTIONS(2905), + [aux_sym_preproc_if_token2] = ACTIONS(2905), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), + [aux_sym_preproc_else_token1] = ACTIONS(2905), + [aux_sym_preproc_elif_token1] = ACTIONS(2905), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2905), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2905), + [sym_preproc_directive] = ACTIONS(2905), + [anon_sym_LPAREN2] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_AMP_AMP] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym___extension__] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym___attribute__] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), + [anon_sym___declspec] = ACTIONS(2905), + [anon_sym___based] = ACTIONS(2905), + [anon_sym___cdecl] = ACTIONS(2905), + [anon_sym___clrcall] = ACTIONS(2905), + [anon_sym___stdcall] = ACTIONS(2905), + [anon_sym___fastcall] = ACTIONS(2905), + [anon_sym___thiscall] = ACTIONS(2905), + [anon_sym___vectorcall] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2905), + [anon_sym_unsigned] = ACTIONS(2905), + [anon_sym_long] = ACTIONS(2905), + [anon_sym_short] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_static] = ACTIONS(2905), + [anon_sym_register] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym___inline] = ACTIONS(2905), + [anon_sym___inline__] = ACTIONS(2905), + [anon_sym___forceinline] = ACTIONS(2905), + [anon_sym_thread_local] = ACTIONS(2905), + [anon_sym___thread] = ACTIONS(2905), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_constexpr] = ACTIONS(2905), + [anon_sym_volatile] = ACTIONS(2905), + [anon_sym_restrict] = ACTIONS(2905), + [anon_sym___restrict__] = ACTIONS(2905), + [anon_sym__Atomic] = ACTIONS(2905), + [anon_sym__Noreturn] = ACTIONS(2905), + [anon_sym_noreturn] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_union] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_else] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2905), + [anon_sym_case] = ACTIONS(2905), + [anon_sym_default] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_goto] = ACTIONS(2905), + [anon_sym___try] = ACTIONS(2905), + [anon_sym___leave] = ACTIONS(2905), + [anon_sym_not] = ACTIONS(2905), + [anon_sym_compl] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_sizeof] = ACTIONS(2905), + [anon_sym___alignof__] = ACTIONS(2905), + [anon_sym___alignof] = ACTIONS(2905), + [anon_sym__alignof] = ACTIONS(2905), + [anon_sym_alignof] = ACTIONS(2905), + [anon_sym__Alignof] = ACTIONS(2905), + [anon_sym_offsetof] = ACTIONS(2905), + [anon_sym__Generic] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym___asm__] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2907), + [anon_sym_L_SQUOTE] = ACTIONS(2907), + [anon_sym_u_SQUOTE] = ACTIONS(2907), + [anon_sym_U_SQUOTE] = ACTIONS(2907), + [anon_sym_u8_SQUOTE] = ACTIONS(2907), + [anon_sym_SQUOTE] = ACTIONS(2907), + [anon_sym_L_DQUOTE] = ACTIONS(2907), + [anon_sym_u_DQUOTE] = ACTIONS(2907), + [anon_sym_U_DQUOTE] = ACTIONS(2907), + [anon_sym_u8_DQUOTE] = ACTIONS(2907), + [anon_sym_DQUOTE] = ACTIONS(2907), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [anon_sym_NULL] = ACTIONS(2905), + [anon_sym_nullptr] = ACTIONS(2905), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2905), + [anon_sym_decltype] = ACTIONS(2905), + [anon_sym_virtual] = ACTIONS(2905), + [anon_sym_alignas] = ACTIONS(2905), + [anon_sym_explicit] = ACTIONS(2905), + [anon_sym_typename] = ACTIONS(2905), + [anon_sym_template] = ACTIONS(2905), + [anon_sym_operator] = ACTIONS(2905), + [anon_sym_try] = ACTIONS(2905), + [anon_sym_delete] = ACTIONS(2905), + [anon_sym_throw] = ACTIONS(2905), + [anon_sym_namespace] = ACTIONS(2905), + [anon_sym_using] = ACTIONS(2905), + [anon_sym_static_assert] = ACTIONS(2905), + [anon_sym_concept] = ACTIONS(2905), + [anon_sym_co_return] = ACTIONS(2905), + [anon_sym_co_yield] = ACTIONS(2905), + [anon_sym_R_DQUOTE] = ACTIONS(2907), + [anon_sym_LR_DQUOTE] = ACTIONS(2907), + [anon_sym_uR_DQUOTE] = ACTIONS(2907), + [anon_sym_UR_DQUOTE] = ACTIONS(2907), + [anon_sym_u8R_DQUOTE] = ACTIONS(2907), + [anon_sym_co_await] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_requires] = ACTIONS(2905), + [sym_this] = ACTIONS(2905), }, - [291] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8416), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8897), - [sym__unary_right_fold] = STATE(8896), - [sym__binary_fold] = STATE(8895), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [311] = { + [sym_identifier] = ACTIONS(2909), + [aux_sym_preproc_include_token1] = ACTIONS(2909), + [aux_sym_preproc_def_token1] = ACTIONS(2909), + [aux_sym_preproc_if_token1] = ACTIONS(2909), + [aux_sym_preproc_if_token2] = ACTIONS(2909), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2909), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2909), + [aux_sym_preproc_else_token1] = ACTIONS(2909), + [aux_sym_preproc_elif_token1] = ACTIONS(2909), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2909), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2909), + [sym_preproc_directive] = ACTIONS(2909), + [anon_sym_LPAREN2] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_AMP_AMP] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_SEMI] = ACTIONS(2911), + [anon_sym___extension__] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2909), + [anon_sym_extern] = ACTIONS(2909), + [anon_sym___attribute__] = ACTIONS(2909), + [anon_sym_COLON_COLON] = ACTIONS(2911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2911), + [anon_sym___declspec] = ACTIONS(2909), + [anon_sym___based] = ACTIONS(2909), + [anon_sym___cdecl] = ACTIONS(2909), + [anon_sym___clrcall] = ACTIONS(2909), + [anon_sym___stdcall] = ACTIONS(2909), + [anon_sym___fastcall] = ACTIONS(2909), + [anon_sym___thiscall] = ACTIONS(2909), + [anon_sym___vectorcall] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(2909), + [anon_sym_unsigned] = ACTIONS(2909), + [anon_sym_long] = ACTIONS(2909), + [anon_sym_short] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2909), + [anon_sym_register] = ACTIONS(2909), + [anon_sym_inline] = ACTIONS(2909), + [anon_sym___inline] = ACTIONS(2909), + [anon_sym___inline__] = ACTIONS(2909), + [anon_sym___forceinline] = ACTIONS(2909), + [anon_sym_thread_local] = ACTIONS(2909), + [anon_sym___thread] = ACTIONS(2909), + [anon_sym_const] = ACTIONS(2909), + [anon_sym_constexpr] = ACTIONS(2909), + [anon_sym_volatile] = ACTIONS(2909), + [anon_sym_restrict] = ACTIONS(2909), + [anon_sym___restrict__] = ACTIONS(2909), + [anon_sym__Atomic] = ACTIONS(2909), + [anon_sym__Noreturn] = ACTIONS(2909), + [anon_sym_noreturn] = ACTIONS(2909), + [anon_sym_mutable] = ACTIONS(2909), + [anon_sym_constinit] = ACTIONS(2909), + [anon_sym_consteval] = ACTIONS(2909), + [sym_primitive_type] = ACTIONS(2909), + [anon_sym_enum] = ACTIONS(2909), + [anon_sym_class] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2909), + [anon_sym_union] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2909), + [anon_sym_switch] = ACTIONS(2909), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2909), + [anon_sym_while] = ACTIONS(2909), + [anon_sym_do] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_goto] = ACTIONS(2909), + [anon_sym___try] = ACTIONS(2909), + [anon_sym___leave] = ACTIONS(2909), + [anon_sym_not] = ACTIONS(2909), + [anon_sym_compl] = ACTIONS(2909), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_sizeof] = ACTIONS(2909), + [anon_sym___alignof__] = ACTIONS(2909), + [anon_sym___alignof] = ACTIONS(2909), + [anon_sym__alignof] = ACTIONS(2909), + [anon_sym_alignof] = ACTIONS(2909), + [anon_sym__Alignof] = ACTIONS(2909), + [anon_sym_offsetof] = ACTIONS(2909), + [anon_sym__Generic] = ACTIONS(2909), + [anon_sym_asm] = ACTIONS(2909), + [anon_sym___asm__] = ACTIONS(2909), + [sym_number_literal] = ACTIONS(2911), + [anon_sym_L_SQUOTE] = ACTIONS(2911), + [anon_sym_u_SQUOTE] = ACTIONS(2911), + [anon_sym_U_SQUOTE] = ACTIONS(2911), + [anon_sym_u8_SQUOTE] = ACTIONS(2911), + [anon_sym_SQUOTE] = ACTIONS(2911), + [anon_sym_L_DQUOTE] = ACTIONS(2911), + [anon_sym_u_DQUOTE] = ACTIONS(2911), + [anon_sym_U_DQUOTE] = ACTIONS(2911), + [anon_sym_u8_DQUOTE] = ACTIONS(2911), + [anon_sym_DQUOTE] = ACTIONS(2911), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [anon_sym_NULL] = ACTIONS(2909), + [anon_sym_nullptr] = ACTIONS(2909), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(2909), + [anon_sym_decltype] = ACTIONS(2909), + [anon_sym_virtual] = ACTIONS(2909), + [anon_sym_alignas] = ACTIONS(2909), + [anon_sym_explicit] = ACTIONS(2909), + [anon_sym_typename] = ACTIONS(2909), + [anon_sym_template] = ACTIONS(2909), + [anon_sym_operator] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(2909), + [anon_sym_delete] = ACTIONS(2909), + [anon_sym_throw] = ACTIONS(2909), + [anon_sym_namespace] = ACTIONS(2909), + [anon_sym_using] = ACTIONS(2909), + [anon_sym_static_assert] = ACTIONS(2909), + [anon_sym_concept] = ACTIONS(2909), + [anon_sym_co_return] = ACTIONS(2909), + [anon_sym_co_yield] = ACTIONS(2909), + [anon_sym_R_DQUOTE] = ACTIONS(2911), + [anon_sym_LR_DQUOTE] = ACTIONS(2911), + [anon_sym_uR_DQUOTE] = ACTIONS(2911), + [anon_sym_UR_DQUOTE] = ACTIONS(2911), + [anon_sym_u8R_DQUOTE] = ACTIONS(2911), + [anon_sym_co_await] = ACTIONS(2909), + [anon_sym_new] = ACTIONS(2909), + [anon_sym_requires] = ACTIONS(2909), + [sym_this] = ACTIONS(2909), }, - [292] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3623), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8901), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8496), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8437), - [sym__unary_right_fold] = STATE(8436), - [sym__binary_fold] = STATE(8428), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [312] = { + [sym_identifier] = ACTIONS(2913), + [aux_sym_preproc_include_token1] = ACTIONS(2913), + [aux_sym_preproc_def_token1] = ACTIONS(2913), + [aux_sym_preproc_if_token1] = ACTIONS(2913), + [aux_sym_preproc_if_token2] = ACTIONS(2913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), + [aux_sym_preproc_else_token1] = ACTIONS(2913), + [aux_sym_preproc_elif_token1] = ACTIONS(2913), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2913), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2913), + [sym_preproc_directive] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_AMP_AMP] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym___extension__] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(2913), + [anon_sym_extern] = ACTIONS(2913), + [anon_sym___attribute__] = ACTIONS(2913), + [anon_sym_COLON_COLON] = ACTIONS(2915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), + [anon_sym___declspec] = ACTIONS(2913), + [anon_sym___based] = ACTIONS(2913), + [anon_sym___cdecl] = ACTIONS(2913), + [anon_sym___clrcall] = ACTIONS(2913), + [anon_sym___stdcall] = ACTIONS(2913), + [anon_sym___fastcall] = ACTIONS(2913), + [anon_sym___thiscall] = ACTIONS(2913), + [anon_sym___vectorcall] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(2913), + [anon_sym_unsigned] = ACTIONS(2913), + [anon_sym_long] = ACTIONS(2913), + [anon_sym_short] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_register] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym___inline] = ACTIONS(2913), + [anon_sym___inline__] = ACTIONS(2913), + [anon_sym___forceinline] = ACTIONS(2913), + [anon_sym_thread_local] = ACTIONS(2913), + [anon_sym___thread] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_constexpr] = ACTIONS(2913), + [anon_sym_volatile] = ACTIONS(2913), + [anon_sym_restrict] = ACTIONS(2913), + [anon_sym___restrict__] = ACTIONS(2913), + [anon_sym__Atomic] = ACTIONS(2913), + [anon_sym__Noreturn] = ACTIONS(2913), + [anon_sym_noreturn] = ACTIONS(2913), + [anon_sym_mutable] = ACTIONS(2913), + [anon_sym_constinit] = ACTIONS(2913), + [anon_sym_consteval] = ACTIONS(2913), + [sym_primitive_type] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_union] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_else] = ACTIONS(2913), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_case] = ACTIONS(2913), + [anon_sym_default] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_goto] = ACTIONS(2913), + [anon_sym___try] = ACTIONS(2913), + [anon_sym___leave] = ACTIONS(2913), + [anon_sym_not] = ACTIONS(2913), + [anon_sym_compl] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_sizeof] = ACTIONS(2913), + [anon_sym___alignof__] = ACTIONS(2913), + [anon_sym___alignof] = ACTIONS(2913), + [anon_sym__alignof] = ACTIONS(2913), + [anon_sym_alignof] = ACTIONS(2913), + [anon_sym__Alignof] = ACTIONS(2913), + [anon_sym_offsetof] = ACTIONS(2913), + [anon_sym__Generic] = ACTIONS(2913), + [anon_sym_asm] = ACTIONS(2913), + [anon_sym___asm__] = ACTIONS(2913), + [sym_number_literal] = ACTIONS(2915), + [anon_sym_L_SQUOTE] = ACTIONS(2915), + [anon_sym_u_SQUOTE] = ACTIONS(2915), + [anon_sym_U_SQUOTE] = ACTIONS(2915), + [anon_sym_u8_SQUOTE] = ACTIONS(2915), + [anon_sym_SQUOTE] = ACTIONS(2915), + [anon_sym_L_DQUOTE] = ACTIONS(2915), + [anon_sym_u_DQUOTE] = ACTIONS(2915), + [anon_sym_U_DQUOTE] = ACTIONS(2915), + [anon_sym_u8_DQUOTE] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(2915), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [anon_sym_NULL] = ACTIONS(2913), + [anon_sym_nullptr] = ACTIONS(2913), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(2913), + [anon_sym_decltype] = ACTIONS(2913), + [anon_sym_virtual] = ACTIONS(2913), + [anon_sym_alignas] = ACTIONS(2913), + [anon_sym_explicit] = ACTIONS(2913), + [anon_sym_typename] = ACTIONS(2913), + [anon_sym_template] = ACTIONS(2913), + [anon_sym_operator] = ACTIONS(2913), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_delete] = ACTIONS(2913), + [anon_sym_throw] = ACTIONS(2913), + [anon_sym_namespace] = ACTIONS(2913), + [anon_sym_using] = ACTIONS(2913), + [anon_sym_static_assert] = ACTIONS(2913), + [anon_sym_concept] = ACTIONS(2913), + [anon_sym_co_return] = ACTIONS(2913), + [anon_sym_co_yield] = ACTIONS(2913), + [anon_sym_R_DQUOTE] = ACTIONS(2915), + [anon_sym_LR_DQUOTE] = ACTIONS(2915), + [anon_sym_uR_DQUOTE] = ACTIONS(2915), + [anon_sym_UR_DQUOTE] = ACTIONS(2915), + [anon_sym_u8R_DQUOTE] = ACTIONS(2915), + [anon_sym_co_await] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_requires] = ACTIONS(2913), + [sym_this] = ACTIONS(2913), }, - [293] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3623), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8901), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8442), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8437), - [sym__unary_right_fold] = STATE(8436), - [sym__binary_fold] = STATE(8428), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [313] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [294] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3623), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8901), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8460), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8506), - [sym__unary_right_fold] = STATE(8504), - [sym__binary_fold] = STATE(8503), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [314] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [295] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(9011), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [315] = { + [sym_identifier] = ACTIONS(2917), + [aux_sym_preproc_include_token1] = ACTIONS(2917), + [aux_sym_preproc_def_token1] = ACTIONS(2917), + [aux_sym_preproc_if_token1] = ACTIONS(2917), + [aux_sym_preproc_if_token2] = ACTIONS(2917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), + [aux_sym_preproc_else_token1] = ACTIONS(2917), + [aux_sym_preproc_elif_token1] = ACTIONS(2917), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2917), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2917), + [sym_preproc_directive] = ACTIONS(2917), + [anon_sym_LPAREN2] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2919), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym___extension__] = ACTIONS(2917), + [anon_sym_typedef] = ACTIONS(2917), + [anon_sym_extern] = ACTIONS(2917), + [anon_sym___attribute__] = ACTIONS(2917), + [anon_sym_COLON_COLON] = ACTIONS(2919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), + [anon_sym___declspec] = ACTIONS(2917), + [anon_sym___based] = ACTIONS(2917), + [anon_sym___cdecl] = ACTIONS(2917), + [anon_sym___clrcall] = ACTIONS(2917), + [anon_sym___stdcall] = ACTIONS(2917), + [anon_sym___fastcall] = ACTIONS(2917), + [anon_sym___thiscall] = ACTIONS(2917), + [anon_sym___vectorcall] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_signed] = ACTIONS(2917), + [anon_sym_unsigned] = ACTIONS(2917), + [anon_sym_long] = ACTIONS(2917), + [anon_sym_short] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2917), + [anon_sym_static] = ACTIONS(2917), + [anon_sym_register] = ACTIONS(2917), + [anon_sym_inline] = ACTIONS(2917), + [anon_sym___inline] = ACTIONS(2917), + [anon_sym___inline__] = ACTIONS(2917), + [anon_sym___forceinline] = ACTIONS(2917), + [anon_sym_thread_local] = ACTIONS(2917), + [anon_sym___thread] = ACTIONS(2917), + [anon_sym_const] = ACTIONS(2917), + [anon_sym_constexpr] = ACTIONS(2917), + [anon_sym_volatile] = ACTIONS(2917), + [anon_sym_restrict] = ACTIONS(2917), + [anon_sym___restrict__] = ACTIONS(2917), + [anon_sym__Atomic] = ACTIONS(2917), + [anon_sym__Noreturn] = ACTIONS(2917), + [anon_sym_noreturn] = ACTIONS(2917), + [anon_sym_mutable] = ACTIONS(2917), + [anon_sym_constinit] = ACTIONS(2917), + [anon_sym_consteval] = ACTIONS(2917), + [sym_primitive_type] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), + [anon_sym_class] = ACTIONS(2917), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_union] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_else] = ACTIONS(2917), + [anon_sym_switch] = ACTIONS(2917), + [anon_sym_case] = ACTIONS(2917), + [anon_sym_default] = ACTIONS(2917), + [anon_sym_while] = ACTIONS(2917), + [anon_sym_do] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_goto] = ACTIONS(2917), + [anon_sym___try] = ACTIONS(2917), + [anon_sym___leave] = ACTIONS(2917), + [anon_sym_not] = ACTIONS(2917), + [anon_sym_compl] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_sizeof] = ACTIONS(2917), + [anon_sym___alignof__] = ACTIONS(2917), + [anon_sym___alignof] = ACTIONS(2917), + [anon_sym__alignof] = ACTIONS(2917), + [anon_sym_alignof] = ACTIONS(2917), + [anon_sym__Alignof] = ACTIONS(2917), + [anon_sym_offsetof] = ACTIONS(2917), + [anon_sym__Generic] = ACTIONS(2917), + [anon_sym_asm] = ACTIONS(2917), + [anon_sym___asm__] = ACTIONS(2917), + [sym_number_literal] = ACTIONS(2919), + [anon_sym_L_SQUOTE] = ACTIONS(2919), + [anon_sym_u_SQUOTE] = ACTIONS(2919), + [anon_sym_U_SQUOTE] = ACTIONS(2919), + [anon_sym_u8_SQUOTE] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2919), + [anon_sym_L_DQUOTE] = ACTIONS(2919), + [anon_sym_u_DQUOTE] = ACTIONS(2919), + [anon_sym_U_DQUOTE] = ACTIONS(2919), + [anon_sym_u8_DQUOTE] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2919), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [anon_sym_NULL] = ACTIONS(2917), + [anon_sym_nullptr] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(2917), + [anon_sym_decltype] = ACTIONS(2917), + [anon_sym_virtual] = ACTIONS(2917), + [anon_sym_alignas] = ACTIONS(2917), + [anon_sym_explicit] = ACTIONS(2917), + [anon_sym_typename] = ACTIONS(2917), + [anon_sym_template] = ACTIONS(2917), + [anon_sym_operator] = ACTIONS(2917), + [anon_sym_try] = ACTIONS(2917), + [anon_sym_delete] = ACTIONS(2917), + [anon_sym_throw] = ACTIONS(2917), + [anon_sym_namespace] = ACTIONS(2917), + [anon_sym_using] = ACTIONS(2917), + [anon_sym_static_assert] = ACTIONS(2917), + [anon_sym_concept] = ACTIONS(2917), + [anon_sym_co_return] = ACTIONS(2917), + [anon_sym_co_yield] = ACTIONS(2917), + [anon_sym_R_DQUOTE] = ACTIONS(2919), + [anon_sym_LR_DQUOTE] = ACTIONS(2919), + [anon_sym_uR_DQUOTE] = ACTIONS(2919), + [anon_sym_UR_DQUOTE] = ACTIONS(2919), + [anon_sym_u8R_DQUOTE] = ACTIONS(2919), + [anon_sym_co_await] = ACTIONS(2917), + [anon_sym_new] = ACTIONS(2917), + [anon_sym_requires] = ACTIONS(2917), + [sym_this] = ACTIONS(2917), }, - [296] = { - [sym_identifier] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token2] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [aux_sym_preproc_else_token1] = ACTIONS(2937), - [aux_sym_preproc_elif_token1] = ACTIONS(2937), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym___based] = ACTIONS(2937), - [anon_sym___cdecl] = ACTIONS(2937), - [anon_sym___clrcall] = ACTIONS(2937), - [anon_sym___stdcall] = ACTIONS(2937), - [anon_sym___fastcall] = ACTIONS(2937), - [anon_sym___thiscall] = ACTIONS(2937), - [anon_sym___vectorcall] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2939), + [316] = { + [sym_identifier] = ACTIONS(2921), + [aux_sym_preproc_include_token1] = ACTIONS(2921), + [aux_sym_preproc_def_token1] = ACTIONS(2921), + [aux_sym_preproc_if_token1] = ACTIONS(2921), + [aux_sym_preproc_if_token2] = ACTIONS(2921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), + [aux_sym_preproc_else_token1] = ACTIONS(2921), + [aux_sym_preproc_elif_token1] = ACTIONS(2921), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2921), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2921), + [sym_preproc_directive] = ACTIONS(2921), + [anon_sym_LPAREN2] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_AMP_AMP] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym___extension__] = ACTIONS(2921), + [anon_sym_typedef] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym___attribute__] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(2923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), + [anon_sym___declspec] = ACTIONS(2921), + [anon_sym___based] = ACTIONS(2921), + [anon_sym___cdecl] = ACTIONS(2921), + [anon_sym___clrcall] = ACTIONS(2921), + [anon_sym___stdcall] = ACTIONS(2921), + [anon_sym___fastcall] = ACTIONS(2921), + [anon_sym___thiscall] = ACTIONS(2921), + [anon_sym___vectorcall] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2921), + [anon_sym_unsigned] = ACTIONS(2921), + [anon_sym_long] = ACTIONS(2921), + [anon_sym_short] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_register] = ACTIONS(2921), + [anon_sym_inline] = ACTIONS(2921), + [anon_sym___inline] = ACTIONS(2921), + [anon_sym___inline__] = ACTIONS(2921), + [anon_sym___forceinline] = ACTIONS(2921), + [anon_sym_thread_local] = ACTIONS(2921), + [anon_sym___thread] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_constexpr] = ACTIONS(2921), + [anon_sym_volatile] = ACTIONS(2921), + [anon_sym_restrict] = ACTIONS(2921), + [anon_sym___restrict__] = ACTIONS(2921), + [anon_sym__Atomic] = ACTIONS(2921), + [anon_sym__Noreturn] = ACTIONS(2921), + [anon_sym_noreturn] = ACTIONS(2921), + [anon_sym_mutable] = ACTIONS(2921), + [anon_sym_constinit] = ACTIONS(2921), + [anon_sym_consteval] = ACTIONS(2921), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), + [anon_sym_class] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_union] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_else] = ACTIONS(2921), + [anon_sym_switch] = ACTIONS(2921), + [anon_sym_case] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_do] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_goto] = ACTIONS(2921), + [anon_sym___try] = ACTIONS(2921), + [anon_sym___leave] = ACTIONS(2921), + [anon_sym_not] = ACTIONS(2921), + [anon_sym_compl] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_sizeof] = ACTIONS(2921), + [anon_sym___alignof__] = ACTIONS(2921), + [anon_sym___alignof] = ACTIONS(2921), + [anon_sym__alignof] = ACTIONS(2921), + [anon_sym_alignof] = ACTIONS(2921), + [anon_sym__Alignof] = ACTIONS(2921), + [anon_sym_offsetof] = ACTIONS(2921), + [anon_sym__Generic] = ACTIONS(2921), + [anon_sym_asm] = ACTIONS(2921), + [anon_sym___asm__] = ACTIONS(2921), + [sym_number_literal] = ACTIONS(2923), + [anon_sym_L_SQUOTE] = ACTIONS(2923), + [anon_sym_u_SQUOTE] = ACTIONS(2923), + [anon_sym_U_SQUOTE] = ACTIONS(2923), + [anon_sym_u8_SQUOTE] = ACTIONS(2923), + [anon_sym_SQUOTE] = ACTIONS(2923), + [anon_sym_L_DQUOTE] = ACTIONS(2923), + [anon_sym_u_DQUOTE] = ACTIONS(2923), + [anon_sym_U_DQUOTE] = ACTIONS(2923), + [anon_sym_u8_DQUOTE] = ACTIONS(2923), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [anon_sym_NULL] = ACTIONS(2921), + [anon_sym_nullptr] = ACTIONS(2921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2921), + [anon_sym_decltype] = ACTIONS(2921), + [anon_sym_virtual] = ACTIONS(2921), + [anon_sym_alignas] = ACTIONS(2921), + [anon_sym_explicit] = ACTIONS(2921), + [anon_sym_typename] = ACTIONS(2921), + [anon_sym_template] = ACTIONS(2921), + [anon_sym_operator] = ACTIONS(2921), + [anon_sym_try] = ACTIONS(2921), + [anon_sym_delete] = ACTIONS(2921), + [anon_sym_throw] = ACTIONS(2921), + [anon_sym_namespace] = ACTIONS(2921), + [anon_sym_using] = ACTIONS(2921), + [anon_sym_static_assert] = ACTIONS(2921), + [anon_sym_concept] = ACTIONS(2921), + [anon_sym_co_return] = ACTIONS(2921), + [anon_sym_co_yield] = ACTIONS(2921), + [anon_sym_R_DQUOTE] = ACTIONS(2923), + [anon_sym_LR_DQUOTE] = ACTIONS(2923), + [anon_sym_uR_DQUOTE] = ACTIONS(2923), + [anon_sym_UR_DQUOTE] = ACTIONS(2923), + [anon_sym_u8R_DQUOTE] = ACTIONS(2923), + [anon_sym_co_await] = ACTIONS(2921), + [anon_sym_new] = ACTIONS(2921), + [anon_sym_requires] = ACTIONS(2921), + [sym_this] = ACTIONS(2921), + }, + [317] = { + [sym_identifier] = ACTIONS(2925), + [aux_sym_preproc_include_token1] = ACTIONS(2925), + [aux_sym_preproc_def_token1] = ACTIONS(2925), + [aux_sym_preproc_if_token1] = ACTIONS(2925), + [aux_sym_preproc_if_token2] = ACTIONS(2925), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), + [aux_sym_preproc_else_token1] = ACTIONS(2925), + [aux_sym_preproc_elif_token1] = ACTIONS(2925), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2925), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2925), + [sym_preproc_directive] = ACTIONS(2925), + [anon_sym_LPAREN2] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym___extension__] = ACTIONS(2925), + [anon_sym_typedef] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2925), + [anon_sym___attribute__] = ACTIONS(2925), + [anon_sym_COLON_COLON] = ACTIONS(2927), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), + [anon_sym___declspec] = ACTIONS(2925), + [anon_sym___based] = ACTIONS(2925), + [anon_sym___cdecl] = ACTIONS(2925), + [anon_sym___clrcall] = ACTIONS(2925), + [anon_sym___stdcall] = ACTIONS(2925), + [anon_sym___fastcall] = ACTIONS(2925), + [anon_sym___thiscall] = ACTIONS(2925), + [anon_sym___vectorcall] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_signed] = ACTIONS(2925), + [anon_sym_unsigned] = ACTIONS(2925), + [anon_sym_long] = ACTIONS(2925), + [anon_sym_short] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_register] = ACTIONS(2925), + [anon_sym_inline] = ACTIONS(2925), + [anon_sym___inline] = ACTIONS(2925), + [anon_sym___inline__] = ACTIONS(2925), + [anon_sym___forceinline] = ACTIONS(2925), + [anon_sym_thread_local] = ACTIONS(2925), + [anon_sym___thread] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_constexpr] = ACTIONS(2925), + [anon_sym_volatile] = ACTIONS(2925), + [anon_sym_restrict] = ACTIONS(2925), + [anon_sym___restrict__] = ACTIONS(2925), + [anon_sym__Atomic] = ACTIONS(2925), + [anon_sym__Noreturn] = ACTIONS(2925), + [anon_sym_noreturn] = ACTIONS(2925), + [anon_sym_mutable] = ACTIONS(2925), + [anon_sym_constinit] = ACTIONS(2925), + [anon_sym_consteval] = ACTIONS(2925), + [sym_primitive_type] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_class] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2925), + [anon_sym_switch] = ACTIONS(2925), + [anon_sym_case] = ACTIONS(2925), + [anon_sym_default] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_do] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym___try] = ACTIONS(2925), + [anon_sym___leave] = ACTIONS(2925), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_sizeof] = ACTIONS(2925), + [anon_sym___alignof__] = ACTIONS(2925), + [anon_sym___alignof] = ACTIONS(2925), + [anon_sym__alignof] = ACTIONS(2925), + [anon_sym_alignof] = ACTIONS(2925), + [anon_sym__Alignof] = ACTIONS(2925), + [anon_sym_offsetof] = ACTIONS(2925), + [anon_sym__Generic] = ACTIONS(2925), + [anon_sym_asm] = ACTIONS(2925), + [anon_sym___asm__] = ACTIONS(2925), + [sym_number_literal] = ACTIONS(2927), + [anon_sym_L_SQUOTE] = ACTIONS(2927), + [anon_sym_u_SQUOTE] = ACTIONS(2927), + [anon_sym_U_SQUOTE] = ACTIONS(2927), + [anon_sym_u8_SQUOTE] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2927), + [anon_sym_L_DQUOTE] = ACTIONS(2927), + [anon_sym_u_DQUOTE] = ACTIONS(2927), + [anon_sym_U_DQUOTE] = ACTIONS(2927), + [anon_sym_u8_DQUOTE] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2927), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [anon_sym_NULL] = ACTIONS(2925), + [anon_sym_nullptr] = ACTIONS(2925), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2925), + [anon_sym_decltype] = ACTIONS(2925), + [anon_sym_virtual] = ACTIONS(2925), + [anon_sym_alignas] = ACTIONS(2925), + [anon_sym_explicit] = ACTIONS(2925), + [anon_sym_typename] = ACTIONS(2925), + [anon_sym_template] = ACTIONS(2925), + [anon_sym_operator] = ACTIONS(2925), + [anon_sym_try] = ACTIONS(2925), + [anon_sym_delete] = ACTIONS(2925), + [anon_sym_throw] = ACTIONS(2925), + [anon_sym_namespace] = ACTIONS(2925), + [anon_sym_using] = ACTIONS(2925), + [anon_sym_static_assert] = ACTIONS(2925), + [anon_sym_concept] = ACTIONS(2925), + [anon_sym_co_return] = ACTIONS(2925), + [anon_sym_co_yield] = ACTIONS(2925), + [anon_sym_R_DQUOTE] = ACTIONS(2927), + [anon_sym_LR_DQUOTE] = ACTIONS(2927), + [anon_sym_uR_DQUOTE] = ACTIONS(2927), + [anon_sym_UR_DQUOTE] = ACTIONS(2927), + [anon_sym_u8R_DQUOTE] = ACTIONS(2927), + [anon_sym_co_await] = ACTIONS(2925), + [anon_sym_new] = ACTIONS(2925), + [anon_sym_requires] = ACTIONS(2925), + [sym_this] = ACTIONS(2925), + }, + [318] = { + [sym_identifier] = ACTIONS(2929), + [aux_sym_preproc_include_token1] = ACTIONS(2929), + [aux_sym_preproc_def_token1] = ACTIONS(2929), + [aux_sym_preproc_if_token1] = ACTIONS(2929), + [aux_sym_preproc_if_token2] = ACTIONS(2929), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), + [aux_sym_preproc_else_token1] = ACTIONS(2929), + [aux_sym_preproc_elif_token1] = ACTIONS(2929), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2929), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2929), + [sym_preproc_directive] = ACTIONS(2929), + [anon_sym_LPAREN2] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(2931), + [anon_sym_TILDE] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_AMP_AMP] = ACTIONS(2931), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_SEMI] = ACTIONS(2931), + [anon_sym___extension__] = ACTIONS(2929), + [anon_sym_typedef] = ACTIONS(2929), + [anon_sym_extern] = ACTIONS(2929), + [anon_sym___attribute__] = ACTIONS(2929), + [anon_sym_COLON_COLON] = ACTIONS(2931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2931), + [anon_sym___declspec] = ACTIONS(2929), + [anon_sym___based] = ACTIONS(2929), + [anon_sym___cdecl] = ACTIONS(2929), + [anon_sym___clrcall] = ACTIONS(2929), + [anon_sym___stdcall] = ACTIONS(2929), + [anon_sym___fastcall] = ACTIONS(2929), + [anon_sym___thiscall] = ACTIONS(2929), + [anon_sym___vectorcall] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_signed] = ACTIONS(2929), + [anon_sym_unsigned] = ACTIONS(2929), + [anon_sym_long] = ACTIONS(2929), + [anon_sym_short] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_static] = ACTIONS(2929), + [anon_sym_register] = ACTIONS(2929), + [anon_sym_inline] = ACTIONS(2929), + [anon_sym___inline] = ACTIONS(2929), + [anon_sym___inline__] = ACTIONS(2929), + [anon_sym___forceinline] = ACTIONS(2929), + [anon_sym_thread_local] = ACTIONS(2929), + [anon_sym___thread] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2929), + [anon_sym_constexpr] = ACTIONS(2929), + [anon_sym_volatile] = ACTIONS(2929), + [anon_sym_restrict] = ACTIONS(2929), + [anon_sym___restrict__] = ACTIONS(2929), + [anon_sym__Atomic] = ACTIONS(2929), + [anon_sym__Noreturn] = ACTIONS(2929), + [anon_sym_noreturn] = ACTIONS(2929), + [anon_sym_mutable] = ACTIONS(2929), + [anon_sym_constinit] = ACTIONS(2929), + [anon_sym_consteval] = ACTIONS(2929), + [sym_primitive_type] = ACTIONS(2929), + [anon_sym_enum] = ACTIONS(2929), + [anon_sym_class] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_union] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_else] = ACTIONS(2929), + [anon_sym_switch] = ACTIONS(2929), + [anon_sym_case] = ACTIONS(2929), + [anon_sym_default] = ACTIONS(2929), + [anon_sym_while] = ACTIONS(2929), + [anon_sym_do] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_goto] = ACTIONS(2929), + [anon_sym___try] = ACTIONS(2929), + [anon_sym___leave] = ACTIONS(2929), + [anon_sym_not] = ACTIONS(2929), + [anon_sym_compl] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2931), + [anon_sym_PLUS_PLUS] = ACTIONS(2931), + [anon_sym_sizeof] = ACTIONS(2929), + [anon_sym___alignof__] = ACTIONS(2929), + [anon_sym___alignof] = ACTIONS(2929), + [anon_sym__alignof] = ACTIONS(2929), + [anon_sym_alignof] = ACTIONS(2929), + [anon_sym__Alignof] = ACTIONS(2929), + [anon_sym_offsetof] = ACTIONS(2929), + [anon_sym__Generic] = ACTIONS(2929), + [anon_sym_asm] = ACTIONS(2929), + [anon_sym___asm__] = ACTIONS(2929), + [sym_number_literal] = ACTIONS(2931), + [anon_sym_L_SQUOTE] = ACTIONS(2931), + [anon_sym_u_SQUOTE] = ACTIONS(2931), + [anon_sym_U_SQUOTE] = ACTIONS(2931), + [anon_sym_u8_SQUOTE] = ACTIONS(2931), + [anon_sym_SQUOTE] = ACTIONS(2931), + [anon_sym_L_DQUOTE] = ACTIONS(2931), + [anon_sym_u_DQUOTE] = ACTIONS(2931), + [anon_sym_U_DQUOTE] = ACTIONS(2931), + [anon_sym_u8_DQUOTE] = ACTIONS(2931), + [anon_sym_DQUOTE] = ACTIONS(2931), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [anon_sym_NULL] = ACTIONS(2929), + [anon_sym_nullptr] = ACTIONS(2929), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2929), + [anon_sym_decltype] = ACTIONS(2929), + [anon_sym_virtual] = ACTIONS(2929), + [anon_sym_alignas] = ACTIONS(2929), + [anon_sym_explicit] = ACTIONS(2929), + [anon_sym_typename] = ACTIONS(2929), + [anon_sym_template] = ACTIONS(2929), + [anon_sym_operator] = ACTIONS(2929), + [anon_sym_try] = ACTIONS(2929), + [anon_sym_delete] = ACTIONS(2929), + [anon_sym_throw] = ACTIONS(2929), + [anon_sym_namespace] = ACTIONS(2929), + [anon_sym_using] = ACTIONS(2929), + [anon_sym_static_assert] = ACTIONS(2929), + [anon_sym_concept] = ACTIONS(2929), + [anon_sym_co_return] = ACTIONS(2929), + [anon_sym_co_yield] = ACTIONS(2929), + [anon_sym_R_DQUOTE] = ACTIONS(2931), + [anon_sym_LR_DQUOTE] = ACTIONS(2931), + [anon_sym_uR_DQUOTE] = ACTIONS(2931), + [anon_sym_UR_DQUOTE] = ACTIONS(2931), + [anon_sym_u8R_DQUOTE] = ACTIONS(2931), + [anon_sym_co_await] = ACTIONS(2929), + [anon_sym_new] = ACTIONS(2929), + [anon_sym_requires] = ACTIONS(2929), + [sym_this] = ACTIONS(2929), + }, + [319] = { + [sym_identifier] = ACTIONS(2933), + [aux_sym_preproc_include_token1] = ACTIONS(2933), + [aux_sym_preproc_def_token1] = ACTIONS(2933), + [aux_sym_preproc_if_token1] = ACTIONS(2933), + [aux_sym_preproc_if_token2] = ACTIONS(2933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), + [aux_sym_preproc_else_token1] = ACTIONS(2933), + [aux_sym_preproc_elif_token1] = ACTIONS(2933), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2933), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2933), + [sym_preproc_directive] = ACTIONS(2933), + [anon_sym_LPAREN2] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_SEMI] = ACTIONS(2935), + [anon_sym___extension__] = ACTIONS(2933), + [anon_sym_typedef] = ACTIONS(2933), + [anon_sym_extern] = ACTIONS(2933), + [anon_sym___attribute__] = ACTIONS(2933), + [anon_sym_COLON_COLON] = ACTIONS(2935), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), + [anon_sym___declspec] = ACTIONS(2933), + [anon_sym___based] = ACTIONS(2933), + [anon_sym___cdecl] = ACTIONS(2933), + [anon_sym___clrcall] = ACTIONS(2933), + [anon_sym___stdcall] = ACTIONS(2933), + [anon_sym___fastcall] = ACTIONS(2933), + [anon_sym___thiscall] = ACTIONS(2933), + [anon_sym___vectorcall] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_signed] = ACTIONS(2933), + [anon_sym_unsigned] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_static] = ACTIONS(2933), + [anon_sym_register] = ACTIONS(2933), + [anon_sym_inline] = ACTIONS(2933), + [anon_sym___inline] = ACTIONS(2933), + [anon_sym___inline__] = ACTIONS(2933), + [anon_sym___forceinline] = ACTIONS(2933), + [anon_sym_thread_local] = ACTIONS(2933), + [anon_sym___thread] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2933), + [anon_sym_constexpr] = ACTIONS(2933), + [anon_sym_volatile] = ACTIONS(2933), + [anon_sym_restrict] = ACTIONS(2933), + [anon_sym___restrict__] = ACTIONS(2933), + [anon_sym__Atomic] = ACTIONS(2933), + [anon_sym__Noreturn] = ACTIONS(2933), + [anon_sym_noreturn] = ACTIONS(2933), + [anon_sym_mutable] = ACTIONS(2933), + [anon_sym_constinit] = ACTIONS(2933), + [anon_sym_consteval] = ACTIONS(2933), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_enum] = ACTIONS(2933), + [anon_sym_class] = ACTIONS(2933), + [anon_sym_struct] = ACTIONS(2933), + [anon_sym_union] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_else] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2933), + [anon_sym_case] = ACTIONS(2933), + [anon_sym_default] = ACTIONS(2933), + [anon_sym_while] = ACTIONS(2933), + [anon_sym_do] = ACTIONS(2933), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_goto] = ACTIONS(2933), + [anon_sym___try] = ACTIONS(2933), + [anon_sym___leave] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2933), + [anon_sym_compl] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_sizeof] = ACTIONS(2933), + [anon_sym___alignof__] = ACTIONS(2933), + [anon_sym___alignof] = ACTIONS(2933), + [anon_sym__alignof] = ACTIONS(2933), + [anon_sym_alignof] = ACTIONS(2933), + [anon_sym__Alignof] = ACTIONS(2933), + [anon_sym_offsetof] = ACTIONS(2933), + [anon_sym__Generic] = ACTIONS(2933), + [anon_sym_asm] = ACTIONS(2933), + [anon_sym___asm__] = ACTIONS(2933), + [sym_number_literal] = ACTIONS(2935), + [anon_sym_L_SQUOTE] = ACTIONS(2935), + [anon_sym_u_SQUOTE] = ACTIONS(2935), + [anon_sym_U_SQUOTE] = ACTIONS(2935), + [anon_sym_u8_SQUOTE] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2935), + [anon_sym_L_DQUOTE] = ACTIONS(2935), + [anon_sym_u_DQUOTE] = ACTIONS(2935), + [anon_sym_U_DQUOTE] = ACTIONS(2935), + [anon_sym_u8_DQUOTE] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2935), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), + [anon_sym_NULL] = ACTIONS(2933), + [anon_sym_nullptr] = ACTIONS(2933), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2933), + [anon_sym_decltype] = ACTIONS(2933), + [anon_sym_virtual] = ACTIONS(2933), + [anon_sym_alignas] = ACTIONS(2933), + [anon_sym_explicit] = ACTIONS(2933), + [anon_sym_typename] = ACTIONS(2933), + [anon_sym_template] = ACTIONS(2933), + [anon_sym_operator] = ACTIONS(2933), + [anon_sym_try] = ACTIONS(2933), + [anon_sym_delete] = ACTIONS(2933), + [anon_sym_throw] = ACTIONS(2933), + [anon_sym_namespace] = ACTIONS(2933), + [anon_sym_using] = ACTIONS(2933), + [anon_sym_static_assert] = ACTIONS(2933), + [anon_sym_concept] = ACTIONS(2933), + [anon_sym_co_return] = ACTIONS(2933), + [anon_sym_co_yield] = ACTIONS(2933), + [anon_sym_R_DQUOTE] = ACTIONS(2935), + [anon_sym_LR_DQUOTE] = ACTIONS(2935), + [anon_sym_uR_DQUOTE] = ACTIONS(2935), + [anon_sym_UR_DQUOTE] = ACTIONS(2935), + [anon_sym_u8R_DQUOTE] = ACTIONS(2935), + [anon_sym_co_await] = ACTIONS(2933), + [anon_sym_new] = ACTIONS(2933), + [anon_sym_requires] = ACTIONS(2933), + [sym_this] = ACTIONS(2933), + }, + [320] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [321] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [322] = { + [sym_identifier] = ACTIONS(2937), + [aux_sym_preproc_include_token1] = ACTIONS(2937), + [aux_sym_preproc_def_token1] = ACTIONS(2937), + [aux_sym_preproc_if_token1] = ACTIONS(2937), + [aux_sym_preproc_if_token2] = ACTIONS(2937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), + [aux_sym_preproc_else_token1] = ACTIONS(2937), + [aux_sym_preproc_elif_token1] = ACTIONS(2937), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2937), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2937), + [sym_preproc_directive] = ACTIONS(2937), + [anon_sym_LPAREN2] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2939), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym_typedef] = ACTIONS(2937), + [anon_sym_extern] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(2937), + [anon_sym_COLON_COLON] = ACTIONS(2939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), + [anon_sym___declspec] = ACTIONS(2937), + [anon_sym___based] = ACTIONS(2937), + [anon_sym___cdecl] = ACTIONS(2937), + [anon_sym___clrcall] = ACTIONS(2937), + [anon_sym___stdcall] = ACTIONS(2937), + [anon_sym___fastcall] = ACTIONS(2937), + [anon_sym___thiscall] = ACTIONS(2937), + [anon_sym___vectorcall] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2939), [anon_sym_signed] = ACTIONS(2937), [anon_sym_unsigned] = ACTIONS(2937), [anon_sym_long] = ACTIONS(2937), @@ -132421,7 +136317,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2937), [sym_this] = ACTIONS(2937), }, - [297] = { + [323] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [324] = { + [sym_catch_clause] = STATE(245), + [aux_sym_constructor_try_statement_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(2834), + [aux_sym_preproc_include_token1] = ACTIONS(2834), + [aux_sym_preproc_def_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token2] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), + [aux_sym_preproc_else_token1] = ACTIONS(2834), + [aux_sym_preproc_elif_token1] = ACTIONS(2834), + [sym_preproc_directive] = ACTIONS(2834), + [anon_sym_LPAREN2] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_PLUS] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_AMP_AMP] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym___extension__] = ACTIONS(2834), + [anon_sym_typedef] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym___attribute__] = ACTIONS(2834), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), + [anon_sym___declspec] = ACTIONS(2834), + [anon_sym___based] = ACTIONS(2834), + [anon_sym___cdecl] = ACTIONS(2834), + [anon_sym___clrcall] = ACTIONS(2834), + [anon_sym___stdcall] = ACTIONS(2834), + [anon_sym___fastcall] = ACTIONS(2834), + [anon_sym___thiscall] = ACTIONS(2834), + [anon_sym___vectorcall] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_signed] = ACTIONS(2834), + [anon_sym_unsigned] = ACTIONS(2834), + [anon_sym_long] = ACTIONS(2834), + [anon_sym_short] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_register] = ACTIONS(2834), + [anon_sym_inline] = ACTIONS(2834), + [anon_sym___inline] = ACTIONS(2834), + [anon_sym___inline__] = ACTIONS(2834), + [anon_sym___forceinline] = ACTIONS(2834), + [anon_sym_thread_local] = ACTIONS(2834), + [anon_sym___thread] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_constexpr] = ACTIONS(2834), + [anon_sym_volatile] = ACTIONS(2834), + [anon_sym_restrict] = ACTIONS(2834), + [anon_sym___restrict__] = ACTIONS(2834), + [anon_sym__Atomic] = ACTIONS(2834), + [anon_sym__Noreturn] = ACTIONS(2834), + [anon_sym_noreturn] = ACTIONS(2834), + [anon_sym_mutable] = ACTIONS(2834), + [anon_sym_constinit] = ACTIONS(2834), + [anon_sym_consteval] = ACTIONS(2834), + [sym_primitive_type] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_class] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_switch] = ACTIONS(2834), + [anon_sym_case] = ACTIONS(2834), + [anon_sym_default] = ACTIONS(2834), + [anon_sym_while] = ACTIONS(2834), + [anon_sym_do] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_goto] = ACTIONS(2834), + [anon_sym___try] = ACTIONS(2834), + [anon_sym___leave] = ACTIONS(2834), + [anon_sym_not] = ACTIONS(2834), + [anon_sym_compl] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_PLUS_PLUS] = ACTIONS(2836), + [anon_sym_sizeof] = ACTIONS(2834), + [anon_sym___alignof__] = ACTIONS(2834), + [anon_sym___alignof] = ACTIONS(2834), + [anon_sym__alignof] = ACTIONS(2834), + [anon_sym_alignof] = ACTIONS(2834), + [anon_sym__Alignof] = ACTIONS(2834), + [anon_sym_offsetof] = ACTIONS(2834), + [anon_sym__Generic] = ACTIONS(2834), + [anon_sym_asm] = ACTIONS(2834), + [anon_sym___asm__] = ACTIONS(2834), + [sym_number_literal] = ACTIONS(2836), + [anon_sym_L_SQUOTE] = ACTIONS(2836), + [anon_sym_u_SQUOTE] = ACTIONS(2836), + [anon_sym_U_SQUOTE] = ACTIONS(2836), + [anon_sym_u8_SQUOTE] = ACTIONS(2836), + [anon_sym_SQUOTE] = ACTIONS(2836), + [anon_sym_L_DQUOTE] = ACTIONS(2836), + [anon_sym_u_DQUOTE] = ACTIONS(2836), + [anon_sym_U_DQUOTE] = ACTIONS(2836), + [anon_sym_u8_DQUOTE] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2836), + [sym_true] = ACTIONS(2834), + [sym_false] = ACTIONS(2834), + [anon_sym_NULL] = ACTIONS(2834), + [anon_sym_nullptr] = ACTIONS(2834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2834), + [anon_sym_decltype] = ACTIONS(2834), + [anon_sym_virtual] = ACTIONS(2834), + [anon_sym_alignas] = ACTIONS(2834), + [anon_sym_explicit] = ACTIONS(2834), + [anon_sym_typename] = ACTIONS(2834), + [anon_sym_template] = ACTIONS(2834), + [anon_sym_operator] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2834), + [anon_sym_delete] = ACTIONS(2834), + [anon_sym_throw] = ACTIONS(2834), + [anon_sym_namespace] = ACTIONS(2834), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_static_assert] = ACTIONS(2834), + [anon_sym_concept] = ACTIONS(2834), + [anon_sym_co_return] = ACTIONS(2834), + [anon_sym_co_yield] = ACTIONS(2834), + [anon_sym_catch] = ACTIONS(2861), + [anon_sym_R_DQUOTE] = ACTIONS(2836), + [anon_sym_LR_DQUOTE] = ACTIONS(2836), + [anon_sym_uR_DQUOTE] = ACTIONS(2836), + [anon_sym_UR_DQUOTE] = ACTIONS(2836), + [anon_sym_u8R_DQUOTE] = ACTIONS(2836), + [anon_sym_co_await] = ACTIONS(2834), + [anon_sym_new] = ACTIONS(2834), + [anon_sym_requires] = ACTIONS(2834), + [sym_this] = ACTIONS(2834), + }, + [325] = { [sym_identifier] = ACTIONS(2941), [aux_sym_preproc_include_token1] = ACTIONS(2941), [aux_sym_preproc_def_token1] = ACTIONS(2941), @@ -132558,7 +136728,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2941), [sym_this] = ACTIONS(2941), }, - [298] = { + [326] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [327] = { [sym_identifier] = ACTIONS(2945), [aux_sym_preproc_include_token1] = ACTIONS(2945), [aux_sym_preproc_def_token1] = ACTIONS(2945), @@ -132695,692 +137002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2945), [sym_this] = ACTIONS(2945), }, - [299] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [300] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [301] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3672), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8716), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(9008), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9012), - [sym__unary_right_fold] = STATE(9013), - [sym__binary_fold] = STATE(9015), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [302] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(9219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8897), - [sym__unary_right_fold] = STATE(8896), - [sym__binary_fold] = STATE(8895), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [303] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8983), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8897), - [sym__unary_right_fold] = STATE(8896), - [sym__binary_fold] = STATE(8895), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [304] = { + [328] = { [sym_identifier] = ACTIONS(2949), [aux_sym_preproc_include_token1] = ACTIONS(2949), [aux_sym_preproc_def_token1] = ACTIONS(2949), @@ -133517,7 +137139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2949), [sym_this] = ACTIONS(2949), }, - [305] = { + [329] = { [sym_identifier] = ACTIONS(2953), [aux_sym_preproc_include_token1] = ACTIONS(2953), [aux_sym_preproc_def_token1] = ACTIONS(2953), @@ -133654,7 +137276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2953), [sym_this] = ACTIONS(2953), }, - [306] = { + [330] = { [sym_identifier] = ACTIONS(2957), [aux_sym_preproc_include_token1] = ACTIONS(2957), [aux_sym_preproc_def_token1] = ACTIONS(2957), @@ -133791,7 +137413,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2957), [sym_this] = ACTIONS(2957), }, - [307] = { + [331] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [332] = { [sym_identifier] = ACTIONS(2961), [aux_sym_preproc_include_token1] = ACTIONS(2961), [aux_sym_preproc_def_token1] = ACTIONS(2961), @@ -133928,7 +137687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2961), [sym_this] = ACTIONS(2961), }, - [308] = { + [333] = { [sym_identifier] = ACTIONS(2965), [aux_sym_preproc_include_token1] = ACTIONS(2965), [aux_sym_preproc_def_token1] = ACTIONS(2965), @@ -134065,144 +137824,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2965), [sym_this] = ACTIONS(2965), }, - [309] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [334] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [310] = { + [335] = { [sym_identifier] = ACTIONS(2969), [aux_sym_preproc_include_token1] = ACTIONS(2969), [aux_sym_preproc_def_token1] = ACTIONS(2969), @@ -134339,281 +138098,555 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2969), [sym_this] = ACTIONS(2969), }, - [311] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [336] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [312] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [337] = { + [sym_catch_clause] = STATE(245), + [aux_sym_constructor_try_statement_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(2838), + [aux_sym_preproc_include_token1] = ACTIONS(2838), + [aux_sym_preproc_def_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token2] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), + [aux_sym_preproc_else_token1] = ACTIONS(2838), + [aux_sym_preproc_elif_token1] = ACTIONS(2838), + [sym_preproc_directive] = ACTIONS(2838), + [anon_sym_LPAREN2] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_PLUS] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym___extension__] = ACTIONS(2838), + [anon_sym_typedef] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym___attribute__] = ACTIONS(2838), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), + [anon_sym___declspec] = ACTIONS(2838), + [anon_sym___based] = ACTIONS(2838), + [anon_sym___cdecl] = ACTIONS(2838), + [anon_sym___clrcall] = ACTIONS(2838), + [anon_sym___stdcall] = ACTIONS(2838), + [anon_sym___fastcall] = ACTIONS(2838), + [anon_sym___thiscall] = ACTIONS(2838), + [anon_sym___vectorcall] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_signed] = ACTIONS(2838), + [anon_sym_unsigned] = ACTIONS(2838), + [anon_sym_long] = ACTIONS(2838), + [anon_sym_short] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_register] = ACTIONS(2838), + [anon_sym_inline] = ACTIONS(2838), + [anon_sym___inline] = ACTIONS(2838), + [anon_sym___inline__] = ACTIONS(2838), + [anon_sym___forceinline] = ACTIONS(2838), + [anon_sym_thread_local] = ACTIONS(2838), + [anon_sym___thread] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_constexpr] = ACTIONS(2838), + [anon_sym_volatile] = ACTIONS(2838), + [anon_sym_restrict] = ACTIONS(2838), + [anon_sym___restrict__] = ACTIONS(2838), + [anon_sym__Atomic] = ACTIONS(2838), + [anon_sym__Noreturn] = ACTIONS(2838), + [anon_sym_noreturn] = ACTIONS(2838), + [anon_sym_mutable] = ACTIONS(2838), + [anon_sym_constinit] = ACTIONS(2838), + [anon_sym_consteval] = ACTIONS(2838), + [sym_primitive_type] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_class] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_switch] = ACTIONS(2838), + [anon_sym_case] = ACTIONS(2838), + [anon_sym_default] = ACTIONS(2838), + [anon_sym_while] = ACTIONS(2838), + [anon_sym_do] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_goto] = ACTIONS(2838), + [anon_sym___try] = ACTIONS(2838), + [anon_sym___leave] = ACTIONS(2838), + [anon_sym_not] = ACTIONS(2838), + [anon_sym_compl] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_sizeof] = ACTIONS(2838), + [anon_sym___alignof__] = ACTIONS(2838), + [anon_sym___alignof] = ACTIONS(2838), + [anon_sym__alignof] = ACTIONS(2838), + [anon_sym_alignof] = ACTIONS(2838), + [anon_sym__Alignof] = ACTIONS(2838), + [anon_sym_offsetof] = ACTIONS(2838), + [anon_sym__Generic] = ACTIONS(2838), + [anon_sym_asm] = ACTIONS(2838), + [anon_sym___asm__] = ACTIONS(2838), + [sym_number_literal] = ACTIONS(2840), + [anon_sym_L_SQUOTE] = ACTIONS(2840), + [anon_sym_u_SQUOTE] = ACTIONS(2840), + [anon_sym_U_SQUOTE] = ACTIONS(2840), + [anon_sym_u8_SQUOTE] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2840), + [anon_sym_L_DQUOTE] = ACTIONS(2840), + [anon_sym_u_DQUOTE] = ACTIONS(2840), + [anon_sym_U_DQUOTE] = ACTIONS(2840), + [anon_sym_u8_DQUOTE] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2840), + [sym_true] = ACTIONS(2838), + [sym_false] = ACTIONS(2838), + [anon_sym_NULL] = ACTIONS(2838), + [anon_sym_nullptr] = ACTIONS(2838), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2838), + [anon_sym_decltype] = ACTIONS(2838), + [anon_sym_virtual] = ACTIONS(2838), + [anon_sym_alignas] = ACTIONS(2838), + [anon_sym_explicit] = ACTIONS(2838), + [anon_sym_typename] = ACTIONS(2838), + [anon_sym_template] = ACTIONS(2838), + [anon_sym_operator] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2838), + [anon_sym_delete] = ACTIONS(2838), + [anon_sym_throw] = ACTIONS(2838), + [anon_sym_namespace] = ACTIONS(2838), + [anon_sym_using] = ACTIONS(2838), + [anon_sym_static_assert] = ACTIONS(2838), + [anon_sym_concept] = ACTIONS(2838), + [anon_sym_co_return] = ACTIONS(2838), + [anon_sym_co_yield] = ACTIONS(2838), + [anon_sym_catch] = ACTIONS(2861), + [anon_sym_R_DQUOTE] = ACTIONS(2840), + [anon_sym_LR_DQUOTE] = ACTIONS(2840), + [anon_sym_uR_DQUOTE] = ACTIONS(2840), + [anon_sym_UR_DQUOTE] = ACTIONS(2840), + [anon_sym_u8R_DQUOTE] = ACTIONS(2840), + [anon_sym_co_await] = ACTIONS(2838), + [anon_sym_new] = ACTIONS(2838), + [anon_sym_requires] = ACTIONS(2838), + [sym_this] = ACTIONS(2838), + }, + [338] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [313] = { + [339] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [340] = { [sym_identifier] = ACTIONS(2973), [aux_sym_preproc_include_token1] = ACTIONS(2973), [aux_sym_preproc_def_token1] = ACTIONS(2973), @@ -134750,7 +138783,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2973), [sym_this] = ACTIONS(2973), }, - [314] = { + [341] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [342] = { [sym_identifier] = ACTIONS(2977), [aux_sym_preproc_include_token1] = ACTIONS(2977), [aux_sym_preproc_def_token1] = ACTIONS(2977), @@ -134887,1178 +139057,2017 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2977), [sym_this] = ACTIONS(2977), }, - [315] = { - [sym_catch_clause] = STATE(237), - [aux_sym_constructor_try_statement_repeat1] = STATE(237), - [sym_identifier] = ACTIONS(2836), - [aux_sym_preproc_include_token1] = ACTIONS(2836), - [aux_sym_preproc_def_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token2] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), - [aux_sym_preproc_else_token1] = ACTIONS(2836), - [aux_sym_preproc_elif_token1] = ACTIONS(2836), - [sym_preproc_directive] = ACTIONS(2836), - [anon_sym_LPAREN2] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_SEMI] = ACTIONS(2838), - [anon_sym___extension__] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym___attribute__] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2838), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), - [anon_sym___declspec] = ACTIONS(2836), - [anon_sym___based] = ACTIONS(2836), - [anon_sym___cdecl] = ACTIONS(2836), - [anon_sym___clrcall] = ACTIONS(2836), - [anon_sym___stdcall] = ACTIONS(2836), - [anon_sym___fastcall] = ACTIONS(2836), - [anon_sym___thiscall] = ACTIONS(2836), - [anon_sym___vectorcall] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_signed] = ACTIONS(2836), - [anon_sym_unsigned] = ACTIONS(2836), - [anon_sym_long] = ACTIONS(2836), - [anon_sym_short] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_register] = ACTIONS(2836), - [anon_sym_inline] = ACTIONS(2836), - [anon_sym___inline] = ACTIONS(2836), - [anon_sym___inline__] = ACTIONS(2836), - [anon_sym___forceinline] = ACTIONS(2836), - [anon_sym_thread_local] = ACTIONS(2836), - [anon_sym___thread] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_constexpr] = ACTIONS(2836), - [anon_sym_volatile] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(2836), - [anon_sym___restrict__] = ACTIONS(2836), - [anon_sym__Atomic] = ACTIONS(2836), - [anon_sym__Noreturn] = ACTIONS(2836), - [anon_sym_noreturn] = ACTIONS(2836), - [anon_sym_mutable] = ACTIONS(2836), - [anon_sym_constinit] = ACTIONS(2836), - [anon_sym_consteval] = ACTIONS(2836), - [sym_primitive_type] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_switch] = ACTIONS(2836), - [anon_sym_case] = ACTIONS(2836), - [anon_sym_default] = ACTIONS(2836), - [anon_sym_while] = ACTIONS(2836), - [anon_sym_do] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_goto] = ACTIONS(2836), - [anon_sym___try] = ACTIONS(2836), - [anon_sym___leave] = ACTIONS(2836), - [anon_sym_not] = ACTIONS(2836), - [anon_sym_compl] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_sizeof] = ACTIONS(2836), - [anon_sym___alignof__] = ACTIONS(2836), - [anon_sym___alignof] = ACTIONS(2836), - [anon_sym__alignof] = ACTIONS(2836), - [anon_sym_alignof] = ACTIONS(2836), - [anon_sym__Alignof] = ACTIONS(2836), - [anon_sym_offsetof] = ACTIONS(2836), - [anon_sym__Generic] = ACTIONS(2836), - [anon_sym_asm] = ACTIONS(2836), - [anon_sym___asm__] = ACTIONS(2836), - [sym_number_literal] = ACTIONS(2838), - [anon_sym_L_SQUOTE] = ACTIONS(2838), - [anon_sym_u_SQUOTE] = ACTIONS(2838), - [anon_sym_U_SQUOTE] = ACTIONS(2838), - [anon_sym_u8_SQUOTE] = ACTIONS(2838), - [anon_sym_SQUOTE] = ACTIONS(2838), - [anon_sym_L_DQUOTE] = ACTIONS(2838), - [anon_sym_u_DQUOTE] = ACTIONS(2838), - [anon_sym_U_DQUOTE] = ACTIONS(2838), - [anon_sym_u8_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [anon_sym_NULL] = ACTIONS(2836), - [anon_sym_nullptr] = ACTIONS(2836), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2836), - [anon_sym_decltype] = ACTIONS(2836), - [anon_sym_virtual] = ACTIONS(2836), - [anon_sym_alignas] = ACTIONS(2836), - [anon_sym_explicit] = ACTIONS(2836), - [anon_sym_typename] = ACTIONS(2836), - [anon_sym_template] = ACTIONS(2836), - [anon_sym_operator] = ACTIONS(2836), - [anon_sym_try] = ACTIONS(2836), - [anon_sym_delete] = ACTIONS(2836), - [anon_sym_throw] = ACTIONS(2836), - [anon_sym_namespace] = ACTIONS(2836), - [anon_sym_using] = ACTIONS(2836), - [anon_sym_static_assert] = ACTIONS(2836), - [anon_sym_concept] = ACTIONS(2836), - [anon_sym_co_return] = ACTIONS(2836), - [anon_sym_co_yield] = ACTIONS(2836), - [anon_sym_catch] = ACTIONS(2857), - [anon_sym_R_DQUOTE] = ACTIONS(2838), - [anon_sym_LR_DQUOTE] = ACTIONS(2838), - [anon_sym_uR_DQUOTE] = ACTIONS(2838), - [anon_sym_UR_DQUOTE] = ACTIONS(2838), - [anon_sym_u8R_DQUOTE] = ACTIONS(2838), - [anon_sym_co_await] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2836), - [anon_sym_requires] = ACTIONS(2836), - [sym_this] = ACTIONS(2836), - }, - [316] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [343] = { + [sym_identifier] = ACTIONS(2981), + [aux_sym_preproc_include_token1] = ACTIONS(2981), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token2] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), + [aux_sym_preproc_else_token1] = ACTIONS(2981), + [aux_sym_preproc_elif_token1] = ACTIONS(2981), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2981), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2981), + [sym_preproc_directive] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym___extension__] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym___attribute__] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), + [anon_sym___declspec] = ACTIONS(2981), + [anon_sym___based] = ACTIONS(2981), + [anon_sym___cdecl] = ACTIONS(2981), + [anon_sym___clrcall] = ACTIONS(2981), + [anon_sym___stdcall] = ACTIONS(2981), + [anon_sym___fastcall] = ACTIONS(2981), + [anon_sym___thiscall] = ACTIONS(2981), + [anon_sym___vectorcall] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_signed] = ACTIONS(2981), + [anon_sym_unsigned] = ACTIONS(2981), + [anon_sym_long] = ACTIONS(2981), + [anon_sym_short] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_register] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym___inline] = ACTIONS(2981), + [anon_sym___inline__] = ACTIONS(2981), + [anon_sym___forceinline] = ACTIONS(2981), + [anon_sym_thread_local] = ACTIONS(2981), + [anon_sym___thread] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_constexpr] = ACTIONS(2981), + [anon_sym_volatile] = ACTIONS(2981), + [anon_sym_restrict] = ACTIONS(2981), + [anon_sym___restrict__] = ACTIONS(2981), + [anon_sym__Atomic] = ACTIONS(2981), + [anon_sym__Noreturn] = ACTIONS(2981), + [anon_sym_noreturn] = ACTIONS(2981), + [anon_sym_mutable] = ACTIONS(2981), + [anon_sym_constinit] = ACTIONS(2981), + [anon_sym_consteval] = ACTIONS(2981), + [sym_primitive_type] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_else] = ACTIONS(2981), + [anon_sym_switch] = ACTIONS(2981), + [anon_sym_case] = ACTIONS(2981), + [anon_sym_default] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_do] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_goto] = ACTIONS(2981), + [anon_sym___try] = ACTIONS(2981), + [anon_sym___leave] = ACTIONS(2981), + [anon_sym_not] = ACTIONS(2981), + [anon_sym_compl] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_sizeof] = ACTIONS(2981), + [anon_sym___alignof__] = ACTIONS(2981), + [anon_sym___alignof] = ACTIONS(2981), + [anon_sym__alignof] = ACTIONS(2981), + [anon_sym_alignof] = ACTIONS(2981), + [anon_sym__Alignof] = ACTIONS(2981), + [anon_sym_offsetof] = ACTIONS(2981), + [anon_sym__Generic] = ACTIONS(2981), + [anon_sym_asm] = ACTIONS(2981), + [anon_sym___asm__] = ACTIONS(2981), + [sym_number_literal] = ACTIONS(2983), + [anon_sym_L_SQUOTE] = ACTIONS(2983), + [anon_sym_u_SQUOTE] = ACTIONS(2983), + [anon_sym_U_SQUOTE] = ACTIONS(2983), + [anon_sym_u8_SQUOTE] = ACTIONS(2983), + [anon_sym_SQUOTE] = ACTIONS(2983), + [anon_sym_L_DQUOTE] = ACTIONS(2983), + [anon_sym_u_DQUOTE] = ACTIONS(2983), + [anon_sym_U_DQUOTE] = ACTIONS(2983), + [anon_sym_u8_DQUOTE] = ACTIONS(2983), + [anon_sym_DQUOTE] = ACTIONS(2983), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [anon_sym_NULL] = ACTIONS(2981), + [anon_sym_nullptr] = ACTIONS(2981), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2981), + [anon_sym_virtual] = ACTIONS(2981), + [anon_sym_alignas] = ACTIONS(2981), + [anon_sym_explicit] = ACTIONS(2981), + [anon_sym_typename] = ACTIONS(2981), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_delete] = ACTIONS(2981), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_static_assert] = ACTIONS(2981), + [anon_sym_concept] = ACTIONS(2981), + [anon_sym_co_return] = ACTIONS(2981), + [anon_sym_co_yield] = ACTIONS(2981), + [anon_sym_R_DQUOTE] = ACTIONS(2983), + [anon_sym_LR_DQUOTE] = ACTIONS(2983), + [anon_sym_uR_DQUOTE] = ACTIONS(2983), + [anon_sym_UR_DQUOTE] = ACTIONS(2983), + [anon_sym_u8R_DQUOTE] = ACTIONS(2983), + [anon_sym_co_await] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_requires] = ACTIONS(2981), + [sym_this] = ACTIONS(2981), }, - [317] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [344] = { + [sym_identifier] = ACTIONS(2985), + [aux_sym_preproc_include_token1] = ACTIONS(2985), + [aux_sym_preproc_def_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token2] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), + [aux_sym_preproc_else_token1] = ACTIONS(2985), + [aux_sym_preproc_elif_token1] = ACTIONS(2985), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2985), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2985), + [sym_preproc_directive] = ACTIONS(2985), + [anon_sym_LPAREN2] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym___extension__] = ACTIONS(2985), + [anon_sym_typedef] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym___attribute__] = ACTIONS(2985), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), + [anon_sym___declspec] = ACTIONS(2985), + [anon_sym___based] = ACTIONS(2985), + [anon_sym___cdecl] = ACTIONS(2985), + [anon_sym___clrcall] = ACTIONS(2985), + [anon_sym___stdcall] = ACTIONS(2985), + [anon_sym___fastcall] = ACTIONS(2985), + [anon_sym___thiscall] = ACTIONS(2985), + [anon_sym___vectorcall] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_signed] = ACTIONS(2985), + [anon_sym_unsigned] = ACTIONS(2985), + [anon_sym_long] = ACTIONS(2985), + [anon_sym_short] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_register] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym___inline] = ACTIONS(2985), + [anon_sym___inline__] = ACTIONS(2985), + [anon_sym___forceinline] = ACTIONS(2985), + [anon_sym_thread_local] = ACTIONS(2985), + [anon_sym___thread] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_constexpr] = ACTIONS(2985), + [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_restrict] = ACTIONS(2985), + [anon_sym___restrict__] = ACTIONS(2985), + [anon_sym__Atomic] = ACTIONS(2985), + [anon_sym__Noreturn] = ACTIONS(2985), + [anon_sym_noreturn] = ACTIONS(2985), + [anon_sym_mutable] = ACTIONS(2985), + [anon_sym_constinit] = ACTIONS(2985), + [anon_sym_consteval] = ACTIONS(2985), + [sym_primitive_type] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_case] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym___try] = ACTIONS(2985), + [anon_sym___leave] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_compl] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_sizeof] = ACTIONS(2985), + [anon_sym___alignof__] = ACTIONS(2985), + [anon_sym___alignof] = ACTIONS(2985), + [anon_sym__alignof] = ACTIONS(2985), + [anon_sym_alignof] = ACTIONS(2985), + [anon_sym__Alignof] = ACTIONS(2985), + [anon_sym_offsetof] = ACTIONS(2985), + [anon_sym__Generic] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym___asm__] = ACTIONS(2985), + [sym_number_literal] = ACTIONS(2987), + [anon_sym_L_SQUOTE] = ACTIONS(2987), + [anon_sym_u_SQUOTE] = ACTIONS(2987), + [anon_sym_U_SQUOTE] = ACTIONS(2987), + [anon_sym_u8_SQUOTE] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_L_DQUOTE] = ACTIONS(2987), + [anon_sym_u_DQUOTE] = ACTIONS(2987), + [anon_sym_U_DQUOTE] = ACTIONS(2987), + [anon_sym_u8_DQUOTE] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [anon_sym_NULL] = ACTIONS(2985), + [anon_sym_nullptr] = ACTIONS(2985), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2985), + [anon_sym_virtual] = ACTIONS(2985), + [anon_sym_alignas] = ACTIONS(2985), + [anon_sym_explicit] = ACTIONS(2985), + [anon_sym_typename] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(2985), + [anon_sym_operator] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_delete] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_namespace] = ACTIONS(2985), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_static_assert] = ACTIONS(2985), + [anon_sym_concept] = ACTIONS(2985), + [anon_sym_co_return] = ACTIONS(2985), + [anon_sym_co_yield] = ACTIONS(2985), + [anon_sym_R_DQUOTE] = ACTIONS(2987), + [anon_sym_LR_DQUOTE] = ACTIONS(2987), + [anon_sym_uR_DQUOTE] = ACTIONS(2987), + [anon_sym_UR_DQUOTE] = ACTIONS(2987), + [anon_sym_u8R_DQUOTE] = ACTIONS(2987), + [anon_sym_co_await] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_requires] = ACTIONS(2985), + [sym_this] = ACTIONS(2985), }, - [318] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [345] = { + [sym_identifier] = ACTIONS(2989), + [aux_sym_preproc_include_token1] = ACTIONS(2989), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token2] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2989), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2989), + [sym_preproc_directive] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym___based] = ACTIONS(2989), + [anon_sym___cdecl] = ACTIONS(2989), + [anon_sym___clrcall] = ACTIONS(2989), + [anon_sym___stdcall] = ACTIONS(2989), + [anon_sym___fastcall] = ACTIONS(2989), + [anon_sym___thiscall] = ACTIONS(2989), + [anon_sym___vectorcall] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_else] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_case] = ACTIONS(2989), + [anon_sym_default] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym___try] = ACTIONS(2989), + [anon_sym___leave] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2989), + [anon_sym_compl] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2989), + [anon_sym___alignof__] = ACTIONS(2989), + [anon_sym___alignof] = ACTIONS(2989), + [anon_sym__alignof] = ACTIONS(2989), + [anon_sym_alignof] = ACTIONS(2989), + [anon_sym__Alignof] = ACTIONS(2989), + [anon_sym_offsetof] = ACTIONS(2989), + [anon_sym__Generic] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym___asm__] = ACTIONS(2989), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [anon_sym_NULL] = ACTIONS(2989), + [anon_sym_nullptr] = ACTIONS(2989), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_explicit] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_operator] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_namespace] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_static_assert] = ACTIONS(2989), + [anon_sym_concept] = ACTIONS(2989), + [anon_sym_co_return] = ACTIONS(2989), + [anon_sym_co_yield] = ACTIONS(2989), + [anon_sym_R_DQUOTE] = ACTIONS(2991), + [anon_sym_LR_DQUOTE] = ACTIONS(2991), + [anon_sym_uR_DQUOTE] = ACTIONS(2991), + [anon_sym_UR_DQUOTE] = ACTIONS(2991), + [anon_sym_u8R_DQUOTE] = ACTIONS(2991), + [anon_sym_co_await] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_requires] = ACTIONS(2989), + [sym_this] = ACTIONS(2989), }, - [319] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [346] = { + [sym_identifier] = ACTIONS(2993), + [aux_sym_preproc_include_token1] = ACTIONS(2993), + [aux_sym_preproc_def_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token2] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), + [aux_sym_preproc_else_token1] = ACTIONS(2993), + [aux_sym_preproc_elif_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym___attribute__] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), + [anon_sym___declspec] = ACTIONS(2993), + [anon_sym___based] = ACTIONS(2993), + [anon_sym___cdecl] = ACTIONS(2993), + [anon_sym___clrcall] = ACTIONS(2993), + [anon_sym___stdcall] = ACTIONS(2993), + [anon_sym___fastcall] = ACTIONS(2993), + [anon_sym___thiscall] = ACTIONS(2993), + [anon_sym___vectorcall] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2993), + [anon_sym_unsigned] = ACTIONS(2993), + [anon_sym_long] = ACTIONS(2993), + [anon_sym_short] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_register] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym___inline] = ACTIONS(2993), + [anon_sym___inline__] = ACTIONS(2993), + [anon_sym___forceinline] = ACTIONS(2993), + [anon_sym_thread_local] = ACTIONS(2993), + [anon_sym___thread] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_constexpr] = ACTIONS(2993), + [anon_sym_volatile] = ACTIONS(2993), + [anon_sym_restrict] = ACTIONS(2993), + [anon_sym___restrict__] = ACTIONS(2993), + [anon_sym__Atomic] = ACTIONS(2993), + [anon_sym__Noreturn] = ACTIONS(2993), + [anon_sym_noreturn] = ACTIONS(2993), + [anon_sym_mutable] = ACTIONS(2993), + [anon_sym_constinit] = ACTIONS(2993), + [anon_sym_consteval] = ACTIONS(2993), + [sym_primitive_type] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym___try] = ACTIONS(2993), + [anon_sym___leave] = ACTIONS(2993), + [anon_sym_not] = ACTIONS(2993), + [anon_sym_compl] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2993), + [anon_sym___alignof] = ACTIONS(2993), + [anon_sym__alignof] = ACTIONS(2993), + [anon_sym_alignof] = ACTIONS(2993), + [anon_sym__Alignof] = ACTIONS(2993), + [anon_sym_offsetof] = ACTIONS(2993), + [anon_sym__Generic] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym___asm__] = ACTIONS(2993), + [sym_number_literal] = ACTIONS(2995), + [anon_sym_L_SQUOTE] = ACTIONS(2995), + [anon_sym_u_SQUOTE] = ACTIONS(2995), + [anon_sym_U_SQUOTE] = ACTIONS(2995), + [anon_sym_u8_SQUOTE] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_L_DQUOTE] = ACTIONS(2995), + [anon_sym_u_DQUOTE] = ACTIONS(2995), + [anon_sym_U_DQUOTE] = ACTIONS(2995), + [anon_sym_u8_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [anon_sym_NULL] = ACTIONS(2993), + [anon_sym_nullptr] = ACTIONS(2993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2993), + [anon_sym_virtual] = ACTIONS(2993), + [anon_sym_alignas] = ACTIONS(2993), + [anon_sym_explicit] = ACTIONS(2993), + [anon_sym_typename] = ACTIONS(2993), + [anon_sym_template] = ACTIONS(2993), + [anon_sym_operator] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_delete] = ACTIONS(2993), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_namespace] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_static_assert] = ACTIONS(2993), + [anon_sym_concept] = ACTIONS(2993), + [anon_sym_co_return] = ACTIONS(2993), + [anon_sym_co_yield] = ACTIONS(2993), + [anon_sym_R_DQUOTE] = ACTIONS(2995), + [anon_sym_LR_DQUOTE] = ACTIONS(2995), + [anon_sym_uR_DQUOTE] = ACTIONS(2995), + [anon_sym_UR_DQUOTE] = ACTIONS(2995), + [anon_sym_u8R_DQUOTE] = ACTIONS(2995), + [anon_sym_co_await] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_requires] = ACTIONS(2993), + [sym_this] = ACTIONS(2993), }, - [320] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3672), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8716), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(9054), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9012), - [sym__unary_right_fold] = STATE(9013), - [sym__binary_fold] = STATE(9015), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [347] = { + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_include_token1] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token2] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym___cdecl] = ACTIONS(2997), + [anon_sym___clrcall] = ACTIONS(2997), + [anon_sym___stdcall] = ACTIONS(2997), + [anon_sym___fastcall] = ACTIONS(2997), + [anon_sym___thiscall] = ACTIONS(2997), + [anon_sym___vectorcall] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_switch] = ACTIONS(2997), + [anon_sym_case] = ACTIONS(2997), + [anon_sym_default] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym___try] = ACTIONS(2997), + [anon_sym___leave] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2997), + [anon_sym_compl] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(2997), + [anon_sym___alignof__] = ACTIONS(2997), + [anon_sym___alignof] = ACTIONS(2997), + [anon_sym__alignof] = ACTIONS(2997), + [anon_sym_alignof] = ACTIONS(2997), + [anon_sym__Alignof] = ACTIONS(2997), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym___asm__] = ACTIONS(2997), + [sym_number_literal] = ACTIONS(2999), + [anon_sym_L_SQUOTE] = ACTIONS(2999), + [anon_sym_u_SQUOTE] = ACTIONS(2999), + [anon_sym_U_SQUOTE] = ACTIONS(2999), + [anon_sym_u8_SQUOTE] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_L_DQUOTE] = ACTIONS(2999), + [anon_sym_u_DQUOTE] = ACTIONS(2999), + [anon_sym_U_DQUOTE] = ACTIONS(2999), + [anon_sym_u8_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [anon_sym_NULL] = ACTIONS(2997), + [anon_sym_nullptr] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_delete] = ACTIONS(2997), + [anon_sym_throw] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), + [anon_sym_concept] = ACTIONS(2997), + [anon_sym_co_return] = ACTIONS(2997), + [anon_sym_co_yield] = ACTIONS(2997), + [anon_sym_R_DQUOTE] = ACTIONS(2999), + [anon_sym_LR_DQUOTE] = ACTIONS(2999), + [anon_sym_uR_DQUOTE] = ACTIONS(2999), + [anon_sym_UR_DQUOTE] = ACTIONS(2999), + [anon_sym_u8R_DQUOTE] = ACTIONS(2999), + [anon_sym_co_await] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_requires] = ACTIONS(2997), + [sym_this] = ACTIONS(2997), }, - [321] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [348] = { + [sym_catch_clause] = STATE(348), + [aux_sym_constructor_try_statement_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_include_token1] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token2] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym___cdecl] = ACTIONS(2815), + [anon_sym___clrcall] = ACTIONS(2815), + [anon_sym___stdcall] = ACTIONS(2815), + [anon_sym___fastcall] = ACTIONS(2815), + [anon_sym___thiscall] = ACTIONS(2815), + [anon_sym___vectorcall] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym___inline] = ACTIONS(2815), + [anon_sym___inline__] = ACTIONS(2815), + [anon_sym___forceinline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym___thread] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym___restrict__] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym__Noreturn] = ACTIONS(2815), + [anon_sym_noreturn] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_goto] = ACTIONS(2815), + [anon_sym___try] = ACTIONS(2815), + [anon_sym___leave] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_compl] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2815), + [anon_sym___alignof__] = ACTIONS(2815), + [anon_sym___alignof] = ACTIONS(2815), + [anon_sym__alignof] = ACTIONS(2815), + [anon_sym_alignof] = ACTIONS(2815), + [anon_sym__Alignof] = ACTIONS(2815), + [anon_sym_offsetof] = ACTIONS(2815), + [anon_sym__Generic] = ACTIONS(2815), + [anon_sym_asm] = ACTIONS(2815), + [anon_sym___asm__] = ACTIONS(2815), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2817), + [anon_sym_u_SQUOTE] = ACTIONS(2817), + [anon_sym_U_SQUOTE] = ACTIONS(2817), + [anon_sym_u8_SQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_L_DQUOTE] = ACTIONS(2817), + [anon_sym_u_DQUOTE] = ACTIONS(2817), + [anon_sym_U_DQUOTE] = ACTIONS(2817), + [anon_sym_u8_DQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [anon_sym_NULL] = ACTIONS(2815), + [anon_sym_nullptr] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_alignas] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_namespace] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_concept] = ACTIONS(2815), + [anon_sym_co_return] = ACTIONS(2815), + [anon_sym_co_yield] = ACTIONS(2815), + [anon_sym_catch] = ACTIONS(3001), + [anon_sym_R_DQUOTE] = ACTIONS(2817), + [anon_sym_LR_DQUOTE] = ACTIONS(2817), + [anon_sym_uR_DQUOTE] = ACTIONS(2817), + [anon_sym_UR_DQUOTE] = ACTIONS(2817), + [anon_sym_u8R_DQUOTE] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_requires] = ACTIONS(2815), + [sym_this] = ACTIONS(2815), }, - [322] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8882), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8897), - [sym__unary_right_fold] = STATE(8896), - [sym__binary_fold] = STATE(8895), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [349] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [aux_sym_preproc_else_token1] = ACTIONS(3004), + [aux_sym_preproc_elif_token1] = ACTIONS(3004), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym___try] = ACTIONS(3004), + [anon_sym___leave] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym___alignof__] = ACTIONS(3004), + [anon_sym___alignof] = ACTIONS(3004), + [anon_sym__alignof] = ACTIONS(3004), + [anon_sym_alignof] = ACTIONS(3004), + [anon_sym__Alignof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), }, - [323] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8650), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), + [350] = { + [sym_catch_clause] = STATE(403), + [aux_sym_constructor_try_statement_repeat1] = STATE(403), + [ts_builtin_sym_end] = ACTIONS(2824), + [sym_identifier] = ACTIONS(2822), + [aux_sym_preproc_include_token1] = ACTIONS(2822), + [aux_sym_preproc_def_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token1] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), + [sym_preproc_directive] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_AMP_AMP] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym___extension__] = ACTIONS(2822), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), + [anon_sym___declspec] = ACTIONS(2822), + [anon_sym___based] = ACTIONS(2822), + [anon_sym___cdecl] = ACTIONS(2822), + [anon_sym___clrcall] = ACTIONS(2822), + [anon_sym___stdcall] = ACTIONS(2822), + [anon_sym___fastcall] = ACTIONS(2822), + [anon_sym___thiscall] = ACTIONS(2822), + [anon_sym___vectorcall] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym___inline] = ACTIONS(2822), + [anon_sym___inline__] = ACTIONS(2822), + [anon_sym___forceinline] = ACTIONS(2822), + [anon_sym_thread_local] = ACTIONS(2822), + [anon_sym___thread] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_constexpr] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym___restrict__] = ACTIONS(2822), + [anon_sym__Atomic] = ACTIONS(2822), + [anon_sym__Noreturn] = ACTIONS(2822), + [anon_sym_noreturn] = ACTIONS(2822), + [anon_sym_mutable] = ACTIONS(2822), + [anon_sym_constinit] = ACTIONS(2822), + [anon_sym_consteval] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_else] = ACTIONS(2822), + [anon_sym_switch] = ACTIONS(2822), + [anon_sym_case] = ACTIONS(2822), + [anon_sym_default] = ACTIONS(2822), + [anon_sym_while] = ACTIONS(2822), + [anon_sym_do] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_goto] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2822), + [anon_sym___leave] = ACTIONS(2822), + [anon_sym_not] = ACTIONS(2822), + [anon_sym_compl] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_sizeof] = ACTIONS(2822), + [anon_sym___alignof__] = ACTIONS(2822), + [anon_sym___alignof] = ACTIONS(2822), + [anon_sym__alignof] = ACTIONS(2822), + [anon_sym_alignof] = ACTIONS(2822), + [anon_sym__Alignof] = ACTIONS(2822), + [anon_sym_offsetof] = ACTIONS(2822), + [anon_sym__Generic] = ACTIONS(2822), + [anon_sym_asm] = ACTIONS(2822), + [anon_sym___asm__] = ACTIONS(2822), + [sym_number_literal] = ACTIONS(2824), + [anon_sym_L_SQUOTE] = ACTIONS(2824), + [anon_sym_u_SQUOTE] = ACTIONS(2824), + [anon_sym_U_SQUOTE] = ACTIONS(2824), + [anon_sym_u8_SQUOTE] = ACTIONS(2824), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_L_DQUOTE] = ACTIONS(2824), + [anon_sym_u_DQUOTE] = ACTIONS(2824), + [anon_sym_U_DQUOTE] = ACTIONS(2824), + [anon_sym_u8_DQUOTE] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2824), + [sym_true] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [anon_sym_NULL] = ACTIONS(2822), + [anon_sym_nullptr] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2822), + [anon_sym_decltype] = ACTIONS(2822), + [anon_sym_virtual] = ACTIONS(2822), + [anon_sym_alignas] = ACTIONS(2822), + [anon_sym_explicit] = ACTIONS(2822), + [anon_sym_typename] = ACTIONS(2822), + [anon_sym_template] = ACTIONS(2822), + [anon_sym_operator] = ACTIONS(2822), + [anon_sym_try] = ACTIONS(2822), + [anon_sym_delete] = ACTIONS(2822), + [anon_sym_throw] = ACTIONS(2822), + [anon_sym_namespace] = ACTIONS(2822), + [anon_sym_using] = ACTIONS(2822), + [anon_sym_static_assert] = ACTIONS(2822), + [anon_sym_concept] = ACTIONS(2822), + [anon_sym_co_return] = ACTIONS(2822), + [anon_sym_co_yield] = ACTIONS(2822), + [anon_sym_catch] = ACTIONS(3008), + [anon_sym_R_DQUOTE] = ACTIONS(2824), + [anon_sym_LR_DQUOTE] = ACTIONS(2824), + [anon_sym_uR_DQUOTE] = ACTIONS(2824), + [anon_sym_UR_DQUOTE] = ACTIONS(2824), + [anon_sym_u8R_DQUOTE] = ACTIONS(2824), + [anon_sym_co_await] = ACTIONS(2822), + [anon_sym_new] = ACTIONS(2822), + [anon_sym_requires] = ACTIONS(2822), + [sym_this] = ACTIONS(2822), + }, + [351] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [aux_sym_preproc_else_token1] = ACTIONS(2186), + [aux_sym_preproc_elif_token1] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), + }, + [352] = { + [sym_catch_clause] = STATE(348), + [aux_sym_constructor_try_statement_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(2822), + [aux_sym_preproc_include_token1] = ACTIONS(2822), + [aux_sym_preproc_def_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token2] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), + [sym_preproc_directive] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_AMP_AMP] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym___extension__] = ACTIONS(2822), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), + [anon_sym___declspec] = ACTIONS(2822), + [anon_sym___based] = ACTIONS(2822), + [anon_sym___cdecl] = ACTIONS(2822), + [anon_sym___clrcall] = ACTIONS(2822), + [anon_sym___stdcall] = ACTIONS(2822), + [anon_sym___fastcall] = ACTIONS(2822), + [anon_sym___thiscall] = ACTIONS(2822), + [anon_sym___vectorcall] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym___inline] = ACTIONS(2822), + [anon_sym___inline__] = ACTIONS(2822), + [anon_sym___forceinline] = ACTIONS(2822), + [anon_sym_thread_local] = ACTIONS(2822), + [anon_sym___thread] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_constexpr] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym___restrict__] = ACTIONS(2822), + [anon_sym__Atomic] = ACTIONS(2822), + [anon_sym__Noreturn] = ACTIONS(2822), + [anon_sym_noreturn] = ACTIONS(2822), + [anon_sym_mutable] = ACTIONS(2822), + [anon_sym_constinit] = ACTIONS(2822), + [anon_sym_consteval] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_else] = ACTIONS(2822), + [anon_sym_switch] = ACTIONS(2822), + [anon_sym_case] = ACTIONS(2822), + [anon_sym_default] = ACTIONS(2822), + [anon_sym_while] = ACTIONS(2822), + [anon_sym_do] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_goto] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2822), + [anon_sym___leave] = ACTIONS(2822), + [anon_sym_not] = ACTIONS(2822), + [anon_sym_compl] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_sizeof] = ACTIONS(2822), + [anon_sym___alignof__] = ACTIONS(2822), + [anon_sym___alignof] = ACTIONS(2822), + [anon_sym__alignof] = ACTIONS(2822), + [anon_sym_alignof] = ACTIONS(2822), + [anon_sym__Alignof] = ACTIONS(2822), + [anon_sym_offsetof] = ACTIONS(2822), + [anon_sym__Generic] = ACTIONS(2822), + [anon_sym_asm] = ACTIONS(2822), + [anon_sym___asm__] = ACTIONS(2822), + [sym_number_literal] = ACTIONS(2824), + [anon_sym_L_SQUOTE] = ACTIONS(2824), + [anon_sym_u_SQUOTE] = ACTIONS(2824), + [anon_sym_U_SQUOTE] = ACTIONS(2824), + [anon_sym_u8_SQUOTE] = ACTIONS(2824), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_L_DQUOTE] = ACTIONS(2824), + [anon_sym_u_DQUOTE] = ACTIONS(2824), + [anon_sym_U_DQUOTE] = ACTIONS(2824), + [anon_sym_u8_DQUOTE] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2824), + [sym_true] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [anon_sym_NULL] = ACTIONS(2822), + [anon_sym_nullptr] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2822), + [anon_sym_decltype] = ACTIONS(2822), + [anon_sym_virtual] = ACTIONS(2822), + [anon_sym_alignas] = ACTIONS(2822), + [anon_sym_explicit] = ACTIONS(2822), + [anon_sym_typename] = ACTIONS(2822), + [anon_sym_template] = ACTIONS(2822), + [anon_sym_operator] = ACTIONS(2822), + [anon_sym_try] = ACTIONS(2822), + [anon_sym_delete] = ACTIONS(2822), + [anon_sym_throw] = ACTIONS(2822), + [anon_sym_namespace] = ACTIONS(2822), + [anon_sym_using] = ACTIONS(2822), + [anon_sym_static_assert] = ACTIONS(2822), + [anon_sym_concept] = ACTIONS(2822), + [anon_sym_co_return] = ACTIONS(2822), + [anon_sym_co_yield] = ACTIONS(2822), + [anon_sym_catch] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(2824), + [anon_sym_LR_DQUOTE] = ACTIONS(2824), + [anon_sym_uR_DQUOTE] = ACTIONS(2824), + [anon_sym_UR_DQUOTE] = ACTIONS(2824), + [anon_sym_u8R_DQUOTE] = ACTIONS(2824), + [anon_sym_co_await] = ACTIONS(2822), + [anon_sym_new] = ACTIONS(2822), + [anon_sym_requires] = ACTIONS(2822), + [sym_this] = ACTIONS(2822), + }, + [353] = { + [sym_identifier] = ACTIONS(3012), + [aux_sym_preproc_include_token1] = ACTIONS(3012), + [aux_sym_preproc_def_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token2] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3012), + [aux_sym_preproc_else_token1] = ACTIONS(3012), + [aux_sym_preproc_elif_token1] = ACTIONS(3012), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3012), + [sym_preproc_directive] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3012), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym___based] = ACTIONS(3012), + [anon_sym___cdecl] = ACTIONS(3012), + [anon_sym___clrcall] = ACTIONS(3012), + [anon_sym___stdcall] = ACTIONS(3012), + [anon_sym___fastcall] = ACTIONS(3012), + [anon_sym___thiscall] = ACTIONS(3012), + [anon_sym___vectorcall] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym___inline] = ACTIONS(3012), + [anon_sym___inline__] = ACTIONS(3012), + [anon_sym___forceinline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym___thread] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym___try] = ACTIONS(3012), + [anon_sym___leave] = ACTIONS(3012), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_sizeof] = ACTIONS(3012), + [anon_sym___alignof__] = ACTIONS(3012), + [anon_sym___alignof] = ACTIONS(3012), + [anon_sym__alignof] = ACTIONS(3012), + [anon_sym_alignof] = ACTIONS(3012), + [anon_sym__Alignof] = ACTIONS(3012), + [anon_sym_offsetof] = ACTIONS(3012), + [anon_sym__Generic] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym___asm__] = ACTIONS(3012), + [sym_number_literal] = ACTIONS(3014), + [anon_sym_L_SQUOTE] = ACTIONS(3014), + [anon_sym_u_SQUOTE] = ACTIONS(3014), + [anon_sym_U_SQUOTE] = ACTIONS(3014), + [anon_sym_u8_SQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_L_DQUOTE] = ACTIONS(3014), + [anon_sym_u_DQUOTE] = ACTIONS(3014), + [anon_sym_U_DQUOTE] = ACTIONS(3014), + [anon_sym_u8_DQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_nullptr] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_alignas] = ACTIONS(3012), + [anon_sym_explicit] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_operator] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_static_assert] = ACTIONS(3012), + [anon_sym_concept] = ACTIONS(3012), + [anon_sym_co_return] = ACTIONS(3012), + [anon_sym_co_yield] = ACTIONS(3012), + [anon_sym_R_DQUOTE] = ACTIONS(3014), + [anon_sym_LR_DQUOTE] = ACTIONS(3014), + [anon_sym_uR_DQUOTE] = ACTIONS(3014), + [anon_sym_UR_DQUOTE] = ACTIONS(3014), + [anon_sym_u8R_DQUOTE] = ACTIONS(3014), + [anon_sym_co_await] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_requires] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), + }, + [354] = { + [sym_identifier] = ACTIONS(3016), + [aux_sym_preproc_include_token1] = ACTIONS(3016), + [aux_sym_preproc_def_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token2] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3016), + [aux_sym_preproc_else_token1] = ACTIONS(3016), + [aux_sym_preproc_elif_token1] = ACTIONS(3016), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3016), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3016), + [sym_preproc_directive] = ACTIONS(3016), + [anon_sym_LPAREN2] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_typedef] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym___attribute__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3018), + [anon_sym___declspec] = ACTIONS(3016), + [anon_sym___based] = ACTIONS(3016), + [anon_sym___cdecl] = ACTIONS(3016), + [anon_sym___clrcall] = ACTIONS(3016), + [anon_sym___stdcall] = ACTIONS(3016), + [anon_sym___fastcall] = ACTIONS(3016), + [anon_sym___thiscall] = ACTIONS(3016), + [anon_sym___vectorcall] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_signed] = ACTIONS(3016), + [anon_sym_unsigned] = ACTIONS(3016), + [anon_sym_long] = ACTIONS(3016), + [anon_sym_short] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_register] = ACTIONS(3016), + [anon_sym_inline] = ACTIONS(3016), + [anon_sym___inline] = ACTIONS(3016), + [anon_sym___inline__] = ACTIONS(3016), + [anon_sym___forceinline] = ACTIONS(3016), + [anon_sym_thread_local] = ACTIONS(3016), + [anon_sym___thread] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_constexpr] = ACTIONS(3016), + [anon_sym_volatile] = ACTIONS(3016), + [anon_sym_restrict] = ACTIONS(3016), + [anon_sym___restrict__] = ACTIONS(3016), + [anon_sym__Atomic] = ACTIONS(3016), + [anon_sym__Noreturn] = ACTIONS(3016), + [anon_sym_noreturn] = ACTIONS(3016), + [anon_sym_mutable] = ACTIONS(3016), + [anon_sym_constinit] = ACTIONS(3016), + [anon_sym_consteval] = ACTIONS(3016), + [sym_primitive_type] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_class] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym___try] = ACTIONS(3016), + [anon_sym___leave] = ACTIONS(3016), + [anon_sym_not] = ACTIONS(3016), + [anon_sym_compl] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_sizeof] = ACTIONS(3016), + [anon_sym___alignof__] = ACTIONS(3016), + [anon_sym___alignof] = ACTIONS(3016), + [anon_sym__alignof] = ACTIONS(3016), + [anon_sym_alignof] = ACTIONS(3016), + [anon_sym__Alignof] = ACTIONS(3016), + [anon_sym_offsetof] = ACTIONS(3016), + [anon_sym__Generic] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym___asm__] = ACTIONS(3016), + [sym_number_literal] = ACTIONS(3018), + [anon_sym_L_SQUOTE] = ACTIONS(3018), + [anon_sym_u_SQUOTE] = ACTIONS(3018), + [anon_sym_U_SQUOTE] = ACTIONS(3018), + [anon_sym_u8_SQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_L_DQUOTE] = ACTIONS(3018), + [anon_sym_u_DQUOTE] = ACTIONS(3018), + [anon_sym_U_DQUOTE] = ACTIONS(3018), + [anon_sym_u8_DQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_nullptr] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3016), + [anon_sym_decltype] = ACTIONS(3016), + [anon_sym_virtual] = ACTIONS(3016), + [anon_sym_alignas] = ACTIONS(3016), + [anon_sym_explicit] = ACTIONS(3016), + [anon_sym_typename] = ACTIONS(3016), + [anon_sym_template] = ACTIONS(3016), + [anon_sym_operator] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_delete] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_using] = ACTIONS(3016), + [anon_sym_static_assert] = ACTIONS(3016), + [anon_sym_concept] = ACTIONS(3016), + [anon_sym_co_return] = ACTIONS(3016), + [anon_sym_co_yield] = ACTIONS(3016), + [anon_sym_R_DQUOTE] = ACTIONS(3018), + [anon_sym_LR_DQUOTE] = ACTIONS(3018), + [anon_sym_uR_DQUOTE] = ACTIONS(3018), + [anon_sym_UR_DQUOTE] = ACTIONS(3018), + [anon_sym_u8R_DQUOTE] = ACTIONS(3018), + [anon_sym_co_await] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3016), + [sym_this] = ACTIONS(3016), + }, + [355] = { + [sym_identifier] = ACTIONS(2136), + [aux_sym_preproc_include_token1] = ACTIONS(2136), + [aux_sym_preproc_def_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token2] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2136), + [aux_sym_preproc_else_token1] = ACTIONS(2136), + [aux_sym_preproc_elif_token1] = ACTIONS(2136), + [sym_preproc_directive] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym___extension__] = ACTIONS(2136), + [anon_sym_typedef] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym___attribute__] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2134), + [anon_sym___declspec] = ACTIONS(2136), + [anon_sym___based] = ACTIONS(2136), + [anon_sym___cdecl] = ACTIONS(2136), + [anon_sym___clrcall] = ACTIONS(2136), + [anon_sym___stdcall] = ACTIONS(2136), + [anon_sym___fastcall] = ACTIONS(2136), + [anon_sym___thiscall] = ACTIONS(2136), + [anon_sym___vectorcall] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_signed] = ACTIONS(2136), + [anon_sym_unsigned] = ACTIONS(2136), + [anon_sym_long] = ACTIONS(2136), + [anon_sym_short] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_register] = ACTIONS(2136), + [anon_sym_inline] = ACTIONS(2136), + [anon_sym___inline] = ACTIONS(2136), + [anon_sym___inline__] = ACTIONS(2136), + [anon_sym___forceinline] = ACTIONS(2136), + [anon_sym_thread_local] = ACTIONS(2136), + [anon_sym___thread] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_constexpr] = ACTIONS(2136), + [anon_sym_volatile] = ACTIONS(2136), + [anon_sym_restrict] = ACTIONS(2136), + [anon_sym___restrict__] = ACTIONS(2136), + [anon_sym__Atomic] = ACTIONS(2136), + [anon_sym__Noreturn] = ACTIONS(2136), + [anon_sym_noreturn] = ACTIONS(2136), + [anon_sym_mutable] = ACTIONS(2136), + [anon_sym_constinit] = ACTIONS(2136), + [anon_sym_consteval] = ACTIONS(2136), + [sym_primitive_type] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_class] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_else] = ACTIONS(2136), + [anon_sym_switch] = ACTIONS(2136), + [anon_sym_case] = ACTIONS(2136), + [anon_sym_default] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_do] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_return] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_goto] = ACTIONS(2136), + [anon_sym___try] = ACTIONS(2136), + [anon_sym___leave] = ACTIONS(2136), + [anon_sym_not] = ACTIONS(2136), + [anon_sym_compl] = ACTIONS(2136), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2136), + [anon_sym___alignof__] = ACTIONS(2136), + [anon_sym___alignof] = ACTIONS(2136), + [anon_sym__alignof] = ACTIONS(2136), + [anon_sym_alignof] = ACTIONS(2136), + [anon_sym__Alignof] = ACTIONS(2136), + [anon_sym_offsetof] = ACTIONS(2136), + [anon_sym__Generic] = ACTIONS(2136), + [anon_sym_asm] = ACTIONS(2136), + [anon_sym___asm__] = ACTIONS(2136), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2136), + [sym_false] = ACTIONS(2136), + [anon_sym_NULL] = ACTIONS(2136), + [anon_sym_nullptr] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2136), + [anon_sym_decltype] = ACTIONS(2136), + [anon_sym_virtual] = ACTIONS(2136), + [anon_sym_alignas] = ACTIONS(2136), + [anon_sym_explicit] = ACTIONS(2136), + [anon_sym_typename] = ACTIONS(2136), + [anon_sym_template] = ACTIONS(2136), + [anon_sym_operator] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2136), + [anon_sym_delete] = ACTIONS(2136), + [anon_sym_throw] = ACTIONS(2136), + [anon_sym_namespace] = ACTIONS(2136), + [anon_sym_using] = ACTIONS(2136), + [anon_sym_static_assert] = ACTIONS(2136), + [anon_sym_concept] = ACTIONS(2136), + [anon_sym_co_return] = ACTIONS(2136), + [anon_sym_co_yield] = ACTIONS(2136), + [anon_sym_catch] = ACTIONS(2136), + [anon_sym_R_DQUOTE] = ACTIONS(2134), + [anon_sym_LR_DQUOTE] = ACTIONS(2134), + [anon_sym_uR_DQUOTE] = ACTIONS(2134), + [anon_sym_UR_DQUOTE] = ACTIONS(2134), + [anon_sym_u8R_DQUOTE] = ACTIONS(2134), + [anon_sym_co_await] = ACTIONS(2136), + [anon_sym_new] = ACTIONS(2136), + [anon_sym_requires] = ACTIONS(2136), + [sym_this] = ACTIONS(2136), + }, + [356] = { + [sym_identifier] = ACTIONS(3020), + [aux_sym_preproc_include_token1] = ACTIONS(3020), + [aux_sym_preproc_def_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token2] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3020), + [aux_sym_preproc_else_token1] = ACTIONS(3020), + [aux_sym_preproc_elif_token1] = ACTIONS(3020), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3020), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3020), + [sym_preproc_directive] = ACTIONS(3020), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym___extension__] = ACTIONS(3020), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym___attribute__] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(3020), + [anon_sym___based] = ACTIONS(3020), + [anon_sym___cdecl] = ACTIONS(3020), + [anon_sym___clrcall] = ACTIONS(3020), + [anon_sym___stdcall] = ACTIONS(3020), + [anon_sym___fastcall] = ACTIONS(3020), + [anon_sym___thiscall] = ACTIONS(3020), + [anon_sym___vectorcall] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_signed] = ACTIONS(3020), + [anon_sym_unsigned] = ACTIONS(3020), + [anon_sym_long] = ACTIONS(3020), + [anon_sym_short] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_register] = ACTIONS(3020), + [anon_sym_inline] = ACTIONS(3020), + [anon_sym___inline] = ACTIONS(3020), + [anon_sym___inline__] = ACTIONS(3020), + [anon_sym___forceinline] = ACTIONS(3020), + [anon_sym_thread_local] = ACTIONS(3020), + [anon_sym___thread] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_constexpr] = ACTIONS(3020), + [anon_sym_volatile] = ACTIONS(3020), + [anon_sym_restrict] = ACTIONS(3020), + [anon_sym___restrict__] = ACTIONS(3020), + [anon_sym__Atomic] = ACTIONS(3020), + [anon_sym__Noreturn] = ACTIONS(3020), + [anon_sym_noreturn] = ACTIONS(3020), + [anon_sym_mutable] = ACTIONS(3020), + [anon_sym_constinit] = ACTIONS(3020), + [anon_sym_consteval] = ACTIONS(3020), + [sym_primitive_type] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_class] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym___try] = ACTIONS(3020), + [anon_sym___leave] = ACTIONS(3020), + [anon_sym_not] = ACTIONS(3020), + [anon_sym_compl] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_sizeof] = ACTIONS(3020), + [anon_sym___alignof__] = ACTIONS(3020), + [anon_sym___alignof] = ACTIONS(3020), + [anon_sym__alignof] = ACTIONS(3020), + [anon_sym_alignof] = ACTIONS(3020), + [anon_sym__Alignof] = ACTIONS(3020), + [anon_sym_offsetof] = ACTIONS(3020), + [anon_sym__Generic] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym___asm__] = ACTIONS(3020), + [sym_number_literal] = ACTIONS(3022), + [anon_sym_L_SQUOTE] = ACTIONS(3022), + [anon_sym_u_SQUOTE] = ACTIONS(3022), + [anon_sym_U_SQUOTE] = ACTIONS(3022), + [anon_sym_u8_SQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_L_DQUOTE] = ACTIONS(3022), + [anon_sym_u_DQUOTE] = ACTIONS(3022), + [anon_sym_U_DQUOTE] = ACTIONS(3022), + [anon_sym_u8_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_nullptr] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3020), + [anon_sym_decltype] = ACTIONS(3020), + [anon_sym_virtual] = ACTIONS(3020), + [anon_sym_alignas] = ACTIONS(3020), + [anon_sym_explicit] = ACTIONS(3020), + [anon_sym_typename] = ACTIONS(3020), + [anon_sym_template] = ACTIONS(3020), + [anon_sym_operator] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_using] = ACTIONS(3020), + [anon_sym_static_assert] = ACTIONS(3020), + [anon_sym_concept] = ACTIONS(3020), + [anon_sym_co_return] = ACTIONS(3020), + [anon_sym_co_yield] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(3022), + [anon_sym_LR_DQUOTE] = ACTIONS(3022), + [anon_sym_uR_DQUOTE] = ACTIONS(3022), + [anon_sym_UR_DQUOTE] = ACTIONS(3022), + [anon_sym_u8R_DQUOTE] = ACTIONS(3022), + [anon_sym_co_await] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_requires] = ACTIONS(3020), + [sym_this] = ACTIONS(3020), + }, + [357] = { + [sym_preproc_def] = STATE(673), + [sym_preproc_function_def] = STATE(673), + [sym_preproc_call] = STATE(673), + [sym_preproc_elifdef] = STATE(9127), + [sym_preproc_if_in_field_declaration_list] = STATE(673), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(673), + [sym_preproc_else_in_field_declaration_list] = STATE(9127), + [sym_preproc_elif_in_field_declaration_list] = STATE(9127), + [sym_type_definition] = STATE(673), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6193), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6791), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(673), + [sym_field_declaration] = STATE(673), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2046), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(673), + [sym_operator_cast] = STATE(7208), + [sym_inline_method_definition] = STATE(673), + [sym__constructor_specifiers] = STATE(2046), + [sym_operator_cast_definition] = STATE(673), + [sym_operator_cast_declaration] = STATE(673), + [sym_constructor_or_destructor_definition] = STATE(673), + [sym_constructor_or_destructor_declaration] = STATE(673), + [sym_friend_declaration] = STATE(673), + [sym_access_specifier] = STATE(8745), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(673), + [sym_alias_declaration] = STATE(673), + [sym_static_assert_declaration] = STATE(673), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7208), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(673), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3026), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3030), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [aux_sym_preproc_elifdef_token1] = ACTIONS(279), + [aux_sym_preproc_elifdef_token2] = ACTIONS(279), + [sym_preproc_directive] = ACTIONS(3038), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_typedef] = ACTIONS(3050), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -136070,817 +141079,947 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3068), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_static_assert] = ACTIONS(3076), }, - [324] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [358] = { + [sym_identifier] = ACTIONS(3078), + [aux_sym_preproc_include_token1] = ACTIONS(3078), + [aux_sym_preproc_def_token1] = ACTIONS(3078), + [aux_sym_preproc_if_token1] = ACTIONS(3078), + [aux_sym_preproc_if_token2] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), + [aux_sym_preproc_else_token1] = ACTIONS(3078), + [aux_sym_preproc_elif_token1] = ACTIONS(3078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3078), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3078), + [sym_preproc_directive] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym___extension__] = ACTIONS(3078), + [anon_sym_typedef] = ACTIONS(3078), + [anon_sym_extern] = ACTIONS(3078), + [anon_sym___attribute__] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), + [anon_sym___declspec] = ACTIONS(3078), + [anon_sym___based] = ACTIONS(3078), + [anon_sym___cdecl] = ACTIONS(3078), + [anon_sym___clrcall] = ACTIONS(3078), + [anon_sym___stdcall] = ACTIONS(3078), + [anon_sym___fastcall] = ACTIONS(3078), + [anon_sym___thiscall] = ACTIONS(3078), + [anon_sym___vectorcall] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_signed] = ACTIONS(3078), + [anon_sym_unsigned] = ACTIONS(3078), + [anon_sym_long] = ACTIONS(3078), + [anon_sym_short] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_static] = ACTIONS(3078), + [anon_sym_register] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym___inline] = ACTIONS(3078), + [anon_sym___inline__] = ACTIONS(3078), + [anon_sym___forceinline] = ACTIONS(3078), + [anon_sym_thread_local] = ACTIONS(3078), + [anon_sym___thread] = ACTIONS(3078), + [anon_sym_const] = ACTIONS(3078), + [anon_sym_constexpr] = ACTIONS(3078), + [anon_sym_volatile] = ACTIONS(3078), + [anon_sym_restrict] = ACTIONS(3078), + [anon_sym___restrict__] = ACTIONS(3078), + [anon_sym__Atomic] = ACTIONS(3078), + [anon_sym__Noreturn] = ACTIONS(3078), + [anon_sym_noreturn] = ACTIONS(3078), + [anon_sym_mutable] = ACTIONS(3078), + [anon_sym_constinit] = ACTIONS(3078), + [anon_sym_consteval] = ACTIONS(3078), + [sym_primitive_type] = ACTIONS(3078), + [anon_sym_enum] = ACTIONS(3078), + [anon_sym_class] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_switch] = ACTIONS(3078), + [anon_sym_case] = ACTIONS(3078), + [anon_sym_default] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_goto] = ACTIONS(3078), + [anon_sym___try] = ACTIONS(3078), + [anon_sym___leave] = ACTIONS(3078), + [anon_sym_not] = ACTIONS(3078), + [anon_sym_compl] = ACTIONS(3078), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_sizeof] = ACTIONS(3078), + [anon_sym___alignof__] = ACTIONS(3078), + [anon_sym___alignof] = ACTIONS(3078), + [anon_sym__alignof] = ACTIONS(3078), + [anon_sym_alignof] = ACTIONS(3078), + [anon_sym__Alignof] = ACTIONS(3078), + [anon_sym_offsetof] = ACTIONS(3078), + [anon_sym__Generic] = ACTIONS(3078), + [anon_sym_asm] = ACTIONS(3078), + [anon_sym___asm__] = ACTIONS(3078), + [sym_number_literal] = ACTIONS(3080), + [anon_sym_L_SQUOTE] = ACTIONS(3080), + [anon_sym_u_SQUOTE] = ACTIONS(3080), + [anon_sym_U_SQUOTE] = ACTIONS(3080), + [anon_sym_u8_SQUOTE] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_L_DQUOTE] = ACTIONS(3080), + [anon_sym_u_DQUOTE] = ACTIONS(3080), + [anon_sym_U_DQUOTE] = ACTIONS(3080), + [anon_sym_u8_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [anon_sym_NULL] = ACTIONS(3078), + [anon_sym_nullptr] = ACTIONS(3078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3078), + [anon_sym_decltype] = ACTIONS(3078), + [anon_sym_virtual] = ACTIONS(3078), + [anon_sym_alignas] = ACTIONS(3078), + [anon_sym_explicit] = ACTIONS(3078), + [anon_sym_typename] = ACTIONS(3078), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3078), + [anon_sym_namespace] = ACTIONS(3078), + [anon_sym_using] = ACTIONS(3078), + [anon_sym_static_assert] = ACTIONS(3078), + [anon_sym_concept] = ACTIONS(3078), + [anon_sym_co_return] = ACTIONS(3078), + [anon_sym_co_yield] = ACTIONS(3078), + [anon_sym_R_DQUOTE] = ACTIONS(3080), + [anon_sym_LR_DQUOTE] = ACTIONS(3080), + [anon_sym_uR_DQUOTE] = ACTIONS(3080), + [anon_sym_UR_DQUOTE] = ACTIONS(3080), + [anon_sym_u8R_DQUOTE] = ACTIONS(3080), + [anon_sym_co_await] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_requires] = ACTIONS(3078), + [sym_this] = ACTIONS(3078), }, - [325] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [359] = { + [sym_identifier] = ACTIONS(3082), + [aux_sym_preproc_include_token1] = ACTIONS(3082), + [aux_sym_preproc_def_token1] = ACTIONS(3082), + [aux_sym_preproc_if_token1] = ACTIONS(3082), + [aux_sym_preproc_if_token2] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), + [aux_sym_preproc_else_token1] = ACTIONS(3082), + [aux_sym_preproc_elif_token1] = ACTIONS(3082), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3082), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3082), + [sym_preproc_directive] = ACTIONS(3082), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym___extension__] = ACTIONS(3082), + [anon_sym_typedef] = ACTIONS(3082), + [anon_sym_extern] = ACTIONS(3082), + [anon_sym___attribute__] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), + [anon_sym___declspec] = ACTIONS(3082), + [anon_sym___based] = ACTIONS(3082), + [anon_sym___cdecl] = ACTIONS(3082), + [anon_sym___clrcall] = ACTIONS(3082), + [anon_sym___stdcall] = ACTIONS(3082), + [anon_sym___fastcall] = ACTIONS(3082), + [anon_sym___thiscall] = ACTIONS(3082), + [anon_sym___vectorcall] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_signed] = ACTIONS(3082), + [anon_sym_unsigned] = ACTIONS(3082), + [anon_sym_long] = ACTIONS(3082), + [anon_sym_short] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_register] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym___inline] = ACTIONS(3082), + [anon_sym___inline__] = ACTIONS(3082), + [anon_sym___forceinline] = ACTIONS(3082), + [anon_sym_thread_local] = ACTIONS(3082), + [anon_sym___thread] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_constexpr] = ACTIONS(3082), + [anon_sym_volatile] = ACTIONS(3082), + [anon_sym_restrict] = ACTIONS(3082), + [anon_sym___restrict__] = ACTIONS(3082), + [anon_sym__Atomic] = ACTIONS(3082), + [anon_sym__Noreturn] = ACTIONS(3082), + [anon_sym_noreturn] = ACTIONS(3082), + [anon_sym_mutable] = ACTIONS(3082), + [anon_sym_constinit] = ACTIONS(3082), + [anon_sym_consteval] = ACTIONS(3082), + [sym_primitive_type] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_union] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_switch] = ACTIONS(3082), + [anon_sym_case] = ACTIONS(3082), + [anon_sym_default] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_do] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_goto] = ACTIONS(3082), + [anon_sym___try] = ACTIONS(3082), + [anon_sym___leave] = ACTIONS(3082), + [anon_sym_not] = ACTIONS(3082), + [anon_sym_compl] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_sizeof] = ACTIONS(3082), + [anon_sym___alignof__] = ACTIONS(3082), + [anon_sym___alignof] = ACTIONS(3082), + [anon_sym__alignof] = ACTIONS(3082), + [anon_sym_alignof] = ACTIONS(3082), + [anon_sym__Alignof] = ACTIONS(3082), + [anon_sym_offsetof] = ACTIONS(3082), + [anon_sym__Generic] = ACTIONS(3082), + [anon_sym_asm] = ACTIONS(3082), + [anon_sym___asm__] = ACTIONS(3082), + [sym_number_literal] = ACTIONS(3084), + [anon_sym_L_SQUOTE] = ACTIONS(3084), + [anon_sym_u_SQUOTE] = ACTIONS(3084), + [anon_sym_U_SQUOTE] = ACTIONS(3084), + [anon_sym_u8_SQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_L_DQUOTE] = ACTIONS(3084), + [anon_sym_u_DQUOTE] = ACTIONS(3084), + [anon_sym_U_DQUOTE] = ACTIONS(3084), + [anon_sym_u8_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [anon_sym_NULL] = ACTIONS(3082), + [anon_sym_nullptr] = ACTIONS(3082), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(3082), + [anon_sym_decltype] = ACTIONS(3082), + [anon_sym_virtual] = ACTIONS(3082), + [anon_sym_alignas] = ACTIONS(3082), + [anon_sym_explicit] = ACTIONS(3082), + [anon_sym_typename] = ACTIONS(3082), + [anon_sym_template] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_delete] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_namespace] = ACTIONS(3082), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_static_assert] = ACTIONS(3082), + [anon_sym_concept] = ACTIONS(3082), + [anon_sym_co_return] = ACTIONS(3082), + [anon_sym_co_yield] = ACTIONS(3082), + [anon_sym_R_DQUOTE] = ACTIONS(3084), + [anon_sym_LR_DQUOTE] = ACTIONS(3084), + [anon_sym_uR_DQUOTE] = ACTIONS(3084), + [anon_sym_UR_DQUOTE] = ACTIONS(3084), + [anon_sym_u8R_DQUOTE] = ACTIONS(3084), + [anon_sym_co_await] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3082), + [anon_sym_requires] = ACTIONS(3082), + [sym_this] = ACTIONS(3082), }, - [326] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [360] = { + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_include_token1] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token2] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [aux_sym_preproc_else_token1] = ACTIONS(2863), + [aux_sym_preproc_elif_token1] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym___cdecl] = ACTIONS(2863), + [anon_sym___clrcall] = ACTIONS(2863), + [anon_sym___stdcall] = ACTIONS(2863), + [anon_sym___fastcall] = ACTIONS(2863), + [anon_sym___thiscall] = ACTIONS(2863), + [anon_sym___vectorcall] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_else] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2863), + [anon_sym_case] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_do] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_goto] = ACTIONS(2863), + [anon_sym___try] = ACTIONS(2863), + [anon_sym___leave] = ACTIONS(2863), + [anon_sym_not] = ACTIONS(2863), + [anon_sym_compl] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_sizeof] = ACTIONS(2863), + [anon_sym___alignof__] = ACTIONS(2863), + [anon_sym___alignof] = ACTIONS(2863), + [anon_sym__alignof] = ACTIONS(2863), + [anon_sym_alignof] = ACTIONS(2863), + [anon_sym__Alignof] = ACTIONS(2863), + [anon_sym_offsetof] = ACTIONS(2863), + [anon_sym__Generic] = ACTIONS(2863), + [anon_sym_asm] = ACTIONS(2863), + [anon_sym___asm__] = ACTIONS(2863), + [sym_number_literal] = ACTIONS(2865), + [anon_sym_L_SQUOTE] = ACTIONS(2865), + [anon_sym_u_SQUOTE] = ACTIONS(2865), + [anon_sym_U_SQUOTE] = ACTIONS(2865), + [anon_sym_u8_SQUOTE] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2865), + [anon_sym_L_DQUOTE] = ACTIONS(2865), + [anon_sym_u_DQUOTE] = ACTIONS(2865), + [anon_sym_U_DQUOTE] = ACTIONS(2865), + [anon_sym_u8_DQUOTE] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2865), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [anon_sym_NULL] = ACTIONS(2863), + [anon_sym_nullptr] = ACTIONS(2863), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [anon_sym_delete] = ACTIONS(2863), + [anon_sym_throw] = ACTIONS(2863), + [anon_sym_namespace] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), + [anon_sym_concept] = ACTIONS(2863), + [anon_sym_co_return] = ACTIONS(2863), + [anon_sym_co_yield] = ACTIONS(2863), + [anon_sym_catch] = ACTIONS(2863), + [anon_sym_R_DQUOTE] = ACTIONS(2865), + [anon_sym_LR_DQUOTE] = ACTIONS(2865), + [anon_sym_uR_DQUOTE] = ACTIONS(2865), + [anon_sym_UR_DQUOTE] = ACTIONS(2865), + [anon_sym_u8R_DQUOTE] = ACTIONS(2865), + [anon_sym_co_await] = ACTIONS(2863), + [anon_sym_new] = ACTIONS(2863), + [anon_sym_requires] = ACTIONS(2863), + [sym_this] = ACTIONS(2863), }, - [327] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [361] = { + [sym_identifier] = ACTIONS(3086), + [aux_sym_preproc_include_token1] = ACTIONS(3086), + [aux_sym_preproc_def_token1] = ACTIONS(3086), + [aux_sym_preproc_if_token1] = ACTIONS(3086), + [aux_sym_preproc_if_token2] = ACTIONS(3086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3086), + [aux_sym_preproc_else_token1] = ACTIONS(3086), + [aux_sym_preproc_elif_token1] = ACTIONS(3086), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3086), + [sym_preproc_directive] = ACTIONS(3086), + [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3086), + [anon_sym_SEMI] = ACTIONS(3088), + [anon_sym___extension__] = ACTIONS(3086), + [anon_sym_typedef] = ACTIONS(3086), + [anon_sym_extern] = ACTIONS(3086), + [anon_sym___attribute__] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3088), + [anon_sym___declspec] = ACTIONS(3086), + [anon_sym___based] = ACTIONS(3086), + [anon_sym___cdecl] = ACTIONS(3086), + [anon_sym___clrcall] = ACTIONS(3086), + [anon_sym___stdcall] = ACTIONS(3086), + [anon_sym___fastcall] = ACTIONS(3086), + [anon_sym___thiscall] = ACTIONS(3086), + [anon_sym___vectorcall] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_signed] = ACTIONS(3086), + [anon_sym_unsigned] = ACTIONS(3086), + [anon_sym_long] = ACTIONS(3086), + [anon_sym_short] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_static] = ACTIONS(3086), + [anon_sym_register] = ACTIONS(3086), + [anon_sym_inline] = ACTIONS(3086), + [anon_sym___inline] = ACTIONS(3086), + [anon_sym___inline__] = ACTIONS(3086), + [anon_sym___forceinline] = ACTIONS(3086), + [anon_sym_thread_local] = ACTIONS(3086), + [anon_sym___thread] = ACTIONS(3086), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_constexpr] = ACTIONS(3086), + [anon_sym_volatile] = ACTIONS(3086), + [anon_sym_restrict] = ACTIONS(3086), + [anon_sym___restrict__] = ACTIONS(3086), + [anon_sym__Atomic] = ACTIONS(3086), + [anon_sym__Noreturn] = ACTIONS(3086), + [anon_sym_noreturn] = ACTIONS(3086), + [anon_sym_mutable] = ACTIONS(3086), + [anon_sym_constinit] = ACTIONS(3086), + [anon_sym_consteval] = ACTIONS(3086), + [sym_primitive_type] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), + [anon_sym_class] = ACTIONS(3086), + [anon_sym_struct] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_switch] = ACTIONS(3086), + [anon_sym_case] = ACTIONS(3086), + [anon_sym_default] = ACTIONS(3086), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_do] = ACTIONS(3086), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_goto] = ACTIONS(3086), + [anon_sym___try] = ACTIONS(3086), + [anon_sym___leave] = ACTIONS(3086), + [anon_sym_not] = ACTIONS(3086), + [anon_sym_compl] = ACTIONS(3086), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_sizeof] = ACTIONS(3086), + [anon_sym___alignof__] = ACTIONS(3086), + [anon_sym___alignof] = ACTIONS(3086), + [anon_sym__alignof] = ACTIONS(3086), + [anon_sym_alignof] = ACTIONS(3086), + [anon_sym__Alignof] = ACTIONS(3086), + [anon_sym_offsetof] = ACTIONS(3086), + [anon_sym__Generic] = ACTIONS(3086), + [anon_sym_asm] = ACTIONS(3086), + [anon_sym___asm__] = ACTIONS(3086), + [sym_number_literal] = ACTIONS(3088), + [anon_sym_L_SQUOTE] = ACTIONS(3088), + [anon_sym_u_SQUOTE] = ACTIONS(3088), + [anon_sym_U_SQUOTE] = ACTIONS(3088), + [anon_sym_u8_SQUOTE] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3088), + [anon_sym_L_DQUOTE] = ACTIONS(3088), + [anon_sym_u_DQUOTE] = ACTIONS(3088), + [anon_sym_U_DQUOTE] = ACTIONS(3088), + [anon_sym_u8_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [anon_sym_NULL] = ACTIONS(3086), + [anon_sym_nullptr] = ACTIONS(3086), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(3086), + [anon_sym_decltype] = ACTIONS(3086), + [anon_sym_virtual] = ACTIONS(3086), + [anon_sym_alignas] = ACTIONS(3086), + [anon_sym_explicit] = ACTIONS(3086), + [anon_sym_typename] = ACTIONS(3086), + [anon_sym_template] = ACTIONS(3086), + [anon_sym_operator] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_namespace] = ACTIONS(3086), + [anon_sym_using] = ACTIONS(3086), + [anon_sym_static_assert] = ACTIONS(3086), + [anon_sym_concept] = ACTIONS(3086), + [anon_sym_co_return] = ACTIONS(3086), + [anon_sym_co_yield] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(3088), + [anon_sym_LR_DQUOTE] = ACTIONS(3088), + [anon_sym_uR_DQUOTE] = ACTIONS(3088), + [anon_sym_UR_DQUOTE] = ACTIONS(3088), + [anon_sym_u8R_DQUOTE] = ACTIONS(3088), + [anon_sym_co_await] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3086), + [sym_this] = ACTIONS(3086), }, - [328] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [362] = { + [sym_identifier] = ACTIONS(3090), + [aux_sym_preproc_include_token1] = ACTIONS(3090), + [aux_sym_preproc_def_token1] = ACTIONS(3090), + [aux_sym_preproc_if_token1] = ACTIONS(3090), + [aux_sym_preproc_if_token2] = ACTIONS(3090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), + [aux_sym_preproc_else_token1] = ACTIONS(3090), + [aux_sym_preproc_elif_token1] = ACTIONS(3090), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3090), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3090), + [sym_preproc_directive] = ACTIONS(3090), + [anon_sym_LPAREN2] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym___extension__] = ACTIONS(3090), + [anon_sym_typedef] = ACTIONS(3090), + [anon_sym_extern] = ACTIONS(3090), + [anon_sym___attribute__] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), + [anon_sym___declspec] = ACTIONS(3090), + [anon_sym___based] = ACTIONS(3090), + [anon_sym___cdecl] = ACTIONS(3090), + [anon_sym___clrcall] = ACTIONS(3090), + [anon_sym___stdcall] = ACTIONS(3090), + [anon_sym___fastcall] = ACTIONS(3090), + [anon_sym___thiscall] = ACTIONS(3090), + [anon_sym___vectorcall] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_signed] = ACTIONS(3090), + [anon_sym_unsigned] = ACTIONS(3090), + [anon_sym_long] = ACTIONS(3090), + [anon_sym_short] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_static] = ACTIONS(3090), + [anon_sym_register] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym___inline] = ACTIONS(3090), + [anon_sym___inline__] = ACTIONS(3090), + [anon_sym___forceinline] = ACTIONS(3090), + [anon_sym_thread_local] = ACTIONS(3090), + [anon_sym___thread] = ACTIONS(3090), + [anon_sym_const] = ACTIONS(3090), + [anon_sym_constexpr] = ACTIONS(3090), + [anon_sym_volatile] = ACTIONS(3090), + [anon_sym_restrict] = ACTIONS(3090), + [anon_sym___restrict__] = ACTIONS(3090), + [anon_sym__Atomic] = ACTIONS(3090), + [anon_sym__Noreturn] = ACTIONS(3090), + [anon_sym_noreturn] = ACTIONS(3090), + [anon_sym_mutable] = ACTIONS(3090), + [anon_sym_constinit] = ACTIONS(3090), + [anon_sym_consteval] = ACTIONS(3090), + [sym_primitive_type] = ACTIONS(3090), + [anon_sym_enum] = ACTIONS(3090), + [anon_sym_class] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3090), + [anon_sym_union] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_switch] = ACTIONS(3090), + [anon_sym_case] = ACTIONS(3090), + [anon_sym_default] = ACTIONS(3090), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_do] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_goto] = ACTIONS(3090), + [anon_sym___try] = ACTIONS(3090), + [anon_sym___leave] = ACTIONS(3090), + [anon_sym_not] = ACTIONS(3090), + [anon_sym_compl] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_sizeof] = ACTIONS(3090), + [anon_sym___alignof__] = ACTIONS(3090), + [anon_sym___alignof] = ACTIONS(3090), + [anon_sym__alignof] = ACTIONS(3090), + [anon_sym_alignof] = ACTIONS(3090), + [anon_sym__Alignof] = ACTIONS(3090), + [anon_sym_offsetof] = ACTIONS(3090), + [anon_sym__Generic] = ACTIONS(3090), + [anon_sym_asm] = ACTIONS(3090), + [anon_sym___asm__] = ACTIONS(3090), + [sym_number_literal] = ACTIONS(3092), + [anon_sym_L_SQUOTE] = ACTIONS(3092), + [anon_sym_u_SQUOTE] = ACTIONS(3092), + [anon_sym_U_SQUOTE] = ACTIONS(3092), + [anon_sym_u8_SQUOTE] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3092), + [anon_sym_L_DQUOTE] = ACTIONS(3092), + [anon_sym_u_DQUOTE] = ACTIONS(3092), + [anon_sym_U_DQUOTE] = ACTIONS(3092), + [anon_sym_u8_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [anon_sym_NULL] = ACTIONS(3090), + [anon_sym_nullptr] = ACTIONS(3090), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(3090), + [anon_sym_decltype] = ACTIONS(3090), + [anon_sym_virtual] = ACTIONS(3090), + [anon_sym_alignas] = ACTIONS(3090), + [anon_sym_explicit] = ACTIONS(3090), + [anon_sym_typename] = ACTIONS(3090), + [anon_sym_template] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_namespace] = ACTIONS(3090), + [anon_sym_using] = ACTIONS(3090), + [anon_sym_static_assert] = ACTIONS(3090), + [anon_sym_concept] = ACTIONS(3090), + [anon_sym_co_return] = ACTIONS(3090), + [anon_sym_co_yield] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(3092), + [anon_sym_LR_DQUOTE] = ACTIONS(3092), + [anon_sym_uR_DQUOTE] = ACTIONS(3092), + [anon_sym_UR_DQUOTE] = ACTIONS(3092), + [anon_sym_u8R_DQUOTE] = ACTIONS(3092), + [anon_sym_co_await] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3090), + [anon_sym_requires] = ACTIONS(3090), + [sym_this] = ACTIONS(3090), }, - [329] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3623), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8901), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8507), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8506), - [sym__unary_right_fold] = STATE(8504), - [sym__binary_fold] = STATE(8503), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), + [363] = { + [sym_catch_clause] = STATE(379), + [aux_sym_constructor_try_statement_repeat1] = STATE(379), + [sym_identifier] = ACTIONS(2822), + [aux_sym_preproc_include_token1] = ACTIONS(2822), + [aux_sym_preproc_def_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token1] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), + [sym_preproc_directive] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_AMP_AMP] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym___extension__] = ACTIONS(2822), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), + [anon_sym___declspec] = ACTIONS(2822), + [anon_sym___based] = ACTIONS(2822), + [anon_sym___cdecl] = ACTIONS(2822), + [anon_sym___clrcall] = ACTIONS(2822), + [anon_sym___stdcall] = ACTIONS(2822), + [anon_sym___fastcall] = ACTIONS(2822), + [anon_sym___thiscall] = ACTIONS(2822), + [anon_sym___vectorcall] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_RBRACE] = ACTIONS(2824), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym___inline] = ACTIONS(2822), + [anon_sym___inline__] = ACTIONS(2822), + [anon_sym___forceinline] = ACTIONS(2822), + [anon_sym_thread_local] = ACTIONS(2822), + [anon_sym___thread] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_constexpr] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym___restrict__] = ACTIONS(2822), + [anon_sym__Atomic] = ACTIONS(2822), + [anon_sym__Noreturn] = ACTIONS(2822), + [anon_sym_noreturn] = ACTIONS(2822), + [anon_sym_mutable] = ACTIONS(2822), + [anon_sym_constinit] = ACTIONS(2822), + [anon_sym_consteval] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_else] = ACTIONS(2822), + [anon_sym_switch] = ACTIONS(2822), + [anon_sym_case] = ACTIONS(2822), + [anon_sym_default] = ACTIONS(2822), + [anon_sym_while] = ACTIONS(2822), + [anon_sym_do] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_goto] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2822), + [anon_sym___leave] = ACTIONS(2822), + [anon_sym_not] = ACTIONS(2822), + [anon_sym_compl] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_sizeof] = ACTIONS(2822), + [anon_sym___alignof__] = ACTIONS(2822), + [anon_sym___alignof] = ACTIONS(2822), + [anon_sym__alignof] = ACTIONS(2822), + [anon_sym_alignof] = ACTIONS(2822), + [anon_sym__Alignof] = ACTIONS(2822), + [anon_sym_offsetof] = ACTIONS(2822), + [anon_sym__Generic] = ACTIONS(2822), + [anon_sym_asm] = ACTIONS(2822), + [anon_sym___asm__] = ACTIONS(2822), + [sym_number_literal] = ACTIONS(2824), + [anon_sym_L_SQUOTE] = ACTIONS(2824), + [anon_sym_u_SQUOTE] = ACTIONS(2824), + [anon_sym_U_SQUOTE] = ACTIONS(2824), + [anon_sym_u8_SQUOTE] = ACTIONS(2824), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_L_DQUOTE] = ACTIONS(2824), + [anon_sym_u_DQUOTE] = ACTIONS(2824), + [anon_sym_U_DQUOTE] = ACTIONS(2824), + [anon_sym_u8_DQUOTE] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2824), + [sym_true] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [anon_sym_NULL] = ACTIONS(2822), + [anon_sym_nullptr] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2822), + [anon_sym_decltype] = ACTIONS(2822), + [anon_sym_virtual] = ACTIONS(2822), + [anon_sym_alignas] = ACTIONS(2822), + [anon_sym_explicit] = ACTIONS(2822), + [anon_sym_typename] = ACTIONS(2822), + [anon_sym_template] = ACTIONS(2822), + [anon_sym_operator] = ACTIONS(2822), + [anon_sym_try] = ACTIONS(2822), + [anon_sym_delete] = ACTIONS(2822), + [anon_sym_throw] = ACTIONS(2822), + [anon_sym_namespace] = ACTIONS(2822), + [anon_sym_using] = ACTIONS(2822), + [anon_sym_static_assert] = ACTIONS(2822), + [anon_sym_concept] = ACTIONS(2822), + [anon_sym_co_return] = ACTIONS(2822), + [anon_sym_co_yield] = ACTIONS(2822), + [anon_sym_catch] = ACTIONS(3094), + [anon_sym_R_DQUOTE] = ACTIONS(2824), + [anon_sym_LR_DQUOTE] = ACTIONS(2824), + [anon_sym_uR_DQUOTE] = ACTIONS(2824), + [anon_sym_UR_DQUOTE] = ACTIONS(2824), + [anon_sym_u8R_DQUOTE] = ACTIONS(2824), + [anon_sym_co_await] = ACTIONS(2822), + [anon_sym_new] = ACTIONS(2822), + [anon_sym_requires] = ACTIONS(2822), + [sym_this] = ACTIONS(2822), + }, + [364] = { + [sym_preproc_def] = STATE(673), + [sym_preproc_function_def] = STATE(673), + [sym_preproc_call] = STATE(673), + [sym_preproc_elifdef] = STATE(8784), + [sym_preproc_if_in_field_declaration_list] = STATE(673), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(673), + [sym_preproc_else_in_field_declaration_list] = STATE(8784), + [sym_preproc_elif_in_field_declaration_list] = STATE(8784), + [sym_type_definition] = STATE(673), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6193), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6791), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(673), + [sym_field_declaration] = STATE(673), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2046), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(673), + [sym_operator_cast] = STATE(7208), + [sym_inline_method_definition] = STATE(673), + [sym__constructor_specifiers] = STATE(2046), + [sym_operator_cast_definition] = STATE(673), + [sym_operator_cast_declaration] = STATE(673), + [sym_constructor_or_destructor_definition] = STATE(673), + [sym_constructor_or_destructor_declaration] = STATE(673), + [sym_friend_declaration] = STATE(673), + [sym_access_specifier] = STATE(8745), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(673), + [sym_alias_declaration] = STATE(673), + [sym_static_assert_declaration] = STATE(673), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7208), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(673), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3026), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [aux_sym_preproc_elifdef_token1] = ACTIONS(279), + [aux_sym_preproc_elifdef_token2] = ACTIONS(279), + [sym_preproc_directive] = ACTIONS(3038), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_typedef] = ACTIONS(3050), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -136892,406 +142031,403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3068), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_static_assert] = ACTIONS(3076), }, - [330] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [365] = { + [sym_identifier] = ACTIONS(3098), + [aux_sym_preproc_include_token1] = ACTIONS(3098), + [aux_sym_preproc_def_token1] = ACTIONS(3098), + [aux_sym_preproc_if_token1] = ACTIONS(3098), + [aux_sym_preproc_if_token2] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), + [aux_sym_preproc_else_token1] = ACTIONS(3098), + [aux_sym_preproc_elif_token1] = ACTIONS(3098), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3098), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3098), + [sym_preproc_directive] = ACTIONS(3098), + [anon_sym_LPAREN2] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym___extension__] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3098), + [anon_sym_extern] = ACTIONS(3098), + [anon_sym___attribute__] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), + [anon_sym___declspec] = ACTIONS(3098), + [anon_sym___based] = ACTIONS(3098), + [anon_sym___cdecl] = ACTIONS(3098), + [anon_sym___clrcall] = ACTIONS(3098), + [anon_sym___stdcall] = ACTIONS(3098), + [anon_sym___fastcall] = ACTIONS(3098), + [anon_sym___thiscall] = ACTIONS(3098), + [anon_sym___vectorcall] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_signed] = ACTIONS(3098), + [anon_sym_unsigned] = ACTIONS(3098), + [anon_sym_long] = ACTIONS(3098), + [anon_sym_short] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_register] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym___inline] = ACTIONS(3098), + [anon_sym___inline__] = ACTIONS(3098), + [anon_sym___forceinline] = ACTIONS(3098), + [anon_sym_thread_local] = ACTIONS(3098), + [anon_sym___thread] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_constexpr] = ACTIONS(3098), + [anon_sym_volatile] = ACTIONS(3098), + [anon_sym_restrict] = ACTIONS(3098), + [anon_sym___restrict__] = ACTIONS(3098), + [anon_sym__Atomic] = ACTIONS(3098), + [anon_sym__Noreturn] = ACTIONS(3098), + [anon_sym_noreturn] = ACTIONS(3098), + [anon_sym_mutable] = ACTIONS(3098), + [anon_sym_constinit] = ACTIONS(3098), + [anon_sym_consteval] = ACTIONS(3098), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(3098), + [anon_sym_union] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_switch] = ACTIONS(3098), + [anon_sym_case] = ACTIONS(3098), + [anon_sym_default] = ACTIONS(3098), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_do] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_goto] = ACTIONS(3098), + [anon_sym___try] = ACTIONS(3098), + [anon_sym___leave] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(3098), + [anon_sym_compl] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_sizeof] = ACTIONS(3098), + [anon_sym___alignof__] = ACTIONS(3098), + [anon_sym___alignof] = ACTIONS(3098), + [anon_sym__alignof] = ACTIONS(3098), + [anon_sym_alignof] = ACTIONS(3098), + [anon_sym__Alignof] = ACTIONS(3098), + [anon_sym_offsetof] = ACTIONS(3098), + [anon_sym__Generic] = ACTIONS(3098), + [anon_sym_asm] = ACTIONS(3098), + [anon_sym___asm__] = ACTIONS(3098), + [sym_number_literal] = ACTIONS(3100), + [anon_sym_L_SQUOTE] = ACTIONS(3100), + [anon_sym_u_SQUOTE] = ACTIONS(3100), + [anon_sym_U_SQUOTE] = ACTIONS(3100), + [anon_sym_u8_SQUOTE] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3100), + [anon_sym_L_DQUOTE] = ACTIONS(3100), + [anon_sym_u_DQUOTE] = ACTIONS(3100), + [anon_sym_U_DQUOTE] = ACTIONS(3100), + [anon_sym_u8_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE] = ACTIONS(3100), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [anon_sym_NULL] = ACTIONS(3098), + [anon_sym_nullptr] = ACTIONS(3098), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(3098), + [anon_sym_decltype] = ACTIONS(3098), + [anon_sym_virtual] = ACTIONS(3098), + [anon_sym_alignas] = ACTIONS(3098), + [anon_sym_explicit] = ACTIONS(3098), + [anon_sym_typename] = ACTIONS(3098), + [anon_sym_template] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_static_assert] = ACTIONS(3098), + [anon_sym_concept] = ACTIONS(3098), + [anon_sym_co_return] = ACTIONS(3098), + [anon_sym_co_yield] = ACTIONS(3098), + [anon_sym_R_DQUOTE] = ACTIONS(3100), + [anon_sym_LR_DQUOTE] = ACTIONS(3100), + [anon_sym_uR_DQUOTE] = ACTIONS(3100), + [anon_sym_UR_DQUOTE] = ACTIONS(3100), + [anon_sym_u8R_DQUOTE] = ACTIONS(3100), + [anon_sym_co_await] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_requires] = ACTIONS(3098), + [sym_this] = ACTIONS(3098), }, - [331] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [366] = { + [sym_preproc_def] = STATE(364), + [sym_preproc_function_def] = STATE(364), + [sym_preproc_call] = STATE(364), + [sym_preproc_elifdef] = STATE(8774), + [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(8774), + [sym_preproc_elif_in_field_declaration_list] = STATE(8774), + [sym_type_definition] = STATE(364), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6193), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6791), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(364), + [sym_field_declaration] = STATE(364), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2046), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(364), + [sym_operator_cast] = STATE(7208), + [sym_inline_method_definition] = STATE(364), + [sym__constructor_specifiers] = STATE(2046), + [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(8745), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(364), + [sym_alias_declaration] = STATE(364), + [sym_static_assert_declaration] = STATE(364), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7208), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(364), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3026), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [aux_sym_preproc_elifdef_token1] = ACTIONS(279), + [aux_sym_preproc_elifdef_token2] = ACTIONS(279), + [sym_preproc_directive] = ACTIONS(3038), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_typedef] = ACTIONS(3050), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3068), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_static_assert] = ACTIONS(3076), }, - [332] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8641), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), + [367] = { + [sym_preproc_def] = STATE(357), + [sym_preproc_function_def] = STATE(357), + [sym_preproc_call] = STATE(357), + [sym_preproc_elifdef] = STATE(8969), + [sym_preproc_if_in_field_declaration_list] = STATE(357), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(357), + [sym_preproc_else_in_field_declaration_list] = STATE(8969), + [sym_preproc_elif_in_field_declaration_list] = STATE(8969), + [sym_type_definition] = STATE(357), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6193), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6791), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(357), + [sym_field_declaration] = STATE(357), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2046), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(357), + [sym_operator_cast] = STATE(7208), + [sym_inline_method_definition] = STATE(357), + [sym__constructor_specifiers] = STATE(2046), + [sym_operator_cast_definition] = STATE(357), + [sym_operator_cast_declaration] = STATE(357), + [sym_constructor_or_destructor_definition] = STATE(357), + [sym_constructor_or_destructor_declaration] = STATE(357), + [sym_friend_declaration] = STATE(357), + [sym_access_specifier] = STATE(8745), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(357), + [sym_alias_declaration] = STATE(357), + [sym_static_assert_declaration] = STATE(357), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7208), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(357), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3026), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [aux_sym_preproc_elifdef_token1] = ACTIONS(279), + [aux_sym_preproc_elifdef_token2] = ACTIONS(279), + [sym_preproc_directive] = ACTIONS(3038), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_typedef] = ACTIONS(3050), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -137303,543 +142439,1763 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3068), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_static_assert] = ACTIONS(3076), }, - [333] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [368] = { + [sym_identifier] = ACTIONS(3106), + [aux_sym_preproc_include_token1] = ACTIONS(3106), + [aux_sym_preproc_def_token1] = ACTIONS(3106), + [aux_sym_preproc_if_token1] = ACTIONS(3106), + [aux_sym_preproc_if_token2] = ACTIONS(3106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3106), + [aux_sym_preproc_else_token1] = ACTIONS(3106), + [aux_sym_preproc_elif_token1] = ACTIONS(3106), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3106), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3106), + [sym_preproc_directive] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3106), + [anon_sym_typedef] = ACTIONS(3106), + [anon_sym_extern] = ACTIONS(3106), + [anon_sym___attribute__] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3106), + [anon_sym___based] = ACTIONS(3106), + [anon_sym___cdecl] = ACTIONS(3106), + [anon_sym___clrcall] = ACTIONS(3106), + [anon_sym___stdcall] = ACTIONS(3106), + [anon_sym___fastcall] = ACTIONS(3106), + [anon_sym___thiscall] = ACTIONS(3106), + [anon_sym___vectorcall] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3106), + [anon_sym_unsigned] = ACTIONS(3106), + [anon_sym_long] = ACTIONS(3106), + [anon_sym_short] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_register] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym___inline] = ACTIONS(3106), + [anon_sym___inline__] = ACTIONS(3106), + [anon_sym___forceinline] = ACTIONS(3106), + [anon_sym_thread_local] = ACTIONS(3106), + [anon_sym___thread] = ACTIONS(3106), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_constexpr] = ACTIONS(3106), + [anon_sym_volatile] = ACTIONS(3106), + [anon_sym_restrict] = ACTIONS(3106), + [anon_sym___restrict__] = ACTIONS(3106), + [anon_sym__Atomic] = ACTIONS(3106), + [anon_sym__Noreturn] = ACTIONS(3106), + [anon_sym_noreturn] = ACTIONS(3106), + [anon_sym_mutable] = ACTIONS(3106), + [anon_sym_constinit] = ACTIONS(3106), + [anon_sym_consteval] = ACTIONS(3106), + [sym_primitive_type] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [anon_sym_class] = ACTIONS(3106), + [anon_sym_struct] = ACTIONS(3106), + [anon_sym_union] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_switch] = ACTIONS(3106), + [anon_sym_case] = ACTIONS(3106), + [anon_sym_default] = ACTIONS(3106), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_do] = ACTIONS(3106), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_goto] = ACTIONS(3106), + [anon_sym___try] = ACTIONS(3106), + [anon_sym___leave] = ACTIONS(3106), + [anon_sym_not] = ACTIONS(3106), + [anon_sym_compl] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_sizeof] = ACTIONS(3106), + [anon_sym___alignof__] = ACTIONS(3106), + [anon_sym___alignof] = ACTIONS(3106), + [anon_sym__alignof] = ACTIONS(3106), + [anon_sym_alignof] = ACTIONS(3106), + [anon_sym__Alignof] = ACTIONS(3106), + [anon_sym_offsetof] = ACTIONS(3106), + [anon_sym__Generic] = ACTIONS(3106), + [anon_sym_asm] = ACTIONS(3106), + [anon_sym___asm__] = ACTIONS(3106), + [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(3106), + [sym_false] = ACTIONS(3106), + [anon_sym_NULL] = ACTIONS(3106), + [anon_sym_nullptr] = ACTIONS(3106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3106), + [anon_sym_decltype] = ACTIONS(3106), + [anon_sym_virtual] = ACTIONS(3106), + [anon_sym_alignas] = ACTIONS(3106), + [anon_sym_explicit] = ACTIONS(3106), + [anon_sym_typename] = ACTIONS(3106), + [anon_sym_template] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_delete] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_namespace] = ACTIONS(3106), + [anon_sym_using] = ACTIONS(3106), + [anon_sym_static_assert] = ACTIONS(3106), + [anon_sym_concept] = ACTIONS(3106), + [anon_sym_co_return] = ACTIONS(3106), + [anon_sym_co_yield] = ACTIONS(3106), + [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(3106), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_requires] = ACTIONS(3106), + [sym_this] = ACTIONS(3106), + }, + [369] = { + [sym_identifier] = ACTIONS(3110), + [aux_sym_preproc_include_token1] = ACTIONS(3110), + [aux_sym_preproc_def_token1] = ACTIONS(3110), + [aux_sym_preproc_if_token1] = ACTIONS(3110), + [aux_sym_preproc_if_token2] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3110), + [aux_sym_preproc_else_token1] = ACTIONS(3110), + [aux_sym_preproc_elif_token1] = ACTIONS(3110), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3110), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3110), + [sym_preproc_directive] = ACTIONS(3110), + [anon_sym_LPAREN2] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym___extension__] = ACTIONS(3110), + [anon_sym_typedef] = ACTIONS(3110), + [anon_sym_extern] = ACTIONS(3110), + [anon_sym___attribute__] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3112), + [anon_sym___declspec] = ACTIONS(3110), + [anon_sym___based] = ACTIONS(3110), + [anon_sym___cdecl] = ACTIONS(3110), + [anon_sym___clrcall] = ACTIONS(3110), + [anon_sym___stdcall] = ACTIONS(3110), + [anon_sym___fastcall] = ACTIONS(3110), + [anon_sym___thiscall] = ACTIONS(3110), + [anon_sym___vectorcall] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_signed] = ACTIONS(3110), + [anon_sym_unsigned] = ACTIONS(3110), + [anon_sym_long] = ACTIONS(3110), + [anon_sym_short] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_static] = ACTIONS(3110), + [anon_sym_register] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym___inline] = ACTIONS(3110), + [anon_sym___inline__] = ACTIONS(3110), + [anon_sym___forceinline] = ACTIONS(3110), + [anon_sym_thread_local] = ACTIONS(3110), + [anon_sym___thread] = ACTIONS(3110), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_constexpr] = ACTIONS(3110), + [anon_sym_volatile] = ACTIONS(3110), + [anon_sym_restrict] = ACTIONS(3110), + [anon_sym___restrict__] = ACTIONS(3110), + [anon_sym__Atomic] = ACTIONS(3110), + [anon_sym__Noreturn] = ACTIONS(3110), + [anon_sym_noreturn] = ACTIONS(3110), + [anon_sym_mutable] = ACTIONS(3110), + [anon_sym_constinit] = ACTIONS(3110), + [anon_sym_consteval] = ACTIONS(3110), + [sym_primitive_type] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_class] = ACTIONS(3110), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_union] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_switch] = ACTIONS(3110), + [anon_sym_case] = ACTIONS(3110), + [anon_sym_default] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_do] = ACTIONS(3110), + [anon_sym_for] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_goto] = ACTIONS(3110), + [anon_sym___try] = ACTIONS(3110), + [anon_sym___leave] = ACTIONS(3110), + [anon_sym_not] = ACTIONS(3110), + [anon_sym_compl] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_sizeof] = ACTIONS(3110), + [anon_sym___alignof__] = ACTIONS(3110), + [anon_sym___alignof] = ACTIONS(3110), + [anon_sym__alignof] = ACTIONS(3110), + [anon_sym_alignof] = ACTIONS(3110), + [anon_sym__Alignof] = ACTIONS(3110), + [anon_sym_offsetof] = ACTIONS(3110), + [anon_sym__Generic] = ACTIONS(3110), + [anon_sym_asm] = ACTIONS(3110), + [anon_sym___asm__] = ACTIONS(3110), + [sym_number_literal] = ACTIONS(3112), + [anon_sym_L_SQUOTE] = ACTIONS(3112), + [anon_sym_u_SQUOTE] = ACTIONS(3112), + [anon_sym_U_SQUOTE] = ACTIONS(3112), + [anon_sym_u8_SQUOTE] = ACTIONS(3112), + [anon_sym_SQUOTE] = ACTIONS(3112), + [anon_sym_L_DQUOTE] = ACTIONS(3112), + [anon_sym_u_DQUOTE] = ACTIONS(3112), + [anon_sym_U_DQUOTE] = ACTIONS(3112), + [anon_sym_u8_DQUOTE] = ACTIONS(3112), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [anon_sym_NULL] = ACTIONS(3110), + [anon_sym_nullptr] = ACTIONS(3110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3110), + [anon_sym_decltype] = ACTIONS(3110), + [anon_sym_virtual] = ACTIONS(3110), + [anon_sym_alignas] = ACTIONS(3110), + [anon_sym_explicit] = ACTIONS(3110), + [anon_sym_typename] = ACTIONS(3110), + [anon_sym_template] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_delete] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_namespace] = ACTIONS(3110), + [anon_sym_using] = ACTIONS(3110), + [anon_sym_static_assert] = ACTIONS(3110), + [anon_sym_concept] = ACTIONS(3110), + [anon_sym_co_return] = ACTIONS(3110), + [anon_sym_co_yield] = ACTIONS(3110), + [anon_sym_R_DQUOTE] = ACTIONS(3112), + [anon_sym_LR_DQUOTE] = ACTIONS(3112), + [anon_sym_uR_DQUOTE] = ACTIONS(3112), + [anon_sym_UR_DQUOTE] = ACTIONS(3112), + [anon_sym_u8R_DQUOTE] = ACTIONS(3112), + [anon_sym_co_await] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3110), + [anon_sym_requires] = ACTIONS(3110), + [sym_this] = ACTIONS(3110), + }, + [370] = { + [sym_identifier] = ACTIONS(3114), + [aux_sym_preproc_include_token1] = ACTIONS(3114), + [aux_sym_preproc_def_token1] = ACTIONS(3114), + [aux_sym_preproc_if_token1] = ACTIONS(3114), + [aux_sym_preproc_if_token2] = ACTIONS(3114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3114), + [aux_sym_preproc_else_token1] = ACTIONS(3114), + [aux_sym_preproc_elif_token1] = ACTIONS(3114), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3114), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3114), + [sym_preproc_directive] = ACTIONS(3114), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3114), + [anon_sym_PLUS] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym___extension__] = ACTIONS(3114), + [anon_sym_typedef] = ACTIONS(3114), + [anon_sym_extern] = ACTIONS(3114), + [anon_sym___attribute__] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3114), + [anon_sym___based] = ACTIONS(3114), + [anon_sym___cdecl] = ACTIONS(3114), + [anon_sym___clrcall] = ACTIONS(3114), + [anon_sym___stdcall] = ACTIONS(3114), + [anon_sym___fastcall] = ACTIONS(3114), + [anon_sym___thiscall] = ACTIONS(3114), + [anon_sym___vectorcall] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3114), + [anon_sym_unsigned] = ACTIONS(3114), + [anon_sym_long] = ACTIONS(3114), + [anon_sym_short] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_static] = ACTIONS(3114), + [anon_sym_register] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym___inline] = ACTIONS(3114), + [anon_sym___inline__] = ACTIONS(3114), + [anon_sym___forceinline] = ACTIONS(3114), + [anon_sym_thread_local] = ACTIONS(3114), + [anon_sym___thread] = ACTIONS(3114), + [anon_sym_const] = ACTIONS(3114), + [anon_sym_constexpr] = ACTIONS(3114), + [anon_sym_volatile] = ACTIONS(3114), + [anon_sym_restrict] = ACTIONS(3114), + [anon_sym___restrict__] = ACTIONS(3114), + [anon_sym__Atomic] = ACTIONS(3114), + [anon_sym__Noreturn] = ACTIONS(3114), + [anon_sym_noreturn] = ACTIONS(3114), + [anon_sym_mutable] = ACTIONS(3114), + [anon_sym_constinit] = ACTIONS(3114), + [anon_sym_consteval] = ACTIONS(3114), + [sym_primitive_type] = ACTIONS(3114), + [anon_sym_enum] = ACTIONS(3114), + [anon_sym_class] = ACTIONS(3114), + [anon_sym_struct] = ACTIONS(3114), + [anon_sym_union] = ACTIONS(3114), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_switch] = ACTIONS(3114), + [anon_sym_case] = ACTIONS(3114), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_do] = ACTIONS(3114), + [anon_sym_for] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_goto] = ACTIONS(3114), + [anon_sym___try] = ACTIONS(3114), + [anon_sym___leave] = ACTIONS(3114), + [anon_sym_not] = ACTIONS(3114), + [anon_sym_compl] = ACTIONS(3114), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_sizeof] = ACTIONS(3114), + [anon_sym___alignof__] = ACTIONS(3114), + [anon_sym___alignof] = ACTIONS(3114), + [anon_sym__alignof] = ACTIONS(3114), + [anon_sym_alignof] = ACTIONS(3114), + [anon_sym__Alignof] = ACTIONS(3114), + [anon_sym_offsetof] = ACTIONS(3114), + [anon_sym__Generic] = ACTIONS(3114), + [anon_sym_asm] = ACTIONS(3114), + [anon_sym___asm__] = ACTIONS(3114), + [sym_number_literal] = ACTIONS(3116), + [anon_sym_L_SQUOTE] = ACTIONS(3116), + [anon_sym_u_SQUOTE] = ACTIONS(3116), + [anon_sym_U_SQUOTE] = ACTIONS(3116), + [anon_sym_u8_SQUOTE] = ACTIONS(3116), + [anon_sym_SQUOTE] = ACTIONS(3116), + [anon_sym_L_DQUOTE] = ACTIONS(3116), + [anon_sym_u_DQUOTE] = ACTIONS(3116), + [anon_sym_U_DQUOTE] = ACTIONS(3116), + [anon_sym_u8_DQUOTE] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3116), + [sym_true] = ACTIONS(3114), + [sym_false] = ACTIONS(3114), + [anon_sym_NULL] = ACTIONS(3114), + [anon_sym_nullptr] = ACTIONS(3114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3114), + [anon_sym_decltype] = ACTIONS(3114), + [anon_sym_virtual] = ACTIONS(3114), + [anon_sym_alignas] = ACTIONS(3114), + [anon_sym_explicit] = ACTIONS(3114), + [anon_sym_typename] = ACTIONS(3114), + [anon_sym_template] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_delete] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_namespace] = ACTIONS(3114), + [anon_sym_using] = ACTIONS(3114), + [anon_sym_static_assert] = ACTIONS(3114), + [anon_sym_concept] = ACTIONS(3114), + [anon_sym_co_return] = ACTIONS(3114), + [anon_sym_co_yield] = ACTIONS(3114), + [anon_sym_R_DQUOTE] = ACTIONS(3116), + [anon_sym_LR_DQUOTE] = ACTIONS(3116), + [anon_sym_uR_DQUOTE] = ACTIONS(3116), + [anon_sym_UR_DQUOTE] = ACTIONS(3116), + [anon_sym_u8R_DQUOTE] = ACTIONS(3116), + [anon_sym_co_await] = ACTIONS(3114), + [anon_sym_new] = ACTIONS(3114), + [anon_sym_requires] = ACTIONS(3114), + [sym_this] = ACTIONS(3114), + }, + [371] = { + [sym_preproc_def] = STATE(380), + [sym_preproc_function_def] = STATE(380), + [sym_preproc_call] = STATE(380), + [sym_preproc_elifdef] = STATE(8611), + [sym_preproc_if_in_field_declaration_list] = STATE(380), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(380), + [sym_preproc_else_in_field_declaration_list] = STATE(8611), + [sym_preproc_elif_in_field_declaration_list] = STATE(8611), + [sym_type_definition] = STATE(380), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6193), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6791), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(380), + [sym_field_declaration] = STATE(380), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2046), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(380), + [sym_operator_cast] = STATE(7208), + [sym_inline_method_definition] = STATE(380), + [sym__constructor_specifiers] = STATE(2046), + [sym_operator_cast_definition] = STATE(380), + [sym_operator_cast_declaration] = STATE(380), + [sym_constructor_or_destructor_definition] = STATE(380), + [sym_constructor_or_destructor_declaration] = STATE(380), + [sym_friend_declaration] = STATE(380), + [sym_access_specifier] = STATE(8745), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(380), + [sym_alias_declaration] = STATE(380), + [sym_static_assert_declaration] = STATE(380), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7208), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(380), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3026), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [aux_sym_preproc_elifdef_token1] = ACTIONS(279), + [aux_sym_preproc_elifdef_token2] = ACTIONS(279), + [sym_preproc_directive] = ACTIONS(3038), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_typedef] = ACTIONS(3050), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3068), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_static_assert] = ACTIONS(3076), }, - [334] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [372] = { + [sym_else_clause] = STATE(454), + [sym_identifier] = ACTIONS(2851), + [aux_sym_preproc_include_token1] = ACTIONS(2851), + [aux_sym_preproc_def_token1] = ACTIONS(2851), + [aux_sym_preproc_if_token1] = ACTIONS(2851), + [aux_sym_preproc_if_token2] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2851), + [aux_sym_preproc_else_token1] = ACTIONS(2851), + [aux_sym_preproc_elif_token1] = ACTIONS(2851), + [sym_preproc_directive] = ACTIONS(2851), + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym___extension__] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2851), + [anon_sym_extern] = ACTIONS(2851), + [anon_sym___attribute__] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), + [anon_sym___declspec] = ACTIONS(2851), + [anon_sym___based] = ACTIONS(2851), + [anon_sym___cdecl] = ACTIONS(2851), + [anon_sym___clrcall] = ACTIONS(2851), + [anon_sym___stdcall] = ACTIONS(2851), + [anon_sym___fastcall] = ACTIONS(2851), + [anon_sym___thiscall] = ACTIONS(2851), + [anon_sym___vectorcall] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2851), + [anon_sym_unsigned] = ACTIONS(2851), + [anon_sym_long] = ACTIONS(2851), + [anon_sym_short] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2851), + [anon_sym_register] = ACTIONS(2851), + [anon_sym_inline] = ACTIONS(2851), + [anon_sym___inline] = ACTIONS(2851), + [anon_sym___inline__] = ACTIONS(2851), + [anon_sym___forceinline] = ACTIONS(2851), + [anon_sym_thread_local] = ACTIONS(2851), + [anon_sym___thread] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_constexpr] = ACTIONS(2851), + [anon_sym_volatile] = ACTIONS(2851), + [anon_sym_restrict] = ACTIONS(2851), + [anon_sym___restrict__] = ACTIONS(2851), + [anon_sym__Atomic] = ACTIONS(2851), + [anon_sym__Noreturn] = ACTIONS(2851), + [anon_sym_noreturn] = ACTIONS(2851), + [anon_sym_mutable] = ACTIONS(2851), + [anon_sym_constinit] = ACTIONS(2851), + [anon_sym_consteval] = ACTIONS(2851), + [sym_primitive_type] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), + [anon_sym_class] = ACTIONS(2851), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_union] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_else] = ACTIONS(3120), + [anon_sym_switch] = ACTIONS(2851), + [anon_sym_case] = ACTIONS(2851), + [anon_sym_default] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_do] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_goto] = ACTIONS(2851), + [anon_sym___try] = ACTIONS(2851), + [anon_sym___leave] = ACTIONS(2851), + [anon_sym_not] = ACTIONS(2851), + [anon_sym_compl] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_sizeof] = ACTIONS(2851), + [anon_sym___alignof__] = ACTIONS(2851), + [anon_sym___alignof] = ACTIONS(2851), + [anon_sym__alignof] = ACTIONS(2851), + [anon_sym_alignof] = ACTIONS(2851), + [anon_sym__Alignof] = ACTIONS(2851), + [anon_sym_offsetof] = ACTIONS(2851), + [anon_sym__Generic] = ACTIONS(2851), + [anon_sym_asm] = ACTIONS(2851), + [anon_sym___asm__] = ACTIONS(2851), + [sym_number_literal] = ACTIONS(2853), + [anon_sym_L_SQUOTE] = ACTIONS(2853), + [anon_sym_u_SQUOTE] = ACTIONS(2853), + [anon_sym_U_SQUOTE] = ACTIONS(2853), + [anon_sym_u8_SQUOTE] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2853), + [anon_sym_L_DQUOTE] = ACTIONS(2853), + [anon_sym_u_DQUOTE] = ACTIONS(2853), + [anon_sym_U_DQUOTE] = ACTIONS(2853), + [anon_sym_u8_DQUOTE] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2853), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2851), + [anon_sym_nullptr] = ACTIONS(2851), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2851), + [anon_sym_decltype] = ACTIONS(2851), + [anon_sym_virtual] = ACTIONS(2851), + [anon_sym_alignas] = ACTIONS(2851), + [anon_sym_explicit] = ACTIONS(2851), + [anon_sym_typename] = ACTIONS(2851), + [anon_sym_template] = ACTIONS(2851), + [anon_sym_operator] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [anon_sym_delete] = ACTIONS(2851), + [anon_sym_throw] = ACTIONS(2851), + [anon_sym_namespace] = ACTIONS(2851), + [anon_sym_using] = ACTIONS(2851), + [anon_sym_static_assert] = ACTIONS(2851), + [anon_sym_concept] = ACTIONS(2851), + [anon_sym_co_return] = ACTIONS(2851), + [anon_sym_co_yield] = ACTIONS(2851), + [anon_sym_R_DQUOTE] = ACTIONS(2853), + [anon_sym_LR_DQUOTE] = ACTIONS(2853), + [anon_sym_uR_DQUOTE] = ACTIONS(2853), + [anon_sym_UR_DQUOTE] = ACTIONS(2853), + [anon_sym_u8R_DQUOTE] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(2851), + [anon_sym_requires] = ACTIONS(2851), + [sym_this] = ACTIONS(2851), }, - [335] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3679), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(9024), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [373] = { + [sym_identifier] = ACTIONS(3122), + [aux_sym_preproc_include_token1] = ACTIONS(3122), + [aux_sym_preproc_def_token1] = ACTIONS(3122), + [aux_sym_preproc_if_token1] = ACTIONS(3122), + [aux_sym_preproc_if_token2] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3122), + [aux_sym_preproc_else_token1] = ACTIONS(3122), + [aux_sym_preproc_elif_token1] = ACTIONS(3122), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3122), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3122), + [sym_preproc_directive] = ACTIONS(3122), + [anon_sym_LPAREN2] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym___extension__] = ACTIONS(3122), + [anon_sym_typedef] = ACTIONS(3122), + [anon_sym_extern] = ACTIONS(3122), + [anon_sym___attribute__] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3124), + [anon_sym___declspec] = ACTIONS(3122), + [anon_sym___based] = ACTIONS(3122), + [anon_sym___cdecl] = ACTIONS(3122), + [anon_sym___clrcall] = ACTIONS(3122), + [anon_sym___stdcall] = ACTIONS(3122), + [anon_sym___fastcall] = ACTIONS(3122), + [anon_sym___thiscall] = ACTIONS(3122), + [anon_sym___vectorcall] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_signed] = ACTIONS(3122), + [anon_sym_unsigned] = ACTIONS(3122), + [anon_sym_long] = ACTIONS(3122), + [anon_sym_short] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_register] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym___inline] = ACTIONS(3122), + [anon_sym___inline__] = ACTIONS(3122), + [anon_sym___forceinline] = ACTIONS(3122), + [anon_sym_thread_local] = ACTIONS(3122), + [anon_sym___thread] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym___restrict__] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym__Noreturn] = ACTIONS(3122), + [anon_sym_noreturn] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_union] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_goto] = ACTIONS(3122), + [anon_sym___try] = ACTIONS(3122), + [anon_sym___leave] = ACTIONS(3122), + [anon_sym_not] = ACTIONS(3122), + [anon_sym_compl] = ACTIONS(3122), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_sizeof] = ACTIONS(3122), + [anon_sym___alignof__] = ACTIONS(3122), + [anon_sym___alignof] = ACTIONS(3122), + [anon_sym__alignof] = ACTIONS(3122), + [anon_sym_alignof] = ACTIONS(3122), + [anon_sym__Alignof] = ACTIONS(3122), + [anon_sym_offsetof] = ACTIONS(3122), + [anon_sym__Generic] = ACTIONS(3122), + [anon_sym_asm] = ACTIONS(3122), + [anon_sym___asm__] = ACTIONS(3122), + [sym_number_literal] = ACTIONS(3124), + [anon_sym_L_SQUOTE] = ACTIONS(3124), + [anon_sym_u_SQUOTE] = ACTIONS(3124), + [anon_sym_U_SQUOTE] = ACTIONS(3124), + [anon_sym_u8_SQUOTE] = ACTIONS(3124), + [anon_sym_SQUOTE] = ACTIONS(3124), + [anon_sym_L_DQUOTE] = ACTIONS(3124), + [anon_sym_u_DQUOTE] = ACTIONS(3124), + [anon_sym_U_DQUOTE] = ACTIONS(3124), + [anon_sym_u8_DQUOTE] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [anon_sym_NULL] = ACTIONS(3122), + [anon_sym_nullptr] = ACTIONS(3122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3122), + [anon_sym_decltype] = ACTIONS(3122), + [anon_sym_virtual] = ACTIONS(3122), + [anon_sym_alignas] = ACTIONS(3122), + [anon_sym_explicit] = ACTIONS(3122), + [anon_sym_typename] = ACTIONS(3122), + [anon_sym_template] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_using] = ACTIONS(3122), + [anon_sym_static_assert] = ACTIONS(3122), + [anon_sym_concept] = ACTIONS(3122), + [anon_sym_co_return] = ACTIONS(3122), + [anon_sym_co_yield] = ACTIONS(3122), + [anon_sym_R_DQUOTE] = ACTIONS(3124), + [anon_sym_LR_DQUOTE] = ACTIONS(3124), + [anon_sym_uR_DQUOTE] = ACTIONS(3124), + [anon_sym_UR_DQUOTE] = ACTIONS(3124), + [anon_sym_u8R_DQUOTE] = ACTIONS(3124), + [anon_sym_co_await] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_requires] = ACTIONS(3122), + [sym_this] = ACTIONS(3122), }, - [336] = { - [sym_type_qualifier] = STATE(4525), - [sym__type_specifier] = STATE(5385), - [sym_sized_type_specifier] = STATE(2215), - [sym_enum_specifier] = STATE(2215), - [sym_struct_specifier] = STATE(2215), - [sym_union_specifier] = STATE(2215), - [sym__expression] = STATE(3614), - [sym__expression_not_binary] = STATE(4219), - [sym_comma_expression] = STATE(9049), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_type_descriptor] = STATE(8619), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_placeholder_type_specifier] = STATE(2215), - [sym_decltype_auto] = STATE(2216), - [sym_decltype] = STATE(2137), - [sym_class_specifier] = STATE(2215), - [sym__class_name] = STATE(8122), - [sym_dependent_type] = STATE(2215), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8714), - [sym__unary_right_fold] = STATE(8713), - [sym__binary_fold] = STATE(8711), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6171), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(3885), - [aux_sym__type_definition_type_repeat1] = STATE(4525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2200), - [sym_identifier] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2875), + [374] = { + [sym_identifier] = ACTIONS(3126), + [aux_sym_preproc_include_token1] = ACTIONS(3126), + [aux_sym_preproc_def_token1] = ACTIONS(3126), + [aux_sym_preproc_if_token1] = ACTIONS(3126), + [aux_sym_preproc_if_token2] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3126), + [aux_sym_preproc_else_token1] = ACTIONS(3126), + [aux_sym_preproc_elif_token1] = ACTIONS(3126), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3126), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3126), + [sym_preproc_directive] = ACTIONS(3126), + [anon_sym_LPAREN2] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_AMP_AMP] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym_typedef] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3128), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym___based] = ACTIONS(3126), + [anon_sym___cdecl] = ACTIONS(3126), + [anon_sym___clrcall] = ACTIONS(3126), + [anon_sym___stdcall] = ACTIONS(3126), + [anon_sym___fastcall] = ACTIONS(3126), + [anon_sym___thiscall] = ACTIONS(3126), + [anon_sym___vectorcall] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_case] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_goto] = ACTIONS(3126), + [anon_sym___try] = ACTIONS(3126), + [anon_sym___leave] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(3126), + [anon_sym_compl] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_sizeof] = ACTIONS(3126), + [anon_sym___alignof__] = ACTIONS(3126), + [anon_sym___alignof] = ACTIONS(3126), + [anon_sym__alignof] = ACTIONS(3126), + [anon_sym_alignof] = ACTIONS(3126), + [anon_sym__Alignof] = ACTIONS(3126), + [anon_sym_offsetof] = ACTIONS(3126), + [anon_sym__Generic] = ACTIONS(3126), + [anon_sym_asm] = ACTIONS(3126), + [anon_sym___asm__] = ACTIONS(3126), + [sym_number_literal] = ACTIONS(3128), + [anon_sym_L_SQUOTE] = ACTIONS(3128), + [anon_sym_u_SQUOTE] = ACTIONS(3128), + [anon_sym_U_SQUOTE] = ACTIONS(3128), + [anon_sym_u8_SQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_L_DQUOTE] = ACTIONS(3128), + [anon_sym_u_DQUOTE] = ACTIONS(3128), + [anon_sym_U_DQUOTE] = ACTIONS(3128), + [anon_sym_u8_DQUOTE] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [anon_sym_NULL] = ACTIONS(3126), + [anon_sym_nullptr] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym_explicit] = ACTIONS(3126), + [anon_sym_typename] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_static_assert] = ACTIONS(3126), + [anon_sym_concept] = ACTIONS(3126), + [anon_sym_co_return] = ACTIONS(3126), + [anon_sym_co_yield] = ACTIONS(3126), + [anon_sym_R_DQUOTE] = ACTIONS(3128), + [anon_sym_LR_DQUOTE] = ACTIONS(3128), + [anon_sym_uR_DQUOTE] = ACTIONS(3128), + [anon_sym_UR_DQUOTE] = ACTIONS(3128), + [anon_sym_u8R_DQUOTE] = ACTIONS(3128), + [anon_sym_co_await] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + [sym_this] = ACTIONS(3126), + }, + [375] = { + [sym_identifier] = ACTIONS(3130), + [aux_sym_preproc_include_token1] = ACTIONS(3130), + [aux_sym_preproc_def_token1] = ACTIONS(3130), + [aux_sym_preproc_if_token1] = ACTIONS(3130), + [aux_sym_preproc_if_token2] = ACTIONS(3130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3130), + [aux_sym_preproc_else_token1] = ACTIONS(3130), + [aux_sym_preproc_elif_token1] = ACTIONS(3130), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3130), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3130), + [sym_preproc_directive] = ACTIONS(3130), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym___extension__] = ACTIONS(3130), + [anon_sym_typedef] = ACTIONS(3130), + [anon_sym_extern] = ACTIONS(3130), + [anon_sym___attribute__] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3132), + [anon_sym___declspec] = ACTIONS(3130), + [anon_sym___based] = ACTIONS(3130), + [anon_sym___cdecl] = ACTIONS(3130), + [anon_sym___clrcall] = ACTIONS(3130), + [anon_sym___stdcall] = ACTIONS(3130), + [anon_sym___fastcall] = ACTIONS(3130), + [anon_sym___thiscall] = ACTIONS(3130), + [anon_sym___vectorcall] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_signed] = ACTIONS(3130), + [anon_sym_unsigned] = ACTIONS(3130), + [anon_sym_long] = ACTIONS(3130), + [anon_sym_short] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_static] = ACTIONS(3130), + [anon_sym_register] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym___inline] = ACTIONS(3130), + [anon_sym___inline__] = ACTIONS(3130), + [anon_sym___forceinline] = ACTIONS(3130), + [anon_sym_thread_local] = ACTIONS(3130), + [anon_sym___thread] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(3130), + [anon_sym_constexpr] = ACTIONS(3130), + [anon_sym_volatile] = ACTIONS(3130), + [anon_sym_restrict] = ACTIONS(3130), + [anon_sym___restrict__] = ACTIONS(3130), + [anon_sym__Atomic] = ACTIONS(3130), + [anon_sym__Noreturn] = ACTIONS(3130), + [anon_sym_noreturn] = ACTIONS(3130), + [anon_sym_mutable] = ACTIONS(3130), + [anon_sym_constinit] = ACTIONS(3130), + [anon_sym_consteval] = ACTIONS(3130), + [sym_primitive_type] = ACTIONS(3130), + [anon_sym_enum] = ACTIONS(3130), + [anon_sym_class] = ACTIONS(3130), + [anon_sym_struct] = ACTIONS(3130), + [anon_sym_union] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_switch] = ACTIONS(3130), + [anon_sym_case] = ACTIONS(3130), + [anon_sym_default] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_goto] = ACTIONS(3130), + [anon_sym___try] = ACTIONS(3130), + [anon_sym___leave] = ACTIONS(3130), + [anon_sym_not] = ACTIONS(3130), + [anon_sym_compl] = ACTIONS(3130), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_sizeof] = ACTIONS(3130), + [anon_sym___alignof__] = ACTIONS(3130), + [anon_sym___alignof] = ACTIONS(3130), + [anon_sym__alignof] = ACTIONS(3130), + [anon_sym_alignof] = ACTIONS(3130), + [anon_sym__Alignof] = ACTIONS(3130), + [anon_sym_offsetof] = ACTIONS(3130), + [anon_sym__Generic] = ACTIONS(3130), + [anon_sym_asm] = ACTIONS(3130), + [anon_sym___asm__] = ACTIONS(3130), + [sym_number_literal] = ACTIONS(3132), + [anon_sym_L_SQUOTE] = ACTIONS(3132), + [anon_sym_u_SQUOTE] = ACTIONS(3132), + [anon_sym_U_SQUOTE] = ACTIONS(3132), + [anon_sym_u8_SQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_L_DQUOTE] = ACTIONS(3132), + [anon_sym_u_DQUOTE] = ACTIONS(3132), + [anon_sym_U_DQUOTE] = ACTIONS(3132), + [anon_sym_u8_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [sym_true] = ACTIONS(3130), + [sym_false] = ACTIONS(3130), + [anon_sym_NULL] = ACTIONS(3130), + [anon_sym_nullptr] = ACTIONS(3130), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3130), + [anon_sym_decltype] = ACTIONS(3130), + [anon_sym_virtual] = ACTIONS(3130), + [anon_sym_alignas] = ACTIONS(3130), + [anon_sym_explicit] = ACTIONS(3130), + [anon_sym_typename] = ACTIONS(3130), + [anon_sym_template] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_delete] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_namespace] = ACTIONS(3130), + [anon_sym_using] = ACTIONS(3130), + [anon_sym_static_assert] = ACTIONS(3130), + [anon_sym_concept] = ACTIONS(3130), + [anon_sym_co_return] = ACTIONS(3130), + [anon_sym_co_yield] = ACTIONS(3130), + [anon_sym_R_DQUOTE] = ACTIONS(3132), + [anon_sym_LR_DQUOTE] = ACTIONS(3132), + [anon_sym_uR_DQUOTE] = ACTIONS(3132), + [anon_sym_UR_DQUOTE] = ACTIONS(3132), + [anon_sym_u8R_DQUOTE] = ACTIONS(3132), + [anon_sym_co_await] = ACTIONS(3130), + [anon_sym_new] = ACTIONS(3130), + [anon_sym_requires] = ACTIONS(3130), + [sym_this] = ACTIONS(3130), + }, + [376] = { + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_include_token1] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token2] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [aux_sym_preproc_else_token1] = ACTIONS(3134), + [aux_sym_preproc_elif_token1] = ACTIONS(3134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym___cdecl] = ACTIONS(3134), + [anon_sym___clrcall] = ACTIONS(3134), + [anon_sym___stdcall] = ACTIONS(3134), + [anon_sym___fastcall] = ACTIONS(3134), + [anon_sym___thiscall] = ACTIONS(3134), + [anon_sym___vectorcall] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym___try] = ACTIONS(3134), + [anon_sym___leave] = ACTIONS(3134), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_sizeof] = ACTIONS(3134), + [anon_sym___alignof__] = ACTIONS(3134), + [anon_sym___alignof] = ACTIONS(3134), + [anon_sym__alignof] = ACTIONS(3134), + [anon_sym_alignof] = ACTIONS(3134), + [anon_sym__Alignof] = ACTIONS(3134), + [anon_sym_offsetof] = ACTIONS(3134), + [anon_sym__Generic] = ACTIONS(3134), + [anon_sym_asm] = ACTIONS(3134), + [anon_sym___asm__] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3136), + [anon_sym_L_SQUOTE] = ACTIONS(3136), + [anon_sym_u_SQUOTE] = ACTIONS(3136), + [anon_sym_U_SQUOTE] = ACTIONS(3136), + [anon_sym_u8_SQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_L_DQUOTE] = ACTIONS(3136), + [anon_sym_u_DQUOTE] = ACTIONS(3136), + [anon_sym_U_DQUOTE] = ACTIONS(3136), + [anon_sym_u8_DQUOTE] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [anon_sym_NULL] = ACTIONS(3134), + [anon_sym_nullptr] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), + [anon_sym_concept] = ACTIONS(3134), + [anon_sym_co_return] = ACTIONS(3134), + [anon_sym_co_yield] = ACTIONS(3134), + [anon_sym_R_DQUOTE] = ACTIONS(3136), + [anon_sym_LR_DQUOTE] = ACTIONS(3136), + [anon_sym_uR_DQUOTE] = ACTIONS(3136), + [anon_sym_UR_DQUOTE] = ACTIONS(3136), + [anon_sym_u8R_DQUOTE] = ACTIONS(3136), + [anon_sym_co_await] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_requires] = ACTIONS(3134), + [sym_this] = ACTIONS(3134), + }, + [377] = { + [sym_identifier] = ACTIONS(3138), + [aux_sym_preproc_include_token1] = ACTIONS(3138), + [aux_sym_preproc_def_token1] = ACTIONS(3138), + [aux_sym_preproc_if_token1] = ACTIONS(3138), + [aux_sym_preproc_if_token2] = ACTIONS(3138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3138), + [aux_sym_preproc_else_token1] = ACTIONS(3138), + [aux_sym_preproc_elif_token1] = ACTIONS(3138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3138), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3138), + [sym_preproc_directive] = ACTIONS(3138), + [anon_sym_LPAREN2] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_typedef] = ACTIONS(3138), + [anon_sym_extern] = ACTIONS(3138), + [anon_sym___attribute__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3140), + [anon_sym___declspec] = ACTIONS(3138), + [anon_sym___based] = ACTIONS(3138), + [anon_sym___cdecl] = ACTIONS(3138), + [anon_sym___clrcall] = ACTIONS(3138), + [anon_sym___stdcall] = ACTIONS(3138), + [anon_sym___fastcall] = ACTIONS(3138), + [anon_sym___thiscall] = ACTIONS(3138), + [anon_sym___vectorcall] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3138), + [anon_sym_unsigned] = ACTIONS(3138), + [anon_sym_long] = ACTIONS(3138), + [anon_sym_short] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_register] = ACTIONS(3138), + [anon_sym_inline] = ACTIONS(3138), + [anon_sym___inline] = ACTIONS(3138), + [anon_sym___inline__] = ACTIONS(3138), + [anon_sym___forceinline] = ACTIONS(3138), + [anon_sym_thread_local] = ACTIONS(3138), + [anon_sym___thread] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_constexpr] = ACTIONS(3138), + [anon_sym_volatile] = ACTIONS(3138), + [anon_sym_restrict] = ACTIONS(3138), + [anon_sym___restrict__] = ACTIONS(3138), + [anon_sym__Atomic] = ACTIONS(3138), + [anon_sym__Noreturn] = ACTIONS(3138), + [anon_sym_noreturn] = ACTIONS(3138), + [anon_sym_mutable] = ACTIONS(3138), + [anon_sym_constinit] = ACTIONS(3138), + [anon_sym_consteval] = ACTIONS(3138), + [sym_primitive_type] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_struct] = ACTIONS(3138), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_case] = ACTIONS(3138), + [anon_sym_default] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_goto] = ACTIONS(3138), + [anon_sym___try] = ACTIONS(3138), + [anon_sym___leave] = ACTIONS(3138), + [anon_sym_not] = ACTIONS(3138), + [anon_sym_compl] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_sizeof] = ACTIONS(3138), + [anon_sym___alignof__] = ACTIONS(3138), + [anon_sym___alignof] = ACTIONS(3138), + [anon_sym__alignof] = ACTIONS(3138), + [anon_sym_alignof] = ACTIONS(3138), + [anon_sym__Alignof] = ACTIONS(3138), + [anon_sym_offsetof] = ACTIONS(3138), + [anon_sym__Generic] = ACTIONS(3138), + [anon_sym_asm] = ACTIONS(3138), + [anon_sym___asm__] = ACTIONS(3138), + [sym_number_literal] = ACTIONS(3140), + [anon_sym_L_SQUOTE] = ACTIONS(3140), + [anon_sym_u_SQUOTE] = ACTIONS(3140), + [anon_sym_U_SQUOTE] = ACTIONS(3140), + [anon_sym_u8_SQUOTE] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3140), + [anon_sym_L_DQUOTE] = ACTIONS(3140), + [anon_sym_u_DQUOTE] = ACTIONS(3140), + [anon_sym_U_DQUOTE] = ACTIONS(3140), + [anon_sym_u8_DQUOTE] = ACTIONS(3140), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [anon_sym_NULL] = ACTIONS(3138), + [anon_sym_nullptr] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3138), + [anon_sym_decltype] = ACTIONS(3138), + [anon_sym_virtual] = ACTIONS(3138), + [anon_sym_alignas] = ACTIONS(3138), + [anon_sym_explicit] = ACTIONS(3138), + [anon_sym_typename] = ACTIONS(3138), + [anon_sym_template] = ACTIONS(3138), + [anon_sym_operator] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_static_assert] = ACTIONS(3138), + [anon_sym_concept] = ACTIONS(3138), + [anon_sym_co_return] = ACTIONS(3138), + [anon_sym_co_yield] = ACTIONS(3138), + [anon_sym_R_DQUOTE] = ACTIONS(3140), + [anon_sym_LR_DQUOTE] = ACTIONS(3140), + [anon_sym_uR_DQUOTE] = ACTIONS(3140), + [anon_sym_UR_DQUOTE] = ACTIONS(3140), + [anon_sym_u8R_DQUOTE] = ACTIONS(3140), + [anon_sym_co_await] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_requires] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + }, + [378] = { + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_include_token1] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token2] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [aux_sym_preproc_else_token1] = ACTIONS(3134), + [aux_sym_preproc_elif_token1] = ACTIONS(3134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym___cdecl] = ACTIONS(3134), + [anon_sym___clrcall] = ACTIONS(3134), + [anon_sym___stdcall] = ACTIONS(3134), + [anon_sym___fastcall] = ACTIONS(3134), + [anon_sym___thiscall] = ACTIONS(3134), + [anon_sym___vectorcall] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym___try] = ACTIONS(3134), + [anon_sym___leave] = ACTIONS(3134), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_sizeof] = ACTIONS(3134), + [anon_sym___alignof__] = ACTIONS(3134), + [anon_sym___alignof] = ACTIONS(3134), + [anon_sym__alignof] = ACTIONS(3134), + [anon_sym_alignof] = ACTIONS(3134), + [anon_sym__Alignof] = ACTIONS(3134), + [anon_sym_offsetof] = ACTIONS(3134), + [anon_sym__Generic] = ACTIONS(3134), + [anon_sym_asm] = ACTIONS(3134), + [anon_sym___asm__] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3136), + [anon_sym_L_SQUOTE] = ACTIONS(3136), + [anon_sym_u_SQUOTE] = ACTIONS(3136), + [anon_sym_U_SQUOTE] = ACTIONS(3136), + [anon_sym_u8_SQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_L_DQUOTE] = ACTIONS(3136), + [anon_sym_u_DQUOTE] = ACTIONS(3136), + [anon_sym_U_DQUOTE] = ACTIONS(3136), + [anon_sym_u8_DQUOTE] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [anon_sym_NULL] = ACTIONS(3134), + [anon_sym_nullptr] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), + [anon_sym_concept] = ACTIONS(3134), + [anon_sym_co_return] = ACTIONS(3134), + [anon_sym_co_yield] = ACTIONS(3134), + [anon_sym_R_DQUOTE] = ACTIONS(3136), + [anon_sym_LR_DQUOTE] = ACTIONS(3136), + [anon_sym_uR_DQUOTE] = ACTIONS(3136), + [anon_sym_UR_DQUOTE] = ACTIONS(3136), + [anon_sym_u8R_DQUOTE] = ACTIONS(3136), + [anon_sym_co_await] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_requires] = ACTIONS(3134), + [sym_this] = ACTIONS(3134), + }, + [379] = { + [sym_catch_clause] = STATE(379), + [aux_sym_constructor_try_statement_repeat1] = STATE(379), + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_include_token1] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym___cdecl] = ACTIONS(2815), + [anon_sym___clrcall] = ACTIONS(2815), + [anon_sym___stdcall] = ACTIONS(2815), + [anon_sym___fastcall] = ACTIONS(2815), + [anon_sym___thiscall] = ACTIONS(2815), + [anon_sym___vectorcall] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_RBRACE] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym___inline] = ACTIONS(2815), + [anon_sym___inline__] = ACTIONS(2815), + [anon_sym___forceinline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym___thread] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym___restrict__] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym__Noreturn] = ACTIONS(2815), + [anon_sym_noreturn] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_goto] = ACTIONS(2815), + [anon_sym___try] = ACTIONS(2815), + [anon_sym___leave] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_compl] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2815), + [anon_sym___alignof__] = ACTIONS(2815), + [anon_sym___alignof] = ACTIONS(2815), + [anon_sym__alignof] = ACTIONS(2815), + [anon_sym_alignof] = ACTIONS(2815), + [anon_sym__Alignof] = ACTIONS(2815), + [anon_sym_offsetof] = ACTIONS(2815), + [anon_sym__Generic] = ACTIONS(2815), + [anon_sym_asm] = ACTIONS(2815), + [anon_sym___asm__] = ACTIONS(2815), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2817), + [anon_sym_u_SQUOTE] = ACTIONS(2817), + [anon_sym_U_SQUOTE] = ACTIONS(2817), + [anon_sym_u8_SQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_L_DQUOTE] = ACTIONS(2817), + [anon_sym_u_DQUOTE] = ACTIONS(2817), + [anon_sym_U_DQUOTE] = ACTIONS(2817), + [anon_sym_u8_DQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [anon_sym_NULL] = ACTIONS(2815), + [anon_sym_nullptr] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_alignas] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_namespace] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_concept] = ACTIONS(2815), + [anon_sym_co_return] = ACTIONS(2815), + [anon_sym_co_yield] = ACTIONS(2815), + [anon_sym_catch] = ACTIONS(3142), + [anon_sym_R_DQUOTE] = ACTIONS(2817), + [anon_sym_LR_DQUOTE] = ACTIONS(2817), + [anon_sym_uR_DQUOTE] = ACTIONS(2817), + [anon_sym_UR_DQUOTE] = ACTIONS(2817), + [anon_sym_u8R_DQUOTE] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_requires] = ACTIONS(2815), + [sym_this] = ACTIONS(2815), + }, + [380] = { + [sym_preproc_def] = STATE(673), + [sym_preproc_function_def] = STATE(673), + [sym_preproc_call] = STATE(673), + [sym_preproc_elifdef] = STATE(8597), + [sym_preproc_if_in_field_declaration_list] = STATE(673), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(673), + [sym_preproc_else_in_field_declaration_list] = STATE(8597), + [sym_preproc_elif_in_field_declaration_list] = STATE(8597), + [sym_type_definition] = STATE(673), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6193), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6791), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(673), + [sym_field_declaration] = STATE(673), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2046), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(673), + [sym_operator_cast] = STATE(7208), + [sym_inline_method_definition] = STATE(673), + [sym__constructor_specifiers] = STATE(2046), + [sym_operator_cast_definition] = STATE(673), + [sym_operator_cast_declaration] = STATE(673), + [sym_constructor_or_destructor_definition] = STATE(673), + [sym_constructor_or_destructor_declaration] = STATE(673), + [sym_friend_declaration] = STATE(673), + [sym_access_specifier] = STATE(8745), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(673), + [sym_alias_declaration] = STATE(673), + [sym_static_assert_declaration] = STATE(673), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7208), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(673), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3026), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3145), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [aux_sym_preproc_elifdef_token1] = ACTIONS(279), + [aux_sym_preproc_elifdef_token2] = ACTIONS(279), + [sym_preproc_directive] = ACTIONS(3038), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_typedef] = ACTIONS(3050), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -137851,8091 +144207,1932 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2088), - [anon_sym_decltype] = ACTIONS(2090), - [anon_sym_typename] = ACTIONS(2092), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3068), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_static_assert] = ACTIONS(3076), }, - [337] = { - [sym_identifier] = ACTIONS(2981), - [aux_sym_preproc_include_token1] = ACTIONS(2981), - [aux_sym_preproc_def_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token2] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), - [aux_sym_preproc_else_token1] = ACTIONS(2981), - [aux_sym_preproc_elif_token1] = ACTIONS(2981), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2981), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2981), - [sym_preproc_directive] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym___based] = ACTIONS(2981), - [anon_sym___cdecl] = ACTIONS(2981), - [anon_sym___clrcall] = ACTIONS(2981), - [anon_sym___stdcall] = ACTIONS(2981), - [anon_sym___fastcall] = ACTIONS(2981), - [anon_sym___thiscall] = ACTIONS(2981), - [anon_sym___vectorcall] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_case] = ACTIONS(2981), - [anon_sym_default] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_do] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym___try] = ACTIONS(2981), - [anon_sym___leave] = ACTIONS(2981), - [anon_sym_not] = ACTIONS(2981), - [anon_sym_compl] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_sizeof] = ACTIONS(2981), - [anon_sym___alignof__] = ACTIONS(2981), - [anon_sym___alignof] = ACTIONS(2981), - [anon_sym__alignof] = ACTIONS(2981), - [anon_sym_alignof] = ACTIONS(2981), - [anon_sym__Alignof] = ACTIONS(2981), - [anon_sym_offsetof] = ACTIONS(2981), - [anon_sym__Generic] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym___asm__] = ACTIONS(2981), - [sym_number_literal] = ACTIONS(2983), - [anon_sym_L_SQUOTE] = ACTIONS(2983), - [anon_sym_u_SQUOTE] = ACTIONS(2983), - [anon_sym_U_SQUOTE] = ACTIONS(2983), - [anon_sym_u8_SQUOTE] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2983), - [anon_sym_L_DQUOTE] = ACTIONS(2983), - [anon_sym_u_DQUOTE] = ACTIONS(2983), - [anon_sym_U_DQUOTE] = ACTIONS(2983), - [anon_sym_u8_DQUOTE] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [anon_sym_NULL] = ACTIONS(2981), - [anon_sym_nullptr] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_delete] = ACTIONS(2981), - [anon_sym_throw] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2981), - [anon_sym_using] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), - [anon_sym_concept] = ACTIONS(2981), - [anon_sym_co_return] = ACTIONS(2981), - [anon_sym_co_yield] = ACTIONS(2981), - [anon_sym_R_DQUOTE] = ACTIONS(2983), - [anon_sym_LR_DQUOTE] = ACTIONS(2983), - [anon_sym_uR_DQUOTE] = ACTIONS(2983), - [anon_sym_UR_DQUOTE] = ACTIONS(2983), - [anon_sym_u8R_DQUOTE] = ACTIONS(2983), - [anon_sym_co_await] = ACTIONS(2981), - [anon_sym_new] = ACTIONS(2981), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2981), + [381] = { + [sym_identifier] = ACTIONS(3147), + [aux_sym_preproc_include_token1] = ACTIONS(3147), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token2] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), + [aux_sym_preproc_else_token1] = ACTIONS(3147), + [aux_sym_preproc_elif_token1] = ACTIONS(3147), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3147), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3147), + [sym_preproc_directive] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_AMP_AMP] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym___extension__] = ACTIONS(3147), + [anon_sym_typedef] = ACTIONS(3147), + [anon_sym_extern] = ACTIONS(3147), + [anon_sym___attribute__] = ACTIONS(3147), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), + [anon_sym___declspec] = ACTIONS(3147), + [anon_sym___based] = ACTIONS(3147), + [anon_sym___cdecl] = ACTIONS(3147), + [anon_sym___clrcall] = ACTIONS(3147), + [anon_sym___stdcall] = ACTIONS(3147), + [anon_sym___fastcall] = ACTIONS(3147), + [anon_sym___thiscall] = ACTIONS(3147), + [anon_sym___vectorcall] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_signed] = ACTIONS(3147), + [anon_sym_unsigned] = ACTIONS(3147), + [anon_sym_long] = ACTIONS(3147), + [anon_sym_short] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_register] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym___inline] = ACTIONS(3147), + [anon_sym___inline__] = ACTIONS(3147), + [anon_sym___forceinline] = ACTIONS(3147), + [anon_sym_thread_local] = ACTIONS(3147), + [anon_sym___thread] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_constexpr] = ACTIONS(3147), + [anon_sym_volatile] = ACTIONS(3147), + [anon_sym_restrict] = ACTIONS(3147), + [anon_sym___restrict__] = ACTIONS(3147), + [anon_sym__Atomic] = ACTIONS(3147), + [anon_sym__Noreturn] = ACTIONS(3147), + [anon_sym_noreturn] = ACTIONS(3147), + [anon_sym_mutable] = ACTIONS(3147), + [anon_sym_constinit] = ACTIONS(3147), + [anon_sym_consteval] = ACTIONS(3147), + [sym_primitive_type] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3147), + [anon_sym_case] = ACTIONS(3147), + [anon_sym_default] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_goto] = ACTIONS(3147), + [anon_sym___try] = ACTIONS(3147), + [anon_sym___leave] = ACTIONS(3147), + [anon_sym_not] = ACTIONS(3147), + [anon_sym_compl] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3147), + [anon_sym___alignof__] = ACTIONS(3147), + [anon_sym___alignof] = ACTIONS(3147), + [anon_sym__alignof] = ACTIONS(3147), + [anon_sym_alignof] = ACTIONS(3147), + [anon_sym__Alignof] = ACTIONS(3147), + [anon_sym_offsetof] = ACTIONS(3147), + [anon_sym__Generic] = ACTIONS(3147), + [anon_sym_asm] = ACTIONS(3147), + [anon_sym___asm__] = ACTIONS(3147), + [sym_number_literal] = ACTIONS(3149), + [anon_sym_L_SQUOTE] = ACTIONS(3149), + [anon_sym_u_SQUOTE] = ACTIONS(3149), + [anon_sym_U_SQUOTE] = ACTIONS(3149), + [anon_sym_u8_SQUOTE] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_L_DQUOTE] = ACTIONS(3149), + [anon_sym_u_DQUOTE] = ACTIONS(3149), + [anon_sym_U_DQUOTE] = ACTIONS(3149), + [anon_sym_u8_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(3149), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [anon_sym_NULL] = ACTIONS(3147), + [anon_sym_nullptr] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3147), + [anon_sym_decltype] = ACTIONS(3147), + [anon_sym_virtual] = ACTIONS(3147), + [anon_sym_alignas] = ACTIONS(3147), + [anon_sym_explicit] = ACTIONS(3147), + [anon_sym_typename] = ACTIONS(3147), + [anon_sym_template] = ACTIONS(3147), + [anon_sym_operator] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(3147), + [anon_sym_throw] = ACTIONS(3147), + [anon_sym_namespace] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_static_assert] = ACTIONS(3147), + [anon_sym_concept] = ACTIONS(3147), + [anon_sym_co_return] = ACTIONS(3147), + [anon_sym_co_yield] = ACTIONS(3147), + [anon_sym_R_DQUOTE] = ACTIONS(3149), + [anon_sym_LR_DQUOTE] = ACTIONS(3149), + [anon_sym_uR_DQUOTE] = ACTIONS(3149), + [anon_sym_UR_DQUOTE] = ACTIONS(3149), + [anon_sym_u8R_DQUOTE] = ACTIONS(3149), + [anon_sym_co_await] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_requires] = ACTIONS(3147), + [sym_this] = ACTIONS(3147), }, - [338] = { - [sym_identifier] = ACTIONS(2985), - [aux_sym_preproc_include_token1] = ACTIONS(2985), - [aux_sym_preproc_def_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token2] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), - [aux_sym_preproc_else_token1] = ACTIONS(2985), - [aux_sym_preproc_elif_token1] = ACTIONS(2985), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2985), - [sym_preproc_directive] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym___based] = ACTIONS(2985), - [anon_sym___cdecl] = ACTIONS(2985), - [anon_sym___clrcall] = ACTIONS(2985), - [anon_sym___stdcall] = ACTIONS(2985), - [anon_sym___fastcall] = ACTIONS(2985), - [anon_sym___thiscall] = ACTIONS(2985), - [anon_sym___vectorcall] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_case] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym___try] = ACTIONS(2985), - [anon_sym___leave] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2985), - [anon_sym_compl] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym___alignof__] = ACTIONS(2985), - [anon_sym___alignof] = ACTIONS(2985), - [anon_sym__alignof] = ACTIONS(2985), - [anon_sym_alignof] = ACTIONS(2985), - [anon_sym__Alignof] = ACTIONS(2985), - [anon_sym_offsetof] = ACTIONS(2985), - [anon_sym__Generic] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym___asm__] = ACTIONS(2985), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_L_SQUOTE] = ACTIONS(2987), - [anon_sym_u_SQUOTE] = ACTIONS(2987), - [anon_sym_U_SQUOTE] = ACTIONS(2987), - [anon_sym_u8_SQUOTE] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_L_DQUOTE] = ACTIONS(2987), - [anon_sym_u_DQUOTE] = ACTIONS(2987), - [anon_sym_U_DQUOTE] = ACTIONS(2987), - [anon_sym_u8_DQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [anon_sym_NULL] = ACTIONS(2985), - [anon_sym_nullptr] = ACTIONS(2985), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_explicit] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_operator] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_delete] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_static_assert] = ACTIONS(2985), - [anon_sym_concept] = ACTIONS(2985), - [anon_sym_co_return] = ACTIONS(2985), - [anon_sym_co_yield] = ACTIONS(2985), - [anon_sym_R_DQUOTE] = ACTIONS(2987), - [anon_sym_LR_DQUOTE] = ACTIONS(2987), - [anon_sym_uR_DQUOTE] = ACTIONS(2987), - [anon_sym_UR_DQUOTE] = ACTIONS(2987), - [anon_sym_u8R_DQUOTE] = ACTIONS(2987), - [anon_sym_co_await] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_requires] = ACTIONS(2985), - [sym_this] = ACTIONS(2985), + [382] = { + [sym_identifier] = ACTIONS(3151), + [aux_sym_preproc_include_token1] = ACTIONS(3151), + [aux_sym_preproc_def_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token2] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [aux_sym_preproc_else_token1] = ACTIONS(3151), + [aux_sym_preproc_elif_token1] = ACTIONS(3151), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3151), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_extern] = ACTIONS(3151), + [anon_sym___attribute__] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(3151), + [anon_sym___cdecl] = ACTIONS(3151), + [anon_sym___clrcall] = ACTIONS(3151), + [anon_sym___stdcall] = ACTIONS(3151), + [anon_sym___fastcall] = ACTIONS(3151), + [anon_sym___thiscall] = ACTIONS(3151), + [anon_sym___vectorcall] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3151), + [anon_sym_unsigned] = ACTIONS(3151), + [anon_sym_long] = ACTIONS(3151), + [anon_sym_short] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_register] = ACTIONS(3151), + [anon_sym_inline] = ACTIONS(3151), + [anon_sym___inline] = ACTIONS(3151), + [anon_sym___inline__] = ACTIONS(3151), + [anon_sym___forceinline] = ACTIONS(3151), + [anon_sym_thread_local] = ACTIONS(3151), + [anon_sym___thread] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_constexpr] = ACTIONS(3151), + [anon_sym_volatile] = ACTIONS(3151), + [anon_sym_restrict] = ACTIONS(3151), + [anon_sym___restrict__] = ACTIONS(3151), + [anon_sym__Atomic] = ACTIONS(3151), + [anon_sym__Noreturn] = ACTIONS(3151), + [anon_sym_noreturn] = ACTIONS(3151), + [anon_sym_mutable] = ACTIONS(3151), + [anon_sym_constinit] = ACTIONS(3151), + [anon_sym_consteval] = ACTIONS(3151), + [sym_primitive_type] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_case] = ACTIONS(3151), + [anon_sym_default] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_goto] = ACTIONS(3151), + [anon_sym___try] = ACTIONS(3151), + [anon_sym___leave] = ACTIONS(3151), + [anon_sym_not] = ACTIONS(3151), + [anon_sym_compl] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3151), + [anon_sym___alignof__] = ACTIONS(3151), + [anon_sym___alignof] = ACTIONS(3151), + [anon_sym__alignof] = ACTIONS(3151), + [anon_sym_alignof] = ACTIONS(3151), + [anon_sym__Alignof] = ACTIONS(3151), + [anon_sym_offsetof] = ACTIONS(3151), + [anon_sym__Generic] = ACTIONS(3151), + [anon_sym_asm] = ACTIONS(3151), + [anon_sym___asm__] = ACTIONS(3151), + [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(3151), + [sym_false] = ACTIONS(3151), + [anon_sym_NULL] = ACTIONS(3151), + [anon_sym_nullptr] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3151), + [anon_sym_decltype] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3151), + [anon_sym_alignas] = ACTIONS(3151), + [anon_sym_explicit] = ACTIONS(3151), + [anon_sym_typename] = ACTIONS(3151), + [anon_sym_template] = ACTIONS(3151), + [anon_sym_operator] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_static_assert] = ACTIONS(3151), + [anon_sym_concept] = ACTIONS(3151), + [anon_sym_co_return] = ACTIONS(3151), + [anon_sym_co_yield] = ACTIONS(3151), + [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(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_requires] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), }, - [339] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [383] = { + [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(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_AMP_AMP] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), + [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(3157), + [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_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = 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_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(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [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_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3157), + [anon_sym_L_SQUOTE] = ACTIONS(3157), + [anon_sym_u_SQUOTE] = ACTIONS(3157), + [anon_sym_U_SQUOTE] = ACTIONS(3157), + [anon_sym_u8_SQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_L_DQUOTE] = ACTIONS(3157), + [anon_sym_u_DQUOTE] = ACTIONS(3157), + [anon_sym_U_DQUOTE] = ACTIONS(3157), + [anon_sym_u8_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [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_virtual] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_typename] = 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_using] = 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_R_DQUOTE] = ACTIONS(3157), + [anon_sym_LR_DQUOTE] = ACTIONS(3157), + [anon_sym_uR_DQUOTE] = ACTIONS(3157), + [anon_sym_UR_DQUOTE] = ACTIONS(3157), + [anon_sym_u8R_DQUOTE] = ACTIONS(3157), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [sym_this] = ACTIONS(3155), }, - [340] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [384] = { + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_include_token1] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token2] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [aux_sym_preproc_else_token1] = ACTIONS(3159), + [aux_sym_preproc_elif_token1] = ACTIONS(3159), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym___cdecl] = ACTIONS(3159), + [anon_sym___clrcall] = ACTIONS(3159), + [anon_sym___stdcall] = ACTIONS(3159), + [anon_sym___fastcall] = ACTIONS(3159), + [anon_sym___thiscall] = ACTIONS(3159), + [anon_sym___vectorcall] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_concept] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), }, - [341] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [385] = { + [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(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_extern] = 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___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_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = 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(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_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_virtual] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_typename] = 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_using] = 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(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), + [sym_this] = ACTIONS(3163), }, - [342] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [386] = { + [sym_identifier] = ACTIONS(3167), + [aux_sym_preproc_include_token1] = ACTIONS(3167), + [aux_sym_preproc_def_token1] = ACTIONS(3167), + [aux_sym_preproc_if_token1] = ACTIONS(3167), + [aux_sym_preproc_if_token2] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [aux_sym_preproc_else_token1] = ACTIONS(3167), + [aux_sym_preproc_elif_token1] = ACTIONS(3167), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3167), + [sym_preproc_directive] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym___extension__] = ACTIONS(3167), + [anon_sym_typedef] = ACTIONS(3167), + [anon_sym_extern] = ACTIONS(3167), + [anon_sym___attribute__] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3169), + [anon_sym___declspec] = ACTIONS(3167), + [anon_sym___based] = ACTIONS(3167), + [anon_sym___cdecl] = ACTIONS(3167), + [anon_sym___clrcall] = ACTIONS(3167), + [anon_sym___stdcall] = ACTIONS(3167), + [anon_sym___fastcall] = ACTIONS(3167), + [anon_sym___thiscall] = ACTIONS(3167), + [anon_sym___vectorcall] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_signed] = ACTIONS(3167), + [anon_sym_unsigned] = ACTIONS(3167), + [anon_sym_long] = ACTIONS(3167), + [anon_sym_short] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_register] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym___inline] = ACTIONS(3167), + [anon_sym___inline__] = ACTIONS(3167), + [anon_sym___forceinline] = ACTIONS(3167), + [anon_sym_thread_local] = ACTIONS(3167), + [anon_sym___thread] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_constexpr] = ACTIONS(3167), + [anon_sym_volatile] = ACTIONS(3167), + [anon_sym_restrict] = ACTIONS(3167), + [anon_sym___restrict__] = ACTIONS(3167), + [anon_sym__Atomic] = ACTIONS(3167), + [anon_sym__Noreturn] = ACTIONS(3167), + [anon_sym_noreturn] = ACTIONS(3167), + [anon_sym_mutable] = ACTIONS(3167), + [anon_sym_constinit] = ACTIONS(3167), + [anon_sym_consteval] = ACTIONS(3167), + [sym_primitive_type] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_goto] = ACTIONS(3167), + [anon_sym___try] = ACTIONS(3167), + [anon_sym___leave] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3167), + [anon_sym_compl] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3167), + [anon_sym___alignof__] = ACTIONS(3167), + [anon_sym___alignof] = ACTIONS(3167), + [anon_sym__alignof] = ACTIONS(3167), + [anon_sym_alignof] = ACTIONS(3167), + [anon_sym__Alignof] = ACTIONS(3167), + [anon_sym_offsetof] = ACTIONS(3167), + [anon_sym__Generic] = ACTIONS(3167), + [anon_sym_asm] = ACTIONS(3167), + [anon_sym___asm__] = ACTIONS(3167), + [sym_number_literal] = ACTIONS(3169), + [anon_sym_L_SQUOTE] = ACTIONS(3169), + [anon_sym_u_SQUOTE] = ACTIONS(3169), + [anon_sym_U_SQUOTE] = ACTIONS(3169), + [anon_sym_u8_SQUOTE] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_L_DQUOTE] = ACTIONS(3169), + [anon_sym_u_DQUOTE] = ACTIONS(3169), + [anon_sym_U_DQUOTE] = ACTIONS(3169), + [anon_sym_u8_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [anon_sym_NULL] = ACTIONS(3167), + [anon_sym_nullptr] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3167), + [anon_sym_decltype] = ACTIONS(3167), + [anon_sym_virtual] = ACTIONS(3167), + [anon_sym_alignas] = ACTIONS(3167), + [anon_sym_explicit] = ACTIONS(3167), + [anon_sym_typename] = ACTIONS(3167), + [anon_sym_template] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_static_assert] = ACTIONS(3167), + [anon_sym_concept] = ACTIONS(3167), + [anon_sym_co_return] = ACTIONS(3167), + [anon_sym_co_yield] = ACTIONS(3167), + [anon_sym_R_DQUOTE] = ACTIONS(3169), + [anon_sym_LR_DQUOTE] = ACTIONS(3169), + [anon_sym_uR_DQUOTE] = ACTIONS(3169), + [anon_sym_UR_DQUOTE] = ACTIONS(3169), + [anon_sym_u8R_DQUOTE] = ACTIONS(3169), + [anon_sym_co_await] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_requires] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), }, - [343] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [387] = { + [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_extern] = 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___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_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = 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_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_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_virtual] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_typename] = 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_using] = 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_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), + [sym_this] = ACTIONS(3171), }, - [344] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [388] = { + [sym_identifier] = ACTIONS(3175), + [aux_sym_preproc_include_token1] = ACTIONS(3175), + [aux_sym_preproc_def_token1] = ACTIONS(3175), + [aux_sym_preproc_if_token1] = ACTIONS(3175), + [aux_sym_preproc_if_token2] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3175), + [aux_sym_preproc_else_token1] = ACTIONS(3175), + [aux_sym_preproc_elif_token1] = ACTIONS(3175), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3175), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3175), + [sym_preproc_directive] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym___extension__] = ACTIONS(3175), + [anon_sym_typedef] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym___attribute__] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), + [anon_sym___declspec] = ACTIONS(3175), + [anon_sym___based] = ACTIONS(3175), + [anon_sym___cdecl] = ACTIONS(3175), + [anon_sym___clrcall] = ACTIONS(3175), + [anon_sym___stdcall] = ACTIONS(3175), + [anon_sym___fastcall] = ACTIONS(3175), + [anon_sym___thiscall] = ACTIONS(3175), + [anon_sym___vectorcall] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_signed] = ACTIONS(3175), + [anon_sym_unsigned] = ACTIONS(3175), + [anon_sym_long] = ACTIONS(3175), + [anon_sym_short] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_register] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym___inline] = ACTIONS(3175), + [anon_sym___inline__] = ACTIONS(3175), + [anon_sym___forceinline] = ACTIONS(3175), + [anon_sym_thread_local] = ACTIONS(3175), + [anon_sym___thread] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_constexpr] = ACTIONS(3175), + [anon_sym_volatile] = ACTIONS(3175), + [anon_sym_restrict] = ACTIONS(3175), + [anon_sym___restrict__] = ACTIONS(3175), + [anon_sym__Atomic] = ACTIONS(3175), + [anon_sym__Noreturn] = ACTIONS(3175), + [anon_sym_noreturn] = ACTIONS(3175), + [anon_sym_mutable] = ACTIONS(3175), + [anon_sym_constinit] = ACTIONS(3175), + [anon_sym_consteval] = ACTIONS(3175), + [sym_primitive_type] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym___try] = ACTIONS(3175), + [anon_sym___leave] = ACTIONS(3175), + [anon_sym_not] = ACTIONS(3175), + [anon_sym_compl] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3175), + [anon_sym___alignof__] = ACTIONS(3175), + [anon_sym___alignof] = ACTIONS(3175), + [anon_sym__alignof] = ACTIONS(3175), + [anon_sym_alignof] = ACTIONS(3175), + [anon_sym__Alignof] = ACTIONS(3175), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3175), + [anon_sym_asm] = ACTIONS(3175), + [anon_sym___asm__] = ACTIONS(3175), + [sym_number_literal] = ACTIONS(3177), + [anon_sym_L_SQUOTE] = ACTIONS(3177), + [anon_sym_u_SQUOTE] = ACTIONS(3177), + [anon_sym_U_SQUOTE] = ACTIONS(3177), + [anon_sym_u8_SQUOTE] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_L_DQUOTE] = ACTIONS(3177), + [anon_sym_u_DQUOTE] = ACTIONS(3177), + [anon_sym_U_DQUOTE] = ACTIONS(3177), + [anon_sym_u8_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [anon_sym_NULL] = ACTIONS(3175), + [anon_sym_nullptr] = ACTIONS(3175), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3175), + [anon_sym_decltype] = ACTIONS(3175), + [anon_sym_virtual] = ACTIONS(3175), + [anon_sym_alignas] = ACTIONS(3175), + [anon_sym_explicit] = ACTIONS(3175), + [anon_sym_typename] = ACTIONS(3175), + [anon_sym_template] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_static_assert] = ACTIONS(3175), + [anon_sym_concept] = ACTIONS(3175), + [anon_sym_co_return] = ACTIONS(3175), + [anon_sym_co_yield] = ACTIONS(3175), + [anon_sym_R_DQUOTE] = ACTIONS(3177), + [anon_sym_LR_DQUOTE] = ACTIONS(3177), + [anon_sym_uR_DQUOTE] = ACTIONS(3177), + [anon_sym_UR_DQUOTE] = ACTIONS(3177), + [anon_sym_u8R_DQUOTE] = ACTIONS(3177), + [anon_sym_co_await] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_requires] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), }, - [345] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [389] = { + [sym_identifier] = ACTIONS(3179), + [aux_sym_preproc_include_token1] = ACTIONS(3179), + [aux_sym_preproc_def_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token2] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), + [aux_sym_preproc_else_token1] = ACTIONS(3179), + [aux_sym_preproc_elif_token1] = ACTIONS(3179), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3179), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3179), + [sym_preproc_directive] = ACTIONS(3179), + [anon_sym_LPAREN2] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym___extension__] = ACTIONS(3179), + [anon_sym_typedef] = ACTIONS(3179), + [anon_sym_extern] = ACTIONS(3179), + [anon_sym___attribute__] = ACTIONS(3179), + [anon_sym_COLON_COLON] = ACTIONS(3181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), + [anon_sym___declspec] = ACTIONS(3179), + [anon_sym___based] = ACTIONS(3179), + [anon_sym___cdecl] = ACTIONS(3179), + [anon_sym___clrcall] = ACTIONS(3179), + [anon_sym___stdcall] = ACTIONS(3179), + [anon_sym___fastcall] = ACTIONS(3179), + [anon_sym___thiscall] = ACTIONS(3179), + [anon_sym___vectorcall] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_signed] = ACTIONS(3179), + [anon_sym_unsigned] = ACTIONS(3179), + [anon_sym_long] = ACTIONS(3179), + [anon_sym_short] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_register] = ACTIONS(3179), + [anon_sym_inline] = ACTIONS(3179), + [anon_sym___inline] = ACTIONS(3179), + [anon_sym___inline__] = ACTIONS(3179), + [anon_sym___forceinline] = ACTIONS(3179), + [anon_sym_thread_local] = ACTIONS(3179), + [anon_sym___thread] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_constexpr] = ACTIONS(3179), + [anon_sym_volatile] = ACTIONS(3179), + [anon_sym_restrict] = ACTIONS(3179), + [anon_sym___restrict__] = ACTIONS(3179), + [anon_sym__Atomic] = ACTIONS(3179), + [anon_sym__Noreturn] = ACTIONS(3179), + [anon_sym_noreturn] = ACTIONS(3179), + [anon_sym_mutable] = ACTIONS(3179), + [anon_sym_constinit] = ACTIONS(3179), + [anon_sym_consteval] = ACTIONS(3179), + [sym_primitive_type] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3179), + [anon_sym_case] = ACTIONS(3179), + [anon_sym_default] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_do] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_goto] = ACTIONS(3179), + [anon_sym___try] = ACTIONS(3179), + [anon_sym___leave] = ACTIONS(3179), + [anon_sym_not] = ACTIONS(3179), + [anon_sym_compl] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3179), + [anon_sym___alignof__] = ACTIONS(3179), + [anon_sym___alignof] = ACTIONS(3179), + [anon_sym__alignof] = ACTIONS(3179), + [anon_sym_alignof] = ACTIONS(3179), + [anon_sym__Alignof] = ACTIONS(3179), + [anon_sym_offsetof] = ACTIONS(3179), + [anon_sym__Generic] = ACTIONS(3179), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [anon_sym_L_SQUOTE] = ACTIONS(3181), + [anon_sym_u_SQUOTE] = ACTIONS(3181), + [anon_sym_U_SQUOTE] = ACTIONS(3181), + [anon_sym_u8_SQUOTE] = ACTIONS(3181), + [anon_sym_SQUOTE] = ACTIONS(3181), + [anon_sym_L_DQUOTE] = ACTIONS(3181), + [anon_sym_u_DQUOTE] = ACTIONS(3181), + [anon_sym_U_DQUOTE] = ACTIONS(3181), + [anon_sym_u8_DQUOTE] = ACTIONS(3181), + [anon_sym_DQUOTE] = ACTIONS(3181), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [anon_sym_NULL] = ACTIONS(3179), + [anon_sym_nullptr] = ACTIONS(3179), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3179), + [anon_sym_decltype] = ACTIONS(3179), + [anon_sym_virtual] = ACTIONS(3179), + [anon_sym_alignas] = ACTIONS(3179), + [anon_sym_explicit] = ACTIONS(3179), + [anon_sym_typename] = ACTIONS(3179), + [anon_sym_template] = ACTIONS(3179), + [anon_sym_operator] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3179), + [anon_sym_delete] = ACTIONS(3179), + [anon_sym_throw] = ACTIONS(3179), + [anon_sym_namespace] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3179), + [anon_sym_static_assert] = ACTIONS(3179), + [anon_sym_concept] = ACTIONS(3179), + [anon_sym_co_return] = ACTIONS(3179), + [anon_sym_co_yield] = ACTIONS(3179), + [anon_sym_R_DQUOTE] = ACTIONS(3181), + [anon_sym_LR_DQUOTE] = ACTIONS(3181), + [anon_sym_uR_DQUOTE] = ACTIONS(3181), + [anon_sym_UR_DQUOTE] = ACTIONS(3181), + [anon_sym_u8R_DQUOTE] = ACTIONS(3181), + [anon_sym_co_await] = ACTIONS(3179), + [anon_sym_new] = ACTIONS(3179), + [anon_sym_requires] = ACTIONS(3179), + [sym_this] = ACTIONS(3179), }, - [346] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [347] = { - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_include_token1] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token2] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [aux_sym_preproc_else_token1] = ACTIONS(2989), - [aux_sym_preproc_elif_token1] = ACTIONS(2989), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym___cdecl] = ACTIONS(2989), - [anon_sym___clrcall] = ACTIONS(2989), - [anon_sym___stdcall] = ACTIONS(2989), - [anon_sym___fastcall] = ACTIONS(2989), - [anon_sym___thiscall] = ACTIONS(2989), - [anon_sym___vectorcall] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_case] = ACTIONS(2989), - [anon_sym_default] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_do] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym___try] = ACTIONS(2989), - [anon_sym___leave] = ACTIONS(2989), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_compl] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_sizeof] = ACTIONS(2989), - [anon_sym___alignof__] = ACTIONS(2989), - [anon_sym___alignof] = ACTIONS(2989), - [anon_sym__alignof] = ACTIONS(2989), - [anon_sym_alignof] = ACTIONS(2989), - [anon_sym__Alignof] = ACTIONS(2989), - [anon_sym_offsetof] = ACTIONS(2989), - [anon_sym__Generic] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym___asm__] = ACTIONS(2989), - [sym_number_literal] = ACTIONS(2991), - [anon_sym_L_SQUOTE] = ACTIONS(2991), - [anon_sym_u_SQUOTE] = ACTIONS(2991), - [anon_sym_U_SQUOTE] = ACTIONS(2991), - [anon_sym_u8_SQUOTE] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [anon_sym_L_DQUOTE] = ACTIONS(2991), - [anon_sym_u_DQUOTE] = ACTIONS(2991), - [anon_sym_U_DQUOTE] = ACTIONS(2991), - [anon_sym_u8_DQUOTE] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [anon_sym_NULL] = ACTIONS(2989), - [anon_sym_nullptr] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_delete] = ACTIONS(2989), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - [anon_sym_concept] = ACTIONS(2989), - [anon_sym_co_return] = ACTIONS(2989), - [anon_sym_co_yield] = ACTIONS(2989), - [anon_sym_R_DQUOTE] = ACTIONS(2991), - [anon_sym_LR_DQUOTE] = ACTIONS(2991), - [anon_sym_uR_DQUOTE] = ACTIONS(2991), - [anon_sym_UR_DQUOTE] = ACTIONS(2991), - [anon_sym_u8R_DQUOTE] = ACTIONS(2991), - [anon_sym_co_await] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_requires] = ACTIONS(2989), - [sym_this] = ACTIONS(2989), - }, - [348] = { - [sym_catch_clause] = STATE(348), - [aux_sym_constructor_try_statement_repeat1] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(2815), - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_include_token1] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym___extension__] = ACTIONS(2813), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym___cdecl] = ACTIONS(2813), - [anon_sym___clrcall] = ACTIONS(2813), - [anon_sym___stdcall] = ACTIONS(2813), - [anon_sym___fastcall] = ACTIONS(2813), - [anon_sym___thiscall] = ACTIONS(2813), - [anon_sym___vectorcall] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym___inline] = ACTIONS(2813), - [anon_sym___inline__] = ACTIONS(2813), - [anon_sym___forceinline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym___thread] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym___restrict__] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym__Noreturn] = ACTIONS(2813), - [anon_sym_noreturn] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_else] = ACTIONS(2813), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_case] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_do] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_goto] = ACTIONS(2813), - [anon_sym___try] = ACTIONS(2813), - [anon_sym___leave] = ACTIONS(2813), - [anon_sym_not] = ACTIONS(2813), - [anon_sym_compl] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_sizeof] = ACTIONS(2813), - [anon_sym___alignof__] = ACTIONS(2813), - [anon_sym___alignof] = ACTIONS(2813), - [anon_sym__alignof] = ACTIONS(2813), - [anon_sym_alignof] = ACTIONS(2813), - [anon_sym__Alignof] = ACTIONS(2813), - [anon_sym_offsetof] = ACTIONS(2813), - [anon_sym__Generic] = ACTIONS(2813), - [anon_sym_asm] = ACTIONS(2813), - [anon_sym___asm__] = ACTIONS(2813), - [sym_number_literal] = ACTIONS(2815), - [anon_sym_L_SQUOTE] = ACTIONS(2815), - [anon_sym_u_SQUOTE] = ACTIONS(2815), - [anon_sym_U_SQUOTE] = ACTIONS(2815), - [anon_sym_u8_SQUOTE] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_L_DQUOTE] = ACTIONS(2815), - [anon_sym_u_DQUOTE] = ACTIONS(2815), - [anon_sym_U_DQUOTE] = ACTIONS(2815), - [anon_sym_u8_DQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [anon_sym_NULL] = ACTIONS(2813), - [anon_sym_nullptr] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_alignas] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_delete] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_namespace] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_concept] = ACTIONS(2813), - [anon_sym_co_return] = ACTIONS(2813), - [anon_sym_co_yield] = ACTIONS(2813), - [anon_sym_catch] = ACTIONS(2993), - [anon_sym_R_DQUOTE] = ACTIONS(2815), - [anon_sym_LR_DQUOTE] = ACTIONS(2815), - [anon_sym_uR_DQUOTE] = ACTIONS(2815), - [anon_sym_UR_DQUOTE] = ACTIONS(2815), - [anon_sym_u8R_DQUOTE] = ACTIONS(2815), - [anon_sym_co_await] = ACTIONS(2813), - [anon_sym_new] = ACTIONS(2813), - [anon_sym_requires] = ACTIONS(2813), - [sym_this] = ACTIONS(2813), - }, - [349] = { - [sym_identifier] = ACTIONS(2996), - [aux_sym_preproc_include_token1] = ACTIONS(2996), - [aux_sym_preproc_def_token1] = ACTIONS(2996), - [aux_sym_preproc_if_token1] = ACTIONS(2996), - [aux_sym_preproc_if_token2] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2996), - [aux_sym_preproc_else_token1] = ACTIONS(2996), - [aux_sym_preproc_elif_token1] = ACTIONS(2996), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2996), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2996), - [sym_preproc_directive] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2998), - [anon_sym___extension__] = ACTIONS(2996), - [anon_sym_typedef] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym___attribute__] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), - [anon_sym___declspec] = ACTIONS(2996), - [anon_sym___based] = ACTIONS(2996), - [anon_sym___cdecl] = ACTIONS(2996), - [anon_sym___clrcall] = ACTIONS(2996), - [anon_sym___stdcall] = ACTIONS(2996), - [anon_sym___fastcall] = ACTIONS(2996), - [anon_sym___thiscall] = ACTIONS(2996), - [anon_sym___vectorcall] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_signed] = ACTIONS(2996), - [anon_sym_unsigned] = ACTIONS(2996), - [anon_sym_long] = ACTIONS(2996), - [anon_sym_short] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_inline] = ACTIONS(2996), - [anon_sym___inline] = ACTIONS(2996), - [anon_sym___inline__] = ACTIONS(2996), - [anon_sym___forceinline] = ACTIONS(2996), - [anon_sym_thread_local] = ACTIONS(2996), - [anon_sym___thread] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_constexpr] = ACTIONS(2996), - [anon_sym_volatile] = ACTIONS(2996), - [anon_sym_restrict] = ACTIONS(2996), - [anon_sym___restrict__] = ACTIONS(2996), - [anon_sym__Atomic] = ACTIONS(2996), - [anon_sym__Noreturn] = ACTIONS(2996), - [anon_sym_noreturn] = ACTIONS(2996), - [anon_sym_mutable] = ACTIONS(2996), - [anon_sym_constinit] = ACTIONS(2996), - [anon_sym_consteval] = ACTIONS(2996), - [sym_primitive_type] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), - [anon_sym_class] = ACTIONS(2996), - [anon_sym_struct] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_goto] = ACTIONS(2996), - [anon_sym___try] = ACTIONS(2996), - [anon_sym___leave] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_compl] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2998), - [anon_sym_PLUS_PLUS] = ACTIONS(2998), - [anon_sym_sizeof] = ACTIONS(2996), - [anon_sym___alignof__] = ACTIONS(2996), - [anon_sym___alignof] = ACTIONS(2996), - [anon_sym__alignof] = ACTIONS(2996), - [anon_sym_alignof] = ACTIONS(2996), - [anon_sym__Alignof] = ACTIONS(2996), - [anon_sym_offsetof] = ACTIONS(2996), - [anon_sym__Generic] = ACTIONS(2996), - [anon_sym_asm] = ACTIONS(2996), - [anon_sym___asm__] = ACTIONS(2996), - [sym_number_literal] = ACTIONS(2998), - [anon_sym_L_SQUOTE] = ACTIONS(2998), - [anon_sym_u_SQUOTE] = ACTIONS(2998), - [anon_sym_U_SQUOTE] = ACTIONS(2998), - [anon_sym_u8_SQUOTE] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(2998), - [anon_sym_L_DQUOTE] = ACTIONS(2998), - [anon_sym_u_DQUOTE] = ACTIONS(2998), - [anon_sym_U_DQUOTE] = ACTIONS(2998), - [anon_sym_u8_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [sym_true] = ACTIONS(2996), - [sym_false] = ACTIONS(2996), - [anon_sym_NULL] = ACTIONS(2996), - [anon_sym_nullptr] = ACTIONS(2996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2996), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2996), - [anon_sym_alignas] = ACTIONS(2996), - [anon_sym_explicit] = ACTIONS(2996), - [anon_sym_typename] = ACTIONS(2996), - [anon_sym_template] = ACTIONS(2996), - [anon_sym_operator] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_throw] = ACTIONS(2996), - [anon_sym_namespace] = ACTIONS(2996), - [anon_sym_using] = ACTIONS(2996), - [anon_sym_static_assert] = ACTIONS(2996), - [anon_sym_concept] = ACTIONS(2996), - [anon_sym_co_return] = ACTIONS(2996), - [anon_sym_co_yield] = 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(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_requires] = ACTIONS(2996), - [sym_this] = ACTIONS(2996), - }, - [350] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [aux_sym_preproc_else_token1] = ACTIONS(2144), - [aux_sym_preproc_elif_token1] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym___cdecl] = ACTIONS(2144), - [anon_sym___clrcall] = ACTIONS(2144), - [anon_sym___stdcall] = ACTIONS(2144), - [anon_sym___fastcall] = ACTIONS(2144), - [anon_sym___thiscall] = ACTIONS(2144), - [anon_sym___vectorcall] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym___try] = ACTIONS(2144), - [anon_sym___leave] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2144), - [anon_sym_compl] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2144), - [anon_sym___alignof__] = ACTIONS(2144), - [anon_sym___alignof] = ACTIONS(2144), - [anon_sym__alignof] = ACTIONS(2144), - [anon_sym_alignof] = ACTIONS(2144), - [anon_sym__Alignof] = ACTIONS(2144), - [anon_sym_offsetof] = ACTIONS(2144), - [anon_sym__Generic] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym___asm__] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2142), - [anon_sym_L_SQUOTE] = ACTIONS(2142), - [anon_sym_u_SQUOTE] = ACTIONS(2142), - [anon_sym_U_SQUOTE] = ACTIONS(2142), - [anon_sym_u8_SQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_L_DQUOTE] = ACTIONS(2142), - [anon_sym_u_DQUOTE] = ACTIONS(2142), - [anon_sym_U_DQUOTE] = ACTIONS(2142), - [anon_sym_u8_DQUOTE] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [anon_sym_NULL] = ACTIONS(2144), - [anon_sym_nullptr] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_delete] = ACTIONS(2144), - [anon_sym_throw] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_concept] = ACTIONS(2144), - [anon_sym_co_return] = ACTIONS(2144), - [anon_sym_co_yield] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_R_DQUOTE] = ACTIONS(2142), - [anon_sym_LR_DQUOTE] = ACTIONS(2142), - [anon_sym_uR_DQUOTE] = ACTIONS(2142), - [anon_sym_UR_DQUOTE] = ACTIONS(2142), - [anon_sym_u8R_DQUOTE] = ACTIONS(2142), - [anon_sym_co_await] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2144), - [anon_sym_requires] = ACTIONS(2144), - [sym_this] = ACTIONS(2144), - }, - [351] = { - [sym_identifier] = ACTIONS(2849), - [aux_sym_preproc_include_token1] = ACTIONS(2849), - [aux_sym_preproc_def_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token2] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), - [aux_sym_preproc_else_token1] = ACTIONS(2849), - [aux_sym_preproc_elif_token1] = ACTIONS(2849), - [sym_preproc_directive] = ACTIONS(2849), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym___extension__] = ACTIONS(2849), - [anon_sym_typedef] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), - [anon_sym___declspec] = ACTIONS(2849), - [anon_sym___based] = ACTIONS(2849), - [anon_sym___cdecl] = ACTIONS(2849), - [anon_sym___clrcall] = ACTIONS(2849), - [anon_sym___stdcall] = ACTIONS(2849), - [anon_sym___fastcall] = ACTIONS(2849), - [anon_sym___thiscall] = ACTIONS(2849), - [anon_sym___vectorcall] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_signed] = ACTIONS(2849), - [anon_sym_unsigned] = ACTIONS(2849), - [anon_sym_long] = ACTIONS(2849), - [anon_sym_short] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_register] = ACTIONS(2849), - [anon_sym_inline] = ACTIONS(2849), - [anon_sym___inline] = ACTIONS(2849), - [anon_sym___inline__] = ACTIONS(2849), - [anon_sym___forceinline] = ACTIONS(2849), - [anon_sym_thread_local] = ACTIONS(2849), - [anon_sym___thread] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_constexpr] = ACTIONS(2849), - [anon_sym_volatile] = ACTIONS(2849), - [anon_sym_restrict] = ACTIONS(2849), - [anon_sym___restrict__] = ACTIONS(2849), - [anon_sym__Atomic] = ACTIONS(2849), - [anon_sym__Noreturn] = ACTIONS(2849), - [anon_sym_noreturn] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [sym_primitive_type] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_class] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_else] = ACTIONS(2849), - [anon_sym_switch] = ACTIONS(2849), - [anon_sym_case] = ACTIONS(2849), - [anon_sym_default] = ACTIONS(2849), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_do] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_goto] = ACTIONS(2849), - [anon_sym___try] = ACTIONS(2849), - [anon_sym___leave] = ACTIONS(2849), - [anon_sym_not] = ACTIONS(2849), - [anon_sym_compl] = ACTIONS(2849), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_sizeof] = ACTIONS(2849), - [anon_sym___alignof__] = ACTIONS(2849), - [anon_sym___alignof] = ACTIONS(2849), - [anon_sym__alignof] = ACTIONS(2849), - [anon_sym_alignof] = ACTIONS(2849), - [anon_sym__Alignof] = ACTIONS(2849), - [anon_sym_offsetof] = ACTIONS(2849), - [anon_sym__Generic] = ACTIONS(2849), - [anon_sym_asm] = ACTIONS(2849), - [anon_sym___asm__] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2851), - [anon_sym_u_SQUOTE] = ACTIONS(2851), - [anon_sym_U_SQUOTE] = ACTIONS(2851), - [anon_sym_u8_SQUOTE] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [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(2849), - [sym_false] = ACTIONS(2849), - [anon_sym_NULL] = ACTIONS(2849), - [anon_sym_nullptr] = ACTIONS(2849), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2849), - [anon_sym_decltype] = ACTIONS(2849), - [anon_sym_virtual] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym_explicit] = ACTIONS(2849), - [anon_sym_typename] = ACTIONS(2849), - [anon_sym_template] = ACTIONS(2849), - [anon_sym_operator] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2849), - [anon_sym_delete] = ACTIONS(2849), - [anon_sym_throw] = ACTIONS(2849), - [anon_sym_namespace] = ACTIONS(2849), - [anon_sym_using] = ACTIONS(2849), - [anon_sym_static_assert] = ACTIONS(2849), - [anon_sym_concept] = ACTIONS(2849), - [anon_sym_co_return] = ACTIONS(2849), - [anon_sym_co_yield] = ACTIONS(2849), - [anon_sym_catch] = ACTIONS(2849), - [anon_sym_R_DQUOTE] = ACTIONS(2851), - [anon_sym_LR_DQUOTE] = ACTIONS(2851), - [anon_sym_uR_DQUOTE] = ACTIONS(2851), - [anon_sym_UR_DQUOTE] = ACTIONS(2851), - [anon_sym_u8R_DQUOTE] = ACTIONS(2851), - [anon_sym_co_await] = ACTIONS(2849), - [anon_sym_new] = ACTIONS(2849), - [anon_sym_requires] = ACTIONS(2849), - [sym_this] = ACTIONS(2849), - }, - [352] = { - [sym_preproc_def] = STATE(816), - [sym_preproc_function_def] = STATE(816), - [sym_preproc_call] = STATE(816), - [sym_preproc_elifdef] = STATE(9200), - [sym_preproc_if_in_field_declaration_list] = STATE(816), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(816), - [sym_preproc_else_in_field_declaration_list] = STATE(9200), - [sym_preproc_elif_in_field_declaration_list] = STATE(9200), - [sym_type_definition] = STATE(816), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6173), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6781), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(816), - [sym_field_declaration] = STATE(816), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2007), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(816), - [sym_operator_cast] = STATE(7163), - [sym_inline_method_definition] = STATE(816), - [sym__constructor_specifiers] = STATE(2007), - [sym_operator_cast_definition] = STATE(816), - [sym_operator_cast_declaration] = STATE(816), - [sym_constructor_or_destructor_definition] = STATE(816), - [sym_constructor_or_destructor_declaration] = STATE(816), - [sym_friend_declaration] = STATE(816), - [sym_access_specifier] = STATE(8986), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(816), - [sym_alias_declaration] = STATE(816), - [sym_static_assert_declaration] = STATE(816), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7163), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(816), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2007), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3002), - [aux_sym_preproc_if_token1] = ACTIONS(3004), - [aux_sym_preproc_if_token2] = ACTIONS(3006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(279), - [aux_sym_preproc_elifdef_token2] = ACTIONS(279), - [sym_preproc_directive] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3024), - [anon_sym_typedef] = ACTIONS(3026), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3050), - [anon_sym_static_assert] = ACTIONS(3052), - }, - [353] = { - [sym_identifier] = ACTIONS(3054), - [aux_sym_preproc_include_token1] = ACTIONS(3054), - [aux_sym_preproc_def_token1] = ACTIONS(3054), - [aux_sym_preproc_if_token1] = ACTIONS(3054), - [aux_sym_preproc_if_token2] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3054), - [aux_sym_preproc_else_token1] = ACTIONS(3054), - [aux_sym_preproc_elif_token1] = ACTIONS(3054), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3054), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3054), - [sym_preproc_directive] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym___extension__] = ACTIONS(3054), - [anon_sym_typedef] = ACTIONS(3054), - [anon_sym_extern] = ACTIONS(3054), - [anon_sym___attribute__] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3056), - [anon_sym___declspec] = ACTIONS(3054), - [anon_sym___based] = ACTIONS(3054), - [anon_sym___cdecl] = ACTIONS(3054), - [anon_sym___clrcall] = ACTIONS(3054), - [anon_sym___stdcall] = ACTIONS(3054), - [anon_sym___fastcall] = ACTIONS(3054), - [anon_sym___thiscall] = ACTIONS(3054), - [anon_sym___vectorcall] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_signed] = ACTIONS(3054), - [anon_sym_unsigned] = ACTIONS(3054), - [anon_sym_long] = ACTIONS(3054), - [anon_sym_short] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_register] = ACTIONS(3054), - [anon_sym_inline] = ACTIONS(3054), - [anon_sym___inline] = ACTIONS(3054), - [anon_sym___inline__] = ACTIONS(3054), - [anon_sym___forceinline] = ACTIONS(3054), - [anon_sym_thread_local] = ACTIONS(3054), - [anon_sym___thread] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_constexpr] = ACTIONS(3054), - [anon_sym_volatile] = ACTIONS(3054), - [anon_sym_restrict] = ACTIONS(3054), - [anon_sym___restrict__] = ACTIONS(3054), - [anon_sym__Atomic] = ACTIONS(3054), - [anon_sym__Noreturn] = ACTIONS(3054), - [anon_sym_noreturn] = ACTIONS(3054), - [anon_sym_mutable] = ACTIONS(3054), - [anon_sym_constinit] = ACTIONS(3054), - [anon_sym_consteval] = ACTIONS(3054), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_class] = ACTIONS(3054), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_union] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_switch] = ACTIONS(3054), - [anon_sym_case] = ACTIONS(3054), - [anon_sym_default] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_goto] = ACTIONS(3054), - [anon_sym___try] = ACTIONS(3054), - [anon_sym___leave] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3054), - [anon_sym_compl] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_sizeof] = ACTIONS(3054), - [anon_sym___alignof__] = ACTIONS(3054), - [anon_sym___alignof] = ACTIONS(3054), - [anon_sym__alignof] = ACTIONS(3054), - [anon_sym_alignof] = ACTIONS(3054), - [anon_sym__Alignof] = ACTIONS(3054), - [anon_sym_offsetof] = ACTIONS(3054), - [anon_sym__Generic] = ACTIONS(3054), - [anon_sym_asm] = ACTIONS(3054), - [anon_sym___asm__] = ACTIONS(3054), - [sym_number_literal] = ACTIONS(3056), - [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(3056), - [anon_sym_u_DQUOTE] = ACTIONS(3056), - [anon_sym_U_DQUOTE] = ACTIONS(3056), - [anon_sym_u8_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [anon_sym_NULL] = ACTIONS(3054), - [anon_sym_nullptr] = ACTIONS(3054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3054), - [anon_sym_decltype] = ACTIONS(3054), - [anon_sym_virtual] = ACTIONS(3054), - [anon_sym_alignas] = ACTIONS(3054), - [anon_sym_explicit] = ACTIONS(3054), - [anon_sym_typename] = ACTIONS(3054), - [anon_sym_template] = ACTIONS(3054), - [anon_sym_operator] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_delete] = ACTIONS(3054), - [anon_sym_throw] = ACTIONS(3054), - [anon_sym_namespace] = ACTIONS(3054), - [anon_sym_using] = ACTIONS(3054), - [anon_sym_static_assert] = ACTIONS(3054), - [anon_sym_concept] = ACTIONS(3054), - [anon_sym_co_return] = ACTIONS(3054), - [anon_sym_co_yield] = ACTIONS(3054), - [anon_sym_R_DQUOTE] = ACTIONS(3056), - [anon_sym_LR_DQUOTE] = ACTIONS(3056), - [anon_sym_uR_DQUOTE] = ACTIONS(3056), - [anon_sym_UR_DQUOTE] = ACTIONS(3056), - [anon_sym_u8R_DQUOTE] = ACTIONS(3056), - [anon_sym_co_await] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_requires] = ACTIONS(3054), - [sym_this] = ACTIONS(3054), - }, - [354] = { - [sym_identifier] = ACTIONS(3058), - [aux_sym_preproc_include_token1] = ACTIONS(3058), - [aux_sym_preproc_def_token1] = ACTIONS(3058), - [aux_sym_preproc_if_token1] = ACTIONS(3058), - [aux_sym_preproc_if_token2] = ACTIONS(3058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3058), - [aux_sym_preproc_else_token1] = ACTIONS(3058), - [aux_sym_preproc_elif_token1] = ACTIONS(3058), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3058), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3058), - [sym_preproc_directive] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3060), - [anon_sym___extension__] = ACTIONS(3058), - [anon_sym_typedef] = ACTIONS(3058), - [anon_sym_extern] = ACTIONS(3058), - [anon_sym___attribute__] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3060), - [anon_sym___declspec] = ACTIONS(3058), - [anon_sym___based] = ACTIONS(3058), - [anon_sym___cdecl] = ACTIONS(3058), - [anon_sym___clrcall] = ACTIONS(3058), - [anon_sym___stdcall] = ACTIONS(3058), - [anon_sym___fastcall] = ACTIONS(3058), - [anon_sym___thiscall] = ACTIONS(3058), - [anon_sym___vectorcall] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_signed] = ACTIONS(3058), - [anon_sym_unsigned] = ACTIONS(3058), - [anon_sym_long] = ACTIONS(3058), - [anon_sym_short] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_static] = ACTIONS(3058), - [anon_sym_register] = ACTIONS(3058), - [anon_sym_inline] = ACTIONS(3058), - [anon_sym___inline] = ACTIONS(3058), - [anon_sym___inline__] = ACTIONS(3058), - [anon_sym___forceinline] = ACTIONS(3058), - [anon_sym_thread_local] = ACTIONS(3058), - [anon_sym___thread] = ACTIONS(3058), - [anon_sym_const] = ACTIONS(3058), - [anon_sym_constexpr] = ACTIONS(3058), - [anon_sym_volatile] = ACTIONS(3058), - [anon_sym_restrict] = ACTIONS(3058), - [anon_sym___restrict__] = ACTIONS(3058), - [anon_sym__Atomic] = ACTIONS(3058), - [anon_sym__Noreturn] = ACTIONS(3058), - [anon_sym_noreturn] = ACTIONS(3058), - [anon_sym_mutable] = ACTIONS(3058), - [anon_sym_constinit] = ACTIONS(3058), - [anon_sym_consteval] = ACTIONS(3058), - [sym_primitive_type] = ACTIONS(3058), - [anon_sym_enum] = ACTIONS(3058), - [anon_sym_class] = ACTIONS(3058), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_union] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_switch] = ACTIONS(3058), - [anon_sym_case] = ACTIONS(3058), - [anon_sym_default] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_goto] = ACTIONS(3058), - [anon_sym___try] = ACTIONS(3058), - [anon_sym___leave] = ACTIONS(3058), - [anon_sym_not] = ACTIONS(3058), - [anon_sym_compl] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_sizeof] = ACTIONS(3058), - [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(3058), - [anon_sym__Generic] = ACTIONS(3058), - [anon_sym_asm] = ACTIONS(3058), - [anon_sym___asm__] = ACTIONS(3058), - [sym_number_literal] = ACTIONS(3060), - [anon_sym_L_SQUOTE] = ACTIONS(3060), - [anon_sym_u_SQUOTE] = ACTIONS(3060), - [anon_sym_U_SQUOTE] = ACTIONS(3060), - [anon_sym_u8_SQUOTE] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_L_DQUOTE] = ACTIONS(3060), - [anon_sym_u_DQUOTE] = ACTIONS(3060), - [anon_sym_U_DQUOTE] = ACTIONS(3060), - [anon_sym_u8_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [anon_sym_NULL] = ACTIONS(3058), - [anon_sym_nullptr] = ACTIONS(3058), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3058), - [anon_sym_decltype] = ACTIONS(3058), - [anon_sym_virtual] = ACTIONS(3058), - [anon_sym_alignas] = ACTIONS(3058), - [anon_sym_explicit] = ACTIONS(3058), - [anon_sym_typename] = ACTIONS(3058), - [anon_sym_template] = ACTIONS(3058), - [anon_sym_operator] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_delete] = ACTIONS(3058), - [anon_sym_throw] = ACTIONS(3058), - [anon_sym_namespace] = ACTIONS(3058), - [anon_sym_using] = ACTIONS(3058), - [anon_sym_static_assert] = ACTIONS(3058), - [anon_sym_concept] = ACTIONS(3058), - [anon_sym_co_return] = ACTIONS(3058), - [anon_sym_co_yield] = ACTIONS(3058), - [anon_sym_R_DQUOTE] = ACTIONS(3060), - [anon_sym_LR_DQUOTE] = ACTIONS(3060), - [anon_sym_uR_DQUOTE] = ACTIONS(3060), - [anon_sym_UR_DQUOTE] = ACTIONS(3060), - [anon_sym_u8R_DQUOTE] = ACTIONS(3060), - [anon_sym_co_await] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_requires] = ACTIONS(3058), - [sym_this] = ACTIONS(3058), - }, - [355] = { - [sym_catch_clause] = STATE(348), - [aux_sym_constructor_try_statement_repeat1] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(2822), - [sym_identifier] = ACTIONS(2820), - [aux_sym_preproc_include_token1] = ACTIONS(2820), - [aux_sym_preproc_def_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token1] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), - [sym_preproc_directive] = ACTIONS(2820), - [anon_sym_LPAREN2] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym___extension__] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym___attribute__] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), - [anon_sym___declspec] = ACTIONS(2820), - [anon_sym___based] = ACTIONS(2820), - [anon_sym___cdecl] = ACTIONS(2820), - [anon_sym___clrcall] = ACTIONS(2820), - [anon_sym___stdcall] = ACTIONS(2820), - [anon_sym___fastcall] = ACTIONS(2820), - [anon_sym___thiscall] = ACTIONS(2820), - [anon_sym___vectorcall] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_signed] = ACTIONS(2820), - [anon_sym_unsigned] = ACTIONS(2820), - [anon_sym_long] = ACTIONS(2820), - [anon_sym_short] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_register] = ACTIONS(2820), - [anon_sym_inline] = ACTIONS(2820), - [anon_sym___inline] = ACTIONS(2820), - [anon_sym___inline__] = ACTIONS(2820), - [anon_sym___forceinline] = ACTIONS(2820), - [anon_sym_thread_local] = ACTIONS(2820), - [anon_sym___thread] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_constexpr] = ACTIONS(2820), - [anon_sym_volatile] = ACTIONS(2820), - [anon_sym_restrict] = ACTIONS(2820), - [anon_sym___restrict__] = ACTIONS(2820), - [anon_sym__Atomic] = ACTIONS(2820), - [anon_sym__Noreturn] = ACTIONS(2820), - [anon_sym_noreturn] = ACTIONS(2820), - [anon_sym_mutable] = ACTIONS(2820), - [anon_sym_constinit] = ACTIONS(2820), - [anon_sym_consteval] = ACTIONS(2820), - [sym_primitive_type] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2820), - [anon_sym_switch] = ACTIONS(2820), - [anon_sym_case] = ACTIONS(2820), - [anon_sym_default] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_do] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym___try] = ACTIONS(2820), - [anon_sym___leave] = ACTIONS(2820), - [anon_sym_not] = ACTIONS(2820), - [anon_sym_compl] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_sizeof] = ACTIONS(2820), - [anon_sym___alignof__] = ACTIONS(2820), - [anon_sym___alignof] = ACTIONS(2820), - [anon_sym__alignof] = ACTIONS(2820), - [anon_sym_alignof] = ACTIONS(2820), - [anon_sym__Alignof] = ACTIONS(2820), - [anon_sym_offsetof] = ACTIONS(2820), - [anon_sym__Generic] = ACTIONS(2820), - [anon_sym_asm] = ACTIONS(2820), - [anon_sym___asm__] = ACTIONS(2820), - [sym_number_literal] = ACTIONS(2822), - [anon_sym_L_SQUOTE] = ACTIONS(2822), - [anon_sym_u_SQUOTE] = ACTIONS(2822), - [anon_sym_U_SQUOTE] = ACTIONS(2822), - [anon_sym_u8_SQUOTE] = ACTIONS(2822), - [anon_sym_SQUOTE] = ACTIONS(2822), - [anon_sym_L_DQUOTE] = ACTIONS(2822), - [anon_sym_u_DQUOTE] = ACTIONS(2822), - [anon_sym_U_DQUOTE] = ACTIONS(2822), - [anon_sym_u8_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [anon_sym_NULL] = ACTIONS(2820), - [anon_sym_nullptr] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2820), - [anon_sym_decltype] = ACTIONS(2820), - [anon_sym_virtual] = ACTIONS(2820), - [anon_sym_alignas] = ACTIONS(2820), - [anon_sym_explicit] = ACTIONS(2820), - [anon_sym_typename] = ACTIONS(2820), - [anon_sym_template] = ACTIONS(2820), - [anon_sym_operator] = ACTIONS(2820), - [anon_sym_try] = ACTIONS(2820), - [anon_sym_delete] = ACTIONS(2820), - [anon_sym_throw] = ACTIONS(2820), - [anon_sym_namespace] = ACTIONS(2820), - [anon_sym_using] = ACTIONS(2820), - [anon_sym_static_assert] = ACTIONS(2820), - [anon_sym_concept] = ACTIONS(2820), - [anon_sym_co_return] = ACTIONS(2820), - [anon_sym_co_yield] = ACTIONS(2820), - [anon_sym_catch] = ACTIONS(3062), - [anon_sym_R_DQUOTE] = ACTIONS(2822), - [anon_sym_LR_DQUOTE] = ACTIONS(2822), - [anon_sym_uR_DQUOTE] = ACTIONS(2822), - [anon_sym_UR_DQUOTE] = ACTIONS(2822), - [anon_sym_u8R_DQUOTE] = ACTIONS(2822), - [anon_sym_co_await] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2820), - [anon_sym_requires] = ACTIONS(2820), - [sym_this] = ACTIONS(2820), - }, - [356] = { - [sym_preproc_def] = STATE(368), - [sym_preproc_function_def] = STATE(368), - [sym_preproc_call] = STATE(368), - [sym_preproc_elifdef] = STATE(8566), - [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(8566), - [sym_preproc_elif_in_field_declaration_list] = STATE(8566), - [sym_type_definition] = STATE(368), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6173), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6781), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(368), - [sym_field_declaration] = STATE(368), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2007), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(368), - [sym_operator_cast] = STATE(7163), - [sym_inline_method_definition] = STATE(368), - [sym__constructor_specifiers] = STATE(2007), - [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(8986), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(368), - [sym_alias_declaration] = STATE(368), - [sym_static_assert_declaration] = STATE(368), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7163), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(368), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2007), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3002), - [aux_sym_preproc_if_token1] = ACTIONS(3004), - [aux_sym_preproc_if_token2] = ACTIONS(3064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(279), - [aux_sym_preproc_elifdef_token2] = ACTIONS(279), - [sym_preproc_directive] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3024), - [anon_sym_typedef] = ACTIONS(3026), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3050), - [anon_sym_static_assert] = ACTIONS(3052), - }, - [357] = { - [sym_identifier] = ACTIONS(3066), - [aux_sym_preproc_include_token1] = ACTIONS(3066), - [aux_sym_preproc_def_token1] = ACTIONS(3066), - [aux_sym_preproc_if_token1] = ACTIONS(3066), - [aux_sym_preproc_if_token2] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3066), - [aux_sym_preproc_else_token1] = ACTIONS(3066), - [aux_sym_preproc_elif_token1] = ACTIONS(3066), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3066), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3066), - [sym_preproc_directive] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym___extension__] = ACTIONS(3066), - [anon_sym_typedef] = ACTIONS(3066), - [anon_sym_extern] = ACTIONS(3066), - [anon_sym___attribute__] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3068), - [anon_sym___declspec] = ACTIONS(3066), - [anon_sym___based] = ACTIONS(3066), - [anon_sym___cdecl] = ACTIONS(3066), - [anon_sym___clrcall] = ACTIONS(3066), - [anon_sym___stdcall] = ACTIONS(3066), - [anon_sym___fastcall] = ACTIONS(3066), - [anon_sym___thiscall] = ACTIONS(3066), - [anon_sym___vectorcall] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_signed] = ACTIONS(3066), - [anon_sym_unsigned] = ACTIONS(3066), - [anon_sym_long] = ACTIONS(3066), - [anon_sym_short] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_register] = ACTIONS(3066), - [anon_sym_inline] = ACTIONS(3066), - [anon_sym___inline] = ACTIONS(3066), - [anon_sym___inline__] = ACTIONS(3066), - [anon_sym___forceinline] = ACTIONS(3066), - [anon_sym_thread_local] = ACTIONS(3066), - [anon_sym___thread] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_constexpr] = ACTIONS(3066), - [anon_sym_volatile] = ACTIONS(3066), - [anon_sym_restrict] = ACTIONS(3066), - [anon_sym___restrict__] = ACTIONS(3066), - [anon_sym__Atomic] = ACTIONS(3066), - [anon_sym__Noreturn] = ACTIONS(3066), - [anon_sym_noreturn] = ACTIONS(3066), - [anon_sym_mutable] = ACTIONS(3066), - [anon_sym_constinit] = ACTIONS(3066), - [anon_sym_consteval] = ACTIONS(3066), - [sym_primitive_type] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_union] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_goto] = ACTIONS(3066), - [anon_sym___try] = ACTIONS(3066), - [anon_sym___leave] = ACTIONS(3066), - [anon_sym_not] = ACTIONS(3066), - [anon_sym_compl] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_sizeof] = ACTIONS(3066), - [anon_sym___alignof__] = ACTIONS(3066), - [anon_sym___alignof] = ACTIONS(3066), - [anon_sym__alignof] = ACTIONS(3066), - [anon_sym_alignof] = ACTIONS(3066), - [anon_sym__Alignof] = ACTIONS(3066), - [anon_sym_offsetof] = ACTIONS(3066), - [anon_sym__Generic] = ACTIONS(3066), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3068), - [anon_sym_u_SQUOTE] = ACTIONS(3068), - [anon_sym_U_SQUOTE] = ACTIONS(3068), - [anon_sym_u8_SQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_L_DQUOTE] = ACTIONS(3068), - [anon_sym_u_DQUOTE] = ACTIONS(3068), - [anon_sym_U_DQUOTE] = ACTIONS(3068), - [anon_sym_u8_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [anon_sym_NULL] = ACTIONS(3066), - [anon_sym_nullptr] = ACTIONS(3066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3066), - [anon_sym_decltype] = ACTIONS(3066), - [anon_sym_virtual] = ACTIONS(3066), - [anon_sym_alignas] = ACTIONS(3066), - [anon_sym_explicit] = ACTIONS(3066), - [anon_sym_typename] = ACTIONS(3066), - [anon_sym_template] = ACTIONS(3066), - [anon_sym_operator] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_static_assert] = ACTIONS(3066), - [anon_sym_concept] = ACTIONS(3066), - [anon_sym_co_return] = ACTIONS(3066), - [anon_sym_co_yield] = 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(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_requires] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), - }, - [358] = { - [sym_catch_clause] = STATE(414), - [aux_sym_constructor_try_statement_repeat1] = STATE(414), - [sym_identifier] = ACTIONS(2820), - [aux_sym_preproc_include_token1] = ACTIONS(2820), - [aux_sym_preproc_def_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token2] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), - [sym_preproc_directive] = ACTIONS(2820), - [anon_sym_LPAREN2] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym___extension__] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym___attribute__] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), - [anon_sym___declspec] = ACTIONS(2820), - [anon_sym___based] = ACTIONS(2820), - [anon_sym___cdecl] = ACTIONS(2820), - [anon_sym___clrcall] = ACTIONS(2820), - [anon_sym___stdcall] = ACTIONS(2820), - [anon_sym___fastcall] = ACTIONS(2820), - [anon_sym___thiscall] = ACTIONS(2820), - [anon_sym___vectorcall] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_signed] = ACTIONS(2820), - [anon_sym_unsigned] = ACTIONS(2820), - [anon_sym_long] = ACTIONS(2820), - [anon_sym_short] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_register] = ACTIONS(2820), - [anon_sym_inline] = ACTIONS(2820), - [anon_sym___inline] = ACTIONS(2820), - [anon_sym___inline__] = ACTIONS(2820), - [anon_sym___forceinline] = ACTIONS(2820), - [anon_sym_thread_local] = ACTIONS(2820), - [anon_sym___thread] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_constexpr] = ACTIONS(2820), - [anon_sym_volatile] = ACTIONS(2820), - [anon_sym_restrict] = ACTIONS(2820), - [anon_sym___restrict__] = ACTIONS(2820), - [anon_sym__Atomic] = ACTIONS(2820), - [anon_sym__Noreturn] = ACTIONS(2820), - [anon_sym_noreturn] = ACTIONS(2820), - [anon_sym_mutable] = ACTIONS(2820), - [anon_sym_constinit] = ACTIONS(2820), - [anon_sym_consteval] = ACTIONS(2820), - [sym_primitive_type] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2820), - [anon_sym_switch] = ACTIONS(2820), - [anon_sym_case] = ACTIONS(2820), - [anon_sym_default] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_do] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym___try] = ACTIONS(2820), - [anon_sym___leave] = ACTIONS(2820), - [anon_sym_not] = ACTIONS(2820), - [anon_sym_compl] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_sizeof] = ACTIONS(2820), - [anon_sym___alignof__] = ACTIONS(2820), - [anon_sym___alignof] = ACTIONS(2820), - [anon_sym__alignof] = ACTIONS(2820), - [anon_sym_alignof] = ACTIONS(2820), - [anon_sym__Alignof] = ACTIONS(2820), - [anon_sym_offsetof] = ACTIONS(2820), - [anon_sym__Generic] = ACTIONS(2820), - [anon_sym_asm] = ACTIONS(2820), - [anon_sym___asm__] = ACTIONS(2820), - [sym_number_literal] = ACTIONS(2822), - [anon_sym_L_SQUOTE] = ACTIONS(2822), - [anon_sym_u_SQUOTE] = ACTIONS(2822), - [anon_sym_U_SQUOTE] = ACTIONS(2822), - [anon_sym_u8_SQUOTE] = ACTIONS(2822), - [anon_sym_SQUOTE] = ACTIONS(2822), - [anon_sym_L_DQUOTE] = ACTIONS(2822), - [anon_sym_u_DQUOTE] = ACTIONS(2822), - [anon_sym_U_DQUOTE] = ACTIONS(2822), - [anon_sym_u8_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [anon_sym_NULL] = ACTIONS(2820), - [anon_sym_nullptr] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2820), - [anon_sym_decltype] = ACTIONS(2820), - [anon_sym_virtual] = ACTIONS(2820), - [anon_sym_alignas] = ACTIONS(2820), - [anon_sym_explicit] = ACTIONS(2820), - [anon_sym_typename] = ACTIONS(2820), - [anon_sym_template] = ACTIONS(2820), - [anon_sym_operator] = ACTIONS(2820), - [anon_sym_try] = ACTIONS(2820), - [anon_sym_delete] = ACTIONS(2820), - [anon_sym_throw] = ACTIONS(2820), - [anon_sym_namespace] = ACTIONS(2820), - [anon_sym_using] = ACTIONS(2820), - [anon_sym_static_assert] = ACTIONS(2820), - [anon_sym_concept] = ACTIONS(2820), - [anon_sym_co_return] = ACTIONS(2820), - [anon_sym_co_yield] = ACTIONS(2820), - [anon_sym_catch] = ACTIONS(3070), - [anon_sym_R_DQUOTE] = ACTIONS(2822), - [anon_sym_LR_DQUOTE] = ACTIONS(2822), - [anon_sym_uR_DQUOTE] = ACTIONS(2822), - [anon_sym_UR_DQUOTE] = ACTIONS(2822), - [anon_sym_u8R_DQUOTE] = ACTIONS(2822), - [anon_sym_co_await] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2820), - [anon_sym_requires] = ACTIONS(2820), - [sym_this] = ACTIONS(2820), - }, - [359] = { - [sym_identifier] = ACTIONS(3072), - [aux_sym_preproc_include_token1] = ACTIONS(3072), - [aux_sym_preproc_def_token1] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3072), - [aux_sym_preproc_if_token2] = ACTIONS(3072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3072), - [aux_sym_preproc_else_token1] = ACTIONS(3072), - [aux_sym_preproc_elif_token1] = ACTIONS(3072), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3072), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3072), - [sym_preproc_directive] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym___extension__] = ACTIONS(3072), - [anon_sym_typedef] = ACTIONS(3072), - [anon_sym_extern] = ACTIONS(3072), - [anon_sym___attribute__] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3074), - [anon_sym___declspec] = ACTIONS(3072), - [anon_sym___based] = ACTIONS(3072), - [anon_sym___cdecl] = ACTIONS(3072), - [anon_sym___clrcall] = ACTIONS(3072), - [anon_sym___stdcall] = ACTIONS(3072), - [anon_sym___fastcall] = ACTIONS(3072), - [anon_sym___thiscall] = ACTIONS(3072), - [anon_sym___vectorcall] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_signed] = ACTIONS(3072), - [anon_sym_unsigned] = ACTIONS(3072), - [anon_sym_long] = ACTIONS(3072), - [anon_sym_short] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_register] = ACTIONS(3072), - [anon_sym_inline] = ACTIONS(3072), - [anon_sym___inline] = ACTIONS(3072), - [anon_sym___inline__] = ACTIONS(3072), - [anon_sym___forceinline] = ACTIONS(3072), - [anon_sym_thread_local] = ACTIONS(3072), - [anon_sym___thread] = ACTIONS(3072), - [anon_sym_const] = ACTIONS(3072), - [anon_sym_constexpr] = ACTIONS(3072), - [anon_sym_volatile] = ACTIONS(3072), - [anon_sym_restrict] = ACTIONS(3072), - [anon_sym___restrict__] = ACTIONS(3072), - [anon_sym__Atomic] = ACTIONS(3072), - [anon_sym__Noreturn] = ACTIONS(3072), - [anon_sym_noreturn] = ACTIONS(3072), - [anon_sym_mutable] = ACTIONS(3072), - [anon_sym_constinit] = ACTIONS(3072), - [anon_sym_consteval] = ACTIONS(3072), - [sym_primitive_type] = ACTIONS(3072), - [anon_sym_enum] = ACTIONS(3072), - [anon_sym_class] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_switch] = ACTIONS(3072), - [anon_sym_case] = ACTIONS(3072), - [anon_sym_default] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_break] = ACTIONS(3072), - [anon_sym_continue] = ACTIONS(3072), - [anon_sym_goto] = ACTIONS(3072), - [anon_sym___try] = ACTIONS(3072), - [anon_sym___leave] = ACTIONS(3072), - [anon_sym_not] = ACTIONS(3072), - [anon_sym_compl] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_sizeof] = ACTIONS(3072), - [anon_sym___alignof__] = ACTIONS(3072), - [anon_sym___alignof] = ACTIONS(3072), - [anon_sym__alignof] = ACTIONS(3072), - [anon_sym_alignof] = ACTIONS(3072), - [anon_sym__Alignof] = ACTIONS(3072), - [anon_sym_offsetof] = ACTIONS(3072), - [anon_sym__Generic] = ACTIONS(3072), - [anon_sym_asm] = ACTIONS(3072), - [anon_sym___asm__] = ACTIONS(3072), - [sym_number_literal] = ACTIONS(3074), - [anon_sym_L_SQUOTE] = ACTIONS(3074), - [anon_sym_u_SQUOTE] = ACTIONS(3074), - [anon_sym_U_SQUOTE] = ACTIONS(3074), - [anon_sym_u8_SQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_L_DQUOTE] = ACTIONS(3074), - [anon_sym_u_DQUOTE] = ACTIONS(3074), - [anon_sym_U_DQUOTE] = ACTIONS(3074), - [anon_sym_u8_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [sym_true] = ACTIONS(3072), - [sym_false] = ACTIONS(3072), - [anon_sym_NULL] = ACTIONS(3072), - [anon_sym_nullptr] = ACTIONS(3072), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3072), - [anon_sym_decltype] = ACTIONS(3072), - [anon_sym_virtual] = ACTIONS(3072), - [anon_sym_alignas] = ACTIONS(3072), - [anon_sym_explicit] = ACTIONS(3072), - [anon_sym_typename] = ACTIONS(3072), - [anon_sym_template] = ACTIONS(3072), - [anon_sym_operator] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_delete] = ACTIONS(3072), - [anon_sym_throw] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_using] = ACTIONS(3072), - [anon_sym_static_assert] = ACTIONS(3072), - [anon_sym_concept] = ACTIONS(3072), - [anon_sym_co_return] = ACTIONS(3072), - [anon_sym_co_yield] = ACTIONS(3072), - [anon_sym_R_DQUOTE] = ACTIONS(3074), - [anon_sym_LR_DQUOTE] = ACTIONS(3074), - [anon_sym_uR_DQUOTE] = ACTIONS(3074), - [anon_sym_UR_DQUOTE] = ACTIONS(3074), - [anon_sym_u8R_DQUOTE] = ACTIONS(3074), - [anon_sym_co_await] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_requires] = ACTIONS(3072), - [sym_this] = ACTIONS(3072), - }, - [360] = { - [sym_identifier] = ACTIONS(3076), - [aux_sym_preproc_include_token1] = ACTIONS(3076), - [aux_sym_preproc_def_token1] = ACTIONS(3076), - [aux_sym_preproc_if_token1] = ACTIONS(3076), - [aux_sym_preproc_if_token2] = ACTIONS(3076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3076), - [aux_sym_preproc_else_token1] = ACTIONS(3076), - [aux_sym_preproc_elif_token1] = ACTIONS(3076), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3076), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3076), - [sym_preproc_directive] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3078), - [anon_sym_AMP_AMP] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym___extension__] = ACTIONS(3076), - [anon_sym_typedef] = ACTIONS(3076), - [anon_sym_extern] = ACTIONS(3076), - [anon_sym___attribute__] = ACTIONS(3076), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3078), - [anon_sym___declspec] = ACTIONS(3076), - [anon_sym___based] = ACTIONS(3076), - [anon_sym___cdecl] = ACTIONS(3076), - [anon_sym___clrcall] = ACTIONS(3076), - [anon_sym___stdcall] = ACTIONS(3076), - [anon_sym___fastcall] = ACTIONS(3076), - [anon_sym___thiscall] = ACTIONS(3076), - [anon_sym___vectorcall] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3076), - [anon_sym_unsigned] = ACTIONS(3076), - [anon_sym_long] = ACTIONS(3076), - [anon_sym_short] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_static] = ACTIONS(3076), - [anon_sym_register] = ACTIONS(3076), - [anon_sym_inline] = ACTIONS(3076), - [anon_sym___inline] = ACTIONS(3076), - [anon_sym___inline__] = ACTIONS(3076), - [anon_sym___forceinline] = ACTIONS(3076), - [anon_sym_thread_local] = ACTIONS(3076), - [anon_sym___thread] = ACTIONS(3076), - [anon_sym_const] = ACTIONS(3076), - [anon_sym_constexpr] = ACTIONS(3076), - [anon_sym_volatile] = ACTIONS(3076), - [anon_sym_restrict] = ACTIONS(3076), - [anon_sym___restrict__] = ACTIONS(3076), - [anon_sym__Atomic] = ACTIONS(3076), - [anon_sym__Noreturn] = ACTIONS(3076), - [anon_sym_noreturn] = ACTIONS(3076), - [anon_sym_mutable] = ACTIONS(3076), - [anon_sym_constinit] = ACTIONS(3076), - [anon_sym_consteval] = ACTIONS(3076), - [sym_primitive_type] = ACTIONS(3076), - [anon_sym_enum] = ACTIONS(3076), - [anon_sym_class] = ACTIONS(3076), - [anon_sym_struct] = ACTIONS(3076), - [anon_sym_union] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_switch] = ACTIONS(3076), - [anon_sym_case] = ACTIONS(3076), - [anon_sym_default] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_break] = ACTIONS(3076), - [anon_sym_continue] = ACTIONS(3076), - [anon_sym_goto] = ACTIONS(3076), - [anon_sym___try] = ACTIONS(3076), - [anon_sym___leave] = ACTIONS(3076), - [anon_sym_not] = ACTIONS(3076), - [anon_sym_compl] = ACTIONS(3076), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_sizeof] = ACTIONS(3076), - [anon_sym___alignof__] = ACTIONS(3076), - [anon_sym___alignof] = ACTIONS(3076), - [anon_sym__alignof] = ACTIONS(3076), - [anon_sym_alignof] = ACTIONS(3076), - [anon_sym__Alignof] = ACTIONS(3076), - [anon_sym_offsetof] = ACTIONS(3076), - [anon_sym__Generic] = ACTIONS(3076), - [anon_sym_asm] = ACTIONS(3076), - [anon_sym___asm__] = ACTIONS(3076), - [sym_number_literal] = ACTIONS(3078), - [anon_sym_L_SQUOTE] = ACTIONS(3078), - [anon_sym_u_SQUOTE] = ACTIONS(3078), - [anon_sym_U_SQUOTE] = ACTIONS(3078), - [anon_sym_u8_SQUOTE] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_L_DQUOTE] = ACTIONS(3078), - [anon_sym_u_DQUOTE] = ACTIONS(3078), - [anon_sym_U_DQUOTE] = ACTIONS(3078), - [anon_sym_u8_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE] = ACTIONS(3078), - [sym_true] = ACTIONS(3076), - [sym_false] = ACTIONS(3076), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3076), - [anon_sym_decltype] = ACTIONS(3076), - [anon_sym_virtual] = ACTIONS(3076), - [anon_sym_alignas] = ACTIONS(3076), - [anon_sym_explicit] = ACTIONS(3076), - [anon_sym_typename] = ACTIONS(3076), - [anon_sym_template] = ACTIONS(3076), - [anon_sym_operator] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_delete] = ACTIONS(3076), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_namespace] = ACTIONS(3076), - [anon_sym_using] = ACTIONS(3076), - [anon_sym_static_assert] = ACTIONS(3076), - [anon_sym_concept] = ACTIONS(3076), - [anon_sym_co_return] = ACTIONS(3076), - [anon_sym_co_yield] = ACTIONS(3076), - [anon_sym_R_DQUOTE] = ACTIONS(3078), - [anon_sym_LR_DQUOTE] = ACTIONS(3078), - [anon_sym_uR_DQUOTE] = ACTIONS(3078), - [anon_sym_UR_DQUOTE] = ACTIONS(3078), - [anon_sym_u8R_DQUOTE] = ACTIONS(3078), - [anon_sym_co_await] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_requires] = ACTIONS(3076), - [sym_this] = ACTIONS(3076), - }, - [361] = { - [sym_else_clause] = STATE(461), - [sym_identifier] = ACTIONS(2853), - [aux_sym_preproc_include_token1] = ACTIONS(2853), - [aux_sym_preproc_def_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token2] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), - [aux_sym_preproc_else_token1] = ACTIONS(2853), - [aux_sym_preproc_elif_token1] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2855), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym___based] = ACTIONS(2853), - [anon_sym___cdecl] = ACTIONS(2853), - [anon_sym___clrcall] = ACTIONS(2853), - [anon_sym___stdcall] = ACTIONS(2853), - [anon_sym___fastcall] = ACTIONS(2853), - [anon_sym___thiscall] = ACTIONS(2853), - [anon_sym___vectorcall] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(3080), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym___try] = ACTIONS(2853), - [anon_sym___leave] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(2853), - [anon_sym_compl] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_sizeof] = ACTIONS(2853), - [anon_sym___alignof__] = ACTIONS(2853), - [anon_sym___alignof] = ACTIONS(2853), - [anon_sym__alignof] = ACTIONS(2853), - [anon_sym_alignof] = ACTIONS(2853), - [anon_sym__Alignof] = ACTIONS(2853), - [anon_sym_offsetof] = ACTIONS(2853), - [anon_sym__Generic] = ACTIONS(2853), - [anon_sym_asm] = ACTIONS(2853), - [anon_sym___asm__] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2855), - [anon_sym_L_SQUOTE] = ACTIONS(2855), - [anon_sym_u_SQUOTE] = ACTIONS(2855), - [anon_sym_U_SQUOTE] = ACTIONS(2855), - [anon_sym_u8_SQUOTE] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2853), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_explicit] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2853), - [anon_sym_operator] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_using] = ACTIONS(2853), - [anon_sym_static_assert] = ACTIONS(2853), - [anon_sym_concept] = ACTIONS(2853), - [anon_sym_co_return] = ACTIONS(2853), - [anon_sym_co_yield] = 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(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_requires] = ACTIONS(2853), - [sym_this] = ACTIONS(2853), - }, - [362] = { - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_include_token1] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [aux_sym_preproc_if_token1] = ACTIONS(3082), - [aux_sym_preproc_if_token2] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), - [aux_sym_preproc_else_token1] = ACTIONS(3082), - [aux_sym_preproc_elif_token1] = ACTIONS(3082), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3082), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3082), - [sym_preproc_directive] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym___extension__] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym___attribute__] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), - [anon_sym___declspec] = ACTIONS(3082), - [anon_sym___based] = ACTIONS(3082), - [anon_sym___cdecl] = ACTIONS(3082), - [anon_sym___clrcall] = ACTIONS(3082), - [anon_sym___stdcall] = ACTIONS(3082), - [anon_sym___fastcall] = ACTIONS(3082), - [anon_sym___thiscall] = ACTIONS(3082), - [anon_sym___vectorcall] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym___inline] = ACTIONS(3082), - [anon_sym___inline__] = ACTIONS(3082), - [anon_sym___forceinline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym___thread] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym___restrict__] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym__Noreturn] = ACTIONS(3082), - [anon_sym_noreturn] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constinit] = ACTIONS(3082), - [anon_sym_consteval] = ACTIONS(3082), - [sym_primitive_type] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym___try] = ACTIONS(3082), - [anon_sym___leave] = ACTIONS(3082), - [anon_sym_not] = ACTIONS(3082), - [anon_sym_compl] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_sizeof] = ACTIONS(3082), - [anon_sym___alignof__] = ACTIONS(3082), - [anon_sym___alignof] = ACTIONS(3082), - [anon_sym__alignof] = ACTIONS(3082), - [anon_sym_alignof] = ACTIONS(3082), - [anon_sym__Alignof] = ACTIONS(3082), - [anon_sym_offsetof] = ACTIONS(3082), - [anon_sym__Generic] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym___asm__] = ACTIONS(3082), - [sym_number_literal] = ACTIONS(3084), - [anon_sym_L_SQUOTE] = ACTIONS(3084), - [anon_sym_u_SQUOTE] = ACTIONS(3084), - [anon_sym_U_SQUOTE] = ACTIONS(3084), - [anon_sym_u8_SQUOTE] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_L_DQUOTE] = ACTIONS(3084), - [anon_sym_u_DQUOTE] = ACTIONS(3084), - [anon_sym_U_DQUOTE] = ACTIONS(3084), - [anon_sym_u8_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [anon_sym_NULL] = ACTIONS(3082), - [anon_sym_nullptr] = ACTIONS(3082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3082), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_alignas] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_concept] = ACTIONS(3082), - [anon_sym_co_return] = ACTIONS(3082), - [anon_sym_co_yield] = ACTIONS(3082), - [anon_sym_R_DQUOTE] = ACTIONS(3084), - [anon_sym_LR_DQUOTE] = ACTIONS(3084), - [anon_sym_uR_DQUOTE] = ACTIONS(3084), - [anon_sym_UR_DQUOTE] = ACTIONS(3084), - [anon_sym_u8R_DQUOTE] = ACTIONS(3084), - [anon_sym_co_await] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_requires] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - }, - [363] = { - [sym_identifier] = ACTIONS(3086), - [aux_sym_preproc_include_token1] = ACTIONS(3086), - [aux_sym_preproc_def_token1] = ACTIONS(3086), - [aux_sym_preproc_if_token1] = ACTIONS(3086), - [aux_sym_preproc_if_token2] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3086), - [aux_sym_preproc_else_token1] = ACTIONS(3086), - [aux_sym_preproc_elif_token1] = ACTIONS(3086), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3086), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3086), - [sym_preproc_directive] = ACTIONS(3086), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_SEMI] = ACTIONS(3088), - [anon_sym___extension__] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3086), - [anon_sym_extern] = ACTIONS(3086), - [anon_sym___attribute__] = ACTIONS(3086), - [anon_sym_COLON_COLON] = ACTIONS(3088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3088), - [anon_sym___declspec] = ACTIONS(3086), - [anon_sym___based] = ACTIONS(3086), - [anon_sym___cdecl] = ACTIONS(3086), - [anon_sym___clrcall] = ACTIONS(3086), - [anon_sym___stdcall] = ACTIONS(3086), - [anon_sym___fastcall] = ACTIONS(3086), - [anon_sym___thiscall] = ACTIONS(3086), - [anon_sym___vectorcall] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_signed] = ACTIONS(3086), - [anon_sym_unsigned] = ACTIONS(3086), - [anon_sym_long] = ACTIONS(3086), - [anon_sym_short] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_register] = ACTIONS(3086), - [anon_sym_inline] = ACTIONS(3086), - [anon_sym___inline] = ACTIONS(3086), - [anon_sym___inline__] = ACTIONS(3086), - [anon_sym___forceinline] = ACTIONS(3086), - [anon_sym_thread_local] = ACTIONS(3086), - [anon_sym___thread] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_constexpr] = ACTIONS(3086), - [anon_sym_volatile] = ACTIONS(3086), - [anon_sym_restrict] = ACTIONS(3086), - [anon_sym___restrict__] = ACTIONS(3086), - [anon_sym__Atomic] = ACTIONS(3086), - [anon_sym__Noreturn] = ACTIONS(3086), - [anon_sym_noreturn] = ACTIONS(3086), - [anon_sym_mutable] = ACTIONS(3086), - [anon_sym_constinit] = ACTIONS(3086), - [anon_sym_consteval] = ACTIONS(3086), - [sym_primitive_type] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_struct] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_switch] = ACTIONS(3086), - [anon_sym_case] = ACTIONS(3086), - [anon_sym_default] = ACTIONS(3086), - [anon_sym_while] = ACTIONS(3086), - [anon_sym_do] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_goto] = ACTIONS(3086), - [anon_sym___try] = ACTIONS(3086), - [anon_sym___leave] = ACTIONS(3086), - [anon_sym_not] = ACTIONS(3086), - [anon_sym_compl] = ACTIONS(3086), - [anon_sym_DASH_DASH] = ACTIONS(3088), - [anon_sym_PLUS_PLUS] = ACTIONS(3088), - [anon_sym_sizeof] = ACTIONS(3086), - [anon_sym___alignof__] = ACTIONS(3086), - [anon_sym___alignof] = ACTIONS(3086), - [anon_sym__alignof] = ACTIONS(3086), - [anon_sym_alignof] = ACTIONS(3086), - [anon_sym__Alignof] = ACTIONS(3086), - [anon_sym_offsetof] = ACTIONS(3086), - [anon_sym__Generic] = ACTIONS(3086), - [anon_sym_asm] = ACTIONS(3086), - [anon_sym___asm__] = ACTIONS(3086), - [sym_number_literal] = ACTIONS(3088), - [anon_sym_L_SQUOTE] = ACTIONS(3088), - [anon_sym_u_SQUOTE] = ACTIONS(3088), - [anon_sym_U_SQUOTE] = ACTIONS(3088), - [anon_sym_u8_SQUOTE] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3088), - [anon_sym_L_DQUOTE] = ACTIONS(3088), - [anon_sym_u_DQUOTE] = ACTIONS(3088), - [anon_sym_U_DQUOTE] = ACTIONS(3088), - [anon_sym_u8_DQUOTE] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [anon_sym_NULL] = ACTIONS(3086), - [anon_sym_nullptr] = ACTIONS(3086), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3086), - [anon_sym_decltype] = ACTIONS(3086), - [anon_sym_virtual] = ACTIONS(3086), - [anon_sym_alignas] = ACTIONS(3086), - [anon_sym_explicit] = ACTIONS(3086), - [anon_sym_typename] = ACTIONS(3086), - [anon_sym_template] = ACTIONS(3086), - [anon_sym_operator] = ACTIONS(3086), - [anon_sym_try] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3086), - [anon_sym_throw] = ACTIONS(3086), - [anon_sym_namespace] = ACTIONS(3086), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_static_assert] = ACTIONS(3086), - [anon_sym_concept] = ACTIONS(3086), - [anon_sym_co_return] = ACTIONS(3086), - [anon_sym_co_yield] = ACTIONS(3086), - [anon_sym_R_DQUOTE] = ACTIONS(3088), - [anon_sym_LR_DQUOTE] = ACTIONS(3088), - [anon_sym_uR_DQUOTE] = ACTIONS(3088), - [anon_sym_UR_DQUOTE] = ACTIONS(3088), - [anon_sym_u8R_DQUOTE] = ACTIONS(3088), - [anon_sym_co_await] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3086), - [sym_this] = ACTIONS(3086), - }, - [364] = { - [sym_identifier] = ACTIONS(3090), - [aux_sym_preproc_include_token1] = ACTIONS(3090), - [aux_sym_preproc_def_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token2] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), - [aux_sym_preproc_else_token1] = ACTIONS(3090), - [aux_sym_preproc_elif_token1] = ACTIONS(3090), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3090), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3090), - [sym_preproc_directive] = ACTIONS(3090), - [anon_sym_LPAREN2] = ACTIONS(3092), - [anon_sym_BANG] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_SEMI] = ACTIONS(3092), - [anon_sym___extension__] = ACTIONS(3090), - [anon_sym_typedef] = ACTIONS(3090), - [anon_sym_extern] = ACTIONS(3090), - [anon_sym___attribute__] = ACTIONS(3090), - [anon_sym_COLON_COLON] = ACTIONS(3092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), - [anon_sym___declspec] = ACTIONS(3090), - [anon_sym___based] = ACTIONS(3090), - [anon_sym___cdecl] = ACTIONS(3090), - [anon_sym___clrcall] = ACTIONS(3090), - [anon_sym___stdcall] = ACTIONS(3090), - [anon_sym___fastcall] = ACTIONS(3090), - [anon_sym___thiscall] = ACTIONS(3090), - [anon_sym___vectorcall] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_signed] = ACTIONS(3090), - [anon_sym_unsigned] = ACTIONS(3090), - [anon_sym_long] = ACTIONS(3090), - [anon_sym_short] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3090), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_register] = ACTIONS(3090), - [anon_sym_inline] = ACTIONS(3090), - [anon_sym___inline] = ACTIONS(3090), - [anon_sym___inline__] = ACTIONS(3090), - [anon_sym___forceinline] = ACTIONS(3090), - [anon_sym_thread_local] = ACTIONS(3090), - [anon_sym___thread] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_constexpr] = ACTIONS(3090), - [anon_sym_volatile] = ACTIONS(3090), - [anon_sym_restrict] = ACTIONS(3090), - [anon_sym___restrict__] = ACTIONS(3090), - [anon_sym__Atomic] = ACTIONS(3090), - [anon_sym__Noreturn] = ACTIONS(3090), - [anon_sym_noreturn] = ACTIONS(3090), - [anon_sym_mutable] = ACTIONS(3090), - [anon_sym_constinit] = ACTIONS(3090), - [anon_sym_consteval] = ACTIONS(3090), - [sym_primitive_type] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_class] = ACTIONS(3090), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_switch] = ACTIONS(3090), - [anon_sym_case] = ACTIONS(3090), - [anon_sym_default] = ACTIONS(3090), - [anon_sym_while] = ACTIONS(3090), - [anon_sym_do] = ACTIONS(3090), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_goto] = ACTIONS(3090), - [anon_sym___try] = ACTIONS(3090), - [anon_sym___leave] = ACTIONS(3090), - [anon_sym_not] = ACTIONS(3090), - [anon_sym_compl] = ACTIONS(3090), - [anon_sym_DASH_DASH] = ACTIONS(3092), - [anon_sym_PLUS_PLUS] = ACTIONS(3092), - [anon_sym_sizeof] = ACTIONS(3090), - [anon_sym___alignof__] = ACTIONS(3090), - [anon_sym___alignof] = ACTIONS(3090), - [anon_sym__alignof] = ACTIONS(3090), - [anon_sym_alignof] = ACTIONS(3090), - [anon_sym__Alignof] = ACTIONS(3090), - [anon_sym_offsetof] = ACTIONS(3090), - [anon_sym__Generic] = ACTIONS(3090), - [anon_sym_asm] = ACTIONS(3090), - [anon_sym___asm__] = ACTIONS(3090), - [sym_number_literal] = ACTIONS(3092), - [anon_sym_L_SQUOTE] = ACTIONS(3092), - [anon_sym_u_SQUOTE] = ACTIONS(3092), - [anon_sym_U_SQUOTE] = ACTIONS(3092), - [anon_sym_u8_SQUOTE] = ACTIONS(3092), - [anon_sym_SQUOTE] = ACTIONS(3092), - [anon_sym_L_DQUOTE] = ACTIONS(3092), - [anon_sym_u_DQUOTE] = ACTIONS(3092), - [anon_sym_U_DQUOTE] = ACTIONS(3092), - [anon_sym_u8_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [anon_sym_NULL] = ACTIONS(3090), - [anon_sym_nullptr] = ACTIONS(3090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3090), - [anon_sym_decltype] = ACTIONS(3090), - [anon_sym_virtual] = ACTIONS(3090), - [anon_sym_alignas] = ACTIONS(3090), - [anon_sym_explicit] = ACTIONS(3090), - [anon_sym_typename] = ACTIONS(3090), - [anon_sym_template] = ACTIONS(3090), - [anon_sym_operator] = ACTIONS(3090), - [anon_sym_try] = ACTIONS(3090), - [anon_sym_delete] = ACTIONS(3090), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_namespace] = ACTIONS(3090), - [anon_sym_using] = ACTIONS(3090), - [anon_sym_static_assert] = ACTIONS(3090), - [anon_sym_concept] = ACTIONS(3090), - [anon_sym_co_return] = ACTIONS(3090), - [anon_sym_co_yield] = ACTIONS(3090), - [anon_sym_R_DQUOTE] = ACTIONS(3092), - [anon_sym_LR_DQUOTE] = ACTIONS(3092), - [anon_sym_uR_DQUOTE] = ACTIONS(3092), - [anon_sym_UR_DQUOTE] = ACTIONS(3092), - [anon_sym_u8R_DQUOTE] = ACTIONS(3092), - [anon_sym_co_await] = ACTIONS(3090), - [anon_sym_new] = ACTIONS(3090), - [anon_sym_requires] = ACTIONS(3090), - [sym_this] = ACTIONS(3090), - }, - [365] = { - [sym_identifier] = ACTIONS(3094), - [aux_sym_preproc_include_token1] = ACTIONS(3094), - [aux_sym_preproc_def_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token2] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3094), - [aux_sym_preproc_else_token1] = ACTIONS(3094), - [aux_sym_preproc_elif_token1] = ACTIONS(3094), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3094), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3094), - [sym_preproc_directive] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym___extension__] = ACTIONS(3094), - [anon_sym_typedef] = ACTIONS(3094), - [anon_sym_extern] = ACTIONS(3094), - [anon_sym___attribute__] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3096), - [anon_sym___declspec] = ACTIONS(3094), - [anon_sym___based] = ACTIONS(3094), - [anon_sym___cdecl] = ACTIONS(3094), - [anon_sym___clrcall] = ACTIONS(3094), - [anon_sym___stdcall] = ACTIONS(3094), - [anon_sym___fastcall] = ACTIONS(3094), - [anon_sym___thiscall] = ACTIONS(3094), - [anon_sym___vectorcall] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_signed] = ACTIONS(3094), - [anon_sym_unsigned] = ACTIONS(3094), - [anon_sym_long] = ACTIONS(3094), - [anon_sym_short] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_register] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym___inline] = ACTIONS(3094), - [anon_sym___inline__] = ACTIONS(3094), - [anon_sym___forceinline] = ACTIONS(3094), - [anon_sym_thread_local] = ACTIONS(3094), - [anon_sym___thread] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_constexpr] = ACTIONS(3094), - [anon_sym_volatile] = ACTIONS(3094), - [anon_sym_restrict] = ACTIONS(3094), - [anon_sym___restrict__] = ACTIONS(3094), - [anon_sym__Atomic] = ACTIONS(3094), - [anon_sym__Noreturn] = ACTIONS(3094), - [anon_sym_noreturn] = ACTIONS(3094), - [anon_sym_mutable] = ACTIONS(3094), - [anon_sym_constinit] = ACTIONS(3094), - [anon_sym_consteval] = ACTIONS(3094), - [sym_primitive_type] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_union] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_switch] = ACTIONS(3094), - [anon_sym_case] = ACTIONS(3094), - [anon_sym_default] = ACTIONS(3094), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_do] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_goto] = ACTIONS(3094), - [anon_sym___try] = ACTIONS(3094), - [anon_sym___leave] = ACTIONS(3094), - [anon_sym_not] = ACTIONS(3094), - [anon_sym_compl] = ACTIONS(3094), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_sizeof] = ACTIONS(3094), - [anon_sym___alignof__] = ACTIONS(3094), - [anon_sym___alignof] = ACTIONS(3094), - [anon_sym__alignof] = ACTIONS(3094), - [anon_sym_alignof] = ACTIONS(3094), - [anon_sym__Alignof] = ACTIONS(3094), - [anon_sym_offsetof] = ACTIONS(3094), - [anon_sym__Generic] = ACTIONS(3094), - [anon_sym_asm] = ACTIONS(3094), - [anon_sym___asm__] = ACTIONS(3094), - [sym_number_literal] = ACTIONS(3096), - [anon_sym_L_SQUOTE] = ACTIONS(3096), - [anon_sym_u_SQUOTE] = ACTIONS(3096), - [anon_sym_U_SQUOTE] = ACTIONS(3096), - [anon_sym_u8_SQUOTE] = ACTIONS(3096), - [anon_sym_SQUOTE] = ACTIONS(3096), - [anon_sym_L_DQUOTE] = ACTIONS(3096), - [anon_sym_u_DQUOTE] = ACTIONS(3096), - [anon_sym_U_DQUOTE] = ACTIONS(3096), - [anon_sym_u8_DQUOTE] = ACTIONS(3096), - [anon_sym_DQUOTE] = ACTIONS(3096), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [anon_sym_NULL] = ACTIONS(3094), - [anon_sym_nullptr] = ACTIONS(3094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3094), - [anon_sym_decltype] = ACTIONS(3094), - [anon_sym_virtual] = ACTIONS(3094), - [anon_sym_alignas] = ACTIONS(3094), - [anon_sym_explicit] = ACTIONS(3094), - [anon_sym_typename] = ACTIONS(3094), - [anon_sym_template] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_delete] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_namespace] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_static_assert] = ACTIONS(3094), - [anon_sym_concept] = ACTIONS(3094), - [anon_sym_co_return] = ACTIONS(3094), - [anon_sym_co_yield] = ACTIONS(3094), - [anon_sym_R_DQUOTE] = ACTIONS(3096), - [anon_sym_LR_DQUOTE] = ACTIONS(3096), - [anon_sym_uR_DQUOTE] = ACTIONS(3096), - [anon_sym_UR_DQUOTE] = ACTIONS(3096), - [anon_sym_u8R_DQUOTE] = ACTIONS(3096), - [anon_sym_co_await] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3094), - [anon_sym_requires] = ACTIONS(3094), - [sym_this] = ACTIONS(3094), - }, - [366] = { - [sym_identifier] = ACTIONS(3098), - [aux_sym_preproc_include_token1] = ACTIONS(3098), - [aux_sym_preproc_def_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token2] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), - [aux_sym_preproc_else_token1] = ACTIONS(3098), - [aux_sym_preproc_elif_token1] = ACTIONS(3098), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3098), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_LPAREN2] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3100), - [anon_sym___extension__] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym___attribute__] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), - [anon_sym___declspec] = ACTIONS(3098), - [anon_sym___based] = ACTIONS(3098), - [anon_sym___cdecl] = ACTIONS(3098), - [anon_sym___clrcall] = ACTIONS(3098), - [anon_sym___stdcall] = ACTIONS(3098), - [anon_sym___fastcall] = ACTIONS(3098), - [anon_sym___thiscall] = ACTIONS(3098), - [anon_sym___vectorcall] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_signed] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym___inline] = ACTIONS(3098), - [anon_sym___inline__] = ACTIONS(3098), - [anon_sym___forceinline] = ACTIONS(3098), - [anon_sym_thread_local] = ACTIONS(3098), - [anon_sym___thread] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym___restrict__] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym__Noreturn] = ACTIONS(3098), - [anon_sym_noreturn] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_constinit] = ACTIONS(3098), - [anon_sym_consteval] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym___try] = ACTIONS(3098), - [anon_sym___leave] = ACTIONS(3098), - [anon_sym_not] = ACTIONS(3098), - [anon_sym_compl] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_sizeof] = ACTIONS(3098), - [anon_sym___alignof__] = ACTIONS(3098), - [anon_sym___alignof] = ACTIONS(3098), - [anon_sym__alignof] = ACTIONS(3098), - [anon_sym_alignof] = ACTIONS(3098), - [anon_sym__Alignof] = ACTIONS(3098), - [anon_sym_offsetof] = ACTIONS(3098), - [anon_sym__Generic] = ACTIONS(3098), - [anon_sym_asm] = ACTIONS(3098), - [anon_sym___asm__] = ACTIONS(3098), - [sym_number_literal] = ACTIONS(3100), - [anon_sym_L_SQUOTE] = ACTIONS(3100), - [anon_sym_u_SQUOTE] = ACTIONS(3100), - [anon_sym_U_SQUOTE] = ACTIONS(3100), - [anon_sym_u8_SQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [anon_sym_L_DQUOTE] = ACTIONS(3100), - [anon_sym_u_DQUOTE] = ACTIONS(3100), - [anon_sym_U_DQUOTE] = ACTIONS(3100), - [anon_sym_u8_DQUOTE] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [anon_sym_NULL] = ACTIONS(3098), - [anon_sym_nullptr] = ACTIONS(3098), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3098), - [anon_sym_decltype] = ACTIONS(3098), - [anon_sym_virtual] = ACTIONS(3098), - [anon_sym_alignas] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_template] = ACTIONS(3098), - [anon_sym_operator] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(3098), - [anon_sym_delete] = ACTIONS(3098), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_namespace] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_static_assert] = ACTIONS(3098), - [anon_sym_concept] = ACTIONS(3098), - [anon_sym_co_return] = ACTIONS(3098), - [anon_sym_co_yield] = ACTIONS(3098), - [anon_sym_R_DQUOTE] = ACTIONS(3100), - [anon_sym_LR_DQUOTE] = ACTIONS(3100), - [anon_sym_uR_DQUOTE] = ACTIONS(3100), - [anon_sym_UR_DQUOTE] = ACTIONS(3100), - [anon_sym_u8R_DQUOTE] = ACTIONS(3100), - [anon_sym_co_await] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_requires] = ACTIONS(3098), - [sym_this] = ACTIONS(3098), - }, - [367] = { - [sym_identifier] = ACTIONS(3102), - [aux_sym_preproc_include_token1] = ACTIONS(3102), - [aux_sym_preproc_def_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token2] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3102), - [aux_sym_preproc_else_token1] = ACTIONS(3102), - [aux_sym_preproc_elif_token1] = ACTIONS(3102), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3102), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3102), - [sym_preproc_directive] = ACTIONS(3102), - [anon_sym_LPAREN2] = ACTIONS(3104), - [anon_sym_BANG] = ACTIONS(3104), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3104), - [anon_sym___extension__] = ACTIONS(3102), - [anon_sym_typedef] = ACTIONS(3102), - [anon_sym_extern] = ACTIONS(3102), - [anon_sym___attribute__] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3104), - [anon_sym___declspec] = ACTIONS(3102), - [anon_sym___based] = ACTIONS(3102), - [anon_sym___cdecl] = ACTIONS(3102), - [anon_sym___clrcall] = ACTIONS(3102), - [anon_sym___stdcall] = ACTIONS(3102), - [anon_sym___fastcall] = ACTIONS(3102), - [anon_sym___thiscall] = ACTIONS(3102), - [anon_sym___vectorcall] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_signed] = ACTIONS(3102), - [anon_sym_unsigned] = ACTIONS(3102), - [anon_sym_long] = ACTIONS(3102), - [anon_sym_short] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_register] = ACTIONS(3102), - [anon_sym_inline] = ACTIONS(3102), - [anon_sym___inline] = ACTIONS(3102), - [anon_sym___inline__] = ACTIONS(3102), - [anon_sym___forceinline] = ACTIONS(3102), - [anon_sym_thread_local] = ACTIONS(3102), - [anon_sym___thread] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_constexpr] = ACTIONS(3102), - [anon_sym_volatile] = ACTIONS(3102), - [anon_sym_restrict] = ACTIONS(3102), - [anon_sym___restrict__] = ACTIONS(3102), - [anon_sym__Atomic] = ACTIONS(3102), - [anon_sym__Noreturn] = ACTIONS(3102), - [anon_sym_noreturn] = ACTIONS(3102), - [anon_sym_mutable] = ACTIONS(3102), - [anon_sym_constinit] = ACTIONS(3102), - [anon_sym_consteval] = ACTIONS(3102), - [sym_primitive_type] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_case] = ACTIONS(3102), - [anon_sym_default] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_goto] = ACTIONS(3102), - [anon_sym___try] = ACTIONS(3102), - [anon_sym___leave] = ACTIONS(3102), - [anon_sym_not] = ACTIONS(3102), - [anon_sym_compl] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3104), - [anon_sym_PLUS_PLUS] = ACTIONS(3104), - [anon_sym_sizeof] = ACTIONS(3102), - [anon_sym___alignof__] = ACTIONS(3102), - [anon_sym___alignof] = ACTIONS(3102), - [anon_sym__alignof] = ACTIONS(3102), - [anon_sym_alignof] = ACTIONS(3102), - [anon_sym__Alignof] = ACTIONS(3102), - [anon_sym_offsetof] = ACTIONS(3102), - [anon_sym__Generic] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(3102), - [anon_sym___asm__] = ACTIONS(3102), - [sym_number_literal] = ACTIONS(3104), - [anon_sym_L_SQUOTE] = ACTIONS(3104), - [anon_sym_u_SQUOTE] = ACTIONS(3104), - [anon_sym_U_SQUOTE] = ACTIONS(3104), - [anon_sym_u8_SQUOTE] = ACTIONS(3104), - [anon_sym_SQUOTE] = ACTIONS(3104), - [anon_sym_L_DQUOTE] = ACTIONS(3104), - [anon_sym_u_DQUOTE] = ACTIONS(3104), - [anon_sym_U_DQUOTE] = ACTIONS(3104), - [anon_sym_u8_DQUOTE] = ACTIONS(3104), - [anon_sym_DQUOTE] = ACTIONS(3104), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [anon_sym_NULL] = ACTIONS(3102), - [anon_sym_nullptr] = ACTIONS(3102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3102), - [anon_sym_decltype] = ACTIONS(3102), - [anon_sym_virtual] = ACTIONS(3102), - [anon_sym_alignas] = ACTIONS(3102), - [anon_sym_explicit] = ACTIONS(3102), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_template] = ACTIONS(3102), - [anon_sym_operator] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_static_assert] = ACTIONS(3102), - [anon_sym_concept] = ACTIONS(3102), - [anon_sym_co_return] = ACTIONS(3102), - [anon_sym_co_yield] = ACTIONS(3102), - [anon_sym_R_DQUOTE] = ACTIONS(3104), - [anon_sym_LR_DQUOTE] = ACTIONS(3104), - [anon_sym_uR_DQUOTE] = ACTIONS(3104), - [anon_sym_UR_DQUOTE] = ACTIONS(3104), - [anon_sym_u8R_DQUOTE] = ACTIONS(3104), - [anon_sym_co_await] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_requires] = ACTIONS(3102), - [sym_this] = ACTIONS(3102), - }, - [368] = { - [sym_preproc_def] = STATE(816), - [sym_preproc_function_def] = STATE(816), - [sym_preproc_call] = STATE(816), - [sym_preproc_elifdef] = STATE(8556), - [sym_preproc_if_in_field_declaration_list] = STATE(816), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(816), - [sym_preproc_else_in_field_declaration_list] = STATE(8556), - [sym_preproc_elif_in_field_declaration_list] = STATE(8556), - [sym_type_definition] = STATE(816), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6173), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6781), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(816), - [sym_field_declaration] = STATE(816), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2007), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(816), - [sym_operator_cast] = STATE(7163), - [sym_inline_method_definition] = STATE(816), - [sym__constructor_specifiers] = STATE(2007), - [sym_operator_cast_definition] = STATE(816), - [sym_operator_cast_declaration] = STATE(816), - [sym_constructor_or_destructor_definition] = STATE(816), - [sym_constructor_or_destructor_declaration] = STATE(816), - [sym_friend_declaration] = STATE(816), - [sym_access_specifier] = STATE(8986), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(816), - [sym_alias_declaration] = STATE(816), - [sym_static_assert_declaration] = STATE(816), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7163), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(816), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2007), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3002), - [aux_sym_preproc_if_token1] = ACTIONS(3004), - [aux_sym_preproc_if_token2] = ACTIONS(3106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(279), - [aux_sym_preproc_elifdef_token2] = ACTIONS(279), - [sym_preproc_directive] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3024), - [anon_sym_typedef] = ACTIONS(3026), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3050), - [anon_sym_static_assert] = ACTIONS(3052), - }, - [369] = { - [sym_identifier] = ACTIONS(3108), - [aux_sym_preproc_include_token1] = ACTIONS(3108), - [aux_sym_preproc_def_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token2] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3108), - [aux_sym_preproc_else_token1] = ACTIONS(3108), - [aux_sym_preproc_elif_token1] = ACTIONS(3108), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3108), - [sym_preproc_directive] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym___extension__] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(3108), - [anon_sym_extern] = ACTIONS(3108), - [anon_sym___attribute__] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), - [anon_sym___declspec] = ACTIONS(3108), - [anon_sym___based] = ACTIONS(3108), - [anon_sym___cdecl] = ACTIONS(3108), - [anon_sym___clrcall] = ACTIONS(3108), - [anon_sym___stdcall] = ACTIONS(3108), - [anon_sym___fastcall] = ACTIONS(3108), - [anon_sym___thiscall] = ACTIONS(3108), - [anon_sym___vectorcall] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_signed] = ACTIONS(3108), - [anon_sym_unsigned] = ACTIONS(3108), - [anon_sym_long] = ACTIONS(3108), - [anon_sym_short] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3108), - [anon_sym_register] = ACTIONS(3108), - [anon_sym_inline] = ACTIONS(3108), - [anon_sym___inline] = ACTIONS(3108), - [anon_sym___inline__] = ACTIONS(3108), - [anon_sym___forceinline] = ACTIONS(3108), - [anon_sym_thread_local] = ACTIONS(3108), - [anon_sym___thread] = ACTIONS(3108), - [anon_sym_const] = ACTIONS(3108), - [anon_sym_constexpr] = ACTIONS(3108), - [anon_sym_volatile] = ACTIONS(3108), - [anon_sym_restrict] = ACTIONS(3108), - [anon_sym___restrict__] = ACTIONS(3108), - [anon_sym__Atomic] = ACTIONS(3108), - [anon_sym__Noreturn] = ACTIONS(3108), - [anon_sym_noreturn] = ACTIONS(3108), - [anon_sym_mutable] = ACTIONS(3108), - [anon_sym_constinit] = ACTIONS(3108), - [anon_sym_consteval] = ACTIONS(3108), - [sym_primitive_type] = ACTIONS(3108), - [anon_sym_enum] = ACTIONS(3108), - [anon_sym_class] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3108), - [anon_sym_union] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_switch] = ACTIONS(3108), - [anon_sym_case] = ACTIONS(3108), - [anon_sym_default] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_break] = ACTIONS(3108), - [anon_sym_continue] = ACTIONS(3108), - [anon_sym_goto] = ACTIONS(3108), - [anon_sym___try] = ACTIONS(3108), - [anon_sym___leave] = ACTIONS(3108), - [anon_sym_not] = ACTIONS(3108), - [anon_sym_compl] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_sizeof] = ACTIONS(3108), - [anon_sym___alignof__] = ACTIONS(3108), - [anon_sym___alignof] = ACTIONS(3108), - [anon_sym__alignof] = ACTIONS(3108), - [anon_sym_alignof] = ACTIONS(3108), - [anon_sym__Alignof] = ACTIONS(3108), - [anon_sym_offsetof] = ACTIONS(3108), - [anon_sym__Generic] = ACTIONS(3108), - [anon_sym_asm] = ACTIONS(3108), - [anon_sym___asm__] = ACTIONS(3108), - [sym_number_literal] = ACTIONS(3110), - [anon_sym_L_SQUOTE] = ACTIONS(3110), - [anon_sym_u_SQUOTE] = ACTIONS(3110), - [anon_sym_U_SQUOTE] = ACTIONS(3110), - [anon_sym_u8_SQUOTE] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3110), - [anon_sym_L_DQUOTE] = ACTIONS(3110), - [anon_sym_u_DQUOTE] = ACTIONS(3110), - [anon_sym_U_DQUOTE] = ACTIONS(3110), - [anon_sym_u8_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE] = ACTIONS(3110), - [sym_true] = ACTIONS(3108), - [sym_false] = ACTIONS(3108), - [anon_sym_NULL] = ACTIONS(3108), - [anon_sym_nullptr] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3108), - [anon_sym_decltype] = ACTIONS(3108), - [anon_sym_virtual] = ACTIONS(3108), - [anon_sym_alignas] = ACTIONS(3108), - [anon_sym_explicit] = ACTIONS(3108), - [anon_sym_typename] = ACTIONS(3108), - [anon_sym_template] = ACTIONS(3108), - [anon_sym_operator] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_delete] = ACTIONS(3108), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_namespace] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3108), - [anon_sym_static_assert] = ACTIONS(3108), - [anon_sym_concept] = ACTIONS(3108), - [anon_sym_co_return] = ACTIONS(3108), - [anon_sym_co_yield] = ACTIONS(3108), - [anon_sym_R_DQUOTE] = ACTIONS(3110), - [anon_sym_LR_DQUOTE] = ACTIONS(3110), - [anon_sym_uR_DQUOTE] = ACTIONS(3110), - [anon_sym_UR_DQUOTE] = ACTIONS(3110), - [anon_sym_u8R_DQUOTE] = ACTIONS(3110), - [anon_sym_co_await] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_requires] = ACTIONS(3108), - [sym_this] = ACTIONS(3108), - }, - [370] = { - [sym_identifier] = ACTIONS(3112), - [aux_sym_preproc_include_token1] = ACTIONS(3112), - [aux_sym_preproc_def_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token2] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), - [aux_sym_preproc_else_token1] = ACTIONS(3112), - [aux_sym_preproc_elif_token1] = ACTIONS(3112), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3112), - [sym_preproc_directive] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym___extension__] = ACTIONS(3112), - [anon_sym_typedef] = ACTIONS(3112), - [anon_sym_extern] = ACTIONS(3112), - [anon_sym___attribute__] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), - [anon_sym___declspec] = ACTIONS(3112), - [anon_sym___based] = ACTIONS(3112), - [anon_sym___cdecl] = ACTIONS(3112), - [anon_sym___clrcall] = ACTIONS(3112), - [anon_sym___stdcall] = ACTIONS(3112), - [anon_sym___fastcall] = ACTIONS(3112), - [anon_sym___thiscall] = ACTIONS(3112), - [anon_sym___vectorcall] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3114), - [anon_sym_signed] = ACTIONS(3112), - [anon_sym_unsigned] = ACTIONS(3112), - [anon_sym_long] = ACTIONS(3112), - [anon_sym_short] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_register] = ACTIONS(3112), - [anon_sym_inline] = ACTIONS(3112), - [anon_sym___inline] = ACTIONS(3112), - [anon_sym___inline__] = ACTIONS(3112), - [anon_sym___forceinline] = ACTIONS(3112), - [anon_sym_thread_local] = ACTIONS(3112), - [anon_sym___thread] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_constexpr] = ACTIONS(3112), - [anon_sym_volatile] = ACTIONS(3112), - [anon_sym_restrict] = ACTIONS(3112), - [anon_sym___restrict__] = ACTIONS(3112), - [anon_sym__Atomic] = ACTIONS(3112), - [anon_sym__Noreturn] = ACTIONS(3112), - [anon_sym_noreturn] = ACTIONS(3112), - [anon_sym_mutable] = ACTIONS(3112), - [anon_sym_constinit] = ACTIONS(3112), - [anon_sym_consteval] = ACTIONS(3112), - [sym_primitive_type] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3112), - [anon_sym_union] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3112), - [anon_sym_default] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_goto] = ACTIONS(3112), - [anon_sym___try] = ACTIONS(3112), - [anon_sym___leave] = ACTIONS(3112), - [anon_sym_not] = ACTIONS(3112), - [anon_sym_compl] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3114), - [anon_sym_sizeof] = ACTIONS(3112), - [anon_sym___alignof__] = ACTIONS(3112), - [anon_sym___alignof] = ACTIONS(3112), - [anon_sym__alignof] = ACTIONS(3112), - [anon_sym_alignof] = ACTIONS(3112), - [anon_sym__Alignof] = ACTIONS(3112), - [anon_sym_offsetof] = ACTIONS(3112), - [anon_sym__Generic] = ACTIONS(3112), - [anon_sym_asm] = ACTIONS(3112), - [anon_sym___asm__] = ACTIONS(3112), - [sym_number_literal] = ACTIONS(3114), - [anon_sym_L_SQUOTE] = ACTIONS(3114), - [anon_sym_u_SQUOTE] = ACTIONS(3114), - [anon_sym_U_SQUOTE] = ACTIONS(3114), - [anon_sym_u8_SQUOTE] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3114), - [anon_sym_L_DQUOTE] = ACTIONS(3114), - [anon_sym_u_DQUOTE] = ACTIONS(3114), - [anon_sym_U_DQUOTE] = ACTIONS(3114), - [anon_sym_u8_DQUOTE] = ACTIONS(3114), - [anon_sym_DQUOTE] = ACTIONS(3114), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [anon_sym_NULL] = ACTIONS(3112), - [anon_sym_nullptr] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3112), - [anon_sym_decltype] = ACTIONS(3112), - [anon_sym_virtual] = ACTIONS(3112), - [anon_sym_alignas] = ACTIONS(3112), - [anon_sym_explicit] = ACTIONS(3112), - [anon_sym_typename] = ACTIONS(3112), - [anon_sym_template] = ACTIONS(3112), - [anon_sym_operator] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_static_assert] = ACTIONS(3112), - [anon_sym_concept] = ACTIONS(3112), - [anon_sym_co_return] = ACTIONS(3112), - [anon_sym_co_yield] = ACTIONS(3112), - [anon_sym_R_DQUOTE] = ACTIONS(3114), - [anon_sym_LR_DQUOTE] = ACTIONS(3114), - [anon_sym_uR_DQUOTE] = ACTIONS(3114), - [anon_sym_UR_DQUOTE] = ACTIONS(3114), - [anon_sym_u8R_DQUOTE] = ACTIONS(3114), - [anon_sym_co_await] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_requires] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), - }, - [371] = { - [sym_identifier] = ACTIONS(3116), - [aux_sym_preproc_include_token1] = ACTIONS(3116), - [aux_sym_preproc_def_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token2] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), - [aux_sym_preproc_else_token1] = ACTIONS(3116), - [aux_sym_preproc_elif_token1] = ACTIONS(3116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3116), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3116), - [sym_preproc_directive] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3116), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym___extension__] = ACTIONS(3116), - [anon_sym_typedef] = ACTIONS(3116), - [anon_sym_extern] = ACTIONS(3116), - [anon_sym___attribute__] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = ACTIONS(3116), - [anon_sym___based] = ACTIONS(3116), - [anon_sym___cdecl] = ACTIONS(3116), - [anon_sym___clrcall] = ACTIONS(3116), - [anon_sym___stdcall] = ACTIONS(3116), - [anon_sym___fastcall] = ACTIONS(3116), - [anon_sym___thiscall] = ACTIONS(3116), - [anon_sym___vectorcall] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_signed] = ACTIONS(3116), - [anon_sym_unsigned] = ACTIONS(3116), - [anon_sym_long] = ACTIONS(3116), - [anon_sym_short] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_register] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym___inline] = ACTIONS(3116), - [anon_sym___inline__] = ACTIONS(3116), - [anon_sym___forceinline] = ACTIONS(3116), - [anon_sym_thread_local] = ACTIONS(3116), - [anon_sym___thread] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_constexpr] = ACTIONS(3116), - [anon_sym_volatile] = ACTIONS(3116), - [anon_sym_restrict] = ACTIONS(3116), - [anon_sym___restrict__] = ACTIONS(3116), - [anon_sym__Atomic] = ACTIONS(3116), - [anon_sym__Noreturn] = ACTIONS(3116), - [anon_sym_noreturn] = ACTIONS(3116), - [anon_sym_mutable] = ACTIONS(3116), - [anon_sym_constinit] = ACTIONS(3116), - [anon_sym_consteval] = ACTIONS(3116), - [sym_primitive_type] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3116), - [anon_sym_union] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_switch] = ACTIONS(3116), - [anon_sym_case] = ACTIONS(3116), - [anon_sym_default] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_do] = ACTIONS(3116), - [anon_sym_for] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_goto] = ACTIONS(3116), - [anon_sym___try] = ACTIONS(3116), - [anon_sym___leave] = ACTIONS(3116), - [anon_sym_not] = ACTIONS(3116), - [anon_sym_compl] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_sizeof] = ACTIONS(3116), - [anon_sym___alignof__] = ACTIONS(3116), - [anon_sym___alignof] = ACTIONS(3116), - [anon_sym__alignof] = ACTIONS(3116), - [anon_sym_alignof] = ACTIONS(3116), - [anon_sym__Alignof] = ACTIONS(3116), - [anon_sym_offsetof] = ACTIONS(3116), - [anon_sym__Generic] = ACTIONS(3116), - [anon_sym_asm] = ACTIONS(3116), - [anon_sym___asm__] = ACTIONS(3116), - [sym_number_literal] = ACTIONS(3118), - [anon_sym_L_SQUOTE] = ACTIONS(3118), - [anon_sym_u_SQUOTE] = ACTIONS(3118), - [anon_sym_U_SQUOTE] = ACTIONS(3118), - [anon_sym_u8_SQUOTE] = ACTIONS(3118), - [anon_sym_SQUOTE] = ACTIONS(3118), - [anon_sym_L_DQUOTE] = ACTIONS(3118), - [anon_sym_u_DQUOTE] = ACTIONS(3118), - [anon_sym_U_DQUOTE] = ACTIONS(3118), - [anon_sym_u8_DQUOTE] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym_true] = ACTIONS(3116), - [sym_false] = ACTIONS(3116), - [anon_sym_NULL] = ACTIONS(3116), - [anon_sym_nullptr] = ACTIONS(3116), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3116), - [anon_sym_decltype] = ACTIONS(3116), - [anon_sym_virtual] = ACTIONS(3116), - [anon_sym_alignas] = ACTIONS(3116), - [anon_sym_explicit] = ACTIONS(3116), - [anon_sym_typename] = ACTIONS(3116), - [anon_sym_template] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_delete] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_namespace] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3116), - [anon_sym_static_assert] = ACTIONS(3116), - [anon_sym_concept] = ACTIONS(3116), - [anon_sym_co_return] = ACTIONS(3116), - [anon_sym_co_yield] = ACTIONS(3116), - [anon_sym_R_DQUOTE] = ACTIONS(3118), - [anon_sym_LR_DQUOTE] = ACTIONS(3118), - [anon_sym_uR_DQUOTE] = ACTIONS(3118), - [anon_sym_UR_DQUOTE] = ACTIONS(3118), - [anon_sym_u8R_DQUOTE] = ACTIONS(3118), - [anon_sym_co_await] = ACTIONS(3116), - [anon_sym_new] = ACTIONS(3116), - [anon_sym_requires] = ACTIONS(3116), - [sym_this] = ACTIONS(3116), - }, - [372] = { - [sym_identifier] = ACTIONS(3120), - [aux_sym_preproc_include_token1] = ACTIONS(3120), - [aux_sym_preproc_def_token1] = ACTIONS(3120), - [aux_sym_preproc_if_token1] = ACTIONS(3120), - [aux_sym_preproc_if_token2] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), - [aux_sym_preproc_else_token1] = ACTIONS(3120), - [aux_sym_preproc_elif_token1] = ACTIONS(3120), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3120), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3120), - [sym_preproc_directive] = ACTIONS(3120), - [anon_sym_LPAREN2] = ACTIONS(3122), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_AMP_AMP] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym___extension__] = ACTIONS(3120), - [anon_sym_typedef] = ACTIONS(3120), - [anon_sym_extern] = ACTIONS(3120), - [anon_sym___attribute__] = ACTIONS(3120), - [anon_sym_COLON_COLON] = ACTIONS(3122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), - [anon_sym___declspec] = ACTIONS(3120), - [anon_sym___based] = ACTIONS(3120), - [anon_sym___cdecl] = ACTIONS(3120), - [anon_sym___clrcall] = ACTIONS(3120), - [anon_sym___stdcall] = ACTIONS(3120), - [anon_sym___fastcall] = ACTIONS(3120), - [anon_sym___thiscall] = ACTIONS(3120), - [anon_sym___vectorcall] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_signed] = ACTIONS(3120), - [anon_sym_unsigned] = ACTIONS(3120), - [anon_sym_long] = ACTIONS(3120), - [anon_sym_short] = ACTIONS(3120), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_static] = ACTIONS(3120), - [anon_sym_register] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym___inline] = ACTIONS(3120), - [anon_sym___inline__] = ACTIONS(3120), - [anon_sym___forceinline] = ACTIONS(3120), - [anon_sym_thread_local] = ACTIONS(3120), - [anon_sym___thread] = ACTIONS(3120), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_constexpr] = ACTIONS(3120), - [anon_sym_volatile] = ACTIONS(3120), - [anon_sym_restrict] = ACTIONS(3120), - [anon_sym___restrict__] = ACTIONS(3120), - [anon_sym__Atomic] = ACTIONS(3120), - [anon_sym__Noreturn] = ACTIONS(3120), - [anon_sym_noreturn] = ACTIONS(3120), - [anon_sym_mutable] = ACTIONS(3120), - [anon_sym_constinit] = ACTIONS(3120), - [anon_sym_consteval] = ACTIONS(3120), - [sym_primitive_type] = ACTIONS(3120), - [anon_sym_enum] = ACTIONS(3120), - [anon_sym_class] = ACTIONS(3120), - [anon_sym_struct] = ACTIONS(3120), - [anon_sym_union] = ACTIONS(3120), - [anon_sym_if] = ACTIONS(3120), - [anon_sym_switch] = ACTIONS(3120), - [anon_sym_case] = ACTIONS(3120), - [anon_sym_default] = ACTIONS(3120), - [anon_sym_while] = ACTIONS(3120), - [anon_sym_do] = ACTIONS(3120), - [anon_sym_for] = ACTIONS(3120), - [anon_sym_return] = ACTIONS(3120), - [anon_sym_break] = ACTIONS(3120), - [anon_sym_continue] = ACTIONS(3120), - [anon_sym_goto] = ACTIONS(3120), - [anon_sym___try] = ACTIONS(3120), - [anon_sym___leave] = ACTIONS(3120), - [anon_sym_not] = ACTIONS(3120), - [anon_sym_compl] = ACTIONS(3120), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_sizeof] = ACTIONS(3120), - [anon_sym___alignof__] = ACTIONS(3120), - [anon_sym___alignof] = ACTIONS(3120), - [anon_sym__alignof] = ACTIONS(3120), - [anon_sym_alignof] = ACTIONS(3120), - [anon_sym__Alignof] = ACTIONS(3120), - [anon_sym_offsetof] = ACTIONS(3120), - [anon_sym__Generic] = ACTIONS(3120), - [anon_sym_asm] = ACTIONS(3120), - [anon_sym___asm__] = ACTIONS(3120), - [sym_number_literal] = ACTIONS(3122), - [anon_sym_L_SQUOTE] = ACTIONS(3122), - [anon_sym_u_SQUOTE] = ACTIONS(3122), - [anon_sym_U_SQUOTE] = ACTIONS(3122), - [anon_sym_u8_SQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [anon_sym_L_DQUOTE] = ACTIONS(3122), - [anon_sym_u_DQUOTE] = ACTIONS(3122), - [anon_sym_U_DQUOTE] = ACTIONS(3122), - [anon_sym_u8_DQUOTE] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [sym_true] = ACTIONS(3120), - [sym_false] = ACTIONS(3120), - [anon_sym_NULL] = ACTIONS(3120), - [anon_sym_nullptr] = ACTIONS(3120), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3120), - [anon_sym_decltype] = ACTIONS(3120), - [anon_sym_virtual] = ACTIONS(3120), - [anon_sym_alignas] = ACTIONS(3120), - [anon_sym_explicit] = ACTIONS(3120), - [anon_sym_typename] = ACTIONS(3120), - [anon_sym_template] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_try] = ACTIONS(3120), - [anon_sym_delete] = ACTIONS(3120), - [anon_sym_throw] = ACTIONS(3120), - [anon_sym_namespace] = ACTIONS(3120), - [anon_sym_using] = ACTIONS(3120), - [anon_sym_static_assert] = ACTIONS(3120), - [anon_sym_concept] = ACTIONS(3120), - [anon_sym_co_return] = ACTIONS(3120), - [anon_sym_co_yield] = ACTIONS(3120), - [anon_sym_R_DQUOTE] = ACTIONS(3122), - [anon_sym_LR_DQUOTE] = ACTIONS(3122), - [anon_sym_uR_DQUOTE] = ACTIONS(3122), - [anon_sym_UR_DQUOTE] = ACTIONS(3122), - [anon_sym_u8R_DQUOTE] = ACTIONS(3122), - [anon_sym_co_await] = ACTIONS(3120), - [anon_sym_new] = ACTIONS(3120), - [anon_sym_requires] = ACTIONS(3120), - [sym_this] = ACTIONS(3120), - }, - [373] = { - [sym_identifier] = ACTIONS(3124), - [aux_sym_preproc_include_token1] = ACTIONS(3124), - [aux_sym_preproc_def_token1] = ACTIONS(3124), - [aux_sym_preproc_if_token1] = ACTIONS(3124), - [aux_sym_preproc_if_token2] = ACTIONS(3124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3124), - [aux_sym_preproc_else_token1] = ACTIONS(3124), - [aux_sym_preproc_elif_token1] = ACTIONS(3124), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3124), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3124), - [sym_preproc_directive] = ACTIONS(3124), - [anon_sym_LPAREN2] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_AMP_AMP] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym___extension__] = ACTIONS(3124), - [anon_sym_typedef] = ACTIONS(3124), - [anon_sym_extern] = ACTIONS(3124), - [anon_sym___attribute__] = ACTIONS(3124), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3126), - [anon_sym___declspec] = ACTIONS(3124), - [anon_sym___based] = ACTIONS(3124), - [anon_sym___cdecl] = ACTIONS(3124), - [anon_sym___clrcall] = ACTIONS(3124), - [anon_sym___stdcall] = ACTIONS(3124), - [anon_sym___fastcall] = ACTIONS(3124), - [anon_sym___thiscall] = ACTIONS(3124), - [anon_sym___vectorcall] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_signed] = ACTIONS(3124), - [anon_sym_unsigned] = ACTIONS(3124), - [anon_sym_long] = ACTIONS(3124), - [anon_sym_short] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_register] = ACTIONS(3124), - [anon_sym_inline] = ACTIONS(3124), - [anon_sym___inline] = ACTIONS(3124), - [anon_sym___inline__] = ACTIONS(3124), - [anon_sym___forceinline] = ACTIONS(3124), - [anon_sym_thread_local] = ACTIONS(3124), - [anon_sym___thread] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_constexpr] = ACTIONS(3124), - [anon_sym_volatile] = ACTIONS(3124), - [anon_sym_restrict] = ACTIONS(3124), - [anon_sym___restrict__] = ACTIONS(3124), - [anon_sym__Atomic] = ACTIONS(3124), - [anon_sym__Noreturn] = ACTIONS(3124), - [anon_sym_noreturn] = ACTIONS(3124), - [anon_sym_mutable] = ACTIONS(3124), - [anon_sym_constinit] = ACTIONS(3124), - [anon_sym_consteval] = ACTIONS(3124), - [sym_primitive_type] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_struct] = ACTIONS(3124), - [anon_sym_union] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_goto] = ACTIONS(3124), - [anon_sym___try] = ACTIONS(3124), - [anon_sym___leave] = ACTIONS(3124), - [anon_sym_not] = ACTIONS(3124), - [anon_sym_compl] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3124), - [anon_sym___alignof__] = ACTIONS(3124), - [anon_sym___alignof] = ACTIONS(3124), - [anon_sym__alignof] = ACTIONS(3124), - [anon_sym_alignof] = ACTIONS(3124), - [anon_sym__Alignof] = ACTIONS(3124), - [anon_sym_offsetof] = ACTIONS(3124), - [anon_sym__Generic] = ACTIONS(3124), - [anon_sym_asm] = ACTIONS(3124), - [anon_sym___asm__] = ACTIONS(3124), - [sym_number_literal] = ACTIONS(3126), - [anon_sym_L_SQUOTE] = ACTIONS(3126), - [anon_sym_u_SQUOTE] = ACTIONS(3126), - [anon_sym_U_SQUOTE] = ACTIONS(3126), - [anon_sym_u8_SQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [anon_sym_L_DQUOTE] = ACTIONS(3126), - [anon_sym_u_DQUOTE] = ACTIONS(3126), - [anon_sym_U_DQUOTE] = ACTIONS(3126), - [anon_sym_u8_DQUOTE] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [anon_sym_NULL] = ACTIONS(3124), - [anon_sym_nullptr] = ACTIONS(3124), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3124), - [anon_sym_decltype] = ACTIONS(3124), - [anon_sym_virtual] = ACTIONS(3124), - [anon_sym_alignas] = ACTIONS(3124), - [anon_sym_explicit] = ACTIONS(3124), - [anon_sym_typename] = ACTIONS(3124), - [anon_sym_template] = ACTIONS(3124), - [anon_sym_operator] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_static_assert] = ACTIONS(3124), - [anon_sym_concept] = ACTIONS(3124), - [anon_sym_co_return] = ACTIONS(3124), - [anon_sym_co_yield] = ACTIONS(3124), - [anon_sym_R_DQUOTE] = ACTIONS(3126), - [anon_sym_LR_DQUOTE] = ACTIONS(3126), - [anon_sym_uR_DQUOTE] = ACTIONS(3126), - [anon_sym_UR_DQUOTE] = ACTIONS(3126), - [anon_sym_u8R_DQUOTE] = ACTIONS(3126), - [anon_sym_co_await] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_requires] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), - }, - [374] = { - [sym_identifier] = ACTIONS(3128), - [aux_sym_preproc_include_token1] = ACTIONS(3128), - [aux_sym_preproc_def_token1] = ACTIONS(3128), - [aux_sym_preproc_if_token1] = ACTIONS(3128), - [aux_sym_preproc_if_token2] = ACTIONS(3128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3128), - [aux_sym_preproc_else_token1] = ACTIONS(3128), - [aux_sym_preproc_elif_token1] = ACTIONS(3128), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3128), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3128), - [sym_preproc_directive] = ACTIONS(3128), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3130), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym_typedef] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3130), - [anon_sym___declspec] = ACTIONS(3128), - [anon_sym___based] = ACTIONS(3128), - [anon_sym___cdecl] = ACTIONS(3128), - [anon_sym___clrcall] = ACTIONS(3128), - [anon_sym___stdcall] = ACTIONS(3128), - [anon_sym___fastcall] = ACTIONS(3128), - [anon_sym___thiscall] = ACTIONS(3128), - [anon_sym___vectorcall] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_register] = ACTIONS(3128), - [anon_sym_inline] = ACTIONS(3128), - [anon_sym___inline] = ACTIONS(3128), - [anon_sym___inline__] = ACTIONS(3128), - [anon_sym___forceinline] = ACTIONS(3128), - [anon_sym_thread_local] = ACTIONS(3128), - [anon_sym___thread] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3128), - [anon_sym_volatile] = ACTIONS(3128), - [anon_sym_restrict] = ACTIONS(3128), - [anon_sym___restrict__] = ACTIONS(3128), - [anon_sym__Atomic] = ACTIONS(3128), - [anon_sym__Noreturn] = ACTIONS(3128), - [anon_sym_noreturn] = ACTIONS(3128), - [anon_sym_mutable] = ACTIONS(3128), - [anon_sym_constinit] = ACTIONS(3128), - [anon_sym_consteval] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_goto] = ACTIONS(3128), - [anon_sym___try] = ACTIONS(3128), - [anon_sym___leave] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(3128), - [anon_sym_compl] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3128), - [anon_sym___alignof__] = ACTIONS(3128), - [anon_sym___alignof] = ACTIONS(3128), - [anon_sym__alignof] = ACTIONS(3128), - [anon_sym_alignof] = ACTIONS(3128), - [anon_sym__Alignof] = ACTIONS(3128), - [anon_sym_offsetof] = ACTIONS(3128), - [anon_sym__Generic] = ACTIONS(3128), - [anon_sym_asm] = ACTIONS(3128), - [anon_sym___asm__] = ACTIONS(3128), - [sym_number_literal] = ACTIONS(3130), - [anon_sym_L_SQUOTE] = ACTIONS(3130), - [anon_sym_u_SQUOTE] = ACTIONS(3130), - [anon_sym_U_SQUOTE] = ACTIONS(3130), - [anon_sym_u8_SQUOTE] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3130), - [anon_sym_L_DQUOTE] = ACTIONS(3130), - [anon_sym_u_DQUOTE] = ACTIONS(3130), - [anon_sym_U_DQUOTE] = ACTIONS(3130), - [anon_sym_u8_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [anon_sym_NULL] = ACTIONS(3128), - [anon_sym_nullptr] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3128), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_alignas] = ACTIONS(3128), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_typename] = ACTIONS(3128), - [anon_sym_template] = ACTIONS(3128), - [anon_sym_operator] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_static_assert] = ACTIONS(3128), - [anon_sym_concept] = ACTIONS(3128), - [anon_sym_co_return] = ACTIONS(3128), - [anon_sym_co_yield] = ACTIONS(3128), - [anon_sym_R_DQUOTE] = ACTIONS(3130), - [anon_sym_LR_DQUOTE] = ACTIONS(3130), - [anon_sym_uR_DQUOTE] = ACTIONS(3130), - [anon_sym_UR_DQUOTE] = ACTIONS(3130), - [anon_sym_u8R_DQUOTE] = ACTIONS(3130), - [anon_sym_co_await] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - }, - [375] = { - [sym_identifier] = ACTIONS(3132), - [aux_sym_preproc_include_token1] = ACTIONS(3132), - [aux_sym_preproc_def_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token2] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), - [aux_sym_preproc_else_token1] = ACTIONS(3132), - [aux_sym_preproc_elif_token1] = ACTIONS(3132), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3132), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3132), - [sym_preproc_directive] = ACTIONS(3132), - [anon_sym_LPAREN2] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_STAR] = ACTIONS(3134), - [anon_sym_AMP_AMP] = ACTIONS(3134), - [anon_sym_AMP] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3134), - [anon_sym___extension__] = ACTIONS(3132), - [anon_sym_typedef] = ACTIONS(3132), - [anon_sym_extern] = ACTIONS(3132), - [anon_sym___attribute__] = ACTIONS(3132), - [anon_sym_COLON_COLON] = ACTIONS(3134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), - [anon_sym___declspec] = ACTIONS(3132), - [anon_sym___based] = ACTIONS(3132), - [anon_sym___cdecl] = ACTIONS(3132), - [anon_sym___clrcall] = ACTIONS(3132), - [anon_sym___stdcall] = ACTIONS(3132), - [anon_sym___fastcall] = ACTIONS(3132), - [anon_sym___thiscall] = ACTIONS(3132), - [anon_sym___vectorcall] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3134), - [anon_sym_signed] = ACTIONS(3132), - [anon_sym_unsigned] = ACTIONS(3132), - [anon_sym_long] = ACTIONS(3132), - [anon_sym_short] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_register] = ACTIONS(3132), - [anon_sym_inline] = ACTIONS(3132), - [anon_sym___inline] = ACTIONS(3132), - [anon_sym___inline__] = ACTIONS(3132), - [anon_sym___forceinline] = ACTIONS(3132), - [anon_sym_thread_local] = ACTIONS(3132), - [anon_sym___thread] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_constexpr] = ACTIONS(3132), - [anon_sym_volatile] = ACTIONS(3132), - [anon_sym_restrict] = ACTIONS(3132), - [anon_sym___restrict__] = ACTIONS(3132), - [anon_sym__Atomic] = ACTIONS(3132), - [anon_sym__Noreturn] = ACTIONS(3132), - [anon_sym_noreturn] = ACTIONS(3132), - [anon_sym_mutable] = ACTIONS(3132), - [anon_sym_constinit] = ACTIONS(3132), - [anon_sym_consteval] = ACTIONS(3132), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(3132), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_case] = ACTIONS(3132), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_goto] = ACTIONS(3132), - [anon_sym___try] = ACTIONS(3132), - [anon_sym___leave] = ACTIONS(3132), - [anon_sym_not] = ACTIONS(3132), - [anon_sym_compl] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3134), - [anon_sym_sizeof] = ACTIONS(3132), - [anon_sym___alignof__] = ACTIONS(3132), - [anon_sym___alignof] = ACTIONS(3132), - [anon_sym__alignof] = ACTIONS(3132), - [anon_sym_alignof] = ACTIONS(3132), - [anon_sym__Alignof] = ACTIONS(3132), - [anon_sym_offsetof] = ACTIONS(3132), - [anon_sym__Generic] = ACTIONS(3132), - [anon_sym_asm] = ACTIONS(3132), - [anon_sym___asm__] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3134), - [anon_sym_u_SQUOTE] = ACTIONS(3134), - [anon_sym_U_SQUOTE] = ACTIONS(3134), - [anon_sym_u8_SQUOTE] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3134), - [anon_sym_L_DQUOTE] = ACTIONS(3134), - [anon_sym_u_DQUOTE] = ACTIONS(3134), - [anon_sym_U_DQUOTE] = ACTIONS(3134), - [anon_sym_u8_DQUOTE] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(3134), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [anon_sym_NULL] = ACTIONS(3132), - [anon_sym_nullptr] = ACTIONS(3132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3132), - [anon_sym_decltype] = ACTIONS(3132), - [anon_sym_virtual] = ACTIONS(3132), - [anon_sym_alignas] = ACTIONS(3132), - [anon_sym_explicit] = ACTIONS(3132), - [anon_sym_typename] = ACTIONS(3132), - [anon_sym_template] = ACTIONS(3132), - [anon_sym_operator] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_static_assert] = ACTIONS(3132), - [anon_sym_concept] = ACTIONS(3132), - [anon_sym_co_return] = ACTIONS(3132), - [anon_sym_co_yield] = ACTIONS(3132), - [anon_sym_R_DQUOTE] = ACTIONS(3134), - [anon_sym_LR_DQUOTE] = ACTIONS(3134), - [anon_sym_uR_DQUOTE] = ACTIONS(3134), - [anon_sym_UR_DQUOTE] = ACTIONS(3134), - [anon_sym_u8R_DQUOTE] = ACTIONS(3134), - [anon_sym_co_await] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_requires] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), - }, - [376] = { - [sym_identifier] = ACTIONS(3136), - [aux_sym_preproc_include_token1] = ACTIONS(3136), - [aux_sym_preproc_def_token1] = ACTIONS(3136), - [aux_sym_preproc_if_token1] = ACTIONS(3136), - [aux_sym_preproc_if_token2] = ACTIONS(3136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3136), - [aux_sym_preproc_else_token1] = ACTIONS(3136), - [aux_sym_preproc_elif_token1] = ACTIONS(3136), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3136), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3136), - [sym_preproc_directive] = ACTIONS(3136), - [anon_sym_LPAREN2] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym___extension__] = ACTIONS(3136), - [anon_sym_typedef] = ACTIONS(3136), - [anon_sym_extern] = ACTIONS(3136), - [anon_sym___attribute__] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3138), - [anon_sym___declspec] = ACTIONS(3136), - [anon_sym___based] = ACTIONS(3136), - [anon_sym___cdecl] = ACTIONS(3136), - [anon_sym___clrcall] = ACTIONS(3136), - [anon_sym___stdcall] = ACTIONS(3136), - [anon_sym___fastcall] = ACTIONS(3136), - [anon_sym___thiscall] = ACTIONS(3136), - [anon_sym___vectorcall] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_signed] = ACTIONS(3136), - [anon_sym_unsigned] = ACTIONS(3136), - [anon_sym_long] = ACTIONS(3136), - [anon_sym_short] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_register] = ACTIONS(3136), - [anon_sym_inline] = ACTIONS(3136), - [anon_sym___inline] = ACTIONS(3136), - [anon_sym___inline__] = ACTIONS(3136), - [anon_sym___forceinline] = ACTIONS(3136), - [anon_sym_thread_local] = ACTIONS(3136), - [anon_sym___thread] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_constexpr] = ACTIONS(3136), - [anon_sym_volatile] = ACTIONS(3136), - [anon_sym_restrict] = ACTIONS(3136), - [anon_sym___restrict__] = ACTIONS(3136), - [anon_sym__Atomic] = ACTIONS(3136), - [anon_sym__Noreturn] = ACTIONS(3136), - [anon_sym_noreturn] = ACTIONS(3136), - [anon_sym_mutable] = ACTIONS(3136), - [anon_sym_constinit] = ACTIONS(3136), - [anon_sym_consteval] = ACTIONS(3136), - [sym_primitive_type] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_case] = ACTIONS(3136), - [anon_sym_default] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_goto] = ACTIONS(3136), - [anon_sym___try] = ACTIONS(3136), - [anon_sym___leave] = ACTIONS(3136), - [anon_sym_not] = ACTIONS(3136), - [anon_sym_compl] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_sizeof] = ACTIONS(3136), - [anon_sym___alignof__] = ACTIONS(3136), - [anon_sym___alignof] = ACTIONS(3136), - [anon_sym__alignof] = ACTIONS(3136), - [anon_sym_alignof] = ACTIONS(3136), - [anon_sym__Alignof] = ACTIONS(3136), - [anon_sym_offsetof] = ACTIONS(3136), - [anon_sym__Generic] = ACTIONS(3136), - [anon_sym_asm] = ACTIONS(3136), - [anon_sym___asm__] = ACTIONS(3136), - [sym_number_literal] = ACTIONS(3138), - [anon_sym_L_SQUOTE] = ACTIONS(3138), - [anon_sym_u_SQUOTE] = ACTIONS(3138), - [anon_sym_U_SQUOTE] = ACTIONS(3138), - [anon_sym_u8_SQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [anon_sym_NULL] = ACTIONS(3136), - [anon_sym_nullptr] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3136), - [anon_sym_decltype] = ACTIONS(3136), - [anon_sym_virtual] = ACTIONS(3136), - [anon_sym_alignas] = ACTIONS(3136), - [anon_sym_explicit] = ACTIONS(3136), - [anon_sym_typename] = ACTIONS(3136), - [anon_sym_template] = ACTIONS(3136), - [anon_sym_operator] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_static_assert] = ACTIONS(3136), - [anon_sym_concept] = ACTIONS(3136), - [anon_sym_co_return] = ACTIONS(3136), - [anon_sym_co_yield] = ACTIONS(3136), - [anon_sym_R_DQUOTE] = ACTIONS(3138), - [anon_sym_LR_DQUOTE] = ACTIONS(3138), - [anon_sym_uR_DQUOTE] = ACTIONS(3138), - [anon_sym_UR_DQUOTE] = ACTIONS(3138), - [anon_sym_u8R_DQUOTE] = ACTIONS(3138), - [anon_sym_co_await] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_requires] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - }, - [377] = { - [sym_identifier] = ACTIONS(3140), - [aux_sym_preproc_include_token1] = ACTIONS(3140), - [aux_sym_preproc_def_token1] = ACTIONS(3140), - [aux_sym_preproc_if_token1] = ACTIONS(3140), - [aux_sym_preproc_if_token2] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), - [aux_sym_preproc_else_token1] = ACTIONS(3140), - [aux_sym_preproc_elif_token1] = ACTIONS(3140), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3140), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3140), - [sym_preproc_directive] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_AMP_AMP] = ACTIONS(3142), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym___extension__] = ACTIONS(3140), - [anon_sym_typedef] = ACTIONS(3140), - [anon_sym_extern] = ACTIONS(3140), - [anon_sym___attribute__] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3142), - [anon_sym___declspec] = ACTIONS(3140), - [anon_sym___based] = ACTIONS(3140), - [anon_sym___cdecl] = ACTIONS(3140), - [anon_sym___clrcall] = ACTIONS(3140), - [anon_sym___stdcall] = ACTIONS(3140), - [anon_sym___fastcall] = ACTIONS(3140), - [anon_sym___thiscall] = ACTIONS(3140), - [anon_sym___vectorcall] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_signed] = ACTIONS(3140), - [anon_sym_unsigned] = ACTIONS(3140), - [anon_sym_long] = ACTIONS(3140), - [anon_sym_short] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_register] = ACTIONS(3140), - [anon_sym_inline] = ACTIONS(3140), - [anon_sym___inline] = ACTIONS(3140), - [anon_sym___inline__] = ACTIONS(3140), - [anon_sym___forceinline] = ACTIONS(3140), - [anon_sym_thread_local] = ACTIONS(3140), - [anon_sym___thread] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_constexpr] = ACTIONS(3140), - [anon_sym_volatile] = ACTIONS(3140), - [anon_sym_restrict] = ACTIONS(3140), - [anon_sym___restrict__] = ACTIONS(3140), - [anon_sym__Atomic] = ACTIONS(3140), - [anon_sym__Noreturn] = ACTIONS(3140), - [anon_sym_noreturn] = ACTIONS(3140), - [anon_sym_mutable] = ACTIONS(3140), - [anon_sym_constinit] = ACTIONS(3140), - [anon_sym_consteval] = ACTIONS(3140), - [sym_primitive_type] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_struct] = ACTIONS(3140), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_case] = ACTIONS(3140), - [anon_sym_default] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_goto] = ACTIONS(3140), - [anon_sym___try] = ACTIONS(3140), - [anon_sym___leave] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3140), - [anon_sym_compl] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3140), - [anon_sym___alignof__] = ACTIONS(3140), - [anon_sym___alignof] = ACTIONS(3140), - [anon_sym__alignof] = ACTIONS(3140), - [anon_sym_alignof] = ACTIONS(3140), - [anon_sym__Alignof] = ACTIONS(3140), - [anon_sym_offsetof] = ACTIONS(3140), - [anon_sym__Generic] = ACTIONS(3140), - [anon_sym_asm] = ACTIONS(3140), - [anon_sym___asm__] = ACTIONS(3140), - [sym_number_literal] = ACTIONS(3142), - [anon_sym_L_SQUOTE] = ACTIONS(3142), - [anon_sym_u_SQUOTE] = ACTIONS(3142), - [anon_sym_U_SQUOTE] = ACTIONS(3142), - [anon_sym_u8_SQUOTE] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_L_DQUOTE] = ACTIONS(3142), - [anon_sym_u_DQUOTE] = ACTIONS(3142), - [anon_sym_U_DQUOTE] = ACTIONS(3142), - [anon_sym_u8_DQUOTE] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [anon_sym_NULL] = ACTIONS(3140), - [anon_sym_nullptr] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3140), - [anon_sym_decltype] = ACTIONS(3140), - [anon_sym_virtual] = ACTIONS(3140), - [anon_sym_alignas] = ACTIONS(3140), - [anon_sym_explicit] = ACTIONS(3140), - [anon_sym_typename] = ACTIONS(3140), - [anon_sym_template] = ACTIONS(3140), - [anon_sym_operator] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_static_assert] = ACTIONS(3140), - [anon_sym_concept] = ACTIONS(3140), - [anon_sym_co_return] = ACTIONS(3140), - [anon_sym_co_yield] = ACTIONS(3140), - [anon_sym_R_DQUOTE] = ACTIONS(3142), - [anon_sym_LR_DQUOTE] = ACTIONS(3142), - [anon_sym_uR_DQUOTE] = ACTIONS(3142), - [anon_sym_UR_DQUOTE] = ACTIONS(3142), - [anon_sym_u8R_DQUOTE] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_requires] = ACTIONS(3140), - [sym_this] = ACTIONS(3140), - }, - [378] = { - [sym_identifier] = ACTIONS(3144), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3144), - [aux_sym_preproc_if_token1] = ACTIONS(3144), - [aux_sym_preproc_if_token2] = ACTIONS(3144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3144), - [aux_sym_preproc_else_token1] = ACTIONS(3144), - [aux_sym_preproc_elif_token1] = ACTIONS(3144), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3144), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3144), - [sym_preproc_directive] = ACTIONS(3144), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3144), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym___extension__] = ACTIONS(3144), - [anon_sym_typedef] = ACTIONS(3144), - [anon_sym_extern] = ACTIONS(3144), - [anon_sym___attribute__] = ACTIONS(3144), - [anon_sym_COLON_COLON] = ACTIONS(3146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3146), - [anon_sym___declspec] = ACTIONS(3144), - [anon_sym___based] = ACTIONS(3144), - [anon_sym___cdecl] = ACTIONS(3144), - [anon_sym___clrcall] = ACTIONS(3144), - [anon_sym___stdcall] = ACTIONS(3144), - [anon_sym___fastcall] = ACTIONS(3144), - [anon_sym___thiscall] = ACTIONS(3144), - [anon_sym___vectorcall] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_signed] = ACTIONS(3144), - [anon_sym_unsigned] = ACTIONS(3144), - [anon_sym_long] = ACTIONS(3144), - [anon_sym_short] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_register] = ACTIONS(3144), - [anon_sym_inline] = ACTIONS(3144), - [anon_sym___inline] = ACTIONS(3144), - [anon_sym___inline__] = ACTIONS(3144), - [anon_sym___forceinline] = ACTIONS(3144), - [anon_sym_thread_local] = ACTIONS(3144), - [anon_sym___thread] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_constexpr] = ACTIONS(3144), - [anon_sym_volatile] = ACTIONS(3144), - [anon_sym_restrict] = ACTIONS(3144), - [anon_sym___restrict__] = ACTIONS(3144), - [anon_sym__Atomic] = ACTIONS(3144), - [anon_sym__Noreturn] = ACTIONS(3144), - [anon_sym_noreturn] = ACTIONS(3144), - [anon_sym_mutable] = ACTIONS(3144), - [anon_sym_constinit] = ACTIONS(3144), - [anon_sym_consteval] = ACTIONS(3144), - [sym_primitive_type] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_struct] = ACTIONS(3144), - [anon_sym_union] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_case] = ACTIONS(3144), - [anon_sym_default] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_goto] = ACTIONS(3144), - [anon_sym___try] = ACTIONS(3144), - [anon_sym___leave] = ACTIONS(3144), - [anon_sym_not] = ACTIONS(3144), - [anon_sym_compl] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3144), - [anon_sym___alignof] = ACTIONS(3144), - [anon_sym__alignof] = ACTIONS(3144), - [anon_sym_alignof] = ACTIONS(3144), - [anon_sym__Alignof] = ACTIONS(3144), - [anon_sym_offsetof] = ACTIONS(3144), - [anon_sym__Generic] = ACTIONS(3144), - [anon_sym_asm] = ACTIONS(3144), - [anon_sym___asm__] = ACTIONS(3144), - [sym_number_literal] = ACTIONS(3146), - [anon_sym_L_SQUOTE] = ACTIONS(3146), - [anon_sym_u_SQUOTE] = ACTIONS(3146), - [anon_sym_U_SQUOTE] = ACTIONS(3146), - [anon_sym_u8_SQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_L_DQUOTE] = ACTIONS(3146), - [anon_sym_u_DQUOTE] = ACTIONS(3146), - [anon_sym_U_DQUOTE] = ACTIONS(3146), - [anon_sym_u8_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [anon_sym_NULL] = ACTIONS(3144), - [anon_sym_nullptr] = ACTIONS(3144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3144), - [anon_sym_decltype] = ACTIONS(3144), - [anon_sym_virtual] = ACTIONS(3144), - [anon_sym_alignas] = ACTIONS(3144), - [anon_sym_explicit] = ACTIONS(3144), - [anon_sym_typename] = ACTIONS(3144), - [anon_sym_template] = ACTIONS(3144), - [anon_sym_operator] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3144), - [anon_sym_static_assert] = ACTIONS(3144), - [anon_sym_concept] = ACTIONS(3144), - [anon_sym_co_return] = ACTIONS(3144), - [anon_sym_co_yield] = ACTIONS(3144), - [anon_sym_R_DQUOTE] = ACTIONS(3146), - [anon_sym_LR_DQUOTE] = ACTIONS(3146), - [anon_sym_uR_DQUOTE] = ACTIONS(3146), - [anon_sym_UR_DQUOTE] = ACTIONS(3146), - [anon_sym_u8R_DQUOTE] = ACTIONS(3146), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_requires] = ACTIONS(3144), - [sym_this] = ACTIONS(3144), - }, - [379] = { - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_include_token1] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token2] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [aux_sym_preproc_else_token1] = ACTIONS(3148), - [aux_sym_preproc_elif_token1] = ACTIONS(3148), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym___cdecl] = ACTIONS(3148), - [anon_sym___clrcall] = ACTIONS(3148), - [anon_sym___stdcall] = ACTIONS(3148), - [anon_sym___fastcall] = ACTIONS(3148), - [anon_sym___thiscall] = ACTIONS(3148), - [anon_sym___vectorcall] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_goto] = ACTIONS(3148), - [anon_sym___try] = ACTIONS(3148), - [anon_sym___leave] = ACTIONS(3148), - [anon_sym_not] = ACTIONS(3148), - [anon_sym_compl] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_sizeof] = ACTIONS(3148), - [anon_sym___alignof__] = ACTIONS(3148), - [anon_sym___alignof] = ACTIONS(3148), - [anon_sym__alignof] = ACTIONS(3148), - [anon_sym_alignof] = ACTIONS(3148), - [anon_sym__Alignof] = ACTIONS(3148), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3148), - [anon_sym_asm] = ACTIONS(3148), - [anon_sym___asm__] = ACTIONS(3148), - [sym_number_literal] = ACTIONS(3150), - [anon_sym_L_SQUOTE] = ACTIONS(3150), - [anon_sym_u_SQUOTE] = ACTIONS(3150), - [anon_sym_U_SQUOTE] = ACTIONS(3150), - [anon_sym_u8_SQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_L_DQUOTE] = ACTIONS(3150), - [anon_sym_u_DQUOTE] = ACTIONS(3150), - [anon_sym_U_DQUOTE] = ACTIONS(3150), - [anon_sym_u8_DQUOTE] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [anon_sym_NULL] = ACTIONS(3148), - [anon_sym_nullptr] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - [anon_sym_concept] = ACTIONS(3148), - [anon_sym_co_return] = ACTIONS(3148), - [anon_sym_co_yield] = ACTIONS(3148), - [anon_sym_R_DQUOTE] = ACTIONS(3150), - [anon_sym_LR_DQUOTE] = ACTIONS(3150), - [anon_sym_uR_DQUOTE] = ACTIONS(3150), - [anon_sym_UR_DQUOTE] = ACTIONS(3150), - [anon_sym_u8R_DQUOTE] = ACTIONS(3150), - [anon_sym_co_await] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_requires] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), - }, - [380] = { - [sym_identifier] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token2] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [aux_sym_preproc_else_token1] = ACTIONS(3152), - [aux_sym_preproc_elif_token1] = ACTIONS(3152), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3152), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym___extension__] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym___attribute__] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym___declspec] = ACTIONS(3152), - [anon_sym___based] = ACTIONS(3152), - [anon_sym___cdecl] = ACTIONS(3152), - [anon_sym___clrcall] = ACTIONS(3152), - [anon_sym___stdcall] = ACTIONS(3152), - [anon_sym___fastcall] = ACTIONS(3152), - [anon_sym___thiscall] = ACTIONS(3152), - [anon_sym___vectorcall] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym___inline] = ACTIONS(3152), - [anon_sym___inline__] = ACTIONS(3152), - [anon_sym___forceinline] = ACTIONS(3152), - [anon_sym_thread_local] = ACTIONS(3152), - [anon_sym___thread] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_restrict] = ACTIONS(3152), - [anon_sym___restrict__] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [anon_sym__Noreturn] = ACTIONS(3152), - [anon_sym_noreturn] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [anon_sym_constinit] = ACTIONS(3152), - [anon_sym_consteval] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(3152), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [anon_sym___try] = ACTIONS(3152), - [anon_sym___leave] = ACTIONS(3152), - [anon_sym_not] = ACTIONS(3152), - [anon_sym_compl] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym___alignof__] = ACTIONS(3152), - [anon_sym___alignof] = ACTIONS(3152), - [anon_sym__alignof] = ACTIONS(3152), - [anon_sym_alignof] = ACTIONS(3152), - [anon_sym__Alignof] = ACTIONS(3152), - [anon_sym_offsetof] = ACTIONS(3152), - [anon_sym__Generic] = ACTIONS(3152), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3154), - [anon_sym_u_SQUOTE] = ACTIONS(3154), - [anon_sym_U_SQUOTE] = ACTIONS(3154), - [anon_sym_u8_SQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_L_DQUOTE] = ACTIONS(3154), - [anon_sym_u_DQUOTE] = ACTIONS(3154), - [anon_sym_U_DQUOTE] = ACTIONS(3154), - [anon_sym_u8_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [anon_sym_NULL] = ACTIONS(3152), - [anon_sym_nullptr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3152), - [anon_sym_decltype] = ACTIONS(3152), - [anon_sym_virtual] = ACTIONS(3152), - [anon_sym_alignas] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_static_assert] = ACTIONS(3152), - [anon_sym_concept] = ACTIONS(3152), - [anon_sym_co_return] = ACTIONS(3152), - [anon_sym_co_yield] = ACTIONS(3152), - [anon_sym_R_DQUOTE] = ACTIONS(3154), - [anon_sym_LR_DQUOTE] = ACTIONS(3154), - [anon_sym_uR_DQUOTE] = ACTIONS(3154), - [anon_sym_UR_DQUOTE] = ACTIONS(3154), - [anon_sym_u8R_DQUOTE] = ACTIONS(3154), - [anon_sym_co_await] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_requires] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), - }, - [381] = { - [sym_identifier] = ACTIONS(3156), - [aux_sym_preproc_include_token1] = ACTIONS(3156), - [aux_sym_preproc_def_token1] = ACTIONS(3156), - [aux_sym_preproc_if_token1] = ACTIONS(3156), - [aux_sym_preproc_if_token2] = ACTIONS(3156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3156), - [aux_sym_preproc_else_token1] = ACTIONS(3156), - [aux_sym_preproc_elif_token1] = ACTIONS(3156), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3156), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3156), - [sym_preproc_directive] = ACTIONS(3156), - [anon_sym_LPAREN2] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym___extension__] = ACTIONS(3156), - [anon_sym_typedef] = ACTIONS(3156), - [anon_sym_extern] = ACTIONS(3156), - [anon_sym___attribute__] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3158), - [anon_sym___declspec] = ACTIONS(3156), - [anon_sym___based] = ACTIONS(3156), - [anon_sym___cdecl] = ACTIONS(3156), - [anon_sym___clrcall] = ACTIONS(3156), - [anon_sym___stdcall] = ACTIONS(3156), - [anon_sym___fastcall] = ACTIONS(3156), - [anon_sym___thiscall] = ACTIONS(3156), - [anon_sym___vectorcall] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_signed] = ACTIONS(3156), - [anon_sym_unsigned] = ACTIONS(3156), - [anon_sym_long] = ACTIONS(3156), - [anon_sym_short] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_register] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym___inline] = ACTIONS(3156), - [anon_sym___inline__] = ACTIONS(3156), - [anon_sym___forceinline] = ACTIONS(3156), - [anon_sym_thread_local] = ACTIONS(3156), - [anon_sym___thread] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_constexpr] = ACTIONS(3156), - [anon_sym_volatile] = ACTIONS(3156), - [anon_sym_restrict] = ACTIONS(3156), - [anon_sym___restrict__] = ACTIONS(3156), - [anon_sym__Atomic] = ACTIONS(3156), - [anon_sym__Noreturn] = ACTIONS(3156), - [anon_sym_noreturn] = ACTIONS(3156), - [anon_sym_mutable] = ACTIONS(3156), - [anon_sym_constinit] = ACTIONS(3156), - [anon_sym_consteval] = ACTIONS(3156), - [sym_primitive_type] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_struct] = ACTIONS(3156), - [anon_sym_union] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_case] = ACTIONS(3156), - [anon_sym_default] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_goto] = ACTIONS(3156), - [anon_sym___try] = ACTIONS(3156), - [anon_sym___leave] = ACTIONS(3156), - [anon_sym_not] = ACTIONS(3156), - [anon_sym_compl] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_sizeof] = ACTIONS(3156), - [anon_sym___alignof__] = ACTIONS(3156), - [anon_sym___alignof] = ACTIONS(3156), - [anon_sym__alignof] = ACTIONS(3156), - [anon_sym_alignof] = ACTIONS(3156), - [anon_sym__Alignof] = ACTIONS(3156), - [anon_sym_offsetof] = ACTIONS(3156), - [anon_sym__Generic] = ACTIONS(3156), - [anon_sym_asm] = ACTIONS(3156), - [anon_sym___asm__] = ACTIONS(3156), - [sym_number_literal] = ACTIONS(3158), - [anon_sym_L_SQUOTE] = ACTIONS(3158), - [anon_sym_u_SQUOTE] = ACTIONS(3158), - [anon_sym_U_SQUOTE] = ACTIONS(3158), - [anon_sym_u8_SQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [anon_sym_NULL] = ACTIONS(3156), - [anon_sym_nullptr] = ACTIONS(3156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3156), - [anon_sym_decltype] = ACTIONS(3156), - [anon_sym_virtual] = ACTIONS(3156), - [anon_sym_alignas] = ACTIONS(3156), - [anon_sym_explicit] = ACTIONS(3156), - [anon_sym_typename] = ACTIONS(3156), - [anon_sym_template] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_static_assert] = ACTIONS(3156), - [anon_sym_concept] = ACTIONS(3156), - [anon_sym_co_return] = ACTIONS(3156), - [anon_sym_co_yield] = ACTIONS(3156), - [anon_sym_R_DQUOTE] = ACTIONS(3158), - [anon_sym_LR_DQUOTE] = ACTIONS(3158), - [anon_sym_uR_DQUOTE] = ACTIONS(3158), - [anon_sym_UR_DQUOTE] = ACTIONS(3158), - [anon_sym_u8R_DQUOTE] = ACTIONS(3158), - [anon_sym_co_await] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_requires] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - }, - [382] = { - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_include_token1] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token2] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [aux_sym_preproc_else_token1] = ACTIONS(3160), - [aux_sym_preproc_elif_token1] = ACTIONS(3160), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym___cdecl] = ACTIONS(3160), - [anon_sym___clrcall] = ACTIONS(3160), - [anon_sym___stdcall] = ACTIONS(3160), - [anon_sym___fastcall] = ACTIONS(3160), - [anon_sym___thiscall] = ACTIONS(3160), - [anon_sym___vectorcall] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_goto] = ACTIONS(3160), - [anon_sym___try] = ACTIONS(3160), - [anon_sym___leave] = ACTIONS(3160), - [anon_sym_not] = ACTIONS(3160), - [anon_sym_compl] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_sizeof] = ACTIONS(3160), - [anon_sym___alignof__] = ACTIONS(3160), - [anon_sym___alignof] = ACTIONS(3160), - [anon_sym__alignof] = ACTIONS(3160), - [anon_sym_alignof] = ACTIONS(3160), - [anon_sym__Alignof] = ACTIONS(3160), - [anon_sym_offsetof] = ACTIONS(3160), - [anon_sym__Generic] = ACTIONS(3160), - [anon_sym_asm] = ACTIONS(3160), - [anon_sym___asm__] = ACTIONS(3160), - [sym_number_literal] = ACTIONS(3162), - [anon_sym_L_SQUOTE] = ACTIONS(3162), - [anon_sym_u_SQUOTE] = ACTIONS(3162), - [anon_sym_U_SQUOTE] = ACTIONS(3162), - [anon_sym_u8_SQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_L_DQUOTE] = ACTIONS(3162), - [anon_sym_u_DQUOTE] = ACTIONS(3162), - [anon_sym_U_DQUOTE] = ACTIONS(3162), - [anon_sym_u8_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3160), - [anon_sym_nullptr] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), - [anon_sym_concept] = ACTIONS(3160), - [anon_sym_co_return] = ACTIONS(3160), - [anon_sym_co_yield] = ACTIONS(3160), - [anon_sym_R_DQUOTE] = ACTIONS(3162), - [anon_sym_LR_DQUOTE] = ACTIONS(3162), - [anon_sym_uR_DQUOTE] = ACTIONS(3162), - [anon_sym_UR_DQUOTE] = ACTIONS(3162), - [anon_sym_u8R_DQUOTE] = ACTIONS(3162), - [anon_sym_co_await] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_requires] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - }, - [383] = { - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_include_token1] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token2] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [aux_sym_preproc_else_token1] = ACTIONS(3160), - [aux_sym_preproc_elif_token1] = ACTIONS(3160), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym___cdecl] = ACTIONS(3160), - [anon_sym___clrcall] = ACTIONS(3160), - [anon_sym___stdcall] = ACTIONS(3160), - [anon_sym___fastcall] = ACTIONS(3160), - [anon_sym___thiscall] = ACTIONS(3160), - [anon_sym___vectorcall] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_goto] = ACTIONS(3160), - [anon_sym___try] = ACTIONS(3160), - [anon_sym___leave] = ACTIONS(3160), - [anon_sym_not] = ACTIONS(3160), - [anon_sym_compl] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_sizeof] = ACTIONS(3160), - [anon_sym___alignof__] = ACTIONS(3160), - [anon_sym___alignof] = ACTIONS(3160), - [anon_sym__alignof] = ACTIONS(3160), - [anon_sym_alignof] = ACTIONS(3160), - [anon_sym__Alignof] = ACTIONS(3160), - [anon_sym_offsetof] = ACTIONS(3160), - [anon_sym__Generic] = ACTIONS(3160), - [anon_sym_asm] = ACTIONS(3160), - [anon_sym___asm__] = ACTIONS(3160), - [sym_number_literal] = ACTIONS(3162), - [anon_sym_L_SQUOTE] = ACTIONS(3162), - [anon_sym_u_SQUOTE] = ACTIONS(3162), - [anon_sym_U_SQUOTE] = ACTIONS(3162), - [anon_sym_u8_SQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_L_DQUOTE] = ACTIONS(3162), - [anon_sym_u_DQUOTE] = ACTIONS(3162), - [anon_sym_U_DQUOTE] = ACTIONS(3162), - [anon_sym_u8_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3160), - [anon_sym_nullptr] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), - [anon_sym_concept] = ACTIONS(3160), - [anon_sym_co_return] = ACTIONS(3160), - [anon_sym_co_yield] = ACTIONS(3160), - [anon_sym_R_DQUOTE] = ACTIONS(3162), - [anon_sym_LR_DQUOTE] = ACTIONS(3162), - [anon_sym_uR_DQUOTE] = ACTIONS(3162), - [anon_sym_UR_DQUOTE] = ACTIONS(3162), - [anon_sym_u8R_DQUOTE] = ACTIONS(3162), - [anon_sym_co_await] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_requires] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - }, - [384] = { - [sym_identifier] = ACTIONS(3164), - [aux_sym_preproc_include_token1] = ACTIONS(3164), - [aux_sym_preproc_def_token1] = ACTIONS(3164), - [aux_sym_preproc_if_token1] = ACTIONS(3164), - [aux_sym_preproc_if_token2] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), - [aux_sym_preproc_else_token1] = ACTIONS(3164), - [aux_sym_preproc_elif_token1] = ACTIONS(3164), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3164), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3164), - [sym_preproc_directive] = ACTIONS(3164), - [anon_sym_LPAREN2] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3166), - [anon_sym_AMP_AMP] = ACTIONS(3166), - [anon_sym_AMP] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym___extension__] = ACTIONS(3164), - [anon_sym_typedef] = ACTIONS(3164), - [anon_sym_extern] = ACTIONS(3164), - [anon_sym___attribute__] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), - [anon_sym___declspec] = ACTIONS(3164), - [anon_sym___based] = ACTIONS(3164), - [anon_sym___cdecl] = ACTIONS(3164), - [anon_sym___clrcall] = ACTIONS(3164), - [anon_sym___stdcall] = ACTIONS(3164), - [anon_sym___fastcall] = ACTIONS(3164), - [anon_sym___thiscall] = ACTIONS(3164), - [anon_sym___vectorcall] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_signed] = ACTIONS(3164), - [anon_sym_unsigned] = ACTIONS(3164), - [anon_sym_long] = ACTIONS(3164), - [anon_sym_short] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_register] = ACTIONS(3164), - [anon_sym_inline] = ACTIONS(3164), - [anon_sym___inline] = ACTIONS(3164), - [anon_sym___inline__] = ACTIONS(3164), - [anon_sym___forceinline] = ACTIONS(3164), - [anon_sym_thread_local] = ACTIONS(3164), - [anon_sym___thread] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_constexpr] = ACTIONS(3164), - [anon_sym_volatile] = ACTIONS(3164), - [anon_sym_restrict] = ACTIONS(3164), - [anon_sym___restrict__] = ACTIONS(3164), - [anon_sym__Atomic] = ACTIONS(3164), - [anon_sym__Noreturn] = ACTIONS(3164), - [anon_sym_noreturn] = ACTIONS(3164), - [anon_sym_mutable] = ACTIONS(3164), - [anon_sym_constinit] = ACTIONS(3164), - [anon_sym_consteval] = ACTIONS(3164), - [sym_primitive_type] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_struct] = ACTIONS(3164), - [anon_sym_union] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_case] = ACTIONS(3164), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_goto] = ACTIONS(3164), - [anon_sym___try] = ACTIONS(3164), - [anon_sym___leave] = ACTIONS(3164), - [anon_sym_not] = ACTIONS(3164), - [anon_sym_compl] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_sizeof] = ACTIONS(3164), - [anon_sym___alignof__] = ACTIONS(3164), - [anon_sym___alignof] = ACTIONS(3164), - [anon_sym__alignof] = ACTIONS(3164), - [anon_sym_alignof] = ACTIONS(3164), - [anon_sym__Alignof] = ACTIONS(3164), - [anon_sym_offsetof] = ACTIONS(3164), - [anon_sym__Generic] = ACTIONS(3164), - [anon_sym_asm] = ACTIONS(3164), - [anon_sym___asm__] = ACTIONS(3164), - [sym_number_literal] = ACTIONS(3166), - [anon_sym_L_SQUOTE] = ACTIONS(3166), - [anon_sym_u_SQUOTE] = ACTIONS(3166), - [anon_sym_U_SQUOTE] = ACTIONS(3166), - [anon_sym_u8_SQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_L_DQUOTE] = ACTIONS(3166), - [anon_sym_u_DQUOTE] = ACTIONS(3166), - [anon_sym_U_DQUOTE] = ACTIONS(3166), - [anon_sym_u8_DQUOTE] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [anon_sym_NULL] = ACTIONS(3164), - [anon_sym_nullptr] = ACTIONS(3164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3164), - [anon_sym_virtual] = ACTIONS(3164), - [anon_sym_alignas] = ACTIONS(3164), - [anon_sym_explicit] = ACTIONS(3164), - [anon_sym_typename] = ACTIONS(3164), - [anon_sym_template] = ACTIONS(3164), - [anon_sym_operator] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_static_assert] = ACTIONS(3164), - [anon_sym_concept] = ACTIONS(3164), - [anon_sym_co_return] = ACTIONS(3164), - [anon_sym_co_yield] = ACTIONS(3164), - [anon_sym_R_DQUOTE] = ACTIONS(3166), - [anon_sym_LR_DQUOTE] = ACTIONS(3166), - [anon_sym_uR_DQUOTE] = ACTIONS(3166), - [anon_sym_UR_DQUOTE] = ACTIONS(3166), - [anon_sym_u8R_DQUOTE] = ACTIONS(3166), - [anon_sym_co_await] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_requires] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), - }, - [385] = { - [sym_identifier] = ACTIONS(2148), - [aux_sym_preproc_include_token1] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token2] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), - [aux_sym_preproc_else_token1] = ACTIONS(2148), - [aux_sym_preproc_elif_token1] = ACTIONS(2148), - [sym_preproc_directive] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_AMP_AMP] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym___extension__] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym___attribute__] = ACTIONS(2148), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2148), - [anon_sym___based] = ACTIONS(2148), - [anon_sym___cdecl] = ACTIONS(2148), - [anon_sym___clrcall] = ACTIONS(2148), - [anon_sym___stdcall] = ACTIONS(2148), - [anon_sym___fastcall] = ACTIONS(2148), - [anon_sym___thiscall] = ACTIONS(2148), - [anon_sym___vectorcall] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2148), - [anon_sym_unsigned] = ACTIONS(2148), - [anon_sym_long] = ACTIONS(2148), - [anon_sym_short] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym___inline] = ACTIONS(2148), - [anon_sym___inline__] = ACTIONS(2148), - [anon_sym___forceinline] = ACTIONS(2148), - [anon_sym_thread_local] = ACTIONS(2148), - [anon_sym___thread] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_constexpr] = ACTIONS(2148), - [anon_sym_volatile] = ACTIONS(2148), - [anon_sym_restrict] = ACTIONS(2148), - [anon_sym___restrict__] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(2148), - [anon_sym__Noreturn] = ACTIONS(2148), - [anon_sym_noreturn] = ACTIONS(2148), - [anon_sym_mutable] = ACTIONS(2148), - [anon_sym_constinit] = ACTIONS(2148), - [anon_sym_consteval] = ACTIONS(2148), - [sym_primitive_type] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_class] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_else] = ACTIONS(2148), - [anon_sym_switch] = ACTIONS(2148), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_do] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_goto] = ACTIONS(2148), - [anon_sym___try] = ACTIONS(2148), - [anon_sym___leave] = ACTIONS(2148), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2146), - [anon_sym_PLUS_PLUS] = ACTIONS(2146), - [anon_sym_sizeof] = ACTIONS(2148), - [anon_sym___alignof__] = ACTIONS(2148), - [anon_sym___alignof] = ACTIONS(2148), - [anon_sym__alignof] = ACTIONS(2148), - [anon_sym_alignof] = ACTIONS(2148), - [anon_sym__Alignof] = ACTIONS(2148), - [anon_sym_offsetof] = ACTIONS(2148), - [anon_sym__Generic] = ACTIONS(2148), - [anon_sym_asm] = ACTIONS(2148), - [anon_sym___asm__] = ACTIONS(2148), - [sym_number_literal] = ACTIONS(2146), - [anon_sym_L_SQUOTE] = ACTIONS(2146), - [anon_sym_u_SQUOTE] = ACTIONS(2146), - [anon_sym_U_SQUOTE] = ACTIONS(2146), - [anon_sym_u8_SQUOTE] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2146), - [anon_sym_L_DQUOTE] = ACTIONS(2146), - [anon_sym_u_DQUOTE] = ACTIONS(2146), - [anon_sym_U_DQUOTE] = ACTIONS(2146), - [anon_sym_u8_DQUOTE] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym_true] = ACTIONS(2148), - [sym_false] = ACTIONS(2148), - [anon_sym_NULL] = ACTIONS(2148), - [anon_sym_nullptr] = ACTIONS(2148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2148), - [anon_sym_decltype] = ACTIONS(2148), - [anon_sym_virtual] = ACTIONS(2148), - [anon_sym_alignas] = ACTIONS(2148), - [anon_sym_explicit] = ACTIONS(2148), - [anon_sym_typename] = ACTIONS(2148), - [anon_sym_template] = ACTIONS(2148), - [anon_sym_operator] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [anon_sym_delete] = ACTIONS(2148), - [anon_sym_throw] = ACTIONS(2148), - [anon_sym_namespace] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2148), - [anon_sym_static_assert] = ACTIONS(2148), - [anon_sym_concept] = ACTIONS(2148), - [anon_sym_co_return] = ACTIONS(2148), - [anon_sym_co_yield] = ACTIONS(2148), - [anon_sym_catch] = ACTIONS(2148), - [anon_sym_R_DQUOTE] = ACTIONS(2146), - [anon_sym_LR_DQUOTE] = ACTIONS(2146), - [anon_sym_uR_DQUOTE] = ACTIONS(2146), - [anon_sym_UR_DQUOTE] = ACTIONS(2146), - [anon_sym_u8R_DQUOTE] = ACTIONS(2146), - [anon_sym_co_await] = ACTIONS(2148), - [anon_sym_new] = ACTIONS(2148), - [anon_sym_requires] = ACTIONS(2148), - [sym_this] = ACTIONS(2148), - }, - [386] = { - [sym_identifier] = ACTIONS(3168), - [aux_sym_preproc_include_token1] = ACTIONS(3168), - [aux_sym_preproc_def_token1] = ACTIONS(3168), - [aux_sym_preproc_if_token1] = ACTIONS(3168), - [aux_sym_preproc_if_token2] = ACTIONS(3168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), - [aux_sym_preproc_else_token1] = ACTIONS(3168), - [aux_sym_preproc_elif_token1] = ACTIONS(3168), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3168), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3168), - [sym_preproc_directive] = ACTIONS(3168), - [anon_sym_LPAREN2] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3170), - [anon_sym_AMP_AMP] = ACTIONS(3170), - [anon_sym_AMP] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym___extension__] = ACTIONS(3168), - [anon_sym_typedef] = ACTIONS(3168), - [anon_sym_extern] = ACTIONS(3168), - [anon_sym___attribute__] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), - [anon_sym___declspec] = ACTIONS(3168), - [anon_sym___based] = ACTIONS(3168), - [anon_sym___cdecl] = ACTIONS(3168), - [anon_sym___clrcall] = ACTIONS(3168), - [anon_sym___stdcall] = ACTIONS(3168), - [anon_sym___fastcall] = ACTIONS(3168), - [anon_sym___thiscall] = ACTIONS(3168), - [anon_sym___vectorcall] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_signed] = ACTIONS(3168), - [anon_sym_unsigned] = ACTIONS(3168), - [anon_sym_long] = ACTIONS(3168), - [anon_sym_short] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_register] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym___inline] = ACTIONS(3168), - [anon_sym___inline__] = ACTIONS(3168), - [anon_sym___forceinline] = ACTIONS(3168), - [anon_sym_thread_local] = ACTIONS(3168), - [anon_sym___thread] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_constexpr] = ACTIONS(3168), - [anon_sym_volatile] = ACTIONS(3168), - [anon_sym_restrict] = ACTIONS(3168), - [anon_sym___restrict__] = ACTIONS(3168), - [anon_sym__Atomic] = ACTIONS(3168), - [anon_sym__Noreturn] = ACTIONS(3168), - [anon_sym_noreturn] = ACTIONS(3168), - [anon_sym_mutable] = ACTIONS(3168), - [anon_sym_constinit] = ACTIONS(3168), - [anon_sym_consteval] = ACTIONS(3168), - [sym_primitive_type] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_struct] = ACTIONS(3168), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_case] = ACTIONS(3168), - [anon_sym_default] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_goto] = ACTIONS(3168), - [anon_sym___try] = ACTIONS(3168), - [anon_sym___leave] = ACTIONS(3168), - [anon_sym_not] = ACTIONS(3168), - [anon_sym_compl] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_sizeof] = ACTIONS(3168), - [anon_sym___alignof__] = ACTIONS(3168), - [anon_sym___alignof] = ACTIONS(3168), - [anon_sym__alignof] = ACTIONS(3168), - [anon_sym_alignof] = ACTIONS(3168), - [anon_sym__Alignof] = ACTIONS(3168), - [anon_sym_offsetof] = ACTIONS(3168), - [anon_sym__Generic] = ACTIONS(3168), - [anon_sym_asm] = ACTIONS(3168), - [anon_sym___asm__] = ACTIONS(3168), - [sym_number_literal] = ACTIONS(3170), - [anon_sym_L_SQUOTE] = ACTIONS(3170), - [anon_sym_u_SQUOTE] = ACTIONS(3170), - [anon_sym_U_SQUOTE] = ACTIONS(3170), - [anon_sym_u8_SQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [anon_sym_L_DQUOTE] = ACTIONS(3170), - [anon_sym_u_DQUOTE] = ACTIONS(3170), - [anon_sym_U_DQUOTE] = ACTIONS(3170), - [anon_sym_u8_DQUOTE] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [anon_sym_NULL] = ACTIONS(3168), - [anon_sym_nullptr] = ACTIONS(3168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3168), - [anon_sym_decltype] = ACTIONS(3168), - [anon_sym_virtual] = ACTIONS(3168), - [anon_sym_alignas] = ACTIONS(3168), - [anon_sym_explicit] = ACTIONS(3168), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3168), - [anon_sym_static_assert] = ACTIONS(3168), - [anon_sym_concept] = ACTIONS(3168), - [anon_sym_co_return] = ACTIONS(3168), - [anon_sym_co_yield] = ACTIONS(3168), - [anon_sym_R_DQUOTE] = ACTIONS(3170), - [anon_sym_LR_DQUOTE] = ACTIONS(3170), - [anon_sym_uR_DQUOTE] = ACTIONS(3170), - [anon_sym_UR_DQUOTE] = ACTIONS(3170), - [anon_sym_u8R_DQUOTE] = ACTIONS(3170), - [anon_sym_co_await] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_requires] = ACTIONS(3168), - [sym_this] = ACTIONS(3168), - }, - [387] = { - [sym_identifier] = ACTIONS(3172), - [aux_sym_preproc_include_token1] = ACTIONS(3172), - [aux_sym_preproc_def_token1] = ACTIONS(3172), - [aux_sym_preproc_if_token1] = ACTIONS(3172), - [aux_sym_preproc_if_token2] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), - [aux_sym_preproc_else_token1] = ACTIONS(3172), - [aux_sym_preproc_elif_token1] = ACTIONS(3172), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3172), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3172), - [sym_preproc_directive] = ACTIONS(3172), - [anon_sym_LPAREN2] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_STAR] = ACTIONS(3174), - [anon_sym_AMP_AMP] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym___extension__] = ACTIONS(3172), - [anon_sym_typedef] = ACTIONS(3172), - [anon_sym_extern] = ACTIONS(3172), - [anon_sym___attribute__] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), - [anon_sym___declspec] = ACTIONS(3172), - [anon_sym___based] = ACTIONS(3172), - [anon_sym___cdecl] = ACTIONS(3172), - [anon_sym___clrcall] = ACTIONS(3172), - [anon_sym___stdcall] = ACTIONS(3172), - [anon_sym___fastcall] = ACTIONS(3172), - [anon_sym___thiscall] = ACTIONS(3172), - [anon_sym___vectorcall] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_signed] = ACTIONS(3172), - [anon_sym_unsigned] = ACTIONS(3172), - [anon_sym_long] = ACTIONS(3172), - [anon_sym_short] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_register] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym___inline] = ACTIONS(3172), - [anon_sym___inline__] = ACTIONS(3172), - [anon_sym___forceinline] = ACTIONS(3172), - [anon_sym_thread_local] = ACTIONS(3172), - [anon_sym___thread] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_constexpr] = ACTIONS(3172), - [anon_sym_volatile] = ACTIONS(3172), - [anon_sym_restrict] = ACTIONS(3172), - [anon_sym___restrict__] = ACTIONS(3172), - [anon_sym__Atomic] = ACTIONS(3172), - [anon_sym__Noreturn] = ACTIONS(3172), - [anon_sym_noreturn] = ACTIONS(3172), - [anon_sym_mutable] = ACTIONS(3172), - [anon_sym_constinit] = ACTIONS(3172), - [anon_sym_consteval] = ACTIONS(3172), - [sym_primitive_type] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_struct] = ACTIONS(3172), - [anon_sym_union] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_case] = ACTIONS(3172), - [anon_sym_default] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_goto] = ACTIONS(3172), - [anon_sym___try] = ACTIONS(3172), - [anon_sym___leave] = ACTIONS(3172), - [anon_sym_not] = ACTIONS(3172), - [anon_sym_compl] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_sizeof] = ACTIONS(3172), - [anon_sym___alignof__] = ACTIONS(3172), - [anon_sym___alignof] = ACTIONS(3172), - [anon_sym__alignof] = ACTIONS(3172), - [anon_sym_alignof] = ACTIONS(3172), - [anon_sym__Alignof] = ACTIONS(3172), - [anon_sym_offsetof] = ACTIONS(3172), - [anon_sym__Generic] = ACTIONS(3172), - [anon_sym_asm] = ACTIONS(3172), - [anon_sym___asm__] = ACTIONS(3172), - [sym_number_literal] = ACTIONS(3174), - [anon_sym_L_SQUOTE] = ACTIONS(3174), - [anon_sym_u_SQUOTE] = ACTIONS(3174), - [anon_sym_U_SQUOTE] = ACTIONS(3174), - [anon_sym_u8_SQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_L_DQUOTE] = ACTIONS(3174), - [anon_sym_u_DQUOTE] = ACTIONS(3174), - [anon_sym_U_DQUOTE] = ACTIONS(3174), - [anon_sym_u8_DQUOTE] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [anon_sym_NULL] = ACTIONS(3172), - [anon_sym_nullptr] = ACTIONS(3172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3172), - [anon_sym_decltype] = ACTIONS(3172), - [anon_sym_virtual] = ACTIONS(3172), - [anon_sym_alignas] = ACTIONS(3172), - [anon_sym_explicit] = ACTIONS(3172), - [anon_sym_typename] = ACTIONS(3172), - [anon_sym_template] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_static_assert] = ACTIONS(3172), - [anon_sym_concept] = ACTIONS(3172), - [anon_sym_co_return] = ACTIONS(3172), - [anon_sym_co_yield] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_requires] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - }, - [388] = { - [sym_identifier] = ACTIONS(3176), - [aux_sym_preproc_include_token1] = ACTIONS(3176), - [aux_sym_preproc_def_token1] = ACTIONS(3176), - [aux_sym_preproc_if_token1] = ACTIONS(3176), - [aux_sym_preproc_if_token2] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), - [aux_sym_preproc_else_token1] = ACTIONS(3176), - [aux_sym_preproc_elif_token1] = ACTIONS(3176), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3176), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3176), - [sym_preproc_directive] = ACTIONS(3176), - [anon_sym_LPAREN2] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym___extension__] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3176), - [anon_sym_extern] = ACTIONS(3176), - [anon_sym___attribute__] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(3178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), - [anon_sym___declspec] = ACTIONS(3176), - [anon_sym___based] = ACTIONS(3176), - [anon_sym___cdecl] = ACTIONS(3176), - [anon_sym___clrcall] = ACTIONS(3176), - [anon_sym___stdcall] = ACTIONS(3176), - [anon_sym___fastcall] = ACTIONS(3176), - [anon_sym___thiscall] = ACTIONS(3176), - [anon_sym___vectorcall] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_signed] = ACTIONS(3176), - [anon_sym_unsigned] = ACTIONS(3176), - [anon_sym_long] = ACTIONS(3176), - [anon_sym_short] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_register] = ACTIONS(3176), - [anon_sym_inline] = ACTIONS(3176), - [anon_sym___inline] = ACTIONS(3176), - [anon_sym___inline__] = ACTIONS(3176), - [anon_sym___forceinline] = ACTIONS(3176), - [anon_sym_thread_local] = ACTIONS(3176), - [anon_sym___thread] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_constexpr] = ACTIONS(3176), - [anon_sym_volatile] = ACTIONS(3176), - [anon_sym_restrict] = ACTIONS(3176), - [anon_sym___restrict__] = ACTIONS(3176), - [anon_sym__Atomic] = ACTIONS(3176), - [anon_sym__Noreturn] = ACTIONS(3176), - [anon_sym_noreturn] = ACTIONS(3176), - [anon_sym_mutable] = ACTIONS(3176), - [anon_sym_constinit] = ACTIONS(3176), - [anon_sym_consteval] = ACTIONS(3176), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_struct] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_case] = ACTIONS(3176), - [anon_sym_default] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_goto] = ACTIONS(3176), - [anon_sym___try] = ACTIONS(3176), - [anon_sym___leave] = ACTIONS(3176), - [anon_sym_not] = ACTIONS(3176), - [anon_sym_compl] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3176), - [anon_sym___alignof__] = ACTIONS(3176), - [anon_sym___alignof] = ACTIONS(3176), - [anon_sym__alignof] = ACTIONS(3176), - [anon_sym_alignof] = ACTIONS(3176), - [anon_sym__Alignof] = ACTIONS(3176), - [anon_sym_offsetof] = ACTIONS(3176), - [anon_sym__Generic] = ACTIONS(3176), - [anon_sym_asm] = ACTIONS(3176), - [anon_sym___asm__] = ACTIONS(3176), - [sym_number_literal] = ACTIONS(3178), - [anon_sym_L_SQUOTE] = ACTIONS(3178), - [anon_sym_u_SQUOTE] = ACTIONS(3178), - [anon_sym_U_SQUOTE] = ACTIONS(3178), - [anon_sym_u8_SQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_L_DQUOTE] = ACTIONS(3178), - [anon_sym_u_DQUOTE] = ACTIONS(3178), - [anon_sym_U_DQUOTE] = ACTIONS(3178), - [anon_sym_u8_DQUOTE] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [anon_sym_NULL] = ACTIONS(3176), - [anon_sym_nullptr] = ACTIONS(3176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3176), - [anon_sym_decltype] = ACTIONS(3176), - [anon_sym_virtual] = ACTIONS(3176), - [anon_sym_alignas] = ACTIONS(3176), - [anon_sym_explicit] = ACTIONS(3176), - [anon_sym_typename] = ACTIONS(3176), - [anon_sym_template] = ACTIONS(3176), - [anon_sym_operator] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_static_assert] = ACTIONS(3176), - [anon_sym_concept] = ACTIONS(3176), - [anon_sym_co_return] = ACTIONS(3176), - [anon_sym_co_yield] = ACTIONS(3176), - [anon_sym_R_DQUOTE] = ACTIONS(3178), - [anon_sym_LR_DQUOTE] = ACTIONS(3178), - [anon_sym_uR_DQUOTE] = ACTIONS(3178), - [anon_sym_UR_DQUOTE] = ACTIONS(3178), - [anon_sym_u8R_DQUOTE] = ACTIONS(3178), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_requires] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), - }, - [389] = { - [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_extern] = ACTIONS(3180), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3180), - [anon_sym_constinit] = ACTIONS(3180), - [anon_sym_consteval] = 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_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_virtual] = ACTIONS(3180), - [anon_sym_alignas] = ACTIONS(3180), - [anon_sym_explicit] = ACTIONS(3180), - [anon_sym_typename] = 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_using] = 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_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), - [sym_this] = ACTIONS(3180), - }, - [390] = { - [sym_preproc_def] = STATE(816), - [sym_preproc_function_def] = STATE(816), - [sym_preproc_call] = STATE(816), - [sym_preproc_elifdef] = STATE(8767), - [sym_preproc_if_in_field_declaration_list] = STATE(816), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(816), - [sym_preproc_else_in_field_declaration_list] = STATE(8767), - [sym_preproc_elif_in_field_declaration_list] = STATE(8767), - [sym_type_definition] = STATE(816), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6173), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6781), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(816), - [sym_field_declaration] = STATE(816), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2007), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(816), - [sym_operator_cast] = STATE(7163), - [sym_inline_method_definition] = STATE(816), - [sym__constructor_specifiers] = STATE(2007), - [sym_operator_cast_definition] = STATE(816), - [sym_operator_cast_declaration] = STATE(816), - [sym_constructor_or_destructor_definition] = STATE(816), - [sym_constructor_or_destructor_declaration] = STATE(816), - [sym_friend_declaration] = STATE(816), - [sym_access_specifier] = STATE(8986), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(816), - [sym_alias_declaration] = STATE(816), - [sym_static_assert_declaration] = STATE(816), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7163), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(816), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2007), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3002), - [aux_sym_preproc_if_token1] = ACTIONS(3004), - [aux_sym_preproc_if_token2] = ACTIONS(3184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(279), - [aux_sym_preproc_elifdef_token2] = ACTIONS(279), - [sym_preproc_directive] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3024), - [anon_sym_typedef] = ACTIONS(3026), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3050), - [anon_sym_static_assert] = ACTIONS(3052), + [390] = { + [sym_identifier] = ACTIONS(3183), + [aux_sym_preproc_include_token1] = ACTIONS(3183), + [aux_sym_preproc_def_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token2] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), + [aux_sym_preproc_else_token1] = ACTIONS(3183), + [aux_sym_preproc_elif_token1] = ACTIONS(3183), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3183), + [anon_sym_LPAREN2] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_AMP_AMP] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym___extension__] = ACTIONS(3183), + [anon_sym_typedef] = ACTIONS(3183), + [anon_sym_extern] = ACTIONS(3183), + [anon_sym___attribute__] = ACTIONS(3183), + [anon_sym_COLON_COLON] = ACTIONS(3185), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), + [anon_sym___declspec] = ACTIONS(3183), + [anon_sym___based] = ACTIONS(3183), + [anon_sym___cdecl] = ACTIONS(3183), + [anon_sym___clrcall] = ACTIONS(3183), + [anon_sym___stdcall] = ACTIONS(3183), + [anon_sym___fastcall] = ACTIONS(3183), + [anon_sym___thiscall] = ACTIONS(3183), + [anon_sym___vectorcall] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_signed] = ACTIONS(3183), + [anon_sym_unsigned] = ACTIONS(3183), + [anon_sym_long] = ACTIONS(3183), + [anon_sym_short] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_register] = ACTIONS(3183), + [anon_sym_inline] = ACTIONS(3183), + [anon_sym___inline] = ACTIONS(3183), + [anon_sym___inline__] = ACTIONS(3183), + [anon_sym___forceinline] = ACTIONS(3183), + [anon_sym_thread_local] = ACTIONS(3183), + [anon_sym___thread] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_constexpr] = ACTIONS(3183), + [anon_sym_volatile] = ACTIONS(3183), + [anon_sym_restrict] = ACTIONS(3183), + [anon_sym___restrict__] = ACTIONS(3183), + [anon_sym__Atomic] = ACTIONS(3183), + [anon_sym__Noreturn] = ACTIONS(3183), + [anon_sym_noreturn] = ACTIONS(3183), + [anon_sym_mutable] = ACTIONS(3183), + [anon_sym_constinit] = ACTIONS(3183), + [anon_sym_consteval] = ACTIONS(3183), + [sym_primitive_type] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_goto] = ACTIONS(3183), + [anon_sym___try] = ACTIONS(3183), + [anon_sym___leave] = ACTIONS(3183), + [anon_sym_not] = ACTIONS(3183), + [anon_sym_compl] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3183), + [anon_sym___alignof__] = ACTIONS(3183), + [anon_sym___alignof] = ACTIONS(3183), + [anon_sym__alignof] = ACTIONS(3183), + [anon_sym_alignof] = ACTIONS(3183), + [anon_sym__Alignof] = ACTIONS(3183), + [anon_sym_offsetof] = ACTIONS(3183), + [anon_sym__Generic] = ACTIONS(3183), + [anon_sym_asm] = ACTIONS(3183), + [anon_sym___asm__] = ACTIONS(3183), + [sym_number_literal] = ACTIONS(3185), + [anon_sym_L_SQUOTE] = ACTIONS(3185), + [anon_sym_u_SQUOTE] = ACTIONS(3185), + [anon_sym_U_SQUOTE] = ACTIONS(3185), + [anon_sym_u8_SQUOTE] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3185), + [anon_sym_L_DQUOTE] = ACTIONS(3185), + [anon_sym_u_DQUOTE] = ACTIONS(3185), + [anon_sym_U_DQUOTE] = ACTIONS(3185), + [anon_sym_u8_DQUOTE] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3185), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [anon_sym_NULL] = ACTIONS(3183), + [anon_sym_nullptr] = ACTIONS(3183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3183), + [anon_sym_decltype] = ACTIONS(3183), + [anon_sym_virtual] = ACTIONS(3183), + [anon_sym_alignas] = ACTIONS(3183), + [anon_sym_explicit] = ACTIONS(3183), + [anon_sym_typename] = ACTIONS(3183), + [anon_sym_template] = ACTIONS(3183), + [anon_sym_operator] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_static_assert] = ACTIONS(3183), + [anon_sym_concept] = ACTIONS(3183), + [anon_sym_co_return] = ACTIONS(3183), + [anon_sym_co_yield] = ACTIONS(3183), + [anon_sym_R_DQUOTE] = ACTIONS(3185), + [anon_sym_LR_DQUOTE] = ACTIONS(3185), + [anon_sym_uR_DQUOTE] = ACTIONS(3185), + [anon_sym_UR_DQUOTE] = ACTIONS(3185), + [anon_sym_u8R_DQUOTE] = ACTIONS(3185), + [anon_sym_co_await] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_requires] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), }, [391] = { - [sym_identifier] = ACTIONS(3186), - [aux_sym_preproc_include_token1] = ACTIONS(3186), - [aux_sym_preproc_def_token1] = ACTIONS(3186), - [aux_sym_preproc_if_token1] = ACTIONS(3186), - [aux_sym_preproc_if_token2] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3186), - [aux_sym_preproc_else_token1] = ACTIONS(3186), - [aux_sym_preproc_elif_token1] = ACTIONS(3186), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3186), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3186), - [sym_preproc_directive] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym___extension__] = ACTIONS(3186), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym___attribute__] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3188), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3188), - [anon_sym___declspec] = ACTIONS(3186), - [anon_sym___based] = ACTIONS(3186), - [anon_sym___cdecl] = ACTIONS(3186), - [anon_sym___clrcall] = ACTIONS(3186), - [anon_sym___stdcall] = ACTIONS(3186), - [anon_sym___fastcall] = ACTIONS(3186), - [anon_sym___thiscall] = ACTIONS(3186), - [anon_sym___vectorcall] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_signed] = ACTIONS(3186), - [anon_sym_unsigned] = ACTIONS(3186), - [anon_sym_long] = ACTIONS(3186), - [anon_sym_short] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_register] = ACTIONS(3186), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym___inline] = ACTIONS(3186), - [anon_sym___inline__] = ACTIONS(3186), - [anon_sym___forceinline] = ACTIONS(3186), - [anon_sym_thread_local] = ACTIONS(3186), - [anon_sym___thread] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_constexpr] = ACTIONS(3186), - [anon_sym_volatile] = ACTIONS(3186), - [anon_sym_restrict] = ACTIONS(3186), - [anon_sym___restrict__] = ACTIONS(3186), - [anon_sym__Atomic] = ACTIONS(3186), - [anon_sym__Noreturn] = ACTIONS(3186), - [anon_sym_noreturn] = ACTIONS(3186), - [anon_sym_mutable] = ACTIONS(3186), - [anon_sym_constinit] = ACTIONS(3186), - [anon_sym_consteval] = ACTIONS(3186), - [sym_primitive_type] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_struct] = ACTIONS(3186), - [anon_sym_union] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_goto] = ACTIONS(3186), - [anon_sym___try] = ACTIONS(3186), - [anon_sym___leave] = ACTIONS(3186), - [anon_sym_not] = ACTIONS(3186), - [anon_sym_compl] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_sizeof] = ACTIONS(3186), - [anon_sym___alignof__] = ACTIONS(3186), - [anon_sym___alignof] = ACTIONS(3186), - [anon_sym__alignof] = ACTIONS(3186), - [anon_sym_alignof] = ACTIONS(3186), - [anon_sym__Alignof] = ACTIONS(3186), - [anon_sym_offsetof] = ACTIONS(3186), - [anon_sym__Generic] = ACTIONS(3186), - [anon_sym_asm] = ACTIONS(3186), - [anon_sym___asm__] = ACTIONS(3186), - [sym_number_literal] = ACTIONS(3188), - [anon_sym_L_SQUOTE] = ACTIONS(3188), - [anon_sym_u_SQUOTE] = ACTIONS(3188), - [anon_sym_U_SQUOTE] = ACTIONS(3188), - [anon_sym_u8_SQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_L_DQUOTE] = ACTIONS(3188), - [anon_sym_u_DQUOTE] = ACTIONS(3188), - [anon_sym_U_DQUOTE] = ACTIONS(3188), - [anon_sym_u8_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [anon_sym_NULL] = ACTIONS(3186), - [anon_sym_nullptr] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3186), - [anon_sym_decltype] = ACTIONS(3186), - [anon_sym_virtual] = ACTIONS(3186), - [anon_sym_alignas] = ACTIONS(3186), - [anon_sym_explicit] = ACTIONS(3186), - [anon_sym_typename] = ACTIONS(3186), - [anon_sym_template] = ACTIONS(3186), - [anon_sym_operator] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_static_assert] = ACTIONS(3186), - [anon_sym_concept] = ACTIONS(3186), - [anon_sym_co_return] = ACTIONS(3186), - [anon_sym_co_yield] = ACTIONS(3186), - [anon_sym_R_DQUOTE] = ACTIONS(3188), - [anon_sym_LR_DQUOTE] = ACTIONS(3188), - [anon_sym_uR_DQUOTE] = ACTIONS(3188), - [anon_sym_UR_DQUOTE] = ACTIONS(3188), - [anon_sym_u8R_DQUOTE] = ACTIONS(3188), - [anon_sym_co_await] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_requires] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), + [sym_identifier] = ACTIONS(3187), + [aux_sym_preproc_include_token1] = ACTIONS(3187), + [aux_sym_preproc_def_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token2] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3187), + [aux_sym_preproc_else_token1] = ACTIONS(3187), + [aux_sym_preproc_elif_token1] = ACTIONS(3187), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3187), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3187), + [sym_preproc_directive] = ACTIONS(3187), + [anon_sym_LPAREN2] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym___extension__] = ACTIONS(3187), + [anon_sym_typedef] = ACTIONS(3187), + [anon_sym_extern] = ACTIONS(3187), + [anon_sym___attribute__] = ACTIONS(3187), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3189), + [anon_sym___declspec] = ACTIONS(3187), + [anon_sym___based] = ACTIONS(3187), + [anon_sym___cdecl] = ACTIONS(3187), + [anon_sym___clrcall] = ACTIONS(3187), + [anon_sym___stdcall] = ACTIONS(3187), + [anon_sym___fastcall] = ACTIONS(3187), + [anon_sym___thiscall] = ACTIONS(3187), + [anon_sym___vectorcall] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3187), + [anon_sym_unsigned] = ACTIONS(3187), + [anon_sym_long] = ACTIONS(3187), + [anon_sym_short] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_register] = ACTIONS(3187), + [anon_sym_inline] = ACTIONS(3187), + [anon_sym___inline] = ACTIONS(3187), + [anon_sym___inline__] = ACTIONS(3187), + [anon_sym___forceinline] = ACTIONS(3187), + [anon_sym_thread_local] = ACTIONS(3187), + [anon_sym___thread] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_constexpr] = ACTIONS(3187), + [anon_sym_volatile] = ACTIONS(3187), + [anon_sym_restrict] = ACTIONS(3187), + [anon_sym___restrict__] = ACTIONS(3187), + [anon_sym__Atomic] = ACTIONS(3187), + [anon_sym__Noreturn] = ACTIONS(3187), + [anon_sym_noreturn] = ACTIONS(3187), + [anon_sym_mutable] = ACTIONS(3187), + [anon_sym_constinit] = ACTIONS(3187), + [anon_sym_consteval] = ACTIONS(3187), + [sym_primitive_type] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_goto] = ACTIONS(3187), + [anon_sym___try] = ACTIONS(3187), + [anon_sym___leave] = ACTIONS(3187), + [anon_sym_not] = ACTIONS(3187), + [anon_sym_compl] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_sizeof] = ACTIONS(3187), + [anon_sym___alignof__] = ACTIONS(3187), + [anon_sym___alignof] = ACTIONS(3187), + [anon_sym__alignof] = ACTIONS(3187), + [anon_sym_alignof] = ACTIONS(3187), + [anon_sym__Alignof] = ACTIONS(3187), + [anon_sym_offsetof] = ACTIONS(3187), + [anon_sym__Generic] = ACTIONS(3187), + [anon_sym_asm] = ACTIONS(3187), + [anon_sym___asm__] = ACTIONS(3187), + [sym_number_literal] = ACTIONS(3189), + [anon_sym_L_SQUOTE] = ACTIONS(3189), + [anon_sym_u_SQUOTE] = ACTIONS(3189), + [anon_sym_U_SQUOTE] = ACTIONS(3189), + [anon_sym_u8_SQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_L_DQUOTE] = ACTIONS(3189), + [anon_sym_u_DQUOTE] = ACTIONS(3189), + [anon_sym_U_DQUOTE] = ACTIONS(3189), + [anon_sym_u8_DQUOTE] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3187), + [anon_sym_nullptr] = ACTIONS(3187), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3187), + [anon_sym_decltype] = ACTIONS(3187), + [anon_sym_virtual] = ACTIONS(3187), + [anon_sym_alignas] = ACTIONS(3187), + [anon_sym_explicit] = ACTIONS(3187), + [anon_sym_typename] = ACTIONS(3187), + [anon_sym_template] = ACTIONS(3187), + [anon_sym_operator] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_static_assert] = ACTIONS(3187), + [anon_sym_concept] = ACTIONS(3187), + [anon_sym_co_return] = ACTIONS(3187), + [anon_sym_co_yield] = ACTIONS(3187), + [anon_sym_R_DQUOTE] = ACTIONS(3189), + [anon_sym_LR_DQUOTE] = ACTIONS(3189), + [anon_sym_uR_DQUOTE] = ACTIONS(3189), + [anon_sym_UR_DQUOTE] = ACTIONS(3189), + [anon_sym_u8R_DQUOTE] = ACTIONS(3189), + [anon_sym_co_await] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_requires] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), }, [392] = { - [sym_identifier] = ACTIONS(3190), - [aux_sym_preproc_include_token1] = ACTIONS(3190), - [aux_sym_preproc_def_token1] = ACTIONS(3190), - [aux_sym_preproc_if_token1] = ACTIONS(3190), - [aux_sym_preproc_if_token2] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3190), - [aux_sym_preproc_else_token1] = ACTIONS(3190), - [aux_sym_preproc_elif_token1] = ACTIONS(3190), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3190), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3190), - [sym_preproc_directive] = ACTIONS(3190), - [anon_sym_LPAREN2] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_STAR] = ACTIONS(3192), - [anon_sym_AMP_AMP] = ACTIONS(3192), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym___extension__] = ACTIONS(3190), - [anon_sym_typedef] = ACTIONS(3190), - [anon_sym_extern] = ACTIONS(3190), - [anon_sym___attribute__] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(3192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3192), - [anon_sym___declspec] = ACTIONS(3190), - [anon_sym___based] = ACTIONS(3190), - [anon_sym___cdecl] = ACTIONS(3190), - [anon_sym___clrcall] = ACTIONS(3190), - [anon_sym___stdcall] = ACTIONS(3190), - [anon_sym___fastcall] = ACTIONS(3190), - [anon_sym___thiscall] = ACTIONS(3190), - [anon_sym___vectorcall] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_signed] = ACTIONS(3190), - [anon_sym_unsigned] = ACTIONS(3190), - [anon_sym_long] = ACTIONS(3190), - [anon_sym_short] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_register] = ACTIONS(3190), - [anon_sym_inline] = ACTIONS(3190), - [anon_sym___inline] = ACTIONS(3190), - [anon_sym___inline__] = ACTIONS(3190), - [anon_sym___forceinline] = ACTIONS(3190), - [anon_sym_thread_local] = ACTIONS(3190), - [anon_sym___thread] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_constexpr] = ACTIONS(3190), - [anon_sym_volatile] = ACTIONS(3190), - [anon_sym_restrict] = ACTIONS(3190), - [anon_sym___restrict__] = ACTIONS(3190), - [anon_sym__Atomic] = ACTIONS(3190), - [anon_sym__Noreturn] = ACTIONS(3190), - [anon_sym_noreturn] = ACTIONS(3190), - [anon_sym_mutable] = ACTIONS(3190), - [anon_sym_constinit] = ACTIONS(3190), - [anon_sym_consteval] = ACTIONS(3190), - [sym_primitive_type] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_struct] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3190), - [anon_sym_default] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_goto] = ACTIONS(3190), - [anon_sym___try] = ACTIONS(3190), - [anon_sym___leave] = ACTIONS(3190), - [anon_sym_not] = ACTIONS(3190), - [anon_sym_compl] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_sizeof] = ACTIONS(3190), - [anon_sym___alignof__] = ACTIONS(3190), - [anon_sym___alignof] = ACTIONS(3190), - [anon_sym__alignof] = ACTIONS(3190), - [anon_sym_alignof] = ACTIONS(3190), - [anon_sym__Alignof] = ACTIONS(3190), - [anon_sym_offsetof] = ACTIONS(3190), - [anon_sym__Generic] = ACTIONS(3190), - [anon_sym_asm] = ACTIONS(3190), - [anon_sym___asm__] = ACTIONS(3190), - [sym_number_literal] = ACTIONS(3192), - [anon_sym_L_SQUOTE] = ACTIONS(3192), - [anon_sym_u_SQUOTE] = ACTIONS(3192), - [anon_sym_U_SQUOTE] = ACTIONS(3192), - [anon_sym_u8_SQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_L_DQUOTE] = ACTIONS(3192), - [anon_sym_u_DQUOTE] = ACTIONS(3192), - [anon_sym_U_DQUOTE] = ACTIONS(3192), - [anon_sym_u8_DQUOTE] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [anon_sym_NULL] = ACTIONS(3190), - [anon_sym_nullptr] = ACTIONS(3190), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3190), - [anon_sym_decltype] = ACTIONS(3190), - [anon_sym_virtual] = ACTIONS(3190), - [anon_sym_alignas] = ACTIONS(3190), - [anon_sym_explicit] = ACTIONS(3190), - [anon_sym_typename] = ACTIONS(3190), - [anon_sym_template] = ACTIONS(3190), - [anon_sym_operator] = ACTIONS(3190), - [anon_sym_try] = ACTIONS(3190), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_throw] = ACTIONS(3190), - [anon_sym_namespace] = ACTIONS(3190), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_static_assert] = ACTIONS(3190), - [anon_sym_concept] = ACTIONS(3190), - [anon_sym_co_return] = ACTIONS(3190), - [anon_sym_co_yield] = ACTIONS(3190), - [anon_sym_R_DQUOTE] = ACTIONS(3192), - [anon_sym_LR_DQUOTE] = ACTIONS(3192), - [anon_sym_uR_DQUOTE] = ACTIONS(3192), - [anon_sym_UR_DQUOTE] = ACTIONS(3192), - [anon_sym_u8R_DQUOTE] = ACTIONS(3192), - [anon_sym_co_await] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_requires] = ACTIONS(3190), - [sym_this] = ACTIONS(3190), + [sym_identifier] = ACTIONS(3191), + [aux_sym_preproc_include_token1] = ACTIONS(3191), + [aux_sym_preproc_def_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token2] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3191), + [aux_sym_preproc_else_token1] = ACTIONS(3191), + [aux_sym_preproc_elif_token1] = ACTIONS(3191), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3191), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3191), + [sym_preproc_directive] = ACTIONS(3191), + [anon_sym_LPAREN2] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym___extension__] = ACTIONS(3191), + [anon_sym_typedef] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym___attribute__] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(3193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3193), + [anon_sym___declspec] = ACTIONS(3191), + [anon_sym___based] = ACTIONS(3191), + [anon_sym___cdecl] = ACTIONS(3191), + [anon_sym___clrcall] = ACTIONS(3191), + [anon_sym___stdcall] = ACTIONS(3191), + [anon_sym___fastcall] = ACTIONS(3191), + [anon_sym___thiscall] = ACTIONS(3191), + [anon_sym___vectorcall] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_signed] = ACTIONS(3191), + [anon_sym_unsigned] = ACTIONS(3191), + [anon_sym_long] = ACTIONS(3191), + [anon_sym_short] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_register] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym___inline] = ACTIONS(3191), + [anon_sym___inline__] = ACTIONS(3191), + [anon_sym___forceinline] = ACTIONS(3191), + [anon_sym_thread_local] = ACTIONS(3191), + [anon_sym___thread] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_constexpr] = ACTIONS(3191), + [anon_sym_volatile] = ACTIONS(3191), + [anon_sym_restrict] = ACTIONS(3191), + [anon_sym___restrict__] = ACTIONS(3191), + [anon_sym__Atomic] = ACTIONS(3191), + [anon_sym__Noreturn] = ACTIONS(3191), + [anon_sym_noreturn] = ACTIONS(3191), + [anon_sym_mutable] = ACTIONS(3191), + [anon_sym_constinit] = ACTIONS(3191), + [anon_sym_consteval] = ACTIONS(3191), + [sym_primitive_type] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym___try] = ACTIONS(3191), + [anon_sym___leave] = ACTIONS(3191), + [anon_sym_not] = ACTIONS(3191), + [anon_sym_compl] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_sizeof] = ACTIONS(3191), + [anon_sym___alignof__] = ACTIONS(3191), + [anon_sym___alignof] = ACTIONS(3191), + [anon_sym__alignof] = ACTIONS(3191), + [anon_sym_alignof] = ACTIONS(3191), + [anon_sym__Alignof] = ACTIONS(3191), + [anon_sym_offsetof] = ACTIONS(3191), + [anon_sym__Generic] = ACTIONS(3191), + [anon_sym_asm] = ACTIONS(3191), + [anon_sym___asm__] = ACTIONS(3191), + [sym_number_literal] = ACTIONS(3193), + [anon_sym_L_SQUOTE] = ACTIONS(3193), + [anon_sym_u_SQUOTE] = ACTIONS(3193), + [anon_sym_U_SQUOTE] = ACTIONS(3193), + [anon_sym_u8_SQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_L_DQUOTE] = ACTIONS(3193), + [anon_sym_u_DQUOTE] = ACTIONS(3193), + [anon_sym_U_DQUOTE] = ACTIONS(3193), + [anon_sym_u8_DQUOTE] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [anon_sym_NULL] = ACTIONS(3191), + [anon_sym_nullptr] = ACTIONS(3191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3191), + [anon_sym_virtual] = ACTIONS(3191), + [anon_sym_alignas] = ACTIONS(3191), + [anon_sym_explicit] = ACTIONS(3191), + [anon_sym_typename] = ACTIONS(3191), + [anon_sym_template] = ACTIONS(3191), + [anon_sym_operator] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_static_assert] = ACTIONS(3191), + [anon_sym_concept] = ACTIONS(3191), + [anon_sym_co_return] = ACTIONS(3191), + [anon_sym_co_yield] = ACTIONS(3191), + [anon_sym_R_DQUOTE] = ACTIONS(3193), + [anon_sym_LR_DQUOTE] = ACTIONS(3193), + [anon_sym_uR_DQUOTE] = ACTIONS(3193), + [anon_sym_UR_DQUOTE] = ACTIONS(3193), + [anon_sym_u8R_DQUOTE] = ACTIONS(3193), + [anon_sym_co_await] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_requires] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), }, [393] = { - [sym_identifier] = ACTIONS(3194), - [aux_sym_preproc_include_token1] = ACTIONS(3194), - [aux_sym_preproc_def_token1] = ACTIONS(3194), - [aux_sym_preproc_if_token1] = ACTIONS(3194), - [aux_sym_preproc_if_token2] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3194), - [aux_sym_preproc_else_token1] = ACTIONS(3194), - [aux_sym_preproc_elif_token1] = ACTIONS(3194), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3194), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3194), - [sym_preproc_directive] = ACTIONS(3194), - [anon_sym_LPAREN2] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_AMP_AMP] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym___extension__] = ACTIONS(3194), - [anon_sym_typedef] = ACTIONS(3194), - [anon_sym_extern] = ACTIONS(3194), - [anon_sym___attribute__] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3196), - [anon_sym___declspec] = ACTIONS(3194), - [anon_sym___based] = ACTIONS(3194), - [anon_sym___cdecl] = ACTIONS(3194), - [anon_sym___clrcall] = ACTIONS(3194), - [anon_sym___stdcall] = ACTIONS(3194), - [anon_sym___fastcall] = ACTIONS(3194), - [anon_sym___thiscall] = ACTIONS(3194), - [anon_sym___vectorcall] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_signed] = ACTIONS(3194), - [anon_sym_unsigned] = ACTIONS(3194), - [anon_sym_long] = ACTIONS(3194), - [anon_sym_short] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_register] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym___inline] = ACTIONS(3194), - [anon_sym___inline__] = ACTIONS(3194), - [anon_sym___forceinline] = ACTIONS(3194), - [anon_sym_thread_local] = ACTIONS(3194), - [anon_sym___thread] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_constexpr] = ACTIONS(3194), - [anon_sym_volatile] = ACTIONS(3194), - [anon_sym_restrict] = ACTIONS(3194), - [anon_sym___restrict__] = ACTIONS(3194), - [anon_sym__Atomic] = ACTIONS(3194), - [anon_sym__Noreturn] = ACTIONS(3194), - [anon_sym_noreturn] = ACTIONS(3194), - [anon_sym_mutable] = ACTIONS(3194), - [anon_sym_constinit] = ACTIONS(3194), - [anon_sym_consteval] = ACTIONS(3194), - [sym_primitive_type] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_struct] = ACTIONS(3194), - [anon_sym_union] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_goto] = ACTIONS(3194), - [anon_sym___try] = ACTIONS(3194), - [anon_sym___leave] = ACTIONS(3194), - [anon_sym_not] = ACTIONS(3194), - [anon_sym_compl] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_sizeof] = ACTIONS(3194), - [anon_sym___alignof__] = ACTIONS(3194), - [anon_sym___alignof] = ACTIONS(3194), - [anon_sym__alignof] = ACTIONS(3194), - [anon_sym_alignof] = ACTIONS(3194), - [anon_sym__Alignof] = ACTIONS(3194), - [anon_sym_offsetof] = ACTIONS(3194), - [anon_sym__Generic] = ACTIONS(3194), - [anon_sym_asm] = ACTIONS(3194), - [anon_sym___asm__] = ACTIONS(3194), - [sym_number_literal] = ACTIONS(3196), - [anon_sym_L_SQUOTE] = ACTIONS(3196), - [anon_sym_u_SQUOTE] = ACTIONS(3196), - [anon_sym_U_SQUOTE] = ACTIONS(3196), - [anon_sym_u8_SQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_L_DQUOTE] = ACTIONS(3196), - [anon_sym_u_DQUOTE] = ACTIONS(3196), - [anon_sym_U_DQUOTE] = ACTIONS(3196), - [anon_sym_u8_DQUOTE] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [anon_sym_NULL] = ACTIONS(3194), - [anon_sym_nullptr] = ACTIONS(3194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3194), - [anon_sym_decltype] = ACTIONS(3194), - [anon_sym_virtual] = ACTIONS(3194), - [anon_sym_alignas] = ACTIONS(3194), - [anon_sym_explicit] = ACTIONS(3194), - [anon_sym_typename] = ACTIONS(3194), - [anon_sym_template] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_static_assert] = ACTIONS(3194), - [anon_sym_concept] = ACTIONS(3194), - [anon_sym_co_return] = ACTIONS(3194), - [anon_sym_co_yield] = ACTIONS(3194), - [anon_sym_R_DQUOTE] = ACTIONS(3196), - [anon_sym_LR_DQUOTE] = ACTIONS(3196), - [anon_sym_uR_DQUOTE] = ACTIONS(3196), - [anon_sym_UR_DQUOTE] = ACTIONS(3196), - [anon_sym_u8R_DQUOTE] = ACTIONS(3196), - [anon_sym_co_await] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_requires] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), + [sym_identifier] = ACTIONS(3195), + [aux_sym_preproc_include_token1] = ACTIONS(3195), + [aux_sym_preproc_def_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token2] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), + [aux_sym_preproc_else_token1] = ACTIONS(3195), + [aux_sym_preproc_elif_token1] = ACTIONS(3195), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3195), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3195), + [sym_preproc_directive] = ACTIONS(3195), + [anon_sym_LPAREN2] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym___extension__] = ACTIONS(3195), + [anon_sym_typedef] = ACTIONS(3195), + [anon_sym_extern] = ACTIONS(3195), + [anon_sym___attribute__] = ACTIONS(3195), + [anon_sym_COLON_COLON] = ACTIONS(3197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), + [anon_sym___declspec] = ACTIONS(3195), + [anon_sym___based] = ACTIONS(3195), + [anon_sym___cdecl] = ACTIONS(3195), + [anon_sym___clrcall] = ACTIONS(3195), + [anon_sym___stdcall] = ACTIONS(3195), + [anon_sym___fastcall] = ACTIONS(3195), + [anon_sym___thiscall] = ACTIONS(3195), + [anon_sym___vectorcall] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_signed] = ACTIONS(3195), + [anon_sym_unsigned] = ACTIONS(3195), + [anon_sym_long] = ACTIONS(3195), + [anon_sym_short] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_register] = ACTIONS(3195), + [anon_sym_inline] = ACTIONS(3195), + [anon_sym___inline] = ACTIONS(3195), + [anon_sym___inline__] = ACTIONS(3195), + [anon_sym___forceinline] = ACTIONS(3195), + [anon_sym_thread_local] = ACTIONS(3195), + [anon_sym___thread] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_constexpr] = ACTIONS(3195), + [anon_sym_volatile] = ACTIONS(3195), + [anon_sym_restrict] = ACTIONS(3195), + [anon_sym___restrict__] = ACTIONS(3195), + [anon_sym__Atomic] = ACTIONS(3195), + [anon_sym__Noreturn] = ACTIONS(3195), + [anon_sym_noreturn] = ACTIONS(3195), + [anon_sym_mutable] = ACTIONS(3195), + [anon_sym_constinit] = ACTIONS(3195), + [anon_sym_consteval] = ACTIONS(3195), + [sym_primitive_type] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_case] = ACTIONS(3195), + [anon_sym_default] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_goto] = ACTIONS(3195), + [anon_sym___try] = ACTIONS(3195), + [anon_sym___leave] = ACTIONS(3195), + [anon_sym_not] = ACTIONS(3195), + [anon_sym_compl] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_sizeof] = ACTIONS(3195), + [anon_sym___alignof__] = ACTIONS(3195), + [anon_sym___alignof] = ACTIONS(3195), + [anon_sym__alignof] = ACTIONS(3195), + [anon_sym_alignof] = ACTIONS(3195), + [anon_sym__Alignof] = ACTIONS(3195), + [anon_sym_offsetof] = ACTIONS(3195), + [anon_sym__Generic] = ACTIONS(3195), + [anon_sym_asm] = ACTIONS(3195), + [anon_sym___asm__] = ACTIONS(3195), + [sym_number_literal] = ACTIONS(3197), + [anon_sym_L_SQUOTE] = ACTIONS(3197), + [anon_sym_u_SQUOTE] = ACTIONS(3197), + [anon_sym_U_SQUOTE] = ACTIONS(3197), + [anon_sym_u8_SQUOTE] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3197), + [anon_sym_L_DQUOTE] = ACTIONS(3197), + [anon_sym_u_DQUOTE] = ACTIONS(3197), + [anon_sym_U_DQUOTE] = ACTIONS(3197), + [anon_sym_u8_DQUOTE] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(3197), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [anon_sym_NULL] = ACTIONS(3195), + [anon_sym_nullptr] = ACTIONS(3195), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3195), + [anon_sym_decltype] = ACTIONS(3195), + [anon_sym_virtual] = ACTIONS(3195), + [anon_sym_alignas] = ACTIONS(3195), + [anon_sym_explicit] = ACTIONS(3195), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(3195), + [anon_sym_operator] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_static_assert] = ACTIONS(3195), + [anon_sym_concept] = ACTIONS(3195), + [anon_sym_co_return] = ACTIONS(3195), + [anon_sym_co_yield] = ACTIONS(3195), + [anon_sym_R_DQUOTE] = ACTIONS(3197), + [anon_sym_LR_DQUOTE] = ACTIONS(3197), + [anon_sym_uR_DQUOTE] = ACTIONS(3197), + [anon_sym_UR_DQUOTE] = ACTIONS(3197), + [anon_sym_u8R_DQUOTE] = ACTIONS(3197), + [anon_sym_co_await] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_requires] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), }, [394] = { - [sym_catch_clause] = STATE(394), - [aux_sym_constructor_try_statement_repeat1] = STATE(394), - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_include_token1] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym___extension__] = ACTIONS(2813), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym___cdecl] = ACTIONS(2813), - [anon_sym___clrcall] = ACTIONS(2813), - [anon_sym___stdcall] = ACTIONS(2813), - [anon_sym___fastcall] = ACTIONS(2813), - [anon_sym___thiscall] = ACTIONS(2813), - [anon_sym___vectorcall] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym___inline] = ACTIONS(2813), - [anon_sym___inline__] = ACTIONS(2813), - [anon_sym___forceinline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym___thread] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym___restrict__] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym__Noreturn] = ACTIONS(2813), - [anon_sym_noreturn] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_else] = ACTIONS(2813), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_case] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_do] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_goto] = ACTIONS(2813), - [anon_sym___try] = ACTIONS(2813), - [anon_sym___leave] = ACTIONS(2813), - [anon_sym_not] = ACTIONS(2813), - [anon_sym_compl] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_sizeof] = ACTIONS(2813), - [anon_sym___alignof__] = ACTIONS(2813), - [anon_sym___alignof] = ACTIONS(2813), - [anon_sym__alignof] = ACTIONS(2813), - [anon_sym_alignof] = ACTIONS(2813), - [anon_sym__Alignof] = ACTIONS(2813), - [anon_sym_offsetof] = ACTIONS(2813), - [anon_sym__Generic] = ACTIONS(2813), - [anon_sym_asm] = ACTIONS(2813), - [anon_sym___asm__] = ACTIONS(2813), - [sym_number_literal] = ACTIONS(2815), - [anon_sym_L_SQUOTE] = ACTIONS(2815), - [anon_sym_u_SQUOTE] = ACTIONS(2815), - [anon_sym_U_SQUOTE] = ACTIONS(2815), - [anon_sym_u8_SQUOTE] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_L_DQUOTE] = ACTIONS(2815), - [anon_sym_u_DQUOTE] = ACTIONS(2815), - [anon_sym_U_DQUOTE] = ACTIONS(2815), - [anon_sym_u8_DQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [anon_sym_NULL] = ACTIONS(2813), - [anon_sym_nullptr] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_alignas] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_delete] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_namespace] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_concept] = ACTIONS(2813), - [anon_sym_co_return] = ACTIONS(2813), - [anon_sym_co_yield] = ACTIONS(2813), - [anon_sym_catch] = ACTIONS(3198), - [anon_sym_R_DQUOTE] = ACTIONS(2815), - [anon_sym_LR_DQUOTE] = ACTIONS(2815), - [anon_sym_uR_DQUOTE] = ACTIONS(2815), - [anon_sym_UR_DQUOTE] = ACTIONS(2815), - [anon_sym_u8R_DQUOTE] = ACTIONS(2815), - [anon_sym_co_await] = ACTIONS(2813), - [anon_sym_new] = ACTIONS(2813), - [anon_sym_requires] = ACTIONS(2813), - [sym_this] = ACTIONS(2813), + [sym_identifier] = ACTIONS(3199), + [aux_sym_preproc_include_token1] = ACTIONS(3199), + [aux_sym_preproc_def_token1] = ACTIONS(3199), + [aux_sym_preproc_if_token1] = ACTIONS(3199), + [aux_sym_preproc_if_token2] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3199), + [aux_sym_preproc_else_token1] = ACTIONS(3199), + [aux_sym_preproc_elif_token1] = ACTIONS(3199), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3199), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3199), + [sym_preproc_directive] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym___extension__] = ACTIONS(3199), + [anon_sym_typedef] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym___attribute__] = ACTIONS(3199), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3199), + [anon_sym___based] = ACTIONS(3199), + [anon_sym___cdecl] = ACTIONS(3199), + [anon_sym___clrcall] = ACTIONS(3199), + [anon_sym___stdcall] = ACTIONS(3199), + [anon_sym___fastcall] = ACTIONS(3199), + [anon_sym___thiscall] = ACTIONS(3199), + [anon_sym___vectorcall] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_signed] = ACTIONS(3199), + [anon_sym_unsigned] = ACTIONS(3199), + [anon_sym_long] = ACTIONS(3199), + [anon_sym_short] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_register] = ACTIONS(3199), + [anon_sym_inline] = ACTIONS(3199), + [anon_sym___inline] = ACTIONS(3199), + [anon_sym___inline__] = ACTIONS(3199), + [anon_sym___forceinline] = ACTIONS(3199), + [anon_sym_thread_local] = ACTIONS(3199), + [anon_sym___thread] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_constexpr] = ACTIONS(3199), + [anon_sym_volatile] = ACTIONS(3199), + [anon_sym_restrict] = ACTIONS(3199), + [anon_sym___restrict__] = ACTIONS(3199), + [anon_sym__Atomic] = ACTIONS(3199), + [anon_sym__Noreturn] = ACTIONS(3199), + [anon_sym_noreturn] = ACTIONS(3199), + [anon_sym_mutable] = ACTIONS(3199), + [anon_sym_constinit] = ACTIONS(3199), + [anon_sym_consteval] = ACTIONS(3199), + [sym_primitive_type] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_switch] = ACTIONS(3199), + [anon_sym_case] = ACTIONS(3199), + [anon_sym_default] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_do] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_goto] = ACTIONS(3199), + [anon_sym___try] = ACTIONS(3199), + [anon_sym___leave] = ACTIONS(3199), + [anon_sym_not] = ACTIONS(3199), + [anon_sym_compl] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3199), + [anon_sym___alignof__] = ACTIONS(3199), + [anon_sym___alignof] = ACTIONS(3199), + [anon_sym__alignof] = ACTIONS(3199), + [anon_sym_alignof] = ACTIONS(3199), + [anon_sym__Alignof] = ACTIONS(3199), + [anon_sym_offsetof] = ACTIONS(3199), + [anon_sym__Generic] = ACTIONS(3199), + [anon_sym_asm] = ACTIONS(3199), + [anon_sym___asm__] = ACTIONS(3199), + [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(3199), + [sym_false] = ACTIONS(3199), + [anon_sym_NULL] = ACTIONS(3199), + [anon_sym_nullptr] = ACTIONS(3199), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3199), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3199), + [anon_sym_alignas] = ACTIONS(3199), + [anon_sym_explicit] = ACTIONS(3199), + [anon_sym_typename] = ACTIONS(3199), + [anon_sym_template] = ACTIONS(3199), + [anon_sym_operator] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_throw] = ACTIONS(3199), + [anon_sym_namespace] = ACTIONS(3199), + [anon_sym_using] = ACTIONS(3199), + [anon_sym_static_assert] = ACTIONS(3199), + [anon_sym_concept] = ACTIONS(3199), + [anon_sym_co_return] = ACTIONS(3199), + [anon_sym_co_yield] = ACTIONS(3199), + [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(3199), + [anon_sym_new] = ACTIONS(3199), + [anon_sym_requires] = ACTIONS(3199), + [sym_this] = ACTIONS(3199), }, [395] = { - [sym_preproc_def] = STATE(390), - [sym_preproc_function_def] = STATE(390), - [sym_preproc_call] = STATE(390), - [sym_preproc_elifdef] = STATE(8774), - [sym_preproc_if_in_field_declaration_list] = STATE(390), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(390), - [sym_preproc_else_in_field_declaration_list] = STATE(8774), - [sym_preproc_elif_in_field_declaration_list] = STATE(8774), - [sym_type_definition] = STATE(390), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6173), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6781), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(390), - [sym_field_declaration] = STATE(390), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2007), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(390), - [sym_operator_cast] = STATE(7163), - [sym_inline_method_definition] = STATE(390), - [sym__constructor_specifiers] = STATE(2007), - [sym_operator_cast_definition] = STATE(390), - [sym_operator_cast_declaration] = STATE(390), - [sym_constructor_or_destructor_definition] = STATE(390), - [sym_constructor_or_destructor_declaration] = STATE(390), - [sym_friend_declaration] = STATE(390), - [sym_access_specifier] = STATE(8986), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(390), - [sym_alias_declaration] = STATE(390), - [sym_static_assert_declaration] = STATE(390), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7163), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(390), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2007), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3002), - [aux_sym_preproc_if_token1] = ACTIONS(3004), - [aux_sym_preproc_if_token2] = ACTIONS(3201), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(279), - [aux_sym_preproc_elifdef_token2] = ACTIONS(279), - [sym_preproc_directive] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3024), - [anon_sym_typedef] = ACTIONS(3026), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3050), - [anon_sym_static_assert] = ACTIONS(3052), - }, - [396] = { [sym_identifier] = ACTIONS(3203), [aux_sym_preproc_include_token1] = ACTIONS(3203), [aux_sym_preproc_def_token1] = ACTIONS(3203), @@ -146071,6 +146268,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3203), [sym_this] = ACTIONS(3203), }, + [396] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [aux_sym_preproc_else_token1] = ACTIONS(3004), + [aux_sym_preproc_elif_token1] = ACTIONS(3004), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym___try] = ACTIONS(3004), + [anon_sym___leave] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym___alignof__] = ACTIONS(3004), + [anon_sym___alignof] = ACTIONS(3004), + [anon_sym__alignof] = ACTIONS(3004), + [anon_sym_alignof] = ACTIONS(3004), + [anon_sym__Alignof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), + }, [397] = { [sym_identifier] = ACTIONS(3207), [aux_sym_preproc_include_token1] = ACTIONS(3207), @@ -146344,278 +146677,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(3211), }, [399] = { - [sym_preproc_def] = STATE(400), - [sym_preproc_function_def] = STATE(400), - [sym_preproc_call] = STATE(400), - [sym_preproc_elifdef] = STATE(8939), - [sym_preproc_if_in_field_declaration_list] = STATE(400), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(400), - [sym_preproc_else_in_field_declaration_list] = STATE(8939), - [sym_preproc_elif_in_field_declaration_list] = STATE(8939), - [sym_type_definition] = STATE(400), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6173), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6781), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(400), - [sym_field_declaration] = STATE(400), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2007), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(400), - [sym_operator_cast] = STATE(7163), - [sym_inline_method_definition] = STATE(400), - [sym__constructor_specifiers] = STATE(2007), - [sym_operator_cast_definition] = STATE(400), - [sym_operator_cast_declaration] = STATE(400), - [sym_constructor_or_destructor_definition] = STATE(400), - [sym_constructor_or_destructor_declaration] = STATE(400), - [sym_friend_declaration] = STATE(400), - [sym_access_specifier] = STATE(8986), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(400), - [sym_alias_declaration] = STATE(400), - [sym_static_assert_declaration] = STATE(400), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7163), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(400), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2007), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3002), - [aux_sym_preproc_if_token1] = ACTIONS(3004), + [sym_identifier] = ACTIONS(3215), + [aux_sym_preproc_include_token1] = ACTIONS(3215), + [aux_sym_preproc_def_token1] = ACTIONS(3215), + [aux_sym_preproc_if_token1] = ACTIONS(3215), [aux_sym_preproc_if_token2] = ACTIONS(3215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(279), - [aux_sym_preproc_elifdef_token2] = ACTIONS(279), - [sym_preproc_directive] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3024), - [anon_sym_typedef] = ACTIONS(3026), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3050), - [anon_sym_static_assert] = ACTIONS(3052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3215), + [aux_sym_preproc_else_token1] = ACTIONS(3215), + [aux_sym_preproc_elif_token1] = ACTIONS(3215), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3215), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3215), + [sym_preproc_directive] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_AMP_AMP] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym___extension__] = ACTIONS(3215), + [anon_sym_typedef] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym___attribute__] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), + [anon_sym___declspec] = ACTIONS(3215), + [anon_sym___based] = ACTIONS(3215), + [anon_sym___cdecl] = ACTIONS(3215), + [anon_sym___clrcall] = ACTIONS(3215), + [anon_sym___stdcall] = ACTIONS(3215), + [anon_sym___fastcall] = ACTIONS(3215), + [anon_sym___thiscall] = ACTIONS(3215), + [anon_sym___vectorcall] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_signed] = ACTIONS(3215), + [anon_sym_unsigned] = ACTIONS(3215), + [anon_sym_long] = ACTIONS(3215), + [anon_sym_short] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_register] = ACTIONS(3215), + [anon_sym_inline] = ACTIONS(3215), + [anon_sym___inline] = ACTIONS(3215), + [anon_sym___inline__] = ACTIONS(3215), + [anon_sym___forceinline] = ACTIONS(3215), + [anon_sym_thread_local] = ACTIONS(3215), + [anon_sym___thread] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_constexpr] = ACTIONS(3215), + [anon_sym_volatile] = ACTIONS(3215), + [anon_sym_restrict] = ACTIONS(3215), + [anon_sym___restrict__] = ACTIONS(3215), + [anon_sym__Atomic] = ACTIONS(3215), + [anon_sym__Noreturn] = ACTIONS(3215), + [anon_sym_noreturn] = ACTIONS(3215), + [anon_sym_mutable] = ACTIONS(3215), + [anon_sym_constinit] = ACTIONS(3215), + [anon_sym_consteval] = ACTIONS(3215), + [sym_primitive_type] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3215), + [anon_sym_union] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_case] = ACTIONS(3215), + [anon_sym_default] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_goto] = ACTIONS(3215), + [anon_sym___try] = ACTIONS(3215), + [anon_sym___leave] = ACTIONS(3215), + [anon_sym_not] = ACTIONS(3215), + [anon_sym_compl] = ACTIONS(3215), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_sizeof] = ACTIONS(3215), + [anon_sym___alignof__] = ACTIONS(3215), + [anon_sym___alignof] = ACTIONS(3215), + [anon_sym__alignof] = ACTIONS(3215), + [anon_sym_alignof] = ACTIONS(3215), + [anon_sym__Alignof] = ACTIONS(3215), + [anon_sym_offsetof] = ACTIONS(3215), + [anon_sym__Generic] = ACTIONS(3215), + [anon_sym_asm] = ACTIONS(3215), + [anon_sym___asm__] = ACTIONS(3215), + [sym_number_literal] = ACTIONS(3217), + [anon_sym_L_SQUOTE] = ACTIONS(3217), + [anon_sym_u_SQUOTE] = ACTIONS(3217), + [anon_sym_U_SQUOTE] = ACTIONS(3217), + [anon_sym_u8_SQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_L_DQUOTE] = ACTIONS(3217), + [anon_sym_u_DQUOTE] = ACTIONS(3217), + [anon_sym_U_DQUOTE] = ACTIONS(3217), + [anon_sym_u8_DQUOTE] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [sym_true] = ACTIONS(3215), + [sym_false] = ACTIONS(3215), + [anon_sym_NULL] = ACTIONS(3215), + [anon_sym_nullptr] = ACTIONS(3215), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3215), + [anon_sym_decltype] = ACTIONS(3215), + [anon_sym_virtual] = ACTIONS(3215), + [anon_sym_alignas] = ACTIONS(3215), + [anon_sym_explicit] = ACTIONS(3215), + [anon_sym_typename] = ACTIONS(3215), + [anon_sym_template] = ACTIONS(3215), + [anon_sym_operator] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_delete] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_namespace] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_static_assert] = ACTIONS(3215), + [anon_sym_concept] = ACTIONS(3215), + [anon_sym_co_return] = ACTIONS(3215), + [anon_sym_co_yield] = ACTIONS(3215), + [anon_sym_R_DQUOTE] = ACTIONS(3217), + [anon_sym_LR_DQUOTE] = ACTIONS(3217), + [anon_sym_uR_DQUOTE] = ACTIONS(3217), + [anon_sym_UR_DQUOTE] = ACTIONS(3217), + [anon_sym_u8R_DQUOTE] = ACTIONS(3217), + [anon_sym_co_await] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_requires] = ACTIONS(3215), + [sym_this] = ACTIONS(3215), }, [400] = { - [sym_preproc_def] = STATE(816), - [sym_preproc_function_def] = STATE(816), - [sym_preproc_call] = STATE(816), - [sym_preproc_elifdef] = STATE(8912), - [sym_preproc_if_in_field_declaration_list] = STATE(816), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(816), - [sym_preproc_else_in_field_declaration_list] = STATE(8912), - [sym_preproc_elif_in_field_declaration_list] = STATE(8912), - [sym_type_definition] = STATE(816), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6173), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6781), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(816), - [sym_field_declaration] = STATE(816), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2007), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(816), - [sym_operator_cast] = STATE(7163), - [sym_inline_method_definition] = STATE(816), - [sym__constructor_specifiers] = STATE(2007), - [sym_operator_cast_definition] = STATE(816), - [sym_operator_cast_declaration] = STATE(816), - [sym_constructor_or_destructor_definition] = STATE(816), - [sym_constructor_or_destructor_declaration] = STATE(816), - [sym_friend_declaration] = STATE(816), - [sym_access_specifier] = STATE(8986), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(816), - [sym_alias_declaration] = STATE(816), - [sym_static_assert_declaration] = STATE(816), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7163), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(816), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2007), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3002), - [aux_sym_preproc_if_token1] = ACTIONS(3004), - [aux_sym_preproc_if_token2] = ACTIONS(3217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(279), - [aux_sym_preproc_elifdef_token2] = ACTIONS(279), - [sym_preproc_directive] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3024), - [anon_sym_typedef] = ACTIONS(3026), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3050), - [anon_sym_static_assert] = ACTIONS(3052), - }, - [401] = { [sym_identifier] = ACTIONS(3219), [aux_sym_preproc_include_token1] = ACTIONS(3219), [aux_sym_preproc_def_token1] = ACTIONS(3219), @@ -146751,143 +146948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3219), [sym_this] = ACTIONS(3219), }, - [402] = { - [sym_else_clause] = STATE(498), - [sym_identifier] = ACTIONS(2840), - [aux_sym_preproc_include_token1] = ACTIONS(2840), - [aux_sym_preproc_def_token1] = ACTIONS(2840), - [aux_sym_preproc_if_token1] = ACTIONS(2840), - [aux_sym_preproc_if_token2] = ACTIONS(2840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), - [aux_sym_preproc_else_token1] = ACTIONS(2840), - [aux_sym_preproc_elif_token1] = ACTIONS(2840), - [sym_preproc_directive] = ACTIONS(2840), - [anon_sym_LPAREN2] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2842), - [anon_sym___extension__] = ACTIONS(2840), - [anon_sym_typedef] = ACTIONS(2840), - [anon_sym_extern] = ACTIONS(2840), - [anon_sym___attribute__] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2842), - [anon_sym___declspec] = ACTIONS(2840), - [anon_sym___based] = ACTIONS(2840), - [anon_sym___cdecl] = ACTIONS(2840), - [anon_sym___clrcall] = ACTIONS(2840), - [anon_sym___stdcall] = ACTIONS(2840), - [anon_sym___fastcall] = ACTIONS(2840), - [anon_sym___thiscall] = ACTIONS(2840), - [anon_sym___vectorcall] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_signed] = ACTIONS(2840), - [anon_sym_unsigned] = ACTIONS(2840), - [anon_sym_long] = ACTIONS(2840), - [anon_sym_short] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_register] = ACTIONS(2840), - [anon_sym_inline] = ACTIONS(2840), - [anon_sym___inline] = ACTIONS(2840), - [anon_sym___inline__] = ACTIONS(2840), - [anon_sym___forceinline] = ACTIONS(2840), - [anon_sym_thread_local] = ACTIONS(2840), - [anon_sym___thread] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_constexpr] = ACTIONS(2840), - [anon_sym_volatile] = ACTIONS(2840), - [anon_sym_restrict] = ACTIONS(2840), - [anon_sym___restrict__] = ACTIONS(2840), - [anon_sym__Atomic] = ACTIONS(2840), - [anon_sym__Noreturn] = ACTIONS(2840), - [anon_sym_noreturn] = ACTIONS(2840), - [anon_sym_mutable] = ACTIONS(2840), - [anon_sym_constinit] = ACTIONS(2840), - [anon_sym_consteval] = ACTIONS(2840), - [sym_primitive_type] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_else] = ACTIONS(3080), - [anon_sym_switch] = ACTIONS(2840), - [anon_sym_case] = ACTIONS(2840), - [anon_sym_default] = ACTIONS(2840), - [anon_sym_while] = ACTIONS(2840), - [anon_sym_do] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym___try] = ACTIONS(2840), - [anon_sym___leave] = ACTIONS(2840), - [anon_sym_not] = ACTIONS(2840), - [anon_sym_compl] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_sizeof] = ACTIONS(2840), - [anon_sym___alignof__] = ACTIONS(2840), - [anon_sym___alignof] = ACTIONS(2840), - [anon_sym__alignof] = ACTIONS(2840), - [anon_sym_alignof] = ACTIONS(2840), - [anon_sym__Alignof] = ACTIONS(2840), - [anon_sym_offsetof] = ACTIONS(2840), - [anon_sym__Generic] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym___asm__] = ACTIONS(2840), - [sym_number_literal] = ACTIONS(2842), - [anon_sym_L_SQUOTE] = ACTIONS(2842), - [anon_sym_u_SQUOTE] = ACTIONS(2842), - [anon_sym_U_SQUOTE] = ACTIONS(2842), - [anon_sym_u8_SQUOTE] = ACTIONS(2842), - [anon_sym_SQUOTE] = ACTIONS(2842), - [anon_sym_L_DQUOTE] = ACTIONS(2842), - [anon_sym_u_DQUOTE] = ACTIONS(2842), - [anon_sym_U_DQUOTE] = ACTIONS(2842), - [anon_sym_u8_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [anon_sym_NULL] = ACTIONS(2840), - [anon_sym_nullptr] = ACTIONS(2840), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2840), - [anon_sym_decltype] = ACTIONS(2840), - [anon_sym_virtual] = ACTIONS(2840), - [anon_sym_alignas] = ACTIONS(2840), - [anon_sym_explicit] = ACTIONS(2840), - [anon_sym_typename] = ACTIONS(2840), - [anon_sym_template] = ACTIONS(2840), - [anon_sym_operator] = ACTIONS(2840), - [anon_sym_try] = ACTIONS(2840), - [anon_sym_delete] = ACTIONS(2840), - [anon_sym_throw] = ACTIONS(2840), - [anon_sym_namespace] = ACTIONS(2840), - [anon_sym_using] = ACTIONS(2840), - [anon_sym_static_assert] = ACTIONS(2840), - [anon_sym_concept] = ACTIONS(2840), - [anon_sym_co_return] = ACTIONS(2840), - [anon_sym_co_yield] = ACTIONS(2840), - [anon_sym_R_DQUOTE] = ACTIONS(2842), - [anon_sym_LR_DQUOTE] = ACTIONS(2842), - [anon_sym_uR_DQUOTE] = ACTIONS(2842), - [anon_sym_UR_DQUOTE] = ACTIONS(2842), - [anon_sym_u8R_DQUOTE] = ACTIONS(2842), - [anon_sym_co_await] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2840), - [anon_sym_requires] = ACTIONS(2840), - [sym_this] = ACTIONS(2840), - }, - [403] = { + [401] = { [sym_identifier] = ACTIONS(3223), [aux_sym_preproc_include_token1] = ACTIONS(3223), [aux_sym_preproc_def_token1] = ACTIONS(3223), @@ -147023,7 +147084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3223), [sym_this] = ACTIONS(3223), }, - [404] = { + [402] = { [sym_identifier] = ACTIONS(3227), [aux_sym_preproc_include_token1] = ACTIONS(3227), [aux_sym_preproc_def_token1] = ACTIONS(3227), @@ -147159,1367 +147220,1503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3227), [sym_this] = ACTIONS(3227), }, - [405] = { - [sym_identifier] = ACTIONS(3231), - [aux_sym_preproc_include_token1] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token2] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), - [aux_sym_preproc_else_token1] = ACTIONS(3231), - [aux_sym_preproc_elif_token1] = ACTIONS(3231), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3231), - [sym_preproc_directive] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym___based] = ACTIONS(3231), - [anon_sym___cdecl] = ACTIONS(3231), - [anon_sym___clrcall] = ACTIONS(3231), - [anon_sym___stdcall] = ACTIONS(3231), - [anon_sym___fastcall] = ACTIONS(3231), - [anon_sym___thiscall] = ACTIONS(3231), - [anon_sym___vectorcall] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym___try] = ACTIONS(3231), - [anon_sym___leave] = ACTIONS(3231), - [anon_sym_not] = ACTIONS(3231), - [anon_sym_compl] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3231), - [anon_sym___alignof__] = ACTIONS(3231), - [anon_sym___alignof] = ACTIONS(3231), - [anon_sym__alignof] = ACTIONS(3231), - [anon_sym_alignof] = ACTIONS(3231), - [anon_sym__Alignof] = ACTIONS(3231), - [anon_sym_offsetof] = ACTIONS(3231), - [anon_sym__Generic] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym___asm__] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3233), - [anon_sym_L_SQUOTE] = ACTIONS(3233), - [anon_sym_u_SQUOTE] = ACTIONS(3233), - [anon_sym_U_SQUOTE] = ACTIONS(3233), - [anon_sym_u8_SQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_L_DQUOTE] = ACTIONS(3233), - [anon_sym_u_DQUOTE] = ACTIONS(3233), - [anon_sym_U_DQUOTE] = ACTIONS(3233), - [anon_sym_u8_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [anon_sym_NULL] = ACTIONS(3231), - [anon_sym_nullptr] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_explicit] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_operator] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_static_assert] = ACTIONS(3231), - [anon_sym_concept] = ACTIONS(3231), - [anon_sym_co_return] = ACTIONS(3231), - [anon_sym_co_yield] = ACTIONS(3231), - [anon_sym_R_DQUOTE] = ACTIONS(3233), - [anon_sym_LR_DQUOTE] = ACTIONS(3233), - [anon_sym_uR_DQUOTE] = ACTIONS(3233), - [anon_sym_UR_DQUOTE] = ACTIONS(3233), - [anon_sym_u8R_DQUOTE] = ACTIONS(3233), - [anon_sym_co_await] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_requires] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), + [403] = { + [sym_catch_clause] = STATE(403), + [aux_sym_constructor_try_statement_repeat1] = STATE(403), + [ts_builtin_sym_end] = ACTIONS(2817), + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_include_token1] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym___cdecl] = ACTIONS(2815), + [anon_sym___clrcall] = ACTIONS(2815), + [anon_sym___stdcall] = ACTIONS(2815), + [anon_sym___fastcall] = ACTIONS(2815), + [anon_sym___thiscall] = ACTIONS(2815), + [anon_sym___vectorcall] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym___inline] = ACTIONS(2815), + [anon_sym___inline__] = ACTIONS(2815), + [anon_sym___forceinline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym___thread] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym___restrict__] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym__Noreturn] = ACTIONS(2815), + [anon_sym_noreturn] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_goto] = ACTIONS(2815), + [anon_sym___try] = ACTIONS(2815), + [anon_sym___leave] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_compl] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2815), + [anon_sym___alignof__] = ACTIONS(2815), + [anon_sym___alignof] = ACTIONS(2815), + [anon_sym__alignof] = ACTIONS(2815), + [anon_sym_alignof] = ACTIONS(2815), + [anon_sym__Alignof] = ACTIONS(2815), + [anon_sym_offsetof] = ACTIONS(2815), + [anon_sym__Generic] = ACTIONS(2815), + [anon_sym_asm] = ACTIONS(2815), + [anon_sym___asm__] = ACTIONS(2815), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2817), + [anon_sym_u_SQUOTE] = ACTIONS(2817), + [anon_sym_U_SQUOTE] = ACTIONS(2817), + [anon_sym_u8_SQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_L_DQUOTE] = ACTIONS(2817), + [anon_sym_u_DQUOTE] = ACTIONS(2817), + [anon_sym_U_DQUOTE] = ACTIONS(2817), + [anon_sym_u8_DQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [anon_sym_NULL] = ACTIONS(2815), + [anon_sym_nullptr] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_alignas] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_namespace] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_concept] = ACTIONS(2815), + [anon_sym_co_return] = ACTIONS(2815), + [anon_sym_co_yield] = ACTIONS(2815), + [anon_sym_catch] = ACTIONS(3231), + [anon_sym_R_DQUOTE] = ACTIONS(2817), + [anon_sym_LR_DQUOTE] = ACTIONS(2817), + [anon_sym_uR_DQUOTE] = ACTIONS(2817), + [anon_sym_UR_DQUOTE] = ACTIONS(2817), + [anon_sym_u8R_DQUOTE] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_requires] = ACTIONS(2815), + [sym_this] = ACTIONS(2815), }, - [406] = { - [sym_identifier] = ACTIONS(3235), - [aux_sym_preproc_include_token1] = ACTIONS(3235), - [aux_sym_preproc_def_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token2] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3235), - [aux_sym_preproc_else_token1] = ACTIONS(3235), - [aux_sym_preproc_elif_token1] = ACTIONS(3235), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3235), - [sym_preproc_directive] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym___based] = ACTIONS(3235), - [anon_sym___cdecl] = ACTIONS(3235), - [anon_sym___clrcall] = ACTIONS(3235), - [anon_sym___stdcall] = ACTIONS(3235), - [anon_sym___fastcall] = ACTIONS(3235), - [anon_sym___thiscall] = ACTIONS(3235), - [anon_sym___vectorcall] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym___try] = ACTIONS(3235), - [anon_sym___leave] = ACTIONS(3235), - [anon_sym_not] = ACTIONS(3235), - [anon_sym_compl] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3235), - [anon_sym___alignof__] = ACTIONS(3235), - [anon_sym___alignof] = ACTIONS(3235), - [anon_sym__alignof] = ACTIONS(3235), - [anon_sym_alignof] = ACTIONS(3235), - [anon_sym__Alignof] = ACTIONS(3235), - [anon_sym_offsetof] = ACTIONS(3235), - [anon_sym__Generic] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym___asm__] = ACTIONS(3235), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_L_SQUOTE] = ACTIONS(3237), - [anon_sym_u_SQUOTE] = ACTIONS(3237), - [anon_sym_U_SQUOTE] = ACTIONS(3237), - [anon_sym_u8_SQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_L_DQUOTE] = ACTIONS(3237), - [anon_sym_u_DQUOTE] = ACTIONS(3237), - [anon_sym_U_DQUOTE] = ACTIONS(3237), - [anon_sym_u8_DQUOTE] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [anon_sym_NULL] = ACTIONS(3235), - [anon_sym_nullptr] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_operator] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_static_assert] = ACTIONS(3235), - [anon_sym_concept] = ACTIONS(3235), - [anon_sym_co_return] = ACTIONS(3235), - [anon_sym_co_yield] = ACTIONS(3235), - [anon_sym_R_DQUOTE] = ACTIONS(3237), - [anon_sym_LR_DQUOTE] = ACTIONS(3237), - [anon_sym_uR_DQUOTE] = ACTIONS(3237), - [anon_sym_UR_DQUOTE] = ACTIONS(3237), - [anon_sym_u8R_DQUOTE] = ACTIONS(3237), - [anon_sym_co_await] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_requires] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), + [404] = { + [sym_else_clause] = STATE(464), + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token2] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [aux_sym_preproc_else_token1] = ACTIONS(2857), + [aux_sym_preproc_elif_token1] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym___extension__] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym___inline] = ACTIONS(2857), + [anon_sym___inline__] = ACTIONS(2857), + [anon_sym___forceinline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym___thread] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym___restrict__] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym__Noreturn] = ACTIONS(2857), + [anon_sym_noreturn] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_else] = ACTIONS(3120), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym___try] = ACTIONS(2857), + [anon_sym___leave] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [anon_sym___alignof__] = ACTIONS(2857), + [anon_sym___alignof] = ACTIONS(2857), + [anon_sym__alignof] = ACTIONS(2857), + [anon_sym_alignof] = ACTIONS(2857), + [anon_sym__Alignof] = ACTIONS(2857), + [anon_sym_offsetof] = ACTIONS(2857), + [anon_sym__Generic] = ACTIONS(2857), + [anon_sym_asm] = ACTIONS(2857), + [anon_sym___asm__] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [anon_sym_NULL] = ACTIONS(2857), + [anon_sym_nullptr] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_alignas] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_R_DQUOTE] = ACTIONS(2859), + [anon_sym_LR_DQUOTE] = ACTIONS(2859), + [anon_sym_uR_DQUOTE] = ACTIONS(2859), + [anon_sym_UR_DQUOTE] = ACTIONS(2859), + [anon_sym_u8R_DQUOTE] = ACTIONS(2859), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), + }, + [405] = { + [sym_preproc_def] = STATE(412), + [sym_preproc_function_def] = STATE(412), + [sym_preproc_call] = STATE(412), + [sym_preproc_elifdef] = STATE(8604), + [sym_preproc_if_in_field_declaration_list] = STATE(412), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(412), + [sym_preproc_else_in_field_declaration_list] = STATE(8604), + [sym_preproc_elif_in_field_declaration_list] = STATE(8604), + [sym_type_definition] = STATE(412), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6193), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6791), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(412), + [sym_field_declaration] = STATE(412), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2046), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(412), + [sym_operator_cast] = STATE(7208), + [sym_inline_method_definition] = STATE(412), + [sym__constructor_specifiers] = STATE(2046), + [sym_operator_cast_definition] = STATE(412), + [sym_operator_cast_declaration] = STATE(412), + [sym_constructor_or_destructor_definition] = STATE(412), + [sym_constructor_or_destructor_declaration] = STATE(412), + [sym_friend_declaration] = STATE(412), + [sym_access_specifier] = STATE(8745), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(412), + [sym_alias_declaration] = STATE(412), + [sym_static_assert_declaration] = STATE(412), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7208), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(412), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3026), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [aux_sym_preproc_elifdef_token1] = ACTIONS(279), + [aux_sym_preproc_elifdef_token2] = ACTIONS(279), + [sym_preproc_directive] = ACTIONS(3038), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_typedef] = ACTIONS(3050), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3068), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_static_assert] = ACTIONS(3076), + }, + [406] = { + [sym_identifier] = ACTIONS(3236), + [aux_sym_preproc_include_token1] = ACTIONS(3236), + [aux_sym_preproc_def_token1] = ACTIONS(3236), + [aux_sym_preproc_if_token1] = ACTIONS(3236), + [aux_sym_preproc_if_token2] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3236), + [aux_sym_preproc_else_token1] = ACTIONS(3236), + [aux_sym_preproc_elif_token1] = ACTIONS(3236), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3236), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3236), + [sym_preproc_directive] = ACTIONS(3236), + [anon_sym_LPAREN2] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3236), + [anon_sym_typedef] = ACTIONS(3236), + [anon_sym_extern] = ACTIONS(3236), + [anon_sym___attribute__] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3238), + [anon_sym___declspec] = ACTIONS(3236), + [anon_sym___based] = ACTIONS(3236), + [anon_sym___cdecl] = ACTIONS(3236), + [anon_sym___clrcall] = ACTIONS(3236), + [anon_sym___stdcall] = ACTIONS(3236), + [anon_sym___fastcall] = ACTIONS(3236), + [anon_sym___thiscall] = ACTIONS(3236), + [anon_sym___vectorcall] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_signed] = ACTIONS(3236), + [anon_sym_unsigned] = ACTIONS(3236), + [anon_sym_long] = ACTIONS(3236), + [anon_sym_short] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_register] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym___inline] = ACTIONS(3236), + [anon_sym___inline__] = ACTIONS(3236), + [anon_sym___forceinline] = ACTIONS(3236), + [anon_sym_thread_local] = ACTIONS(3236), + [anon_sym___thread] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_constexpr] = ACTIONS(3236), + [anon_sym_volatile] = ACTIONS(3236), + [anon_sym_restrict] = ACTIONS(3236), + [anon_sym___restrict__] = ACTIONS(3236), + [anon_sym__Atomic] = ACTIONS(3236), + [anon_sym__Noreturn] = ACTIONS(3236), + [anon_sym_noreturn] = ACTIONS(3236), + [anon_sym_mutable] = ACTIONS(3236), + [anon_sym_constinit] = ACTIONS(3236), + [anon_sym_consteval] = ACTIONS(3236), + [sym_primitive_type] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_case] = ACTIONS(3236), + [anon_sym_default] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_goto] = ACTIONS(3236), + [anon_sym___try] = ACTIONS(3236), + [anon_sym___leave] = ACTIONS(3236), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_sizeof] = ACTIONS(3236), + [anon_sym___alignof__] = ACTIONS(3236), + [anon_sym___alignof] = ACTIONS(3236), + [anon_sym__alignof] = ACTIONS(3236), + [anon_sym_alignof] = ACTIONS(3236), + [anon_sym__Alignof] = ACTIONS(3236), + [anon_sym_offsetof] = ACTIONS(3236), + [anon_sym__Generic] = ACTIONS(3236), + [anon_sym_asm] = ACTIONS(3236), + [anon_sym___asm__] = ACTIONS(3236), + [sym_number_literal] = ACTIONS(3238), + [anon_sym_L_SQUOTE] = ACTIONS(3238), + [anon_sym_u_SQUOTE] = ACTIONS(3238), + [anon_sym_U_SQUOTE] = ACTIONS(3238), + [anon_sym_u8_SQUOTE] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_L_DQUOTE] = ACTIONS(3238), + [anon_sym_u_DQUOTE] = ACTIONS(3238), + [anon_sym_U_DQUOTE] = ACTIONS(3238), + [anon_sym_u8_DQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [anon_sym_NULL] = ACTIONS(3236), + [anon_sym_nullptr] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3236), + [anon_sym_virtual] = ACTIONS(3236), + [anon_sym_alignas] = ACTIONS(3236), + [anon_sym_explicit] = ACTIONS(3236), + [anon_sym_typename] = ACTIONS(3236), + [anon_sym_template] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_static_assert] = ACTIONS(3236), + [anon_sym_concept] = ACTIONS(3236), + [anon_sym_co_return] = ACTIONS(3236), + [anon_sym_co_yield] = ACTIONS(3236), + [anon_sym_R_DQUOTE] = ACTIONS(3238), + [anon_sym_LR_DQUOTE] = ACTIONS(3238), + [anon_sym_uR_DQUOTE] = ACTIONS(3238), + [anon_sym_UR_DQUOTE] = ACTIONS(3238), + [anon_sym_u8R_DQUOTE] = ACTIONS(3238), + [anon_sym_co_await] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_requires] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), }, [407] = { - [sym_identifier] = ACTIONS(3239), - [aux_sym_preproc_include_token1] = ACTIONS(3239), - [aux_sym_preproc_def_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token2] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), - [aux_sym_preproc_else_token1] = ACTIONS(3239), - [aux_sym_preproc_elif_token1] = ACTIONS(3239), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3239), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3239), - [sym_preproc_directive] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_AMP_AMP] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym___extension__] = ACTIONS(3239), - [anon_sym_typedef] = ACTIONS(3239), - [anon_sym_extern] = ACTIONS(3239), - [anon_sym___attribute__] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3241), - [anon_sym___declspec] = ACTIONS(3239), - [anon_sym___based] = ACTIONS(3239), - [anon_sym___cdecl] = ACTIONS(3239), - [anon_sym___clrcall] = ACTIONS(3239), - [anon_sym___stdcall] = ACTIONS(3239), - [anon_sym___fastcall] = ACTIONS(3239), - [anon_sym___thiscall] = ACTIONS(3239), - [anon_sym___vectorcall] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_signed] = ACTIONS(3239), - [anon_sym_unsigned] = ACTIONS(3239), - [anon_sym_long] = ACTIONS(3239), - [anon_sym_short] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_register] = ACTIONS(3239), - [anon_sym_inline] = ACTIONS(3239), - [anon_sym___inline] = ACTIONS(3239), - [anon_sym___inline__] = ACTIONS(3239), - [anon_sym___forceinline] = ACTIONS(3239), - [anon_sym_thread_local] = ACTIONS(3239), - [anon_sym___thread] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_constexpr] = ACTIONS(3239), - [anon_sym_volatile] = ACTIONS(3239), - [anon_sym_restrict] = ACTIONS(3239), - [anon_sym___restrict__] = ACTIONS(3239), - [anon_sym__Atomic] = ACTIONS(3239), - [anon_sym__Noreturn] = ACTIONS(3239), - [anon_sym_noreturn] = ACTIONS(3239), - [anon_sym_mutable] = ACTIONS(3239), - [anon_sym_constinit] = ACTIONS(3239), - [anon_sym_consteval] = ACTIONS(3239), - [sym_primitive_type] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_case] = ACTIONS(3239), - [anon_sym_default] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_goto] = ACTIONS(3239), - [anon_sym___try] = ACTIONS(3239), - [anon_sym___leave] = ACTIONS(3239), - [anon_sym_not] = ACTIONS(3239), - [anon_sym_compl] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_sizeof] = ACTIONS(3239), - [anon_sym___alignof__] = ACTIONS(3239), - [anon_sym___alignof] = ACTIONS(3239), - [anon_sym__alignof] = ACTIONS(3239), - [anon_sym_alignof] = ACTIONS(3239), - [anon_sym__Alignof] = ACTIONS(3239), - [anon_sym_offsetof] = ACTIONS(3239), - [anon_sym__Generic] = ACTIONS(3239), - [anon_sym_asm] = ACTIONS(3239), - [anon_sym___asm__] = ACTIONS(3239), - [sym_number_literal] = ACTIONS(3241), - [anon_sym_L_SQUOTE] = ACTIONS(3241), - [anon_sym_u_SQUOTE] = ACTIONS(3241), - [anon_sym_U_SQUOTE] = ACTIONS(3241), - [anon_sym_u8_SQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_L_DQUOTE] = ACTIONS(3241), - [anon_sym_u_DQUOTE] = ACTIONS(3241), - [anon_sym_U_DQUOTE] = ACTIONS(3241), - [anon_sym_u8_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [anon_sym_NULL] = ACTIONS(3239), - [anon_sym_nullptr] = ACTIONS(3239), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3239), - [anon_sym_decltype] = ACTIONS(3239), - [anon_sym_virtual] = ACTIONS(3239), - [anon_sym_alignas] = ACTIONS(3239), - [anon_sym_explicit] = ACTIONS(3239), - [anon_sym_typename] = ACTIONS(3239), - [anon_sym_template] = ACTIONS(3239), - [anon_sym_operator] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_delete] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_static_assert] = ACTIONS(3239), - [anon_sym_concept] = ACTIONS(3239), - [anon_sym_co_return] = ACTIONS(3239), - [anon_sym_co_yield] = ACTIONS(3239), - [anon_sym_R_DQUOTE] = ACTIONS(3241), - [anon_sym_LR_DQUOTE] = ACTIONS(3241), - [anon_sym_uR_DQUOTE] = ACTIONS(3241), - [anon_sym_UR_DQUOTE] = ACTIONS(3241), - [anon_sym_u8R_DQUOTE] = ACTIONS(3241), - [anon_sym_co_await] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_requires] = ACTIONS(3239), - [sym_this] = ACTIONS(3239), + [sym_identifier] = ACTIONS(3240), + [aux_sym_preproc_include_token1] = ACTIONS(3240), + [aux_sym_preproc_def_token1] = ACTIONS(3240), + [aux_sym_preproc_if_token1] = ACTIONS(3240), + [aux_sym_preproc_if_token2] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3240), + [aux_sym_preproc_else_token1] = ACTIONS(3240), + [aux_sym_preproc_elif_token1] = ACTIONS(3240), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3240), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3240), + [sym_preproc_directive] = ACTIONS(3240), + [anon_sym_LPAREN2] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_typedef] = ACTIONS(3240), + [anon_sym_extern] = ACTIONS(3240), + [anon_sym___attribute__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3242), + [anon_sym___declspec] = ACTIONS(3240), + [anon_sym___based] = ACTIONS(3240), + [anon_sym___cdecl] = ACTIONS(3240), + [anon_sym___clrcall] = ACTIONS(3240), + [anon_sym___stdcall] = ACTIONS(3240), + [anon_sym___fastcall] = ACTIONS(3240), + [anon_sym___thiscall] = ACTIONS(3240), + [anon_sym___vectorcall] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3240), + [anon_sym_unsigned] = ACTIONS(3240), + [anon_sym_long] = ACTIONS(3240), + [anon_sym_short] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_register] = ACTIONS(3240), + [anon_sym_inline] = ACTIONS(3240), + [anon_sym___inline] = ACTIONS(3240), + [anon_sym___inline__] = ACTIONS(3240), + [anon_sym___forceinline] = ACTIONS(3240), + [anon_sym_thread_local] = ACTIONS(3240), + [anon_sym___thread] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_constexpr] = ACTIONS(3240), + [anon_sym_volatile] = ACTIONS(3240), + [anon_sym_restrict] = ACTIONS(3240), + [anon_sym___restrict__] = ACTIONS(3240), + [anon_sym__Atomic] = ACTIONS(3240), + [anon_sym__Noreturn] = ACTIONS(3240), + [anon_sym_noreturn] = ACTIONS(3240), + [anon_sym_mutable] = ACTIONS(3240), + [anon_sym_constinit] = ACTIONS(3240), + [anon_sym_consteval] = ACTIONS(3240), + [sym_primitive_type] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_case] = ACTIONS(3240), + [anon_sym_default] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_goto] = ACTIONS(3240), + [anon_sym___try] = ACTIONS(3240), + [anon_sym___leave] = ACTIONS(3240), + [anon_sym_not] = ACTIONS(3240), + [anon_sym_compl] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_sizeof] = ACTIONS(3240), + [anon_sym___alignof__] = ACTIONS(3240), + [anon_sym___alignof] = ACTIONS(3240), + [anon_sym__alignof] = ACTIONS(3240), + [anon_sym_alignof] = ACTIONS(3240), + [anon_sym__Alignof] = ACTIONS(3240), + [anon_sym_offsetof] = ACTIONS(3240), + [anon_sym__Generic] = ACTIONS(3240), + [anon_sym_asm] = ACTIONS(3240), + [anon_sym___asm__] = ACTIONS(3240), + [sym_number_literal] = ACTIONS(3242), + [anon_sym_L_SQUOTE] = ACTIONS(3242), + [anon_sym_u_SQUOTE] = ACTIONS(3242), + [anon_sym_U_SQUOTE] = ACTIONS(3242), + [anon_sym_u8_SQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_L_DQUOTE] = ACTIONS(3242), + [anon_sym_u_DQUOTE] = ACTIONS(3242), + [anon_sym_U_DQUOTE] = ACTIONS(3242), + [anon_sym_u8_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [anon_sym_NULL] = ACTIONS(3240), + [anon_sym_nullptr] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3240), + [anon_sym_decltype] = ACTIONS(3240), + [anon_sym_virtual] = ACTIONS(3240), + [anon_sym_alignas] = ACTIONS(3240), + [anon_sym_explicit] = ACTIONS(3240), + [anon_sym_typename] = ACTIONS(3240), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_operator] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_static_assert] = ACTIONS(3240), + [anon_sym_concept] = ACTIONS(3240), + [anon_sym_co_return] = ACTIONS(3240), + [anon_sym_co_yield] = ACTIONS(3240), + [anon_sym_R_DQUOTE] = ACTIONS(3242), + [anon_sym_LR_DQUOTE] = ACTIONS(3242), + [anon_sym_uR_DQUOTE] = ACTIONS(3242), + [anon_sym_UR_DQUOTE] = ACTIONS(3242), + [anon_sym_u8R_DQUOTE] = ACTIONS(3242), + [anon_sym_co_await] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_requires] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), }, [408] = { - [sym_identifier] = ACTIONS(3243), - [aux_sym_preproc_include_token1] = ACTIONS(3243), - [aux_sym_preproc_def_token1] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3243), - [aux_sym_preproc_if_token2] = ACTIONS(3243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3243), - [aux_sym_preproc_else_token1] = ACTIONS(3243), - [aux_sym_preproc_elif_token1] = ACTIONS(3243), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3243), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3243), - [sym_preproc_directive] = ACTIONS(3243), - [anon_sym_LPAREN2] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym___extension__] = ACTIONS(3243), - [anon_sym_typedef] = ACTIONS(3243), - [anon_sym_extern] = ACTIONS(3243), - [anon_sym___attribute__] = ACTIONS(3243), - [anon_sym_COLON_COLON] = ACTIONS(3245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3245), - [anon_sym___declspec] = ACTIONS(3243), - [anon_sym___based] = ACTIONS(3243), - [anon_sym___cdecl] = ACTIONS(3243), - [anon_sym___clrcall] = ACTIONS(3243), - [anon_sym___stdcall] = ACTIONS(3243), - [anon_sym___fastcall] = ACTIONS(3243), - [anon_sym___thiscall] = ACTIONS(3243), - [anon_sym___vectorcall] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_signed] = ACTIONS(3243), - [anon_sym_unsigned] = ACTIONS(3243), - [anon_sym_long] = ACTIONS(3243), - [anon_sym_short] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_register] = ACTIONS(3243), - [anon_sym_inline] = ACTIONS(3243), - [anon_sym___inline] = ACTIONS(3243), - [anon_sym___inline__] = ACTIONS(3243), - [anon_sym___forceinline] = ACTIONS(3243), - [anon_sym_thread_local] = ACTIONS(3243), - [anon_sym___thread] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_constexpr] = ACTIONS(3243), - [anon_sym_volatile] = ACTIONS(3243), - [anon_sym_restrict] = ACTIONS(3243), - [anon_sym___restrict__] = ACTIONS(3243), - [anon_sym__Atomic] = ACTIONS(3243), - [anon_sym__Noreturn] = ACTIONS(3243), - [anon_sym_noreturn] = ACTIONS(3243), - [anon_sym_mutable] = ACTIONS(3243), - [anon_sym_constinit] = ACTIONS(3243), - [anon_sym_consteval] = ACTIONS(3243), - [sym_primitive_type] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_union] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_case] = ACTIONS(3243), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_goto] = ACTIONS(3243), - [anon_sym___try] = ACTIONS(3243), - [anon_sym___leave] = ACTIONS(3243), - [anon_sym_not] = ACTIONS(3243), - [anon_sym_compl] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_sizeof] = ACTIONS(3243), - [anon_sym___alignof__] = ACTIONS(3243), - [anon_sym___alignof] = ACTIONS(3243), - [anon_sym__alignof] = ACTIONS(3243), - [anon_sym_alignof] = ACTIONS(3243), - [anon_sym__Alignof] = ACTIONS(3243), - [anon_sym_offsetof] = ACTIONS(3243), - [anon_sym__Generic] = ACTIONS(3243), - [anon_sym_asm] = ACTIONS(3243), - [anon_sym___asm__] = ACTIONS(3243), - [sym_number_literal] = ACTIONS(3245), - [anon_sym_L_SQUOTE] = ACTIONS(3245), - [anon_sym_u_SQUOTE] = ACTIONS(3245), - [anon_sym_U_SQUOTE] = ACTIONS(3245), - [anon_sym_u8_SQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_L_DQUOTE] = ACTIONS(3245), - [anon_sym_u_DQUOTE] = ACTIONS(3245), - [anon_sym_U_DQUOTE] = ACTIONS(3245), - [anon_sym_u8_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [anon_sym_NULL] = ACTIONS(3243), - [anon_sym_nullptr] = ACTIONS(3243), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3243), - [anon_sym_decltype] = ACTIONS(3243), - [anon_sym_virtual] = ACTIONS(3243), - [anon_sym_alignas] = ACTIONS(3243), - [anon_sym_explicit] = ACTIONS(3243), - [anon_sym_typename] = ACTIONS(3243), - [anon_sym_template] = ACTIONS(3243), - [anon_sym_operator] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_static_assert] = ACTIONS(3243), - [anon_sym_concept] = ACTIONS(3243), - [anon_sym_co_return] = ACTIONS(3243), - [anon_sym_co_yield] = ACTIONS(3243), - [anon_sym_R_DQUOTE] = ACTIONS(3245), - [anon_sym_LR_DQUOTE] = ACTIONS(3245), - [anon_sym_uR_DQUOTE] = ACTIONS(3245), - [anon_sym_UR_DQUOTE] = ACTIONS(3245), - [anon_sym_u8R_DQUOTE] = ACTIONS(3245), - [anon_sym_co_await] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_requires] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), + [sym_identifier] = ACTIONS(3244), + [aux_sym_preproc_include_token1] = ACTIONS(3244), + [aux_sym_preproc_def_token1] = ACTIONS(3244), + [aux_sym_preproc_if_token1] = ACTIONS(3244), + [aux_sym_preproc_if_token2] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3244), + [aux_sym_preproc_else_token1] = ACTIONS(3244), + [aux_sym_preproc_elif_token1] = ACTIONS(3244), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3244), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3244), + [sym_preproc_directive] = ACTIONS(3244), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_typedef] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym___cdecl] = ACTIONS(3244), + [anon_sym___clrcall] = ACTIONS(3244), + [anon_sym___stdcall] = ACTIONS(3244), + [anon_sym___fastcall] = ACTIONS(3244), + [anon_sym___thiscall] = ACTIONS(3244), + [anon_sym___vectorcall] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [sym_primitive_type] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3244), + [anon_sym_union] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_goto] = ACTIONS(3244), + [anon_sym___try] = ACTIONS(3244), + [anon_sym___leave] = ACTIONS(3244), + [anon_sym_not] = ACTIONS(3244), + [anon_sym_compl] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_sizeof] = ACTIONS(3244), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3244), + [anon_sym__Generic] = ACTIONS(3244), + [anon_sym_asm] = ACTIONS(3244), + [anon_sym___asm__] = ACTIONS(3244), + [sym_number_literal] = ACTIONS(3246), + [anon_sym_L_SQUOTE] = ACTIONS(3246), + [anon_sym_u_SQUOTE] = ACTIONS(3246), + [anon_sym_U_SQUOTE] = ACTIONS(3246), + [anon_sym_u8_SQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_L_DQUOTE] = ACTIONS(3246), + [anon_sym_u_DQUOTE] = ACTIONS(3246), + [anon_sym_U_DQUOTE] = ACTIONS(3246), + [anon_sym_u8_DQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [anon_sym_NULL] = ACTIONS(3244), + [anon_sym_nullptr] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym_explicit] = ACTIONS(3244), + [anon_sym_typename] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_static_assert] = ACTIONS(3244), + [anon_sym_concept] = ACTIONS(3244), + [anon_sym_co_return] = ACTIONS(3244), + [anon_sym_co_yield] = 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(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_requires] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), }, [409] = { - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_include_token1] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token2] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [aux_sym_preproc_else_token1] = ACTIONS(3219), - [aux_sym_preproc_elif_token1] = ACTIONS(3219), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym___cdecl] = ACTIONS(3219), - [anon_sym___clrcall] = ACTIONS(3219), - [anon_sym___stdcall] = ACTIONS(3219), - [anon_sym___fastcall] = ACTIONS(3219), - [anon_sym___thiscall] = ACTIONS(3219), - [anon_sym___vectorcall] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym___try] = ACTIONS(3219), - [anon_sym___leave] = ACTIONS(3219), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_compl] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3219), - [anon_sym___alignof__] = ACTIONS(3219), - [anon_sym___alignof] = ACTIONS(3219), - [anon_sym__alignof] = ACTIONS(3219), - [anon_sym_alignof] = ACTIONS(3219), - [anon_sym__Alignof] = ACTIONS(3219), - [anon_sym_offsetof] = ACTIONS(3219), - [anon_sym__Generic] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym___asm__] = ACTIONS(3219), - [sym_number_literal] = ACTIONS(3221), - [anon_sym_L_SQUOTE] = ACTIONS(3221), - [anon_sym_u_SQUOTE] = ACTIONS(3221), - [anon_sym_U_SQUOTE] = ACTIONS(3221), - [anon_sym_u8_SQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_L_DQUOTE] = ACTIONS(3221), - [anon_sym_u_DQUOTE] = ACTIONS(3221), - [anon_sym_U_DQUOTE] = ACTIONS(3221), - [anon_sym_u8_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [anon_sym_NULL] = ACTIONS(3219), - [anon_sym_nullptr] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_explicit] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_operator] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_static_assert] = ACTIONS(3219), - [anon_sym_concept] = ACTIONS(3219), - [anon_sym_co_return] = ACTIONS(3219), - [anon_sym_co_yield] = ACTIONS(3219), - [anon_sym_R_DQUOTE] = ACTIONS(3221), - [anon_sym_LR_DQUOTE] = ACTIONS(3221), - [anon_sym_uR_DQUOTE] = ACTIONS(3221), - [anon_sym_UR_DQUOTE] = ACTIONS(3221), - [anon_sym_u8R_DQUOTE] = ACTIONS(3221), - [anon_sym_co_await] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_requires] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), + [sym_identifier] = ACTIONS(3248), + [aux_sym_preproc_include_token1] = ACTIONS(3248), + [aux_sym_preproc_def_token1] = ACTIONS(3248), + [aux_sym_preproc_if_token1] = ACTIONS(3248), + [aux_sym_preproc_if_token2] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3248), + [aux_sym_preproc_else_token1] = ACTIONS(3248), + [aux_sym_preproc_elif_token1] = ACTIONS(3248), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3248), + [sym_preproc_directive] = ACTIONS(3248), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_typedef] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym___cdecl] = ACTIONS(3248), + [anon_sym___clrcall] = ACTIONS(3248), + [anon_sym___stdcall] = ACTIONS(3248), + [anon_sym___fastcall] = ACTIONS(3248), + [anon_sym___thiscall] = ACTIONS(3248), + [anon_sym___vectorcall] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_signed] = ACTIONS(3248), + [anon_sym_unsigned] = ACTIONS(3248), + [anon_sym_long] = ACTIONS(3248), + [anon_sym_short] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [sym_primitive_type] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3248), + [anon_sym_union] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_goto] = ACTIONS(3248), + [anon_sym___try] = ACTIONS(3248), + [anon_sym___leave] = ACTIONS(3248), + [anon_sym_not] = ACTIONS(3248), + [anon_sym_compl] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_sizeof] = ACTIONS(3248), + [anon_sym___alignof__] = ACTIONS(3248), + [anon_sym___alignof] = ACTIONS(3248), + [anon_sym__alignof] = ACTIONS(3248), + [anon_sym_alignof] = ACTIONS(3248), + [anon_sym__Alignof] = ACTIONS(3248), + [anon_sym_offsetof] = ACTIONS(3248), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_asm] = ACTIONS(3248), + [anon_sym___asm__] = ACTIONS(3248), + [sym_number_literal] = ACTIONS(3250), + [anon_sym_L_SQUOTE] = ACTIONS(3250), + [anon_sym_u_SQUOTE] = ACTIONS(3250), + [anon_sym_U_SQUOTE] = ACTIONS(3250), + [anon_sym_u8_SQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_L_DQUOTE] = ACTIONS(3250), + [anon_sym_u_DQUOTE] = ACTIONS(3250), + [anon_sym_U_DQUOTE] = ACTIONS(3250), + [anon_sym_u8_DQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [anon_sym_NULL] = ACTIONS(3248), + [anon_sym_nullptr] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym_explicit] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_static_assert] = ACTIONS(3248), + [anon_sym_concept] = ACTIONS(3248), + [anon_sym_co_return] = ACTIONS(3248), + [anon_sym_co_yield] = ACTIONS(3248), + [anon_sym_R_DQUOTE] = ACTIONS(3250), + [anon_sym_LR_DQUOTE] = ACTIONS(3250), + [anon_sym_uR_DQUOTE] = ACTIONS(3250), + [anon_sym_UR_DQUOTE] = ACTIONS(3250), + [anon_sym_u8R_DQUOTE] = ACTIONS(3250), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_requires] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), }, [410] = { - [sym_identifier] = ACTIONS(3247), - [aux_sym_preproc_include_token1] = ACTIONS(3247), - [aux_sym_preproc_def_token1] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3247), - [aux_sym_preproc_if_token2] = ACTIONS(3247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3247), - [aux_sym_preproc_else_token1] = ACTIONS(3247), - [aux_sym_preproc_elif_token1] = ACTIONS(3247), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3247), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3247), - [sym_preproc_directive] = ACTIONS(3247), - [anon_sym_LPAREN2] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3249), - [anon_sym_AMP_AMP] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym___extension__] = ACTIONS(3247), - [anon_sym_typedef] = ACTIONS(3247), - [anon_sym_extern] = ACTIONS(3247), - [anon_sym___attribute__] = ACTIONS(3247), - [anon_sym_COLON_COLON] = ACTIONS(3249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3249), - [anon_sym___declspec] = ACTIONS(3247), - [anon_sym___based] = ACTIONS(3247), - [anon_sym___cdecl] = ACTIONS(3247), - [anon_sym___clrcall] = ACTIONS(3247), - [anon_sym___stdcall] = ACTIONS(3247), - [anon_sym___fastcall] = ACTIONS(3247), - [anon_sym___thiscall] = ACTIONS(3247), - [anon_sym___vectorcall] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_signed] = ACTIONS(3247), - [anon_sym_unsigned] = ACTIONS(3247), - [anon_sym_long] = ACTIONS(3247), - [anon_sym_short] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_register] = ACTIONS(3247), - [anon_sym_inline] = ACTIONS(3247), - [anon_sym___inline] = ACTIONS(3247), - [anon_sym___inline__] = ACTIONS(3247), - [anon_sym___forceinline] = ACTIONS(3247), - [anon_sym_thread_local] = ACTIONS(3247), - [anon_sym___thread] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_constexpr] = ACTIONS(3247), - [anon_sym_volatile] = ACTIONS(3247), - [anon_sym_restrict] = ACTIONS(3247), - [anon_sym___restrict__] = ACTIONS(3247), - [anon_sym__Atomic] = ACTIONS(3247), - [anon_sym__Noreturn] = ACTIONS(3247), - [anon_sym_noreturn] = ACTIONS(3247), - [anon_sym_mutable] = ACTIONS(3247), - [anon_sym_constinit] = ACTIONS(3247), - [anon_sym_consteval] = ACTIONS(3247), - [sym_primitive_type] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_case] = ACTIONS(3247), - [anon_sym_default] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_goto] = ACTIONS(3247), - [anon_sym___try] = ACTIONS(3247), - [anon_sym___leave] = ACTIONS(3247), - [anon_sym_not] = ACTIONS(3247), - [anon_sym_compl] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_sizeof] = ACTIONS(3247), - [anon_sym___alignof__] = ACTIONS(3247), - [anon_sym___alignof] = ACTIONS(3247), - [anon_sym__alignof] = ACTIONS(3247), - [anon_sym_alignof] = ACTIONS(3247), - [anon_sym__Alignof] = ACTIONS(3247), - [anon_sym_offsetof] = ACTIONS(3247), - [anon_sym__Generic] = ACTIONS(3247), - [anon_sym_asm] = ACTIONS(3247), - [anon_sym___asm__] = ACTIONS(3247), - [sym_number_literal] = ACTIONS(3249), - [anon_sym_L_SQUOTE] = ACTIONS(3249), - [anon_sym_u_SQUOTE] = ACTIONS(3249), - [anon_sym_U_SQUOTE] = ACTIONS(3249), - [anon_sym_u8_SQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_L_DQUOTE] = ACTIONS(3249), - [anon_sym_u_DQUOTE] = ACTIONS(3249), - [anon_sym_U_DQUOTE] = ACTIONS(3249), - [anon_sym_u8_DQUOTE] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [anon_sym_NULL] = ACTIONS(3247), - [anon_sym_nullptr] = ACTIONS(3247), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3247), - [anon_sym_decltype] = ACTIONS(3247), - [anon_sym_virtual] = ACTIONS(3247), - [anon_sym_alignas] = ACTIONS(3247), - [anon_sym_explicit] = ACTIONS(3247), - [anon_sym_typename] = ACTIONS(3247), - [anon_sym_template] = ACTIONS(3247), - [anon_sym_operator] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_static_assert] = ACTIONS(3247), - [anon_sym_concept] = ACTIONS(3247), - [anon_sym_co_return] = ACTIONS(3247), - [anon_sym_co_yield] = ACTIONS(3247), - [anon_sym_R_DQUOTE] = ACTIONS(3249), - [anon_sym_LR_DQUOTE] = ACTIONS(3249), - [anon_sym_uR_DQUOTE] = ACTIONS(3249), - [anon_sym_UR_DQUOTE] = ACTIONS(3249), - [anon_sym_u8R_DQUOTE] = ACTIONS(3249), - [anon_sym_co_await] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_requires] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3252), + [aux_sym_preproc_include_token1] = ACTIONS(3252), + [aux_sym_preproc_def_token1] = ACTIONS(3252), + [aux_sym_preproc_if_token1] = ACTIONS(3252), + [aux_sym_preproc_if_token2] = ACTIONS(3252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3252), + [aux_sym_preproc_else_token1] = ACTIONS(3252), + [aux_sym_preproc_elif_token1] = ACTIONS(3252), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3252), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3252), + [sym_preproc_directive] = ACTIONS(3252), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym_typedef] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3254), + [anon_sym___declspec] = ACTIONS(3252), + [anon_sym___based] = ACTIONS(3252), + [anon_sym___cdecl] = ACTIONS(3252), + [anon_sym___clrcall] = ACTIONS(3252), + [anon_sym___stdcall] = ACTIONS(3252), + [anon_sym___fastcall] = ACTIONS(3252), + [anon_sym___thiscall] = ACTIONS(3252), + [anon_sym___vectorcall] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_signed] = ACTIONS(3252), + [anon_sym_unsigned] = ACTIONS(3252), + [anon_sym_long] = ACTIONS(3252), + [anon_sym_short] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_inline] = ACTIONS(3252), + [anon_sym___inline] = ACTIONS(3252), + [anon_sym___inline__] = ACTIONS(3252), + [anon_sym___forceinline] = ACTIONS(3252), + [anon_sym_thread_local] = ACTIONS(3252), + [anon_sym___thread] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [sym_primitive_type] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_goto] = ACTIONS(3252), + [anon_sym___try] = ACTIONS(3252), + [anon_sym___leave] = ACTIONS(3252), + [anon_sym_not] = ACTIONS(3252), + [anon_sym_compl] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_sizeof] = ACTIONS(3252), + [anon_sym___alignof__] = ACTIONS(3252), + [anon_sym___alignof] = ACTIONS(3252), + [anon_sym__alignof] = ACTIONS(3252), + [anon_sym_alignof] = ACTIONS(3252), + [anon_sym__Alignof] = ACTIONS(3252), + [anon_sym_offsetof] = ACTIONS(3252), + [anon_sym__Generic] = ACTIONS(3252), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3254), + [anon_sym_u_SQUOTE] = ACTIONS(3254), + [anon_sym_U_SQUOTE] = ACTIONS(3254), + [anon_sym_u8_SQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_L_DQUOTE] = ACTIONS(3254), + [anon_sym_u_DQUOTE] = ACTIONS(3254), + [anon_sym_U_DQUOTE] = ACTIONS(3254), + [anon_sym_u8_DQUOTE] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [anon_sym_NULL] = ACTIONS(3252), + [anon_sym_nullptr] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_virtual] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym_explicit] = ACTIONS(3252), + [anon_sym_typename] = ACTIONS(3252), + [anon_sym_template] = ACTIONS(3252), + [anon_sym_operator] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_static_assert] = ACTIONS(3252), + [anon_sym_concept] = ACTIONS(3252), + [anon_sym_co_return] = ACTIONS(3252), + [anon_sym_co_yield] = ACTIONS(3252), + [anon_sym_R_DQUOTE] = ACTIONS(3254), + [anon_sym_LR_DQUOTE] = ACTIONS(3254), + [anon_sym_uR_DQUOTE] = ACTIONS(3254), + [anon_sym_UR_DQUOTE] = ACTIONS(3254), + [anon_sym_u8R_DQUOTE] = ACTIONS(3254), + [anon_sym_co_await] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_requires] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), }, [411] = { - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_include_token1] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token2] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [aux_sym_preproc_else_token1] = ACTIONS(3251), - [aux_sym_preproc_elif_token1] = ACTIONS(3251), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym___cdecl] = ACTIONS(3251), - [anon_sym___clrcall] = ACTIONS(3251), - [anon_sym___stdcall] = ACTIONS(3251), - [anon_sym___fastcall] = ACTIONS(3251), - [anon_sym___thiscall] = ACTIONS(3251), - [anon_sym___vectorcall] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym___try] = ACTIONS(3251), - [anon_sym___leave] = ACTIONS(3251), - [anon_sym_not] = ACTIONS(3251), - [anon_sym_compl] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3251), - [anon_sym___alignof__] = ACTIONS(3251), - [anon_sym___alignof] = ACTIONS(3251), - [anon_sym__alignof] = ACTIONS(3251), - [anon_sym_alignof] = ACTIONS(3251), - [anon_sym__Alignof] = ACTIONS(3251), - [anon_sym_offsetof] = ACTIONS(3251), - [anon_sym__Generic] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym___asm__] = ACTIONS(3251), - [sym_number_literal] = ACTIONS(3253), - [anon_sym_L_SQUOTE] = ACTIONS(3253), - [anon_sym_u_SQUOTE] = ACTIONS(3253), - [anon_sym_U_SQUOTE] = ACTIONS(3253), - [anon_sym_u8_SQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_L_DQUOTE] = ACTIONS(3253), - [anon_sym_u_DQUOTE] = ACTIONS(3253), - [anon_sym_U_DQUOTE] = ACTIONS(3253), - [anon_sym_u8_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [anon_sym_NULL] = ACTIONS(3251), - [anon_sym_nullptr] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), - [anon_sym_concept] = ACTIONS(3251), - [anon_sym_co_return] = ACTIONS(3251), - [anon_sym_co_yield] = ACTIONS(3251), - [anon_sym_R_DQUOTE] = ACTIONS(3253), - [anon_sym_LR_DQUOTE] = ACTIONS(3253), - [anon_sym_uR_DQUOTE] = ACTIONS(3253), - [anon_sym_UR_DQUOTE] = ACTIONS(3253), - [anon_sym_u8R_DQUOTE] = ACTIONS(3253), - [anon_sym_co_await] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_requires] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3256), + [aux_sym_preproc_include_token1] = ACTIONS(3256), + [aux_sym_preproc_def_token1] = ACTIONS(3256), + [aux_sym_preproc_if_token1] = ACTIONS(3256), + [aux_sym_preproc_if_token2] = ACTIONS(3256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3256), + [aux_sym_preproc_else_token1] = ACTIONS(3256), + [aux_sym_preproc_elif_token1] = ACTIONS(3256), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3256), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3256), + [sym_preproc_directive] = ACTIONS(3256), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym_typedef] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3258), + [anon_sym___declspec] = ACTIONS(3256), + [anon_sym___based] = ACTIONS(3256), + [anon_sym___cdecl] = ACTIONS(3256), + [anon_sym___clrcall] = ACTIONS(3256), + [anon_sym___stdcall] = ACTIONS(3256), + [anon_sym___fastcall] = ACTIONS(3256), + [anon_sym___thiscall] = ACTIONS(3256), + [anon_sym___vectorcall] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_signed] = ACTIONS(3256), + [anon_sym_unsigned] = ACTIONS(3256), + [anon_sym_long] = ACTIONS(3256), + [anon_sym_short] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym___inline] = ACTIONS(3256), + [anon_sym___inline__] = ACTIONS(3256), + [anon_sym___forceinline] = ACTIONS(3256), + [anon_sym_thread_local] = ACTIONS(3256), + [anon_sym___thread] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [sym_primitive_type] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [anon_sym_class] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_union] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3256), + [anon_sym_case] = ACTIONS(3256), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_goto] = ACTIONS(3256), + [anon_sym___try] = ACTIONS(3256), + [anon_sym___leave] = ACTIONS(3256), + [anon_sym_not] = ACTIONS(3256), + [anon_sym_compl] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_sizeof] = ACTIONS(3256), + [anon_sym___alignof__] = ACTIONS(3256), + [anon_sym___alignof] = ACTIONS(3256), + [anon_sym__alignof] = ACTIONS(3256), + [anon_sym_alignof] = ACTIONS(3256), + [anon_sym__Alignof] = ACTIONS(3256), + [anon_sym_offsetof] = ACTIONS(3256), + [anon_sym__Generic] = ACTIONS(3256), + [anon_sym_asm] = ACTIONS(3256), + [anon_sym___asm__] = ACTIONS(3256), + [sym_number_literal] = ACTIONS(3258), + [anon_sym_L_SQUOTE] = ACTIONS(3258), + [anon_sym_u_SQUOTE] = ACTIONS(3258), + [anon_sym_U_SQUOTE] = ACTIONS(3258), + [anon_sym_u8_SQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [anon_sym_NULL] = ACTIONS(3256), + [anon_sym_nullptr] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_virtual] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym_explicit] = ACTIONS(3256), + [anon_sym_typename] = ACTIONS(3256), + [anon_sym_template] = ACTIONS(3256), + [anon_sym_operator] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3256), + [anon_sym_delete] = ACTIONS(3256), + [anon_sym_throw] = ACTIONS(3256), + [anon_sym_namespace] = ACTIONS(3256), + [anon_sym_using] = ACTIONS(3256), + [anon_sym_static_assert] = ACTIONS(3256), + [anon_sym_concept] = ACTIONS(3256), + [anon_sym_co_return] = ACTIONS(3256), + [anon_sym_co_yield] = ACTIONS(3256), + [anon_sym_R_DQUOTE] = ACTIONS(3258), + [anon_sym_LR_DQUOTE] = ACTIONS(3258), + [anon_sym_uR_DQUOTE] = ACTIONS(3258), + [anon_sym_UR_DQUOTE] = ACTIONS(3258), + [anon_sym_u8R_DQUOTE] = ACTIONS(3258), + [anon_sym_co_await] = ACTIONS(3256), + [anon_sym_new] = ACTIONS(3256), + [anon_sym_requires] = ACTIONS(3256), + [sym_this] = ACTIONS(3256), }, [412] = { - [sym_identifier] = ACTIONS(3255), - [aux_sym_preproc_include_token1] = ACTIONS(3255), - [aux_sym_preproc_def_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token2] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), - [aux_sym_preproc_else_token1] = ACTIONS(3255), - [aux_sym_preproc_elif_token1] = ACTIONS(3255), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3255), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3255), - [sym_preproc_directive] = ACTIONS(3255), - [anon_sym_LPAREN2] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_AMP_AMP] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym___extension__] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3255), - [anon_sym_extern] = ACTIONS(3255), - [anon_sym___attribute__] = ACTIONS(3255), - [anon_sym_COLON_COLON] = ACTIONS(3257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3257), - [anon_sym___declspec] = ACTIONS(3255), - [anon_sym___based] = ACTIONS(3255), - [anon_sym___cdecl] = ACTIONS(3255), - [anon_sym___clrcall] = ACTIONS(3255), - [anon_sym___stdcall] = ACTIONS(3255), - [anon_sym___fastcall] = ACTIONS(3255), - [anon_sym___thiscall] = ACTIONS(3255), - [anon_sym___vectorcall] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_signed] = ACTIONS(3255), - [anon_sym_unsigned] = ACTIONS(3255), - [anon_sym_long] = ACTIONS(3255), - [anon_sym_short] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_register] = ACTIONS(3255), - [anon_sym_inline] = ACTIONS(3255), - [anon_sym___inline] = ACTIONS(3255), - [anon_sym___inline__] = ACTIONS(3255), - [anon_sym___forceinline] = ACTIONS(3255), - [anon_sym_thread_local] = ACTIONS(3255), - [anon_sym___thread] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_constexpr] = ACTIONS(3255), - [anon_sym_volatile] = ACTIONS(3255), - [anon_sym_restrict] = ACTIONS(3255), - [anon_sym___restrict__] = ACTIONS(3255), - [anon_sym__Atomic] = ACTIONS(3255), - [anon_sym__Noreturn] = ACTIONS(3255), - [anon_sym_noreturn] = ACTIONS(3255), - [anon_sym_mutable] = ACTIONS(3255), - [anon_sym_constinit] = ACTIONS(3255), - [anon_sym_consteval] = ACTIONS(3255), - [sym_primitive_type] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym___try] = ACTIONS(3255), - [anon_sym___leave] = ACTIONS(3255), - [anon_sym_not] = ACTIONS(3255), - [anon_sym_compl] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3255), - [anon_sym___alignof__] = ACTIONS(3255), - [anon_sym___alignof] = ACTIONS(3255), - [anon_sym__alignof] = ACTIONS(3255), - [anon_sym_alignof] = ACTIONS(3255), - [anon_sym__Alignof] = ACTIONS(3255), - [anon_sym_offsetof] = ACTIONS(3255), - [anon_sym__Generic] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym___asm__] = ACTIONS(3255), - [sym_number_literal] = ACTIONS(3257), - [anon_sym_L_SQUOTE] = ACTIONS(3257), - [anon_sym_u_SQUOTE] = ACTIONS(3257), - [anon_sym_U_SQUOTE] = ACTIONS(3257), - [anon_sym_u8_SQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_L_DQUOTE] = ACTIONS(3257), - [anon_sym_u_DQUOTE] = ACTIONS(3257), - [anon_sym_U_DQUOTE] = ACTIONS(3257), - [anon_sym_u8_DQUOTE] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [anon_sym_NULL] = ACTIONS(3255), - [anon_sym_nullptr] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3255), - [anon_sym_decltype] = ACTIONS(3255), - [anon_sym_virtual] = ACTIONS(3255), - [anon_sym_alignas] = ACTIONS(3255), - [anon_sym_explicit] = ACTIONS(3255), - [anon_sym_typename] = ACTIONS(3255), - [anon_sym_template] = ACTIONS(3255), - [anon_sym_operator] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_static_assert] = ACTIONS(3255), - [anon_sym_concept] = ACTIONS(3255), - [anon_sym_co_return] = ACTIONS(3255), - [anon_sym_co_yield] = ACTIONS(3255), - [anon_sym_R_DQUOTE] = ACTIONS(3257), - [anon_sym_LR_DQUOTE] = ACTIONS(3257), - [anon_sym_uR_DQUOTE] = ACTIONS(3257), - [anon_sym_UR_DQUOTE] = ACTIONS(3257), - [anon_sym_u8R_DQUOTE] = ACTIONS(3257), - [anon_sym_co_await] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_requires] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), + [sym_preproc_def] = STATE(673), + [sym_preproc_function_def] = STATE(673), + [sym_preproc_call] = STATE(673), + [sym_preproc_elifdef] = STATE(8613), + [sym_preproc_if_in_field_declaration_list] = STATE(673), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(673), + [sym_preproc_else_in_field_declaration_list] = STATE(8613), + [sym_preproc_elif_in_field_declaration_list] = STATE(8613), + [sym_type_definition] = STATE(673), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6193), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6791), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(673), + [sym_field_declaration] = STATE(673), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2046), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(673), + [sym_operator_cast] = STATE(7208), + [sym_inline_method_definition] = STATE(673), + [sym__constructor_specifiers] = STATE(2046), + [sym_operator_cast_definition] = STATE(673), + [sym_operator_cast_declaration] = STATE(673), + [sym_constructor_or_destructor_definition] = STATE(673), + [sym_constructor_or_destructor_declaration] = STATE(673), + [sym_friend_declaration] = STATE(673), + [sym_access_specifier] = STATE(8745), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(673), + [sym_alias_declaration] = STATE(673), + [sym_static_assert_declaration] = STATE(673), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7208), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(673), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3026), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [aux_sym_preproc_elifdef_token1] = ACTIONS(279), + [aux_sym_preproc_elifdef_token2] = ACTIONS(279), + [sym_preproc_directive] = ACTIONS(3038), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_typedef] = ACTIONS(3050), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3068), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_static_assert] = ACTIONS(3076), }, [413] = { - [sym_identifier] = ACTIONS(3259), - [aux_sym_preproc_include_token1] = ACTIONS(3259), - [aux_sym_preproc_def_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token2] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3259), - [aux_sym_preproc_else_token1] = ACTIONS(3259), - [aux_sym_preproc_elif_token1] = ACTIONS(3259), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3259), - [sym_preproc_directive] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3261), - [anon_sym___extension__] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3259), - [anon_sym_extern] = ACTIONS(3259), - [anon_sym___attribute__] = ACTIONS(3259), - [anon_sym_COLON_COLON] = ACTIONS(3261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3261), - [anon_sym___declspec] = ACTIONS(3259), - [anon_sym___based] = ACTIONS(3259), - [anon_sym___cdecl] = ACTIONS(3259), - [anon_sym___clrcall] = ACTIONS(3259), - [anon_sym___stdcall] = ACTIONS(3259), - [anon_sym___fastcall] = ACTIONS(3259), - [anon_sym___thiscall] = ACTIONS(3259), - [anon_sym___vectorcall] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_signed] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_register] = ACTIONS(3259), - [anon_sym_inline] = ACTIONS(3259), - [anon_sym___inline] = ACTIONS(3259), - [anon_sym___inline__] = ACTIONS(3259), - [anon_sym___forceinline] = ACTIONS(3259), - [anon_sym_thread_local] = ACTIONS(3259), - [anon_sym___thread] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_constexpr] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym___restrict__] = ACTIONS(3259), - [anon_sym__Atomic] = ACTIONS(3259), - [anon_sym__Noreturn] = ACTIONS(3259), - [anon_sym_noreturn] = ACTIONS(3259), - [anon_sym_mutable] = ACTIONS(3259), - [anon_sym_constinit] = ACTIONS(3259), - [anon_sym_consteval] = ACTIONS(3259), - [sym_primitive_type] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym___try] = ACTIONS(3259), - [anon_sym___leave] = ACTIONS(3259), - [anon_sym_not] = ACTIONS(3259), - [anon_sym_compl] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3259), - [anon_sym___alignof__] = ACTIONS(3259), - [anon_sym___alignof] = ACTIONS(3259), - [anon_sym__alignof] = ACTIONS(3259), - [anon_sym_alignof] = ACTIONS(3259), - [anon_sym__Alignof] = ACTIONS(3259), - [anon_sym_offsetof] = ACTIONS(3259), - [anon_sym__Generic] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym___asm__] = ACTIONS(3259), - [sym_number_literal] = ACTIONS(3261), - [anon_sym_L_SQUOTE] = ACTIONS(3261), - [anon_sym_u_SQUOTE] = ACTIONS(3261), - [anon_sym_U_SQUOTE] = ACTIONS(3261), - [anon_sym_u8_SQUOTE] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3261), - [anon_sym_L_DQUOTE] = ACTIONS(3261), - [anon_sym_u_DQUOTE] = ACTIONS(3261), - [anon_sym_U_DQUOTE] = ACTIONS(3261), - [anon_sym_u8_DQUOTE] = ACTIONS(3261), - [anon_sym_DQUOTE] = ACTIONS(3261), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [anon_sym_NULL] = ACTIONS(3259), - [anon_sym_nullptr] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3259), - [anon_sym_decltype] = ACTIONS(3259), - [anon_sym_virtual] = ACTIONS(3259), - [anon_sym_alignas] = ACTIONS(3259), - [anon_sym_explicit] = ACTIONS(3259), - [anon_sym_typename] = ACTIONS(3259), - [anon_sym_template] = ACTIONS(3259), - [anon_sym_operator] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_static_assert] = ACTIONS(3259), - [anon_sym_concept] = ACTIONS(3259), - [anon_sym_co_return] = ACTIONS(3259), - [anon_sym_co_yield] = ACTIONS(3259), - [anon_sym_R_DQUOTE] = ACTIONS(3261), - [anon_sym_LR_DQUOTE] = ACTIONS(3261), - [anon_sym_uR_DQUOTE] = ACTIONS(3261), - [anon_sym_UR_DQUOTE] = ACTIONS(3261), - [anon_sym_u8R_DQUOTE] = ACTIONS(3261), - [anon_sym_co_await] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_requires] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3262), + [aux_sym_preproc_include_token1] = ACTIONS(3262), + [aux_sym_preproc_def_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token2] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3262), + [aux_sym_preproc_else_token1] = ACTIONS(3262), + [aux_sym_preproc_elif_token1] = ACTIONS(3262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym___extension__] = ACTIONS(3262), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3264), + [anon_sym___declspec] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3262), + [anon_sym___cdecl] = ACTIONS(3262), + [anon_sym___clrcall] = ACTIONS(3262), + [anon_sym___stdcall] = ACTIONS(3262), + [anon_sym___fastcall] = ACTIONS(3262), + [anon_sym___thiscall] = ACTIONS(3262), + [anon_sym___vectorcall] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_signed] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym___inline] = ACTIONS(3262), + [anon_sym___inline__] = ACTIONS(3262), + [anon_sym___forceinline] = ACTIONS(3262), + [anon_sym_thread_local] = ACTIONS(3262), + [anon_sym___thread] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym___try] = ACTIONS(3262), + [anon_sym___leave] = ACTIONS(3262), + [anon_sym_not] = ACTIONS(3262), + [anon_sym_compl] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [anon_sym___alignof__] = ACTIONS(3262), + [anon_sym___alignof] = ACTIONS(3262), + [anon_sym__alignof] = ACTIONS(3262), + [anon_sym_alignof] = ACTIONS(3262), + [anon_sym__Alignof] = ACTIONS(3262), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), + [anon_sym___asm__] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [anon_sym_L_SQUOTE] = ACTIONS(3264), + [anon_sym_u_SQUOTE] = ACTIONS(3264), + [anon_sym_U_SQUOTE] = ACTIONS(3264), + [anon_sym_u8_SQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_L_DQUOTE] = ACTIONS(3264), + [anon_sym_u_DQUOTE] = ACTIONS(3264), + [anon_sym_U_DQUOTE] = ACTIONS(3264), + [anon_sym_u8_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_virtual] = ACTIONS(3262), + [anon_sym_alignas] = ACTIONS(3262), + [anon_sym_explicit] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3262), + [anon_sym_template] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_static_assert] = ACTIONS(3262), + [anon_sym_concept] = ACTIONS(3262), + [anon_sym_co_return] = ACTIONS(3262), + [anon_sym_co_yield] = ACTIONS(3262), + [anon_sym_R_DQUOTE] = ACTIONS(3264), + [anon_sym_LR_DQUOTE] = ACTIONS(3264), + [anon_sym_uR_DQUOTE] = ACTIONS(3264), + [anon_sym_UR_DQUOTE] = ACTIONS(3264), + [anon_sym_u8R_DQUOTE] = ACTIONS(3264), + [anon_sym_co_await] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_requires] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), }, [414] = { - [sym_catch_clause] = STATE(414), - [aux_sym_constructor_try_statement_repeat1] = STATE(414), - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_include_token1] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token2] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym___extension__] = ACTIONS(2813), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym___cdecl] = ACTIONS(2813), - [anon_sym___clrcall] = ACTIONS(2813), - [anon_sym___stdcall] = ACTIONS(2813), - [anon_sym___fastcall] = ACTIONS(2813), - [anon_sym___thiscall] = ACTIONS(2813), - [anon_sym___vectorcall] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym___inline] = ACTIONS(2813), - [anon_sym___inline__] = ACTIONS(2813), - [anon_sym___forceinline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym___thread] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym___restrict__] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym__Noreturn] = ACTIONS(2813), - [anon_sym_noreturn] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_else] = ACTIONS(2813), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_case] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_do] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_goto] = ACTIONS(2813), - [anon_sym___try] = ACTIONS(2813), - [anon_sym___leave] = ACTIONS(2813), - [anon_sym_not] = ACTIONS(2813), - [anon_sym_compl] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_sizeof] = ACTIONS(2813), - [anon_sym___alignof__] = ACTIONS(2813), - [anon_sym___alignof] = ACTIONS(2813), - [anon_sym__alignof] = ACTIONS(2813), - [anon_sym_alignof] = ACTIONS(2813), - [anon_sym__Alignof] = ACTIONS(2813), - [anon_sym_offsetof] = ACTIONS(2813), - [anon_sym__Generic] = ACTIONS(2813), - [anon_sym_asm] = ACTIONS(2813), - [anon_sym___asm__] = ACTIONS(2813), - [sym_number_literal] = ACTIONS(2815), - [anon_sym_L_SQUOTE] = ACTIONS(2815), - [anon_sym_u_SQUOTE] = ACTIONS(2815), - [anon_sym_U_SQUOTE] = ACTIONS(2815), - [anon_sym_u8_SQUOTE] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_L_DQUOTE] = ACTIONS(2815), - [anon_sym_u_DQUOTE] = ACTIONS(2815), - [anon_sym_U_DQUOTE] = ACTIONS(2815), - [anon_sym_u8_DQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [anon_sym_NULL] = ACTIONS(2813), - [anon_sym_nullptr] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_alignas] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_delete] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_namespace] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_concept] = ACTIONS(2813), - [anon_sym_co_return] = ACTIONS(2813), - [anon_sym_co_yield] = ACTIONS(2813), - [anon_sym_catch] = ACTIONS(3263), - [anon_sym_R_DQUOTE] = ACTIONS(2815), - [anon_sym_LR_DQUOTE] = ACTIONS(2815), - [anon_sym_uR_DQUOTE] = ACTIONS(2815), - [anon_sym_UR_DQUOTE] = ACTIONS(2815), - [anon_sym_u8R_DQUOTE] = ACTIONS(2815), - [anon_sym_co_await] = ACTIONS(2813), - [anon_sym_new] = ACTIONS(2813), - [anon_sym_requires] = ACTIONS(2813), - [sym_this] = ACTIONS(2813), - }, - [415] = { [sym_identifier] = ACTIONS(3266), [aux_sym_preproc_include_token1] = ACTIONS(3266), [aux_sym_preproc_def_token1] = ACTIONS(3266), @@ -148655,7 +148852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3266), [sym_this] = ACTIONS(3266), }, - [416] = { + [415] = { [sym_identifier] = ACTIONS(3270), [aux_sym_preproc_include_token1] = ACTIONS(3270), [aux_sym_preproc_def_token1] = ACTIONS(3270), @@ -148791,7 +148988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3270), [sym_this] = ACTIONS(3270), }, - [417] = { + [416] = { [sym_identifier] = ACTIONS(3274), [aux_sym_preproc_include_token1] = ACTIONS(3274), [aux_sym_preproc_def_token1] = ACTIONS(3274), @@ -148927,823 +149124,687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3274), [sym_this] = ACTIONS(3274), }, + [417] = { + [sym_identifier] = ACTIONS(3278), + [aux_sym_preproc_include_token1] = ACTIONS(3278), + [aux_sym_preproc_def_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token2] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), + [aux_sym_preproc_else_token1] = ACTIONS(3278), + [aux_sym_preproc_elif_token1] = ACTIONS(3278), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3278), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_LPAREN2] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym___extension__] = ACTIONS(3278), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym___attribute__] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), + [anon_sym___declspec] = ACTIONS(3278), + [anon_sym___based] = ACTIONS(3278), + [anon_sym___cdecl] = ACTIONS(3278), + [anon_sym___clrcall] = ACTIONS(3278), + [anon_sym___stdcall] = ACTIONS(3278), + [anon_sym___fastcall] = ACTIONS(3278), + [anon_sym___thiscall] = ACTIONS(3278), + [anon_sym___vectorcall] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_signed] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym___inline] = ACTIONS(3278), + [anon_sym___inline__] = ACTIONS(3278), + [anon_sym___forceinline] = ACTIONS(3278), + [anon_sym_thread_local] = ACTIONS(3278), + [anon_sym___thread] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_constexpr] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym___restrict__] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym__Noreturn] = ACTIONS(3278), + [anon_sym_noreturn] = ACTIONS(3278), + [anon_sym_mutable] = ACTIONS(3278), + [anon_sym_constinit] = ACTIONS(3278), + [anon_sym_consteval] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym___try] = ACTIONS(3278), + [anon_sym___leave] = ACTIONS(3278), + [anon_sym_not] = ACTIONS(3278), + [anon_sym_compl] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [anon_sym___alignof__] = ACTIONS(3278), + [anon_sym___alignof] = ACTIONS(3278), + [anon_sym__alignof] = ACTIONS(3278), + [anon_sym_alignof] = ACTIONS(3278), + [anon_sym__Alignof] = ACTIONS(3278), + [anon_sym_offsetof] = ACTIONS(3278), + [anon_sym__Generic] = ACTIONS(3278), + [anon_sym_asm] = ACTIONS(3278), + [anon_sym___asm__] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [anon_sym_L_SQUOTE] = ACTIONS(3280), + [anon_sym_u_SQUOTE] = ACTIONS(3280), + [anon_sym_U_SQUOTE] = ACTIONS(3280), + [anon_sym_u8_SQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_L_DQUOTE] = ACTIONS(3280), + [anon_sym_u_DQUOTE] = ACTIONS(3280), + [anon_sym_U_DQUOTE] = ACTIONS(3280), + [anon_sym_u8_DQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3278), + [anon_sym_decltype] = ACTIONS(3278), + [anon_sym_virtual] = ACTIONS(3278), + [anon_sym_alignas] = ACTIONS(3278), + [anon_sym_explicit] = ACTIONS(3278), + [anon_sym_typename] = ACTIONS(3278), + [anon_sym_template] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_static_assert] = ACTIONS(3278), + [anon_sym_concept] = ACTIONS(3278), + [anon_sym_co_return] = ACTIONS(3278), + [anon_sym_co_yield] = ACTIONS(3278), + [anon_sym_R_DQUOTE] = ACTIONS(3280), + [anon_sym_LR_DQUOTE] = ACTIONS(3280), + [anon_sym_uR_DQUOTE] = ACTIONS(3280), + [anon_sym_UR_DQUOTE] = ACTIONS(3280), + [anon_sym_u8R_DQUOTE] = ACTIONS(3280), + [anon_sym_co_await] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), + }, [418] = { - [sym_catch_clause] = STATE(394), - [aux_sym_constructor_try_statement_repeat1] = STATE(394), - [sym_identifier] = ACTIONS(2820), - [aux_sym_preproc_include_token1] = ACTIONS(2820), - [aux_sym_preproc_def_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token1] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), - [sym_preproc_directive] = ACTIONS(2820), - [anon_sym_LPAREN2] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym___extension__] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym___attribute__] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), - [anon_sym___declspec] = ACTIONS(2820), - [anon_sym___based] = ACTIONS(2820), - [anon_sym___cdecl] = ACTIONS(2820), - [anon_sym___clrcall] = ACTIONS(2820), - [anon_sym___stdcall] = ACTIONS(2820), - [anon_sym___fastcall] = ACTIONS(2820), - [anon_sym___thiscall] = ACTIONS(2820), - [anon_sym___vectorcall] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_RBRACE] = ACTIONS(2822), - [anon_sym_signed] = ACTIONS(2820), - [anon_sym_unsigned] = ACTIONS(2820), - [anon_sym_long] = ACTIONS(2820), - [anon_sym_short] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_register] = ACTIONS(2820), - [anon_sym_inline] = ACTIONS(2820), - [anon_sym___inline] = ACTIONS(2820), - [anon_sym___inline__] = ACTIONS(2820), - [anon_sym___forceinline] = ACTIONS(2820), - [anon_sym_thread_local] = ACTIONS(2820), - [anon_sym___thread] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_constexpr] = ACTIONS(2820), - [anon_sym_volatile] = ACTIONS(2820), - [anon_sym_restrict] = ACTIONS(2820), - [anon_sym___restrict__] = ACTIONS(2820), - [anon_sym__Atomic] = ACTIONS(2820), - [anon_sym__Noreturn] = ACTIONS(2820), - [anon_sym_noreturn] = ACTIONS(2820), - [anon_sym_mutable] = ACTIONS(2820), - [anon_sym_constinit] = ACTIONS(2820), - [anon_sym_consteval] = ACTIONS(2820), - [sym_primitive_type] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2820), - [anon_sym_switch] = ACTIONS(2820), - [anon_sym_case] = ACTIONS(2820), - [anon_sym_default] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_do] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym___try] = ACTIONS(2820), - [anon_sym___leave] = ACTIONS(2820), - [anon_sym_not] = ACTIONS(2820), - [anon_sym_compl] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_sizeof] = ACTIONS(2820), - [anon_sym___alignof__] = ACTIONS(2820), - [anon_sym___alignof] = ACTIONS(2820), - [anon_sym__alignof] = ACTIONS(2820), - [anon_sym_alignof] = ACTIONS(2820), - [anon_sym__Alignof] = ACTIONS(2820), - [anon_sym_offsetof] = ACTIONS(2820), - [anon_sym__Generic] = ACTIONS(2820), - [anon_sym_asm] = ACTIONS(2820), - [anon_sym___asm__] = ACTIONS(2820), - [sym_number_literal] = ACTIONS(2822), - [anon_sym_L_SQUOTE] = ACTIONS(2822), - [anon_sym_u_SQUOTE] = ACTIONS(2822), - [anon_sym_U_SQUOTE] = ACTIONS(2822), - [anon_sym_u8_SQUOTE] = ACTIONS(2822), - [anon_sym_SQUOTE] = ACTIONS(2822), - [anon_sym_L_DQUOTE] = ACTIONS(2822), - [anon_sym_u_DQUOTE] = ACTIONS(2822), - [anon_sym_U_DQUOTE] = ACTIONS(2822), - [anon_sym_u8_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [anon_sym_NULL] = ACTIONS(2820), - [anon_sym_nullptr] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2820), - [anon_sym_decltype] = ACTIONS(2820), - [anon_sym_virtual] = ACTIONS(2820), - [anon_sym_alignas] = ACTIONS(2820), - [anon_sym_explicit] = ACTIONS(2820), - [anon_sym_typename] = ACTIONS(2820), - [anon_sym_template] = ACTIONS(2820), - [anon_sym_operator] = ACTIONS(2820), - [anon_sym_try] = ACTIONS(2820), - [anon_sym_delete] = ACTIONS(2820), - [anon_sym_throw] = ACTIONS(2820), - [anon_sym_namespace] = ACTIONS(2820), - [anon_sym_using] = ACTIONS(2820), - [anon_sym_static_assert] = ACTIONS(2820), - [anon_sym_concept] = ACTIONS(2820), - [anon_sym_co_return] = ACTIONS(2820), - [anon_sym_co_yield] = ACTIONS(2820), - [anon_sym_catch] = ACTIONS(3278), - [anon_sym_R_DQUOTE] = ACTIONS(2822), - [anon_sym_LR_DQUOTE] = ACTIONS(2822), - [anon_sym_uR_DQUOTE] = ACTIONS(2822), - [anon_sym_UR_DQUOTE] = ACTIONS(2822), - [anon_sym_u8R_DQUOTE] = ACTIONS(2822), - [anon_sym_co_await] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2820), - [anon_sym_requires] = ACTIONS(2820), - [sym_this] = ACTIONS(2820), + [sym_identifier] = ACTIONS(3282), + [aux_sym_preproc_include_token1] = ACTIONS(3282), + [aux_sym_preproc_def_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token2] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [aux_sym_preproc_else_token1] = ACTIONS(3282), + [aux_sym_preproc_elif_token1] = ACTIONS(3282), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym___extension__] = ACTIONS(3282), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym___attribute__] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), + [anon_sym___declspec] = ACTIONS(3282), + [anon_sym___based] = ACTIONS(3282), + [anon_sym___cdecl] = ACTIONS(3282), + [anon_sym___clrcall] = ACTIONS(3282), + [anon_sym___stdcall] = ACTIONS(3282), + [anon_sym___fastcall] = ACTIONS(3282), + [anon_sym___thiscall] = ACTIONS(3282), + [anon_sym___vectorcall] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_signed] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym___inline] = ACTIONS(3282), + [anon_sym___inline__] = ACTIONS(3282), + [anon_sym___forceinline] = ACTIONS(3282), + [anon_sym_thread_local] = ACTIONS(3282), + [anon_sym___thread] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_constexpr] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym___restrict__] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym__Noreturn] = ACTIONS(3282), + [anon_sym_noreturn] = ACTIONS(3282), + [anon_sym_mutable] = ACTIONS(3282), + [anon_sym_constinit] = ACTIONS(3282), + [anon_sym_consteval] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym___try] = ACTIONS(3282), + [anon_sym___leave] = ACTIONS(3282), + [anon_sym_not] = ACTIONS(3282), + [anon_sym_compl] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [anon_sym___alignof__] = ACTIONS(3282), + [anon_sym___alignof] = ACTIONS(3282), + [anon_sym__alignof] = ACTIONS(3282), + [anon_sym_alignof] = ACTIONS(3282), + [anon_sym__Alignof] = ACTIONS(3282), + [anon_sym_offsetof] = ACTIONS(3282), + [anon_sym__Generic] = ACTIONS(3282), + [anon_sym_asm] = ACTIONS(3282), + [anon_sym___asm__] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [anon_sym_L_SQUOTE] = ACTIONS(3284), + [anon_sym_u_SQUOTE] = ACTIONS(3284), + [anon_sym_U_SQUOTE] = ACTIONS(3284), + [anon_sym_u8_SQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_L_DQUOTE] = ACTIONS(3284), + [anon_sym_u_DQUOTE] = ACTIONS(3284), + [anon_sym_U_DQUOTE] = ACTIONS(3284), + [anon_sym_u8_DQUOTE] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [anon_sym_NULL] = ACTIONS(3282), + [anon_sym_nullptr] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3282), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_virtual] = ACTIONS(3282), + [anon_sym_alignas] = ACTIONS(3282), + [anon_sym_explicit] = ACTIONS(3282), + [anon_sym_typename] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3282), + [anon_sym_operator] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_static_assert] = ACTIONS(3282), + [anon_sym_concept] = ACTIONS(3282), + [anon_sym_co_return] = ACTIONS(3282), + [anon_sym_co_yield] = ACTIONS(3282), + [anon_sym_R_DQUOTE] = ACTIONS(3284), + [anon_sym_LR_DQUOTE] = ACTIONS(3284), + [anon_sym_uR_DQUOTE] = ACTIONS(3284), + [anon_sym_UR_DQUOTE] = ACTIONS(3284), + [anon_sym_u8R_DQUOTE] = ACTIONS(3284), + [anon_sym_co_await] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_requires] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), }, [419] = { - [sym_identifier] = ACTIONS(3280), - [aux_sym_preproc_include_token1] = ACTIONS(3280), - [aux_sym_preproc_def_token1] = ACTIONS(3280), - [aux_sym_preproc_if_token1] = ACTIONS(3280), - [aux_sym_preproc_if_token2] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3280), - [aux_sym_preproc_else_token1] = ACTIONS(3280), - [aux_sym_preproc_elif_token1] = ACTIONS(3280), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3280), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3280), - [sym_preproc_directive] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_STAR] = ACTIONS(3282), - [anon_sym_AMP_AMP] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym___extension__] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3282), - [anon_sym___declspec] = ACTIONS(3280), - [anon_sym___based] = ACTIONS(3280), - [anon_sym___cdecl] = ACTIONS(3280), - [anon_sym___clrcall] = ACTIONS(3280), - [anon_sym___stdcall] = ACTIONS(3280), - [anon_sym___fastcall] = ACTIONS(3280), - [anon_sym___thiscall] = ACTIONS(3280), - [anon_sym___vectorcall] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_signed] = ACTIONS(3280), - [anon_sym_unsigned] = ACTIONS(3280), - [anon_sym_long] = ACTIONS(3280), - [anon_sym_short] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_register] = ACTIONS(3280), - [anon_sym_inline] = ACTIONS(3280), - [anon_sym___inline] = ACTIONS(3280), - [anon_sym___inline__] = ACTIONS(3280), - [anon_sym___forceinline] = ACTIONS(3280), - [anon_sym_thread_local] = ACTIONS(3280), - [anon_sym___thread] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_constexpr] = ACTIONS(3280), - [anon_sym_volatile] = ACTIONS(3280), - [anon_sym_restrict] = ACTIONS(3280), - [anon_sym___restrict__] = ACTIONS(3280), - [anon_sym__Atomic] = ACTIONS(3280), - [anon_sym__Noreturn] = ACTIONS(3280), - [anon_sym_noreturn] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [sym_primitive_type] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_struct] = ACTIONS(3280), - [anon_sym_union] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_case] = ACTIONS(3280), - [anon_sym_default] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_goto] = ACTIONS(3280), - [anon_sym___try] = ACTIONS(3280), - [anon_sym___leave] = ACTIONS(3280), - [anon_sym_not] = ACTIONS(3280), - [anon_sym_compl] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_sizeof] = ACTIONS(3280), - [anon_sym___alignof__] = ACTIONS(3280), - [anon_sym___alignof] = ACTIONS(3280), - [anon_sym__alignof] = ACTIONS(3280), - [anon_sym_alignof] = ACTIONS(3280), - [anon_sym__Alignof] = ACTIONS(3280), - [anon_sym_offsetof] = ACTIONS(3280), - [anon_sym__Generic] = ACTIONS(3280), - [anon_sym_asm] = ACTIONS(3280), - [anon_sym___asm__] = ACTIONS(3280), - [sym_number_literal] = ACTIONS(3282), - [anon_sym_L_SQUOTE] = ACTIONS(3282), - [anon_sym_u_SQUOTE] = ACTIONS(3282), - [anon_sym_U_SQUOTE] = ACTIONS(3282), - [anon_sym_u8_SQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_L_DQUOTE] = ACTIONS(3282), - [anon_sym_u_DQUOTE] = ACTIONS(3282), - [anon_sym_U_DQUOTE] = ACTIONS(3282), - [anon_sym_u8_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym_true] = ACTIONS(3280), - [sym_false] = ACTIONS(3280), - [anon_sym_NULL] = ACTIONS(3280), - [anon_sym_nullptr] = ACTIONS(3280), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3280), - [anon_sym_decltype] = ACTIONS(3280), - [anon_sym_virtual] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym_explicit] = ACTIONS(3280), - [anon_sym_typename] = ACTIONS(3280), - [anon_sym_template] = ACTIONS(3280), - [anon_sym_operator] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_namespace] = ACTIONS(3280), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_static_assert] = ACTIONS(3280), - [anon_sym_concept] = ACTIONS(3280), - [anon_sym_co_return] = ACTIONS(3280), - [anon_sym_co_yield] = ACTIONS(3280), - [anon_sym_R_DQUOTE] = ACTIONS(3282), - [anon_sym_LR_DQUOTE] = ACTIONS(3282), - [anon_sym_uR_DQUOTE] = ACTIONS(3282), - [anon_sym_UR_DQUOTE] = ACTIONS(3282), - [anon_sym_u8R_DQUOTE] = ACTIONS(3282), - [anon_sym_co_await] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_requires] = ACTIONS(3280), - [sym_this] = ACTIONS(3280), + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token2] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [aux_sym_preproc_else_token1] = ACTIONS(3286), + [aux_sym_preproc_elif_token1] = ACTIONS(3286), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym___extension__] = ACTIONS(3286), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym___inline] = ACTIONS(3286), + [anon_sym___inline__] = ACTIONS(3286), + [anon_sym___forceinline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym___thread] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym___try] = ACTIONS(3286), + [anon_sym___leave] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym___alignof__] = ACTIONS(3286), + [anon_sym___alignof] = ACTIONS(3286), + [anon_sym__alignof] = ACTIONS(3286), + [anon_sym_alignof] = ACTIONS(3286), + [anon_sym__Alignof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_alignas] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), }, [420] = { - [sym_identifier] = ACTIONS(3284), - [aux_sym_preproc_include_token1] = ACTIONS(3284), - [aux_sym_preproc_def_token1] = ACTIONS(3284), - [aux_sym_preproc_if_token1] = ACTIONS(3284), - [aux_sym_preproc_if_token2] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3284), - [aux_sym_preproc_else_token1] = ACTIONS(3284), - [aux_sym_preproc_elif_token1] = ACTIONS(3284), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3284), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3284), - [sym_preproc_directive] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym___extension__] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym___attribute__] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3286), - [anon_sym___declspec] = ACTIONS(3284), - [anon_sym___based] = ACTIONS(3284), - [anon_sym___cdecl] = ACTIONS(3284), - [anon_sym___clrcall] = ACTIONS(3284), - [anon_sym___stdcall] = ACTIONS(3284), - [anon_sym___fastcall] = ACTIONS(3284), - [anon_sym___thiscall] = ACTIONS(3284), - [anon_sym___vectorcall] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_signed] = ACTIONS(3284), - [anon_sym_unsigned] = ACTIONS(3284), - [anon_sym_long] = ACTIONS(3284), - [anon_sym_short] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_register] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym___inline] = ACTIONS(3284), - [anon_sym___inline__] = ACTIONS(3284), - [anon_sym___forceinline] = ACTIONS(3284), - [anon_sym_thread_local] = ACTIONS(3284), - [anon_sym___thread] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_constexpr] = ACTIONS(3284), - [anon_sym_volatile] = ACTIONS(3284), - [anon_sym_restrict] = ACTIONS(3284), - [anon_sym___restrict__] = ACTIONS(3284), - [anon_sym__Atomic] = ACTIONS(3284), - [anon_sym__Noreturn] = ACTIONS(3284), - [anon_sym_noreturn] = ACTIONS(3284), - [anon_sym_mutable] = ACTIONS(3284), - [anon_sym_constinit] = ACTIONS(3284), - [anon_sym_consteval] = ACTIONS(3284), - [sym_primitive_type] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3284), - [anon_sym_union] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_goto] = ACTIONS(3284), - [anon_sym___try] = ACTIONS(3284), - [anon_sym___leave] = ACTIONS(3284), - [anon_sym_not] = ACTIONS(3284), - [anon_sym_compl] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_sizeof] = ACTIONS(3284), - [anon_sym___alignof__] = ACTIONS(3284), - [anon_sym___alignof] = ACTIONS(3284), - [anon_sym__alignof] = ACTIONS(3284), - [anon_sym_alignof] = ACTIONS(3284), - [anon_sym__Alignof] = ACTIONS(3284), - [anon_sym_offsetof] = ACTIONS(3284), - [anon_sym__Generic] = ACTIONS(3284), - [anon_sym_asm] = ACTIONS(3284), - [anon_sym___asm__] = ACTIONS(3284), - [sym_number_literal] = ACTIONS(3286), - [anon_sym_L_SQUOTE] = ACTIONS(3286), - [anon_sym_u_SQUOTE] = ACTIONS(3286), - [anon_sym_U_SQUOTE] = ACTIONS(3286), - [anon_sym_u8_SQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_L_DQUOTE] = ACTIONS(3286), - [anon_sym_u_DQUOTE] = ACTIONS(3286), - [anon_sym_U_DQUOTE] = ACTIONS(3286), - [anon_sym_u8_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [anon_sym_NULL] = ACTIONS(3284), - [anon_sym_nullptr] = ACTIONS(3284), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3284), - [anon_sym_decltype] = ACTIONS(3284), - [anon_sym_virtual] = ACTIONS(3284), - [anon_sym_alignas] = ACTIONS(3284), - [anon_sym_explicit] = ACTIONS(3284), - [anon_sym_typename] = ACTIONS(3284), - [anon_sym_template] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_static_assert] = ACTIONS(3284), - [anon_sym_concept] = ACTIONS(3284), - [anon_sym_co_return] = ACTIONS(3284), - [anon_sym_co_yield] = ACTIONS(3284), - [anon_sym_R_DQUOTE] = ACTIONS(3286), - [anon_sym_LR_DQUOTE] = ACTIONS(3286), - [anon_sym_uR_DQUOTE] = ACTIONS(3286), - [anon_sym_UR_DQUOTE] = ACTIONS(3286), - [anon_sym_u8R_DQUOTE] = ACTIONS(3286), - [anon_sym_co_await] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_requires] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), + [sym_identifier] = ACTIONS(3290), + [aux_sym_preproc_include_token1] = ACTIONS(3290), + [aux_sym_preproc_def_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token2] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), + [aux_sym_preproc_else_token1] = ACTIONS(3290), + [aux_sym_preproc_elif_token1] = ACTIONS(3290), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3290), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3290), + [sym_preproc_directive] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym___extension__] = ACTIONS(3290), + [anon_sym_typedef] = ACTIONS(3290), + [anon_sym_extern] = ACTIONS(3290), + [anon_sym___attribute__] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), + [anon_sym___declspec] = ACTIONS(3290), + [anon_sym___based] = ACTIONS(3290), + [anon_sym___cdecl] = ACTIONS(3290), + [anon_sym___clrcall] = ACTIONS(3290), + [anon_sym___stdcall] = ACTIONS(3290), + [anon_sym___fastcall] = ACTIONS(3290), + [anon_sym___thiscall] = ACTIONS(3290), + [anon_sym___vectorcall] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_signed] = ACTIONS(3290), + [anon_sym_unsigned] = ACTIONS(3290), + [anon_sym_long] = ACTIONS(3290), + [anon_sym_short] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_register] = ACTIONS(3290), + [anon_sym_inline] = ACTIONS(3290), + [anon_sym___inline] = ACTIONS(3290), + [anon_sym___inline__] = ACTIONS(3290), + [anon_sym___forceinline] = ACTIONS(3290), + [anon_sym_thread_local] = ACTIONS(3290), + [anon_sym___thread] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_constexpr] = ACTIONS(3290), + [anon_sym_volatile] = ACTIONS(3290), + [anon_sym_restrict] = ACTIONS(3290), + [anon_sym___restrict__] = ACTIONS(3290), + [anon_sym__Atomic] = ACTIONS(3290), + [anon_sym__Noreturn] = ACTIONS(3290), + [anon_sym_noreturn] = ACTIONS(3290), + [anon_sym_mutable] = ACTIONS(3290), + [anon_sym_constinit] = ACTIONS(3290), + [anon_sym_consteval] = ACTIONS(3290), + [sym_primitive_type] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_goto] = ACTIONS(3290), + [anon_sym___try] = ACTIONS(3290), + [anon_sym___leave] = ACTIONS(3290), + [anon_sym_not] = ACTIONS(3290), + [anon_sym_compl] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_sizeof] = ACTIONS(3290), + [anon_sym___alignof__] = ACTIONS(3290), + [anon_sym___alignof] = ACTIONS(3290), + [anon_sym__alignof] = ACTIONS(3290), + [anon_sym_alignof] = ACTIONS(3290), + [anon_sym__Alignof] = ACTIONS(3290), + [anon_sym_offsetof] = ACTIONS(3290), + [anon_sym__Generic] = ACTIONS(3290), + [anon_sym_asm] = ACTIONS(3290), + [anon_sym___asm__] = ACTIONS(3290), + [sym_number_literal] = ACTIONS(3292), + [anon_sym_L_SQUOTE] = ACTIONS(3292), + [anon_sym_u_SQUOTE] = ACTIONS(3292), + [anon_sym_U_SQUOTE] = ACTIONS(3292), + [anon_sym_u8_SQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_L_DQUOTE] = ACTIONS(3292), + [anon_sym_u_DQUOTE] = ACTIONS(3292), + [anon_sym_U_DQUOTE] = ACTIONS(3292), + [anon_sym_u8_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [anon_sym_NULL] = ACTIONS(3290), + [anon_sym_nullptr] = ACTIONS(3290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3290), + [anon_sym_decltype] = ACTIONS(3290), + [anon_sym_virtual] = ACTIONS(3290), + [anon_sym_alignas] = ACTIONS(3290), + [anon_sym_explicit] = ACTIONS(3290), + [anon_sym_typename] = ACTIONS(3290), + [anon_sym_template] = ACTIONS(3290), + [anon_sym_operator] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_static_assert] = ACTIONS(3290), + [anon_sym_concept] = ACTIONS(3290), + [anon_sym_co_return] = ACTIONS(3290), + [anon_sym_co_yield] = ACTIONS(3290), + [anon_sym_R_DQUOTE] = ACTIONS(3292), + [anon_sym_LR_DQUOTE] = ACTIONS(3292), + [anon_sym_uR_DQUOTE] = ACTIONS(3292), + [anon_sym_UR_DQUOTE] = ACTIONS(3292), + [anon_sym_u8R_DQUOTE] = ACTIONS(3292), + [anon_sym_co_await] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_requires] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), }, [421] = { - [sym_identifier] = ACTIONS(3288), - [aux_sym_preproc_include_token1] = ACTIONS(3288), - [aux_sym_preproc_def_token1] = ACTIONS(3288), - [aux_sym_preproc_if_token1] = ACTIONS(3288), - [aux_sym_preproc_if_token2] = ACTIONS(3288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3288), - [aux_sym_preproc_else_token1] = ACTIONS(3288), - [aux_sym_preproc_elif_token1] = ACTIONS(3288), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3288), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3288), - [sym_preproc_directive] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3290), - [anon_sym_AMP_AMP] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym___extension__] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym___attribute__] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3290), - [anon_sym___declspec] = ACTIONS(3288), - [anon_sym___based] = ACTIONS(3288), - [anon_sym___cdecl] = ACTIONS(3288), - [anon_sym___clrcall] = ACTIONS(3288), - [anon_sym___stdcall] = ACTIONS(3288), - [anon_sym___fastcall] = ACTIONS(3288), - [anon_sym___thiscall] = ACTIONS(3288), - [anon_sym___vectorcall] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_signed] = ACTIONS(3288), - [anon_sym_unsigned] = ACTIONS(3288), - [anon_sym_long] = ACTIONS(3288), - [anon_sym_short] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_register] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym___inline] = ACTIONS(3288), - [anon_sym___inline__] = ACTIONS(3288), - [anon_sym___forceinline] = ACTIONS(3288), - [anon_sym_thread_local] = ACTIONS(3288), - [anon_sym___thread] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_constexpr] = ACTIONS(3288), - [anon_sym_volatile] = ACTIONS(3288), - [anon_sym_restrict] = ACTIONS(3288), - [anon_sym___restrict__] = ACTIONS(3288), - [anon_sym__Atomic] = ACTIONS(3288), - [anon_sym__Noreturn] = ACTIONS(3288), - [anon_sym_noreturn] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(3288), - [anon_sym_constinit] = ACTIONS(3288), - [anon_sym_consteval] = ACTIONS(3288), - [sym_primitive_type] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3288), - [anon_sym_union] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_goto] = ACTIONS(3288), - [anon_sym___try] = ACTIONS(3288), - [anon_sym___leave] = ACTIONS(3288), - [anon_sym_not] = ACTIONS(3288), - [anon_sym_compl] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_sizeof] = ACTIONS(3288), - [anon_sym___alignof__] = ACTIONS(3288), - [anon_sym___alignof] = ACTIONS(3288), - [anon_sym__alignof] = ACTIONS(3288), - [anon_sym_alignof] = ACTIONS(3288), - [anon_sym__Alignof] = ACTIONS(3288), - [anon_sym_offsetof] = ACTIONS(3288), - [anon_sym__Generic] = ACTIONS(3288), - [anon_sym_asm] = ACTIONS(3288), - [anon_sym___asm__] = ACTIONS(3288), - [sym_number_literal] = ACTIONS(3290), - [anon_sym_L_SQUOTE] = ACTIONS(3290), - [anon_sym_u_SQUOTE] = ACTIONS(3290), - [anon_sym_U_SQUOTE] = ACTIONS(3290), - [anon_sym_u8_SQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_L_DQUOTE] = ACTIONS(3290), - [anon_sym_u_DQUOTE] = ACTIONS(3290), - [anon_sym_U_DQUOTE] = ACTIONS(3290), - [anon_sym_u8_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [anon_sym_NULL] = ACTIONS(3288), - [anon_sym_nullptr] = ACTIONS(3288), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3288), - [anon_sym_decltype] = ACTIONS(3288), - [anon_sym_virtual] = ACTIONS(3288), - [anon_sym_alignas] = ACTIONS(3288), - [anon_sym_explicit] = ACTIONS(3288), - [anon_sym_typename] = ACTIONS(3288), - [anon_sym_template] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_static_assert] = ACTIONS(3288), - [anon_sym_concept] = ACTIONS(3288), - [anon_sym_co_return] = ACTIONS(3288), - [anon_sym_co_yield] = 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(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_requires] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_include_token1] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [aux_sym_preproc_else_token1] = ACTIONS(3294), + [aux_sym_preproc_elif_token1] = ACTIONS(3294), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym___cdecl] = ACTIONS(3294), + [anon_sym___clrcall] = ACTIONS(3294), + [anon_sym___stdcall] = ACTIONS(3294), + [anon_sym___fastcall] = ACTIONS(3294), + [anon_sym___thiscall] = ACTIONS(3294), + [anon_sym___vectorcall] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_goto] = ACTIONS(3294), + [anon_sym___try] = ACTIONS(3294), + [anon_sym___leave] = ACTIONS(3294), + [anon_sym_not] = ACTIONS(3294), + [anon_sym_compl] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_sizeof] = ACTIONS(3294), + [anon_sym___alignof__] = ACTIONS(3294), + [anon_sym___alignof] = ACTIONS(3294), + [anon_sym__alignof] = ACTIONS(3294), + [anon_sym_alignof] = ACTIONS(3294), + [anon_sym__Alignof] = ACTIONS(3294), + [anon_sym_offsetof] = ACTIONS(3294), + [anon_sym__Generic] = ACTIONS(3294), + [anon_sym_asm] = ACTIONS(3294), + [anon_sym___asm__] = ACTIONS(3294), + [sym_number_literal] = ACTIONS(3296), + [anon_sym_L_SQUOTE] = ACTIONS(3296), + [anon_sym_u_SQUOTE] = ACTIONS(3296), + [anon_sym_U_SQUOTE] = ACTIONS(3296), + [anon_sym_u8_SQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_L_DQUOTE] = ACTIONS(3296), + [anon_sym_u_DQUOTE] = ACTIONS(3296), + [anon_sym_U_DQUOTE] = ACTIONS(3296), + [anon_sym_u8_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [anon_sym_NULL] = ACTIONS(3294), + [anon_sym_nullptr] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [anon_sym_concept] = ACTIONS(3294), + [anon_sym_co_return] = ACTIONS(3294), + [anon_sym_co_yield] = ACTIONS(3294), + [anon_sym_R_DQUOTE] = ACTIONS(3296), + [anon_sym_LR_DQUOTE] = ACTIONS(3296), + [anon_sym_uR_DQUOTE] = ACTIONS(3296), + [anon_sym_UR_DQUOTE] = ACTIONS(3296), + [anon_sym_u8R_DQUOTE] = ACTIONS(3296), + [anon_sym_co_await] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), }, [422] = { - [sym_identifier] = ACTIONS(3292), - [aux_sym_preproc_include_token1] = ACTIONS(3292), - [aux_sym_preproc_def_token1] = ACTIONS(3292), - [aux_sym_preproc_if_token1] = ACTIONS(3292), - [aux_sym_preproc_if_token2] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3292), - [aux_sym_preproc_else_token1] = ACTIONS(3292), - [aux_sym_preproc_elif_token1] = ACTIONS(3292), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3292), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3292), - [sym_preproc_directive] = ACTIONS(3292), - [anon_sym_LPAREN2] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_AMP_AMP] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym___extension__] = ACTIONS(3292), - [anon_sym_typedef] = ACTIONS(3292), - [anon_sym_extern] = ACTIONS(3292), - [anon_sym___attribute__] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3294), - [anon_sym___declspec] = ACTIONS(3292), - [anon_sym___based] = ACTIONS(3292), - [anon_sym___cdecl] = ACTIONS(3292), - [anon_sym___clrcall] = ACTIONS(3292), - [anon_sym___stdcall] = ACTIONS(3292), - [anon_sym___fastcall] = ACTIONS(3292), - [anon_sym___thiscall] = ACTIONS(3292), - [anon_sym___vectorcall] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_signed] = ACTIONS(3292), - [anon_sym_unsigned] = ACTIONS(3292), - [anon_sym_long] = ACTIONS(3292), - [anon_sym_short] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_register] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym___inline] = ACTIONS(3292), - [anon_sym___inline__] = ACTIONS(3292), - [anon_sym___forceinline] = ACTIONS(3292), - [anon_sym_thread_local] = ACTIONS(3292), - [anon_sym___thread] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_constexpr] = ACTIONS(3292), - [anon_sym_volatile] = ACTIONS(3292), - [anon_sym_restrict] = ACTIONS(3292), - [anon_sym___restrict__] = ACTIONS(3292), - [anon_sym__Atomic] = ACTIONS(3292), - [anon_sym__Noreturn] = ACTIONS(3292), - [anon_sym_noreturn] = ACTIONS(3292), - [anon_sym_mutable] = ACTIONS(3292), - [anon_sym_constinit] = ACTIONS(3292), - [anon_sym_consteval] = ACTIONS(3292), - [sym_primitive_type] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3292), - [anon_sym_union] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_case] = ACTIONS(3292), - [anon_sym_default] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_goto] = ACTIONS(3292), - [anon_sym___try] = ACTIONS(3292), - [anon_sym___leave] = ACTIONS(3292), - [anon_sym_not] = ACTIONS(3292), - [anon_sym_compl] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_sizeof] = ACTIONS(3292), - [anon_sym___alignof__] = ACTIONS(3292), - [anon_sym___alignof] = ACTIONS(3292), - [anon_sym__alignof] = ACTIONS(3292), - [anon_sym_alignof] = ACTIONS(3292), - [anon_sym__Alignof] = ACTIONS(3292), - [anon_sym_offsetof] = ACTIONS(3292), - [anon_sym__Generic] = ACTIONS(3292), - [anon_sym_asm] = ACTIONS(3292), - [anon_sym___asm__] = ACTIONS(3292), - [sym_number_literal] = ACTIONS(3294), - [anon_sym_L_SQUOTE] = ACTIONS(3294), - [anon_sym_u_SQUOTE] = ACTIONS(3294), - [anon_sym_U_SQUOTE] = ACTIONS(3294), - [anon_sym_u8_SQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_L_DQUOTE] = ACTIONS(3294), - [anon_sym_u_DQUOTE] = ACTIONS(3294), - [anon_sym_U_DQUOTE] = ACTIONS(3294), - [anon_sym_u8_DQUOTE] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [anon_sym_NULL] = ACTIONS(3292), - [anon_sym_nullptr] = ACTIONS(3292), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3292), - [anon_sym_decltype] = ACTIONS(3292), - [anon_sym_virtual] = ACTIONS(3292), - [anon_sym_alignas] = ACTIONS(3292), - [anon_sym_explicit] = ACTIONS(3292), - [anon_sym_typename] = ACTIONS(3292), - [anon_sym_template] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_static_assert] = ACTIONS(3292), - [anon_sym_concept] = ACTIONS(3292), - [anon_sym_co_return] = ACTIONS(3292), - [anon_sym_co_yield] = ACTIONS(3292), - [anon_sym_R_DQUOTE] = ACTIONS(3294), - [anon_sym_LR_DQUOTE] = ACTIONS(3294), - [anon_sym_uR_DQUOTE] = ACTIONS(3294), - [anon_sym_UR_DQUOTE] = ACTIONS(3294), - [anon_sym_u8R_DQUOTE] = ACTIONS(3294), - [anon_sym_co_await] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_requires] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - }, - [423] = { - [sym_preproc_def] = STATE(352), - [sym_preproc_function_def] = STATE(352), - [sym_preproc_call] = STATE(352), - [sym_preproc_elifdef] = STATE(9114), - [sym_preproc_if_in_field_declaration_list] = STATE(352), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(352), - [sym_preproc_else_in_field_declaration_list] = STATE(9114), - [sym_preproc_elif_in_field_declaration_list] = STATE(9114), - [sym_type_definition] = STATE(352), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6173), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6781), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(352), - [sym_field_declaration] = STATE(352), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2007), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(352), - [sym_operator_cast] = STATE(7163), - [sym_inline_method_definition] = STATE(352), - [sym__constructor_specifiers] = STATE(2007), - [sym_operator_cast_definition] = STATE(352), - [sym_operator_cast_declaration] = STATE(352), - [sym_constructor_or_destructor_definition] = STATE(352), - [sym_constructor_or_destructor_declaration] = STATE(352), - [sym_friend_declaration] = STATE(352), - [sym_access_specifier] = STATE(8986), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(352), - [sym_alias_declaration] = STATE(352), - [sym_static_assert_declaration] = STATE(352), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7163), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(352), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2007), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3002), - [aux_sym_preproc_if_token1] = ACTIONS(3004), - [aux_sym_preproc_if_token2] = ACTIONS(3296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(279), - [aux_sym_preproc_elifdef_token2] = ACTIONS(279), - [sym_preproc_directive] = ACTIONS(3014), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3024), - [anon_sym_typedef] = ACTIONS(3026), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3046), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3050), - [anon_sym_static_assert] = ACTIONS(3052), - }, - [424] = { [sym_identifier] = ACTIONS(3298), [aux_sym_preproc_include_token1] = ACTIONS(3298), [aux_sym_preproc_def_token1] = ACTIONS(3298), @@ -149879,7 +149940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3298), [sym_this] = ACTIONS(3298), }, - [425] = { + [423] = { [sym_identifier] = ACTIONS(3302), [aux_sym_preproc_include_token1] = ACTIONS(3302), [aux_sym_preproc_def_token1] = ACTIONS(3302), @@ -150015,7 +150076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3302), [sym_this] = ACTIONS(3302), }, - [426] = { + [424] = { [sym_identifier] = ACTIONS(3306), [aux_sym_preproc_include_token1] = ACTIONS(3306), [aux_sym_preproc_def_token1] = ACTIONS(3306), @@ -150151,952 +150212,953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3306), [sym_this] = ACTIONS(3306), }, - [427] = { - [sym_identifier] = ACTIONS(2877), - [aux_sym_preproc_include_token1] = ACTIONS(2877), - [aux_sym_preproc_def_token1] = ACTIONS(2877), - [aux_sym_preproc_if_token1] = ACTIONS(2877), - [aux_sym_preproc_if_token2] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2877), - [aux_sym_preproc_else_token1] = ACTIONS(2877), - [aux_sym_preproc_elif_token1] = ACTIONS(2877), - [sym_preproc_directive] = ACTIONS(2877), - [anon_sym_LPAREN2] = ACTIONS(2879), - [anon_sym_BANG] = ACTIONS(2879), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2879), - [anon_sym_AMP_AMP] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym___extension__] = ACTIONS(2877), - [anon_sym_typedef] = ACTIONS(2877), - [anon_sym_extern] = ACTIONS(2877), - [anon_sym___attribute__] = ACTIONS(2877), - [anon_sym_COLON_COLON] = ACTIONS(2879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2879), - [anon_sym___declspec] = ACTIONS(2877), - [anon_sym___based] = ACTIONS(2877), - [anon_sym___cdecl] = ACTIONS(2877), - [anon_sym___clrcall] = ACTIONS(2877), - [anon_sym___stdcall] = ACTIONS(2877), - [anon_sym___fastcall] = ACTIONS(2877), - [anon_sym___thiscall] = ACTIONS(2877), - [anon_sym___vectorcall] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_signed] = ACTIONS(2877), - [anon_sym_unsigned] = ACTIONS(2877), - [anon_sym_long] = ACTIONS(2877), - [anon_sym_short] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_register] = ACTIONS(2877), - [anon_sym_inline] = ACTIONS(2877), - [anon_sym___inline] = ACTIONS(2877), - [anon_sym___inline__] = ACTIONS(2877), - [anon_sym___forceinline] = ACTIONS(2877), - [anon_sym_thread_local] = ACTIONS(2877), - [anon_sym___thread] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_constexpr] = ACTIONS(2877), - [anon_sym_volatile] = ACTIONS(2877), - [anon_sym_restrict] = ACTIONS(2877), - [anon_sym___restrict__] = ACTIONS(2877), - [anon_sym__Atomic] = ACTIONS(2877), - [anon_sym__Noreturn] = ACTIONS(2877), - [anon_sym_noreturn] = ACTIONS(2877), - [anon_sym_mutable] = ACTIONS(2877), - [anon_sym_constinit] = ACTIONS(2877), - [anon_sym_consteval] = ACTIONS(2877), - [sym_primitive_type] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_else] = ACTIONS(2877), - [anon_sym_switch] = ACTIONS(2877), - [anon_sym_case] = ACTIONS(2877), - [anon_sym_default] = ACTIONS(2877), - [anon_sym_while] = ACTIONS(2877), - [anon_sym_do] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_goto] = ACTIONS(2877), - [anon_sym___try] = ACTIONS(2877), - [anon_sym___leave] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2877), - [anon_sym_compl] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2877), - [anon_sym___alignof__] = ACTIONS(2877), - [anon_sym___alignof] = ACTIONS(2877), - [anon_sym__alignof] = ACTIONS(2877), - [anon_sym_alignof] = ACTIONS(2877), - [anon_sym__Alignof] = ACTIONS(2877), - [anon_sym_offsetof] = ACTIONS(2877), - [anon_sym__Generic] = ACTIONS(2877), - [anon_sym_asm] = ACTIONS(2877), - [anon_sym___asm__] = ACTIONS(2877), - [sym_number_literal] = ACTIONS(2879), - [anon_sym_L_SQUOTE] = ACTIONS(2879), - [anon_sym_u_SQUOTE] = ACTIONS(2879), - [anon_sym_U_SQUOTE] = ACTIONS(2879), - [anon_sym_u8_SQUOTE] = ACTIONS(2879), - [anon_sym_SQUOTE] = ACTIONS(2879), - [anon_sym_L_DQUOTE] = ACTIONS(2879), - [anon_sym_u_DQUOTE] = ACTIONS(2879), - [anon_sym_U_DQUOTE] = ACTIONS(2879), - [anon_sym_u8_DQUOTE] = ACTIONS(2879), - [anon_sym_DQUOTE] = ACTIONS(2879), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [anon_sym_NULL] = ACTIONS(2877), - [anon_sym_nullptr] = ACTIONS(2877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2877), - [anon_sym_decltype] = ACTIONS(2877), - [anon_sym_virtual] = ACTIONS(2877), - [anon_sym_alignas] = ACTIONS(2877), - [anon_sym_explicit] = ACTIONS(2877), - [anon_sym_typename] = ACTIONS(2877), - [anon_sym_template] = ACTIONS(2877), - [anon_sym_operator] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2877), - [anon_sym_delete] = ACTIONS(2877), - [anon_sym_throw] = ACTIONS(2877), - [anon_sym_namespace] = ACTIONS(2877), - [anon_sym_using] = ACTIONS(2877), - [anon_sym_static_assert] = ACTIONS(2877), - [anon_sym_concept] = ACTIONS(2877), - [anon_sym_co_return] = ACTIONS(2877), - [anon_sym_co_yield] = ACTIONS(2877), - [anon_sym_R_DQUOTE] = ACTIONS(2879), - [anon_sym_LR_DQUOTE] = ACTIONS(2879), - [anon_sym_uR_DQUOTE] = ACTIONS(2879), - [anon_sym_UR_DQUOTE] = ACTIONS(2879), - [anon_sym_u8R_DQUOTE] = ACTIONS(2879), - [anon_sym_co_await] = ACTIONS(2877), - [anon_sym_new] = ACTIONS(2877), - [anon_sym_requires] = ACTIONS(2877), - [sym_this] = ACTIONS(2877), - }, - [428] = { - [sym__expression] = STATE(4931), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9120), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), + [425] = { [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), + [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(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3310), [anon_sym_SEMI] = ACTIONS(3312), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [anon_sym___extension__] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3312), + [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(3312), + [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_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = 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_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(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [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_asm] = ACTIONS(3310), + [anon_sym___asm__] = ACTIONS(3310), + [sym_number_literal] = ACTIONS(3312), + [anon_sym_L_SQUOTE] = ACTIONS(3312), + [anon_sym_u_SQUOTE] = ACTIONS(3312), + [anon_sym_U_SQUOTE] = ACTIONS(3312), + [anon_sym_u8_SQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_L_DQUOTE] = ACTIONS(3312), + [anon_sym_u_DQUOTE] = ACTIONS(3312), + [anon_sym_U_DQUOTE] = ACTIONS(3312), + [anon_sym_u8_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [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_virtual] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym_explicit] = ACTIONS(3310), + [anon_sym_typename] = 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_using] = 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(3312), + [anon_sym_LR_DQUOTE] = ACTIONS(3312), + [anon_sym_uR_DQUOTE] = ACTIONS(3312), + [anon_sym_UR_DQUOTE] = ACTIONS(3312), + [anon_sym_u8R_DQUOTE] = ACTIONS(3312), + [anon_sym_co_await] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_requires] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + }, + [426] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [427] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [428] = { + [sym_catch_clause] = STATE(379), + [aux_sym_constructor_try_statement_repeat1] = STATE(379), + [sym_identifier] = ACTIONS(2834), + [aux_sym_preproc_include_token1] = ACTIONS(2834), + [aux_sym_preproc_def_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token1] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), + [sym_preproc_directive] = ACTIONS(2834), + [anon_sym_LPAREN2] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_PLUS] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_AMP_AMP] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym___extension__] = ACTIONS(2834), + [anon_sym_typedef] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym___attribute__] = ACTIONS(2834), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), + [anon_sym___declspec] = ACTIONS(2834), + [anon_sym___based] = ACTIONS(2834), + [anon_sym___cdecl] = ACTIONS(2834), + [anon_sym___clrcall] = ACTIONS(2834), + [anon_sym___stdcall] = ACTIONS(2834), + [anon_sym___fastcall] = ACTIONS(2834), + [anon_sym___thiscall] = ACTIONS(2834), + [anon_sym___vectorcall] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_signed] = ACTIONS(2834), + [anon_sym_unsigned] = ACTIONS(2834), + [anon_sym_long] = ACTIONS(2834), + [anon_sym_short] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_register] = ACTIONS(2834), + [anon_sym_inline] = ACTIONS(2834), + [anon_sym___inline] = ACTIONS(2834), + [anon_sym___inline__] = ACTIONS(2834), + [anon_sym___forceinline] = ACTIONS(2834), + [anon_sym_thread_local] = ACTIONS(2834), + [anon_sym___thread] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_constexpr] = ACTIONS(2834), + [anon_sym_volatile] = ACTIONS(2834), + [anon_sym_restrict] = ACTIONS(2834), + [anon_sym___restrict__] = ACTIONS(2834), + [anon_sym__Atomic] = ACTIONS(2834), + [anon_sym__Noreturn] = ACTIONS(2834), + [anon_sym_noreturn] = ACTIONS(2834), + [anon_sym_mutable] = ACTIONS(2834), + [anon_sym_constinit] = ACTIONS(2834), + [anon_sym_consteval] = ACTIONS(2834), + [sym_primitive_type] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_class] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_switch] = ACTIONS(2834), + [anon_sym_case] = ACTIONS(2834), + [anon_sym_default] = ACTIONS(2834), + [anon_sym_while] = ACTIONS(2834), + [anon_sym_do] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_goto] = ACTIONS(2834), + [anon_sym___try] = ACTIONS(2834), + [anon_sym___leave] = ACTIONS(2834), + [anon_sym_not] = ACTIONS(2834), + [anon_sym_compl] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_PLUS_PLUS] = ACTIONS(2836), + [anon_sym_sizeof] = ACTIONS(2834), + [anon_sym___alignof__] = ACTIONS(2834), + [anon_sym___alignof] = ACTIONS(2834), + [anon_sym__alignof] = ACTIONS(2834), + [anon_sym_alignof] = ACTIONS(2834), + [anon_sym__Alignof] = ACTIONS(2834), + [anon_sym_offsetof] = ACTIONS(2834), + [anon_sym__Generic] = ACTIONS(2834), + [anon_sym_asm] = ACTIONS(2834), + [anon_sym___asm__] = ACTIONS(2834), + [sym_number_literal] = ACTIONS(2836), + [anon_sym_L_SQUOTE] = ACTIONS(2836), + [anon_sym_u_SQUOTE] = ACTIONS(2836), + [anon_sym_U_SQUOTE] = ACTIONS(2836), + [anon_sym_u8_SQUOTE] = ACTIONS(2836), + [anon_sym_SQUOTE] = ACTIONS(2836), + [anon_sym_L_DQUOTE] = ACTIONS(2836), + [anon_sym_u_DQUOTE] = ACTIONS(2836), + [anon_sym_U_DQUOTE] = ACTIONS(2836), + [anon_sym_u8_DQUOTE] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2836), + [sym_true] = ACTIONS(2834), + [sym_false] = ACTIONS(2834), + [anon_sym_NULL] = ACTIONS(2834), + [anon_sym_nullptr] = ACTIONS(2834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2834), + [anon_sym_decltype] = ACTIONS(2834), + [anon_sym_virtual] = ACTIONS(2834), + [anon_sym_alignas] = ACTIONS(2834), + [anon_sym_explicit] = ACTIONS(2834), + [anon_sym_typename] = ACTIONS(2834), + [anon_sym_template] = ACTIONS(2834), + [anon_sym_operator] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2834), + [anon_sym_delete] = ACTIONS(2834), + [anon_sym_throw] = ACTIONS(2834), + [anon_sym_namespace] = ACTIONS(2834), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_static_assert] = ACTIONS(2834), + [anon_sym_concept] = ACTIONS(2834), + [anon_sym_co_return] = ACTIONS(2834), + [anon_sym_co_yield] = ACTIONS(2834), + [anon_sym_catch] = ACTIONS(3094), + [anon_sym_R_DQUOTE] = ACTIONS(2836), + [anon_sym_LR_DQUOTE] = ACTIONS(2836), + [anon_sym_uR_DQUOTE] = ACTIONS(2836), + [anon_sym_UR_DQUOTE] = ACTIONS(2836), + [anon_sym_u8R_DQUOTE] = ACTIONS(2836), + [anon_sym_co_await] = ACTIONS(2834), + [anon_sym_new] = ACTIONS(2834), + [anon_sym_requires] = ACTIONS(2834), + [sym_this] = ACTIONS(2834), }, [429] = { - [sym_identifier] = ACTIONS(2941), - [aux_sym_preproc_include_token1] = ACTIONS(2941), - [aux_sym_preproc_def_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token2] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), - [aux_sym_preproc_else_token1] = ACTIONS(2941), - [aux_sym_preproc_elif_token1] = ACTIONS(2941), - [sym_preproc_directive] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym___extension__] = ACTIONS(2941), - [anon_sym_typedef] = ACTIONS(2941), - [anon_sym_extern] = ACTIONS(2941), - [anon_sym___attribute__] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), - [anon_sym___declspec] = ACTIONS(2941), - [anon_sym___based] = ACTIONS(2941), - [anon_sym___cdecl] = ACTIONS(2941), - [anon_sym___clrcall] = ACTIONS(2941), - [anon_sym___stdcall] = ACTIONS(2941), - [anon_sym___fastcall] = ACTIONS(2941), - [anon_sym___thiscall] = ACTIONS(2941), - [anon_sym___vectorcall] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2941), - [anon_sym_unsigned] = ACTIONS(2941), - [anon_sym_long] = ACTIONS(2941), - [anon_sym_short] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_register] = ACTIONS(2941), - [anon_sym_inline] = ACTIONS(2941), - [anon_sym___inline] = ACTIONS(2941), - [anon_sym___inline__] = ACTIONS(2941), - [anon_sym___forceinline] = ACTIONS(2941), - [anon_sym_thread_local] = ACTIONS(2941), - [anon_sym___thread] = ACTIONS(2941), - [anon_sym_const] = ACTIONS(2941), - [anon_sym_constexpr] = ACTIONS(2941), - [anon_sym_volatile] = ACTIONS(2941), - [anon_sym_restrict] = ACTIONS(2941), - [anon_sym___restrict__] = ACTIONS(2941), - [anon_sym__Atomic] = ACTIONS(2941), - [anon_sym__Noreturn] = ACTIONS(2941), - [anon_sym_noreturn] = ACTIONS(2941), - [anon_sym_mutable] = ACTIONS(2941), - [anon_sym_constinit] = ACTIONS(2941), - [anon_sym_consteval] = ACTIONS(2941), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2941), - [anon_sym_class] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2941), - [anon_sym_switch] = ACTIONS(2941), - [anon_sym_case] = ACTIONS(2941), - [anon_sym_default] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_goto] = ACTIONS(2941), - [anon_sym___try] = ACTIONS(2941), - [anon_sym___leave] = ACTIONS(2941), - [anon_sym_not] = ACTIONS(2941), - [anon_sym_compl] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_sizeof] = ACTIONS(2941), - [anon_sym___alignof__] = ACTIONS(2941), - [anon_sym___alignof] = ACTIONS(2941), - [anon_sym__alignof] = ACTIONS(2941), - [anon_sym_alignof] = ACTIONS(2941), - [anon_sym__Alignof] = ACTIONS(2941), - [anon_sym_offsetof] = ACTIONS(2941), - [anon_sym__Generic] = ACTIONS(2941), - [anon_sym_asm] = ACTIONS(2941), - [anon_sym___asm__] = ACTIONS(2941), - [sym_number_literal] = ACTIONS(2943), - [anon_sym_L_SQUOTE] = ACTIONS(2943), - [anon_sym_u_SQUOTE] = ACTIONS(2943), - [anon_sym_U_SQUOTE] = ACTIONS(2943), - [anon_sym_u8_SQUOTE] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2943), - [anon_sym_L_DQUOTE] = ACTIONS(2943), - [anon_sym_u_DQUOTE] = ACTIONS(2943), - [anon_sym_U_DQUOTE] = ACTIONS(2943), - [anon_sym_u8_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2943), - [sym_true] = ACTIONS(2941), - [sym_false] = ACTIONS(2941), - [anon_sym_NULL] = ACTIONS(2941), - [anon_sym_nullptr] = ACTIONS(2941), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2941), - [anon_sym_decltype] = ACTIONS(2941), - [anon_sym_virtual] = ACTIONS(2941), - [anon_sym_alignas] = ACTIONS(2941), - [anon_sym_explicit] = ACTIONS(2941), - [anon_sym_typename] = ACTIONS(2941), - [anon_sym_template] = ACTIONS(2941), - [anon_sym_operator] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_delete] = ACTIONS(2941), - [anon_sym_throw] = ACTIONS(2941), - [anon_sym_namespace] = ACTIONS(2941), - [anon_sym_using] = ACTIONS(2941), - [anon_sym_static_assert] = ACTIONS(2941), - [anon_sym_concept] = ACTIONS(2941), - [anon_sym_co_return] = ACTIONS(2941), - [anon_sym_co_yield] = ACTIONS(2941), - [anon_sym_R_DQUOTE] = ACTIONS(2943), - [anon_sym_LR_DQUOTE] = ACTIONS(2943), - [anon_sym_uR_DQUOTE] = ACTIONS(2943), - [anon_sym_UR_DQUOTE] = ACTIONS(2943), - [anon_sym_u8R_DQUOTE] = ACTIONS(2943), - [anon_sym_co_await] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_requires] = ACTIONS(2941), - [sym_this] = ACTIONS(2941), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [430] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2891), + [aux_sym_preproc_include_token1] = ACTIONS(2891), + [aux_sym_preproc_def_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token2] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), + [aux_sym_preproc_else_token1] = ACTIONS(2891), + [aux_sym_preproc_elif_token1] = ACTIONS(2891), + [sym_preproc_directive] = ACTIONS(2891), + [anon_sym_LPAREN2] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym___extension__] = ACTIONS(2891), + [anon_sym_typedef] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym___attribute__] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), + [anon_sym___declspec] = ACTIONS(2891), + [anon_sym___based] = ACTIONS(2891), + [anon_sym___cdecl] = ACTIONS(2891), + [anon_sym___clrcall] = ACTIONS(2891), + [anon_sym___stdcall] = ACTIONS(2891), + [anon_sym___fastcall] = ACTIONS(2891), + [anon_sym___thiscall] = ACTIONS(2891), + [anon_sym___vectorcall] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_signed] = ACTIONS(2891), + [anon_sym_unsigned] = ACTIONS(2891), + [anon_sym_long] = ACTIONS(2891), + [anon_sym_short] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_register] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym___inline] = ACTIONS(2891), + [anon_sym___inline__] = ACTIONS(2891), + [anon_sym___forceinline] = ACTIONS(2891), + [anon_sym_thread_local] = ACTIONS(2891), + [anon_sym___thread] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_constexpr] = ACTIONS(2891), + [anon_sym_volatile] = ACTIONS(2891), + [anon_sym_restrict] = ACTIONS(2891), + [anon_sym___restrict__] = ACTIONS(2891), + [anon_sym__Atomic] = ACTIONS(2891), + [anon_sym__Noreturn] = ACTIONS(2891), + [anon_sym_noreturn] = ACTIONS(2891), + [anon_sym_mutable] = ACTIONS(2891), + [anon_sym_constinit] = ACTIONS(2891), + [anon_sym_consteval] = ACTIONS(2891), + [sym_primitive_type] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_else] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym___try] = ACTIONS(2891), + [anon_sym___leave] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_compl] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2891), + [anon_sym___alignof__] = ACTIONS(2891), + [anon_sym___alignof] = ACTIONS(2891), + [anon_sym__alignof] = ACTIONS(2891), + [anon_sym_alignof] = ACTIONS(2891), + [anon_sym__Alignof] = ACTIONS(2891), + [anon_sym_offsetof] = ACTIONS(2891), + [anon_sym__Generic] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym___asm__] = ACTIONS(2891), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_L_SQUOTE] = ACTIONS(2893), + [anon_sym_u_SQUOTE] = ACTIONS(2893), + [anon_sym_U_SQUOTE] = ACTIONS(2893), + [anon_sym_u8_SQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_L_DQUOTE] = ACTIONS(2893), + [anon_sym_u_DQUOTE] = ACTIONS(2893), + [anon_sym_U_DQUOTE] = ACTIONS(2893), + [anon_sym_u8_DQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [anon_sym_NULL] = ACTIONS(2891), + [anon_sym_nullptr] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2891), + [anon_sym_virtual] = ACTIONS(2891), + [anon_sym_alignas] = ACTIONS(2891), + [anon_sym_explicit] = ACTIONS(2891), + [anon_sym_typename] = ACTIONS(2891), + [anon_sym_template] = ACTIONS(2891), + [anon_sym_operator] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_static_assert] = ACTIONS(2891), + [anon_sym_concept] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2891), + [anon_sym_co_yield] = ACTIONS(2891), + [anon_sym_R_DQUOTE] = ACTIONS(2893), + [anon_sym_LR_DQUOTE] = ACTIONS(2893), + [anon_sym_uR_DQUOTE] = ACTIONS(2893), + [anon_sym_UR_DQUOTE] = ACTIONS(2893), + [anon_sym_u8R_DQUOTE] = ACTIONS(2893), + [anon_sym_co_await] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_requires] = ACTIONS(2891), + [sym_this] = ACTIONS(2891), }, [431] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [432] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [433] = { - [sym_identifier] = ACTIONS(2933), - [aux_sym_preproc_include_token1] = ACTIONS(2933), - [aux_sym_preproc_def_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token2] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), - [aux_sym_preproc_else_token1] = ACTIONS(2933), - [aux_sym_preproc_elif_token1] = ACTIONS(2933), - [sym_preproc_directive] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2933), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym___extension__] = ACTIONS(2933), - [anon_sym_typedef] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym___attribute__] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2933), - [anon_sym___based] = ACTIONS(2933), - [anon_sym___cdecl] = ACTIONS(2933), - [anon_sym___clrcall] = ACTIONS(2933), - [anon_sym___stdcall] = ACTIONS(2933), - [anon_sym___fastcall] = ACTIONS(2933), - [anon_sym___thiscall] = ACTIONS(2933), - [anon_sym___vectorcall] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2933), - [anon_sym_unsigned] = ACTIONS(2933), - [anon_sym_long] = ACTIONS(2933), - [anon_sym_short] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_register] = ACTIONS(2933), - [anon_sym_inline] = ACTIONS(2933), - [anon_sym___inline] = ACTIONS(2933), - [anon_sym___inline__] = ACTIONS(2933), - [anon_sym___forceinline] = ACTIONS(2933), - [anon_sym_thread_local] = ACTIONS(2933), - [anon_sym___thread] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_constexpr] = ACTIONS(2933), - [anon_sym_volatile] = ACTIONS(2933), - [anon_sym_restrict] = ACTIONS(2933), - [anon_sym___restrict__] = ACTIONS(2933), - [anon_sym__Atomic] = ACTIONS(2933), - [anon_sym__Noreturn] = ACTIONS(2933), - [anon_sym_noreturn] = ACTIONS(2933), - [anon_sym_mutable] = ACTIONS(2933), - [anon_sym_constinit] = ACTIONS(2933), - [anon_sym_consteval] = ACTIONS(2933), - [sym_primitive_type] = ACTIONS(2933), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2933), - [anon_sym_switch] = ACTIONS(2933), - [anon_sym_case] = ACTIONS(2933), - [anon_sym_default] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_do] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_goto] = ACTIONS(2933), - [anon_sym___try] = ACTIONS(2933), - [anon_sym___leave] = ACTIONS(2933), - [anon_sym_not] = ACTIONS(2933), - [anon_sym_compl] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(2933), - [anon_sym___alignof__] = ACTIONS(2933), - [anon_sym___alignof] = ACTIONS(2933), - [anon_sym__alignof] = ACTIONS(2933), - [anon_sym_alignof] = ACTIONS(2933), - [anon_sym__Alignof] = ACTIONS(2933), - [anon_sym_offsetof] = ACTIONS(2933), - [anon_sym__Generic] = ACTIONS(2933), - [anon_sym_asm] = ACTIONS(2933), - [anon_sym___asm__] = ACTIONS(2933), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_L_SQUOTE] = ACTIONS(2935), - [anon_sym_u_SQUOTE] = ACTIONS(2935), - [anon_sym_U_SQUOTE] = ACTIONS(2935), - [anon_sym_u8_SQUOTE] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_L_DQUOTE] = ACTIONS(2935), - [anon_sym_u_DQUOTE] = ACTIONS(2935), - [anon_sym_U_DQUOTE] = ACTIONS(2935), - [anon_sym_u8_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_true] = ACTIONS(2933), - [sym_false] = ACTIONS(2933), - [anon_sym_NULL] = ACTIONS(2933), - [anon_sym_nullptr] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2909), + [aux_sym_preproc_include_token1] = ACTIONS(2909), + [aux_sym_preproc_def_token1] = ACTIONS(2909), + [aux_sym_preproc_if_token1] = ACTIONS(2909), + [aux_sym_preproc_if_token2] = ACTIONS(2909), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2909), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2909), + [aux_sym_preproc_else_token1] = ACTIONS(2909), + [aux_sym_preproc_elif_token1] = ACTIONS(2909), + [sym_preproc_directive] = ACTIONS(2909), + [anon_sym_LPAREN2] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_AMP_AMP] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_SEMI] = ACTIONS(2911), + [anon_sym___extension__] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2909), + [anon_sym_extern] = ACTIONS(2909), + [anon_sym___attribute__] = ACTIONS(2909), + [anon_sym_COLON_COLON] = ACTIONS(2911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2911), + [anon_sym___declspec] = ACTIONS(2909), + [anon_sym___based] = ACTIONS(2909), + [anon_sym___cdecl] = ACTIONS(2909), + [anon_sym___clrcall] = ACTIONS(2909), + [anon_sym___stdcall] = ACTIONS(2909), + [anon_sym___fastcall] = ACTIONS(2909), + [anon_sym___thiscall] = ACTIONS(2909), + [anon_sym___vectorcall] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(2909), + [anon_sym_unsigned] = ACTIONS(2909), + [anon_sym_long] = ACTIONS(2909), + [anon_sym_short] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2909), + [anon_sym_register] = ACTIONS(2909), + [anon_sym_inline] = ACTIONS(2909), + [anon_sym___inline] = ACTIONS(2909), + [anon_sym___inline__] = ACTIONS(2909), + [anon_sym___forceinline] = ACTIONS(2909), + [anon_sym_thread_local] = ACTIONS(2909), + [anon_sym___thread] = ACTIONS(2909), + [anon_sym_const] = ACTIONS(2909), + [anon_sym_constexpr] = ACTIONS(2909), + [anon_sym_volatile] = ACTIONS(2909), + [anon_sym_restrict] = ACTIONS(2909), + [anon_sym___restrict__] = ACTIONS(2909), + [anon_sym__Atomic] = ACTIONS(2909), + [anon_sym__Noreturn] = ACTIONS(2909), + [anon_sym_noreturn] = ACTIONS(2909), + [anon_sym_mutable] = ACTIONS(2909), + [anon_sym_constinit] = ACTIONS(2909), + [anon_sym_consteval] = ACTIONS(2909), + [sym_primitive_type] = ACTIONS(2909), + [anon_sym_enum] = ACTIONS(2909), + [anon_sym_class] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2909), + [anon_sym_union] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2909), + [anon_sym_switch] = ACTIONS(2909), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2909), + [anon_sym_while] = ACTIONS(2909), + [anon_sym_do] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_goto] = ACTIONS(2909), + [anon_sym___try] = ACTIONS(2909), + [anon_sym___leave] = ACTIONS(2909), + [anon_sym_not] = ACTIONS(2909), + [anon_sym_compl] = ACTIONS(2909), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_sizeof] = ACTIONS(2909), + [anon_sym___alignof__] = ACTIONS(2909), + [anon_sym___alignof] = ACTIONS(2909), + [anon_sym__alignof] = ACTIONS(2909), + [anon_sym_alignof] = ACTIONS(2909), + [anon_sym__Alignof] = ACTIONS(2909), + [anon_sym_offsetof] = ACTIONS(2909), + [anon_sym__Generic] = ACTIONS(2909), + [anon_sym_asm] = ACTIONS(2909), + [anon_sym___asm__] = ACTIONS(2909), + [sym_number_literal] = ACTIONS(2911), + [anon_sym_L_SQUOTE] = ACTIONS(2911), + [anon_sym_u_SQUOTE] = ACTIONS(2911), + [anon_sym_U_SQUOTE] = ACTIONS(2911), + [anon_sym_u8_SQUOTE] = ACTIONS(2911), + [anon_sym_SQUOTE] = ACTIONS(2911), + [anon_sym_L_DQUOTE] = ACTIONS(2911), + [anon_sym_u_DQUOTE] = ACTIONS(2911), + [anon_sym_U_DQUOTE] = ACTIONS(2911), + [anon_sym_u8_DQUOTE] = ACTIONS(2911), + [anon_sym_DQUOTE] = ACTIONS(2911), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [anon_sym_NULL] = ACTIONS(2909), + [anon_sym_nullptr] = ACTIONS(2909), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2933), - [anon_sym_decltype] = ACTIONS(2933), - [anon_sym_virtual] = ACTIONS(2933), - [anon_sym_alignas] = ACTIONS(2933), - [anon_sym_explicit] = ACTIONS(2933), - [anon_sym_typename] = ACTIONS(2933), - [anon_sym_template] = ACTIONS(2933), - [anon_sym_operator] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2933), - [anon_sym_delete] = ACTIONS(2933), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_using] = ACTIONS(2933), - [anon_sym_static_assert] = ACTIONS(2933), - [anon_sym_concept] = ACTIONS(2933), - [anon_sym_co_return] = ACTIONS(2933), - [anon_sym_co_yield] = ACTIONS(2933), - [anon_sym_R_DQUOTE] = ACTIONS(2935), - [anon_sym_LR_DQUOTE] = ACTIONS(2935), - [anon_sym_uR_DQUOTE] = ACTIONS(2935), - [anon_sym_UR_DQUOTE] = ACTIONS(2935), - [anon_sym_u8R_DQUOTE] = ACTIONS(2935), - [anon_sym_co_await] = ACTIONS(2933), - [anon_sym_new] = ACTIONS(2933), - [anon_sym_requires] = ACTIONS(2933), - [sym_this] = ACTIONS(2933), + [sym_auto] = ACTIONS(2909), + [anon_sym_decltype] = ACTIONS(2909), + [anon_sym_virtual] = ACTIONS(2909), + [anon_sym_alignas] = ACTIONS(2909), + [anon_sym_explicit] = ACTIONS(2909), + [anon_sym_typename] = ACTIONS(2909), + [anon_sym_template] = ACTIONS(2909), + [anon_sym_operator] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(2909), + [anon_sym_delete] = ACTIONS(2909), + [anon_sym_throw] = ACTIONS(2909), + [anon_sym_namespace] = ACTIONS(2909), + [anon_sym_using] = ACTIONS(2909), + [anon_sym_static_assert] = ACTIONS(2909), + [anon_sym_concept] = ACTIONS(2909), + [anon_sym_co_return] = ACTIONS(2909), + [anon_sym_co_yield] = ACTIONS(2909), + [anon_sym_R_DQUOTE] = ACTIONS(2911), + [anon_sym_LR_DQUOTE] = ACTIONS(2911), + [anon_sym_uR_DQUOTE] = ACTIONS(2911), + [anon_sym_UR_DQUOTE] = ACTIONS(2911), + [anon_sym_u8R_DQUOTE] = ACTIONS(2911), + [anon_sym_co_await] = ACTIONS(2909), + [anon_sym_new] = ACTIONS(2909), + [anon_sym_requires] = ACTIONS(2909), + [sym_this] = ACTIONS(2909), }, - [434] = { + [432] = { [sym_identifier] = ACTIONS(2945), [aux_sym_preproc_include_token1] = ACTIONS(2945), [aux_sym_preproc_def_token1] = ACTIONS(2945), @@ -151231,1401 +151293,456 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2945), [sym_this] = ACTIONS(2945), }, - [435] = { - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_include_token1] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token2] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [aux_sym_preproc_else_token1] = ACTIONS(2949), - [aux_sym_preproc_elif_token1] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym___cdecl] = ACTIONS(2949), - [anon_sym___clrcall] = ACTIONS(2949), - [anon_sym___stdcall] = ACTIONS(2949), - [anon_sym___fastcall] = ACTIONS(2949), - [anon_sym___thiscall] = ACTIONS(2949), - [anon_sym___vectorcall] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym___try] = ACTIONS(2949), - [anon_sym___leave] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [sym_number_literal] = ACTIONS(2951), - [anon_sym_L_SQUOTE] = ACTIONS(2951), - [anon_sym_u_SQUOTE] = ACTIONS(2951), - [anon_sym_U_SQUOTE] = ACTIONS(2951), - [anon_sym_u8_SQUOTE] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_L_DQUOTE] = ACTIONS(2951), - [anon_sym_u_DQUOTE] = ACTIONS(2951), - [anon_sym_U_DQUOTE] = ACTIONS(2951), - [anon_sym_u8_DQUOTE] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - [anon_sym_concept] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [anon_sym_R_DQUOTE] = ACTIONS(2951), - [anon_sym_LR_DQUOTE] = ACTIONS(2951), - [anon_sym_uR_DQUOTE] = ACTIONS(2951), - [anon_sym_UR_DQUOTE] = ACTIONS(2951), - [anon_sym_u8R_DQUOTE] = ACTIONS(2951), - [anon_sym_co_await] = ACTIONS(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [sym_this] = ACTIONS(2949), - }, - [436] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [437] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [438] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [439] = { - [sym_catch_clause] = STATE(394), - [aux_sym_constructor_try_statement_repeat1] = STATE(394), - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_include_token1] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym___extension__] = ACTIONS(2826), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym___cdecl] = ACTIONS(2826), - [anon_sym___clrcall] = ACTIONS(2826), - [anon_sym___stdcall] = ACTIONS(2826), - [anon_sym___fastcall] = ACTIONS(2826), - [anon_sym___thiscall] = ACTIONS(2826), - [anon_sym___vectorcall] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym___inline] = ACTIONS(2826), - [anon_sym___inline__] = ACTIONS(2826), - [anon_sym___forceinline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym___thread] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym___restrict__] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym__Noreturn] = ACTIONS(2826), - [anon_sym_noreturn] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_goto] = ACTIONS(2826), - [anon_sym___try] = ACTIONS(2826), - [anon_sym___leave] = ACTIONS(2826), - [anon_sym_not] = ACTIONS(2826), - [anon_sym_compl] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_sizeof] = ACTIONS(2826), - [anon_sym___alignof__] = ACTIONS(2826), - [anon_sym___alignof] = ACTIONS(2826), - [anon_sym__alignof] = ACTIONS(2826), - [anon_sym_alignof] = ACTIONS(2826), - [anon_sym__Alignof] = ACTIONS(2826), - [anon_sym_offsetof] = ACTIONS(2826), - [anon_sym__Generic] = ACTIONS(2826), - [anon_sym_asm] = ACTIONS(2826), - [anon_sym___asm__] = ACTIONS(2826), - [sym_number_literal] = ACTIONS(2828), - [anon_sym_L_SQUOTE] = ACTIONS(2828), - [anon_sym_u_SQUOTE] = ACTIONS(2828), - [anon_sym_U_SQUOTE] = ACTIONS(2828), - [anon_sym_u8_SQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_L_DQUOTE] = ACTIONS(2828), - [anon_sym_u_DQUOTE] = ACTIONS(2828), - [anon_sym_U_DQUOTE] = ACTIONS(2828), - [anon_sym_u8_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [anon_sym_NULL] = ACTIONS(2826), - [anon_sym_nullptr] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_alignas] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_concept] = ACTIONS(2826), - [anon_sym_co_return] = ACTIONS(2826), - [anon_sym_co_yield] = ACTIONS(2826), - [anon_sym_catch] = ACTIONS(3278), - [anon_sym_R_DQUOTE] = ACTIONS(2828), - [anon_sym_LR_DQUOTE] = ACTIONS(2828), - [anon_sym_uR_DQUOTE] = ACTIONS(2828), - [anon_sym_UR_DQUOTE] = ACTIONS(2828), - [anon_sym_u8R_DQUOTE] = ACTIONS(2828), - [anon_sym_co_await] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_requires] = ACTIONS(2826), - [sym_this] = ACTIONS(2826), - }, - [440] = { - [sym__expression] = STATE(5045), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8916), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym___extension__] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym___attribute__] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2933), - [anon_sym_signed] = ACTIONS(2933), - [anon_sym_unsigned] = ACTIONS(2933), - [anon_sym_long] = ACTIONS(2933), - [anon_sym_short] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_register] = ACTIONS(2933), - [anon_sym_inline] = ACTIONS(2933), - [anon_sym___inline] = ACTIONS(2933), - [anon_sym___inline__] = ACTIONS(2933), - [anon_sym___forceinline] = ACTIONS(2933), - [anon_sym_thread_local] = ACTIONS(2933), - [anon_sym___thread] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_constexpr] = ACTIONS(2933), - [anon_sym_volatile] = ACTIONS(2933), - [anon_sym_restrict] = ACTIONS(2933), - [anon_sym___restrict__] = ACTIONS(2933), - [anon_sym__Atomic] = ACTIONS(2933), - [anon_sym__Noreturn] = ACTIONS(2933), - [anon_sym_noreturn] = ACTIONS(2933), - [anon_sym_mutable] = ACTIONS(2933), - [anon_sym_constinit] = ACTIONS(2933), - [anon_sym_consteval] = ACTIONS(2933), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2933), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(2933), - [anon_sym_alignas] = ACTIONS(2933), - [anon_sym_typename] = ACTIONS(2933), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [441] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [433] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [aux_sym_preproc_else_token1] = ACTIONS(2186), + [aux_sym_preproc_elif_token1] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), }, - [442] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [434] = { + [sym_catch_clause] = STATE(348), + [aux_sym_constructor_try_statement_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(2838), + [aux_sym_preproc_include_token1] = ACTIONS(2838), + [aux_sym_preproc_def_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token2] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), + [sym_preproc_directive] = ACTIONS(2838), + [anon_sym_LPAREN2] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_PLUS] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym___extension__] = ACTIONS(2838), + [anon_sym_typedef] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym___attribute__] = ACTIONS(2838), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), + [anon_sym___declspec] = ACTIONS(2838), + [anon_sym___based] = ACTIONS(2838), + [anon_sym___cdecl] = ACTIONS(2838), + [anon_sym___clrcall] = ACTIONS(2838), + [anon_sym___stdcall] = ACTIONS(2838), + [anon_sym___fastcall] = ACTIONS(2838), + [anon_sym___thiscall] = ACTIONS(2838), + [anon_sym___vectorcall] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_signed] = ACTIONS(2838), + [anon_sym_unsigned] = ACTIONS(2838), + [anon_sym_long] = ACTIONS(2838), + [anon_sym_short] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_register] = ACTIONS(2838), + [anon_sym_inline] = ACTIONS(2838), + [anon_sym___inline] = ACTIONS(2838), + [anon_sym___inline__] = ACTIONS(2838), + [anon_sym___forceinline] = ACTIONS(2838), + [anon_sym_thread_local] = ACTIONS(2838), + [anon_sym___thread] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_constexpr] = ACTIONS(2838), + [anon_sym_volatile] = ACTIONS(2838), + [anon_sym_restrict] = ACTIONS(2838), + [anon_sym___restrict__] = ACTIONS(2838), + [anon_sym__Atomic] = ACTIONS(2838), + [anon_sym__Noreturn] = ACTIONS(2838), + [anon_sym_noreturn] = ACTIONS(2838), + [anon_sym_mutable] = ACTIONS(2838), + [anon_sym_constinit] = ACTIONS(2838), + [anon_sym_consteval] = ACTIONS(2838), + [sym_primitive_type] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_class] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_switch] = ACTIONS(2838), + [anon_sym_case] = ACTIONS(2838), + [anon_sym_default] = ACTIONS(2838), + [anon_sym_while] = ACTIONS(2838), + [anon_sym_do] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_goto] = ACTIONS(2838), + [anon_sym___try] = ACTIONS(2838), + [anon_sym___leave] = ACTIONS(2838), + [anon_sym_not] = ACTIONS(2838), + [anon_sym_compl] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_sizeof] = ACTIONS(2838), + [anon_sym___alignof__] = ACTIONS(2838), + [anon_sym___alignof] = ACTIONS(2838), + [anon_sym__alignof] = ACTIONS(2838), + [anon_sym_alignof] = ACTIONS(2838), + [anon_sym__Alignof] = ACTIONS(2838), + [anon_sym_offsetof] = ACTIONS(2838), + [anon_sym__Generic] = ACTIONS(2838), + [anon_sym_asm] = ACTIONS(2838), + [anon_sym___asm__] = ACTIONS(2838), + [sym_number_literal] = ACTIONS(2840), + [anon_sym_L_SQUOTE] = ACTIONS(2840), + [anon_sym_u_SQUOTE] = ACTIONS(2840), + [anon_sym_U_SQUOTE] = ACTIONS(2840), + [anon_sym_u8_SQUOTE] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2840), + [anon_sym_L_DQUOTE] = ACTIONS(2840), + [anon_sym_u_DQUOTE] = ACTIONS(2840), + [anon_sym_U_DQUOTE] = ACTIONS(2840), + [anon_sym_u8_DQUOTE] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2840), + [sym_true] = ACTIONS(2838), + [sym_false] = ACTIONS(2838), + [anon_sym_NULL] = ACTIONS(2838), + [anon_sym_nullptr] = ACTIONS(2838), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2838), + [anon_sym_decltype] = ACTIONS(2838), + [anon_sym_virtual] = ACTIONS(2838), + [anon_sym_alignas] = ACTIONS(2838), + [anon_sym_explicit] = ACTIONS(2838), + [anon_sym_typename] = ACTIONS(2838), + [anon_sym_template] = ACTIONS(2838), + [anon_sym_operator] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2838), + [anon_sym_delete] = ACTIONS(2838), + [anon_sym_throw] = ACTIONS(2838), + [anon_sym_namespace] = ACTIONS(2838), + [anon_sym_using] = ACTIONS(2838), + [anon_sym_static_assert] = ACTIONS(2838), + [anon_sym_concept] = ACTIONS(2838), + [anon_sym_co_return] = ACTIONS(2838), + [anon_sym_co_yield] = ACTIONS(2838), + [anon_sym_catch] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(2840), + [anon_sym_LR_DQUOTE] = ACTIONS(2840), + [anon_sym_uR_DQUOTE] = ACTIONS(2840), + [anon_sym_UR_DQUOTE] = ACTIONS(2840), + [anon_sym_u8R_DQUOTE] = ACTIONS(2840), + [anon_sym_co_await] = ACTIONS(2838), + [anon_sym_new] = ACTIONS(2838), + [anon_sym_requires] = ACTIONS(2838), + [sym_this] = ACTIONS(2838), }, - [443] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [444] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [435] = { + [sym_identifier] = ACTIONS(2989), + [aux_sym_preproc_include_token1] = ACTIONS(2989), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token2] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), + [aux_sym_preproc_else_token1] = ACTIONS(2989), + [aux_sym_preproc_elif_token1] = ACTIONS(2989), + [sym_preproc_directive] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym___based] = ACTIONS(2989), + [anon_sym___cdecl] = ACTIONS(2989), + [anon_sym___clrcall] = ACTIONS(2989), + [anon_sym___stdcall] = ACTIONS(2989), + [anon_sym___fastcall] = ACTIONS(2989), + [anon_sym___thiscall] = ACTIONS(2989), + [anon_sym___vectorcall] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_else] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_case] = ACTIONS(2989), + [anon_sym_default] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym___try] = ACTIONS(2989), + [anon_sym___leave] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2989), + [anon_sym_compl] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2989), + [anon_sym___alignof__] = ACTIONS(2989), + [anon_sym___alignof] = ACTIONS(2989), + [anon_sym__alignof] = ACTIONS(2989), + [anon_sym_alignof] = ACTIONS(2989), + [anon_sym__Alignof] = ACTIONS(2989), + [anon_sym_offsetof] = ACTIONS(2989), + [anon_sym__Generic] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym___asm__] = ACTIONS(2989), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [anon_sym_NULL] = ACTIONS(2989), + [anon_sym_nullptr] = ACTIONS(2989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_explicit] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_operator] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_namespace] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_static_assert] = ACTIONS(2989), + [anon_sym_concept] = ACTIONS(2989), + [anon_sym_co_return] = ACTIONS(2989), + [anon_sym_co_yield] = ACTIONS(2989), + [anon_sym_R_DQUOTE] = ACTIONS(2991), + [anon_sym_LR_DQUOTE] = ACTIONS(2991), + [anon_sym_uR_DQUOTE] = ACTIONS(2991), + [anon_sym_UR_DQUOTE] = ACTIONS(2991), + [anon_sym_u8R_DQUOTE] = ACTIONS(2991), + [anon_sym_co_await] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_requires] = ACTIONS(2989), + [sym_this] = ACTIONS(2989), }, - [445] = { - [sym__expression] = STATE(5049), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8917), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [436] = { + [sym__expression] = STATE(4966), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8830), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -152664,7 +151781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(3318), [anon_sym_constinit] = ACTIONS(3318), [anon_sym_consteval] = ACTIONS(3318), - [sym_primitive_type] = ACTIONS(2216), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_enum] = ACTIONS(3318), [anon_sym_class] = ACTIONS(3318), [anon_sym_struct] = ACTIONS(3318), @@ -152700,7 +151817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(3318), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_virtual] = ACTIONS(3318), [anon_sym_alignas] = ACTIONS(3318), [anon_sym_typename] = ACTIONS(3318), @@ -152716,682 +151833,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [446] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [447] = { - [sym_identifier] = ACTIONS(2953), - [aux_sym_preproc_include_token1] = ACTIONS(2953), - [aux_sym_preproc_def_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token2] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), - [aux_sym_preproc_else_token1] = ACTIONS(2953), - [aux_sym_preproc_elif_token1] = ACTIONS(2953), - [sym_preproc_directive] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym___based] = ACTIONS(2953), - [anon_sym___cdecl] = ACTIONS(2953), - [anon_sym___clrcall] = ACTIONS(2953), - [anon_sym___stdcall] = ACTIONS(2953), - [anon_sym___fastcall] = ACTIONS(2953), - [anon_sym___thiscall] = ACTIONS(2953), - [anon_sym___vectorcall] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_default] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym___try] = ACTIONS(2953), - [anon_sym___leave] = ACTIONS(2953), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_compl] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2953), - [anon_sym___alignof] = ACTIONS(2953), - [anon_sym__alignof] = ACTIONS(2953), - [anon_sym_alignof] = ACTIONS(2953), - [anon_sym__Alignof] = ACTIONS(2953), - [anon_sym_offsetof] = ACTIONS(2953), - [anon_sym__Generic] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym___asm__] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2955), - [anon_sym_L_SQUOTE] = ACTIONS(2955), - [anon_sym_u_SQUOTE] = ACTIONS(2955), - [anon_sym_U_SQUOTE] = ACTIONS(2955), - [anon_sym_u8_SQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_L_DQUOTE] = ACTIONS(2955), - [anon_sym_u_DQUOTE] = ACTIONS(2955), - [anon_sym_U_DQUOTE] = ACTIONS(2955), - [anon_sym_u8_DQUOTE] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [anon_sym_NULL] = ACTIONS(2953), - [anon_sym_nullptr] = ACTIONS(2953), + [437] = { + [sym_identifier] = ACTIONS(2957), + [aux_sym_preproc_include_token1] = ACTIONS(2957), + [aux_sym_preproc_def_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token2] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), + [aux_sym_preproc_else_token1] = ACTIONS(2957), + [aux_sym_preproc_elif_token1] = ACTIONS(2957), + [sym_preproc_directive] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym___extension__] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym___attribute__] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), + [anon_sym___declspec] = ACTIONS(2957), + [anon_sym___based] = ACTIONS(2957), + [anon_sym___cdecl] = ACTIONS(2957), + [anon_sym___clrcall] = ACTIONS(2957), + [anon_sym___stdcall] = ACTIONS(2957), + [anon_sym___fastcall] = ACTIONS(2957), + [anon_sym___thiscall] = ACTIONS(2957), + [anon_sym___vectorcall] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_signed] = ACTIONS(2957), + [anon_sym_unsigned] = ACTIONS(2957), + [anon_sym_long] = ACTIONS(2957), + [anon_sym_short] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym___inline] = ACTIONS(2957), + [anon_sym___inline__] = ACTIONS(2957), + [anon_sym___forceinline] = ACTIONS(2957), + [anon_sym_thread_local] = ACTIONS(2957), + [anon_sym___thread] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_constexpr] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_restrict] = ACTIONS(2957), + [anon_sym___restrict__] = ACTIONS(2957), + [anon_sym__Atomic] = ACTIONS(2957), + [anon_sym__Noreturn] = ACTIONS(2957), + [anon_sym_noreturn] = ACTIONS(2957), + [anon_sym_mutable] = ACTIONS(2957), + [anon_sym_constinit] = ACTIONS(2957), + [anon_sym_consteval] = ACTIONS(2957), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym___try] = ACTIONS(2957), + [anon_sym___leave] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_compl] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym___alignof__] = ACTIONS(2957), + [anon_sym___alignof] = ACTIONS(2957), + [anon_sym__alignof] = ACTIONS(2957), + [anon_sym_alignof] = ACTIONS(2957), + [anon_sym__Alignof] = ACTIONS(2957), + [anon_sym_offsetof] = ACTIONS(2957), + [anon_sym__Generic] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym___asm__] = ACTIONS(2957), + [sym_number_literal] = ACTIONS(2959), + [anon_sym_L_SQUOTE] = ACTIONS(2959), + [anon_sym_u_SQUOTE] = ACTIONS(2959), + [anon_sym_U_SQUOTE] = ACTIONS(2959), + [anon_sym_u8_SQUOTE] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_L_DQUOTE] = ACTIONS(2959), + [anon_sym_u_DQUOTE] = ACTIONS(2959), + [anon_sym_U_DQUOTE] = ACTIONS(2959), + [anon_sym_u8_DQUOTE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [anon_sym_NULL] = ACTIONS(2957), + [anon_sym_nullptr] = ACTIONS(2957), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_explicit] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_operator] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_delete] = ACTIONS(2953), - [anon_sym_throw] = ACTIONS(2953), - [anon_sym_namespace] = ACTIONS(2953), - [anon_sym_using] = ACTIONS(2953), - [anon_sym_static_assert] = ACTIONS(2953), - [anon_sym_concept] = ACTIONS(2953), - [anon_sym_co_return] = ACTIONS(2953), - [anon_sym_co_yield] = ACTIONS(2953), - [anon_sym_R_DQUOTE] = ACTIONS(2955), - [anon_sym_LR_DQUOTE] = ACTIONS(2955), - [anon_sym_uR_DQUOTE] = ACTIONS(2955), - [anon_sym_UR_DQUOTE] = ACTIONS(2955), - [anon_sym_u8R_DQUOTE] = ACTIONS(2955), - [anon_sym_co_await] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_requires] = ACTIONS(2953), - [sym_this] = ACTIONS(2953), - }, - [448] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [449] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2957), + [anon_sym_decltype] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_alignas] = ACTIONS(2957), + [anon_sym_explicit] = ACTIONS(2957), + [anon_sym_typename] = ACTIONS(2957), + [anon_sym_template] = ACTIONS(2957), + [anon_sym_operator] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_delete] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_static_assert] = ACTIONS(2957), + [anon_sym_concept] = ACTIONS(2957), + [anon_sym_co_return] = ACTIONS(2957), + [anon_sym_co_yield] = ACTIONS(2957), + [anon_sym_R_DQUOTE] = ACTIONS(2959), + [anon_sym_LR_DQUOTE] = ACTIONS(2959), + [anon_sym_uR_DQUOTE] = ACTIONS(2959), + [anon_sym_UR_DQUOTE] = ACTIONS(2959), + [anon_sym_u8R_DQUOTE] = ACTIONS(2959), + [anon_sym_co_await] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_requires] = ACTIONS(2957), + [sym_this] = ACTIONS(2957), }, - [450] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [438] = { + [sym_identifier] = ACTIONS(2973), + [aux_sym_preproc_include_token1] = ACTIONS(2973), + [aux_sym_preproc_def_token1] = ACTIONS(2973), + [aux_sym_preproc_if_token1] = ACTIONS(2973), + [aux_sym_preproc_if_token2] = ACTIONS(2973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), + [aux_sym_preproc_else_token1] = ACTIONS(2973), + [aux_sym_preproc_elif_token1] = ACTIONS(2973), + [sym_preproc_directive] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2975), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_AMP_AMP] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym___extension__] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym___attribute__] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), + [anon_sym___declspec] = ACTIONS(2973), + [anon_sym___based] = ACTIONS(2973), + [anon_sym___cdecl] = ACTIONS(2973), + [anon_sym___clrcall] = ACTIONS(2973), + [anon_sym___stdcall] = ACTIONS(2973), + [anon_sym___fastcall] = ACTIONS(2973), + [anon_sym___thiscall] = ACTIONS(2973), + [anon_sym___vectorcall] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_signed] = ACTIONS(2973), + [anon_sym_unsigned] = ACTIONS(2973), + [anon_sym_long] = ACTIONS(2973), + [anon_sym_short] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_register] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym___inline] = ACTIONS(2973), + [anon_sym___inline__] = ACTIONS(2973), + [anon_sym___forceinline] = ACTIONS(2973), + [anon_sym_thread_local] = ACTIONS(2973), + [anon_sym___thread] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_constexpr] = ACTIONS(2973), + [anon_sym_volatile] = ACTIONS(2973), + [anon_sym_restrict] = ACTIONS(2973), + [anon_sym___restrict__] = ACTIONS(2973), + [anon_sym__Atomic] = ACTIONS(2973), + [anon_sym__Noreturn] = ACTIONS(2973), + [anon_sym_noreturn] = ACTIONS(2973), + [anon_sym_mutable] = ACTIONS(2973), + [anon_sym_constinit] = ACTIONS(2973), + [anon_sym_consteval] = ACTIONS(2973), + [sym_primitive_type] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_else] = ACTIONS(2973), + [anon_sym_switch] = ACTIONS(2973), + [anon_sym_case] = ACTIONS(2973), + [anon_sym_default] = ACTIONS(2973), + [anon_sym_while] = ACTIONS(2973), + [anon_sym_do] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_goto] = ACTIONS(2973), + [anon_sym___try] = ACTIONS(2973), + [anon_sym___leave] = ACTIONS(2973), + [anon_sym_not] = ACTIONS(2973), + [anon_sym_compl] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2975), + [anon_sym_sizeof] = ACTIONS(2973), + [anon_sym___alignof__] = ACTIONS(2973), + [anon_sym___alignof] = ACTIONS(2973), + [anon_sym__alignof] = ACTIONS(2973), + [anon_sym_alignof] = ACTIONS(2973), + [anon_sym__Alignof] = ACTIONS(2973), + [anon_sym_offsetof] = ACTIONS(2973), + [anon_sym__Generic] = ACTIONS(2973), + [anon_sym_asm] = ACTIONS(2973), + [anon_sym___asm__] = ACTIONS(2973), + [sym_number_literal] = ACTIONS(2975), + [anon_sym_L_SQUOTE] = ACTIONS(2975), + [anon_sym_u_SQUOTE] = ACTIONS(2975), + [anon_sym_U_SQUOTE] = ACTIONS(2975), + [anon_sym_u8_SQUOTE] = ACTIONS(2975), + [anon_sym_SQUOTE] = ACTIONS(2975), + [anon_sym_L_DQUOTE] = ACTIONS(2975), + [anon_sym_u_DQUOTE] = ACTIONS(2975), + [anon_sym_U_DQUOTE] = ACTIONS(2975), + [anon_sym_u8_DQUOTE] = ACTIONS(2975), + [anon_sym_DQUOTE] = ACTIONS(2975), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [anon_sym_NULL] = ACTIONS(2973), + [anon_sym_nullptr] = ACTIONS(2973), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2973), + [anon_sym_virtual] = ACTIONS(2973), + [anon_sym_alignas] = ACTIONS(2973), + [anon_sym_explicit] = ACTIONS(2973), + [anon_sym_typename] = ACTIONS(2973), + [anon_sym_template] = ACTIONS(2973), + [anon_sym_operator] = ACTIONS(2973), + [anon_sym_try] = ACTIONS(2973), + [anon_sym_delete] = ACTIONS(2973), + [anon_sym_throw] = ACTIONS(2973), + [anon_sym_namespace] = ACTIONS(2973), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_static_assert] = ACTIONS(2973), + [anon_sym_concept] = ACTIONS(2973), + [anon_sym_co_return] = ACTIONS(2973), + [anon_sym_co_yield] = ACTIONS(2973), + [anon_sym_R_DQUOTE] = ACTIONS(2975), + [anon_sym_LR_DQUOTE] = ACTIONS(2975), + [anon_sym_uR_DQUOTE] = ACTIONS(2975), + [anon_sym_UR_DQUOTE] = ACTIONS(2975), + [anon_sym_u8R_DQUOTE] = ACTIONS(2975), + [anon_sym_co_await] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2973), + [anon_sym_requires] = ACTIONS(2973), + [sym_this] = ACTIONS(2973), }, - [451] = { + [439] = { [sym_identifier] = ACTIONS(2977), [aux_sym_preproc_include_token1] = ACTIONS(2977), [aux_sym_preproc_def_token1] = ACTIONS(2977), @@ -153526,4057 +152238,2842 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2977), [sym_this] = ACTIONS(2977), }, - [452] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [440] = { + [sym_identifier] = ACTIONS(2937), + [aux_sym_preproc_include_token1] = ACTIONS(2937), + [aux_sym_preproc_def_token1] = ACTIONS(2937), + [aux_sym_preproc_if_token1] = ACTIONS(2937), + [aux_sym_preproc_if_token2] = ACTIONS(2937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), + [aux_sym_preproc_else_token1] = ACTIONS(2937), + [aux_sym_preproc_elif_token1] = ACTIONS(2937), + [sym_preproc_directive] = ACTIONS(2937), + [anon_sym_LPAREN2] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2939), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym_typedef] = ACTIONS(2937), + [anon_sym_extern] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(2937), + [anon_sym_COLON_COLON] = ACTIONS(2939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), + [anon_sym___declspec] = ACTIONS(2937), + [anon_sym___based] = ACTIONS(2937), + [anon_sym___cdecl] = ACTIONS(2937), + [anon_sym___clrcall] = ACTIONS(2937), + [anon_sym___stdcall] = ACTIONS(2937), + [anon_sym___fastcall] = ACTIONS(2937), + [anon_sym___thiscall] = ACTIONS(2937), + [anon_sym___vectorcall] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2937), + [anon_sym_unsigned] = ACTIONS(2937), + [anon_sym_long] = ACTIONS(2937), + [anon_sym_short] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_static] = ACTIONS(2937), + [anon_sym_register] = ACTIONS(2937), + [anon_sym_inline] = ACTIONS(2937), + [anon_sym___inline] = ACTIONS(2937), + [anon_sym___inline__] = ACTIONS(2937), + [anon_sym___forceinline] = ACTIONS(2937), + [anon_sym_thread_local] = ACTIONS(2937), + [anon_sym___thread] = ACTIONS(2937), + [anon_sym_const] = ACTIONS(2937), + [anon_sym_constexpr] = ACTIONS(2937), + [anon_sym_volatile] = ACTIONS(2937), + [anon_sym_restrict] = ACTIONS(2937), + [anon_sym___restrict__] = ACTIONS(2937), + [anon_sym__Atomic] = ACTIONS(2937), + [anon_sym__Noreturn] = ACTIONS(2937), + [anon_sym_noreturn] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [sym_primitive_type] = ACTIONS(2937), + [anon_sym_enum] = ACTIONS(2937), + [anon_sym_class] = ACTIONS(2937), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_else] = ACTIONS(2937), + [anon_sym_switch] = ACTIONS(2937), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_while] = ACTIONS(2937), + [anon_sym_do] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_goto] = ACTIONS(2937), + [anon_sym___try] = ACTIONS(2937), + [anon_sym___leave] = ACTIONS(2937), + [anon_sym_not] = ACTIONS(2937), + [anon_sym_compl] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2939), + [anon_sym_sizeof] = ACTIONS(2937), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2937), + [anon_sym__Generic] = ACTIONS(2937), + [anon_sym_asm] = ACTIONS(2937), + [anon_sym___asm__] = ACTIONS(2937), + [sym_number_literal] = ACTIONS(2939), + [anon_sym_L_SQUOTE] = ACTIONS(2939), + [anon_sym_u_SQUOTE] = ACTIONS(2939), + [anon_sym_U_SQUOTE] = ACTIONS(2939), + [anon_sym_u8_SQUOTE] = ACTIONS(2939), + [anon_sym_SQUOTE] = ACTIONS(2939), + [anon_sym_L_DQUOTE] = ACTIONS(2939), + [anon_sym_u_DQUOTE] = ACTIONS(2939), + [anon_sym_U_DQUOTE] = ACTIONS(2939), + [anon_sym_u8_DQUOTE] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [anon_sym_NULL] = ACTIONS(2937), + [anon_sym_nullptr] = ACTIONS(2937), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2937), + [anon_sym_decltype] = ACTIONS(2937), + [anon_sym_virtual] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2937), + [anon_sym_explicit] = ACTIONS(2937), + [anon_sym_typename] = ACTIONS(2937), + [anon_sym_template] = ACTIONS(2937), + [anon_sym_operator] = ACTIONS(2937), + [anon_sym_try] = ACTIONS(2937), + [anon_sym_delete] = ACTIONS(2937), + [anon_sym_throw] = ACTIONS(2937), + [anon_sym_namespace] = ACTIONS(2937), + [anon_sym_using] = ACTIONS(2937), + [anon_sym_static_assert] = ACTIONS(2937), + [anon_sym_concept] = ACTIONS(2937), + [anon_sym_co_return] = ACTIONS(2937), + [anon_sym_co_yield] = ACTIONS(2937), + [anon_sym_R_DQUOTE] = ACTIONS(2939), + [anon_sym_LR_DQUOTE] = ACTIONS(2939), + [anon_sym_uR_DQUOTE] = ACTIONS(2939), + [anon_sym_UR_DQUOTE] = ACTIONS(2939), + [anon_sym_u8R_DQUOTE] = ACTIONS(2939), + [anon_sym_co_await] = ACTIONS(2937), + [anon_sym_new] = ACTIONS(2937), + [anon_sym_requires] = ACTIONS(2937), + [sym_this] = ACTIONS(2937), }, - [453] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [441] = { + [sym_identifier] = ACTIONS(2887), + [aux_sym_preproc_include_token1] = ACTIONS(2887), + [aux_sym_preproc_def_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token2] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), + [aux_sym_preproc_else_token1] = ACTIONS(2887), + [aux_sym_preproc_elif_token1] = ACTIONS(2887), + [sym_preproc_directive] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym___extension__] = ACTIONS(2887), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym___based] = ACTIONS(2887), + [anon_sym___cdecl] = ACTIONS(2887), + [anon_sym___clrcall] = ACTIONS(2887), + [anon_sym___stdcall] = ACTIONS(2887), + [anon_sym___fastcall] = ACTIONS(2887), + [anon_sym___thiscall] = ACTIONS(2887), + [anon_sym___vectorcall] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym___inline] = ACTIONS(2887), + [anon_sym___inline__] = ACTIONS(2887), + [anon_sym___forceinline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym___thread] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym___restrict__] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym__Noreturn] = ACTIONS(2887), + [anon_sym_noreturn] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_else] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym___try] = ACTIONS(2887), + [anon_sym___leave] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [anon_sym___alignof__] = ACTIONS(2887), + [anon_sym___alignof] = ACTIONS(2887), + [anon_sym__alignof] = ACTIONS(2887), + [anon_sym_alignof] = ACTIONS(2887), + [anon_sym__Alignof] = ACTIONS(2887), + [anon_sym_offsetof] = ACTIONS(2887), + [anon_sym__Generic] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym___asm__] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [anon_sym_NULL] = ACTIONS(2887), + [anon_sym_nullptr] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_alignas] = ACTIONS(2887), + [anon_sym_explicit] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_operator] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_static_assert] = ACTIONS(2887), + [anon_sym_concept] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_R_DQUOTE] = ACTIONS(2889), + [anon_sym_LR_DQUOTE] = ACTIONS(2889), + [anon_sym_uR_DQUOTE] = ACTIONS(2889), + [anon_sym_UR_DQUOTE] = ACTIONS(2889), + [anon_sym_u8R_DQUOTE] = ACTIONS(2889), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), }, - [454] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [442] = { + [sym_identifier] = ACTIONS(2883), + [aux_sym_preproc_include_token1] = ACTIONS(2883), + [aux_sym_preproc_def_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token2] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), + [aux_sym_preproc_else_token1] = ACTIONS(2883), + [aux_sym_preproc_elif_token1] = ACTIONS(2883), + [sym_preproc_directive] = ACTIONS(2883), + [anon_sym_LPAREN2] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym___extension__] = ACTIONS(2883), + [anon_sym_typedef] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym___attribute__] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), + [anon_sym___declspec] = ACTIONS(2883), + [anon_sym___based] = ACTIONS(2883), + [anon_sym___cdecl] = ACTIONS(2883), + [anon_sym___clrcall] = ACTIONS(2883), + [anon_sym___stdcall] = ACTIONS(2883), + [anon_sym___fastcall] = ACTIONS(2883), + [anon_sym___thiscall] = ACTIONS(2883), + [anon_sym___vectorcall] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_signed] = ACTIONS(2883), + [anon_sym_unsigned] = ACTIONS(2883), + [anon_sym_long] = ACTIONS(2883), + [anon_sym_short] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_register] = ACTIONS(2883), + [anon_sym_inline] = ACTIONS(2883), + [anon_sym___inline] = ACTIONS(2883), + [anon_sym___inline__] = ACTIONS(2883), + [anon_sym___forceinline] = ACTIONS(2883), + [anon_sym_thread_local] = ACTIONS(2883), + [anon_sym___thread] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_constexpr] = ACTIONS(2883), + [anon_sym_volatile] = ACTIONS(2883), + [anon_sym_restrict] = ACTIONS(2883), + [anon_sym___restrict__] = ACTIONS(2883), + [anon_sym__Atomic] = ACTIONS(2883), + [anon_sym__Noreturn] = ACTIONS(2883), + [anon_sym_noreturn] = ACTIONS(2883), + [anon_sym_mutable] = ACTIONS(2883), + [anon_sym_constinit] = ACTIONS(2883), + [anon_sym_consteval] = ACTIONS(2883), + [sym_primitive_type] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_else] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym___try] = ACTIONS(2883), + [anon_sym___leave] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2883), + [anon_sym_compl] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_sizeof] = ACTIONS(2883), + [anon_sym___alignof__] = ACTIONS(2883), + [anon_sym___alignof] = ACTIONS(2883), + [anon_sym__alignof] = ACTIONS(2883), + [anon_sym_alignof] = ACTIONS(2883), + [anon_sym__Alignof] = ACTIONS(2883), + [anon_sym_offsetof] = ACTIONS(2883), + [anon_sym__Generic] = ACTIONS(2883), + [anon_sym_asm] = ACTIONS(2883), + [anon_sym___asm__] = ACTIONS(2883), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_L_SQUOTE] = ACTIONS(2885), + [anon_sym_u_SQUOTE] = ACTIONS(2885), + [anon_sym_U_SQUOTE] = ACTIONS(2885), + [anon_sym_u8_SQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_L_DQUOTE] = ACTIONS(2885), + [anon_sym_u_DQUOTE] = ACTIONS(2885), + [anon_sym_U_DQUOTE] = ACTIONS(2885), + [anon_sym_u8_DQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [anon_sym_NULL] = ACTIONS(2883), + [anon_sym_nullptr] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2883), + [anon_sym_decltype] = ACTIONS(2883), + [anon_sym_virtual] = ACTIONS(2883), + [anon_sym_alignas] = ACTIONS(2883), + [anon_sym_explicit] = ACTIONS(2883), + [anon_sym_typename] = ACTIONS(2883), + [anon_sym_template] = ACTIONS(2883), + [anon_sym_operator] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_static_assert] = ACTIONS(2883), + [anon_sym_concept] = ACTIONS(2883), + [anon_sym_co_return] = ACTIONS(2883), + [anon_sym_co_yield] = ACTIONS(2883), + [anon_sym_R_DQUOTE] = ACTIONS(2885), + [anon_sym_LR_DQUOTE] = ACTIONS(2885), + [anon_sym_uR_DQUOTE] = ACTIONS(2885), + [anon_sym_UR_DQUOTE] = ACTIONS(2885), + [anon_sym_u8R_DQUOTE] = ACTIONS(2885), + [anon_sym_co_await] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_requires] = ACTIONS(2883), + [sym_this] = ACTIONS(2883), + }, + [443] = { + [sym__expression] = STATE(4961), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8829), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym___extension__] = ACTIONS(2909), + [anon_sym_extern] = ACTIONS(2909), + [anon_sym___attribute__] = ACTIONS(2909), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2911), + [anon_sym___declspec] = ACTIONS(2909), + [anon_sym_signed] = ACTIONS(2909), + [anon_sym_unsigned] = ACTIONS(2909), + [anon_sym_long] = ACTIONS(2909), + [anon_sym_short] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(2909), + [anon_sym_register] = ACTIONS(2909), + [anon_sym_inline] = ACTIONS(2909), + [anon_sym___inline] = ACTIONS(2909), + [anon_sym___inline__] = ACTIONS(2909), + [anon_sym___forceinline] = ACTIONS(2909), + [anon_sym_thread_local] = ACTIONS(2909), + [anon_sym___thread] = ACTIONS(2909), + [anon_sym_const] = ACTIONS(2909), + [anon_sym_constexpr] = ACTIONS(2909), + [anon_sym_volatile] = ACTIONS(2909), + [anon_sym_restrict] = ACTIONS(2909), + [anon_sym___restrict__] = ACTIONS(2909), + [anon_sym__Atomic] = ACTIONS(2909), + [anon_sym__Noreturn] = ACTIONS(2909), + [anon_sym_noreturn] = ACTIONS(2909), + [anon_sym_mutable] = ACTIONS(2909), + [anon_sym_constinit] = ACTIONS(2909), + [anon_sym_consteval] = ACTIONS(2909), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2909), + [anon_sym_class] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2909), + [anon_sym_union] = ACTIONS(2909), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2909), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(2909), + [anon_sym_alignas] = ACTIONS(2909), + [anon_sym_typename] = ACTIONS(2909), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [455] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [444] = { + [sym_catch_clause] = STATE(348), + [aux_sym_constructor_try_statement_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(2834), + [aux_sym_preproc_include_token1] = ACTIONS(2834), + [aux_sym_preproc_def_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token2] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), + [sym_preproc_directive] = ACTIONS(2834), + [anon_sym_LPAREN2] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_PLUS] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_AMP_AMP] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym___extension__] = ACTIONS(2834), + [anon_sym_typedef] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym___attribute__] = ACTIONS(2834), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), + [anon_sym___declspec] = ACTIONS(2834), + [anon_sym___based] = ACTIONS(2834), + [anon_sym___cdecl] = ACTIONS(2834), + [anon_sym___clrcall] = ACTIONS(2834), + [anon_sym___stdcall] = ACTIONS(2834), + [anon_sym___fastcall] = ACTIONS(2834), + [anon_sym___thiscall] = ACTIONS(2834), + [anon_sym___vectorcall] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_signed] = ACTIONS(2834), + [anon_sym_unsigned] = ACTIONS(2834), + [anon_sym_long] = ACTIONS(2834), + [anon_sym_short] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_register] = ACTIONS(2834), + [anon_sym_inline] = ACTIONS(2834), + [anon_sym___inline] = ACTIONS(2834), + [anon_sym___inline__] = ACTIONS(2834), + [anon_sym___forceinline] = ACTIONS(2834), + [anon_sym_thread_local] = ACTIONS(2834), + [anon_sym___thread] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_constexpr] = ACTIONS(2834), + [anon_sym_volatile] = ACTIONS(2834), + [anon_sym_restrict] = ACTIONS(2834), + [anon_sym___restrict__] = ACTIONS(2834), + [anon_sym__Atomic] = ACTIONS(2834), + [anon_sym__Noreturn] = ACTIONS(2834), + [anon_sym_noreturn] = ACTIONS(2834), + [anon_sym_mutable] = ACTIONS(2834), + [anon_sym_constinit] = ACTIONS(2834), + [anon_sym_consteval] = ACTIONS(2834), + [sym_primitive_type] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_class] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_switch] = ACTIONS(2834), + [anon_sym_case] = ACTIONS(2834), + [anon_sym_default] = ACTIONS(2834), + [anon_sym_while] = ACTIONS(2834), + [anon_sym_do] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_goto] = ACTIONS(2834), + [anon_sym___try] = ACTIONS(2834), + [anon_sym___leave] = ACTIONS(2834), + [anon_sym_not] = ACTIONS(2834), + [anon_sym_compl] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_PLUS_PLUS] = ACTIONS(2836), + [anon_sym_sizeof] = ACTIONS(2834), + [anon_sym___alignof__] = ACTIONS(2834), + [anon_sym___alignof] = ACTIONS(2834), + [anon_sym__alignof] = ACTIONS(2834), + [anon_sym_alignof] = ACTIONS(2834), + [anon_sym__Alignof] = ACTIONS(2834), + [anon_sym_offsetof] = ACTIONS(2834), + [anon_sym__Generic] = ACTIONS(2834), + [anon_sym_asm] = ACTIONS(2834), + [anon_sym___asm__] = ACTIONS(2834), + [sym_number_literal] = ACTIONS(2836), + [anon_sym_L_SQUOTE] = ACTIONS(2836), + [anon_sym_u_SQUOTE] = ACTIONS(2836), + [anon_sym_U_SQUOTE] = ACTIONS(2836), + [anon_sym_u8_SQUOTE] = ACTIONS(2836), + [anon_sym_SQUOTE] = ACTIONS(2836), + [anon_sym_L_DQUOTE] = ACTIONS(2836), + [anon_sym_u_DQUOTE] = ACTIONS(2836), + [anon_sym_U_DQUOTE] = ACTIONS(2836), + [anon_sym_u8_DQUOTE] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2836), + [sym_true] = ACTIONS(2834), + [sym_false] = ACTIONS(2834), + [anon_sym_NULL] = ACTIONS(2834), + [anon_sym_nullptr] = ACTIONS(2834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2834), + [anon_sym_decltype] = ACTIONS(2834), + [anon_sym_virtual] = ACTIONS(2834), + [anon_sym_alignas] = ACTIONS(2834), + [anon_sym_explicit] = ACTIONS(2834), + [anon_sym_typename] = ACTIONS(2834), + [anon_sym_template] = ACTIONS(2834), + [anon_sym_operator] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2834), + [anon_sym_delete] = ACTIONS(2834), + [anon_sym_throw] = ACTIONS(2834), + [anon_sym_namespace] = ACTIONS(2834), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_static_assert] = ACTIONS(2834), + [anon_sym_concept] = ACTIONS(2834), + [anon_sym_co_return] = ACTIONS(2834), + [anon_sym_co_yield] = ACTIONS(2834), + [anon_sym_catch] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(2836), + [anon_sym_LR_DQUOTE] = ACTIONS(2836), + [anon_sym_uR_DQUOTE] = ACTIONS(2836), + [anon_sym_UR_DQUOTE] = ACTIONS(2836), + [anon_sym_u8R_DQUOTE] = ACTIONS(2836), + [anon_sym_co_await] = ACTIONS(2834), + [anon_sym_new] = ACTIONS(2834), + [anon_sym_requires] = ACTIONS(2834), + [sym_this] = ACTIONS(2834), }, - [456] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [445] = { + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [aux_sym_preproc_else_token1] = ACTIONS(2875), + [aux_sym_preproc_elif_token1] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym___cdecl] = ACTIONS(2875), + [anon_sym___clrcall] = ACTIONS(2875), + [anon_sym___stdcall] = ACTIONS(2875), + [anon_sym___fastcall] = ACTIONS(2875), + [anon_sym___thiscall] = ACTIONS(2875), + [anon_sym___vectorcall] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_else] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym___try] = ACTIONS(2875), + [anon_sym___leave] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [anon_sym___alignof__] = ACTIONS(2875), + [anon_sym___alignof] = ACTIONS(2875), + [anon_sym__alignof] = ACTIONS(2875), + [anon_sym_alignof] = ACTIONS(2875), + [anon_sym__Alignof] = ACTIONS(2875), + [anon_sym_offsetof] = ACTIONS(2875), + [anon_sym__Generic] = ACTIONS(2875), + [anon_sym_asm] = ACTIONS(2875), + [anon_sym___asm__] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [anon_sym_NULL] = ACTIONS(2875), + [anon_sym_nullptr] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + [anon_sym_concept] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_R_DQUOTE] = ACTIONS(2877), + [anon_sym_LR_DQUOTE] = ACTIONS(2877), + [anon_sym_uR_DQUOTE] = ACTIONS(2877), + [anon_sym_UR_DQUOTE] = ACTIONS(2877), + [anon_sym_u8R_DQUOTE] = ACTIONS(2877), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), + }, + [446] = { + [sym_identifier] = ACTIONS(2953), + [aux_sym_preproc_include_token1] = ACTIONS(2953), + [aux_sym_preproc_def_token1] = ACTIONS(2953), + [aux_sym_preproc_if_token1] = ACTIONS(2953), + [aux_sym_preproc_if_token2] = ACTIONS(2953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), + [aux_sym_preproc_else_token1] = ACTIONS(2953), + [aux_sym_preproc_elif_token1] = ACTIONS(2953), + [sym_preproc_directive] = ACTIONS(2953), + [anon_sym_LPAREN2] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym___extension__] = ACTIONS(2953), + [anon_sym_typedef] = ACTIONS(2953), + [anon_sym_extern] = ACTIONS(2953), + [anon_sym___attribute__] = ACTIONS(2953), + [anon_sym_COLON_COLON] = ACTIONS(2955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), + [anon_sym___declspec] = ACTIONS(2953), + [anon_sym___based] = ACTIONS(2953), + [anon_sym___cdecl] = ACTIONS(2953), + [anon_sym___clrcall] = ACTIONS(2953), + [anon_sym___stdcall] = ACTIONS(2953), + [anon_sym___fastcall] = ACTIONS(2953), + [anon_sym___thiscall] = ACTIONS(2953), + [anon_sym___vectorcall] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_signed] = ACTIONS(2953), + [anon_sym_unsigned] = ACTIONS(2953), + [anon_sym_long] = ACTIONS(2953), + [anon_sym_short] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(2953), + [anon_sym_static] = ACTIONS(2953), + [anon_sym_register] = ACTIONS(2953), + [anon_sym_inline] = ACTIONS(2953), + [anon_sym___inline] = ACTIONS(2953), + [anon_sym___inline__] = ACTIONS(2953), + [anon_sym___forceinline] = ACTIONS(2953), + [anon_sym_thread_local] = ACTIONS(2953), + [anon_sym___thread] = ACTIONS(2953), + [anon_sym_const] = ACTIONS(2953), + [anon_sym_constexpr] = ACTIONS(2953), + [anon_sym_volatile] = ACTIONS(2953), + [anon_sym_restrict] = ACTIONS(2953), + [anon_sym___restrict__] = ACTIONS(2953), + [anon_sym__Atomic] = ACTIONS(2953), + [anon_sym__Noreturn] = ACTIONS(2953), + [anon_sym_noreturn] = ACTIONS(2953), + [anon_sym_mutable] = ACTIONS(2953), + [anon_sym_constinit] = ACTIONS(2953), + [anon_sym_consteval] = ACTIONS(2953), + [sym_primitive_type] = ACTIONS(2953), + [anon_sym_enum] = ACTIONS(2953), + [anon_sym_class] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(2953), + [anon_sym_union] = ACTIONS(2953), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_else] = ACTIONS(2953), + [anon_sym_switch] = ACTIONS(2953), + [anon_sym_case] = ACTIONS(2953), + [anon_sym_default] = ACTIONS(2953), + [anon_sym_while] = ACTIONS(2953), + [anon_sym_do] = ACTIONS(2953), + [anon_sym_for] = ACTIONS(2953), + [anon_sym_return] = ACTIONS(2953), + [anon_sym_break] = ACTIONS(2953), + [anon_sym_continue] = ACTIONS(2953), + [anon_sym_goto] = ACTIONS(2953), + [anon_sym___try] = ACTIONS(2953), + [anon_sym___leave] = ACTIONS(2953), + [anon_sym_not] = ACTIONS(2953), + [anon_sym_compl] = ACTIONS(2953), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_sizeof] = ACTIONS(2953), + [anon_sym___alignof__] = ACTIONS(2953), + [anon_sym___alignof] = ACTIONS(2953), + [anon_sym__alignof] = ACTIONS(2953), + [anon_sym_alignof] = ACTIONS(2953), + [anon_sym__Alignof] = ACTIONS(2953), + [anon_sym_offsetof] = ACTIONS(2953), + [anon_sym__Generic] = ACTIONS(2953), + [anon_sym_asm] = ACTIONS(2953), + [anon_sym___asm__] = ACTIONS(2953), + [sym_number_literal] = ACTIONS(2955), + [anon_sym_L_SQUOTE] = ACTIONS(2955), + [anon_sym_u_SQUOTE] = ACTIONS(2955), + [anon_sym_U_SQUOTE] = ACTIONS(2955), + [anon_sym_u8_SQUOTE] = ACTIONS(2955), + [anon_sym_SQUOTE] = ACTIONS(2955), + [anon_sym_L_DQUOTE] = ACTIONS(2955), + [anon_sym_u_DQUOTE] = ACTIONS(2955), + [anon_sym_U_DQUOTE] = ACTIONS(2955), + [anon_sym_u8_DQUOTE] = ACTIONS(2955), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_true] = ACTIONS(2953), + [sym_false] = ACTIONS(2953), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2953), + [anon_sym_decltype] = ACTIONS(2953), + [anon_sym_virtual] = ACTIONS(2953), + [anon_sym_alignas] = ACTIONS(2953), + [anon_sym_explicit] = ACTIONS(2953), + [anon_sym_typename] = ACTIONS(2953), + [anon_sym_template] = ACTIONS(2953), + [anon_sym_operator] = ACTIONS(2953), + [anon_sym_try] = ACTIONS(2953), + [anon_sym_delete] = ACTIONS(2953), + [anon_sym_throw] = ACTIONS(2953), + [anon_sym_namespace] = ACTIONS(2953), + [anon_sym_using] = ACTIONS(2953), + [anon_sym_static_assert] = ACTIONS(2953), + [anon_sym_concept] = ACTIONS(2953), + [anon_sym_co_return] = ACTIONS(2953), + [anon_sym_co_yield] = ACTIONS(2953), + [anon_sym_R_DQUOTE] = ACTIONS(2955), + [anon_sym_LR_DQUOTE] = ACTIONS(2955), + [anon_sym_uR_DQUOTE] = ACTIONS(2955), + [anon_sym_UR_DQUOTE] = ACTIONS(2955), + [anon_sym_u8R_DQUOTE] = ACTIONS(2955), + [anon_sym_co_await] = ACTIONS(2953), + [anon_sym_new] = ACTIONS(2953), + [anon_sym_requires] = ACTIONS(2953), + [sym_this] = ACTIONS(2953), }, - [457] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [447] = { + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_include_token1] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token2] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [aux_sym_preproc_else_token1] = ACTIONS(2895), + [aux_sym_preproc_elif_token1] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym___cdecl] = ACTIONS(2895), + [anon_sym___clrcall] = ACTIONS(2895), + [anon_sym___stdcall] = ACTIONS(2895), + [anon_sym___fastcall] = ACTIONS(2895), + [anon_sym___thiscall] = ACTIONS(2895), + [anon_sym___vectorcall] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_else] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym___try] = ACTIONS(2895), + [anon_sym___leave] = ACTIONS(2895), + [anon_sym_not] = ACTIONS(2895), + [anon_sym_compl] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_sizeof] = ACTIONS(2895), + [anon_sym___alignof__] = ACTIONS(2895), + [anon_sym___alignof] = ACTIONS(2895), + [anon_sym__alignof] = ACTIONS(2895), + [anon_sym_alignof] = ACTIONS(2895), + [anon_sym__Alignof] = ACTIONS(2895), + [anon_sym_offsetof] = ACTIONS(2895), + [anon_sym__Generic] = ACTIONS(2895), + [anon_sym_asm] = ACTIONS(2895), + [anon_sym___asm__] = ACTIONS(2895), + [sym_number_literal] = ACTIONS(2897), + [anon_sym_L_SQUOTE] = ACTIONS(2897), + [anon_sym_u_SQUOTE] = ACTIONS(2897), + [anon_sym_U_SQUOTE] = ACTIONS(2897), + [anon_sym_u8_SQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_L_DQUOTE] = ACTIONS(2897), + [anon_sym_u_DQUOTE] = ACTIONS(2897), + [anon_sym_U_DQUOTE] = ACTIONS(2897), + [anon_sym_u8_DQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [anon_sym_NULL] = ACTIONS(2895), + [anon_sym_nullptr] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + [anon_sym_concept] = ACTIONS(2895), + [anon_sym_co_return] = ACTIONS(2895), + [anon_sym_co_yield] = ACTIONS(2895), + [anon_sym_R_DQUOTE] = ACTIONS(2897), + [anon_sym_LR_DQUOTE] = ACTIONS(2897), + [anon_sym_uR_DQUOTE] = ACTIONS(2897), + [anon_sym_UR_DQUOTE] = ACTIONS(2897), + [anon_sym_u8R_DQUOTE] = ACTIONS(2897), + [anon_sym_co_await] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_requires] = ACTIONS(2895), + [sym_this] = ACTIONS(2895), }, - [458] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [448] = { + [sym__expression] = STATE(5069), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9012), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym___extension__] = ACTIONS(2945), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym___attribute__] = ACTIONS(2945), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), + [anon_sym___declspec] = ACTIONS(2945), + [anon_sym_signed] = ACTIONS(2945), + [anon_sym_unsigned] = ACTIONS(2945), + [anon_sym_long] = ACTIONS(2945), + [anon_sym_short] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_register] = ACTIONS(2945), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym___inline] = ACTIONS(2945), + [anon_sym___inline__] = ACTIONS(2945), + [anon_sym___forceinline] = ACTIONS(2945), + [anon_sym_thread_local] = ACTIONS(2945), + [anon_sym___thread] = ACTIONS(2945), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_constexpr] = ACTIONS(2945), + [anon_sym_volatile] = ACTIONS(2945), + [anon_sym_restrict] = ACTIONS(2945), + [anon_sym___restrict__] = ACTIONS(2945), + [anon_sym__Atomic] = ACTIONS(2945), + [anon_sym__Noreturn] = ACTIONS(2945), + [anon_sym_noreturn] = ACTIONS(2945), + [anon_sym_mutable] = ACTIONS(2945), + [anon_sym_constinit] = ACTIONS(2945), + [anon_sym_consteval] = ACTIONS(2945), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(2945), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2945), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(2945), + [anon_sym_alignas] = ACTIONS(2945), + [anon_sym_typename] = ACTIONS(2945), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [459] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [449] = { + [sym_identifier] = ACTIONS(2941), + [aux_sym_preproc_include_token1] = ACTIONS(2941), + [aux_sym_preproc_def_token1] = ACTIONS(2941), + [aux_sym_preproc_if_token1] = ACTIONS(2941), + [aux_sym_preproc_if_token2] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), + [aux_sym_preproc_else_token1] = ACTIONS(2941), + [aux_sym_preproc_elif_token1] = ACTIONS(2941), + [sym_preproc_directive] = ACTIONS(2941), + [anon_sym_LPAREN2] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_AMP_AMP] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2943), + [anon_sym___extension__] = ACTIONS(2941), + [anon_sym_typedef] = ACTIONS(2941), + [anon_sym_extern] = ACTIONS(2941), + [anon_sym___attribute__] = ACTIONS(2941), + [anon_sym_COLON_COLON] = ACTIONS(2943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), + [anon_sym___declspec] = ACTIONS(2941), + [anon_sym___based] = ACTIONS(2941), + [anon_sym___cdecl] = ACTIONS(2941), + [anon_sym___clrcall] = ACTIONS(2941), + [anon_sym___stdcall] = ACTIONS(2941), + [anon_sym___fastcall] = ACTIONS(2941), + [anon_sym___thiscall] = ACTIONS(2941), + [anon_sym___vectorcall] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_signed] = ACTIONS(2941), + [anon_sym_unsigned] = ACTIONS(2941), + [anon_sym_long] = ACTIONS(2941), + [anon_sym_short] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_static] = ACTIONS(2941), + [anon_sym_register] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2941), + [anon_sym___inline] = ACTIONS(2941), + [anon_sym___inline__] = ACTIONS(2941), + [anon_sym___forceinline] = ACTIONS(2941), + [anon_sym_thread_local] = ACTIONS(2941), + [anon_sym___thread] = ACTIONS(2941), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_constexpr] = ACTIONS(2941), + [anon_sym_volatile] = ACTIONS(2941), + [anon_sym_restrict] = ACTIONS(2941), + [anon_sym___restrict__] = ACTIONS(2941), + [anon_sym__Atomic] = ACTIONS(2941), + [anon_sym__Noreturn] = ACTIONS(2941), + [anon_sym_noreturn] = ACTIONS(2941), + [anon_sym_mutable] = ACTIONS(2941), + [anon_sym_constinit] = ACTIONS(2941), + [anon_sym_consteval] = ACTIONS(2941), + [sym_primitive_type] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2941), + [anon_sym_class] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_else] = ACTIONS(2941), + [anon_sym_switch] = ACTIONS(2941), + [anon_sym_case] = ACTIONS(2941), + [anon_sym_default] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_goto] = ACTIONS(2941), + [anon_sym___try] = ACTIONS(2941), + [anon_sym___leave] = ACTIONS(2941), + [anon_sym_not] = ACTIONS(2941), + [anon_sym_compl] = ACTIONS(2941), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_sizeof] = ACTIONS(2941), + [anon_sym___alignof__] = ACTIONS(2941), + [anon_sym___alignof] = ACTIONS(2941), + [anon_sym__alignof] = ACTIONS(2941), + [anon_sym_alignof] = ACTIONS(2941), + [anon_sym__Alignof] = ACTIONS(2941), + [anon_sym_offsetof] = ACTIONS(2941), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2941), + [anon_sym___asm__] = ACTIONS(2941), + [sym_number_literal] = ACTIONS(2943), + [anon_sym_L_SQUOTE] = ACTIONS(2943), + [anon_sym_u_SQUOTE] = ACTIONS(2943), + [anon_sym_U_SQUOTE] = ACTIONS(2943), + [anon_sym_u8_SQUOTE] = ACTIONS(2943), + [anon_sym_SQUOTE] = ACTIONS(2943), + [anon_sym_L_DQUOTE] = ACTIONS(2943), + [anon_sym_u_DQUOTE] = ACTIONS(2943), + [anon_sym_U_DQUOTE] = ACTIONS(2943), + [anon_sym_u8_DQUOTE] = ACTIONS(2943), + [anon_sym_DQUOTE] = ACTIONS(2943), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [anon_sym_NULL] = ACTIONS(2941), + [anon_sym_nullptr] = ACTIONS(2941), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [460] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [461] = { - [sym_identifier] = ACTIONS(2897), - [aux_sym_preproc_include_token1] = ACTIONS(2897), - [aux_sym_preproc_def_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token2] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2897), - [aux_sym_preproc_else_token1] = ACTIONS(2897), - [aux_sym_preproc_elif_token1] = ACTIONS(2897), - [sym_preproc_directive] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym___extension__] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym___attribute__] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2899), - [anon_sym___declspec] = ACTIONS(2897), - [anon_sym___based] = ACTIONS(2897), - [anon_sym___cdecl] = ACTIONS(2897), - [anon_sym___clrcall] = ACTIONS(2897), - [anon_sym___stdcall] = ACTIONS(2897), - [anon_sym___fastcall] = ACTIONS(2897), - [anon_sym___thiscall] = ACTIONS(2897), - [anon_sym___vectorcall] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_signed] = ACTIONS(2897), - [anon_sym_unsigned] = ACTIONS(2897), - [anon_sym_long] = ACTIONS(2897), - [anon_sym_short] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_register] = ACTIONS(2897), - [anon_sym_inline] = ACTIONS(2897), - [anon_sym___inline] = ACTIONS(2897), - [anon_sym___inline__] = ACTIONS(2897), - [anon_sym___forceinline] = ACTIONS(2897), - [anon_sym_thread_local] = ACTIONS(2897), - [anon_sym___thread] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_constexpr] = ACTIONS(2897), - [anon_sym_volatile] = ACTIONS(2897), - [anon_sym_restrict] = ACTIONS(2897), - [anon_sym___restrict__] = ACTIONS(2897), - [anon_sym__Atomic] = ACTIONS(2897), - [anon_sym__Noreturn] = ACTIONS(2897), - [anon_sym_noreturn] = ACTIONS(2897), - [anon_sym_mutable] = ACTIONS(2897), - [anon_sym_constinit] = ACTIONS(2897), - [anon_sym_consteval] = ACTIONS(2897), - [sym_primitive_type] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_goto] = ACTIONS(2897), - [anon_sym___try] = ACTIONS(2897), - [anon_sym___leave] = ACTIONS(2897), - [anon_sym_not] = ACTIONS(2897), - [anon_sym_compl] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_sizeof] = ACTIONS(2897), - [anon_sym___alignof__] = ACTIONS(2897), - [anon_sym___alignof] = ACTIONS(2897), - [anon_sym__alignof] = ACTIONS(2897), - [anon_sym_alignof] = ACTIONS(2897), - [anon_sym__Alignof] = ACTIONS(2897), - [anon_sym_offsetof] = ACTIONS(2897), - [anon_sym__Generic] = ACTIONS(2897), - [anon_sym_asm] = ACTIONS(2897), - [anon_sym___asm__] = ACTIONS(2897), - [sym_number_literal] = ACTIONS(2899), - [anon_sym_L_SQUOTE] = ACTIONS(2899), - [anon_sym_u_SQUOTE] = ACTIONS(2899), - [anon_sym_U_SQUOTE] = ACTIONS(2899), - [anon_sym_u8_SQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_L_DQUOTE] = ACTIONS(2899), - [anon_sym_u_DQUOTE] = ACTIONS(2899), - [anon_sym_U_DQUOTE] = ACTIONS(2899), - [anon_sym_u8_DQUOTE] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2897), - [anon_sym_nullptr] = ACTIONS(2897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2897), - [anon_sym_decltype] = ACTIONS(2897), - [anon_sym_virtual] = ACTIONS(2897), - [anon_sym_alignas] = ACTIONS(2897), - [anon_sym_explicit] = ACTIONS(2897), - [anon_sym_typename] = ACTIONS(2897), - [anon_sym_template] = ACTIONS(2897), - [anon_sym_operator] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_namespace] = ACTIONS(2897), - [anon_sym_using] = ACTIONS(2897), - [anon_sym_static_assert] = ACTIONS(2897), - [anon_sym_concept] = ACTIONS(2897), - [anon_sym_co_return] = ACTIONS(2897), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2899), - [anon_sym_LR_DQUOTE] = ACTIONS(2899), - [anon_sym_uR_DQUOTE] = ACTIONS(2899), - [anon_sym_UR_DQUOTE] = ACTIONS(2899), - [anon_sym_u8R_DQUOTE] = ACTIONS(2899), - [anon_sym_co_await] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_requires] = ACTIONS(2897), - [sym_this] = ACTIONS(2897), + [sym_auto] = ACTIONS(2941), + [anon_sym_decltype] = ACTIONS(2941), + [anon_sym_virtual] = ACTIONS(2941), + [anon_sym_alignas] = ACTIONS(2941), + [anon_sym_explicit] = ACTIONS(2941), + [anon_sym_typename] = ACTIONS(2941), + [anon_sym_template] = ACTIONS(2941), + [anon_sym_operator] = ACTIONS(2941), + [anon_sym_try] = ACTIONS(2941), + [anon_sym_delete] = ACTIONS(2941), + [anon_sym_throw] = ACTIONS(2941), + [anon_sym_namespace] = ACTIONS(2941), + [anon_sym_using] = ACTIONS(2941), + [anon_sym_static_assert] = ACTIONS(2941), + [anon_sym_concept] = ACTIONS(2941), + [anon_sym_co_return] = ACTIONS(2941), + [anon_sym_co_yield] = ACTIONS(2941), + [anon_sym_R_DQUOTE] = ACTIONS(2943), + [anon_sym_LR_DQUOTE] = ACTIONS(2943), + [anon_sym_uR_DQUOTE] = ACTIONS(2943), + [anon_sym_UR_DQUOTE] = ACTIONS(2943), + [anon_sym_u8R_DQUOTE] = ACTIONS(2943), + [anon_sym_co_await] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_requires] = ACTIONS(2941), + [sym_this] = ACTIONS(2941), }, - [462] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [450] = { + [sym_identifier] = ACTIONS(2961), + [aux_sym_preproc_include_token1] = ACTIONS(2961), + [aux_sym_preproc_def_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token2] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), + [aux_sym_preproc_else_token1] = ACTIONS(2961), + [aux_sym_preproc_elif_token1] = ACTIONS(2961), + [sym_preproc_directive] = ACTIONS(2961), + [anon_sym_LPAREN2] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2963), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym___extension__] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym___attribute__] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), + [anon_sym___declspec] = ACTIONS(2961), + [anon_sym___based] = ACTIONS(2961), + [anon_sym___cdecl] = ACTIONS(2961), + [anon_sym___clrcall] = ACTIONS(2961), + [anon_sym___stdcall] = ACTIONS(2961), + [anon_sym___fastcall] = ACTIONS(2961), + [anon_sym___thiscall] = ACTIONS(2961), + [anon_sym___vectorcall] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_signed] = ACTIONS(2961), + [anon_sym_unsigned] = ACTIONS(2961), + [anon_sym_long] = ACTIONS(2961), + [anon_sym_short] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_register] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym___inline] = ACTIONS(2961), + [anon_sym___inline__] = ACTIONS(2961), + [anon_sym___forceinline] = ACTIONS(2961), + [anon_sym_thread_local] = ACTIONS(2961), + [anon_sym___thread] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_constexpr] = ACTIONS(2961), + [anon_sym_volatile] = ACTIONS(2961), + [anon_sym_restrict] = ACTIONS(2961), + [anon_sym___restrict__] = ACTIONS(2961), + [anon_sym__Atomic] = ACTIONS(2961), + [anon_sym__Noreturn] = ACTIONS(2961), + [anon_sym_noreturn] = ACTIONS(2961), + [anon_sym_mutable] = ACTIONS(2961), + [anon_sym_constinit] = ACTIONS(2961), + [anon_sym_consteval] = ACTIONS(2961), + [sym_primitive_type] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_else] = ACTIONS(2961), + [anon_sym_switch] = ACTIONS(2961), + [anon_sym_case] = ACTIONS(2961), + [anon_sym_default] = ACTIONS(2961), + [anon_sym_while] = ACTIONS(2961), + [anon_sym_do] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_goto] = ACTIONS(2961), + [anon_sym___try] = ACTIONS(2961), + [anon_sym___leave] = ACTIONS(2961), + [anon_sym_not] = ACTIONS(2961), + [anon_sym_compl] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2963), + [anon_sym_PLUS_PLUS] = ACTIONS(2963), + [anon_sym_sizeof] = ACTIONS(2961), + [anon_sym___alignof__] = ACTIONS(2961), + [anon_sym___alignof] = ACTIONS(2961), + [anon_sym__alignof] = ACTIONS(2961), + [anon_sym_alignof] = ACTIONS(2961), + [anon_sym__Alignof] = ACTIONS(2961), + [anon_sym_offsetof] = ACTIONS(2961), + [anon_sym__Generic] = ACTIONS(2961), + [anon_sym_asm] = ACTIONS(2961), + [anon_sym___asm__] = ACTIONS(2961), + [sym_number_literal] = ACTIONS(2963), + [anon_sym_L_SQUOTE] = ACTIONS(2963), + [anon_sym_u_SQUOTE] = ACTIONS(2963), + [anon_sym_U_SQUOTE] = ACTIONS(2963), + [anon_sym_u8_SQUOTE] = ACTIONS(2963), + [anon_sym_SQUOTE] = ACTIONS(2963), + [anon_sym_L_DQUOTE] = ACTIONS(2963), + [anon_sym_u_DQUOTE] = ACTIONS(2963), + [anon_sym_U_DQUOTE] = ACTIONS(2963), + [anon_sym_u8_DQUOTE] = ACTIONS(2963), + [anon_sym_DQUOTE] = ACTIONS(2963), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [anon_sym_NULL] = ACTIONS(2961), + [anon_sym_nullptr] = ACTIONS(2961), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2961), + [anon_sym_virtual] = ACTIONS(2961), + [anon_sym_alignas] = ACTIONS(2961), + [anon_sym_explicit] = ACTIONS(2961), + [anon_sym_typename] = ACTIONS(2961), + [anon_sym_template] = ACTIONS(2961), + [anon_sym_operator] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2961), + [anon_sym_throw] = ACTIONS(2961), + [anon_sym_namespace] = ACTIONS(2961), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_static_assert] = ACTIONS(2961), + [anon_sym_concept] = ACTIONS(2961), + [anon_sym_co_return] = ACTIONS(2961), + [anon_sym_co_yield] = ACTIONS(2961), + [anon_sym_R_DQUOTE] = ACTIONS(2963), + [anon_sym_LR_DQUOTE] = ACTIONS(2963), + [anon_sym_uR_DQUOTE] = ACTIONS(2963), + [anon_sym_UR_DQUOTE] = ACTIONS(2963), + [anon_sym_u8R_DQUOTE] = ACTIONS(2963), + [anon_sym_co_await] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2961), + [sym_this] = ACTIONS(2961), }, - [463] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [451] = { + [sym_identifier] = ACTIONS(2913), + [aux_sym_preproc_include_token1] = ACTIONS(2913), + [aux_sym_preproc_def_token1] = ACTIONS(2913), + [aux_sym_preproc_if_token1] = ACTIONS(2913), + [aux_sym_preproc_if_token2] = ACTIONS(2913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), + [aux_sym_preproc_else_token1] = ACTIONS(2913), + [aux_sym_preproc_elif_token1] = ACTIONS(2913), + [sym_preproc_directive] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_AMP_AMP] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym___extension__] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(2913), + [anon_sym_extern] = ACTIONS(2913), + [anon_sym___attribute__] = ACTIONS(2913), + [anon_sym_COLON_COLON] = ACTIONS(2915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), + [anon_sym___declspec] = ACTIONS(2913), + [anon_sym___based] = ACTIONS(2913), + [anon_sym___cdecl] = ACTIONS(2913), + [anon_sym___clrcall] = ACTIONS(2913), + [anon_sym___stdcall] = ACTIONS(2913), + [anon_sym___fastcall] = ACTIONS(2913), + [anon_sym___thiscall] = ACTIONS(2913), + [anon_sym___vectorcall] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(2913), + [anon_sym_unsigned] = ACTIONS(2913), + [anon_sym_long] = ACTIONS(2913), + [anon_sym_short] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_register] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym___inline] = ACTIONS(2913), + [anon_sym___inline__] = ACTIONS(2913), + [anon_sym___forceinline] = ACTIONS(2913), + [anon_sym_thread_local] = ACTIONS(2913), + [anon_sym___thread] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_constexpr] = ACTIONS(2913), + [anon_sym_volatile] = ACTIONS(2913), + [anon_sym_restrict] = ACTIONS(2913), + [anon_sym___restrict__] = ACTIONS(2913), + [anon_sym__Atomic] = ACTIONS(2913), + [anon_sym__Noreturn] = ACTIONS(2913), + [anon_sym_noreturn] = ACTIONS(2913), + [anon_sym_mutable] = ACTIONS(2913), + [anon_sym_constinit] = ACTIONS(2913), + [anon_sym_consteval] = ACTIONS(2913), + [sym_primitive_type] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_union] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_else] = ACTIONS(2913), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_case] = ACTIONS(2913), + [anon_sym_default] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_goto] = ACTIONS(2913), + [anon_sym___try] = ACTIONS(2913), + [anon_sym___leave] = ACTIONS(2913), + [anon_sym_not] = ACTIONS(2913), + [anon_sym_compl] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_sizeof] = ACTIONS(2913), + [anon_sym___alignof__] = ACTIONS(2913), + [anon_sym___alignof] = ACTIONS(2913), + [anon_sym__alignof] = ACTIONS(2913), + [anon_sym_alignof] = ACTIONS(2913), + [anon_sym__Alignof] = ACTIONS(2913), + [anon_sym_offsetof] = ACTIONS(2913), + [anon_sym__Generic] = ACTIONS(2913), + [anon_sym_asm] = ACTIONS(2913), + [anon_sym___asm__] = ACTIONS(2913), + [sym_number_literal] = ACTIONS(2915), + [anon_sym_L_SQUOTE] = ACTIONS(2915), + [anon_sym_u_SQUOTE] = ACTIONS(2915), + [anon_sym_U_SQUOTE] = ACTIONS(2915), + [anon_sym_u8_SQUOTE] = ACTIONS(2915), + [anon_sym_SQUOTE] = ACTIONS(2915), + [anon_sym_L_DQUOTE] = ACTIONS(2915), + [anon_sym_u_DQUOTE] = ACTIONS(2915), + [anon_sym_U_DQUOTE] = ACTIONS(2915), + [anon_sym_u8_DQUOTE] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(2915), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [anon_sym_NULL] = ACTIONS(2913), + [anon_sym_nullptr] = ACTIONS(2913), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2913), + [anon_sym_decltype] = ACTIONS(2913), + [anon_sym_virtual] = ACTIONS(2913), + [anon_sym_alignas] = ACTIONS(2913), + [anon_sym_explicit] = ACTIONS(2913), + [anon_sym_typename] = ACTIONS(2913), + [anon_sym_template] = ACTIONS(2913), + [anon_sym_operator] = ACTIONS(2913), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_delete] = ACTIONS(2913), + [anon_sym_throw] = ACTIONS(2913), + [anon_sym_namespace] = ACTIONS(2913), + [anon_sym_using] = ACTIONS(2913), + [anon_sym_static_assert] = ACTIONS(2913), + [anon_sym_concept] = ACTIONS(2913), + [anon_sym_co_return] = ACTIONS(2913), + [anon_sym_co_yield] = ACTIONS(2913), + [anon_sym_R_DQUOTE] = ACTIONS(2915), + [anon_sym_LR_DQUOTE] = ACTIONS(2915), + [anon_sym_uR_DQUOTE] = ACTIONS(2915), + [anon_sym_UR_DQUOTE] = ACTIONS(2915), + [anon_sym_u8R_DQUOTE] = ACTIONS(2915), + [anon_sym_co_await] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_requires] = ACTIONS(2913), + [sym_this] = ACTIONS(2913), }, - [464] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [452] = { + [sym_identifier] = ACTIONS(2965), + [aux_sym_preproc_include_token1] = ACTIONS(2965), + [aux_sym_preproc_def_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token2] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), + [aux_sym_preproc_else_token1] = ACTIONS(2965), + [aux_sym_preproc_elif_token1] = ACTIONS(2965), + [sym_preproc_directive] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym___cdecl] = ACTIONS(2965), + [anon_sym___clrcall] = ACTIONS(2965), + [anon_sym___stdcall] = ACTIONS(2965), + [anon_sym___fastcall] = ACTIONS(2965), + [anon_sym___thiscall] = ACTIONS(2965), + [anon_sym___vectorcall] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_else] = ACTIONS(2965), + [anon_sym_switch] = ACTIONS(2965), + [anon_sym_case] = ACTIONS(2965), + [anon_sym_default] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2965), + [anon_sym_do] = ACTIONS(2965), + [anon_sym_for] = ACTIONS(2965), + [anon_sym_return] = ACTIONS(2965), + [anon_sym_break] = ACTIONS(2965), + [anon_sym_continue] = ACTIONS(2965), + [anon_sym_goto] = ACTIONS(2965), + [anon_sym___try] = ACTIONS(2965), + [anon_sym___leave] = ACTIONS(2965), + [anon_sym_not] = ACTIONS(2965), + [anon_sym_compl] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_sizeof] = ACTIONS(2965), + [anon_sym___alignof__] = ACTIONS(2965), + [anon_sym___alignof] = ACTIONS(2965), + [anon_sym__alignof] = ACTIONS(2965), + [anon_sym_alignof] = ACTIONS(2965), + [anon_sym__Alignof] = ACTIONS(2965), + [anon_sym_offsetof] = ACTIONS(2965), + [anon_sym__Generic] = ACTIONS(2965), + [anon_sym_asm] = ACTIONS(2965), + [anon_sym___asm__] = ACTIONS(2965), + [sym_number_literal] = ACTIONS(2967), + [anon_sym_L_SQUOTE] = ACTIONS(2967), + [anon_sym_u_SQUOTE] = ACTIONS(2967), + [anon_sym_U_SQUOTE] = ACTIONS(2967), + [anon_sym_u8_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_L_DQUOTE] = ACTIONS(2967), + [anon_sym_u_DQUOTE] = ACTIONS(2967), + [anon_sym_U_DQUOTE] = ACTIONS(2967), + [anon_sym_u8_DQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [anon_sym_NULL] = ACTIONS(2965), + [anon_sym_nullptr] = ACTIONS(2965), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [465] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [aux_sym_preproc_else_token1] = ACTIONS(2144), - [aux_sym_preproc_elif_token1] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym___cdecl] = ACTIONS(2144), - [anon_sym___clrcall] = ACTIONS(2144), - [anon_sym___stdcall] = ACTIONS(2144), - [anon_sym___fastcall] = ACTIONS(2144), - [anon_sym___thiscall] = ACTIONS(2144), - [anon_sym___vectorcall] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym___try] = ACTIONS(2144), - [anon_sym___leave] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2144), - [anon_sym_compl] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2144), - [anon_sym___alignof__] = ACTIONS(2144), - [anon_sym___alignof] = ACTIONS(2144), - [anon_sym__alignof] = ACTIONS(2144), - [anon_sym_alignof] = ACTIONS(2144), - [anon_sym__Alignof] = ACTIONS(2144), - [anon_sym_offsetof] = ACTIONS(2144), - [anon_sym__Generic] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym___asm__] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2142), - [anon_sym_L_SQUOTE] = ACTIONS(2142), - [anon_sym_u_SQUOTE] = ACTIONS(2142), - [anon_sym_U_SQUOTE] = ACTIONS(2142), - [anon_sym_u8_SQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_L_DQUOTE] = ACTIONS(2142), - [anon_sym_u_DQUOTE] = ACTIONS(2142), - [anon_sym_U_DQUOTE] = ACTIONS(2142), - [anon_sym_u8_DQUOTE] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [anon_sym_NULL] = ACTIONS(2144), - [anon_sym_nullptr] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_delete] = ACTIONS(2144), - [anon_sym_throw] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_concept] = ACTIONS(2144), - [anon_sym_co_return] = ACTIONS(2144), - [anon_sym_co_yield] = ACTIONS(2144), - [anon_sym_R_DQUOTE] = ACTIONS(2142), - [anon_sym_LR_DQUOTE] = ACTIONS(2142), - [anon_sym_uR_DQUOTE] = ACTIONS(2142), - [anon_sym_UR_DQUOTE] = ACTIONS(2142), - [anon_sym_u8R_DQUOTE] = ACTIONS(2142), - [anon_sym_co_await] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2144), - [anon_sym_requires] = ACTIONS(2144), - [sym_this] = ACTIONS(2144), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_try] = ACTIONS(2965), + [anon_sym_delete] = ACTIONS(2965), + [anon_sym_throw] = ACTIONS(2965), + [anon_sym_namespace] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), + [anon_sym_concept] = ACTIONS(2965), + [anon_sym_co_return] = ACTIONS(2965), + [anon_sym_co_yield] = ACTIONS(2965), + [anon_sym_R_DQUOTE] = ACTIONS(2967), + [anon_sym_LR_DQUOTE] = ACTIONS(2967), + [anon_sym_uR_DQUOTE] = ACTIONS(2967), + [anon_sym_UR_DQUOTE] = ACTIONS(2967), + [anon_sym_u8R_DQUOTE] = ACTIONS(2967), + [anon_sym_co_await] = ACTIONS(2965), + [anon_sym_new] = ACTIONS(2965), + [anon_sym_requires] = ACTIONS(2965), + [sym_this] = ACTIONS(2965), }, - [466] = { - [sym_identifier] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token2] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [aux_sym_preproc_else_token1] = ACTIONS(2937), - [aux_sym_preproc_elif_token1] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym___based] = ACTIONS(2937), - [anon_sym___cdecl] = ACTIONS(2937), - [anon_sym___clrcall] = ACTIONS(2937), - [anon_sym___stdcall] = ACTIONS(2937), - [anon_sym___fastcall] = ACTIONS(2937), - [anon_sym___thiscall] = ACTIONS(2937), - [anon_sym___vectorcall] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym___inline] = ACTIONS(2937), - [anon_sym___inline__] = ACTIONS(2937), - [anon_sym___forceinline] = ACTIONS(2937), - [anon_sym_thread_local] = ACTIONS(2937), - [anon_sym___thread] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_case] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [anon_sym___try] = ACTIONS(2937), - [anon_sym___leave] = ACTIONS(2937), - [anon_sym_not] = ACTIONS(2937), - [anon_sym_compl] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym___alignof__] = ACTIONS(2937), - [anon_sym___alignof] = ACTIONS(2937), - [anon_sym__alignof] = ACTIONS(2937), - [anon_sym_alignof] = ACTIONS(2937), - [anon_sym__Alignof] = ACTIONS(2937), - [anon_sym_offsetof] = ACTIONS(2937), - [anon_sym__Generic] = ACTIONS(2937), - [anon_sym_asm] = ACTIONS(2937), - [anon_sym___asm__] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_L_SQUOTE] = ACTIONS(2939), - [anon_sym_u_SQUOTE] = ACTIONS(2939), - [anon_sym_U_SQUOTE] = ACTIONS(2939), - [anon_sym_u8_SQUOTE] = ACTIONS(2939), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_L_DQUOTE] = ACTIONS(2939), - [anon_sym_u_DQUOTE] = ACTIONS(2939), - [anon_sym_U_DQUOTE] = ACTIONS(2939), - [anon_sym_u8_DQUOTE] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [anon_sym_NULL] = ACTIONS(2937), - [anon_sym_nullptr] = ACTIONS(2937), + [453] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2937), - [anon_sym_decltype] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_operator] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_throw] = ACTIONS(2937), - [anon_sym_namespace] = ACTIONS(2937), - [anon_sym_using] = ACTIONS(2937), - [anon_sym_static_assert] = ACTIONS(2937), - [anon_sym_concept] = ACTIONS(2937), - [anon_sym_co_return] = ACTIONS(2937), - [anon_sym_co_yield] = ACTIONS(2937), - [anon_sym_R_DQUOTE] = ACTIONS(2939), - [anon_sym_LR_DQUOTE] = ACTIONS(2939), - [anon_sym_uR_DQUOTE] = ACTIONS(2939), - [anon_sym_UR_DQUOTE] = ACTIONS(2939), - [anon_sym_u8R_DQUOTE] = ACTIONS(2939), - [anon_sym_co_await] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_requires] = ACTIONS(2937), - [sym_this] = ACTIONS(2937), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [467] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [454] = { + [sym_identifier] = ACTIONS(2933), + [aux_sym_preproc_include_token1] = ACTIONS(2933), + [aux_sym_preproc_def_token1] = ACTIONS(2933), + [aux_sym_preproc_if_token1] = ACTIONS(2933), + [aux_sym_preproc_if_token2] = ACTIONS(2933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), + [aux_sym_preproc_else_token1] = ACTIONS(2933), + [aux_sym_preproc_elif_token1] = ACTIONS(2933), + [sym_preproc_directive] = ACTIONS(2933), + [anon_sym_LPAREN2] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_SEMI] = ACTIONS(2935), + [anon_sym___extension__] = ACTIONS(2933), + [anon_sym_typedef] = ACTIONS(2933), + [anon_sym_extern] = ACTIONS(2933), + [anon_sym___attribute__] = ACTIONS(2933), + [anon_sym_COLON_COLON] = ACTIONS(2935), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), + [anon_sym___declspec] = ACTIONS(2933), + [anon_sym___based] = ACTIONS(2933), + [anon_sym___cdecl] = ACTIONS(2933), + [anon_sym___clrcall] = ACTIONS(2933), + [anon_sym___stdcall] = ACTIONS(2933), + [anon_sym___fastcall] = ACTIONS(2933), + [anon_sym___thiscall] = ACTIONS(2933), + [anon_sym___vectorcall] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_signed] = ACTIONS(2933), + [anon_sym_unsigned] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_static] = ACTIONS(2933), + [anon_sym_register] = ACTIONS(2933), + [anon_sym_inline] = ACTIONS(2933), + [anon_sym___inline] = ACTIONS(2933), + [anon_sym___inline__] = ACTIONS(2933), + [anon_sym___forceinline] = ACTIONS(2933), + [anon_sym_thread_local] = ACTIONS(2933), + [anon_sym___thread] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2933), + [anon_sym_constexpr] = ACTIONS(2933), + [anon_sym_volatile] = ACTIONS(2933), + [anon_sym_restrict] = ACTIONS(2933), + [anon_sym___restrict__] = ACTIONS(2933), + [anon_sym__Atomic] = ACTIONS(2933), + [anon_sym__Noreturn] = ACTIONS(2933), + [anon_sym_noreturn] = ACTIONS(2933), + [anon_sym_mutable] = ACTIONS(2933), + [anon_sym_constinit] = ACTIONS(2933), + [anon_sym_consteval] = ACTIONS(2933), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_enum] = ACTIONS(2933), + [anon_sym_class] = ACTIONS(2933), + [anon_sym_struct] = ACTIONS(2933), + [anon_sym_union] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_else] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2933), + [anon_sym_case] = ACTIONS(2933), + [anon_sym_default] = ACTIONS(2933), + [anon_sym_while] = ACTIONS(2933), + [anon_sym_do] = ACTIONS(2933), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_goto] = ACTIONS(2933), + [anon_sym___try] = ACTIONS(2933), + [anon_sym___leave] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2933), + [anon_sym_compl] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_sizeof] = ACTIONS(2933), + [anon_sym___alignof__] = ACTIONS(2933), + [anon_sym___alignof] = ACTIONS(2933), + [anon_sym__alignof] = ACTIONS(2933), + [anon_sym_alignof] = ACTIONS(2933), + [anon_sym__Alignof] = ACTIONS(2933), + [anon_sym_offsetof] = ACTIONS(2933), + [anon_sym__Generic] = ACTIONS(2933), + [anon_sym_asm] = ACTIONS(2933), + [anon_sym___asm__] = ACTIONS(2933), + [sym_number_literal] = ACTIONS(2935), + [anon_sym_L_SQUOTE] = ACTIONS(2935), + [anon_sym_u_SQUOTE] = ACTIONS(2935), + [anon_sym_U_SQUOTE] = ACTIONS(2935), + [anon_sym_u8_SQUOTE] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2935), + [anon_sym_L_DQUOTE] = ACTIONS(2935), + [anon_sym_u_DQUOTE] = ACTIONS(2935), + [anon_sym_U_DQUOTE] = ACTIONS(2935), + [anon_sym_u8_DQUOTE] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2935), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), + [anon_sym_NULL] = ACTIONS(2933), + [anon_sym_nullptr] = ACTIONS(2933), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2933), + [anon_sym_decltype] = ACTIONS(2933), + [anon_sym_virtual] = ACTIONS(2933), + [anon_sym_alignas] = ACTIONS(2933), + [anon_sym_explicit] = ACTIONS(2933), + [anon_sym_typename] = ACTIONS(2933), + [anon_sym_template] = ACTIONS(2933), + [anon_sym_operator] = ACTIONS(2933), + [anon_sym_try] = ACTIONS(2933), + [anon_sym_delete] = ACTIONS(2933), + [anon_sym_throw] = ACTIONS(2933), + [anon_sym_namespace] = ACTIONS(2933), + [anon_sym_using] = ACTIONS(2933), + [anon_sym_static_assert] = ACTIONS(2933), + [anon_sym_concept] = ACTIONS(2933), + [anon_sym_co_return] = ACTIONS(2933), + [anon_sym_co_yield] = ACTIONS(2933), + [anon_sym_R_DQUOTE] = ACTIONS(2935), + [anon_sym_LR_DQUOTE] = ACTIONS(2935), + [anon_sym_uR_DQUOTE] = ACTIONS(2935), + [anon_sym_UR_DQUOTE] = ACTIONS(2935), + [anon_sym_u8R_DQUOTE] = ACTIONS(2935), + [anon_sym_co_await] = ACTIONS(2933), + [anon_sym_new] = ACTIONS(2933), + [anon_sym_requires] = ACTIONS(2933), + [sym_this] = ACTIONS(2933), }, - [468] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [455] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [469] = { - [sym_catch_clause] = STATE(414), - [aux_sym_constructor_try_statement_repeat1] = STATE(414), - [sym_identifier] = ACTIONS(2836), - [aux_sym_preproc_include_token1] = ACTIONS(2836), - [aux_sym_preproc_def_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token2] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), - [sym_preproc_directive] = ACTIONS(2836), - [anon_sym_LPAREN2] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_SEMI] = ACTIONS(2838), - [anon_sym___extension__] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym___attribute__] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2838), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), - [anon_sym___declspec] = ACTIONS(2836), - [anon_sym___based] = ACTIONS(2836), - [anon_sym___cdecl] = ACTIONS(2836), - [anon_sym___clrcall] = ACTIONS(2836), - [anon_sym___stdcall] = ACTIONS(2836), - [anon_sym___fastcall] = ACTIONS(2836), - [anon_sym___thiscall] = ACTIONS(2836), - [anon_sym___vectorcall] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_signed] = ACTIONS(2836), - [anon_sym_unsigned] = ACTIONS(2836), - [anon_sym_long] = ACTIONS(2836), - [anon_sym_short] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_register] = ACTIONS(2836), - [anon_sym_inline] = ACTIONS(2836), - [anon_sym___inline] = ACTIONS(2836), - [anon_sym___inline__] = ACTIONS(2836), - [anon_sym___forceinline] = ACTIONS(2836), - [anon_sym_thread_local] = ACTIONS(2836), - [anon_sym___thread] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_constexpr] = ACTIONS(2836), - [anon_sym_volatile] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(2836), - [anon_sym___restrict__] = ACTIONS(2836), - [anon_sym__Atomic] = ACTIONS(2836), - [anon_sym__Noreturn] = ACTIONS(2836), - [anon_sym_noreturn] = ACTIONS(2836), - [anon_sym_mutable] = ACTIONS(2836), - [anon_sym_constinit] = ACTIONS(2836), - [anon_sym_consteval] = ACTIONS(2836), - [sym_primitive_type] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_switch] = ACTIONS(2836), - [anon_sym_case] = ACTIONS(2836), - [anon_sym_default] = ACTIONS(2836), - [anon_sym_while] = ACTIONS(2836), - [anon_sym_do] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_goto] = ACTIONS(2836), - [anon_sym___try] = ACTIONS(2836), - [anon_sym___leave] = ACTIONS(2836), - [anon_sym_not] = ACTIONS(2836), - [anon_sym_compl] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_sizeof] = ACTIONS(2836), - [anon_sym___alignof__] = ACTIONS(2836), - [anon_sym___alignof] = ACTIONS(2836), - [anon_sym__alignof] = ACTIONS(2836), - [anon_sym_alignof] = ACTIONS(2836), - [anon_sym__Alignof] = ACTIONS(2836), - [anon_sym_offsetof] = ACTIONS(2836), - [anon_sym__Generic] = ACTIONS(2836), - [anon_sym_asm] = ACTIONS(2836), - [anon_sym___asm__] = ACTIONS(2836), - [sym_number_literal] = ACTIONS(2838), - [anon_sym_L_SQUOTE] = ACTIONS(2838), - [anon_sym_u_SQUOTE] = ACTIONS(2838), - [anon_sym_U_SQUOTE] = ACTIONS(2838), - [anon_sym_u8_SQUOTE] = ACTIONS(2838), - [anon_sym_SQUOTE] = ACTIONS(2838), - [anon_sym_L_DQUOTE] = ACTIONS(2838), - [anon_sym_u_DQUOTE] = ACTIONS(2838), - [anon_sym_U_DQUOTE] = ACTIONS(2838), - [anon_sym_u8_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [anon_sym_NULL] = ACTIONS(2836), - [anon_sym_nullptr] = ACTIONS(2836), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2836), - [anon_sym_decltype] = ACTIONS(2836), - [anon_sym_virtual] = ACTIONS(2836), - [anon_sym_alignas] = ACTIONS(2836), - [anon_sym_explicit] = ACTIONS(2836), - [anon_sym_typename] = ACTIONS(2836), - [anon_sym_template] = ACTIONS(2836), - [anon_sym_operator] = ACTIONS(2836), - [anon_sym_try] = ACTIONS(2836), - [anon_sym_delete] = ACTIONS(2836), - [anon_sym_throw] = ACTIONS(2836), - [anon_sym_namespace] = ACTIONS(2836), - [anon_sym_using] = ACTIONS(2836), - [anon_sym_static_assert] = ACTIONS(2836), - [anon_sym_concept] = ACTIONS(2836), - [anon_sym_co_return] = ACTIONS(2836), - [anon_sym_co_yield] = ACTIONS(2836), - [anon_sym_catch] = ACTIONS(3070), - [anon_sym_R_DQUOTE] = ACTIONS(2838), - [anon_sym_LR_DQUOTE] = ACTIONS(2838), - [anon_sym_uR_DQUOTE] = ACTIONS(2838), - [anon_sym_UR_DQUOTE] = ACTIONS(2838), - [anon_sym_u8R_DQUOTE] = ACTIONS(2838), - [anon_sym_co_await] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2836), - [anon_sym_requires] = ACTIONS(2836), - [sym_this] = ACTIONS(2836), - }, - [470] = { - [sym_catch_clause] = STATE(414), - [aux_sym_constructor_try_statement_repeat1] = STATE(414), - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_include_token1] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token2] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym___extension__] = ACTIONS(2826), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym___cdecl] = ACTIONS(2826), - [anon_sym___clrcall] = ACTIONS(2826), - [anon_sym___stdcall] = ACTIONS(2826), - [anon_sym___fastcall] = ACTIONS(2826), - [anon_sym___thiscall] = ACTIONS(2826), - [anon_sym___vectorcall] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym___inline] = ACTIONS(2826), - [anon_sym___inline__] = ACTIONS(2826), - [anon_sym___forceinline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym___thread] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym___restrict__] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym__Noreturn] = ACTIONS(2826), - [anon_sym_noreturn] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_goto] = ACTIONS(2826), - [anon_sym___try] = ACTIONS(2826), - [anon_sym___leave] = ACTIONS(2826), - [anon_sym_not] = ACTIONS(2826), - [anon_sym_compl] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_sizeof] = ACTIONS(2826), - [anon_sym___alignof__] = ACTIONS(2826), - [anon_sym___alignof] = ACTIONS(2826), - [anon_sym__alignof] = ACTIONS(2826), - [anon_sym_alignof] = ACTIONS(2826), - [anon_sym__Alignof] = ACTIONS(2826), - [anon_sym_offsetof] = ACTIONS(2826), - [anon_sym__Generic] = ACTIONS(2826), - [anon_sym_asm] = ACTIONS(2826), - [anon_sym___asm__] = ACTIONS(2826), - [sym_number_literal] = ACTIONS(2828), - [anon_sym_L_SQUOTE] = ACTIONS(2828), - [anon_sym_u_SQUOTE] = ACTIONS(2828), - [anon_sym_U_SQUOTE] = ACTIONS(2828), - [anon_sym_u8_SQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_L_DQUOTE] = ACTIONS(2828), - [anon_sym_u_DQUOTE] = ACTIONS(2828), - [anon_sym_U_DQUOTE] = ACTIONS(2828), - [anon_sym_u8_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [anon_sym_NULL] = ACTIONS(2826), - [anon_sym_nullptr] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_alignas] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_concept] = ACTIONS(2826), - [anon_sym_co_return] = ACTIONS(2826), - [anon_sym_co_yield] = ACTIONS(2826), - [anon_sym_catch] = ACTIONS(3070), - [anon_sym_R_DQUOTE] = ACTIONS(2828), - [anon_sym_LR_DQUOTE] = ACTIONS(2828), - [anon_sym_uR_DQUOTE] = ACTIONS(2828), - [anon_sym_UR_DQUOTE] = ACTIONS(2828), - [anon_sym_u8R_DQUOTE] = ACTIONS(2828), - [anon_sym_co_await] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_requires] = ACTIONS(2826), - [sym_this] = ACTIONS(2826), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [471] = { - [sym_identifier] = ACTIONS(2973), - [aux_sym_preproc_include_token1] = ACTIONS(2973), - [aux_sym_preproc_def_token1] = ACTIONS(2973), - [aux_sym_preproc_if_token1] = ACTIONS(2973), - [aux_sym_preproc_if_token2] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), - [aux_sym_preproc_else_token1] = ACTIONS(2973), - [aux_sym_preproc_elif_token1] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2975), - [anon_sym_BANG] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym___extension__] = ACTIONS(2973), - [anon_sym_typedef] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), - [anon_sym___declspec] = ACTIONS(2973), - [anon_sym___based] = ACTIONS(2973), - [anon_sym___cdecl] = ACTIONS(2973), - [anon_sym___clrcall] = ACTIONS(2973), - [anon_sym___stdcall] = ACTIONS(2973), - [anon_sym___fastcall] = ACTIONS(2973), - [anon_sym___thiscall] = ACTIONS(2973), - [anon_sym___vectorcall] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_signed] = ACTIONS(2973), - [anon_sym_unsigned] = ACTIONS(2973), - [anon_sym_long] = ACTIONS(2973), - [anon_sym_short] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_register] = ACTIONS(2973), - [anon_sym_inline] = ACTIONS(2973), - [anon_sym___inline] = ACTIONS(2973), - [anon_sym___inline__] = ACTIONS(2973), - [anon_sym___forceinline] = ACTIONS(2973), - [anon_sym_thread_local] = ACTIONS(2973), - [anon_sym___thread] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_constexpr] = ACTIONS(2973), - [anon_sym_volatile] = ACTIONS(2973), - [anon_sym_restrict] = ACTIONS(2973), - [anon_sym___restrict__] = ACTIONS(2973), - [anon_sym__Atomic] = ACTIONS(2973), - [anon_sym__Noreturn] = ACTIONS(2973), - [anon_sym_noreturn] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [sym_primitive_type] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2973), - [anon_sym_switch] = ACTIONS(2973), - [anon_sym_case] = ACTIONS(2973), - [anon_sym_default] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym___try] = ACTIONS(2973), - [anon_sym___leave] = ACTIONS(2973), - [anon_sym_not] = ACTIONS(2973), - [anon_sym_compl] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_sizeof] = ACTIONS(2973), - [anon_sym___alignof__] = ACTIONS(2973), - [anon_sym___alignof] = ACTIONS(2973), - [anon_sym__alignof] = ACTIONS(2973), - [anon_sym_alignof] = ACTIONS(2973), - [anon_sym__Alignof] = ACTIONS(2973), - [anon_sym_offsetof] = ACTIONS(2973), - [anon_sym__Generic] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym___asm__] = ACTIONS(2973), - [sym_number_literal] = ACTIONS(2975), - [anon_sym_L_SQUOTE] = ACTIONS(2975), - [anon_sym_u_SQUOTE] = ACTIONS(2975), - [anon_sym_U_SQUOTE] = ACTIONS(2975), - [anon_sym_u8_SQUOTE] = ACTIONS(2975), - [anon_sym_SQUOTE] = ACTIONS(2975), - [anon_sym_L_DQUOTE] = ACTIONS(2975), - [anon_sym_u_DQUOTE] = ACTIONS(2975), - [anon_sym_U_DQUOTE] = ACTIONS(2975), - [anon_sym_u8_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2975), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [anon_sym_NULL] = ACTIONS(2973), - [anon_sym_nullptr] = ACTIONS(2973), + [456] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_virtual] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym_explicit] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_operator] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_throw] = ACTIONS(2973), - [anon_sym_namespace] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2973), - [anon_sym_static_assert] = ACTIONS(2973), - [anon_sym_concept] = ACTIONS(2973), - [anon_sym_co_return] = ACTIONS(2973), - [anon_sym_co_yield] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_requires] = ACTIONS(2973), - [sym_this] = ACTIONS(2973), - }, - [472] = { - [sym_identifier] = ACTIONS(2889), - [aux_sym_preproc_include_token1] = ACTIONS(2889), - [aux_sym_preproc_def_token1] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2889), - [aux_sym_preproc_if_token2] = ACTIONS(2889), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2889), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2889), - [aux_sym_preproc_else_token1] = ACTIONS(2889), - [aux_sym_preproc_elif_token1] = ACTIONS(2889), - [sym_preproc_directive] = ACTIONS(2889), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym___extension__] = ACTIONS(2889), - [anon_sym_typedef] = ACTIONS(2889), - [anon_sym_extern] = ACTIONS(2889), - [anon_sym___attribute__] = ACTIONS(2889), - [anon_sym_COLON_COLON] = ACTIONS(2891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2891), - [anon_sym___declspec] = ACTIONS(2889), - [anon_sym___based] = ACTIONS(2889), - [anon_sym___cdecl] = ACTIONS(2889), - [anon_sym___clrcall] = ACTIONS(2889), - [anon_sym___stdcall] = ACTIONS(2889), - [anon_sym___fastcall] = ACTIONS(2889), - [anon_sym___thiscall] = ACTIONS(2889), - [anon_sym___vectorcall] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_signed] = ACTIONS(2889), - [anon_sym_unsigned] = ACTIONS(2889), - [anon_sym_long] = ACTIONS(2889), - [anon_sym_short] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_register] = ACTIONS(2889), - [anon_sym_inline] = ACTIONS(2889), - [anon_sym___inline] = ACTIONS(2889), - [anon_sym___inline__] = ACTIONS(2889), - [anon_sym___forceinline] = ACTIONS(2889), - [anon_sym_thread_local] = ACTIONS(2889), - [anon_sym___thread] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_constexpr] = ACTIONS(2889), - [anon_sym_volatile] = ACTIONS(2889), - [anon_sym_restrict] = ACTIONS(2889), - [anon_sym___restrict__] = ACTIONS(2889), - [anon_sym__Atomic] = ACTIONS(2889), - [anon_sym__Noreturn] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_mutable] = ACTIONS(2889), - [anon_sym_constinit] = ACTIONS(2889), - [anon_sym_consteval] = ACTIONS(2889), - [sym_primitive_type] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_union] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_do] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_goto] = ACTIONS(2889), - [anon_sym___try] = ACTIONS(2889), - [anon_sym___leave] = ACTIONS(2889), - [anon_sym_not] = ACTIONS(2889), - [anon_sym_compl] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_sizeof] = ACTIONS(2889), - [anon_sym___alignof__] = ACTIONS(2889), - [anon_sym___alignof] = ACTIONS(2889), - [anon_sym__alignof] = ACTIONS(2889), - [anon_sym_alignof] = ACTIONS(2889), - [anon_sym__Alignof] = ACTIONS(2889), - [anon_sym_offsetof] = ACTIONS(2889), - [anon_sym__Generic] = ACTIONS(2889), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [anon_sym_L_SQUOTE] = ACTIONS(2891), - [anon_sym_u_SQUOTE] = ACTIONS(2891), - [anon_sym_U_SQUOTE] = ACTIONS(2891), - [anon_sym_u8_SQUOTE] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2891), - [anon_sym_L_DQUOTE] = ACTIONS(2891), - [anon_sym_u_DQUOTE] = ACTIONS(2891), - [anon_sym_U_DQUOTE] = ACTIONS(2891), - [anon_sym_u8_DQUOTE] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2891), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [anon_sym_NULL] = ACTIONS(2889), - [anon_sym_nullptr] = ACTIONS(2889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2889), - [anon_sym_decltype] = ACTIONS(2889), - [anon_sym_virtual] = ACTIONS(2889), - [anon_sym_alignas] = ACTIONS(2889), - [anon_sym_explicit] = ACTIONS(2889), - [anon_sym_typename] = ACTIONS(2889), - [anon_sym_template] = ACTIONS(2889), - [anon_sym_operator] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_namespace] = ACTIONS(2889), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_static_assert] = ACTIONS(2889), - [anon_sym_concept] = ACTIONS(2889), - [anon_sym_co_return] = ACTIONS(2889), - [anon_sym_co_yield] = ACTIONS(2889), - [anon_sym_R_DQUOTE] = ACTIONS(2891), - [anon_sym_LR_DQUOTE] = ACTIONS(2891), - [anon_sym_uR_DQUOTE] = ACTIONS(2891), - [anon_sym_UR_DQUOTE] = ACTIONS(2891), - [anon_sym_u8R_DQUOTE] = ACTIONS(2891), - [anon_sym_co_await] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_requires] = ACTIONS(2889), - [sym_this] = ACTIONS(2889), - }, - [473] = { - [sym_identifier] = ACTIONS(2893), - [aux_sym_preproc_include_token1] = ACTIONS(2893), - [aux_sym_preproc_def_token1] = ACTIONS(2893), - [aux_sym_preproc_if_token1] = ACTIONS(2893), - [aux_sym_preproc_if_token2] = ACTIONS(2893), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2893), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2893), - [aux_sym_preproc_else_token1] = ACTIONS(2893), - [aux_sym_preproc_elif_token1] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2893), - [anon_sym_LPAREN2] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2893), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym___extension__] = ACTIONS(2893), - [anon_sym_typedef] = ACTIONS(2893), - [anon_sym_extern] = ACTIONS(2893), - [anon_sym___attribute__] = ACTIONS(2893), - [anon_sym_COLON_COLON] = ACTIONS(2895), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2895), - [anon_sym___declspec] = ACTIONS(2893), - [anon_sym___based] = ACTIONS(2893), - [anon_sym___cdecl] = ACTIONS(2893), - [anon_sym___clrcall] = ACTIONS(2893), - [anon_sym___stdcall] = ACTIONS(2893), - [anon_sym___fastcall] = ACTIONS(2893), - [anon_sym___thiscall] = ACTIONS(2893), - [anon_sym___vectorcall] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_signed] = ACTIONS(2893), - [anon_sym_unsigned] = ACTIONS(2893), - [anon_sym_long] = ACTIONS(2893), - [anon_sym_short] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_register] = ACTIONS(2893), - [anon_sym_inline] = ACTIONS(2893), - [anon_sym___inline] = ACTIONS(2893), - [anon_sym___inline__] = ACTIONS(2893), - [anon_sym___forceinline] = ACTIONS(2893), - [anon_sym_thread_local] = ACTIONS(2893), - [anon_sym___thread] = ACTIONS(2893), - [anon_sym_const] = ACTIONS(2893), - [anon_sym_constexpr] = ACTIONS(2893), - [anon_sym_volatile] = ACTIONS(2893), - [anon_sym_restrict] = ACTIONS(2893), - [anon_sym___restrict__] = ACTIONS(2893), - [anon_sym__Atomic] = ACTIONS(2893), - [anon_sym__Noreturn] = ACTIONS(2893), - [anon_sym_noreturn] = ACTIONS(2893), - [anon_sym_mutable] = ACTIONS(2893), - [anon_sym_constinit] = ACTIONS(2893), - [anon_sym_consteval] = ACTIONS(2893), - [sym_primitive_type] = ACTIONS(2893), - [anon_sym_enum] = ACTIONS(2893), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2893), - [anon_sym_union] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_else] = ACTIONS(2893), - [anon_sym_switch] = ACTIONS(2893), - [anon_sym_case] = ACTIONS(2893), - [anon_sym_default] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_do] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2893), - [anon_sym_continue] = ACTIONS(2893), - [anon_sym_goto] = ACTIONS(2893), - [anon_sym___try] = ACTIONS(2893), - [anon_sym___leave] = ACTIONS(2893), - [anon_sym_not] = ACTIONS(2893), - [anon_sym_compl] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_sizeof] = ACTIONS(2893), - [anon_sym___alignof__] = ACTIONS(2893), - [anon_sym___alignof] = ACTIONS(2893), - [anon_sym__alignof] = ACTIONS(2893), - [anon_sym_alignof] = ACTIONS(2893), - [anon_sym__Alignof] = ACTIONS(2893), - [anon_sym_offsetof] = ACTIONS(2893), - [anon_sym__Generic] = ACTIONS(2893), - [anon_sym_asm] = ACTIONS(2893), - [anon_sym___asm__] = ACTIONS(2893), - [sym_number_literal] = ACTIONS(2895), - [anon_sym_L_SQUOTE] = ACTIONS(2895), - [anon_sym_u_SQUOTE] = ACTIONS(2895), - [anon_sym_U_SQUOTE] = ACTIONS(2895), - [anon_sym_u8_SQUOTE] = ACTIONS(2895), - [anon_sym_SQUOTE] = ACTIONS(2895), - [anon_sym_L_DQUOTE] = ACTIONS(2895), - [anon_sym_u_DQUOTE] = ACTIONS(2895), - [anon_sym_U_DQUOTE] = ACTIONS(2895), - [anon_sym_u8_DQUOTE] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [sym_true] = ACTIONS(2893), - [sym_false] = ACTIONS(2893), - [anon_sym_NULL] = ACTIONS(2893), - [anon_sym_nullptr] = ACTIONS(2893), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2893), - [anon_sym_decltype] = ACTIONS(2893), - [anon_sym_virtual] = ACTIONS(2893), - [anon_sym_alignas] = ACTIONS(2893), - [anon_sym_explicit] = ACTIONS(2893), - [anon_sym_typename] = ACTIONS(2893), - [anon_sym_template] = ACTIONS(2893), - [anon_sym_operator] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [anon_sym_delete] = ACTIONS(2893), - [anon_sym_throw] = ACTIONS(2893), - [anon_sym_namespace] = ACTIONS(2893), - [anon_sym_using] = ACTIONS(2893), - [anon_sym_static_assert] = ACTIONS(2893), - [anon_sym_concept] = ACTIONS(2893), - [anon_sym_co_return] = ACTIONS(2893), - [anon_sym_co_yield] = ACTIONS(2893), - [anon_sym_R_DQUOTE] = ACTIONS(2895), - [anon_sym_LR_DQUOTE] = ACTIONS(2895), - [anon_sym_uR_DQUOTE] = ACTIONS(2895), - [anon_sym_UR_DQUOTE] = ACTIONS(2895), - [anon_sym_u8R_DQUOTE] = ACTIONS(2895), - [anon_sym_co_await] = ACTIONS(2893), - [anon_sym_new] = ACTIONS(2893), - [anon_sym_requires] = ACTIONS(2893), - [sym_this] = ACTIONS(2893), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [474] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [457] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [475] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [458] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [476] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [477] = { - [sym_catch_clause] = STATE(394), - [aux_sym_constructor_try_statement_repeat1] = STATE(394), - [sym_identifier] = ACTIONS(2836), - [aux_sym_preproc_include_token1] = ACTIONS(2836), - [aux_sym_preproc_def_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token1] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), - [sym_preproc_directive] = ACTIONS(2836), - [anon_sym_LPAREN2] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_SEMI] = ACTIONS(2838), - [anon_sym___extension__] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym___attribute__] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2838), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), - [anon_sym___declspec] = ACTIONS(2836), - [anon_sym___based] = ACTIONS(2836), - [anon_sym___cdecl] = ACTIONS(2836), - [anon_sym___clrcall] = ACTIONS(2836), - [anon_sym___stdcall] = ACTIONS(2836), - [anon_sym___fastcall] = ACTIONS(2836), - [anon_sym___thiscall] = ACTIONS(2836), - [anon_sym___vectorcall] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_signed] = ACTIONS(2836), - [anon_sym_unsigned] = ACTIONS(2836), - [anon_sym_long] = ACTIONS(2836), - [anon_sym_short] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_register] = ACTIONS(2836), - [anon_sym_inline] = ACTIONS(2836), - [anon_sym___inline] = ACTIONS(2836), - [anon_sym___inline__] = ACTIONS(2836), - [anon_sym___forceinline] = ACTIONS(2836), - [anon_sym_thread_local] = ACTIONS(2836), - [anon_sym___thread] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_constexpr] = ACTIONS(2836), - [anon_sym_volatile] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(2836), - [anon_sym___restrict__] = ACTIONS(2836), - [anon_sym__Atomic] = ACTIONS(2836), - [anon_sym__Noreturn] = ACTIONS(2836), - [anon_sym_noreturn] = ACTIONS(2836), - [anon_sym_mutable] = ACTIONS(2836), - [anon_sym_constinit] = ACTIONS(2836), - [anon_sym_consteval] = ACTIONS(2836), - [sym_primitive_type] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_switch] = ACTIONS(2836), - [anon_sym_case] = ACTIONS(2836), - [anon_sym_default] = ACTIONS(2836), - [anon_sym_while] = ACTIONS(2836), - [anon_sym_do] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_goto] = ACTIONS(2836), - [anon_sym___try] = ACTIONS(2836), - [anon_sym___leave] = ACTIONS(2836), - [anon_sym_not] = ACTIONS(2836), - [anon_sym_compl] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_sizeof] = ACTIONS(2836), - [anon_sym___alignof__] = ACTIONS(2836), - [anon_sym___alignof] = ACTIONS(2836), - [anon_sym__alignof] = ACTIONS(2836), - [anon_sym_alignof] = ACTIONS(2836), - [anon_sym__Alignof] = ACTIONS(2836), - [anon_sym_offsetof] = ACTIONS(2836), - [anon_sym__Generic] = ACTIONS(2836), - [anon_sym_asm] = ACTIONS(2836), - [anon_sym___asm__] = ACTIONS(2836), - [sym_number_literal] = ACTIONS(2838), - [anon_sym_L_SQUOTE] = ACTIONS(2838), - [anon_sym_u_SQUOTE] = ACTIONS(2838), - [anon_sym_U_SQUOTE] = ACTIONS(2838), - [anon_sym_u8_SQUOTE] = ACTIONS(2838), - [anon_sym_SQUOTE] = ACTIONS(2838), - [anon_sym_L_DQUOTE] = ACTIONS(2838), - [anon_sym_u_DQUOTE] = ACTIONS(2838), - [anon_sym_U_DQUOTE] = ACTIONS(2838), - [anon_sym_u8_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [anon_sym_NULL] = ACTIONS(2836), - [anon_sym_nullptr] = ACTIONS(2836), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2836), - [anon_sym_decltype] = ACTIONS(2836), - [anon_sym_virtual] = ACTIONS(2836), - [anon_sym_alignas] = ACTIONS(2836), - [anon_sym_explicit] = ACTIONS(2836), - [anon_sym_typename] = ACTIONS(2836), - [anon_sym_template] = ACTIONS(2836), - [anon_sym_operator] = ACTIONS(2836), - [anon_sym_try] = ACTIONS(2836), - [anon_sym_delete] = ACTIONS(2836), - [anon_sym_throw] = ACTIONS(2836), - [anon_sym_namespace] = ACTIONS(2836), - [anon_sym_using] = ACTIONS(2836), - [anon_sym_static_assert] = ACTIONS(2836), - [anon_sym_concept] = ACTIONS(2836), - [anon_sym_co_return] = ACTIONS(2836), - [anon_sym_co_yield] = ACTIONS(2836), - [anon_sym_catch] = ACTIONS(3278), - [anon_sym_R_DQUOTE] = ACTIONS(2838), - [anon_sym_LR_DQUOTE] = ACTIONS(2838), - [anon_sym_uR_DQUOTE] = ACTIONS(2838), - [anon_sym_UR_DQUOTE] = ACTIONS(2838), - [anon_sym_u8R_DQUOTE] = ACTIONS(2838), - [anon_sym_co_await] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2836), - [anon_sym_requires] = ACTIONS(2836), - [sym_this] = ACTIONS(2836), - }, - [478] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [479] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [459] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [480] = { - [sym_identifier] = ACTIONS(2881), - [aux_sym_preproc_include_token1] = ACTIONS(2881), - [aux_sym_preproc_def_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token2] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2881), - [aux_sym_preproc_else_token1] = ACTIONS(2881), - [aux_sym_preproc_elif_token1] = ACTIONS(2881), - [sym_preproc_directive] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym___based] = ACTIONS(2881), - [anon_sym___cdecl] = ACTIONS(2881), - [anon_sym___clrcall] = ACTIONS(2881), - [anon_sym___stdcall] = ACTIONS(2881), - [anon_sym___fastcall] = ACTIONS(2881), - [anon_sym___thiscall] = ACTIONS(2881), - [anon_sym___vectorcall] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym___try] = ACTIONS(2881), - [anon_sym___leave] = ACTIONS(2881), - [anon_sym_not] = ACTIONS(2881), - [anon_sym_compl] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_sizeof] = ACTIONS(2881), - [anon_sym___alignof__] = ACTIONS(2881), - [anon_sym___alignof] = ACTIONS(2881), - [anon_sym__alignof] = ACTIONS(2881), - [anon_sym_alignof] = ACTIONS(2881), - [anon_sym__Alignof] = ACTIONS(2881), - [anon_sym_offsetof] = ACTIONS(2881), - [anon_sym__Generic] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - [anon_sym___asm__] = ACTIONS(2881), - [sym_number_literal] = ACTIONS(2883), - [anon_sym_L_SQUOTE] = ACTIONS(2883), - [anon_sym_u_SQUOTE] = ACTIONS(2883), - [anon_sym_U_SQUOTE] = ACTIONS(2883), - [anon_sym_u8_SQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_L_DQUOTE] = ACTIONS(2883), - [anon_sym_u_DQUOTE] = ACTIONS(2883), - [anon_sym_U_DQUOTE] = ACTIONS(2883), - [anon_sym_u8_DQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [anon_sym_NULL] = ACTIONS(2881), - [anon_sym_nullptr] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_explicit] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_operator] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_static_assert] = ACTIONS(2881), - [anon_sym_concept] = ACTIONS(2881), - [anon_sym_co_return] = ACTIONS(2881), - [anon_sym_co_yield] = ACTIONS(2881), - [anon_sym_R_DQUOTE] = ACTIONS(2883), - [anon_sym_LR_DQUOTE] = ACTIONS(2883), - [anon_sym_uR_DQUOTE] = ACTIONS(2883), - [anon_sym_UR_DQUOTE] = ACTIONS(2883), - [anon_sym_u8R_DQUOTE] = ACTIONS(2883), - [anon_sym_co_await] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_requires] = ACTIONS(2881), - [sym_this] = ACTIONS(2881), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [481] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [460] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [482] = { + [461] = { [sym_identifier] = ACTIONS(2867), [aux_sym_preproc_include_token1] = ACTIONS(2867), [aux_sym_preproc_def_token1] = ACTIONS(2867), @@ -157711,7 +155208,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2867), [sym_this] = ACTIONS(2867), }, - [483] = { + [462] = { + [sym_identifier] = ACTIONS(2949), + [aux_sym_preproc_include_token1] = ACTIONS(2949), + [aux_sym_preproc_def_token1] = ACTIONS(2949), + [aux_sym_preproc_if_token1] = ACTIONS(2949), + [aux_sym_preproc_if_token2] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), + [aux_sym_preproc_else_token1] = ACTIONS(2949), + [aux_sym_preproc_elif_token1] = ACTIONS(2949), + [sym_preproc_directive] = ACTIONS(2949), + [anon_sym_LPAREN2] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym___extension__] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym___attribute__] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), + [anon_sym___declspec] = ACTIONS(2949), + [anon_sym___based] = ACTIONS(2949), + [anon_sym___cdecl] = ACTIONS(2949), + [anon_sym___clrcall] = ACTIONS(2949), + [anon_sym___stdcall] = ACTIONS(2949), + [anon_sym___fastcall] = ACTIONS(2949), + [anon_sym___thiscall] = ACTIONS(2949), + [anon_sym___vectorcall] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_signed] = ACTIONS(2949), + [anon_sym_unsigned] = ACTIONS(2949), + [anon_sym_long] = ACTIONS(2949), + [anon_sym_short] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_register] = ACTIONS(2949), + [anon_sym_inline] = ACTIONS(2949), + [anon_sym___inline] = ACTIONS(2949), + [anon_sym___inline__] = ACTIONS(2949), + [anon_sym___forceinline] = ACTIONS(2949), + [anon_sym_thread_local] = ACTIONS(2949), + [anon_sym___thread] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_constexpr] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_restrict] = ACTIONS(2949), + [anon_sym___restrict__] = ACTIONS(2949), + [anon_sym__Atomic] = ACTIONS(2949), + [anon_sym__Noreturn] = ACTIONS(2949), + [anon_sym_noreturn] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [anon_sym_constinit] = ACTIONS(2949), + [anon_sym_consteval] = ACTIONS(2949), + [sym_primitive_type] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_union] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_case] = ACTIONS(2949), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym___try] = ACTIONS(2949), + [anon_sym___leave] = ACTIONS(2949), + [anon_sym_not] = ACTIONS(2949), + [anon_sym_compl] = ACTIONS(2949), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym___alignof__] = ACTIONS(2949), + [anon_sym___alignof] = ACTIONS(2949), + [anon_sym__alignof] = ACTIONS(2949), + [anon_sym_alignof] = ACTIONS(2949), + [anon_sym__Alignof] = ACTIONS(2949), + [anon_sym_offsetof] = ACTIONS(2949), + [anon_sym__Generic] = ACTIONS(2949), + [anon_sym_asm] = ACTIONS(2949), + [anon_sym___asm__] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2951), + [anon_sym_L_SQUOTE] = ACTIONS(2951), + [anon_sym_u_SQUOTE] = ACTIONS(2951), + [anon_sym_U_SQUOTE] = ACTIONS(2951), + [anon_sym_u8_SQUOTE] = ACTIONS(2951), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_L_DQUOTE] = ACTIONS(2951), + [anon_sym_u_DQUOTE] = ACTIONS(2951), + [anon_sym_U_DQUOTE] = ACTIONS(2951), + [anon_sym_u8_DQUOTE] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [sym_true] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [anon_sym_NULL] = ACTIONS(2949), + [anon_sym_nullptr] = ACTIONS(2949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2949), + [anon_sym_decltype] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_alignas] = ACTIONS(2949), + [anon_sym_explicit] = ACTIONS(2949), + [anon_sym_typename] = ACTIONS(2949), + [anon_sym_template] = ACTIONS(2949), + [anon_sym_operator] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_delete] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_namespace] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_static_assert] = ACTIONS(2949), + [anon_sym_concept] = ACTIONS(2949), + [anon_sym_co_return] = ACTIONS(2949), + [anon_sym_co_yield] = ACTIONS(2949), + [anon_sym_R_DQUOTE] = ACTIONS(2951), + [anon_sym_LR_DQUOTE] = ACTIONS(2951), + [anon_sym_uR_DQUOTE] = ACTIONS(2951), + [anon_sym_UR_DQUOTE] = ACTIONS(2951), + [anon_sym_u8R_DQUOTE] = ACTIONS(2951), + [anon_sym_co_await] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_requires] = ACTIONS(2949), + [sym_this] = ACTIONS(2949), + }, + [463] = { [sym_identifier] = ACTIONS(2969), [aux_sym_preproc_include_token1] = ACTIONS(2969), [aux_sym_preproc_def_token1] = ACTIONS(2969), @@ -157846,2109 +155478,2514 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2969), [sym_this] = ACTIONS(2969), }, - [484] = { - [sym_identifier] = ACTIONS(2901), - [aux_sym_preproc_include_token1] = ACTIONS(2901), - [aux_sym_preproc_def_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token2] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), - [aux_sym_preproc_else_token1] = ACTIONS(2901), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), - [sym_preproc_directive] = ACTIONS(2901), - [anon_sym_LPAREN2] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym___extension__] = ACTIONS(2901), - [anon_sym_typedef] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym___attribute__] = ACTIONS(2901), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), - [anon_sym___declspec] = ACTIONS(2901), - [anon_sym___based] = ACTIONS(2901), - [anon_sym___cdecl] = ACTIONS(2901), - [anon_sym___clrcall] = ACTIONS(2901), - [anon_sym___stdcall] = ACTIONS(2901), - [anon_sym___fastcall] = ACTIONS(2901), - [anon_sym___thiscall] = ACTIONS(2901), - [anon_sym___vectorcall] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2901), - [anon_sym_unsigned] = ACTIONS(2901), - [anon_sym_long] = ACTIONS(2901), - [anon_sym_short] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_register] = ACTIONS(2901), - [anon_sym_inline] = ACTIONS(2901), - [anon_sym___inline] = ACTIONS(2901), - [anon_sym___inline__] = ACTIONS(2901), - [anon_sym___forceinline] = ACTIONS(2901), - [anon_sym_thread_local] = ACTIONS(2901), - [anon_sym___thread] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_constexpr] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_restrict] = ACTIONS(2901), - [anon_sym___restrict__] = ACTIONS(2901), - [anon_sym__Atomic] = ACTIONS(2901), - [anon_sym__Noreturn] = ACTIONS(2901), - [anon_sym_noreturn] = ACTIONS(2901), - [anon_sym_mutable] = ACTIONS(2901), - [anon_sym_constinit] = ACTIONS(2901), - [anon_sym_consteval] = ACTIONS(2901), - [sym_primitive_type] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym___try] = ACTIONS(2901), - [anon_sym___leave] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2901), - [anon_sym_compl] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym___alignof__] = ACTIONS(2901), - [anon_sym___alignof] = ACTIONS(2901), - [anon_sym__alignof] = ACTIONS(2901), - [anon_sym_alignof] = ACTIONS(2901), - [anon_sym__Alignof] = ACTIONS(2901), - [anon_sym_offsetof] = ACTIONS(2901), - [anon_sym__Generic] = ACTIONS(2901), - [anon_sym_asm] = ACTIONS(2901), - [anon_sym___asm__] = ACTIONS(2901), - [sym_number_literal] = ACTIONS(2903), - [anon_sym_L_SQUOTE] = ACTIONS(2903), - [anon_sym_u_SQUOTE] = ACTIONS(2903), - [anon_sym_U_SQUOTE] = ACTIONS(2903), - [anon_sym_u8_SQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_L_DQUOTE] = ACTIONS(2903), - [anon_sym_u_DQUOTE] = ACTIONS(2903), - [anon_sym_U_DQUOTE] = ACTIONS(2903), - [anon_sym_u8_DQUOTE] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [anon_sym_NULL] = ACTIONS(2901), - [anon_sym_nullptr] = ACTIONS(2901), + [464] = { + [sym_identifier] = ACTIONS(2981), + [aux_sym_preproc_include_token1] = ACTIONS(2981), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token2] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), + [aux_sym_preproc_else_token1] = ACTIONS(2981), + [aux_sym_preproc_elif_token1] = ACTIONS(2981), + [sym_preproc_directive] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym___extension__] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym___attribute__] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), + [anon_sym___declspec] = ACTIONS(2981), + [anon_sym___based] = ACTIONS(2981), + [anon_sym___cdecl] = ACTIONS(2981), + [anon_sym___clrcall] = ACTIONS(2981), + [anon_sym___stdcall] = ACTIONS(2981), + [anon_sym___fastcall] = ACTIONS(2981), + [anon_sym___thiscall] = ACTIONS(2981), + [anon_sym___vectorcall] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_signed] = ACTIONS(2981), + [anon_sym_unsigned] = ACTIONS(2981), + [anon_sym_long] = ACTIONS(2981), + [anon_sym_short] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_register] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym___inline] = ACTIONS(2981), + [anon_sym___inline__] = ACTIONS(2981), + [anon_sym___forceinline] = ACTIONS(2981), + [anon_sym_thread_local] = ACTIONS(2981), + [anon_sym___thread] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_constexpr] = ACTIONS(2981), + [anon_sym_volatile] = ACTIONS(2981), + [anon_sym_restrict] = ACTIONS(2981), + [anon_sym___restrict__] = ACTIONS(2981), + [anon_sym__Atomic] = ACTIONS(2981), + [anon_sym__Noreturn] = ACTIONS(2981), + [anon_sym_noreturn] = ACTIONS(2981), + [anon_sym_mutable] = ACTIONS(2981), + [anon_sym_constinit] = ACTIONS(2981), + [anon_sym_consteval] = ACTIONS(2981), + [sym_primitive_type] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_else] = ACTIONS(2981), + [anon_sym_switch] = ACTIONS(2981), + [anon_sym_case] = ACTIONS(2981), + [anon_sym_default] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_do] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_goto] = ACTIONS(2981), + [anon_sym___try] = ACTIONS(2981), + [anon_sym___leave] = ACTIONS(2981), + [anon_sym_not] = ACTIONS(2981), + [anon_sym_compl] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_sizeof] = ACTIONS(2981), + [anon_sym___alignof__] = ACTIONS(2981), + [anon_sym___alignof] = ACTIONS(2981), + [anon_sym__alignof] = ACTIONS(2981), + [anon_sym_alignof] = ACTIONS(2981), + [anon_sym__Alignof] = ACTIONS(2981), + [anon_sym_offsetof] = ACTIONS(2981), + [anon_sym__Generic] = ACTIONS(2981), + [anon_sym_asm] = ACTIONS(2981), + [anon_sym___asm__] = ACTIONS(2981), + [sym_number_literal] = ACTIONS(2983), + [anon_sym_L_SQUOTE] = ACTIONS(2983), + [anon_sym_u_SQUOTE] = ACTIONS(2983), + [anon_sym_U_SQUOTE] = ACTIONS(2983), + [anon_sym_u8_SQUOTE] = ACTIONS(2983), + [anon_sym_SQUOTE] = ACTIONS(2983), + [anon_sym_L_DQUOTE] = ACTIONS(2983), + [anon_sym_u_DQUOTE] = ACTIONS(2983), + [anon_sym_U_DQUOTE] = ACTIONS(2983), + [anon_sym_u8_DQUOTE] = ACTIONS(2983), + [anon_sym_DQUOTE] = ACTIONS(2983), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [anon_sym_NULL] = ACTIONS(2981), + [anon_sym_nullptr] = ACTIONS(2981), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_alignas] = ACTIONS(2901), - [anon_sym_explicit] = ACTIONS(2901), - [anon_sym_typename] = ACTIONS(2901), - [anon_sym_template] = ACTIONS(2901), - [anon_sym_operator] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_static_assert] = ACTIONS(2901), - [anon_sym_concept] = ACTIONS(2901), - [anon_sym_co_return] = ACTIONS(2901), - [anon_sym_co_yield] = ACTIONS(2901), - [anon_sym_R_DQUOTE] = ACTIONS(2903), - [anon_sym_LR_DQUOTE] = ACTIONS(2903), - [anon_sym_uR_DQUOTE] = ACTIONS(2903), - [anon_sym_UR_DQUOTE] = ACTIONS(2903), - [anon_sym_u8R_DQUOTE] = ACTIONS(2903), - [anon_sym_co_await] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_requires] = ACTIONS(2901), - [sym_this] = ACTIONS(2901), + [sym_auto] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2981), + [anon_sym_virtual] = ACTIONS(2981), + [anon_sym_alignas] = ACTIONS(2981), + [anon_sym_explicit] = ACTIONS(2981), + [anon_sym_typename] = ACTIONS(2981), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_delete] = ACTIONS(2981), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_static_assert] = ACTIONS(2981), + [anon_sym_concept] = ACTIONS(2981), + [anon_sym_co_return] = ACTIONS(2981), + [anon_sym_co_yield] = ACTIONS(2981), + [anon_sym_R_DQUOTE] = ACTIONS(2983), + [anon_sym_LR_DQUOTE] = ACTIONS(2983), + [anon_sym_uR_DQUOTE] = ACTIONS(2983), + [anon_sym_UR_DQUOTE] = ACTIONS(2983), + [anon_sym_u8R_DQUOTE] = ACTIONS(2983), + [anon_sym_co_await] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_requires] = ACTIONS(2981), + [sym_this] = ACTIONS(2981), }, - [485] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [465] = { + [sym_identifier] = ACTIONS(2985), + [aux_sym_preproc_include_token1] = ACTIONS(2985), + [aux_sym_preproc_def_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token2] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), + [aux_sym_preproc_else_token1] = ACTIONS(2985), + [aux_sym_preproc_elif_token1] = ACTIONS(2985), + [sym_preproc_directive] = ACTIONS(2985), + [anon_sym_LPAREN2] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym___extension__] = ACTIONS(2985), + [anon_sym_typedef] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym___attribute__] = ACTIONS(2985), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), + [anon_sym___declspec] = ACTIONS(2985), + [anon_sym___based] = ACTIONS(2985), + [anon_sym___cdecl] = ACTIONS(2985), + [anon_sym___clrcall] = ACTIONS(2985), + [anon_sym___stdcall] = ACTIONS(2985), + [anon_sym___fastcall] = ACTIONS(2985), + [anon_sym___thiscall] = ACTIONS(2985), + [anon_sym___vectorcall] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_signed] = ACTIONS(2985), + [anon_sym_unsigned] = ACTIONS(2985), + [anon_sym_long] = ACTIONS(2985), + [anon_sym_short] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_register] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym___inline] = ACTIONS(2985), + [anon_sym___inline__] = ACTIONS(2985), + [anon_sym___forceinline] = ACTIONS(2985), + [anon_sym_thread_local] = ACTIONS(2985), + [anon_sym___thread] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_constexpr] = ACTIONS(2985), + [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_restrict] = ACTIONS(2985), + [anon_sym___restrict__] = ACTIONS(2985), + [anon_sym__Atomic] = ACTIONS(2985), + [anon_sym__Noreturn] = ACTIONS(2985), + [anon_sym_noreturn] = ACTIONS(2985), + [anon_sym_mutable] = ACTIONS(2985), + [anon_sym_constinit] = ACTIONS(2985), + [anon_sym_consteval] = ACTIONS(2985), + [sym_primitive_type] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_case] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym___try] = ACTIONS(2985), + [anon_sym___leave] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_compl] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_sizeof] = ACTIONS(2985), + [anon_sym___alignof__] = ACTIONS(2985), + [anon_sym___alignof] = ACTIONS(2985), + [anon_sym__alignof] = ACTIONS(2985), + [anon_sym_alignof] = ACTIONS(2985), + [anon_sym__Alignof] = ACTIONS(2985), + [anon_sym_offsetof] = ACTIONS(2985), + [anon_sym__Generic] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym___asm__] = ACTIONS(2985), + [sym_number_literal] = ACTIONS(2987), + [anon_sym_L_SQUOTE] = ACTIONS(2987), + [anon_sym_u_SQUOTE] = ACTIONS(2987), + [anon_sym_U_SQUOTE] = ACTIONS(2987), + [anon_sym_u8_SQUOTE] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_L_DQUOTE] = ACTIONS(2987), + [anon_sym_u_DQUOTE] = ACTIONS(2987), + [anon_sym_U_DQUOTE] = ACTIONS(2987), + [anon_sym_u8_DQUOTE] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [anon_sym_NULL] = ACTIONS(2985), + [anon_sym_nullptr] = ACTIONS(2985), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2985), + [anon_sym_virtual] = ACTIONS(2985), + [anon_sym_alignas] = ACTIONS(2985), + [anon_sym_explicit] = ACTIONS(2985), + [anon_sym_typename] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(2985), + [anon_sym_operator] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_delete] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_namespace] = ACTIONS(2985), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_static_assert] = ACTIONS(2985), + [anon_sym_concept] = ACTIONS(2985), + [anon_sym_co_return] = ACTIONS(2985), + [anon_sym_co_yield] = ACTIONS(2985), + [anon_sym_R_DQUOTE] = ACTIONS(2987), + [anon_sym_LR_DQUOTE] = ACTIONS(2987), + [anon_sym_uR_DQUOTE] = ACTIONS(2987), + [anon_sym_UR_DQUOTE] = ACTIONS(2987), + [anon_sym_u8R_DQUOTE] = ACTIONS(2987), + [anon_sym_co_await] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_requires] = ACTIONS(2985), + [sym_this] = ACTIONS(2985), }, - [486] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [466] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [487] = { - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token2] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [aux_sym_preproc_else_token1] = ACTIONS(2905), - [aux_sym_preproc_elif_token1] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym___try] = ACTIONS(2905), - [anon_sym___leave] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [sym_number_literal] = ACTIONS(2907), - [anon_sym_L_SQUOTE] = ACTIONS(2907), - [anon_sym_u_SQUOTE] = ACTIONS(2907), - [anon_sym_U_SQUOTE] = ACTIONS(2907), - [anon_sym_u8_SQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_L_DQUOTE] = ACTIONS(2907), - [anon_sym_u_DQUOTE] = ACTIONS(2907), - [anon_sym_U_DQUOTE] = ACTIONS(2907), - [anon_sym_u8_DQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), + [467] = { + [sym_identifier] = ACTIONS(2925), + [aux_sym_preproc_include_token1] = ACTIONS(2925), + [aux_sym_preproc_def_token1] = ACTIONS(2925), + [aux_sym_preproc_if_token1] = ACTIONS(2925), + [aux_sym_preproc_if_token2] = ACTIONS(2925), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), + [aux_sym_preproc_else_token1] = ACTIONS(2925), + [aux_sym_preproc_elif_token1] = ACTIONS(2925), + [sym_preproc_directive] = ACTIONS(2925), + [anon_sym_LPAREN2] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym___extension__] = ACTIONS(2925), + [anon_sym_typedef] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2925), + [anon_sym___attribute__] = ACTIONS(2925), + [anon_sym_COLON_COLON] = ACTIONS(2927), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), + [anon_sym___declspec] = ACTIONS(2925), + [anon_sym___based] = ACTIONS(2925), + [anon_sym___cdecl] = ACTIONS(2925), + [anon_sym___clrcall] = ACTIONS(2925), + [anon_sym___stdcall] = ACTIONS(2925), + [anon_sym___fastcall] = ACTIONS(2925), + [anon_sym___thiscall] = ACTIONS(2925), + [anon_sym___vectorcall] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_signed] = ACTIONS(2925), + [anon_sym_unsigned] = ACTIONS(2925), + [anon_sym_long] = ACTIONS(2925), + [anon_sym_short] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_register] = ACTIONS(2925), + [anon_sym_inline] = ACTIONS(2925), + [anon_sym___inline] = ACTIONS(2925), + [anon_sym___inline__] = ACTIONS(2925), + [anon_sym___forceinline] = ACTIONS(2925), + [anon_sym_thread_local] = ACTIONS(2925), + [anon_sym___thread] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_constexpr] = ACTIONS(2925), + [anon_sym_volatile] = ACTIONS(2925), + [anon_sym_restrict] = ACTIONS(2925), + [anon_sym___restrict__] = ACTIONS(2925), + [anon_sym__Atomic] = ACTIONS(2925), + [anon_sym__Noreturn] = ACTIONS(2925), + [anon_sym_noreturn] = ACTIONS(2925), + [anon_sym_mutable] = ACTIONS(2925), + [anon_sym_constinit] = ACTIONS(2925), + [anon_sym_consteval] = ACTIONS(2925), + [sym_primitive_type] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_class] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2925), + [anon_sym_switch] = ACTIONS(2925), + [anon_sym_case] = ACTIONS(2925), + [anon_sym_default] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_do] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym___try] = ACTIONS(2925), + [anon_sym___leave] = ACTIONS(2925), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_sizeof] = ACTIONS(2925), + [anon_sym___alignof__] = ACTIONS(2925), + [anon_sym___alignof] = ACTIONS(2925), + [anon_sym__alignof] = ACTIONS(2925), + [anon_sym_alignof] = ACTIONS(2925), + [anon_sym__Alignof] = ACTIONS(2925), + [anon_sym_offsetof] = ACTIONS(2925), + [anon_sym__Generic] = ACTIONS(2925), + [anon_sym_asm] = ACTIONS(2925), + [anon_sym___asm__] = ACTIONS(2925), + [sym_number_literal] = ACTIONS(2927), + [anon_sym_L_SQUOTE] = ACTIONS(2927), + [anon_sym_u_SQUOTE] = ACTIONS(2927), + [anon_sym_U_SQUOTE] = ACTIONS(2927), + [anon_sym_u8_SQUOTE] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2927), + [anon_sym_L_DQUOTE] = ACTIONS(2927), + [anon_sym_u_DQUOTE] = ACTIONS(2927), + [anon_sym_U_DQUOTE] = ACTIONS(2927), + [anon_sym_u8_DQUOTE] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2927), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [anon_sym_NULL] = ACTIONS(2925), + [anon_sym_nullptr] = ACTIONS(2925), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [anon_sym_R_DQUOTE] = ACTIONS(2907), - [anon_sym_LR_DQUOTE] = ACTIONS(2907), - [anon_sym_uR_DQUOTE] = ACTIONS(2907), - [anon_sym_UR_DQUOTE] = ACTIONS(2907), - [anon_sym_u8R_DQUOTE] = ACTIONS(2907), - [anon_sym_co_await] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [sym_this] = ACTIONS(2905), + [sym_auto] = ACTIONS(2925), + [anon_sym_decltype] = ACTIONS(2925), + [anon_sym_virtual] = ACTIONS(2925), + [anon_sym_alignas] = ACTIONS(2925), + [anon_sym_explicit] = ACTIONS(2925), + [anon_sym_typename] = ACTIONS(2925), + [anon_sym_template] = ACTIONS(2925), + [anon_sym_operator] = ACTIONS(2925), + [anon_sym_try] = ACTIONS(2925), + [anon_sym_delete] = ACTIONS(2925), + [anon_sym_throw] = ACTIONS(2925), + [anon_sym_namespace] = ACTIONS(2925), + [anon_sym_using] = ACTIONS(2925), + [anon_sym_static_assert] = ACTIONS(2925), + [anon_sym_concept] = ACTIONS(2925), + [anon_sym_co_return] = ACTIONS(2925), + [anon_sym_co_yield] = ACTIONS(2925), + [anon_sym_R_DQUOTE] = ACTIONS(2927), + [anon_sym_LR_DQUOTE] = ACTIONS(2927), + [anon_sym_uR_DQUOTE] = ACTIONS(2927), + [anon_sym_UR_DQUOTE] = ACTIONS(2927), + [anon_sym_u8R_DQUOTE] = ACTIONS(2927), + [anon_sym_co_await] = ACTIONS(2925), + [anon_sym_new] = ACTIONS(2925), + [anon_sym_requires] = ACTIONS(2925), + [sym_this] = ACTIONS(2925), }, - [488] = { - [sym_identifier] = ACTIONS(2929), - [aux_sym_preproc_include_token1] = ACTIONS(2929), - [aux_sym_preproc_def_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token2] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), - [aux_sym_preproc_else_token1] = ACTIONS(2929), - [aux_sym_preproc_elif_token1] = ACTIONS(2929), - [sym_preproc_directive] = ACTIONS(2929), - [anon_sym_LPAREN2] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym___extension__] = ACTIONS(2929), - [anon_sym_typedef] = ACTIONS(2929), - [anon_sym_extern] = ACTIONS(2929), - [anon_sym___attribute__] = ACTIONS(2929), - [anon_sym_COLON_COLON] = ACTIONS(2931), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2931), - [anon_sym___declspec] = ACTIONS(2929), - [anon_sym___based] = ACTIONS(2929), - [anon_sym___cdecl] = ACTIONS(2929), - [anon_sym___clrcall] = ACTIONS(2929), - [anon_sym___stdcall] = ACTIONS(2929), - [anon_sym___fastcall] = ACTIONS(2929), - [anon_sym___thiscall] = ACTIONS(2929), - [anon_sym___vectorcall] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2929), - [anon_sym_unsigned] = ACTIONS(2929), - [anon_sym_long] = ACTIONS(2929), - [anon_sym_short] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_static] = ACTIONS(2929), - [anon_sym_register] = ACTIONS(2929), - [anon_sym_inline] = ACTIONS(2929), - [anon_sym___inline] = ACTIONS(2929), - [anon_sym___inline__] = ACTIONS(2929), - [anon_sym___forceinline] = ACTIONS(2929), - [anon_sym_thread_local] = ACTIONS(2929), - [anon_sym___thread] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2929), - [anon_sym_constexpr] = ACTIONS(2929), - [anon_sym_volatile] = ACTIONS(2929), - [anon_sym_restrict] = ACTIONS(2929), - [anon_sym___restrict__] = ACTIONS(2929), - [anon_sym__Atomic] = ACTIONS(2929), - [anon_sym__Noreturn] = ACTIONS(2929), - [anon_sym_noreturn] = ACTIONS(2929), - [anon_sym_mutable] = ACTIONS(2929), - [anon_sym_constinit] = ACTIONS(2929), - [anon_sym_consteval] = ACTIONS(2929), - [sym_primitive_type] = ACTIONS(2929), - [anon_sym_enum] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2929), - [anon_sym_union] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2929), - [anon_sym_switch] = ACTIONS(2929), - [anon_sym_case] = ACTIONS(2929), - [anon_sym_default] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_do] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_goto] = ACTIONS(2929), - [anon_sym___try] = ACTIONS(2929), - [anon_sym___leave] = ACTIONS(2929), - [anon_sym_not] = ACTIONS(2929), - [anon_sym_compl] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_sizeof] = ACTIONS(2929), - [anon_sym___alignof__] = ACTIONS(2929), - [anon_sym___alignof] = ACTIONS(2929), - [anon_sym__alignof] = ACTIONS(2929), - [anon_sym_alignof] = ACTIONS(2929), - [anon_sym__Alignof] = ACTIONS(2929), - [anon_sym_offsetof] = ACTIONS(2929), - [anon_sym__Generic] = ACTIONS(2929), - [anon_sym_asm] = ACTIONS(2929), - [anon_sym___asm__] = ACTIONS(2929), - [sym_number_literal] = ACTIONS(2931), - [anon_sym_L_SQUOTE] = ACTIONS(2931), - [anon_sym_u_SQUOTE] = ACTIONS(2931), - [anon_sym_U_SQUOTE] = ACTIONS(2931), - [anon_sym_u8_SQUOTE] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_L_DQUOTE] = ACTIONS(2931), - [anon_sym_u_DQUOTE] = ACTIONS(2931), - [anon_sym_U_DQUOTE] = ACTIONS(2931), - [anon_sym_u8_DQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [sym_true] = ACTIONS(2929), - [sym_false] = ACTIONS(2929), - [anon_sym_NULL] = ACTIONS(2929), - [anon_sym_nullptr] = ACTIONS(2929), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2929), - [anon_sym_decltype] = ACTIONS(2929), - [anon_sym_virtual] = ACTIONS(2929), - [anon_sym_alignas] = ACTIONS(2929), - [anon_sym_explicit] = ACTIONS(2929), - [anon_sym_typename] = ACTIONS(2929), - [anon_sym_template] = ACTIONS(2929), - [anon_sym_operator] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2929), - [anon_sym_delete] = ACTIONS(2929), - [anon_sym_throw] = ACTIONS(2929), - [anon_sym_namespace] = ACTIONS(2929), - [anon_sym_using] = ACTIONS(2929), - [anon_sym_static_assert] = ACTIONS(2929), - [anon_sym_concept] = ACTIONS(2929), - [anon_sym_co_return] = ACTIONS(2929), - [anon_sym_co_yield] = ACTIONS(2929), - [anon_sym_R_DQUOTE] = ACTIONS(2931), - [anon_sym_LR_DQUOTE] = ACTIONS(2931), - [anon_sym_uR_DQUOTE] = ACTIONS(2931), - [anon_sym_UR_DQUOTE] = ACTIONS(2931), - [anon_sym_u8R_DQUOTE] = ACTIONS(2931), - [anon_sym_co_await] = ACTIONS(2929), - [anon_sym_new] = ACTIONS(2929), - [anon_sym_requires] = ACTIONS(2929), - [sym_this] = ACTIONS(2929), + [468] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [489] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [469] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [470] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [490] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [471] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [491] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [aux_sym_preproc_else_token1] = ACTIONS(2969), - [aux_sym_preproc_elif_token1] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [472] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [492] = { - [sym_identifier] = ACTIONS(2885), - [aux_sym_preproc_include_token1] = ACTIONS(2885), - [aux_sym_preproc_def_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token2] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2885), - [aux_sym_preproc_else_token1] = ACTIONS(2885), - [aux_sym_preproc_elif_token1] = ACTIONS(2885), - [sym_preproc_directive] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym___based] = ACTIONS(2885), - [anon_sym___cdecl] = ACTIONS(2885), - [anon_sym___clrcall] = ACTIONS(2885), - [anon_sym___stdcall] = ACTIONS(2885), - [anon_sym___fastcall] = ACTIONS(2885), - [anon_sym___thiscall] = ACTIONS(2885), - [anon_sym___vectorcall] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym___try] = ACTIONS(2885), - [anon_sym___leave] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2885), - [anon_sym_compl] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_sizeof] = ACTIONS(2885), - [anon_sym___alignof__] = ACTIONS(2885), - [anon_sym___alignof] = ACTIONS(2885), - [anon_sym__alignof] = ACTIONS(2885), - [anon_sym_alignof] = ACTIONS(2885), - [anon_sym__Alignof] = ACTIONS(2885), - [anon_sym_offsetof] = ACTIONS(2885), - [anon_sym__Generic] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym___asm__] = ACTIONS(2885), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_L_SQUOTE] = ACTIONS(2887), - [anon_sym_u_SQUOTE] = ACTIONS(2887), - [anon_sym_U_SQUOTE] = ACTIONS(2887), - [anon_sym_u8_SQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_L_DQUOTE] = ACTIONS(2887), - [anon_sym_u_DQUOTE] = ACTIONS(2887), - [anon_sym_U_DQUOTE] = ACTIONS(2887), - [anon_sym_u8_DQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [anon_sym_NULL] = ACTIONS(2885), - [anon_sym_nullptr] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_explicit] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_operator] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_static_assert] = ACTIONS(2885), - [anon_sym_concept] = ACTIONS(2885), - [anon_sym_co_return] = ACTIONS(2885), - [anon_sym_co_yield] = ACTIONS(2885), - [anon_sym_R_DQUOTE] = ACTIONS(2887), - [anon_sym_LR_DQUOTE] = ACTIONS(2887), - [anon_sym_uR_DQUOTE] = ACTIONS(2887), - [anon_sym_UR_DQUOTE] = ACTIONS(2887), - [anon_sym_u8R_DQUOTE] = ACTIONS(2887), - [anon_sym_co_await] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_requires] = ACTIONS(2885), - [sym_this] = ACTIONS(2885), + [473] = { + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_include_token1] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token2] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [aux_sym_preproc_else_token1] = ACTIONS(2879), + [aux_sym_preproc_elif_token1] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym___extension__] = ACTIONS(2879), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym___cdecl] = ACTIONS(2879), + [anon_sym___clrcall] = ACTIONS(2879), + [anon_sym___stdcall] = ACTIONS(2879), + [anon_sym___fastcall] = ACTIONS(2879), + [anon_sym___thiscall] = ACTIONS(2879), + [anon_sym___vectorcall] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym___inline] = ACTIONS(2879), + [anon_sym___inline__] = ACTIONS(2879), + [anon_sym___forceinline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym___thread] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym___restrict__] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym__Noreturn] = ACTIONS(2879), + [anon_sym_noreturn] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_else] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym___try] = ACTIONS(2879), + [anon_sym___leave] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [anon_sym___alignof__] = ACTIONS(2879), + [anon_sym___alignof] = ACTIONS(2879), + [anon_sym__alignof] = ACTIONS(2879), + [anon_sym_alignof] = ACTIONS(2879), + [anon_sym__Alignof] = ACTIONS(2879), + [anon_sym_offsetof] = ACTIONS(2879), + [anon_sym__Generic] = ACTIONS(2879), + [anon_sym_asm] = ACTIONS(2879), + [anon_sym___asm__] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [anon_sym_NULL] = ACTIONS(2879), + [anon_sym_nullptr] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_alignas] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), + [anon_sym_concept] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_R_DQUOTE] = ACTIONS(2881), + [anon_sym_LR_DQUOTE] = ACTIONS(2881), + [anon_sym_uR_DQUOTE] = ACTIONS(2881), + [anon_sym_UR_DQUOTE] = ACTIONS(2881), + [anon_sym_u8R_DQUOTE] = ACTIONS(2881), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), }, - [493] = { - [sym_identifier] = ACTIONS(2965), - [aux_sym_preproc_include_token1] = ACTIONS(2965), - [aux_sym_preproc_def_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token2] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), - [aux_sym_preproc_else_token1] = ACTIONS(2965), - [aux_sym_preproc_elif_token1] = ACTIONS(2965), - [sym_preproc_directive] = ACTIONS(2965), - [anon_sym_LPAREN2] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym___based] = ACTIONS(2965), - [anon_sym___cdecl] = ACTIONS(2965), - [anon_sym___clrcall] = ACTIONS(2965), - [anon_sym___stdcall] = ACTIONS(2965), - [anon_sym___fastcall] = ACTIONS(2965), - [anon_sym___thiscall] = ACTIONS(2965), - [anon_sym___vectorcall] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2965), - [anon_sym_switch] = ACTIONS(2965), - [anon_sym_case] = ACTIONS(2965), - [anon_sym_default] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_do] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym___try] = ACTIONS(2965), - [anon_sym___leave] = ACTIONS(2965), - [anon_sym_not] = ACTIONS(2965), - [anon_sym_compl] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_sizeof] = ACTIONS(2965), - [anon_sym___alignof__] = ACTIONS(2965), - [anon_sym___alignof] = ACTIONS(2965), - [anon_sym__alignof] = ACTIONS(2965), - [anon_sym_alignof] = ACTIONS(2965), - [anon_sym__Alignof] = ACTIONS(2965), - [anon_sym_offsetof] = ACTIONS(2965), - [anon_sym__Generic] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym___asm__] = ACTIONS(2965), - [sym_number_literal] = ACTIONS(2967), - [anon_sym_L_SQUOTE] = ACTIONS(2967), - [anon_sym_u_SQUOTE] = ACTIONS(2967), - [anon_sym_U_SQUOTE] = ACTIONS(2967), - [anon_sym_u8_SQUOTE] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(2967), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [anon_sym_NULL] = ACTIONS(2965), - [anon_sym_nullptr] = ACTIONS(2965), + [474] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2965), - [anon_sym_delete] = ACTIONS(2965), - [anon_sym_throw] = ACTIONS(2965), - [anon_sym_namespace] = ACTIONS(2965), - [anon_sym_using] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), - [anon_sym_concept] = ACTIONS(2965), - [anon_sym_co_return] = ACTIONS(2965), - [anon_sym_co_yield] = ACTIONS(2965), - [anon_sym_R_DQUOTE] = ACTIONS(2967), - [anon_sym_LR_DQUOTE] = ACTIONS(2967), - [anon_sym_uR_DQUOTE] = ACTIONS(2967), - [anon_sym_UR_DQUOTE] = ACTIONS(2967), - [anon_sym_u8R_DQUOTE] = ACTIONS(2967), - [anon_sym_co_await] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2965), - [anon_sym_requires] = ACTIONS(2965), - [sym_this] = ACTIONS(2965), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [494] = { - [sym_identifier] = ACTIONS(2863), - [aux_sym_preproc_include_token1] = ACTIONS(2863), - [aux_sym_preproc_def_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token2] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), - [aux_sym_preproc_else_token1] = ACTIONS(2863), - [aux_sym_preproc_elif_token1] = ACTIONS(2863), - [sym_preproc_directive] = ACTIONS(2863), - [anon_sym_LPAREN2] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_typedef] = ACTIONS(2863), - [anon_sym_extern] = ACTIONS(2863), - [anon_sym___attribute__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), - [anon_sym___declspec] = ACTIONS(2863), - [anon_sym___based] = ACTIONS(2863), - [anon_sym___cdecl] = ACTIONS(2863), - [anon_sym___clrcall] = ACTIONS(2863), - [anon_sym___stdcall] = ACTIONS(2863), - [anon_sym___fastcall] = ACTIONS(2863), - [anon_sym___thiscall] = ACTIONS(2863), - [anon_sym___vectorcall] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2863), - [anon_sym_unsigned] = ACTIONS(2863), - [anon_sym_long] = ACTIONS(2863), - [anon_sym_short] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(2863), - [anon_sym_register] = ACTIONS(2863), - [anon_sym_inline] = ACTIONS(2863), - [anon_sym___inline] = ACTIONS(2863), - [anon_sym___inline__] = ACTIONS(2863), - [anon_sym___forceinline] = ACTIONS(2863), - [anon_sym_thread_local] = ACTIONS(2863), - [anon_sym___thread] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_constexpr] = ACTIONS(2863), - [anon_sym_volatile] = ACTIONS(2863), - [anon_sym_restrict] = ACTIONS(2863), - [anon_sym___restrict__] = ACTIONS(2863), - [anon_sym__Atomic] = ACTIONS(2863), - [anon_sym__Noreturn] = ACTIONS(2863), - [anon_sym_noreturn] = ACTIONS(2863), - [anon_sym_mutable] = ACTIONS(2863), - [anon_sym_constinit] = ACTIONS(2863), - [anon_sym_consteval] = ACTIONS(2863), - [sym_primitive_type] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), - [anon_sym_class] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_union] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_else] = ACTIONS(2863), - [anon_sym_switch] = ACTIONS(2863), - [anon_sym_case] = ACTIONS(2863), - [anon_sym_default] = ACTIONS(2863), - [anon_sym_while] = ACTIONS(2863), - [anon_sym_do] = ACTIONS(2863), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_return] = ACTIONS(2863), - [anon_sym_break] = ACTIONS(2863), - [anon_sym_continue] = ACTIONS(2863), - [anon_sym_goto] = ACTIONS(2863), - [anon_sym___try] = ACTIONS(2863), - [anon_sym___leave] = ACTIONS(2863), - [anon_sym_not] = ACTIONS(2863), - [anon_sym_compl] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_sizeof] = ACTIONS(2863), - [anon_sym___alignof__] = ACTIONS(2863), - [anon_sym___alignof] = ACTIONS(2863), - [anon_sym__alignof] = ACTIONS(2863), - [anon_sym_alignof] = ACTIONS(2863), - [anon_sym__Alignof] = ACTIONS(2863), - [anon_sym_offsetof] = ACTIONS(2863), - [anon_sym__Generic] = ACTIONS(2863), - [anon_sym_asm] = ACTIONS(2863), - [anon_sym___asm__] = ACTIONS(2863), - [sym_number_literal] = ACTIONS(2865), - [anon_sym_L_SQUOTE] = ACTIONS(2865), - [anon_sym_u_SQUOTE] = ACTIONS(2865), - [anon_sym_U_SQUOTE] = ACTIONS(2865), - [anon_sym_u8_SQUOTE] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_L_DQUOTE] = ACTIONS(2865), - [anon_sym_u_DQUOTE] = ACTIONS(2865), - [anon_sym_U_DQUOTE] = ACTIONS(2865), - [anon_sym_u8_DQUOTE] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2865), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [anon_sym_NULL] = ACTIONS(2863), - [anon_sym_nullptr] = ACTIONS(2863), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2863), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2863), - [anon_sym_alignas] = ACTIONS(2863), - [anon_sym_explicit] = ACTIONS(2863), - [anon_sym_typename] = ACTIONS(2863), - [anon_sym_template] = ACTIONS(2863), - [anon_sym_operator] = ACTIONS(2863), - [anon_sym_try] = ACTIONS(2863), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_throw] = ACTIONS(2863), - [anon_sym_namespace] = ACTIONS(2863), - [anon_sym_using] = ACTIONS(2863), - [anon_sym_static_assert] = ACTIONS(2863), - [anon_sym_concept] = ACTIONS(2863), - [anon_sym_co_return] = ACTIONS(2863), - [anon_sym_co_yield] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2863), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2863), - [sym_this] = ACTIONS(2863), - }, - [495] = { - [sym_identifier] = ACTIONS(2961), - [aux_sym_preproc_include_token1] = ACTIONS(2961), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token2] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), - [aux_sym_preproc_else_token1] = ACTIONS(2961), - [aux_sym_preproc_elif_token1] = ACTIONS(2961), - [sym_preproc_directive] = ACTIONS(2961), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), - [anon_sym___declspec] = ACTIONS(2961), - [anon_sym___based] = ACTIONS(2961), - [anon_sym___cdecl] = ACTIONS(2961), - [anon_sym___clrcall] = ACTIONS(2961), - [anon_sym___stdcall] = ACTIONS(2961), - [anon_sym___fastcall] = ACTIONS(2961), - [anon_sym___thiscall] = ACTIONS(2961), - [anon_sym___vectorcall] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_signed] = ACTIONS(2961), - [anon_sym_unsigned] = ACTIONS(2961), - [anon_sym_long] = ACTIONS(2961), - [anon_sym_short] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_register] = ACTIONS(2961), - [anon_sym_inline] = ACTIONS(2961), - [anon_sym___inline] = ACTIONS(2961), - [anon_sym___inline__] = ACTIONS(2961), - [anon_sym___forceinline] = ACTIONS(2961), - [anon_sym_thread_local] = ACTIONS(2961), - [anon_sym___thread] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_constexpr] = ACTIONS(2961), - [anon_sym_volatile] = ACTIONS(2961), - [anon_sym_restrict] = ACTIONS(2961), - [anon_sym___restrict__] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(2961), - [anon_sym__Noreturn] = ACTIONS(2961), - [anon_sym_noreturn] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [sym_primitive_type] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2961), - [anon_sym_switch] = ACTIONS(2961), - [anon_sym_case] = ACTIONS(2961), - [anon_sym_default] = ACTIONS(2961), - [anon_sym_while] = ACTIONS(2961), - [anon_sym_do] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym___try] = ACTIONS(2961), - [anon_sym___leave] = ACTIONS(2961), - [anon_sym_not] = ACTIONS(2961), - [anon_sym_compl] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2961), - [anon_sym___alignof__] = ACTIONS(2961), - [anon_sym___alignof] = ACTIONS(2961), - [anon_sym__alignof] = ACTIONS(2961), - [anon_sym_alignof] = ACTIONS(2961), - [anon_sym__Alignof] = ACTIONS(2961), - [anon_sym_offsetof] = ACTIONS(2961), - [anon_sym__Generic] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2963), - [anon_sym_u_SQUOTE] = ACTIONS(2963), - [anon_sym_U_SQUOTE] = ACTIONS(2963), - [anon_sym_u8_SQUOTE] = ACTIONS(2963), - [anon_sym_SQUOTE] = ACTIONS(2963), - [anon_sym_L_DQUOTE] = ACTIONS(2963), - [anon_sym_u_DQUOTE] = ACTIONS(2963), - [anon_sym_U_DQUOTE] = ACTIONS(2963), - [anon_sym_u8_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [anon_sym_NULL] = ACTIONS(2961), - [anon_sym_nullptr] = ACTIONS(2961), + [475] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2961), - [anon_sym_decltype] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_try] = ACTIONS(2961), - [anon_sym_delete] = ACTIONS(2961), - [anon_sym_throw] = ACTIONS(2961), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_using] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), - [anon_sym_concept] = ACTIONS(2961), - [anon_sym_co_return] = ACTIONS(2961), - [anon_sym_co_yield] = ACTIONS(2961), - [anon_sym_R_DQUOTE] = ACTIONS(2963), - [anon_sym_LR_DQUOTE] = ACTIONS(2963), - [anon_sym_uR_DQUOTE] = ACTIONS(2963), - [anon_sym_UR_DQUOTE] = ACTIONS(2963), - [anon_sym_u8R_DQUOTE] = ACTIONS(2963), - [anon_sym_co_await] = ACTIONS(2961), - [anon_sym_new] = ACTIONS(2961), - [anon_sym_requires] = ACTIONS(2961), - [sym_this] = ACTIONS(2961), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [496] = { - [sym_identifier] = ACTIONS(2909), - [aux_sym_preproc_include_token1] = ACTIONS(2909), - [aux_sym_preproc_def_token1] = ACTIONS(2909), - [aux_sym_preproc_if_token1] = ACTIONS(2909), - [aux_sym_preproc_if_token2] = ACTIONS(2909), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2909), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2909), - [aux_sym_preproc_else_token1] = ACTIONS(2909), - [aux_sym_preproc_elif_token1] = ACTIONS(2909), - [sym_preproc_directive] = ACTIONS(2909), - [anon_sym_LPAREN2] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym___extension__] = ACTIONS(2909), - [anon_sym_typedef] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym___attribute__] = ACTIONS(2909), - [anon_sym_COLON_COLON] = ACTIONS(2911), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2911), - [anon_sym___declspec] = ACTIONS(2909), - [anon_sym___based] = ACTIONS(2909), - [anon_sym___cdecl] = ACTIONS(2909), - [anon_sym___clrcall] = ACTIONS(2909), - [anon_sym___stdcall] = ACTIONS(2909), - [anon_sym___fastcall] = ACTIONS(2909), - [anon_sym___thiscall] = ACTIONS(2909), - [anon_sym___vectorcall] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_signed] = ACTIONS(2909), - [anon_sym_unsigned] = ACTIONS(2909), - [anon_sym_long] = ACTIONS(2909), - [anon_sym_short] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_register] = ACTIONS(2909), - [anon_sym_inline] = ACTIONS(2909), - [anon_sym___inline] = ACTIONS(2909), - [anon_sym___inline__] = ACTIONS(2909), - [anon_sym___forceinline] = ACTIONS(2909), - [anon_sym_thread_local] = ACTIONS(2909), - [anon_sym___thread] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_constexpr] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_restrict] = ACTIONS(2909), - [anon_sym___restrict__] = ACTIONS(2909), - [anon_sym__Atomic] = ACTIONS(2909), - [anon_sym__Noreturn] = ACTIONS(2909), - [anon_sym_noreturn] = ACTIONS(2909), - [anon_sym_mutable] = ACTIONS(2909), - [anon_sym_constinit] = ACTIONS(2909), - [anon_sym_consteval] = ACTIONS(2909), - [sym_primitive_type] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_class] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_case] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym___try] = ACTIONS(2909), - [anon_sym___leave] = ACTIONS(2909), - [anon_sym_not] = ACTIONS(2909), - [anon_sym_compl] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_sizeof] = ACTIONS(2909), - [anon_sym___alignof__] = ACTIONS(2909), - [anon_sym___alignof] = ACTIONS(2909), - [anon_sym__alignof] = ACTIONS(2909), - [anon_sym_alignof] = ACTIONS(2909), - [anon_sym__Alignof] = ACTIONS(2909), - [anon_sym_offsetof] = ACTIONS(2909), - [anon_sym__Generic] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym___asm__] = ACTIONS(2909), - [sym_number_literal] = ACTIONS(2911), - [anon_sym_L_SQUOTE] = ACTIONS(2911), - [anon_sym_u_SQUOTE] = ACTIONS(2911), - [anon_sym_U_SQUOTE] = ACTIONS(2911), - [anon_sym_u8_SQUOTE] = ACTIONS(2911), - [anon_sym_SQUOTE] = ACTIONS(2911), - [anon_sym_L_DQUOTE] = ACTIONS(2911), - [anon_sym_u_DQUOTE] = ACTIONS(2911), - [anon_sym_U_DQUOTE] = ACTIONS(2911), - [anon_sym_u8_DQUOTE] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [anon_sym_NULL] = ACTIONS(2909), - [anon_sym_nullptr] = ACTIONS(2909), + [476] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2909), - [anon_sym_decltype] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_alignas] = ACTIONS(2909), - [anon_sym_explicit] = ACTIONS(2909), - [anon_sym_typename] = ACTIONS(2909), - [anon_sym_template] = ACTIONS(2909), - [anon_sym_operator] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_delete] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_namespace] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_static_assert] = ACTIONS(2909), - [anon_sym_concept] = ACTIONS(2909), - [anon_sym_co_return] = ACTIONS(2909), - [anon_sym_co_yield] = ACTIONS(2909), - [anon_sym_R_DQUOTE] = ACTIONS(2911), - [anon_sym_LR_DQUOTE] = ACTIONS(2911), - [anon_sym_uR_DQUOTE] = ACTIONS(2911), - [anon_sym_UR_DQUOTE] = ACTIONS(2911), - [anon_sym_u8R_DQUOTE] = ACTIONS(2911), - [anon_sym_co_await] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2909), - [sym_this] = ACTIONS(2909), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [497] = { - [sym_identifier] = ACTIONS(2913), - [aux_sym_preproc_include_token1] = ACTIONS(2913), - [aux_sym_preproc_def_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token2] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), - [aux_sym_preproc_else_token1] = ACTIONS(2913), - [aux_sym_preproc_elif_token1] = ACTIONS(2913), - [sym_preproc_directive] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym___based] = ACTIONS(2913), - [anon_sym___cdecl] = ACTIONS(2913), - [anon_sym___clrcall] = ACTIONS(2913), - [anon_sym___stdcall] = ACTIONS(2913), - [anon_sym___fastcall] = ACTIONS(2913), - [anon_sym___thiscall] = ACTIONS(2913), - [anon_sym___vectorcall] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_case] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym___try] = ACTIONS(2913), - [anon_sym___leave] = ACTIONS(2913), - [anon_sym_not] = ACTIONS(2913), - [anon_sym_compl] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2913), - [anon_sym___alignof__] = ACTIONS(2913), - [anon_sym___alignof] = ACTIONS(2913), - [anon_sym__alignof] = ACTIONS(2913), - [anon_sym_alignof] = ACTIONS(2913), - [anon_sym__Alignof] = ACTIONS(2913), - [anon_sym_offsetof] = ACTIONS(2913), - [anon_sym__Generic] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym___asm__] = ACTIONS(2913), - [sym_number_literal] = ACTIONS(2915), - [anon_sym_L_SQUOTE] = ACTIONS(2915), - [anon_sym_u_SQUOTE] = ACTIONS(2915), - [anon_sym_U_SQUOTE] = ACTIONS(2915), - [anon_sym_u8_SQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_L_DQUOTE] = ACTIONS(2915), - [anon_sym_u_DQUOTE] = ACTIONS(2915), - [anon_sym_U_DQUOTE] = ACTIONS(2915), - [anon_sym_u8_DQUOTE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [anon_sym_NULL] = ACTIONS(2913), - [anon_sym_nullptr] = ACTIONS(2913), + [477] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_explicit] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_operator] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_namespace] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_static_assert] = ACTIONS(2913), - [anon_sym_concept] = ACTIONS(2913), - [anon_sym_co_return] = ACTIONS(2913), - [anon_sym_co_yield] = ACTIONS(2913), - [anon_sym_R_DQUOTE] = ACTIONS(2915), - [anon_sym_LR_DQUOTE] = ACTIONS(2915), - [anon_sym_uR_DQUOTE] = ACTIONS(2915), - [anon_sym_UR_DQUOTE] = ACTIONS(2915), - [anon_sym_u8R_DQUOTE] = ACTIONS(2915), - [anon_sym_co_await] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_requires] = ACTIONS(2913), - [sym_this] = ACTIONS(2913), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [498] = { - [sym_identifier] = ACTIONS(2957), - [aux_sym_preproc_include_token1] = ACTIONS(2957), - [aux_sym_preproc_def_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token2] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), - [aux_sym_preproc_else_token1] = ACTIONS(2957), - [aux_sym_preproc_elif_token1] = ACTIONS(2957), - [sym_preproc_directive] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym___extension__] = ACTIONS(2957), - [anon_sym_typedef] = ACTIONS(2957), - [anon_sym_extern] = ACTIONS(2957), - [anon_sym___attribute__] = ACTIONS(2957), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), - [anon_sym___declspec] = ACTIONS(2957), - [anon_sym___based] = ACTIONS(2957), - [anon_sym___cdecl] = ACTIONS(2957), - [anon_sym___clrcall] = ACTIONS(2957), - [anon_sym___stdcall] = ACTIONS(2957), - [anon_sym___fastcall] = ACTIONS(2957), - [anon_sym___thiscall] = ACTIONS(2957), - [anon_sym___vectorcall] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_signed] = ACTIONS(2957), - [anon_sym_unsigned] = ACTIONS(2957), - [anon_sym_long] = ACTIONS(2957), - [anon_sym_short] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_register] = ACTIONS(2957), - [anon_sym_inline] = ACTIONS(2957), - [anon_sym___inline] = ACTIONS(2957), - [anon_sym___inline__] = ACTIONS(2957), - [anon_sym___forceinline] = ACTIONS(2957), - [anon_sym_thread_local] = ACTIONS(2957), - [anon_sym___thread] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_constexpr] = ACTIONS(2957), - [anon_sym_volatile] = ACTIONS(2957), - [anon_sym_restrict] = ACTIONS(2957), - [anon_sym___restrict__] = ACTIONS(2957), - [anon_sym__Atomic] = ACTIONS(2957), - [anon_sym__Noreturn] = ACTIONS(2957), - [anon_sym_noreturn] = ACTIONS(2957), - [anon_sym_mutable] = ACTIONS(2957), - [anon_sym_constinit] = ACTIONS(2957), - [anon_sym_consteval] = ACTIONS(2957), - [sym_primitive_type] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_case] = ACTIONS(2957), - [anon_sym_default] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_do] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym___try] = ACTIONS(2957), - [anon_sym___leave] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2957), - [anon_sym_compl] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2957), - [anon_sym___alignof__] = ACTIONS(2957), - [anon_sym___alignof] = ACTIONS(2957), - [anon_sym__alignof] = ACTIONS(2957), - [anon_sym_alignof] = ACTIONS(2957), - [anon_sym__Alignof] = ACTIONS(2957), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), - [anon_sym___asm__] = ACTIONS(2957), - [sym_number_literal] = ACTIONS(2959), - [anon_sym_L_SQUOTE] = ACTIONS(2959), - [anon_sym_u_SQUOTE] = ACTIONS(2959), - [anon_sym_U_SQUOTE] = ACTIONS(2959), - [anon_sym_u8_SQUOTE] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_L_DQUOTE] = ACTIONS(2959), - [anon_sym_u_DQUOTE] = ACTIONS(2959), - [anon_sym_U_DQUOTE] = ACTIONS(2959), - [anon_sym_u8_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [anon_sym_NULL] = ACTIONS(2957), - [anon_sym_nullptr] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2957), - [anon_sym_decltype] = ACTIONS(2957), - [anon_sym_virtual] = ACTIONS(2957), - [anon_sym_alignas] = ACTIONS(2957), - [anon_sym_explicit] = ACTIONS(2957), - [anon_sym_typename] = ACTIONS(2957), - [anon_sym_template] = ACTIONS(2957), - [anon_sym_operator] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_delete] = ACTIONS(2957), - [anon_sym_throw] = ACTIONS(2957), - [anon_sym_namespace] = ACTIONS(2957), - [anon_sym_using] = ACTIONS(2957), - [anon_sym_static_assert] = ACTIONS(2957), - [anon_sym_concept] = ACTIONS(2957), - [anon_sym_co_return] = ACTIONS(2957), - [anon_sym_co_yield] = ACTIONS(2957), - [anon_sym_R_DQUOTE] = ACTIONS(2959), - [anon_sym_LR_DQUOTE] = ACTIONS(2959), - [anon_sym_uR_DQUOTE] = ACTIONS(2959), - [anon_sym_UR_DQUOTE] = ACTIONS(2959), - [anon_sym_u8R_DQUOTE] = ACTIONS(2959), - [anon_sym_co_await] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2957), - [anon_sym_requires] = ACTIONS(2957), - [sym_this] = ACTIONS(2957), + [478] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [499] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [aux_sym_preproc_else_token1] = ACTIONS(2917), - [aux_sym_preproc_elif_token1] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym___try] = ACTIONS(2917), - [anon_sym___leave] = ACTIONS(2917), + [479] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [480] = { + [sym_identifier] = ACTIONS(2905), + [aux_sym_preproc_include_token1] = ACTIONS(2905), + [aux_sym_preproc_def_token1] = ACTIONS(2905), + [aux_sym_preproc_if_token1] = ACTIONS(2905), + [aux_sym_preproc_if_token2] = ACTIONS(2905), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), + [aux_sym_preproc_else_token1] = ACTIONS(2905), + [aux_sym_preproc_elif_token1] = ACTIONS(2905), + [sym_preproc_directive] = ACTIONS(2905), + [anon_sym_LPAREN2] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_AMP_AMP] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym___extension__] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym___attribute__] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), + [anon_sym___declspec] = ACTIONS(2905), + [anon_sym___based] = ACTIONS(2905), + [anon_sym___cdecl] = ACTIONS(2905), + [anon_sym___clrcall] = ACTIONS(2905), + [anon_sym___stdcall] = ACTIONS(2905), + [anon_sym___fastcall] = ACTIONS(2905), + [anon_sym___thiscall] = ACTIONS(2905), + [anon_sym___vectorcall] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2905), + [anon_sym_unsigned] = ACTIONS(2905), + [anon_sym_long] = ACTIONS(2905), + [anon_sym_short] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_static] = ACTIONS(2905), + [anon_sym_register] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym___inline] = ACTIONS(2905), + [anon_sym___inline__] = ACTIONS(2905), + [anon_sym___forceinline] = ACTIONS(2905), + [anon_sym_thread_local] = ACTIONS(2905), + [anon_sym___thread] = ACTIONS(2905), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_constexpr] = ACTIONS(2905), + [anon_sym_volatile] = ACTIONS(2905), + [anon_sym_restrict] = ACTIONS(2905), + [anon_sym___restrict__] = ACTIONS(2905), + [anon_sym__Atomic] = ACTIONS(2905), + [anon_sym__Noreturn] = ACTIONS(2905), + [anon_sym_noreturn] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_union] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_else] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2905), + [anon_sym_case] = ACTIONS(2905), + [anon_sym_default] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_goto] = ACTIONS(2905), + [anon_sym___try] = ACTIONS(2905), + [anon_sym___leave] = ACTIONS(2905), + [anon_sym_not] = ACTIONS(2905), + [anon_sym_compl] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_sizeof] = ACTIONS(2905), + [anon_sym___alignof__] = ACTIONS(2905), + [anon_sym___alignof] = ACTIONS(2905), + [anon_sym__alignof] = ACTIONS(2905), + [anon_sym_alignof] = ACTIONS(2905), + [anon_sym__Alignof] = ACTIONS(2905), + [anon_sym_offsetof] = ACTIONS(2905), + [anon_sym__Generic] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym___asm__] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2907), + [anon_sym_L_SQUOTE] = ACTIONS(2907), + [anon_sym_u_SQUOTE] = ACTIONS(2907), + [anon_sym_U_SQUOTE] = ACTIONS(2907), + [anon_sym_u8_SQUOTE] = ACTIONS(2907), + [anon_sym_SQUOTE] = ACTIONS(2907), + [anon_sym_L_DQUOTE] = ACTIONS(2907), + [anon_sym_u_DQUOTE] = ACTIONS(2907), + [anon_sym_U_DQUOTE] = ACTIONS(2907), + [anon_sym_u8_DQUOTE] = ACTIONS(2907), + [anon_sym_DQUOTE] = ACTIONS(2907), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [anon_sym_NULL] = ACTIONS(2905), + [anon_sym_nullptr] = ACTIONS(2905), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2905), + [anon_sym_decltype] = ACTIONS(2905), + [anon_sym_virtual] = ACTIONS(2905), + [anon_sym_alignas] = ACTIONS(2905), + [anon_sym_explicit] = ACTIONS(2905), + [anon_sym_typename] = ACTIONS(2905), + [anon_sym_template] = ACTIONS(2905), + [anon_sym_operator] = ACTIONS(2905), + [anon_sym_try] = ACTIONS(2905), + [anon_sym_delete] = ACTIONS(2905), + [anon_sym_throw] = ACTIONS(2905), + [anon_sym_namespace] = ACTIONS(2905), + [anon_sym_using] = ACTIONS(2905), + [anon_sym_static_assert] = ACTIONS(2905), + [anon_sym_concept] = ACTIONS(2905), + [anon_sym_co_return] = ACTIONS(2905), + [anon_sym_co_yield] = ACTIONS(2905), + [anon_sym_R_DQUOTE] = ACTIONS(2907), + [anon_sym_LR_DQUOTE] = ACTIONS(2907), + [anon_sym_uR_DQUOTE] = ACTIONS(2907), + [anon_sym_UR_DQUOTE] = ACTIONS(2907), + [anon_sym_u8R_DQUOTE] = ACTIONS(2907), + [anon_sym_co_await] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_requires] = ACTIONS(2905), + [sym_this] = ACTIONS(2905), + }, + [481] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [482] = { + [sym_identifier] = ACTIONS(2917), + [aux_sym_preproc_include_token1] = ACTIONS(2917), + [aux_sym_preproc_def_token1] = ACTIONS(2917), + [aux_sym_preproc_if_token1] = ACTIONS(2917), + [aux_sym_preproc_if_token2] = ACTIONS(2917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), + [aux_sym_preproc_else_token1] = ACTIONS(2917), + [aux_sym_preproc_elif_token1] = ACTIONS(2917), + [sym_preproc_directive] = ACTIONS(2917), + [anon_sym_LPAREN2] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2919), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym___extension__] = ACTIONS(2917), + [anon_sym_typedef] = ACTIONS(2917), + [anon_sym_extern] = ACTIONS(2917), + [anon_sym___attribute__] = ACTIONS(2917), + [anon_sym_COLON_COLON] = ACTIONS(2919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), + [anon_sym___declspec] = ACTIONS(2917), + [anon_sym___based] = ACTIONS(2917), + [anon_sym___cdecl] = ACTIONS(2917), + [anon_sym___clrcall] = ACTIONS(2917), + [anon_sym___stdcall] = ACTIONS(2917), + [anon_sym___fastcall] = ACTIONS(2917), + [anon_sym___thiscall] = ACTIONS(2917), + [anon_sym___vectorcall] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_signed] = ACTIONS(2917), + [anon_sym_unsigned] = ACTIONS(2917), + [anon_sym_long] = ACTIONS(2917), + [anon_sym_short] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2917), + [anon_sym_static] = ACTIONS(2917), + [anon_sym_register] = ACTIONS(2917), + [anon_sym_inline] = ACTIONS(2917), + [anon_sym___inline] = ACTIONS(2917), + [anon_sym___inline__] = ACTIONS(2917), + [anon_sym___forceinline] = ACTIONS(2917), + [anon_sym_thread_local] = ACTIONS(2917), + [anon_sym___thread] = ACTIONS(2917), + [anon_sym_const] = ACTIONS(2917), + [anon_sym_constexpr] = ACTIONS(2917), + [anon_sym_volatile] = ACTIONS(2917), + [anon_sym_restrict] = ACTIONS(2917), + [anon_sym___restrict__] = ACTIONS(2917), + [anon_sym__Atomic] = ACTIONS(2917), + [anon_sym__Noreturn] = ACTIONS(2917), + [anon_sym_noreturn] = ACTIONS(2917), + [anon_sym_mutable] = ACTIONS(2917), + [anon_sym_constinit] = ACTIONS(2917), + [anon_sym_consteval] = ACTIONS(2917), + [sym_primitive_type] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), + [anon_sym_class] = ACTIONS(2917), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_union] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_else] = ACTIONS(2917), + [anon_sym_switch] = ACTIONS(2917), + [anon_sym_case] = ACTIONS(2917), + [anon_sym_default] = ACTIONS(2917), + [anon_sym_while] = ACTIONS(2917), + [anon_sym_do] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_goto] = ACTIONS(2917), + [anon_sym___try] = ACTIONS(2917), + [anon_sym___leave] = ACTIONS(2917), [anon_sym_not] = ACTIONS(2917), [anon_sym_compl] = ACTIONS(2917), [anon_sym_DASH_DASH] = ACTIONS(2919), @@ -160006,142 +158043,682 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2917), [sym_this] = ACTIONS(2917), }, - [500] = { - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_include_token1] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token2] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [aux_sym_preproc_else_token1] = ACTIONS(2925), - [aux_sym_preproc_elif_token1] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym___cdecl] = ACTIONS(2925), - [anon_sym___clrcall] = ACTIONS(2925), - [anon_sym___stdcall] = ACTIONS(2925), - [anon_sym___fastcall] = ACTIONS(2925), - [anon_sym___thiscall] = ACTIONS(2925), - [anon_sym___vectorcall] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_case] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym___try] = ACTIONS(2925), - [anon_sym___leave] = ACTIONS(2925), - [anon_sym_not] = ACTIONS(2925), - [anon_sym_compl] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(2925), - [anon_sym___alignof__] = ACTIONS(2925), - [anon_sym___alignof] = ACTIONS(2925), - [anon_sym__alignof] = ACTIONS(2925), - [anon_sym_alignof] = ACTIONS(2925), - [anon_sym__Alignof] = ACTIONS(2925), - [anon_sym_offsetof] = ACTIONS(2925), - [anon_sym__Generic] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym___asm__] = ACTIONS(2925), - [sym_number_literal] = ACTIONS(2927), - [anon_sym_L_SQUOTE] = ACTIONS(2927), - [anon_sym_u_SQUOTE] = ACTIONS(2927), - [anon_sym_U_SQUOTE] = ACTIONS(2927), - [anon_sym_u8_SQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_L_DQUOTE] = ACTIONS(2927), - [anon_sym_u_DQUOTE] = ACTIONS(2927), - [anon_sym_U_DQUOTE] = ACTIONS(2927), - [anon_sym_u8_DQUOTE] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [anon_sym_NULL] = ACTIONS(2925), - [anon_sym_nullptr] = ACTIONS(2925), + [483] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [484] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [485] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [486] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_namespace] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - [anon_sym_concept] = ACTIONS(2925), - [anon_sym_co_return] = ACTIONS(2925), - [anon_sym_co_yield] = ACTIONS(2925), - [anon_sym_R_DQUOTE] = ACTIONS(2927), - [anon_sym_LR_DQUOTE] = ACTIONS(2927), - [anon_sym_uR_DQUOTE] = ACTIONS(2927), - [anon_sym_UR_DQUOTE] = ACTIONS(2927), - [anon_sym_u8R_DQUOTE] = ACTIONS(2927), - [anon_sym_co_await] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_requires] = ACTIONS(2925), - [sym_this] = ACTIONS(2925), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [501] = { + [487] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [488] = { [sym_identifier] = ACTIONS(2921), [aux_sym_preproc_include_token1] = ACTIONS(2921), [aux_sym_preproc_def_token1] = ACTIONS(2921), @@ -160276,1154 +158853,2372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2921), [sym_this] = ACTIONS(2921), }, - [502] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [489] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [503] = { - [sym_identifier] = ACTIONS(2985), - [aux_sym_preproc_include_token1] = ACTIONS(2985), - [aux_sym_preproc_def_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token2] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), - [aux_sym_preproc_else_token1] = ACTIONS(2985), - [aux_sym_preproc_elif_token1] = ACTIONS(2985), - [sym_preproc_directive] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym___based] = ACTIONS(2985), - [anon_sym___cdecl] = ACTIONS(2985), - [anon_sym___clrcall] = ACTIONS(2985), - [anon_sym___stdcall] = ACTIONS(2985), - [anon_sym___fastcall] = ACTIONS(2985), - [anon_sym___thiscall] = ACTIONS(2985), - [anon_sym___vectorcall] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_case] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym___try] = ACTIONS(2985), - [anon_sym___leave] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2985), - [anon_sym_compl] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym___alignof__] = ACTIONS(2985), - [anon_sym___alignof] = ACTIONS(2985), - [anon_sym__alignof] = ACTIONS(2985), - [anon_sym_alignof] = ACTIONS(2985), - [anon_sym__Alignof] = ACTIONS(2985), - [anon_sym_offsetof] = ACTIONS(2985), - [anon_sym__Generic] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym___asm__] = ACTIONS(2985), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_L_SQUOTE] = ACTIONS(2987), - [anon_sym_u_SQUOTE] = ACTIONS(2987), - [anon_sym_U_SQUOTE] = ACTIONS(2987), - [anon_sym_u8_SQUOTE] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_L_DQUOTE] = ACTIONS(2987), - [anon_sym_u_DQUOTE] = ACTIONS(2987), - [anon_sym_U_DQUOTE] = ACTIONS(2987), - [anon_sym_u8_DQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [anon_sym_NULL] = ACTIONS(2985), - [anon_sym_nullptr] = ACTIONS(2985), + [490] = { + [sym_identifier] = ACTIONS(2929), + [aux_sym_preproc_include_token1] = ACTIONS(2929), + [aux_sym_preproc_def_token1] = ACTIONS(2929), + [aux_sym_preproc_if_token1] = ACTIONS(2929), + [aux_sym_preproc_if_token2] = ACTIONS(2929), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), + [aux_sym_preproc_else_token1] = ACTIONS(2929), + [aux_sym_preproc_elif_token1] = ACTIONS(2929), + [sym_preproc_directive] = ACTIONS(2929), + [anon_sym_LPAREN2] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(2931), + [anon_sym_TILDE] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_AMP_AMP] = ACTIONS(2931), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_SEMI] = ACTIONS(2931), + [anon_sym___extension__] = ACTIONS(2929), + [anon_sym_typedef] = ACTIONS(2929), + [anon_sym_extern] = ACTIONS(2929), + [anon_sym___attribute__] = ACTIONS(2929), + [anon_sym_COLON_COLON] = ACTIONS(2931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2931), + [anon_sym___declspec] = ACTIONS(2929), + [anon_sym___based] = ACTIONS(2929), + [anon_sym___cdecl] = ACTIONS(2929), + [anon_sym___clrcall] = ACTIONS(2929), + [anon_sym___stdcall] = ACTIONS(2929), + [anon_sym___fastcall] = ACTIONS(2929), + [anon_sym___thiscall] = ACTIONS(2929), + [anon_sym___vectorcall] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_signed] = ACTIONS(2929), + [anon_sym_unsigned] = ACTIONS(2929), + [anon_sym_long] = ACTIONS(2929), + [anon_sym_short] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_static] = ACTIONS(2929), + [anon_sym_register] = ACTIONS(2929), + [anon_sym_inline] = ACTIONS(2929), + [anon_sym___inline] = ACTIONS(2929), + [anon_sym___inline__] = ACTIONS(2929), + [anon_sym___forceinline] = ACTIONS(2929), + [anon_sym_thread_local] = ACTIONS(2929), + [anon_sym___thread] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2929), + [anon_sym_constexpr] = ACTIONS(2929), + [anon_sym_volatile] = ACTIONS(2929), + [anon_sym_restrict] = ACTIONS(2929), + [anon_sym___restrict__] = ACTIONS(2929), + [anon_sym__Atomic] = ACTIONS(2929), + [anon_sym__Noreturn] = ACTIONS(2929), + [anon_sym_noreturn] = ACTIONS(2929), + [anon_sym_mutable] = ACTIONS(2929), + [anon_sym_constinit] = ACTIONS(2929), + [anon_sym_consteval] = ACTIONS(2929), + [sym_primitive_type] = ACTIONS(2929), + [anon_sym_enum] = ACTIONS(2929), + [anon_sym_class] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_union] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_else] = ACTIONS(2929), + [anon_sym_switch] = ACTIONS(2929), + [anon_sym_case] = ACTIONS(2929), + [anon_sym_default] = ACTIONS(2929), + [anon_sym_while] = ACTIONS(2929), + [anon_sym_do] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_goto] = ACTIONS(2929), + [anon_sym___try] = ACTIONS(2929), + [anon_sym___leave] = ACTIONS(2929), + [anon_sym_not] = ACTIONS(2929), + [anon_sym_compl] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2931), + [anon_sym_PLUS_PLUS] = ACTIONS(2931), + [anon_sym_sizeof] = ACTIONS(2929), + [anon_sym___alignof__] = ACTIONS(2929), + [anon_sym___alignof] = ACTIONS(2929), + [anon_sym__alignof] = ACTIONS(2929), + [anon_sym_alignof] = ACTIONS(2929), + [anon_sym__Alignof] = ACTIONS(2929), + [anon_sym_offsetof] = ACTIONS(2929), + [anon_sym__Generic] = ACTIONS(2929), + [anon_sym_asm] = ACTIONS(2929), + [anon_sym___asm__] = ACTIONS(2929), + [sym_number_literal] = ACTIONS(2931), + [anon_sym_L_SQUOTE] = ACTIONS(2931), + [anon_sym_u_SQUOTE] = ACTIONS(2931), + [anon_sym_U_SQUOTE] = ACTIONS(2931), + [anon_sym_u8_SQUOTE] = ACTIONS(2931), + [anon_sym_SQUOTE] = ACTIONS(2931), + [anon_sym_L_DQUOTE] = ACTIONS(2931), + [anon_sym_u_DQUOTE] = ACTIONS(2931), + [anon_sym_U_DQUOTE] = ACTIONS(2931), + [anon_sym_u8_DQUOTE] = ACTIONS(2931), + [anon_sym_DQUOTE] = ACTIONS(2931), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [anon_sym_NULL] = ACTIONS(2929), + [anon_sym_nullptr] = ACTIONS(2929), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_explicit] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_operator] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_delete] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_static_assert] = ACTIONS(2985), - [anon_sym_concept] = ACTIONS(2985), - [anon_sym_co_return] = ACTIONS(2985), - [anon_sym_co_yield] = ACTIONS(2985), - [anon_sym_R_DQUOTE] = ACTIONS(2987), - [anon_sym_LR_DQUOTE] = ACTIONS(2987), - [anon_sym_uR_DQUOTE] = ACTIONS(2987), - [anon_sym_UR_DQUOTE] = ACTIONS(2987), - [anon_sym_u8R_DQUOTE] = ACTIONS(2987), - [anon_sym_co_await] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_requires] = ACTIONS(2985), - [sym_this] = ACTIONS(2985), + [sym_auto] = ACTIONS(2929), + [anon_sym_decltype] = ACTIONS(2929), + [anon_sym_virtual] = ACTIONS(2929), + [anon_sym_alignas] = ACTIONS(2929), + [anon_sym_explicit] = ACTIONS(2929), + [anon_sym_typename] = ACTIONS(2929), + [anon_sym_template] = ACTIONS(2929), + [anon_sym_operator] = ACTIONS(2929), + [anon_sym_try] = ACTIONS(2929), + [anon_sym_delete] = ACTIONS(2929), + [anon_sym_throw] = ACTIONS(2929), + [anon_sym_namespace] = ACTIONS(2929), + [anon_sym_using] = ACTIONS(2929), + [anon_sym_static_assert] = ACTIONS(2929), + [anon_sym_concept] = ACTIONS(2929), + [anon_sym_co_return] = ACTIONS(2929), + [anon_sym_co_yield] = ACTIONS(2929), + [anon_sym_R_DQUOTE] = ACTIONS(2931), + [anon_sym_LR_DQUOTE] = ACTIONS(2931), + [anon_sym_uR_DQUOTE] = ACTIONS(2931), + [anon_sym_UR_DQUOTE] = ACTIONS(2931), + [anon_sym_u8R_DQUOTE] = ACTIONS(2931), + [anon_sym_co_await] = ACTIONS(2929), + [anon_sym_new] = ACTIONS(2929), + [anon_sym_requires] = ACTIONS(2929), + [sym_this] = ACTIONS(2929), }, - [504] = { - [sym_identifier] = ACTIONS(2981), - [aux_sym_preproc_include_token1] = ACTIONS(2981), - [aux_sym_preproc_def_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token2] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), - [aux_sym_preproc_else_token1] = ACTIONS(2981), - [aux_sym_preproc_elif_token1] = ACTIONS(2981), - [sym_preproc_directive] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym___based] = ACTIONS(2981), - [anon_sym___cdecl] = ACTIONS(2981), - [anon_sym___clrcall] = ACTIONS(2981), - [anon_sym___stdcall] = ACTIONS(2981), - [anon_sym___fastcall] = ACTIONS(2981), - [anon_sym___thiscall] = ACTIONS(2981), - [anon_sym___vectorcall] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_case] = ACTIONS(2981), - [anon_sym_default] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_do] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym___try] = ACTIONS(2981), - [anon_sym___leave] = ACTIONS(2981), - [anon_sym_not] = ACTIONS(2981), - [anon_sym_compl] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_sizeof] = ACTIONS(2981), - [anon_sym___alignof__] = ACTIONS(2981), - [anon_sym___alignof] = ACTIONS(2981), - [anon_sym__alignof] = ACTIONS(2981), - [anon_sym_alignof] = ACTIONS(2981), - [anon_sym__Alignof] = ACTIONS(2981), - [anon_sym_offsetof] = ACTIONS(2981), - [anon_sym__Generic] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym___asm__] = ACTIONS(2981), - [sym_number_literal] = ACTIONS(2983), - [anon_sym_L_SQUOTE] = ACTIONS(2983), - [anon_sym_u_SQUOTE] = ACTIONS(2983), - [anon_sym_U_SQUOTE] = ACTIONS(2983), - [anon_sym_u8_SQUOTE] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2983), - [anon_sym_L_DQUOTE] = ACTIONS(2983), - [anon_sym_u_DQUOTE] = ACTIONS(2983), - [anon_sym_U_DQUOTE] = ACTIONS(2983), - [anon_sym_u8_DQUOTE] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [anon_sym_NULL] = ACTIONS(2981), - [anon_sym_nullptr] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_delete] = ACTIONS(2981), - [anon_sym_throw] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2981), - [anon_sym_using] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), - [anon_sym_concept] = ACTIONS(2981), - [anon_sym_co_return] = ACTIONS(2981), - [anon_sym_co_yield] = ACTIONS(2981), - [anon_sym_R_DQUOTE] = ACTIONS(2983), - [anon_sym_LR_DQUOTE] = ACTIONS(2983), - [anon_sym_uR_DQUOTE] = ACTIONS(2983), - [anon_sym_UR_DQUOTE] = ACTIONS(2983), - [anon_sym_u8R_DQUOTE] = ACTIONS(2983), - [anon_sym_co_await] = ACTIONS(2981), - [anon_sym_new] = ACTIONS(2981), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2981), + [491] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [505] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [aux_sym_preproc_else_token1] = ACTIONS(2859), - [aux_sym_preproc_elif_token1] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [492] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [506] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym___cdecl] = ACTIONS(2144), - [anon_sym___clrcall] = ACTIONS(2144), - [anon_sym___stdcall] = ACTIONS(2144), - [anon_sym___fastcall] = ACTIONS(2144), - [anon_sym___thiscall] = ACTIONS(2144), - [anon_sym___vectorcall] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym___try] = ACTIONS(2144), - [anon_sym___leave] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2144), - [anon_sym_compl] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2144), - [anon_sym___alignof__] = ACTIONS(2144), - [anon_sym___alignof] = ACTIONS(2144), - [anon_sym__alignof] = ACTIONS(2144), - [anon_sym_alignof] = ACTIONS(2144), - [anon_sym__Alignof] = ACTIONS(2144), - [anon_sym_offsetof] = ACTIONS(2144), - [anon_sym__Generic] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym___asm__] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2142), - [anon_sym_L_SQUOTE] = ACTIONS(2142), - [anon_sym_u_SQUOTE] = ACTIONS(2142), - [anon_sym_U_SQUOTE] = ACTIONS(2142), - [anon_sym_u8_SQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_L_DQUOTE] = ACTIONS(2142), - [anon_sym_u_DQUOTE] = ACTIONS(2142), - [anon_sym_U_DQUOTE] = ACTIONS(2142), - [anon_sym_u8_DQUOTE] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [anon_sym_NULL] = ACTIONS(2144), - [anon_sym_nullptr] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_delete] = ACTIONS(2144), - [anon_sym_throw] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_concept] = ACTIONS(2144), - [anon_sym_co_return] = ACTIONS(2144), - [anon_sym_co_yield] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_R_DQUOTE] = ACTIONS(2142), - [anon_sym_LR_DQUOTE] = ACTIONS(2142), - [anon_sym_uR_DQUOTE] = ACTIONS(2142), - [anon_sym_UR_DQUOTE] = ACTIONS(2142), - [anon_sym_u8R_DQUOTE] = ACTIONS(2142), - [anon_sym_co_await] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2144), - [anon_sym_requires] = ACTIONS(2144), - [sym_this] = ACTIONS(2144), + [493] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [507] = { - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_include_token1] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token2] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [aux_sym_preproc_else_token1] = ACTIONS(3219), - [aux_sym_preproc_elif_token1] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym___cdecl] = ACTIONS(3219), - [anon_sym___clrcall] = ACTIONS(3219), - [anon_sym___stdcall] = ACTIONS(3219), - [anon_sym___fastcall] = ACTIONS(3219), - [anon_sym___thiscall] = ACTIONS(3219), - [anon_sym___vectorcall] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym___try] = ACTIONS(3219), - [anon_sym___leave] = ACTIONS(3219), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_compl] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3219), - [anon_sym___alignof__] = ACTIONS(3219), - [anon_sym___alignof] = ACTIONS(3219), - [anon_sym__alignof] = ACTIONS(3219), - [anon_sym_alignof] = ACTIONS(3219), - [anon_sym__Alignof] = ACTIONS(3219), - [anon_sym_offsetof] = ACTIONS(3219), - [anon_sym__Generic] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym___asm__] = ACTIONS(3219), - [sym_number_literal] = ACTIONS(3221), - [anon_sym_L_SQUOTE] = ACTIONS(3221), - [anon_sym_u_SQUOTE] = ACTIONS(3221), - [anon_sym_U_SQUOTE] = ACTIONS(3221), - [anon_sym_u8_SQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_L_DQUOTE] = ACTIONS(3221), - [anon_sym_u_DQUOTE] = ACTIONS(3221), - [anon_sym_U_DQUOTE] = ACTIONS(3221), - [anon_sym_u8_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [anon_sym_NULL] = ACTIONS(3219), - [anon_sym_nullptr] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_explicit] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_operator] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_static_assert] = ACTIONS(3219), - [anon_sym_concept] = ACTIONS(3219), - [anon_sym_co_return] = ACTIONS(3219), - [anon_sym_co_yield] = ACTIONS(3219), - [anon_sym_R_DQUOTE] = ACTIONS(3221), - [anon_sym_LR_DQUOTE] = ACTIONS(3221), - [anon_sym_uR_DQUOTE] = ACTIONS(3221), - [anon_sym_UR_DQUOTE] = ACTIONS(3221), - [anon_sym_u8R_DQUOTE] = ACTIONS(3221), - [anon_sym_co_await] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_requires] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), + [494] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [508] = { - [sym_else_clause] = STATE(749), - [sym_identifier] = ACTIONS(2840), - [aux_sym_preproc_include_token1] = ACTIONS(2840), - [aux_sym_preproc_def_token1] = ACTIONS(2840), - [aux_sym_preproc_if_token1] = ACTIONS(2840), - [aux_sym_preproc_if_token2] = ACTIONS(2840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), - [sym_preproc_directive] = ACTIONS(2840), - [anon_sym_LPAREN2] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2842), - [anon_sym___extension__] = ACTIONS(2840), - [anon_sym_typedef] = ACTIONS(2840), - [anon_sym_extern] = ACTIONS(2840), - [anon_sym___attribute__] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2842), - [anon_sym___declspec] = ACTIONS(2840), - [anon_sym___based] = ACTIONS(2840), - [anon_sym___cdecl] = ACTIONS(2840), - [anon_sym___clrcall] = ACTIONS(2840), - [anon_sym___stdcall] = ACTIONS(2840), - [anon_sym___fastcall] = ACTIONS(2840), - [anon_sym___thiscall] = ACTIONS(2840), - [anon_sym___vectorcall] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_signed] = ACTIONS(2840), - [anon_sym_unsigned] = ACTIONS(2840), - [anon_sym_long] = ACTIONS(2840), - [anon_sym_short] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_register] = ACTIONS(2840), - [anon_sym_inline] = ACTIONS(2840), - [anon_sym___inline] = ACTIONS(2840), - [anon_sym___inline__] = ACTIONS(2840), - [anon_sym___forceinline] = ACTIONS(2840), - [anon_sym_thread_local] = ACTIONS(2840), - [anon_sym___thread] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_constexpr] = ACTIONS(2840), - [anon_sym_volatile] = ACTIONS(2840), - [anon_sym_restrict] = ACTIONS(2840), - [anon_sym___restrict__] = ACTIONS(2840), - [anon_sym__Atomic] = ACTIONS(2840), - [anon_sym__Noreturn] = ACTIONS(2840), - [anon_sym_noreturn] = ACTIONS(2840), - [anon_sym_mutable] = ACTIONS(2840), - [anon_sym_constinit] = ACTIONS(2840), - [anon_sym_consteval] = ACTIONS(2840), - [sym_primitive_type] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_else] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(2840), - [anon_sym_case] = ACTIONS(2840), - [anon_sym_default] = ACTIONS(2840), - [anon_sym_while] = ACTIONS(2840), - [anon_sym_do] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym___try] = ACTIONS(2840), - [anon_sym___leave] = ACTIONS(2840), - [anon_sym_not] = ACTIONS(2840), - [anon_sym_compl] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_sizeof] = ACTIONS(2840), - [anon_sym___alignof__] = ACTIONS(2840), - [anon_sym___alignof] = ACTIONS(2840), - [anon_sym__alignof] = ACTIONS(2840), - [anon_sym_alignof] = ACTIONS(2840), - [anon_sym__Alignof] = ACTIONS(2840), - [anon_sym_offsetof] = ACTIONS(2840), - [anon_sym__Generic] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym___asm__] = ACTIONS(2840), - [sym_number_literal] = ACTIONS(2842), - [anon_sym_L_SQUOTE] = ACTIONS(2842), - [anon_sym_u_SQUOTE] = ACTIONS(2842), - [anon_sym_U_SQUOTE] = ACTIONS(2842), - [anon_sym_u8_SQUOTE] = ACTIONS(2842), - [anon_sym_SQUOTE] = ACTIONS(2842), - [anon_sym_L_DQUOTE] = ACTIONS(2842), - [anon_sym_u_DQUOTE] = ACTIONS(2842), - [anon_sym_U_DQUOTE] = ACTIONS(2842), - [anon_sym_u8_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [anon_sym_NULL] = ACTIONS(2840), - [anon_sym_nullptr] = ACTIONS(2840), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2840), - [anon_sym_decltype] = ACTIONS(2840), - [anon_sym_virtual] = ACTIONS(2840), - [anon_sym_alignas] = ACTIONS(2840), - [anon_sym_explicit] = ACTIONS(2840), - [anon_sym_typename] = ACTIONS(2840), - [anon_sym_template] = ACTIONS(2840), - [anon_sym_operator] = ACTIONS(2840), - [anon_sym_try] = ACTIONS(2840), - [anon_sym_delete] = ACTIONS(2840), - [anon_sym_throw] = ACTIONS(2840), - [anon_sym_namespace] = ACTIONS(2840), - [anon_sym_using] = ACTIONS(2840), - [anon_sym_static_assert] = ACTIONS(2840), - [anon_sym_concept] = ACTIONS(2840), - [anon_sym_co_return] = ACTIONS(2840), - [anon_sym_co_yield] = ACTIONS(2840), - [anon_sym_R_DQUOTE] = ACTIONS(2842), - [anon_sym_LR_DQUOTE] = ACTIONS(2842), - [anon_sym_uR_DQUOTE] = ACTIONS(2842), - [anon_sym_UR_DQUOTE] = ACTIONS(2842), - [anon_sym_u8R_DQUOTE] = ACTIONS(2842), - [anon_sym_co_await] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2840), - [anon_sym_requires] = ACTIONS(2840), - [sym_this] = ACTIONS(2840), + [495] = { + [sym_catch_clause] = STATE(379), + [aux_sym_constructor_try_statement_repeat1] = STATE(379), + [sym_identifier] = ACTIONS(2838), + [aux_sym_preproc_include_token1] = ACTIONS(2838), + [aux_sym_preproc_def_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), + [sym_preproc_directive] = ACTIONS(2838), + [anon_sym_LPAREN2] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_PLUS] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym___extension__] = ACTIONS(2838), + [anon_sym_typedef] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym___attribute__] = ACTIONS(2838), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), + [anon_sym___declspec] = ACTIONS(2838), + [anon_sym___based] = ACTIONS(2838), + [anon_sym___cdecl] = ACTIONS(2838), + [anon_sym___clrcall] = ACTIONS(2838), + [anon_sym___stdcall] = ACTIONS(2838), + [anon_sym___fastcall] = ACTIONS(2838), + [anon_sym___thiscall] = ACTIONS(2838), + [anon_sym___vectorcall] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2840), + [anon_sym_signed] = ACTIONS(2838), + [anon_sym_unsigned] = ACTIONS(2838), + [anon_sym_long] = ACTIONS(2838), + [anon_sym_short] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_register] = ACTIONS(2838), + [anon_sym_inline] = ACTIONS(2838), + [anon_sym___inline] = ACTIONS(2838), + [anon_sym___inline__] = ACTIONS(2838), + [anon_sym___forceinline] = ACTIONS(2838), + [anon_sym_thread_local] = ACTIONS(2838), + [anon_sym___thread] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_constexpr] = ACTIONS(2838), + [anon_sym_volatile] = ACTIONS(2838), + [anon_sym_restrict] = ACTIONS(2838), + [anon_sym___restrict__] = ACTIONS(2838), + [anon_sym__Atomic] = ACTIONS(2838), + [anon_sym__Noreturn] = ACTIONS(2838), + [anon_sym_noreturn] = ACTIONS(2838), + [anon_sym_mutable] = ACTIONS(2838), + [anon_sym_constinit] = ACTIONS(2838), + [anon_sym_consteval] = ACTIONS(2838), + [sym_primitive_type] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_class] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_switch] = ACTIONS(2838), + [anon_sym_case] = ACTIONS(2838), + [anon_sym_default] = ACTIONS(2838), + [anon_sym_while] = ACTIONS(2838), + [anon_sym_do] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_goto] = ACTIONS(2838), + [anon_sym___try] = ACTIONS(2838), + [anon_sym___leave] = ACTIONS(2838), + [anon_sym_not] = ACTIONS(2838), + [anon_sym_compl] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_sizeof] = ACTIONS(2838), + [anon_sym___alignof__] = ACTIONS(2838), + [anon_sym___alignof] = ACTIONS(2838), + [anon_sym__alignof] = ACTIONS(2838), + [anon_sym_alignof] = ACTIONS(2838), + [anon_sym__Alignof] = ACTIONS(2838), + [anon_sym_offsetof] = ACTIONS(2838), + [anon_sym__Generic] = ACTIONS(2838), + [anon_sym_asm] = ACTIONS(2838), + [anon_sym___asm__] = ACTIONS(2838), + [sym_number_literal] = ACTIONS(2840), + [anon_sym_L_SQUOTE] = ACTIONS(2840), + [anon_sym_u_SQUOTE] = ACTIONS(2840), + [anon_sym_U_SQUOTE] = ACTIONS(2840), + [anon_sym_u8_SQUOTE] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2840), + [anon_sym_L_DQUOTE] = ACTIONS(2840), + [anon_sym_u_DQUOTE] = ACTIONS(2840), + [anon_sym_U_DQUOTE] = ACTIONS(2840), + [anon_sym_u8_DQUOTE] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2840), + [sym_true] = ACTIONS(2838), + [sym_false] = ACTIONS(2838), + [anon_sym_NULL] = ACTIONS(2838), + [anon_sym_nullptr] = ACTIONS(2838), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2838), + [anon_sym_decltype] = ACTIONS(2838), + [anon_sym_virtual] = ACTIONS(2838), + [anon_sym_alignas] = ACTIONS(2838), + [anon_sym_explicit] = ACTIONS(2838), + [anon_sym_typename] = ACTIONS(2838), + [anon_sym_template] = ACTIONS(2838), + [anon_sym_operator] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2838), + [anon_sym_delete] = ACTIONS(2838), + [anon_sym_throw] = ACTIONS(2838), + [anon_sym_namespace] = ACTIONS(2838), + [anon_sym_using] = ACTIONS(2838), + [anon_sym_static_assert] = ACTIONS(2838), + [anon_sym_concept] = ACTIONS(2838), + [anon_sym_co_return] = ACTIONS(2838), + [anon_sym_co_yield] = ACTIONS(2838), + [anon_sym_catch] = ACTIONS(3094), + [anon_sym_R_DQUOTE] = ACTIONS(2840), + [anon_sym_LR_DQUOTE] = ACTIONS(2840), + [anon_sym_uR_DQUOTE] = ACTIONS(2840), + [anon_sym_UR_DQUOTE] = ACTIONS(2840), + [anon_sym_u8R_DQUOTE] = ACTIONS(2840), + [anon_sym_co_await] = ACTIONS(2838), + [anon_sym_new] = ACTIONS(2838), + [anon_sym_requires] = ACTIONS(2838), + [sym_this] = ACTIONS(2838), }, - [509] = { - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_include_token1] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token2] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [aux_sym_preproc_else_token1] = ACTIONS(3219), - [aux_sym_preproc_elif_token1] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym___cdecl] = ACTIONS(3219), - [anon_sym___clrcall] = ACTIONS(3219), - [anon_sym___stdcall] = ACTIONS(3219), - [anon_sym___fastcall] = ACTIONS(3219), - [anon_sym___thiscall] = ACTIONS(3219), - [anon_sym___vectorcall] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym___try] = ACTIONS(3219), - [anon_sym___leave] = ACTIONS(3219), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_compl] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3219), - [anon_sym___alignof__] = ACTIONS(3219), - [anon_sym___alignof] = ACTIONS(3219), - [anon_sym__alignof] = ACTIONS(3219), - [anon_sym_alignof] = ACTIONS(3219), - [anon_sym__Alignof] = ACTIONS(3219), - [anon_sym_offsetof] = ACTIONS(3219), - [anon_sym__Generic] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym___asm__] = ACTIONS(3219), - [sym_number_literal] = ACTIONS(3221), - [anon_sym_L_SQUOTE] = ACTIONS(3221), - [anon_sym_u_SQUOTE] = ACTIONS(3221), - [anon_sym_U_SQUOTE] = ACTIONS(3221), - [anon_sym_u8_SQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_L_DQUOTE] = ACTIONS(3221), - [anon_sym_u_DQUOTE] = ACTIONS(3221), - [anon_sym_U_DQUOTE] = ACTIONS(3221), - [anon_sym_u8_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [anon_sym_NULL] = ACTIONS(3219), - [anon_sym_nullptr] = ACTIONS(3219), + [496] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [497] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [498] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [499] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_explicit] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_operator] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_static_assert] = ACTIONS(3219), - [anon_sym_concept] = ACTIONS(3219), - [anon_sym_co_return] = ACTIONS(3219), - [anon_sym_co_yield] = ACTIONS(3219), - [anon_sym_R_DQUOTE] = ACTIONS(3221), - [anon_sym_LR_DQUOTE] = ACTIONS(3221), - [anon_sym_uR_DQUOTE] = ACTIONS(3221), - [anon_sym_UR_DQUOTE] = ACTIONS(3221), - [anon_sym_u8R_DQUOTE] = ACTIONS(3221), - [anon_sym_co_await] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_requires] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [510] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4756), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7469), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7690), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [500] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [501] = { + [sym_identifier] = ACTIONS(2901), + [aux_sym_preproc_include_token1] = ACTIONS(2901), + [aux_sym_preproc_def_token1] = ACTIONS(2901), + [aux_sym_preproc_if_token1] = ACTIONS(2901), + [aux_sym_preproc_if_token2] = ACTIONS(2901), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), + [aux_sym_preproc_else_token1] = ACTIONS(2901), + [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [sym_preproc_directive] = ACTIONS(2901), + [anon_sym_LPAREN2] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2903), + [anon_sym___extension__] = ACTIONS(2901), + [anon_sym_typedef] = ACTIONS(2901), + [anon_sym_extern] = ACTIONS(2901), + [anon_sym___attribute__] = ACTIONS(2901), + [anon_sym_COLON_COLON] = ACTIONS(2903), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), + [anon_sym___declspec] = ACTIONS(2901), + [anon_sym___based] = ACTIONS(2901), + [anon_sym___cdecl] = ACTIONS(2901), + [anon_sym___clrcall] = ACTIONS(2901), + [anon_sym___stdcall] = ACTIONS(2901), + [anon_sym___fastcall] = ACTIONS(2901), + [anon_sym___thiscall] = ACTIONS(2901), + [anon_sym___vectorcall] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_signed] = ACTIONS(2901), + [anon_sym_unsigned] = ACTIONS(2901), + [anon_sym_long] = ACTIONS(2901), + [anon_sym_short] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_static] = ACTIONS(2901), + [anon_sym_register] = ACTIONS(2901), + [anon_sym_inline] = ACTIONS(2901), + [anon_sym___inline] = ACTIONS(2901), + [anon_sym___inline__] = ACTIONS(2901), + [anon_sym___forceinline] = ACTIONS(2901), + [anon_sym_thread_local] = ACTIONS(2901), + [anon_sym___thread] = ACTIONS(2901), + [anon_sym_const] = ACTIONS(2901), + [anon_sym_constexpr] = ACTIONS(2901), + [anon_sym_volatile] = ACTIONS(2901), + [anon_sym_restrict] = ACTIONS(2901), + [anon_sym___restrict__] = ACTIONS(2901), + [anon_sym__Atomic] = ACTIONS(2901), + [anon_sym__Noreturn] = ACTIONS(2901), + [anon_sym_noreturn] = ACTIONS(2901), + [anon_sym_mutable] = ACTIONS(2901), + [anon_sym_constinit] = ACTIONS(2901), + [anon_sym_consteval] = ACTIONS(2901), + [sym_primitive_type] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_class] = ACTIONS(2901), + [anon_sym_struct] = ACTIONS(2901), + [anon_sym_union] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_else] = ACTIONS(2901), + [anon_sym_switch] = ACTIONS(2901), + [anon_sym_case] = ACTIONS(2901), + [anon_sym_default] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_do] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_goto] = ACTIONS(2901), + [anon_sym___try] = ACTIONS(2901), + [anon_sym___leave] = ACTIONS(2901), + [anon_sym_not] = ACTIONS(2901), + [anon_sym_compl] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_sizeof] = ACTIONS(2901), + [anon_sym___alignof__] = ACTIONS(2901), + [anon_sym___alignof] = ACTIONS(2901), + [anon_sym__alignof] = ACTIONS(2901), + [anon_sym_alignof] = ACTIONS(2901), + [anon_sym__Alignof] = ACTIONS(2901), + [anon_sym_offsetof] = ACTIONS(2901), + [anon_sym__Generic] = ACTIONS(2901), + [anon_sym_asm] = ACTIONS(2901), + [anon_sym___asm__] = ACTIONS(2901), + [sym_number_literal] = ACTIONS(2903), + [anon_sym_L_SQUOTE] = ACTIONS(2903), + [anon_sym_u_SQUOTE] = ACTIONS(2903), + [anon_sym_U_SQUOTE] = ACTIONS(2903), + [anon_sym_u8_SQUOTE] = ACTIONS(2903), + [anon_sym_SQUOTE] = ACTIONS(2903), + [anon_sym_L_DQUOTE] = ACTIONS(2903), + [anon_sym_u_DQUOTE] = ACTIONS(2903), + [anon_sym_U_DQUOTE] = ACTIONS(2903), + [anon_sym_u8_DQUOTE] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2903), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [anon_sym_NULL] = ACTIONS(2901), + [anon_sym_nullptr] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2901), + [anon_sym_decltype] = ACTIONS(2901), + [anon_sym_virtual] = ACTIONS(2901), + [anon_sym_alignas] = ACTIONS(2901), + [anon_sym_explicit] = ACTIONS(2901), + [anon_sym_typename] = ACTIONS(2901), + [anon_sym_template] = ACTIONS(2901), + [anon_sym_operator] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2901), + [anon_sym_delete] = ACTIONS(2901), + [anon_sym_throw] = ACTIONS(2901), + [anon_sym_namespace] = ACTIONS(2901), + [anon_sym_using] = ACTIONS(2901), + [anon_sym_static_assert] = ACTIONS(2901), + [anon_sym_concept] = ACTIONS(2901), + [anon_sym_co_return] = ACTIONS(2901), + [anon_sym_co_yield] = ACTIONS(2901), + [anon_sym_R_DQUOTE] = ACTIONS(2903), + [anon_sym_LR_DQUOTE] = ACTIONS(2903), + [anon_sym_uR_DQUOTE] = ACTIONS(2903), + [anon_sym_UR_DQUOTE] = ACTIONS(2903), + [anon_sym_u8R_DQUOTE] = ACTIONS(2903), + [anon_sym_co_await] = ACTIONS(2901), + [anon_sym_new] = ACTIONS(2901), + [anon_sym_requires] = ACTIONS(2901), + [sym_this] = ACTIONS(2901), + }, + [502] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [503] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [aux_sym_preproc_else_token1] = ACTIONS(2871), + [aux_sym_preproc_elif_token1] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [504] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [aux_sym_preproc_else_token1] = ACTIONS(2867), + [aux_sym_preproc_elif_token1] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [505] = { + [sym_identifier] = ACTIONS(2136), + [aux_sym_preproc_include_token1] = ACTIONS(2136), + [aux_sym_preproc_def_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token2] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2136), + [sym_preproc_directive] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym___extension__] = ACTIONS(2136), + [anon_sym_typedef] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym___attribute__] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2134), + [anon_sym___declspec] = ACTIONS(2136), + [anon_sym___based] = ACTIONS(2136), + [anon_sym___cdecl] = ACTIONS(2136), + [anon_sym___clrcall] = ACTIONS(2136), + [anon_sym___stdcall] = ACTIONS(2136), + [anon_sym___fastcall] = ACTIONS(2136), + [anon_sym___thiscall] = ACTIONS(2136), + [anon_sym___vectorcall] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_signed] = ACTIONS(2136), + [anon_sym_unsigned] = ACTIONS(2136), + [anon_sym_long] = ACTIONS(2136), + [anon_sym_short] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_register] = ACTIONS(2136), + [anon_sym_inline] = ACTIONS(2136), + [anon_sym___inline] = ACTIONS(2136), + [anon_sym___inline__] = ACTIONS(2136), + [anon_sym___forceinline] = ACTIONS(2136), + [anon_sym_thread_local] = ACTIONS(2136), + [anon_sym___thread] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_constexpr] = ACTIONS(2136), + [anon_sym_volatile] = ACTIONS(2136), + [anon_sym_restrict] = ACTIONS(2136), + [anon_sym___restrict__] = ACTIONS(2136), + [anon_sym__Atomic] = ACTIONS(2136), + [anon_sym__Noreturn] = ACTIONS(2136), + [anon_sym_noreturn] = ACTIONS(2136), + [anon_sym_mutable] = ACTIONS(2136), + [anon_sym_constinit] = ACTIONS(2136), + [anon_sym_consteval] = ACTIONS(2136), + [sym_primitive_type] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_class] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_else] = ACTIONS(2136), + [anon_sym_switch] = ACTIONS(2136), + [anon_sym_case] = ACTIONS(2136), + [anon_sym_default] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_do] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_return] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_goto] = ACTIONS(2136), + [anon_sym___try] = ACTIONS(2136), + [anon_sym___leave] = ACTIONS(2136), + [anon_sym_not] = ACTIONS(2136), + [anon_sym_compl] = ACTIONS(2136), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2136), + [anon_sym___alignof__] = ACTIONS(2136), + [anon_sym___alignof] = ACTIONS(2136), + [anon_sym__alignof] = ACTIONS(2136), + [anon_sym_alignof] = ACTIONS(2136), + [anon_sym__Alignof] = ACTIONS(2136), + [anon_sym_offsetof] = ACTIONS(2136), + [anon_sym__Generic] = ACTIONS(2136), + [anon_sym_asm] = ACTIONS(2136), + [anon_sym___asm__] = ACTIONS(2136), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2136), + [sym_false] = ACTIONS(2136), + [anon_sym_NULL] = ACTIONS(2136), + [anon_sym_nullptr] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2136), + [anon_sym_decltype] = ACTIONS(2136), + [anon_sym_virtual] = ACTIONS(2136), + [anon_sym_alignas] = ACTIONS(2136), + [anon_sym_explicit] = ACTIONS(2136), + [anon_sym_typename] = ACTIONS(2136), + [anon_sym_template] = ACTIONS(2136), + [anon_sym_operator] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2136), + [anon_sym_delete] = ACTIONS(2136), + [anon_sym_throw] = ACTIONS(2136), + [anon_sym_namespace] = ACTIONS(2136), + [anon_sym_using] = ACTIONS(2136), + [anon_sym_static_assert] = ACTIONS(2136), + [anon_sym_concept] = ACTIONS(2136), + [anon_sym_co_return] = ACTIONS(2136), + [anon_sym_co_yield] = ACTIONS(2136), + [anon_sym_catch] = ACTIONS(2136), + [anon_sym_R_DQUOTE] = ACTIONS(2134), + [anon_sym_LR_DQUOTE] = ACTIONS(2134), + [anon_sym_uR_DQUOTE] = ACTIONS(2134), + [anon_sym_UR_DQUOTE] = ACTIONS(2134), + [anon_sym_u8R_DQUOTE] = ACTIONS(2134), + [anon_sym_co_await] = ACTIONS(2136), + [anon_sym_new] = ACTIONS(2136), + [anon_sym_requires] = ACTIONS(2136), + [sym_this] = ACTIONS(2136), + }, + [506] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4792), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7407), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7858), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -161435,263 +161230,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3376), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [511] = { - [sym_identifier] = ACTIONS(3090), - [aux_sym_preproc_include_token1] = ACTIONS(3090), - [aux_sym_preproc_def_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token2] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), - [aux_sym_preproc_else_token1] = ACTIONS(3090), - [aux_sym_preproc_elif_token1] = ACTIONS(3090), - [sym_preproc_directive] = ACTIONS(3090), - [anon_sym_LPAREN2] = ACTIONS(3092), - [anon_sym_BANG] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_SEMI] = ACTIONS(3092), - [anon_sym___extension__] = ACTIONS(3090), - [anon_sym_typedef] = ACTIONS(3090), - [anon_sym_extern] = ACTIONS(3090), - [anon_sym___attribute__] = ACTIONS(3090), - [anon_sym_COLON_COLON] = ACTIONS(3092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), - [anon_sym___declspec] = ACTIONS(3090), - [anon_sym___based] = ACTIONS(3090), - [anon_sym___cdecl] = ACTIONS(3090), - [anon_sym___clrcall] = ACTIONS(3090), - [anon_sym___stdcall] = ACTIONS(3090), - [anon_sym___fastcall] = ACTIONS(3090), - [anon_sym___thiscall] = ACTIONS(3090), - [anon_sym___vectorcall] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_signed] = ACTIONS(3090), - [anon_sym_unsigned] = ACTIONS(3090), - [anon_sym_long] = ACTIONS(3090), - [anon_sym_short] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3090), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_register] = ACTIONS(3090), - [anon_sym_inline] = ACTIONS(3090), - [anon_sym___inline] = ACTIONS(3090), - [anon_sym___inline__] = ACTIONS(3090), - [anon_sym___forceinline] = ACTIONS(3090), - [anon_sym_thread_local] = ACTIONS(3090), - [anon_sym___thread] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_constexpr] = ACTIONS(3090), - [anon_sym_volatile] = ACTIONS(3090), - [anon_sym_restrict] = ACTIONS(3090), - [anon_sym___restrict__] = ACTIONS(3090), - [anon_sym__Atomic] = ACTIONS(3090), - [anon_sym__Noreturn] = ACTIONS(3090), - [anon_sym_noreturn] = ACTIONS(3090), - [anon_sym_mutable] = ACTIONS(3090), - [anon_sym_constinit] = ACTIONS(3090), - [anon_sym_consteval] = ACTIONS(3090), - [sym_primitive_type] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_class] = ACTIONS(3090), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_switch] = ACTIONS(3090), - [anon_sym_case] = ACTIONS(3090), - [anon_sym_default] = ACTIONS(3090), - [anon_sym_while] = ACTIONS(3090), - [anon_sym_do] = ACTIONS(3090), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_goto] = ACTIONS(3090), - [anon_sym___try] = ACTIONS(3090), - [anon_sym___leave] = ACTIONS(3090), - [anon_sym_not] = ACTIONS(3090), - [anon_sym_compl] = ACTIONS(3090), - [anon_sym_DASH_DASH] = ACTIONS(3092), - [anon_sym_PLUS_PLUS] = ACTIONS(3092), - [anon_sym_sizeof] = ACTIONS(3090), - [anon_sym___alignof__] = ACTIONS(3090), - [anon_sym___alignof] = ACTIONS(3090), - [anon_sym__alignof] = ACTIONS(3090), - [anon_sym_alignof] = ACTIONS(3090), - [anon_sym__Alignof] = ACTIONS(3090), - [anon_sym_offsetof] = ACTIONS(3090), - [anon_sym__Generic] = ACTIONS(3090), - [anon_sym_asm] = ACTIONS(3090), - [anon_sym___asm__] = ACTIONS(3090), - [sym_number_literal] = ACTIONS(3092), - [anon_sym_L_SQUOTE] = ACTIONS(3092), - [anon_sym_u_SQUOTE] = ACTIONS(3092), - [anon_sym_U_SQUOTE] = ACTIONS(3092), - [anon_sym_u8_SQUOTE] = ACTIONS(3092), - [anon_sym_SQUOTE] = ACTIONS(3092), - [anon_sym_L_DQUOTE] = ACTIONS(3092), - [anon_sym_u_DQUOTE] = ACTIONS(3092), - [anon_sym_U_DQUOTE] = ACTIONS(3092), - [anon_sym_u8_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [anon_sym_NULL] = ACTIONS(3090), - [anon_sym_nullptr] = ACTIONS(3090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3090), - [anon_sym_decltype] = ACTIONS(3090), - [anon_sym_virtual] = ACTIONS(3090), - [anon_sym_alignas] = ACTIONS(3090), - [anon_sym_explicit] = ACTIONS(3090), - [anon_sym_typename] = ACTIONS(3090), - [anon_sym_template] = ACTIONS(3090), - [anon_sym_operator] = ACTIONS(3090), - [anon_sym_try] = ACTIONS(3090), - [anon_sym_delete] = ACTIONS(3090), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_namespace] = ACTIONS(3090), - [anon_sym_using] = ACTIONS(3090), - [anon_sym_static_assert] = ACTIONS(3090), - [anon_sym_concept] = ACTIONS(3090), - [anon_sym_co_return] = ACTIONS(3090), - [anon_sym_co_yield] = ACTIONS(3090), - [anon_sym_R_DQUOTE] = ACTIONS(3092), - [anon_sym_LR_DQUOTE] = ACTIONS(3092), - [anon_sym_uR_DQUOTE] = ACTIONS(3092), - [anon_sym_UR_DQUOTE] = ACTIONS(3092), - [anon_sym_u8R_DQUOTE] = ACTIONS(3092), - [anon_sym_co_await] = ACTIONS(3090), - [anon_sym_new] = ACTIONS(3090), - [anon_sym_requires] = ACTIONS(3090), - [sym_this] = ACTIONS(3090), + [anon_sym_GT2] = ACTIONS(3378), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [512] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4830), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7571), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7636), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [507] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4855), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7587), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7806), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -161703,2005 +161364,1469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3388), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [513] = { - [sym_identifier] = ACTIONS(3108), - [aux_sym_preproc_include_token1] = ACTIONS(3108), - [aux_sym_preproc_def_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token2] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3108), - [aux_sym_preproc_else_token1] = ACTIONS(3108), - [aux_sym_preproc_elif_token1] = ACTIONS(3108), - [sym_preproc_directive] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym___extension__] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(3108), - [anon_sym_extern] = ACTIONS(3108), - [anon_sym___attribute__] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), - [anon_sym___declspec] = ACTIONS(3108), - [anon_sym___based] = ACTIONS(3108), - [anon_sym___cdecl] = ACTIONS(3108), - [anon_sym___clrcall] = ACTIONS(3108), - [anon_sym___stdcall] = ACTIONS(3108), - [anon_sym___fastcall] = ACTIONS(3108), - [anon_sym___thiscall] = ACTIONS(3108), - [anon_sym___vectorcall] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_signed] = ACTIONS(3108), - [anon_sym_unsigned] = ACTIONS(3108), - [anon_sym_long] = ACTIONS(3108), - [anon_sym_short] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3108), - [anon_sym_register] = ACTIONS(3108), - [anon_sym_inline] = ACTIONS(3108), - [anon_sym___inline] = ACTIONS(3108), - [anon_sym___inline__] = ACTIONS(3108), - [anon_sym___forceinline] = ACTIONS(3108), - [anon_sym_thread_local] = ACTIONS(3108), - [anon_sym___thread] = ACTIONS(3108), - [anon_sym_const] = ACTIONS(3108), - [anon_sym_constexpr] = ACTIONS(3108), - [anon_sym_volatile] = ACTIONS(3108), - [anon_sym_restrict] = ACTIONS(3108), - [anon_sym___restrict__] = ACTIONS(3108), - [anon_sym__Atomic] = ACTIONS(3108), - [anon_sym__Noreturn] = ACTIONS(3108), - [anon_sym_noreturn] = ACTIONS(3108), - [anon_sym_mutable] = ACTIONS(3108), - [anon_sym_constinit] = ACTIONS(3108), - [anon_sym_consteval] = ACTIONS(3108), - [sym_primitive_type] = ACTIONS(3108), - [anon_sym_enum] = ACTIONS(3108), - [anon_sym_class] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3108), - [anon_sym_union] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_switch] = ACTIONS(3108), - [anon_sym_case] = ACTIONS(3108), - [anon_sym_default] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_break] = ACTIONS(3108), - [anon_sym_continue] = ACTIONS(3108), - [anon_sym_goto] = ACTIONS(3108), - [anon_sym___try] = ACTIONS(3108), - [anon_sym___leave] = ACTIONS(3108), - [anon_sym_not] = ACTIONS(3108), - [anon_sym_compl] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_sizeof] = ACTIONS(3108), - [anon_sym___alignof__] = ACTIONS(3108), - [anon_sym___alignof] = ACTIONS(3108), - [anon_sym__alignof] = ACTIONS(3108), - [anon_sym_alignof] = ACTIONS(3108), - [anon_sym__Alignof] = ACTIONS(3108), - [anon_sym_offsetof] = ACTIONS(3108), - [anon_sym__Generic] = ACTIONS(3108), - [anon_sym_asm] = ACTIONS(3108), - [anon_sym___asm__] = ACTIONS(3108), - [sym_number_literal] = ACTIONS(3110), - [anon_sym_L_SQUOTE] = ACTIONS(3110), - [anon_sym_u_SQUOTE] = ACTIONS(3110), - [anon_sym_U_SQUOTE] = ACTIONS(3110), - [anon_sym_u8_SQUOTE] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3110), - [anon_sym_L_DQUOTE] = ACTIONS(3110), - [anon_sym_u_DQUOTE] = ACTIONS(3110), - [anon_sym_U_DQUOTE] = ACTIONS(3110), - [anon_sym_u8_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE] = ACTIONS(3110), - [sym_true] = ACTIONS(3108), - [sym_false] = ACTIONS(3108), - [anon_sym_NULL] = ACTIONS(3108), - [anon_sym_nullptr] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3108), - [anon_sym_decltype] = ACTIONS(3108), - [anon_sym_virtual] = ACTIONS(3108), - [anon_sym_alignas] = ACTIONS(3108), - [anon_sym_explicit] = ACTIONS(3108), - [anon_sym_typename] = ACTIONS(3108), - [anon_sym_template] = ACTIONS(3108), - [anon_sym_operator] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_delete] = ACTIONS(3108), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_namespace] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3108), - [anon_sym_static_assert] = ACTIONS(3108), - [anon_sym_concept] = ACTIONS(3108), - [anon_sym_co_return] = ACTIONS(3108), - [anon_sym_co_yield] = ACTIONS(3108), - [anon_sym_R_DQUOTE] = ACTIONS(3110), - [anon_sym_LR_DQUOTE] = ACTIONS(3110), - [anon_sym_uR_DQUOTE] = ACTIONS(3110), - [anon_sym_UR_DQUOTE] = ACTIONS(3110), - [anon_sym_u8R_DQUOTE] = ACTIONS(3110), - [anon_sym_co_await] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_requires] = ACTIONS(3108), - [sym_this] = ACTIONS(3108), - }, - [514] = { - [sym_identifier] = ACTIONS(3094), - [aux_sym_preproc_include_token1] = ACTIONS(3094), - [aux_sym_preproc_def_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token2] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3094), - [aux_sym_preproc_else_token1] = ACTIONS(3094), - [aux_sym_preproc_elif_token1] = ACTIONS(3094), - [sym_preproc_directive] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym___extension__] = ACTIONS(3094), - [anon_sym_typedef] = ACTIONS(3094), - [anon_sym_extern] = ACTIONS(3094), - [anon_sym___attribute__] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3096), - [anon_sym___declspec] = ACTIONS(3094), - [anon_sym___based] = ACTIONS(3094), - [anon_sym___cdecl] = ACTIONS(3094), - [anon_sym___clrcall] = ACTIONS(3094), - [anon_sym___stdcall] = ACTIONS(3094), - [anon_sym___fastcall] = ACTIONS(3094), - [anon_sym___thiscall] = ACTIONS(3094), - [anon_sym___vectorcall] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_signed] = ACTIONS(3094), - [anon_sym_unsigned] = ACTIONS(3094), - [anon_sym_long] = ACTIONS(3094), - [anon_sym_short] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_register] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym___inline] = ACTIONS(3094), - [anon_sym___inline__] = ACTIONS(3094), - [anon_sym___forceinline] = ACTIONS(3094), - [anon_sym_thread_local] = ACTIONS(3094), - [anon_sym___thread] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_constexpr] = ACTIONS(3094), - [anon_sym_volatile] = ACTIONS(3094), - [anon_sym_restrict] = ACTIONS(3094), - [anon_sym___restrict__] = ACTIONS(3094), - [anon_sym__Atomic] = ACTIONS(3094), - [anon_sym__Noreturn] = ACTIONS(3094), - [anon_sym_noreturn] = ACTIONS(3094), - [anon_sym_mutable] = ACTIONS(3094), - [anon_sym_constinit] = ACTIONS(3094), - [anon_sym_consteval] = ACTIONS(3094), - [sym_primitive_type] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_union] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_switch] = ACTIONS(3094), - [anon_sym_case] = ACTIONS(3094), - [anon_sym_default] = ACTIONS(3094), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_do] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_goto] = ACTIONS(3094), - [anon_sym___try] = ACTIONS(3094), - [anon_sym___leave] = ACTIONS(3094), - [anon_sym_not] = ACTIONS(3094), - [anon_sym_compl] = ACTIONS(3094), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_sizeof] = ACTIONS(3094), - [anon_sym___alignof__] = ACTIONS(3094), - [anon_sym___alignof] = ACTIONS(3094), - [anon_sym__alignof] = ACTIONS(3094), - [anon_sym_alignof] = ACTIONS(3094), - [anon_sym__Alignof] = ACTIONS(3094), - [anon_sym_offsetof] = ACTIONS(3094), - [anon_sym__Generic] = ACTIONS(3094), - [anon_sym_asm] = ACTIONS(3094), - [anon_sym___asm__] = ACTIONS(3094), - [sym_number_literal] = ACTIONS(3096), - [anon_sym_L_SQUOTE] = ACTIONS(3096), - [anon_sym_u_SQUOTE] = ACTIONS(3096), - [anon_sym_U_SQUOTE] = ACTIONS(3096), - [anon_sym_u8_SQUOTE] = ACTIONS(3096), - [anon_sym_SQUOTE] = ACTIONS(3096), - [anon_sym_L_DQUOTE] = ACTIONS(3096), - [anon_sym_u_DQUOTE] = ACTIONS(3096), - [anon_sym_U_DQUOTE] = ACTIONS(3096), - [anon_sym_u8_DQUOTE] = ACTIONS(3096), - [anon_sym_DQUOTE] = ACTIONS(3096), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [anon_sym_NULL] = ACTIONS(3094), - [anon_sym_nullptr] = ACTIONS(3094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3094), - [anon_sym_decltype] = ACTIONS(3094), - [anon_sym_virtual] = ACTIONS(3094), - [anon_sym_alignas] = ACTIONS(3094), - [anon_sym_explicit] = ACTIONS(3094), - [anon_sym_typename] = ACTIONS(3094), - [anon_sym_template] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_delete] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_namespace] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_static_assert] = ACTIONS(3094), - [anon_sym_concept] = ACTIONS(3094), - [anon_sym_co_return] = ACTIONS(3094), - [anon_sym_co_yield] = ACTIONS(3094), - [anon_sym_R_DQUOTE] = ACTIONS(3096), - [anon_sym_LR_DQUOTE] = ACTIONS(3096), - [anon_sym_uR_DQUOTE] = ACTIONS(3096), - [anon_sym_UR_DQUOTE] = ACTIONS(3096), - [anon_sym_u8R_DQUOTE] = ACTIONS(3096), - [anon_sym_co_await] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3094), - [anon_sym_requires] = ACTIONS(3094), - [sym_this] = ACTIONS(3094), - }, - [515] = { - [sym_identifier] = ACTIONS(3112), - [aux_sym_preproc_include_token1] = ACTIONS(3112), - [aux_sym_preproc_def_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token2] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), - [aux_sym_preproc_else_token1] = ACTIONS(3112), - [aux_sym_preproc_elif_token1] = ACTIONS(3112), - [sym_preproc_directive] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym___extension__] = ACTIONS(3112), - [anon_sym_typedef] = ACTIONS(3112), - [anon_sym_extern] = ACTIONS(3112), - [anon_sym___attribute__] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), - [anon_sym___declspec] = ACTIONS(3112), - [anon_sym___based] = ACTIONS(3112), - [anon_sym___cdecl] = ACTIONS(3112), - [anon_sym___clrcall] = ACTIONS(3112), - [anon_sym___stdcall] = ACTIONS(3112), - [anon_sym___fastcall] = ACTIONS(3112), - [anon_sym___thiscall] = ACTIONS(3112), - [anon_sym___vectorcall] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3114), - [anon_sym_signed] = ACTIONS(3112), - [anon_sym_unsigned] = ACTIONS(3112), - [anon_sym_long] = ACTIONS(3112), - [anon_sym_short] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_register] = ACTIONS(3112), - [anon_sym_inline] = ACTIONS(3112), - [anon_sym___inline] = ACTIONS(3112), - [anon_sym___inline__] = ACTIONS(3112), - [anon_sym___forceinline] = ACTIONS(3112), - [anon_sym_thread_local] = ACTIONS(3112), - [anon_sym___thread] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_constexpr] = ACTIONS(3112), - [anon_sym_volatile] = ACTIONS(3112), - [anon_sym_restrict] = ACTIONS(3112), - [anon_sym___restrict__] = ACTIONS(3112), - [anon_sym__Atomic] = ACTIONS(3112), - [anon_sym__Noreturn] = ACTIONS(3112), - [anon_sym_noreturn] = ACTIONS(3112), - [anon_sym_mutable] = ACTIONS(3112), - [anon_sym_constinit] = ACTIONS(3112), - [anon_sym_consteval] = ACTIONS(3112), - [sym_primitive_type] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3112), - [anon_sym_union] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3112), - [anon_sym_default] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_goto] = ACTIONS(3112), - [anon_sym___try] = ACTIONS(3112), - [anon_sym___leave] = ACTIONS(3112), - [anon_sym_not] = ACTIONS(3112), - [anon_sym_compl] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3114), - [anon_sym_sizeof] = ACTIONS(3112), - [anon_sym___alignof__] = ACTIONS(3112), - [anon_sym___alignof] = ACTIONS(3112), - [anon_sym__alignof] = ACTIONS(3112), - [anon_sym_alignof] = ACTIONS(3112), - [anon_sym__Alignof] = ACTIONS(3112), - [anon_sym_offsetof] = ACTIONS(3112), - [anon_sym__Generic] = ACTIONS(3112), - [anon_sym_asm] = ACTIONS(3112), - [anon_sym___asm__] = ACTIONS(3112), - [sym_number_literal] = ACTIONS(3114), - [anon_sym_L_SQUOTE] = ACTIONS(3114), - [anon_sym_u_SQUOTE] = ACTIONS(3114), - [anon_sym_U_SQUOTE] = ACTIONS(3114), - [anon_sym_u8_SQUOTE] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3114), - [anon_sym_L_DQUOTE] = ACTIONS(3114), - [anon_sym_u_DQUOTE] = ACTIONS(3114), - [anon_sym_U_DQUOTE] = ACTIONS(3114), - [anon_sym_u8_DQUOTE] = ACTIONS(3114), - [anon_sym_DQUOTE] = ACTIONS(3114), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [anon_sym_NULL] = ACTIONS(3112), - [anon_sym_nullptr] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3112), - [anon_sym_decltype] = ACTIONS(3112), - [anon_sym_virtual] = ACTIONS(3112), - [anon_sym_alignas] = ACTIONS(3112), - [anon_sym_explicit] = ACTIONS(3112), - [anon_sym_typename] = ACTIONS(3112), - [anon_sym_template] = ACTIONS(3112), - [anon_sym_operator] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_static_assert] = ACTIONS(3112), - [anon_sym_concept] = ACTIONS(3112), - [anon_sym_co_return] = ACTIONS(3112), - [anon_sym_co_yield] = ACTIONS(3112), - [anon_sym_R_DQUOTE] = ACTIONS(3114), - [anon_sym_LR_DQUOTE] = ACTIONS(3114), - [anon_sym_uR_DQUOTE] = ACTIONS(3114), - [anon_sym_UR_DQUOTE] = ACTIONS(3114), - [anon_sym_u8R_DQUOTE] = ACTIONS(3114), - [anon_sym_co_await] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_requires] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), - }, - [516] = { - [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), - [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_extern] = ACTIONS(3180), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3180), - [anon_sym_constinit] = ACTIONS(3180), - [anon_sym_consteval] = 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_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_virtual] = ACTIONS(3180), - [anon_sym_alignas] = ACTIONS(3180), - [anon_sym_explicit] = ACTIONS(3180), - [anon_sym_typename] = 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_using] = 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_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), - [sym_this] = ACTIONS(3180), - }, - [517] = { - [sym_identifier] = ACTIONS(3156), - [aux_sym_preproc_include_token1] = ACTIONS(3156), - [aux_sym_preproc_def_token1] = ACTIONS(3156), - [aux_sym_preproc_if_token1] = ACTIONS(3156), - [aux_sym_preproc_if_token2] = ACTIONS(3156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3156), - [aux_sym_preproc_else_token1] = ACTIONS(3156), - [aux_sym_preproc_elif_token1] = ACTIONS(3156), - [sym_preproc_directive] = ACTIONS(3156), - [anon_sym_LPAREN2] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym___extension__] = ACTIONS(3156), - [anon_sym_typedef] = ACTIONS(3156), - [anon_sym_extern] = ACTIONS(3156), - [anon_sym___attribute__] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3158), - [anon_sym___declspec] = ACTIONS(3156), - [anon_sym___based] = ACTIONS(3156), - [anon_sym___cdecl] = ACTIONS(3156), - [anon_sym___clrcall] = ACTIONS(3156), - [anon_sym___stdcall] = ACTIONS(3156), - [anon_sym___fastcall] = ACTIONS(3156), - [anon_sym___thiscall] = ACTIONS(3156), - [anon_sym___vectorcall] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_signed] = ACTIONS(3156), - [anon_sym_unsigned] = ACTIONS(3156), - [anon_sym_long] = ACTIONS(3156), - [anon_sym_short] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_register] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym___inline] = ACTIONS(3156), - [anon_sym___inline__] = ACTIONS(3156), - [anon_sym___forceinline] = ACTIONS(3156), - [anon_sym_thread_local] = ACTIONS(3156), - [anon_sym___thread] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_constexpr] = ACTIONS(3156), - [anon_sym_volatile] = ACTIONS(3156), - [anon_sym_restrict] = ACTIONS(3156), - [anon_sym___restrict__] = ACTIONS(3156), - [anon_sym__Atomic] = ACTIONS(3156), - [anon_sym__Noreturn] = ACTIONS(3156), - [anon_sym_noreturn] = ACTIONS(3156), - [anon_sym_mutable] = ACTIONS(3156), - [anon_sym_constinit] = ACTIONS(3156), - [anon_sym_consteval] = ACTIONS(3156), - [sym_primitive_type] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_struct] = ACTIONS(3156), - [anon_sym_union] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_case] = ACTIONS(3156), - [anon_sym_default] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_goto] = ACTIONS(3156), - [anon_sym___try] = ACTIONS(3156), - [anon_sym___leave] = ACTIONS(3156), - [anon_sym_not] = ACTIONS(3156), - [anon_sym_compl] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_sizeof] = ACTIONS(3156), - [anon_sym___alignof__] = ACTIONS(3156), - [anon_sym___alignof] = ACTIONS(3156), - [anon_sym__alignof] = ACTIONS(3156), - [anon_sym_alignof] = ACTIONS(3156), - [anon_sym__Alignof] = ACTIONS(3156), - [anon_sym_offsetof] = ACTIONS(3156), - [anon_sym__Generic] = ACTIONS(3156), - [anon_sym_asm] = ACTIONS(3156), - [anon_sym___asm__] = ACTIONS(3156), - [sym_number_literal] = ACTIONS(3158), - [anon_sym_L_SQUOTE] = ACTIONS(3158), - [anon_sym_u_SQUOTE] = ACTIONS(3158), - [anon_sym_U_SQUOTE] = ACTIONS(3158), - [anon_sym_u8_SQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [anon_sym_NULL] = ACTIONS(3156), - [anon_sym_nullptr] = ACTIONS(3156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3156), - [anon_sym_decltype] = ACTIONS(3156), - [anon_sym_virtual] = ACTIONS(3156), - [anon_sym_alignas] = ACTIONS(3156), - [anon_sym_explicit] = ACTIONS(3156), - [anon_sym_typename] = ACTIONS(3156), - [anon_sym_template] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_static_assert] = ACTIONS(3156), - [anon_sym_concept] = ACTIONS(3156), - [anon_sym_co_return] = ACTIONS(3156), - [anon_sym_co_yield] = ACTIONS(3156), - [anon_sym_R_DQUOTE] = ACTIONS(3158), - [anon_sym_LR_DQUOTE] = ACTIONS(3158), - [anon_sym_uR_DQUOTE] = ACTIONS(3158), - [anon_sym_UR_DQUOTE] = ACTIONS(3158), - [anon_sym_u8R_DQUOTE] = ACTIONS(3158), - [anon_sym_co_await] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_requires] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - }, - [518] = { - [sym_identifier] = ACTIONS(3164), - [aux_sym_preproc_include_token1] = ACTIONS(3164), - [aux_sym_preproc_def_token1] = ACTIONS(3164), - [aux_sym_preproc_if_token1] = ACTIONS(3164), - [aux_sym_preproc_if_token2] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), - [aux_sym_preproc_else_token1] = ACTIONS(3164), - [aux_sym_preproc_elif_token1] = ACTIONS(3164), - [sym_preproc_directive] = ACTIONS(3164), - [anon_sym_LPAREN2] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3166), - [anon_sym_AMP_AMP] = ACTIONS(3166), - [anon_sym_AMP] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym___extension__] = ACTIONS(3164), - [anon_sym_typedef] = ACTIONS(3164), - [anon_sym_extern] = ACTIONS(3164), - [anon_sym___attribute__] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), - [anon_sym___declspec] = ACTIONS(3164), - [anon_sym___based] = ACTIONS(3164), - [anon_sym___cdecl] = ACTIONS(3164), - [anon_sym___clrcall] = ACTIONS(3164), - [anon_sym___stdcall] = ACTIONS(3164), - [anon_sym___fastcall] = ACTIONS(3164), - [anon_sym___thiscall] = ACTIONS(3164), - [anon_sym___vectorcall] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_signed] = ACTIONS(3164), - [anon_sym_unsigned] = ACTIONS(3164), - [anon_sym_long] = ACTIONS(3164), - [anon_sym_short] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_register] = ACTIONS(3164), - [anon_sym_inline] = ACTIONS(3164), - [anon_sym___inline] = ACTIONS(3164), - [anon_sym___inline__] = ACTIONS(3164), - [anon_sym___forceinline] = ACTIONS(3164), - [anon_sym_thread_local] = ACTIONS(3164), - [anon_sym___thread] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_constexpr] = ACTIONS(3164), - [anon_sym_volatile] = ACTIONS(3164), - [anon_sym_restrict] = ACTIONS(3164), - [anon_sym___restrict__] = ACTIONS(3164), - [anon_sym__Atomic] = ACTIONS(3164), - [anon_sym__Noreturn] = ACTIONS(3164), - [anon_sym_noreturn] = ACTIONS(3164), - [anon_sym_mutable] = ACTIONS(3164), - [anon_sym_constinit] = ACTIONS(3164), - [anon_sym_consteval] = ACTIONS(3164), - [sym_primitive_type] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_struct] = ACTIONS(3164), - [anon_sym_union] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_case] = ACTIONS(3164), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_goto] = ACTIONS(3164), - [anon_sym___try] = ACTIONS(3164), - [anon_sym___leave] = ACTIONS(3164), - [anon_sym_not] = ACTIONS(3164), - [anon_sym_compl] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_sizeof] = ACTIONS(3164), - [anon_sym___alignof__] = ACTIONS(3164), - [anon_sym___alignof] = ACTIONS(3164), - [anon_sym__alignof] = ACTIONS(3164), - [anon_sym_alignof] = ACTIONS(3164), - [anon_sym__Alignof] = ACTIONS(3164), - [anon_sym_offsetof] = ACTIONS(3164), - [anon_sym__Generic] = ACTIONS(3164), - [anon_sym_asm] = ACTIONS(3164), - [anon_sym___asm__] = ACTIONS(3164), - [sym_number_literal] = ACTIONS(3166), - [anon_sym_L_SQUOTE] = ACTIONS(3166), - [anon_sym_u_SQUOTE] = ACTIONS(3166), - [anon_sym_U_SQUOTE] = ACTIONS(3166), - [anon_sym_u8_SQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_L_DQUOTE] = ACTIONS(3166), - [anon_sym_u_DQUOTE] = ACTIONS(3166), - [anon_sym_U_DQUOTE] = ACTIONS(3166), - [anon_sym_u8_DQUOTE] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [anon_sym_NULL] = ACTIONS(3164), - [anon_sym_nullptr] = ACTIONS(3164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3164), - [anon_sym_virtual] = ACTIONS(3164), - [anon_sym_alignas] = ACTIONS(3164), - [anon_sym_explicit] = ACTIONS(3164), - [anon_sym_typename] = ACTIONS(3164), - [anon_sym_template] = ACTIONS(3164), - [anon_sym_operator] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_static_assert] = ACTIONS(3164), - [anon_sym_concept] = ACTIONS(3164), - [anon_sym_co_return] = ACTIONS(3164), - [anon_sym_co_yield] = ACTIONS(3164), - [anon_sym_R_DQUOTE] = ACTIONS(3166), - [anon_sym_LR_DQUOTE] = ACTIONS(3166), - [anon_sym_uR_DQUOTE] = ACTIONS(3166), - [anon_sym_UR_DQUOTE] = ACTIONS(3166), - [anon_sym_u8R_DQUOTE] = ACTIONS(3166), - [anon_sym_co_await] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_requires] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), - }, - [519] = { - [sym_identifier] = ACTIONS(2148), - [aux_sym_preproc_include_token1] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token2] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), - [sym_preproc_directive] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_AMP_AMP] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym___extension__] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym___attribute__] = ACTIONS(2148), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2148), - [anon_sym___based] = ACTIONS(2148), - [anon_sym___cdecl] = ACTIONS(2148), - [anon_sym___clrcall] = ACTIONS(2148), - [anon_sym___stdcall] = ACTIONS(2148), - [anon_sym___fastcall] = ACTIONS(2148), - [anon_sym___thiscall] = ACTIONS(2148), - [anon_sym___vectorcall] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2148), - [anon_sym_unsigned] = ACTIONS(2148), - [anon_sym_long] = ACTIONS(2148), - [anon_sym_short] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym___inline] = ACTIONS(2148), - [anon_sym___inline__] = ACTIONS(2148), - [anon_sym___forceinline] = ACTIONS(2148), - [anon_sym_thread_local] = ACTIONS(2148), - [anon_sym___thread] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_constexpr] = ACTIONS(2148), - [anon_sym_volatile] = ACTIONS(2148), - [anon_sym_restrict] = ACTIONS(2148), - [anon_sym___restrict__] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(2148), - [anon_sym__Noreturn] = ACTIONS(2148), - [anon_sym_noreturn] = ACTIONS(2148), - [anon_sym_mutable] = ACTIONS(2148), - [anon_sym_constinit] = ACTIONS(2148), - [anon_sym_consteval] = ACTIONS(2148), - [sym_primitive_type] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_class] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_else] = ACTIONS(2148), - [anon_sym_switch] = ACTIONS(2148), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_do] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_goto] = ACTIONS(2148), - [anon_sym___try] = ACTIONS(2148), - [anon_sym___leave] = ACTIONS(2148), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2146), - [anon_sym_PLUS_PLUS] = ACTIONS(2146), - [anon_sym_sizeof] = ACTIONS(2148), - [anon_sym___alignof__] = ACTIONS(2148), - [anon_sym___alignof] = ACTIONS(2148), - [anon_sym__alignof] = ACTIONS(2148), - [anon_sym_alignof] = ACTIONS(2148), - [anon_sym__Alignof] = ACTIONS(2148), - [anon_sym_offsetof] = ACTIONS(2148), - [anon_sym__Generic] = ACTIONS(2148), - [anon_sym_asm] = ACTIONS(2148), - [anon_sym___asm__] = ACTIONS(2148), - [sym_number_literal] = ACTIONS(2146), - [anon_sym_L_SQUOTE] = ACTIONS(2146), - [anon_sym_u_SQUOTE] = ACTIONS(2146), - [anon_sym_U_SQUOTE] = ACTIONS(2146), - [anon_sym_u8_SQUOTE] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2146), - [anon_sym_L_DQUOTE] = ACTIONS(2146), - [anon_sym_u_DQUOTE] = ACTIONS(2146), - [anon_sym_U_DQUOTE] = ACTIONS(2146), - [anon_sym_u8_DQUOTE] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym_true] = ACTIONS(2148), - [sym_false] = ACTIONS(2148), - [anon_sym_NULL] = ACTIONS(2148), - [anon_sym_nullptr] = ACTIONS(2148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2148), - [anon_sym_decltype] = ACTIONS(2148), - [anon_sym_virtual] = ACTIONS(2148), - [anon_sym_alignas] = ACTIONS(2148), - [anon_sym_explicit] = ACTIONS(2148), - [anon_sym_typename] = ACTIONS(2148), - [anon_sym_template] = ACTIONS(2148), - [anon_sym_operator] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [anon_sym_delete] = ACTIONS(2148), - [anon_sym_throw] = ACTIONS(2148), - [anon_sym_namespace] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2148), - [anon_sym_static_assert] = ACTIONS(2148), - [anon_sym_concept] = ACTIONS(2148), - [anon_sym_co_return] = ACTIONS(2148), - [anon_sym_co_yield] = ACTIONS(2148), - [anon_sym_catch] = ACTIONS(2148), - [anon_sym_R_DQUOTE] = ACTIONS(2146), - [anon_sym_LR_DQUOTE] = ACTIONS(2146), - [anon_sym_uR_DQUOTE] = ACTIONS(2146), - [anon_sym_UR_DQUOTE] = ACTIONS(2146), - [anon_sym_u8R_DQUOTE] = ACTIONS(2146), - [anon_sym_co_await] = ACTIONS(2148), - [anon_sym_new] = ACTIONS(2148), - [anon_sym_requires] = ACTIONS(2148), - [sym_this] = ACTIONS(2148), - }, - [520] = { - [sym_identifier] = ACTIONS(3194), - [aux_sym_preproc_include_token1] = ACTIONS(3194), - [aux_sym_preproc_def_token1] = ACTIONS(3194), - [aux_sym_preproc_if_token1] = ACTIONS(3194), - [aux_sym_preproc_if_token2] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3194), - [aux_sym_preproc_else_token1] = ACTIONS(3194), - [aux_sym_preproc_elif_token1] = ACTIONS(3194), - [sym_preproc_directive] = ACTIONS(3194), - [anon_sym_LPAREN2] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_AMP_AMP] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym___extension__] = ACTIONS(3194), - [anon_sym_typedef] = ACTIONS(3194), - [anon_sym_extern] = ACTIONS(3194), - [anon_sym___attribute__] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3196), - [anon_sym___declspec] = ACTIONS(3194), - [anon_sym___based] = ACTIONS(3194), - [anon_sym___cdecl] = ACTIONS(3194), - [anon_sym___clrcall] = ACTIONS(3194), - [anon_sym___stdcall] = ACTIONS(3194), - [anon_sym___fastcall] = ACTIONS(3194), - [anon_sym___thiscall] = ACTIONS(3194), - [anon_sym___vectorcall] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_signed] = ACTIONS(3194), - [anon_sym_unsigned] = ACTIONS(3194), - [anon_sym_long] = ACTIONS(3194), - [anon_sym_short] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_register] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym___inline] = ACTIONS(3194), - [anon_sym___inline__] = ACTIONS(3194), - [anon_sym___forceinline] = ACTIONS(3194), - [anon_sym_thread_local] = ACTIONS(3194), - [anon_sym___thread] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_constexpr] = ACTIONS(3194), - [anon_sym_volatile] = ACTIONS(3194), - [anon_sym_restrict] = ACTIONS(3194), - [anon_sym___restrict__] = ACTIONS(3194), - [anon_sym__Atomic] = ACTIONS(3194), - [anon_sym__Noreturn] = ACTIONS(3194), - [anon_sym_noreturn] = ACTIONS(3194), - [anon_sym_mutable] = ACTIONS(3194), - [anon_sym_constinit] = ACTIONS(3194), - [anon_sym_consteval] = ACTIONS(3194), - [sym_primitive_type] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_struct] = ACTIONS(3194), - [anon_sym_union] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_goto] = ACTIONS(3194), - [anon_sym___try] = ACTIONS(3194), - [anon_sym___leave] = ACTIONS(3194), - [anon_sym_not] = ACTIONS(3194), - [anon_sym_compl] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_sizeof] = ACTIONS(3194), - [anon_sym___alignof__] = ACTIONS(3194), - [anon_sym___alignof] = ACTIONS(3194), - [anon_sym__alignof] = ACTIONS(3194), - [anon_sym_alignof] = ACTIONS(3194), - [anon_sym__Alignof] = ACTIONS(3194), - [anon_sym_offsetof] = ACTIONS(3194), - [anon_sym__Generic] = ACTIONS(3194), - [anon_sym_asm] = ACTIONS(3194), - [anon_sym___asm__] = ACTIONS(3194), - [sym_number_literal] = ACTIONS(3196), - [anon_sym_L_SQUOTE] = ACTIONS(3196), - [anon_sym_u_SQUOTE] = ACTIONS(3196), - [anon_sym_U_SQUOTE] = ACTIONS(3196), - [anon_sym_u8_SQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_L_DQUOTE] = ACTIONS(3196), - [anon_sym_u_DQUOTE] = ACTIONS(3196), - [anon_sym_U_DQUOTE] = ACTIONS(3196), - [anon_sym_u8_DQUOTE] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [anon_sym_NULL] = ACTIONS(3194), - [anon_sym_nullptr] = ACTIONS(3194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3194), - [anon_sym_decltype] = ACTIONS(3194), - [anon_sym_virtual] = ACTIONS(3194), - [anon_sym_alignas] = ACTIONS(3194), - [anon_sym_explicit] = ACTIONS(3194), - [anon_sym_typename] = ACTIONS(3194), - [anon_sym_template] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_static_assert] = ACTIONS(3194), - [anon_sym_concept] = ACTIONS(3194), - [anon_sym_co_return] = ACTIONS(3194), - [anon_sym_co_yield] = ACTIONS(3194), - [anon_sym_R_DQUOTE] = ACTIONS(3196), - [anon_sym_LR_DQUOTE] = ACTIONS(3196), - [anon_sym_uR_DQUOTE] = ACTIONS(3196), - [anon_sym_UR_DQUOTE] = ACTIONS(3196), - [anon_sym_u8R_DQUOTE] = ACTIONS(3196), - [anon_sym_co_await] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_requires] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), + [anon_sym_GT2] = ACTIONS(3390), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [521] = { - [sym_identifier] = ACTIONS(3102), - [aux_sym_preproc_include_token1] = ACTIONS(3102), - [aux_sym_preproc_def_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token2] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3102), - [aux_sym_preproc_else_token1] = ACTIONS(3102), - [aux_sym_preproc_elif_token1] = ACTIONS(3102), - [sym_preproc_directive] = ACTIONS(3102), - [anon_sym_LPAREN2] = ACTIONS(3104), - [anon_sym_BANG] = ACTIONS(3104), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3104), - [anon_sym___extension__] = ACTIONS(3102), - [anon_sym_typedef] = ACTIONS(3102), - [anon_sym_extern] = ACTIONS(3102), - [anon_sym___attribute__] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3104), - [anon_sym___declspec] = ACTIONS(3102), - [anon_sym___based] = ACTIONS(3102), - [anon_sym___cdecl] = ACTIONS(3102), - [anon_sym___clrcall] = ACTIONS(3102), - [anon_sym___stdcall] = ACTIONS(3102), - [anon_sym___fastcall] = ACTIONS(3102), - [anon_sym___thiscall] = ACTIONS(3102), - [anon_sym___vectorcall] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_signed] = ACTIONS(3102), - [anon_sym_unsigned] = ACTIONS(3102), - [anon_sym_long] = ACTIONS(3102), - [anon_sym_short] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_register] = ACTIONS(3102), - [anon_sym_inline] = ACTIONS(3102), - [anon_sym___inline] = ACTIONS(3102), - [anon_sym___inline__] = ACTIONS(3102), - [anon_sym___forceinline] = ACTIONS(3102), - [anon_sym_thread_local] = ACTIONS(3102), - [anon_sym___thread] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_constexpr] = ACTIONS(3102), - [anon_sym_volatile] = ACTIONS(3102), - [anon_sym_restrict] = ACTIONS(3102), - [anon_sym___restrict__] = ACTIONS(3102), - [anon_sym__Atomic] = ACTIONS(3102), - [anon_sym__Noreturn] = ACTIONS(3102), - [anon_sym_noreturn] = ACTIONS(3102), - [anon_sym_mutable] = ACTIONS(3102), - [anon_sym_constinit] = ACTIONS(3102), - [anon_sym_consteval] = ACTIONS(3102), - [sym_primitive_type] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_case] = ACTIONS(3102), - [anon_sym_default] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_goto] = ACTIONS(3102), - [anon_sym___try] = ACTIONS(3102), - [anon_sym___leave] = ACTIONS(3102), - [anon_sym_not] = ACTIONS(3102), - [anon_sym_compl] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3104), - [anon_sym_PLUS_PLUS] = ACTIONS(3104), - [anon_sym_sizeof] = ACTIONS(3102), - [anon_sym___alignof__] = ACTIONS(3102), - [anon_sym___alignof] = ACTIONS(3102), - [anon_sym__alignof] = ACTIONS(3102), - [anon_sym_alignof] = ACTIONS(3102), - [anon_sym__Alignof] = ACTIONS(3102), - [anon_sym_offsetof] = ACTIONS(3102), - [anon_sym__Generic] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(3102), - [anon_sym___asm__] = ACTIONS(3102), - [sym_number_literal] = ACTIONS(3104), - [anon_sym_L_SQUOTE] = ACTIONS(3104), - [anon_sym_u_SQUOTE] = ACTIONS(3104), - [anon_sym_U_SQUOTE] = ACTIONS(3104), - [anon_sym_u8_SQUOTE] = ACTIONS(3104), - [anon_sym_SQUOTE] = ACTIONS(3104), - [anon_sym_L_DQUOTE] = ACTIONS(3104), - [anon_sym_u_DQUOTE] = ACTIONS(3104), - [anon_sym_U_DQUOTE] = ACTIONS(3104), - [anon_sym_u8_DQUOTE] = ACTIONS(3104), - [anon_sym_DQUOTE] = ACTIONS(3104), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [anon_sym_NULL] = ACTIONS(3102), - [anon_sym_nullptr] = ACTIONS(3102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3102), - [anon_sym_decltype] = ACTIONS(3102), - [anon_sym_virtual] = ACTIONS(3102), - [anon_sym_alignas] = ACTIONS(3102), - [anon_sym_explicit] = ACTIONS(3102), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_template] = ACTIONS(3102), - [anon_sym_operator] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_static_assert] = ACTIONS(3102), - [anon_sym_concept] = ACTIONS(3102), - [anon_sym_co_return] = ACTIONS(3102), - [anon_sym_co_yield] = ACTIONS(3102), - [anon_sym_R_DQUOTE] = ACTIONS(3104), - [anon_sym_LR_DQUOTE] = ACTIONS(3104), - [anon_sym_uR_DQUOTE] = ACTIONS(3104), - [anon_sym_UR_DQUOTE] = ACTIONS(3104), - [anon_sym_u8R_DQUOTE] = ACTIONS(3104), - [anon_sym_co_await] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_requires] = ACTIONS(3102), - [sym_this] = ACTIONS(3102), + [508] = { + [sym_else_clause] = STATE(637), + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token2] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym___extension__] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym___inline] = ACTIONS(2857), + [anon_sym___inline__] = ACTIONS(2857), + [anon_sym___forceinline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym___thread] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym___restrict__] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym__Noreturn] = ACTIONS(2857), + [anon_sym_noreturn] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_else] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym___try] = ACTIONS(2857), + [anon_sym___leave] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [anon_sym___alignof__] = ACTIONS(2857), + [anon_sym___alignof] = ACTIONS(2857), + [anon_sym__alignof] = ACTIONS(2857), + [anon_sym_alignof] = ACTIONS(2857), + [anon_sym__Alignof] = ACTIONS(2857), + [anon_sym_offsetof] = ACTIONS(2857), + [anon_sym__Generic] = ACTIONS(2857), + [anon_sym_asm] = ACTIONS(2857), + [anon_sym___asm__] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [anon_sym_NULL] = ACTIONS(2857), + [anon_sym_nullptr] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_alignas] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_R_DQUOTE] = ACTIONS(2859), + [anon_sym_LR_DQUOTE] = ACTIONS(2859), + [anon_sym_uR_DQUOTE] = ACTIONS(2859), + [anon_sym_UR_DQUOTE] = ACTIONS(2859), + [anon_sym_u8R_DQUOTE] = ACTIONS(2859), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), }, - [522] = { - [sym_identifier] = ACTIONS(3140), - [aux_sym_preproc_include_token1] = ACTIONS(3140), - [aux_sym_preproc_def_token1] = ACTIONS(3140), - [aux_sym_preproc_if_token1] = ACTIONS(3140), - [aux_sym_preproc_if_token2] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), - [aux_sym_preproc_else_token1] = ACTIONS(3140), - [aux_sym_preproc_elif_token1] = ACTIONS(3140), - [sym_preproc_directive] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_AMP_AMP] = ACTIONS(3142), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym___extension__] = ACTIONS(3140), - [anon_sym_typedef] = ACTIONS(3140), - [anon_sym_extern] = ACTIONS(3140), - [anon_sym___attribute__] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3142), - [anon_sym___declspec] = ACTIONS(3140), - [anon_sym___based] = ACTIONS(3140), - [anon_sym___cdecl] = ACTIONS(3140), - [anon_sym___clrcall] = ACTIONS(3140), - [anon_sym___stdcall] = ACTIONS(3140), - [anon_sym___fastcall] = ACTIONS(3140), - [anon_sym___thiscall] = ACTIONS(3140), - [anon_sym___vectorcall] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_signed] = ACTIONS(3140), - [anon_sym_unsigned] = ACTIONS(3140), - [anon_sym_long] = ACTIONS(3140), - [anon_sym_short] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_register] = ACTIONS(3140), - [anon_sym_inline] = ACTIONS(3140), - [anon_sym___inline] = ACTIONS(3140), - [anon_sym___inline__] = ACTIONS(3140), - [anon_sym___forceinline] = ACTIONS(3140), - [anon_sym_thread_local] = ACTIONS(3140), - [anon_sym___thread] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_constexpr] = ACTIONS(3140), - [anon_sym_volatile] = ACTIONS(3140), - [anon_sym_restrict] = ACTIONS(3140), - [anon_sym___restrict__] = ACTIONS(3140), - [anon_sym__Atomic] = ACTIONS(3140), - [anon_sym__Noreturn] = ACTIONS(3140), - [anon_sym_noreturn] = ACTIONS(3140), - [anon_sym_mutable] = ACTIONS(3140), - [anon_sym_constinit] = ACTIONS(3140), - [anon_sym_consteval] = ACTIONS(3140), - [sym_primitive_type] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_struct] = ACTIONS(3140), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_case] = ACTIONS(3140), - [anon_sym_default] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_goto] = ACTIONS(3140), - [anon_sym___try] = ACTIONS(3140), - [anon_sym___leave] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3140), - [anon_sym_compl] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3140), - [anon_sym___alignof__] = ACTIONS(3140), - [anon_sym___alignof] = ACTIONS(3140), - [anon_sym__alignof] = ACTIONS(3140), - [anon_sym_alignof] = ACTIONS(3140), - [anon_sym__Alignof] = ACTIONS(3140), - [anon_sym_offsetof] = ACTIONS(3140), - [anon_sym__Generic] = ACTIONS(3140), - [anon_sym_asm] = ACTIONS(3140), - [anon_sym___asm__] = ACTIONS(3140), - [sym_number_literal] = ACTIONS(3142), - [anon_sym_L_SQUOTE] = ACTIONS(3142), - [anon_sym_u_SQUOTE] = ACTIONS(3142), - [anon_sym_U_SQUOTE] = ACTIONS(3142), - [anon_sym_u8_SQUOTE] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_L_DQUOTE] = ACTIONS(3142), - [anon_sym_u_DQUOTE] = ACTIONS(3142), - [anon_sym_U_DQUOTE] = ACTIONS(3142), - [anon_sym_u8_DQUOTE] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [anon_sym_NULL] = ACTIONS(3140), - [anon_sym_nullptr] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3140), - [anon_sym_decltype] = ACTIONS(3140), - [anon_sym_virtual] = ACTIONS(3140), - [anon_sym_alignas] = ACTIONS(3140), - [anon_sym_explicit] = ACTIONS(3140), - [anon_sym_typename] = ACTIONS(3140), - [anon_sym_template] = ACTIONS(3140), - [anon_sym_operator] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_static_assert] = ACTIONS(3140), - [anon_sym_concept] = ACTIONS(3140), - [anon_sym_co_return] = ACTIONS(3140), - [anon_sym_co_yield] = ACTIONS(3140), - [anon_sym_R_DQUOTE] = ACTIONS(3142), - [anon_sym_LR_DQUOTE] = ACTIONS(3142), - [anon_sym_uR_DQUOTE] = ACTIONS(3142), - [anon_sym_UR_DQUOTE] = ACTIONS(3142), - [anon_sym_u8R_DQUOTE] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_requires] = ACTIONS(3140), - [sym_this] = ACTIONS(3140), + [509] = { + [sym_identifier] = ACTIONS(3252), + [aux_sym_preproc_include_token1] = ACTIONS(3252), + [aux_sym_preproc_def_token1] = ACTIONS(3252), + [aux_sym_preproc_if_token1] = ACTIONS(3252), + [aux_sym_preproc_if_token2] = ACTIONS(3252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3252), + [aux_sym_preproc_else_token1] = ACTIONS(3252), + [aux_sym_preproc_elif_token1] = ACTIONS(3252), + [sym_preproc_directive] = ACTIONS(3252), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym_typedef] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3254), + [anon_sym___declspec] = ACTIONS(3252), + [anon_sym___based] = ACTIONS(3252), + [anon_sym___cdecl] = ACTIONS(3252), + [anon_sym___clrcall] = ACTIONS(3252), + [anon_sym___stdcall] = ACTIONS(3252), + [anon_sym___fastcall] = ACTIONS(3252), + [anon_sym___thiscall] = ACTIONS(3252), + [anon_sym___vectorcall] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_signed] = ACTIONS(3252), + [anon_sym_unsigned] = ACTIONS(3252), + [anon_sym_long] = ACTIONS(3252), + [anon_sym_short] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_inline] = ACTIONS(3252), + [anon_sym___inline] = ACTIONS(3252), + [anon_sym___inline__] = ACTIONS(3252), + [anon_sym___forceinline] = ACTIONS(3252), + [anon_sym_thread_local] = ACTIONS(3252), + [anon_sym___thread] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [sym_primitive_type] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_goto] = ACTIONS(3252), + [anon_sym___try] = ACTIONS(3252), + [anon_sym___leave] = ACTIONS(3252), + [anon_sym_not] = ACTIONS(3252), + [anon_sym_compl] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_sizeof] = ACTIONS(3252), + [anon_sym___alignof__] = ACTIONS(3252), + [anon_sym___alignof] = ACTIONS(3252), + [anon_sym__alignof] = ACTIONS(3252), + [anon_sym_alignof] = ACTIONS(3252), + [anon_sym__Alignof] = ACTIONS(3252), + [anon_sym_offsetof] = ACTIONS(3252), + [anon_sym__Generic] = ACTIONS(3252), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3254), + [anon_sym_u_SQUOTE] = ACTIONS(3254), + [anon_sym_U_SQUOTE] = ACTIONS(3254), + [anon_sym_u8_SQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_L_DQUOTE] = ACTIONS(3254), + [anon_sym_u_DQUOTE] = ACTIONS(3254), + [anon_sym_U_DQUOTE] = ACTIONS(3254), + [anon_sym_u8_DQUOTE] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [anon_sym_NULL] = ACTIONS(3252), + [anon_sym_nullptr] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_virtual] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym_explicit] = ACTIONS(3252), + [anon_sym_typename] = ACTIONS(3252), + [anon_sym_template] = ACTIONS(3252), + [anon_sym_operator] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_static_assert] = ACTIONS(3252), + [anon_sym_concept] = ACTIONS(3252), + [anon_sym_co_return] = ACTIONS(3252), + [anon_sym_co_yield] = ACTIONS(3252), + [anon_sym_R_DQUOTE] = ACTIONS(3254), + [anon_sym_LR_DQUOTE] = ACTIONS(3254), + [anon_sym_uR_DQUOTE] = ACTIONS(3254), + [anon_sym_UR_DQUOTE] = ACTIONS(3254), + [anon_sym_u8R_DQUOTE] = ACTIONS(3254), + [anon_sym_co_await] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_requires] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), }, - [523] = { - [sym_identifier] = ACTIONS(2148), - [aux_sym_preproc_include_token1] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), - [sym_preproc_directive] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_AMP_AMP] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym___extension__] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym___attribute__] = ACTIONS(2148), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2148), - [anon_sym___based] = ACTIONS(2148), - [anon_sym___cdecl] = ACTIONS(2148), - [anon_sym___clrcall] = ACTIONS(2148), - [anon_sym___stdcall] = ACTIONS(2148), - [anon_sym___fastcall] = ACTIONS(2148), - [anon_sym___thiscall] = ACTIONS(2148), - [anon_sym___vectorcall] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2148), - [anon_sym_unsigned] = ACTIONS(2148), - [anon_sym_long] = ACTIONS(2148), - [anon_sym_short] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym___inline] = ACTIONS(2148), - [anon_sym___inline__] = ACTIONS(2148), - [anon_sym___forceinline] = ACTIONS(2148), - [anon_sym_thread_local] = ACTIONS(2148), - [anon_sym___thread] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_constexpr] = ACTIONS(2148), - [anon_sym_volatile] = ACTIONS(2148), - [anon_sym_restrict] = ACTIONS(2148), - [anon_sym___restrict__] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(2148), - [anon_sym__Noreturn] = ACTIONS(2148), - [anon_sym_noreturn] = ACTIONS(2148), - [anon_sym_mutable] = ACTIONS(2148), - [anon_sym_constinit] = ACTIONS(2148), - [anon_sym_consteval] = ACTIONS(2148), - [sym_primitive_type] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_class] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_else] = ACTIONS(2148), - [anon_sym_switch] = ACTIONS(2148), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_do] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_goto] = ACTIONS(2148), - [anon_sym___try] = ACTIONS(2148), - [anon_sym___leave] = ACTIONS(2148), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2146), - [anon_sym_PLUS_PLUS] = ACTIONS(2146), - [anon_sym_sizeof] = ACTIONS(2148), - [anon_sym___alignof__] = ACTIONS(2148), - [anon_sym___alignof] = ACTIONS(2148), - [anon_sym__alignof] = ACTIONS(2148), - [anon_sym_alignof] = ACTIONS(2148), - [anon_sym__Alignof] = ACTIONS(2148), - [anon_sym_offsetof] = ACTIONS(2148), - [anon_sym__Generic] = ACTIONS(2148), - [anon_sym_asm] = ACTIONS(2148), - [anon_sym___asm__] = ACTIONS(2148), - [sym_number_literal] = ACTIONS(2146), - [anon_sym_L_SQUOTE] = ACTIONS(2146), - [anon_sym_u_SQUOTE] = ACTIONS(2146), - [anon_sym_U_SQUOTE] = ACTIONS(2146), - [anon_sym_u8_SQUOTE] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2146), - [anon_sym_L_DQUOTE] = ACTIONS(2146), - [anon_sym_u_DQUOTE] = ACTIONS(2146), - [anon_sym_U_DQUOTE] = ACTIONS(2146), - [anon_sym_u8_DQUOTE] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym_true] = ACTIONS(2148), - [sym_false] = ACTIONS(2148), - [anon_sym_NULL] = ACTIONS(2148), - [anon_sym_nullptr] = ACTIONS(2148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2148), - [anon_sym_decltype] = ACTIONS(2148), - [anon_sym_virtual] = ACTIONS(2148), - [anon_sym_alignas] = ACTIONS(2148), - [anon_sym_explicit] = ACTIONS(2148), - [anon_sym_typename] = ACTIONS(2148), - [anon_sym_template] = ACTIONS(2148), - [anon_sym_operator] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [anon_sym_delete] = ACTIONS(2148), - [anon_sym_throw] = ACTIONS(2148), - [anon_sym_namespace] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2148), - [anon_sym_static_assert] = ACTIONS(2148), - [anon_sym_concept] = ACTIONS(2148), - [anon_sym_co_return] = ACTIONS(2148), - [anon_sym_co_yield] = ACTIONS(2148), - [anon_sym_catch] = ACTIONS(2148), - [anon_sym_R_DQUOTE] = ACTIONS(2146), - [anon_sym_LR_DQUOTE] = ACTIONS(2146), - [anon_sym_uR_DQUOTE] = ACTIONS(2146), - [anon_sym_UR_DQUOTE] = ACTIONS(2146), - [anon_sym_u8R_DQUOTE] = ACTIONS(2146), - [anon_sym_co_await] = ACTIONS(2148), - [anon_sym_new] = ACTIONS(2148), - [anon_sym_requires] = ACTIONS(2148), - [sym_this] = ACTIONS(2148), + [510] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4952), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7512), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(8033), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_GT2] = ACTIONS(3394), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [524] = { - [sym_identifier] = ACTIONS(3227), - [aux_sym_preproc_include_token1] = ACTIONS(3227), - [aux_sym_preproc_def_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token2] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), - [aux_sym_preproc_else_token1] = ACTIONS(3227), - [aux_sym_preproc_elif_token1] = ACTIONS(3227), - [sym_preproc_directive] = ACTIONS(3227), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym___extension__] = ACTIONS(3227), - [anon_sym_typedef] = ACTIONS(3227), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym___attribute__] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), - [anon_sym___declspec] = ACTIONS(3227), - [anon_sym___based] = ACTIONS(3227), - [anon_sym___cdecl] = ACTIONS(3227), - [anon_sym___clrcall] = ACTIONS(3227), - [anon_sym___stdcall] = ACTIONS(3227), - [anon_sym___fastcall] = ACTIONS(3227), - [anon_sym___thiscall] = ACTIONS(3227), - [anon_sym___vectorcall] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_signed] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym___inline] = ACTIONS(3227), - [anon_sym___inline__] = ACTIONS(3227), - [anon_sym___forceinline] = ACTIONS(3227), - [anon_sym_thread_local] = ACTIONS(3227), - [anon_sym___thread] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_constexpr] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym___restrict__] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym__Noreturn] = ACTIONS(3227), - [anon_sym_noreturn] = ACTIONS(3227), - [anon_sym_mutable] = ACTIONS(3227), - [anon_sym_constinit] = ACTIONS(3227), - [anon_sym_consteval] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_default] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_goto] = ACTIONS(3227), - [anon_sym___try] = ACTIONS(3227), - [anon_sym___leave] = ACTIONS(3227), - [anon_sym_not] = ACTIONS(3227), - [anon_sym_compl] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_sizeof] = ACTIONS(3227), - [anon_sym___alignof__] = ACTIONS(3227), - [anon_sym___alignof] = ACTIONS(3227), - [anon_sym__alignof] = ACTIONS(3227), - [anon_sym_alignof] = ACTIONS(3227), - [anon_sym__Alignof] = ACTIONS(3227), - [anon_sym_offsetof] = ACTIONS(3227), - [anon_sym__Generic] = ACTIONS(3227), - [anon_sym_asm] = ACTIONS(3227), - [anon_sym___asm__] = ACTIONS(3227), - [sym_number_literal] = ACTIONS(3229), - [anon_sym_L_SQUOTE] = ACTIONS(3229), - [anon_sym_u_SQUOTE] = ACTIONS(3229), - [anon_sym_U_SQUOTE] = ACTIONS(3229), - [anon_sym_u8_SQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_L_DQUOTE] = ACTIONS(3229), - [anon_sym_u_DQUOTE] = ACTIONS(3229), - [anon_sym_U_DQUOTE] = ACTIONS(3229), - [anon_sym_u8_DQUOTE] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [anon_sym_NULL] = ACTIONS(3227), - [anon_sym_nullptr] = ACTIONS(3227), + [511] = { + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_include_token1] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_if_token2] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [aux_sym_preproc_else_token1] = ACTIONS(3302), + [aux_sym_preproc_elif_token1] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym___cdecl] = ACTIONS(3302), + [anon_sym___clrcall] = ACTIONS(3302), + [anon_sym___stdcall] = ACTIONS(3302), + [anon_sym___fastcall] = ACTIONS(3302), + [anon_sym___thiscall] = ACTIONS(3302), + [anon_sym___vectorcall] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_goto] = ACTIONS(3302), + [anon_sym___try] = ACTIONS(3302), + [anon_sym___leave] = ACTIONS(3302), + [anon_sym_not] = ACTIONS(3302), + [anon_sym_compl] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_sizeof] = ACTIONS(3302), + [anon_sym___alignof__] = ACTIONS(3302), + [anon_sym___alignof] = ACTIONS(3302), + [anon_sym__alignof] = ACTIONS(3302), + [anon_sym_alignof] = ACTIONS(3302), + [anon_sym__Alignof] = ACTIONS(3302), + [anon_sym_offsetof] = ACTIONS(3302), + [anon_sym__Generic] = ACTIONS(3302), + [anon_sym_asm] = ACTIONS(3302), + [anon_sym___asm__] = ACTIONS(3302), + [sym_number_literal] = ACTIONS(3304), + [anon_sym_L_SQUOTE] = ACTIONS(3304), + [anon_sym_u_SQUOTE] = ACTIONS(3304), + [anon_sym_U_SQUOTE] = ACTIONS(3304), + [anon_sym_u8_SQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_L_DQUOTE] = ACTIONS(3304), + [anon_sym_u_DQUOTE] = ACTIONS(3304), + [anon_sym_U_DQUOTE] = ACTIONS(3304), + [anon_sym_u8_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [anon_sym_NULL] = ACTIONS(3302), + [anon_sym_nullptr] = ACTIONS(3302), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3227), - [anon_sym_decltype] = ACTIONS(3227), - [anon_sym_virtual] = ACTIONS(3227), - [anon_sym_alignas] = ACTIONS(3227), - [anon_sym_explicit] = ACTIONS(3227), - [anon_sym_typename] = ACTIONS(3227), - [anon_sym_template] = ACTIONS(3227), - [anon_sym_operator] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_static_assert] = ACTIONS(3227), - [anon_sym_concept] = ACTIONS(3227), - [anon_sym_co_return] = ACTIONS(3227), - [anon_sym_co_yield] = ACTIONS(3227), - [anon_sym_R_DQUOTE] = ACTIONS(3229), - [anon_sym_LR_DQUOTE] = ACTIONS(3229), - [anon_sym_uR_DQUOTE] = ACTIONS(3229), - [anon_sym_UR_DQUOTE] = ACTIONS(3229), - [anon_sym_u8R_DQUOTE] = ACTIONS(3229), - [anon_sym_co_await] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_requires] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [anon_sym_concept] = ACTIONS(3302), + [anon_sym_co_return] = ACTIONS(3302), + [anon_sym_co_yield] = ACTIONS(3302), + [anon_sym_R_DQUOTE] = ACTIONS(3304), + [anon_sym_LR_DQUOTE] = ACTIONS(3304), + [anon_sym_uR_DQUOTE] = ACTIONS(3304), + [anon_sym_UR_DQUOTE] = ACTIONS(3304), + [anon_sym_u8R_DQUOTE] = ACTIONS(3304), + [anon_sym_co_await] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_requires] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), }, - [525] = { - [sym_identifier] = ACTIONS(3266), - [aux_sym_preproc_include_token1] = ACTIONS(3266), - [aux_sym_preproc_def_token1] = ACTIONS(3266), - [aux_sym_preproc_if_token1] = ACTIONS(3266), - [aux_sym_preproc_if_token2] = ACTIONS(3266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), - [aux_sym_preproc_else_token1] = ACTIONS(3266), - [aux_sym_preproc_elif_token1] = ACTIONS(3266), - [sym_preproc_directive] = ACTIONS(3266), - [anon_sym_LPAREN2] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_AMP] = ACTIONS(3266), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym___extension__] = ACTIONS(3266), - [anon_sym_typedef] = ACTIONS(3266), - [anon_sym_extern] = ACTIONS(3266), - [anon_sym___attribute__] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(3268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), - [anon_sym___declspec] = ACTIONS(3266), - [anon_sym___based] = ACTIONS(3266), - [anon_sym___cdecl] = ACTIONS(3266), - [anon_sym___clrcall] = ACTIONS(3266), - [anon_sym___stdcall] = ACTIONS(3266), - [anon_sym___fastcall] = ACTIONS(3266), - [anon_sym___thiscall] = ACTIONS(3266), - [anon_sym___vectorcall] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_signed] = ACTIONS(3266), - [anon_sym_unsigned] = ACTIONS(3266), - [anon_sym_long] = ACTIONS(3266), - [anon_sym_short] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_register] = ACTIONS(3266), - [anon_sym_inline] = ACTIONS(3266), - [anon_sym___inline] = ACTIONS(3266), - [anon_sym___inline__] = ACTIONS(3266), - [anon_sym___forceinline] = ACTIONS(3266), - [anon_sym_thread_local] = ACTIONS(3266), - [anon_sym___thread] = ACTIONS(3266), - [anon_sym_const] = ACTIONS(3266), - [anon_sym_constexpr] = ACTIONS(3266), - [anon_sym_volatile] = ACTIONS(3266), - [anon_sym_restrict] = ACTIONS(3266), - [anon_sym___restrict__] = ACTIONS(3266), - [anon_sym__Atomic] = ACTIONS(3266), - [anon_sym__Noreturn] = ACTIONS(3266), - [anon_sym_noreturn] = ACTIONS(3266), - [anon_sym_mutable] = ACTIONS(3266), - [anon_sym_constinit] = ACTIONS(3266), - [anon_sym_consteval] = ACTIONS(3266), - [sym_primitive_type] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_struct] = ACTIONS(3266), - [anon_sym_union] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_switch] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_default] = ACTIONS(3266), - [anon_sym_while] = ACTIONS(3266), - [anon_sym_do] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_goto] = ACTIONS(3266), - [anon_sym___try] = ACTIONS(3266), - [anon_sym___leave] = ACTIONS(3266), - [anon_sym_not] = ACTIONS(3266), - [anon_sym_compl] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_sizeof] = ACTIONS(3266), - [anon_sym___alignof__] = ACTIONS(3266), - [anon_sym___alignof] = ACTIONS(3266), - [anon_sym__alignof] = ACTIONS(3266), - [anon_sym_alignof] = ACTIONS(3266), - [anon_sym__Alignof] = ACTIONS(3266), - [anon_sym_offsetof] = ACTIONS(3266), - [anon_sym__Generic] = ACTIONS(3266), - [anon_sym_asm] = ACTIONS(3266), - [anon_sym___asm__] = ACTIONS(3266), - [sym_number_literal] = ACTIONS(3268), - [anon_sym_L_SQUOTE] = ACTIONS(3268), - [anon_sym_u_SQUOTE] = ACTIONS(3268), - [anon_sym_U_SQUOTE] = ACTIONS(3268), - [anon_sym_u8_SQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_L_DQUOTE] = ACTIONS(3268), - [anon_sym_u_DQUOTE] = ACTIONS(3268), - [anon_sym_U_DQUOTE] = ACTIONS(3268), - [anon_sym_u8_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [anon_sym_NULL] = ACTIONS(3266), - [anon_sym_nullptr] = ACTIONS(3266), + [512] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4829), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7521), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(8019), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_GT2] = ACTIONS(3396), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [513] = { + [sym_identifier] = ACTIONS(3203), + [aux_sym_preproc_include_token1] = ACTIONS(3203), + [aux_sym_preproc_def_token1] = ACTIONS(3203), + [aux_sym_preproc_if_token1] = ACTIONS(3203), + [aux_sym_preproc_if_token2] = ACTIONS(3203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), + [aux_sym_preproc_else_token1] = ACTIONS(3203), + [aux_sym_preproc_elif_token1] = ACTIONS(3203), + [sym_preproc_directive] = ACTIONS(3203), + [anon_sym_LPAREN2] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym___extension__] = ACTIONS(3203), + [anon_sym_typedef] = ACTIONS(3203), + [anon_sym_extern] = ACTIONS(3203), + [anon_sym___attribute__] = ACTIONS(3203), + [anon_sym_COLON_COLON] = ACTIONS(3205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), + [anon_sym___declspec] = ACTIONS(3203), + [anon_sym___based] = ACTIONS(3203), + [anon_sym___cdecl] = ACTIONS(3203), + [anon_sym___clrcall] = ACTIONS(3203), + [anon_sym___stdcall] = ACTIONS(3203), + [anon_sym___fastcall] = ACTIONS(3203), + [anon_sym___thiscall] = ACTIONS(3203), + [anon_sym___vectorcall] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_signed] = ACTIONS(3203), + [anon_sym_unsigned] = ACTIONS(3203), + [anon_sym_long] = ACTIONS(3203), + [anon_sym_short] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3203), + [anon_sym_static] = ACTIONS(3203), + [anon_sym_register] = ACTIONS(3203), + [anon_sym_inline] = ACTIONS(3203), + [anon_sym___inline] = ACTIONS(3203), + [anon_sym___inline__] = ACTIONS(3203), + [anon_sym___forceinline] = ACTIONS(3203), + [anon_sym_thread_local] = ACTIONS(3203), + [anon_sym___thread] = ACTIONS(3203), + [anon_sym_const] = ACTIONS(3203), + [anon_sym_constexpr] = ACTIONS(3203), + [anon_sym_volatile] = ACTIONS(3203), + [anon_sym_restrict] = ACTIONS(3203), + [anon_sym___restrict__] = ACTIONS(3203), + [anon_sym__Atomic] = ACTIONS(3203), + [anon_sym__Noreturn] = ACTIONS(3203), + [anon_sym_noreturn] = ACTIONS(3203), + [anon_sym_mutable] = ACTIONS(3203), + [anon_sym_constinit] = ACTIONS(3203), + [anon_sym_consteval] = ACTIONS(3203), + [sym_primitive_type] = ACTIONS(3203), + [anon_sym_enum] = ACTIONS(3203), + [anon_sym_class] = ACTIONS(3203), + [anon_sym_struct] = ACTIONS(3203), + [anon_sym_union] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_switch] = ACTIONS(3203), + [anon_sym_case] = ACTIONS(3203), + [anon_sym_default] = ACTIONS(3203), + [anon_sym_while] = ACTIONS(3203), + [anon_sym_do] = ACTIONS(3203), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_goto] = ACTIONS(3203), + [anon_sym___try] = ACTIONS(3203), + [anon_sym___leave] = ACTIONS(3203), + [anon_sym_not] = ACTIONS(3203), + [anon_sym_compl] = ACTIONS(3203), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(3203), + [anon_sym___alignof__] = ACTIONS(3203), + [anon_sym___alignof] = ACTIONS(3203), + [anon_sym__alignof] = ACTIONS(3203), + [anon_sym_alignof] = ACTIONS(3203), + [anon_sym__Alignof] = ACTIONS(3203), + [anon_sym_offsetof] = ACTIONS(3203), + [anon_sym__Generic] = ACTIONS(3203), + [anon_sym_asm] = ACTIONS(3203), + [anon_sym___asm__] = ACTIONS(3203), + [sym_number_literal] = ACTIONS(3205), + [anon_sym_L_SQUOTE] = ACTIONS(3205), + [anon_sym_u_SQUOTE] = ACTIONS(3205), + [anon_sym_U_SQUOTE] = ACTIONS(3205), + [anon_sym_u8_SQUOTE] = ACTIONS(3205), + [anon_sym_SQUOTE] = ACTIONS(3205), + [anon_sym_L_DQUOTE] = ACTIONS(3205), + [anon_sym_u_DQUOTE] = ACTIONS(3205), + [anon_sym_U_DQUOTE] = ACTIONS(3205), + [anon_sym_u8_DQUOTE] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [sym_true] = ACTIONS(3203), + [sym_false] = ACTIONS(3203), + [anon_sym_NULL] = ACTIONS(3203), + [anon_sym_nullptr] = ACTIONS(3203), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3266), - [anon_sym_decltype] = ACTIONS(3266), - [anon_sym_virtual] = ACTIONS(3266), - [anon_sym_alignas] = ACTIONS(3266), - [anon_sym_explicit] = ACTIONS(3266), - [anon_sym_typename] = ACTIONS(3266), - [anon_sym_template] = ACTIONS(3266), - [anon_sym_operator] = ACTIONS(3266), - [anon_sym_try] = ACTIONS(3266), - [anon_sym_delete] = ACTIONS(3266), - [anon_sym_throw] = ACTIONS(3266), - [anon_sym_namespace] = ACTIONS(3266), - [anon_sym_using] = ACTIONS(3266), - [anon_sym_static_assert] = ACTIONS(3266), - [anon_sym_concept] = ACTIONS(3266), - [anon_sym_co_return] = ACTIONS(3266), - [anon_sym_co_yield] = ACTIONS(3266), - [anon_sym_R_DQUOTE] = ACTIONS(3268), - [anon_sym_LR_DQUOTE] = ACTIONS(3268), - [anon_sym_uR_DQUOTE] = ACTIONS(3268), - [anon_sym_UR_DQUOTE] = ACTIONS(3268), - [anon_sym_u8R_DQUOTE] = ACTIONS(3268), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3266), - [anon_sym_requires] = ACTIONS(3266), - [sym_this] = ACTIONS(3266), + [sym_auto] = ACTIONS(3203), + [anon_sym_decltype] = ACTIONS(3203), + [anon_sym_virtual] = ACTIONS(3203), + [anon_sym_alignas] = ACTIONS(3203), + [anon_sym_explicit] = ACTIONS(3203), + [anon_sym_typename] = ACTIONS(3203), + [anon_sym_template] = ACTIONS(3203), + [anon_sym_operator] = ACTIONS(3203), + [anon_sym_try] = ACTIONS(3203), + [anon_sym_delete] = ACTIONS(3203), + [anon_sym_throw] = ACTIONS(3203), + [anon_sym_namespace] = ACTIONS(3203), + [anon_sym_using] = ACTIONS(3203), + [anon_sym_static_assert] = ACTIONS(3203), + [anon_sym_concept] = ACTIONS(3203), + [anon_sym_co_return] = ACTIONS(3203), + [anon_sym_co_yield] = ACTIONS(3203), + [anon_sym_R_DQUOTE] = ACTIONS(3205), + [anon_sym_LR_DQUOTE] = ACTIONS(3205), + [anon_sym_uR_DQUOTE] = ACTIONS(3205), + [anon_sym_UR_DQUOTE] = ACTIONS(3205), + [anon_sym_u8R_DQUOTE] = ACTIONS(3205), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3203), + [anon_sym_requires] = ACTIONS(3203), + [sym_this] = ACTIONS(3203), }, - [526] = { - [sym_identifier] = ACTIONS(2849), - [aux_sym_preproc_include_token1] = ACTIONS(2849), - [aux_sym_preproc_def_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token1] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), - [sym_preproc_directive] = ACTIONS(2849), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym___extension__] = ACTIONS(2849), - [anon_sym_typedef] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), - [anon_sym___declspec] = ACTIONS(2849), - [anon_sym___based] = ACTIONS(2849), - [anon_sym___cdecl] = ACTIONS(2849), - [anon_sym___clrcall] = ACTIONS(2849), - [anon_sym___stdcall] = ACTIONS(2849), - [anon_sym___fastcall] = ACTIONS(2849), - [anon_sym___thiscall] = ACTIONS(2849), - [anon_sym___vectorcall] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_signed] = ACTIONS(2849), - [anon_sym_unsigned] = ACTIONS(2849), - [anon_sym_long] = ACTIONS(2849), - [anon_sym_short] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_register] = ACTIONS(2849), - [anon_sym_inline] = ACTIONS(2849), - [anon_sym___inline] = ACTIONS(2849), - [anon_sym___inline__] = ACTIONS(2849), - [anon_sym___forceinline] = ACTIONS(2849), - [anon_sym_thread_local] = ACTIONS(2849), - [anon_sym___thread] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_constexpr] = ACTIONS(2849), - [anon_sym_volatile] = ACTIONS(2849), - [anon_sym_restrict] = ACTIONS(2849), - [anon_sym___restrict__] = ACTIONS(2849), - [anon_sym__Atomic] = ACTIONS(2849), - [anon_sym__Noreturn] = ACTIONS(2849), - [anon_sym_noreturn] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [sym_primitive_type] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_class] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_else] = ACTIONS(2849), - [anon_sym_switch] = ACTIONS(2849), - [anon_sym_case] = ACTIONS(2849), - [anon_sym_default] = ACTIONS(2849), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_do] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_goto] = ACTIONS(2849), - [anon_sym___try] = ACTIONS(2849), - [anon_sym___leave] = ACTIONS(2849), - [anon_sym_not] = ACTIONS(2849), - [anon_sym_compl] = ACTIONS(2849), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_sizeof] = ACTIONS(2849), - [anon_sym___alignof__] = ACTIONS(2849), - [anon_sym___alignof] = ACTIONS(2849), - [anon_sym__alignof] = ACTIONS(2849), - [anon_sym_alignof] = ACTIONS(2849), - [anon_sym__Alignof] = ACTIONS(2849), - [anon_sym_offsetof] = ACTIONS(2849), - [anon_sym__Generic] = ACTIONS(2849), - [anon_sym_asm] = ACTIONS(2849), - [anon_sym___asm__] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2851), - [anon_sym_u_SQUOTE] = ACTIONS(2851), - [anon_sym_U_SQUOTE] = ACTIONS(2851), - [anon_sym_u8_SQUOTE] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [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(2849), - [sym_false] = ACTIONS(2849), - [anon_sym_NULL] = ACTIONS(2849), - [anon_sym_nullptr] = ACTIONS(2849), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2849), - [anon_sym_decltype] = ACTIONS(2849), - [anon_sym_virtual] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym_explicit] = ACTIONS(2849), - [anon_sym_typename] = ACTIONS(2849), - [anon_sym_template] = ACTIONS(2849), - [anon_sym_operator] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2849), - [anon_sym_delete] = ACTIONS(2849), - [anon_sym_throw] = ACTIONS(2849), - [anon_sym_namespace] = ACTIONS(2849), - [anon_sym_using] = ACTIONS(2849), - [anon_sym_static_assert] = ACTIONS(2849), - [anon_sym_concept] = ACTIONS(2849), - [anon_sym_co_return] = ACTIONS(2849), - [anon_sym_co_yield] = ACTIONS(2849), - [anon_sym_catch] = ACTIONS(2849), - [anon_sym_R_DQUOTE] = ACTIONS(2851), - [anon_sym_LR_DQUOTE] = ACTIONS(2851), - [anon_sym_uR_DQUOTE] = ACTIONS(2851), - [anon_sym_UR_DQUOTE] = ACTIONS(2851), - [anon_sym_u8R_DQUOTE] = ACTIONS(2851), - [anon_sym_co_await] = ACTIONS(2849), - [anon_sym_new] = ACTIONS(2849), - [anon_sym_requires] = ACTIONS(2849), - [sym_this] = ACTIONS(2849), + [514] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4861), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7480), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7841), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_GT2] = ACTIONS(3398), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [527] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4770), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7366), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7836), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [515] = { + [sym_identifier] = ACTIONS(2136), + [aux_sym_preproc_include_token1] = ACTIONS(2136), + [aux_sym_preproc_def_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token1] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2136), + [sym_preproc_directive] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym___extension__] = ACTIONS(2136), + [anon_sym_typedef] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym___attribute__] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2134), + [anon_sym___declspec] = ACTIONS(2136), + [anon_sym___based] = ACTIONS(2136), + [anon_sym___cdecl] = ACTIONS(2136), + [anon_sym___clrcall] = ACTIONS(2136), + [anon_sym___stdcall] = ACTIONS(2136), + [anon_sym___fastcall] = ACTIONS(2136), + [anon_sym___thiscall] = ACTIONS(2136), + [anon_sym___vectorcall] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_signed] = ACTIONS(2136), + [anon_sym_unsigned] = ACTIONS(2136), + [anon_sym_long] = ACTIONS(2136), + [anon_sym_short] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_register] = ACTIONS(2136), + [anon_sym_inline] = ACTIONS(2136), + [anon_sym___inline] = ACTIONS(2136), + [anon_sym___inline__] = ACTIONS(2136), + [anon_sym___forceinline] = ACTIONS(2136), + [anon_sym_thread_local] = ACTIONS(2136), + [anon_sym___thread] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_constexpr] = ACTIONS(2136), + [anon_sym_volatile] = ACTIONS(2136), + [anon_sym_restrict] = ACTIONS(2136), + [anon_sym___restrict__] = ACTIONS(2136), + [anon_sym__Atomic] = ACTIONS(2136), + [anon_sym__Noreturn] = ACTIONS(2136), + [anon_sym_noreturn] = ACTIONS(2136), + [anon_sym_mutable] = ACTIONS(2136), + [anon_sym_constinit] = ACTIONS(2136), + [anon_sym_consteval] = ACTIONS(2136), + [sym_primitive_type] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_class] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_else] = ACTIONS(2136), + [anon_sym_switch] = ACTIONS(2136), + [anon_sym_case] = ACTIONS(2136), + [anon_sym_default] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_do] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_return] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_goto] = ACTIONS(2136), + [anon_sym___try] = ACTIONS(2136), + [anon_sym___leave] = ACTIONS(2136), + [anon_sym_not] = ACTIONS(2136), + [anon_sym_compl] = ACTIONS(2136), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2136), + [anon_sym___alignof__] = ACTIONS(2136), + [anon_sym___alignof] = ACTIONS(2136), + [anon_sym__alignof] = ACTIONS(2136), + [anon_sym_alignof] = ACTIONS(2136), + [anon_sym__Alignof] = ACTIONS(2136), + [anon_sym_offsetof] = ACTIONS(2136), + [anon_sym__Generic] = ACTIONS(2136), + [anon_sym_asm] = ACTIONS(2136), + [anon_sym___asm__] = ACTIONS(2136), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2136), + [sym_false] = ACTIONS(2136), + [anon_sym_NULL] = ACTIONS(2136), + [anon_sym_nullptr] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2136), + [anon_sym_decltype] = ACTIONS(2136), + [anon_sym_virtual] = ACTIONS(2136), + [anon_sym_alignas] = ACTIONS(2136), + [anon_sym_explicit] = ACTIONS(2136), + [anon_sym_typename] = ACTIONS(2136), + [anon_sym_template] = ACTIONS(2136), + [anon_sym_operator] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2136), + [anon_sym_delete] = ACTIONS(2136), + [anon_sym_throw] = ACTIONS(2136), + [anon_sym_namespace] = ACTIONS(2136), + [anon_sym_using] = ACTIONS(2136), + [anon_sym_static_assert] = ACTIONS(2136), + [anon_sym_concept] = ACTIONS(2136), + [anon_sym_co_return] = ACTIONS(2136), + [anon_sym_co_yield] = ACTIONS(2136), + [anon_sym_catch] = ACTIONS(2136), + [anon_sym_R_DQUOTE] = ACTIONS(2134), + [anon_sym_LR_DQUOTE] = ACTIONS(2134), + [anon_sym_uR_DQUOTE] = ACTIONS(2134), + [anon_sym_UR_DQUOTE] = ACTIONS(2134), + [anon_sym_u8R_DQUOTE] = ACTIONS(2134), + [anon_sym_co_await] = ACTIONS(2136), + [anon_sym_new] = ACTIONS(2136), + [anon_sym_requires] = ACTIONS(2136), + [sym_this] = ACTIONS(2136), + }, + [516] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), + }, + [517] = { + [sym_identifier] = ACTIONS(3175), + [aux_sym_preproc_include_token1] = ACTIONS(3175), + [aux_sym_preproc_def_token1] = ACTIONS(3175), + [aux_sym_preproc_if_token1] = ACTIONS(3175), + [aux_sym_preproc_if_token2] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3175), + [aux_sym_preproc_else_token1] = ACTIONS(3175), + [aux_sym_preproc_elif_token1] = ACTIONS(3175), + [sym_preproc_directive] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym___extension__] = ACTIONS(3175), + [anon_sym_typedef] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym___attribute__] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), + [anon_sym___declspec] = ACTIONS(3175), + [anon_sym___based] = ACTIONS(3175), + [anon_sym___cdecl] = ACTIONS(3175), + [anon_sym___clrcall] = ACTIONS(3175), + [anon_sym___stdcall] = ACTIONS(3175), + [anon_sym___fastcall] = ACTIONS(3175), + [anon_sym___thiscall] = ACTIONS(3175), + [anon_sym___vectorcall] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_signed] = ACTIONS(3175), + [anon_sym_unsigned] = ACTIONS(3175), + [anon_sym_long] = ACTIONS(3175), + [anon_sym_short] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_register] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym___inline] = ACTIONS(3175), + [anon_sym___inline__] = ACTIONS(3175), + [anon_sym___forceinline] = ACTIONS(3175), + [anon_sym_thread_local] = ACTIONS(3175), + [anon_sym___thread] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_constexpr] = ACTIONS(3175), + [anon_sym_volatile] = ACTIONS(3175), + [anon_sym_restrict] = ACTIONS(3175), + [anon_sym___restrict__] = ACTIONS(3175), + [anon_sym__Atomic] = ACTIONS(3175), + [anon_sym__Noreturn] = ACTIONS(3175), + [anon_sym_noreturn] = ACTIONS(3175), + [anon_sym_mutable] = ACTIONS(3175), + [anon_sym_constinit] = ACTIONS(3175), + [anon_sym_consteval] = ACTIONS(3175), + [sym_primitive_type] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym___try] = ACTIONS(3175), + [anon_sym___leave] = ACTIONS(3175), + [anon_sym_not] = ACTIONS(3175), + [anon_sym_compl] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3175), + [anon_sym___alignof__] = ACTIONS(3175), + [anon_sym___alignof] = ACTIONS(3175), + [anon_sym__alignof] = ACTIONS(3175), + [anon_sym_alignof] = ACTIONS(3175), + [anon_sym__Alignof] = ACTIONS(3175), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3175), + [anon_sym_asm] = ACTIONS(3175), + [anon_sym___asm__] = ACTIONS(3175), + [sym_number_literal] = ACTIONS(3177), + [anon_sym_L_SQUOTE] = ACTIONS(3177), + [anon_sym_u_SQUOTE] = ACTIONS(3177), + [anon_sym_U_SQUOTE] = ACTIONS(3177), + [anon_sym_u8_SQUOTE] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_L_DQUOTE] = ACTIONS(3177), + [anon_sym_u_DQUOTE] = ACTIONS(3177), + [anon_sym_U_DQUOTE] = ACTIONS(3177), + [anon_sym_u8_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [anon_sym_NULL] = ACTIONS(3175), + [anon_sym_nullptr] = ACTIONS(3175), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3175), + [anon_sym_decltype] = ACTIONS(3175), + [anon_sym_virtual] = ACTIONS(3175), + [anon_sym_alignas] = ACTIONS(3175), + [anon_sym_explicit] = ACTIONS(3175), + [anon_sym_typename] = ACTIONS(3175), + [anon_sym_template] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_static_assert] = ACTIONS(3175), + [anon_sym_concept] = ACTIONS(3175), + [anon_sym_co_return] = ACTIONS(3175), + [anon_sym_co_yield] = ACTIONS(3175), + [anon_sym_R_DQUOTE] = ACTIONS(3177), + [anon_sym_LR_DQUOTE] = ACTIONS(3177), + [anon_sym_uR_DQUOTE] = ACTIONS(3177), + [anon_sym_UR_DQUOTE] = ACTIONS(3177), + [anon_sym_u8R_DQUOTE] = ACTIONS(3177), + [anon_sym_co_await] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_requires] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + }, + [518] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4812), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7614), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7724), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -163713,129 +162838,799 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3390), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_GT2] = ACTIONS(3400), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [528] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4789), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7347), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7771), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [519] = { + [sym_identifier] = ACTIONS(3167), + [aux_sym_preproc_include_token1] = ACTIONS(3167), + [aux_sym_preproc_def_token1] = ACTIONS(3167), + [aux_sym_preproc_if_token1] = ACTIONS(3167), + [aux_sym_preproc_if_token2] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [aux_sym_preproc_else_token1] = ACTIONS(3167), + [aux_sym_preproc_elif_token1] = ACTIONS(3167), + [sym_preproc_directive] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym___extension__] = ACTIONS(3167), + [anon_sym_typedef] = ACTIONS(3167), + [anon_sym_extern] = ACTIONS(3167), + [anon_sym___attribute__] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3169), + [anon_sym___declspec] = ACTIONS(3167), + [anon_sym___based] = ACTIONS(3167), + [anon_sym___cdecl] = ACTIONS(3167), + [anon_sym___clrcall] = ACTIONS(3167), + [anon_sym___stdcall] = ACTIONS(3167), + [anon_sym___fastcall] = ACTIONS(3167), + [anon_sym___thiscall] = ACTIONS(3167), + [anon_sym___vectorcall] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_signed] = ACTIONS(3167), + [anon_sym_unsigned] = ACTIONS(3167), + [anon_sym_long] = ACTIONS(3167), + [anon_sym_short] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_register] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym___inline] = ACTIONS(3167), + [anon_sym___inline__] = ACTIONS(3167), + [anon_sym___forceinline] = ACTIONS(3167), + [anon_sym_thread_local] = ACTIONS(3167), + [anon_sym___thread] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_constexpr] = ACTIONS(3167), + [anon_sym_volatile] = ACTIONS(3167), + [anon_sym_restrict] = ACTIONS(3167), + [anon_sym___restrict__] = ACTIONS(3167), + [anon_sym__Atomic] = ACTIONS(3167), + [anon_sym__Noreturn] = ACTIONS(3167), + [anon_sym_noreturn] = ACTIONS(3167), + [anon_sym_mutable] = ACTIONS(3167), + [anon_sym_constinit] = ACTIONS(3167), + [anon_sym_consteval] = ACTIONS(3167), + [sym_primitive_type] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_goto] = ACTIONS(3167), + [anon_sym___try] = ACTIONS(3167), + [anon_sym___leave] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3167), + [anon_sym_compl] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3167), + [anon_sym___alignof__] = ACTIONS(3167), + [anon_sym___alignof] = ACTIONS(3167), + [anon_sym__alignof] = ACTIONS(3167), + [anon_sym_alignof] = ACTIONS(3167), + [anon_sym__Alignof] = ACTIONS(3167), + [anon_sym_offsetof] = ACTIONS(3167), + [anon_sym__Generic] = ACTIONS(3167), + [anon_sym_asm] = ACTIONS(3167), + [anon_sym___asm__] = ACTIONS(3167), + [sym_number_literal] = ACTIONS(3169), + [anon_sym_L_SQUOTE] = ACTIONS(3169), + [anon_sym_u_SQUOTE] = ACTIONS(3169), + [anon_sym_U_SQUOTE] = ACTIONS(3169), + [anon_sym_u8_SQUOTE] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_L_DQUOTE] = ACTIONS(3169), + [anon_sym_u_DQUOTE] = ACTIONS(3169), + [anon_sym_U_DQUOTE] = ACTIONS(3169), + [anon_sym_u8_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [anon_sym_NULL] = ACTIONS(3167), + [anon_sym_nullptr] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3167), + [anon_sym_decltype] = ACTIONS(3167), + [anon_sym_virtual] = ACTIONS(3167), + [anon_sym_alignas] = ACTIONS(3167), + [anon_sym_explicit] = ACTIONS(3167), + [anon_sym_typename] = ACTIONS(3167), + [anon_sym_template] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_static_assert] = ACTIONS(3167), + [anon_sym_concept] = ACTIONS(3167), + [anon_sym_co_return] = ACTIONS(3167), + [anon_sym_co_yield] = ACTIONS(3167), + [anon_sym_R_DQUOTE] = ACTIONS(3169), + [anon_sym_LR_DQUOTE] = ACTIONS(3169), + [anon_sym_uR_DQUOTE] = ACTIONS(3169), + [anon_sym_UR_DQUOTE] = ACTIONS(3169), + [anon_sym_u8R_DQUOTE] = ACTIONS(3169), + [anon_sym_co_await] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_requires] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + }, + [520] = { + [sym_else_clause] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym___extension__] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym___inline] = ACTIONS(2857), + [anon_sym___inline__] = ACTIONS(2857), + [anon_sym___forceinline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym___thread] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym___restrict__] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym__Noreturn] = ACTIONS(2857), + [anon_sym_noreturn] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_else] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym___try] = ACTIONS(2857), + [anon_sym___leave] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [anon_sym___alignof__] = ACTIONS(2857), + [anon_sym___alignof] = ACTIONS(2857), + [anon_sym__alignof] = ACTIONS(2857), + [anon_sym_alignof] = ACTIONS(2857), + [anon_sym__Alignof] = ACTIONS(2857), + [anon_sym_offsetof] = ACTIONS(2857), + [anon_sym__Generic] = ACTIONS(2857), + [anon_sym_asm] = ACTIONS(2857), + [anon_sym___asm__] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [anon_sym_NULL] = ACTIONS(2857), + [anon_sym_nullptr] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_alignas] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_R_DQUOTE] = ACTIONS(2859), + [anon_sym_LR_DQUOTE] = ACTIONS(2859), + [anon_sym_uR_DQUOTE] = ACTIONS(2859), + [anon_sym_UR_DQUOTE] = ACTIONS(2859), + [anon_sym_u8R_DQUOTE] = ACTIONS(2859), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), + }, + [521] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4773), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7553), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7913), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_GT2] = ACTIONS(3404), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [522] = { + [sym_identifier] = ACTIONS(3195), + [aux_sym_preproc_include_token1] = ACTIONS(3195), + [aux_sym_preproc_def_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token2] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), + [aux_sym_preproc_else_token1] = ACTIONS(3195), + [aux_sym_preproc_elif_token1] = ACTIONS(3195), + [sym_preproc_directive] = ACTIONS(3195), + [anon_sym_LPAREN2] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym___extension__] = ACTIONS(3195), + [anon_sym_typedef] = ACTIONS(3195), + [anon_sym_extern] = ACTIONS(3195), + [anon_sym___attribute__] = ACTIONS(3195), + [anon_sym_COLON_COLON] = ACTIONS(3197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), + [anon_sym___declspec] = ACTIONS(3195), + [anon_sym___based] = ACTIONS(3195), + [anon_sym___cdecl] = ACTIONS(3195), + [anon_sym___clrcall] = ACTIONS(3195), + [anon_sym___stdcall] = ACTIONS(3195), + [anon_sym___fastcall] = ACTIONS(3195), + [anon_sym___thiscall] = ACTIONS(3195), + [anon_sym___vectorcall] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_signed] = ACTIONS(3195), + [anon_sym_unsigned] = ACTIONS(3195), + [anon_sym_long] = ACTIONS(3195), + [anon_sym_short] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_register] = ACTIONS(3195), + [anon_sym_inline] = ACTIONS(3195), + [anon_sym___inline] = ACTIONS(3195), + [anon_sym___inline__] = ACTIONS(3195), + [anon_sym___forceinline] = ACTIONS(3195), + [anon_sym_thread_local] = ACTIONS(3195), + [anon_sym___thread] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_constexpr] = ACTIONS(3195), + [anon_sym_volatile] = ACTIONS(3195), + [anon_sym_restrict] = ACTIONS(3195), + [anon_sym___restrict__] = ACTIONS(3195), + [anon_sym__Atomic] = ACTIONS(3195), + [anon_sym__Noreturn] = ACTIONS(3195), + [anon_sym_noreturn] = ACTIONS(3195), + [anon_sym_mutable] = ACTIONS(3195), + [anon_sym_constinit] = ACTIONS(3195), + [anon_sym_consteval] = ACTIONS(3195), + [sym_primitive_type] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_case] = ACTIONS(3195), + [anon_sym_default] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_goto] = ACTIONS(3195), + [anon_sym___try] = ACTIONS(3195), + [anon_sym___leave] = ACTIONS(3195), + [anon_sym_not] = ACTIONS(3195), + [anon_sym_compl] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_sizeof] = ACTIONS(3195), + [anon_sym___alignof__] = ACTIONS(3195), + [anon_sym___alignof] = ACTIONS(3195), + [anon_sym__alignof] = ACTIONS(3195), + [anon_sym_alignof] = ACTIONS(3195), + [anon_sym__Alignof] = ACTIONS(3195), + [anon_sym_offsetof] = ACTIONS(3195), + [anon_sym__Generic] = ACTIONS(3195), + [anon_sym_asm] = ACTIONS(3195), + [anon_sym___asm__] = ACTIONS(3195), + [sym_number_literal] = ACTIONS(3197), + [anon_sym_L_SQUOTE] = ACTIONS(3197), + [anon_sym_u_SQUOTE] = ACTIONS(3197), + [anon_sym_U_SQUOTE] = ACTIONS(3197), + [anon_sym_u8_SQUOTE] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3197), + [anon_sym_L_DQUOTE] = ACTIONS(3197), + [anon_sym_u_DQUOTE] = ACTIONS(3197), + [anon_sym_U_DQUOTE] = ACTIONS(3197), + [anon_sym_u8_DQUOTE] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(3197), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [anon_sym_NULL] = ACTIONS(3195), + [anon_sym_nullptr] = ACTIONS(3195), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3195), + [anon_sym_decltype] = ACTIONS(3195), + [anon_sym_virtual] = ACTIONS(3195), + [anon_sym_alignas] = ACTIONS(3195), + [anon_sym_explicit] = ACTIONS(3195), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(3195), + [anon_sym_operator] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_static_assert] = ACTIONS(3195), + [anon_sym_concept] = ACTIONS(3195), + [anon_sym_co_return] = ACTIONS(3195), + [anon_sym_co_yield] = ACTIONS(3195), + [anon_sym_R_DQUOTE] = ACTIONS(3197), + [anon_sym_LR_DQUOTE] = ACTIONS(3197), + [anon_sym_uR_DQUOTE] = ACTIONS(3197), + [anon_sym_UR_DQUOTE] = ACTIONS(3197), + [anon_sym_u8R_DQUOTE] = ACTIONS(3197), + [anon_sym_co_await] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_requires] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), + }, + [523] = { + [sym_else_clause] = STATE(736), + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym___extension__] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_RBRACE] = ACTIONS(2859), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym___inline] = ACTIONS(2857), + [anon_sym___inline__] = ACTIONS(2857), + [anon_sym___forceinline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym___thread] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym___restrict__] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym__Noreturn] = ACTIONS(2857), + [anon_sym_noreturn] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_else] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym___try] = ACTIONS(2857), + [anon_sym___leave] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [anon_sym___alignof__] = ACTIONS(2857), + [anon_sym___alignof] = ACTIONS(2857), + [anon_sym__alignof] = ACTIONS(2857), + [anon_sym_alignof] = ACTIONS(2857), + [anon_sym__Alignof] = ACTIONS(2857), + [anon_sym_offsetof] = ACTIONS(2857), + [anon_sym__Generic] = ACTIONS(2857), + [anon_sym_asm] = ACTIONS(2857), + [anon_sym___asm__] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [anon_sym_NULL] = ACTIONS(2857), + [anon_sym_nullptr] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_alignas] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_R_DQUOTE] = ACTIONS(2859), + [anon_sym_LR_DQUOTE] = ACTIONS(2859), + [anon_sym_uR_DQUOTE] = ACTIONS(2859), + [anon_sym_UR_DQUOTE] = ACTIONS(2859), + [anon_sym_u8R_DQUOTE] = ACTIONS(2859), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), + }, + [524] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4808), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7604), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7748), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -163847,192 +163642,1398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3392), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_GT2] = ACTIONS(3408), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [525] = { + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token2] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [aux_sym_preproc_else_token1] = ACTIONS(3286), + [aux_sym_preproc_elif_token1] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym___extension__] = ACTIONS(3286), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym___inline] = ACTIONS(3286), + [anon_sym___inline__] = ACTIONS(3286), + [anon_sym___forceinline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym___thread] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym___try] = ACTIONS(3286), + [anon_sym___leave] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym___alignof__] = ACTIONS(3286), + [anon_sym___alignof] = ACTIONS(3286), + [anon_sym__alignof] = ACTIONS(3286), + [anon_sym_alignof] = ACTIONS(3286), + [anon_sym__Alignof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_alignas] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), + }, + [526] = { + [sym_identifier] = ACTIONS(3270), + [aux_sym_preproc_include_token1] = ACTIONS(3270), + [aux_sym_preproc_def_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token2] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), + [aux_sym_preproc_else_token1] = ACTIONS(3270), + [aux_sym_preproc_elif_token1] = ACTIONS(3270), + [sym_preproc_directive] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym_typedef] = ACTIONS(3270), + [anon_sym_extern] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), + [anon_sym___declspec] = ACTIONS(3270), + [anon_sym___based] = ACTIONS(3270), + [anon_sym___cdecl] = ACTIONS(3270), + [anon_sym___clrcall] = ACTIONS(3270), + [anon_sym___stdcall] = ACTIONS(3270), + [anon_sym___fastcall] = ACTIONS(3270), + [anon_sym___thiscall] = ACTIONS(3270), + [anon_sym___vectorcall] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_signed] = ACTIONS(3270), + [anon_sym_unsigned] = ACTIONS(3270), + [anon_sym_long] = ACTIONS(3270), + [anon_sym_short] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_register] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym___inline] = ACTIONS(3270), + [anon_sym___inline__] = ACTIONS(3270), + [anon_sym___forceinline] = ACTIONS(3270), + [anon_sym_thread_local] = ACTIONS(3270), + [anon_sym___thread] = ACTIONS(3270), + [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_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [sym_primitive_type] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym___try] = ACTIONS(3270), + [anon_sym___leave] = ACTIONS(3270), + [anon_sym_not] = ACTIONS(3270), + [anon_sym_compl] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_sizeof] = ACTIONS(3270), + [anon_sym___alignof__] = ACTIONS(3270), + [anon_sym___alignof] = ACTIONS(3270), + [anon_sym__alignof] = ACTIONS(3270), + [anon_sym_alignof] = ACTIONS(3270), + [anon_sym__Alignof] = ACTIONS(3270), + [anon_sym_offsetof] = ACTIONS(3270), + [anon_sym__Generic] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym___asm__] = ACTIONS(3270), + [sym_number_literal] = ACTIONS(3272), + [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(3272), + [anon_sym_u_DQUOTE] = ACTIONS(3272), + [anon_sym_U_DQUOTE] = ACTIONS(3272), + [anon_sym_u8_DQUOTE] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [anon_sym_NULL] = ACTIONS(3270), + [anon_sym_nullptr] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3270), + [anon_sym_decltype] = ACTIONS(3270), + [anon_sym_virtual] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3270), + [anon_sym_explicit] = ACTIONS(3270), + [anon_sym_typename] = ACTIONS(3270), + [anon_sym_template] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_static_assert] = ACTIONS(3270), + [anon_sym_concept] = ACTIONS(3270), + [anon_sym_co_return] = ACTIONS(3270), + [anon_sym_co_yield] = ACTIONS(3270), + [anon_sym_R_DQUOTE] = ACTIONS(3272), + [anon_sym_LR_DQUOTE] = ACTIONS(3272), + [anon_sym_uR_DQUOTE] = ACTIONS(3272), + [anon_sym_UR_DQUOTE] = ACTIONS(3272), + [anon_sym_u8R_DQUOTE] = ACTIONS(3272), + [anon_sym_co_await] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_requires] = ACTIONS(3270), + [sym_this] = ACTIONS(3270), + }, + [527] = { + [sym_identifier] = ACTIONS(3256), + [aux_sym_preproc_include_token1] = ACTIONS(3256), + [aux_sym_preproc_def_token1] = ACTIONS(3256), + [aux_sym_preproc_if_token1] = ACTIONS(3256), + [aux_sym_preproc_if_token2] = ACTIONS(3256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3256), + [aux_sym_preproc_else_token1] = ACTIONS(3256), + [aux_sym_preproc_elif_token1] = ACTIONS(3256), + [sym_preproc_directive] = ACTIONS(3256), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym_typedef] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3258), + [anon_sym___declspec] = ACTIONS(3256), + [anon_sym___based] = ACTIONS(3256), + [anon_sym___cdecl] = ACTIONS(3256), + [anon_sym___clrcall] = ACTIONS(3256), + [anon_sym___stdcall] = ACTIONS(3256), + [anon_sym___fastcall] = ACTIONS(3256), + [anon_sym___thiscall] = ACTIONS(3256), + [anon_sym___vectorcall] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_signed] = ACTIONS(3256), + [anon_sym_unsigned] = ACTIONS(3256), + [anon_sym_long] = ACTIONS(3256), + [anon_sym_short] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym___inline] = ACTIONS(3256), + [anon_sym___inline__] = ACTIONS(3256), + [anon_sym___forceinline] = ACTIONS(3256), + [anon_sym_thread_local] = ACTIONS(3256), + [anon_sym___thread] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [sym_primitive_type] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [anon_sym_class] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_union] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3256), + [anon_sym_case] = ACTIONS(3256), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_goto] = ACTIONS(3256), + [anon_sym___try] = ACTIONS(3256), + [anon_sym___leave] = ACTIONS(3256), + [anon_sym_not] = ACTIONS(3256), + [anon_sym_compl] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_sizeof] = ACTIONS(3256), + [anon_sym___alignof__] = ACTIONS(3256), + [anon_sym___alignof] = ACTIONS(3256), + [anon_sym__alignof] = ACTIONS(3256), + [anon_sym_alignof] = ACTIONS(3256), + [anon_sym__Alignof] = ACTIONS(3256), + [anon_sym_offsetof] = ACTIONS(3256), + [anon_sym__Generic] = ACTIONS(3256), + [anon_sym_asm] = ACTIONS(3256), + [anon_sym___asm__] = ACTIONS(3256), + [sym_number_literal] = ACTIONS(3258), + [anon_sym_L_SQUOTE] = ACTIONS(3258), + [anon_sym_u_SQUOTE] = ACTIONS(3258), + [anon_sym_U_SQUOTE] = ACTIONS(3258), + [anon_sym_u8_SQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [anon_sym_NULL] = ACTIONS(3256), + [anon_sym_nullptr] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_virtual] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym_explicit] = ACTIONS(3256), + [anon_sym_typename] = ACTIONS(3256), + [anon_sym_template] = ACTIONS(3256), + [anon_sym_operator] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3256), + [anon_sym_delete] = ACTIONS(3256), + [anon_sym_throw] = ACTIONS(3256), + [anon_sym_namespace] = ACTIONS(3256), + [anon_sym_using] = ACTIONS(3256), + [anon_sym_static_assert] = ACTIONS(3256), + [anon_sym_concept] = ACTIONS(3256), + [anon_sym_co_return] = ACTIONS(3256), + [anon_sym_co_yield] = ACTIONS(3256), + [anon_sym_R_DQUOTE] = ACTIONS(3258), + [anon_sym_LR_DQUOTE] = ACTIONS(3258), + [anon_sym_uR_DQUOTE] = ACTIONS(3258), + [anon_sym_UR_DQUOTE] = ACTIONS(3258), + [anon_sym_u8R_DQUOTE] = ACTIONS(3258), + [anon_sym_co_await] = ACTIONS(3256), + [anon_sym_new] = ACTIONS(3256), + [anon_sym_requires] = ACTIONS(3256), + [sym_this] = ACTIONS(3256), + }, + [528] = { + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_include_token1] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token2] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [aux_sym_preproc_else_token1] = ACTIONS(3134), + [aux_sym_preproc_elif_token1] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym___cdecl] = ACTIONS(3134), + [anon_sym___clrcall] = ACTIONS(3134), + [anon_sym___stdcall] = ACTIONS(3134), + [anon_sym___fastcall] = ACTIONS(3134), + [anon_sym___thiscall] = ACTIONS(3134), + [anon_sym___vectorcall] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym___try] = ACTIONS(3134), + [anon_sym___leave] = ACTIONS(3134), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_sizeof] = ACTIONS(3134), + [anon_sym___alignof__] = ACTIONS(3134), + [anon_sym___alignof] = ACTIONS(3134), + [anon_sym__alignof] = ACTIONS(3134), + [anon_sym_alignof] = ACTIONS(3134), + [anon_sym__Alignof] = ACTIONS(3134), + [anon_sym_offsetof] = ACTIONS(3134), + [anon_sym__Generic] = ACTIONS(3134), + [anon_sym_asm] = ACTIONS(3134), + [anon_sym___asm__] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3136), + [anon_sym_L_SQUOTE] = ACTIONS(3136), + [anon_sym_u_SQUOTE] = ACTIONS(3136), + [anon_sym_U_SQUOTE] = ACTIONS(3136), + [anon_sym_u8_SQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_L_DQUOTE] = ACTIONS(3136), + [anon_sym_u_DQUOTE] = ACTIONS(3136), + [anon_sym_U_DQUOTE] = ACTIONS(3136), + [anon_sym_u8_DQUOTE] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [anon_sym_NULL] = ACTIONS(3134), + [anon_sym_nullptr] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), + [anon_sym_concept] = ACTIONS(3134), + [anon_sym_co_return] = ACTIONS(3134), + [anon_sym_co_yield] = ACTIONS(3134), + [anon_sym_R_DQUOTE] = ACTIONS(3136), + [anon_sym_LR_DQUOTE] = ACTIONS(3136), + [anon_sym_uR_DQUOTE] = ACTIONS(3136), + [anon_sym_UR_DQUOTE] = ACTIONS(3136), + [anon_sym_u8R_DQUOTE] = ACTIONS(3136), + [anon_sym_co_await] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_requires] = ACTIONS(3134), + [sym_this] = ACTIONS(3134), }, [529] = { - [sym_else_clause] = STATE(818), - [sym_identifier] = ACTIONS(2853), - [aux_sym_preproc_include_token1] = ACTIONS(2853), - [aux_sym_preproc_def_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2855), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym___based] = ACTIONS(2853), - [anon_sym___cdecl] = ACTIONS(2853), - [anon_sym___clrcall] = ACTIONS(2853), - [anon_sym___stdcall] = ACTIONS(2853), - [anon_sym___fastcall] = ACTIONS(2853), - [anon_sym___thiscall] = ACTIONS(2853), - [anon_sym___vectorcall] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(3394), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym___try] = ACTIONS(2853), - [anon_sym___leave] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(2853), - [anon_sym_compl] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_sizeof] = ACTIONS(2853), - [anon_sym___alignof__] = ACTIONS(2853), - [anon_sym___alignof] = ACTIONS(2853), - [anon_sym__alignof] = ACTIONS(2853), - [anon_sym_alignof] = ACTIONS(2853), - [anon_sym__Alignof] = ACTIONS(2853), - [anon_sym_offsetof] = ACTIONS(2853), - [anon_sym__Generic] = ACTIONS(2853), - [anon_sym_asm] = ACTIONS(2853), - [anon_sym___asm__] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2855), - [anon_sym_L_SQUOTE] = ACTIONS(2855), - [anon_sym_u_SQUOTE] = ACTIONS(2855), - [anon_sym_U_SQUOTE] = ACTIONS(2855), - [anon_sym_u8_SQUOTE] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2853), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_explicit] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2853), - [anon_sym_operator] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_using] = ACTIONS(2853), - [anon_sym_static_assert] = ACTIONS(2853), - [anon_sym_concept] = ACTIONS(2853), - [anon_sym_co_return] = ACTIONS(2853), - [anon_sym_co_yield] = 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(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_requires] = ACTIONS(2853), - [sym_this] = ACTIONS(2853), + [sym_identifier] = ACTIONS(3248), + [aux_sym_preproc_include_token1] = ACTIONS(3248), + [aux_sym_preproc_def_token1] = ACTIONS(3248), + [aux_sym_preproc_if_token1] = ACTIONS(3248), + [aux_sym_preproc_if_token2] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3248), + [aux_sym_preproc_else_token1] = ACTIONS(3248), + [aux_sym_preproc_elif_token1] = ACTIONS(3248), + [sym_preproc_directive] = ACTIONS(3248), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_typedef] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym___cdecl] = ACTIONS(3248), + [anon_sym___clrcall] = ACTIONS(3248), + [anon_sym___stdcall] = ACTIONS(3248), + [anon_sym___fastcall] = ACTIONS(3248), + [anon_sym___thiscall] = ACTIONS(3248), + [anon_sym___vectorcall] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_signed] = ACTIONS(3248), + [anon_sym_unsigned] = ACTIONS(3248), + [anon_sym_long] = ACTIONS(3248), + [anon_sym_short] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [sym_primitive_type] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3248), + [anon_sym_union] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_goto] = ACTIONS(3248), + [anon_sym___try] = ACTIONS(3248), + [anon_sym___leave] = ACTIONS(3248), + [anon_sym_not] = ACTIONS(3248), + [anon_sym_compl] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_sizeof] = ACTIONS(3248), + [anon_sym___alignof__] = ACTIONS(3248), + [anon_sym___alignof] = ACTIONS(3248), + [anon_sym__alignof] = ACTIONS(3248), + [anon_sym_alignof] = ACTIONS(3248), + [anon_sym__Alignof] = ACTIONS(3248), + [anon_sym_offsetof] = ACTIONS(3248), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_asm] = ACTIONS(3248), + [anon_sym___asm__] = ACTIONS(3248), + [sym_number_literal] = ACTIONS(3250), + [anon_sym_L_SQUOTE] = ACTIONS(3250), + [anon_sym_u_SQUOTE] = ACTIONS(3250), + [anon_sym_U_SQUOTE] = ACTIONS(3250), + [anon_sym_u8_SQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_L_DQUOTE] = ACTIONS(3250), + [anon_sym_u_DQUOTE] = ACTIONS(3250), + [anon_sym_U_DQUOTE] = ACTIONS(3250), + [anon_sym_u8_DQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [anon_sym_NULL] = ACTIONS(3248), + [anon_sym_nullptr] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym_explicit] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_static_assert] = ACTIONS(3248), + [anon_sym_concept] = ACTIONS(3248), + [anon_sym_co_return] = ACTIONS(3248), + [anon_sym_co_yield] = ACTIONS(3248), + [anon_sym_R_DQUOTE] = ACTIONS(3250), + [anon_sym_LR_DQUOTE] = ACTIONS(3250), + [anon_sym_uR_DQUOTE] = ACTIONS(3250), + [anon_sym_UR_DQUOTE] = ACTIONS(3250), + [anon_sym_u8R_DQUOTE] = ACTIONS(3250), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_requires] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), }, [530] = { + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_include_token1] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token2] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [aux_sym_preproc_else_token1] = ACTIONS(3134), + [aux_sym_preproc_elif_token1] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym___cdecl] = ACTIONS(3134), + [anon_sym___clrcall] = ACTIONS(3134), + [anon_sym___stdcall] = ACTIONS(3134), + [anon_sym___fastcall] = ACTIONS(3134), + [anon_sym___thiscall] = ACTIONS(3134), + [anon_sym___vectorcall] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym___try] = ACTIONS(3134), + [anon_sym___leave] = ACTIONS(3134), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_sizeof] = ACTIONS(3134), + [anon_sym___alignof__] = ACTIONS(3134), + [anon_sym___alignof] = ACTIONS(3134), + [anon_sym__alignof] = ACTIONS(3134), + [anon_sym_alignof] = ACTIONS(3134), + [anon_sym__Alignof] = ACTIONS(3134), + [anon_sym_offsetof] = ACTIONS(3134), + [anon_sym__Generic] = ACTIONS(3134), + [anon_sym_asm] = ACTIONS(3134), + [anon_sym___asm__] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3136), + [anon_sym_L_SQUOTE] = ACTIONS(3136), + [anon_sym_u_SQUOTE] = ACTIONS(3136), + [anon_sym_U_SQUOTE] = ACTIONS(3136), + [anon_sym_u8_SQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_L_DQUOTE] = ACTIONS(3136), + [anon_sym_u_DQUOTE] = ACTIONS(3136), + [anon_sym_U_DQUOTE] = ACTIONS(3136), + [anon_sym_u8_DQUOTE] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [anon_sym_NULL] = ACTIONS(3134), + [anon_sym_nullptr] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), + [anon_sym_concept] = ACTIONS(3134), + [anon_sym_co_return] = ACTIONS(3134), + [anon_sym_co_yield] = ACTIONS(3134), + [anon_sym_R_DQUOTE] = ACTIONS(3136), + [anon_sym_LR_DQUOTE] = ACTIONS(3136), + [anon_sym_uR_DQUOTE] = ACTIONS(3136), + [anon_sym_UR_DQUOTE] = ACTIONS(3136), + [anon_sym_u8R_DQUOTE] = ACTIONS(3136), + [anon_sym_co_await] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_requires] = ACTIONS(3134), + [sym_this] = ACTIONS(3134), + }, + [531] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4895), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7403), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7902), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_GT2] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [532] = { + [sym_identifier] = ACTIONS(3020), + [aux_sym_preproc_include_token1] = ACTIONS(3020), + [aux_sym_preproc_def_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token2] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3020), + [aux_sym_preproc_else_token1] = ACTIONS(3020), + [aux_sym_preproc_elif_token1] = ACTIONS(3020), + [sym_preproc_directive] = ACTIONS(3020), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym___extension__] = ACTIONS(3020), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym___attribute__] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(3020), + [anon_sym___based] = ACTIONS(3020), + [anon_sym___cdecl] = ACTIONS(3020), + [anon_sym___clrcall] = ACTIONS(3020), + [anon_sym___stdcall] = ACTIONS(3020), + [anon_sym___fastcall] = ACTIONS(3020), + [anon_sym___thiscall] = ACTIONS(3020), + [anon_sym___vectorcall] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_signed] = ACTIONS(3020), + [anon_sym_unsigned] = ACTIONS(3020), + [anon_sym_long] = ACTIONS(3020), + [anon_sym_short] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_register] = ACTIONS(3020), + [anon_sym_inline] = ACTIONS(3020), + [anon_sym___inline] = ACTIONS(3020), + [anon_sym___inline__] = ACTIONS(3020), + [anon_sym___forceinline] = ACTIONS(3020), + [anon_sym_thread_local] = ACTIONS(3020), + [anon_sym___thread] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_constexpr] = ACTIONS(3020), + [anon_sym_volatile] = ACTIONS(3020), + [anon_sym_restrict] = ACTIONS(3020), + [anon_sym___restrict__] = ACTIONS(3020), + [anon_sym__Atomic] = ACTIONS(3020), + [anon_sym__Noreturn] = ACTIONS(3020), + [anon_sym_noreturn] = ACTIONS(3020), + [anon_sym_mutable] = ACTIONS(3020), + [anon_sym_constinit] = ACTIONS(3020), + [anon_sym_consteval] = ACTIONS(3020), + [sym_primitive_type] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_class] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym___try] = ACTIONS(3020), + [anon_sym___leave] = ACTIONS(3020), + [anon_sym_not] = ACTIONS(3020), + [anon_sym_compl] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_sizeof] = ACTIONS(3020), + [anon_sym___alignof__] = ACTIONS(3020), + [anon_sym___alignof] = ACTIONS(3020), + [anon_sym__alignof] = ACTIONS(3020), + [anon_sym_alignof] = ACTIONS(3020), + [anon_sym__Alignof] = ACTIONS(3020), + [anon_sym_offsetof] = ACTIONS(3020), + [anon_sym__Generic] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym___asm__] = ACTIONS(3020), + [sym_number_literal] = ACTIONS(3022), + [anon_sym_L_SQUOTE] = ACTIONS(3022), + [anon_sym_u_SQUOTE] = ACTIONS(3022), + [anon_sym_U_SQUOTE] = ACTIONS(3022), + [anon_sym_u8_SQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_L_DQUOTE] = ACTIONS(3022), + [anon_sym_u_DQUOTE] = ACTIONS(3022), + [anon_sym_U_DQUOTE] = ACTIONS(3022), + [anon_sym_u8_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_nullptr] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3020), + [anon_sym_decltype] = ACTIONS(3020), + [anon_sym_virtual] = ACTIONS(3020), + [anon_sym_alignas] = ACTIONS(3020), + [anon_sym_explicit] = ACTIONS(3020), + [anon_sym_typename] = ACTIONS(3020), + [anon_sym_template] = ACTIONS(3020), + [anon_sym_operator] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_using] = ACTIONS(3020), + [anon_sym_static_assert] = ACTIONS(3020), + [anon_sym_concept] = ACTIONS(3020), + [anon_sym_co_return] = ACTIONS(3020), + [anon_sym_co_yield] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(3022), + [anon_sym_LR_DQUOTE] = ACTIONS(3022), + [anon_sym_uR_DQUOTE] = ACTIONS(3022), + [anon_sym_UR_DQUOTE] = ACTIONS(3022), + [anon_sym_u8R_DQUOTE] = ACTIONS(3022), + [anon_sym_co_await] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_requires] = ACTIONS(3020), + [sym_this] = ACTIONS(3020), + }, + [533] = { + [sym_identifier] = ACTIONS(3016), + [aux_sym_preproc_include_token1] = ACTIONS(3016), + [aux_sym_preproc_def_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token2] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3016), + [aux_sym_preproc_else_token1] = ACTIONS(3016), + [aux_sym_preproc_elif_token1] = ACTIONS(3016), + [sym_preproc_directive] = ACTIONS(3016), + [anon_sym_LPAREN2] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_typedef] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym___attribute__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3018), + [anon_sym___declspec] = ACTIONS(3016), + [anon_sym___based] = ACTIONS(3016), + [anon_sym___cdecl] = ACTIONS(3016), + [anon_sym___clrcall] = ACTIONS(3016), + [anon_sym___stdcall] = ACTIONS(3016), + [anon_sym___fastcall] = ACTIONS(3016), + [anon_sym___thiscall] = ACTIONS(3016), + [anon_sym___vectorcall] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_signed] = ACTIONS(3016), + [anon_sym_unsigned] = ACTIONS(3016), + [anon_sym_long] = ACTIONS(3016), + [anon_sym_short] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_register] = ACTIONS(3016), + [anon_sym_inline] = ACTIONS(3016), + [anon_sym___inline] = ACTIONS(3016), + [anon_sym___inline__] = ACTIONS(3016), + [anon_sym___forceinline] = ACTIONS(3016), + [anon_sym_thread_local] = ACTIONS(3016), + [anon_sym___thread] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_constexpr] = ACTIONS(3016), + [anon_sym_volatile] = ACTIONS(3016), + [anon_sym_restrict] = ACTIONS(3016), + [anon_sym___restrict__] = ACTIONS(3016), + [anon_sym__Atomic] = ACTIONS(3016), + [anon_sym__Noreturn] = ACTIONS(3016), + [anon_sym_noreturn] = ACTIONS(3016), + [anon_sym_mutable] = ACTIONS(3016), + [anon_sym_constinit] = ACTIONS(3016), + [anon_sym_consteval] = ACTIONS(3016), + [sym_primitive_type] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_class] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym___try] = ACTIONS(3016), + [anon_sym___leave] = ACTIONS(3016), + [anon_sym_not] = ACTIONS(3016), + [anon_sym_compl] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_sizeof] = ACTIONS(3016), + [anon_sym___alignof__] = ACTIONS(3016), + [anon_sym___alignof] = ACTIONS(3016), + [anon_sym__alignof] = ACTIONS(3016), + [anon_sym_alignof] = ACTIONS(3016), + [anon_sym__Alignof] = ACTIONS(3016), + [anon_sym_offsetof] = ACTIONS(3016), + [anon_sym__Generic] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym___asm__] = ACTIONS(3016), + [sym_number_literal] = ACTIONS(3018), + [anon_sym_L_SQUOTE] = ACTIONS(3018), + [anon_sym_u_SQUOTE] = ACTIONS(3018), + [anon_sym_U_SQUOTE] = ACTIONS(3018), + [anon_sym_u8_SQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_L_DQUOTE] = ACTIONS(3018), + [anon_sym_u_DQUOTE] = ACTIONS(3018), + [anon_sym_U_DQUOTE] = ACTIONS(3018), + [anon_sym_u8_DQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_nullptr] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3016), + [anon_sym_decltype] = ACTIONS(3016), + [anon_sym_virtual] = ACTIONS(3016), + [anon_sym_alignas] = ACTIONS(3016), + [anon_sym_explicit] = ACTIONS(3016), + [anon_sym_typename] = ACTIONS(3016), + [anon_sym_template] = ACTIONS(3016), + [anon_sym_operator] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_delete] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_using] = ACTIONS(3016), + [anon_sym_static_assert] = ACTIONS(3016), + [anon_sym_concept] = ACTIONS(3016), + [anon_sym_co_return] = ACTIONS(3016), + [anon_sym_co_yield] = ACTIONS(3016), + [anon_sym_R_DQUOTE] = ACTIONS(3018), + [anon_sym_LR_DQUOTE] = ACTIONS(3018), + [anon_sym_uR_DQUOTE] = ACTIONS(3018), + [anon_sym_UR_DQUOTE] = ACTIONS(3018), + [anon_sym_u8R_DQUOTE] = ACTIONS(3018), + [anon_sym_co_await] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3016), + [sym_this] = ACTIONS(3016), + }, + [534] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4913), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7526), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7999), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_GT2] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [535] = { [sym_identifier] = ACTIONS(3086), [aux_sym_preproc_include_token1] = ACTIONS(3086), [aux_sym_preproc_def_token1] = ACTIONS(3086), @@ -164166,1418 +165167,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3086), [sym_this] = ACTIONS(3086), }, - [531] = { - [sym_identifier] = ACTIONS(3136), - [aux_sym_preproc_include_token1] = ACTIONS(3136), - [aux_sym_preproc_def_token1] = ACTIONS(3136), - [aux_sym_preproc_if_token1] = ACTIONS(3136), - [aux_sym_preproc_if_token2] = ACTIONS(3136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3136), - [aux_sym_preproc_else_token1] = ACTIONS(3136), - [aux_sym_preproc_elif_token1] = ACTIONS(3136), - [sym_preproc_directive] = ACTIONS(3136), - [anon_sym_LPAREN2] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym___extension__] = ACTIONS(3136), - [anon_sym_typedef] = ACTIONS(3136), - [anon_sym_extern] = ACTIONS(3136), - [anon_sym___attribute__] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3138), - [anon_sym___declspec] = ACTIONS(3136), - [anon_sym___based] = ACTIONS(3136), - [anon_sym___cdecl] = ACTIONS(3136), - [anon_sym___clrcall] = ACTIONS(3136), - [anon_sym___stdcall] = ACTIONS(3136), - [anon_sym___fastcall] = ACTIONS(3136), - [anon_sym___thiscall] = ACTIONS(3136), - [anon_sym___vectorcall] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_signed] = ACTIONS(3136), - [anon_sym_unsigned] = ACTIONS(3136), - [anon_sym_long] = ACTIONS(3136), - [anon_sym_short] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_register] = ACTIONS(3136), - [anon_sym_inline] = ACTIONS(3136), - [anon_sym___inline] = ACTIONS(3136), - [anon_sym___inline__] = ACTIONS(3136), - [anon_sym___forceinline] = ACTIONS(3136), - [anon_sym_thread_local] = ACTIONS(3136), - [anon_sym___thread] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_constexpr] = ACTIONS(3136), - [anon_sym_volatile] = ACTIONS(3136), - [anon_sym_restrict] = ACTIONS(3136), - [anon_sym___restrict__] = ACTIONS(3136), - [anon_sym__Atomic] = ACTIONS(3136), - [anon_sym__Noreturn] = ACTIONS(3136), - [anon_sym_noreturn] = ACTIONS(3136), - [anon_sym_mutable] = ACTIONS(3136), - [anon_sym_constinit] = ACTIONS(3136), - [anon_sym_consteval] = ACTIONS(3136), - [sym_primitive_type] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_case] = ACTIONS(3136), - [anon_sym_default] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_goto] = ACTIONS(3136), - [anon_sym___try] = ACTIONS(3136), - [anon_sym___leave] = ACTIONS(3136), - [anon_sym_not] = ACTIONS(3136), - [anon_sym_compl] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_sizeof] = ACTIONS(3136), - [anon_sym___alignof__] = ACTIONS(3136), - [anon_sym___alignof] = ACTIONS(3136), - [anon_sym__alignof] = ACTIONS(3136), - [anon_sym_alignof] = ACTIONS(3136), - [anon_sym__Alignof] = ACTIONS(3136), - [anon_sym_offsetof] = ACTIONS(3136), - [anon_sym__Generic] = ACTIONS(3136), - [anon_sym_asm] = ACTIONS(3136), - [anon_sym___asm__] = ACTIONS(3136), - [sym_number_literal] = ACTIONS(3138), - [anon_sym_L_SQUOTE] = ACTIONS(3138), - [anon_sym_u_SQUOTE] = ACTIONS(3138), - [anon_sym_U_SQUOTE] = ACTIONS(3138), - [anon_sym_u8_SQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [anon_sym_NULL] = ACTIONS(3136), - [anon_sym_nullptr] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3136), - [anon_sym_decltype] = ACTIONS(3136), - [anon_sym_virtual] = ACTIONS(3136), - [anon_sym_alignas] = ACTIONS(3136), - [anon_sym_explicit] = ACTIONS(3136), - [anon_sym_typename] = ACTIONS(3136), - [anon_sym_template] = ACTIONS(3136), - [anon_sym_operator] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_static_assert] = ACTIONS(3136), - [anon_sym_concept] = ACTIONS(3136), - [anon_sym_co_return] = ACTIONS(3136), - [anon_sym_co_yield] = ACTIONS(3136), - [anon_sym_R_DQUOTE] = ACTIONS(3138), - [anon_sym_LR_DQUOTE] = ACTIONS(3138), - [anon_sym_uR_DQUOTE] = ACTIONS(3138), - [anon_sym_UR_DQUOTE] = ACTIONS(3138), - [anon_sym_u8R_DQUOTE] = ACTIONS(3138), - [anon_sym_co_await] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_requires] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - }, - [532] = { - [ts_builtin_sym_end] = ACTIONS(2851), - [sym_identifier] = ACTIONS(2849), - [aux_sym_preproc_include_token1] = ACTIONS(2849), - [aux_sym_preproc_def_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token1] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), - [sym_preproc_directive] = ACTIONS(2849), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym___extension__] = ACTIONS(2849), - [anon_sym_typedef] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), - [anon_sym___declspec] = ACTIONS(2849), - [anon_sym___based] = ACTIONS(2849), - [anon_sym___cdecl] = ACTIONS(2849), - [anon_sym___clrcall] = ACTIONS(2849), - [anon_sym___stdcall] = ACTIONS(2849), - [anon_sym___fastcall] = ACTIONS(2849), - [anon_sym___thiscall] = ACTIONS(2849), - [anon_sym___vectorcall] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_signed] = ACTIONS(2849), - [anon_sym_unsigned] = ACTIONS(2849), - [anon_sym_long] = ACTIONS(2849), - [anon_sym_short] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_register] = ACTIONS(2849), - [anon_sym_inline] = ACTIONS(2849), - [anon_sym___inline] = ACTIONS(2849), - [anon_sym___inline__] = ACTIONS(2849), - [anon_sym___forceinline] = ACTIONS(2849), - [anon_sym_thread_local] = ACTIONS(2849), - [anon_sym___thread] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_constexpr] = ACTIONS(2849), - [anon_sym_volatile] = ACTIONS(2849), - [anon_sym_restrict] = ACTIONS(2849), - [anon_sym___restrict__] = ACTIONS(2849), - [anon_sym__Atomic] = ACTIONS(2849), - [anon_sym__Noreturn] = ACTIONS(2849), - [anon_sym_noreturn] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [sym_primitive_type] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_class] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_else] = ACTIONS(2849), - [anon_sym_switch] = ACTIONS(2849), - [anon_sym_case] = ACTIONS(2849), - [anon_sym_default] = ACTIONS(2849), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_do] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_goto] = ACTIONS(2849), - [anon_sym___try] = ACTIONS(2849), - [anon_sym___leave] = ACTIONS(2849), - [anon_sym_not] = ACTIONS(2849), - [anon_sym_compl] = ACTIONS(2849), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_sizeof] = ACTIONS(2849), - [anon_sym___alignof__] = ACTIONS(2849), - [anon_sym___alignof] = ACTIONS(2849), - [anon_sym__alignof] = ACTIONS(2849), - [anon_sym_alignof] = ACTIONS(2849), - [anon_sym__Alignof] = ACTIONS(2849), - [anon_sym_offsetof] = ACTIONS(2849), - [anon_sym__Generic] = ACTIONS(2849), - [anon_sym_asm] = ACTIONS(2849), - [anon_sym___asm__] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2851), - [anon_sym_u_SQUOTE] = ACTIONS(2851), - [anon_sym_U_SQUOTE] = ACTIONS(2851), - [anon_sym_u8_SQUOTE] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [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(2849), - [sym_false] = ACTIONS(2849), - [anon_sym_NULL] = ACTIONS(2849), - [anon_sym_nullptr] = ACTIONS(2849), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2849), - [anon_sym_decltype] = ACTIONS(2849), - [anon_sym_virtual] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym_explicit] = ACTIONS(2849), - [anon_sym_typename] = ACTIONS(2849), - [anon_sym_template] = ACTIONS(2849), - [anon_sym_operator] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2849), - [anon_sym_delete] = ACTIONS(2849), - [anon_sym_throw] = ACTIONS(2849), - [anon_sym_namespace] = ACTIONS(2849), - [anon_sym_using] = ACTIONS(2849), - [anon_sym_static_assert] = ACTIONS(2849), - [anon_sym_concept] = ACTIONS(2849), - [anon_sym_co_return] = ACTIONS(2849), - [anon_sym_co_yield] = ACTIONS(2849), - [anon_sym_catch] = ACTIONS(2849), - [anon_sym_R_DQUOTE] = ACTIONS(2851), - [anon_sym_LR_DQUOTE] = ACTIONS(2851), - [anon_sym_uR_DQUOTE] = ACTIONS(2851), - [anon_sym_UR_DQUOTE] = ACTIONS(2851), - [anon_sym_u8R_DQUOTE] = ACTIONS(2851), - [anon_sym_co_await] = ACTIONS(2849), - [anon_sym_new] = ACTIONS(2849), - [anon_sym_requires] = ACTIONS(2849), - [sym_this] = ACTIONS(2849), - }, - [533] = { - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_include_token1] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [aux_sym_preproc_if_token1] = ACTIONS(3082), - [aux_sym_preproc_if_token2] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), - [aux_sym_preproc_else_token1] = ACTIONS(3082), - [aux_sym_preproc_elif_token1] = ACTIONS(3082), - [sym_preproc_directive] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym___extension__] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym___attribute__] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), - [anon_sym___declspec] = ACTIONS(3082), - [anon_sym___based] = ACTIONS(3082), - [anon_sym___cdecl] = ACTIONS(3082), - [anon_sym___clrcall] = ACTIONS(3082), - [anon_sym___stdcall] = ACTIONS(3082), - [anon_sym___fastcall] = ACTIONS(3082), - [anon_sym___thiscall] = ACTIONS(3082), - [anon_sym___vectorcall] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym___inline] = ACTIONS(3082), - [anon_sym___inline__] = ACTIONS(3082), - [anon_sym___forceinline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym___thread] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym___restrict__] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym__Noreturn] = ACTIONS(3082), - [anon_sym_noreturn] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constinit] = ACTIONS(3082), - [anon_sym_consteval] = ACTIONS(3082), - [sym_primitive_type] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym___try] = ACTIONS(3082), - [anon_sym___leave] = ACTIONS(3082), - [anon_sym_not] = ACTIONS(3082), - [anon_sym_compl] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_sizeof] = ACTIONS(3082), - [anon_sym___alignof__] = ACTIONS(3082), - [anon_sym___alignof] = ACTIONS(3082), - [anon_sym__alignof] = ACTIONS(3082), - [anon_sym_alignof] = ACTIONS(3082), - [anon_sym__Alignof] = ACTIONS(3082), - [anon_sym_offsetof] = ACTIONS(3082), - [anon_sym__Generic] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym___asm__] = ACTIONS(3082), - [sym_number_literal] = ACTIONS(3084), - [anon_sym_L_SQUOTE] = ACTIONS(3084), - [anon_sym_u_SQUOTE] = ACTIONS(3084), - [anon_sym_U_SQUOTE] = ACTIONS(3084), - [anon_sym_u8_SQUOTE] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_L_DQUOTE] = ACTIONS(3084), - [anon_sym_u_DQUOTE] = ACTIONS(3084), - [anon_sym_U_DQUOTE] = ACTIONS(3084), - [anon_sym_u8_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [anon_sym_NULL] = ACTIONS(3082), - [anon_sym_nullptr] = ACTIONS(3082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3082), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_alignas] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_concept] = ACTIONS(3082), - [anon_sym_co_return] = ACTIONS(3082), - [anon_sym_co_yield] = ACTIONS(3082), - [anon_sym_R_DQUOTE] = ACTIONS(3084), - [anon_sym_LR_DQUOTE] = ACTIONS(3084), - [anon_sym_uR_DQUOTE] = ACTIONS(3084), - [anon_sym_UR_DQUOTE] = ACTIONS(3084), - [anon_sym_u8R_DQUOTE] = ACTIONS(3084), - [anon_sym_co_await] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_requires] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), - }, - [534] = { - [sym_else_clause] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2842), - [sym_identifier] = ACTIONS(2840), - [aux_sym_preproc_include_token1] = ACTIONS(2840), - [aux_sym_preproc_def_token1] = ACTIONS(2840), - [aux_sym_preproc_if_token1] = ACTIONS(2840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), - [sym_preproc_directive] = ACTIONS(2840), - [anon_sym_LPAREN2] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2842), - [anon_sym___extension__] = ACTIONS(2840), - [anon_sym_typedef] = ACTIONS(2840), - [anon_sym_extern] = ACTIONS(2840), - [anon_sym___attribute__] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2842), - [anon_sym___declspec] = ACTIONS(2840), - [anon_sym___based] = ACTIONS(2840), - [anon_sym___cdecl] = ACTIONS(2840), - [anon_sym___clrcall] = ACTIONS(2840), - [anon_sym___stdcall] = ACTIONS(2840), - [anon_sym___fastcall] = ACTIONS(2840), - [anon_sym___thiscall] = ACTIONS(2840), - [anon_sym___vectorcall] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_signed] = ACTIONS(2840), - [anon_sym_unsigned] = ACTIONS(2840), - [anon_sym_long] = ACTIONS(2840), - [anon_sym_short] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_register] = ACTIONS(2840), - [anon_sym_inline] = ACTIONS(2840), - [anon_sym___inline] = ACTIONS(2840), - [anon_sym___inline__] = ACTIONS(2840), - [anon_sym___forceinline] = ACTIONS(2840), - [anon_sym_thread_local] = ACTIONS(2840), - [anon_sym___thread] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_constexpr] = ACTIONS(2840), - [anon_sym_volatile] = ACTIONS(2840), - [anon_sym_restrict] = ACTIONS(2840), - [anon_sym___restrict__] = ACTIONS(2840), - [anon_sym__Atomic] = ACTIONS(2840), - [anon_sym__Noreturn] = ACTIONS(2840), - [anon_sym_noreturn] = ACTIONS(2840), - [anon_sym_mutable] = ACTIONS(2840), - [anon_sym_constinit] = ACTIONS(2840), - [anon_sym_consteval] = ACTIONS(2840), - [sym_primitive_type] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_else] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(2840), - [anon_sym_case] = ACTIONS(2840), - [anon_sym_default] = ACTIONS(2840), - [anon_sym_while] = ACTIONS(2840), - [anon_sym_do] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym___try] = ACTIONS(2840), - [anon_sym___leave] = ACTIONS(2840), - [anon_sym_not] = ACTIONS(2840), - [anon_sym_compl] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_sizeof] = ACTIONS(2840), - [anon_sym___alignof__] = ACTIONS(2840), - [anon_sym___alignof] = ACTIONS(2840), - [anon_sym__alignof] = ACTIONS(2840), - [anon_sym_alignof] = ACTIONS(2840), - [anon_sym__Alignof] = ACTIONS(2840), - [anon_sym_offsetof] = ACTIONS(2840), - [anon_sym__Generic] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym___asm__] = ACTIONS(2840), - [sym_number_literal] = ACTIONS(2842), - [anon_sym_L_SQUOTE] = ACTIONS(2842), - [anon_sym_u_SQUOTE] = ACTIONS(2842), - [anon_sym_U_SQUOTE] = ACTIONS(2842), - [anon_sym_u8_SQUOTE] = ACTIONS(2842), - [anon_sym_SQUOTE] = ACTIONS(2842), - [anon_sym_L_DQUOTE] = ACTIONS(2842), - [anon_sym_u_DQUOTE] = ACTIONS(2842), - [anon_sym_U_DQUOTE] = ACTIONS(2842), - [anon_sym_u8_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [anon_sym_NULL] = ACTIONS(2840), - [anon_sym_nullptr] = ACTIONS(2840), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2840), - [anon_sym_decltype] = ACTIONS(2840), - [anon_sym_virtual] = ACTIONS(2840), - [anon_sym_alignas] = ACTIONS(2840), - [anon_sym_explicit] = ACTIONS(2840), - [anon_sym_typename] = ACTIONS(2840), - [anon_sym_template] = ACTIONS(2840), - [anon_sym_operator] = ACTIONS(2840), - [anon_sym_try] = ACTIONS(2840), - [anon_sym_delete] = ACTIONS(2840), - [anon_sym_throw] = ACTIONS(2840), - [anon_sym_namespace] = ACTIONS(2840), - [anon_sym_using] = ACTIONS(2840), - [anon_sym_static_assert] = ACTIONS(2840), - [anon_sym_concept] = ACTIONS(2840), - [anon_sym_co_return] = ACTIONS(2840), - [anon_sym_co_yield] = ACTIONS(2840), - [anon_sym_R_DQUOTE] = ACTIONS(2842), - [anon_sym_LR_DQUOTE] = ACTIONS(2842), - [anon_sym_uR_DQUOTE] = ACTIONS(2842), - [anon_sym_UR_DQUOTE] = ACTIONS(2842), - [anon_sym_u8R_DQUOTE] = ACTIONS(2842), - [anon_sym_co_await] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2840), - [anon_sym_requires] = ACTIONS(2840), - [sym_this] = ACTIONS(2840), - }, - [535] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4762), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7599), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(8006), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3398), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, [536] = { - [sym_identifier] = ACTIONS(3072), - [aux_sym_preproc_include_token1] = ACTIONS(3072), - [aux_sym_preproc_def_token1] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3072), - [aux_sym_preproc_if_token2] = ACTIONS(3072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3072), - [aux_sym_preproc_else_token1] = ACTIONS(3072), - [aux_sym_preproc_elif_token1] = ACTIONS(3072), - [sym_preproc_directive] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym___extension__] = ACTIONS(3072), - [anon_sym_typedef] = ACTIONS(3072), - [anon_sym_extern] = ACTIONS(3072), - [anon_sym___attribute__] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3074), - [anon_sym___declspec] = ACTIONS(3072), - [anon_sym___based] = ACTIONS(3072), - [anon_sym___cdecl] = ACTIONS(3072), - [anon_sym___clrcall] = ACTIONS(3072), - [anon_sym___stdcall] = ACTIONS(3072), - [anon_sym___fastcall] = ACTIONS(3072), - [anon_sym___thiscall] = ACTIONS(3072), - [anon_sym___vectorcall] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_signed] = ACTIONS(3072), - [anon_sym_unsigned] = ACTIONS(3072), - [anon_sym_long] = ACTIONS(3072), - [anon_sym_short] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_register] = ACTIONS(3072), - [anon_sym_inline] = ACTIONS(3072), - [anon_sym___inline] = ACTIONS(3072), - [anon_sym___inline__] = ACTIONS(3072), - [anon_sym___forceinline] = ACTIONS(3072), - [anon_sym_thread_local] = ACTIONS(3072), - [anon_sym___thread] = ACTIONS(3072), - [anon_sym_const] = ACTIONS(3072), - [anon_sym_constexpr] = ACTIONS(3072), - [anon_sym_volatile] = ACTIONS(3072), - [anon_sym_restrict] = ACTIONS(3072), - [anon_sym___restrict__] = ACTIONS(3072), - [anon_sym__Atomic] = ACTIONS(3072), - [anon_sym__Noreturn] = ACTIONS(3072), - [anon_sym_noreturn] = ACTIONS(3072), - [anon_sym_mutable] = ACTIONS(3072), - [anon_sym_constinit] = ACTIONS(3072), - [anon_sym_consteval] = ACTIONS(3072), - [sym_primitive_type] = ACTIONS(3072), - [anon_sym_enum] = ACTIONS(3072), - [anon_sym_class] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_switch] = ACTIONS(3072), - [anon_sym_case] = ACTIONS(3072), - [anon_sym_default] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_break] = ACTIONS(3072), - [anon_sym_continue] = ACTIONS(3072), - [anon_sym_goto] = ACTIONS(3072), - [anon_sym___try] = ACTIONS(3072), - [anon_sym___leave] = ACTIONS(3072), - [anon_sym_not] = ACTIONS(3072), - [anon_sym_compl] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_sizeof] = ACTIONS(3072), - [anon_sym___alignof__] = ACTIONS(3072), - [anon_sym___alignof] = ACTIONS(3072), - [anon_sym__alignof] = ACTIONS(3072), - [anon_sym_alignof] = ACTIONS(3072), - [anon_sym__Alignof] = ACTIONS(3072), - [anon_sym_offsetof] = ACTIONS(3072), - [anon_sym__Generic] = ACTIONS(3072), - [anon_sym_asm] = ACTIONS(3072), - [anon_sym___asm__] = ACTIONS(3072), - [sym_number_literal] = ACTIONS(3074), - [anon_sym_L_SQUOTE] = ACTIONS(3074), - [anon_sym_u_SQUOTE] = ACTIONS(3074), - [anon_sym_U_SQUOTE] = ACTIONS(3074), - [anon_sym_u8_SQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_L_DQUOTE] = ACTIONS(3074), - [anon_sym_u_DQUOTE] = ACTIONS(3074), - [anon_sym_U_DQUOTE] = ACTIONS(3074), - [anon_sym_u8_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [sym_true] = ACTIONS(3072), - [sym_false] = ACTIONS(3072), - [anon_sym_NULL] = ACTIONS(3072), - [anon_sym_nullptr] = ACTIONS(3072), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3072), - [anon_sym_decltype] = ACTIONS(3072), - [anon_sym_virtual] = ACTIONS(3072), - [anon_sym_alignas] = ACTIONS(3072), - [anon_sym_explicit] = ACTIONS(3072), - [anon_sym_typename] = ACTIONS(3072), - [anon_sym_template] = ACTIONS(3072), - [anon_sym_operator] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_delete] = ACTIONS(3072), - [anon_sym_throw] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_using] = ACTIONS(3072), - [anon_sym_static_assert] = ACTIONS(3072), - [anon_sym_concept] = ACTIONS(3072), - [anon_sym_co_return] = ACTIONS(3072), - [anon_sym_co_yield] = ACTIONS(3072), - [anon_sym_R_DQUOTE] = ACTIONS(3074), - [anon_sym_LR_DQUOTE] = ACTIONS(3074), - [anon_sym_uR_DQUOTE] = ACTIONS(3074), - [anon_sym_UR_DQUOTE] = ACTIONS(3074), - [anon_sym_u8R_DQUOTE] = ACTIONS(3074), - [anon_sym_co_await] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_requires] = ACTIONS(3072), - [sym_this] = ACTIONS(3072), - }, - [537] = { - [sym_identifier] = ACTIONS(3223), - [aux_sym_preproc_include_token1] = ACTIONS(3223), - [aux_sym_preproc_def_token1] = ACTIONS(3223), - [aux_sym_preproc_if_token1] = ACTIONS(3223), - [aux_sym_preproc_if_token2] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), - [aux_sym_preproc_else_token1] = ACTIONS(3223), - [aux_sym_preproc_elif_token1] = ACTIONS(3223), - [sym_preproc_directive] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3225), - [anon_sym_AMP_AMP] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym___extension__] = ACTIONS(3223), - [anon_sym_typedef] = ACTIONS(3223), - [anon_sym_extern] = ACTIONS(3223), - [anon_sym___attribute__] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), - [anon_sym___declspec] = ACTIONS(3223), - [anon_sym___based] = ACTIONS(3223), - [anon_sym___cdecl] = ACTIONS(3223), - [anon_sym___clrcall] = ACTIONS(3223), - [anon_sym___stdcall] = ACTIONS(3223), - [anon_sym___fastcall] = ACTIONS(3223), - [anon_sym___thiscall] = ACTIONS(3223), - [anon_sym___vectorcall] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_signed] = ACTIONS(3223), - [anon_sym_unsigned] = ACTIONS(3223), - [anon_sym_long] = ACTIONS(3223), - [anon_sym_short] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_register] = ACTIONS(3223), - [anon_sym_inline] = ACTIONS(3223), - [anon_sym___inline] = ACTIONS(3223), - [anon_sym___inline__] = ACTIONS(3223), - [anon_sym___forceinline] = ACTIONS(3223), - [anon_sym_thread_local] = ACTIONS(3223), - [anon_sym___thread] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_constexpr] = ACTIONS(3223), - [anon_sym_volatile] = ACTIONS(3223), - [anon_sym_restrict] = ACTIONS(3223), - [anon_sym___restrict__] = ACTIONS(3223), - [anon_sym__Atomic] = ACTIONS(3223), - [anon_sym__Noreturn] = ACTIONS(3223), - [anon_sym_noreturn] = ACTIONS(3223), - [anon_sym_mutable] = ACTIONS(3223), - [anon_sym_constinit] = ACTIONS(3223), - [anon_sym_consteval] = ACTIONS(3223), - [sym_primitive_type] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_union] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_goto] = ACTIONS(3223), - [anon_sym___try] = ACTIONS(3223), - [anon_sym___leave] = ACTIONS(3223), - [anon_sym_not] = ACTIONS(3223), - [anon_sym_compl] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_sizeof] = ACTIONS(3223), - [anon_sym___alignof__] = ACTIONS(3223), - [anon_sym___alignof] = ACTIONS(3223), - [anon_sym__alignof] = ACTIONS(3223), - [anon_sym_alignof] = ACTIONS(3223), - [anon_sym__Alignof] = ACTIONS(3223), - [anon_sym_offsetof] = ACTIONS(3223), - [anon_sym__Generic] = ACTIONS(3223), - [anon_sym_asm] = ACTIONS(3223), - [anon_sym___asm__] = ACTIONS(3223), - [sym_number_literal] = ACTIONS(3225), - [anon_sym_L_SQUOTE] = ACTIONS(3225), - [anon_sym_u_SQUOTE] = ACTIONS(3225), - [anon_sym_U_SQUOTE] = ACTIONS(3225), - [anon_sym_u8_SQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_L_DQUOTE] = ACTIONS(3225), - [anon_sym_u_DQUOTE] = ACTIONS(3225), - [anon_sym_U_DQUOTE] = ACTIONS(3225), - [anon_sym_u8_DQUOTE] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [anon_sym_NULL] = ACTIONS(3223), - [anon_sym_nullptr] = ACTIONS(3223), + [sym_identifier] = ACTIONS(3090), + [aux_sym_preproc_include_token1] = ACTIONS(3090), + [aux_sym_preproc_def_token1] = ACTIONS(3090), + [aux_sym_preproc_if_token1] = ACTIONS(3090), + [aux_sym_preproc_if_token2] = ACTIONS(3090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), + [aux_sym_preproc_else_token1] = ACTIONS(3090), + [aux_sym_preproc_elif_token1] = ACTIONS(3090), + [sym_preproc_directive] = ACTIONS(3090), + [anon_sym_LPAREN2] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym___extension__] = ACTIONS(3090), + [anon_sym_typedef] = ACTIONS(3090), + [anon_sym_extern] = ACTIONS(3090), + [anon_sym___attribute__] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), + [anon_sym___declspec] = ACTIONS(3090), + [anon_sym___based] = ACTIONS(3090), + [anon_sym___cdecl] = ACTIONS(3090), + [anon_sym___clrcall] = ACTIONS(3090), + [anon_sym___stdcall] = ACTIONS(3090), + [anon_sym___fastcall] = ACTIONS(3090), + [anon_sym___thiscall] = ACTIONS(3090), + [anon_sym___vectorcall] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_signed] = ACTIONS(3090), + [anon_sym_unsigned] = ACTIONS(3090), + [anon_sym_long] = ACTIONS(3090), + [anon_sym_short] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_static] = ACTIONS(3090), + [anon_sym_register] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym___inline] = ACTIONS(3090), + [anon_sym___inline__] = ACTIONS(3090), + [anon_sym___forceinline] = ACTIONS(3090), + [anon_sym_thread_local] = ACTIONS(3090), + [anon_sym___thread] = ACTIONS(3090), + [anon_sym_const] = ACTIONS(3090), + [anon_sym_constexpr] = ACTIONS(3090), + [anon_sym_volatile] = ACTIONS(3090), + [anon_sym_restrict] = ACTIONS(3090), + [anon_sym___restrict__] = ACTIONS(3090), + [anon_sym__Atomic] = ACTIONS(3090), + [anon_sym__Noreturn] = ACTIONS(3090), + [anon_sym_noreturn] = ACTIONS(3090), + [anon_sym_mutable] = ACTIONS(3090), + [anon_sym_constinit] = ACTIONS(3090), + [anon_sym_consteval] = ACTIONS(3090), + [sym_primitive_type] = ACTIONS(3090), + [anon_sym_enum] = ACTIONS(3090), + [anon_sym_class] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3090), + [anon_sym_union] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_switch] = ACTIONS(3090), + [anon_sym_case] = ACTIONS(3090), + [anon_sym_default] = ACTIONS(3090), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_do] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_goto] = ACTIONS(3090), + [anon_sym___try] = ACTIONS(3090), + [anon_sym___leave] = ACTIONS(3090), + [anon_sym_not] = ACTIONS(3090), + [anon_sym_compl] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_sizeof] = ACTIONS(3090), + [anon_sym___alignof__] = ACTIONS(3090), + [anon_sym___alignof] = ACTIONS(3090), + [anon_sym__alignof] = ACTIONS(3090), + [anon_sym_alignof] = ACTIONS(3090), + [anon_sym__Alignof] = ACTIONS(3090), + [anon_sym_offsetof] = ACTIONS(3090), + [anon_sym__Generic] = ACTIONS(3090), + [anon_sym_asm] = ACTIONS(3090), + [anon_sym___asm__] = ACTIONS(3090), + [sym_number_literal] = ACTIONS(3092), + [anon_sym_L_SQUOTE] = ACTIONS(3092), + [anon_sym_u_SQUOTE] = ACTIONS(3092), + [anon_sym_U_SQUOTE] = ACTIONS(3092), + [anon_sym_u8_SQUOTE] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3092), + [anon_sym_L_DQUOTE] = ACTIONS(3092), + [anon_sym_u_DQUOTE] = ACTIONS(3092), + [anon_sym_U_DQUOTE] = ACTIONS(3092), + [anon_sym_u8_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [anon_sym_NULL] = ACTIONS(3090), + [anon_sym_nullptr] = ACTIONS(3090), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3223), - [anon_sym_decltype] = ACTIONS(3223), - [anon_sym_virtual] = ACTIONS(3223), - [anon_sym_alignas] = ACTIONS(3223), - [anon_sym_explicit] = ACTIONS(3223), - [anon_sym_typename] = ACTIONS(3223), - [anon_sym_template] = ACTIONS(3223), - [anon_sym_operator] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_static_assert] = ACTIONS(3223), - [anon_sym_concept] = ACTIONS(3223), - [anon_sym_co_return] = ACTIONS(3223), - [anon_sym_co_yield] = ACTIONS(3223), - [anon_sym_R_DQUOTE] = ACTIONS(3225), - [anon_sym_LR_DQUOTE] = ACTIONS(3225), - [anon_sym_uR_DQUOTE] = ACTIONS(3225), - [anon_sym_UR_DQUOTE] = ACTIONS(3225), - [anon_sym_u8R_DQUOTE] = ACTIONS(3225), - [anon_sym_co_await] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_requires] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), + [sym_auto] = ACTIONS(3090), + [anon_sym_decltype] = ACTIONS(3090), + [anon_sym_virtual] = ACTIONS(3090), + [anon_sym_alignas] = ACTIONS(3090), + [anon_sym_explicit] = ACTIONS(3090), + [anon_sym_typename] = ACTIONS(3090), + [anon_sym_template] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_namespace] = ACTIONS(3090), + [anon_sym_using] = ACTIONS(3090), + [anon_sym_static_assert] = ACTIONS(3090), + [anon_sym_concept] = ACTIONS(3090), + [anon_sym_co_return] = ACTIONS(3090), + [anon_sym_co_yield] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(3092), + [anon_sym_LR_DQUOTE] = ACTIONS(3092), + [anon_sym_uR_DQUOTE] = ACTIONS(3092), + [anon_sym_UR_DQUOTE] = ACTIONS(3092), + [anon_sym_u8R_DQUOTE] = ACTIONS(3092), + [anon_sym_co_await] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3090), + [anon_sym_requires] = ACTIONS(3090), + [sym_this] = ACTIONS(3090), + }, + [537] = { + [sym_identifier] = ACTIONS(3306), + [aux_sym_preproc_include_token1] = ACTIONS(3306), + [aux_sym_preproc_def_token1] = ACTIONS(3306), + [aux_sym_preproc_if_token1] = ACTIONS(3306), + [aux_sym_preproc_if_token2] = ACTIONS(3306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3306), + [aux_sym_preproc_else_token1] = ACTIONS(3306), + [aux_sym_preproc_elif_token1] = ACTIONS(3306), + [sym_preproc_directive] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym___extension__] = ACTIONS(3306), + [anon_sym_typedef] = ACTIONS(3306), + [anon_sym_extern] = ACTIONS(3306), + [anon_sym___attribute__] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3308), + [anon_sym___declspec] = ACTIONS(3306), + [anon_sym___based] = ACTIONS(3306), + [anon_sym___cdecl] = ACTIONS(3306), + [anon_sym___clrcall] = ACTIONS(3306), + [anon_sym___stdcall] = ACTIONS(3306), + [anon_sym___fastcall] = ACTIONS(3306), + [anon_sym___thiscall] = ACTIONS(3306), + [anon_sym___vectorcall] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_signed] = ACTIONS(3306), + [anon_sym_unsigned] = ACTIONS(3306), + [anon_sym_long] = ACTIONS(3306), + [anon_sym_short] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_register] = ACTIONS(3306), + [anon_sym_inline] = ACTIONS(3306), + [anon_sym___inline] = ACTIONS(3306), + [anon_sym___inline__] = ACTIONS(3306), + [anon_sym___forceinline] = ACTIONS(3306), + [anon_sym_thread_local] = ACTIONS(3306), + [anon_sym___thread] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_constexpr] = ACTIONS(3306), + [anon_sym_volatile] = ACTIONS(3306), + [anon_sym_restrict] = ACTIONS(3306), + [anon_sym___restrict__] = ACTIONS(3306), + [anon_sym__Atomic] = ACTIONS(3306), + [anon_sym__Noreturn] = ACTIONS(3306), + [anon_sym_noreturn] = ACTIONS(3306), + [anon_sym_mutable] = ACTIONS(3306), + [anon_sym_constinit] = ACTIONS(3306), + [anon_sym_consteval] = ACTIONS(3306), + [sym_primitive_type] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_struct] = ACTIONS(3306), + [anon_sym_union] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_case] = ACTIONS(3306), + [anon_sym_default] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_goto] = ACTIONS(3306), + [anon_sym___try] = ACTIONS(3306), + [anon_sym___leave] = ACTIONS(3306), + [anon_sym_not] = ACTIONS(3306), + [anon_sym_compl] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_sizeof] = ACTIONS(3306), + [anon_sym___alignof__] = ACTIONS(3306), + [anon_sym___alignof] = ACTIONS(3306), + [anon_sym__alignof] = ACTIONS(3306), + [anon_sym_alignof] = ACTIONS(3306), + [anon_sym__Alignof] = ACTIONS(3306), + [anon_sym_offsetof] = ACTIONS(3306), + [anon_sym__Generic] = ACTIONS(3306), + [anon_sym_asm] = ACTIONS(3306), + [anon_sym___asm__] = ACTIONS(3306), + [sym_number_literal] = ACTIONS(3308), + [anon_sym_L_SQUOTE] = ACTIONS(3308), + [anon_sym_u_SQUOTE] = ACTIONS(3308), + [anon_sym_U_SQUOTE] = ACTIONS(3308), + [anon_sym_u8_SQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_L_DQUOTE] = ACTIONS(3308), + [anon_sym_u_DQUOTE] = ACTIONS(3308), + [anon_sym_U_DQUOTE] = ACTIONS(3308), + [anon_sym_u8_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [anon_sym_NULL] = ACTIONS(3306), + [anon_sym_nullptr] = ACTIONS(3306), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3306), + [anon_sym_decltype] = ACTIONS(3306), + [anon_sym_virtual] = ACTIONS(3306), + [anon_sym_alignas] = ACTIONS(3306), + [anon_sym_explicit] = ACTIONS(3306), + [anon_sym_typename] = ACTIONS(3306), + [anon_sym_template] = ACTIONS(3306), + [anon_sym_operator] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_static_assert] = ACTIONS(3306), + [anon_sym_concept] = ACTIONS(3306), + [anon_sym_co_return] = ACTIONS(3306), + [anon_sym_co_yield] = ACTIONS(3306), + [anon_sym_R_DQUOTE] = ACTIONS(3308), + [anon_sym_LR_DQUOTE] = ACTIONS(3308), + [anon_sym_uR_DQUOTE] = ACTIONS(3308), + [anon_sym_UR_DQUOTE] = ACTIONS(3308), + [anon_sym_u8R_DQUOTE] = ACTIONS(3308), + [anon_sym_co_await] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_requires] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), }, [538] = { - [sym_identifier] = ACTIONS(3243), - [aux_sym_preproc_include_token1] = ACTIONS(3243), - [aux_sym_preproc_def_token1] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3243), - [aux_sym_preproc_if_token2] = ACTIONS(3243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3243), - [aux_sym_preproc_else_token1] = ACTIONS(3243), - [aux_sym_preproc_elif_token1] = ACTIONS(3243), - [sym_preproc_directive] = ACTIONS(3243), - [anon_sym_LPAREN2] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym___extension__] = ACTIONS(3243), - [anon_sym_typedef] = ACTIONS(3243), - [anon_sym_extern] = ACTIONS(3243), - [anon_sym___attribute__] = ACTIONS(3243), - [anon_sym_COLON_COLON] = ACTIONS(3245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3245), - [anon_sym___declspec] = ACTIONS(3243), - [anon_sym___based] = ACTIONS(3243), - [anon_sym___cdecl] = ACTIONS(3243), - [anon_sym___clrcall] = ACTIONS(3243), - [anon_sym___stdcall] = ACTIONS(3243), - [anon_sym___fastcall] = ACTIONS(3243), - [anon_sym___thiscall] = ACTIONS(3243), - [anon_sym___vectorcall] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_signed] = ACTIONS(3243), - [anon_sym_unsigned] = ACTIONS(3243), - [anon_sym_long] = ACTIONS(3243), - [anon_sym_short] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_register] = ACTIONS(3243), - [anon_sym_inline] = ACTIONS(3243), - [anon_sym___inline] = ACTIONS(3243), - [anon_sym___inline__] = ACTIONS(3243), - [anon_sym___forceinline] = ACTIONS(3243), - [anon_sym_thread_local] = ACTIONS(3243), - [anon_sym___thread] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_constexpr] = ACTIONS(3243), - [anon_sym_volatile] = ACTIONS(3243), - [anon_sym_restrict] = ACTIONS(3243), - [anon_sym___restrict__] = ACTIONS(3243), - [anon_sym__Atomic] = ACTIONS(3243), - [anon_sym__Noreturn] = ACTIONS(3243), - [anon_sym_noreturn] = ACTIONS(3243), - [anon_sym_mutable] = ACTIONS(3243), - [anon_sym_constinit] = ACTIONS(3243), - [anon_sym_consteval] = ACTIONS(3243), - [sym_primitive_type] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_union] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_case] = ACTIONS(3243), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_goto] = ACTIONS(3243), - [anon_sym___try] = ACTIONS(3243), - [anon_sym___leave] = ACTIONS(3243), - [anon_sym_not] = ACTIONS(3243), - [anon_sym_compl] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_sizeof] = ACTIONS(3243), - [anon_sym___alignof__] = ACTIONS(3243), - [anon_sym___alignof] = ACTIONS(3243), - [anon_sym__alignof] = ACTIONS(3243), - [anon_sym_alignof] = ACTIONS(3243), - [anon_sym__Alignof] = ACTIONS(3243), - [anon_sym_offsetof] = ACTIONS(3243), - [anon_sym__Generic] = ACTIONS(3243), - [anon_sym_asm] = ACTIONS(3243), - [anon_sym___asm__] = ACTIONS(3243), - [sym_number_literal] = ACTIONS(3245), - [anon_sym_L_SQUOTE] = ACTIONS(3245), - [anon_sym_u_SQUOTE] = ACTIONS(3245), - [anon_sym_U_SQUOTE] = ACTIONS(3245), - [anon_sym_u8_SQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_L_DQUOTE] = ACTIONS(3245), - [anon_sym_u_DQUOTE] = ACTIONS(3245), - [anon_sym_U_DQUOTE] = ACTIONS(3245), - [anon_sym_u8_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [anon_sym_NULL] = ACTIONS(3243), - [anon_sym_nullptr] = ACTIONS(3243), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3243), - [anon_sym_decltype] = ACTIONS(3243), - [anon_sym_virtual] = ACTIONS(3243), - [anon_sym_alignas] = ACTIONS(3243), - [anon_sym_explicit] = ACTIONS(3243), - [anon_sym_typename] = ACTIONS(3243), - [anon_sym_template] = ACTIONS(3243), - [anon_sym_operator] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_static_assert] = ACTIONS(3243), - [anon_sym_concept] = ACTIONS(3243), - [anon_sym_co_return] = ACTIONS(3243), - [anon_sym_co_yield] = ACTIONS(3243), - [anon_sym_R_DQUOTE] = ACTIONS(3245), - [anon_sym_LR_DQUOTE] = ACTIONS(3245), - [anon_sym_uR_DQUOTE] = ACTIONS(3245), - [anon_sym_UR_DQUOTE] = ACTIONS(3245), - [anon_sym_u8R_DQUOTE] = ACTIONS(3245), - [anon_sym_co_await] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_requires] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), + [sym_identifier] = ACTIONS(3207), + [aux_sym_preproc_include_token1] = ACTIONS(3207), + [aux_sym_preproc_def_token1] = ACTIONS(3207), + [aux_sym_preproc_if_token1] = ACTIONS(3207), + [aux_sym_preproc_if_token2] = ACTIONS(3207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), + [aux_sym_preproc_else_token1] = ACTIONS(3207), + [aux_sym_preproc_elif_token1] = ACTIONS(3207), + [sym_preproc_directive] = ACTIONS(3207), + [anon_sym_LPAREN2] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_AMP_AMP] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym___extension__] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3207), + [anon_sym___attribute__] = ACTIONS(3207), + [anon_sym_COLON_COLON] = ACTIONS(3209), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), + [anon_sym___declspec] = ACTIONS(3207), + [anon_sym___based] = ACTIONS(3207), + [anon_sym___cdecl] = ACTIONS(3207), + [anon_sym___clrcall] = ACTIONS(3207), + [anon_sym___stdcall] = ACTIONS(3207), + [anon_sym___fastcall] = ACTIONS(3207), + [anon_sym___thiscall] = ACTIONS(3207), + [anon_sym___vectorcall] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_signed] = ACTIONS(3207), + [anon_sym_unsigned] = ACTIONS(3207), + [anon_sym_long] = ACTIONS(3207), + [anon_sym_short] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_register] = ACTIONS(3207), + [anon_sym_inline] = ACTIONS(3207), + [anon_sym___inline] = ACTIONS(3207), + [anon_sym___inline__] = ACTIONS(3207), + [anon_sym___forceinline] = ACTIONS(3207), + [anon_sym_thread_local] = ACTIONS(3207), + [anon_sym___thread] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_constexpr] = ACTIONS(3207), + [anon_sym_volatile] = ACTIONS(3207), + [anon_sym_restrict] = ACTIONS(3207), + [anon_sym___restrict__] = ACTIONS(3207), + [anon_sym__Atomic] = ACTIONS(3207), + [anon_sym__Noreturn] = ACTIONS(3207), + [anon_sym_noreturn] = ACTIONS(3207), + [anon_sym_mutable] = ACTIONS(3207), + [anon_sym_constinit] = ACTIONS(3207), + [anon_sym_consteval] = ACTIONS(3207), + [sym_primitive_type] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3207), + [anon_sym_union] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_case] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_goto] = ACTIONS(3207), + [anon_sym___try] = ACTIONS(3207), + [anon_sym___leave] = ACTIONS(3207), + [anon_sym_not] = ACTIONS(3207), + [anon_sym_compl] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_sizeof] = ACTIONS(3207), + [anon_sym___alignof__] = ACTIONS(3207), + [anon_sym___alignof] = ACTIONS(3207), + [anon_sym__alignof] = ACTIONS(3207), + [anon_sym_alignof] = ACTIONS(3207), + [anon_sym__Alignof] = ACTIONS(3207), + [anon_sym_offsetof] = ACTIONS(3207), + [anon_sym__Generic] = ACTIONS(3207), + [anon_sym_asm] = ACTIONS(3207), + [anon_sym___asm__] = ACTIONS(3207), + [sym_number_literal] = ACTIONS(3209), + [anon_sym_L_SQUOTE] = ACTIONS(3209), + [anon_sym_u_SQUOTE] = ACTIONS(3209), + [anon_sym_U_SQUOTE] = ACTIONS(3209), + [anon_sym_u8_SQUOTE] = ACTIONS(3209), + [anon_sym_SQUOTE] = ACTIONS(3209), + [anon_sym_L_DQUOTE] = ACTIONS(3209), + [anon_sym_u_DQUOTE] = ACTIONS(3209), + [anon_sym_U_DQUOTE] = ACTIONS(3209), + [anon_sym_u8_DQUOTE] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3209), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [anon_sym_NULL] = ACTIONS(3207), + [anon_sym_nullptr] = ACTIONS(3207), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3207), + [anon_sym_decltype] = ACTIONS(3207), + [anon_sym_virtual] = ACTIONS(3207), + [anon_sym_alignas] = ACTIONS(3207), + [anon_sym_explicit] = ACTIONS(3207), + [anon_sym_typename] = ACTIONS(3207), + [anon_sym_template] = ACTIONS(3207), + [anon_sym_operator] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_delete] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_static_assert] = ACTIONS(3207), + [anon_sym_concept] = ACTIONS(3207), + [anon_sym_co_return] = ACTIONS(3207), + [anon_sym_co_yield] = ACTIONS(3207), + [anon_sym_R_DQUOTE] = ACTIONS(3209), + [anon_sym_LR_DQUOTE] = ACTIONS(3209), + [anon_sym_uR_DQUOTE] = ACTIONS(3209), + [anon_sym_UR_DQUOTE] = ACTIONS(3209), + [anon_sym_u8R_DQUOTE] = ACTIONS(3209), + [anon_sym_co_await] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3207), }, [539] = { - [sym_identifier] = ACTIONS(3058), - [aux_sym_preproc_include_token1] = ACTIONS(3058), - [aux_sym_preproc_def_token1] = ACTIONS(3058), - [aux_sym_preproc_if_token1] = ACTIONS(3058), - [aux_sym_preproc_if_token2] = ACTIONS(3058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3058), - [aux_sym_preproc_else_token1] = ACTIONS(3058), - [aux_sym_preproc_elif_token1] = ACTIONS(3058), - [sym_preproc_directive] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3060), - [anon_sym___extension__] = ACTIONS(3058), - [anon_sym_typedef] = ACTIONS(3058), - [anon_sym_extern] = ACTIONS(3058), - [anon_sym___attribute__] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3060), - [anon_sym___declspec] = ACTIONS(3058), - [anon_sym___based] = ACTIONS(3058), - [anon_sym___cdecl] = ACTIONS(3058), - [anon_sym___clrcall] = ACTIONS(3058), - [anon_sym___stdcall] = ACTIONS(3058), - [anon_sym___fastcall] = ACTIONS(3058), - [anon_sym___thiscall] = ACTIONS(3058), - [anon_sym___vectorcall] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_signed] = ACTIONS(3058), - [anon_sym_unsigned] = ACTIONS(3058), - [anon_sym_long] = ACTIONS(3058), - [anon_sym_short] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_static] = ACTIONS(3058), - [anon_sym_register] = ACTIONS(3058), - [anon_sym_inline] = ACTIONS(3058), - [anon_sym___inline] = ACTIONS(3058), - [anon_sym___inline__] = ACTIONS(3058), - [anon_sym___forceinline] = ACTIONS(3058), - [anon_sym_thread_local] = ACTIONS(3058), - [anon_sym___thread] = ACTIONS(3058), - [anon_sym_const] = ACTIONS(3058), - [anon_sym_constexpr] = ACTIONS(3058), - [anon_sym_volatile] = ACTIONS(3058), - [anon_sym_restrict] = ACTIONS(3058), - [anon_sym___restrict__] = ACTIONS(3058), - [anon_sym__Atomic] = ACTIONS(3058), - [anon_sym__Noreturn] = ACTIONS(3058), - [anon_sym_noreturn] = ACTIONS(3058), - [anon_sym_mutable] = ACTIONS(3058), - [anon_sym_constinit] = ACTIONS(3058), - [anon_sym_consteval] = ACTIONS(3058), - [sym_primitive_type] = ACTIONS(3058), - [anon_sym_enum] = ACTIONS(3058), - [anon_sym_class] = ACTIONS(3058), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_union] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_switch] = ACTIONS(3058), - [anon_sym_case] = ACTIONS(3058), - [anon_sym_default] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_goto] = ACTIONS(3058), - [anon_sym___try] = ACTIONS(3058), - [anon_sym___leave] = ACTIONS(3058), - [anon_sym_not] = ACTIONS(3058), - [anon_sym_compl] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_sizeof] = ACTIONS(3058), - [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(3058), - [anon_sym__Generic] = ACTIONS(3058), - [anon_sym_asm] = ACTIONS(3058), - [anon_sym___asm__] = ACTIONS(3058), - [sym_number_literal] = ACTIONS(3060), - [anon_sym_L_SQUOTE] = ACTIONS(3060), - [anon_sym_u_SQUOTE] = ACTIONS(3060), - [anon_sym_U_SQUOTE] = ACTIONS(3060), - [anon_sym_u8_SQUOTE] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_L_DQUOTE] = ACTIONS(3060), - [anon_sym_u_DQUOTE] = ACTIONS(3060), - [anon_sym_U_DQUOTE] = ACTIONS(3060), - [anon_sym_u8_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [anon_sym_NULL] = ACTIONS(3058), - [anon_sym_nullptr] = ACTIONS(3058), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3058), - [anon_sym_decltype] = ACTIONS(3058), - [anon_sym_virtual] = ACTIONS(3058), - [anon_sym_alignas] = ACTIONS(3058), - [anon_sym_explicit] = ACTIONS(3058), - [anon_sym_typename] = ACTIONS(3058), - [anon_sym_template] = ACTIONS(3058), - [anon_sym_operator] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_delete] = ACTIONS(3058), - [anon_sym_throw] = ACTIONS(3058), - [anon_sym_namespace] = ACTIONS(3058), - [anon_sym_using] = ACTIONS(3058), - [anon_sym_static_assert] = ACTIONS(3058), - [anon_sym_concept] = ACTIONS(3058), - [anon_sym_co_return] = ACTIONS(3058), - [anon_sym_co_yield] = ACTIONS(3058), - [anon_sym_R_DQUOTE] = ACTIONS(3060), - [anon_sym_LR_DQUOTE] = ACTIONS(3060), - [anon_sym_uR_DQUOTE] = ACTIONS(3060), - [anon_sym_UR_DQUOTE] = ACTIONS(3060), - [anon_sym_u8R_DQUOTE] = ACTIONS(3060), - [anon_sym_co_await] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_requires] = ACTIONS(3058), - [sym_this] = ACTIONS(3058), - }, - [540] = { - [sym_identifier] = ACTIONS(3255), - [aux_sym_preproc_include_token1] = ACTIONS(3255), - [aux_sym_preproc_def_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token2] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), - [aux_sym_preproc_else_token1] = ACTIONS(3255), - [aux_sym_preproc_elif_token1] = ACTIONS(3255), - [sym_preproc_directive] = ACTIONS(3255), - [anon_sym_LPAREN2] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_AMP_AMP] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym___extension__] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3255), - [anon_sym_extern] = ACTIONS(3255), - [anon_sym___attribute__] = ACTIONS(3255), - [anon_sym_COLON_COLON] = ACTIONS(3257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3257), - [anon_sym___declspec] = ACTIONS(3255), - [anon_sym___based] = ACTIONS(3255), - [anon_sym___cdecl] = ACTIONS(3255), - [anon_sym___clrcall] = ACTIONS(3255), - [anon_sym___stdcall] = ACTIONS(3255), - [anon_sym___fastcall] = ACTIONS(3255), - [anon_sym___thiscall] = ACTIONS(3255), - [anon_sym___vectorcall] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_signed] = ACTIONS(3255), - [anon_sym_unsigned] = ACTIONS(3255), - [anon_sym_long] = ACTIONS(3255), - [anon_sym_short] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_register] = ACTIONS(3255), - [anon_sym_inline] = ACTIONS(3255), - [anon_sym___inline] = ACTIONS(3255), - [anon_sym___inline__] = ACTIONS(3255), - [anon_sym___forceinline] = ACTIONS(3255), - [anon_sym_thread_local] = ACTIONS(3255), - [anon_sym___thread] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_constexpr] = ACTIONS(3255), - [anon_sym_volatile] = ACTIONS(3255), - [anon_sym_restrict] = ACTIONS(3255), - [anon_sym___restrict__] = ACTIONS(3255), - [anon_sym__Atomic] = ACTIONS(3255), - [anon_sym__Noreturn] = ACTIONS(3255), - [anon_sym_noreturn] = ACTIONS(3255), - [anon_sym_mutable] = ACTIONS(3255), - [anon_sym_constinit] = ACTIONS(3255), - [anon_sym_consteval] = ACTIONS(3255), - [sym_primitive_type] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym___try] = ACTIONS(3255), - [anon_sym___leave] = ACTIONS(3255), - [anon_sym_not] = ACTIONS(3255), - [anon_sym_compl] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3255), - [anon_sym___alignof__] = ACTIONS(3255), - [anon_sym___alignof] = ACTIONS(3255), - [anon_sym__alignof] = ACTIONS(3255), - [anon_sym_alignof] = ACTIONS(3255), - [anon_sym__Alignof] = ACTIONS(3255), - [anon_sym_offsetof] = ACTIONS(3255), - [anon_sym__Generic] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym___asm__] = ACTIONS(3255), - [sym_number_literal] = ACTIONS(3257), - [anon_sym_L_SQUOTE] = ACTIONS(3257), - [anon_sym_u_SQUOTE] = ACTIONS(3257), - [anon_sym_U_SQUOTE] = ACTIONS(3257), - [anon_sym_u8_SQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_L_DQUOTE] = ACTIONS(3257), - [anon_sym_u_DQUOTE] = ACTIONS(3257), - [anon_sym_U_DQUOTE] = ACTIONS(3257), - [anon_sym_u8_DQUOTE] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [anon_sym_NULL] = ACTIONS(3255), - [anon_sym_nullptr] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3255), - [anon_sym_decltype] = ACTIONS(3255), - [anon_sym_virtual] = ACTIONS(3255), - [anon_sym_alignas] = ACTIONS(3255), - [anon_sym_explicit] = ACTIONS(3255), - [anon_sym_typename] = ACTIONS(3255), - [anon_sym_template] = ACTIONS(3255), - [anon_sym_operator] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_static_assert] = ACTIONS(3255), - [anon_sym_concept] = ACTIONS(3255), - [anon_sym_co_return] = ACTIONS(3255), - [anon_sym_co_yield] = ACTIONS(3255), - [anon_sym_R_DQUOTE] = ACTIONS(3257), - [anon_sym_LR_DQUOTE] = ACTIONS(3257), - [anon_sym_uR_DQUOTE] = ACTIONS(3257), - [anon_sym_UR_DQUOTE] = ACTIONS(3257), - [anon_sym_u8R_DQUOTE] = ACTIONS(3257), - [anon_sym_co_await] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_requires] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - }, - [541] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4849), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7299), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7812), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4776), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7567), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7947), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -165589,263 +165652,933 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3400), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_GT2] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [540] = { + [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), + [sym_preproc_directive] = ACTIONS(3310), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym___extension__] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3312), + [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(3312), + [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_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = 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_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(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [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_asm] = ACTIONS(3310), + [anon_sym___asm__] = ACTIONS(3310), + [sym_number_literal] = ACTIONS(3312), + [anon_sym_L_SQUOTE] = ACTIONS(3312), + [anon_sym_u_SQUOTE] = ACTIONS(3312), + [anon_sym_U_SQUOTE] = ACTIONS(3312), + [anon_sym_u8_SQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_L_DQUOTE] = ACTIONS(3312), + [anon_sym_u_DQUOTE] = ACTIONS(3312), + [anon_sym_U_DQUOTE] = ACTIONS(3312), + [anon_sym_u8_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [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_virtual] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym_explicit] = ACTIONS(3310), + [anon_sym_typename] = 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_using] = 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(3312), + [anon_sym_LR_DQUOTE] = ACTIONS(3312), + [anon_sym_uR_DQUOTE] = ACTIONS(3312), + [anon_sym_UR_DQUOTE] = ACTIONS(3312), + [anon_sym_u8R_DQUOTE] = ACTIONS(3312), + [anon_sym_co_await] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_requires] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + }, + [541] = { + [sym_identifier] = ACTIONS(3290), + [aux_sym_preproc_include_token1] = ACTIONS(3290), + [aux_sym_preproc_def_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token2] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), + [aux_sym_preproc_else_token1] = ACTIONS(3290), + [aux_sym_preproc_elif_token1] = ACTIONS(3290), + [sym_preproc_directive] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym___extension__] = ACTIONS(3290), + [anon_sym_typedef] = ACTIONS(3290), + [anon_sym_extern] = ACTIONS(3290), + [anon_sym___attribute__] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), + [anon_sym___declspec] = ACTIONS(3290), + [anon_sym___based] = ACTIONS(3290), + [anon_sym___cdecl] = ACTIONS(3290), + [anon_sym___clrcall] = ACTIONS(3290), + [anon_sym___stdcall] = ACTIONS(3290), + [anon_sym___fastcall] = ACTIONS(3290), + [anon_sym___thiscall] = ACTIONS(3290), + [anon_sym___vectorcall] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_signed] = ACTIONS(3290), + [anon_sym_unsigned] = ACTIONS(3290), + [anon_sym_long] = ACTIONS(3290), + [anon_sym_short] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_register] = ACTIONS(3290), + [anon_sym_inline] = ACTIONS(3290), + [anon_sym___inline] = ACTIONS(3290), + [anon_sym___inline__] = ACTIONS(3290), + [anon_sym___forceinline] = ACTIONS(3290), + [anon_sym_thread_local] = ACTIONS(3290), + [anon_sym___thread] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_constexpr] = ACTIONS(3290), + [anon_sym_volatile] = ACTIONS(3290), + [anon_sym_restrict] = ACTIONS(3290), + [anon_sym___restrict__] = ACTIONS(3290), + [anon_sym__Atomic] = ACTIONS(3290), + [anon_sym__Noreturn] = ACTIONS(3290), + [anon_sym_noreturn] = ACTIONS(3290), + [anon_sym_mutable] = ACTIONS(3290), + [anon_sym_constinit] = ACTIONS(3290), + [anon_sym_consteval] = ACTIONS(3290), + [sym_primitive_type] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_goto] = ACTIONS(3290), + [anon_sym___try] = ACTIONS(3290), + [anon_sym___leave] = ACTIONS(3290), + [anon_sym_not] = ACTIONS(3290), + [anon_sym_compl] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_sizeof] = ACTIONS(3290), + [anon_sym___alignof__] = ACTIONS(3290), + [anon_sym___alignof] = ACTIONS(3290), + [anon_sym__alignof] = ACTIONS(3290), + [anon_sym_alignof] = ACTIONS(3290), + [anon_sym__Alignof] = ACTIONS(3290), + [anon_sym_offsetof] = ACTIONS(3290), + [anon_sym__Generic] = ACTIONS(3290), + [anon_sym_asm] = ACTIONS(3290), + [anon_sym___asm__] = ACTIONS(3290), + [sym_number_literal] = ACTIONS(3292), + [anon_sym_L_SQUOTE] = ACTIONS(3292), + [anon_sym_u_SQUOTE] = ACTIONS(3292), + [anon_sym_U_SQUOTE] = ACTIONS(3292), + [anon_sym_u8_SQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_L_DQUOTE] = ACTIONS(3292), + [anon_sym_u_DQUOTE] = ACTIONS(3292), + [anon_sym_U_DQUOTE] = ACTIONS(3292), + [anon_sym_u8_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [anon_sym_NULL] = ACTIONS(3290), + [anon_sym_nullptr] = ACTIONS(3290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3290), + [anon_sym_decltype] = ACTIONS(3290), + [anon_sym_virtual] = ACTIONS(3290), + [anon_sym_alignas] = ACTIONS(3290), + [anon_sym_explicit] = ACTIONS(3290), + [anon_sym_typename] = ACTIONS(3290), + [anon_sym_template] = ACTIONS(3290), + [anon_sym_operator] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_static_assert] = ACTIONS(3290), + [anon_sym_concept] = ACTIONS(3290), + [anon_sym_co_return] = ACTIONS(3290), + [anon_sym_co_yield] = ACTIONS(3290), + [anon_sym_R_DQUOTE] = ACTIONS(3292), + [anon_sym_LR_DQUOTE] = ACTIONS(3292), + [anon_sym_uR_DQUOTE] = ACTIONS(3292), + [anon_sym_UR_DQUOTE] = ACTIONS(3292), + [anon_sym_u8R_DQUOTE] = ACTIONS(3292), + [anon_sym_co_await] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_requires] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), }, [542] = { - [sym_identifier] = ACTIONS(3054), - [aux_sym_preproc_include_token1] = ACTIONS(3054), - [aux_sym_preproc_def_token1] = ACTIONS(3054), - [aux_sym_preproc_if_token1] = ACTIONS(3054), - [aux_sym_preproc_if_token2] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3054), - [aux_sym_preproc_else_token1] = ACTIONS(3054), - [aux_sym_preproc_elif_token1] = ACTIONS(3054), - [sym_preproc_directive] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym___extension__] = ACTIONS(3054), - [anon_sym_typedef] = ACTIONS(3054), - [anon_sym_extern] = ACTIONS(3054), - [anon_sym___attribute__] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3056), - [anon_sym___declspec] = ACTIONS(3054), - [anon_sym___based] = ACTIONS(3054), - [anon_sym___cdecl] = ACTIONS(3054), - [anon_sym___clrcall] = ACTIONS(3054), - [anon_sym___stdcall] = ACTIONS(3054), - [anon_sym___fastcall] = ACTIONS(3054), - [anon_sym___thiscall] = ACTIONS(3054), - [anon_sym___vectorcall] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_signed] = ACTIONS(3054), - [anon_sym_unsigned] = ACTIONS(3054), - [anon_sym_long] = ACTIONS(3054), - [anon_sym_short] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_register] = ACTIONS(3054), - [anon_sym_inline] = ACTIONS(3054), - [anon_sym___inline] = ACTIONS(3054), - [anon_sym___inline__] = ACTIONS(3054), - [anon_sym___forceinline] = ACTIONS(3054), - [anon_sym_thread_local] = ACTIONS(3054), - [anon_sym___thread] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_constexpr] = ACTIONS(3054), - [anon_sym_volatile] = ACTIONS(3054), - [anon_sym_restrict] = ACTIONS(3054), - [anon_sym___restrict__] = ACTIONS(3054), - [anon_sym__Atomic] = ACTIONS(3054), - [anon_sym__Noreturn] = ACTIONS(3054), - [anon_sym_noreturn] = ACTIONS(3054), - [anon_sym_mutable] = ACTIONS(3054), - [anon_sym_constinit] = ACTIONS(3054), - [anon_sym_consteval] = ACTIONS(3054), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_class] = ACTIONS(3054), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_union] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_switch] = ACTIONS(3054), - [anon_sym_case] = ACTIONS(3054), - [anon_sym_default] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_goto] = ACTIONS(3054), - [anon_sym___try] = ACTIONS(3054), - [anon_sym___leave] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3054), - [anon_sym_compl] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_sizeof] = ACTIONS(3054), - [anon_sym___alignof__] = ACTIONS(3054), - [anon_sym___alignof] = ACTIONS(3054), - [anon_sym__alignof] = ACTIONS(3054), - [anon_sym_alignof] = ACTIONS(3054), - [anon_sym__Alignof] = ACTIONS(3054), - [anon_sym_offsetof] = ACTIONS(3054), - [anon_sym__Generic] = ACTIONS(3054), - [anon_sym_asm] = ACTIONS(3054), - [anon_sym___asm__] = ACTIONS(3054), - [sym_number_literal] = ACTIONS(3056), - [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(3056), - [anon_sym_u_DQUOTE] = ACTIONS(3056), - [anon_sym_U_DQUOTE] = ACTIONS(3056), - [anon_sym_u8_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [anon_sym_NULL] = ACTIONS(3054), - [anon_sym_nullptr] = ACTIONS(3054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3054), - [anon_sym_decltype] = ACTIONS(3054), - [anon_sym_virtual] = ACTIONS(3054), - [anon_sym_alignas] = ACTIONS(3054), - [anon_sym_explicit] = ACTIONS(3054), - [anon_sym_typename] = ACTIONS(3054), - [anon_sym_template] = ACTIONS(3054), - [anon_sym_operator] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_delete] = ACTIONS(3054), - [anon_sym_throw] = ACTIONS(3054), - [anon_sym_namespace] = ACTIONS(3054), - [anon_sym_using] = ACTIONS(3054), - [anon_sym_static_assert] = ACTIONS(3054), - [anon_sym_concept] = ACTIONS(3054), - [anon_sym_co_return] = ACTIONS(3054), - [anon_sym_co_yield] = ACTIONS(3054), - [anon_sym_R_DQUOTE] = ACTIONS(3056), - [anon_sym_LR_DQUOTE] = ACTIONS(3056), - [anon_sym_uR_DQUOTE] = ACTIONS(3056), - [anon_sym_UR_DQUOTE] = ACTIONS(3056), - [anon_sym_u8R_DQUOTE] = ACTIONS(3056), - [anon_sym_co_await] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_requires] = ACTIONS(3054), - [sym_this] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3114), + [aux_sym_preproc_include_token1] = ACTIONS(3114), + [aux_sym_preproc_def_token1] = ACTIONS(3114), + [aux_sym_preproc_if_token1] = ACTIONS(3114), + [aux_sym_preproc_if_token2] = ACTIONS(3114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3114), + [aux_sym_preproc_else_token1] = ACTIONS(3114), + [aux_sym_preproc_elif_token1] = ACTIONS(3114), + [sym_preproc_directive] = ACTIONS(3114), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3114), + [anon_sym_PLUS] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym___extension__] = ACTIONS(3114), + [anon_sym_typedef] = ACTIONS(3114), + [anon_sym_extern] = ACTIONS(3114), + [anon_sym___attribute__] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3114), + [anon_sym___based] = ACTIONS(3114), + [anon_sym___cdecl] = ACTIONS(3114), + [anon_sym___clrcall] = ACTIONS(3114), + [anon_sym___stdcall] = ACTIONS(3114), + [anon_sym___fastcall] = ACTIONS(3114), + [anon_sym___thiscall] = ACTIONS(3114), + [anon_sym___vectorcall] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3114), + [anon_sym_unsigned] = ACTIONS(3114), + [anon_sym_long] = ACTIONS(3114), + [anon_sym_short] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_static] = ACTIONS(3114), + [anon_sym_register] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym___inline] = ACTIONS(3114), + [anon_sym___inline__] = ACTIONS(3114), + [anon_sym___forceinline] = ACTIONS(3114), + [anon_sym_thread_local] = ACTIONS(3114), + [anon_sym___thread] = ACTIONS(3114), + [anon_sym_const] = ACTIONS(3114), + [anon_sym_constexpr] = ACTIONS(3114), + [anon_sym_volatile] = ACTIONS(3114), + [anon_sym_restrict] = ACTIONS(3114), + [anon_sym___restrict__] = ACTIONS(3114), + [anon_sym__Atomic] = ACTIONS(3114), + [anon_sym__Noreturn] = ACTIONS(3114), + [anon_sym_noreturn] = ACTIONS(3114), + [anon_sym_mutable] = ACTIONS(3114), + [anon_sym_constinit] = ACTIONS(3114), + [anon_sym_consteval] = ACTIONS(3114), + [sym_primitive_type] = ACTIONS(3114), + [anon_sym_enum] = ACTIONS(3114), + [anon_sym_class] = ACTIONS(3114), + [anon_sym_struct] = ACTIONS(3114), + [anon_sym_union] = ACTIONS(3114), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_switch] = ACTIONS(3114), + [anon_sym_case] = ACTIONS(3114), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_do] = ACTIONS(3114), + [anon_sym_for] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_goto] = ACTIONS(3114), + [anon_sym___try] = ACTIONS(3114), + [anon_sym___leave] = ACTIONS(3114), + [anon_sym_not] = ACTIONS(3114), + [anon_sym_compl] = ACTIONS(3114), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_sizeof] = ACTIONS(3114), + [anon_sym___alignof__] = ACTIONS(3114), + [anon_sym___alignof] = ACTIONS(3114), + [anon_sym__alignof] = ACTIONS(3114), + [anon_sym_alignof] = ACTIONS(3114), + [anon_sym__Alignof] = ACTIONS(3114), + [anon_sym_offsetof] = ACTIONS(3114), + [anon_sym__Generic] = ACTIONS(3114), + [anon_sym_asm] = ACTIONS(3114), + [anon_sym___asm__] = ACTIONS(3114), + [sym_number_literal] = ACTIONS(3116), + [anon_sym_L_SQUOTE] = ACTIONS(3116), + [anon_sym_u_SQUOTE] = ACTIONS(3116), + [anon_sym_U_SQUOTE] = ACTIONS(3116), + [anon_sym_u8_SQUOTE] = ACTIONS(3116), + [anon_sym_SQUOTE] = ACTIONS(3116), + [anon_sym_L_DQUOTE] = ACTIONS(3116), + [anon_sym_u_DQUOTE] = ACTIONS(3116), + [anon_sym_U_DQUOTE] = ACTIONS(3116), + [anon_sym_u8_DQUOTE] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3116), + [sym_true] = ACTIONS(3114), + [sym_false] = ACTIONS(3114), + [anon_sym_NULL] = ACTIONS(3114), + [anon_sym_nullptr] = ACTIONS(3114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3114), + [anon_sym_decltype] = ACTIONS(3114), + [anon_sym_virtual] = ACTIONS(3114), + [anon_sym_alignas] = ACTIONS(3114), + [anon_sym_explicit] = ACTIONS(3114), + [anon_sym_typename] = ACTIONS(3114), + [anon_sym_template] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_delete] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_namespace] = ACTIONS(3114), + [anon_sym_using] = ACTIONS(3114), + [anon_sym_static_assert] = ACTIONS(3114), + [anon_sym_concept] = ACTIONS(3114), + [anon_sym_co_return] = ACTIONS(3114), + [anon_sym_co_yield] = ACTIONS(3114), + [anon_sym_R_DQUOTE] = ACTIONS(3116), + [anon_sym_LR_DQUOTE] = ACTIONS(3116), + [anon_sym_uR_DQUOTE] = ACTIONS(3116), + [anon_sym_UR_DQUOTE] = ACTIONS(3116), + [anon_sym_u8R_DQUOTE] = ACTIONS(3116), + [anon_sym_co_await] = ACTIONS(3114), + [anon_sym_new] = ACTIONS(3114), + [anon_sym_requires] = ACTIONS(3114), + [sym_this] = ACTIONS(3114), }, [543] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4799), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7411), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7743), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [sym_identifier] = ACTIONS(3130), + [aux_sym_preproc_include_token1] = ACTIONS(3130), + [aux_sym_preproc_def_token1] = ACTIONS(3130), + [aux_sym_preproc_if_token1] = ACTIONS(3130), + [aux_sym_preproc_if_token2] = ACTIONS(3130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3130), + [aux_sym_preproc_else_token1] = ACTIONS(3130), + [aux_sym_preproc_elif_token1] = ACTIONS(3130), + [sym_preproc_directive] = ACTIONS(3130), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym___extension__] = ACTIONS(3130), + [anon_sym_typedef] = ACTIONS(3130), + [anon_sym_extern] = ACTIONS(3130), + [anon_sym___attribute__] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3132), + [anon_sym___declspec] = ACTIONS(3130), + [anon_sym___based] = ACTIONS(3130), + [anon_sym___cdecl] = ACTIONS(3130), + [anon_sym___clrcall] = ACTIONS(3130), + [anon_sym___stdcall] = ACTIONS(3130), + [anon_sym___fastcall] = ACTIONS(3130), + [anon_sym___thiscall] = ACTIONS(3130), + [anon_sym___vectorcall] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_signed] = ACTIONS(3130), + [anon_sym_unsigned] = ACTIONS(3130), + [anon_sym_long] = ACTIONS(3130), + [anon_sym_short] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_static] = ACTIONS(3130), + [anon_sym_register] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym___inline] = ACTIONS(3130), + [anon_sym___inline__] = ACTIONS(3130), + [anon_sym___forceinline] = ACTIONS(3130), + [anon_sym_thread_local] = ACTIONS(3130), + [anon_sym___thread] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(3130), + [anon_sym_constexpr] = ACTIONS(3130), + [anon_sym_volatile] = ACTIONS(3130), + [anon_sym_restrict] = ACTIONS(3130), + [anon_sym___restrict__] = ACTIONS(3130), + [anon_sym__Atomic] = ACTIONS(3130), + [anon_sym__Noreturn] = ACTIONS(3130), + [anon_sym_noreturn] = ACTIONS(3130), + [anon_sym_mutable] = ACTIONS(3130), + [anon_sym_constinit] = ACTIONS(3130), + [anon_sym_consteval] = ACTIONS(3130), + [sym_primitive_type] = ACTIONS(3130), + [anon_sym_enum] = ACTIONS(3130), + [anon_sym_class] = ACTIONS(3130), + [anon_sym_struct] = ACTIONS(3130), + [anon_sym_union] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_switch] = ACTIONS(3130), + [anon_sym_case] = ACTIONS(3130), + [anon_sym_default] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_goto] = ACTIONS(3130), + [anon_sym___try] = ACTIONS(3130), + [anon_sym___leave] = ACTIONS(3130), + [anon_sym_not] = ACTIONS(3130), + [anon_sym_compl] = ACTIONS(3130), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_sizeof] = ACTIONS(3130), + [anon_sym___alignof__] = ACTIONS(3130), + [anon_sym___alignof] = ACTIONS(3130), + [anon_sym__alignof] = ACTIONS(3130), + [anon_sym_alignof] = ACTIONS(3130), + [anon_sym__Alignof] = ACTIONS(3130), + [anon_sym_offsetof] = ACTIONS(3130), + [anon_sym__Generic] = ACTIONS(3130), + [anon_sym_asm] = ACTIONS(3130), + [anon_sym___asm__] = ACTIONS(3130), + [sym_number_literal] = ACTIONS(3132), + [anon_sym_L_SQUOTE] = ACTIONS(3132), + [anon_sym_u_SQUOTE] = ACTIONS(3132), + [anon_sym_U_SQUOTE] = ACTIONS(3132), + [anon_sym_u8_SQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_L_DQUOTE] = ACTIONS(3132), + [anon_sym_u_DQUOTE] = ACTIONS(3132), + [anon_sym_U_DQUOTE] = ACTIONS(3132), + [anon_sym_u8_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [sym_true] = ACTIONS(3130), + [sym_false] = ACTIONS(3130), + [anon_sym_NULL] = ACTIONS(3130), + [anon_sym_nullptr] = ACTIONS(3130), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3130), + [anon_sym_decltype] = ACTIONS(3130), + [anon_sym_virtual] = ACTIONS(3130), + [anon_sym_alignas] = ACTIONS(3130), + [anon_sym_explicit] = ACTIONS(3130), + [anon_sym_typename] = ACTIONS(3130), + [anon_sym_template] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_delete] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_namespace] = ACTIONS(3130), + [anon_sym_using] = ACTIONS(3130), + [anon_sym_static_assert] = ACTIONS(3130), + [anon_sym_concept] = ACTIONS(3130), + [anon_sym_co_return] = ACTIONS(3130), + [anon_sym_co_yield] = ACTIONS(3130), + [anon_sym_R_DQUOTE] = ACTIONS(3132), + [anon_sym_LR_DQUOTE] = ACTIONS(3132), + [anon_sym_uR_DQUOTE] = ACTIONS(3132), + [anon_sym_UR_DQUOTE] = ACTIONS(3132), + [anon_sym_u8R_DQUOTE] = ACTIONS(3132), + [anon_sym_co_await] = ACTIONS(3130), + [anon_sym_new] = ACTIONS(3130), + [anon_sym_requires] = ACTIONS(3130), + [sym_this] = ACTIONS(3130), + }, + [544] = { + [sym_identifier] = ACTIONS(3098), + [aux_sym_preproc_include_token1] = ACTIONS(3098), + [aux_sym_preproc_def_token1] = ACTIONS(3098), + [aux_sym_preproc_if_token1] = ACTIONS(3098), + [aux_sym_preproc_if_token2] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), + [aux_sym_preproc_else_token1] = ACTIONS(3098), + [aux_sym_preproc_elif_token1] = ACTIONS(3098), + [sym_preproc_directive] = ACTIONS(3098), + [anon_sym_LPAREN2] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym___extension__] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3098), + [anon_sym_extern] = ACTIONS(3098), + [anon_sym___attribute__] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), + [anon_sym___declspec] = ACTIONS(3098), + [anon_sym___based] = ACTIONS(3098), + [anon_sym___cdecl] = ACTIONS(3098), + [anon_sym___clrcall] = ACTIONS(3098), + [anon_sym___stdcall] = ACTIONS(3098), + [anon_sym___fastcall] = ACTIONS(3098), + [anon_sym___thiscall] = ACTIONS(3098), + [anon_sym___vectorcall] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_signed] = ACTIONS(3098), + [anon_sym_unsigned] = ACTIONS(3098), + [anon_sym_long] = ACTIONS(3098), + [anon_sym_short] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_register] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym___inline] = ACTIONS(3098), + [anon_sym___inline__] = ACTIONS(3098), + [anon_sym___forceinline] = ACTIONS(3098), + [anon_sym_thread_local] = ACTIONS(3098), + [anon_sym___thread] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_constexpr] = ACTIONS(3098), + [anon_sym_volatile] = ACTIONS(3098), + [anon_sym_restrict] = ACTIONS(3098), + [anon_sym___restrict__] = ACTIONS(3098), + [anon_sym__Atomic] = ACTIONS(3098), + [anon_sym__Noreturn] = ACTIONS(3098), + [anon_sym_noreturn] = ACTIONS(3098), + [anon_sym_mutable] = ACTIONS(3098), + [anon_sym_constinit] = ACTIONS(3098), + [anon_sym_consteval] = ACTIONS(3098), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(3098), + [anon_sym_union] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_switch] = ACTIONS(3098), + [anon_sym_case] = ACTIONS(3098), + [anon_sym_default] = ACTIONS(3098), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_do] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_goto] = ACTIONS(3098), + [anon_sym___try] = ACTIONS(3098), + [anon_sym___leave] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(3098), + [anon_sym_compl] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_sizeof] = ACTIONS(3098), + [anon_sym___alignof__] = ACTIONS(3098), + [anon_sym___alignof] = ACTIONS(3098), + [anon_sym__alignof] = ACTIONS(3098), + [anon_sym_alignof] = ACTIONS(3098), + [anon_sym__Alignof] = ACTIONS(3098), + [anon_sym_offsetof] = ACTIONS(3098), + [anon_sym__Generic] = ACTIONS(3098), + [anon_sym_asm] = ACTIONS(3098), + [anon_sym___asm__] = ACTIONS(3098), + [sym_number_literal] = ACTIONS(3100), + [anon_sym_L_SQUOTE] = ACTIONS(3100), + [anon_sym_u_SQUOTE] = ACTIONS(3100), + [anon_sym_U_SQUOTE] = ACTIONS(3100), + [anon_sym_u8_SQUOTE] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3100), + [anon_sym_L_DQUOTE] = ACTIONS(3100), + [anon_sym_u_DQUOTE] = ACTIONS(3100), + [anon_sym_U_DQUOTE] = ACTIONS(3100), + [anon_sym_u8_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE] = ACTIONS(3100), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [anon_sym_NULL] = ACTIONS(3098), + [anon_sym_nullptr] = ACTIONS(3098), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3098), + [anon_sym_decltype] = ACTIONS(3098), + [anon_sym_virtual] = ACTIONS(3098), + [anon_sym_alignas] = ACTIONS(3098), + [anon_sym_explicit] = ACTIONS(3098), + [anon_sym_typename] = ACTIONS(3098), + [anon_sym_template] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_static_assert] = ACTIONS(3098), + [anon_sym_concept] = ACTIONS(3098), + [anon_sym_co_return] = ACTIONS(3098), + [anon_sym_co_yield] = ACTIONS(3098), + [anon_sym_R_DQUOTE] = ACTIONS(3100), + [anon_sym_LR_DQUOTE] = ACTIONS(3100), + [anon_sym_uR_DQUOTE] = ACTIONS(3100), + [anon_sym_UR_DQUOTE] = ACTIONS(3100), + [anon_sym_u8R_DQUOTE] = ACTIONS(3100), + [anon_sym_co_await] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_requires] = ACTIONS(3098), + [sym_this] = ACTIONS(3098), + }, + [545] = { + [sym_identifier] = ACTIONS(3110), + [aux_sym_preproc_include_token1] = ACTIONS(3110), + [aux_sym_preproc_def_token1] = ACTIONS(3110), + [aux_sym_preproc_if_token1] = ACTIONS(3110), + [aux_sym_preproc_if_token2] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3110), + [aux_sym_preproc_else_token1] = ACTIONS(3110), + [aux_sym_preproc_elif_token1] = ACTIONS(3110), + [sym_preproc_directive] = ACTIONS(3110), + [anon_sym_LPAREN2] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym___extension__] = ACTIONS(3110), + [anon_sym_typedef] = ACTIONS(3110), + [anon_sym_extern] = ACTIONS(3110), + [anon_sym___attribute__] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3112), + [anon_sym___declspec] = ACTIONS(3110), + [anon_sym___based] = ACTIONS(3110), + [anon_sym___cdecl] = ACTIONS(3110), + [anon_sym___clrcall] = ACTIONS(3110), + [anon_sym___stdcall] = ACTIONS(3110), + [anon_sym___fastcall] = ACTIONS(3110), + [anon_sym___thiscall] = ACTIONS(3110), + [anon_sym___vectorcall] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_signed] = ACTIONS(3110), + [anon_sym_unsigned] = ACTIONS(3110), + [anon_sym_long] = ACTIONS(3110), + [anon_sym_short] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_static] = ACTIONS(3110), + [anon_sym_register] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym___inline] = ACTIONS(3110), + [anon_sym___inline__] = ACTIONS(3110), + [anon_sym___forceinline] = ACTIONS(3110), + [anon_sym_thread_local] = ACTIONS(3110), + [anon_sym___thread] = ACTIONS(3110), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_constexpr] = ACTIONS(3110), + [anon_sym_volatile] = ACTIONS(3110), + [anon_sym_restrict] = ACTIONS(3110), + [anon_sym___restrict__] = ACTIONS(3110), + [anon_sym__Atomic] = ACTIONS(3110), + [anon_sym__Noreturn] = ACTIONS(3110), + [anon_sym_noreturn] = ACTIONS(3110), + [anon_sym_mutable] = ACTIONS(3110), + [anon_sym_constinit] = ACTIONS(3110), + [anon_sym_consteval] = ACTIONS(3110), + [sym_primitive_type] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_class] = ACTIONS(3110), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_union] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_switch] = ACTIONS(3110), + [anon_sym_case] = ACTIONS(3110), + [anon_sym_default] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_do] = ACTIONS(3110), + [anon_sym_for] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_goto] = ACTIONS(3110), + [anon_sym___try] = ACTIONS(3110), + [anon_sym___leave] = ACTIONS(3110), + [anon_sym_not] = ACTIONS(3110), + [anon_sym_compl] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_sizeof] = ACTIONS(3110), + [anon_sym___alignof__] = ACTIONS(3110), + [anon_sym___alignof] = ACTIONS(3110), + [anon_sym__alignof] = ACTIONS(3110), + [anon_sym_alignof] = ACTIONS(3110), + [anon_sym__Alignof] = ACTIONS(3110), + [anon_sym_offsetof] = ACTIONS(3110), + [anon_sym__Generic] = ACTIONS(3110), + [anon_sym_asm] = ACTIONS(3110), + [anon_sym___asm__] = ACTIONS(3110), + [sym_number_literal] = ACTIONS(3112), + [anon_sym_L_SQUOTE] = ACTIONS(3112), + [anon_sym_u_SQUOTE] = ACTIONS(3112), + [anon_sym_U_SQUOTE] = ACTIONS(3112), + [anon_sym_u8_SQUOTE] = ACTIONS(3112), + [anon_sym_SQUOTE] = ACTIONS(3112), + [anon_sym_L_DQUOTE] = ACTIONS(3112), + [anon_sym_u_DQUOTE] = ACTIONS(3112), + [anon_sym_U_DQUOTE] = ACTIONS(3112), + [anon_sym_u8_DQUOTE] = ACTIONS(3112), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [anon_sym_NULL] = ACTIONS(3110), + [anon_sym_nullptr] = ACTIONS(3110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3110), + [anon_sym_decltype] = ACTIONS(3110), + [anon_sym_virtual] = ACTIONS(3110), + [anon_sym_alignas] = ACTIONS(3110), + [anon_sym_explicit] = ACTIONS(3110), + [anon_sym_typename] = ACTIONS(3110), + [anon_sym_template] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_delete] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_namespace] = ACTIONS(3110), + [anon_sym_using] = ACTIONS(3110), + [anon_sym_static_assert] = ACTIONS(3110), + [anon_sym_concept] = ACTIONS(3110), + [anon_sym_co_return] = ACTIONS(3110), + [anon_sym_co_yield] = ACTIONS(3110), + [anon_sym_R_DQUOTE] = ACTIONS(3112), + [anon_sym_LR_DQUOTE] = ACTIONS(3112), + [anon_sym_uR_DQUOTE] = ACTIONS(3112), + [anon_sym_UR_DQUOTE] = ACTIONS(3112), + [anon_sym_u8R_DQUOTE] = ACTIONS(3112), + [anon_sym_co_await] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3110), + [anon_sym_requires] = ACTIONS(3110), + [sym_this] = ACTIONS(3110), + }, + [546] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4847), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7450), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7669), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -165857,933 +166590,799 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3402), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [544] = { - [sym_identifier] = ACTIONS(3235), - [aux_sym_preproc_include_token1] = ACTIONS(3235), - [aux_sym_preproc_def_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token2] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3235), - [aux_sym_preproc_else_token1] = ACTIONS(3235), - [aux_sym_preproc_elif_token1] = ACTIONS(3235), - [sym_preproc_directive] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym___based] = ACTIONS(3235), - [anon_sym___cdecl] = ACTIONS(3235), - [anon_sym___clrcall] = ACTIONS(3235), - [anon_sym___stdcall] = ACTIONS(3235), - [anon_sym___fastcall] = ACTIONS(3235), - [anon_sym___thiscall] = ACTIONS(3235), - [anon_sym___vectorcall] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym___try] = ACTIONS(3235), - [anon_sym___leave] = ACTIONS(3235), - [anon_sym_not] = ACTIONS(3235), - [anon_sym_compl] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3235), - [anon_sym___alignof__] = ACTIONS(3235), - [anon_sym___alignof] = ACTIONS(3235), - [anon_sym__alignof] = ACTIONS(3235), - [anon_sym_alignof] = ACTIONS(3235), - [anon_sym__Alignof] = ACTIONS(3235), - [anon_sym_offsetof] = ACTIONS(3235), - [anon_sym__Generic] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym___asm__] = ACTIONS(3235), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_L_SQUOTE] = ACTIONS(3237), - [anon_sym_u_SQUOTE] = ACTIONS(3237), - [anon_sym_U_SQUOTE] = ACTIONS(3237), - [anon_sym_u8_SQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_L_DQUOTE] = ACTIONS(3237), - [anon_sym_u_DQUOTE] = ACTIONS(3237), - [anon_sym_U_DQUOTE] = ACTIONS(3237), - [anon_sym_u8_DQUOTE] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [anon_sym_NULL] = ACTIONS(3235), - [anon_sym_nullptr] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_operator] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_static_assert] = ACTIONS(3235), - [anon_sym_concept] = ACTIONS(3235), - [anon_sym_co_return] = ACTIONS(3235), - [anon_sym_co_yield] = ACTIONS(3235), - [anon_sym_R_DQUOTE] = ACTIONS(3237), - [anon_sym_LR_DQUOTE] = ACTIONS(3237), - [anon_sym_uR_DQUOTE] = ACTIONS(3237), - [anon_sym_UR_DQUOTE] = ACTIONS(3237), - [anon_sym_u8R_DQUOTE] = ACTIONS(3237), - [anon_sym_co_await] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_requires] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - }, - [545] = { - [sym_identifier] = ACTIONS(3066), - [aux_sym_preproc_include_token1] = ACTIONS(3066), - [aux_sym_preproc_def_token1] = ACTIONS(3066), - [aux_sym_preproc_if_token1] = ACTIONS(3066), - [aux_sym_preproc_if_token2] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3066), - [aux_sym_preproc_else_token1] = ACTIONS(3066), - [aux_sym_preproc_elif_token1] = ACTIONS(3066), - [sym_preproc_directive] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym___extension__] = ACTIONS(3066), - [anon_sym_typedef] = ACTIONS(3066), - [anon_sym_extern] = ACTIONS(3066), - [anon_sym___attribute__] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3068), - [anon_sym___declspec] = ACTIONS(3066), - [anon_sym___based] = ACTIONS(3066), - [anon_sym___cdecl] = ACTIONS(3066), - [anon_sym___clrcall] = ACTIONS(3066), - [anon_sym___stdcall] = ACTIONS(3066), - [anon_sym___fastcall] = ACTIONS(3066), - [anon_sym___thiscall] = ACTIONS(3066), - [anon_sym___vectorcall] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_signed] = ACTIONS(3066), - [anon_sym_unsigned] = ACTIONS(3066), - [anon_sym_long] = ACTIONS(3066), - [anon_sym_short] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_register] = ACTIONS(3066), - [anon_sym_inline] = ACTIONS(3066), - [anon_sym___inline] = ACTIONS(3066), - [anon_sym___inline__] = ACTIONS(3066), - [anon_sym___forceinline] = ACTIONS(3066), - [anon_sym_thread_local] = ACTIONS(3066), - [anon_sym___thread] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_constexpr] = ACTIONS(3066), - [anon_sym_volatile] = ACTIONS(3066), - [anon_sym_restrict] = ACTIONS(3066), - [anon_sym___restrict__] = ACTIONS(3066), - [anon_sym__Atomic] = ACTIONS(3066), - [anon_sym__Noreturn] = ACTIONS(3066), - [anon_sym_noreturn] = ACTIONS(3066), - [anon_sym_mutable] = ACTIONS(3066), - [anon_sym_constinit] = ACTIONS(3066), - [anon_sym_consteval] = ACTIONS(3066), - [sym_primitive_type] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_union] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_goto] = ACTIONS(3066), - [anon_sym___try] = ACTIONS(3066), - [anon_sym___leave] = ACTIONS(3066), - [anon_sym_not] = ACTIONS(3066), - [anon_sym_compl] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_sizeof] = ACTIONS(3066), - [anon_sym___alignof__] = ACTIONS(3066), - [anon_sym___alignof] = ACTIONS(3066), - [anon_sym__alignof] = ACTIONS(3066), - [anon_sym_alignof] = ACTIONS(3066), - [anon_sym__Alignof] = ACTIONS(3066), - [anon_sym_offsetof] = ACTIONS(3066), - [anon_sym__Generic] = ACTIONS(3066), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3068), - [anon_sym_u_SQUOTE] = ACTIONS(3068), - [anon_sym_U_SQUOTE] = ACTIONS(3068), - [anon_sym_u8_SQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_L_DQUOTE] = ACTIONS(3068), - [anon_sym_u_DQUOTE] = ACTIONS(3068), - [anon_sym_U_DQUOTE] = ACTIONS(3068), - [anon_sym_u8_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [anon_sym_NULL] = ACTIONS(3066), - [anon_sym_nullptr] = ACTIONS(3066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3066), - [anon_sym_decltype] = ACTIONS(3066), - [anon_sym_virtual] = ACTIONS(3066), - [anon_sym_alignas] = ACTIONS(3066), - [anon_sym_explicit] = ACTIONS(3066), - [anon_sym_typename] = ACTIONS(3066), - [anon_sym_template] = ACTIONS(3066), - [anon_sym_operator] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_static_assert] = ACTIONS(3066), - [anon_sym_concept] = ACTIONS(3066), - [anon_sym_co_return] = ACTIONS(3066), - [anon_sym_co_yield] = 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(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_requires] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), - }, - [546] = { - [sym_identifier] = ACTIONS(3239), - [aux_sym_preproc_include_token1] = ACTIONS(3239), - [aux_sym_preproc_def_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token2] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), - [aux_sym_preproc_else_token1] = ACTIONS(3239), - [aux_sym_preproc_elif_token1] = ACTIONS(3239), - [sym_preproc_directive] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_AMP_AMP] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym___extension__] = ACTIONS(3239), - [anon_sym_typedef] = ACTIONS(3239), - [anon_sym_extern] = ACTIONS(3239), - [anon_sym___attribute__] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3241), - [anon_sym___declspec] = ACTIONS(3239), - [anon_sym___based] = ACTIONS(3239), - [anon_sym___cdecl] = ACTIONS(3239), - [anon_sym___clrcall] = ACTIONS(3239), - [anon_sym___stdcall] = ACTIONS(3239), - [anon_sym___fastcall] = ACTIONS(3239), - [anon_sym___thiscall] = ACTIONS(3239), - [anon_sym___vectorcall] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_signed] = ACTIONS(3239), - [anon_sym_unsigned] = ACTIONS(3239), - [anon_sym_long] = ACTIONS(3239), - [anon_sym_short] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_register] = ACTIONS(3239), - [anon_sym_inline] = ACTIONS(3239), - [anon_sym___inline] = ACTIONS(3239), - [anon_sym___inline__] = ACTIONS(3239), - [anon_sym___forceinline] = ACTIONS(3239), - [anon_sym_thread_local] = ACTIONS(3239), - [anon_sym___thread] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_constexpr] = ACTIONS(3239), - [anon_sym_volatile] = ACTIONS(3239), - [anon_sym_restrict] = ACTIONS(3239), - [anon_sym___restrict__] = ACTIONS(3239), - [anon_sym__Atomic] = ACTIONS(3239), - [anon_sym__Noreturn] = ACTIONS(3239), - [anon_sym_noreturn] = ACTIONS(3239), - [anon_sym_mutable] = ACTIONS(3239), - [anon_sym_constinit] = ACTIONS(3239), - [anon_sym_consteval] = ACTIONS(3239), - [sym_primitive_type] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_case] = ACTIONS(3239), - [anon_sym_default] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_goto] = ACTIONS(3239), - [anon_sym___try] = ACTIONS(3239), - [anon_sym___leave] = ACTIONS(3239), - [anon_sym_not] = ACTIONS(3239), - [anon_sym_compl] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_sizeof] = ACTIONS(3239), - [anon_sym___alignof__] = ACTIONS(3239), - [anon_sym___alignof] = ACTIONS(3239), - [anon_sym__alignof] = ACTIONS(3239), - [anon_sym_alignof] = ACTIONS(3239), - [anon_sym__Alignof] = ACTIONS(3239), - [anon_sym_offsetof] = ACTIONS(3239), - [anon_sym__Generic] = ACTIONS(3239), - [anon_sym_asm] = ACTIONS(3239), - [anon_sym___asm__] = ACTIONS(3239), - [sym_number_literal] = ACTIONS(3241), - [anon_sym_L_SQUOTE] = ACTIONS(3241), - [anon_sym_u_SQUOTE] = ACTIONS(3241), - [anon_sym_U_SQUOTE] = ACTIONS(3241), - [anon_sym_u8_SQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_L_DQUOTE] = ACTIONS(3241), - [anon_sym_u_DQUOTE] = ACTIONS(3241), - [anon_sym_U_DQUOTE] = ACTIONS(3241), - [anon_sym_u8_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [anon_sym_NULL] = ACTIONS(3239), - [anon_sym_nullptr] = ACTIONS(3239), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3239), - [anon_sym_decltype] = ACTIONS(3239), - [anon_sym_virtual] = ACTIONS(3239), - [anon_sym_alignas] = ACTIONS(3239), - [anon_sym_explicit] = ACTIONS(3239), - [anon_sym_typename] = ACTIONS(3239), - [anon_sym_template] = ACTIONS(3239), - [anon_sym_operator] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_delete] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_static_assert] = ACTIONS(3239), - [anon_sym_concept] = ACTIONS(3239), - [anon_sym_co_return] = ACTIONS(3239), - [anon_sym_co_yield] = ACTIONS(3239), - [anon_sym_R_DQUOTE] = ACTIONS(3241), - [anon_sym_LR_DQUOTE] = ACTIONS(3241), - [anon_sym_uR_DQUOTE] = ACTIONS(3241), - [anon_sym_UR_DQUOTE] = ACTIONS(3241), - [anon_sym_u8R_DQUOTE] = ACTIONS(3241), - [anon_sym_co_await] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_requires] = ACTIONS(3239), - [sym_this] = ACTIONS(3239), + [anon_sym_GT2] = ACTIONS(3416), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, [547] = { - [sym_identifier] = ACTIONS(3274), - [aux_sym_preproc_include_token1] = ACTIONS(3274), - [aux_sym_preproc_def_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token2] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [aux_sym_preproc_else_token1] = ACTIONS(3274), - [aux_sym_preproc_elif_token1] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym___extension__] = ACTIONS(3274), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym___attribute__] = ACTIONS(3274), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), - [anon_sym___declspec] = ACTIONS(3274), - [anon_sym___based] = ACTIONS(3274), - [anon_sym___cdecl] = ACTIONS(3274), - [anon_sym___clrcall] = ACTIONS(3274), - [anon_sym___stdcall] = ACTIONS(3274), - [anon_sym___fastcall] = ACTIONS(3274), - [anon_sym___thiscall] = ACTIONS(3274), - [anon_sym___vectorcall] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_signed] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym___inline] = ACTIONS(3274), - [anon_sym___inline__] = ACTIONS(3274), - [anon_sym___forceinline] = ACTIONS(3274), - [anon_sym_thread_local] = ACTIONS(3274), - [anon_sym___thread] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_constexpr] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym___restrict__] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym__Noreturn] = ACTIONS(3274), - [anon_sym_noreturn] = ACTIONS(3274), - [anon_sym_mutable] = ACTIONS(3274), - [anon_sym_constinit] = ACTIONS(3274), - [anon_sym_consteval] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym___try] = ACTIONS(3274), - [anon_sym___leave] = ACTIONS(3274), - [anon_sym_not] = ACTIONS(3274), - [anon_sym_compl] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_sizeof] = ACTIONS(3274), - [anon_sym___alignof__] = ACTIONS(3274), - [anon_sym___alignof] = ACTIONS(3274), - [anon_sym__alignof] = ACTIONS(3274), - [anon_sym_alignof] = ACTIONS(3274), - [anon_sym__Alignof] = ACTIONS(3274), - [anon_sym_offsetof] = ACTIONS(3274), - [anon_sym__Generic] = ACTIONS(3274), - [anon_sym_asm] = ACTIONS(3274), - [anon_sym___asm__] = ACTIONS(3274), - [sym_number_literal] = ACTIONS(3276), - [anon_sym_L_SQUOTE] = ACTIONS(3276), - [anon_sym_u_SQUOTE] = ACTIONS(3276), - [anon_sym_U_SQUOTE] = ACTIONS(3276), - [anon_sym_u8_SQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_L_DQUOTE] = ACTIONS(3276), - [anon_sym_u_DQUOTE] = ACTIONS(3276), - [anon_sym_U_DQUOTE] = ACTIONS(3276), - [anon_sym_u8_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [anon_sym_NULL] = ACTIONS(3274), - [anon_sym_nullptr] = ACTIONS(3274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3274), - [anon_sym_decltype] = ACTIONS(3274), - [anon_sym_virtual] = ACTIONS(3274), - [anon_sym_alignas] = ACTIONS(3274), - [anon_sym_explicit] = ACTIONS(3274), - [anon_sym_typename] = ACTIONS(3274), - [anon_sym_template] = ACTIONS(3274), - [anon_sym_operator] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_static_assert] = ACTIONS(3274), - [anon_sym_concept] = ACTIONS(3274), - [anon_sym_co_return] = ACTIONS(3274), - [anon_sym_co_yield] = ACTIONS(3274), - [anon_sym_R_DQUOTE] = ACTIONS(3276), - [anon_sym_LR_DQUOTE] = ACTIONS(3276), - [anon_sym_uR_DQUOTE] = ACTIONS(3276), - [anon_sym_UR_DQUOTE] = ACTIONS(3276), - [anon_sym_u8R_DQUOTE] = ACTIONS(3276), - [anon_sym_co_await] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_requires] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3122), + [aux_sym_preproc_include_token1] = ACTIONS(3122), + [aux_sym_preproc_def_token1] = ACTIONS(3122), + [aux_sym_preproc_if_token1] = ACTIONS(3122), + [aux_sym_preproc_if_token2] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3122), + [aux_sym_preproc_else_token1] = ACTIONS(3122), + [aux_sym_preproc_elif_token1] = ACTIONS(3122), + [sym_preproc_directive] = ACTIONS(3122), + [anon_sym_LPAREN2] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym___extension__] = ACTIONS(3122), + [anon_sym_typedef] = ACTIONS(3122), + [anon_sym_extern] = ACTIONS(3122), + [anon_sym___attribute__] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3124), + [anon_sym___declspec] = ACTIONS(3122), + [anon_sym___based] = ACTIONS(3122), + [anon_sym___cdecl] = ACTIONS(3122), + [anon_sym___clrcall] = ACTIONS(3122), + [anon_sym___stdcall] = ACTIONS(3122), + [anon_sym___fastcall] = ACTIONS(3122), + [anon_sym___thiscall] = ACTIONS(3122), + [anon_sym___vectorcall] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_signed] = ACTIONS(3122), + [anon_sym_unsigned] = ACTIONS(3122), + [anon_sym_long] = ACTIONS(3122), + [anon_sym_short] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_register] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym___inline] = ACTIONS(3122), + [anon_sym___inline__] = ACTIONS(3122), + [anon_sym___forceinline] = ACTIONS(3122), + [anon_sym_thread_local] = ACTIONS(3122), + [anon_sym___thread] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym___restrict__] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym__Noreturn] = ACTIONS(3122), + [anon_sym_noreturn] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_union] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_goto] = ACTIONS(3122), + [anon_sym___try] = ACTIONS(3122), + [anon_sym___leave] = ACTIONS(3122), + [anon_sym_not] = ACTIONS(3122), + [anon_sym_compl] = ACTIONS(3122), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_sizeof] = ACTIONS(3122), + [anon_sym___alignof__] = ACTIONS(3122), + [anon_sym___alignof] = ACTIONS(3122), + [anon_sym__alignof] = ACTIONS(3122), + [anon_sym_alignof] = ACTIONS(3122), + [anon_sym__Alignof] = ACTIONS(3122), + [anon_sym_offsetof] = ACTIONS(3122), + [anon_sym__Generic] = ACTIONS(3122), + [anon_sym_asm] = ACTIONS(3122), + [anon_sym___asm__] = ACTIONS(3122), + [sym_number_literal] = ACTIONS(3124), + [anon_sym_L_SQUOTE] = ACTIONS(3124), + [anon_sym_u_SQUOTE] = ACTIONS(3124), + [anon_sym_U_SQUOTE] = ACTIONS(3124), + [anon_sym_u8_SQUOTE] = ACTIONS(3124), + [anon_sym_SQUOTE] = ACTIONS(3124), + [anon_sym_L_DQUOTE] = ACTIONS(3124), + [anon_sym_u_DQUOTE] = ACTIONS(3124), + [anon_sym_U_DQUOTE] = ACTIONS(3124), + [anon_sym_u8_DQUOTE] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [anon_sym_NULL] = ACTIONS(3122), + [anon_sym_nullptr] = ACTIONS(3122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3122), + [anon_sym_decltype] = ACTIONS(3122), + [anon_sym_virtual] = ACTIONS(3122), + [anon_sym_alignas] = ACTIONS(3122), + [anon_sym_explicit] = ACTIONS(3122), + [anon_sym_typename] = ACTIONS(3122), + [anon_sym_template] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_using] = ACTIONS(3122), + [anon_sym_static_assert] = ACTIONS(3122), + [anon_sym_concept] = ACTIONS(3122), + [anon_sym_co_return] = ACTIONS(3122), + [anon_sym_co_yield] = ACTIONS(3122), + [anon_sym_R_DQUOTE] = ACTIONS(3124), + [anon_sym_LR_DQUOTE] = ACTIONS(3124), + [anon_sym_uR_DQUOTE] = ACTIONS(3124), + [anon_sym_UR_DQUOTE] = ACTIONS(3124), + [anon_sym_u8R_DQUOTE] = ACTIONS(3124), + [anon_sym_co_await] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_requires] = ACTIONS(3122), + [sym_this] = ACTIONS(3122), }, [548] = { - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_include_token1] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token2] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [aux_sym_preproc_else_token1] = ACTIONS(2989), - [aux_sym_preproc_elif_token1] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym___cdecl] = ACTIONS(2989), - [anon_sym___clrcall] = ACTIONS(2989), - [anon_sym___stdcall] = ACTIONS(2989), - [anon_sym___fastcall] = ACTIONS(2989), - [anon_sym___thiscall] = ACTIONS(2989), - [anon_sym___vectorcall] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_case] = ACTIONS(2989), - [anon_sym_default] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_do] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym___try] = ACTIONS(2989), - [anon_sym___leave] = ACTIONS(2989), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_compl] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_sizeof] = ACTIONS(2989), - [anon_sym___alignof__] = ACTIONS(2989), - [anon_sym___alignof] = ACTIONS(2989), - [anon_sym__alignof] = ACTIONS(2989), - [anon_sym_alignof] = ACTIONS(2989), - [anon_sym__Alignof] = ACTIONS(2989), - [anon_sym_offsetof] = ACTIONS(2989), - [anon_sym__Generic] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym___asm__] = ACTIONS(2989), - [sym_number_literal] = ACTIONS(2991), - [anon_sym_L_SQUOTE] = ACTIONS(2991), - [anon_sym_u_SQUOTE] = ACTIONS(2991), - [anon_sym_U_SQUOTE] = ACTIONS(2991), - [anon_sym_u8_SQUOTE] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [anon_sym_L_DQUOTE] = ACTIONS(2991), - [anon_sym_u_DQUOTE] = ACTIONS(2991), - [anon_sym_U_DQUOTE] = ACTIONS(2991), - [anon_sym_u8_DQUOTE] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [anon_sym_NULL] = ACTIONS(2989), - [anon_sym_nullptr] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_delete] = ACTIONS(2989), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - [anon_sym_concept] = ACTIONS(2989), - [anon_sym_co_return] = ACTIONS(2989), - [anon_sym_co_yield] = ACTIONS(2989), - [anon_sym_R_DQUOTE] = ACTIONS(2991), - [anon_sym_LR_DQUOTE] = ACTIONS(2991), - [anon_sym_uR_DQUOTE] = ACTIONS(2991), - [anon_sym_UR_DQUOTE] = ACTIONS(2991), - [anon_sym_u8R_DQUOTE] = ACTIONS(2991), - [anon_sym_co_await] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_requires] = ACTIONS(2989), - [sym_this] = ACTIONS(2989), + [sym_identifier] = ACTIONS(3126), + [aux_sym_preproc_include_token1] = ACTIONS(3126), + [aux_sym_preproc_def_token1] = ACTIONS(3126), + [aux_sym_preproc_if_token1] = ACTIONS(3126), + [aux_sym_preproc_if_token2] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3126), + [aux_sym_preproc_else_token1] = ACTIONS(3126), + [aux_sym_preproc_elif_token1] = ACTIONS(3126), + [sym_preproc_directive] = ACTIONS(3126), + [anon_sym_LPAREN2] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_AMP_AMP] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym_typedef] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3128), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym___based] = ACTIONS(3126), + [anon_sym___cdecl] = ACTIONS(3126), + [anon_sym___clrcall] = ACTIONS(3126), + [anon_sym___stdcall] = ACTIONS(3126), + [anon_sym___fastcall] = ACTIONS(3126), + [anon_sym___thiscall] = ACTIONS(3126), + [anon_sym___vectorcall] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_case] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_goto] = ACTIONS(3126), + [anon_sym___try] = ACTIONS(3126), + [anon_sym___leave] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(3126), + [anon_sym_compl] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_sizeof] = ACTIONS(3126), + [anon_sym___alignof__] = ACTIONS(3126), + [anon_sym___alignof] = ACTIONS(3126), + [anon_sym__alignof] = ACTIONS(3126), + [anon_sym_alignof] = ACTIONS(3126), + [anon_sym__Alignof] = ACTIONS(3126), + [anon_sym_offsetof] = ACTIONS(3126), + [anon_sym__Generic] = ACTIONS(3126), + [anon_sym_asm] = ACTIONS(3126), + [anon_sym___asm__] = ACTIONS(3126), + [sym_number_literal] = ACTIONS(3128), + [anon_sym_L_SQUOTE] = ACTIONS(3128), + [anon_sym_u_SQUOTE] = ACTIONS(3128), + [anon_sym_U_SQUOTE] = ACTIONS(3128), + [anon_sym_u8_SQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_L_DQUOTE] = ACTIONS(3128), + [anon_sym_u_DQUOTE] = ACTIONS(3128), + [anon_sym_U_DQUOTE] = ACTIONS(3128), + [anon_sym_u8_DQUOTE] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [anon_sym_NULL] = ACTIONS(3126), + [anon_sym_nullptr] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym_explicit] = ACTIONS(3126), + [anon_sym_typename] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_static_assert] = ACTIONS(3126), + [anon_sym_concept] = ACTIONS(3126), + [anon_sym_co_return] = ACTIONS(3126), + [anon_sym_co_yield] = ACTIONS(3126), + [anon_sym_R_DQUOTE] = ACTIONS(3128), + [anon_sym_LR_DQUOTE] = ACTIONS(3128), + [anon_sym_uR_DQUOTE] = ACTIONS(3128), + [anon_sym_UR_DQUOTE] = ACTIONS(3128), + [anon_sym_u8R_DQUOTE] = ACTIONS(3128), + [anon_sym_co_await] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + [sym_this] = ACTIONS(3126), }, [549] = { - [sym_identifier] = ACTIONS(3259), - [aux_sym_preproc_include_token1] = ACTIONS(3259), - [aux_sym_preproc_def_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token2] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3259), - [aux_sym_preproc_else_token1] = ACTIONS(3259), - [aux_sym_preproc_elif_token1] = ACTIONS(3259), - [sym_preproc_directive] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3261), - [anon_sym___extension__] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3259), - [anon_sym_extern] = ACTIONS(3259), - [anon_sym___attribute__] = ACTIONS(3259), - [anon_sym_COLON_COLON] = ACTIONS(3261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3261), - [anon_sym___declspec] = ACTIONS(3259), - [anon_sym___based] = ACTIONS(3259), - [anon_sym___cdecl] = ACTIONS(3259), - [anon_sym___clrcall] = ACTIONS(3259), - [anon_sym___stdcall] = ACTIONS(3259), - [anon_sym___fastcall] = ACTIONS(3259), - [anon_sym___thiscall] = ACTIONS(3259), - [anon_sym___vectorcall] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_signed] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_register] = ACTIONS(3259), - [anon_sym_inline] = ACTIONS(3259), - [anon_sym___inline] = ACTIONS(3259), - [anon_sym___inline__] = ACTIONS(3259), - [anon_sym___forceinline] = ACTIONS(3259), - [anon_sym_thread_local] = ACTIONS(3259), - [anon_sym___thread] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_constexpr] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym___restrict__] = ACTIONS(3259), - [anon_sym__Atomic] = ACTIONS(3259), - [anon_sym__Noreturn] = ACTIONS(3259), - [anon_sym_noreturn] = ACTIONS(3259), - [anon_sym_mutable] = ACTIONS(3259), - [anon_sym_constinit] = ACTIONS(3259), - [anon_sym_consteval] = ACTIONS(3259), - [sym_primitive_type] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym___try] = ACTIONS(3259), - [anon_sym___leave] = ACTIONS(3259), - [anon_sym_not] = ACTIONS(3259), - [anon_sym_compl] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3259), - [anon_sym___alignof__] = ACTIONS(3259), - [anon_sym___alignof] = ACTIONS(3259), - [anon_sym__alignof] = ACTIONS(3259), - [anon_sym_alignof] = ACTIONS(3259), - [anon_sym__Alignof] = ACTIONS(3259), - [anon_sym_offsetof] = ACTIONS(3259), - [anon_sym__Generic] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym___asm__] = ACTIONS(3259), - [sym_number_literal] = ACTIONS(3261), - [anon_sym_L_SQUOTE] = ACTIONS(3261), - [anon_sym_u_SQUOTE] = ACTIONS(3261), - [anon_sym_U_SQUOTE] = ACTIONS(3261), - [anon_sym_u8_SQUOTE] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3261), - [anon_sym_L_DQUOTE] = ACTIONS(3261), - [anon_sym_u_DQUOTE] = ACTIONS(3261), - [anon_sym_U_DQUOTE] = ACTIONS(3261), - [anon_sym_u8_DQUOTE] = ACTIONS(3261), - [anon_sym_DQUOTE] = ACTIONS(3261), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [anon_sym_NULL] = ACTIONS(3259), - [anon_sym_nullptr] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3259), - [anon_sym_decltype] = ACTIONS(3259), - [anon_sym_virtual] = ACTIONS(3259), - [anon_sym_alignas] = ACTIONS(3259), - [anon_sym_explicit] = ACTIONS(3259), - [anon_sym_typename] = ACTIONS(3259), - [anon_sym_template] = ACTIONS(3259), - [anon_sym_operator] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_static_assert] = ACTIONS(3259), - [anon_sym_concept] = ACTIONS(3259), - [anon_sym_co_return] = ACTIONS(3259), - [anon_sym_co_yield] = ACTIONS(3259), - [anon_sym_R_DQUOTE] = ACTIONS(3261), - [anon_sym_LR_DQUOTE] = ACTIONS(3261), - [anon_sym_uR_DQUOTE] = ACTIONS(3261), - [anon_sym_UR_DQUOTE] = ACTIONS(3261), - [anon_sym_u8R_DQUOTE] = ACTIONS(3261), - [anon_sym_co_await] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_requires] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), + [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), + [sym_preproc_directive] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_AMP_AMP] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), + [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(3157), + [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_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = 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_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(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [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_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3157), + [anon_sym_L_SQUOTE] = ACTIONS(3157), + [anon_sym_u_SQUOTE] = ACTIONS(3157), + [anon_sym_U_SQUOTE] = ACTIONS(3157), + [anon_sym_u8_SQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_L_DQUOTE] = ACTIONS(3157), + [anon_sym_u_DQUOTE] = ACTIONS(3157), + [anon_sym_U_DQUOTE] = ACTIONS(3157), + [anon_sym_u8_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [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_virtual] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_typename] = 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_using] = 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_R_DQUOTE] = ACTIONS(3157), + [anon_sym_LR_DQUOTE] = ACTIONS(3157), + [anon_sym_uR_DQUOTE] = ACTIONS(3157), + [anon_sym_UR_DQUOTE] = ACTIONS(3157), + [anon_sym_u8R_DQUOTE] = ACTIONS(3157), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [sym_this] = ACTIONS(3155), }, [550] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4866), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7370), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7843), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [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), + [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_extern] = 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___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_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = 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_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_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_virtual] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_typename] = 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_using] = 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_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), + [sym_this] = ACTIONS(3171), + }, + [551] = { + [sym_identifier] = ACTIONS(3187), + [aux_sym_preproc_include_token1] = ACTIONS(3187), + [aux_sym_preproc_def_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token2] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3187), + [aux_sym_preproc_else_token1] = ACTIONS(3187), + [aux_sym_preproc_elif_token1] = ACTIONS(3187), + [sym_preproc_directive] = ACTIONS(3187), + [anon_sym_LPAREN2] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym___extension__] = ACTIONS(3187), + [anon_sym_typedef] = ACTIONS(3187), + [anon_sym_extern] = ACTIONS(3187), + [anon_sym___attribute__] = ACTIONS(3187), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3189), + [anon_sym___declspec] = ACTIONS(3187), + [anon_sym___based] = ACTIONS(3187), + [anon_sym___cdecl] = ACTIONS(3187), + [anon_sym___clrcall] = ACTIONS(3187), + [anon_sym___stdcall] = ACTIONS(3187), + [anon_sym___fastcall] = ACTIONS(3187), + [anon_sym___thiscall] = ACTIONS(3187), + [anon_sym___vectorcall] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3187), + [anon_sym_unsigned] = ACTIONS(3187), + [anon_sym_long] = ACTIONS(3187), + [anon_sym_short] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_register] = ACTIONS(3187), + [anon_sym_inline] = ACTIONS(3187), + [anon_sym___inline] = ACTIONS(3187), + [anon_sym___inline__] = ACTIONS(3187), + [anon_sym___forceinline] = ACTIONS(3187), + [anon_sym_thread_local] = ACTIONS(3187), + [anon_sym___thread] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_constexpr] = ACTIONS(3187), + [anon_sym_volatile] = ACTIONS(3187), + [anon_sym_restrict] = ACTIONS(3187), + [anon_sym___restrict__] = ACTIONS(3187), + [anon_sym__Atomic] = ACTIONS(3187), + [anon_sym__Noreturn] = ACTIONS(3187), + [anon_sym_noreturn] = ACTIONS(3187), + [anon_sym_mutable] = ACTIONS(3187), + [anon_sym_constinit] = ACTIONS(3187), + [anon_sym_consteval] = ACTIONS(3187), + [sym_primitive_type] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_goto] = ACTIONS(3187), + [anon_sym___try] = ACTIONS(3187), + [anon_sym___leave] = ACTIONS(3187), + [anon_sym_not] = ACTIONS(3187), + [anon_sym_compl] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_sizeof] = ACTIONS(3187), + [anon_sym___alignof__] = ACTIONS(3187), + [anon_sym___alignof] = ACTIONS(3187), + [anon_sym__alignof] = ACTIONS(3187), + [anon_sym_alignof] = ACTIONS(3187), + [anon_sym__Alignof] = ACTIONS(3187), + [anon_sym_offsetof] = ACTIONS(3187), + [anon_sym__Generic] = ACTIONS(3187), + [anon_sym_asm] = ACTIONS(3187), + [anon_sym___asm__] = ACTIONS(3187), + [sym_number_literal] = ACTIONS(3189), + [anon_sym_L_SQUOTE] = ACTIONS(3189), + [anon_sym_u_SQUOTE] = ACTIONS(3189), + [anon_sym_U_SQUOTE] = ACTIONS(3189), + [anon_sym_u8_SQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_L_DQUOTE] = ACTIONS(3189), + [anon_sym_u_DQUOTE] = ACTIONS(3189), + [anon_sym_U_DQUOTE] = ACTIONS(3189), + [anon_sym_u8_DQUOTE] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3187), + [anon_sym_nullptr] = ACTIONS(3187), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3187), + [anon_sym_decltype] = ACTIONS(3187), + [anon_sym_virtual] = ACTIONS(3187), + [anon_sym_alignas] = ACTIONS(3187), + [anon_sym_explicit] = ACTIONS(3187), + [anon_sym_typename] = ACTIONS(3187), + [anon_sym_template] = ACTIONS(3187), + [anon_sym_operator] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_static_assert] = ACTIONS(3187), + [anon_sym_concept] = ACTIONS(3187), + [anon_sym_co_return] = ACTIONS(3187), + [anon_sym_co_yield] = ACTIONS(3187), + [anon_sym_R_DQUOTE] = ACTIONS(3189), + [anon_sym_LR_DQUOTE] = ACTIONS(3189), + [anon_sym_uR_DQUOTE] = ACTIONS(3189), + [anon_sym_UR_DQUOTE] = ACTIONS(3189), + [anon_sym_u8R_DQUOTE] = ACTIONS(3189), + [anon_sym_co_await] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_requires] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), + }, + [552] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4930), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7443), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7656), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -166795,665 +167394,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3404), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [551] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym___cdecl] = ACTIONS(2144), - [anon_sym___clrcall] = ACTIONS(2144), - [anon_sym___stdcall] = ACTIONS(2144), - [anon_sym___fastcall] = ACTIONS(2144), - [anon_sym___thiscall] = ACTIONS(2144), - [anon_sym___vectorcall] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym___try] = ACTIONS(2144), - [anon_sym___leave] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2144), - [anon_sym_compl] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2144), - [anon_sym___alignof__] = ACTIONS(2144), - [anon_sym___alignof] = ACTIONS(2144), - [anon_sym__alignof] = ACTIONS(2144), - [anon_sym_alignof] = ACTIONS(2144), - [anon_sym__Alignof] = ACTIONS(2144), - [anon_sym_offsetof] = ACTIONS(2144), - [anon_sym__Generic] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym___asm__] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2142), - [anon_sym_L_SQUOTE] = ACTIONS(2142), - [anon_sym_u_SQUOTE] = ACTIONS(2142), - [anon_sym_U_SQUOTE] = ACTIONS(2142), - [anon_sym_u8_SQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_L_DQUOTE] = ACTIONS(2142), - [anon_sym_u_DQUOTE] = ACTIONS(2142), - [anon_sym_U_DQUOTE] = ACTIONS(2142), - [anon_sym_u8_DQUOTE] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [anon_sym_NULL] = ACTIONS(2144), - [anon_sym_nullptr] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_delete] = ACTIONS(2144), - [anon_sym_throw] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_concept] = ACTIONS(2144), - [anon_sym_co_return] = ACTIONS(2144), - [anon_sym_co_yield] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_R_DQUOTE] = ACTIONS(2142), - [anon_sym_LR_DQUOTE] = ACTIONS(2142), - [anon_sym_uR_DQUOTE] = ACTIONS(2142), - [anon_sym_UR_DQUOTE] = ACTIONS(2142), - [anon_sym_u8R_DQUOTE] = ACTIONS(2142), - [anon_sym_co_await] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2144), - [anon_sym_requires] = ACTIONS(2144), - [sym_this] = ACTIONS(2144), - }, - [552] = { - [sym_identifier] = ACTIONS(3284), - [aux_sym_preproc_include_token1] = ACTIONS(3284), - [aux_sym_preproc_def_token1] = ACTIONS(3284), - [aux_sym_preproc_if_token1] = ACTIONS(3284), - [aux_sym_preproc_if_token2] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3284), - [aux_sym_preproc_else_token1] = ACTIONS(3284), - [aux_sym_preproc_elif_token1] = ACTIONS(3284), - [sym_preproc_directive] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym___extension__] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym___attribute__] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3286), - [anon_sym___declspec] = ACTIONS(3284), - [anon_sym___based] = ACTIONS(3284), - [anon_sym___cdecl] = ACTIONS(3284), - [anon_sym___clrcall] = ACTIONS(3284), - [anon_sym___stdcall] = ACTIONS(3284), - [anon_sym___fastcall] = ACTIONS(3284), - [anon_sym___thiscall] = ACTIONS(3284), - [anon_sym___vectorcall] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_signed] = ACTIONS(3284), - [anon_sym_unsigned] = ACTIONS(3284), - [anon_sym_long] = ACTIONS(3284), - [anon_sym_short] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_register] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym___inline] = ACTIONS(3284), - [anon_sym___inline__] = ACTIONS(3284), - [anon_sym___forceinline] = ACTIONS(3284), - [anon_sym_thread_local] = ACTIONS(3284), - [anon_sym___thread] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_constexpr] = ACTIONS(3284), - [anon_sym_volatile] = ACTIONS(3284), - [anon_sym_restrict] = ACTIONS(3284), - [anon_sym___restrict__] = ACTIONS(3284), - [anon_sym__Atomic] = ACTIONS(3284), - [anon_sym__Noreturn] = ACTIONS(3284), - [anon_sym_noreturn] = ACTIONS(3284), - [anon_sym_mutable] = ACTIONS(3284), - [anon_sym_constinit] = ACTIONS(3284), - [anon_sym_consteval] = ACTIONS(3284), - [sym_primitive_type] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3284), - [anon_sym_union] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_goto] = ACTIONS(3284), - [anon_sym___try] = ACTIONS(3284), - [anon_sym___leave] = ACTIONS(3284), - [anon_sym_not] = ACTIONS(3284), - [anon_sym_compl] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_sizeof] = ACTIONS(3284), - [anon_sym___alignof__] = ACTIONS(3284), - [anon_sym___alignof] = ACTIONS(3284), - [anon_sym__alignof] = ACTIONS(3284), - [anon_sym_alignof] = ACTIONS(3284), - [anon_sym__Alignof] = ACTIONS(3284), - [anon_sym_offsetof] = ACTIONS(3284), - [anon_sym__Generic] = ACTIONS(3284), - [anon_sym_asm] = ACTIONS(3284), - [anon_sym___asm__] = ACTIONS(3284), - [sym_number_literal] = ACTIONS(3286), - [anon_sym_L_SQUOTE] = ACTIONS(3286), - [anon_sym_u_SQUOTE] = ACTIONS(3286), - [anon_sym_U_SQUOTE] = ACTIONS(3286), - [anon_sym_u8_SQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_L_DQUOTE] = ACTIONS(3286), - [anon_sym_u_DQUOTE] = ACTIONS(3286), - [anon_sym_U_DQUOTE] = ACTIONS(3286), - [anon_sym_u8_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [anon_sym_NULL] = ACTIONS(3284), - [anon_sym_nullptr] = ACTIONS(3284), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3284), - [anon_sym_decltype] = ACTIONS(3284), - [anon_sym_virtual] = ACTIONS(3284), - [anon_sym_alignas] = ACTIONS(3284), - [anon_sym_explicit] = ACTIONS(3284), - [anon_sym_typename] = ACTIONS(3284), - [anon_sym_template] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_static_assert] = ACTIONS(3284), - [anon_sym_concept] = ACTIONS(3284), - [anon_sym_co_return] = ACTIONS(3284), - [anon_sym_co_yield] = ACTIONS(3284), - [anon_sym_R_DQUOTE] = ACTIONS(3286), - [anon_sym_LR_DQUOTE] = ACTIONS(3286), - [anon_sym_uR_DQUOTE] = ACTIONS(3286), - [anon_sym_UR_DQUOTE] = ACTIONS(3286), - [anon_sym_u8R_DQUOTE] = ACTIONS(3286), - [anon_sym_co_await] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_requires] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3418), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, [553] = { - [sym_identifier] = ACTIONS(2996), - [aux_sym_preproc_include_token1] = ACTIONS(2996), - [aux_sym_preproc_def_token1] = ACTIONS(2996), - [aux_sym_preproc_if_token1] = ACTIONS(2996), - [aux_sym_preproc_if_token2] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2996), - [aux_sym_preproc_else_token1] = ACTIONS(2996), - [aux_sym_preproc_elif_token1] = ACTIONS(2996), - [sym_preproc_directive] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2998), - [anon_sym___extension__] = ACTIONS(2996), - [anon_sym_typedef] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym___attribute__] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), - [anon_sym___declspec] = ACTIONS(2996), - [anon_sym___based] = ACTIONS(2996), - [anon_sym___cdecl] = ACTIONS(2996), - [anon_sym___clrcall] = ACTIONS(2996), - [anon_sym___stdcall] = ACTIONS(2996), - [anon_sym___fastcall] = ACTIONS(2996), - [anon_sym___thiscall] = ACTIONS(2996), - [anon_sym___vectorcall] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_signed] = ACTIONS(2996), - [anon_sym_unsigned] = ACTIONS(2996), - [anon_sym_long] = ACTIONS(2996), - [anon_sym_short] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_inline] = ACTIONS(2996), - [anon_sym___inline] = ACTIONS(2996), - [anon_sym___inline__] = ACTIONS(2996), - [anon_sym___forceinline] = ACTIONS(2996), - [anon_sym_thread_local] = ACTIONS(2996), - [anon_sym___thread] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_constexpr] = ACTIONS(2996), - [anon_sym_volatile] = ACTIONS(2996), - [anon_sym_restrict] = ACTIONS(2996), - [anon_sym___restrict__] = ACTIONS(2996), - [anon_sym__Atomic] = ACTIONS(2996), - [anon_sym__Noreturn] = ACTIONS(2996), - [anon_sym_noreturn] = ACTIONS(2996), - [anon_sym_mutable] = ACTIONS(2996), - [anon_sym_constinit] = ACTIONS(2996), - [anon_sym_consteval] = ACTIONS(2996), - [sym_primitive_type] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), - [anon_sym_class] = ACTIONS(2996), - [anon_sym_struct] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_goto] = ACTIONS(2996), - [anon_sym___try] = ACTIONS(2996), - [anon_sym___leave] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_compl] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2998), - [anon_sym_PLUS_PLUS] = ACTIONS(2998), - [anon_sym_sizeof] = ACTIONS(2996), - [anon_sym___alignof__] = ACTIONS(2996), - [anon_sym___alignof] = ACTIONS(2996), - [anon_sym__alignof] = ACTIONS(2996), - [anon_sym_alignof] = ACTIONS(2996), - [anon_sym__Alignof] = ACTIONS(2996), - [anon_sym_offsetof] = ACTIONS(2996), - [anon_sym__Generic] = ACTIONS(2996), - [anon_sym_asm] = ACTIONS(2996), - [anon_sym___asm__] = ACTIONS(2996), - [sym_number_literal] = ACTIONS(2998), - [anon_sym_L_SQUOTE] = ACTIONS(2998), - [anon_sym_u_SQUOTE] = ACTIONS(2998), - [anon_sym_U_SQUOTE] = ACTIONS(2998), - [anon_sym_u8_SQUOTE] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(2998), - [anon_sym_L_DQUOTE] = ACTIONS(2998), - [anon_sym_u_DQUOTE] = ACTIONS(2998), - [anon_sym_U_DQUOTE] = ACTIONS(2998), - [anon_sym_u8_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [sym_true] = ACTIONS(2996), - [sym_false] = ACTIONS(2996), - [anon_sym_NULL] = ACTIONS(2996), - [anon_sym_nullptr] = ACTIONS(2996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2996), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2996), - [anon_sym_alignas] = ACTIONS(2996), - [anon_sym_explicit] = ACTIONS(2996), - [anon_sym_typename] = ACTIONS(2996), - [anon_sym_template] = ACTIONS(2996), - [anon_sym_operator] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_throw] = ACTIONS(2996), - [anon_sym_namespace] = ACTIONS(2996), - [anon_sym_using] = ACTIONS(2996), - [anon_sym_static_assert] = ACTIONS(2996), - [anon_sym_concept] = ACTIONS(2996), - [anon_sym_co_return] = ACTIONS(2996), - [anon_sym_co_yield] = 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(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_requires] = ACTIONS(2996), - [sym_this] = ACTIONS(2996), + [sym_else_clause] = STATE(602), + [sym_identifier] = ACTIONS(2851), + [aux_sym_preproc_include_token1] = ACTIONS(2851), + [aux_sym_preproc_def_token1] = ACTIONS(2851), + [aux_sym_preproc_if_token1] = ACTIONS(2851), + [aux_sym_preproc_if_token2] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2851), + [sym_preproc_directive] = ACTIONS(2851), + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym___extension__] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2851), + [anon_sym_extern] = ACTIONS(2851), + [anon_sym___attribute__] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), + [anon_sym___declspec] = ACTIONS(2851), + [anon_sym___based] = ACTIONS(2851), + [anon_sym___cdecl] = ACTIONS(2851), + [anon_sym___clrcall] = ACTIONS(2851), + [anon_sym___stdcall] = ACTIONS(2851), + [anon_sym___fastcall] = ACTIONS(2851), + [anon_sym___thiscall] = ACTIONS(2851), + [anon_sym___vectorcall] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2851), + [anon_sym_unsigned] = ACTIONS(2851), + [anon_sym_long] = ACTIONS(2851), + [anon_sym_short] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2851), + [anon_sym_register] = ACTIONS(2851), + [anon_sym_inline] = ACTIONS(2851), + [anon_sym___inline] = ACTIONS(2851), + [anon_sym___inline__] = ACTIONS(2851), + [anon_sym___forceinline] = ACTIONS(2851), + [anon_sym_thread_local] = ACTIONS(2851), + [anon_sym___thread] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_constexpr] = ACTIONS(2851), + [anon_sym_volatile] = ACTIONS(2851), + [anon_sym_restrict] = ACTIONS(2851), + [anon_sym___restrict__] = ACTIONS(2851), + [anon_sym__Atomic] = ACTIONS(2851), + [anon_sym__Noreturn] = ACTIONS(2851), + [anon_sym_noreturn] = ACTIONS(2851), + [anon_sym_mutable] = ACTIONS(2851), + [anon_sym_constinit] = ACTIONS(2851), + [anon_sym_consteval] = ACTIONS(2851), + [sym_primitive_type] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), + [anon_sym_class] = ACTIONS(2851), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_union] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_else] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(2851), + [anon_sym_case] = ACTIONS(2851), + [anon_sym_default] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_do] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_goto] = ACTIONS(2851), + [anon_sym___try] = ACTIONS(2851), + [anon_sym___leave] = ACTIONS(2851), + [anon_sym_not] = ACTIONS(2851), + [anon_sym_compl] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_sizeof] = ACTIONS(2851), + [anon_sym___alignof__] = ACTIONS(2851), + [anon_sym___alignof] = ACTIONS(2851), + [anon_sym__alignof] = ACTIONS(2851), + [anon_sym_alignof] = ACTIONS(2851), + [anon_sym__Alignof] = ACTIONS(2851), + [anon_sym_offsetof] = ACTIONS(2851), + [anon_sym__Generic] = ACTIONS(2851), + [anon_sym_asm] = ACTIONS(2851), + [anon_sym___asm__] = ACTIONS(2851), + [sym_number_literal] = ACTIONS(2853), + [anon_sym_L_SQUOTE] = ACTIONS(2853), + [anon_sym_u_SQUOTE] = ACTIONS(2853), + [anon_sym_U_SQUOTE] = ACTIONS(2853), + [anon_sym_u8_SQUOTE] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2853), + [anon_sym_L_DQUOTE] = ACTIONS(2853), + [anon_sym_u_DQUOTE] = ACTIONS(2853), + [anon_sym_U_DQUOTE] = ACTIONS(2853), + [anon_sym_u8_DQUOTE] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2853), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2851), + [anon_sym_nullptr] = ACTIONS(2851), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2851), + [anon_sym_decltype] = ACTIONS(2851), + [anon_sym_virtual] = ACTIONS(2851), + [anon_sym_alignas] = ACTIONS(2851), + [anon_sym_explicit] = ACTIONS(2851), + [anon_sym_typename] = ACTIONS(2851), + [anon_sym_template] = ACTIONS(2851), + [anon_sym_operator] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [anon_sym_delete] = ACTIONS(2851), + [anon_sym_throw] = ACTIONS(2851), + [anon_sym_namespace] = ACTIONS(2851), + [anon_sym_using] = ACTIONS(2851), + [anon_sym_static_assert] = ACTIONS(2851), + [anon_sym_concept] = ACTIONS(2851), + [anon_sym_co_return] = ACTIONS(2851), + [anon_sym_co_yield] = ACTIONS(2851), + [anon_sym_R_DQUOTE] = ACTIONS(2853), + [anon_sym_LR_DQUOTE] = ACTIONS(2853), + [anon_sym_uR_DQUOTE] = ACTIONS(2853), + [anon_sym_UR_DQUOTE] = ACTIONS(2853), + [anon_sym_u8R_DQUOTE] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(2851), + [anon_sym_requires] = ACTIONS(2851), + [sym_this] = ACTIONS(2851), }, [554] = { - [sym_else_clause] = STATE(751), - [ts_builtin_sym_end] = ACTIONS(2855), - [sym_identifier] = ACTIONS(2853), - [aux_sym_preproc_include_token1] = ACTIONS(2853), - [aux_sym_preproc_def_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2855), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym___based] = ACTIONS(2853), - [anon_sym___cdecl] = ACTIONS(2853), - [anon_sym___clrcall] = ACTIONS(2853), - [anon_sym___stdcall] = ACTIONS(2853), - [anon_sym___fastcall] = ACTIONS(2853), - [anon_sym___thiscall] = ACTIONS(2853), - [anon_sym___vectorcall] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym___try] = ACTIONS(2853), - [anon_sym___leave] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(2853), - [anon_sym_compl] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_sizeof] = ACTIONS(2853), - [anon_sym___alignof__] = ACTIONS(2853), - [anon_sym___alignof] = ACTIONS(2853), - [anon_sym__alignof] = ACTIONS(2853), - [anon_sym_alignof] = ACTIONS(2853), - [anon_sym__Alignof] = ACTIONS(2853), - [anon_sym_offsetof] = ACTIONS(2853), - [anon_sym__Generic] = ACTIONS(2853), - [anon_sym_asm] = ACTIONS(2853), - [anon_sym___asm__] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2855), - [anon_sym_L_SQUOTE] = ACTIONS(2855), - [anon_sym_u_SQUOTE] = ACTIONS(2855), - [anon_sym_U_SQUOTE] = ACTIONS(2855), - [anon_sym_u8_SQUOTE] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2853), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_explicit] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2853), - [anon_sym_operator] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_using] = ACTIONS(2853), - [anon_sym_static_assert] = ACTIONS(2853), - [anon_sym_concept] = ACTIONS(2853), - [anon_sym_co_return] = ACTIONS(2853), - [anon_sym_co_yield] = 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(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_requires] = ACTIONS(2853), - [sym_this] = ACTIONS(2853), + [sym_else_clause] = STATE(658), + [sym_identifier] = ACTIONS(2851), + [aux_sym_preproc_include_token1] = ACTIONS(2851), + [aux_sym_preproc_def_token1] = ACTIONS(2851), + [aux_sym_preproc_if_token1] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2851), + [sym_preproc_directive] = ACTIONS(2851), + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym___extension__] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2851), + [anon_sym_extern] = ACTIONS(2851), + [anon_sym___attribute__] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), + [anon_sym___declspec] = ACTIONS(2851), + [anon_sym___based] = ACTIONS(2851), + [anon_sym___cdecl] = ACTIONS(2851), + [anon_sym___clrcall] = ACTIONS(2851), + [anon_sym___stdcall] = ACTIONS(2851), + [anon_sym___fastcall] = ACTIONS(2851), + [anon_sym___thiscall] = ACTIONS(2851), + [anon_sym___vectorcall] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_RBRACE] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2851), + [anon_sym_unsigned] = ACTIONS(2851), + [anon_sym_long] = ACTIONS(2851), + [anon_sym_short] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2851), + [anon_sym_register] = ACTIONS(2851), + [anon_sym_inline] = ACTIONS(2851), + [anon_sym___inline] = ACTIONS(2851), + [anon_sym___inline__] = ACTIONS(2851), + [anon_sym___forceinline] = ACTIONS(2851), + [anon_sym_thread_local] = ACTIONS(2851), + [anon_sym___thread] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_constexpr] = ACTIONS(2851), + [anon_sym_volatile] = ACTIONS(2851), + [anon_sym_restrict] = ACTIONS(2851), + [anon_sym___restrict__] = ACTIONS(2851), + [anon_sym__Atomic] = ACTIONS(2851), + [anon_sym__Noreturn] = ACTIONS(2851), + [anon_sym_noreturn] = ACTIONS(2851), + [anon_sym_mutable] = ACTIONS(2851), + [anon_sym_constinit] = ACTIONS(2851), + [anon_sym_consteval] = ACTIONS(2851), + [sym_primitive_type] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), + [anon_sym_class] = ACTIONS(2851), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_union] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_else] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(2851), + [anon_sym_case] = ACTIONS(2851), + [anon_sym_default] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_do] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_goto] = ACTIONS(2851), + [anon_sym___try] = ACTIONS(2851), + [anon_sym___leave] = ACTIONS(2851), + [anon_sym_not] = ACTIONS(2851), + [anon_sym_compl] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_sizeof] = ACTIONS(2851), + [anon_sym___alignof__] = ACTIONS(2851), + [anon_sym___alignof] = ACTIONS(2851), + [anon_sym__alignof] = ACTIONS(2851), + [anon_sym_alignof] = ACTIONS(2851), + [anon_sym__Alignof] = ACTIONS(2851), + [anon_sym_offsetof] = ACTIONS(2851), + [anon_sym__Generic] = ACTIONS(2851), + [anon_sym_asm] = ACTIONS(2851), + [anon_sym___asm__] = ACTIONS(2851), + [sym_number_literal] = ACTIONS(2853), + [anon_sym_L_SQUOTE] = ACTIONS(2853), + [anon_sym_u_SQUOTE] = ACTIONS(2853), + [anon_sym_U_SQUOTE] = ACTIONS(2853), + [anon_sym_u8_SQUOTE] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2853), + [anon_sym_L_DQUOTE] = ACTIONS(2853), + [anon_sym_u_DQUOTE] = ACTIONS(2853), + [anon_sym_U_DQUOTE] = ACTIONS(2853), + [anon_sym_u8_DQUOTE] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2853), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2851), + [anon_sym_nullptr] = ACTIONS(2851), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2851), + [anon_sym_decltype] = ACTIONS(2851), + [anon_sym_virtual] = ACTIONS(2851), + [anon_sym_alignas] = ACTIONS(2851), + [anon_sym_explicit] = ACTIONS(2851), + [anon_sym_typename] = ACTIONS(2851), + [anon_sym_template] = ACTIONS(2851), + [anon_sym_operator] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [anon_sym_delete] = ACTIONS(2851), + [anon_sym_throw] = ACTIONS(2851), + [anon_sym_namespace] = ACTIONS(2851), + [anon_sym_using] = ACTIONS(2851), + [anon_sym_static_assert] = ACTIONS(2851), + [anon_sym_concept] = ACTIONS(2851), + [anon_sym_co_return] = ACTIONS(2851), + [anon_sym_co_yield] = ACTIONS(2851), + [anon_sym_R_DQUOTE] = ACTIONS(2853), + [anon_sym_LR_DQUOTE] = ACTIONS(2853), + [anon_sym_uR_DQUOTE] = ACTIONS(2853), + [anon_sym_UR_DQUOTE] = ACTIONS(2853), + [anon_sym_u8R_DQUOTE] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(2851), + [anon_sym_requires] = ACTIONS(2851), + [sym_this] = ACTIONS(2851), }, [555] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4865), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7474), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7909), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4868), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7537), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7979), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -167465,263 +167796,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3406), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_GT2] = ACTIONS(3420), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, [556] = { - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_include_token1] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token2] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [aux_sym_preproc_else_token1] = ACTIONS(3298), - [aux_sym_preproc_elif_token1] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym___cdecl] = ACTIONS(3298), - [anon_sym___clrcall] = ACTIONS(3298), - [anon_sym___stdcall] = ACTIONS(3298), - [anon_sym___fastcall] = ACTIONS(3298), - [anon_sym___thiscall] = ACTIONS(3298), - [anon_sym___vectorcall] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3298), - [anon_sym_default] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_goto] = ACTIONS(3298), - [anon_sym___try] = ACTIONS(3298), - [anon_sym___leave] = ACTIONS(3298), - [anon_sym_not] = ACTIONS(3298), - [anon_sym_compl] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_sizeof] = ACTIONS(3298), - [anon_sym___alignof__] = ACTIONS(3298), - [anon_sym___alignof] = ACTIONS(3298), - [anon_sym__alignof] = ACTIONS(3298), - [anon_sym_alignof] = ACTIONS(3298), - [anon_sym__Alignof] = ACTIONS(3298), - [anon_sym_offsetof] = ACTIONS(3298), - [anon_sym__Generic] = ACTIONS(3298), - [anon_sym_asm] = ACTIONS(3298), - [anon_sym___asm__] = ACTIONS(3298), - [sym_number_literal] = ACTIONS(3300), - [anon_sym_L_SQUOTE] = ACTIONS(3300), - [anon_sym_u_SQUOTE] = ACTIONS(3300), - [anon_sym_U_SQUOTE] = ACTIONS(3300), - [anon_sym_u8_SQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_L_DQUOTE] = ACTIONS(3300), - [anon_sym_u_DQUOTE] = ACTIONS(3300), - [anon_sym_U_DQUOTE] = ACTIONS(3300), - [anon_sym_u8_DQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [anon_sym_NULL] = ACTIONS(3298), - [anon_sym_nullptr] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), - [anon_sym_concept] = ACTIONS(3298), - [anon_sym_co_return] = ACTIONS(3298), - [anon_sym_co_yield] = ACTIONS(3298), - [anon_sym_R_DQUOTE] = ACTIONS(3300), - [anon_sym_LR_DQUOTE] = ACTIONS(3300), - [anon_sym_uR_DQUOTE] = ACTIONS(3300), - [anon_sym_UR_DQUOTE] = ACTIONS(3300), - [anon_sym_u8R_DQUOTE] = ACTIONS(3300), - [anon_sym_co_await] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_requires] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_include_token1] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token2] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym___cdecl] = ACTIONS(2997), + [anon_sym___clrcall] = ACTIONS(2997), + [anon_sym___stdcall] = ACTIONS(2997), + [anon_sym___fastcall] = ACTIONS(2997), + [anon_sym___thiscall] = ACTIONS(2997), + [anon_sym___vectorcall] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_switch] = ACTIONS(2997), + [anon_sym_case] = ACTIONS(2997), + [anon_sym_default] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym___try] = ACTIONS(2997), + [anon_sym___leave] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2997), + [anon_sym_compl] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(2997), + [anon_sym___alignof__] = ACTIONS(2997), + [anon_sym___alignof] = ACTIONS(2997), + [anon_sym__alignof] = ACTIONS(2997), + [anon_sym_alignof] = ACTIONS(2997), + [anon_sym__Alignof] = ACTIONS(2997), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym___asm__] = ACTIONS(2997), + [sym_number_literal] = ACTIONS(2999), + [anon_sym_L_SQUOTE] = ACTIONS(2999), + [anon_sym_u_SQUOTE] = ACTIONS(2999), + [anon_sym_U_SQUOTE] = ACTIONS(2999), + [anon_sym_u8_SQUOTE] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_L_DQUOTE] = ACTIONS(2999), + [anon_sym_u_DQUOTE] = ACTIONS(2999), + [anon_sym_U_DQUOTE] = ACTIONS(2999), + [anon_sym_u8_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [anon_sym_NULL] = ACTIONS(2997), + [anon_sym_nullptr] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_delete] = ACTIONS(2997), + [anon_sym_throw] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), + [anon_sym_concept] = ACTIONS(2997), + [anon_sym_co_return] = ACTIONS(2997), + [anon_sym_co_yield] = ACTIONS(2997), + [anon_sym_R_DQUOTE] = ACTIONS(2999), + [anon_sym_LR_DQUOTE] = ACTIONS(2999), + [anon_sym_uR_DQUOTE] = ACTIONS(2999), + [anon_sym_UR_DQUOTE] = ACTIONS(2999), + [anon_sym_u8R_DQUOTE] = ACTIONS(2999), + [anon_sym_co_await] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_requires] = ACTIONS(2997), + [sym_this] = ACTIONS(2997), }, [557] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4904), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7436), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7877), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4810), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7542), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7958), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -167733,263 +168064,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3408), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_GT2] = ACTIONS(3422), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, [558] = { - [sym_identifier] = ACTIONS(3176), - [aux_sym_preproc_include_token1] = ACTIONS(3176), - [aux_sym_preproc_def_token1] = ACTIONS(3176), - [aux_sym_preproc_if_token1] = ACTIONS(3176), - [aux_sym_preproc_if_token2] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), - [aux_sym_preproc_else_token1] = ACTIONS(3176), - [aux_sym_preproc_elif_token1] = ACTIONS(3176), - [sym_preproc_directive] = ACTIONS(3176), - [anon_sym_LPAREN2] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym___extension__] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3176), - [anon_sym_extern] = ACTIONS(3176), - [anon_sym___attribute__] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(3178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), - [anon_sym___declspec] = ACTIONS(3176), - [anon_sym___based] = ACTIONS(3176), - [anon_sym___cdecl] = ACTIONS(3176), - [anon_sym___clrcall] = ACTIONS(3176), - [anon_sym___stdcall] = ACTIONS(3176), - [anon_sym___fastcall] = ACTIONS(3176), - [anon_sym___thiscall] = ACTIONS(3176), - [anon_sym___vectorcall] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_signed] = ACTIONS(3176), - [anon_sym_unsigned] = ACTIONS(3176), - [anon_sym_long] = ACTIONS(3176), - [anon_sym_short] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_register] = ACTIONS(3176), - [anon_sym_inline] = ACTIONS(3176), - [anon_sym___inline] = ACTIONS(3176), - [anon_sym___inline__] = ACTIONS(3176), - [anon_sym___forceinline] = ACTIONS(3176), - [anon_sym_thread_local] = ACTIONS(3176), - [anon_sym___thread] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_constexpr] = ACTIONS(3176), - [anon_sym_volatile] = ACTIONS(3176), - [anon_sym_restrict] = ACTIONS(3176), - [anon_sym___restrict__] = ACTIONS(3176), - [anon_sym__Atomic] = ACTIONS(3176), - [anon_sym__Noreturn] = ACTIONS(3176), - [anon_sym_noreturn] = ACTIONS(3176), - [anon_sym_mutable] = ACTIONS(3176), - [anon_sym_constinit] = ACTIONS(3176), - [anon_sym_consteval] = ACTIONS(3176), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_struct] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_case] = ACTIONS(3176), - [anon_sym_default] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_goto] = ACTIONS(3176), - [anon_sym___try] = ACTIONS(3176), - [anon_sym___leave] = ACTIONS(3176), - [anon_sym_not] = ACTIONS(3176), - [anon_sym_compl] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3176), - [anon_sym___alignof__] = ACTIONS(3176), - [anon_sym___alignof] = ACTIONS(3176), - [anon_sym__alignof] = ACTIONS(3176), - [anon_sym_alignof] = ACTIONS(3176), - [anon_sym__Alignof] = ACTIONS(3176), - [anon_sym_offsetof] = ACTIONS(3176), - [anon_sym__Generic] = ACTIONS(3176), - [anon_sym_asm] = ACTIONS(3176), - [anon_sym___asm__] = ACTIONS(3176), - [sym_number_literal] = ACTIONS(3178), - [anon_sym_L_SQUOTE] = ACTIONS(3178), - [anon_sym_u_SQUOTE] = ACTIONS(3178), - [anon_sym_U_SQUOTE] = ACTIONS(3178), - [anon_sym_u8_SQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_L_DQUOTE] = ACTIONS(3178), - [anon_sym_u_DQUOTE] = ACTIONS(3178), - [anon_sym_U_DQUOTE] = ACTIONS(3178), - [anon_sym_u8_DQUOTE] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [anon_sym_NULL] = ACTIONS(3176), - [anon_sym_nullptr] = ACTIONS(3176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3176), - [anon_sym_decltype] = ACTIONS(3176), - [anon_sym_virtual] = ACTIONS(3176), - [anon_sym_alignas] = ACTIONS(3176), - [anon_sym_explicit] = ACTIONS(3176), - [anon_sym_typename] = ACTIONS(3176), - [anon_sym_template] = ACTIONS(3176), - [anon_sym_operator] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_static_assert] = ACTIONS(3176), - [anon_sym_concept] = ACTIONS(3176), - [anon_sym_co_return] = ACTIONS(3176), - [anon_sym_co_yield] = ACTIONS(3176), - [anon_sym_R_DQUOTE] = ACTIONS(3178), - [anon_sym_LR_DQUOTE] = ACTIONS(3178), - [anon_sym_uR_DQUOTE] = ACTIONS(3178), - [anon_sym_UR_DQUOTE] = ACTIONS(3178), - [anon_sym_u8R_DQUOTE] = ACTIONS(3178), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_requires] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3244), + [aux_sym_preproc_include_token1] = ACTIONS(3244), + [aux_sym_preproc_def_token1] = ACTIONS(3244), + [aux_sym_preproc_if_token1] = ACTIONS(3244), + [aux_sym_preproc_if_token2] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3244), + [aux_sym_preproc_else_token1] = ACTIONS(3244), + [aux_sym_preproc_elif_token1] = ACTIONS(3244), + [sym_preproc_directive] = ACTIONS(3244), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_typedef] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym___cdecl] = ACTIONS(3244), + [anon_sym___clrcall] = ACTIONS(3244), + [anon_sym___stdcall] = ACTIONS(3244), + [anon_sym___fastcall] = ACTIONS(3244), + [anon_sym___thiscall] = ACTIONS(3244), + [anon_sym___vectorcall] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [sym_primitive_type] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3244), + [anon_sym_union] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_goto] = ACTIONS(3244), + [anon_sym___try] = ACTIONS(3244), + [anon_sym___leave] = ACTIONS(3244), + [anon_sym_not] = ACTIONS(3244), + [anon_sym_compl] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_sizeof] = ACTIONS(3244), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3244), + [anon_sym__Generic] = ACTIONS(3244), + [anon_sym_asm] = ACTIONS(3244), + [anon_sym___asm__] = ACTIONS(3244), + [sym_number_literal] = ACTIONS(3246), + [anon_sym_L_SQUOTE] = ACTIONS(3246), + [anon_sym_u_SQUOTE] = ACTIONS(3246), + [anon_sym_U_SQUOTE] = ACTIONS(3246), + [anon_sym_u8_SQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_L_DQUOTE] = ACTIONS(3246), + [anon_sym_u_DQUOTE] = ACTIONS(3246), + [anon_sym_U_DQUOTE] = ACTIONS(3246), + [anon_sym_u8_DQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [anon_sym_NULL] = ACTIONS(3244), + [anon_sym_nullptr] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym_explicit] = ACTIONS(3244), + [anon_sym_typename] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_static_assert] = ACTIONS(3244), + [anon_sym_concept] = ACTIONS(3244), + [anon_sym_co_return] = ACTIONS(3244), + [anon_sym_co_yield] = 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(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_requires] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), }, [559] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4754), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7310), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7794), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [sym_identifier] = ACTIONS(3138), + [aux_sym_preproc_include_token1] = ACTIONS(3138), + [aux_sym_preproc_def_token1] = ACTIONS(3138), + [aux_sym_preproc_if_token1] = ACTIONS(3138), + [aux_sym_preproc_if_token2] = ACTIONS(3138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3138), + [aux_sym_preproc_else_token1] = ACTIONS(3138), + [aux_sym_preproc_elif_token1] = ACTIONS(3138), + [sym_preproc_directive] = ACTIONS(3138), + [anon_sym_LPAREN2] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_typedef] = ACTIONS(3138), + [anon_sym_extern] = ACTIONS(3138), + [anon_sym___attribute__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3140), + [anon_sym___declspec] = ACTIONS(3138), + [anon_sym___based] = ACTIONS(3138), + [anon_sym___cdecl] = ACTIONS(3138), + [anon_sym___clrcall] = ACTIONS(3138), + [anon_sym___stdcall] = ACTIONS(3138), + [anon_sym___fastcall] = ACTIONS(3138), + [anon_sym___thiscall] = ACTIONS(3138), + [anon_sym___vectorcall] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3138), + [anon_sym_unsigned] = ACTIONS(3138), + [anon_sym_long] = ACTIONS(3138), + [anon_sym_short] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_register] = ACTIONS(3138), + [anon_sym_inline] = ACTIONS(3138), + [anon_sym___inline] = ACTIONS(3138), + [anon_sym___inline__] = ACTIONS(3138), + [anon_sym___forceinline] = ACTIONS(3138), + [anon_sym_thread_local] = ACTIONS(3138), + [anon_sym___thread] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_constexpr] = ACTIONS(3138), + [anon_sym_volatile] = ACTIONS(3138), + [anon_sym_restrict] = ACTIONS(3138), + [anon_sym___restrict__] = ACTIONS(3138), + [anon_sym__Atomic] = ACTIONS(3138), + [anon_sym__Noreturn] = ACTIONS(3138), + [anon_sym_noreturn] = ACTIONS(3138), + [anon_sym_mutable] = ACTIONS(3138), + [anon_sym_constinit] = ACTIONS(3138), + [anon_sym_consteval] = ACTIONS(3138), + [sym_primitive_type] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_struct] = ACTIONS(3138), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_case] = ACTIONS(3138), + [anon_sym_default] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_goto] = ACTIONS(3138), + [anon_sym___try] = ACTIONS(3138), + [anon_sym___leave] = ACTIONS(3138), + [anon_sym_not] = ACTIONS(3138), + [anon_sym_compl] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_sizeof] = ACTIONS(3138), + [anon_sym___alignof__] = ACTIONS(3138), + [anon_sym___alignof] = ACTIONS(3138), + [anon_sym__alignof] = ACTIONS(3138), + [anon_sym_alignof] = ACTIONS(3138), + [anon_sym__Alignof] = ACTIONS(3138), + [anon_sym_offsetof] = ACTIONS(3138), + [anon_sym__Generic] = ACTIONS(3138), + [anon_sym_asm] = ACTIONS(3138), + [anon_sym___asm__] = ACTIONS(3138), + [sym_number_literal] = ACTIONS(3140), + [anon_sym_L_SQUOTE] = ACTIONS(3140), + [anon_sym_u_SQUOTE] = ACTIONS(3140), + [anon_sym_U_SQUOTE] = ACTIONS(3140), + [anon_sym_u8_SQUOTE] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3140), + [anon_sym_L_DQUOTE] = ACTIONS(3140), + [anon_sym_u_DQUOTE] = ACTIONS(3140), + [anon_sym_U_DQUOTE] = ACTIONS(3140), + [anon_sym_u8_DQUOTE] = ACTIONS(3140), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [anon_sym_NULL] = ACTIONS(3138), + [anon_sym_nullptr] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3138), + [anon_sym_decltype] = ACTIONS(3138), + [anon_sym_virtual] = ACTIONS(3138), + [anon_sym_alignas] = ACTIONS(3138), + [anon_sym_explicit] = ACTIONS(3138), + [anon_sym_typename] = ACTIONS(3138), + [anon_sym_template] = ACTIONS(3138), + [anon_sym_operator] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_static_assert] = ACTIONS(3138), + [anon_sym_concept] = ACTIONS(3138), + [anon_sym_co_return] = ACTIONS(3138), + [anon_sym_co_yield] = ACTIONS(3138), + [anon_sym_R_DQUOTE] = ACTIONS(3140), + [anon_sym_LR_DQUOTE] = ACTIONS(3140), + [anon_sym_uR_DQUOTE] = ACTIONS(3140), + [anon_sym_UR_DQUOTE] = ACTIONS(3140), + [anon_sym_u8R_DQUOTE] = ACTIONS(3140), + [anon_sym_co_await] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_requires] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + }, + [560] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4936), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7588), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7808), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -168001,1737 +168466,1871 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3410), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [560] = { - [sym_identifier] = ACTIONS(3247), - [aux_sym_preproc_include_token1] = ACTIONS(3247), - [aux_sym_preproc_def_token1] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3247), - [aux_sym_preproc_if_token2] = ACTIONS(3247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3247), - [aux_sym_preproc_else_token1] = ACTIONS(3247), - [aux_sym_preproc_elif_token1] = ACTIONS(3247), - [sym_preproc_directive] = ACTIONS(3247), - [anon_sym_LPAREN2] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3249), - [anon_sym_AMP_AMP] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym___extension__] = ACTIONS(3247), - [anon_sym_typedef] = ACTIONS(3247), - [anon_sym_extern] = ACTIONS(3247), - [anon_sym___attribute__] = ACTIONS(3247), - [anon_sym_COLON_COLON] = ACTIONS(3249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3249), - [anon_sym___declspec] = ACTIONS(3247), - [anon_sym___based] = ACTIONS(3247), - [anon_sym___cdecl] = ACTIONS(3247), - [anon_sym___clrcall] = ACTIONS(3247), - [anon_sym___stdcall] = ACTIONS(3247), - [anon_sym___fastcall] = ACTIONS(3247), - [anon_sym___thiscall] = ACTIONS(3247), - [anon_sym___vectorcall] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_signed] = ACTIONS(3247), - [anon_sym_unsigned] = ACTIONS(3247), - [anon_sym_long] = ACTIONS(3247), - [anon_sym_short] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_register] = ACTIONS(3247), - [anon_sym_inline] = ACTIONS(3247), - [anon_sym___inline] = ACTIONS(3247), - [anon_sym___inline__] = ACTIONS(3247), - [anon_sym___forceinline] = ACTIONS(3247), - [anon_sym_thread_local] = ACTIONS(3247), - [anon_sym___thread] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_constexpr] = ACTIONS(3247), - [anon_sym_volatile] = ACTIONS(3247), - [anon_sym_restrict] = ACTIONS(3247), - [anon_sym___restrict__] = ACTIONS(3247), - [anon_sym__Atomic] = ACTIONS(3247), - [anon_sym__Noreturn] = ACTIONS(3247), - [anon_sym_noreturn] = ACTIONS(3247), - [anon_sym_mutable] = ACTIONS(3247), - [anon_sym_constinit] = ACTIONS(3247), - [anon_sym_consteval] = ACTIONS(3247), - [sym_primitive_type] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_case] = ACTIONS(3247), - [anon_sym_default] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_goto] = ACTIONS(3247), - [anon_sym___try] = ACTIONS(3247), - [anon_sym___leave] = ACTIONS(3247), - [anon_sym_not] = ACTIONS(3247), - [anon_sym_compl] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_sizeof] = ACTIONS(3247), - [anon_sym___alignof__] = ACTIONS(3247), - [anon_sym___alignof] = ACTIONS(3247), - [anon_sym__alignof] = ACTIONS(3247), - [anon_sym_alignof] = ACTIONS(3247), - [anon_sym__Alignof] = ACTIONS(3247), - [anon_sym_offsetof] = ACTIONS(3247), - [anon_sym__Generic] = ACTIONS(3247), - [anon_sym_asm] = ACTIONS(3247), - [anon_sym___asm__] = ACTIONS(3247), - [sym_number_literal] = ACTIONS(3249), - [anon_sym_L_SQUOTE] = ACTIONS(3249), - [anon_sym_u_SQUOTE] = ACTIONS(3249), - [anon_sym_U_SQUOTE] = ACTIONS(3249), - [anon_sym_u8_SQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_L_DQUOTE] = ACTIONS(3249), - [anon_sym_u_DQUOTE] = ACTIONS(3249), - [anon_sym_U_DQUOTE] = ACTIONS(3249), - [anon_sym_u8_DQUOTE] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [anon_sym_NULL] = ACTIONS(3247), - [anon_sym_nullptr] = ACTIONS(3247), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3247), - [anon_sym_decltype] = ACTIONS(3247), - [anon_sym_virtual] = ACTIONS(3247), - [anon_sym_alignas] = ACTIONS(3247), - [anon_sym_explicit] = ACTIONS(3247), - [anon_sym_typename] = ACTIONS(3247), - [anon_sym_template] = ACTIONS(3247), - [anon_sym_operator] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_static_assert] = ACTIONS(3247), - [anon_sym_concept] = ACTIONS(3247), - [anon_sym_co_return] = ACTIONS(3247), - [anon_sym_co_yield] = ACTIONS(3247), - [anon_sym_R_DQUOTE] = ACTIONS(3249), - [anon_sym_LR_DQUOTE] = ACTIONS(3249), - [anon_sym_uR_DQUOTE] = ACTIONS(3249), - [anon_sym_UR_DQUOTE] = ACTIONS(3249), - [anon_sym_u8R_DQUOTE] = ACTIONS(3249), - [anon_sym_co_await] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_requires] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), + [anon_sym_GT2] = ACTIONS(3424), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, [561] = { - [sym_identifier] = ACTIONS(3288), - [aux_sym_preproc_include_token1] = ACTIONS(3288), - [aux_sym_preproc_def_token1] = ACTIONS(3288), - [aux_sym_preproc_if_token1] = ACTIONS(3288), - [aux_sym_preproc_if_token2] = ACTIONS(3288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3288), - [aux_sym_preproc_else_token1] = ACTIONS(3288), - [aux_sym_preproc_elif_token1] = ACTIONS(3288), - [sym_preproc_directive] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3290), - [anon_sym_AMP_AMP] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym___extension__] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym___attribute__] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3290), - [anon_sym___declspec] = ACTIONS(3288), - [anon_sym___based] = ACTIONS(3288), - [anon_sym___cdecl] = ACTIONS(3288), - [anon_sym___clrcall] = ACTIONS(3288), - [anon_sym___stdcall] = ACTIONS(3288), - [anon_sym___fastcall] = ACTIONS(3288), - [anon_sym___thiscall] = ACTIONS(3288), - [anon_sym___vectorcall] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_signed] = ACTIONS(3288), - [anon_sym_unsigned] = ACTIONS(3288), - [anon_sym_long] = ACTIONS(3288), - [anon_sym_short] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_register] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym___inline] = ACTIONS(3288), - [anon_sym___inline__] = ACTIONS(3288), - [anon_sym___forceinline] = ACTIONS(3288), - [anon_sym_thread_local] = ACTIONS(3288), - [anon_sym___thread] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_constexpr] = ACTIONS(3288), - [anon_sym_volatile] = ACTIONS(3288), - [anon_sym_restrict] = ACTIONS(3288), - [anon_sym___restrict__] = ACTIONS(3288), - [anon_sym__Atomic] = ACTIONS(3288), - [anon_sym__Noreturn] = ACTIONS(3288), - [anon_sym_noreturn] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(3288), - [anon_sym_constinit] = ACTIONS(3288), - [anon_sym_consteval] = ACTIONS(3288), - [sym_primitive_type] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3288), - [anon_sym_union] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_goto] = ACTIONS(3288), - [anon_sym___try] = ACTIONS(3288), - [anon_sym___leave] = ACTIONS(3288), - [anon_sym_not] = ACTIONS(3288), - [anon_sym_compl] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_sizeof] = ACTIONS(3288), - [anon_sym___alignof__] = ACTIONS(3288), - [anon_sym___alignof] = ACTIONS(3288), - [anon_sym__alignof] = ACTIONS(3288), - [anon_sym_alignof] = ACTIONS(3288), - [anon_sym__Alignof] = ACTIONS(3288), - [anon_sym_offsetof] = ACTIONS(3288), - [anon_sym__Generic] = ACTIONS(3288), - [anon_sym_asm] = ACTIONS(3288), - [anon_sym___asm__] = ACTIONS(3288), - [sym_number_literal] = ACTIONS(3290), - [anon_sym_L_SQUOTE] = ACTIONS(3290), - [anon_sym_u_SQUOTE] = ACTIONS(3290), - [anon_sym_U_SQUOTE] = ACTIONS(3290), - [anon_sym_u8_SQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_L_DQUOTE] = ACTIONS(3290), - [anon_sym_u_DQUOTE] = ACTIONS(3290), - [anon_sym_U_DQUOTE] = ACTIONS(3290), - [anon_sym_u8_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [anon_sym_NULL] = ACTIONS(3288), - [anon_sym_nullptr] = ACTIONS(3288), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3288), - [anon_sym_decltype] = ACTIONS(3288), - [anon_sym_virtual] = ACTIONS(3288), - [anon_sym_alignas] = ACTIONS(3288), - [anon_sym_explicit] = ACTIONS(3288), - [anon_sym_typename] = ACTIONS(3288), - [anon_sym_template] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_static_assert] = ACTIONS(3288), - [anon_sym_concept] = ACTIONS(3288), - [anon_sym_co_return] = ACTIONS(3288), - [anon_sym_co_yield] = 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(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_requires] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3199), + [aux_sym_preproc_include_token1] = ACTIONS(3199), + [aux_sym_preproc_def_token1] = ACTIONS(3199), + [aux_sym_preproc_if_token1] = ACTIONS(3199), + [aux_sym_preproc_if_token2] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3199), + [aux_sym_preproc_else_token1] = ACTIONS(3199), + [aux_sym_preproc_elif_token1] = ACTIONS(3199), + [sym_preproc_directive] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym___extension__] = ACTIONS(3199), + [anon_sym_typedef] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym___attribute__] = ACTIONS(3199), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3199), + [anon_sym___based] = ACTIONS(3199), + [anon_sym___cdecl] = ACTIONS(3199), + [anon_sym___clrcall] = ACTIONS(3199), + [anon_sym___stdcall] = ACTIONS(3199), + [anon_sym___fastcall] = ACTIONS(3199), + [anon_sym___thiscall] = ACTIONS(3199), + [anon_sym___vectorcall] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_signed] = ACTIONS(3199), + [anon_sym_unsigned] = ACTIONS(3199), + [anon_sym_long] = ACTIONS(3199), + [anon_sym_short] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_register] = ACTIONS(3199), + [anon_sym_inline] = ACTIONS(3199), + [anon_sym___inline] = ACTIONS(3199), + [anon_sym___inline__] = ACTIONS(3199), + [anon_sym___forceinline] = ACTIONS(3199), + [anon_sym_thread_local] = ACTIONS(3199), + [anon_sym___thread] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_constexpr] = ACTIONS(3199), + [anon_sym_volatile] = ACTIONS(3199), + [anon_sym_restrict] = ACTIONS(3199), + [anon_sym___restrict__] = ACTIONS(3199), + [anon_sym__Atomic] = ACTIONS(3199), + [anon_sym__Noreturn] = ACTIONS(3199), + [anon_sym_noreturn] = ACTIONS(3199), + [anon_sym_mutable] = ACTIONS(3199), + [anon_sym_constinit] = ACTIONS(3199), + [anon_sym_consteval] = ACTIONS(3199), + [sym_primitive_type] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_switch] = ACTIONS(3199), + [anon_sym_case] = ACTIONS(3199), + [anon_sym_default] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_do] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_goto] = ACTIONS(3199), + [anon_sym___try] = ACTIONS(3199), + [anon_sym___leave] = ACTIONS(3199), + [anon_sym_not] = ACTIONS(3199), + [anon_sym_compl] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3199), + [anon_sym___alignof__] = ACTIONS(3199), + [anon_sym___alignof] = ACTIONS(3199), + [anon_sym__alignof] = ACTIONS(3199), + [anon_sym_alignof] = ACTIONS(3199), + [anon_sym__Alignof] = ACTIONS(3199), + [anon_sym_offsetof] = ACTIONS(3199), + [anon_sym__Generic] = ACTIONS(3199), + [anon_sym_asm] = ACTIONS(3199), + [anon_sym___asm__] = ACTIONS(3199), + [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(3199), + [sym_false] = ACTIONS(3199), + [anon_sym_NULL] = ACTIONS(3199), + [anon_sym_nullptr] = ACTIONS(3199), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3199), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3199), + [anon_sym_alignas] = ACTIONS(3199), + [anon_sym_explicit] = ACTIONS(3199), + [anon_sym_typename] = ACTIONS(3199), + [anon_sym_template] = ACTIONS(3199), + [anon_sym_operator] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_throw] = ACTIONS(3199), + [anon_sym_namespace] = ACTIONS(3199), + [anon_sym_using] = ACTIONS(3199), + [anon_sym_static_assert] = ACTIONS(3199), + [anon_sym_concept] = ACTIONS(3199), + [anon_sym_co_return] = ACTIONS(3199), + [anon_sym_co_yield] = ACTIONS(3199), + [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(3199), + [anon_sym_new] = ACTIONS(3199), + [anon_sym_requires] = ACTIONS(3199), + [sym_this] = ACTIONS(3199), }, [562] = { - [sym_identifier] = ACTIONS(3124), - [aux_sym_preproc_include_token1] = ACTIONS(3124), - [aux_sym_preproc_def_token1] = ACTIONS(3124), - [aux_sym_preproc_if_token1] = ACTIONS(3124), - [aux_sym_preproc_if_token2] = ACTIONS(3124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3124), - [aux_sym_preproc_else_token1] = ACTIONS(3124), - [aux_sym_preproc_elif_token1] = ACTIONS(3124), - [sym_preproc_directive] = ACTIONS(3124), - [anon_sym_LPAREN2] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_AMP_AMP] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym___extension__] = ACTIONS(3124), - [anon_sym_typedef] = ACTIONS(3124), - [anon_sym_extern] = ACTIONS(3124), - [anon_sym___attribute__] = ACTIONS(3124), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3126), - [anon_sym___declspec] = ACTIONS(3124), - [anon_sym___based] = ACTIONS(3124), - [anon_sym___cdecl] = ACTIONS(3124), - [anon_sym___clrcall] = ACTIONS(3124), - [anon_sym___stdcall] = ACTIONS(3124), - [anon_sym___fastcall] = ACTIONS(3124), - [anon_sym___thiscall] = ACTIONS(3124), - [anon_sym___vectorcall] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_signed] = ACTIONS(3124), - [anon_sym_unsigned] = ACTIONS(3124), - [anon_sym_long] = ACTIONS(3124), - [anon_sym_short] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_register] = ACTIONS(3124), - [anon_sym_inline] = ACTIONS(3124), - [anon_sym___inline] = ACTIONS(3124), - [anon_sym___inline__] = ACTIONS(3124), - [anon_sym___forceinline] = ACTIONS(3124), - [anon_sym_thread_local] = ACTIONS(3124), - [anon_sym___thread] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_constexpr] = ACTIONS(3124), - [anon_sym_volatile] = ACTIONS(3124), - [anon_sym_restrict] = ACTIONS(3124), - [anon_sym___restrict__] = ACTIONS(3124), - [anon_sym__Atomic] = ACTIONS(3124), - [anon_sym__Noreturn] = ACTIONS(3124), - [anon_sym_noreturn] = ACTIONS(3124), - [anon_sym_mutable] = ACTIONS(3124), - [anon_sym_constinit] = ACTIONS(3124), - [anon_sym_consteval] = ACTIONS(3124), - [sym_primitive_type] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_struct] = ACTIONS(3124), - [anon_sym_union] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_goto] = ACTIONS(3124), - [anon_sym___try] = ACTIONS(3124), - [anon_sym___leave] = ACTIONS(3124), - [anon_sym_not] = ACTIONS(3124), - [anon_sym_compl] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3124), - [anon_sym___alignof__] = ACTIONS(3124), - [anon_sym___alignof] = ACTIONS(3124), - [anon_sym__alignof] = ACTIONS(3124), - [anon_sym_alignof] = ACTIONS(3124), - [anon_sym__Alignof] = ACTIONS(3124), - [anon_sym_offsetof] = ACTIONS(3124), - [anon_sym__Generic] = ACTIONS(3124), - [anon_sym_asm] = ACTIONS(3124), - [anon_sym___asm__] = ACTIONS(3124), - [sym_number_literal] = ACTIONS(3126), - [anon_sym_L_SQUOTE] = ACTIONS(3126), - [anon_sym_u_SQUOTE] = ACTIONS(3126), - [anon_sym_U_SQUOTE] = ACTIONS(3126), - [anon_sym_u8_SQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [anon_sym_L_DQUOTE] = ACTIONS(3126), - [anon_sym_u_DQUOTE] = ACTIONS(3126), - [anon_sym_U_DQUOTE] = ACTIONS(3126), - [anon_sym_u8_DQUOTE] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [anon_sym_NULL] = ACTIONS(3124), - [anon_sym_nullptr] = ACTIONS(3124), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3124), - [anon_sym_decltype] = ACTIONS(3124), - [anon_sym_virtual] = ACTIONS(3124), - [anon_sym_alignas] = ACTIONS(3124), - [anon_sym_explicit] = ACTIONS(3124), - [anon_sym_typename] = ACTIONS(3124), - [anon_sym_template] = ACTIONS(3124), - [anon_sym_operator] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_static_assert] = ACTIONS(3124), - [anon_sym_concept] = ACTIONS(3124), - [anon_sym_co_return] = ACTIONS(3124), - [anon_sym_co_yield] = ACTIONS(3124), - [anon_sym_R_DQUOTE] = ACTIONS(3126), - [anon_sym_LR_DQUOTE] = ACTIONS(3126), - [anon_sym_uR_DQUOTE] = ACTIONS(3126), - [anon_sym_UR_DQUOTE] = ACTIONS(3126), - [anon_sym_u8R_DQUOTE] = ACTIONS(3126), - [anon_sym_co_await] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_requires] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), + [sym_identifier] = ACTIONS(3082), + [aux_sym_preproc_include_token1] = ACTIONS(3082), + [aux_sym_preproc_def_token1] = ACTIONS(3082), + [aux_sym_preproc_if_token1] = ACTIONS(3082), + [aux_sym_preproc_if_token2] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), + [aux_sym_preproc_else_token1] = ACTIONS(3082), + [aux_sym_preproc_elif_token1] = ACTIONS(3082), + [sym_preproc_directive] = ACTIONS(3082), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym___extension__] = ACTIONS(3082), + [anon_sym_typedef] = ACTIONS(3082), + [anon_sym_extern] = ACTIONS(3082), + [anon_sym___attribute__] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), + [anon_sym___declspec] = ACTIONS(3082), + [anon_sym___based] = ACTIONS(3082), + [anon_sym___cdecl] = ACTIONS(3082), + [anon_sym___clrcall] = ACTIONS(3082), + [anon_sym___stdcall] = ACTIONS(3082), + [anon_sym___fastcall] = ACTIONS(3082), + [anon_sym___thiscall] = ACTIONS(3082), + [anon_sym___vectorcall] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_signed] = ACTIONS(3082), + [anon_sym_unsigned] = ACTIONS(3082), + [anon_sym_long] = ACTIONS(3082), + [anon_sym_short] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_register] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym___inline] = ACTIONS(3082), + [anon_sym___inline__] = ACTIONS(3082), + [anon_sym___forceinline] = ACTIONS(3082), + [anon_sym_thread_local] = ACTIONS(3082), + [anon_sym___thread] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_constexpr] = ACTIONS(3082), + [anon_sym_volatile] = ACTIONS(3082), + [anon_sym_restrict] = ACTIONS(3082), + [anon_sym___restrict__] = ACTIONS(3082), + [anon_sym__Atomic] = ACTIONS(3082), + [anon_sym__Noreturn] = ACTIONS(3082), + [anon_sym_noreturn] = ACTIONS(3082), + [anon_sym_mutable] = ACTIONS(3082), + [anon_sym_constinit] = ACTIONS(3082), + [anon_sym_consteval] = ACTIONS(3082), + [sym_primitive_type] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_union] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_switch] = ACTIONS(3082), + [anon_sym_case] = ACTIONS(3082), + [anon_sym_default] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_do] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_goto] = ACTIONS(3082), + [anon_sym___try] = ACTIONS(3082), + [anon_sym___leave] = ACTIONS(3082), + [anon_sym_not] = ACTIONS(3082), + [anon_sym_compl] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_sizeof] = ACTIONS(3082), + [anon_sym___alignof__] = ACTIONS(3082), + [anon_sym___alignof] = ACTIONS(3082), + [anon_sym__alignof] = ACTIONS(3082), + [anon_sym_alignof] = ACTIONS(3082), + [anon_sym__Alignof] = ACTIONS(3082), + [anon_sym_offsetof] = ACTIONS(3082), + [anon_sym__Generic] = ACTIONS(3082), + [anon_sym_asm] = ACTIONS(3082), + [anon_sym___asm__] = ACTIONS(3082), + [sym_number_literal] = ACTIONS(3084), + [anon_sym_L_SQUOTE] = ACTIONS(3084), + [anon_sym_u_SQUOTE] = ACTIONS(3084), + [anon_sym_U_SQUOTE] = ACTIONS(3084), + [anon_sym_u8_SQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_L_DQUOTE] = ACTIONS(3084), + [anon_sym_u_DQUOTE] = ACTIONS(3084), + [anon_sym_U_DQUOTE] = ACTIONS(3084), + [anon_sym_u8_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [anon_sym_NULL] = ACTIONS(3082), + [anon_sym_nullptr] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3082), + [anon_sym_decltype] = ACTIONS(3082), + [anon_sym_virtual] = ACTIONS(3082), + [anon_sym_alignas] = ACTIONS(3082), + [anon_sym_explicit] = ACTIONS(3082), + [anon_sym_typename] = ACTIONS(3082), + [anon_sym_template] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_delete] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_namespace] = ACTIONS(3082), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_static_assert] = ACTIONS(3082), + [anon_sym_concept] = ACTIONS(3082), + [anon_sym_co_return] = ACTIONS(3082), + [anon_sym_co_yield] = ACTIONS(3082), + [anon_sym_R_DQUOTE] = ACTIONS(3084), + [anon_sym_LR_DQUOTE] = ACTIONS(3084), + [anon_sym_uR_DQUOTE] = ACTIONS(3084), + [anon_sym_UR_DQUOTE] = ACTIONS(3084), + [anon_sym_u8R_DQUOTE] = ACTIONS(3084), + [anon_sym_co_await] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3082), + [anon_sym_requires] = ACTIONS(3082), + [sym_this] = ACTIONS(3082), }, [563] = { - [sym_identifier] = ACTIONS(3211), - [aux_sym_preproc_include_token1] = ACTIONS(3211), - [aux_sym_preproc_def_token1] = ACTIONS(3211), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_if_token2] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), - [aux_sym_preproc_else_token1] = ACTIONS(3211), - [aux_sym_preproc_elif_token1] = ACTIONS(3211), - [sym_preproc_directive] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym_COLON_COLON] = ACTIONS(3213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), - [anon_sym___declspec] = ACTIONS(3211), - [anon_sym___based] = ACTIONS(3211), - [anon_sym___cdecl] = ACTIONS(3211), - [anon_sym___clrcall] = ACTIONS(3211), - [anon_sym___stdcall] = ACTIONS(3211), - [anon_sym___fastcall] = ACTIONS(3211), - [anon_sym___thiscall] = ACTIONS(3211), - [anon_sym___vectorcall] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_signed] = ACTIONS(3211), - [anon_sym_unsigned] = ACTIONS(3211), - [anon_sym_long] = ACTIONS(3211), - [anon_sym_short] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_register] = ACTIONS(3211), - [anon_sym_inline] = ACTIONS(3211), - [anon_sym___inline] = ACTIONS(3211), - [anon_sym___inline__] = ACTIONS(3211), - [anon_sym___forceinline] = ACTIONS(3211), - [anon_sym_thread_local] = ACTIONS(3211), - [anon_sym___thread] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_constexpr] = ACTIONS(3211), - [anon_sym_volatile] = ACTIONS(3211), - [anon_sym_restrict] = ACTIONS(3211), - [anon_sym___restrict__] = ACTIONS(3211), - [anon_sym__Atomic] = ACTIONS(3211), - [anon_sym__Noreturn] = ACTIONS(3211), - [anon_sym_noreturn] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [sym_primitive_type] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_default] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym___try] = ACTIONS(3211), - [anon_sym___leave] = ACTIONS(3211), - [anon_sym_not] = ACTIONS(3211), - [anon_sym_compl] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3211), - [anon_sym___alignof__] = ACTIONS(3211), - [anon_sym___alignof] = ACTIONS(3211), - [anon_sym__alignof] = ACTIONS(3211), - [anon_sym_alignof] = ACTIONS(3211), - [anon_sym__Alignof] = ACTIONS(3211), - [anon_sym_offsetof] = ACTIONS(3211), - [anon_sym__Generic] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym___asm__] = ACTIONS(3211), - [sym_number_literal] = ACTIONS(3213), - [anon_sym_L_SQUOTE] = ACTIONS(3213), - [anon_sym_u_SQUOTE] = ACTIONS(3213), - [anon_sym_U_SQUOTE] = ACTIONS(3213), - [anon_sym_u8_SQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_L_DQUOTE] = ACTIONS(3213), - [anon_sym_u_DQUOTE] = ACTIONS(3213), - [anon_sym_U_DQUOTE] = ACTIONS(3213), - [anon_sym_u8_DQUOTE] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [anon_sym_NULL] = ACTIONS(3211), - [anon_sym_nullptr] = ACTIONS(3211), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3211), - [anon_sym_decltype] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), - [anon_sym_concept] = ACTIONS(3211), - [anon_sym_co_return] = ACTIONS(3211), - [anon_sym_co_yield] = ACTIONS(3211), - [anon_sym_R_DQUOTE] = ACTIONS(3213), - [anon_sym_LR_DQUOTE] = ACTIONS(3213), - [anon_sym_uR_DQUOTE] = ACTIONS(3213), - [anon_sym_UR_DQUOTE] = ACTIONS(3213), - [anon_sym_u8R_DQUOTE] = ACTIONS(3213), - [anon_sym_co_await] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_requires] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), }, [564] = { - [sym_identifier] = ACTIONS(3270), - [aux_sym_preproc_include_token1] = ACTIONS(3270), - [aux_sym_preproc_def_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token2] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), - [aux_sym_preproc_else_token1] = ACTIONS(3270), - [aux_sym_preproc_elif_token1] = ACTIONS(3270), - [sym_preproc_directive] = ACTIONS(3270), - [anon_sym_LPAREN2] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), - [anon_sym___declspec] = ACTIONS(3270), - [anon_sym___based] = ACTIONS(3270), - [anon_sym___cdecl] = ACTIONS(3270), - [anon_sym___clrcall] = ACTIONS(3270), - [anon_sym___stdcall] = ACTIONS(3270), - [anon_sym___fastcall] = ACTIONS(3270), - [anon_sym___thiscall] = ACTIONS(3270), - [anon_sym___vectorcall] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_signed] = ACTIONS(3270), - [anon_sym_unsigned] = ACTIONS(3270), - [anon_sym_long] = ACTIONS(3270), - [anon_sym_short] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_register] = ACTIONS(3270), - [anon_sym_inline] = ACTIONS(3270), - [anon_sym___inline] = ACTIONS(3270), - [anon_sym___inline__] = ACTIONS(3270), - [anon_sym___forceinline] = ACTIONS(3270), - [anon_sym_thread_local] = ACTIONS(3270), - [anon_sym___thread] = ACTIONS(3270), - [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_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [sym_primitive_type] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3270), - [anon_sym_default] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_goto] = ACTIONS(3270), - [anon_sym___try] = ACTIONS(3270), - [anon_sym___leave] = ACTIONS(3270), - [anon_sym_not] = ACTIONS(3270), - [anon_sym_compl] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_sizeof] = ACTIONS(3270), - [anon_sym___alignof__] = ACTIONS(3270), - [anon_sym___alignof] = ACTIONS(3270), - [anon_sym__alignof] = ACTIONS(3270), - [anon_sym_alignof] = ACTIONS(3270), - [anon_sym__Alignof] = ACTIONS(3270), - [anon_sym_offsetof] = ACTIONS(3270), - [anon_sym__Generic] = ACTIONS(3270), - [anon_sym_asm] = ACTIONS(3270), - [anon_sym___asm__] = ACTIONS(3270), - [sym_number_literal] = ACTIONS(3272), - [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(3272), - [anon_sym_u_DQUOTE] = ACTIONS(3272), - [anon_sym_U_DQUOTE] = ACTIONS(3272), - [anon_sym_u8_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [anon_sym_NULL] = ACTIONS(3270), - [anon_sym_nullptr] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3270), - [anon_sym_decltype] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), - [anon_sym_concept] = ACTIONS(3270), - [anon_sym_co_return] = ACTIONS(3270), - [anon_sym_co_yield] = ACTIONS(3270), - [anon_sym_R_DQUOTE] = ACTIONS(3272), - [anon_sym_LR_DQUOTE] = ACTIONS(3272), - [anon_sym_uR_DQUOTE] = ACTIONS(3272), - [anon_sym_UR_DQUOTE] = ACTIONS(3272), - [anon_sym_u8R_DQUOTE] = ACTIONS(3272), - [anon_sym_co_await] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_requires] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3183), + [aux_sym_preproc_include_token1] = ACTIONS(3183), + [aux_sym_preproc_def_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token2] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), + [aux_sym_preproc_else_token1] = ACTIONS(3183), + [aux_sym_preproc_elif_token1] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3183), + [anon_sym_LPAREN2] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_AMP_AMP] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym___extension__] = ACTIONS(3183), + [anon_sym_typedef] = ACTIONS(3183), + [anon_sym_extern] = ACTIONS(3183), + [anon_sym___attribute__] = ACTIONS(3183), + [anon_sym_COLON_COLON] = ACTIONS(3185), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), + [anon_sym___declspec] = ACTIONS(3183), + [anon_sym___based] = ACTIONS(3183), + [anon_sym___cdecl] = ACTIONS(3183), + [anon_sym___clrcall] = ACTIONS(3183), + [anon_sym___stdcall] = ACTIONS(3183), + [anon_sym___fastcall] = ACTIONS(3183), + [anon_sym___thiscall] = ACTIONS(3183), + [anon_sym___vectorcall] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_signed] = ACTIONS(3183), + [anon_sym_unsigned] = ACTIONS(3183), + [anon_sym_long] = ACTIONS(3183), + [anon_sym_short] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_register] = ACTIONS(3183), + [anon_sym_inline] = ACTIONS(3183), + [anon_sym___inline] = ACTIONS(3183), + [anon_sym___inline__] = ACTIONS(3183), + [anon_sym___forceinline] = ACTIONS(3183), + [anon_sym_thread_local] = ACTIONS(3183), + [anon_sym___thread] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_constexpr] = ACTIONS(3183), + [anon_sym_volatile] = ACTIONS(3183), + [anon_sym_restrict] = ACTIONS(3183), + [anon_sym___restrict__] = ACTIONS(3183), + [anon_sym__Atomic] = ACTIONS(3183), + [anon_sym__Noreturn] = ACTIONS(3183), + [anon_sym_noreturn] = ACTIONS(3183), + [anon_sym_mutable] = ACTIONS(3183), + [anon_sym_constinit] = ACTIONS(3183), + [anon_sym_consteval] = ACTIONS(3183), + [sym_primitive_type] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_goto] = ACTIONS(3183), + [anon_sym___try] = ACTIONS(3183), + [anon_sym___leave] = ACTIONS(3183), + [anon_sym_not] = ACTIONS(3183), + [anon_sym_compl] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3183), + [anon_sym___alignof__] = ACTIONS(3183), + [anon_sym___alignof] = ACTIONS(3183), + [anon_sym__alignof] = ACTIONS(3183), + [anon_sym_alignof] = ACTIONS(3183), + [anon_sym__Alignof] = ACTIONS(3183), + [anon_sym_offsetof] = ACTIONS(3183), + [anon_sym__Generic] = ACTIONS(3183), + [anon_sym_asm] = ACTIONS(3183), + [anon_sym___asm__] = ACTIONS(3183), + [sym_number_literal] = ACTIONS(3185), + [anon_sym_L_SQUOTE] = ACTIONS(3185), + [anon_sym_u_SQUOTE] = ACTIONS(3185), + [anon_sym_U_SQUOTE] = ACTIONS(3185), + [anon_sym_u8_SQUOTE] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3185), + [anon_sym_L_DQUOTE] = ACTIONS(3185), + [anon_sym_u_DQUOTE] = ACTIONS(3185), + [anon_sym_U_DQUOTE] = ACTIONS(3185), + [anon_sym_u8_DQUOTE] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3185), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [anon_sym_NULL] = ACTIONS(3183), + [anon_sym_nullptr] = ACTIONS(3183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3183), + [anon_sym_decltype] = ACTIONS(3183), + [anon_sym_virtual] = ACTIONS(3183), + [anon_sym_alignas] = ACTIONS(3183), + [anon_sym_explicit] = ACTIONS(3183), + [anon_sym_typename] = ACTIONS(3183), + [anon_sym_template] = ACTIONS(3183), + [anon_sym_operator] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_static_assert] = ACTIONS(3183), + [anon_sym_concept] = ACTIONS(3183), + [anon_sym_co_return] = ACTIONS(3183), + [anon_sym_co_yield] = ACTIONS(3183), + [anon_sym_R_DQUOTE] = ACTIONS(3185), + [anon_sym_LR_DQUOTE] = ACTIONS(3185), + [anon_sym_uR_DQUOTE] = ACTIONS(3185), + [anon_sym_UR_DQUOTE] = ACTIONS(3185), + [anon_sym_u8R_DQUOTE] = ACTIONS(3185), + [anon_sym_co_await] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_requires] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), }, [565] = { - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_include_token1] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token2] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [aux_sym_preproc_else_token1] = ACTIONS(3251), - [aux_sym_preproc_elif_token1] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym___cdecl] = ACTIONS(3251), - [anon_sym___clrcall] = ACTIONS(3251), - [anon_sym___stdcall] = ACTIONS(3251), - [anon_sym___fastcall] = ACTIONS(3251), - [anon_sym___thiscall] = ACTIONS(3251), - [anon_sym___vectorcall] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym___try] = ACTIONS(3251), - [anon_sym___leave] = ACTIONS(3251), - [anon_sym_not] = ACTIONS(3251), - [anon_sym_compl] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3251), - [anon_sym___alignof__] = ACTIONS(3251), - [anon_sym___alignof] = ACTIONS(3251), - [anon_sym__alignof] = ACTIONS(3251), - [anon_sym_alignof] = ACTIONS(3251), - [anon_sym__Alignof] = ACTIONS(3251), - [anon_sym_offsetof] = ACTIONS(3251), - [anon_sym__Generic] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym___asm__] = ACTIONS(3251), - [sym_number_literal] = ACTIONS(3253), - [anon_sym_L_SQUOTE] = ACTIONS(3253), - [anon_sym_u_SQUOTE] = ACTIONS(3253), - [anon_sym_U_SQUOTE] = ACTIONS(3253), - [anon_sym_u8_SQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_L_DQUOTE] = ACTIONS(3253), - [anon_sym_u_DQUOTE] = ACTIONS(3253), - [anon_sym_U_DQUOTE] = ACTIONS(3253), - [anon_sym_u8_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [anon_sym_NULL] = ACTIONS(3251), - [anon_sym_nullptr] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), - [anon_sym_concept] = ACTIONS(3251), - [anon_sym_co_return] = ACTIONS(3251), - [anon_sym_co_yield] = ACTIONS(3251), - [anon_sym_R_DQUOTE] = ACTIONS(3253), - [anon_sym_LR_DQUOTE] = ACTIONS(3253), - [anon_sym_uR_DQUOTE] = ACTIONS(3253), - [anon_sym_UR_DQUOTE] = ACTIONS(3253), - [anon_sym_u8R_DQUOTE] = ACTIONS(3253), - [anon_sym_co_await] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_requires] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3179), + [aux_sym_preproc_include_token1] = ACTIONS(3179), + [aux_sym_preproc_def_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token2] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), + [aux_sym_preproc_else_token1] = ACTIONS(3179), + [aux_sym_preproc_elif_token1] = ACTIONS(3179), + [sym_preproc_directive] = ACTIONS(3179), + [anon_sym_LPAREN2] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym___extension__] = ACTIONS(3179), + [anon_sym_typedef] = ACTIONS(3179), + [anon_sym_extern] = ACTIONS(3179), + [anon_sym___attribute__] = ACTIONS(3179), + [anon_sym_COLON_COLON] = ACTIONS(3181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), + [anon_sym___declspec] = ACTIONS(3179), + [anon_sym___based] = ACTIONS(3179), + [anon_sym___cdecl] = ACTIONS(3179), + [anon_sym___clrcall] = ACTIONS(3179), + [anon_sym___stdcall] = ACTIONS(3179), + [anon_sym___fastcall] = ACTIONS(3179), + [anon_sym___thiscall] = ACTIONS(3179), + [anon_sym___vectorcall] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_signed] = ACTIONS(3179), + [anon_sym_unsigned] = ACTIONS(3179), + [anon_sym_long] = ACTIONS(3179), + [anon_sym_short] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_register] = ACTIONS(3179), + [anon_sym_inline] = ACTIONS(3179), + [anon_sym___inline] = ACTIONS(3179), + [anon_sym___inline__] = ACTIONS(3179), + [anon_sym___forceinline] = ACTIONS(3179), + [anon_sym_thread_local] = ACTIONS(3179), + [anon_sym___thread] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_constexpr] = ACTIONS(3179), + [anon_sym_volatile] = ACTIONS(3179), + [anon_sym_restrict] = ACTIONS(3179), + [anon_sym___restrict__] = ACTIONS(3179), + [anon_sym__Atomic] = ACTIONS(3179), + [anon_sym__Noreturn] = ACTIONS(3179), + [anon_sym_noreturn] = ACTIONS(3179), + [anon_sym_mutable] = ACTIONS(3179), + [anon_sym_constinit] = ACTIONS(3179), + [anon_sym_consteval] = ACTIONS(3179), + [sym_primitive_type] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3179), + [anon_sym_case] = ACTIONS(3179), + [anon_sym_default] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_do] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_goto] = ACTIONS(3179), + [anon_sym___try] = ACTIONS(3179), + [anon_sym___leave] = ACTIONS(3179), + [anon_sym_not] = ACTIONS(3179), + [anon_sym_compl] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3179), + [anon_sym___alignof__] = ACTIONS(3179), + [anon_sym___alignof] = ACTIONS(3179), + [anon_sym__alignof] = ACTIONS(3179), + [anon_sym_alignof] = ACTIONS(3179), + [anon_sym__Alignof] = ACTIONS(3179), + [anon_sym_offsetof] = ACTIONS(3179), + [anon_sym__Generic] = ACTIONS(3179), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [anon_sym_L_SQUOTE] = ACTIONS(3181), + [anon_sym_u_SQUOTE] = ACTIONS(3181), + [anon_sym_U_SQUOTE] = ACTIONS(3181), + [anon_sym_u8_SQUOTE] = ACTIONS(3181), + [anon_sym_SQUOTE] = ACTIONS(3181), + [anon_sym_L_DQUOTE] = ACTIONS(3181), + [anon_sym_u_DQUOTE] = ACTIONS(3181), + [anon_sym_U_DQUOTE] = ACTIONS(3181), + [anon_sym_u8_DQUOTE] = ACTIONS(3181), + [anon_sym_DQUOTE] = ACTIONS(3181), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [anon_sym_NULL] = ACTIONS(3179), + [anon_sym_nullptr] = ACTIONS(3179), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3179), + [anon_sym_decltype] = ACTIONS(3179), + [anon_sym_virtual] = ACTIONS(3179), + [anon_sym_alignas] = ACTIONS(3179), + [anon_sym_explicit] = ACTIONS(3179), + [anon_sym_typename] = ACTIONS(3179), + [anon_sym_template] = ACTIONS(3179), + [anon_sym_operator] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3179), + [anon_sym_delete] = ACTIONS(3179), + [anon_sym_throw] = ACTIONS(3179), + [anon_sym_namespace] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3179), + [anon_sym_static_assert] = ACTIONS(3179), + [anon_sym_concept] = ACTIONS(3179), + [anon_sym_co_return] = ACTIONS(3179), + [anon_sym_co_yield] = ACTIONS(3179), + [anon_sym_R_DQUOTE] = ACTIONS(3181), + [anon_sym_LR_DQUOTE] = ACTIONS(3181), + [anon_sym_uR_DQUOTE] = ACTIONS(3181), + [anon_sym_UR_DQUOTE] = ACTIONS(3181), + [anon_sym_u8R_DQUOTE] = ACTIONS(3181), + [anon_sym_co_await] = ACTIONS(3179), + [anon_sym_new] = ACTIONS(3179), + [anon_sym_requires] = ACTIONS(3179), + [sym_this] = ACTIONS(3179), }, [566] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4914), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7466), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7901), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3412), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [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), + [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_extern] = 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___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_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = 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(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_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_virtual] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_typename] = 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_using] = 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(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), + [sym_this] = ACTIONS(3163), }, [567] = { - [sym_identifier] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token2] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [aux_sym_preproc_else_token1] = ACTIONS(3152), - [aux_sym_preproc_elif_token1] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym___extension__] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym___attribute__] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym___declspec] = ACTIONS(3152), - [anon_sym___based] = ACTIONS(3152), - [anon_sym___cdecl] = ACTIONS(3152), - [anon_sym___clrcall] = ACTIONS(3152), - [anon_sym___stdcall] = ACTIONS(3152), - [anon_sym___fastcall] = ACTIONS(3152), - [anon_sym___thiscall] = ACTIONS(3152), - [anon_sym___vectorcall] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym___inline] = ACTIONS(3152), - [anon_sym___inline__] = ACTIONS(3152), - [anon_sym___forceinline] = ACTIONS(3152), - [anon_sym_thread_local] = ACTIONS(3152), - [anon_sym___thread] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_restrict] = ACTIONS(3152), - [anon_sym___restrict__] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [anon_sym__Noreturn] = ACTIONS(3152), - [anon_sym_noreturn] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [anon_sym_constinit] = ACTIONS(3152), - [anon_sym_consteval] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(3152), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [anon_sym___try] = ACTIONS(3152), - [anon_sym___leave] = ACTIONS(3152), - [anon_sym_not] = ACTIONS(3152), - [anon_sym_compl] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym___alignof__] = ACTIONS(3152), - [anon_sym___alignof] = ACTIONS(3152), - [anon_sym__alignof] = ACTIONS(3152), - [anon_sym_alignof] = ACTIONS(3152), - [anon_sym__Alignof] = ACTIONS(3152), - [anon_sym_offsetof] = ACTIONS(3152), - [anon_sym__Generic] = ACTIONS(3152), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3154), - [anon_sym_u_SQUOTE] = ACTIONS(3154), - [anon_sym_U_SQUOTE] = ACTIONS(3154), - [anon_sym_u8_SQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_L_DQUOTE] = ACTIONS(3154), - [anon_sym_u_DQUOTE] = ACTIONS(3154), - [anon_sym_U_DQUOTE] = ACTIONS(3154), - [anon_sym_u8_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [anon_sym_NULL] = ACTIONS(3152), - [anon_sym_nullptr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3152), - [anon_sym_decltype] = ACTIONS(3152), - [anon_sym_virtual] = ACTIONS(3152), - [anon_sym_alignas] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_static_assert] = ACTIONS(3152), - [anon_sym_concept] = ACTIONS(3152), - [anon_sym_co_return] = ACTIONS(3152), - [anon_sym_co_yield] = ACTIONS(3152), - [anon_sym_R_DQUOTE] = ACTIONS(3154), - [anon_sym_LR_DQUOTE] = ACTIONS(3154), - [anon_sym_uR_DQUOTE] = ACTIONS(3154), - [anon_sym_UR_DQUOTE] = ACTIONS(3154), - [anon_sym_u8R_DQUOTE] = ACTIONS(3154), - [anon_sym_co_await] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_requires] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), + [sym_else_clause] = STATE(606), + [ts_builtin_sym_end] = ACTIONS(2853), + [sym_identifier] = ACTIONS(2851), + [aux_sym_preproc_include_token1] = ACTIONS(2851), + [aux_sym_preproc_def_token1] = ACTIONS(2851), + [aux_sym_preproc_if_token1] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2851), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2851), + [sym_preproc_directive] = ACTIONS(2851), + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym___extension__] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2851), + [anon_sym_extern] = ACTIONS(2851), + [anon_sym___attribute__] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), + [anon_sym___declspec] = ACTIONS(2851), + [anon_sym___based] = ACTIONS(2851), + [anon_sym___cdecl] = ACTIONS(2851), + [anon_sym___clrcall] = ACTIONS(2851), + [anon_sym___stdcall] = ACTIONS(2851), + [anon_sym___fastcall] = ACTIONS(2851), + [anon_sym___thiscall] = ACTIONS(2851), + [anon_sym___vectorcall] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2851), + [anon_sym_unsigned] = ACTIONS(2851), + [anon_sym_long] = ACTIONS(2851), + [anon_sym_short] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2851), + [anon_sym_register] = ACTIONS(2851), + [anon_sym_inline] = ACTIONS(2851), + [anon_sym___inline] = ACTIONS(2851), + [anon_sym___inline__] = ACTIONS(2851), + [anon_sym___forceinline] = ACTIONS(2851), + [anon_sym_thread_local] = ACTIONS(2851), + [anon_sym___thread] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_constexpr] = ACTIONS(2851), + [anon_sym_volatile] = ACTIONS(2851), + [anon_sym_restrict] = ACTIONS(2851), + [anon_sym___restrict__] = ACTIONS(2851), + [anon_sym__Atomic] = ACTIONS(2851), + [anon_sym__Noreturn] = ACTIONS(2851), + [anon_sym_noreturn] = ACTIONS(2851), + [anon_sym_mutable] = ACTIONS(2851), + [anon_sym_constinit] = ACTIONS(2851), + [anon_sym_consteval] = ACTIONS(2851), + [sym_primitive_type] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), + [anon_sym_class] = ACTIONS(2851), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_union] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_else] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(2851), + [anon_sym_case] = ACTIONS(2851), + [anon_sym_default] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_do] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_goto] = ACTIONS(2851), + [anon_sym___try] = ACTIONS(2851), + [anon_sym___leave] = ACTIONS(2851), + [anon_sym_not] = ACTIONS(2851), + [anon_sym_compl] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_sizeof] = ACTIONS(2851), + [anon_sym___alignof__] = ACTIONS(2851), + [anon_sym___alignof] = ACTIONS(2851), + [anon_sym__alignof] = ACTIONS(2851), + [anon_sym_alignof] = ACTIONS(2851), + [anon_sym__Alignof] = ACTIONS(2851), + [anon_sym_offsetof] = ACTIONS(2851), + [anon_sym__Generic] = ACTIONS(2851), + [anon_sym_asm] = ACTIONS(2851), + [anon_sym___asm__] = ACTIONS(2851), + [sym_number_literal] = ACTIONS(2853), + [anon_sym_L_SQUOTE] = ACTIONS(2853), + [anon_sym_u_SQUOTE] = ACTIONS(2853), + [anon_sym_U_SQUOTE] = ACTIONS(2853), + [anon_sym_u8_SQUOTE] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2853), + [anon_sym_L_DQUOTE] = ACTIONS(2853), + [anon_sym_u_DQUOTE] = ACTIONS(2853), + [anon_sym_U_DQUOTE] = ACTIONS(2853), + [anon_sym_u8_DQUOTE] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2853), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2851), + [anon_sym_nullptr] = ACTIONS(2851), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2851), + [anon_sym_decltype] = ACTIONS(2851), + [anon_sym_virtual] = ACTIONS(2851), + [anon_sym_alignas] = ACTIONS(2851), + [anon_sym_explicit] = ACTIONS(2851), + [anon_sym_typename] = ACTIONS(2851), + [anon_sym_template] = ACTIONS(2851), + [anon_sym_operator] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [anon_sym_delete] = ACTIONS(2851), + [anon_sym_throw] = ACTIONS(2851), + [anon_sym_namespace] = ACTIONS(2851), + [anon_sym_using] = ACTIONS(2851), + [anon_sym_static_assert] = ACTIONS(2851), + [anon_sym_concept] = ACTIONS(2851), + [anon_sym_co_return] = ACTIONS(2851), + [anon_sym_co_yield] = ACTIONS(2851), + [anon_sym_R_DQUOTE] = ACTIONS(2853), + [anon_sym_LR_DQUOTE] = ACTIONS(2853), + [anon_sym_uR_DQUOTE] = ACTIONS(2853), + [anon_sym_UR_DQUOTE] = ACTIONS(2853), + [anon_sym_u8R_DQUOTE] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(2851), + [anon_sym_requires] = ACTIONS(2851), + [sym_this] = ACTIONS(2851), }, [568] = { - [sym_else_clause] = STATE(618), - [sym_identifier] = ACTIONS(2853), - [aux_sym_preproc_include_token1] = ACTIONS(2853), - [aux_sym_preproc_def_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token1] = ACTIONS(2853), - [aux_sym_preproc_if_token2] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2855), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym___based] = ACTIONS(2853), - [anon_sym___cdecl] = ACTIONS(2853), - [anon_sym___clrcall] = ACTIONS(2853), - [anon_sym___stdcall] = ACTIONS(2853), - [anon_sym___fastcall] = ACTIONS(2853), - [anon_sym___thiscall] = ACTIONS(2853), - [anon_sym___vectorcall] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym___try] = ACTIONS(2853), - [anon_sym___leave] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(2853), - [anon_sym_compl] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_sizeof] = ACTIONS(2853), - [anon_sym___alignof__] = ACTIONS(2853), - [anon_sym___alignof] = ACTIONS(2853), - [anon_sym__alignof] = ACTIONS(2853), - [anon_sym_alignof] = ACTIONS(2853), - [anon_sym__Alignof] = ACTIONS(2853), - [anon_sym_offsetof] = ACTIONS(2853), - [anon_sym__Generic] = ACTIONS(2853), - [anon_sym_asm] = ACTIONS(2853), - [anon_sym___asm__] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2855), - [anon_sym_L_SQUOTE] = ACTIONS(2855), - [anon_sym_u_SQUOTE] = ACTIONS(2855), - [anon_sym_U_SQUOTE] = ACTIONS(2855), - [anon_sym_u8_SQUOTE] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2853), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_explicit] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2853), - [anon_sym_operator] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_using] = ACTIONS(2853), - [anon_sym_static_assert] = ACTIONS(2853), - [anon_sym_concept] = ACTIONS(2853), - [anon_sym_co_return] = ACTIONS(2853), - [anon_sym_co_yield] = 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(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_requires] = ACTIONS(2853), - [sym_this] = ACTIONS(2853), + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_include_token1] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token2] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [aux_sym_preproc_else_token1] = ACTIONS(3159), + [aux_sym_preproc_elif_token1] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym___cdecl] = ACTIONS(3159), + [anon_sym___clrcall] = ACTIONS(3159), + [anon_sym___stdcall] = ACTIONS(3159), + [anon_sym___fastcall] = ACTIONS(3159), + [anon_sym___thiscall] = ACTIONS(3159), + [anon_sym___vectorcall] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_concept] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), }, [569] = { - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_include_token1] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token2] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [aux_sym_preproc_else_token1] = ACTIONS(3160), - [aux_sym_preproc_elif_token1] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym___cdecl] = ACTIONS(3160), - [anon_sym___clrcall] = ACTIONS(3160), - [anon_sym___stdcall] = ACTIONS(3160), - [anon_sym___fastcall] = ACTIONS(3160), - [anon_sym___thiscall] = ACTIONS(3160), - [anon_sym___vectorcall] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_goto] = ACTIONS(3160), - [anon_sym___try] = ACTIONS(3160), - [anon_sym___leave] = ACTIONS(3160), - [anon_sym_not] = ACTIONS(3160), - [anon_sym_compl] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_sizeof] = ACTIONS(3160), - [anon_sym___alignof__] = ACTIONS(3160), - [anon_sym___alignof] = ACTIONS(3160), - [anon_sym__alignof] = ACTIONS(3160), - [anon_sym_alignof] = ACTIONS(3160), - [anon_sym__Alignof] = ACTIONS(3160), - [anon_sym_offsetof] = ACTIONS(3160), - [anon_sym__Generic] = ACTIONS(3160), - [anon_sym_asm] = ACTIONS(3160), - [anon_sym___asm__] = ACTIONS(3160), - [sym_number_literal] = ACTIONS(3162), - [anon_sym_L_SQUOTE] = ACTIONS(3162), - [anon_sym_u_SQUOTE] = ACTIONS(3162), - [anon_sym_U_SQUOTE] = ACTIONS(3162), - [anon_sym_u8_SQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_L_DQUOTE] = ACTIONS(3162), - [anon_sym_u_DQUOTE] = ACTIONS(3162), - [anon_sym_U_DQUOTE] = ACTIONS(3162), - [anon_sym_u8_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3160), - [anon_sym_nullptr] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), - [anon_sym_concept] = ACTIONS(3160), - [anon_sym_co_return] = ACTIONS(3160), - [anon_sym_co_yield] = ACTIONS(3160), - [anon_sym_R_DQUOTE] = ACTIONS(3162), - [anon_sym_LR_DQUOTE] = ACTIONS(3162), - [anon_sym_uR_DQUOTE] = ACTIONS(3162), - [anon_sym_UR_DQUOTE] = ACTIONS(3162), - [anon_sym_u8R_DQUOTE] = ACTIONS(3162), - [anon_sym_co_await] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_requires] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), + [sym_identifier] = ACTIONS(3151), + [aux_sym_preproc_include_token1] = ACTIONS(3151), + [aux_sym_preproc_def_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token2] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [aux_sym_preproc_else_token1] = ACTIONS(3151), + [aux_sym_preproc_elif_token1] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3151), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_extern] = ACTIONS(3151), + [anon_sym___attribute__] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(3151), + [anon_sym___cdecl] = ACTIONS(3151), + [anon_sym___clrcall] = ACTIONS(3151), + [anon_sym___stdcall] = ACTIONS(3151), + [anon_sym___fastcall] = ACTIONS(3151), + [anon_sym___thiscall] = ACTIONS(3151), + [anon_sym___vectorcall] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3151), + [anon_sym_unsigned] = ACTIONS(3151), + [anon_sym_long] = ACTIONS(3151), + [anon_sym_short] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_register] = ACTIONS(3151), + [anon_sym_inline] = ACTIONS(3151), + [anon_sym___inline] = ACTIONS(3151), + [anon_sym___inline__] = ACTIONS(3151), + [anon_sym___forceinline] = ACTIONS(3151), + [anon_sym_thread_local] = ACTIONS(3151), + [anon_sym___thread] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_constexpr] = ACTIONS(3151), + [anon_sym_volatile] = ACTIONS(3151), + [anon_sym_restrict] = ACTIONS(3151), + [anon_sym___restrict__] = ACTIONS(3151), + [anon_sym__Atomic] = ACTIONS(3151), + [anon_sym__Noreturn] = ACTIONS(3151), + [anon_sym_noreturn] = ACTIONS(3151), + [anon_sym_mutable] = ACTIONS(3151), + [anon_sym_constinit] = ACTIONS(3151), + [anon_sym_consteval] = ACTIONS(3151), + [sym_primitive_type] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_case] = ACTIONS(3151), + [anon_sym_default] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_goto] = ACTIONS(3151), + [anon_sym___try] = ACTIONS(3151), + [anon_sym___leave] = ACTIONS(3151), + [anon_sym_not] = ACTIONS(3151), + [anon_sym_compl] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3151), + [anon_sym___alignof__] = ACTIONS(3151), + [anon_sym___alignof] = ACTIONS(3151), + [anon_sym__alignof] = ACTIONS(3151), + [anon_sym_alignof] = ACTIONS(3151), + [anon_sym__Alignof] = ACTIONS(3151), + [anon_sym_offsetof] = ACTIONS(3151), + [anon_sym__Generic] = ACTIONS(3151), + [anon_sym_asm] = ACTIONS(3151), + [anon_sym___asm__] = ACTIONS(3151), + [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(3151), + [sym_false] = ACTIONS(3151), + [anon_sym_NULL] = ACTIONS(3151), + [anon_sym_nullptr] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3151), + [anon_sym_decltype] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3151), + [anon_sym_alignas] = ACTIONS(3151), + [anon_sym_explicit] = ACTIONS(3151), + [anon_sym_typename] = ACTIONS(3151), + [anon_sym_template] = ACTIONS(3151), + [anon_sym_operator] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_static_assert] = ACTIONS(3151), + [anon_sym_concept] = ACTIONS(3151), + [anon_sym_co_return] = ACTIONS(3151), + [anon_sym_co_yield] = ACTIONS(3151), + [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(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_requires] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), }, [570] = { - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_include_token1] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token2] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [aux_sym_preproc_else_token1] = ACTIONS(3148), - [aux_sym_preproc_elif_token1] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym___cdecl] = ACTIONS(3148), - [anon_sym___clrcall] = ACTIONS(3148), - [anon_sym___stdcall] = ACTIONS(3148), - [anon_sym___fastcall] = ACTIONS(3148), - [anon_sym___thiscall] = ACTIONS(3148), - [anon_sym___vectorcall] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_goto] = ACTIONS(3148), - [anon_sym___try] = ACTIONS(3148), - [anon_sym___leave] = ACTIONS(3148), - [anon_sym_not] = ACTIONS(3148), - [anon_sym_compl] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_sizeof] = ACTIONS(3148), - [anon_sym___alignof__] = ACTIONS(3148), - [anon_sym___alignof] = ACTIONS(3148), - [anon_sym__alignof] = ACTIONS(3148), - [anon_sym_alignof] = ACTIONS(3148), - [anon_sym__Alignof] = ACTIONS(3148), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3148), - [anon_sym_asm] = ACTIONS(3148), - [anon_sym___asm__] = ACTIONS(3148), - [sym_number_literal] = ACTIONS(3150), - [anon_sym_L_SQUOTE] = ACTIONS(3150), - [anon_sym_u_SQUOTE] = ACTIONS(3150), - [anon_sym_U_SQUOTE] = ACTIONS(3150), - [anon_sym_u8_SQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_L_DQUOTE] = ACTIONS(3150), - [anon_sym_u_DQUOTE] = ACTIONS(3150), - [anon_sym_U_DQUOTE] = ACTIONS(3150), - [anon_sym_u8_DQUOTE] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [anon_sym_NULL] = ACTIONS(3148), - [anon_sym_nullptr] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - [anon_sym_concept] = ACTIONS(3148), - [anon_sym_co_return] = ACTIONS(3148), - [anon_sym_co_yield] = ACTIONS(3148), - [anon_sym_R_DQUOTE] = ACTIONS(3150), - [anon_sym_LR_DQUOTE] = ACTIONS(3150), - [anon_sym_uR_DQUOTE] = ACTIONS(3150), - [anon_sym_UR_DQUOTE] = ACTIONS(3150), - [anon_sym_u8R_DQUOTE] = ACTIONS(3150), - [anon_sym_co_await] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_requires] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3147), + [aux_sym_preproc_include_token1] = ACTIONS(3147), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token2] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), + [aux_sym_preproc_else_token1] = ACTIONS(3147), + [aux_sym_preproc_elif_token1] = ACTIONS(3147), + [sym_preproc_directive] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_AMP_AMP] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym___extension__] = ACTIONS(3147), + [anon_sym_typedef] = ACTIONS(3147), + [anon_sym_extern] = ACTIONS(3147), + [anon_sym___attribute__] = ACTIONS(3147), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), + [anon_sym___declspec] = ACTIONS(3147), + [anon_sym___based] = ACTIONS(3147), + [anon_sym___cdecl] = ACTIONS(3147), + [anon_sym___clrcall] = ACTIONS(3147), + [anon_sym___stdcall] = ACTIONS(3147), + [anon_sym___fastcall] = ACTIONS(3147), + [anon_sym___thiscall] = ACTIONS(3147), + [anon_sym___vectorcall] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_signed] = ACTIONS(3147), + [anon_sym_unsigned] = ACTIONS(3147), + [anon_sym_long] = ACTIONS(3147), + [anon_sym_short] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_register] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym___inline] = ACTIONS(3147), + [anon_sym___inline__] = ACTIONS(3147), + [anon_sym___forceinline] = ACTIONS(3147), + [anon_sym_thread_local] = ACTIONS(3147), + [anon_sym___thread] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_constexpr] = ACTIONS(3147), + [anon_sym_volatile] = ACTIONS(3147), + [anon_sym_restrict] = ACTIONS(3147), + [anon_sym___restrict__] = ACTIONS(3147), + [anon_sym__Atomic] = ACTIONS(3147), + [anon_sym__Noreturn] = ACTIONS(3147), + [anon_sym_noreturn] = ACTIONS(3147), + [anon_sym_mutable] = ACTIONS(3147), + [anon_sym_constinit] = ACTIONS(3147), + [anon_sym_consteval] = ACTIONS(3147), + [sym_primitive_type] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3147), + [anon_sym_case] = ACTIONS(3147), + [anon_sym_default] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_goto] = ACTIONS(3147), + [anon_sym___try] = ACTIONS(3147), + [anon_sym___leave] = ACTIONS(3147), + [anon_sym_not] = ACTIONS(3147), + [anon_sym_compl] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3147), + [anon_sym___alignof__] = ACTIONS(3147), + [anon_sym___alignof] = ACTIONS(3147), + [anon_sym__alignof] = ACTIONS(3147), + [anon_sym_alignof] = ACTIONS(3147), + [anon_sym__Alignof] = ACTIONS(3147), + [anon_sym_offsetof] = ACTIONS(3147), + [anon_sym__Generic] = ACTIONS(3147), + [anon_sym_asm] = ACTIONS(3147), + [anon_sym___asm__] = ACTIONS(3147), + [sym_number_literal] = ACTIONS(3149), + [anon_sym_L_SQUOTE] = ACTIONS(3149), + [anon_sym_u_SQUOTE] = ACTIONS(3149), + [anon_sym_U_SQUOTE] = ACTIONS(3149), + [anon_sym_u8_SQUOTE] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_L_DQUOTE] = ACTIONS(3149), + [anon_sym_u_DQUOTE] = ACTIONS(3149), + [anon_sym_U_DQUOTE] = ACTIONS(3149), + [anon_sym_u8_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(3149), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [anon_sym_NULL] = ACTIONS(3147), + [anon_sym_nullptr] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3147), + [anon_sym_decltype] = ACTIONS(3147), + [anon_sym_virtual] = ACTIONS(3147), + [anon_sym_alignas] = ACTIONS(3147), + [anon_sym_explicit] = ACTIONS(3147), + [anon_sym_typename] = ACTIONS(3147), + [anon_sym_template] = ACTIONS(3147), + [anon_sym_operator] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(3147), + [anon_sym_throw] = ACTIONS(3147), + [anon_sym_namespace] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_static_assert] = ACTIONS(3147), + [anon_sym_concept] = ACTIONS(3147), + [anon_sym_co_return] = ACTIONS(3147), + [anon_sym_co_yield] = ACTIONS(3147), + [anon_sym_R_DQUOTE] = ACTIONS(3149), + [anon_sym_LR_DQUOTE] = ACTIONS(3149), + [anon_sym_uR_DQUOTE] = ACTIONS(3149), + [anon_sym_UR_DQUOTE] = ACTIONS(3149), + [anon_sym_u8R_DQUOTE] = ACTIONS(3149), + [anon_sym_co_await] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_requires] = ACTIONS(3147), + [sym_this] = ACTIONS(3147), }, [571] = { - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_include_token1] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token2] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [aux_sym_preproc_else_token1] = ACTIONS(3160), - [aux_sym_preproc_elif_token1] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym___cdecl] = ACTIONS(3160), - [anon_sym___clrcall] = ACTIONS(3160), - [anon_sym___stdcall] = ACTIONS(3160), - [anon_sym___fastcall] = ACTIONS(3160), - [anon_sym___thiscall] = ACTIONS(3160), - [anon_sym___vectorcall] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_goto] = ACTIONS(3160), - [anon_sym___try] = ACTIONS(3160), - [anon_sym___leave] = ACTIONS(3160), - [anon_sym_not] = ACTIONS(3160), - [anon_sym_compl] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_sizeof] = ACTIONS(3160), - [anon_sym___alignof__] = ACTIONS(3160), - [anon_sym___alignof] = ACTIONS(3160), - [anon_sym__alignof] = ACTIONS(3160), - [anon_sym_alignof] = ACTIONS(3160), - [anon_sym__Alignof] = ACTIONS(3160), - [anon_sym_offsetof] = ACTIONS(3160), - [anon_sym__Generic] = ACTIONS(3160), - [anon_sym_asm] = ACTIONS(3160), - [anon_sym___asm__] = ACTIONS(3160), - [sym_number_literal] = ACTIONS(3162), - [anon_sym_L_SQUOTE] = ACTIONS(3162), - [anon_sym_u_SQUOTE] = ACTIONS(3162), - [anon_sym_U_SQUOTE] = ACTIONS(3162), - [anon_sym_u8_SQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_L_DQUOTE] = ACTIONS(3162), - [anon_sym_u_DQUOTE] = ACTIONS(3162), - [anon_sym_U_DQUOTE] = ACTIONS(3162), - [anon_sym_u8_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3160), - [anon_sym_nullptr] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), - [anon_sym_concept] = ACTIONS(3160), - [anon_sym_co_return] = ACTIONS(3160), - [anon_sym_co_yield] = ACTIONS(3160), - [anon_sym_R_DQUOTE] = ACTIONS(3162), - [anon_sym_LR_DQUOTE] = ACTIONS(3162), - [anon_sym_uR_DQUOTE] = ACTIONS(3162), - [anon_sym_UR_DQUOTE] = ACTIONS(3162), - [anon_sym_u8R_DQUOTE] = ACTIONS(3162), - [anon_sym_co_await] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_requires] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_include_token1] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym___cdecl] = ACTIONS(2863), + [anon_sym___clrcall] = ACTIONS(2863), + [anon_sym___stdcall] = ACTIONS(2863), + [anon_sym___fastcall] = ACTIONS(2863), + [anon_sym___thiscall] = ACTIONS(2863), + [anon_sym___vectorcall] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_else] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2863), + [anon_sym_case] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_do] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_goto] = ACTIONS(2863), + [anon_sym___try] = ACTIONS(2863), + [anon_sym___leave] = ACTIONS(2863), + [anon_sym_not] = ACTIONS(2863), + [anon_sym_compl] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_sizeof] = ACTIONS(2863), + [anon_sym___alignof__] = ACTIONS(2863), + [anon_sym___alignof] = ACTIONS(2863), + [anon_sym__alignof] = ACTIONS(2863), + [anon_sym_alignof] = ACTIONS(2863), + [anon_sym__Alignof] = ACTIONS(2863), + [anon_sym_offsetof] = ACTIONS(2863), + [anon_sym__Generic] = ACTIONS(2863), + [anon_sym_asm] = ACTIONS(2863), + [anon_sym___asm__] = ACTIONS(2863), + [sym_number_literal] = ACTIONS(2865), + [anon_sym_L_SQUOTE] = ACTIONS(2865), + [anon_sym_u_SQUOTE] = ACTIONS(2865), + [anon_sym_U_SQUOTE] = ACTIONS(2865), + [anon_sym_u8_SQUOTE] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2865), + [anon_sym_L_DQUOTE] = ACTIONS(2865), + [anon_sym_u_DQUOTE] = ACTIONS(2865), + [anon_sym_U_DQUOTE] = ACTIONS(2865), + [anon_sym_u8_DQUOTE] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2865), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [anon_sym_NULL] = ACTIONS(2863), + [anon_sym_nullptr] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [anon_sym_delete] = ACTIONS(2863), + [anon_sym_throw] = ACTIONS(2863), + [anon_sym_namespace] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), + [anon_sym_concept] = ACTIONS(2863), + [anon_sym_co_return] = ACTIONS(2863), + [anon_sym_co_yield] = ACTIONS(2863), + [anon_sym_catch] = ACTIONS(2863), + [anon_sym_R_DQUOTE] = ACTIONS(2865), + [anon_sym_LR_DQUOTE] = ACTIONS(2865), + [anon_sym_uR_DQUOTE] = ACTIONS(2865), + [anon_sym_UR_DQUOTE] = ACTIONS(2865), + [anon_sym_u8R_DQUOTE] = ACTIONS(2865), + [anon_sym_co_await] = ACTIONS(2863), + [anon_sym_new] = ACTIONS(2863), + [anon_sym_requires] = ACTIONS(2863), + [sym_this] = ACTIONS(2863), }, [572] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4824), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7384), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7846), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [sym_identifier] = ACTIONS(3262), + [aux_sym_preproc_include_token1] = ACTIONS(3262), + [aux_sym_preproc_def_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token2] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3262), + [aux_sym_preproc_else_token1] = ACTIONS(3262), + [aux_sym_preproc_elif_token1] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym___extension__] = ACTIONS(3262), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3264), + [anon_sym___declspec] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3262), + [anon_sym___cdecl] = ACTIONS(3262), + [anon_sym___clrcall] = ACTIONS(3262), + [anon_sym___stdcall] = ACTIONS(3262), + [anon_sym___fastcall] = ACTIONS(3262), + [anon_sym___thiscall] = ACTIONS(3262), + [anon_sym___vectorcall] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_signed] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym___inline] = ACTIONS(3262), + [anon_sym___inline__] = ACTIONS(3262), + [anon_sym___forceinline] = ACTIONS(3262), + [anon_sym_thread_local] = ACTIONS(3262), + [anon_sym___thread] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym___try] = ACTIONS(3262), + [anon_sym___leave] = ACTIONS(3262), + [anon_sym_not] = ACTIONS(3262), + [anon_sym_compl] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [anon_sym___alignof__] = ACTIONS(3262), + [anon_sym___alignof] = ACTIONS(3262), + [anon_sym__alignof] = ACTIONS(3262), + [anon_sym_alignof] = ACTIONS(3262), + [anon_sym__Alignof] = ACTIONS(3262), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), + [anon_sym___asm__] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [anon_sym_L_SQUOTE] = ACTIONS(3264), + [anon_sym_u_SQUOTE] = ACTIONS(3264), + [anon_sym_U_SQUOTE] = ACTIONS(3264), + [anon_sym_u8_SQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_L_DQUOTE] = ACTIONS(3264), + [anon_sym_u_DQUOTE] = ACTIONS(3264), + [anon_sym_U_DQUOTE] = ACTIONS(3264), + [anon_sym_u8_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_virtual] = ACTIONS(3262), + [anon_sym_alignas] = ACTIONS(3262), + [anon_sym_explicit] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3262), + [anon_sym_template] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_static_assert] = ACTIONS(3262), + [anon_sym_concept] = ACTIONS(3262), + [anon_sym_co_return] = ACTIONS(3262), + [anon_sym_co_yield] = ACTIONS(3262), + [anon_sym_R_DQUOTE] = ACTIONS(3264), + [anon_sym_LR_DQUOTE] = ACTIONS(3264), + [anon_sym_uR_DQUOTE] = ACTIONS(3264), + [anon_sym_UR_DQUOTE] = ACTIONS(3264), + [anon_sym_u8R_DQUOTE] = ACTIONS(3264), + [anon_sym_co_await] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_requires] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), + }, + [573] = { + [sym_identifier] = ACTIONS(3215), + [aux_sym_preproc_include_token1] = ACTIONS(3215), + [aux_sym_preproc_def_token1] = ACTIONS(3215), + [aux_sym_preproc_if_token1] = ACTIONS(3215), + [aux_sym_preproc_if_token2] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3215), + [aux_sym_preproc_else_token1] = ACTIONS(3215), + [aux_sym_preproc_elif_token1] = ACTIONS(3215), + [sym_preproc_directive] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_AMP_AMP] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym___extension__] = ACTIONS(3215), + [anon_sym_typedef] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym___attribute__] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), + [anon_sym___declspec] = ACTIONS(3215), + [anon_sym___based] = ACTIONS(3215), + [anon_sym___cdecl] = ACTIONS(3215), + [anon_sym___clrcall] = ACTIONS(3215), + [anon_sym___stdcall] = ACTIONS(3215), + [anon_sym___fastcall] = ACTIONS(3215), + [anon_sym___thiscall] = ACTIONS(3215), + [anon_sym___vectorcall] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_signed] = ACTIONS(3215), + [anon_sym_unsigned] = ACTIONS(3215), + [anon_sym_long] = ACTIONS(3215), + [anon_sym_short] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_register] = ACTIONS(3215), + [anon_sym_inline] = ACTIONS(3215), + [anon_sym___inline] = ACTIONS(3215), + [anon_sym___inline__] = ACTIONS(3215), + [anon_sym___forceinline] = ACTIONS(3215), + [anon_sym_thread_local] = ACTIONS(3215), + [anon_sym___thread] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_constexpr] = ACTIONS(3215), + [anon_sym_volatile] = ACTIONS(3215), + [anon_sym_restrict] = ACTIONS(3215), + [anon_sym___restrict__] = ACTIONS(3215), + [anon_sym__Atomic] = ACTIONS(3215), + [anon_sym__Noreturn] = ACTIONS(3215), + [anon_sym_noreturn] = ACTIONS(3215), + [anon_sym_mutable] = ACTIONS(3215), + [anon_sym_constinit] = ACTIONS(3215), + [anon_sym_consteval] = ACTIONS(3215), + [sym_primitive_type] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3215), + [anon_sym_union] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_case] = ACTIONS(3215), + [anon_sym_default] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_goto] = ACTIONS(3215), + [anon_sym___try] = ACTIONS(3215), + [anon_sym___leave] = ACTIONS(3215), + [anon_sym_not] = ACTIONS(3215), + [anon_sym_compl] = ACTIONS(3215), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_sizeof] = ACTIONS(3215), + [anon_sym___alignof__] = ACTIONS(3215), + [anon_sym___alignof] = ACTIONS(3215), + [anon_sym__alignof] = ACTIONS(3215), + [anon_sym_alignof] = ACTIONS(3215), + [anon_sym__Alignof] = ACTIONS(3215), + [anon_sym_offsetof] = ACTIONS(3215), + [anon_sym__Generic] = ACTIONS(3215), + [anon_sym_asm] = ACTIONS(3215), + [anon_sym___asm__] = ACTIONS(3215), + [sym_number_literal] = ACTIONS(3217), + [anon_sym_L_SQUOTE] = ACTIONS(3217), + [anon_sym_u_SQUOTE] = ACTIONS(3217), + [anon_sym_U_SQUOTE] = ACTIONS(3217), + [anon_sym_u8_SQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_L_DQUOTE] = ACTIONS(3217), + [anon_sym_u_DQUOTE] = ACTIONS(3217), + [anon_sym_U_DQUOTE] = ACTIONS(3217), + [anon_sym_u8_DQUOTE] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [sym_true] = ACTIONS(3215), + [sym_false] = ACTIONS(3215), + [anon_sym_NULL] = ACTIONS(3215), + [anon_sym_nullptr] = ACTIONS(3215), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3215), + [anon_sym_decltype] = ACTIONS(3215), + [anon_sym_virtual] = ACTIONS(3215), + [anon_sym_alignas] = ACTIONS(3215), + [anon_sym_explicit] = ACTIONS(3215), + [anon_sym_typename] = ACTIONS(3215), + [anon_sym_template] = ACTIONS(3215), + [anon_sym_operator] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_delete] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_namespace] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_static_assert] = ACTIONS(3215), + [anon_sym_concept] = ACTIONS(3215), + [anon_sym_co_return] = ACTIONS(3215), + [anon_sym_co_yield] = ACTIONS(3215), + [anon_sym_R_DQUOTE] = ACTIONS(3217), + [anon_sym_LR_DQUOTE] = ACTIONS(3217), + [anon_sym_uR_DQUOTE] = ACTIONS(3217), + [anon_sym_UR_DQUOTE] = ACTIONS(3217), + [anon_sym_u8R_DQUOTE] = ACTIONS(3217), + [anon_sym_co_await] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_requires] = ACTIONS(3215), + [sym_this] = ACTIONS(3215), + }, + [574] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4885), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7566), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7879), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -169743,263 +170342,799 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3414), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_GT2] = ACTIONS(3426), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [573] = { - [sym_identifier] = ACTIONS(3190), - [aux_sym_preproc_include_token1] = ACTIONS(3190), - [aux_sym_preproc_def_token1] = ACTIONS(3190), - [aux_sym_preproc_if_token1] = ACTIONS(3190), - [aux_sym_preproc_if_token2] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3190), - [aux_sym_preproc_else_token1] = ACTIONS(3190), - [aux_sym_preproc_elif_token1] = ACTIONS(3190), - [sym_preproc_directive] = ACTIONS(3190), - [anon_sym_LPAREN2] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_STAR] = ACTIONS(3192), - [anon_sym_AMP_AMP] = ACTIONS(3192), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym___extension__] = ACTIONS(3190), - [anon_sym_typedef] = ACTIONS(3190), - [anon_sym_extern] = ACTIONS(3190), - [anon_sym___attribute__] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(3192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3192), - [anon_sym___declspec] = ACTIONS(3190), - [anon_sym___based] = ACTIONS(3190), - [anon_sym___cdecl] = ACTIONS(3190), - [anon_sym___clrcall] = ACTIONS(3190), - [anon_sym___stdcall] = ACTIONS(3190), - [anon_sym___fastcall] = ACTIONS(3190), - [anon_sym___thiscall] = ACTIONS(3190), - [anon_sym___vectorcall] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_signed] = ACTIONS(3190), - [anon_sym_unsigned] = ACTIONS(3190), - [anon_sym_long] = ACTIONS(3190), - [anon_sym_short] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_register] = ACTIONS(3190), - [anon_sym_inline] = ACTIONS(3190), - [anon_sym___inline] = ACTIONS(3190), - [anon_sym___inline__] = ACTIONS(3190), - [anon_sym___forceinline] = ACTIONS(3190), - [anon_sym_thread_local] = ACTIONS(3190), - [anon_sym___thread] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_constexpr] = ACTIONS(3190), - [anon_sym_volatile] = ACTIONS(3190), - [anon_sym_restrict] = ACTIONS(3190), - [anon_sym___restrict__] = ACTIONS(3190), - [anon_sym__Atomic] = ACTIONS(3190), - [anon_sym__Noreturn] = ACTIONS(3190), - [anon_sym_noreturn] = ACTIONS(3190), - [anon_sym_mutable] = ACTIONS(3190), - [anon_sym_constinit] = ACTIONS(3190), - [anon_sym_consteval] = ACTIONS(3190), - [sym_primitive_type] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_struct] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3190), - [anon_sym_default] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_goto] = ACTIONS(3190), - [anon_sym___try] = ACTIONS(3190), - [anon_sym___leave] = ACTIONS(3190), - [anon_sym_not] = ACTIONS(3190), - [anon_sym_compl] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_sizeof] = ACTIONS(3190), - [anon_sym___alignof__] = ACTIONS(3190), - [anon_sym___alignof] = ACTIONS(3190), - [anon_sym__alignof] = ACTIONS(3190), - [anon_sym_alignof] = ACTIONS(3190), - [anon_sym__Alignof] = ACTIONS(3190), - [anon_sym_offsetof] = ACTIONS(3190), - [anon_sym__Generic] = ACTIONS(3190), - [anon_sym_asm] = ACTIONS(3190), - [anon_sym___asm__] = ACTIONS(3190), - [sym_number_literal] = ACTIONS(3192), - [anon_sym_L_SQUOTE] = ACTIONS(3192), - [anon_sym_u_SQUOTE] = ACTIONS(3192), - [anon_sym_U_SQUOTE] = ACTIONS(3192), - [anon_sym_u8_SQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_L_DQUOTE] = ACTIONS(3192), - [anon_sym_u_DQUOTE] = ACTIONS(3192), - [anon_sym_U_DQUOTE] = ACTIONS(3192), - [anon_sym_u8_DQUOTE] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [anon_sym_NULL] = ACTIONS(3190), - [anon_sym_nullptr] = ACTIONS(3190), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3190), - [anon_sym_decltype] = ACTIONS(3190), - [anon_sym_virtual] = ACTIONS(3190), - [anon_sym_alignas] = ACTIONS(3190), - [anon_sym_explicit] = ACTIONS(3190), - [anon_sym_typename] = ACTIONS(3190), - [anon_sym_template] = ACTIONS(3190), - [anon_sym_operator] = ACTIONS(3190), - [anon_sym_try] = ACTIONS(3190), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_throw] = ACTIONS(3190), - [anon_sym_namespace] = ACTIONS(3190), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_static_assert] = ACTIONS(3190), - [anon_sym_concept] = ACTIONS(3190), - [anon_sym_co_return] = ACTIONS(3190), - [anon_sym_co_yield] = ACTIONS(3190), - [anon_sym_R_DQUOTE] = ACTIONS(3192), - [anon_sym_LR_DQUOTE] = ACTIONS(3192), - [anon_sym_uR_DQUOTE] = ACTIONS(3192), - [anon_sym_UR_DQUOTE] = ACTIONS(3192), - [anon_sym_u8R_DQUOTE] = ACTIONS(3192), - [anon_sym_co_await] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_requires] = ACTIONS(3190), - [sym_this] = ACTIONS(3190), + [575] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [aux_sym_preproc_else_token1] = ACTIONS(3004), + [aux_sym_preproc_elif_token1] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym___try] = ACTIONS(3004), + [anon_sym___leave] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym___alignof__] = ACTIONS(3004), + [anon_sym___alignof] = ACTIONS(3004), + [anon_sym__alignof] = ACTIONS(3004), + [anon_sym_alignof] = ACTIONS(3004), + [anon_sym__Alignof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), }, - [574] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4905), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7507), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7922), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [576] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [aux_sym_preproc_else_token1] = ACTIONS(3004), + [aux_sym_preproc_elif_token1] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym___try] = ACTIONS(3004), + [anon_sym___leave] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym___alignof__] = ACTIONS(3004), + [anon_sym___alignof] = ACTIONS(3004), + [anon_sym__alignof] = ACTIONS(3004), + [anon_sym_alignof] = ACTIONS(3004), + [anon_sym__Alignof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), + }, + [577] = { + [sym_identifier] = ACTIONS(3106), + [aux_sym_preproc_include_token1] = ACTIONS(3106), + [aux_sym_preproc_def_token1] = ACTIONS(3106), + [aux_sym_preproc_if_token1] = ACTIONS(3106), + [aux_sym_preproc_if_token2] = ACTIONS(3106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3106), + [aux_sym_preproc_else_token1] = ACTIONS(3106), + [aux_sym_preproc_elif_token1] = ACTIONS(3106), + [sym_preproc_directive] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3106), + [anon_sym_typedef] = ACTIONS(3106), + [anon_sym_extern] = ACTIONS(3106), + [anon_sym___attribute__] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3106), + [anon_sym___based] = ACTIONS(3106), + [anon_sym___cdecl] = ACTIONS(3106), + [anon_sym___clrcall] = ACTIONS(3106), + [anon_sym___stdcall] = ACTIONS(3106), + [anon_sym___fastcall] = ACTIONS(3106), + [anon_sym___thiscall] = ACTIONS(3106), + [anon_sym___vectorcall] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3106), + [anon_sym_unsigned] = ACTIONS(3106), + [anon_sym_long] = ACTIONS(3106), + [anon_sym_short] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_register] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym___inline] = ACTIONS(3106), + [anon_sym___inline__] = ACTIONS(3106), + [anon_sym___forceinline] = ACTIONS(3106), + [anon_sym_thread_local] = ACTIONS(3106), + [anon_sym___thread] = ACTIONS(3106), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_constexpr] = ACTIONS(3106), + [anon_sym_volatile] = ACTIONS(3106), + [anon_sym_restrict] = ACTIONS(3106), + [anon_sym___restrict__] = ACTIONS(3106), + [anon_sym__Atomic] = ACTIONS(3106), + [anon_sym__Noreturn] = ACTIONS(3106), + [anon_sym_noreturn] = ACTIONS(3106), + [anon_sym_mutable] = ACTIONS(3106), + [anon_sym_constinit] = ACTIONS(3106), + [anon_sym_consteval] = ACTIONS(3106), + [sym_primitive_type] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [anon_sym_class] = ACTIONS(3106), + [anon_sym_struct] = ACTIONS(3106), + [anon_sym_union] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_switch] = ACTIONS(3106), + [anon_sym_case] = ACTIONS(3106), + [anon_sym_default] = ACTIONS(3106), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_do] = ACTIONS(3106), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_goto] = ACTIONS(3106), + [anon_sym___try] = ACTIONS(3106), + [anon_sym___leave] = ACTIONS(3106), + [anon_sym_not] = ACTIONS(3106), + [anon_sym_compl] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_sizeof] = ACTIONS(3106), + [anon_sym___alignof__] = ACTIONS(3106), + [anon_sym___alignof] = ACTIONS(3106), + [anon_sym__alignof] = ACTIONS(3106), + [anon_sym_alignof] = ACTIONS(3106), + [anon_sym__Alignof] = ACTIONS(3106), + [anon_sym_offsetof] = ACTIONS(3106), + [anon_sym__Generic] = ACTIONS(3106), + [anon_sym_asm] = ACTIONS(3106), + [anon_sym___asm__] = ACTIONS(3106), + [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(3106), + [sym_false] = ACTIONS(3106), + [anon_sym_NULL] = ACTIONS(3106), + [anon_sym_nullptr] = ACTIONS(3106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3106), + [anon_sym_decltype] = ACTIONS(3106), + [anon_sym_virtual] = ACTIONS(3106), + [anon_sym_alignas] = ACTIONS(3106), + [anon_sym_explicit] = ACTIONS(3106), + [anon_sym_typename] = ACTIONS(3106), + [anon_sym_template] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_delete] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_namespace] = ACTIONS(3106), + [anon_sym_using] = ACTIONS(3106), + [anon_sym_static_assert] = ACTIONS(3106), + [anon_sym_concept] = ACTIONS(3106), + [anon_sym_co_return] = ACTIONS(3106), + [anon_sym_co_yield] = ACTIONS(3106), + [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(3106), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_requires] = ACTIONS(3106), + [sym_this] = ACTIONS(3106), + }, + [578] = { + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_include_token1] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3227), + [aux_sym_preproc_if_token1] = ACTIONS(3227), + [aux_sym_preproc_if_token2] = ACTIONS(3227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), + [aux_sym_preproc_else_token1] = ACTIONS(3227), + [aux_sym_preproc_elif_token1] = ACTIONS(3227), + [sym_preproc_directive] = ACTIONS(3227), + [anon_sym_LPAREN2] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym___extension__] = ACTIONS(3227), + [anon_sym_typedef] = ACTIONS(3227), + [anon_sym_extern] = ACTIONS(3227), + [anon_sym___attribute__] = ACTIONS(3227), + [anon_sym_COLON_COLON] = ACTIONS(3229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), + [anon_sym___declspec] = ACTIONS(3227), + [anon_sym___based] = ACTIONS(3227), + [anon_sym___cdecl] = ACTIONS(3227), + [anon_sym___clrcall] = ACTIONS(3227), + [anon_sym___stdcall] = ACTIONS(3227), + [anon_sym___fastcall] = ACTIONS(3227), + [anon_sym___thiscall] = ACTIONS(3227), + [anon_sym___vectorcall] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_signed] = ACTIONS(3227), + [anon_sym_unsigned] = ACTIONS(3227), + [anon_sym_long] = ACTIONS(3227), + [anon_sym_short] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_register] = ACTIONS(3227), + [anon_sym_inline] = ACTIONS(3227), + [anon_sym___inline] = ACTIONS(3227), + [anon_sym___inline__] = ACTIONS(3227), + [anon_sym___forceinline] = ACTIONS(3227), + [anon_sym_thread_local] = ACTIONS(3227), + [anon_sym___thread] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_constexpr] = ACTIONS(3227), + [anon_sym_volatile] = ACTIONS(3227), + [anon_sym_restrict] = ACTIONS(3227), + [anon_sym___restrict__] = ACTIONS(3227), + [anon_sym__Atomic] = ACTIONS(3227), + [anon_sym__Noreturn] = ACTIONS(3227), + [anon_sym_noreturn] = ACTIONS(3227), + [anon_sym_mutable] = ACTIONS(3227), + [anon_sym_constinit] = ACTIONS(3227), + [anon_sym_consteval] = ACTIONS(3227), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_struct] = ACTIONS(3227), + [anon_sym_union] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_case] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_goto] = ACTIONS(3227), + [anon_sym___try] = ACTIONS(3227), + [anon_sym___leave] = ACTIONS(3227), + [anon_sym_not] = ACTIONS(3227), + [anon_sym_compl] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_sizeof] = ACTIONS(3227), + [anon_sym___alignof__] = ACTIONS(3227), + [anon_sym___alignof] = ACTIONS(3227), + [anon_sym__alignof] = ACTIONS(3227), + [anon_sym_alignof] = ACTIONS(3227), + [anon_sym__Alignof] = ACTIONS(3227), + [anon_sym_offsetof] = ACTIONS(3227), + [anon_sym__Generic] = ACTIONS(3227), + [anon_sym_asm] = ACTIONS(3227), + [anon_sym___asm__] = ACTIONS(3227), + [sym_number_literal] = ACTIONS(3229), + [anon_sym_L_SQUOTE] = ACTIONS(3229), + [anon_sym_u_SQUOTE] = ACTIONS(3229), + [anon_sym_U_SQUOTE] = ACTIONS(3229), + [anon_sym_u8_SQUOTE] = ACTIONS(3229), + [anon_sym_SQUOTE] = ACTIONS(3229), + [anon_sym_L_DQUOTE] = ACTIONS(3229), + [anon_sym_u_DQUOTE] = ACTIONS(3229), + [anon_sym_U_DQUOTE] = ACTIONS(3229), + [anon_sym_u8_DQUOTE] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [anon_sym_NULL] = ACTIONS(3227), + [anon_sym_nullptr] = ACTIONS(3227), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3227), + [anon_sym_decltype] = ACTIONS(3227), + [anon_sym_virtual] = ACTIONS(3227), + [anon_sym_alignas] = ACTIONS(3227), + [anon_sym_explicit] = ACTIONS(3227), + [anon_sym_typename] = ACTIONS(3227), + [anon_sym_template] = ACTIONS(3227), + [anon_sym_operator] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_static_assert] = ACTIONS(3227), + [anon_sym_concept] = ACTIONS(3227), + [anon_sym_co_return] = ACTIONS(3227), + [anon_sym_co_yield] = ACTIONS(3227), + [anon_sym_R_DQUOTE] = ACTIONS(3229), + [anon_sym_LR_DQUOTE] = ACTIONS(3229), + [anon_sym_uR_DQUOTE] = ACTIONS(3229), + [anon_sym_UR_DQUOTE] = ACTIONS(3229), + [anon_sym_u8R_DQUOTE] = ACTIONS(3229), + [anon_sym_co_await] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_requires] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + }, + [579] = { + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_include_token1] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token2] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [aux_sym_preproc_else_token1] = ACTIONS(3223), + [aux_sym_preproc_elif_token1] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym___cdecl] = ACTIONS(3223), + [anon_sym___clrcall] = ACTIONS(3223), + [anon_sym___stdcall] = ACTIONS(3223), + [anon_sym___fastcall] = ACTIONS(3223), + [anon_sym___thiscall] = ACTIONS(3223), + [anon_sym___vectorcall] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_case] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_goto] = ACTIONS(3223), + [anon_sym___try] = ACTIONS(3223), + [anon_sym___leave] = ACTIONS(3223), + [anon_sym_not] = ACTIONS(3223), + [anon_sym_compl] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_sizeof] = ACTIONS(3223), + [anon_sym___alignof__] = ACTIONS(3223), + [anon_sym___alignof] = ACTIONS(3223), + [anon_sym__alignof] = ACTIONS(3223), + [anon_sym_alignof] = ACTIONS(3223), + [anon_sym__Alignof] = ACTIONS(3223), + [anon_sym_offsetof] = ACTIONS(3223), + [anon_sym__Generic] = ACTIONS(3223), + [anon_sym_asm] = ACTIONS(3223), + [anon_sym___asm__] = ACTIONS(3223), + [sym_number_literal] = ACTIONS(3225), + [anon_sym_L_SQUOTE] = ACTIONS(3225), + [anon_sym_u_SQUOTE] = ACTIONS(3225), + [anon_sym_U_SQUOTE] = ACTIONS(3225), + [anon_sym_u8_SQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_L_DQUOTE] = ACTIONS(3225), + [anon_sym_u_DQUOTE] = ACTIONS(3225), + [anon_sym_U_DQUOTE] = ACTIONS(3225), + [anon_sym_u8_DQUOTE] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [anon_sym_NULL] = ACTIONS(3223), + [anon_sym_nullptr] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + [anon_sym_concept] = ACTIONS(3223), + [anon_sym_co_return] = ACTIONS(3223), + [anon_sym_co_yield] = ACTIONS(3223), + [anon_sym_R_DQUOTE] = ACTIONS(3225), + [anon_sym_LR_DQUOTE] = ACTIONS(3225), + [anon_sym_uR_DQUOTE] = ACTIONS(3225), + [anon_sym_UR_DQUOTE] = ACTIONS(3225), + [anon_sym_u8R_DQUOTE] = ACTIONS(3225), + [anon_sym_co_await] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_requires] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + }, + [580] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4834), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7619), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7673), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -170011,665 +171146,2005 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3416), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [575] = { - [sym_identifier] = ACTIONS(3302), - [aux_sym_preproc_include_token1] = ACTIONS(3302), - [aux_sym_preproc_def_token1] = ACTIONS(3302), - [aux_sym_preproc_if_token1] = ACTIONS(3302), - [aux_sym_preproc_if_token2] = ACTIONS(3302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), - [aux_sym_preproc_else_token1] = ACTIONS(3302), - [aux_sym_preproc_elif_token1] = ACTIONS(3302), - [sym_preproc_directive] = ACTIONS(3302), - [anon_sym_LPAREN2] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_AMP_AMP] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym___extension__] = ACTIONS(3302), - [anon_sym_typedef] = ACTIONS(3302), - [anon_sym_extern] = ACTIONS(3302), - [anon_sym___attribute__] = ACTIONS(3302), - [anon_sym_COLON_COLON] = ACTIONS(3304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), - [anon_sym___declspec] = ACTIONS(3302), - [anon_sym___based] = ACTIONS(3302), - [anon_sym___cdecl] = ACTIONS(3302), - [anon_sym___clrcall] = ACTIONS(3302), - [anon_sym___stdcall] = ACTIONS(3302), - [anon_sym___fastcall] = ACTIONS(3302), - [anon_sym___thiscall] = ACTIONS(3302), - [anon_sym___vectorcall] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_signed] = ACTIONS(3302), - [anon_sym_unsigned] = ACTIONS(3302), - [anon_sym_long] = ACTIONS(3302), - [anon_sym_short] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym___inline] = ACTIONS(3302), - [anon_sym___inline__] = ACTIONS(3302), - [anon_sym___forceinline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym___thread] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym___restrict__] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym__Noreturn] = ACTIONS(3302), - [anon_sym_noreturn] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constinit] = ACTIONS(3302), - [anon_sym_consteval] = ACTIONS(3302), - [sym_primitive_type] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_struct] = ACTIONS(3302), - [anon_sym_union] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_goto] = ACTIONS(3302), - [anon_sym___try] = ACTIONS(3302), - [anon_sym___leave] = ACTIONS(3302), - [anon_sym_not] = ACTIONS(3302), - [anon_sym_compl] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_sizeof] = ACTIONS(3302), - [anon_sym___alignof__] = ACTIONS(3302), - [anon_sym___alignof] = ACTIONS(3302), - [anon_sym__alignof] = ACTIONS(3302), - [anon_sym_alignof] = ACTIONS(3302), - [anon_sym__Alignof] = ACTIONS(3302), - [anon_sym_offsetof] = ACTIONS(3302), - [anon_sym__Generic] = ACTIONS(3302), - [anon_sym_asm] = ACTIONS(3302), - [anon_sym___asm__] = ACTIONS(3302), - [sym_number_literal] = ACTIONS(3304), - [anon_sym_L_SQUOTE] = ACTIONS(3304), - [anon_sym_u_SQUOTE] = ACTIONS(3304), - [anon_sym_U_SQUOTE] = ACTIONS(3304), - [anon_sym_u8_SQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_L_DQUOTE] = ACTIONS(3304), - [anon_sym_u_DQUOTE] = ACTIONS(3304), - [anon_sym_U_DQUOTE] = ACTIONS(3304), - [anon_sym_u8_DQUOTE] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [anon_sym_NULL] = ACTIONS(3302), - [anon_sym_nullptr] = ACTIONS(3302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3302), - [anon_sym_decltype] = ACTIONS(3302), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_alignas] = ACTIONS(3302), - [anon_sym_explicit] = ACTIONS(3302), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_template] = ACTIONS(3302), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_static_assert] = ACTIONS(3302), - [anon_sym_concept] = ACTIONS(3302), - [anon_sym_co_return] = ACTIONS(3302), - [anon_sym_co_yield] = ACTIONS(3302), - [anon_sym_R_DQUOTE] = ACTIONS(3304), - [anon_sym_LR_DQUOTE] = ACTIONS(3304), - [anon_sym_uR_DQUOTE] = ACTIONS(3304), - [anon_sym_UR_DQUOTE] = ACTIONS(3304), - [anon_sym_u8R_DQUOTE] = ACTIONS(3304), - [anon_sym_co_await] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_requires] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), + [anon_sym_GT2] = ACTIONS(3428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [576] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4868), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7529), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7943), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3418), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [581] = { + [sym_identifier] = ACTIONS(3266), + [aux_sym_preproc_include_token1] = ACTIONS(3266), + [aux_sym_preproc_def_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token2] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), + [aux_sym_preproc_else_token1] = ACTIONS(3266), + [aux_sym_preproc_elif_token1] = ACTIONS(3266), + [sym_preproc_directive] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym___extension__] = ACTIONS(3266), + [anon_sym_typedef] = ACTIONS(3266), + [anon_sym_extern] = ACTIONS(3266), + [anon_sym___attribute__] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(3268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), + [anon_sym___declspec] = ACTIONS(3266), + [anon_sym___based] = ACTIONS(3266), + [anon_sym___cdecl] = ACTIONS(3266), + [anon_sym___clrcall] = ACTIONS(3266), + [anon_sym___stdcall] = ACTIONS(3266), + [anon_sym___fastcall] = ACTIONS(3266), + [anon_sym___thiscall] = ACTIONS(3266), + [anon_sym___vectorcall] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_signed] = ACTIONS(3266), + [anon_sym_unsigned] = ACTIONS(3266), + [anon_sym_long] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3266), + [anon_sym_inline] = ACTIONS(3266), + [anon_sym___inline] = ACTIONS(3266), + [anon_sym___inline__] = ACTIONS(3266), + [anon_sym___forceinline] = ACTIONS(3266), + [anon_sym_thread_local] = ACTIONS(3266), + [anon_sym___thread] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_constexpr] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym___restrict__] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym__Noreturn] = ACTIONS(3266), + [anon_sym_noreturn] = ACTIONS(3266), + [anon_sym_mutable] = ACTIONS(3266), + [anon_sym_constinit] = ACTIONS(3266), + [anon_sym_consteval] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym___try] = ACTIONS(3266), + [anon_sym___leave] = ACTIONS(3266), + [anon_sym_not] = ACTIONS(3266), + [anon_sym_compl] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_sizeof] = ACTIONS(3266), + [anon_sym___alignof__] = ACTIONS(3266), + [anon_sym___alignof] = ACTIONS(3266), + [anon_sym__alignof] = ACTIONS(3266), + [anon_sym_alignof] = ACTIONS(3266), + [anon_sym__Alignof] = ACTIONS(3266), + [anon_sym_offsetof] = ACTIONS(3266), + [anon_sym__Generic] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym___asm__] = ACTIONS(3266), + [sym_number_literal] = ACTIONS(3268), + [anon_sym_L_SQUOTE] = ACTIONS(3268), + [anon_sym_u_SQUOTE] = ACTIONS(3268), + [anon_sym_U_SQUOTE] = ACTIONS(3268), + [anon_sym_u8_SQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_L_DQUOTE] = ACTIONS(3268), + [anon_sym_u_DQUOTE] = ACTIONS(3268), + [anon_sym_U_DQUOTE] = ACTIONS(3268), + [anon_sym_u8_DQUOTE] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [anon_sym_NULL] = ACTIONS(3266), + [anon_sym_nullptr] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3266), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_virtual] = ACTIONS(3266), + [anon_sym_alignas] = ACTIONS(3266), + [anon_sym_explicit] = ACTIONS(3266), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3266), + [anon_sym_operator] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_static_assert] = ACTIONS(3266), + [anon_sym_concept] = ACTIONS(3266), + [anon_sym_co_return] = ACTIONS(3266), + [anon_sym_co_yield] = ACTIONS(3266), + [anon_sym_R_DQUOTE] = ACTIONS(3268), + [anon_sym_LR_DQUOTE] = ACTIONS(3268), + [anon_sym_uR_DQUOTE] = ACTIONS(3268), + [anon_sym_UR_DQUOTE] = ACTIONS(3268), + [anon_sym_u8R_DQUOTE] = ACTIONS(3268), + [anon_sym_co_await] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_requires] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), }, - [577] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4828), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7562), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7963), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3420), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [582] = { + [sym_identifier] = ACTIONS(2993), + [aux_sym_preproc_include_token1] = ACTIONS(2993), + [aux_sym_preproc_def_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token2] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), + [aux_sym_preproc_else_token1] = ACTIONS(2993), + [aux_sym_preproc_elif_token1] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym___attribute__] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), + [anon_sym___declspec] = ACTIONS(2993), + [anon_sym___based] = ACTIONS(2993), + [anon_sym___cdecl] = ACTIONS(2993), + [anon_sym___clrcall] = ACTIONS(2993), + [anon_sym___stdcall] = ACTIONS(2993), + [anon_sym___fastcall] = ACTIONS(2993), + [anon_sym___thiscall] = ACTIONS(2993), + [anon_sym___vectorcall] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2993), + [anon_sym_unsigned] = ACTIONS(2993), + [anon_sym_long] = ACTIONS(2993), + [anon_sym_short] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_register] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym___inline] = ACTIONS(2993), + [anon_sym___inline__] = ACTIONS(2993), + [anon_sym___forceinline] = ACTIONS(2993), + [anon_sym_thread_local] = ACTIONS(2993), + [anon_sym___thread] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_constexpr] = ACTIONS(2993), + [anon_sym_volatile] = ACTIONS(2993), + [anon_sym_restrict] = ACTIONS(2993), + [anon_sym___restrict__] = ACTIONS(2993), + [anon_sym__Atomic] = ACTIONS(2993), + [anon_sym__Noreturn] = ACTIONS(2993), + [anon_sym_noreturn] = ACTIONS(2993), + [anon_sym_mutable] = ACTIONS(2993), + [anon_sym_constinit] = ACTIONS(2993), + [anon_sym_consteval] = ACTIONS(2993), + [sym_primitive_type] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym___try] = ACTIONS(2993), + [anon_sym___leave] = ACTIONS(2993), + [anon_sym_not] = ACTIONS(2993), + [anon_sym_compl] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2993), + [anon_sym___alignof] = ACTIONS(2993), + [anon_sym__alignof] = ACTIONS(2993), + [anon_sym_alignof] = ACTIONS(2993), + [anon_sym__Alignof] = ACTIONS(2993), + [anon_sym_offsetof] = ACTIONS(2993), + [anon_sym__Generic] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym___asm__] = ACTIONS(2993), + [sym_number_literal] = ACTIONS(2995), + [anon_sym_L_SQUOTE] = ACTIONS(2995), + [anon_sym_u_SQUOTE] = ACTIONS(2995), + [anon_sym_U_SQUOTE] = ACTIONS(2995), + [anon_sym_u8_SQUOTE] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_L_DQUOTE] = ACTIONS(2995), + [anon_sym_u_DQUOTE] = ACTIONS(2995), + [anon_sym_U_DQUOTE] = ACTIONS(2995), + [anon_sym_u8_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [anon_sym_NULL] = ACTIONS(2993), + [anon_sym_nullptr] = ACTIONS(2993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2993), + [anon_sym_virtual] = ACTIONS(2993), + [anon_sym_alignas] = ACTIONS(2993), + [anon_sym_explicit] = ACTIONS(2993), + [anon_sym_typename] = ACTIONS(2993), + [anon_sym_template] = ACTIONS(2993), + [anon_sym_operator] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_delete] = ACTIONS(2993), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_namespace] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_static_assert] = ACTIONS(2993), + [anon_sym_concept] = ACTIONS(2993), + [anon_sym_co_return] = ACTIONS(2993), + [anon_sym_co_yield] = ACTIONS(2993), + [anon_sym_R_DQUOTE] = ACTIONS(2995), + [anon_sym_LR_DQUOTE] = ACTIONS(2995), + [anon_sym_uR_DQUOTE] = ACTIONS(2995), + [anon_sym_UR_DQUOTE] = ACTIONS(2995), + [anon_sym_u8R_DQUOTE] = ACTIONS(2995), + [anon_sym_co_await] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_requires] = ACTIONS(2993), + [sym_this] = ACTIONS(2993), }, - [578] = { - [sym_identifier] = ACTIONS(3144), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3144), - [aux_sym_preproc_if_token1] = ACTIONS(3144), - [aux_sym_preproc_if_token2] = ACTIONS(3144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3144), - [aux_sym_preproc_else_token1] = ACTIONS(3144), - [aux_sym_preproc_elif_token1] = ACTIONS(3144), - [sym_preproc_directive] = ACTIONS(3144), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3144), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym___extension__] = ACTIONS(3144), - [anon_sym_typedef] = ACTIONS(3144), - [anon_sym_extern] = ACTIONS(3144), - [anon_sym___attribute__] = ACTIONS(3144), - [anon_sym_COLON_COLON] = ACTIONS(3146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3146), - [anon_sym___declspec] = ACTIONS(3144), - [anon_sym___based] = ACTIONS(3144), - [anon_sym___cdecl] = ACTIONS(3144), - [anon_sym___clrcall] = ACTIONS(3144), - [anon_sym___stdcall] = ACTIONS(3144), - [anon_sym___fastcall] = ACTIONS(3144), - [anon_sym___thiscall] = ACTIONS(3144), - [anon_sym___vectorcall] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_signed] = ACTIONS(3144), - [anon_sym_unsigned] = ACTIONS(3144), - [anon_sym_long] = ACTIONS(3144), - [anon_sym_short] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_register] = ACTIONS(3144), - [anon_sym_inline] = ACTIONS(3144), - [anon_sym___inline] = ACTIONS(3144), - [anon_sym___inline__] = ACTIONS(3144), - [anon_sym___forceinline] = ACTIONS(3144), - [anon_sym_thread_local] = ACTIONS(3144), - [anon_sym___thread] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_constexpr] = ACTIONS(3144), - [anon_sym_volatile] = ACTIONS(3144), - [anon_sym_restrict] = ACTIONS(3144), - [anon_sym___restrict__] = ACTIONS(3144), - [anon_sym__Atomic] = ACTIONS(3144), - [anon_sym__Noreturn] = ACTIONS(3144), - [anon_sym_noreturn] = ACTIONS(3144), - [anon_sym_mutable] = ACTIONS(3144), - [anon_sym_constinit] = ACTIONS(3144), - [anon_sym_consteval] = ACTIONS(3144), - [sym_primitive_type] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_struct] = ACTIONS(3144), - [anon_sym_union] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_case] = ACTIONS(3144), - [anon_sym_default] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_goto] = ACTIONS(3144), - [anon_sym___try] = ACTIONS(3144), - [anon_sym___leave] = ACTIONS(3144), - [anon_sym_not] = ACTIONS(3144), - [anon_sym_compl] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3144), - [anon_sym___alignof] = ACTIONS(3144), - [anon_sym__alignof] = ACTIONS(3144), - [anon_sym_alignof] = ACTIONS(3144), - [anon_sym__Alignof] = ACTIONS(3144), - [anon_sym_offsetof] = ACTIONS(3144), - [anon_sym__Generic] = ACTIONS(3144), - [anon_sym_asm] = ACTIONS(3144), - [anon_sym___asm__] = ACTIONS(3144), - [sym_number_literal] = ACTIONS(3146), - [anon_sym_L_SQUOTE] = ACTIONS(3146), - [anon_sym_u_SQUOTE] = ACTIONS(3146), - [anon_sym_U_SQUOTE] = ACTIONS(3146), - [anon_sym_u8_SQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_L_DQUOTE] = ACTIONS(3146), - [anon_sym_u_DQUOTE] = ACTIONS(3146), - [anon_sym_U_DQUOTE] = ACTIONS(3146), - [anon_sym_u8_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [anon_sym_NULL] = ACTIONS(3144), - [anon_sym_nullptr] = ACTIONS(3144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3144), - [anon_sym_decltype] = ACTIONS(3144), - [anon_sym_virtual] = ACTIONS(3144), - [anon_sym_alignas] = ACTIONS(3144), - [anon_sym_explicit] = ACTIONS(3144), - [anon_sym_typename] = ACTIONS(3144), - [anon_sym_template] = ACTIONS(3144), - [anon_sym_operator] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3144), - [anon_sym_static_assert] = ACTIONS(3144), - [anon_sym_concept] = ACTIONS(3144), - [anon_sym_co_return] = ACTIONS(3144), - [anon_sym_co_yield] = ACTIONS(3144), - [anon_sym_R_DQUOTE] = ACTIONS(3146), - [anon_sym_LR_DQUOTE] = ACTIONS(3146), - [anon_sym_uR_DQUOTE] = ACTIONS(3146), - [anon_sym_UR_DQUOTE] = ACTIONS(3146), - [anon_sym_u8R_DQUOTE] = ACTIONS(3146), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_requires] = ACTIONS(3144), - [sym_this] = ACTIONS(3144), + [583] = { + [sym_identifier] = ACTIONS(3274), + [aux_sym_preproc_include_token1] = ACTIONS(3274), + [aux_sym_preproc_def_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token2] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), + [aux_sym_preproc_else_token1] = ACTIONS(3274), + [aux_sym_preproc_elif_token1] = ACTIONS(3274), + [sym_preproc_directive] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym___extension__] = ACTIONS(3274), + [anon_sym_typedef] = ACTIONS(3274), + [anon_sym_extern] = ACTIONS(3274), + [anon_sym___attribute__] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3274), + [anon_sym___based] = ACTIONS(3274), + [anon_sym___cdecl] = ACTIONS(3274), + [anon_sym___clrcall] = ACTIONS(3274), + [anon_sym___stdcall] = ACTIONS(3274), + [anon_sym___fastcall] = ACTIONS(3274), + [anon_sym___thiscall] = ACTIONS(3274), + [anon_sym___vectorcall] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_signed] = ACTIONS(3274), + [anon_sym_unsigned] = ACTIONS(3274), + [anon_sym_long] = ACTIONS(3274), + [anon_sym_short] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_register] = ACTIONS(3274), + [anon_sym_inline] = ACTIONS(3274), + [anon_sym___inline] = ACTIONS(3274), + [anon_sym___inline__] = ACTIONS(3274), + [anon_sym___forceinline] = ACTIONS(3274), + [anon_sym_thread_local] = ACTIONS(3274), + [anon_sym___thread] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_constexpr] = ACTIONS(3274), + [anon_sym_volatile] = ACTIONS(3274), + [anon_sym_restrict] = ACTIONS(3274), + [anon_sym___restrict__] = ACTIONS(3274), + [anon_sym__Atomic] = ACTIONS(3274), + [anon_sym__Noreturn] = ACTIONS(3274), + [anon_sym_noreturn] = ACTIONS(3274), + [anon_sym_mutable] = ACTIONS(3274), + [anon_sym_constinit] = ACTIONS(3274), + [anon_sym_consteval] = ACTIONS(3274), + [sym_primitive_type] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_union] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym___try] = ACTIONS(3274), + [anon_sym___leave] = ACTIONS(3274), + [anon_sym_not] = ACTIONS(3274), + [anon_sym_compl] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_sizeof] = ACTIONS(3274), + [anon_sym___alignof__] = ACTIONS(3274), + [anon_sym___alignof] = ACTIONS(3274), + [anon_sym__alignof] = ACTIONS(3274), + [anon_sym_alignof] = ACTIONS(3274), + [anon_sym__Alignof] = ACTIONS(3274), + [anon_sym_offsetof] = ACTIONS(3274), + [anon_sym__Generic] = ACTIONS(3274), + [anon_sym_asm] = ACTIONS(3274), + [anon_sym___asm__] = ACTIONS(3274), + [sym_number_literal] = ACTIONS(3276), + [anon_sym_L_SQUOTE] = ACTIONS(3276), + [anon_sym_u_SQUOTE] = ACTIONS(3276), + [anon_sym_U_SQUOTE] = ACTIONS(3276), + [anon_sym_u8_SQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_L_DQUOTE] = ACTIONS(3276), + [anon_sym_u_DQUOTE] = ACTIONS(3276), + [anon_sym_U_DQUOTE] = ACTIONS(3276), + [anon_sym_u8_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [anon_sym_NULL] = ACTIONS(3274), + [anon_sym_nullptr] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3274), + [anon_sym_decltype] = ACTIONS(3274), + [anon_sym_virtual] = ACTIONS(3274), + [anon_sym_alignas] = ACTIONS(3274), + [anon_sym_explicit] = ACTIONS(3274), + [anon_sym_typename] = ACTIONS(3274), + [anon_sym_template] = ACTIONS(3274), + [anon_sym_operator] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_static_assert] = ACTIONS(3274), + [anon_sym_concept] = ACTIONS(3274), + [anon_sym_co_return] = ACTIONS(3274), + [anon_sym_co_yield] = ACTIONS(3274), + [anon_sym_R_DQUOTE] = ACTIONS(3276), + [anon_sym_LR_DQUOTE] = ACTIONS(3276), + [anon_sym_uR_DQUOTE] = ACTIONS(3276), + [anon_sym_UR_DQUOTE] = ACTIONS(3276), + [anon_sym_u8R_DQUOTE] = ACTIONS(3276), + [anon_sym_co_await] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_requires] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), }, - [579] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4825), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7572), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7983), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), + [584] = { + [sym_identifier] = ACTIONS(3282), + [aux_sym_preproc_include_token1] = ACTIONS(3282), + [aux_sym_preproc_def_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token2] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [aux_sym_preproc_else_token1] = ACTIONS(3282), + [aux_sym_preproc_elif_token1] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym___extension__] = ACTIONS(3282), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym___attribute__] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), + [anon_sym___declspec] = ACTIONS(3282), + [anon_sym___based] = ACTIONS(3282), + [anon_sym___cdecl] = ACTIONS(3282), + [anon_sym___clrcall] = ACTIONS(3282), + [anon_sym___stdcall] = ACTIONS(3282), + [anon_sym___fastcall] = ACTIONS(3282), + [anon_sym___thiscall] = ACTIONS(3282), + [anon_sym___vectorcall] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_signed] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym___inline] = ACTIONS(3282), + [anon_sym___inline__] = ACTIONS(3282), + [anon_sym___forceinline] = ACTIONS(3282), + [anon_sym_thread_local] = ACTIONS(3282), + [anon_sym___thread] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_constexpr] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym___restrict__] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym__Noreturn] = ACTIONS(3282), + [anon_sym_noreturn] = ACTIONS(3282), + [anon_sym_mutable] = ACTIONS(3282), + [anon_sym_constinit] = ACTIONS(3282), + [anon_sym_consteval] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym___try] = ACTIONS(3282), + [anon_sym___leave] = ACTIONS(3282), + [anon_sym_not] = ACTIONS(3282), + [anon_sym_compl] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [anon_sym___alignof__] = ACTIONS(3282), + [anon_sym___alignof] = ACTIONS(3282), + [anon_sym__alignof] = ACTIONS(3282), + [anon_sym_alignof] = ACTIONS(3282), + [anon_sym__Alignof] = ACTIONS(3282), + [anon_sym_offsetof] = ACTIONS(3282), + [anon_sym__Generic] = ACTIONS(3282), + [anon_sym_asm] = ACTIONS(3282), + [anon_sym___asm__] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [anon_sym_L_SQUOTE] = ACTIONS(3284), + [anon_sym_u_SQUOTE] = ACTIONS(3284), + [anon_sym_U_SQUOTE] = ACTIONS(3284), + [anon_sym_u8_SQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_L_DQUOTE] = ACTIONS(3284), + [anon_sym_u_DQUOTE] = ACTIONS(3284), + [anon_sym_U_DQUOTE] = ACTIONS(3284), + [anon_sym_u8_DQUOTE] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [anon_sym_NULL] = ACTIONS(3282), + [anon_sym_nullptr] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3282), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_virtual] = ACTIONS(3282), + [anon_sym_alignas] = ACTIONS(3282), + [anon_sym_explicit] = ACTIONS(3282), + [anon_sym_typename] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3282), + [anon_sym_operator] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_static_assert] = ACTIONS(3282), + [anon_sym_concept] = ACTIONS(3282), + [anon_sym_co_return] = ACTIONS(3282), + [anon_sym_co_yield] = ACTIONS(3282), + [anon_sym_R_DQUOTE] = ACTIONS(3284), + [anon_sym_LR_DQUOTE] = ACTIONS(3284), + [anon_sym_uR_DQUOTE] = ACTIONS(3284), + [anon_sym_UR_DQUOTE] = ACTIONS(3284), + [anon_sym_u8R_DQUOTE] = ACTIONS(3284), + [anon_sym_co_await] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_requires] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), + }, + [585] = { + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_include_token1] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [aux_sym_preproc_else_token1] = ACTIONS(3294), + [aux_sym_preproc_elif_token1] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym___cdecl] = ACTIONS(3294), + [anon_sym___clrcall] = ACTIONS(3294), + [anon_sym___stdcall] = ACTIONS(3294), + [anon_sym___fastcall] = ACTIONS(3294), + [anon_sym___thiscall] = ACTIONS(3294), + [anon_sym___vectorcall] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_goto] = ACTIONS(3294), + [anon_sym___try] = ACTIONS(3294), + [anon_sym___leave] = ACTIONS(3294), + [anon_sym_not] = ACTIONS(3294), + [anon_sym_compl] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_sizeof] = ACTIONS(3294), + [anon_sym___alignof__] = ACTIONS(3294), + [anon_sym___alignof] = ACTIONS(3294), + [anon_sym__alignof] = ACTIONS(3294), + [anon_sym_alignof] = ACTIONS(3294), + [anon_sym__Alignof] = ACTIONS(3294), + [anon_sym_offsetof] = ACTIONS(3294), + [anon_sym__Generic] = ACTIONS(3294), + [anon_sym_asm] = ACTIONS(3294), + [anon_sym___asm__] = ACTIONS(3294), + [sym_number_literal] = ACTIONS(3296), + [anon_sym_L_SQUOTE] = ACTIONS(3296), + [anon_sym_u_SQUOTE] = ACTIONS(3296), + [anon_sym_U_SQUOTE] = ACTIONS(3296), + [anon_sym_u8_SQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_L_DQUOTE] = ACTIONS(3296), + [anon_sym_u_DQUOTE] = ACTIONS(3296), + [anon_sym_U_DQUOTE] = ACTIONS(3296), + [anon_sym_u8_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [anon_sym_NULL] = ACTIONS(3294), + [anon_sym_nullptr] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [anon_sym_concept] = ACTIONS(3294), + [anon_sym_co_return] = ACTIONS(3294), + [anon_sym_co_yield] = ACTIONS(3294), + [anon_sym_R_DQUOTE] = ACTIONS(3296), + [anon_sym_LR_DQUOTE] = ACTIONS(3296), + [anon_sym_uR_DQUOTE] = ACTIONS(3296), + [anon_sym_UR_DQUOTE] = ACTIONS(3296), + [anon_sym_u8R_DQUOTE] = ACTIONS(3296), + [anon_sym_co_await] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), + }, + [586] = { + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_include_token1] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym___cdecl] = ACTIONS(2863), + [anon_sym___clrcall] = ACTIONS(2863), + [anon_sym___stdcall] = ACTIONS(2863), + [anon_sym___fastcall] = ACTIONS(2863), + [anon_sym___thiscall] = ACTIONS(2863), + [anon_sym___vectorcall] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_else] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2863), + [anon_sym_case] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_do] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_goto] = ACTIONS(2863), + [anon_sym___try] = ACTIONS(2863), + [anon_sym___leave] = ACTIONS(2863), + [anon_sym_not] = ACTIONS(2863), + [anon_sym_compl] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_sizeof] = ACTIONS(2863), + [anon_sym___alignof__] = ACTIONS(2863), + [anon_sym___alignof] = ACTIONS(2863), + [anon_sym__alignof] = ACTIONS(2863), + [anon_sym_alignof] = ACTIONS(2863), + [anon_sym__Alignof] = ACTIONS(2863), + [anon_sym_offsetof] = ACTIONS(2863), + [anon_sym__Generic] = ACTIONS(2863), + [anon_sym_asm] = ACTIONS(2863), + [anon_sym___asm__] = ACTIONS(2863), + [sym_number_literal] = ACTIONS(2865), + [anon_sym_L_SQUOTE] = ACTIONS(2865), + [anon_sym_u_SQUOTE] = ACTIONS(2865), + [anon_sym_U_SQUOTE] = ACTIONS(2865), + [anon_sym_u8_SQUOTE] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2865), + [anon_sym_L_DQUOTE] = ACTIONS(2865), + [anon_sym_u_DQUOTE] = ACTIONS(2865), + [anon_sym_U_DQUOTE] = ACTIONS(2865), + [anon_sym_u8_DQUOTE] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2865), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [anon_sym_NULL] = ACTIONS(2863), + [anon_sym_nullptr] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [anon_sym_delete] = ACTIONS(2863), + [anon_sym_throw] = ACTIONS(2863), + [anon_sym_namespace] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), + [anon_sym_concept] = ACTIONS(2863), + [anon_sym_co_return] = ACTIONS(2863), + [anon_sym_co_yield] = ACTIONS(2863), + [anon_sym_catch] = ACTIONS(2863), + [anon_sym_R_DQUOTE] = ACTIONS(2865), + [anon_sym_LR_DQUOTE] = ACTIONS(2865), + [anon_sym_uR_DQUOTE] = ACTIONS(2865), + [anon_sym_UR_DQUOTE] = ACTIONS(2865), + [anon_sym_u8R_DQUOTE] = ACTIONS(2865), + [anon_sym_co_await] = ACTIONS(2863), + [anon_sym_new] = ACTIONS(2863), + [anon_sym_requires] = ACTIONS(2863), + [sym_this] = ACTIONS(2863), + }, + [587] = { + [sym_identifier] = ACTIONS(3211), + [aux_sym_preproc_include_token1] = ACTIONS(3211), + [aux_sym_preproc_def_token1] = ACTIONS(3211), + [aux_sym_preproc_if_token1] = ACTIONS(3211), + [aux_sym_preproc_if_token2] = ACTIONS(3211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), + [aux_sym_preproc_else_token1] = ACTIONS(3211), + [aux_sym_preproc_elif_token1] = ACTIONS(3211), + [sym_preproc_directive] = ACTIONS(3211), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_AMP_AMP] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym___extension__] = ACTIONS(3211), + [anon_sym_typedef] = ACTIONS(3211), + [anon_sym_extern] = ACTIONS(3211), + [anon_sym___attribute__] = ACTIONS(3211), + [anon_sym_COLON_COLON] = ACTIONS(3213), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), + [anon_sym___declspec] = ACTIONS(3211), + [anon_sym___based] = ACTIONS(3211), + [anon_sym___cdecl] = ACTIONS(3211), + [anon_sym___clrcall] = ACTIONS(3211), + [anon_sym___stdcall] = ACTIONS(3211), + [anon_sym___fastcall] = ACTIONS(3211), + [anon_sym___thiscall] = ACTIONS(3211), + [anon_sym___vectorcall] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_signed] = ACTIONS(3211), + [anon_sym_unsigned] = ACTIONS(3211), + [anon_sym_long] = ACTIONS(3211), + [anon_sym_short] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_register] = ACTIONS(3211), + [anon_sym_inline] = ACTIONS(3211), + [anon_sym___inline] = ACTIONS(3211), + [anon_sym___inline__] = ACTIONS(3211), + [anon_sym___forceinline] = ACTIONS(3211), + [anon_sym_thread_local] = ACTIONS(3211), + [anon_sym___thread] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_constexpr] = ACTIONS(3211), + [anon_sym_volatile] = ACTIONS(3211), + [anon_sym_restrict] = ACTIONS(3211), + [anon_sym___restrict__] = ACTIONS(3211), + [anon_sym__Atomic] = ACTIONS(3211), + [anon_sym__Noreturn] = ACTIONS(3211), + [anon_sym_noreturn] = ACTIONS(3211), + [anon_sym_mutable] = ACTIONS(3211), + [anon_sym_constinit] = ACTIONS(3211), + [anon_sym_consteval] = ACTIONS(3211), + [sym_primitive_type] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3211), + [anon_sym_union] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_case] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_goto] = ACTIONS(3211), + [anon_sym___try] = ACTIONS(3211), + [anon_sym___leave] = ACTIONS(3211), + [anon_sym_not] = ACTIONS(3211), + [anon_sym_compl] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_sizeof] = ACTIONS(3211), + [anon_sym___alignof__] = ACTIONS(3211), + [anon_sym___alignof] = ACTIONS(3211), + [anon_sym__alignof] = ACTIONS(3211), + [anon_sym_alignof] = ACTIONS(3211), + [anon_sym__Alignof] = ACTIONS(3211), + [anon_sym_offsetof] = ACTIONS(3211), + [anon_sym__Generic] = ACTIONS(3211), + [anon_sym_asm] = ACTIONS(3211), + [anon_sym___asm__] = ACTIONS(3211), + [sym_number_literal] = ACTIONS(3213), + [anon_sym_L_SQUOTE] = ACTIONS(3213), + [anon_sym_u_SQUOTE] = ACTIONS(3213), + [anon_sym_U_SQUOTE] = ACTIONS(3213), + [anon_sym_u8_SQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_L_DQUOTE] = ACTIONS(3213), + [anon_sym_u_DQUOTE] = ACTIONS(3213), + [anon_sym_U_DQUOTE] = ACTIONS(3213), + [anon_sym_u8_DQUOTE] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [anon_sym_NULL] = ACTIONS(3211), + [anon_sym_nullptr] = ACTIONS(3211), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3211), + [anon_sym_decltype] = ACTIONS(3211), + [anon_sym_virtual] = ACTIONS(3211), + [anon_sym_alignas] = ACTIONS(3211), + [anon_sym_explicit] = ACTIONS(3211), + [anon_sym_typename] = ACTIONS(3211), + [anon_sym_template] = ACTIONS(3211), + [anon_sym_operator] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_delete] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_static_assert] = ACTIONS(3211), + [anon_sym_concept] = ACTIONS(3211), + [anon_sym_co_return] = ACTIONS(3211), + [anon_sym_co_yield] = ACTIONS(3211), + [anon_sym_R_DQUOTE] = ACTIONS(3213), + [anon_sym_LR_DQUOTE] = ACTIONS(3213), + [anon_sym_uR_DQUOTE] = ACTIONS(3213), + [anon_sym_UR_DQUOTE] = ACTIONS(3213), + [anon_sym_u8R_DQUOTE] = ACTIONS(3213), + [anon_sym_co_await] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_requires] = ACTIONS(3211), + [sym_this] = ACTIONS(3211), + }, + [588] = { + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_include_token1] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token2] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym___cdecl] = ACTIONS(2863), + [anon_sym___clrcall] = ACTIONS(2863), + [anon_sym___stdcall] = ACTIONS(2863), + [anon_sym___fastcall] = ACTIONS(2863), + [anon_sym___thiscall] = ACTIONS(2863), + [anon_sym___vectorcall] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_else] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2863), + [anon_sym_case] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_do] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_goto] = ACTIONS(2863), + [anon_sym___try] = ACTIONS(2863), + [anon_sym___leave] = ACTIONS(2863), + [anon_sym_not] = ACTIONS(2863), + [anon_sym_compl] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_sizeof] = ACTIONS(2863), + [anon_sym___alignof__] = ACTIONS(2863), + [anon_sym___alignof] = ACTIONS(2863), + [anon_sym__alignof] = ACTIONS(2863), + [anon_sym_alignof] = ACTIONS(2863), + [anon_sym__Alignof] = ACTIONS(2863), + [anon_sym_offsetof] = ACTIONS(2863), + [anon_sym__Generic] = ACTIONS(2863), + [anon_sym_asm] = ACTIONS(2863), + [anon_sym___asm__] = ACTIONS(2863), + [sym_number_literal] = ACTIONS(2865), + [anon_sym_L_SQUOTE] = ACTIONS(2865), + [anon_sym_u_SQUOTE] = ACTIONS(2865), + [anon_sym_U_SQUOTE] = ACTIONS(2865), + [anon_sym_u8_SQUOTE] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2865), + [anon_sym_L_DQUOTE] = ACTIONS(2865), + [anon_sym_u_DQUOTE] = ACTIONS(2865), + [anon_sym_U_DQUOTE] = ACTIONS(2865), + [anon_sym_u8_DQUOTE] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2865), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [anon_sym_NULL] = ACTIONS(2863), + [anon_sym_nullptr] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [anon_sym_delete] = ACTIONS(2863), + [anon_sym_throw] = ACTIONS(2863), + [anon_sym_namespace] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), + [anon_sym_concept] = ACTIONS(2863), + [anon_sym_co_return] = ACTIONS(2863), + [anon_sym_co_yield] = ACTIONS(2863), + [anon_sym_catch] = ACTIONS(2863), + [anon_sym_R_DQUOTE] = ACTIONS(2865), + [anon_sym_LR_DQUOTE] = ACTIONS(2865), + [anon_sym_uR_DQUOTE] = ACTIONS(2865), + [anon_sym_UR_DQUOTE] = ACTIONS(2865), + [anon_sym_u8R_DQUOTE] = ACTIONS(2865), + [anon_sym_co_await] = ACTIONS(2863), + [anon_sym_new] = ACTIONS(2863), + [anon_sym_requires] = ACTIONS(2863), + [sym_this] = ACTIONS(2863), + }, + [589] = { + [sym_identifier] = ACTIONS(3240), + [aux_sym_preproc_include_token1] = ACTIONS(3240), + [aux_sym_preproc_def_token1] = ACTIONS(3240), + [aux_sym_preproc_if_token1] = ACTIONS(3240), + [aux_sym_preproc_if_token2] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3240), + [aux_sym_preproc_else_token1] = ACTIONS(3240), + [aux_sym_preproc_elif_token1] = ACTIONS(3240), + [sym_preproc_directive] = ACTIONS(3240), + [anon_sym_LPAREN2] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_typedef] = ACTIONS(3240), + [anon_sym_extern] = ACTIONS(3240), + [anon_sym___attribute__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3242), + [anon_sym___declspec] = ACTIONS(3240), + [anon_sym___based] = ACTIONS(3240), + [anon_sym___cdecl] = ACTIONS(3240), + [anon_sym___clrcall] = ACTIONS(3240), + [anon_sym___stdcall] = ACTIONS(3240), + [anon_sym___fastcall] = ACTIONS(3240), + [anon_sym___thiscall] = ACTIONS(3240), + [anon_sym___vectorcall] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3240), + [anon_sym_unsigned] = ACTIONS(3240), + [anon_sym_long] = ACTIONS(3240), + [anon_sym_short] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_register] = ACTIONS(3240), + [anon_sym_inline] = ACTIONS(3240), + [anon_sym___inline] = ACTIONS(3240), + [anon_sym___inline__] = ACTIONS(3240), + [anon_sym___forceinline] = ACTIONS(3240), + [anon_sym_thread_local] = ACTIONS(3240), + [anon_sym___thread] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_constexpr] = ACTIONS(3240), + [anon_sym_volatile] = ACTIONS(3240), + [anon_sym_restrict] = ACTIONS(3240), + [anon_sym___restrict__] = ACTIONS(3240), + [anon_sym__Atomic] = ACTIONS(3240), + [anon_sym__Noreturn] = ACTIONS(3240), + [anon_sym_noreturn] = ACTIONS(3240), + [anon_sym_mutable] = ACTIONS(3240), + [anon_sym_constinit] = ACTIONS(3240), + [anon_sym_consteval] = ACTIONS(3240), + [sym_primitive_type] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_case] = ACTIONS(3240), + [anon_sym_default] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_goto] = ACTIONS(3240), + [anon_sym___try] = ACTIONS(3240), + [anon_sym___leave] = ACTIONS(3240), + [anon_sym_not] = ACTIONS(3240), + [anon_sym_compl] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_sizeof] = ACTIONS(3240), + [anon_sym___alignof__] = ACTIONS(3240), + [anon_sym___alignof] = ACTIONS(3240), + [anon_sym__alignof] = ACTIONS(3240), + [anon_sym_alignof] = ACTIONS(3240), + [anon_sym__Alignof] = ACTIONS(3240), + [anon_sym_offsetof] = ACTIONS(3240), + [anon_sym__Generic] = ACTIONS(3240), + [anon_sym_asm] = ACTIONS(3240), + [anon_sym___asm__] = ACTIONS(3240), + [sym_number_literal] = ACTIONS(3242), + [anon_sym_L_SQUOTE] = ACTIONS(3242), + [anon_sym_u_SQUOTE] = ACTIONS(3242), + [anon_sym_U_SQUOTE] = ACTIONS(3242), + [anon_sym_u8_SQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_L_DQUOTE] = ACTIONS(3242), + [anon_sym_u_DQUOTE] = ACTIONS(3242), + [anon_sym_U_DQUOTE] = ACTIONS(3242), + [anon_sym_u8_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [anon_sym_NULL] = ACTIONS(3240), + [anon_sym_nullptr] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3240), + [anon_sym_decltype] = ACTIONS(3240), + [anon_sym_virtual] = ACTIONS(3240), + [anon_sym_alignas] = ACTIONS(3240), + [anon_sym_explicit] = ACTIONS(3240), + [anon_sym_typename] = ACTIONS(3240), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_operator] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_static_assert] = ACTIONS(3240), + [anon_sym_concept] = ACTIONS(3240), + [anon_sym_co_return] = ACTIONS(3240), + [anon_sym_co_yield] = ACTIONS(3240), + [anon_sym_R_DQUOTE] = ACTIONS(3242), + [anon_sym_LR_DQUOTE] = ACTIONS(3242), + [anon_sym_uR_DQUOTE] = ACTIONS(3242), + [anon_sym_UR_DQUOTE] = ACTIONS(3242), + [anon_sym_u8R_DQUOTE] = ACTIONS(3242), + [anon_sym_co_await] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_requires] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), + }, + [590] = { + [sym_identifier] = ACTIONS(3236), + [aux_sym_preproc_include_token1] = ACTIONS(3236), + [aux_sym_preproc_def_token1] = ACTIONS(3236), + [aux_sym_preproc_if_token1] = ACTIONS(3236), + [aux_sym_preproc_if_token2] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3236), + [aux_sym_preproc_else_token1] = ACTIONS(3236), + [aux_sym_preproc_elif_token1] = ACTIONS(3236), + [sym_preproc_directive] = ACTIONS(3236), + [anon_sym_LPAREN2] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3236), + [anon_sym_typedef] = ACTIONS(3236), + [anon_sym_extern] = ACTIONS(3236), + [anon_sym___attribute__] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3238), + [anon_sym___declspec] = ACTIONS(3236), + [anon_sym___based] = ACTIONS(3236), + [anon_sym___cdecl] = ACTIONS(3236), + [anon_sym___clrcall] = ACTIONS(3236), + [anon_sym___stdcall] = ACTIONS(3236), + [anon_sym___fastcall] = ACTIONS(3236), + [anon_sym___thiscall] = ACTIONS(3236), + [anon_sym___vectorcall] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_signed] = ACTIONS(3236), + [anon_sym_unsigned] = ACTIONS(3236), + [anon_sym_long] = ACTIONS(3236), + [anon_sym_short] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_register] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym___inline] = ACTIONS(3236), + [anon_sym___inline__] = ACTIONS(3236), + [anon_sym___forceinline] = ACTIONS(3236), + [anon_sym_thread_local] = ACTIONS(3236), + [anon_sym___thread] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_constexpr] = ACTIONS(3236), + [anon_sym_volatile] = ACTIONS(3236), + [anon_sym_restrict] = ACTIONS(3236), + [anon_sym___restrict__] = ACTIONS(3236), + [anon_sym__Atomic] = ACTIONS(3236), + [anon_sym__Noreturn] = ACTIONS(3236), + [anon_sym_noreturn] = ACTIONS(3236), + [anon_sym_mutable] = ACTIONS(3236), + [anon_sym_constinit] = ACTIONS(3236), + [anon_sym_consteval] = ACTIONS(3236), + [sym_primitive_type] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_case] = ACTIONS(3236), + [anon_sym_default] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_goto] = ACTIONS(3236), + [anon_sym___try] = ACTIONS(3236), + [anon_sym___leave] = ACTIONS(3236), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_sizeof] = ACTIONS(3236), + [anon_sym___alignof__] = ACTIONS(3236), + [anon_sym___alignof] = ACTIONS(3236), + [anon_sym__alignof] = ACTIONS(3236), + [anon_sym_alignof] = ACTIONS(3236), + [anon_sym__Alignof] = ACTIONS(3236), + [anon_sym_offsetof] = ACTIONS(3236), + [anon_sym__Generic] = ACTIONS(3236), + [anon_sym_asm] = ACTIONS(3236), + [anon_sym___asm__] = ACTIONS(3236), + [sym_number_literal] = ACTIONS(3238), + [anon_sym_L_SQUOTE] = ACTIONS(3238), + [anon_sym_u_SQUOTE] = ACTIONS(3238), + [anon_sym_U_SQUOTE] = ACTIONS(3238), + [anon_sym_u8_SQUOTE] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_L_DQUOTE] = ACTIONS(3238), + [anon_sym_u_DQUOTE] = ACTIONS(3238), + [anon_sym_U_DQUOTE] = ACTIONS(3238), + [anon_sym_u8_DQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [anon_sym_NULL] = ACTIONS(3236), + [anon_sym_nullptr] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3236), + [anon_sym_virtual] = ACTIONS(3236), + [anon_sym_alignas] = ACTIONS(3236), + [anon_sym_explicit] = ACTIONS(3236), + [anon_sym_typename] = ACTIONS(3236), + [anon_sym_template] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_static_assert] = ACTIONS(3236), + [anon_sym_concept] = ACTIONS(3236), + [anon_sym_co_return] = ACTIONS(3236), + [anon_sym_co_yield] = ACTIONS(3236), + [anon_sym_R_DQUOTE] = ACTIONS(3238), + [anon_sym_LR_DQUOTE] = ACTIONS(3238), + [anon_sym_uR_DQUOTE] = ACTIONS(3238), + [anon_sym_UR_DQUOTE] = ACTIONS(3238), + [anon_sym_u8R_DQUOTE] = ACTIONS(3238), + [anon_sym_co_await] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_requires] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), + }, + [591] = { + [sym_identifier] = ACTIONS(3298), + [aux_sym_preproc_include_token1] = ACTIONS(3298), + [aux_sym_preproc_def_token1] = ACTIONS(3298), + [aux_sym_preproc_if_token1] = ACTIONS(3298), + [aux_sym_preproc_if_token2] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), + [aux_sym_preproc_else_token1] = ACTIONS(3298), + [aux_sym_preproc_elif_token1] = ACTIONS(3298), + [sym_preproc_directive] = ACTIONS(3298), + [anon_sym_LPAREN2] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym___extension__] = ACTIONS(3298), + [anon_sym_typedef] = ACTIONS(3298), + [anon_sym_extern] = ACTIONS(3298), + [anon_sym___attribute__] = ACTIONS(3298), + [anon_sym_COLON_COLON] = ACTIONS(3300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), + [anon_sym___declspec] = ACTIONS(3298), + [anon_sym___based] = ACTIONS(3298), + [anon_sym___cdecl] = ACTIONS(3298), + [anon_sym___clrcall] = ACTIONS(3298), + [anon_sym___stdcall] = ACTIONS(3298), + [anon_sym___fastcall] = ACTIONS(3298), + [anon_sym___thiscall] = ACTIONS(3298), + [anon_sym___vectorcall] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_signed] = ACTIONS(3298), + [anon_sym_unsigned] = ACTIONS(3298), + [anon_sym_long] = ACTIONS(3298), + [anon_sym_short] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_register] = ACTIONS(3298), + [anon_sym_inline] = ACTIONS(3298), + [anon_sym___inline] = ACTIONS(3298), + [anon_sym___inline__] = ACTIONS(3298), + [anon_sym___forceinline] = ACTIONS(3298), + [anon_sym_thread_local] = ACTIONS(3298), + [anon_sym___thread] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_constexpr] = ACTIONS(3298), + [anon_sym_volatile] = ACTIONS(3298), + [anon_sym_restrict] = ACTIONS(3298), + [anon_sym___restrict__] = ACTIONS(3298), + [anon_sym__Atomic] = ACTIONS(3298), + [anon_sym__Noreturn] = ACTIONS(3298), + [anon_sym_noreturn] = ACTIONS(3298), + [anon_sym_mutable] = ACTIONS(3298), + [anon_sym_constinit] = ACTIONS(3298), + [anon_sym_consteval] = ACTIONS(3298), + [sym_primitive_type] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_struct] = ACTIONS(3298), + [anon_sym_union] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_case] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_goto] = ACTIONS(3298), + [anon_sym___try] = ACTIONS(3298), + [anon_sym___leave] = ACTIONS(3298), + [anon_sym_not] = ACTIONS(3298), + [anon_sym_compl] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_sizeof] = ACTIONS(3298), + [anon_sym___alignof__] = ACTIONS(3298), + [anon_sym___alignof] = ACTIONS(3298), + [anon_sym__alignof] = ACTIONS(3298), + [anon_sym_alignof] = ACTIONS(3298), + [anon_sym__Alignof] = ACTIONS(3298), + [anon_sym_offsetof] = ACTIONS(3298), + [anon_sym__Generic] = ACTIONS(3298), + [anon_sym_asm] = ACTIONS(3298), + [anon_sym___asm__] = ACTIONS(3298), + [sym_number_literal] = ACTIONS(3300), + [anon_sym_L_SQUOTE] = ACTIONS(3300), + [anon_sym_u_SQUOTE] = ACTIONS(3300), + [anon_sym_U_SQUOTE] = ACTIONS(3300), + [anon_sym_u8_SQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_L_DQUOTE] = ACTIONS(3300), + [anon_sym_u_DQUOTE] = ACTIONS(3300), + [anon_sym_U_DQUOTE] = ACTIONS(3300), + [anon_sym_u8_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [anon_sym_NULL] = ACTIONS(3298), + [anon_sym_nullptr] = ACTIONS(3298), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3298), + [anon_sym_decltype] = ACTIONS(3298), + [anon_sym_virtual] = ACTIONS(3298), + [anon_sym_alignas] = ACTIONS(3298), + [anon_sym_explicit] = ACTIONS(3298), + [anon_sym_typename] = ACTIONS(3298), + [anon_sym_template] = ACTIONS(3298), + [anon_sym_operator] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_static_assert] = ACTIONS(3298), + [anon_sym_concept] = ACTIONS(3298), + [anon_sym_co_return] = ACTIONS(3298), + [anon_sym_co_yield] = ACTIONS(3298), + [anon_sym_R_DQUOTE] = ACTIONS(3300), + [anon_sym_LR_DQUOTE] = ACTIONS(3300), + [anon_sym_uR_DQUOTE] = ACTIONS(3300), + [anon_sym_UR_DQUOTE] = ACTIONS(3300), + [anon_sym_u8R_DQUOTE] = ACTIONS(3300), + [anon_sym_co_await] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_requires] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), + }, + [592] = { + [sym_identifier] = ACTIONS(3219), + [aux_sym_preproc_include_token1] = ACTIONS(3219), + [aux_sym_preproc_def_token1] = ACTIONS(3219), + [aux_sym_preproc_if_token1] = ACTIONS(3219), + [aux_sym_preproc_if_token2] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), + [aux_sym_preproc_else_token1] = ACTIONS(3219), + [aux_sym_preproc_elif_token1] = ACTIONS(3219), + [sym_preproc_directive] = ACTIONS(3219), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym___extension__] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym___attribute__] = ACTIONS(3219), + [anon_sym_COLON_COLON] = ACTIONS(3221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), + [anon_sym___declspec] = ACTIONS(3219), + [anon_sym___based] = ACTIONS(3219), + [anon_sym___cdecl] = ACTIONS(3219), + [anon_sym___clrcall] = ACTIONS(3219), + [anon_sym___stdcall] = ACTIONS(3219), + [anon_sym___fastcall] = ACTIONS(3219), + [anon_sym___thiscall] = ACTIONS(3219), + [anon_sym___vectorcall] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_signed] = ACTIONS(3219), + [anon_sym_unsigned] = ACTIONS(3219), + [anon_sym_long] = ACTIONS(3219), + [anon_sym_short] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_register] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym___inline] = ACTIONS(3219), + [anon_sym___inline__] = ACTIONS(3219), + [anon_sym___forceinline] = ACTIONS(3219), + [anon_sym_thread_local] = ACTIONS(3219), + [anon_sym___thread] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_constexpr] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_restrict] = ACTIONS(3219), + [anon_sym___restrict__] = ACTIONS(3219), + [anon_sym__Atomic] = ACTIONS(3219), + [anon_sym__Noreturn] = ACTIONS(3219), + [anon_sym_noreturn] = ACTIONS(3219), + [anon_sym_mutable] = ACTIONS(3219), + [anon_sym_constinit] = ACTIONS(3219), + [anon_sym_consteval] = ACTIONS(3219), + [sym_primitive_type] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_goto] = ACTIONS(3219), + [anon_sym___try] = ACTIONS(3219), + [anon_sym___leave] = ACTIONS(3219), + [anon_sym_not] = ACTIONS(3219), + [anon_sym_compl] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(3219), + [anon_sym___alignof__] = ACTIONS(3219), + [anon_sym___alignof] = ACTIONS(3219), + [anon_sym__alignof] = ACTIONS(3219), + [anon_sym_alignof] = ACTIONS(3219), + [anon_sym__Alignof] = ACTIONS(3219), + [anon_sym_offsetof] = ACTIONS(3219), + [anon_sym__Generic] = ACTIONS(3219), + [anon_sym_asm] = ACTIONS(3219), + [anon_sym___asm__] = ACTIONS(3219), + [sym_number_literal] = ACTIONS(3221), + [anon_sym_L_SQUOTE] = ACTIONS(3221), + [anon_sym_u_SQUOTE] = ACTIONS(3221), + [anon_sym_U_SQUOTE] = ACTIONS(3221), + [anon_sym_u8_SQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_L_DQUOTE] = ACTIONS(3221), + [anon_sym_u_DQUOTE] = ACTIONS(3221), + [anon_sym_U_DQUOTE] = ACTIONS(3221), + [anon_sym_u8_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [anon_sym_NULL] = ACTIONS(3219), + [anon_sym_nullptr] = ACTIONS(3219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3219), + [anon_sym_decltype] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_alignas] = ACTIONS(3219), + [anon_sym_explicit] = ACTIONS(3219), + [anon_sym_typename] = ACTIONS(3219), + [anon_sym_template] = ACTIONS(3219), + [anon_sym_operator] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_static_assert] = ACTIONS(3219), + [anon_sym_concept] = ACTIONS(3219), + [anon_sym_co_return] = ACTIONS(3219), + [anon_sym_co_yield] = ACTIONS(3219), + [anon_sym_R_DQUOTE] = ACTIONS(3221), + [anon_sym_LR_DQUOTE] = ACTIONS(3221), + [anon_sym_uR_DQUOTE] = ACTIONS(3221), + [anon_sym_UR_DQUOTE] = ACTIONS(3221), + [anon_sym_u8R_DQUOTE] = ACTIONS(3221), + [anon_sym_co_await] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_requires] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + }, + [593] = { + [sym_identifier] = ACTIONS(3191), + [aux_sym_preproc_include_token1] = ACTIONS(3191), + [aux_sym_preproc_def_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token2] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3191), + [aux_sym_preproc_else_token1] = ACTIONS(3191), + [aux_sym_preproc_elif_token1] = ACTIONS(3191), + [sym_preproc_directive] = ACTIONS(3191), + [anon_sym_LPAREN2] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym___extension__] = ACTIONS(3191), + [anon_sym_typedef] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym___attribute__] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(3193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3193), + [anon_sym___declspec] = ACTIONS(3191), + [anon_sym___based] = ACTIONS(3191), + [anon_sym___cdecl] = ACTIONS(3191), + [anon_sym___clrcall] = ACTIONS(3191), + [anon_sym___stdcall] = ACTIONS(3191), + [anon_sym___fastcall] = ACTIONS(3191), + [anon_sym___thiscall] = ACTIONS(3191), + [anon_sym___vectorcall] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_signed] = ACTIONS(3191), + [anon_sym_unsigned] = ACTIONS(3191), + [anon_sym_long] = ACTIONS(3191), + [anon_sym_short] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_register] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym___inline] = ACTIONS(3191), + [anon_sym___inline__] = ACTIONS(3191), + [anon_sym___forceinline] = ACTIONS(3191), + [anon_sym_thread_local] = ACTIONS(3191), + [anon_sym___thread] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_constexpr] = ACTIONS(3191), + [anon_sym_volatile] = ACTIONS(3191), + [anon_sym_restrict] = ACTIONS(3191), + [anon_sym___restrict__] = ACTIONS(3191), + [anon_sym__Atomic] = ACTIONS(3191), + [anon_sym__Noreturn] = ACTIONS(3191), + [anon_sym_noreturn] = ACTIONS(3191), + [anon_sym_mutable] = ACTIONS(3191), + [anon_sym_constinit] = ACTIONS(3191), + [anon_sym_consteval] = ACTIONS(3191), + [sym_primitive_type] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym___try] = ACTIONS(3191), + [anon_sym___leave] = ACTIONS(3191), + [anon_sym_not] = ACTIONS(3191), + [anon_sym_compl] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_sizeof] = ACTIONS(3191), + [anon_sym___alignof__] = ACTIONS(3191), + [anon_sym___alignof] = ACTIONS(3191), + [anon_sym__alignof] = ACTIONS(3191), + [anon_sym_alignof] = ACTIONS(3191), + [anon_sym__Alignof] = ACTIONS(3191), + [anon_sym_offsetof] = ACTIONS(3191), + [anon_sym__Generic] = ACTIONS(3191), + [anon_sym_asm] = ACTIONS(3191), + [anon_sym___asm__] = ACTIONS(3191), + [sym_number_literal] = ACTIONS(3193), + [anon_sym_L_SQUOTE] = ACTIONS(3193), + [anon_sym_u_SQUOTE] = ACTIONS(3193), + [anon_sym_U_SQUOTE] = ACTIONS(3193), + [anon_sym_u8_SQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_L_DQUOTE] = ACTIONS(3193), + [anon_sym_u_DQUOTE] = ACTIONS(3193), + [anon_sym_U_DQUOTE] = ACTIONS(3193), + [anon_sym_u8_DQUOTE] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [anon_sym_NULL] = ACTIONS(3191), + [anon_sym_nullptr] = ACTIONS(3191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3191), + [anon_sym_virtual] = ACTIONS(3191), + [anon_sym_alignas] = ACTIONS(3191), + [anon_sym_explicit] = ACTIONS(3191), + [anon_sym_typename] = ACTIONS(3191), + [anon_sym_template] = ACTIONS(3191), + [anon_sym_operator] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_static_assert] = ACTIONS(3191), + [anon_sym_concept] = ACTIONS(3191), + [anon_sym_co_return] = ACTIONS(3191), + [anon_sym_co_yield] = ACTIONS(3191), + [anon_sym_R_DQUOTE] = ACTIONS(3193), + [anon_sym_LR_DQUOTE] = ACTIONS(3193), + [anon_sym_uR_DQUOTE] = ACTIONS(3193), + [anon_sym_UR_DQUOTE] = ACTIONS(3193), + [anon_sym_u8R_DQUOTE] = ACTIONS(3193), + [anon_sym_co_await] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_requires] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), + }, + [594] = { + [sym_identifier] = ACTIONS(3078), + [aux_sym_preproc_include_token1] = ACTIONS(3078), + [aux_sym_preproc_def_token1] = ACTIONS(3078), + [aux_sym_preproc_if_token1] = ACTIONS(3078), + [aux_sym_preproc_if_token2] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), + [aux_sym_preproc_else_token1] = ACTIONS(3078), + [aux_sym_preproc_elif_token1] = ACTIONS(3078), + [sym_preproc_directive] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym___extension__] = ACTIONS(3078), + [anon_sym_typedef] = ACTIONS(3078), + [anon_sym_extern] = ACTIONS(3078), + [anon_sym___attribute__] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), + [anon_sym___declspec] = ACTIONS(3078), + [anon_sym___based] = ACTIONS(3078), + [anon_sym___cdecl] = ACTIONS(3078), + [anon_sym___clrcall] = ACTIONS(3078), + [anon_sym___stdcall] = ACTIONS(3078), + [anon_sym___fastcall] = ACTIONS(3078), + [anon_sym___thiscall] = ACTIONS(3078), + [anon_sym___vectorcall] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_signed] = ACTIONS(3078), + [anon_sym_unsigned] = ACTIONS(3078), + [anon_sym_long] = ACTIONS(3078), + [anon_sym_short] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_static] = ACTIONS(3078), + [anon_sym_register] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym___inline] = ACTIONS(3078), + [anon_sym___inline__] = ACTIONS(3078), + [anon_sym___forceinline] = ACTIONS(3078), + [anon_sym_thread_local] = ACTIONS(3078), + [anon_sym___thread] = ACTIONS(3078), + [anon_sym_const] = ACTIONS(3078), + [anon_sym_constexpr] = ACTIONS(3078), + [anon_sym_volatile] = ACTIONS(3078), + [anon_sym_restrict] = ACTIONS(3078), + [anon_sym___restrict__] = ACTIONS(3078), + [anon_sym__Atomic] = ACTIONS(3078), + [anon_sym__Noreturn] = ACTIONS(3078), + [anon_sym_noreturn] = ACTIONS(3078), + [anon_sym_mutable] = ACTIONS(3078), + [anon_sym_constinit] = ACTIONS(3078), + [anon_sym_consteval] = ACTIONS(3078), + [sym_primitive_type] = ACTIONS(3078), + [anon_sym_enum] = ACTIONS(3078), + [anon_sym_class] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_switch] = ACTIONS(3078), + [anon_sym_case] = ACTIONS(3078), + [anon_sym_default] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_goto] = ACTIONS(3078), + [anon_sym___try] = ACTIONS(3078), + [anon_sym___leave] = ACTIONS(3078), + [anon_sym_not] = ACTIONS(3078), + [anon_sym_compl] = ACTIONS(3078), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_sizeof] = ACTIONS(3078), + [anon_sym___alignof__] = ACTIONS(3078), + [anon_sym___alignof] = ACTIONS(3078), + [anon_sym__alignof] = ACTIONS(3078), + [anon_sym_alignof] = ACTIONS(3078), + [anon_sym__Alignof] = ACTIONS(3078), + [anon_sym_offsetof] = ACTIONS(3078), + [anon_sym__Generic] = ACTIONS(3078), + [anon_sym_asm] = ACTIONS(3078), + [anon_sym___asm__] = ACTIONS(3078), + [sym_number_literal] = ACTIONS(3080), + [anon_sym_L_SQUOTE] = ACTIONS(3080), + [anon_sym_u_SQUOTE] = ACTIONS(3080), + [anon_sym_U_SQUOTE] = ACTIONS(3080), + [anon_sym_u8_SQUOTE] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_L_DQUOTE] = ACTIONS(3080), + [anon_sym_u_DQUOTE] = ACTIONS(3080), + [anon_sym_U_DQUOTE] = ACTIONS(3080), + [anon_sym_u8_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [anon_sym_NULL] = ACTIONS(3078), + [anon_sym_nullptr] = ACTIONS(3078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3078), + [anon_sym_decltype] = ACTIONS(3078), + [anon_sym_virtual] = ACTIONS(3078), + [anon_sym_alignas] = ACTIONS(3078), + [anon_sym_explicit] = ACTIONS(3078), + [anon_sym_typename] = ACTIONS(3078), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3078), + [anon_sym_namespace] = ACTIONS(3078), + [anon_sym_using] = ACTIONS(3078), + [anon_sym_static_assert] = ACTIONS(3078), + [anon_sym_concept] = ACTIONS(3078), + [anon_sym_co_return] = ACTIONS(3078), + [anon_sym_co_yield] = ACTIONS(3078), + [anon_sym_R_DQUOTE] = ACTIONS(3080), + [anon_sym_LR_DQUOTE] = ACTIONS(3080), + [anon_sym_uR_DQUOTE] = ACTIONS(3080), + [anon_sym_UR_DQUOTE] = ACTIONS(3080), + [anon_sym_u8R_DQUOTE] = ACTIONS(3080), + [anon_sym_co_await] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_requires] = ACTIONS(3078), + [sym_this] = ACTIONS(3078), + }, + [595] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(4832), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7546), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(7937), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -170681,531 +173156,1091 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3422), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_GT2] = ACTIONS(3430), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [580] = { - [sym_identifier] = ACTIONS(3128), - [aux_sym_preproc_include_token1] = ACTIONS(3128), - [aux_sym_preproc_def_token1] = ACTIONS(3128), - [aux_sym_preproc_if_token1] = ACTIONS(3128), - [aux_sym_preproc_if_token2] = ACTIONS(3128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3128), - [aux_sym_preproc_else_token1] = ACTIONS(3128), - [aux_sym_preproc_elif_token1] = ACTIONS(3128), - [sym_preproc_directive] = ACTIONS(3128), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3130), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym_typedef] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3130), - [anon_sym___declspec] = ACTIONS(3128), - [anon_sym___based] = ACTIONS(3128), - [anon_sym___cdecl] = ACTIONS(3128), - [anon_sym___clrcall] = ACTIONS(3128), - [anon_sym___stdcall] = ACTIONS(3128), - [anon_sym___fastcall] = ACTIONS(3128), - [anon_sym___thiscall] = ACTIONS(3128), - [anon_sym___vectorcall] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_register] = ACTIONS(3128), - [anon_sym_inline] = ACTIONS(3128), - [anon_sym___inline] = ACTIONS(3128), - [anon_sym___inline__] = ACTIONS(3128), - [anon_sym___forceinline] = ACTIONS(3128), - [anon_sym_thread_local] = ACTIONS(3128), - [anon_sym___thread] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3128), - [anon_sym_volatile] = ACTIONS(3128), - [anon_sym_restrict] = ACTIONS(3128), - [anon_sym___restrict__] = ACTIONS(3128), - [anon_sym__Atomic] = ACTIONS(3128), - [anon_sym__Noreturn] = ACTIONS(3128), - [anon_sym_noreturn] = ACTIONS(3128), - [anon_sym_mutable] = ACTIONS(3128), - [anon_sym_constinit] = ACTIONS(3128), - [anon_sym_consteval] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_goto] = ACTIONS(3128), - [anon_sym___try] = ACTIONS(3128), - [anon_sym___leave] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(3128), - [anon_sym_compl] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3128), - [anon_sym___alignof__] = ACTIONS(3128), - [anon_sym___alignof] = ACTIONS(3128), - [anon_sym__alignof] = ACTIONS(3128), - [anon_sym_alignof] = ACTIONS(3128), - [anon_sym__Alignof] = ACTIONS(3128), - [anon_sym_offsetof] = ACTIONS(3128), - [anon_sym__Generic] = ACTIONS(3128), - [anon_sym_asm] = ACTIONS(3128), - [anon_sym___asm__] = ACTIONS(3128), - [sym_number_literal] = ACTIONS(3130), - [anon_sym_L_SQUOTE] = ACTIONS(3130), - [anon_sym_u_SQUOTE] = ACTIONS(3130), - [anon_sym_U_SQUOTE] = ACTIONS(3130), - [anon_sym_u8_SQUOTE] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3130), - [anon_sym_L_DQUOTE] = ACTIONS(3130), - [anon_sym_u_DQUOTE] = ACTIONS(3130), - [anon_sym_U_DQUOTE] = ACTIONS(3130), - [anon_sym_u8_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [anon_sym_NULL] = ACTIONS(3128), - [anon_sym_nullptr] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3128), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_alignas] = ACTIONS(3128), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_typename] = ACTIONS(3128), - [anon_sym_template] = ACTIONS(3128), - [anon_sym_operator] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_static_assert] = ACTIONS(3128), - [anon_sym_concept] = ACTIONS(3128), - [anon_sym_co_return] = ACTIONS(3128), - [anon_sym_co_yield] = ACTIONS(3128), - [anon_sym_R_DQUOTE] = ACTIONS(3130), - [anon_sym_LR_DQUOTE] = ACTIONS(3130), - [anon_sym_uR_DQUOTE] = ACTIONS(3130), - [anon_sym_UR_DQUOTE] = ACTIONS(3130), - [anon_sym_u8R_DQUOTE] = ACTIONS(3130), - [anon_sym_co_await] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), + [596] = { + [sym_identifier] = ACTIONS(3012), + [aux_sym_preproc_include_token1] = ACTIONS(3012), + [aux_sym_preproc_def_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token2] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3012), + [aux_sym_preproc_else_token1] = ACTIONS(3012), + [aux_sym_preproc_elif_token1] = ACTIONS(3012), + [sym_preproc_directive] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3012), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym___based] = ACTIONS(3012), + [anon_sym___cdecl] = ACTIONS(3012), + [anon_sym___clrcall] = ACTIONS(3012), + [anon_sym___stdcall] = ACTIONS(3012), + [anon_sym___fastcall] = ACTIONS(3012), + [anon_sym___thiscall] = ACTIONS(3012), + [anon_sym___vectorcall] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym___inline] = ACTIONS(3012), + [anon_sym___inline__] = ACTIONS(3012), + [anon_sym___forceinline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym___thread] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym___try] = ACTIONS(3012), + [anon_sym___leave] = ACTIONS(3012), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_sizeof] = ACTIONS(3012), + [anon_sym___alignof__] = ACTIONS(3012), + [anon_sym___alignof] = ACTIONS(3012), + [anon_sym__alignof] = ACTIONS(3012), + [anon_sym_alignof] = ACTIONS(3012), + [anon_sym__Alignof] = ACTIONS(3012), + [anon_sym_offsetof] = ACTIONS(3012), + [anon_sym__Generic] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym___asm__] = ACTIONS(3012), + [sym_number_literal] = ACTIONS(3014), + [anon_sym_L_SQUOTE] = ACTIONS(3014), + [anon_sym_u_SQUOTE] = ACTIONS(3014), + [anon_sym_U_SQUOTE] = ACTIONS(3014), + [anon_sym_u8_SQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_L_DQUOTE] = ACTIONS(3014), + [anon_sym_u_DQUOTE] = ACTIONS(3014), + [anon_sym_U_DQUOTE] = ACTIONS(3014), + [anon_sym_u8_DQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_nullptr] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_alignas] = ACTIONS(3012), + [anon_sym_explicit] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_operator] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_static_assert] = ACTIONS(3012), + [anon_sym_concept] = ACTIONS(3012), + [anon_sym_co_return] = ACTIONS(3012), + [anon_sym_co_yield] = ACTIONS(3012), + [anon_sym_R_DQUOTE] = ACTIONS(3014), + [anon_sym_LR_DQUOTE] = ACTIONS(3014), + [anon_sym_uR_DQUOTE] = ACTIONS(3014), + [anon_sym_UR_DQUOTE] = ACTIONS(3014), + [anon_sym_u8R_DQUOTE] = ACTIONS(3014), + [anon_sym_co_await] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_requires] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), }, - [581] = { - [sym_identifier] = ACTIONS(3306), - [aux_sym_preproc_include_token1] = ACTIONS(3306), - [aux_sym_preproc_def_token1] = ACTIONS(3306), - [aux_sym_preproc_if_token1] = ACTIONS(3306), - [aux_sym_preproc_if_token2] = ACTIONS(3306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3306), - [aux_sym_preproc_else_token1] = ACTIONS(3306), - [aux_sym_preproc_elif_token1] = ACTIONS(3306), - [sym_preproc_directive] = ACTIONS(3306), - [anon_sym_LPAREN2] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_STAR] = ACTIONS(3308), - [anon_sym_AMP_AMP] = ACTIONS(3308), - [anon_sym_AMP] = ACTIONS(3306), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym___extension__] = ACTIONS(3306), - [anon_sym_typedef] = ACTIONS(3306), - [anon_sym_extern] = ACTIONS(3306), - [anon_sym___attribute__] = ACTIONS(3306), - [anon_sym_COLON_COLON] = ACTIONS(3308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3308), - [anon_sym___declspec] = ACTIONS(3306), - [anon_sym___based] = ACTIONS(3306), - [anon_sym___cdecl] = ACTIONS(3306), - [anon_sym___clrcall] = ACTIONS(3306), - [anon_sym___stdcall] = ACTIONS(3306), - [anon_sym___fastcall] = ACTIONS(3306), - [anon_sym___thiscall] = ACTIONS(3306), - [anon_sym___vectorcall] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_signed] = ACTIONS(3306), - [anon_sym_unsigned] = ACTIONS(3306), - [anon_sym_long] = ACTIONS(3306), - [anon_sym_short] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_register] = ACTIONS(3306), - [anon_sym_inline] = ACTIONS(3306), - [anon_sym___inline] = ACTIONS(3306), - [anon_sym___inline__] = ACTIONS(3306), - [anon_sym___forceinline] = ACTIONS(3306), - [anon_sym_thread_local] = ACTIONS(3306), - [anon_sym___thread] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_constexpr] = ACTIONS(3306), - [anon_sym_volatile] = ACTIONS(3306), - [anon_sym_restrict] = ACTIONS(3306), - [anon_sym___restrict__] = ACTIONS(3306), - [anon_sym__Atomic] = ACTIONS(3306), - [anon_sym__Noreturn] = ACTIONS(3306), - [anon_sym_noreturn] = ACTIONS(3306), - [anon_sym_mutable] = ACTIONS(3306), - [anon_sym_constinit] = ACTIONS(3306), - [anon_sym_consteval] = ACTIONS(3306), - [sym_primitive_type] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), - [anon_sym_class] = ACTIONS(3306), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_union] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_case] = ACTIONS(3306), - [anon_sym_default] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_goto] = ACTIONS(3306), - [anon_sym___try] = ACTIONS(3306), - [anon_sym___leave] = ACTIONS(3306), - [anon_sym_not] = ACTIONS(3306), - [anon_sym_compl] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_sizeof] = ACTIONS(3306), - [anon_sym___alignof__] = ACTIONS(3306), - [anon_sym___alignof] = ACTIONS(3306), - [anon_sym__alignof] = ACTIONS(3306), - [anon_sym_alignof] = ACTIONS(3306), - [anon_sym__Alignof] = ACTIONS(3306), - [anon_sym_offsetof] = ACTIONS(3306), - [anon_sym__Generic] = ACTIONS(3306), - [anon_sym_asm] = ACTIONS(3306), - [anon_sym___asm__] = ACTIONS(3306), - [sym_number_literal] = ACTIONS(3308), - [anon_sym_L_SQUOTE] = ACTIONS(3308), - [anon_sym_u_SQUOTE] = ACTIONS(3308), - [anon_sym_U_SQUOTE] = ACTIONS(3308), - [anon_sym_u8_SQUOTE] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(3308), - [anon_sym_L_DQUOTE] = ACTIONS(3308), - [anon_sym_u_DQUOTE] = ACTIONS(3308), - [anon_sym_U_DQUOTE] = ACTIONS(3308), - [anon_sym_u8_DQUOTE] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [anon_sym_NULL] = ACTIONS(3306), - [anon_sym_nullptr] = ACTIONS(3306), + [597] = { + [sym_identifier] = ACTIONS(3278), + [aux_sym_preproc_include_token1] = ACTIONS(3278), + [aux_sym_preproc_def_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token2] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), + [aux_sym_preproc_else_token1] = ACTIONS(3278), + [aux_sym_preproc_elif_token1] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_LPAREN2] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym___extension__] = ACTIONS(3278), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym___attribute__] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), + [anon_sym___declspec] = ACTIONS(3278), + [anon_sym___based] = ACTIONS(3278), + [anon_sym___cdecl] = ACTIONS(3278), + [anon_sym___clrcall] = ACTIONS(3278), + [anon_sym___stdcall] = ACTIONS(3278), + [anon_sym___fastcall] = ACTIONS(3278), + [anon_sym___thiscall] = ACTIONS(3278), + [anon_sym___vectorcall] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_signed] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym___inline] = ACTIONS(3278), + [anon_sym___inline__] = ACTIONS(3278), + [anon_sym___forceinline] = ACTIONS(3278), + [anon_sym_thread_local] = ACTIONS(3278), + [anon_sym___thread] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_constexpr] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym___restrict__] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym__Noreturn] = ACTIONS(3278), + [anon_sym_noreturn] = ACTIONS(3278), + [anon_sym_mutable] = ACTIONS(3278), + [anon_sym_constinit] = ACTIONS(3278), + [anon_sym_consteval] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym___try] = ACTIONS(3278), + [anon_sym___leave] = ACTIONS(3278), + [anon_sym_not] = ACTIONS(3278), + [anon_sym_compl] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [anon_sym___alignof__] = ACTIONS(3278), + [anon_sym___alignof] = ACTIONS(3278), + [anon_sym__alignof] = ACTIONS(3278), + [anon_sym_alignof] = ACTIONS(3278), + [anon_sym__Alignof] = ACTIONS(3278), + [anon_sym_offsetof] = ACTIONS(3278), + [anon_sym__Generic] = ACTIONS(3278), + [anon_sym_asm] = ACTIONS(3278), + [anon_sym___asm__] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [anon_sym_L_SQUOTE] = ACTIONS(3280), + [anon_sym_u_SQUOTE] = ACTIONS(3280), + [anon_sym_U_SQUOTE] = ACTIONS(3280), + [anon_sym_u8_SQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_L_DQUOTE] = ACTIONS(3280), + [anon_sym_u_DQUOTE] = ACTIONS(3280), + [anon_sym_U_DQUOTE] = ACTIONS(3280), + [anon_sym_u8_DQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3278), + [anon_sym_decltype] = ACTIONS(3278), + [anon_sym_virtual] = ACTIONS(3278), + [anon_sym_alignas] = ACTIONS(3278), + [anon_sym_explicit] = ACTIONS(3278), + [anon_sym_typename] = ACTIONS(3278), + [anon_sym_template] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_static_assert] = ACTIONS(3278), + [anon_sym_concept] = ACTIONS(3278), + [anon_sym_co_return] = ACTIONS(3278), + [anon_sym_co_yield] = ACTIONS(3278), + [anon_sym_R_DQUOTE] = ACTIONS(3280), + [anon_sym_LR_DQUOTE] = ACTIONS(3280), + [anon_sym_uR_DQUOTE] = ACTIONS(3280), + [anon_sym_UR_DQUOTE] = ACTIONS(3280), + [anon_sym_u8R_DQUOTE] = ACTIONS(3280), + [anon_sym_co_await] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), + }, + [598] = { + [ts_builtin_sym_end] = ACTIONS(2963), + [sym_identifier] = ACTIONS(2961), + [aux_sym_preproc_include_token1] = ACTIONS(2961), + [aux_sym_preproc_def_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), + [sym_preproc_directive] = ACTIONS(2961), + [anon_sym_LPAREN2] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2963), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym___extension__] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym___attribute__] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), + [anon_sym___declspec] = ACTIONS(2961), + [anon_sym___based] = ACTIONS(2961), + [anon_sym___cdecl] = ACTIONS(2961), + [anon_sym___clrcall] = ACTIONS(2961), + [anon_sym___stdcall] = ACTIONS(2961), + [anon_sym___fastcall] = ACTIONS(2961), + [anon_sym___thiscall] = ACTIONS(2961), + [anon_sym___vectorcall] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_signed] = ACTIONS(2961), + [anon_sym_unsigned] = ACTIONS(2961), + [anon_sym_long] = ACTIONS(2961), + [anon_sym_short] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_register] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym___inline] = ACTIONS(2961), + [anon_sym___inline__] = ACTIONS(2961), + [anon_sym___forceinline] = ACTIONS(2961), + [anon_sym_thread_local] = ACTIONS(2961), + [anon_sym___thread] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_constexpr] = ACTIONS(2961), + [anon_sym_volatile] = ACTIONS(2961), + [anon_sym_restrict] = ACTIONS(2961), + [anon_sym___restrict__] = ACTIONS(2961), + [anon_sym__Atomic] = ACTIONS(2961), + [anon_sym__Noreturn] = ACTIONS(2961), + [anon_sym_noreturn] = ACTIONS(2961), + [anon_sym_mutable] = ACTIONS(2961), + [anon_sym_constinit] = ACTIONS(2961), + [anon_sym_consteval] = ACTIONS(2961), + [sym_primitive_type] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_else] = ACTIONS(2961), + [anon_sym_switch] = ACTIONS(2961), + [anon_sym_case] = ACTIONS(2961), + [anon_sym_default] = ACTIONS(2961), + [anon_sym_while] = ACTIONS(2961), + [anon_sym_do] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_goto] = ACTIONS(2961), + [anon_sym___try] = ACTIONS(2961), + [anon_sym___leave] = ACTIONS(2961), + [anon_sym_not] = ACTIONS(2961), + [anon_sym_compl] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2963), + [anon_sym_PLUS_PLUS] = ACTIONS(2963), + [anon_sym_sizeof] = ACTIONS(2961), + [anon_sym___alignof__] = ACTIONS(2961), + [anon_sym___alignof] = ACTIONS(2961), + [anon_sym__alignof] = ACTIONS(2961), + [anon_sym_alignof] = ACTIONS(2961), + [anon_sym__Alignof] = ACTIONS(2961), + [anon_sym_offsetof] = ACTIONS(2961), + [anon_sym__Generic] = ACTIONS(2961), + [anon_sym_asm] = ACTIONS(2961), + [anon_sym___asm__] = ACTIONS(2961), + [sym_number_literal] = ACTIONS(2963), + [anon_sym_L_SQUOTE] = ACTIONS(2963), + [anon_sym_u_SQUOTE] = ACTIONS(2963), + [anon_sym_U_SQUOTE] = ACTIONS(2963), + [anon_sym_u8_SQUOTE] = ACTIONS(2963), + [anon_sym_SQUOTE] = ACTIONS(2963), + [anon_sym_L_DQUOTE] = ACTIONS(2963), + [anon_sym_u_DQUOTE] = ACTIONS(2963), + [anon_sym_U_DQUOTE] = ACTIONS(2963), + [anon_sym_u8_DQUOTE] = ACTIONS(2963), + [anon_sym_DQUOTE] = ACTIONS(2963), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [anon_sym_NULL] = ACTIONS(2961), + [anon_sym_nullptr] = ACTIONS(2961), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3306), - [anon_sym_decltype] = ACTIONS(3306), - [anon_sym_virtual] = ACTIONS(3306), - [anon_sym_alignas] = ACTIONS(3306), - [anon_sym_explicit] = ACTIONS(3306), - [anon_sym_typename] = ACTIONS(3306), - [anon_sym_template] = ACTIONS(3306), - [anon_sym_operator] = ACTIONS(3306), - [anon_sym_try] = ACTIONS(3306), - [anon_sym_delete] = ACTIONS(3306), - [anon_sym_throw] = ACTIONS(3306), - [anon_sym_namespace] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3306), - [anon_sym_static_assert] = ACTIONS(3306), - [anon_sym_concept] = ACTIONS(3306), - [anon_sym_co_return] = ACTIONS(3306), - [anon_sym_co_yield] = ACTIONS(3306), - [anon_sym_R_DQUOTE] = ACTIONS(3308), - [anon_sym_LR_DQUOTE] = ACTIONS(3308), - [anon_sym_uR_DQUOTE] = ACTIONS(3308), - [anon_sym_UR_DQUOTE] = ACTIONS(3308), - [anon_sym_u8R_DQUOTE] = ACTIONS(3308), - [anon_sym_co_await] = ACTIONS(3306), - [anon_sym_new] = ACTIONS(3306), - [anon_sym_requires] = ACTIONS(3306), - [sym_this] = ACTIONS(3306), + [sym_auto] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2961), + [anon_sym_virtual] = ACTIONS(2961), + [anon_sym_alignas] = ACTIONS(2961), + [anon_sym_explicit] = ACTIONS(2961), + [anon_sym_typename] = ACTIONS(2961), + [anon_sym_template] = ACTIONS(2961), + [anon_sym_operator] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2961), + [anon_sym_throw] = ACTIONS(2961), + [anon_sym_namespace] = ACTIONS(2961), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_static_assert] = ACTIONS(2961), + [anon_sym_concept] = ACTIONS(2961), + [anon_sym_co_return] = ACTIONS(2961), + [anon_sym_co_yield] = ACTIONS(2961), + [anon_sym_R_DQUOTE] = ACTIONS(2963), + [anon_sym_LR_DQUOTE] = ACTIONS(2963), + [anon_sym_uR_DQUOTE] = ACTIONS(2963), + [anon_sym_UR_DQUOTE] = ACTIONS(2963), + [anon_sym_u8R_DQUOTE] = ACTIONS(2963), + [anon_sym_co_await] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2961), + [sym_this] = ACTIONS(2961), }, - [582] = { - [sym_identifier] = ACTIONS(3168), - [aux_sym_preproc_include_token1] = ACTIONS(3168), - [aux_sym_preproc_def_token1] = ACTIONS(3168), - [aux_sym_preproc_if_token1] = ACTIONS(3168), - [aux_sym_preproc_if_token2] = ACTIONS(3168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), - [aux_sym_preproc_else_token1] = ACTIONS(3168), - [aux_sym_preproc_elif_token1] = ACTIONS(3168), - [sym_preproc_directive] = ACTIONS(3168), - [anon_sym_LPAREN2] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3170), - [anon_sym_AMP_AMP] = ACTIONS(3170), - [anon_sym_AMP] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym___extension__] = ACTIONS(3168), - [anon_sym_typedef] = ACTIONS(3168), - [anon_sym_extern] = ACTIONS(3168), - [anon_sym___attribute__] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), - [anon_sym___declspec] = ACTIONS(3168), - [anon_sym___based] = ACTIONS(3168), - [anon_sym___cdecl] = ACTIONS(3168), - [anon_sym___clrcall] = ACTIONS(3168), - [anon_sym___stdcall] = ACTIONS(3168), - [anon_sym___fastcall] = ACTIONS(3168), - [anon_sym___thiscall] = ACTIONS(3168), - [anon_sym___vectorcall] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_signed] = ACTIONS(3168), - [anon_sym_unsigned] = ACTIONS(3168), - [anon_sym_long] = ACTIONS(3168), - [anon_sym_short] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_register] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym___inline] = ACTIONS(3168), - [anon_sym___inline__] = ACTIONS(3168), - [anon_sym___forceinline] = ACTIONS(3168), - [anon_sym_thread_local] = ACTIONS(3168), - [anon_sym___thread] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_constexpr] = ACTIONS(3168), - [anon_sym_volatile] = ACTIONS(3168), - [anon_sym_restrict] = ACTIONS(3168), - [anon_sym___restrict__] = ACTIONS(3168), - [anon_sym__Atomic] = ACTIONS(3168), - [anon_sym__Noreturn] = ACTIONS(3168), - [anon_sym_noreturn] = ACTIONS(3168), - [anon_sym_mutable] = ACTIONS(3168), - [anon_sym_constinit] = ACTIONS(3168), - [anon_sym_consteval] = ACTIONS(3168), - [sym_primitive_type] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_struct] = ACTIONS(3168), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_case] = ACTIONS(3168), - [anon_sym_default] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_goto] = ACTIONS(3168), - [anon_sym___try] = ACTIONS(3168), - [anon_sym___leave] = ACTIONS(3168), - [anon_sym_not] = ACTIONS(3168), - [anon_sym_compl] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_sizeof] = ACTIONS(3168), - [anon_sym___alignof__] = ACTIONS(3168), - [anon_sym___alignof] = ACTIONS(3168), - [anon_sym__alignof] = ACTIONS(3168), - [anon_sym_alignof] = ACTIONS(3168), - [anon_sym__Alignof] = ACTIONS(3168), - [anon_sym_offsetof] = ACTIONS(3168), - [anon_sym__Generic] = ACTIONS(3168), - [anon_sym_asm] = ACTIONS(3168), - [anon_sym___asm__] = ACTIONS(3168), - [sym_number_literal] = ACTIONS(3170), - [anon_sym_L_SQUOTE] = ACTIONS(3170), - [anon_sym_u_SQUOTE] = ACTIONS(3170), - [anon_sym_U_SQUOTE] = ACTIONS(3170), - [anon_sym_u8_SQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [anon_sym_L_DQUOTE] = ACTIONS(3170), - [anon_sym_u_DQUOTE] = ACTIONS(3170), - [anon_sym_U_DQUOTE] = ACTIONS(3170), - [anon_sym_u8_DQUOTE] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [anon_sym_NULL] = ACTIONS(3168), - [anon_sym_nullptr] = ACTIONS(3168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3168), - [anon_sym_decltype] = ACTIONS(3168), - [anon_sym_virtual] = ACTIONS(3168), - [anon_sym_alignas] = ACTIONS(3168), - [anon_sym_explicit] = ACTIONS(3168), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3168), - [anon_sym_static_assert] = ACTIONS(3168), - [anon_sym_concept] = ACTIONS(3168), - [anon_sym_co_return] = ACTIONS(3168), - [anon_sym_co_yield] = ACTIONS(3168), - [anon_sym_R_DQUOTE] = ACTIONS(3170), - [anon_sym_LR_DQUOTE] = ACTIONS(3170), - [anon_sym_uR_DQUOTE] = ACTIONS(3170), - [anon_sym_UR_DQUOTE] = ACTIONS(3170), - [anon_sym_u8R_DQUOTE] = ACTIONS(3170), - [anon_sym_co_await] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_requires] = ACTIONS(3168), - [sym_this] = ACTIONS(3168), + [599] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [583] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4750), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7597), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(8001), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), + [600] = { + [sym_identifier] = ACTIONS(2949), + [aux_sym_preproc_include_token1] = ACTIONS(2949), + [aux_sym_preproc_def_token1] = ACTIONS(2949), + [aux_sym_preproc_if_token1] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), + [sym_preproc_directive] = ACTIONS(2949), + [anon_sym_LPAREN2] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym___extension__] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym___attribute__] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), + [anon_sym___declspec] = ACTIONS(2949), + [anon_sym___based] = ACTIONS(2949), + [anon_sym___cdecl] = ACTIONS(2949), + [anon_sym___clrcall] = ACTIONS(2949), + [anon_sym___stdcall] = ACTIONS(2949), + [anon_sym___fastcall] = ACTIONS(2949), + [anon_sym___thiscall] = ACTIONS(2949), + [anon_sym___vectorcall] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_signed] = ACTIONS(2949), + [anon_sym_unsigned] = ACTIONS(2949), + [anon_sym_long] = ACTIONS(2949), + [anon_sym_short] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_register] = ACTIONS(2949), + [anon_sym_inline] = ACTIONS(2949), + [anon_sym___inline] = ACTIONS(2949), + [anon_sym___inline__] = ACTIONS(2949), + [anon_sym___forceinline] = ACTIONS(2949), + [anon_sym_thread_local] = ACTIONS(2949), + [anon_sym___thread] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_constexpr] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_restrict] = ACTIONS(2949), + [anon_sym___restrict__] = ACTIONS(2949), + [anon_sym__Atomic] = ACTIONS(2949), + [anon_sym__Noreturn] = ACTIONS(2949), + [anon_sym_noreturn] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [anon_sym_constinit] = ACTIONS(2949), + [anon_sym_consteval] = ACTIONS(2949), + [sym_primitive_type] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_union] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_case] = ACTIONS(2949), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym___try] = ACTIONS(2949), + [anon_sym___leave] = ACTIONS(2949), + [anon_sym_not] = ACTIONS(2949), + [anon_sym_compl] = ACTIONS(2949), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym___alignof__] = ACTIONS(2949), + [anon_sym___alignof] = ACTIONS(2949), + [anon_sym__alignof] = ACTIONS(2949), + [anon_sym_alignof] = ACTIONS(2949), + [anon_sym__Alignof] = ACTIONS(2949), + [anon_sym_offsetof] = ACTIONS(2949), + [anon_sym__Generic] = ACTIONS(2949), + [anon_sym_asm] = ACTIONS(2949), + [anon_sym___asm__] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2951), + [anon_sym_L_SQUOTE] = ACTIONS(2951), + [anon_sym_u_SQUOTE] = ACTIONS(2951), + [anon_sym_U_SQUOTE] = ACTIONS(2951), + [anon_sym_u8_SQUOTE] = ACTIONS(2951), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_L_DQUOTE] = ACTIONS(2951), + [anon_sym_u_DQUOTE] = ACTIONS(2951), + [anon_sym_U_DQUOTE] = ACTIONS(2951), + [anon_sym_u8_DQUOTE] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [sym_true] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [anon_sym_NULL] = ACTIONS(2949), + [anon_sym_nullptr] = ACTIONS(2949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2949), + [anon_sym_decltype] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_alignas] = ACTIONS(2949), + [anon_sym_explicit] = ACTIONS(2949), + [anon_sym_typename] = ACTIONS(2949), + [anon_sym_template] = ACTIONS(2949), + [anon_sym_operator] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_delete] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_namespace] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_static_assert] = ACTIONS(2949), + [anon_sym_concept] = ACTIONS(2949), + [anon_sym_co_return] = ACTIONS(2949), + [anon_sym_co_yield] = ACTIONS(2949), + [anon_sym_R_DQUOTE] = ACTIONS(2951), + [anon_sym_LR_DQUOTE] = ACTIONS(2951), + [anon_sym_uR_DQUOTE] = ACTIONS(2951), + [anon_sym_UR_DQUOTE] = ACTIONS(2951), + [anon_sym_u8R_DQUOTE] = ACTIONS(2951), + [anon_sym_co_await] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_requires] = ACTIONS(2949), + [sym_this] = ACTIONS(2949), + }, + [601] = { + [ts_builtin_sym_end] = ACTIONS(2931), + [sym_identifier] = ACTIONS(2929), + [aux_sym_preproc_include_token1] = ACTIONS(2929), + [aux_sym_preproc_def_token1] = ACTIONS(2929), + [aux_sym_preproc_if_token1] = ACTIONS(2929), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), + [sym_preproc_directive] = ACTIONS(2929), + [anon_sym_LPAREN2] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(2931), + [anon_sym_TILDE] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_AMP_AMP] = ACTIONS(2931), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_SEMI] = ACTIONS(2931), + [anon_sym___extension__] = ACTIONS(2929), + [anon_sym_typedef] = ACTIONS(2929), + [anon_sym_extern] = ACTIONS(2929), + [anon_sym___attribute__] = ACTIONS(2929), + [anon_sym_COLON_COLON] = ACTIONS(2931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2931), + [anon_sym___declspec] = ACTIONS(2929), + [anon_sym___based] = ACTIONS(2929), + [anon_sym___cdecl] = ACTIONS(2929), + [anon_sym___clrcall] = ACTIONS(2929), + [anon_sym___stdcall] = ACTIONS(2929), + [anon_sym___fastcall] = ACTIONS(2929), + [anon_sym___thiscall] = ACTIONS(2929), + [anon_sym___vectorcall] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_signed] = ACTIONS(2929), + [anon_sym_unsigned] = ACTIONS(2929), + [anon_sym_long] = ACTIONS(2929), + [anon_sym_short] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_static] = ACTIONS(2929), + [anon_sym_register] = ACTIONS(2929), + [anon_sym_inline] = ACTIONS(2929), + [anon_sym___inline] = ACTIONS(2929), + [anon_sym___inline__] = ACTIONS(2929), + [anon_sym___forceinline] = ACTIONS(2929), + [anon_sym_thread_local] = ACTIONS(2929), + [anon_sym___thread] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2929), + [anon_sym_constexpr] = ACTIONS(2929), + [anon_sym_volatile] = ACTIONS(2929), + [anon_sym_restrict] = ACTIONS(2929), + [anon_sym___restrict__] = ACTIONS(2929), + [anon_sym__Atomic] = ACTIONS(2929), + [anon_sym__Noreturn] = ACTIONS(2929), + [anon_sym_noreturn] = ACTIONS(2929), + [anon_sym_mutable] = ACTIONS(2929), + [anon_sym_constinit] = ACTIONS(2929), + [anon_sym_consteval] = ACTIONS(2929), + [sym_primitive_type] = ACTIONS(2929), + [anon_sym_enum] = ACTIONS(2929), + [anon_sym_class] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2929), + [anon_sym_union] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_else] = ACTIONS(2929), + [anon_sym_switch] = ACTIONS(2929), + [anon_sym_case] = ACTIONS(2929), + [anon_sym_default] = ACTIONS(2929), + [anon_sym_while] = ACTIONS(2929), + [anon_sym_do] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_goto] = ACTIONS(2929), + [anon_sym___try] = ACTIONS(2929), + [anon_sym___leave] = ACTIONS(2929), + [anon_sym_not] = ACTIONS(2929), + [anon_sym_compl] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2931), + [anon_sym_PLUS_PLUS] = ACTIONS(2931), + [anon_sym_sizeof] = ACTIONS(2929), + [anon_sym___alignof__] = ACTIONS(2929), + [anon_sym___alignof] = ACTIONS(2929), + [anon_sym__alignof] = ACTIONS(2929), + [anon_sym_alignof] = ACTIONS(2929), + [anon_sym__Alignof] = ACTIONS(2929), + [anon_sym_offsetof] = ACTIONS(2929), + [anon_sym__Generic] = ACTIONS(2929), + [anon_sym_asm] = ACTIONS(2929), + [anon_sym___asm__] = ACTIONS(2929), + [sym_number_literal] = ACTIONS(2931), + [anon_sym_L_SQUOTE] = ACTIONS(2931), + [anon_sym_u_SQUOTE] = ACTIONS(2931), + [anon_sym_U_SQUOTE] = ACTIONS(2931), + [anon_sym_u8_SQUOTE] = ACTIONS(2931), + [anon_sym_SQUOTE] = ACTIONS(2931), + [anon_sym_L_DQUOTE] = ACTIONS(2931), + [anon_sym_u_DQUOTE] = ACTIONS(2931), + [anon_sym_U_DQUOTE] = ACTIONS(2931), + [anon_sym_u8_DQUOTE] = ACTIONS(2931), + [anon_sym_DQUOTE] = ACTIONS(2931), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [anon_sym_NULL] = ACTIONS(2929), + [anon_sym_nullptr] = ACTIONS(2929), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2929), + [anon_sym_decltype] = ACTIONS(2929), + [anon_sym_virtual] = ACTIONS(2929), + [anon_sym_alignas] = ACTIONS(2929), + [anon_sym_explicit] = ACTIONS(2929), + [anon_sym_typename] = ACTIONS(2929), + [anon_sym_template] = ACTIONS(2929), + [anon_sym_operator] = ACTIONS(2929), + [anon_sym_try] = ACTIONS(2929), + [anon_sym_delete] = ACTIONS(2929), + [anon_sym_throw] = ACTIONS(2929), + [anon_sym_namespace] = ACTIONS(2929), + [anon_sym_using] = ACTIONS(2929), + [anon_sym_static_assert] = ACTIONS(2929), + [anon_sym_concept] = ACTIONS(2929), + [anon_sym_co_return] = ACTIONS(2929), + [anon_sym_co_yield] = ACTIONS(2929), + [anon_sym_R_DQUOTE] = ACTIONS(2931), + [anon_sym_LR_DQUOTE] = ACTIONS(2931), + [anon_sym_uR_DQUOTE] = ACTIONS(2931), + [anon_sym_UR_DQUOTE] = ACTIONS(2931), + [anon_sym_u8R_DQUOTE] = ACTIONS(2931), + [anon_sym_co_await] = ACTIONS(2929), + [anon_sym_new] = ACTIONS(2929), + [anon_sym_requires] = ACTIONS(2929), + [sym_this] = ACTIONS(2929), + }, + [602] = { + [sym_identifier] = ACTIONS(2933), + [aux_sym_preproc_include_token1] = ACTIONS(2933), + [aux_sym_preproc_def_token1] = ACTIONS(2933), + [aux_sym_preproc_if_token1] = ACTIONS(2933), + [aux_sym_preproc_if_token2] = ACTIONS(2933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), + [sym_preproc_directive] = ACTIONS(2933), + [anon_sym_LPAREN2] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_SEMI] = ACTIONS(2935), + [anon_sym___extension__] = ACTIONS(2933), + [anon_sym_typedef] = ACTIONS(2933), + [anon_sym_extern] = ACTIONS(2933), + [anon_sym___attribute__] = ACTIONS(2933), + [anon_sym_COLON_COLON] = ACTIONS(2935), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), + [anon_sym___declspec] = ACTIONS(2933), + [anon_sym___based] = ACTIONS(2933), + [anon_sym___cdecl] = ACTIONS(2933), + [anon_sym___clrcall] = ACTIONS(2933), + [anon_sym___stdcall] = ACTIONS(2933), + [anon_sym___fastcall] = ACTIONS(2933), + [anon_sym___thiscall] = ACTIONS(2933), + [anon_sym___vectorcall] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_signed] = ACTIONS(2933), + [anon_sym_unsigned] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_static] = ACTIONS(2933), + [anon_sym_register] = ACTIONS(2933), + [anon_sym_inline] = ACTIONS(2933), + [anon_sym___inline] = ACTIONS(2933), + [anon_sym___inline__] = ACTIONS(2933), + [anon_sym___forceinline] = ACTIONS(2933), + [anon_sym_thread_local] = ACTIONS(2933), + [anon_sym___thread] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2933), + [anon_sym_constexpr] = ACTIONS(2933), + [anon_sym_volatile] = ACTIONS(2933), + [anon_sym_restrict] = ACTIONS(2933), + [anon_sym___restrict__] = ACTIONS(2933), + [anon_sym__Atomic] = ACTIONS(2933), + [anon_sym__Noreturn] = ACTIONS(2933), + [anon_sym_noreturn] = ACTIONS(2933), + [anon_sym_mutable] = ACTIONS(2933), + [anon_sym_constinit] = ACTIONS(2933), + [anon_sym_consteval] = ACTIONS(2933), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_enum] = ACTIONS(2933), + [anon_sym_class] = ACTIONS(2933), + [anon_sym_struct] = ACTIONS(2933), + [anon_sym_union] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_else] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2933), + [anon_sym_case] = ACTIONS(2933), + [anon_sym_default] = ACTIONS(2933), + [anon_sym_while] = ACTIONS(2933), + [anon_sym_do] = ACTIONS(2933), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_goto] = ACTIONS(2933), + [anon_sym___try] = ACTIONS(2933), + [anon_sym___leave] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2933), + [anon_sym_compl] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_sizeof] = ACTIONS(2933), + [anon_sym___alignof__] = ACTIONS(2933), + [anon_sym___alignof] = ACTIONS(2933), + [anon_sym__alignof] = ACTIONS(2933), + [anon_sym_alignof] = ACTIONS(2933), + [anon_sym__Alignof] = ACTIONS(2933), + [anon_sym_offsetof] = ACTIONS(2933), + [anon_sym__Generic] = ACTIONS(2933), + [anon_sym_asm] = ACTIONS(2933), + [anon_sym___asm__] = ACTIONS(2933), + [sym_number_literal] = ACTIONS(2935), + [anon_sym_L_SQUOTE] = ACTIONS(2935), + [anon_sym_u_SQUOTE] = ACTIONS(2935), + [anon_sym_U_SQUOTE] = ACTIONS(2935), + [anon_sym_u8_SQUOTE] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2935), + [anon_sym_L_DQUOTE] = ACTIONS(2935), + [anon_sym_u_DQUOTE] = ACTIONS(2935), + [anon_sym_U_DQUOTE] = ACTIONS(2935), + [anon_sym_u8_DQUOTE] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2935), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), + [anon_sym_NULL] = ACTIONS(2933), + [anon_sym_nullptr] = ACTIONS(2933), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2933), + [anon_sym_decltype] = ACTIONS(2933), + [anon_sym_virtual] = ACTIONS(2933), + [anon_sym_alignas] = ACTIONS(2933), + [anon_sym_explicit] = ACTIONS(2933), + [anon_sym_typename] = ACTIONS(2933), + [anon_sym_template] = ACTIONS(2933), + [anon_sym_operator] = ACTIONS(2933), + [anon_sym_try] = ACTIONS(2933), + [anon_sym_delete] = ACTIONS(2933), + [anon_sym_throw] = ACTIONS(2933), + [anon_sym_namespace] = ACTIONS(2933), + [anon_sym_using] = ACTIONS(2933), + [anon_sym_static_assert] = ACTIONS(2933), + [anon_sym_concept] = ACTIONS(2933), + [anon_sym_co_return] = ACTIONS(2933), + [anon_sym_co_yield] = ACTIONS(2933), + [anon_sym_R_DQUOTE] = ACTIONS(2935), + [anon_sym_LR_DQUOTE] = ACTIONS(2935), + [anon_sym_uR_DQUOTE] = ACTIONS(2935), + [anon_sym_UR_DQUOTE] = ACTIONS(2935), + [anon_sym_u8R_DQUOTE] = ACTIONS(2935), + [anon_sym_co_await] = ACTIONS(2933), + [anon_sym_new] = ACTIONS(2933), + [anon_sym_requires] = ACTIONS(2933), + [sym_this] = ACTIONS(2933), + }, + [603] = { + [sym_preproc_def] = STATE(744), + [sym_preproc_function_def] = STATE(744), + [sym_preproc_call] = STATE(744), + [sym_preproc_if_in_field_declaration_list] = STATE(744), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(744), + [sym_preproc_else_in_field_declaration_list] = STATE(9095), + [sym_preproc_elif_in_field_declaration_list] = STATE(9095), + [sym_type_definition] = STATE(744), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6205), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(744), + [sym_field_declaration] = STATE(744), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(744), + [sym_operator_cast] = STATE(7192), + [sym_inline_method_definition] = STATE(744), + [sym__constructor_specifiers] = STATE(2057), + [sym_operator_cast_definition] = STATE(744), + [sym_operator_cast_declaration] = STATE(744), + [sym_constructor_or_destructor_definition] = STATE(744), + [sym_constructor_or_destructor_declaration] = STATE(744), + [sym_friend_declaration] = STATE(744), + [sym_access_specifier] = STATE(8453), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(744), + [sym_alias_declaration] = STATE(744), + [sym_static_assert_declaration] = STATE(744), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(744), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3432), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), [anon_sym_const] = ACTIONS(61), [anon_sym_constexpr] = ACTIONS(61), [anon_sym_volatile] = ACTIONS(61), @@ -171217,2467 +174252,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3424), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [584] = { - [sym_identifier] = ACTIONS(3098), - [aux_sym_preproc_include_token1] = ACTIONS(3098), - [aux_sym_preproc_def_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token2] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), - [aux_sym_preproc_else_token1] = ACTIONS(3098), - [aux_sym_preproc_elif_token1] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_LPAREN2] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3100), - [anon_sym___extension__] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym___attribute__] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), - [anon_sym___declspec] = ACTIONS(3098), - [anon_sym___based] = ACTIONS(3098), - [anon_sym___cdecl] = ACTIONS(3098), - [anon_sym___clrcall] = ACTIONS(3098), - [anon_sym___stdcall] = ACTIONS(3098), - [anon_sym___fastcall] = ACTIONS(3098), - [anon_sym___thiscall] = ACTIONS(3098), - [anon_sym___vectorcall] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_signed] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym___inline] = ACTIONS(3098), - [anon_sym___inline__] = ACTIONS(3098), - [anon_sym___forceinline] = ACTIONS(3098), - [anon_sym_thread_local] = ACTIONS(3098), - [anon_sym___thread] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym___restrict__] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym__Noreturn] = ACTIONS(3098), - [anon_sym_noreturn] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_constinit] = ACTIONS(3098), - [anon_sym_consteval] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym___try] = ACTIONS(3098), - [anon_sym___leave] = ACTIONS(3098), - [anon_sym_not] = ACTIONS(3098), - [anon_sym_compl] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_sizeof] = ACTIONS(3098), - [anon_sym___alignof__] = ACTIONS(3098), - [anon_sym___alignof] = ACTIONS(3098), - [anon_sym__alignof] = ACTIONS(3098), - [anon_sym_alignof] = ACTIONS(3098), - [anon_sym__Alignof] = ACTIONS(3098), - [anon_sym_offsetof] = ACTIONS(3098), - [anon_sym__Generic] = ACTIONS(3098), - [anon_sym_asm] = ACTIONS(3098), - [anon_sym___asm__] = ACTIONS(3098), - [sym_number_literal] = ACTIONS(3100), - [anon_sym_L_SQUOTE] = ACTIONS(3100), - [anon_sym_u_SQUOTE] = ACTIONS(3100), - [anon_sym_U_SQUOTE] = ACTIONS(3100), - [anon_sym_u8_SQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [anon_sym_L_DQUOTE] = ACTIONS(3100), - [anon_sym_u_DQUOTE] = ACTIONS(3100), - [anon_sym_U_DQUOTE] = ACTIONS(3100), - [anon_sym_u8_DQUOTE] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [anon_sym_NULL] = ACTIONS(3098), - [anon_sym_nullptr] = ACTIONS(3098), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3098), - [anon_sym_decltype] = ACTIONS(3098), - [anon_sym_virtual] = ACTIONS(3098), - [anon_sym_alignas] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_template] = ACTIONS(3098), - [anon_sym_operator] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(3098), - [anon_sym_delete] = ACTIONS(3098), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_namespace] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_static_assert] = ACTIONS(3098), - [anon_sym_concept] = ACTIONS(3098), - [anon_sym_co_return] = ACTIONS(3098), - [anon_sym_co_yield] = ACTIONS(3098), - [anon_sym_R_DQUOTE] = ACTIONS(3100), - [anon_sym_LR_DQUOTE] = ACTIONS(3100), - [anon_sym_uR_DQUOTE] = ACTIONS(3100), - [anon_sym_UR_DQUOTE] = ACTIONS(3100), - [anon_sym_u8R_DQUOTE] = ACTIONS(3100), - [anon_sym_co_await] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_requires] = ACTIONS(3098), - [sym_this] = ACTIONS(3098), - }, - [585] = { - [sym_else_clause] = STATE(757), - [sym_identifier] = ACTIONS(2840), - [aux_sym_preproc_include_token1] = ACTIONS(2840), - [aux_sym_preproc_def_token1] = ACTIONS(2840), - [aux_sym_preproc_if_token1] = ACTIONS(2840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2840), - [sym_preproc_directive] = ACTIONS(2840), - [anon_sym_LPAREN2] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2842), - [anon_sym___extension__] = ACTIONS(2840), - [anon_sym_typedef] = ACTIONS(2840), - [anon_sym_extern] = ACTIONS(2840), - [anon_sym___attribute__] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2842), - [anon_sym___declspec] = ACTIONS(2840), - [anon_sym___based] = ACTIONS(2840), - [anon_sym___cdecl] = ACTIONS(2840), - [anon_sym___clrcall] = ACTIONS(2840), - [anon_sym___stdcall] = ACTIONS(2840), - [anon_sym___fastcall] = ACTIONS(2840), - [anon_sym___thiscall] = ACTIONS(2840), - [anon_sym___vectorcall] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_RBRACE] = ACTIONS(2842), - [anon_sym_signed] = ACTIONS(2840), - [anon_sym_unsigned] = ACTIONS(2840), - [anon_sym_long] = ACTIONS(2840), - [anon_sym_short] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_register] = ACTIONS(2840), - [anon_sym_inline] = ACTIONS(2840), - [anon_sym___inline] = ACTIONS(2840), - [anon_sym___inline__] = ACTIONS(2840), - [anon_sym___forceinline] = ACTIONS(2840), - [anon_sym_thread_local] = ACTIONS(2840), - [anon_sym___thread] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_constexpr] = ACTIONS(2840), - [anon_sym_volatile] = ACTIONS(2840), - [anon_sym_restrict] = ACTIONS(2840), - [anon_sym___restrict__] = ACTIONS(2840), - [anon_sym__Atomic] = ACTIONS(2840), - [anon_sym__Noreturn] = ACTIONS(2840), - [anon_sym_noreturn] = ACTIONS(2840), - [anon_sym_mutable] = ACTIONS(2840), - [anon_sym_constinit] = ACTIONS(2840), - [anon_sym_consteval] = ACTIONS(2840), - [sym_primitive_type] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_else] = ACTIONS(3394), - [anon_sym_switch] = ACTIONS(2840), - [anon_sym_case] = ACTIONS(2840), - [anon_sym_default] = ACTIONS(2840), - [anon_sym_while] = ACTIONS(2840), - [anon_sym_do] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym___try] = ACTIONS(2840), - [anon_sym___leave] = ACTIONS(2840), - [anon_sym_not] = ACTIONS(2840), - [anon_sym_compl] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_sizeof] = ACTIONS(2840), - [anon_sym___alignof__] = ACTIONS(2840), - [anon_sym___alignof] = ACTIONS(2840), - [anon_sym__alignof] = ACTIONS(2840), - [anon_sym_alignof] = ACTIONS(2840), - [anon_sym__Alignof] = ACTIONS(2840), - [anon_sym_offsetof] = ACTIONS(2840), - [anon_sym__Generic] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym___asm__] = ACTIONS(2840), - [sym_number_literal] = ACTIONS(2842), - [anon_sym_L_SQUOTE] = ACTIONS(2842), - [anon_sym_u_SQUOTE] = ACTIONS(2842), - [anon_sym_U_SQUOTE] = ACTIONS(2842), - [anon_sym_u8_SQUOTE] = ACTIONS(2842), - [anon_sym_SQUOTE] = ACTIONS(2842), - [anon_sym_L_DQUOTE] = ACTIONS(2842), - [anon_sym_u_DQUOTE] = ACTIONS(2842), - [anon_sym_U_DQUOTE] = ACTIONS(2842), - [anon_sym_u8_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [anon_sym_NULL] = ACTIONS(2840), - [anon_sym_nullptr] = ACTIONS(2840), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2840), - [anon_sym_decltype] = ACTIONS(2840), - [anon_sym_virtual] = ACTIONS(2840), - [anon_sym_alignas] = ACTIONS(2840), - [anon_sym_explicit] = ACTIONS(2840), - [anon_sym_typename] = ACTIONS(2840), - [anon_sym_template] = ACTIONS(2840), - [anon_sym_operator] = ACTIONS(2840), - [anon_sym_try] = ACTIONS(2840), - [anon_sym_delete] = ACTIONS(2840), - [anon_sym_throw] = ACTIONS(2840), - [anon_sym_namespace] = ACTIONS(2840), - [anon_sym_using] = ACTIONS(2840), - [anon_sym_static_assert] = ACTIONS(2840), - [anon_sym_concept] = ACTIONS(2840), - [anon_sym_co_return] = ACTIONS(2840), - [anon_sym_co_yield] = ACTIONS(2840), - [anon_sym_R_DQUOTE] = ACTIONS(2842), - [anon_sym_LR_DQUOTE] = ACTIONS(2842), - [anon_sym_uR_DQUOTE] = ACTIONS(2842), - [anon_sym_UR_DQUOTE] = ACTIONS(2842), - [anon_sym_u8R_DQUOTE] = ACTIONS(2842), - [anon_sym_co_await] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2840), - [anon_sym_requires] = ACTIONS(2840), - [sym_this] = ACTIONS(2840), - }, - [586] = { - [sym_identifier] = ACTIONS(3292), - [aux_sym_preproc_include_token1] = ACTIONS(3292), - [aux_sym_preproc_def_token1] = ACTIONS(3292), - [aux_sym_preproc_if_token1] = ACTIONS(3292), - [aux_sym_preproc_if_token2] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3292), - [aux_sym_preproc_else_token1] = ACTIONS(3292), - [aux_sym_preproc_elif_token1] = ACTIONS(3292), - [sym_preproc_directive] = ACTIONS(3292), - [anon_sym_LPAREN2] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_AMP_AMP] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym___extension__] = ACTIONS(3292), - [anon_sym_typedef] = ACTIONS(3292), - [anon_sym_extern] = ACTIONS(3292), - [anon_sym___attribute__] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3294), - [anon_sym___declspec] = ACTIONS(3292), - [anon_sym___based] = ACTIONS(3292), - [anon_sym___cdecl] = ACTIONS(3292), - [anon_sym___clrcall] = ACTIONS(3292), - [anon_sym___stdcall] = ACTIONS(3292), - [anon_sym___fastcall] = ACTIONS(3292), - [anon_sym___thiscall] = ACTIONS(3292), - [anon_sym___vectorcall] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_signed] = ACTIONS(3292), - [anon_sym_unsigned] = ACTIONS(3292), - [anon_sym_long] = ACTIONS(3292), - [anon_sym_short] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_register] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym___inline] = ACTIONS(3292), - [anon_sym___inline__] = ACTIONS(3292), - [anon_sym___forceinline] = ACTIONS(3292), - [anon_sym_thread_local] = ACTIONS(3292), - [anon_sym___thread] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_constexpr] = ACTIONS(3292), - [anon_sym_volatile] = ACTIONS(3292), - [anon_sym_restrict] = ACTIONS(3292), - [anon_sym___restrict__] = ACTIONS(3292), - [anon_sym__Atomic] = ACTIONS(3292), - [anon_sym__Noreturn] = ACTIONS(3292), - [anon_sym_noreturn] = ACTIONS(3292), - [anon_sym_mutable] = ACTIONS(3292), - [anon_sym_constinit] = ACTIONS(3292), - [anon_sym_consteval] = ACTIONS(3292), - [sym_primitive_type] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3292), - [anon_sym_union] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_case] = ACTIONS(3292), - [anon_sym_default] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_goto] = ACTIONS(3292), - [anon_sym___try] = ACTIONS(3292), - [anon_sym___leave] = ACTIONS(3292), - [anon_sym_not] = ACTIONS(3292), - [anon_sym_compl] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_sizeof] = ACTIONS(3292), - [anon_sym___alignof__] = ACTIONS(3292), - [anon_sym___alignof] = ACTIONS(3292), - [anon_sym__alignof] = ACTIONS(3292), - [anon_sym_alignof] = ACTIONS(3292), - [anon_sym__Alignof] = ACTIONS(3292), - [anon_sym_offsetof] = ACTIONS(3292), - [anon_sym__Generic] = ACTIONS(3292), - [anon_sym_asm] = ACTIONS(3292), - [anon_sym___asm__] = ACTIONS(3292), - [sym_number_literal] = ACTIONS(3294), - [anon_sym_L_SQUOTE] = ACTIONS(3294), - [anon_sym_u_SQUOTE] = ACTIONS(3294), - [anon_sym_U_SQUOTE] = ACTIONS(3294), - [anon_sym_u8_SQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_L_DQUOTE] = ACTIONS(3294), - [anon_sym_u_DQUOTE] = ACTIONS(3294), - [anon_sym_U_DQUOTE] = ACTIONS(3294), - [anon_sym_u8_DQUOTE] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [anon_sym_NULL] = ACTIONS(3292), - [anon_sym_nullptr] = ACTIONS(3292), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3292), - [anon_sym_decltype] = ACTIONS(3292), - [anon_sym_virtual] = ACTIONS(3292), - [anon_sym_alignas] = ACTIONS(3292), - [anon_sym_explicit] = ACTIONS(3292), - [anon_sym_typename] = ACTIONS(3292), - [anon_sym_template] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_static_assert] = ACTIONS(3292), - [anon_sym_concept] = ACTIONS(3292), - [anon_sym_co_return] = ACTIONS(3292), - [anon_sym_co_yield] = ACTIONS(3292), - [anon_sym_R_DQUOTE] = ACTIONS(3294), - [anon_sym_LR_DQUOTE] = ACTIONS(3294), - [anon_sym_uR_DQUOTE] = ACTIONS(3294), - [anon_sym_UR_DQUOTE] = ACTIONS(3294), - [anon_sym_u8R_DQUOTE] = ACTIONS(3294), - [anon_sym_co_await] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_requires] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3446), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_static_assert] = ACTIONS(3452), }, - [587] = { - [sym_identifier] = ACTIONS(3207), - [aux_sym_preproc_include_token1] = ACTIONS(3207), - [aux_sym_preproc_def_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token2] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), - [aux_sym_preproc_else_token1] = ACTIONS(3207), - [aux_sym_preproc_elif_token1] = ACTIONS(3207), - [sym_preproc_directive] = ACTIONS(3207), - [anon_sym_LPAREN2] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_AMP_AMP] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym___based] = ACTIONS(3207), - [anon_sym___cdecl] = ACTIONS(3207), - [anon_sym___clrcall] = ACTIONS(3207), - [anon_sym___stdcall] = ACTIONS(3207), - [anon_sym___fastcall] = ACTIONS(3207), - [anon_sym___thiscall] = ACTIONS(3207), - [anon_sym___vectorcall] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym___try] = ACTIONS(3207), - [anon_sym___leave] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_explicit] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_operator] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_static_assert] = ACTIONS(3207), - [anon_sym_concept] = ACTIONS(3207), - [anon_sym_co_return] = ACTIONS(3207), - [anon_sym_co_yield] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), - }, - [588] = { - [sym_identifier] = ACTIONS(3203), - [aux_sym_preproc_include_token1] = ACTIONS(3203), - [aux_sym_preproc_def_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token2] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), - [aux_sym_preproc_else_token1] = ACTIONS(3203), - [aux_sym_preproc_elif_token1] = ACTIONS(3203), - [sym_preproc_directive] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym___extension__] = ACTIONS(3203), - [anon_sym_typedef] = ACTIONS(3203), - [anon_sym_extern] = ACTIONS(3203), - [anon_sym___attribute__] = ACTIONS(3203), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), - [anon_sym___declspec] = ACTIONS(3203), - [anon_sym___based] = ACTIONS(3203), - [anon_sym___cdecl] = ACTIONS(3203), - [anon_sym___clrcall] = ACTIONS(3203), - [anon_sym___stdcall] = ACTIONS(3203), - [anon_sym___fastcall] = ACTIONS(3203), - [anon_sym___thiscall] = ACTIONS(3203), - [anon_sym___vectorcall] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_signed] = ACTIONS(3203), - [anon_sym_unsigned] = ACTIONS(3203), - [anon_sym_long] = ACTIONS(3203), - [anon_sym_short] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_register] = ACTIONS(3203), - [anon_sym_inline] = ACTIONS(3203), - [anon_sym___inline] = ACTIONS(3203), - [anon_sym___inline__] = ACTIONS(3203), - [anon_sym___forceinline] = ACTIONS(3203), - [anon_sym_thread_local] = ACTIONS(3203), - [anon_sym___thread] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_constexpr] = ACTIONS(3203), - [anon_sym_volatile] = ACTIONS(3203), - [anon_sym_restrict] = ACTIONS(3203), - [anon_sym___restrict__] = ACTIONS(3203), - [anon_sym__Atomic] = ACTIONS(3203), - [anon_sym__Noreturn] = ACTIONS(3203), - [anon_sym_noreturn] = ACTIONS(3203), - [anon_sym_mutable] = ACTIONS(3203), - [anon_sym_constinit] = ACTIONS(3203), - [anon_sym_consteval] = ACTIONS(3203), - [sym_primitive_type] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_case] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_do] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym___try] = ACTIONS(3203), - [anon_sym___leave] = ACTIONS(3203), - [anon_sym_not] = ACTIONS(3203), - [anon_sym_compl] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3203), - [anon_sym___alignof__] = ACTIONS(3203), - [anon_sym___alignof] = ACTIONS(3203), - [anon_sym__alignof] = ACTIONS(3203), - [anon_sym_alignof] = ACTIONS(3203), - [anon_sym__Alignof] = ACTIONS(3203), - [anon_sym_offsetof] = ACTIONS(3203), - [anon_sym__Generic] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym___asm__] = ACTIONS(3203), - [sym_number_literal] = ACTIONS(3205), - [anon_sym_L_SQUOTE] = ACTIONS(3205), - [anon_sym_u_SQUOTE] = ACTIONS(3205), - [anon_sym_U_SQUOTE] = ACTIONS(3205), - [anon_sym_u8_SQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_L_DQUOTE] = ACTIONS(3205), - [anon_sym_u_DQUOTE] = ACTIONS(3205), - [anon_sym_U_DQUOTE] = ACTIONS(3205), - [anon_sym_u8_DQUOTE] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [anon_sym_NULL] = ACTIONS(3203), - [anon_sym_nullptr] = ACTIONS(3203), + [604] = { + [ts_builtin_sym_end] = ACTIONS(2923), + [sym_identifier] = ACTIONS(2921), + [aux_sym_preproc_include_token1] = ACTIONS(2921), + [aux_sym_preproc_def_token1] = ACTIONS(2921), + [aux_sym_preproc_if_token1] = ACTIONS(2921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), + [sym_preproc_directive] = ACTIONS(2921), + [anon_sym_LPAREN2] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_AMP_AMP] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym___extension__] = ACTIONS(2921), + [anon_sym_typedef] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym___attribute__] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(2923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), + [anon_sym___declspec] = ACTIONS(2921), + [anon_sym___based] = ACTIONS(2921), + [anon_sym___cdecl] = ACTIONS(2921), + [anon_sym___clrcall] = ACTIONS(2921), + [anon_sym___stdcall] = ACTIONS(2921), + [anon_sym___fastcall] = ACTIONS(2921), + [anon_sym___thiscall] = ACTIONS(2921), + [anon_sym___vectorcall] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2921), + [anon_sym_unsigned] = ACTIONS(2921), + [anon_sym_long] = ACTIONS(2921), + [anon_sym_short] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_register] = ACTIONS(2921), + [anon_sym_inline] = ACTIONS(2921), + [anon_sym___inline] = ACTIONS(2921), + [anon_sym___inline__] = ACTIONS(2921), + [anon_sym___forceinline] = ACTIONS(2921), + [anon_sym_thread_local] = ACTIONS(2921), + [anon_sym___thread] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_constexpr] = ACTIONS(2921), + [anon_sym_volatile] = ACTIONS(2921), + [anon_sym_restrict] = ACTIONS(2921), + [anon_sym___restrict__] = ACTIONS(2921), + [anon_sym__Atomic] = ACTIONS(2921), + [anon_sym__Noreturn] = ACTIONS(2921), + [anon_sym_noreturn] = ACTIONS(2921), + [anon_sym_mutable] = ACTIONS(2921), + [anon_sym_constinit] = ACTIONS(2921), + [anon_sym_consteval] = ACTIONS(2921), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), + [anon_sym_class] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_union] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_else] = ACTIONS(2921), + [anon_sym_switch] = ACTIONS(2921), + [anon_sym_case] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_do] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_goto] = ACTIONS(2921), + [anon_sym___try] = ACTIONS(2921), + [anon_sym___leave] = ACTIONS(2921), + [anon_sym_not] = ACTIONS(2921), + [anon_sym_compl] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_sizeof] = ACTIONS(2921), + [anon_sym___alignof__] = ACTIONS(2921), + [anon_sym___alignof] = ACTIONS(2921), + [anon_sym__alignof] = ACTIONS(2921), + [anon_sym_alignof] = ACTIONS(2921), + [anon_sym__Alignof] = ACTIONS(2921), + [anon_sym_offsetof] = ACTIONS(2921), + [anon_sym__Generic] = ACTIONS(2921), + [anon_sym_asm] = ACTIONS(2921), + [anon_sym___asm__] = ACTIONS(2921), + [sym_number_literal] = ACTIONS(2923), + [anon_sym_L_SQUOTE] = ACTIONS(2923), + [anon_sym_u_SQUOTE] = ACTIONS(2923), + [anon_sym_U_SQUOTE] = ACTIONS(2923), + [anon_sym_u8_SQUOTE] = ACTIONS(2923), + [anon_sym_SQUOTE] = ACTIONS(2923), + [anon_sym_L_DQUOTE] = ACTIONS(2923), + [anon_sym_u_DQUOTE] = ACTIONS(2923), + [anon_sym_U_DQUOTE] = ACTIONS(2923), + [anon_sym_u8_DQUOTE] = ACTIONS(2923), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [anon_sym_NULL] = ACTIONS(2921), + [anon_sym_nullptr] = ACTIONS(2921), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3203), - [anon_sym_decltype] = ACTIONS(3203), - [anon_sym_virtual] = ACTIONS(3203), - [anon_sym_alignas] = ACTIONS(3203), - [anon_sym_explicit] = ACTIONS(3203), - [anon_sym_typename] = ACTIONS(3203), - [anon_sym_template] = ACTIONS(3203), - [anon_sym_operator] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_delete] = ACTIONS(3203), - [anon_sym_throw] = ACTIONS(3203), - [anon_sym_namespace] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_static_assert] = ACTIONS(3203), - [anon_sym_concept] = ACTIONS(3203), - [anon_sym_co_return] = ACTIONS(3203), - [anon_sym_co_yield] = ACTIONS(3203), - [anon_sym_R_DQUOTE] = ACTIONS(3205), - [anon_sym_LR_DQUOTE] = ACTIONS(3205), - [anon_sym_uR_DQUOTE] = ACTIONS(3205), - [anon_sym_UR_DQUOTE] = ACTIONS(3205), - [anon_sym_u8R_DQUOTE] = ACTIONS(3205), - [anon_sym_co_await] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(3203), - [anon_sym_requires] = ACTIONS(3203), - [sym_this] = ACTIONS(3203), - }, - [589] = { - [sym_identifier] = ACTIONS(3172), - [aux_sym_preproc_include_token1] = ACTIONS(3172), - [aux_sym_preproc_def_token1] = ACTIONS(3172), - [aux_sym_preproc_if_token1] = ACTIONS(3172), - [aux_sym_preproc_if_token2] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), - [aux_sym_preproc_else_token1] = ACTIONS(3172), - [aux_sym_preproc_elif_token1] = ACTIONS(3172), - [sym_preproc_directive] = ACTIONS(3172), - [anon_sym_LPAREN2] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_STAR] = ACTIONS(3174), - [anon_sym_AMP_AMP] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym___extension__] = ACTIONS(3172), - [anon_sym_typedef] = ACTIONS(3172), - [anon_sym_extern] = ACTIONS(3172), - [anon_sym___attribute__] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), - [anon_sym___declspec] = ACTIONS(3172), - [anon_sym___based] = ACTIONS(3172), - [anon_sym___cdecl] = ACTIONS(3172), - [anon_sym___clrcall] = ACTIONS(3172), - [anon_sym___stdcall] = ACTIONS(3172), - [anon_sym___fastcall] = ACTIONS(3172), - [anon_sym___thiscall] = ACTIONS(3172), - [anon_sym___vectorcall] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_signed] = ACTIONS(3172), - [anon_sym_unsigned] = ACTIONS(3172), - [anon_sym_long] = ACTIONS(3172), - [anon_sym_short] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_register] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym___inline] = ACTIONS(3172), - [anon_sym___inline__] = ACTIONS(3172), - [anon_sym___forceinline] = ACTIONS(3172), - [anon_sym_thread_local] = ACTIONS(3172), - [anon_sym___thread] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_constexpr] = ACTIONS(3172), - [anon_sym_volatile] = ACTIONS(3172), - [anon_sym_restrict] = ACTIONS(3172), - [anon_sym___restrict__] = ACTIONS(3172), - [anon_sym__Atomic] = ACTIONS(3172), - [anon_sym__Noreturn] = ACTIONS(3172), - [anon_sym_noreturn] = ACTIONS(3172), - [anon_sym_mutable] = ACTIONS(3172), - [anon_sym_constinit] = ACTIONS(3172), - [anon_sym_consteval] = ACTIONS(3172), - [sym_primitive_type] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_struct] = ACTIONS(3172), - [anon_sym_union] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_case] = ACTIONS(3172), - [anon_sym_default] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_goto] = ACTIONS(3172), - [anon_sym___try] = ACTIONS(3172), - [anon_sym___leave] = ACTIONS(3172), - [anon_sym_not] = ACTIONS(3172), - [anon_sym_compl] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_sizeof] = ACTIONS(3172), - [anon_sym___alignof__] = ACTIONS(3172), - [anon_sym___alignof] = ACTIONS(3172), - [anon_sym__alignof] = ACTIONS(3172), - [anon_sym_alignof] = ACTIONS(3172), - [anon_sym__Alignof] = ACTIONS(3172), - [anon_sym_offsetof] = ACTIONS(3172), - [anon_sym__Generic] = ACTIONS(3172), - [anon_sym_asm] = ACTIONS(3172), - [anon_sym___asm__] = ACTIONS(3172), - [sym_number_literal] = ACTIONS(3174), - [anon_sym_L_SQUOTE] = ACTIONS(3174), - [anon_sym_u_SQUOTE] = ACTIONS(3174), - [anon_sym_U_SQUOTE] = ACTIONS(3174), - [anon_sym_u8_SQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_L_DQUOTE] = ACTIONS(3174), - [anon_sym_u_DQUOTE] = ACTIONS(3174), - [anon_sym_U_DQUOTE] = ACTIONS(3174), - [anon_sym_u8_DQUOTE] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [anon_sym_NULL] = ACTIONS(3172), - [anon_sym_nullptr] = ACTIONS(3172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3172), - [anon_sym_decltype] = ACTIONS(3172), - [anon_sym_virtual] = ACTIONS(3172), - [anon_sym_alignas] = ACTIONS(3172), - [anon_sym_explicit] = ACTIONS(3172), - [anon_sym_typename] = ACTIONS(3172), - [anon_sym_template] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_static_assert] = ACTIONS(3172), - [anon_sym_concept] = ACTIONS(3172), - [anon_sym_co_return] = ACTIONS(3172), - [anon_sym_co_yield] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_requires] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - }, - [590] = { - [sym_identifier] = ACTIONS(3186), - [aux_sym_preproc_include_token1] = ACTIONS(3186), - [aux_sym_preproc_def_token1] = ACTIONS(3186), - [aux_sym_preproc_if_token1] = ACTIONS(3186), - [aux_sym_preproc_if_token2] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3186), - [aux_sym_preproc_else_token1] = ACTIONS(3186), - [aux_sym_preproc_elif_token1] = ACTIONS(3186), - [sym_preproc_directive] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym___extension__] = ACTIONS(3186), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym___attribute__] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3188), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3188), - [anon_sym___declspec] = ACTIONS(3186), - [anon_sym___based] = ACTIONS(3186), - [anon_sym___cdecl] = ACTIONS(3186), - [anon_sym___clrcall] = ACTIONS(3186), - [anon_sym___stdcall] = ACTIONS(3186), - [anon_sym___fastcall] = ACTIONS(3186), - [anon_sym___thiscall] = ACTIONS(3186), - [anon_sym___vectorcall] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_signed] = ACTIONS(3186), - [anon_sym_unsigned] = ACTIONS(3186), - [anon_sym_long] = ACTIONS(3186), - [anon_sym_short] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_register] = ACTIONS(3186), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym___inline] = ACTIONS(3186), - [anon_sym___inline__] = ACTIONS(3186), - [anon_sym___forceinline] = ACTIONS(3186), - [anon_sym_thread_local] = ACTIONS(3186), - [anon_sym___thread] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_constexpr] = ACTIONS(3186), - [anon_sym_volatile] = ACTIONS(3186), - [anon_sym_restrict] = ACTIONS(3186), - [anon_sym___restrict__] = ACTIONS(3186), - [anon_sym__Atomic] = ACTIONS(3186), - [anon_sym__Noreturn] = ACTIONS(3186), - [anon_sym_noreturn] = ACTIONS(3186), - [anon_sym_mutable] = ACTIONS(3186), - [anon_sym_constinit] = ACTIONS(3186), - [anon_sym_consteval] = ACTIONS(3186), - [sym_primitive_type] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_struct] = ACTIONS(3186), - [anon_sym_union] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_goto] = ACTIONS(3186), - [anon_sym___try] = ACTIONS(3186), - [anon_sym___leave] = ACTIONS(3186), - [anon_sym_not] = ACTIONS(3186), - [anon_sym_compl] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_sizeof] = ACTIONS(3186), - [anon_sym___alignof__] = ACTIONS(3186), - [anon_sym___alignof] = ACTIONS(3186), - [anon_sym__alignof] = ACTIONS(3186), - [anon_sym_alignof] = ACTIONS(3186), - [anon_sym__Alignof] = ACTIONS(3186), - [anon_sym_offsetof] = ACTIONS(3186), - [anon_sym__Generic] = ACTIONS(3186), - [anon_sym_asm] = ACTIONS(3186), - [anon_sym___asm__] = ACTIONS(3186), - [sym_number_literal] = ACTIONS(3188), - [anon_sym_L_SQUOTE] = ACTIONS(3188), - [anon_sym_u_SQUOTE] = ACTIONS(3188), - [anon_sym_U_SQUOTE] = ACTIONS(3188), - [anon_sym_u8_SQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_L_DQUOTE] = ACTIONS(3188), - [anon_sym_u_DQUOTE] = ACTIONS(3188), - [anon_sym_U_DQUOTE] = ACTIONS(3188), - [anon_sym_u8_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [anon_sym_NULL] = ACTIONS(3186), - [anon_sym_nullptr] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3186), - [anon_sym_decltype] = ACTIONS(3186), - [anon_sym_virtual] = ACTIONS(3186), - [anon_sym_alignas] = ACTIONS(3186), - [anon_sym_explicit] = ACTIONS(3186), - [anon_sym_typename] = ACTIONS(3186), - [anon_sym_template] = ACTIONS(3186), - [anon_sym_operator] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_static_assert] = ACTIONS(3186), - [anon_sym_concept] = ACTIONS(3186), - [anon_sym_co_return] = ACTIONS(3186), - [anon_sym_co_yield] = ACTIONS(3186), - [anon_sym_R_DQUOTE] = ACTIONS(3188), - [anon_sym_LR_DQUOTE] = ACTIONS(3188), - [anon_sym_uR_DQUOTE] = ACTIONS(3188), - [anon_sym_UR_DQUOTE] = ACTIONS(3188), - [anon_sym_u8R_DQUOTE] = ACTIONS(3188), - [anon_sym_co_await] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_requires] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), - }, - [591] = { - [sym_identifier] = ACTIONS(3132), - [aux_sym_preproc_include_token1] = ACTIONS(3132), - [aux_sym_preproc_def_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token2] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), - [aux_sym_preproc_else_token1] = ACTIONS(3132), - [aux_sym_preproc_elif_token1] = ACTIONS(3132), - [sym_preproc_directive] = ACTIONS(3132), - [anon_sym_LPAREN2] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_STAR] = ACTIONS(3134), - [anon_sym_AMP_AMP] = ACTIONS(3134), - [anon_sym_AMP] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3134), - [anon_sym___extension__] = ACTIONS(3132), - [anon_sym_typedef] = ACTIONS(3132), - [anon_sym_extern] = ACTIONS(3132), - [anon_sym___attribute__] = ACTIONS(3132), - [anon_sym_COLON_COLON] = ACTIONS(3134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), - [anon_sym___declspec] = ACTIONS(3132), - [anon_sym___based] = ACTIONS(3132), - [anon_sym___cdecl] = ACTIONS(3132), - [anon_sym___clrcall] = ACTIONS(3132), - [anon_sym___stdcall] = ACTIONS(3132), - [anon_sym___fastcall] = ACTIONS(3132), - [anon_sym___thiscall] = ACTIONS(3132), - [anon_sym___vectorcall] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3134), - [anon_sym_signed] = ACTIONS(3132), - [anon_sym_unsigned] = ACTIONS(3132), - [anon_sym_long] = ACTIONS(3132), - [anon_sym_short] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_register] = ACTIONS(3132), - [anon_sym_inline] = ACTIONS(3132), - [anon_sym___inline] = ACTIONS(3132), - [anon_sym___inline__] = ACTIONS(3132), - [anon_sym___forceinline] = ACTIONS(3132), - [anon_sym_thread_local] = ACTIONS(3132), - [anon_sym___thread] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_constexpr] = ACTIONS(3132), - [anon_sym_volatile] = ACTIONS(3132), - [anon_sym_restrict] = ACTIONS(3132), - [anon_sym___restrict__] = ACTIONS(3132), - [anon_sym__Atomic] = ACTIONS(3132), - [anon_sym__Noreturn] = ACTIONS(3132), - [anon_sym_noreturn] = ACTIONS(3132), - [anon_sym_mutable] = ACTIONS(3132), - [anon_sym_constinit] = ACTIONS(3132), - [anon_sym_consteval] = ACTIONS(3132), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(3132), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_case] = ACTIONS(3132), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_goto] = ACTIONS(3132), - [anon_sym___try] = ACTIONS(3132), - [anon_sym___leave] = ACTIONS(3132), - [anon_sym_not] = ACTIONS(3132), - [anon_sym_compl] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3134), - [anon_sym_sizeof] = ACTIONS(3132), - [anon_sym___alignof__] = ACTIONS(3132), - [anon_sym___alignof] = ACTIONS(3132), - [anon_sym__alignof] = ACTIONS(3132), - [anon_sym_alignof] = ACTIONS(3132), - [anon_sym__Alignof] = ACTIONS(3132), - [anon_sym_offsetof] = ACTIONS(3132), - [anon_sym__Generic] = ACTIONS(3132), - [anon_sym_asm] = ACTIONS(3132), - [anon_sym___asm__] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3134), - [anon_sym_u_SQUOTE] = ACTIONS(3134), - [anon_sym_U_SQUOTE] = ACTIONS(3134), - [anon_sym_u8_SQUOTE] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3134), - [anon_sym_L_DQUOTE] = ACTIONS(3134), - [anon_sym_u_DQUOTE] = ACTIONS(3134), - [anon_sym_U_DQUOTE] = ACTIONS(3134), - [anon_sym_u8_DQUOTE] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(3134), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [anon_sym_NULL] = ACTIONS(3132), - [anon_sym_nullptr] = ACTIONS(3132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3132), - [anon_sym_decltype] = ACTIONS(3132), - [anon_sym_virtual] = ACTIONS(3132), - [anon_sym_alignas] = ACTIONS(3132), - [anon_sym_explicit] = ACTIONS(3132), - [anon_sym_typename] = ACTIONS(3132), - [anon_sym_template] = ACTIONS(3132), - [anon_sym_operator] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_static_assert] = ACTIONS(3132), - [anon_sym_concept] = ACTIONS(3132), - [anon_sym_co_return] = ACTIONS(3132), - [anon_sym_co_yield] = ACTIONS(3132), - [anon_sym_R_DQUOTE] = ACTIONS(3134), - [anon_sym_LR_DQUOTE] = ACTIONS(3134), - [anon_sym_uR_DQUOTE] = ACTIONS(3134), - [anon_sym_UR_DQUOTE] = ACTIONS(3134), - [anon_sym_u8R_DQUOTE] = ACTIONS(3134), - [anon_sym_co_await] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_requires] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), - }, - [592] = { - [sym_identifier] = ACTIONS(3116), - [aux_sym_preproc_include_token1] = ACTIONS(3116), - [aux_sym_preproc_def_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token2] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), - [aux_sym_preproc_else_token1] = ACTIONS(3116), - [aux_sym_preproc_elif_token1] = ACTIONS(3116), - [sym_preproc_directive] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3116), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym___extension__] = ACTIONS(3116), - [anon_sym_typedef] = ACTIONS(3116), - [anon_sym_extern] = ACTIONS(3116), - [anon_sym___attribute__] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = ACTIONS(3116), - [anon_sym___based] = ACTIONS(3116), - [anon_sym___cdecl] = ACTIONS(3116), - [anon_sym___clrcall] = ACTIONS(3116), - [anon_sym___stdcall] = ACTIONS(3116), - [anon_sym___fastcall] = ACTIONS(3116), - [anon_sym___thiscall] = ACTIONS(3116), - [anon_sym___vectorcall] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_signed] = ACTIONS(3116), - [anon_sym_unsigned] = ACTIONS(3116), - [anon_sym_long] = ACTIONS(3116), - [anon_sym_short] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_register] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym___inline] = ACTIONS(3116), - [anon_sym___inline__] = ACTIONS(3116), - [anon_sym___forceinline] = ACTIONS(3116), - [anon_sym_thread_local] = ACTIONS(3116), - [anon_sym___thread] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_constexpr] = ACTIONS(3116), - [anon_sym_volatile] = ACTIONS(3116), - [anon_sym_restrict] = ACTIONS(3116), - [anon_sym___restrict__] = ACTIONS(3116), - [anon_sym__Atomic] = ACTIONS(3116), - [anon_sym__Noreturn] = ACTIONS(3116), - [anon_sym_noreturn] = ACTIONS(3116), - [anon_sym_mutable] = ACTIONS(3116), - [anon_sym_constinit] = ACTIONS(3116), - [anon_sym_consteval] = ACTIONS(3116), - [sym_primitive_type] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3116), - [anon_sym_union] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_switch] = ACTIONS(3116), - [anon_sym_case] = ACTIONS(3116), - [anon_sym_default] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_do] = ACTIONS(3116), - [anon_sym_for] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_goto] = ACTIONS(3116), - [anon_sym___try] = ACTIONS(3116), - [anon_sym___leave] = ACTIONS(3116), - [anon_sym_not] = ACTIONS(3116), - [anon_sym_compl] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_sizeof] = ACTIONS(3116), - [anon_sym___alignof__] = ACTIONS(3116), - [anon_sym___alignof] = ACTIONS(3116), - [anon_sym__alignof] = ACTIONS(3116), - [anon_sym_alignof] = ACTIONS(3116), - [anon_sym__Alignof] = ACTIONS(3116), - [anon_sym_offsetof] = ACTIONS(3116), - [anon_sym__Generic] = ACTIONS(3116), - [anon_sym_asm] = ACTIONS(3116), - [anon_sym___asm__] = ACTIONS(3116), - [sym_number_literal] = ACTIONS(3118), - [anon_sym_L_SQUOTE] = ACTIONS(3118), - [anon_sym_u_SQUOTE] = ACTIONS(3118), - [anon_sym_U_SQUOTE] = ACTIONS(3118), - [anon_sym_u8_SQUOTE] = ACTIONS(3118), - [anon_sym_SQUOTE] = ACTIONS(3118), - [anon_sym_L_DQUOTE] = ACTIONS(3118), - [anon_sym_u_DQUOTE] = ACTIONS(3118), - [anon_sym_U_DQUOTE] = ACTIONS(3118), - [anon_sym_u8_DQUOTE] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym_true] = ACTIONS(3116), - [sym_false] = ACTIONS(3116), - [anon_sym_NULL] = ACTIONS(3116), - [anon_sym_nullptr] = ACTIONS(3116), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3116), - [anon_sym_decltype] = ACTIONS(3116), - [anon_sym_virtual] = ACTIONS(3116), - [anon_sym_alignas] = ACTIONS(3116), - [anon_sym_explicit] = ACTIONS(3116), - [anon_sym_typename] = ACTIONS(3116), - [anon_sym_template] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_delete] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_namespace] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3116), - [anon_sym_static_assert] = ACTIONS(3116), - [anon_sym_concept] = ACTIONS(3116), - [anon_sym_co_return] = ACTIONS(3116), - [anon_sym_co_yield] = ACTIONS(3116), - [anon_sym_R_DQUOTE] = ACTIONS(3118), - [anon_sym_LR_DQUOTE] = ACTIONS(3118), - [anon_sym_uR_DQUOTE] = ACTIONS(3118), - [anon_sym_UR_DQUOTE] = ACTIONS(3118), - [anon_sym_u8R_DQUOTE] = ACTIONS(3118), - [anon_sym_co_await] = ACTIONS(3116), - [anon_sym_new] = ACTIONS(3116), - [anon_sym_requires] = ACTIONS(3116), - [sym_this] = ACTIONS(3116), - }, - [593] = { - [sym_identifier] = ACTIONS(2849), - [aux_sym_preproc_include_token1] = ACTIONS(2849), - [aux_sym_preproc_def_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token2] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), - [sym_preproc_directive] = ACTIONS(2849), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym___extension__] = ACTIONS(2849), - [anon_sym_typedef] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), - [anon_sym___declspec] = ACTIONS(2849), - [anon_sym___based] = ACTIONS(2849), - [anon_sym___cdecl] = ACTIONS(2849), - [anon_sym___clrcall] = ACTIONS(2849), - [anon_sym___stdcall] = ACTIONS(2849), - [anon_sym___fastcall] = ACTIONS(2849), - [anon_sym___thiscall] = ACTIONS(2849), - [anon_sym___vectorcall] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_signed] = ACTIONS(2849), - [anon_sym_unsigned] = ACTIONS(2849), - [anon_sym_long] = ACTIONS(2849), - [anon_sym_short] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_register] = ACTIONS(2849), - [anon_sym_inline] = ACTIONS(2849), - [anon_sym___inline] = ACTIONS(2849), - [anon_sym___inline__] = ACTIONS(2849), - [anon_sym___forceinline] = ACTIONS(2849), - [anon_sym_thread_local] = ACTIONS(2849), - [anon_sym___thread] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_constexpr] = ACTIONS(2849), - [anon_sym_volatile] = ACTIONS(2849), - [anon_sym_restrict] = ACTIONS(2849), - [anon_sym___restrict__] = ACTIONS(2849), - [anon_sym__Atomic] = ACTIONS(2849), - [anon_sym__Noreturn] = ACTIONS(2849), - [anon_sym_noreturn] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [sym_primitive_type] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_class] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_else] = ACTIONS(2849), - [anon_sym_switch] = ACTIONS(2849), - [anon_sym_case] = ACTIONS(2849), - [anon_sym_default] = ACTIONS(2849), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_do] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_goto] = ACTIONS(2849), - [anon_sym___try] = ACTIONS(2849), - [anon_sym___leave] = ACTIONS(2849), - [anon_sym_not] = ACTIONS(2849), - [anon_sym_compl] = ACTIONS(2849), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_sizeof] = ACTIONS(2849), - [anon_sym___alignof__] = ACTIONS(2849), - [anon_sym___alignof] = ACTIONS(2849), - [anon_sym__alignof] = ACTIONS(2849), - [anon_sym_alignof] = ACTIONS(2849), - [anon_sym__Alignof] = ACTIONS(2849), - [anon_sym_offsetof] = ACTIONS(2849), - [anon_sym__Generic] = ACTIONS(2849), - [anon_sym_asm] = ACTIONS(2849), - [anon_sym___asm__] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2851), - [anon_sym_u_SQUOTE] = ACTIONS(2851), - [anon_sym_U_SQUOTE] = ACTIONS(2851), - [anon_sym_u8_SQUOTE] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [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(2849), - [sym_false] = ACTIONS(2849), - [anon_sym_NULL] = ACTIONS(2849), - [anon_sym_nullptr] = ACTIONS(2849), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2849), - [anon_sym_decltype] = ACTIONS(2849), - [anon_sym_virtual] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym_explicit] = ACTIONS(2849), - [anon_sym_typename] = ACTIONS(2849), - [anon_sym_template] = ACTIONS(2849), - [anon_sym_operator] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2849), - [anon_sym_delete] = ACTIONS(2849), - [anon_sym_throw] = ACTIONS(2849), - [anon_sym_namespace] = ACTIONS(2849), - [anon_sym_using] = ACTIONS(2849), - [anon_sym_static_assert] = ACTIONS(2849), - [anon_sym_concept] = ACTIONS(2849), - [anon_sym_co_return] = ACTIONS(2849), - [anon_sym_co_yield] = ACTIONS(2849), - [anon_sym_catch] = ACTIONS(2849), - [anon_sym_R_DQUOTE] = ACTIONS(2851), - [anon_sym_LR_DQUOTE] = ACTIONS(2851), - [anon_sym_uR_DQUOTE] = ACTIONS(2851), - [anon_sym_UR_DQUOTE] = ACTIONS(2851), - [anon_sym_u8R_DQUOTE] = ACTIONS(2851), - [anon_sym_co_await] = ACTIONS(2849), - [anon_sym_new] = ACTIONS(2849), - [anon_sym_requires] = ACTIONS(2849), - [sym_this] = ACTIONS(2849), - }, - [594] = { - [sym_identifier] = ACTIONS(3280), - [aux_sym_preproc_include_token1] = ACTIONS(3280), - [aux_sym_preproc_def_token1] = ACTIONS(3280), - [aux_sym_preproc_if_token1] = ACTIONS(3280), - [aux_sym_preproc_if_token2] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3280), - [aux_sym_preproc_else_token1] = ACTIONS(3280), - [aux_sym_preproc_elif_token1] = ACTIONS(3280), - [sym_preproc_directive] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_STAR] = ACTIONS(3282), - [anon_sym_AMP_AMP] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym___extension__] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3282), - [anon_sym___declspec] = ACTIONS(3280), - [anon_sym___based] = ACTIONS(3280), - [anon_sym___cdecl] = ACTIONS(3280), - [anon_sym___clrcall] = ACTIONS(3280), - [anon_sym___stdcall] = ACTIONS(3280), - [anon_sym___fastcall] = ACTIONS(3280), - [anon_sym___thiscall] = ACTIONS(3280), - [anon_sym___vectorcall] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_signed] = ACTIONS(3280), - [anon_sym_unsigned] = ACTIONS(3280), - [anon_sym_long] = ACTIONS(3280), - [anon_sym_short] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_register] = ACTIONS(3280), - [anon_sym_inline] = ACTIONS(3280), - [anon_sym___inline] = ACTIONS(3280), - [anon_sym___inline__] = ACTIONS(3280), - [anon_sym___forceinline] = ACTIONS(3280), - [anon_sym_thread_local] = ACTIONS(3280), - [anon_sym___thread] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_constexpr] = ACTIONS(3280), - [anon_sym_volatile] = ACTIONS(3280), - [anon_sym_restrict] = ACTIONS(3280), - [anon_sym___restrict__] = ACTIONS(3280), - [anon_sym__Atomic] = ACTIONS(3280), - [anon_sym__Noreturn] = ACTIONS(3280), - [anon_sym_noreturn] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [sym_primitive_type] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_struct] = ACTIONS(3280), - [anon_sym_union] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_case] = ACTIONS(3280), - [anon_sym_default] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_goto] = ACTIONS(3280), - [anon_sym___try] = ACTIONS(3280), - [anon_sym___leave] = ACTIONS(3280), - [anon_sym_not] = ACTIONS(3280), - [anon_sym_compl] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_sizeof] = ACTIONS(3280), - [anon_sym___alignof__] = ACTIONS(3280), - [anon_sym___alignof] = ACTIONS(3280), - [anon_sym__alignof] = ACTIONS(3280), - [anon_sym_alignof] = ACTIONS(3280), - [anon_sym__Alignof] = ACTIONS(3280), - [anon_sym_offsetof] = ACTIONS(3280), - [anon_sym__Generic] = ACTIONS(3280), - [anon_sym_asm] = ACTIONS(3280), - [anon_sym___asm__] = ACTIONS(3280), - [sym_number_literal] = ACTIONS(3282), - [anon_sym_L_SQUOTE] = ACTIONS(3282), - [anon_sym_u_SQUOTE] = ACTIONS(3282), - [anon_sym_U_SQUOTE] = ACTIONS(3282), - [anon_sym_u8_SQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_L_DQUOTE] = ACTIONS(3282), - [anon_sym_u_DQUOTE] = ACTIONS(3282), - [anon_sym_U_DQUOTE] = ACTIONS(3282), - [anon_sym_u8_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym_true] = ACTIONS(3280), - [sym_false] = ACTIONS(3280), - [anon_sym_NULL] = ACTIONS(3280), - [anon_sym_nullptr] = ACTIONS(3280), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3280), - [anon_sym_decltype] = ACTIONS(3280), - [anon_sym_virtual] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym_explicit] = ACTIONS(3280), - [anon_sym_typename] = ACTIONS(3280), - [anon_sym_template] = ACTIONS(3280), - [anon_sym_operator] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_namespace] = ACTIONS(3280), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_static_assert] = ACTIONS(3280), - [anon_sym_concept] = ACTIONS(3280), - [anon_sym_co_return] = ACTIONS(3280), - [anon_sym_co_yield] = ACTIONS(3280), - [anon_sym_R_DQUOTE] = ACTIONS(3282), - [anon_sym_LR_DQUOTE] = ACTIONS(3282), - [anon_sym_uR_DQUOTE] = ACTIONS(3282), - [anon_sym_UR_DQUOTE] = ACTIONS(3282), - [anon_sym_u8R_DQUOTE] = ACTIONS(3282), - [anon_sym_co_await] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_requires] = ACTIONS(3280), - [sym_this] = ACTIONS(3280), - }, - [595] = { - [sym_identifier] = ACTIONS(3120), - [aux_sym_preproc_include_token1] = ACTIONS(3120), - [aux_sym_preproc_def_token1] = ACTIONS(3120), - [aux_sym_preproc_if_token1] = ACTIONS(3120), - [aux_sym_preproc_if_token2] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), - [aux_sym_preproc_else_token1] = ACTIONS(3120), - [aux_sym_preproc_elif_token1] = ACTIONS(3120), - [sym_preproc_directive] = ACTIONS(3120), - [anon_sym_LPAREN2] = ACTIONS(3122), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_AMP_AMP] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym___extension__] = ACTIONS(3120), - [anon_sym_typedef] = ACTIONS(3120), - [anon_sym_extern] = ACTIONS(3120), - [anon_sym___attribute__] = ACTIONS(3120), - [anon_sym_COLON_COLON] = ACTIONS(3122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), - [anon_sym___declspec] = ACTIONS(3120), - [anon_sym___based] = ACTIONS(3120), - [anon_sym___cdecl] = ACTIONS(3120), - [anon_sym___clrcall] = ACTIONS(3120), - [anon_sym___stdcall] = ACTIONS(3120), - [anon_sym___fastcall] = ACTIONS(3120), - [anon_sym___thiscall] = ACTIONS(3120), - [anon_sym___vectorcall] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_signed] = ACTIONS(3120), - [anon_sym_unsigned] = ACTIONS(3120), - [anon_sym_long] = ACTIONS(3120), - [anon_sym_short] = ACTIONS(3120), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_static] = ACTIONS(3120), - [anon_sym_register] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym___inline] = ACTIONS(3120), - [anon_sym___inline__] = ACTIONS(3120), - [anon_sym___forceinline] = ACTIONS(3120), - [anon_sym_thread_local] = ACTIONS(3120), - [anon_sym___thread] = ACTIONS(3120), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_constexpr] = ACTIONS(3120), - [anon_sym_volatile] = ACTIONS(3120), - [anon_sym_restrict] = ACTIONS(3120), - [anon_sym___restrict__] = ACTIONS(3120), - [anon_sym__Atomic] = ACTIONS(3120), - [anon_sym__Noreturn] = ACTIONS(3120), - [anon_sym_noreturn] = ACTIONS(3120), - [anon_sym_mutable] = ACTIONS(3120), - [anon_sym_constinit] = ACTIONS(3120), - [anon_sym_consteval] = ACTIONS(3120), - [sym_primitive_type] = ACTIONS(3120), - [anon_sym_enum] = ACTIONS(3120), - [anon_sym_class] = ACTIONS(3120), - [anon_sym_struct] = ACTIONS(3120), - [anon_sym_union] = ACTIONS(3120), - [anon_sym_if] = ACTIONS(3120), - [anon_sym_switch] = ACTIONS(3120), - [anon_sym_case] = ACTIONS(3120), - [anon_sym_default] = ACTIONS(3120), - [anon_sym_while] = ACTIONS(3120), - [anon_sym_do] = ACTIONS(3120), - [anon_sym_for] = ACTIONS(3120), - [anon_sym_return] = ACTIONS(3120), - [anon_sym_break] = ACTIONS(3120), - [anon_sym_continue] = ACTIONS(3120), - [anon_sym_goto] = ACTIONS(3120), - [anon_sym___try] = ACTIONS(3120), - [anon_sym___leave] = ACTIONS(3120), - [anon_sym_not] = ACTIONS(3120), - [anon_sym_compl] = ACTIONS(3120), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_sizeof] = ACTIONS(3120), - [anon_sym___alignof__] = ACTIONS(3120), - [anon_sym___alignof] = ACTIONS(3120), - [anon_sym__alignof] = ACTIONS(3120), - [anon_sym_alignof] = ACTIONS(3120), - [anon_sym__Alignof] = ACTIONS(3120), - [anon_sym_offsetof] = ACTIONS(3120), - [anon_sym__Generic] = ACTIONS(3120), - [anon_sym_asm] = ACTIONS(3120), - [anon_sym___asm__] = ACTIONS(3120), - [sym_number_literal] = ACTIONS(3122), - [anon_sym_L_SQUOTE] = ACTIONS(3122), - [anon_sym_u_SQUOTE] = ACTIONS(3122), - [anon_sym_U_SQUOTE] = ACTIONS(3122), - [anon_sym_u8_SQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [anon_sym_L_DQUOTE] = ACTIONS(3122), - [anon_sym_u_DQUOTE] = ACTIONS(3122), - [anon_sym_U_DQUOTE] = ACTIONS(3122), - [anon_sym_u8_DQUOTE] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [sym_true] = ACTIONS(3120), - [sym_false] = ACTIONS(3120), - [anon_sym_NULL] = ACTIONS(3120), - [anon_sym_nullptr] = ACTIONS(3120), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3120), - [anon_sym_decltype] = ACTIONS(3120), - [anon_sym_virtual] = ACTIONS(3120), - [anon_sym_alignas] = ACTIONS(3120), - [anon_sym_explicit] = ACTIONS(3120), - [anon_sym_typename] = ACTIONS(3120), - [anon_sym_template] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_try] = ACTIONS(3120), - [anon_sym_delete] = ACTIONS(3120), - [anon_sym_throw] = ACTIONS(3120), - [anon_sym_namespace] = ACTIONS(3120), - [anon_sym_using] = ACTIONS(3120), - [anon_sym_static_assert] = ACTIONS(3120), - [anon_sym_concept] = ACTIONS(3120), - [anon_sym_co_return] = ACTIONS(3120), - [anon_sym_co_yield] = ACTIONS(3120), - [anon_sym_R_DQUOTE] = ACTIONS(3122), - [anon_sym_LR_DQUOTE] = ACTIONS(3122), - [anon_sym_uR_DQUOTE] = ACTIONS(3122), - [anon_sym_UR_DQUOTE] = ACTIONS(3122), - [anon_sym_u8R_DQUOTE] = ACTIONS(3122), - [anon_sym_co_await] = ACTIONS(3120), - [anon_sym_new] = ACTIONS(3120), - [anon_sym_requires] = ACTIONS(3120), - [sym_this] = ACTIONS(3120), - }, - [596] = { - [sym_identifier] = ACTIONS(3076), - [aux_sym_preproc_include_token1] = ACTIONS(3076), - [aux_sym_preproc_def_token1] = ACTIONS(3076), - [aux_sym_preproc_if_token1] = ACTIONS(3076), - [aux_sym_preproc_if_token2] = ACTIONS(3076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3076), - [aux_sym_preproc_else_token1] = ACTIONS(3076), - [aux_sym_preproc_elif_token1] = ACTIONS(3076), - [sym_preproc_directive] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3078), - [anon_sym_AMP_AMP] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym___extension__] = ACTIONS(3076), - [anon_sym_typedef] = ACTIONS(3076), - [anon_sym_extern] = ACTIONS(3076), - [anon_sym___attribute__] = ACTIONS(3076), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3078), - [anon_sym___declspec] = ACTIONS(3076), - [anon_sym___based] = ACTIONS(3076), - [anon_sym___cdecl] = ACTIONS(3076), - [anon_sym___clrcall] = ACTIONS(3076), - [anon_sym___stdcall] = ACTIONS(3076), - [anon_sym___fastcall] = ACTIONS(3076), - [anon_sym___thiscall] = ACTIONS(3076), - [anon_sym___vectorcall] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3076), - [anon_sym_unsigned] = ACTIONS(3076), - [anon_sym_long] = ACTIONS(3076), - [anon_sym_short] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_static] = ACTIONS(3076), - [anon_sym_register] = ACTIONS(3076), - [anon_sym_inline] = ACTIONS(3076), - [anon_sym___inline] = ACTIONS(3076), - [anon_sym___inline__] = ACTIONS(3076), - [anon_sym___forceinline] = ACTIONS(3076), - [anon_sym_thread_local] = ACTIONS(3076), - [anon_sym___thread] = ACTIONS(3076), - [anon_sym_const] = ACTIONS(3076), - [anon_sym_constexpr] = ACTIONS(3076), - [anon_sym_volatile] = ACTIONS(3076), - [anon_sym_restrict] = ACTIONS(3076), - [anon_sym___restrict__] = ACTIONS(3076), - [anon_sym__Atomic] = ACTIONS(3076), - [anon_sym__Noreturn] = ACTIONS(3076), - [anon_sym_noreturn] = ACTIONS(3076), - [anon_sym_mutable] = ACTIONS(3076), - [anon_sym_constinit] = ACTIONS(3076), - [anon_sym_consteval] = ACTIONS(3076), - [sym_primitive_type] = ACTIONS(3076), - [anon_sym_enum] = ACTIONS(3076), - [anon_sym_class] = ACTIONS(3076), - [anon_sym_struct] = ACTIONS(3076), - [anon_sym_union] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_switch] = ACTIONS(3076), - [anon_sym_case] = ACTIONS(3076), - [anon_sym_default] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_break] = ACTIONS(3076), - [anon_sym_continue] = ACTIONS(3076), - [anon_sym_goto] = ACTIONS(3076), - [anon_sym___try] = ACTIONS(3076), - [anon_sym___leave] = ACTIONS(3076), - [anon_sym_not] = ACTIONS(3076), - [anon_sym_compl] = ACTIONS(3076), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_sizeof] = ACTIONS(3076), - [anon_sym___alignof__] = ACTIONS(3076), - [anon_sym___alignof] = ACTIONS(3076), - [anon_sym__alignof] = ACTIONS(3076), - [anon_sym_alignof] = ACTIONS(3076), - [anon_sym__Alignof] = ACTIONS(3076), - [anon_sym_offsetof] = ACTIONS(3076), - [anon_sym__Generic] = ACTIONS(3076), - [anon_sym_asm] = ACTIONS(3076), - [anon_sym___asm__] = ACTIONS(3076), - [sym_number_literal] = ACTIONS(3078), - [anon_sym_L_SQUOTE] = ACTIONS(3078), - [anon_sym_u_SQUOTE] = ACTIONS(3078), - [anon_sym_U_SQUOTE] = ACTIONS(3078), - [anon_sym_u8_SQUOTE] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_L_DQUOTE] = ACTIONS(3078), - [anon_sym_u_DQUOTE] = ACTIONS(3078), - [anon_sym_U_DQUOTE] = ACTIONS(3078), - [anon_sym_u8_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE] = ACTIONS(3078), - [sym_true] = ACTIONS(3076), - [sym_false] = ACTIONS(3076), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3076), - [anon_sym_decltype] = ACTIONS(3076), - [anon_sym_virtual] = ACTIONS(3076), - [anon_sym_alignas] = ACTIONS(3076), - [anon_sym_explicit] = ACTIONS(3076), - [anon_sym_typename] = ACTIONS(3076), - [anon_sym_template] = ACTIONS(3076), - [anon_sym_operator] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_delete] = ACTIONS(3076), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_namespace] = ACTIONS(3076), - [anon_sym_using] = ACTIONS(3076), - [anon_sym_static_assert] = ACTIONS(3076), - [anon_sym_concept] = ACTIONS(3076), - [anon_sym_co_return] = ACTIONS(3076), - [anon_sym_co_yield] = ACTIONS(3076), - [anon_sym_R_DQUOTE] = ACTIONS(3078), - [anon_sym_LR_DQUOTE] = ACTIONS(3078), - [anon_sym_uR_DQUOTE] = ACTIONS(3078), - [anon_sym_UR_DQUOTE] = ACTIONS(3078), - [anon_sym_u8R_DQUOTE] = ACTIONS(3078), - [anon_sym_co_await] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_requires] = ACTIONS(3076), - [sym_this] = ACTIONS(3076), - }, - [597] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4784), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7515), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(7667), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(3426), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [598] = { - [sym_identifier] = ACTIONS(3231), - [aux_sym_preproc_include_token1] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token2] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), - [aux_sym_preproc_else_token1] = ACTIONS(3231), - [aux_sym_preproc_elif_token1] = ACTIONS(3231), - [sym_preproc_directive] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym___based] = ACTIONS(3231), - [anon_sym___cdecl] = ACTIONS(3231), - [anon_sym___clrcall] = ACTIONS(3231), - [anon_sym___stdcall] = ACTIONS(3231), - [anon_sym___fastcall] = ACTIONS(3231), - [anon_sym___thiscall] = ACTIONS(3231), - [anon_sym___vectorcall] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym___try] = ACTIONS(3231), - [anon_sym___leave] = ACTIONS(3231), - [anon_sym_not] = ACTIONS(3231), - [anon_sym_compl] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3231), - [anon_sym___alignof__] = ACTIONS(3231), - [anon_sym___alignof] = ACTIONS(3231), - [anon_sym__alignof] = ACTIONS(3231), - [anon_sym_alignof] = ACTIONS(3231), - [anon_sym__Alignof] = ACTIONS(3231), - [anon_sym_offsetof] = ACTIONS(3231), - [anon_sym__Generic] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym___asm__] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3233), - [anon_sym_L_SQUOTE] = ACTIONS(3233), - [anon_sym_u_SQUOTE] = ACTIONS(3233), - [anon_sym_U_SQUOTE] = ACTIONS(3233), - [anon_sym_u8_SQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_L_DQUOTE] = ACTIONS(3233), - [anon_sym_u_DQUOTE] = ACTIONS(3233), - [anon_sym_U_DQUOTE] = ACTIONS(3233), - [anon_sym_u8_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [anon_sym_NULL] = ACTIONS(3231), - [anon_sym_nullptr] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_explicit] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_operator] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_static_assert] = ACTIONS(3231), - [anon_sym_concept] = ACTIONS(3231), - [anon_sym_co_return] = ACTIONS(3231), - [anon_sym_co_yield] = ACTIONS(3231), - [anon_sym_R_DQUOTE] = ACTIONS(3233), - [anon_sym_LR_DQUOTE] = ACTIONS(3233), - [anon_sym_uR_DQUOTE] = ACTIONS(3233), - [anon_sym_UR_DQUOTE] = ACTIONS(3233), - [anon_sym_u8R_DQUOTE] = ACTIONS(3233), - [anon_sym_co_await] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_requires] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - }, - [599] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [600] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2921), + [anon_sym_decltype] = ACTIONS(2921), + [anon_sym_virtual] = ACTIONS(2921), + [anon_sym_alignas] = ACTIONS(2921), + [anon_sym_explicit] = ACTIONS(2921), + [anon_sym_typename] = ACTIONS(2921), + [anon_sym_template] = ACTIONS(2921), + [anon_sym_operator] = ACTIONS(2921), + [anon_sym_try] = ACTIONS(2921), + [anon_sym_delete] = ACTIONS(2921), + [anon_sym_throw] = ACTIONS(2921), + [anon_sym_namespace] = ACTIONS(2921), + [anon_sym_using] = ACTIONS(2921), + [anon_sym_static_assert] = ACTIONS(2921), + [anon_sym_concept] = ACTIONS(2921), + [anon_sym_co_return] = ACTIONS(2921), + [anon_sym_co_yield] = ACTIONS(2921), + [anon_sym_R_DQUOTE] = ACTIONS(2923), + [anon_sym_LR_DQUOTE] = ACTIONS(2923), + [anon_sym_uR_DQUOTE] = ACTIONS(2923), + [anon_sym_UR_DQUOTE] = ACTIONS(2923), + [anon_sym_u8R_DQUOTE] = ACTIONS(2923), + [anon_sym_co_await] = ACTIONS(2921), + [anon_sym_new] = ACTIONS(2921), + [anon_sym_requires] = ACTIONS(2921), + [sym_this] = ACTIONS(2921), }, - [601] = { - [sym_identifier] = ACTIONS(2941), - [aux_sym_preproc_include_token1] = ACTIONS(2941), - [aux_sym_preproc_def_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), - [sym_preproc_directive] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym___extension__] = ACTIONS(2941), - [anon_sym_typedef] = ACTIONS(2941), - [anon_sym_extern] = ACTIONS(2941), - [anon_sym___attribute__] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), - [anon_sym___declspec] = ACTIONS(2941), - [anon_sym___based] = ACTIONS(2941), - [anon_sym___cdecl] = ACTIONS(2941), - [anon_sym___clrcall] = ACTIONS(2941), - [anon_sym___stdcall] = ACTIONS(2941), - [anon_sym___fastcall] = ACTIONS(2941), - [anon_sym___thiscall] = ACTIONS(2941), - [anon_sym___vectorcall] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_RBRACE] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2941), - [anon_sym_unsigned] = ACTIONS(2941), - [anon_sym_long] = ACTIONS(2941), - [anon_sym_short] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_register] = ACTIONS(2941), - [anon_sym_inline] = ACTIONS(2941), - [anon_sym___inline] = ACTIONS(2941), - [anon_sym___inline__] = ACTIONS(2941), - [anon_sym___forceinline] = ACTIONS(2941), - [anon_sym_thread_local] = ACTIONS(2941), - [anon_sym___thread] = ACTIONS(2941), - [anon_sym_const] = ACTIONS(2941), - [anon_sym_constexpr] = ACTIONS(2941), - [anon_sym_volatile] = ACTIONS(2941), - [anon_sym_restrict] = ACTIONS(2941), - [anon_sym___restrict__] = ACTIONS(2941), - [anon_sym__Atomic] = ACTIONS(2941), - [anon_sym__Noreturn] = ACTIONS(2941), - [anon_sym_noreturn] = ACTIONS(2941), - [anon_sym_mutable] = ACTIONS(2941), - [anon_sym_constinit] = ACTIONS(2941), - [anon_sym_consteval] = ACTIONS(2941), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2941), - [anon_sym_class] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2941), - [anon_sym_switch] = ACTIONS(2941), - [anon_sym_case] = ACTIONS(2941), - [anon_sym_default] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_goto] = ACTIONS(2941), - [anon_sym___try] = ACTIONS(2941), - [anon_sym___leave] = ACTIONS(2941), - [anon_sym_not] = ACTIONS(2941), - [anon_sym_compl] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_sizeof] = ACTIONS(2941), - [anon_sym___alignof__] = ACTIONS(2941), - [anon_sym___alignof] = ACTIONS(2941), - [anon_sym__alignof] = ACTIONS(2941), - [anon_sym_alignof] = ACTIONS(2941), - [anon_sym__Alignof] = ACTIONS(2941), - [anon_sym_offsetof] = ACTIONS(2941), - [anon_sym__Generic] = ACTIONS(2941), - [anon_sym_asm] = ACTIONS(2941), - [anon_sym___asm__] = ACTIONS(2941), - [sym_number_literal] = ACTIONS(2943), - [anon_sym_L_SQUOTE] = ACTIONS(2943), - [anon_sym_u_SQUOTE] = ACTIONS(2943), - [anon_sym_U_SQUOTE] = ACTIONS(2943), - [anon_sym_u8_SQUOTE] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2943), - [anon_sym_L_DQUOTE] = ACTIONS(2943), - [anon_sym_u_DQUOTE] = ACTIONS(2943), - [anon_sym_U_DQUOTE] = ACTIONS(2943), - [anon_sym_u8_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2943), - [sym_true] = ACTIONS(2941), - [sym_false] = ACTIONS(2941), - [anon_sym_NULL] = ACTIONS(2941), - [anon_sym_nullptr] = ACTIONS(2941), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2941), - [anon_sym_decltype] = ACTIONS(2941), - [anon_sym_virtual] = ACTIONS(2941), - [anon_sym_alignas] = ACTIONS(2941), - [anon_sym_explicit] = ACTIONS(2941), - [anon_sym_typename] = ACTIONS(2941), - [anon_sym_template] = ACTIONS(2941), - [anon_sym_operator] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_delete] = ACTIONS(2941), - [anon_sym_throw] = ACTIONS(2941), - [anon_sym_namespace] = ACTIONS(2941), - [anon_sym_using] = ACTIONS(2941), - [anon_sym_static_assert] = ACTIONS(2941), - [anon_sym_concept] = ACTIONS(2941), - [anon_sym_co_return] = ACTIONS(2941), - [anon_sym_co_yield] = ACTIONS(2941), - [anon_sym_R_DQUOTE] = ACTIONS(2943), - [anon_sym_LR_DQUOTE] = ACTIONS(2943), - [anon_sym_uR_DQUOTE] = ACTIONS(2943), - [anon_sym_UR_DQUOTE] = ACTIONS(2943), - [anon_sym_u8R_DQUOTE] = ACTIONS(2943), - [anon_sym_co_await] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_requires] = ACTIONS(2941), - [sym_this] = ACTIONS(2941), + [605] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [602] = { + [606] = { [ts_builtin_sym_end] = ACTIONS(2935), [sym_identifier] = ACTIONS(2933), [aux_sym_preproc_include_token1] = ACTIONS(2933), @@ -173810,140 +174672,1337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2933), [sym_this] = ACTIONS(2933), }, - [603] = { - [sym_preproc_def] = STATE(807), - [sym_preproc_function_def] = STATE(807), - [sym_preproc_call] = STATE(807), - [sym_preproc_if_in_field_declaration_list] = STATE(807), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(807), - [sym_preproc_else_in_field_declaration_list] = STATE(9199), - [sym_preproc_elif_in_field_declaration_list] = STATE(9199), - [sym_type_definition] = STATE(807), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6188), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(807), - [sym_field_declaration] = STATE(807), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(807), - [sym_operator_cast] = STATE(7176), - [sym_inline_method_definition] = STATE(807), - [sym__constructor_specifiers] = STATE(2018), - [sym_operator_cast_definition] = STATE(807), - [sym_operator_cast_declaration] = STATE(807), - [sym_constructor_or_destructor_definition] = STATE(807), - [sym_constructor_or_destructor_declaration] = STATE(807), - [sym_friend_declaration] = STATE(807), - [sym_access_specifier] = STATE(8857), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(807), - [sym_alias_declaration] = STATE(807), - [sym_static_assert_declaration] = STATE(807), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(807), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3430), - [aux_sym_preproc_if_token2] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [607] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [608] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [609] = { + [ts_builtin_sym_end] = ACTIONS(2919), + [sym_identifier] = ACTIONS(2917), + [aux_sym_preproc_include_token1] = ACTIONS(2917), + [aux_sym_preproc_def_token1] = ACTIONS(2917), + [aux_sym_preproc_if_token1] = ACTIONS(2917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), + [sym_preproc_directive] = ACTIONS(2917), + [anon_sym_LPAREN2] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2919), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym___extension__] = ACTIONS(2917), + [anon_sym_typedef] = ACTIONS(2917), + [anon_sym_extern] = ACTIONS(2917), + [anon_sym___attribute__] = ACTIONS(2917), + [anon_sym_COLON_COLON] = ACTIONS(2919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), + [anon_sym___declspec] = ACTIONS(2917), + [anon_sym___based] = ACTIONS(2917), + [anon_sym___cdecl] = ACTIONS(2917), + [anon_sym___clrcall] = ACTIONS(2917), + [anon_sym___stdcall] = ACTIONS(2917), + [anon_sym___fastcall] = ACTIONS(2917), + [anon_sym___thiscall] = ACTIONS(2917), + [anon_sym___vectorcall] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_signed] = ACTIONS(2917), + [anon_sym_unsigned] = ACTIONS(2917), + [anon_sym_long] = ACTIONS(2917), + [anon_sym_short] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2917), + [anon_sym_static] = ACTIONS(2917), + [anon_sym_register] = ACTIONS(2917), + [anon_sym_inline] = ACTIONS(2917), + [anon_sym___inline] = ACTIONS(2917), + [anon_sym___inline__] = ACTIONS(2917), + [anon_sym___forceinline] = ACTIONS(2917), + [anon_sym_thread_local] = ACTIONS(2917), + [anon_sym___thread] = ACTIONS(2917), + [anon_sym_const] = ACTIONS(2917), + [anon_sym_constexpr] = ACTIONS(2917), + [anon_sym_volatile] = ACTIONS(2917), + [anon_sym_restrict] = ACTIONS(2917), + [anon_sym___restrict__] = ACTIONS(2917), + [anon_sym__Atomic] = ACTIONS(2917), + [anon_sym__Noreturn] = ACTIONS(2917), + [anon_sym_noreturn] = ACTIONS(2917), + [anon_sym_mutable] = ACTIONS(2917), + [anon_sym_constinit] = ACTIONS(2917), + [anon_sym_consteval] = ACTIONS(2917), + [sym_primitive_type] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), + [anon_sym_class] = ACTIONS(2917), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_union] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_else] = ACTIONS(2917), + [anon_sym_switch] = ACTIONS(2917), + [anon_sym_case] = ACTIONS(2917), + [anon_sym_default] = ACTIONS(2917), + [anon_sym_while] = ACTIONS(2917), + [anon_sym_do] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_goto] = ACTIONS(2917), + [anon_sym___try] = ACTIONS(2917), + [anon_sym___leave] = ACTIONS(2917), + [anon_sym_not] = ACTIONS(2917), + [anon_sym_compl] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_sizeof] = ACTIONS(2917), + [anon_sym___alignof__] = ACTIONS(2917), + [anon_sym___alignof] = ACTIONS(2917), + [anon_sym__alignof] = ACTIONS(2917), + [anon_sym_alignof] = ACTIONS(2917), + [anon_sym__Alignof] = ACTIONS(2917), + [anon_sym_offsetof] = ACTIONS(2917), + [anon_sym__Generic] = ACTIONS(2917), + [anon_sym_asm] = ACTIONS(2917), + [anon_sym___asm__] = ACTIONS(2917), + [sym_number_literal] = ACTIONS(2919), + [anon_sym_L_SQUOTE] = ACTIONS(2919), + [anon_sym_u_SQUOTE] = ACTIONS(2919), + [anon_sym_U_SQUOTE] = ACTIONS(2919), + [anon_sym_u8_SQUOTE] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2919), + [anon_sym_L_DQUOTE] = ACTIONS(2919), + [anon_sym_u_DQUOTE] = ACTIONS(2919), + [anon_sym_U_DQUOTE] = ACTIONS(2919), + [anon_sym_u8_DQUOTE] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2919), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [anon_sym_NULL] = ACTIONS(2917), + [anon_sym_nullptr] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2917), + [anon_sym_decltype] = ACTIONS(2917), + [anon_sym_virtual] = ACTIONS(2917), + [anon_sym_alignas] = ACTIONS(2917), + [anon_sym_explicit] = ACTIONS(2917), + [anon_sym_typename] = ACTIONS(2917), + [anon_sym_template] = ACTIONS(2917), + [anon_sym_operator] = ACTIONS(2917), + [anon_sym_try] = ACTIONS(2917), + [anon_sym_delete] = ACTIONS(2917), + [anon_sym_throw] = ACTIONS(2917), + [anon_sym_namespace] = ACTIONS(2917), + [anon_sym_using] = ACTIONS(2917), + [anon_sym_static_assert] = ACTIONS(2917), + [anon_sym_concept] = ACTIONS(2917), + [anon_sym_co_return] = ACTIONS(2917), + [anon_sym_co_yield] = ACTIONS(2917), + [anon_sym_R_DQUOTE] = ACTIONS(2919), + [anon_sym_LR_DQUOTE] = ACTIONS(2919), + [anon_sym_uR_DQUOTE] = ACTIONS(2919), + [anon_sym_UR_DQUOTE] = ACTIONS(2919), + [anon_sym_u8R_DQUOTE] = ACTIONS(2919), + [anon_sym_co_await] = ACTIONS(2917), + [anon_sym_new] = ACTIONS(2917), + [anon_sym_requires] = ACTIONS(2917), + [sym_this] = ACTIONS(2917), + }, + [610] = { + [ts_builtin_sym_end] = ACTIONS(2907), + [sym_identifier] = ACTIONS(2905), + [aux_sym_preproc_include_token1] = ACTIONS(2905), + [aux_sym_preproc_def_token1] = ACTIONS(2905), + [aux_sym_preproc_if_token1] = ACTIONS(2905), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), + [sym_preproc_directive] = ACTIONS(2905), + [anon_sym_LPAREN2] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_AMP_AMP] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym___extension__] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym___attribute__] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), + [anon_sym___declspec] = ACTIONS(2905), + [anon_sym___based] = ACTIONS(2905), + [anon_sym___cdecl] = ACTIONS(2905), + [anon_sym___clrcall] = ACTIONS(2905), + [anon_sym___stdcall] = ACTIONS(2905), + [anon_sym___fastcall] = ACTIONS(2905), + [anon_sym___thiscall] = ACTIONS(2905), + [anon_sym___vectorcall] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2905), + [anon_sym_unsigned] = ACTIONS(2905), + [anon_sym_long] = ACTIONS(2905), + [anon_sym_short] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_static] = ACTIONS(2905), + [anon_sym_register] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym___inline] = ACTIONS(2905), + [anon_sym___inline__] = ACTIONS(2905), + [anon_sym___forceinline] = ACTIONS(2905), + [anon_sym_thread_local] = ACTIONS(2905), + [anon_sym___thread] = ACTIONS(2905), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_constexpr] = ACTIONS(2905), + [anon_sym_volatile] = ACTIONS(2905), + [anon_sym_restrict] = ACTIONS(2905), + [anon_sym___restrict__] = ACTIONS(2905), + [anon_sym__Atomic] = ACTIONS(2905), + [anon_sym__Noreturn] = ACTIONS(2905), + [anon_sym_noreturn] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_union] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_else] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2905), + [anon_sym_case] = ACTIONS(2905), + [anon_sym_default] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_goto] = ACTIONS(2905), + [anon_sym___try] = ACTIONS(2905), + [anon_sym___leave] = ACTIONS(2905), + [anon_sym_not] = ACTIONS(2905), + [anon_sym_compl] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_sizeof] = ACTIONS(2905), + [anon_sym___alignof__] = ACTIONS(2905), + [anon_sym___alignof] = ACTIONS(2905), + [anon_sym__alignof] = ACTIONS(2905), + [anon_sym_alignof] = ACTIONS(2905), + [anon_sym__Alignof] = ACTIONS(2905), + [anon_sym_offsetof] = ACTIONS(2905), + [anon_sym__Generic] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym___asm__] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2907), + [anon_sym_L_SQUOTE] = ACTIONS(2907), + [anon_sym_u_SQUOTE] = ACTIONS(2907), + [anon_sym_U_SQUOTE] = ACTIONS(2907), + [anon_sym_u8_SQUOTE] = ACTIONS(2907), + [anon_sym_SQUOTE] = ACTIONS(2907), + [anon_sym_L_DQUOTE] = ACTIONS(2907), + [anon_sym_u_DQUOTE] = ACTIONS(2907), + [anon_sym_U_DQUOTE] = ACTIONS(2907), + [anon_sym_u8_DQUOTE] = ACTIONS(2907), + [anon_sym_DQUOTE] = ACTIONS(2907), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [anon_sym_NULL] = ACTIONS(2905), + [anon_sym_nullptr] = ACTIONS(2905), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2905), + [anon_sym_decltype] = ACTIONS(2905), + [anon_sym_virtual] = ACTIONS(2905), + [anon_sym_alignas] = ACTIONS(2905), + [anon_sym_explicit] = ACTIONS(2905), + [anon_sym_typename] = ACTIONS(2905), + [anon_sym_template] = ACTIONS(2905), + [anon_sym_operator] = ACTIONS(2905), + [anon_sym_try] = ACTIONS(2905), + [anon_sym_delete] = ACTIONS(2905), + [anon_sym_throw] = ACTIONS(2905), + [anon_sym_namespace] = ACTIONS(2905), + [anon_sym_using] = ACTIONS(2905), + [anon_sym_static_assert] = ACTIONS(2905), + [anon_sym_concept] = ACTIONS(2905), + [anon_sym_co_return] = ACTIONS(2905), + [anon_sym_co_yield] = ACTIONS(2905), + [anon_sym_R_DQUOTE] = ACTIONS(2907), + [anon_sym_LR_DQUOTE] = ACTIONS(2907), + [anon_sym_uR_DQUOTE] = ACTIONS(2907), + [anon_sym_UR_DQUOTE] = ACTIONS(2907), + [anon_sym_u8R_DQUOTE] = ACTIONS(2907), + [anon_sym_co_await] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_requires] = ACTIONS(2905), + [sym_this] = ACTIONS(2905), + }, + [611] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [612] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [613] = { + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_unaligned_ptr_modifier] = STATE(5820), + [sym_ms_pointer_modifier] = STATE(3887), + [sym__declarator] = STATE(6912), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6752), + [sym_array_declarator] = STATE(6752), + [sym_type_qualifier] = STATE(4615), + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3595), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6184), + [sym_qualified_identifier] = STATE(3592), + [sym_qualified_type_identifier] = STATE(8386), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(2848), + [aux_sym__type_definition_type_repeat1] = STATE(4615), + [aux_sym_pointer_declarator_repeat1] = STATE(3887), + [sym_identifier] = ACTIONS(3454), + [anon_sym_LPAREN2] = ACTIONS(3456), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3438), - [anon_sym_typedef] = ACTIONS(3440), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(3460), + [anon_sym_COLON_COLON] = ACTIONS(2194), [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_ms_restrict_modifier] = ACTIONS(3462), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3462), + [sym_ms_signed_ptr_modifier] = ACTIONS(3462), + [anon_sym__unaligned] = ACTIONS(3464), + [anon_sym___unaligned] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(2082), + [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_mutable] = ACTIONS(3460), + [anon_sym_constinit] = ACTIONS(3460), + [anon_sym_consteval] = ACTIONS(3460), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [614] = { + [sym_identifier] = ACTIONS(2953), + [aux_sym_preproc_include_token1] = ACTIONS(2953), + [aux_sym_preproc_def_token1] = ACTIONS(2953), + [aux_sym_preproc_if_token1] = ACTIONS(2953), + [aux_sym_preproc_if_token2] = ACTIONS(2953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), + [sym_preproc_directive] = ACTIONS(2953), + [anon_sym_LPAREN2] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym___extension__] = ACTIONS(2953), + [anon_sym_typedef] = ACTIONS(2953), + [anon_sym_extern] = ACTIONS(2953), + [anon_sym___attribute__] = ACTIONS(2953), + [anon_sym_COLON_COLON] = ACTIONS(2955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), + [anon_sym___declspec] = ACTIONS(2953), + [anon_sym___based] = ACTIONS(2953), + [anon_sym___cdecl] = ACTIONS(2953), + [anon_sym___clrcall] = ACTIONS(2953), + [anon_sym___stdcall] = ACTIONS(2953), + [anon_sym___fastcall] = ACTIONS(2953), + [anon_sym___thiscall] = ACTIONS(2953), + [anon_sym___vectorcall] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_signed] = ACTIONS(2953), + [anon_sym_unsigned] = ACTIONS(2953), + [anon_sym_long] = ACTIONS(2953), + [anon_sym_short] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(2953), + [anon_sym_static] = ACTIONS(2953), + [anon_sym_register] = ACTIONS(2953), + [anon_sym_inline] = ACTIONS(2953), + [anon_sym___inline] = ACTIONS(2953), + [anon_sym___inline__] = ACTIONS(2953), + [anon_sym___forceinline] = ACTIONS(2953), + [anon_sym_thread_local] = ACTIONS(2953), + [anon_sym___thread] = ACTIONS(2953), + [anon_sym_const] = ACTIONS(2953), + [anon_sym_constexpr] = ACTIONS(2953), + [anon_sym_volatile] = ACTIONS(2953), + [anon_sym_restrict] = ACTIONS(2953), + [anon_sym___restrict__] = ACTIONS(2953), + [anon_sym__Atomic] = ACTIONS(2953), + [anon_sym__Noreturn] = ACTIONS(2953), + [anon_sym_noreturn] = ACTIONS(2953), + [anon_sym_mutable] = ACTIONS(2953), + [anon_sym_constinit] = ACTIONS(2953), + [anon_sym_consteval] = ACTIONS(2953), + [sym_primitive_type] = ACTIONS(2953), + [anon_sym_enum] = ACTIONS(2953), + [anon_sym_class] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(2953), + [anon_sym_union] = ACTIONS(2953), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_else] = ACTIONS(2953), + [anon_sym_switch] = ACTIONS(2953), + [anon_sym_case] = ACTIONS(2953), + [anon_sym_default] = ACTIONS(2953), + [anon_sym_while] = ACTIONS(2953), + [anon_sym_do] = ACTIONS(2953), + [anon_sym_for] = ACTIONS(2953), + [anon_sym_return] = ACTIONS(2953), + [anon_sym_break] = ACTIONS(2953), + [anon_sym_continue] = ACTIONS(2953), + [anon_sym_goto] = ACTIONS(2953), + [anon_sym___try] = ACTIONS(2953), + [anon_sym___leave] = ACTIONS(2953), + [anon_sym_not] = ACTIONS(2953), + [anon_sym_compl] = ACTIONS(2953), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_sizeof] = ACTIONS(2953), + [anon_sym___alignof__] = ACTIONS(2953), + [anon_sym___alignof] = ACTIONS(2953), + [anon_sym__alignof] = ACTIONS(2953), + [anon_sym_alignof] = ACTIONS(2953), + [anon_sym__Alignof] = ACTIONS(2953), + [anon_sym_offsetof] = ACTIONS(2953), + [anon_sym__Generic] = ACTIONS(2953), + [anon_sym_asm] = ACTIONS(2953), + [anon_sym___asm__] = ACTIONS(2953), + [sym_number_literal] = ACTIONS(2955), + [anon_sym_L_SQUOTE] = ACTIONS(2955), + [anon_sym_u_SQUOTE] = ACTIONS(2955), + [anon_sym_U_SQUOTE] = ACTIONS(2955), + [anon_sym_u8_SQUOTE] = ACTIONS(2955), + [anon_sym_SQUOTE] = ACTIONS(2955), + [anon_sym_L_DQUOTE] = ACTIONS(2955), + [anon_sym_u_DQUOTE] = ACTIONS(2955), + [anon_sym_U_DQUOTE] = ACTIONS(2955), + [anon_sym_u8_DQUOTE] = ACTIONS(2955), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_true] = ACTIONS(2953), + [sym_false] = ACTIONS(2953), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3442), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_static_assert] = ACTIONS(3448), + [sym_auto] = ACTIONS(2953), + [anon_sym_decltype] = ACTIONS(2953), + [anon_sym_virtual] = ACTIONS(2953), + [anon_sym_alignas] = ACTIONS(2953), + [anon_sym_explicit] = ACTIONS(2953), + [anon_sym_typename] = ACTIONS(2953), + [anon_sym_template] = ACTIONS(2953), + [anon_sym_operator] = ACTIONS(2953), + [anon_sym_try] = ACTIONS(2953), + [anon_sym_delete] = ACTIONS(2953), + [anon_sym_throw] = ACTIONS(2953), + [anon_sym_namespace] = ACTIONS(2953), + [anon_sym_using] = ACTIONS(2953), + [anon_sym_static_assert] = ACTIONS(2953), + [anon_sym_concept] = ACTIONS(2953), + [anon_sym_co_return] = ACTIONS(2953), + [anon_sym_co_yield] = ACTIONS(2953), + [anon_sym_R_DQUOTE] = ACTIONS(2955), + [anon_sym_LR_DQUOTE] = ACTIONS(2955), + [anon_sym_uR_DQUOTE] = ACTIONS(2955), + [anon_sym_UR_DQUOTE] = ACTIONS(2955), + [anon_sym_u8R_DQUOTE] = ACTIONS(2955), + [anon_sym_co_await] = ACTIONS(2953), + [anon_sym_new] = ACTIONS(2953), + [anon_sym_requires] = ACTIONS(2953), + [sym_this] = ACTIONS(2953), }, - [604] = { + [615] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [616] = { + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_include_token1] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token2] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym___extension__] = ACTIONS(2879), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym___cdecl] = ACTIONS(2879), + [anon_sym___clrcall] = ACTIONS(2879), + [anon_sym___stdcall] = ACTIONS(2879), + [anon_sym___fastcall] = ACTIONS(2879), + [anon_sym___thiscall] = ACTIONS(2879), + [anon_sym___vectorcall] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym___inline] = ACTIONS(2879), + [anon_sym___inline__] = ACTIONS(2879), + [anon_sym___forceinline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym___thread] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym___restrict__] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym__Noreturn] = ACTIONS(2879), + [anon_sym_noreturn] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_else] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym___try] = ACTIONS(2879), + [anon_sym___leave] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [anon_sym___alignof__] = ACTIONS(2879), + [anon_sym___alignof] = ACTIONS(2879), + [anon_sym__alignof] = ACTIONS(2879), + [anon_sym_alignof] = ACTIONS(2879), + [anon_sym__Alignof] = ACTIONS(2879), + [anon_sym_offsetof] = ACTIONS(2879), + [anon_sym__Generic] = ACTIONS(2879), + [anon_sym_asm] = ACTIONS(2879), + [anon_sym___asm__] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [anon_sym_NULL] = ACTIONS(2879), + [anon_sym_nullptr] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_alignas] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), + [anon_sym_concept] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_R_DQUOTE] = ACTIONS(2881), + [anon_sym_LR_DQUOTE] = ACTIONS(2881), + [anon_sym_uR_DQUOTE] = ACTIONS(2881), + [anon_sym_UR_DQUOTE] = ACTIONS(2881), + [anon_sym_u8R_DQUOTE] = ACTIONS(2881), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), + }, + [617] = { [ts_builtin_sym_end] = ACTIONS(2903), [sym_identifier] = ACTIONS(2901), [aux_sym_preproc_include_token1] = ACTIONS(2901), @@ -174076,144 +176135,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2901), [sym_this] = ACTIONS(2901), }, - [605] = { - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_unaligned_ptr_modifier] = STATE(5775), - [sym_ms_pointer_modifier] = STATE(3924), - [sym__declarator] = STATE(6911), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym_type_qualifier] = STATE(4555), - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3548), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6199), - [sym_qualified_identifier] = STATE(3554), - [sym_qualified_type_identifier] = STATE(8190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(2770), - [aux_sym__type_definition_type_repeat1] = STATE(4555), - [aux_sym_pointer_declarator_repeat1] = STATE(3924), - [sym_identifier] = ACTIONS(3450), - [anon_sym_LPAREN2] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym___extension__] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym___based] = ACTIONS(47), - [sym_ms_restrict_modifier] = ACTIONS(3458), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3458), - [sym_ms_signed_ptr_modifier] = ACTIONS(3458), - [anon_sym__unaligned] = ACTIONS(3460), - [anon_sym___unaligned] = ACTIONS(3460), - [anon_sym_LBRACK] = ACTIONS(2076), - [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_mutable] = ACTIONS(3456), - [anon_sym_constinit] = ACTIONS(3456), - [anon_sym_consteval] = ACTIONS(3456), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [618] = { + [ts_builtin_sym_end] = ACTIONS(2881), + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_include_token1] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym___extension__] = ACTIONS(2879), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym___cdecl] = ACTIONS(2879), + [anon_sym___clrcall] = ACTIONS(2879), + [anon_sym___stdcall] = ACTIONS(2879), + [anon_sym___fastcall] = ACTIONS(2879), + [anon_sym___thiscall] = ACTIONS(2879), + [anon_sym___vectorcall] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym___inline] = ACTIONS(2879), + [anon_sym___inline__] = ACTIONS(2879), + [anon_sym___forceinline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym___thread] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym___restrict__] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym__Noreturn] = ACTIONS(2879), + [anon_sym_noreturn] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_else] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym___try] = ACTIONS(2879), + [anon_sym___leave] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [anon_sym___alignof__] = ACTIONS(2879), + [anon_sym___alignof] = ACTIONS(2879), + [anon_sym__alignof] = ACTIONS(2879), + [anon_sym_alignof] = ACTIONS(2879), + [anon_sym__Alignof] = ACTIONS(2879), + [anon_sym_offsetof] = ACTIONS(2879), + [anon_sym__Generic] = ACTIONS(2879), + [anon_sym_asm] = ACTIONS(2879), + [anon_sym___asm__] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [anon_sym_NULL] = ACTIONS(2879), + [anon_sym_nullptr] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_alignas] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), + [anon_sym_concept] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_R_DQUOTE] = ACTIONS(2881), + [anon_sym_LR_DQUOTE] = ACTIONS(2881), + [anon_sym_uR_DQUOTE] = ACTIONS(2881), + [anon_sym_UR_DQUOTE] = ACTIONS(2881), + [anon_sym_u8R_DQUOTE] = ACTIONS(2881), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), }, - [606] = { + [619] = { [sym_identifier] = ACTIONS(2929), [aux_sym_preproc_include_token1] = ACTIONS(2929), [aux_sym_preproc_def_token1] = ACTIONS(2929), [aux_sym_preproc_if_token1] = ACTIONS(2929), + [aux_sym_preproc_if_token2] = ACTIONS(2929), [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), [sym_preproc_directive] = ACTIONS(2929), @@ -174241,7 +176301,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2929), [anon_sym___vectorcall] = ACTIONS(2929), [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_RBRACE] = ACTIONS(2931), [anon_sym_signed] = ACTIONS(2929), [anon_sym_unsigned] = ACTIONS(2929), [anon_sym_long] = ACTIONS(2929), @@ -174342,411 +176401,677 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2929), [sym_this] = ACTIONS(2929), }, - [607] = { - [ts_builtin_sym_end] = ACTIONS(2927), - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_include_token1] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym___cdecl] = ACTIONS(2925), - [anon_sym___clrcall] = ACTIONS(2925), - [anon_sym___stdcall] = ACTIONS(2925), - [anon_sym___fastcall] = ACTIONS(2925), - [anon_sym___thiscall] = ACTIONS(2925), - [anon_sym___vectorcall] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_case] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym___try] = ACTIONS(2925), - [anon_sym___leave] = ACTIONS(2925), - [anon_sym_not] = ACTIONS(2925), - [anon_sym_compl] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(2925), - [anon_sym___alignof__] = ACTIONS(2925), - [anon_sym___alignof] = ACTIONS(2925), - [anon_sym__alignof] = ACTIONS(2925), - [anon_sym_alignof] = ACTIONS(2925), - [anon_sym__Alignof] = ACTIONS(2925), - [anon_sym_offsetof] = ACTIONS(2925), - [anon_sym__Generic] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym___asm__] = ACTIONS(2925), - [sym_number_literal] = ACTIONS(2927), - [anon_sym_L_SQUOTE] = ACTIONS(2927), - [anon_sym_u_SQUOTE] = ACTIONS(2927), - [anon_sym_U_SQUOTE] = ACTIONS(2927), - [anon_sym_u8_SQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_L_DQUOTE] = ACTIONS(2927), - [anon_sym_u_DQUOTE] = ACTIONS(2927), - [anon_sym_U_DQUOTE] = ACTIONS(2927), - [anon_sym_u8_DQUOTE] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [anon_sym_NULL] = ACTIONS(2925), - [anon_sym_nullptr] = ACTIONS(2925), + [620] = { + [sym_identifier] = ACTIONS(2961), + [aux_sym_preproc_include_token1] = ACTIONS(2961), + [aux_sym_preproc_def_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token2] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), + [sym_preproc_directive] = ACTIONS(2961), + [anon_sym_LPAREN2] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2963), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym___extension__] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym___attribute__] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), + [anon_sym___declspec] = ACTIONS(2961), + [anon_sym___based] = ACTIONS(2961), + [anon_sym___cdecl] = ACTIONS(2961), + [anon_sym___clrcall] = ACTIONS(2961), + [anon_sym___stdcall] = ACTIONS(2961), + [anon_sym___fastcall] = ACTIONS(2961), + [anon_sym___thiscall] = ACTIONS(2961), + [anon_sym___vectorcall] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_signed] = ACTIONS(2961), + [anon_sym_unsigned] = ACTIONS(2961), + [anon_sym_long] = ACTIONS(2961), + [anon_sym_short] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_register] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym___inline] = ACTIONS(2961), + [anon_sym___inline__] = ACTIONS(2961), + [anon_sym___forceinline] = ACTIONS(2961), + [anon_sym_thread_local] = ACTIONS(2961), + [anon_sym___thread] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_constexpr] = ACTIONS(2961), + [anon_sym_volatile] = ACTIONS(2961), + [anon_sym_restrict] = ACTIONS(2961), + [anon_sym___restrict__] = ACTIONS(2961), + [anon_sym__Atomic] = ACTIONS(2961), + [anon_sym__Noreturn] = ACTIONS(2961), + [anon_sym_noreturn] = ACTIONS(2961), + [anon_sym_mutable] = ACTIONS(2961), + [anon_sym_constinit] = ACTIONS(2961), + [anon_sym_consteval] = ACTIONS(2961), + [sym_primitive_type] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_else] = ACTIONS(2961), + [anon_sym_switch] = ACTIONS(2961), + [anon_sym_case] = ACTIONS(2961), + [anon_sym_default] = ACTIONS(2961), + [anon_sym_while] = ACTIONS(2961), + [anon_sym_do] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_goto] = ACTIONS(2961), + [anon_sym___try] = ACTIONS(2961), + [anon_sym___leave] = ACTIONS(2961), + [anon_sym_not] = ACTIONS(2961), + [anon_sym_compl] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2963), + [anon_sym_PLUS_PLUS] = ACTIONS(2963), + [anon_sym_sizeof] = ACTIONS(2961), + [anon_sym___alignof__] = ACTIONS(2961), + [anon_sym___alignof] = ACTIONS(2961), + [anon_sym__alignof] = ACTIONS(2961), + [anon_sym_alignof] = ACTIONS(2961), + [anon_sym__Alignof] = ACTIONS(2961), + [anon_sym_offsetof] = ACTIONS(2961), + [anon_sym__Generic] = ACTIONS(2961), + [anon_sym_asm] = ACTIONS(2961), + [anon_sym___asm__] = ACTIONS(2961), + [sym_number_literal] = ACTIONS(2963), + [anon_sym_L_SQUOTE] = ACTIONS(2963), + [anon_sym_u_SQUOTE] = ACTIONS(2963), + [anon_sym_U_SQUOTE] = ACTIONS(2963), + [anon_sym_u8_SQUOTE] = ACTIONS(2963), + [anon_sym_SQUOTE] = ACTIONS(2963), + [anon_sym_L_DQUOTE] = ACTIONS(2963), + [anon_sym_u_DQUOTE] = ACTIONS(2963), + [anon_sym_U_DQUOTE] = ACTIONS(2963), + [anon_sym_u8_DQUOTE] = ACTIONS(2963), + [anon_sym_DQUOTE] = ACTIONS(2963), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [anon_sym_NULL] = ACTIONS(2961), + [anon_sym_nullptr] = ACTIONS(2961), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_namespace] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - [anon_sym_concept] = ACTIONS(2925), - [anon_sym_co_return] = ACTIONS(2925), - [anon_sym_co_yield] = ACTIONS(2925), - [anon_sym_R_DQUOTE] = ACTIONS(2927), - [anon_sym_LR_DQUOTE] = ACTIONS(2927), - [anon_sym_uR_DQUOTE] = ACTIONS(2927), - [anon_sym_UR_DQUOTE] = ACTIONS(2927), - [anon_sym_u8R_DQUOTE] = ACTIONS(2927), - [anon_sym_co_await] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_requires] = ACTIONS(2925), - [sym_this] = ACTIONS(2925), + [sym_auto] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2961), + [anon_sym_virtual] = ACTIONS(2961), + [anon_sym_alignas] = ACTIONS(2961), + [anon_sym_explicit] = ACTIONS(2961), + [anon_sym_typename] = ACTIONS(2961), + [anon_sym_template] = ACTIONS(2961), + [anon_sym_operator] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2961), + [anon_sym_throw] = ACTIONS(2961), + [anon_sym_namespace] = ACTIONS(2961), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_static_assert] = ACTIONS(2961), + [anon_sym_concept] = ACTIONS(2961), + [anon_sym_co_return] = ACTIONS(2961), + [anon_sym_co_yield] = ACTIONS(2961), + [anon_sym_R_DQUOTE] = ACTIONS(2963), + [anon_sym_LR_DQUOTE] = ACTIONS(2963), + [anon_sym_uR_DQUOTE] = ACTIONS(2963), + [anon_sym_UR_DQUOTE] = ACTIONS(2963), + [anon_sym_u8R_DQUOTE] = ACTIONS(2963), + [anon_sym_co_await] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2961), + [sym_this] = ACTIONS(2961), }, - [608] = { - [ts_builtin_sym_end] = ACTIONS(2865), - [sym_identifier] = ACTIONS(2863), - [aux_sym_preproc_include_token1] = ACTIONS(2863), - [aux_sym_preproc_def_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), - [sym_preproc_directive] = ACTIONS(2863), - [anon_sym_LPAREN2] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_typedef] = ACTIONS(2863), - [anon_sym_extern] = ACTIONS(2863), - [anon_sym___attribute__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), - [anon_sym___declspec] = ACTIONS(2863), - [anon_sym___based] = ACTIONS(2863), - [anon_sym___cdecl] = ACTIONS(2863), - [anon_sym___clrcall] = ACTIONS(2863), - [anon_sym___stdcall] = ACTIONS(2863), - [anon_sym___fastcall] = ACTIONS(2863), - [anon_sym___thiscall] = ACTIONS(2863), - [anon_sym___vectorcall] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2863), - [anon_sym_unsigned] = ACTIONS(2863), - [anon_sym_long] = ACTIONS(2863), - [anon_sym_short] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(2863), - [anon_sym_register] = ACTIONS(2863), - [anon_sym_inline] = ACTIONS(2863), - [anon_sym___inline] = ACTIONS(2863), - [anon_sym___inline__] = ACTIONS(2863), - [anon_sym___forceinline] = ACTIONS(2863), - [anon_sym_thread_local] = ACTIONS(2863), - [anon_sym___thread] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_constexpr] = ACTIONS(2863), - [anon_sym_volatile] = ACTIONS(2863), - [anon_sym_restrict] = ACTIONS(2863), - [anon_sym___restrict__] = ACTIONS(2863), - [anon_sym__Atomic] = ACTIONS(2863), - [anon_sym__Noreturn] = ACTIONS(2863), - [anon_sym_noreturn] = ACTIONS(2863), - [anon_sym_mutable] = ACTIONS(2863), - [anon_sym_constinit] = ACTIONS(2863), - [anon_sym_consteval] = ACTIONS(2863), - [sym_primitive_type] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), - [anon_sym_class] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_union] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_else] = ACTIONS(2863), - [anon_sym_switch] = ACTIONS(2863), - [anon_sym_case] = ACTIONS(2863), - [anon_sym_default] = ACTIONS(2863), - [anon_sym_while] = ACTIONS(2863), - [anon_sym_do] = ACTIONS(2863), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_return] = ACTIONS(2863), - [anon_sym_break] = ACTIONS(2863), - [anon_sym_continue] = ACTIONS(2863), - [anon_sym_goto] = ACTIONS(2863), - [anon_sym___try] = ACTIONS(2863), - [anon_sym___leave] = ACTIONS(2863), - [anon_sym_not] = ACTIONS(2863), - [anon_sym_compl] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_sizeof] = ACTIONS(2863), - [anon_sym___alignof__] = ACTIONS(2863), - [anon_sym___alignof] = ACTIONS(2863), - [anon_sym__alignof] = ACTIONS(2863), - [anon_sym_alignof] = ACTIONS(2863), - [anon_sym__Alignof] = ACTIONS(2863), - [anon_sym_offsetof] = ACTIONS(2863), - [anon_sym__Generic] = ACTIONS(2863), - [anon_sym_asm] = ACTIONS(2863), - [anon_sym___asm__] = ACTIONS(2863), - [sym_number_literal] = ACTIONS(2865), - [anon_sym_L_SQUOTE] = ACTIONS(2865), - [anon_sym_u_SQUOTE] = ACTIONS(2865), - [anon_sym_U_SQUOTE] = ACTIONS(2865), - [anon_sym_u8_SQUOTE] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_L_DQUOTE] = ACTIONS(2865), - [anon_sym_u_DQUOTE] = ACTIONS(2865), - [anon_sym_U_DQUOTE] = ACTIONS(2865), - [anon_sym_u8_DQUOTE] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2865), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [anon_sym_NULL] = ACTIONS(2863), - [anon_sym_nullptr] = ACTIONS(2863), + [621] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [622] = { + [sym_identifier] = ACTIONS(2945), + [aux_sym_preproc_include_token1] = ACTIONS(2945), + [aux_sym_preproc_def_token1] = ACTIONS(2945), + [aux_sym_preproc_if_token1] = ACTIONS(2945), + [aux_sym_preproc_if_token2] = ACTIONS(2945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), + [sym_preproc_directive] = ACTIONS(2945), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_SEMI] = ACTIONS(2947), + [anon_sym___extension__] = ACTIONS(2945), + [anon_sym_typedef] = ACTIONS(2945), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym___attribute__] = ACTIONS(2945), + [anon_sym_COLON_COLON] = ACTIONS(2947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), + [anon_sym___declspec] = ACTIONS(2945), + [anon_sym___based] = ACTIONS(2945), + [anon_sym___cdecl] = ACTIONS(2945), + [anon_sym___clrcall] = ACTIONS(2945), + [anon_sym___stdcall] = ACTIONS(2945), + [anon_sym___fastcall] = ACTIONS(2945), + [anon_sym___thiscall] = ACTIONS(2945), + [anon_sym___vectorcall] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_signed] = ACTIONS(2945), + [anon_sym_unsigned] = ACTIONS(2945), + [anon_sym_long] = ACTIONS(2945), + [anon_sym_short] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_register] = ACTIONS(2945), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym___inline] = ACTIONS(2945), + [anon_sym___inline__] = ACTIONS(2945), + [anon_sym___forceinline] = ACTIONS(2945), + [anon_sym_thread_local] = ACTIONS(2945), + [anon_sym___thread] = ACTIONS(2945), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_constexpr] = ACTIONS(2945), + [anon_sym_volatile] = ACTIONS(2945), + [anon_sym_restrict] = ACTIONS(2945), + [anon_sym___restrict__] = ACTIONS(2945), + [anon_sym__Atomic] = ACTIONS(2945), + [anon_sym__Noreturn] = ACTIONS(2945), + [anon_sym_noreturn] = ACTIONS(2945), + [anon_sym_mutable] = ACTIONS(2945), + [anon_sym_constinit] = ACTIONS(2945), + [anon_sym_consteval] = ACTIONS(2945), + [sym_primitive_type] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(2945), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_else] = ACTIONS(2945), + [anon_sym_switch] = ACTIONS(2945), + [anon_sym_case] = ACTIONS(2945), + [anon_sym_default] = ACTIONS(2945), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_do] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [anon_sym_goto] = ACTIONS(2945), + [anon_sym___try] = ACTIONS(2945), + [anon_sym___leave] = ACTIONS(2945), + [anon_sym_not] = ACTIONS(2945), + [anon_sym_compl] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_sizeof] = ACTIONS(2945), + [anon_sym___alignof__] = ACTIONS(2945), + [anon_sym___alignof] = ACTIONS(2945), + [anon_sym__alignof] = ACTIONS(2945), + [anon_sym_alignof] = ACTIONS(2945), + [anon_sym__Alignof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2945), + [anon_sym__Generic] = ACTIONS(2945), + [anon_sym_asm] = ACTIONS(2945), + [anon_sym___asm__] = ACTIONS(2945), + [sym_number_literal] = ACTIONS(2947), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2947), + [anon_sym_u_DQUOTE] = ACTIONS(2947), + [anon_sym_U_DQUOTE] = ACTIONS(2947), + [anon_sym_u8_DQUOTE] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(2947), + [sym_true] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [anon_sym_NULL] = ACTIONS(2945), + [anon_sym_nullptr] = ACTIONS(2945), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2863), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2863), - [anon_sym_alignas] = ACTIONS(2863), - [anon_sym_explicit] = ACTIONS(2863), - [anon_sym_typename] = ACTIONS(2863), - [anon_sym_template] = ACTIONS(2863), - [anon_sym_operator] = ACTIONS(2863), - [anon_sym_try] = ACTIONS(2863), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_throw] = ACTIONS(2863), - [anon_sym_namespace] = ACTIONS(2863), - [anon_sym_using] = ACTIONS(2863), - [anon_sym_static_assert] = ACTIONS(2863), - [anon_sym_concept] = ACTIONS(2863), - [anon_sym_co_return] = ACTIONS(2863), - [anon_sym_co_yield] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2863), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2863), - [sym_this] = ACTIONS(2863), + [sym_auto] = ACTIONS(2945), + [anon_sym_decltype] = ACTIONS(2945), + [anon_sym_virtual] = ACTIONS(2945), + [anon_sym_alignas] = ACTIONS(2945), + [anon_sym_explicit] = ACTIONS(2945), + [anon_sym_typename] = ACTIONS(2945), + [anon_sym_template] = ACTIONS(2945), + [anon_sym_operator] = ACTIONS(2945), + [anon_sym_try] = ACTIONS(2945), + [anon_sym_delete] = ACTIONS(2945), + [anon_sym_throw] = ACTIONS(2945), + [anon_sym_namespace] = ACTIONS(2945), + [anon_sym_using] = ACTIONS(2945), + [anon_sym_static_assert] = ACTIONS(2945), + [anon_sym_concept] = ACTIONS(2945), + [anon_sym_co_return] = ACTIONS(2945), + [anon_sym_co_yield] = ACTIONS(2945), + [anon_sym_R_DQUOTE] = ACTIONS(2947), + [anon_sym_LR_DQUOTE] = ACTIONS(2947), + [anon_sym_uR_DQUOTE] = ACTIONS(2947), + [anon_sym_UR_DQUOTE] = ACTIONS(2947), + [anon_sym_u8R_DQUOTE] = ACTIONS(2947), + [anon_sym_co_await] = ACTIONS(2945), + [anon_sym_new] = ACTIONS(2945), + [anon_sym_requires] = ACTIONS(2945), + [sym_this] = ACTIONS(2945), }, - [609] = { - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym___try] = ACTIONS(2905), - [anon_sym___leave] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [sym_number_literal] = ACTIONS(2907), - [anon_sym_L_SQUOTE] = ACTIONS(2907), - [anon_sym_u_SQUOTE] = ACTIONS(2907), - [anon_sym_U_SQUOTE] = ACTIONS(2907), - [anon_sym_u8_SQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_L_DQUOTE] = ACTIONS(2907), - [anon_sym_u_DQUOTE] = ACTIONS(2907), - [anon_sym_U_DQUOTE] = ACTIONS(2907), - [anon_sym_u8_DQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), + [623] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [anon_sym_R_DQUOTE] = ACTIONS(2907), - [anon_sym_LR_DQUOTE] = ACTIONS(2907), - [anon_sym_uR_DQUOTE] = ACTIONS(2907), - [anon_sym_UR_DQUOTE] = ACTIONS(2907), - [anon_sym_u8R_DQUOTE] = ACTIONS(2907), - [anon_sym_co_await] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [sym_this] = ACTIONS(2905), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [610] = { - [ts_builtin_sym_end] = ACTIONS(2919), + [624] = { + [sym_identifier] = ACTIONS(2921), + [aux_sym_preproc_include_token1] = ACTIONS(2921), + [aux_sym_preproc_def_token1] = ACTIONS(2921), + [aux_sym_preproc_if_token1] = ACTIONS(2921), + [aux_sym_preproc_if_token2] = ACTIONS(2921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), + [sym_preproc_directive] = ACTIONS(2921), + [anon_sym_LPAREN2] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_AMP_AMP] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym___extension__] = ACTIONS(2921), + [anon_sym_typedef] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym___attribute__] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(2923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), + [anon_sym___declspec] = ACTIONS(2921), + [anon_sym___based] = ACTIONS(2921), + [anon_sym___cdecl] = ACTIONS(2921), + [anon_sym___clrcall] = ACTIONS(2921), + [anon_sym___stdcall] = ACTIONS(2921), + [anon_sym___fastcall] = ACTIONS(2921), + [anon_sym___thiscall] = ACTIONS(2921), + [anon_sym___vectorcall] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2921), + [anon_sym_unsigned] = ACTIONS(2921), + [anon_sym_long] = ACTIONS(2921), + [anon_sym_short] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_register] = ACTIONS(2921), + [anon_sym_inline] = ACTIONS(2921), + [anon_sym___inline] = ACTIONS(2921), + [anon_sym___inline__] = ACTIONS(2921), + [anon_sym___forceinline] = ACTIONS(2921), + [anon_sym_thread_local] = ACTIONS(2921), + [anon_sym___thread] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_constexpr] = ACTIONS(2921), + [anon_sym_volatile] = ACTIONS(2921), + [anon_sym_restrict] = ACTIONS(2921), + [anon_sym___restrict__] = ACTIONS(2921), + [anon_sym__Atomic] = ACTIONS(2921), + [anon_sym__Noreturn] = ACTIONS(2921), + [anon_sym_noreturn] = ACTIONS(2921), + [anon_sym_mutable] = ACTIONS(2921), + [anon_sym_constinit] = ACTIONS(2921), + [anon_sym_consteval] = ACTIONS(2921), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), + [anon_sym_class] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_union] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_else] = ACTIONS(2921), + [anon_sym_switch] = ACTIONS(2921), + [anon_sym_case] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_do] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_goto] = ACTIONS(2921), + [anon_sym___try] = ACTIONS(2921), + [anon_sym___leave] = ACTIONS(2921), + [anon_sym_not] = ACTIONS(2921), + [anon_sym_compl] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_sizeof] = ACTIONS(2921), + [anon_sym___alignof__] = ACTIONS(2921), + [anon_sym___alignof] = ACTIONS(2921), + [anon_sym__alignof] = ACTIONS(2921), + [anon_sym_alignof] = ACTIONS(2921), + [anon_sym__Alignof] = ACTIONS(2921), + [anon_sym_offsetof] = ACTIONS(2921), + [anon_sym__Generic] = ACTIONS(2921), + [anon_sym_asm] = ACTIONS(2921), + [anon_sym___asm__] = ACTIONS(2921), + [sym_number_literal] = ACTIONS(2923), + [anon_sym_L_SQUOTE] = ACTIONS(2923), + [anon_sym_u_SQUOTE] = ACTIONS(2923), + [anon_sym_U_SQUOTE] = ACTIONS(2923), + [anon_sym_u8_SQUOTE] = ACTIONS(2923), + [anon_sym_SQUOTE] = ACTIONS(2923), + [anon_sym_L_DQUOTE] = ACTIONS(2923), + [anon_sym_u_DQUOTE] = ACTIONS(2923), + [anon_sym_U_DQUOTE] = ACTIONS(2923), + [anon_sym_u8_DQUOTE] = ACTIONS(2923), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [anon_sym_NULL] = ACTIONS(2921), + [anon_sym_nullptr] = ACTIONS(2921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2921), + [anon_sym_decltype] = ACTIONS(2921), + [anon_sym_virtual] = ACTIONS(2921), + [anon_sym_alignas] = ACTIONS(2921), + [anon_sym_explicit] = ACTIONS(2921), + [anon_sym_typename] = ACTIONS(2921), + [anon_sym_template] = ACTIONS(2921), + [anon_sym_operator] = ACTIONS(2921), + [anon_sym_try] = ACTIONS(2921), + [anon_sym_delete] = ACTIONS(2921), + [anon_sym_throw] = ACTIONS(2921), + [anon_sym_namespace] = ACTIONS(2921), + [anon_sym_using] = ACTIONS(2921), + [anon_sym_static_assert] = ACTIONS(2921), + [anon_sym_concept] = ACTIONS(2921), + [anon_sym_co_return] = ACTIONS(2921), + [anon_sym_co_yield] = ACTIONS(2921), + [anon_sym_R_DQUOTE] = ACTIONS(2923), + [anon_sym_LR_DQUOTE] = ACTIONS(2923), + [anon_sym_uR_DQUOTE] = ACTIONS(2923), + [anon_sym_UR_DQUOTE] = ACTIONS(2923), + [anon_sym_u8R_DQUOTE] = ACTIONS(2923), + [anon_sym_co_await] = ACTIONS(2921), + [anon_sym_new] = ACTIONS(2921), + [anon_sym_requires] = ACTIONS(2921), + [sym_this] = ACTIONS(2921), + }, + [625] = { [sym_identifier] = ACTIONS(2917), [aux_sym_preproc_include_token1] = ACTIONS(2917), [aux_sym_preproc_def_token1] = ACTIONS(2917), [aux_sym_preproc_if_token1] = ACTIONS(2917), + [aux_sym_preproc_if_token2] = ACTIONS(2917), [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), [sym_preproc_directive] = ACTIONS(2917), @@ -174874,277 +177199,677 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2917), [sym_this] = ACTIONS(2917), }, - [611] = { - [sym_identifier] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym___based] = ACTIONS(2937), - [anon_sym___cdecl] = ACTIONS(2937), - [anon_sym___clrcall] = ACTIONS(2937), - [anon_sym___stdcall] = ACTIONS(2937), - [anon_sym___fastcall] = ACTIONS(2937), - [anon_sym___thiscall] = ACTIONS(2937), - [anon_sym___vectorcall] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_RBRACE] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym___inline] = ACTIONS(2937), - [anon_sym___inline__] = ACTIONS(2937), - [anon_sym___forceinline] = ACTIONS(2937), - [anon_sym_thread_local] = ACTIONS(2937), - [anon_sym___thread] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_case] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [anon_sym___try] = ACTIONS(2937), - [anon_sym___leave] = ACTIONS(2937), - [anon_sym_not] = ACTIONS(2937), - [anon_sym_compl] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym___alignof__] = ACTIONS(2937), - [anon_sym___alignof] = ACTIONS(2937), - [anon_sym__alignof] = ACTIONS(2937), - [anon_sym_alignof] = ACTIONS(2937), - [anon_sym__Alignof] = ACTIONS(2937), - [anon_sym_offsetof] = ACTIONS(2937), - [anon_sym__Generic] = ACTIONS(2937), - [anon_sym_asm] = ACTIONS(2937), - [anon_sym___asm__] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_L_SQUOTE] = ACTIONS(2939), - [anon_sym_u_SQUOTE] = ACTIONS(2939), - [anon_sym_U_SQUOTE] = ACTIONS(2939), - [anon_sym_u8_SQUOTE] = ACTIONS(2939), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_L_DQUOTE] = ACTIONS(2939), - [anon_sym_u_DQUOTE] = ACTIONS(2939), - [anon_sym_U_DQUOTE] = ACTIONS(2939), - [anon_sym_u8_DQUOTE] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [anon_sym_NULL] = ACTIONS(2937), - [anon_sym_nullptr] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2937), - [anon_sym_decltype] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_operator] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_throw] = ACTIONS(2937), - [anon_sym_namespace] = ACTIONS(2937), - [anon_sym_using] = ACTIONS(2937), - [anon_sym_static_assert] = ACTIONS(2937), - [anon_sym_concept] = ACTIONS(2937), - [anon_sym_co_return] = ACTIONS(2937), - [anon_sym_co_yield] = ACTIONS(2937), - [anon_sym_R_DQUOTE] = ACTIONS(2939), - [anon_sym_LR_DQUOTE] = ACTIONS(2939), - [anon_sym_uR_DQUOTE] = ACTIONS(2939), - [anon_sym_UR_DQUOTE] = ACTIONS(2939), - [anon_sym_u8R_DQUOTE] = ACTIONS(2939), - [anon_sym_co_await] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_requires] = ACTIONS(2937), - [sym_this] = ACTIONS(2937), - }, - [612] = { - [ts_builtin_sym_end] = ACTIONS(2915), - [sym_identifier] = ACTIONS(2913), - [aux_sym_preproc_include_token1] = ACTIONS(2913), - [aux_sym_preproc_def_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), - [sym_preproc_directive] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym___based] = ACTIONS(2913), - [anon_sym___cdecl] = ACTIONS(2913), - [anon_sym___clrcall] = ACTIONS(2913), - [anon_sym___stdcall] = ACTIONS(2913), - [anon_sym___fastcall] = ACTIONS(2913), - [anon_sym___thiscall] = ACTIONS(2913), - [anon_sym___vectorcall] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_case] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym___try] = ACTIONS(2913), - [anon_sym___leave] = ACTIONS(2913), - [anon_sym_not] = ACTIONS(2913), - [anon_sym_compl] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2913), - [anon_sym___alignof__] = ACTIONS(2913), - [anon_sym___alignof] = ACTIONS(2913), - [anon_sym__alignof] = ACTIONS(2913), - [anon_sym_alignof] = ACTIONS(2913), - [anon_sym__Alignof] = ACTIONS(2913), - [anon_sym_offsetof] = ACTIONS(2913), - [anon_sym__Generic] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym___asm__] = ACTIONS(2913), - [sym_number_literal] = ACTIONS(2915), - [anon_sym_L_SQUOTE] = ACTIONS(2915), - [anon_sym_u_SQUOTE] = ACTIONS(2915), - [anon_sym_U_SQUOTE] = ACTIONS(2915), - [anon_sym_u8_SQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_L_DQUOTE] = ACTIONS(2915), - [anon_sym_u_DQUOTE] = ACTIONS(2915), - [anon_sym_U_DQUOTE] = ACTIONS(2915), - [anon_sym_u8_DQUOTE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [anon_sym_NULL] = ACTIONS(2913), - [anon_sym_nullptr] = ACTIONS(2913), + [626] = { + [sym_identifier] = ACTIONS(2905), + [aux_sym_preproc_include_token1] = ACTIONS(2905), + [aux_sym_preproc_def_token1] = ACTIONS(2905), + [aux_sym_preproc_if_token1] = ACTIONS(2905), + [aux_sym_preproc_if_token2] = ACTIONS(2905), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), + [sym_preproc_directive] = ACTIONS(2905), + [anon_sym_LPAREN2] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_AMP_AMP] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym___extension__] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym___attribute__] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), + [anon_sym___declspec] = ACTIONS(2905), + [anon_sym___based] = ACTIONS(2905), + [anon_sym___cdecl] = ACTIONS(2905), + [anon_sym___clrcall] = ACTIONS(2905), + [anon_sym___stdcall] = ACTIONS(2905), + [anon_sym___fastcall] = ACTIONS(2905), + [anon_sym___thiscall] = ACTIONS(2905), + [anon_sym___vectorcall] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2905), + [anon_sym_unsigned] = ACTIONS(2905), + [anon_sym_long] = ACTIONS(2905), + [anon_sym_short] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_static] = ACTIONS(2905), + [anon_sym_register] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym___inline] = ACTIONS(2905), + [anon_sym___inline__] = ACTIONS(2905), + [anon_sym___forceinline] = ACTIONS(2905), + [anon_sym_thread_local] = ACTIONS(2905), + [anon_sym___thread] = ACTIONS(2905), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_constexpr] = ACTIONS(2905), + [anon_sym_volatile] = ACTIONS(2905), + [anon_sym_restrict] = ACTIONS(2905), + [anon_sym___restrict__] = ACTIONS(2905), + [anon_sym__Atomic] = ACTIONS(2905), + [anon_sym__Noreturn] = ACTIONS(2905), + [anon_sym_noreturn] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_union] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_else] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2905), + [anon_sym_case] = ACTIONS(2905), + [anon_sym_default] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_goto] = ACTIONS(2905), + [anon_sym___try] = ACTIONS(2905), + [anon_sym___leave] = ACTIONS(2905), + [anon_sym_not] = ACTIONS(2905), + [anon_sym_compl] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_sizeof] = ACTIONS(2905), + [anon_sym___alignof__] = ACTIONS(2905), + [anon_sym___alignof] = ACTIONS(2905), + [anon_sym__alignof] = ACTIONS(2905), + [anon_sym_alignof] = ACTIONS(2905), + [anon_sym__Alignof] = ACTIONS(2905), + [anon_sym_offsetof] = ACTIONS(2905), + [anon_sym__Generic] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym___asm__] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2907), + [anon_sym_L_SQUOTE] = ACTIONS(2907), + [anon_sym_u_SQUOTE] = ACTIONS(2907), + [anon_sym_U_SQUOTE] = ACTIONS(2907), + [anon_sym_u8_SQUOTE] = ACTIONS(2907), + [anon_sym_SQUOTE] = ACTIONS(2907), + [anon_sym_L_DQUOTE] = ACTIONS(2907), + [anon_sym_u_DQUOTE] = ACTIONS(2907), + [anon_sym_U_DQUOTE] = ACTIONS(2907), + [anon_sym_u8_DQUOTE] = ACTIONS(2907), + [anon_sym_DQUOTE] = ACTIONS(2907), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [anon_sym_NULL] = ACTIONS(2905), + [anon_sym_nullptr] = ACTIONS(2905), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_explicit] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_operator] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_namespace] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_static_assert] = ACTIONS(2913), - [anon_sym_concept] = ACTIONS(2913), - [anon_sym_co_return] = ACTIONS(2913), - [anon_sym_co_yield] = ACTIONS(2913), - [anon_sym_R_DQUOTE] = ACTIONS(2915), - [anon_sym_LR_DQUOTE] = ACTIONS(2915), - [anon_sym_uR_DQUOTE] = ACTIONS(2915), - [anon_sym_UR_DQUOTE] = ACTIONS(2915), - [anon_sym_u8R_DQUOTE] = ACTIONS(2915), - [anon_sym_co_await] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_requires] = ACTIONS(2913), - [sym_this] = ACTIONS(2913), + [sym_auto] = ACTIONS(2905), + [anon_sym_decltype] = ACTIONS(2905), + [anon_sym_virtual] = ACTIONS(2905), + [anon_sym_alignas] = ACTIONS(2905), + [anon_sym_explicit] = ACTIONS(2905), + [anon_sym_typename] = ACTIONS(2905), + [anon_sym_template] = ACTIONS(2905), + [anon_sym_operator] = ACTIONS(2905), + [anon_sym_try] = ACTIONS(2905), + [anon_sym_delete] = ACTIONS(2905), + [anon_sym_throw] = ACTIONS(2905), + [anon_sym_namespace] = ACTIONS(2905), + [anon_sym_using] = ACTIONS(2905), + [anon_sym_static_assert] = ACTIONS(2905), + [anon_sym_concept] = ACTIONS(2905), + [anon_sym_co_return] = ACTIONS(2905), + [anon_sym_co_yield] = ACTIONS(2905), + [anon_sym_R_DQUOTE] = ACTIONS(2907), + [anon_sym_LR_DQUOTE] = ACTIONS(2907), + [anon_sym_uR_DQUOTE] = ACTIONS(2907), + [anon_sym_UR_DQUOTE] = ACTIONS(2907), + [anon_sym_u8R_DQUOTE] = ACTIONS(2907), + [anon_sym_co_await] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_requires] = ACTIONS(2905), + [sym_this] = ACTIONS(2905), }, - [613] = { + [627] = { + [sym_identifier] = ACTIONS(2901), + [aux_sym_preproc_include_token1] = ACTIONS(2901), + [aux_sym_preproc_def_token1] = ACTIONS(2901), + [aux_sym_preproc_if_token1] = ACTIONS(2901), + [aux_sym_preproc_if_token2] = ACTIONS(2901), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), + [sym_preproc_directive] = ACTIONS(2901), + [anon_sym_LPAREN2] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2903), + [anon_sym___extension__] = ACTIONS(2901), + [anon_sym_typedef] = ACTIONS(2901), + [anon_sym_extern] = ACTIONS(2901), + [anon_sym___attribute__] = ACTIONS(2901), + [anon_sym_COLON_COLON] = ACTIONS(2903), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), + [anon_sym___declspec] = ACTIONS(2901), + [anon_sym___based] = ACTIONS(2901), + [anon_sym___cdecl] = ACTIONS(2901), + [anon_sym___clrcall] = ACTIONS(2901), + [anon_sym___stdcall] = ACTIONS(2901), + [anon_sym___fastcall] = ACTIONS(2901), + [anon_sym___thiscall] = ACTIONS(2901), + [anon_sym___vectorcall] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_signed] = ACTIONS(2901), + [anon_sym_unsigned] = ACTIONS(2901), + [anon_sym_long] = ACTIONS(2901), + [anon_sym_short] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_static] = ACTIONS(2901), + [anon_sym_register] = ACTIONS(2901), + [anon_sym_inline] = ACTIONS(2901), + [anon_sym___inline] = ACTIONS(2901), + [anon_sym___inline__] = ACTIONS(2901), + [anon_sym___forceinline] = ACTIONS(2901), + [anon_sym_thread_local] = ACTIONS(2901), + [anon_sym___thread] = ACTIONS(2901), + [anon_sym_const] = ACTIONS(2901), + [anon_sym_constexpr] = ACTIONS(2901), + [anon_sym_volatile] = ACTIONS(2901), + [anon_sym_restrict] = ACTIONS(2901), + [anon_sym___restrict__] = ACTIONS(2901), + [anon_sym__Atomic] = ACTIONS(2901), + [anon_sym__Noreturn] = ACTIONS(2901), + [anon_sym_noreturn] = ACTIONS(2901), + [anon_sym_mutable] = ACTIONS(2901), + [anon_sym_constinit] = ACTIONS(2901), + [anon_sym_consteval] = ACTIONS(2901), + [sym_primitive_type] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_class] = ACTIONS(2901), + [anon_sym_struct] = ACTIONS(2901), + [anon_sym_union] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_else] = ACTIONS(2901), + [anon_sym_switch] = ACTIONS(2901), + [anon_sym_case] = ACTIONS(2901), + [anon_sym_default] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_do] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_goto] = ACTIONS(2901), + [anon_sym___try] = ACTIONS(2901), + [anon_sym___leave] = ACTIONS(2901), + [anon_sym_not] = ACTIONS(2901), + [anon_sym_compl] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_sizeof] = ACTIONS(2901), + [anon_sym___alignof__] = ACTIONS(2901), + [anon_sym___alignof] = ACTIONS(2901), + [anon_sym__alignof] = ACTIONS(2901), + [anon_sym_alignof] = ACTIONS(2901), + [anon_sym__Alignof] = ACTIONS(2901), + [anon_sym_offsetof] = ACTIONS(2901), + [anon_sym__Generic] = ACTIONS(2901), + [anon_sym_asm] = ACTIONS(2901), + [anon_sym___asm__] = ACTIONS(2901), + [sym_number_literal] = ACTIONS(2903), + [anon_sym_L_SQUOTE] = ACTIONS(2903), + [anon_sym_u_SQUOTE] = ACTIONS(2903), + [anon_sym_U_SQUOTE] = ACTIONS(2903), + [anon_sym_u8_SQUOTE] = ACTIONS(2903), + [anon_sym_SQUOTE] = ACTIONS(2903), + [anon_sym_L_DQUOTE] = ACTIONS(2903), + [anon_sym_u_DQUOTE] = ACTIONS(2903), + [anon_sym_U_DQUOTE] = ACTIONS(2903), + [anon_sym_u8_DQUOTE] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2903), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [anon_sym_NULL] = ACTIONS(2901), + [anon_sym_nullptr] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2901), + [anon_sym_decltype] = ACTIONS(2901), + [anon_sym_virtual] = ACTIONS(2901), + [anon_sym_alignas] = ACTIONS(2901), + [anon_sym_explicit] = ACTIONS(2901), + [anon_sym_typename] = ACTIONS(2901), + [anon_sym_template] = ACTIONS(2901), + [anon_sym_operator] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2901), + [anon_sym_delete] = ACTIONS(2901), + [anon_sym_throw] = ACTIONS(2901), + [anon_sym_namespace] = ACTIONS(2901), + [anon_sym_using] = ACTIONS(2901), + [anon_sym_static_assert] = ACTIONS(2901), + [anon_sym_concept] = ACTIONS(2901), + [anon_sym_co_return] = ACTIONS(2901), + [anon_sym_co_yield] = ACTIONS(2901), + [anon_sym_R_DQUOTE] = ACTIONS(2903), + [anon_sym_LR_DQUOTE] = ACTIONS(2903), + [anon_sym_uR_DQUOTE] = ACTIONS(2903), + [anon_sym_UR_DQUOTE] = ACTIONS(2903), + [anon_sym_u8R_DQUOTE] = ACTIONS(2903), + [anon_sym_co_await] = ACTIONS(2901), + [anon_sym_new] = ACTIONS(2901), + [anon_sym_requires] = ACTIONS(2901), + [sym_this] = ACTIONS(2901), + }, + [628] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), + }, + [629] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [630] = { + [ts_builtin_sym_end] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2891), + [aux_sym_preproc_include_token1] = ACTIONS(2891), + [aux_sym_preproc_def_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), + [sym_preproc_directive] = ACTIONS(2891), + [anon_sym_LPAREN2] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym___extension__] = ACTIONS(2891), + [anon_sym_typedef] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym___attribute__] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), + [anon_sym___declspec] = ACTIONS(2891), + [anon_sym___based] = ACTIONS(2891), + [anon_sym___cdecl] = ACTIONS(2891), + [anon_sym___clrcall] = ACTIONS(2891), + [anon_sym___stdcall] = ACTIONS(2891), + [anon_sym___fastcall] = ACTIONS(2891), + [anon_sym___thiscall] = ACTIONS(2891), + [anon_sym___vectorcall] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_signed] = ACTIONS(2891), + [anon_sym_unsigned] = ACTIONS(2891), + [anon_sym_long] = ACTIONS(2891), + [anon_sym_short] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_register] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym___inline] = ACTIONS(2891), + [anon_sym___inline__] = ACTIONS(2891), + [anon_sym___forceinline] = ACTIONS(2891), + [anon_sym_thread_local] = ACTIONS(2891), + [anon_sym___thread] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_constexpr] = ACTIONS(2891), + [anon_sym_volatile] = ACTIONS(2891), + [anon_sym_restrict] = ACTIONS(2891), + [anon_sym___restrict__] = ACTIONS(2891), + [anon_sym__Atomic] = ACTIONS(2891), + [anon_sym__Noreturn] = ACTIONS(2891), + [anon_sym_noreturn] = ACTIONS(2891), + [anon_sym_mutable] = ACTIONS(2891), + [anon_sym_constinit] = ACTIONS(2891), + [anon_sym_consteval] = ACTIONS(2891), + [sym_primitive_type] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_else] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym___try] = ACTIONS(2891), + [anon_sym___leave] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_compl] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2891), + [anon_sym___alignof__] = ACTIONS(2891), + [anon_sym___alignof] = ACTIONS(2891), + [anon_sym__alignof] = ACTIONS(2891), + [anon_sym_alignof] = ACTIONS(2891), + [anon_sym__Alignof] = ACTIONS(2891), + [anon_sym_offsetof] = ACTIONS(2891), + [anon_sym__Generic] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym___asm__] = ACTIONS(2891), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_L_SQUOTE] = ACTIONS(2893), + [anon_sym_u_SQUOTE] = ACTIONS(2893), + [anon_sym_U_SQUOTE] = ACTIONS(2893), + [anon_sym_u8_SQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_L_DQUOTE] = ACTIONS(2893), + [anon_sym_u_DQUOTE] = ACTIONS(2893), + [anon_sym_U_DQUOTE] = ACTIONS(2893), + [anon_sym_u8_DQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [anon_sym_NULL] = ACTIONS(2891), + [anon_sym_nullptr] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2891), + [anon_sym_virtual] = ACTIONS(2891), + [anon_sym_alignas] = ACTIONS(2891), + [anon_sym_explicit] = ACTIONS(2891), + [anon_sym_typename] = ACTIONS(2891), + [anon_sym_template] = ACTIONS(2891), + [anon_sym_operator] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_static_assert] = ACTIONS(2891), + [anon_sym_concept] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2891), + [anon_sym_co_yield] = ACTIONS(2891), + [anon_sym_R_DQUOTE] = ACTIONS(2893), + [anon_sym_LR_DQUOTE] = ACTIONS(2893), + [anon_sym_uR_DQUOTE] = ACTIONS(2893), + [anon_sym_UR_DQUOTE] = ACTIONS(2893), + [anon_sym_u8R_DQUOTE] = ACTIONS(2893), + [anon_sym_co_await] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_requires] = ACTIONS(2891), + [sym_this] = ACTIONS(2891), + }, + [631] = { [sym_identifier] = ACTIONS(2949), [aux_sym_preproc_include_token1] = ACTIONS(2949), [aux_sym_preproc_def_token1] = ACTIONS(2949), [aux_sym_preproc_if_token1] = ACTIONS(2949), + [aux_sym_preproc_if_token2] = ACTIONS(2949), [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), [sym_preproc_directive] = ACTIONS(2949), @@ -175172,7 +177897,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2949), [anon_sym___vectorcall] = ACTIONS(2949), [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_RBRACE] = ACTIONS(2951), [anon_sym_signed] = ACTIONS(2949), [anon_sym_unsigned] = ACTIONS(2949), [anon_sym_long] = ACTIONS(2949), @@ -175273,677 +177997,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2949), [sym_this] = ACTIONS(2949), }, - [614] = { - [sym_identifier] = ACTIONS(2933), - [aux_sym_preproc_include_token1] = ACTIONS(2933), - [aux_sym_preproc_def_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token2] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), - [sym_preproc_directive] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2933), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym___extension__] = ACTIONS(2933), - [anon_sym_typedef] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym___attribute__] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2933), - [anon_sym___based] = ACTIONS(2933), - [anon_sym___cdecl] = ACTIONS(2933), - [anon_sym___clrcall] = ACTIONS(2933), - [anon_sym___stdcall] = ACTIONS(2933), - [anon_sym___fastcall] = ACTIONS(2933), - [anon_sym___thiscall] = ACTIONS(2933), - [anon_sym___vectorcall] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2933), - [anon_sym_unsigned] = ACTIONS(2933), - [anon_sym_long] = ACTIONS(2933), - [anon_sym_short] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_register] = ACTIONS(2933), - [anon_sym_inline] = ACTIONS(2933), - [anon_sym___inline] = ACTIONS(2933), - [anon_sym___inline__] = ACTIONS(2933), - [anon_sym___forceinline] = ACTIONS(2933), - [anon_sym_thread_local] = ACTIONS(2933), - [anon_sym___thread] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_constexpr] = ACTIONS(2933), - [anon_sym_volatile] = ACTIONS(2933), - [anon_sym_restrict] = ACTIONS(2933), - [anon_sym___restrict__] = ACTIONS(2933), - [anon_sym__Atomic] = ACTIONS(2933), - [anon_sym__Noreturn] = ACTIONS(2933), - [anon_sym_noreturn] = ACTIONS(2933), - [anon_sym_mutable] = ACTIONS(2933), - [anon_sym_constinit] = ACTIONS(2933), - [anon_sym_consteval] = ACTIONS(2933), - [sym_primitive_type] = ACTIONS(2933), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2933), - [anon_sym_switch] = ACTIONS(2933), - [anon_sym_case] = ACTIONS(2933), - [anon_sym_default] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_do] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_goto] = ACTIONS(2933), - [anon_sym___try] = ACTIONS(2933), - [anon_sym___leave] = ACTIONS(2933), - [anon_sym_not] = ACTIONS(2933), - [anon_sym_compl] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(2933), - [anon_sym___alignof__] = ACTIONS(2933), - [anon_sym___alignof] = ACTIONS(2933), - [anon_sym__alignof] = ACTIONS(2933), - [anon_sym_alignof] = ACTIONS(2933), - [anon_sym__Alignof] = ACTIONS(2933), - [anon_sym_offsetof] = ACTIONS(2933), - [anon_sym__Generic] = ACTIONS(2933), - [anon_sym_asm] = ACTIONS(2933), - [anon_sym___asm__] = ACTIONS(2933), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_L_SQUOTE] = ACTIONS(2935), - [anon_sym_u_SQUOTE] = ACTIONS(2935), - [anon_sym_U_SQUOTE] = ACTIONS(2935), - [anon_sym_u8_SQUOTE] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_L_DQUOTE] = ACTIONS(2935), - [anon_sym_u_DQUOTE] = ACTIONS(2935), - [anon_sym_U_DQUOTE] = ACTIONS(2935), - [anon_sym_u8_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_true] = ACTIONS(2933), - [sym_false] = ACTIONS(2933), - [anon_sym_NULL] = ACTIONS(2933), - [anon_sym_nullptr] = ACTIONS(2933), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2933), - [anon_sym_decltype] = ACTIONS(2933), - [anon_sym_virtual] = ACTIONS(2933), - [anon_sym_alignas] = ACTIONS(2933), - [anon_sym_explicit] = ACTIONS(2933), - [anon_sym_typename] = ACTIONS(2933), - [anon_sym_template] = ACTIONS(2933), - [anon_sym_operator] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2933), - [anon_sym_delete] = ACTIONS(2933), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_using] = ACTIONS(2933), - [anon_sym_static_assert] = ACTIONS(2933), - [anon_sym_concept] = ACTIONS(2933), - [anon_sym_co_return] = ACTIONS(2933), - [anon_sym_co_yield] = ACTIONS(2933), - [anon_sym_R_DQUOTE] = ACTIONS(2935), - [anon_sym_LR_DQUOTE] = ACTIONS(2935), - [anon_sym_uR_DQUOTE] = ACTIONS(2935), - [anon_sym_UR_DQUOTE] = ACTIONS(2935), - [anon_sym_u8R_DQUOTE] = ACTIONS(2935), - [anon_sym_co_await] = ACTIONS(2933), - [anon_sym_new] = ACTIONS(2933), - [anon_sym_requires] = ACTIONS(2933), - [sym_this] = ACTIONS(2933), + [632] = { + [sym_identifier] = ACTIONS(2891), + [aux_sym_preproc_include_token1] = ACTIONS(2891), + [aux_sym_preproc_def_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token2] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), + [sym_preproc_directive] = ACTIONS(2891), + [anon_sym_LPAREN2] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym___extension__] = ACTIONS(2891), + [anon_sym_typedef] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym___attribute__] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), + [anon_sym___declspec] = ACTIONS(2891), + [anon_sym___based] = ACTIONS(2891), + [anon_sym___cdecl] = ACTIONS(2891), + [anon_sym___clrcall] = ACTIONS(2891), + [anon_sym___stdcall] = ACTIONS(2891), + [anon_sym___fastcall] = ACTIONS(2891), + [anon_sym___thiscall] = ACTIONS(2891), + [anon_sym___vectorcall] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_signed] = ACTIONS(2891), + [anon_sym_unsigned] = ACTIONS(2891), + [anon_sym_long] = ACTIONS(2891), + [anon_sym_short] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_register] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym___inline] = ACTIONS(2891), + [anon_sym___inline__] = ACTIONS(2891), + [anon_sym___forceinline] = ACTIONS(2891), + [anon_sym_thread_local] = ACTIONS(2891), + [anon_sym___thread] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_constexpr] = ACTIONS(2891), + [anon_sym_volatile] = ACTIONS(2891), + [anon_sym_restrict] = ACTIONS(2891), + [anon_sym___restrict__] = ACTIONS(2891), + [anon_sym__Atomic] = ACTIONS(2891), + [anon_sym__Noreturn] = ACTIONS(2891), + [anon_sym_noreturn] = ACTIONS(2891), + [anon_sym_mutable] = ACTIONS(2891), + [anon_sym_constinit] = ACTIONS(2891), + [anon_sym_consteval] = ACTIONS(2891), + [sym_primitive_type] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_else] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym___try] = ACTIONS(2891), + [anon_sym___leave] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_compl] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2891), + [anon_sym___alignof__] = ACTIONS(2891), + [anon_sym___alignof] = ACTIONS(2891), + [anon_sym__alignof] = ACTIONS(2891), + [anon_sym_alignof] = ACTIONS(2891), + [anon_sym__Alignof] = ACTIONS(2891), + [anon_sym_offsetof] = ACTIONS(2891), + [anon_sym__Generic] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym___asm__] = ACTIONS(2891), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_L_SQUOTE] = ACTIONS(2893), + [anon_sym_u_SQUOTE] = ACTIONS(2893), + [anon_sym_U_SQUOTE] = ACTIONS(2893), + [anon_sym_u8_SQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_L_DQUOTE] = ACTIONS(2893), + [anon_sym_u_DQUOTE] = ACTIONS(2893), + [anon_sym_U_DQUOTE] = ACTIONS(2893), + [anon_sym_u8_DQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [anon_sym_NULL] = ACTIONS(2891), + [anon_sym_nullptr] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2891), + [anon_sym_virtual] = ACTIONS(2891), + [anon_sym_alignas] = ACTIONS(2891), + [anon_sym_explicit] = ACTIONS(2891), + [anon_sym_typename] = ACTIONS(2891), + [anon_sym_template] = ACTIONS(2891), + [anon_sym_operator] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_static_assert] = ACTIONS(2891), + [anon_sym_concept] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2891), + [anon_sym_co_yield] = ACTIONS(2891), + [anon_sym_R_DQUOTE] = ACTIONS(2893), + [anon_sym_LR_DQUOTE] = ACTIONS(2893), + [anon_sym_uR_DQUOTE] = ACTIONS(2893), + [anon_sym_UR_DQUOTE] = ACTIONS(2893), + [anon_sym_u8R_DQUOTE] = ACTIONS(2893), + [anon_sym_co_await] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_requires] = ACTIONS(2891), + [sym_this] = ACTIONS(2891), }, - [615] = { - [sym_identifier] = ACTIONS(2981), - [aux_sym_preproc_include_token1] = ACTIONS(2981), - [aux_sym_preproc_def_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token2] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), - [sym_preproc_directive] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym___based] = ACTIONS(2981), - [anon_sym___cdecl] = ACTIONS(2981), - [anon_sym___clrcall] = ACTIONS(2981), - [anon_sym___stdcall] = ACTIONS(2981), - [anon_sym___fastcall] = ACTIONS(2981), - [anon_sym___thiscall] = ACTIONS(2981), - [anon_sym___vectorcall] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_case] = ACTIONS(2981), - [anon_sym_default] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_do] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym___try] = ACTIONS(2981), - [anon_sym___leave] = ACTIONS(2981), - [anon_sym_not] = ACTIONS(2981), - [anon_sym_compl] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_sizeof] = ACTIONS(2981), - [anon_sym___alignof__] = ACTIONS(2981), - [anon_sym___alignof] = ACTIONS(2981), - [anon_sym__alignof] = ACTIONS(2981), - [anon_sym_alignof] = ACTIONS(2981), - [anon_sym__Alignof] = ACTIONS(2981), - [anon_sym_offsetof] = ACTIONS(2981), - [anon_sym__Generic] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym___asm__] = ACTIONS(2981), - [sym_number_literal] = ACTIONS(2983), - [anon_sym_L_SQUOTE] = ACTIONS(2983), - [anon_sym_u_SQUOTE] = ACTIONS(2983), - [anon_sym_U_SQUOTE] = ACTIONS(2983), - [anon_sym_u8_SQUOTE] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2983), - [anon_sym_L_DQUOTE] = ACTIONS(2983), - [anon_sym_u_DQUOTE] = ACTIONS(2983), - [anon_sym_U_DQUOTE] = ACTIONS(2983), - [anon_sym_u8_DQUOTE] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [anon_sym_NULL] = ACTIONS(2981), - [anon_sym_nullptr] = ACTIONS(2981), + [633] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_delete] = ACTIONS(2981), - [anon_sym_throw] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2981), - [anon_sym_using] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), - [anon_sym_concept] = ACTIONS(2981), - [anon_sym_co_return] = ACTIONS(2981), - [anon_sym_co_yield] = ACTIONS(2981), - [anon_sym_R_DQUOTE] = ACTIONS(2983), - [anon_sym_LR_DQUOTE] = ACTIONS(2983), - [anon_sym_uR_DQUOTE] = ACTIONS(2983), - [anon_sym_UR_DQUOTE] = ACTIONS(2983), - [anon_sym_u8R_DQUOTE] = ACTIONS(2983), - [anon_sym_co_await] = ACTIONS(2981), - [anon_sym_new] = ACTIONS(2981), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2981), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [616] = { - [sym_identifier] = ACTIONS(2913), - [aux_sym_preproc_include_token1] = ACTIONS(2913), - [aux_sym_preproc_def_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token2] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), - [sym_preproc_directive] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym___based] = ACTIONS(2913), - [anon_sym___cdecl] = ACTIONS(2913), - [anon_sym___clrcall] = ACTIONS(2913), - [anon_sym___stdcall] = ACTIONS(2913), - [anon_sym___fastcall] = ACTIONS(2913), - [anon_sym___thiscall] = ACTIONS(2913), - [anon_sym___vectorcall] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_case] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym___try] = ACTIONS(2913), - [anon_sym___leave] = ACTIONS(2913), - [anon_sym_not] = ACTIONS(2913), - [anon_sym_compl] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2913), - [anon_sym___alignof__] = ACTIONS(2913), - [anon_sym___alignof] = ACTIONS(2913), - [anon_sym__alignof] = ACTIONS(2913), - [anon_sym_alignof] = ACTIONS(2913), - [anon_sym__Alignof] = ACTIONS(2913), - [anon_sym_offsetof] = ACTIONS(2913), - [anon_sym__Generic] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym___asm__] = ACTIONS(2913), - [sym_number_literal] = ACTIONS(2915), - [anon_sym_L_SQUOTE] = ACTIONS(2915), - [anon_sym_u_SQUOTE] = ACTIONS(2915), - [anon_sym_U_SQUOTE] = ACTIONS(2915), - [anon_sym_u8_SQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_L_DQUOTE] = ACTIONS(2915), - [anon_sym_u_DQUOTE] = ACTIONS(2915), - [anon_sym_U_DQUOTE] = ACTIONS(2915), - [anon_sym_u8_DQUOTE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [anon_sym_NULL] = ACTIONS(2913), - [anon_sym_nullptr] = ACTIONS(2913), + [634] = { + [sym_identifier] = ACTIONS(2965), + [aux_sym_preproc_include_token1] = ACTIONS(2965), + [aux_sym_preproc_def_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token2] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), + [sym_preproc_directive] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym___cdecl] = ACTIONS(2965), + [anon_sym___clrcall] = ACTIONS(2965), + [anon_sym___stdcall] = ACTIONS(2965), + [anon_sym___fastcall] = ACTIONS(2965), + [anon_sym___thiscall] = ACTIONS(2965), + [anon_sym___vectorcall] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_else] = ACTIONS(2965), + [anon_sym_switch] = ACTIONS(2965), + [anon_sym_case] = ACTIONS(2965), + [anon_sym_default] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2965), + [anon_sym_do] = ACTIONS(2965), + [anon_sym_for] = ACTIONS(2965), + [anon_sym_return] = ACTIONS(2965), + [anon_sym_break] = ACTIONS(2965), + [anon_sym_continue] = ACTIONS(2965), + [anon_sym_goto] = ACTIONS(2965), + [anon_sym___try] = ACTIONS(2965), + [anon_sym___leave] = ACTIONS(2965), + [anon_sym_not] = ACTIONS(2965), + [anon_sym_compl] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_sizeof] = ACTIONS(2965), + [anon_sym___alignof__] = ACTIONS(2965), + [anon_sym___alignof] = ACTIONS(2965), + [anon_sym__alignof] = ACTIONS(2965), + [anon_sym_alignof] = ACTIONS(2965), + [anon_sym__Alignof] = ACTIONS(2965), + [anon_sym_offsetof] = ACTIONS(2965), + [anon_sym__Generic] = ACTIONS(2965), + [anon_sym_asm] = ACTIONS(2965), + [anon_sym___asm__] = ACTIONS(2965), + [sym_number_literal] = ACTIONS(2967), + [anon_sym_L_SQUOTE] = ACTIONS(2967), + [anon_sym_u_SQUOTE] = ACTIONS(2967), + [anon_sym_U_SQUOTE] = ACTIONS(2967), + [anon_sym_u8_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_L_DQUOTE] = ACTIONS(2967), + [anon_sym_u_DQUOTE] = ACTIONS(2967), + [anon_sym_U_DQUOTE] = ACTIONS(2967), + [anon_sym_u8_DQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [anon_sym_NULL] = ACTIONS(2965), + [anon_sym_nullptr] = ACTIONS(2965), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_explicit] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_operator] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_namespace] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_static_assert] = ACTIONS(2913), - [anon_sym_concept] = ACTIONS(2913), - [anon_sym_co_return] = ACTIONS(2913), - [anon_sym_co_yield] = ACTIONS(2913), - [anon_sym_R_DQUOTE] = ACTIONS(2915), - [anon_sym_LR_DQUOTE] = ACTIONS(2915), - [anon_sym_uR_DQUOTE] = ACTIONS(2915), - [anon_sym_UR_DQUOTE] = ACTIONS(2915), - [anon_sym_u8R_DQUOTE] = ACTIONS(2915), - [anon_sym_co_await] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_requires] = ACTIONS(2913), - [sym_this] = ACTIONS(2913), - }, - [617] = { - [ts_builtin_sym_end] = ACTIONS(2883), - [sym_identifier] = ACTIONS(2881), - [aux_sym_preproc_include_token1] = ACTIONS(2881), - [aux_sym_preproc_def_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2881), - [sym_preproc_directive] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym___based] = ACTIONS(2881), - [anon_sym___cdecl] = ACTIONS(2881), - [anon_sym___clrcall] = ACTIONS(2881), - [anon_sym___stdcall] = ACTIONS(2881), - [anon_sym___fastcall] = ACTIONS(2881), - [anon_sym___thiscall] = ACTIONS(2881), - [anon_sym___vectorcall] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym___try] = ACTIONS(2881), - [anon_sym___leave] = ACTIONS(2881), - [anon_sym_not] = ACTIONS(2881), - [anon_sym_compl] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_sizeof] = ACTIONS(2881), - [anon_sym___alignof__] = ACTIONS(2881), - [anon_sym___alignof] = ACTIONS(2881), - [anon_sym__alignof] = ACTIONS(2881), - [anon_sym_alignof] = ACTIONS(2881), - [anon_sym__Alignof] = ACTIONS(2881), - [anon_sym_offsetof] = ACTIONS(2881), - [anon_sym__Generic] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - [anon_sym___asm__] = ACTIONS(2881), - [sym_number_literal] = ACTIONS(2883), - [anon_sym_L_SQUOTE] = ACTIONS(2883), - [anon_sym_u_SQUOTE] = ACTIONS(2883), - [anon_sym_U_SQUOTE] = ACTIONS(2883), - [anon_sym_u8_SQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_L_DQUOTE] = ACTIONS(2883), - [anon_sym_u_DQUOTE] = ACTIONS(2883), - [anon_sym_U_DQUOTE] = ACTIONS(2883), - [anon_sym_u8_DQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [anon_sym_NULL] = ACTIONS(2881), - [anon_sym_nullptr] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_explicit] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_operator] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_static_assert] = ACTIONS(2881), - [anon_sym_concept] = ACTIONS(2881), - [anon_sym_co_return] = ACTIONS(2881), - [anon_sym_co_yield] = ACTIONS(2881), - [anon_sym_R_DQUOTE] = ACTIONS(2883), - [anon_sym_LR_DQUOTE] = ACTIONS(2883), - [anon_sym_uR_DQUOTE] = ACTIONS(2883), - [anon_sym_UR_DQUOTE] = ACTIONS(2883), - [anon_sym_u8R_DQUOTE] = ACTIONS(2883), - [anon_sym_co_await] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_requires] = ACTIONS(2881), - [sym_this] = ACTIONS(2881), - }, - [618] = { - [sym_identifier] = ACTIONS(2897), - [aux_sym_preproc_include_token1] = ACTIONS(2897), - [aux_sym_preproc_def_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token2] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2897), - [sym_preproc_directive] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym___extension__] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym___attribute__] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2899), - [anon_sym___declspec] = ACTIONS(2897), - [anon_sym___based] = ACTIONS(2897), - [anon_sym___cdecl] = ACTIONS(2897), - [anon_sym___clrcall] = ACTIONS(2897), - [anon_sym___stdcall] = ACTIONS(2897), - [anon_sym___fastcall] = ACTIONS(2897), - [anon_sym___thiscall] = ACTIONS(2897), - [anon_sym___vectorcall] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_signed] = ACTIONS(2897), - [anon_sym_unsigned] = ACTIONS(2897), - [anon_sym_long] = ACTIONS(2897), - [anon_sym_short] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_register] = ACTIONS(2897), - [anon_sym_inline] = ACTIONS(2897), - [anon_sym___inline] = ACTIONS(2897), - [anon_sym___inline__] = ACTIONS(2897), - [anon_sym___forceinline] = ACTIONS(2897), - [anon_sym_thread_local] = ACTIONS(2897), - [anon_sym___thread] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_constexpr] = ACTIONS(2897), - [anon_sym_volatile] = ACTIONS(2897), - [anon_sym_restrict] = ACTIONS(2897), - [anon_sym___restrict__] = ACTIONS(2897), - [anon_sym__Atomic] = ACTIONS(2897), - [anon_sym__Noreturn] = ACTIONS(2897), - [anon_sym_noreturn] = ACTIONS(2897), - [anon_sym_mutable] = ACTIONS(2897), - [anon_sym_constinit] = ACTIONS(2897), - [anon_sym_consteval] = ACTIONS(2897), - [sym_primitive_type] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_goto] = ACTIONS(2897), - [anon_sym___try] = ACTIONS(2897), - [anon_sym___leave] = ACTIONS(2897), - [anon_sym_not] = ACTIONS(2897), - [anon_sym_compl] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_sizeof] = ACTIONS(2897), - [anon_sym___alignof__] = ACTIONS(2897), - [anon_sym___alignof] = ACTIONS(2897), - [anon_sym__alignof] = ACTIONS(2897), - [anon_sym_alignof] = ACTIONS(2897), - [anon_sym__Alignof] = ACTIONS(2897), - [anon_sym_offsetof] = ACTIONS(2897), - [anon_sym__Generic] = ACTIONS(2897), - [anon_sym_asm] = ACTIONS(2897), - [anon_sym___asm__] = ACTIONS(2897), - [sym_number_literal] = ACTIONS(2899), - [anon_sym_L_SQUOTE] = ACTIONS(2899), - [anon_sym_u_SQUOTE] = ACTIONS(2899), - [anon_sym_U_SQUOTE] = ACTIONS(2899), - [anon_sym_u8_SQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_L_DQUOTE] = ACTIONS(2899), - [anon_sym_u_DQUOTE] = ACTIONS(2899), - [anon_sym_U_DQUOTE] = ACTIONS(2899), - [anon_sym_u8_DQUOTE] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2897), - [anon_sym_nullptr] = ACTIONS(2897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2897), - [anon_sym_decltype] = ACTIONS(2897), - [anon_sym_virtual] = ACTIONS(2897), - [anon_sym_alignas] = ACTIONS(2897), - [anon_sym_explicit] = ACTIONS(2897), - [anon_sym_typename] = ACTIONS(2897), - [anon_sym_template] = ACTIONS(2897), - [anon_sym_operator] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_namespace] = ACTIONS(2897), - [anon_sym_using] = ACTIONS(2897), - [anon_sym_static_assert] = ACTIONS(2897), - [anon_sym_concept] = ACTIONS(2897), - [anon_sym_co_return] = ACTIONS(2897), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2899), - [anon_sym_LR_DQUOTE] = ACTIONS(2899), - [anon_sym_uR_DQUOTE] = ACTIONS(2899), - [anon_sym_UR_DQUOTE] = ACTIONS(2899), - [anon_sym_u8R_DQUOTE] = ACTIONS(2899), - [anon_sym_co_await] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_requires] = ACTIONS(2897), - [sym_this] = ACTIONS(2897), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_try] = ACTIONS(2965), + [anon_sym_delete] = ACTIONS(2965), + [anon_sym_throw] = ACTIONS(2965), + [anon_sym_namespace] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), + [anon_sym_concept] = ACTIONS(2965), + [anon_sym_co_return] = ACTIONS(2965), + [anon_sym_co_yield] = ACTIONS(2965), + [anon_sym_R_DQUOTE] = ACTIONS(2967), + [anon_sym_LR_DQUOTE] = ACTIONS(2967), + [anon_sym_uR_DQUOTE] = ACTIONS(2967), + [anon_sym_UR_DQUOTE] = ACTIONS(2967), + [anon_sym_u8R_DQUOTE] = ACTIONS(2967), + [anon_sym_co_await] = ACTIONS(2965), + [anon_sym_new] = ACTIONS(2965), + [anon_sym_requires] = ACTIONS(2965), + [sym_this] = ACTIONS(2965), }, - [619] = { - [ts_builtin_sym_end] = ACTIONS(2911), + [635] = { + [sym_identifier] = ACTIONS(2969), + [aux_sym_preproc_include_token1] = ACTIONS(2969), + [aux_sym_preproc_def_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token1] = ACTIONS(2969), + [aux_sym_preproc_if_token2] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), + [sym_preproc_directive] = ACTIONS(2969), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym___extension__] = ACTIONS(2969), + [anon_sym_typedef] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2969), + [anon_sym___attribute__] = ACTIONS(2969), + [anon_sym_COLON_COLON] = ACTIONS(2971), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), + [anon_sym___declspec] = ACTIONS(2969), + [anon_sym___based] = ACTIONS(2969), + [anon_sym___cdecl] = ACTIONS(2969), + [anon_sym___clrcall] = ACTIONS(2969), + [anon_sym___stdcall] = ACTIONS(2969), + [anon_sym___fastcall] = ACTIONS(2969), + [anon_sym___thiscall] = ACTIONS(2969), + [anon_sym___vectorcall] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_signed] = ACTIONS(2969), + [anon_sym_unsigned] = ACTIONS(2969), + [anon_sym_long] = ACTIONS(2969), + [anon_sym_short] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2969), + [anon_sym_register] = ACTIONS(2969), + [anon_sym_inline] = ACTIONS(2969), + [anon_sym___inline] = ACTIONS(2969), + [anon_sym___inline__] = ACTIONS(2969), + [anon_sym___forceinline] = ACTIONS(2969), + [anon_sym_thread_local] = ACTIONS(2969), + [anon_sym___thread] = ACTIONS(2969), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_constexpr] = ACTIONS(2969), + [anon_sym_volatile] = ACTIONS(2969), + [anon_sym_restrict] = ACTIONS(2969), + [anon_sym___restrict__] = ACTIONS(2969), + [anon_sym__Atomic] = ACTIONS(2969), + [anon_sym__Noreturn] = ACTIONS(2969), + [anon_sym_noreturn] = ACTIONS(2969), + [anon_sym_mutable] = ACTIONS(2969), + [anon_sym_constinit] = ACTIONS(2969), + [anon_sym_consteval] = ACTIONS(2969), + [sym_primitive_type] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_union] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_else] = ACTIONS(2969), + [anon_sym_switch] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2969), + [anon_sym_default] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_break] = ACTIONS(2969), + [anon_sym_continue] = ACTIONS(2969), + [anon_sym_goto] = ACTIONS(2969), + [anon_sym___try] = ACTIONS(2969), + [anon_sym___leave] = ACTIONS(2969), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_sizeof] = ACTIONS(2969), + [anon_sym___alignof__] = ACTIONS(2969), + [anon_sym___alignof] = ACTIONS(2969), + [anon_sym__alignof] = ACTIONS(2969), + [anon_sym_alignof] = ACTIONS(2969), + [anon_sym__Alignof] = ACTIONS(2969), + [anon_sym_offsetof] = ACTIONS(2969), + [anon_sym__Generic] = ACTIONS(2969), + [anon_sym_asm] = ACTIONS(2969), + [anon_sym___asm__] = ACTIONS(2969), + [sym_number_literal] = ACTIONS(2971), + [anon_sym_L_SQUOTE] = ACTIONS(2971), + [anon_sym_u_SQUOTE] = ACTIONS(2971), + [anon_sym_U_SQUOTE] = ACTIONS(2971), + [anon_sym_u8_SQUOTE] = ACTIONS(2971), + [anon_sym_SQUOTE] = ACTIONS(2971), + [anon_sym_L_DQUOTE] = ACTIONS(2971), + [anon_sym_u_DQUOTE] = ACTIONS(2971), + [anon_sym_U_DQUOTE] = ACTIONS(2971), + [anon_sym_u8_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [anon_sym_NULL] = ACTIONS(2969), + [anon_sym_nullptr] = ACTIONS(2969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2969), + [anon_sym_decltype] = ACTIONS(2969), + [anon_sym_virtual] = ACTIONS(2969), + [anon_sym_alignas] = ACTIONS(2969), + [anon_sym_explicit] = ACTIONS(2969), + [anon_sym_typename] = ACTIONS(2969), + [anon_sym_template] = ACTIONS(2969), + [anon_sym_operator] = ACTIONS(2969), + [anon_sym_try] = ACTIONS(2969), + [anon_sym_delete] = ACTIONS(2969), + [anon_sym_throw] = ACTIONS(2969), + [anon_sym_namespace] = ACTIONS(2969), + [anon_sym_using] = ACTIONS(2969), + [anon_sym_static_assert] = ACTIONS(2969), + [anon_sym_concept] = ACTIONS(2969), + [anon_sym_co_return] = ACTIONS(2969), + [anon_sym_co_yield] = ACTIONS(2969), + [anon_sym_R_DQUOTE] = ACTIONS(2971), + [anon_sym_LR_DQUOTE] = ACTIONS(2971), + [anon_sym_uR_DQUOTE] = ACTIONS(2971), + [anon_sym_UR_DQUOTE] = ACTIONS(2971), + [anon_sym_u8R_DQUOTE] = ACTIONS(2971), + [anon_sym_co_await] = ACTIONS(2969), + [anon_sym_new] = ACTIONS(2969), + [anon_sym_requires] = ACTIONS(2969), + [sym_this] = ACTIONS(2969), + }, + [636] = { [sym_identifier] = ACTIONS(2909), [aux_sym_preproc_include_token1] = ACTIONS(2909), [aux_sym_preproc_def_token1] = ACTIONS(2909), [aux_sym_preproc_if_token1] = ACTIONS(2909), + [aux_sym_preproc_if_token2] = ACTIONS(2909), [aux_sym_preproc_ifdef_token1] = ACTIONS(2909), [aux_sym_preproc_ifdef_token2] = ACTIONS(2909), [sym_preproc_directive] = ACTIONS(2909), @@ -176071,140 +178662,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2909), [sym_this] = ACTIONS(2909), }, - [620] = { - [sym_identifier] = ACTIONS(2885), - [aux_sym_preproc_include_token1] = ACTIONS(2885), - [aux_sym_preproc_def_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2885), - [sym_preproc_directive] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym___based] = ACTIONS(2885), - [anon_sym___cdecl] = ACTIONS(2885), - [anon_sym___clrcall] = ACTIONS(2885), - [anon_sym___stdcall] = ACTIONS(2885), - [anon_sym___fastcall] = ACTIONS(2885), - [anon_sym___thiscall] = ACTIONS(2885), - [anon_sym___vectorcall] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym___try] = ACTIONS(2885), - [anon_sym___leave] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2885), - [anon_sym_compl] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_sizeof] = ACTIONS(2885), - [anon_sym___alignof__] = ACTIONS(2885), - [anon_sym___alignof] = ACTIONS(2885), - [anon_sym__alignof] = ACTIONS(2885), - [anon_sym_alignof] = ACTIONS(2885), - [anon_sym__Alignof] = ACTIONS(2885), - [anon_sym_offsetof] = ACTIONS(2885), - [anon_sym__Generic] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym___asm__] = ACTIONS(2885), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_L_SQUOTE] = ACTIONS(2887), - [anon_sym_u_SQUOTE] = ACTIONS(2887), - [anon_sym_U_SQUOTE] = ACTIONS(2887), - [anon_sym_u8_SQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_L_DQUOTE] = ACTIONS(2887), - [anon_sym_u_DQUOTE] = ACTIONS(2887), - [anon_sym_U_DQUOTE] = ACTIONS(2887), - [anon_sym_u8_DQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [anon_sym_NULL] = ACTIONS(2885), - [anon_sym_nullptr] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_explicit] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_operator] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_static_assert] = ACTIONS(2885), - [anon_sym_concept] = ACTIONS(2885), - [anon_sym_co_return] = ACTIONS(2885), - [anon_sym_co_yield] = ACTIONS(2885), - [anon_sym_R_DQUOTE] = ACTIONS(2887), - [anon_sym_LR_DQUOTE] = ACTIONS(2887), - [anon_sym_uR_DQUOTE] = ACTIONS(2887), - [anon_sym_UR_DQUOTE] = ACTIONS(2887), - [anon_sym_u8R_DQUOTE] = ACTIONS(2887), - [anon_sym_co_await] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_requires] = ACTIONS(2885), - [sym_this] = ACTIONS(2885), + [637] = { + [sym_identifier] = ACTIONS(2981), + [aux_sym_preproc_include_token1] = ACTIONS(2981), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token2] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), + [sym_preproc_directive] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym___extension__] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym___attribute__] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), + [anon_sym___declspec] = ACTIONS(2981), + [anon_sym___based] = ACTIONS(2981), + [anon_sym___cdecl] = ACTIONS(2981), + [anon_sym___clrcall] = ACTIONS(2981), + [anon_sym___stdcall] = ACTIONS(2981), + [anon_sym___fastcall] = ACTIONS(2981), + [anon_sym___thiscall] = ACTIONS(2981), + [anon_sym___vectorcall] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_signed] = ACTIONS(2981), + [anon_sym_unsigned] = ACTIONS(2981), + [anon_sym_long] = ACTIONS(2981), + [anon_sym_short] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_register] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym___inline] = ACTIONS(2981), + [anon_sym___inline__] = ACTIONS(2981), + [anon_sym___forceinline] = ACTIONS(2981), + [anon_sym_thread_local] = ACTIONS(2981), + [anon_sym___thread] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_constexpr] = ACTIONS(2981), + [anon_sym_volatile] = ACTIONS(2981), + [anon_sym_restrict] = ACTIONS(2981), + [anon_sym___restrict__] = ACTIONS(2981), + [anon_sym__Atomic] = ACTIONS(2981), + [anon_sym__Noreturn] = ACTIONS(2981), + [anon_sym_noreturn] = ACTIONS(2981), + [anon_sym_mutable] = ACTIONS(2981), + [anon_sym_constinit] = ACTIONS(2981), + [anon_sym_consteval] = ACTIONS(2981), + [sym_primitive_type] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_else] = ACTIONS(2981), + [anon_sym_switch] = ACTIONS(2981), + [anon_sym_case] = ACTIONS(2981), + [anon_sym_default] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_do] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_goto] = ACTIONS(2981), + [anon_sym___try] = ACTIONS(2981), + [anon_sym___leave] = ACTIONS(2981), + [anon_sym_not] = ACTIONS(2981), + [anon_sym_compl] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_sizeof] = ACTIONS(2981), + [anon_sym___alignof__] = ACTIONS(2981), + [anon_sym___alignof] = ACTIONS(2981), + [anon_sym__alignof] = ACTIONS(2981), + [anon_sym_alignof] = ACTIONS(2981), + [anon_sym__Alignof] = ACTIONS(2981), + [anon_sym_offsetof] = ACTIONS(2981), + [anon_sym__Generic] = ACTIONS(2981), + [anon_sym_asm] = ACTIONS(2981), + [anon_sym___asm__] = ACTIONS(2981), + [sym_number_literal] = ACTIONS(2983), + [anon_sym_L_SQUOTE] = ACTIONS(2983), + [anon_sym_u_SQUOTE] = ACTIONS(2983), + [anon_sym_U_SQUOTE] = ACTIONS(2983), + [anon_sym_u8_SQUOTE] = ACTIONS(2983), + [anon_sym_SQUOTE] = ACTIONS(2983), + [anon_sym_L_DQUOTE] = ACTIONS(2983), + [anon_sym_u_DQUOTE] = ACTIONS(2983), + [anon_sym_U_DQUOTE] = ACTIONS(2983), + [anon_sym_u8_DQUOTE] = ACTIONS(2983), + [anon_sym_DQUOTE] = ACTIONS(2983), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [anon_sym_NULL] = ACTIONS(2981), + [anon_sym_nullptr] = ACTIONS(2981), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2981), + [anon_sym_virtual] = ACTIONS(2981), + [anon_sym_alignas] = ACTIONS(2981), + [anon_sym_explicit] = ACTIONS(2981), + [anon_sym_typename] = ACTIONS(2981), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_delete] = ACTIONS(2981), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_static_assert] = ACTIONS(2981), + [anon_sym_concept] = ACTIONS(2981), + [anon_sym_co_return] = ACTIONS(2981), + [anon_sym_co_yield] = ACTIONS(2981), + [anon_sym_R_DQUOTE] = ACTIONS(2983), + [anon_sym_LR_DQUOTE] = ACTIONS(2983), + [anon_sym_uR_DQUOTE] = ACTIONS(2983), + [anon_sym_UR_DQUOTE] = ACTIONS(2983), + [anon_sym_u8R_DQUOTE] = ACTIONS(2983), + [anon_sym_co_await] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_requires] = ACTIONS(2981), + [sym_this] = ACTIONS(2981), }, - [621] = { + [638] = { + [sym_identifier] = ACTIONS(2887), + [aux_sym_preproc_include_token1] = ACTIONS(2887), + [aux_sym_preproc_def_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token2] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), + [sym_preproc_directive] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym___extension__] = ACTIONS(2887), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym___based] = ACTIONS(2887), + [anon_sym___cdecl] = ACTIONS(2887), + [anon_sym___clrcall] = ACTIONS(2887), + [anon_sym___stdcall] = ACTIONS(2887), + [anon_sym___fastcall] = ACTIONS(2887), + [anon_sym___thiscall] = ACTIONS(2887), + [anon_sym___vectorcall] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym___inline] = ACTIONS(2887), + [anon_sym___inline__] = ACTIONS(2887), + [anon_sym___forceinline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym___thread] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym___restrict__] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym__Noreturn] = ACTIONS(2887), + [anon_sym_noreturn] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_else] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym___try] = ACTIONS(2887), + [anon_sym___leave] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [anon_sym___alignof__] = ACTIONS(2887), + [anon_sym___alignof] = ACTIONS(2887), + [anon_sym__alignof] = ACTIONS(2887), + [anon_sym_alignof] = ACTIONS(2887), + [anon_sym__Alignof] = ACTIONS(2887), + [anon_sym_offsetof] = ACTIONS(2887), + [anon_sym__Generic] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym___asm__] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [anon_sym_NULL] = ACTIONS(2887), + [anon_sym_nullptr] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_alignas] = ACTIONS(2887), + [anon_sym_explicit] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_operator] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_static_assert] = ACTIONS(2887), + [anon_sym_concept] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_R_DQUOTE] = ACTIONS(2889), + [anon_sym_LR_DQUOTE] = ACTIONS(2889), + [anon_sym_uR_DQUOTE] = ACTIONS(2889), + [anon_sym_UR_DQUOTE] = ACTIONS(2889), + [anon_sym_u8R_DQUOTE] = ACTIONS(2889), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), + }, + [639] = { [sym_identifier] = ACTIONS(2985), [aux_sym_preproc_include_token1] = ACTIONS(2985), [aux_sym_preproc_def_token1] = ACTIONS(2985), @@ -176337,12 +179061,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2985), [sym_this] = ACTIONS(2985), }, - [622] = { + [640] = { + [sym_identifier] = ACTIONS(2925), + [aux_sym_preproc_include_token1] = ACTIONS(2925), + [aux_sym_preproc_def_token1] = ACTIONS(2925), + [aux_sym_preproc_if_token1] = ACTIONS(2925), + [aux_sym_preproc_if_token2] = ACTIONS(2925), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), + [sym_preproc_directive] = ACTIONS(2925), + [anon_sym_LPAREN2] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym___extension__] = ACTIONS(2925), + [anon_sym_typedef] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2925), + [anon_sym___attribute__] = ACTIONS(2925), + [anon_sym_COLON_COLON] = ACTIONS(2927), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), + [anon_sym___declspec] = ACTIONS(2925), + [anon_sym___based] = ACTIONS(2925), + [anon_sym___cdecl] = ACTIONS(2925), + [anon_sym___clrcall] = ACTIONS(2925), + [anon_sym___stdcall] = ACTIONS(2925), + [anon_sym___fastcall] = ACTIONS(2925), + [anon_sym___thiscall] = ACTIONS(2925), + [anon_sym___vectorcall] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_signed] = ACTIONS(2925), + [anon_sym_unsigned] = ACTIONS(2925), + [anon_sym_long] = ACTIONS(2925), + [anon_sym_short] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_register] = ACTIONS(2925), + [anon_sym_inline] = ACTIONS(2925), + [anon_sym___inline] = ACTIONS(2925), + [anon_sym___inline__] = ACTIONS(2925), + [anon_sym___forceinline] = ACTIONS(2925), + [anon_sym_thread_local] = ACTIONS(2925), + [anon_sym___thread] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_constexpr] = ACTIONS(2925), + [anon_sym_volatile] = ACTIONS(2925), + [anon_sym_restrict] = ACTIONS(2925), + [anon_sym___restrict__] = ACTIONS(2925), + [anon_sym__Atomic] = ACTIONS(2925), + [anon_sym__Noreturn] = ACTIONS(2925), + [anon_sym_noreturn] = ACTIONS(2925), + [anon_sym_mutable] = ACTIONS(2925), + [anon_sym_constinit] = ACTIONS(2925), + [anon_sym_consteval] = ACTIONS(2925), + [sym_primitive_type] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_class] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2925), + [anon_sym_switch] = ACTIONS(2925), + [anon_sym_case] = ACTIONS(2925), + [anon_sym_default] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_do] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym___try] = ACTIONS(2925), + [anon_sym___leave] = ACTIONS(2925), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_sizeof] = ACTIONS(2925), + [anon_sym___alignof__] = ACTIONS(2925), + [anon_sym___alignof] = ACTIONS(2925), + [anon_sym__alignof] = ACTIONS(2925), + [anon_sym_alignof] = ACTIONS(2925), + [anon_sym__Alignof] = ACTIONS(2925), + [anon_sym_offsetof] = ACTIONS(2925), + [anon_sym__Generic] = ACTIONS(2925), + [anon_sym_asm] = ACTIONS(2925), + [anon_sym___asm__] = ACTIONS(2925), + [sym_number_literal] = ACTIONS(2927), + [anon_sym_L_SQUOTE] = ACTIONS(2927), + [anon_sym_u_SQUOTE] = ACTIONS(2927), + [anon_sym_U_SQUOTE] = ACTIONS(2927), + [anon_sym_u8_SQUOTE] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2927), + [anon_sym_L_DQUOTE] = ACTIONS(2927), + [anon_sym_u_DQUOTE] = ACTIONS(2927), + [anon_sym_U_DQUOTE] = ACTIONS(2927), + [anon_sym_u8_DQUOTE] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2927), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [anon_sym_NULL] = ACTIONS(2925), + [anon_sym_nullptr] = ACTIONS(2925), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2925), + [anon_sym_decltype] = ACTIONS(2925), + [anon_sym_virtual] = ACTIONS(2925), + [anon_sym_alignas] = ACTIONS(2925), + [anon_sym_explicit] = ACTIONS(2925), + [anon_sym_typename] = ACTIONS(2925), + [anon_sym_template] = ACTIONS(2925), + [anon_sym_operator] = ACTIONS(2925), + [anon_sym_try] = ACTIONS(2925), + [anon_sym_delete] = ACTIONS(2925), + [anon_sym_throw] = ACTIONS(2925), + [anon_sym_namespace] = ACTIONS(2925), + [anon_sym_using] = ACTIONS(2925), + [anon_sym_static_assert] = ACTIONS(2925), + [anon_sym_concept] = ACTIONS(2925), + [anon_sym_co_return] = ACTIONS(2925), + [anon_sym_co_yield] = ACTIONS(2925), + [anon_sym_R_DQUOTE] = ACTIONS(2927), + [anon_sym_LR_DQUOTE] = ACTIONS(2927), + [anon_sym_uR_DQUOTE] = ACTIONS(2927), + [anon_sym_UR_DQUOTE] = ACTIONS(2927), + [anon_sym_u8R_DQUOTE] = ACTIONS(2927), + [anon_sym_co_await] = ACTIONS(2925), + [anon_sym_new] = ACTIONS(2925), + [anon_sym_requires] = ACTIONS(2925), + [sym_this] = ACTIONS(2925), + }, + [641] = { + [sym_identifier] = ACTIONS(2883), + [aux_sym_preproc_include_token1] = ACTIONS(2883), + [aux_sym_preproc_def_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token2] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), + [sym_preproc_directive] = ACTIONS(2883), + [anon_sym_LPAREN2] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym___extension__] = ACTIONS(2883), + [anon_sym_typedef] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym___attribute__] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), + [anon_sym___declspec] = ACTIONS(2883), + [anon_sym___based] = ACTIONS(2883), + [anon_sym___cdecl] = ACTIONS(2883), + [anon_sym___clrcall] = ACTIONS(2883), + [anon_sym___stdcall] = ACTIONS(2883), + [anon_sym___fastcall] = ACTIONS(2883), + [anon_sym___thiscall] = ACTIONS(2883), + [anon_sym___vectorcall] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_signed] = ACTIONS(2883), + [anon_sym_unsigned] = ACTIONS(2883), + [anon_sym_long] = ACTIONS(2883), + [anon_sym_short] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_register] = ACTIONS(2883), + [anon_sym_inline] = ACTIONS(2883), + [anon_sym___inline] = ACTIONS(2883), + [anon_sym___inline__] = ACTIONS(2883), + [anon_sym___forceinline] = ACTIONS(2883), + [anon_sym_thread_local] = ACTIONS(2883), + [anon_sym___thread] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_constexpr] = ACTIONS(2883), + [anon_sym_volatile] = ACTIONS(2883), + [anon_sym_restrict] = ACTIONS(2883), + [anon_sym___restrict__] = ACTIONS(2883), + [anon_sym__Atomic] = ACTIONS(2883), + [anon_sym__Noreturn] = ACTIONS(2883), + [anon_sym_noreturn] = ACTIONS(2883), + [anon_sym_mutable] = ACTIONS(2883), + [anon_sym_constinit] = ACTIONS(2883), + [anon_sym_consteval] = ACTIONS(2883), + [sym_primitive_type] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_else] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym___try] = ACTIONS(2883), + [anon_sym___leave] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2883), + [anon_sym_compl] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_sizeof] = ACTIONS(2883), + [anon_sym___alignof__] = ACTIONS(2883), + [anon_sym___alignof] = ACTIONS(2883), + [anon_sym__alignof] = ACTIONS(2883), + [anon_sym_alignof] = ACTIONS(2883), + [anon_sym__Alignof] = ACTIONS(2883), + [anon_sym_offsetof] = ACTIONS(2883), + [anon_sym__Generic] = ACTIONS(2883), + [anon_sym_asm] = ACTIONS(2883), + [anon_sym___asm__] = ACTIONS(2883), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_L_SQUOTE] = ACTIONS(2885), + [anon_sym_u_SQUOTE] = ACTIONS(2885), + [anon_sym_U_SQUOTE] = ACTIONS(2885), + [anon_sym_u8_SQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_L_DQUOTE] = ACTIONS(2885), + [anon_sym_u_DQUOTE] = ACTIONS(2885), + [anon_sym_U_DQUOTE] = ACTIONS(2885), + [anon_sym_u8_DQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [anon_sym_NULL] = ACTIONS(2883), + [anon_sym_nullptr] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2883), + [anon_sym_decltype] = ACTIONS(2883), + [anon_sym_virtual] = ACTIONS(2883), + [anon_sym_alignas] = ACTIONS(2883), + [anon_sym_explicit] = ACTIONS(2883), + [anon_sym_typename] = ACTIONS(2883), + [anon_sym_template] = ACTIONS(2883), + [anon_sym_operator] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_static_assert] = ACTIONS(2883), + [anon_sym_concept] = ACTIONS(2883), + [anon_sym_co_return] = ACTIONS(2883), + [anon_sym_co_yield] = ACTIONS(2883), + [anon_sym_R_DQUOTE] = ACTIONS(2885), + [anon_sym_LR_DQUOTE] = ACTIONS(2885), + [anon_sym_uR_DQUOTE] = ACTIONS(2885), + [anon_sym_UR_DQUOTE] = ACTIONS(2885), + [anon_sym_u8R_DQUOTE] = ACTIONS(2885), + [anon_sym_co_await] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_requires] = ACTIONS(2883), + [sym_this] = ACTIONS(2883), + }, + [642] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [643] = { [sym_identifier] = ACTIONS(2929), [aux_sym_preproc_include_token1] = ACTIONS(2929), [aux_sym_preproc_def_token1] = ACTIONS(2929), [aux_sym_preproc_if_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token2] = ACTIONS(2929), [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), [sym_preproc_directive] = ACTIONS(2929), @@ -176370,6 +179492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2929), [anon_sym___vectorcall] = ACTIONS(2929), [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_RBRACE] = ACTIONS(2931), [anon_sym_signed] = ACTIONS(2929), [anon_sym_unsigned] = ACTIONS(2929), [anon_sym_long] = ACTIONS(2929), @@ -176470,540 +179593,539 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2929), [sym_this] = ACTIONS(2929), }, - [623] = { - [ts_builtin_sym_end] = ACTIONS(2959), - [sym_identifier] = ACTIONS(2957), - [aux_sym_preproc_include_token1] = ACTIONS(2957), - [aux_sym_preproc_def_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), - [sym_preproc_directive] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym___extension__] = ACTIONS(2957), - [anon_sym_typedef] = ACTIONS(2957), - [anon_sym_extern] = ACTIONS(2957), - [anon_sym___attribute__] = ACTIONS(2957), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), - [anon_sym___declspec] = ACTIONS(2957), - [anon_sym___based] = ACTIONS(2957), - [anon_sym___cdecl] = ACTIONS(2957), - [anon_sym___clrcall] = ACTIONS(2957), - [anon_sym___stdcall] = ACTIONS(2957), - [anon_sym___fastcall] = ACTIONS(2957), - [anon_sym___thiscall] = ACTIONS(2957), - [anon_sym___vectorcall] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_signed] = ACTIONS(2957), - [anon_sym_unsigned] = ACTIONS(2957), - [anon_sym_long] = ACTIONS(2957), - [anon_sym_short] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_register] = ACTIONS(2957), - [anon_sym_inline] = ACTIONS(2957), - [anon_sym___inline] = ACTIONS(2957), - [anon_sym___inline__] = ACTIONS(2957), - [anon_sym___forceinline] = ACTIONS(2957), - [anon_sym_thread_local] = ACTIONS(2957), - [anon_sym___thread] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_constexpr] = ACTIONS(2957), - [anon_sym_volatile] = ACTIONS(2957), - [anon_sym_restrict] = ACTIONS(2957), - [anon_sym___restrict__] = ACTIONS(2957), - [anon_sym__Atomic] = ACTIONS(2957), - [anon_sym__Noreturn] = ACTIONS(2957), - [anon_sym_noreturn] = ACTIONS(2957), - [anon_sym_mutable] = ACTIONS(2957), - [anon_sym_constinit] = ACTIONS(2957), - [anon_sym_consteval] = ACTIONS(2957), - [sym_primitive_type] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_case] = ACTIONS(2957), - [anon_sym_default] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_do] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym___try] = ACTIONS(2957), - [anon_sym___leave] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2957), - [anon_sym_compl] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2957), - [anon_sym___alignof__] = ACTIONS(2957), - [anon_sym___alignof] = ACTIONS(2957), - [anon_sym__alignof] = ACTIONS(2957), - [anon_sym_alignof] = ACTIONS(2957), - [anon_sym__Alignof] = ACTIONS(2957), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), - [anon_sym___asm__] = ACTIONS(2957), - [sym_number_literal] = ACTIONS(2959), - [anon_sym_L_SQUOTE] = ACTIONS(2959), - [anon_sym_u_SQUOTE] = ACTIONS(2959), - [anon_sym_U_SQUOTE] = ACTIONS(2959), - [anon_sym_u8_SQUOTE] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_L_DQUOTE] = ACTIONS(2959), - [anon_sym_u_DQUOTE] = ACTIONS(2959), - [anon_sym_U_DQUOTE] = ACTIONS(2959), - [anon_sym_u8_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [anon_sym_NULL] = ACTIONS(2957), - [anon_sym_nullptr] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2957), - [anon_sym_decltype] = ACTIONS(2957), - [anon_sym_virtual] = ACTIONS(2957), - [anon_sym_alignas] = ACTIONS(2957), - [anon_sym_explicit] = ACTIONS(2957), - [anon_sym_typename] = ACTIONS(2957), - [anon_sym_template] = ACTIONS(2957), - [anon_sym_operator] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_delete] = ACTIONS(2957), - [anon_sym_throw] = ACTIONS(2957), - [anon_sym_namespace] = ACTIONS(2957), - [anon_sym_using] = ACTIONS(2957), - [anon_sym_static_assert] = ACTIONS(2957), - [anon_sym_concept] = ACTIONS(2957), - [anon_sym_co_return] = ACTIONS(2957), - [anon_sym_co_yield] = ACTIONS(2957), - [anon_sym_R_DQUOTE] = ACTIONS(2959), - [anon_sym_LR_DQUOTE] = ACTIONS(2959), - [anon_sym_uR_DQUOTE] = ACTIONS(2959), - [anon_sym_UR_DQUOTE] = ACTIONS(2959), - [anon_sym_u8R_DQUOTE] = ACTIONS(2959), - [anon_sym_co_await] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2957), - [anon_sym_requires] = ACTIONS(2957), - [sym_this] = ACTIONS(2957), + [644] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [624] = { - [ts_builtin_sym_end] = ACTIONS(2963), - [sym_identifier] = ACTIONS(2961), - [aux_sym_preproc_include_token1] = ACTIONS(2961), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), - [sym_preproc_directive] = ACTIONS(2961), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), - [anon_sym___declspec] = ACTIONS(2961), - [anon_sym___based] = ACTIONS(2961), - [anon_sym___cdecl] = ACTIONS(2961), - [anon_sym___clrcall] = ACTIONS(2961), - [anon_sym___stdcall] = ACTIONS(2961), - [anon_sym___fastcall] = ACTIONS(2961), - [anon_sym___thiscall] = ACTIONS(2961), - [anon_sym___vectorcall] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_signed] = ACTIONS(2961), - [anon_sym_unsigned] = ACTIONS(2961), - [anon_sym_long] = ACTIONS(2961), - [anon_sym_short] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_register] = ACTIONS(2961), - [anon_sym_inline] = ACTIONS(2961), - [anon_sym___inline] = ACTIONS(2961), - [anon_sym___inline__] = ACTIONS(2961), - [anon_sym___forceinline] = ACTIONS(2961), - [anon_sym_thread_local] = ACTIONS(2961), - [anon_sym___thread] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_constexpr] = ACTIONS(2961), - [anon_sym_volatile] = ACTIONS(2961), - [anon_sym_restrict] = ACTIONS(2961), - [anon_sym___restrict__] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(2961), - [anon_sym__Noreturn] = ACTIONS(2961), - [anon_sym_noreturn] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [sym_primitive_type] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2961), - [anon_sym_switch] = ACTIONS(2961), - [anon_sym_case] = ACTIONS(2961), - [anon_sym_default] = ACTIONS(2961), - [anon_sym_while] = ACTIONS(2961), - [anon_sym_do] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym___try] = ACTIONS(2961), - [anon_sym___leave] = ACTIONS(2961), - [anon_sym_not] = ACTIONS(2961), - [anon_sym_compl] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2961), - [anon_sym___alignof__] = ACTIONS(2961), - [anon_sym___alignof] = ACTIONS(2961), - [anon_sym__alignof] = ACTIONS(2961), - [anon_sym_alignof] = ACTIONS(2961), - [anon_sym__Alignof] = ACTIONS(2961), - [anon_sym_offsetof] = ACTIONS(2961), - [anon_sym__Generic] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2963), - [anon_sym_u_SQUOTE] = ACTIONS(2963), - [anon_sym_U_SQUOTE] = ACTIONS(2963), - [anon_sym_u8_SQUOTE] = ACTIONS(2963), - [anon_sym_SQUOTE] = ACTIONS(2963), - [anon_sym_L_DQUOTE] = ACTIONS(2963), - [anon_sym_u_DQUOTE] = ACTIONS(2963), - [anon_sym_U_DQUOTE] = ACTIONS(2963), - [anon_sym_u8_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [anon_sym_NULL] = ACTIONS(2961), - [anon_sym_nullptr] = ACTIONS(2961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2961), - [anon_sym_decltype] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_try] = ACTIONS(2961), - [anon_sym_delete] = ACTIONS(2961), - [anon_sym_throw] = ACTIONS(2961), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_using] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), - [anon_sym_concept] = ACTIONS(2961), - [anon_sym_co_return] = ACTIONS(2961), - [anon_sym_co_yield] = ACTIONS(2961), - [anon_sym_R_DQUOTE] = ACTIONS(2963), - [anon_sym_LR_DQUOTE] = ACTIONS(2963), - [anon_sym_uR_DQUOTE] = ACTIONS(2963), - [anon_sym_UR_DQUOTE] = ACTIONS(2963), - [anon_sym_u8R_DQUOTE] = ACTIONS(2963), - [anon_sym_co_await] = ACTIONS(2961), - [anon_sym_new] = ACTIONS(2961), - [anon_sym_requires] = ACTIONS(2961), - [sym_this] = ACTIONS(2961), + [645] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [625] = { - [sym_identifier] = ACTIONS(2885), - [aux_sym_preproc_include_token1] = ACTIONS(2885), - [aux_sym_preproc_def_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token2] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2885), - [sym_preproc_directive] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym___based] = ACTIONS(2885), - [anon_sym___cdecl] = ACTIONS(2885), - [anon_sym___clrcall] = ACTIONS(2885), - [anon_sym___stdcall] = ACTIONS(2885), - [anon_sym___fastcall] = ACTIONS(2885), - [anon_sym___thiscall] = ACTIONS(2885), - [anon_sym___vectorcall] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym___try] = ACTIONS(2885), - [anon_sym___leave] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2885), - [anon_sym_compl] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_sizeof] = ACTIONS(2885), - [anon_sym___alignof__] = ACTIONS(2885), - [anon_sym___alignof] = ACTIONS(2885), - [anon_sym__alignof] = ACTIONS(2885), - [anon_sym_alignof] = ACTIONS(2885), - [anon_sym__Alignof] = ACTIONS(2885), - [anon_sym_offsetof] = ACTIONS(2885), - [anon_sym__Generic] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym___asm__] = ACTIONS(2885), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_L_SQUOTE] = ACTIONS(2887), - [anon_sym_u_SQUOTE] = ACTIONS(2887), - [anon_sym_U_SQUOTE] = ACTIONS(2887), - [anon_sym_u8_SQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_L_DQUOTE] = ACTIONS(2887), - [anon_sym_u_DQUOTE] = ACTIONS(2887), - [anon_sym_U_DQUOTE] = ACTIONS(2887), - [anon_sym_u8_DQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [anon_sym_NULL] = ACTIONS(2885), - [anon_sym_nullptr] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_explicit] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_operator] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_static_assert] = ACTIONS(2885), - [anon_sym_concept] = ACTIONS(2885), - [anon_sym_co_return] = ACTIONS(2885), - [anon_sym_co_yield] = ACTIONS(2885), - [anon_sym_R_DQUOTE] = ACTIONS(2887), - [anon_sym_LR_DQUOTE] = ACTIONS(2887), - [anon_sym_uR_DQUOTE] = ACTIONS(2887), - [anon_sym_UR_DQUOTE] = ACTIONS(2887), - [anon_sym_u8R_DQUOTE] = ACTIONS(2887), - [anon_sym_co_await] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_requires] = ACTIONS(2885), - [sym_this] = ACTIONS(2885), + [646] = { + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2887), + [aux_sym_preproc_include_token1] = ACTIONS(2887), + [aux_sym_preproc_def_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), + [sym_preproc_directive] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym___extension__] = ACTIONS(2887), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym___based] = ACTIONS(2887), + [anon_sym___cdecl] = ACTIONS(2887), + [anon_sym___clrcall] = ACTIONS(2887), + [anon_sym___stdcall] = ACTIONS(2887), + [anon_sym___fastcall] = ACTIONS(2887), + [anon_sym___thiscall] = ACTIONS(2887), + [anon_sym___vectorcall] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym___inline] = ACTIONS(2887), + [anon_sym___inline__] = ACTIONS(2887), + [anon_sym___forceinline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym___thread] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym___restrict__] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym__Noreturn] = ACTIONS(2887), + [anon_sym_noreturn] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_else] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym___try] = ACTIONS(2887), + [anon_sym___leave] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [anon_sym___alignof__] = ACTIONS(2887), + [anon_sym___alignof] = ACTIONS(2887), + [anon_sym__alignof] = ACTIONS(2887), + [anon_sym_alignof] = ACTIONS(2887), + [anon_sym__Alignof] = ACTIONS(2887), + [anon_sym_offsetof] = ACTIONS(2887), + [anon_sym__Generic] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym___asm__] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [anon_sym_NULL] = ACTIONS(2887), + [anon_sym_nullptr] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_alignas] = ACTIONS(2887), + [anon_sym_explicit] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_operator] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_static_assert] = ACTIONS(2887), + [anon_sym_concept] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_R_DQUOTE] = ACTIONS(2889), + [anon_sym_LR_DQUOTE] = ACTIONS(2889), + [anon_sym_uR_DQUOTE] = ACTIONS(2889), + [anon_sym_UR_DQUOTE] = ACTIONS(2889), + [anon_sym_u8R_DQUOTE] = ACTIONS(2889), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), }, - [626] = { - [sym_identifier] = ACTIONS(2977), - [aux_sym_preproc_include_token1] = ACTIONS(2977), - [aux_sym_preproc_def_token1] = ACTIONS(2977), - [aux_sym_preproc_if_token1] = ACTIONS(2977), - [aux_sym_preproc_if_token2] = ACTIONS(2977), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2977), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2977), - [sym_preproc_directive] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2979), - [anon_sym_BANG] = ACTIONS(2979), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym___extension__] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2979), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), - [anon_sym___declspec] = ACTIONS(2977), - [anon_sym___based] = ACTIONS(2977), - [anon_sym___cdecl] = ACTIONS(2977), - [anon_sym___clrcall] = ACTIONS(2977), - [anon_sym___stdcall] = ACTIONS(2977), - [anon_sym___fastcall] = ACTIONS(2977), - [anon_sym___thiscall] = ACTIONS(2977), - [anon_sym___vectorcall] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_signed] = ACTIONS(2977), - [anon_sym_unsigned] = ACTIONS(2977), - [anon_sym_long] = ACTIONS(2977), - [anon_sym_short] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_register] = ACTIONS(2977), - [anon_sym_inline] = ACTIONS(2977), - [anon_sym___inline] = ACTIONS(2977), - [anon_sym___inline__] = ACTIONS(2977), - [anon_sym___forceinline] = ACTIONS(2977), - [anon_sym_thread_local] = ACTIONS(2977), - [anon_sym___thread] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_constexpr] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_restrict] = ACTIONS(2977), - [anon_sym___restrict__] = ACTIONS(2977), - [anon_sym__Atomic] = ACTIONS(2977), - [anon_sym__Noreturn] = ACTIONS(2977), - [anon_sym_noreturn] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [sym_primitive_type] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_switch] = ACTIONS(2977), - [anon_sym_case] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym___try] = ACTIONS(2977), - [anon_sym___leave] = ACTIONS(2977), - [anon_sym_not] = ACTIONS(2977), - [anon_sym_compl] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_sizeof] = ACTIONS(2977), - [anon_sym___alignof__] = ACTIONS(2977), - [anon_sym___alignof] = ACTIONS(2977), - [anon_sym__alignof] = ACTIONS(2977), - [anon_sym_alignof] = ACTIONS(2977), - [anon_sym__Alignof] = ACTIONS(2977), - [anon_sym_offsetof] = ACTIONS(2977), - [anon_sym__Generic] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), - [anon_sym___asm__] = ACTIONS(2977), - [sym_number_literal] = ACTIONS(2979), - [anon_sym_L_SQUOTE] = ACTIONS(2979), - [anon_sym_u_SQUOTE] = ACTIONS(2979), - [anon_sym_U_SQUOTE] = ACTIONS(2979), - [anon_sym_u8_SQUOTE] = ACTIONS(2979), - [anon_sym_SQUOTE] = ACTIONS(2979), - [anon_sym_L_DQUOTE] = ACTIONS(2979), - [anon_sym_u_DQUOTE] = ACTIONS(2979), - [anon_sym_U_DQUOTE] = ACTIONS(2979), - [anon_sym_u8_DQUOTE] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [anon_sym_NULL] = ACTIONS(2977), - [anon_sym_nullptr] = ACTIONS(2977), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_operator] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_delete] = ACTIONS(2977), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_using] = ACTIONS(2977), - [anon_sym_static_assert] = ACTIONS(2977), - [anon_sym_concept] = ACTIONS(2977), - [anon_sym_co_return] = ACTIONS(2977), - [anon_sym_co_yield] = ACTIONS(2977), - [anon_sym_R_DQUOTE] = ACTIONS(2979), - [anon_sym_LR_DQUOTE] = ACTIONS(2979), - [anon_sym_uR_DQUOTE] = ACTIONS(2979), - [anon_sym_UR_DQUOTE] = ACTIONS(2979), - [anon_sym_u8R_DQUOTE] = ACTIONS(2979), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_requires] = ACTIONS(2977), - [sym_this] = ACTIONS(2977), + [647] = { + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2883), + [aux_sym_preproc_include_token1] = ACTIONS(2883), + [aux_sym_preproc_def_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), + [sym_preproc_directive] = ACTIONS(2883), + [anon_sym_LPAREN2] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym___extension__] = ACTIONS(2883), + [anon_sym_typedef] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym___attribute__] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), + [anon_sym___declspec] = ACTIONS(2883), + [anon_sym___based] = ACTIONS(2883), + [anon_sym___cdecl] = ACTIONS(2883), + [anon_sym___clrcall] = ACTIONS(2883), + [anon_sym___stdcall] = ACTIONS(2883), + [anon_sym___fastcall] = ACTIONS(2883), + [anon_sym___thiscall] = ACTIONS(2883), + [anon_sym___vectorcall] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_signed] = ACTIONS(2883), + [anon_sym_unsigned] = ACTIONS(2883), + [anon_sym_long] = ACTIONS(2883), + [anon_sym_short] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_register] = ACTIONS(2883), + [anon_sym_inline] = ACTIONS(2883), + [anon_sym___inline] = ACTIONS(2883), + [anon_sym___inline__] = ACTIONS(2883), + [anon_sym___forceinline] = ACTIONS(2883), + [anon_sym_thread_local] = ACTIONS(2883), + [anon_sym___thread] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_constexpr] = ACTIONS(2883), + [anon_sym_volatile] = ACTIONS(2883), + [anon_sym_restrict] = ACTIONS(2883), + [anon_sym___restrict__] = ACTIONS(2883), + [anon_sym__Atomic] = ACTIONS(2883), + [anon_sym__Noreturn] = ACTIONS(2883), + [anon_sym_noreturn] = ACTIONS(2883), + [anon_sym_mutable] = ACTIONS(2883), + [anon_sym_constinit] = ACTIONS(2883), + [anon_sym_consteval] = ACTIONS(2883), + [sym_primitive_type] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_else] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym___try] = ACTIONS(2883), + [anon_sym___leave] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2883), + [anon_sym_compl] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_sizeof] = ACTIONS(2883), + [anon_sym___alignof__] = ACTIONS(2883), + [anon_sym___alignof] = ACTIONS(2883), + [anon_sym__alignof] = ACTIONS(2883), + [anon_sym_alignof] = ACTIONS(2883), + [anon_sym__Alignof] = ACTIONS(2883), + [anon_sym_offsetof] = ACTIONS(2883), + [anon_sym__Generic] = ACTIONS(2883), + [anon_sym_asm] = ACTIONS(2883), + [anon_sym___asm__] = ACTIONS(2883), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_L_SQUOTE] = ACTIONS(2885), + [anon_sym_u_SQUOTE] = ACTIONS(2885), + [anon_sym_U_SQUOTE] = ACTIONS(2885), + [anon_sym_u8_SQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_L_DQUOTE] = ACTIONS(2885), + [anon_sym_u_DQUOTE] = ACTIONS(2885), + [anon_sym_U_DQUOTE] = ACTIONS(2885), + [anon_sym_u8_DQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [anon_sym_NULL] = ACTIONS(2883), + [anon_sym_nullptr] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2883), + [anon_sym_decltype] = ACTIONS(2883), + [anon_sym_virtual] = ACTIONS(2883), + [anon_sym_alignas] = ACTIONS(2883), + [anon_sym_explicit] = ACTIONS(2883), + [anon_sym_typename] = ACTIONS(2883), + [anon_sym_template] = ACTIONS(2883), + [anon_sym_operator] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_static_assert] = ACTIONS(2883), + [anon_sym_concept] = ACTIONS(2883), + [anon_sym_co_return] = ACTIONS(2883), + [anon_sym_co_yield] = ACTIONS(2883), + [anon_sym_R_DQUOTE] = ACTIONS(2885), + [anon_sym_LR_DQUOTE] = ACTIONS(2885), + [anon_sym_uR_DQUOTE] = ACTIONS(2885), + [anon_sym_UR_DQUOTE] = ACTIONS(2885), + [anon_sym_u8R_DQUOTE] = ACTIONS(2885), + [anon_sym_co_await] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_requires] = ACTIONS(2883), + [sym_this] = ACTIONS(2883), }, - [627] = { - [ts_builtin_sym_end] = ACTIONS(2869), + [648] = { [sym_identifier] = ACTIONS(2867), [aux_sym_preproc_include_token1] = ACTIONS(2867), [aux_sym_preproc_def_token1] = ACTIONS(2867), @@ -177035,6 +180157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2867), [anon_sym___vectorcall] = ACTIONS(2867), [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), [anon_sym_signed] = ACTIONS(2867), [anon_sym_unsigned] = ACTIONS(2867), [anon_sym_long] = ACTIONS(2867), @@ -177135,6874 +180258,6209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2867), [sym_this] = ACTIONS(2867), }, - [628] = { - [ts_builtin_sym_end] = ACTIONS(2967), - [sym_identifier] = ACTIONS(2965), - [aux_sym_preproc_include_token1] = ACTIONS(2965), - [aux_sym_preproc_def_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), - [sym_preproc_directive] = ACTIONS(2965), - [anon_sym_LPAREN2] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym___based] = ACTIONS(2965), - [anon_sym___cdecl] = ACTIONS(2965), - [anon_sym___clrcall] = ACTIONS(2965), - [anon_sym___stdcall] = ACTIONS(2965), - [anon_sym___fastcall] = ACTIONS(2965), - [anon_sym___thiscall] = ACTIONS(2965), - [anon_sym___vectorcall] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2965), - [anon_sym_switch] = ACTIONS(2965), - [anon_sym_case] = ACTIONS(2965), - [anon_sym_default] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_do] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym___try] = ACTIONS(2965), - [anon_sym___leave] = ACTIONS(2965), - [anon_sym_not] = ACTIONS(2965), - [anon_sym_compl] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_sizeof] = ACTIONS(2965), - [anon_sym___alignof__] = ACTIONS(2965), - [anon_sym___alignof] = ACTIONS(2965), - [anon_sym__alignof] = ACTIONS(2965), - [anon_sym_alignof] = ACTIONS(2965), - [anon_sym__Alignof] = ACTIONS(2965), - [anon_sym_offsetof] = ACTIONS(2965), - [anon_sym__Generic] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym___asm__] = ACTIONS(2965), - [sym_number_literal] = ACTIONS(2967), - [anon_sym_L_SQUOTE] = ACTIONS(2967), - [anon_sym_u_SQUOTE] = ACTIONS(2967), - [anon_sym_U_SQUOTE] = ACTIONS(2967), - [anon_sym_u8_SQUOTE] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(2967), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [anon_sym_NULL] = ACTIONS(2965), - [anon_sym_nullptr] = ACTIONS(2965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2965), - [anon_sym_delete] = ACTIONS(2965), - [anon_sym_throw] = ACTIONS(2965), - [anon_sym_namespace] = ACTIONS(2965), - [anon_sym_using] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), - [anon_sym_concept] = ACTIONS(2965), - [anon_sym_co_return] = ACTIONS(2965), - [anon_sym_co_yield] = ACTIONS(2965), - [anon_sym_R_DQUOTE] = ACTIONS(2967), - [anon_sym_LR_DQUOTE] = ACTIONS(2967), - [anon_sym_uR_DQUOTE] = ACTIONS(2967), - [anon_sym_UR_DQUOTE] = ACTIONS(2967), - [anon_sym_u8R_DQUOTE] = ACTIONS(2967), - [anon_sym_co_await] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2965), - [anon_sym_requires] = ACTIONS(2965), - [sym_this] = ACTIONS(2965), - }, - [629] = { - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_unaligned_ptr_modifier] = STATE(5775), - [sym_ms_pointer_modifier] = STATE(3924), - [sym__declarator] = STATE(6911), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym_type_qualifier] = STATE(4555), - [sym__expression] = STATE(3515), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3670), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6169), - [sym_qualified_identifier] = STATE(3664), - [sym_qualified_type_identifier] = STATE(8255), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3753), - [aux_sym__type_definition_type_repeat1] = STATE(4555), - [aux_sym_pointer_declarator_repeat1] = STATE(3924), - [sym_identifier] = ACTIONS(3464), - [anon_sym_LPAREN2] = ACTIONS(3466), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(3468), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym___extension__] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym___based] = ACTIONS(47), - [sym_ms_restrict_modifier] = ACTIONS(3458), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3458), - [sym_ms_signed_ptr_modifier] = ACTIONS(3458), - [anon_sym__unaligned] = ACTIONS(3460), - [anon_sym___unaligned] = ACTIONS(3460), - [anon_sym_LBRACK] = ACTIONS(2076), - [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_mutable] = ACTIONS(3456), - [anon_sym_constinit] = ACTIONS(3456), - [anon_sym_consteval] = ACTIONS(3456), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [630] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [649] = { + [sym_identifier] = ACTIONS(2921), + [aux_sym_preproc_include_token1] = ACTIONS(2921), + [aux_sym_preproc_def_token1] = ACTIONS(2921), + [aux_sym_preproc_if_token1] = ACTIONS(2921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), + [sym_preproc_directive] = ACTIONS(2921), + [anon_sym_LPAREN2] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_AMP_AMP] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym___extension__] = ACTIONS(2921), + [anon_sym_typedef] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym___attribute__] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(2923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), + [anon_sym___declspec] = ACTIONS(2921), + [anon_sym___based] = ACTIONS(2921), + [anon_sym___cdecl] = ACTIONS(2921), + [anon_sym___clrcall] = ACTIONS(2921), + [anon_sym___stdcall] = ACTIONS(2921), + [anon_sym___fastcall] = ACTIONS(2921), + [anon_sym___thiscall] = ACTIONS(2921), + [anon_sym___vectorcall] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_RBRACE] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2921), + [anon_sym_unsigned] = ACTIONS(2921), + [anon_sym_long] = ACTIONS(2921), + [anon_sym_short] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_register] = ACTIONS(2921), + [anon_sym_inline] = ACTIONS(2921), + [anon_sym___inline] = ACTIONS(2921), + [anon_sym___inline__] = ACTIONS(2921), + [anon_sym___forceinline] = ACTIONS(2921), + [anon_sym_thread_local] = ACTIONS(2921), + [anon_sym___thread] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_constexpr] = ACTIONS(2921), + [anon_sym_volatile] = ACTIONS(2921), + [anon_sym_restrict] = ACTIONS(2921), + [anon_sym___restrict__] = ACTIONS(2921), + [anon_sym__Atomic] = ACTIONS(2921), + [anon_sym__Noreturn] = ACTIONS(2921), + [anon_sym_noreturn] = ACTIONS(2921), + [anon_sym_mutable] = ACTIONS(2921), + [anon_sym_constinit] = ACTIONS(2921), + [anon_sym_consteval] = ACTIONS(2921), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), + [anon_sym_class] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_union] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_else] = ACTIONS(2921), + [anon_sym_switch] = ACTIONS(2921), + [anon_sym_case] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_do] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_goto] = ACTIONS(2921), + [anon_sym___try] = ACTIONS(2921), + [anon_sym___leave] = ACTIONS(2921), + [anon_sym_not] = ACTIONS(2921), + [anon_sym_compl] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_sizeof] = ACTIONS(2921), + [anon_sym___alignof__] = ACTIONS(2921), + [anon_sym___alignof] = ACTIONS(2921), + [anon_sym__alignof] = ACTIONS(2921), + [anon_sym_alignof] = ACTIONS(2921), + [anon_sym__Alignof] = ACTIONS(2921), + [anon_sym_offsetof] = ACTIONS(2921), + [anon_sym__Generic] = ACTIONS(2921), + [anon_sym_asm] = ACTIONS(2921), + [anon_sym___asm__] = ACTIONS(2921), + [sym_number_literal] = ACTIONS(2923), + [anon_sym_L_SQUOTE] = ACTIONS(2923), + [anon_sym_u_SQUOTE] = ACTIONS(2923), + [anon_sym_U_SQUOTE] = ACTIONS(2923), + [anon_sym_u8_SQUOTE] = ACTIONS(2923), + [anon_sym_SQUOTE] = ACTIONS(2923), + [anon_sym_L_DQUOTE] = ACTIONS(2923), + [anon_sym_u_DQUOTE] = ACTIONS(2923), + [anon_sym_U_DQUOTE] = ACTIONS(2923), + [anon_sym_u8_DQUOTE] = ACTIONS(2923), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [anon_sym_NULL] = ACTIONS(2921), + [anon_sym_nullptr] = ACTIONS(2921), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2921), + [anon_sym_decltype] = ACTIONS(2921), + [anon_sym_virtual] = ACTIONS(2921), + [anon_sym_alignas] = ACTIONS(2921), + [anon_sym_explicit] = ACTIONS(2921), + [anon_sym_typename] = ACTIONS(2921), + [anon_sym_template] = ACTIONS(2921), + [anon_sym_operator] = ACTIONS(2921), + [anon_sym_try] = ACTIONS(2921), + [anon_sym_delete] = ACTIONS(2921), + [anon_sym_throw] = ACTIONS(2921), + [anon_sym_namespace] = ACTIONS(2921), + [anon_sym_using] = ACTIONS(2921), + [anon_sym_static_assert] = ACTIONS(2921), + [anon_sym_concept] = ACTIONS(2921), + [anon_sym_co_return] = ACTIONS(2921), + [anon_sym_co_yield] = ACTIONS(2921), + [anon_sym_R_DQUOTE] = ACTIONS(2923), + [anon_sym_LR_DQUOTE] = ACTIONS(2923), + [anon_sym_uR_DQUOTE] = ACTIONS(2923), + [anon_sym_UR_DQUOTE] = ACTIONS(2923), + [anon_sym_u8R_DQUOTE] = ACTIONS(2923), + [anon_sym_co_await] = ACTIONS(2921), + [anon_sym_new] = ACTIONS(2921), + [anon_sym_requires] = ACTIONS(2921), + [sym_this] = ACTIONS(2921), }, - [631] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [650] = { + [sym_identifier] = ACTIONS(2917), + [aux_sym_preproc_include_token1] = ACTIONS(2917), + [aux_sym_preproc_def_token1] = ACTIONS(2917), + [aux_sym_preproc_if_token1] = ACTIONS(2917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), + [sym_preproc_directive] = ACTIONS(2917), + [anon_sym_LPAREN2] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2919), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym___extension__] = ACTIONS(2917), + [anon_sym_typedef] = ACTIONS(2917), + [anon_sym_extern] = ACTIONS(2917), + [anon_sym___attribute__] = ACTIONS(2917), + [anon_sym_COLON_COLON] = ACTIONS(2919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), + [anon_sym___declspec] = ACTIONS(2917), + [anon_sym___based] = ACTIONS(2917), + [anon_sym___cdecl] = ACTIONS(2917), + [anon_sym___clrcall] = ACTIONS(2917), + [anon_sym___stdcall] = ACTIONS(2917), + [anon_sym___fastcall] = ACTIONS(2917), + [anon_sym___thiscall] = ACTIONS(2917), + [anon_sym___vectorcall] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_signed] = ACTIONS(2917), + [anon_sym_unsigned] = ACTIONS(2917), + [anon_sym_long] = ACTIONS(2917), + [anon_sym_short] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2917), + [anon_sym_static] = ACTIONS(2917), + [anon_sym_register] = ACTIONS(2917), + [anon_sym_inline] = ACTIONS(2917), + [anon_sym___inline] = ACTIONS(2917), + [anon_sym___inline__] = ACTIONS(2917), + [anon_sym___forceinline] = ACTIONS(2917), + [anon_sym_thread_local] = ACTIONS(2917), + [anon_sym___thread] = ACTIONS(2917), + [anon_sym_const] = ACTIONS(2917), + [anon_sym_constexpr] = ACTIONS(2917), + [anon_sym_volatile] = ACTIONS(2917), + [anon_sym_restrict] = ACTIONS(2917), + [anon_sym___restrict__] = ACTIONS(2917), + [anon_sym__Atomic] = ACTIONS(2917), + [anon_sym__Noreturn] = ACTIONS(2917), + [anon_sym_noreturn] = ACTIONS(2917), + [anon_sym_mutable] = ACTIONS(2917), + [anon_sym_constinit] = ACTIONS(2917), + [anon_sym_consteval] = ACTIONS(2917), + [sym_primitive_type] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), + [anon_sym_class] = ACTIONS(2917), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_union] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_else] = ACTIONS(2917), + [anon_sym_switch] = ACTIONS(2917), + [anon_sym_case] = ACTIONS(2917), + [anon_sym_default] = ACTIONS(2917), + [anon_sym_while] = ACTIONS(2917), + [anon_sym_do] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_goto] = ACTIONS(2917), + [anon_sym___try] = ACTIONS(2917), + [anon_sym___leave] = ACTIONS(2917), + [anon_sym_not] = ACTIONS(2917), + [anon_sym_compl] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_sizeof] = ACTIONS(2917), + [anon_sym___alignof__] = ACTIONS(2917), + [anon_sym___alignof] = ACTIONS(2917), + [anon_sym__alignof] = ACTIONS(2917), + [anon_sym_alignof] = ACTIONS(2917), + [anon_sym__Alignof] = ACTIONS(2917), + [anon_sym_offsetof] = ACTIONS(2917), + [anon_sym__Generic] = ACTIONS(2917), + [anon_sym_asm] = ACTIONS(2917), + [anon_sym___asm__] = ACTIONS(2917), + [sym_number_literal] = ACTIONS(2919), + [anon_sym_L_SQUOTE] = ACTIONS(2919), + [anon_sym_u_SQUOTE] = ACTIONS(2919), + [anon_sym_U_SQUOTE] = ACTIONS(2919), + [anon_sym_u8_SQUOTE] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2919), + [anon_sym_L_DQUOTE] = ACTIONS(2919), + [anon_sym_u_DQUOTE] = ACTIONS(2919), + [anon_sym_U_DQUOTE] = ACTIONS(2919), + [anon_sym_u8_DQUOTE] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2919), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [anon_sym_NULL] = ACTIONS(2917), + [anon_sym_nullptr] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2917), + [anon_sym_decltype] = ACTIONS(2917), + [anon_sym_virtual] = ACTIONS(2917), + [anon_sym_alignas] = ACTIONS(2917), + [anon_sym_explicit] = ACTIONS(2917), + [anon_sym_typename] = ACTIONS(2917), + [anon_sym_template] = ACTIONS(2917), + [anon_sym_operator] = ACTIONS(2917), + [anon_sym_try] = ACTIONS(2917), + [anon_sym_delete] = ACTIONS(2917), + [anon_sym_throw] = ACTIONS(2917), + [anon_sym_namespace] = ACTIONS(2917), + [anon_sym_using] = ACTIONS(2917), + [anon_sym_static_assert] = ACTIONS(2917), + [anon_sym_concept] = ACTIONS(2917), + [anon_sym_co_return] = ACTIONS(2917), + [anon_sym_co_yield] = ACTIONS(2917), + [anon_sym_R_DQUOTE] = ACTIONS(2919), + [anon_sym_LR_DQUOTE] = ACTIONS(2919), + [anon_sym_uR_DQUOTE] = ACTIONS(2919), + [anon_sym_UR_DQUOTE] = ACTIONS(2919), + [anon_sym_u8R_DQUOTE] = ACTIONS(2919), + [anon_sym_co_await] = ACTIONS(2917), + [anon_sym_new] = ACTIONS(2917), + [anon_sym_requires] = ACTIONS(2917), + [sym_this] = ACTIONS(2917), }, - [632] = { - [sym_identifier] = ACTIONS(2945), - [aux_sym_preproc_include_token1] = ACTIONS(2945), - [aux_sym_preproc_def_token1] = ACTIONS(2945), - [aux_sym_preproc_if_token1] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), - [sym_preproc_directive] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym___extension__] = ACTIONS(2945), - [anon_sym_typedef] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2945), - [anon_sym___attribute__] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), - [anon_sym___declspec] = ACTIONS(2945), - [anon_sym___based] = ACTIONS(2945), - [anon_sym___cdecl] = ACTIONS(2945), - [anon_sym___clrcall] = ACTIONS(2945), - [anon_sym___stdcall] = ACTIONS(2945), - [anon_sym___fastcall] = ACTIONS(2945), - [anon_sym___thiscall] = ACTIONS(2945), - [anon_sym___vectorcall] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2947), - [anon_sym_signed] = ACTIONS(2945), - [anon_sym_unsigned] = ACTIONS(2945), - [anon_sym_long] = ACTIONS(2945), - [anon_sym_short] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_static] = ACTIONS(2945), - [anon_sym_register] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2945), - [anon_sym___inline] = ACTIONS(2945), - [anon_sym___inline__] = ACTIONS(2945), - [anon_sym___forceinline] = ACTIONS(2945), - [anon_sym_thread_local] = ACTIONS(2945), - [anon_sym___thread] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2945), - [anon_sym_constexpr] = ACTIONS(2945), - [anon_sym_volatile] = ACTIONS(2945), - [anon_sym_restrict] = ACTIONS(2945), - [anon_sym___restrict__] = ACTIONS(2945), - [anon_sym__Atomic] = ACTIONS(2945), - [anon_sym__Noreturn] = ACTIONS(2945), - [anon_sym_noreturn] = ACTIONS(2945), - [anon_sym_mutable] = ACTIONS(2945), - [anon_sym_constinit] = ACTIONS(2945), - [anon_sym_consteval] = ACTIONS(2945), - [sym_primitive_type] = ACTIONS(2945), - [anon_sym_enum] = ACTIONS(2945), - [anon_sym_class] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_switch] = ACTIONS(2945), - [anon_sym_case] = ACTIONS(2945), - [anon_sym_default] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_break] = ACTIONS(2945), - [anon_sym_continue] = ACTIONS(2945), - [anon_sym_goto] = ACTIONS(2945), - [anon_sym___try] = ACTIONS(2945), - [anon_sym___leave] = ACTIONS(2945), - [anon_sym_not] = ACTIONS(2945), - [anon_sym_compl] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_sizeof] = ACTIONS(2945), - [anon_sym___alignof__] = ACTIONS(2945), - [anon_sym___alignof] = ACTIONS(2945), - [anon_sym__alignof] = ACTIONS(2945), - [anon_sym_alignof] = ACTIONS(2945), - [anon_sym__Alignof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2945), - [anon_sym__Generic] = ACTIONS(2945), - [anon_sym_asm] = ACTIONS(2945), - [anon_sym___asm__] = ACTIONS(2945), - [sym_number_literal] = ACTIONS(2947), - [anon_sym_L_SQUOTE] = ACTIONS(2947), - [anon_sym_u_SQUOTE] = ACTIONS(2947), - [anon_sym_U_SQUOTE] = ACTIONS(2947), - [anon_sym_u8_SQUOTE] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_L_DQUOTE] = ACTIONS(2947), - [anon_sym_u_DQUOTE] = ACTIONS(2947), - [anon_sym_U_DQUOTE] = ACTIONS(2947), - [anon_sym_u8_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [sym_true] = ACTIONS(2945), - [sym_false] = ACTIONS(2945), - [anon_sym_NULL] = ACTIONS(2945), - [anon_sym_nullptr] = ACTIONS(2945), + [651] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [652] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2945), - [anon_sym_decltype] = ACTIONS(2945), - [anon_sym_virtual] = ACTIONS(2945), - [anon_sym_alignas] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_typename] = ACTIONS(2945), - [anon_sym_template] = ACTIONS(2945), - [anon_sym_operator] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_delete] = ACTIONS(2945), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_namespace] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2945), - [anon_sym_static_assert] = ACTIONS(2945), - [anon_sym_concept] = ACTIONS(2945), - [anon_sym_co_return] = ACTIONS(2945), - [anon_sym_co_yield] = ACTIONS(2945), - [anon_sym_R_DQUOTE] = ACTIONS(2947), - [anon_sym_LR_DQUOTE] = ACTIONS(2947), - [anon_sym_uR_DQUOTE] = ACTIONS(2947), - [anon_sym_UR_DQUOTE] = ACTIONS(2947), - [anon_sym_u8R_DQUOTE] = ACTIONS(2947), - [anon_sym_co_await] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_requires] = ACTIONS(2945), - [sym_this] = ACTIONS(2945), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [633] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [653] = { + [sym_identifier] = ACTIONS(2905), + [aux_sym_preproc_include_token1] = ACTIONS(2905), + [aux_sym_preproc_def_token1] = ACTIONS(2905), + [aux_sym_preproc_if_token1] = ACTIONS(2905), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), + [sym_preproc_directive] = ACTIONS(2905), + [anon_sym_LPAREN2] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_AMP_AMP] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym___extension__] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym___attribute__] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), + [anon_sym___declspec] = ACTIONS(2905), + [anon_sym___based] = ACTIONS(2905), + [anon_sym___cdecl] = ACTIONS(2905), + [anon_sym___clrcall] = ACTIONS(2905), + [anon_sym___stdcall] = ACTIONS(2905), + [anon_sym___fastcall] = ACTIONS(2905), + [anon_sym___thiscall] = ACTIONS(2905), + [anon_sym___vectorcall] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_RBRACE] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2905), + [anon_sym_unsigned] = ACTIONS(2905), + [anon_sym_long] = ACTIONS(2905), + [anon_sym_short] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_static] = ACTIONS(2905), + [anon_sym_register] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym___inline] = ACTIONS(2905), + [anon_sym___inline__] = ACTIONS(2905), + [anon_sym___forceinline] = ACTIONS(2905), + [anon_sym_thread_local] = ACTIONS(2905), + [anon_sym___thread] = ACTIONS(2905), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_constexpr] = ACTIONS(2905), + [anon_sym_volatile] = ACTIONS(2905), + [anon_sym_restrict] = ACTIONS(2905), + [anon_sym___restrict__] = ACTIONS(2905), + [anon_sym__Atomic] = ACTIONS(2905), + [anon_sym__Noreturn] = ACTIONS(2905), + [anon_sym_noreturn] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_union] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_else] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2905), + [anon_sym_case] = ACTIONS(2905), + [anon_sym_default] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_goto] = ACTIONS(2905), + [anon_sym___try] = ACTIONS(2905), + [anon_sym___leave] = ACTIONS(2905), + [anon_sym_not] = ACTIONS(2905), + [anon_sym_compl] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_sizeof] = ACTIONS(2905), + [anon_sym___alignof__] = ACTIONS(2905), + [anon_sym___alignof] = ACTIONS(2905), + [anon_sym__alignof] = ACTIONS(2905), + [anon_sym_alignof] = ACTIONS(2905), + [anon_sym__Alignof] = ACTIONS(2905), + [anon_sym_offsetof] = ACTIONS(2905), + [anon_sym__Generic] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym___asm__] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2907), + [anon_sym_L_SQUOTE] = ACTIONS(2907), + [anon_sym_u_SQUOTE] = ACTIONS(2907), + [anon_sym_U_SQUOTE] = ACTIONS(2907), + [anon_sym_u8_SQUOTE] = ACTIONS(2907), + [anon_sym_SQUOTE] = ACTIONS(2907), + [anon_sym_L_DQUOTE] = ACTIONS(2907), + [anon_sym_u_DQUOTE] = ACTIONS(2907), + [anon_sym_U_DQUOTE] = ACTIONS(2907), + [anon_sym_u8_DQUOTE] = ACTIONS(2907), + [anon_sym_DQUOTE] = ACTIONS(2907), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [anon_sym_NULL] = ACTIONS(2905), + [anon_sym_nullptr] = ACTIONS(2905), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2905), + [anon_sym_decltype] = ACTIONS(2905), + [anon_sym_virtual] = ACTIONS(2905), + [anon_sym_alignas] = ACTIONS(2905), + [anon_sym_explicit] = ACTIONS(2905), + [anon_sym_typename] = ACTIONS(2905), + [anon_sym_template] = ACTIONS(2905), + [anon_sym_operator] = ACTIONS(2905), + [anon_sym_try] = ACTIONS(2905), + [anon_sym_delete] = ACTIONS(2905), + [anon_sym_throw] = ACTIONS(2905), + [anon_sym_namespace] = ACTIONS(2905), + [anon_sym_using] = ACTIONS(2905), + [anon_sym_static_assert] = ACTIONS(2905), + [anon_sym_concept] = ACTIONS(2905), + [anon_sym_co_return] = ACTIONS(2905), + [anon_sym_co_yield] = ACTIONS(2905), + [anon_sym_R_DQUOTE] = ACTIONS(2907), + [anon_sym_LR_DQUOTE] = ACTIONS(2907), + [anon_sym_uR_DQUOTE] = ACTIONS(2907), + [anon_sym_UR_DQUOTE] = ACTIONS(2907), + [anon_sym_u8R_DQUOTE] = ACTIONS(2907), + [anon_sym_co_await] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_requires] = ACTIONS(2905), + [sym_this] = ACTIONS(2905), }, - [634] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [654] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [635] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [655] = { + [sym_identifier] = ACTIONS(2909), + [aux_sym_preproc_include_token1] = ACTIONS(2909), + [aux_sym_preproc_def_token1] = ACTIONS(2909), + [aux_sym_preproc_if_token1] = ACTIONS(2909), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2909), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2909), + [sym_preproc_directive] = ACTIONS(2909), + [anon_sym_LPAREN2] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_AMP_AMP] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_SEMI] = ACTIONS(2911), + [anon_sym___extension__] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2909), + [anon_sym_extern] = ACTIONS(2909), + [anon_sym___attribute__] = ACTIONS(2909), + [anon_sym_COLON_COLON] = ACTIONS(2911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2911), + [anon_sym___declspec] = ACTIONS(2909), + [anon_sym___based] = ACTIONS(2909), + [anon_sym___cdecl] = ACTIONS(2909), + [anon_sym___clrcall] = ACTIONS(2909), + [anon_sym___stdcall] = ACTIONS(2909), + [anon_sym___fastcall] = ACTIONS(2909), + [anon_sym___thiscall] = ACTIONS(2909), + [anon_sym___vectorcall] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_RBRACE] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(2909), + [anon_sym_unsigned] = ACTIONS(2909), + [anon_sym_long] = ACTIONS(2909), + [anon_sym_short] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2909), + [anon_sym_register] = ACTIONS(2909), + [anon_sym_inline] = ACTIONS(2909), + [anon_sym___inline] = ACTIONS(2909), + [anon_sym___inline__] = ACTIONS(2909), + [anon_sym___forceinline] = ACTIONS(2909), + [anon_sym_thread_local] = ACTIONS(2909), + [anon_sym___thread] = ACTIONS(2909), + [anon_sym_const] = ACTIONS(2909), + [anon_sym_constexpr] = ACTIONS(2909), + [anon_sym_volatile] = ACTIONS(2909), + [anon_sym_restrict] = ACTIONS(2909), + [anon_sym___restrict__] = ACTIONS(2909), + [anon_sym__Atomic] = ACTIONS(2909), + [anon_sym__Noreturn] = ACTIONS(2909), + [anon_sym_noreturn] = ACTIONS(2909), + [anon_sym_mutable] = ACTIONS(2909), + [anon_sym_constinit] = ACTIONS(2909), + [anon_sym_consteval] = ACTIONS(2909), + [sym_primitive_type] = ACTIONS(2909), + [anon_sym_enum] = ACTIONS(2909), + [anon_sym_class] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2909), + [anon_sym_union] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2909), + [anon_sym_switch] = ACTIONS(2909), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2909), + [anon_sym_while] = ACTIONS(2909), + [anon_sym_do] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_goto] = ACTIONS(2909), + [anon_sym___try] = ACTIONS(2909), + [anon_sym___leave] = ACTIONS(2909), + [anon_sym_not] = ACTIONS(2909), + [anon_sym_compl] = ACTIONS(2909), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_sizeof] = ACTIONS(2909), + [anon_sym___alignof__] = ACTIONS(2909), + [anon_sym___alignof] = ACTIONS(2909), + [anon_sym__alignof] = ACTIONS(2909), + [anon_sym_alignof] = ACTIONS(2909), + [anon_sym__Alignof] = ACTIONS(2909), + [anon_sym_offsetof] = ACTIONS(2909), + [anon_sym__Generic] = ACTIONS(2909), + [anon_sym_asm] = ACTIONS(2909), + [anon_sym___asm__] = ACTIONS(2909), + [sym_number_literal] = ACTIONS(2911), + [anon_sym_L_SQUOTE] = ACTIONS(2911), + [anon_sym_u_SQUOTE] = ACTIONS(2911), + [anon_sym_U_SQUOTE] = ACTIONS(2911), + [anon_sym_u8_SQUOTE] = ACTIONS(2911), + [anon_sym_SQUOTE] = ACTIONS(2911), + [anon_sym_L_DQUOTE] = ACTIONS(2911), + [anon_sym_u_DQUOTE] = ACTIONS(2911), + [anon_sym_U_DQUOTE] = ACTIONS(2911), + [anon_sym_u8_DQUOTE] = ACTIONS(2911), + [anon_sym_DQUOTE] = ACTIONS(2911), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [anon_sym_NULL] = ACTIONS(2909), + [anon_sym_nullptr] = ACTIONS(2909), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2909), + [anon_sym_decltype] = ACTIONS(2909), + [anon_sym_virtual] = ACTIONS(2909), + [anon_sym_alignas] = ACTIONS(2909), + [anon_sym_explicit] = ACTIONS(2909), + [anon_sym_typename] = ACTIONS(2909), + [anon_sym_template] = ACTIONS(2909), + [anon_sym_operator] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(2909), + [anon_sym_delete] = ACTIONS(2909), + [anon_sym_throw] = ACTIONS(2909), + [anon_sym_namespace] = ACTIONS(2909), + [anon_sym_using] = ACTIONS(2909), + [anon_sym_static_assert] = ACTIONS(2909), + [anon_sym_concept] = ACTIONS(2909), + [anon_sym_co_return] = ACTIONS(2909), + [anon_sym_co_yield] = ACTIONS(2909), + [anon_sym_R_DQUOTE] = ACTIONS(2911), + [anon_sym_LR_DQUOTE] = ACTIONS(2911), + [anon_sym_uR_DQUOTE] = ACTIONS(2911), + [anon_sym_UR_DQUOTE] = ACTIONS(2911), + [anon_sym_u8R_DQUOTE] = ACTIONS(2911), + [anon_sym_co_await] = ACTIONS(2909), + [anon_sym_new] = ACTIONS(2909), + [anon_sym_requires] = ACTIONS(2909), + [sym_this] = ACTIONS(2909), }, - [636] = { - [sym_identifier] = ACTIONS(2953), - [aux_sym_preproc_include_token1] = ACTIONS(2953), - [aux_sym_preproc_def_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), - [sym_preproc_directive] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym___based] = ACTIONS(2953), - [anon_sym___cdecl] = ACTIONS(2953), - [anon_sym___clrcall] = ACTIONS(2953), - [anon_sym___stdcall] = ACTIONS(2953), - [anon_sym___fastcall] = ACTIONS(2953), - [anon_sym___thiscall] = ACTIONS(2953), - [anon_sym___vectorcall] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_RBRACE] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_default] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym___try] = ACTIONS(2953), - [anon_sym___leave] = ACTIONS(2953), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_compl] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2953), - [anon_sym___alignof] = ACTIONS(2953), - [anon_sym__alignof] = ACTIONS(2953), - [anon_sym_alignof] = ACTIONS(2953), - [anon_sym__Alignof] = ACTIONS(2953), - [anon_sym_offsetof] = ACTIONS(2953), - [anon_sym__Generic] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym___asm__] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2955), - [anon_sym_L_SQUOTE] = ACTIONS(2955), - [anon_sym_u_SQUOTE] = ACTIONS(2955), - [anon_sym_U_SQUOTE] = ACTIONS(2955), - [anon_sym_u8_SQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_L_DQUOTE] = ACTIONS(2955), - [anon_sym_u_DQUOTE] = ACTIONS(2955), - [anon_sym_U_DQUOTE] = ACTIONS(2955), - [anon_sym_u8_DQUOTE] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [anon_sym_NULL] = ACTIONS(2953), - [anon_sym_nullptr] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_explicit] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_operator] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_delete] = ACTIONS(2953), - [anon_sym_throw] = ACTIONS(2953), - [anon_sym_namespace] = ACTIONS(2953), - [anon_sym_using] = ACTIONS(2953), - [anon_sym_static_assert] = ACTIONS(2953), - [anon_sym_concept] = ACTIONS(2953), - [anon_sym_co_return] = ACTIONS(2953), - [anon_sym_co_yield] = ACTIONS(2953), - [anon_sym_R_DQUOTE] = ACTIONS(2955), - [anon_sym_LR_DQUOTE] = ACTIONS(2955), - [anon_sym_uR_DQUOTE] = ACTIONS(2955), - [anon_sym_UR_DQUOTE] = ACTIONS(2955), - [anon_sym_u8R_DQUOTE] = ACTIONS(2955), - [anon_sym_co_await] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_requires] = ACTIONS(2953), - [sym_this] = ACTIONS(2953), + [656] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [637] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [657] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [658] = { + [sym_identifier] = ACTIONS(2933), + [aux_sym_preproc_include_token1] = ACTIONS(2933), + [aux_sym_preproc_def_token1] = ACTIONS(2933), + [aux_sym_preproc_if_token1] = ACTIONS(2933), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), + [sym_preproc_directive] = ACTIONS(2933), + [anon_sym_LPAREN2] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_SEMI] = ACTIONS(2935), + [anon_sym___extension__] = ACTIONS(2933), + [anon_sym_typedef] = ACTIONS(2933), + [anon_sym_extern] = ACTIONS(2933), + [anon_sym___attribute__] = ACTIONS(2933), + [anon_sym_COLON_COLON] = ACTIONS(2935), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), + [anon_sym___declspec] = ACTIONS(2933), + [anon_sym___based] = ACTIONS(2933), + [anon_sym___cdecl] = ACTIONS(2933), + [anon_sym___clrcall] = ACTIONS(2933), + [anon_sym___stdcall] = ACTIONS(2933), + [anon_sym___fastcall] = ACTIONS(2933), + [anon_sym___thiscall] = ACTIONS(2933), + [anon_sym___vectorcall] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_RBRACE] = ACTIONS(2935), + [anon_sym_signed] = ACTIONS(2933), + [anon_sym_unsigned] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_static] = ACTIONS(2933), + [anon_sym_register] = ACTIONS(2933), + [anon_sym_inline] = ACTIONS(2933), + [anon_sym___inline] = ACTIONS(2933), + [anon_sym___inline__] = ACTIONS(2933), + [anon_sym___forceinline] = ACTIONS(2933), + [anon_sym_thread_local] = ACTIONS(2933), + [anon_sym___thread] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2933), + [anon_sym_constexpr] = ACTIONS(2933), + [anon_sym_volatile] = ACTIONS(2933), + [anon_sym_restrict] = ACTIONS(2933), + [anon_sym___restrict__] = ACTIONS(2933), + [anon_sym__Atomic] = ACTIONS(2933), + [anon_sym__Noreturn] = ACTIONS(2933), + [anon_sym_noreturn] = ACTIONS(2933), + [anon_sym_mutable] = ACTIONS(2933), + [anon_sym_constinit] = ACTIONS(2933), + [anon_sym_consteval] = ACTIONS(2933), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_enum] = ACTIONS(2933), + [anon_sym_class] = ACTIONS(2933), + [anon_sym_struct] = ACTIONS(2933), + [anon_sym_union] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_else] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2933), + [anon_sym_case] = ACTIONS(2933), + [anon_sym_default] = ACTIONS(2933), + [anon_sym_while] = ACTIONS(2933), + [anon_sym_do] = ACTIONS(2933), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_goto] = ACTIONS(2933), + [anon_sym___try] = ACTIONS(2933), + [anon_sym___leave] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2933), + [anon_sym_compl] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_sizeof] = ACTIONS(2933), + [anon_sym___alignof__] = ACTIONS(2933), + [anon_sym___alignof] = ACTIONS(2933), + [anon_sym__alignof] = ACTIONS(2933), + [anon_sym_alignof] = ACTIONS(2933), + [anon_sym__Alignof] = ACTIONS(2933), + [anon_sym_offsetof] = ACTIONS(2933), + [anon_sym__Generic] = ACTIONS(2933), + [anon_sym_asm] = ACTIONS(2933), + [anon_sym___asm__] = ACTIONS(2933), + [sym_number_literal] = ACTIONS(2935), + [anon_sym_L_SQUOTE] = ACTIONS(2935), + [anon_sym_u_SQUOTE] = ACTIONS(2935), + [anon_sym_U_SQUOTE] = ACTIONS(2935), + [anon_sym_u8_SQUOTE] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2935), + [anon_sym_L_DQUOTE] = ACTIONS(2935), + [anon_sym_u_DQUOTE] = ACTIONS(2935), + [anon_sym_U_DQUOTE] = ACTIONS(2935), + [anon_sym_u8_DQUOTE] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2935), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), + [anon_sym_NULL] = ACTIONS(2933), + [anon_sym_nullptr] = ACTIONS(2933), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2933), + [anon_sym_decltype] = ACTIONS(2933), + [anon_sym_virtual] = ACTIONS(2933), + [anon_sym_alignas] = ACTIONS(2933), + [anon_sym_explicit] = ACTIONS(2933), + [anon_sym_typename] = ACTIONS(2933), + [anon_sym_template] = ACTIONS(2933), + [anon_sym_operator] = ACTIONS(2933), + [anon_sym_try] = ACTIONS(2933), + [anon_sym_delete] = ACTIONS(2933), + [anon_sym_throw] = ACTIONS(2933), + [anon_sym_namespace] = ACTIONS(2933), + [anon_sym_using] = ACTIONS(2933), + [anon_sym_static_assert] = ACTIONS(2933), + [anon_sym_concept] = ACTIONS(2933), + [anon_sym_co_return] = ACTIONS(2933), + [anon_sym_co_yield] = ACTIONS(2933), + [anon_sym_R_DQUOTE] = ACTIONS(2935), + [anon_sym_LR_DQUOTE] = ACTIONS(2935), + [anon_sym_uR_DQUOTE] = ACTIONS(2935), + [anon_sym_UR_DQUOTE] = ACTIONS(2935), + [anon_sym_u8R_DQUOTE] = ACTIONS(2935), + [anon_sym_co_await] = ACTIONS(2933), + [anon_sym_new] = ACTIONS(2933), + [anon_sym_requires] = ACTIONS(2933), + [sym_this] = ACTIONS(2933), }, - [638] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [659] = { + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_include_token1] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token2] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym___cdecl] = ACTIONS(2895), + [anon_sym___clrcall] = ACTIONS(2895), + [anon_sym___stdcall] = ACTIONS(2895), + [anon_sym___fastcall] = ACTIONS(2895), + [anon_sym___thiscall] = ACTIONS(2895), + [anon_sym___vectorcall] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_else] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym___try] = ACTIONS(2895), + [anon_sym___leave] = ACTIONS(2895), + [anon_sym_not] = ACTIONS(2895), + [anon_sym_compl] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_sizeof] = ACTIONS(2895), + [anon_sym___alignof__] = ACTIONS(2895), + [anon_sym___alignof] = ACTIONS(2895), + [anon_sym__alignof] = ACTIONS(2895), + [anon_sym_alignof] = ACTIONS(2895), + [anon_sym__Alignof] = ACTIONS(2895), + [anon_sym_offsetof] = ACTIONS(2895), + [anon_sym__Generic] = ACTIONS(2895), + [anon_sym_asm] = ACTIONS(2895), + [anon_sym___asm__] = ACTIONS(2895), + [sym_number_literal] = ACTIONS(2897), + [anon_sym_L_SQUOTE] = ACTIONS(2897), + [anon_sym_u_SQUOTE] = ACTIONS(2897), + [anon_sym_U_SQUOTE] = ACTIONS(2897), + [anon_sym_u8_SQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_L_DQUOTE] = ACTIONS(2897), + [anon_sym_u_DQUOTE] = ACTIONS(2897), + [anon_sym_U_DQUOTE] = ACTIONS(2897), + [anon_sym_u8_DQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [anon_sym_NULL] = ACTIONS(2895), + [anon_sym_nullptr] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + [anon_sym_concept] = ACTIONS(2895), + [anon_sym_co_return] = ACTIONS(2895), + [anon_sym_co_yield] = ACTIONS(2895), + [anon_sym_R_DQUOTE] = ACTIONS(2897), + [anon_sym_LR_DQUOTE] = ACTIONS(2897), + [anon_sym_uR_DQUOTE] = ACTIONS(2897), + [anon_sym_UR_DQUOTE] = ACTIONS(2897), + [anon_sym_u8R_DQUOTE] = ACTIONS(2897), + [anon_sym_co_await] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_requires] = ACTIONS(2895), + [sym_this] = ACTIONS(2895), }, - [639] = { - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_include_token1] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token2] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym___cdecl] = ACTIONS(2925), - [anon_sym___clrcall] = ACTIONS(2925), - [anon_sym___stdcall] = ACTIONS(2925), - [anon_sym___fastcall] = ACTIONS(2925), - [anon_sym___thiscall] = ACTIONS(2925), - [anon_sym___vectorcall] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_case] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym___try] = ACTIONS(2925), - [anon_sym___leave] = ACTIONS(2925), - [anon_sym_not] = ACTIONS(2925), - [anon_sym_compl] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(2925), - [anon_sym___alignof__] = ACTIONS(2925), - [anon_sym___alignof] = ACTIONS(2925), - [anon_sym__alignof] = ACTIONS(2925), - [anon_sym_alignof] = ACTIONS(2925), - [anon_sym__Alignof] = ACTIONS(2925), - [anon_sym_offsetof] = ACTIONS(2925), - [anon_sym__Generic] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym___asm__] = ACTIONS(2925), - [sym_number_literal] = ACTIONS(2927), - [anon_sym_L_SQUOTE] = ACTIONS(2927), - [anon_sym_u_SQUOTE] = ACTIONS(2927), - [anon_sym_U_SQUOTE] = ACTIONS(2927), - [anon_sym_u8_SQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_L_DQUOTE] = ACTIONS(2927), - [anon_sym_u_DQUOTE] = ACTIONS(2927), - [anon_sym_U_DQUOTE] = ACTIONS(2927), - [anon_sym_u8_DQUOTE] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [anon_sym_NULL] = ACTIONS(2925), - [anon_sym_nullptr] = ACTIONS(2925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_namespace] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - [anon_sym_concept] = ACTIONS(2925), - [anon_sym_co_return] = ACTIONS(2925), - [anon_sym_co_yield] = ACTIONS(2925), - [anon_sym_R_DQUOTE] = ACTIONS(2927), - [anon_sym_LR_DQUOTE] = ACTIONS(2927), - [anon_sym_uR_DQUOTE] = ACTIONS(2927), - [anon_sym_UR_DQUOTE] = ACTIONS(2927), - [anon_sym_u8R_DQUOTE] = ACTIONS(2927), - [anon_sym_co_await] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_requires] = ACTIONS(2925), - [sym_this] = ACTIONS(2925), + [660] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [640] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [661] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [641] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [662] = { + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2981), + [aux_sym_preproc_include_token1] = ACTIONS(2981), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), + [sym_preproc_directive] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym___extension__] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym___attribute__] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), + [anon_sym___declspec] = ACTIONS(2981), + [anon_sym___based] = ACTIONS(2981), + [anon_sym___cdecl] = ACTIONS(2981), + [anon_sym___clrcall] = ACTIONS(2981), + [anon_sym___stdcall] = ACTIONS(2981), + [anon_sym___fastcall] = ACTIONS(2981), + [anon_sym___thiscall] = ACTIONS(2981), + [anon_sym___vectorcall] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_signed] = ACTIONS(2981), + [anon_sym_unsigned] = ACTIONS(2981), + [anon_sym_long] = ACTIONS(2981), + [anon_sym_short] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_register] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym___inline] = ACTIONS(2981), + [anon_sym___inline__] = ACTIONS(2981), + [anon_sym___forceinline] = ACTIONS(2981), + [anon_sym_thread_local] = ACTIONS(2981), + [anon_sym___thread] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_constexpr] = ACTIONS(2981), + [anon_sym_volatile] = ACTIONS(2981), + [anon_sym_restrict] = ACTIONS(2981), + [anon_sym___restrict__] = ACTIONS(2981), + [anon_sym__Atomic] = ACTIONS(2981), + [anon_sym__Noreturn] = ACTIONS(2981), + [anon_sym_noreturn] = ACTIONS(2981), + [anon_sym_mutable] = ACTIONS(2981), + [anon_sym_constinit] = ACTIONS(2981), + [anon_sym_consteval] = ACTIONS(2981), + [sym_primitive_type] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_else] = ACTIONS(2981), + [anon_sym_switch] = ACTIONS(2981), + [anon_sym_case] = ACTIONS(2981), + [anon_sym_default] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_do] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_goto] = ACTIONS(2981), + [anon_sym___try] = ACTIONS(2981), + [anon_sym___leave] = ACTIONS(2981), + [anon_sym_not] = ACTIONS(2981), + [anon_sym_compl] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_sizeof] = ACTIONS(2981), + [anon_sym___alignof__] = ACTIONS(2981), + [anon_sym___alignof] = ACTIONS(2981), + [anon_sym__alignof] = ACTIONS(2981), + [anon_sym_alignof] = ACTIONS(2981), + [anon_sym__Alignof] = ACTIONS(2981), + [anon_sym_offsetof] = ACTIONS(2981), + [anon_sym__Generic] = ACTIONS(2981), + [anon_sym_asm] = ACTIONS(2981), + [anon_sym___asm__] = ACTIONS(2981), + [sym_number_literal] = ACTIONS(2983), + [anon_sym_L_SQUOTE] = ACTIONS(2983), + [anon_sym_u_SQUOTE] = ACTIONS(2983), + [anon_sym_U_SQUOTE] = ACTIONS(2983), + [anon_sym_u8_SQUOTE] = ACTIONS(2983), + [anon_sym_SQUOTE] = ACTIONS(2983), + [anon_sym_L_DQUOTE] = ACTIONS(2983), + [anon_sym_u_DQUOTE] = ACTIONS(2983), + [anon_sym_U_DQUOTE] = ACTIONS(2983), + [anon_sym_u8_DQUOTE] = ACTIONS(2983), + [anon_sym_DQUOTE] = ACTIONS(2983), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [anon_sym_NULL] = ACTIONS(2981), + [anon_sym_nullptr] = ACTIONS(2981), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2981), + [anon_sym_virtual] = ACTIONS(2981), + [anon_sym_alignas] = ACTIONS(2981), + [anon_sym_explicit] = ACTIONS(2981), + [anon_sym_typename] = ACTIONS(2981), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_delete] = ACTIONS(2981), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_static_assert] = ACTIONS(2981), + [anon_sym_concept] = ACTIONS(2981), + [anon_sym_co_return] = ACTIONS(2981), + [anon_sym_co_yield] = ACTIONS(2981), + [anon_sym_R_DQUOTE] = ACTIONS(2983), + [anon_sym_LR_DQUOTE] = ACTIONS(2983), + [anon_sym_uR_DQUOTE] = ACTIONS(2983), + [anon_sym_UR_DQUOTE] = ACTIONS(2983), + [anon_sym_u8R_DQUOTE] = ACTIONS(2983), + [anon_sym_co_await] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_requires] = ACTIONS(2981), + [sym_this] = ACTIONS(2981), }, - [642] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [663] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [643] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym___try] = ACTIONS(2917), - [anon_sym___leave] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [664] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [644] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [665] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [645] = { - [ts_builtin_sym_end] = ACTIONS(2895), - [sym_identifier] = ACTIONS(2893), - [aux_sym_preproc_include_token1] = ACTIONS(2893), - [aux_sym_preproc_def_token1] = ACTIONS(2893), - [aux_sym_preproc_if_token1] = ACTIONS(2893), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2893), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2893), - [anon_sym_LPAREN2] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2893), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym___extension__] = ACTIONS(2893), - [anon_sym_typedef] = ACTIONS(2893), - [anon_sym_extern] = ACTIONS(2893), - [anon_sym___attribute__] = ACTIONS(2893), - [anon_sym_COLON_COLON] = ACTIONS(2895), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2895), - [anon_sym___declspec] = ACTIONS(2893), - [anon_sym___based] = ACTIONS(2893), - [anon_sym___cdecl] = ACTIONS(2893), - [anon_sym___clrcall] = ACTIONS(2893), - [anon_sym___stdcall] = ACTIONS(2893), - [anon_sym___fastcall] = ACTIONS(2893), - [anon_sym___thiscall] = ACTIONS(2893), - [anon_sym___vectorcall] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_signed] = ACTIONS(2893), - [anon_sym_unsigned] = ACTIONS(2893), - [anon_sym_long] = ACTIONS(2893), - [anon_sym_short] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_register] = ACTIONS(2893), - [anon_sym_inline] = ACTIONS(2893), - [anon_sym___inline] = ACTIONS(2893), - [anon_sym___inline__] = ACTIONS(2893), - [anon_sym___forceinline] = ACTIONS(2893), - [anon_sym_thread_local] = ACTIONS(2893), - [anon_sym___thread] = ACTIONS(2893), - [anon_sym_const] = ACTIONS(2893), - [anon_sym_constexpr] = ACTIONS(2893), - [anon_sym_volatile] = ACTIONS(2893), - [anon_sym_restrict] = ACTIONS(2893), - [anon_sym___restrict__] = ACTIONS(2893), - [anon_sym__Atomic] = ACTIONS(2893), - [anon_sym__Noreturn] = ACTIONS(2893), - [anon_sym_noreturn] = ACTIONS(2893), - [anon_sym_mutable] = ACTIONS(2893), - [anon_sym_constinit] = ACTIONS(2893), - [anon_sym_consteval] = ACTIONS(2893), - [sym_primitive_type] = ACTIONS(2893), - [anon_sym_enum] = ACTIONS(2893), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2893), - [anon_sym_union] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_else] = ACTIONS(2893), - [anon_sym_switch] = ACTIONS(2893), - [anon_sym_case] = ACTIONS(2893), - [anon_sym_default] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_do] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2893), - [anon_sym_continue] = ACTIONS(2893), - [anon_sym_goto] = ACTIONS(2893), - [anon_sym___try] = ACTIONS(2893), - [anon_sym___leave] = ACTIONS(2893), - [anon_sym_not] = ACTIONS(2893), - [anon_sym_compl] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_sizeof] = ACTIONS(2893), - [anon_sym___alignof__] = ACTIONS(2893), - [anon_sym___alignof] = ACTIONS(2893), - [anon_sym__alignof] = ACTIONS(2893), - [anon_sym_alignof] = ACTIONS(2893), - [anon_sym__Alignof] = ACTIONS(2893), - [anon_sym_offsetof] = ACTIONS(2893), - [anon_sym__Generic] = ACTIONS(2893), - [anon_sym_asm] = ACTIONS(2893), - [anon_sym___asm__] = ACTIONS(2893), - [sym_number_literal] = ACTIONS(2895), - [anon_sym_L_SQUOTE] = ACTIONS(2895), - [anon_sym_u_SQUOTE] = ACTIONS(2895), - [anon_sym_U_SQUOTE] = ACTIONS(2895), - [anon_sym_u8_SQUOTE] = ACTIONS(2895), - [anon_sym_SQUOTE] = ACTIONS(2895), - [anon_sym_L_DQUOTE] = ACTIONS(2895), - [anon_sym_u_DQUOTE] = ACTIONS(2895), - [anon_sym_U_DQUOTE] = ACTIONS(2895), - [anon_sym_u8_DQUOTE] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [sym_true] = ACTIONS(2893), - [sym_false] = ACTIONS(2893), - [anon_sym_NULL] = ACTIONS(2893), - [anon_sym_nullptr] = ACTIONS(2893), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2893), - [anon_sym_decltype] = ACTIONS(2893), - [anon_sym_virtual] = ACTIONS(2893), - [anon_sym_alignas] = ACTIONS(2893), - [anon_sym_explicit] = ACTIONS(2893), - [anon_sym_typename] = ACTIONS(2893), - [anon_sym_template] = ACTIONS(2893), - [anon_sym_operator] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [anon_sym_delete] = ACTIONS(2893), - [anon_sym_throw] = ACTIONS(2893), - [anon_sym_namespace] = ACTIONS(2893), - [anon_sym_using] = ACTIONS(2893), - [anon_sym_static_assert] = ACTIONS(2893), - [anon_sym_concept] = ACTIONS(2893), - [anon_sym_co_return] = ACTIONS(2893), - [anon_sym_co_yield] = ACTIONS(2893), - [anon_sym_R_DQUOTE] = ACTIONS(2895), - [anon_sym_LR_DQUOTE] = ACTIONS(2895), - [anon_sym_uR_DQUOTE] = ACTIONS(2895), - [anon_sym_UR_DQUOTE] = ACTIONS(2895), - [anon_sym_u8R_DQUOTE] = ACTIONS(2895), - [anon_sym_co_await] = ACTIONS(2893), - [anon_sym_new] = ACTIONS(2893), - [anon_sym_requires] = ACTIONS(2893), - [sym_this] = ACTIONS(2893), + [666] = { + [ts_builtin_sym_end] = ACTIONS(2877), + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym___cdecl] = ACTIONS(2875), + [anon_sym___clrcall] = ACTIONS(2875), + [anon_sym___stdcall] = ACTIONS(2875), + [anon_sym___fastcall] = ACTIONS(2875), + [anon_sym___thiscall] = ACTIONS(2875), + [anon_sym___vectorcall] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_else] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym___try] = ACTIONS(2875), + [anon_sym___leave] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [anon_sym___alignof__] = ACTIONS(2875), + [anon_sym___alignof] = ACTIONS(2875), + [anon_sym__alignof] = ACTIONS(2875), + [anon_sym_alignof] = ACTIONS(2875), + [anon_sym__Alignof] = ACTIONS(2875), + [anon_sym_offsetof] = ACTIONS(2875), + [anon_sym__Generic] = ACTIONS(2875), + [anon_sym_asm] = ACTIONS(2875), + [anon_sym___asm__] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [anon_sym_NULL] = ACTIONS(2875), + [anon_sym_nullptr] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + [anon_sym_concept] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_R_DQUOTE] = ACTIONS(2877), + [anon_sym_LR_DQUOTE] = ACTIONS(2877), + [anon_sym_uR_DQUOTE] = ACTIONS(2877), + [anon_sym_UR_DQUOTE] = ACTIONS(2877), + [anon_sym_u8R_DQUOTE] = ACTIONS(2877), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), }, - [646] = { - [ts_builtin_sym_end] = ACTIONS(2891), - [sym_identifier] = ACTIONS(2889), - [aux_sym_preproc_include_token1] = ACTIONS(2889), - [aux_sym_preproc_def_token1] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2889), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2889), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2889), - [sym_preproc_directive] = ACTIONS(2889), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym___extension__] = ACTIONS(2889), - [anon_sym_typedef] = ACTIONS(2889), - [anon_sym_extern] = ACTIONS(2889), - [anon_sym___attribute__] = ACTIONS(2889), - [anon_sym_COLON_COLON] = ACTIONS(2891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2891), - [anon_sym___declspec] = ACTIONS(2889), - [anon_sym___based] = ACTIONS(2889), - [anon_sym___cdecl] = ACTIONS(2889), - [anon_sym___clrcall] = ACTIONS(2889), - [anon_sym___stdcall] = ACTIONS(2889), - [anon_sym___fastcall] = ACTIONS(2889), - [anon_sym___thiscall] = ACTIONS(2889), - [anon_sym___vectorcall] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_signed] = ACTIONS(2889), - [anon_sym_unsigned] = ACTIONS(2889), - [anon_sym_long] = ACTIONS(2889), - [anon_sym_short] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_register] = ACTIONS(2889), - [anon_sym_inline] = ACTIONS(2889), - [anon_sym___inline] = ACTIONS(2889), - [anon_sym___inline__] = ACTIONS(2889), - [anon_sym___forceinline] = ACTIONS(2889), - [anon_sym_thread_local] = ACTIONS(2889), - [anon_sym___thread] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_constexpr] = ACTIONS(2889), - [anon_sym_volatile] = ACTIONS(2889), - [anon_sym_restrict] = ACTIONS(2889), - [anon_sym___restrict__] = ACTIONS(2889), - [anon_sym__Atomic] = ACTIONS(2889), - [anon_sym__Noreturn] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_mutable] = ACTIONS(2889), - [anon_sym_constinit] = ACTIONS(2889), - [anon_sym_consteval] = ACTIONS(2889), - [sym_primitive_type] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_union] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_do] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_goto] = ACTIONS(2889), - [anon_sym___try] = ACTIONS(2889), - [anon_sym___leave] = ACTIONS(2889), - [anon_sym_not] = ACTIONS(2889), - [anon_sym_compl] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_sizeof] = ACTIONS(2889), - [anon_sym___alignof__] = ACTIONS(2889), - [anon_sym___alignof] = ACTIONS(2889), - [anon_sym__alignof] = ACTIONS(2889), - [anon_sym_alignof] = ACTIONS(2889), - [anon_sym__Alignof] = ACTIONS(2889), - [anon_sym_offsetof] = ACTIONS(2889), - [anon_sym__Generic] = ACTIONS(2889), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [anon_sym_L_SQUOTE] = ACTIONS(2891), - [anon_sym_u_SQUOTE] = ACTIONS(2891), - [anon_sym_U_SQUOTE] = ACTIONS(2891), - [anon_sym_u8_SQUOTE] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2891), - [anon_sym_L_DQUOTE] = ACTIONS(2891), - [anon_sym_u_DQUOTE] = ACTIONS(2891), - [anon_sym_U_DQUOTE] = ACTIONS(2891), - [anon_sym_u8_DQUOTE] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2891), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [anon_sym_NULL] = ACTIONS(2889), - [anon_sym_nullptr] = ACTIONS(2889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2889), - [anon_sym_decltype] = ACTIONS(2889), - [anon_sym_virtual] = ACTIONS(2889), - [anon_sym_alignas] = ACTIONS(2889), - [anon_sym_explicit] = ACTIONS(2889), - [anon_sym_typename] = ACTIONS(2889), - [anon_sym_template] = ACTIONS(2889), - [anon_sym_operator] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_namespace] = ACTIONS(2889), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_static_assert] = ACTIONS(2889), - [anon_sym_concept] = ACTIONS(2889), - [anon_sym_co_return] = ACTIONS(2889), - [anon_sym_co_yield] = ACTIONS(2889), - [anon_sym_R_DQUOTE] = ACTIONS(2891), - [anon_sym_LR_DQUOTE] = ACTIONS(2891), - [anon_sym_uR_DQUOTE] = ACTIONS(2891), - [anon_sym_UR_DQUOTE] = ACTIONS(2891), - [anon_sym_u8R_DQUOTE] = ACTIONS(2891), - [anon_sym_co_await] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_requires] = ACTIONS(2889), - [sym_this] = ACTIONS(2889), + [667] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [647] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [668] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [648] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [669] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [670] = { + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2985), + [aux_sym_preproc_include_token1] = ACTIONS(2985), + [aux_sym_preproc_def_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), + [sym_preproc_directive] = ACTIONS(2985), + [anon_sym_LPAREN2] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym___extension__] = ACTIONS(2985), + [anon_sym_typedef] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym___attribute__] = ACTIONS(2985), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), + [anon_sym___declspec] = ACTIONS(2985), + [anon_sym___based] = ACTIONS(2985), + [anon_sym___cdecl] = ACTIONS(2985), + [anon_sym___clrcall] = ACTIONS(2985), + [anon_sym___stdcall] = ACTIONS(2985), + [anon_sym___fastcall] = ACTIONS(2985), + [anon_sym___thiscall] = ACTIONS(2985), + [anon_sym___vectorcall] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_signed] = ACTIONS(2985), + [anon_sym_unsigned] = ACTIONS(2985), + [anon_sym_long] = ACTIONS(2985), + [anon_sym_short] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_register] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym___inline] = ACTIONS(2985), + [anon_sym___inline__] = ACTIONS(2985), + [anon_sym___forceinline] = ACTIONS(2985), + [anon_sym_thread_local] = ACTIONS(2985), + [anon_sym___thread] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_constexpr] = ACTIONS(2985), + [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_restrict] = ACTIONS(2985), + [anon_sym___restrict__] = ACTIONS(2985), + [anon_sym__Atomic] = ACTIONS(2985), + [anon_sym__Noreturn] = ACTIONS(2985), + [anon_sym_noreturn] = ACTIONS(2985), + [anon_sym_mutable] = ACTIONS(2985), + [anon_sym_constinit] = ACTIONS(2985), + [anon_sym_consteval] = ACTIONS(2985), + [sym_primitive_type] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_case] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym___try] = ACTIONS(2985), + [anon_sym___leave] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_compl] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_sizeof] = ACTIONS(2985), + [anon_sym___alignof__] = ACTIONS(2985), + [anon_sym___alignof] = ACTIONS(2985), + [anon_sym__alignof] = ACTIONS(2985), + [anon_sym_alignof] = ACTIONS(2985), + [anon_sym__Alignof] = ACTIONS(2985), + [anon_sym_offsetof] = ACTIONS(2985), + [anon_sym__Generic] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym___asm__] = ACTIONS(2985), + [sym_number_literal] = ACTIONS(2987), + [anon_sym_L_SQUOTE] = ACTIONS(2987), + [anon_sym_u_SQUOTE] = ACTIONS(2987), + [anon_sym_U_SQUOTE] = ACTIONS(2987), + [anon_sym_u8_SQUOTE] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_L_DQUOTE] = ACTIONS(2987), + [anon_sym_u_DQUOTE] = ACTIONS(2987), + [anon_sym_U_DQUOTE] = ACTIONS(2987), + [anon_sym_u8_DQUOTE] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [anon_sym_NULL] = ACTIONS(2985), + [anon_sym_nullptr] = ACTIONS(2985), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2985), + [anon_sym_virtual] = ACTIONS(2985), + [anon_sym_alignas] = ACTIONS(2985), + [anon_sym_explicit] = ACTIONS(2985), + [anon_sym_typename] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(2985), + [anon_sym_operator] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_delete] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_namespace] = ACTIONS(2985), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_static_assert] = ACTIONS(2985), + [anon_sym_concept] = ACTIONS(2985), + [anon_sym_co_return] = ACTIONS(2985), + [anon_sym_co_yield] = ACTIONS(2985), + [anon_sym_R_DQUOTE] = ACTIONS(2987), + [anon_sym_LR_DQUOTE] = ACTIONS(2987), + [anon_sym_uR_DQUOTE] = ACTIONS(2987), + [anon_sym_UR_DQUOTE] = ACTIONS(2987), + [anon_sym_u8R_DQUOTE] = ACTIONS(2987), + [anon_sym_co_await] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_requires] = ACTIONS(2985), + [sym_this] = ACTIONS(2985), }, - [649] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [671] = { + [sym_identifier] = ACTIONS(2901), + [aux_sym_preproc_include_token1] = ACTIONS(2901), + [aux_sym_preproc_def_token1] = ACTIONS(2901), + [aux_sym_preproc_if_token1] = ACTIONS(2901), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), + [sym_preproc_directive] = ACTIONS(2901), + [anon_sym_LPAREN2] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2903), + [anon_sym___extension__] = ACTIONS(2901), + [anon_sym_typedef] = ACTIONS(2901), + [anon_sym_extern] = ACTIONS(2901), + [anon_sym___attribute__] = ACTIONS(2901), + [anon_sym_COLON_COLON] = ACTIONS(2903), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), + [anon_sym___declspec] = ACTIONS(2901), + [anon_sym___based] = ACTIONS(2901), + [anon_sym___cdecl] = ACTIONS(2901), + [anon_sym___clrcall] = ACTIONS(2901), + [anon_sym___stdcall] = ACTIONS(2901), + [anon_sym___fastcall] = ACTIONS(2901), + [anon_sym___thiscall] = ACTIONS(2901), + [anon_sym___vectorcall] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_RBRACE] = ACTIONS(2903), + [anon_sym_signed] = ACTIONS(2901), + [anon_sym_unsigned] = ACTIONS(2901), + [anon_sym_long] = ACTIONS(2901), + [anon_sym_short] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_static] = ACTIONS(2901), + [anon_sym_register] = ACTIONS(2901), + [anon_sym_inline] = ACTIONS(2901), + [anon_sym___inline] = ACTIONS(2901), + [anon_sym___inline__] = ACTIONS(2901), + [anon_sym___forceinline] = ACTIONS(2901), + [anon_sym_thread_local] = ACTIONS(2901), + [anon_sym___thread] = ACTIONS(2901), + [anon_sym_const] = ACTIONS(2901), + [anon_sym_constexpr] = ACTIONS(2901), + [anon_sym_volatile] = ACTIONS(2901), + [anon_sym_restrict] = ACTIONS(2901), + [anon_sym___restrict__] = ACTIONS(2901), + [anon_sym__Atomic] = ACTIONS(2901), + [anon_sym__Noreturn] = ACTIONS(2901), + [anon_sym_noreturn] = ACTIONS(2901), + [anon_sym_mutable] = ACTIONS(2901), + [anon_sym_constinit] = ACTIONS(2901), + [anon_sym_consteval] = ACTIONS(2901), + [sym_primitive_type] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_class] = ACTIONS(2901), + [anon_sym_struct] = ACTIONS(2901), + [anon_sym_union] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_else] = ACTIONS(2901), + [anon_sym_switch] = ACTIONS(2901), + [anon_sym_case] = ACTIONS(2901), + [anon_sym_default] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_do] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_goto] = ACTIONS(2901), + [anon_sym___try] = ACTIONS(2901), + [anon_sym___leave] = ACTIONS(2901), + [anon_sym_not] = ACTIONS(2901), + [anon_sym_compl] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_sizeof] = ACTIONS(2901), + [anon_sym___alignof__] = ACTIONS(2901), + [anon_sym___alignof] = ACTIONS(2901), + [anon_sym__alignof] = ACTIONS(2901), + [anon_sym_alignof] = ACTIONS(2901), + [anon_sym__Alignof] = ACTIONS(2901), + [anon_sym_offsetof] = ACTIONS(2901), + [anon_sym__Generic] = ACTIONS(2901), + [anon_sym_asm] = ACTIONS(2901), + [anon_sym___asm__] = ACTIONS(2901), + [sym_number_literal] = ACTIONS(2903), + [anon_sym_L_SQUOTE] = ACTIONS(2903), + [anon_sym_u_SQUOTE] = ACTIONS(2903), + [anon_sym_U_SQUOTE] = ACTIONS(2903), + [anon_sym_u8_SQUOTE] = ACTIONS(2903), + [anon_sym_SQUOTE] = ACTIONS(2903), + [anon_sym_L_DQUOTE] = ACTIONS(2903), + [anon_sym_u_DQUOTE] = ACTIONS(2903), + [anon_sym_U_DQUOTE] = ACTIONS(2903), + [anon_sym_u8_DQUOTE] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2903), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [anon_sym_NULL] = ACTIONS(2901), + [anon_sym_nullptr] = ACTIONS(2901), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2901), + [anon_sym_decltype] = ACTIONS(2901), + [anon_sym_virtual] = ACTIONS(2901), + [anon_sym_alignas] = ACTIONS(2901), + [anon_sym_explicit] = ACTIONS(2901), + [anon_sym_typename] = ACTIONS(2901), + [anon_sym_template] = ACTIONS(2901), + [anon_sym_operator] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2901), + [anon_sym_delete] = ACTIONS(2901), + [anon_sym_throw] = ACTIONS(2901), + [anon_sym_namespace] = ACTIONS(2901), + [anon_sym_using] = ACTIONS(2901), + [anon_sym_static_assert] = ACTIONS(2901), + [anon_sym_concept] = ACTIONS(2901), + [anon_sym_co_return] = ACTIONS(2901), + [anon_sym_co_yield] = ACTIONS(2901), + [anon_sym_R_DQUOTE] = ACTIONS(2903), + [anon_sym_LR_DQUOTE] = ACTIONS(2903), + [anon_sym_uR_DQUOTE] = ACTIONS(2903), + [anon_sym_UR_DQUOTE] = ACTIONS(2903), + [anon_sym_u8R_DQUOTE] = ACTIONS(2903), + [anon_sym_co_await] = ACTIONS(2901), + [anon_sym_new] = ACTIONS(2901), + [anon_sym_requires] = ACTIONS(2901), + [sym_this] = ACTIONS(2901), }, - [650] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [672] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), }, - [651] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [673] = { + [sym_preproc_def] = STATE(673), + [sym_preproc_function_def] = STATE(673), + [sym_preproc_call] = STATE(673), + [sym_preproc_if_in_field_declaration_list] = STATE(673), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(673), + [sym_type_definition] = STATE(673), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6193), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6791), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(673), + [sym_field_declaration] = STATE(673), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2046), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(673), + [sym_operator_cast] = STATE(7208), + [sym_inline_method_definition] = STATE(673), + [sym__constructor_specifiers] = STATE(2046), + [sym_operator_cast_definition] = STATE(673), + [sym_operator_cast_declaration] = STATE(673), + [sym_constructor_or_destructor_definition] = STATE(673), + [sym_constructor_or_destructor_declaration] = STATE(673), + [sym_friend_declaration] = STATE(673), + [sym_access_specifier] = STATE(8745), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(673), + [sym_alias_declaration] = STATE(673), + [sym_static_assert_declaration] = STATE(673), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7208), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(673), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(3468), + [aux_sym_preproc_def_token1] = ACTIONS(3471), + [aux_sym_preproc_if_token1] = ACTIONS(3474), + [aux_sym_preproc_if_token2] = ACTIONS(3477), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3479), + [aux_sym_preproc_else_token1] = ACTIONS(3477), + [aux_sym_preproc_elif_token1] = ACTIONS(3477), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3477), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3477), + [sym_preproc_directive] = ACTIONS(3482), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_AMP_AMP] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym___extension__] = ACTIONS(3500), + [anon_sym_typedef] = ACTIONS(3503), + [anon_sym_extern] = ACTIONS(3506), + [anon_sym___attribute__] = ACTIONS(3509), + [anon_sym_COLON_COLON] = ACTIONS(3512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3521), + [anon_sym_signed] = ACTIONS(3524), + [anon_sym_unsigned] = ACTIONS(3524), + [anon_sym_long] = ACTIONS(3524), + [anon_sym_short] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_register] = ACTIONS(3506), + [anon_sym_inline] = ACTIONS(3506), + [anon_sym___inline] = ACTIONS(3506), + [anon_sym___inline__] = ACTIONS(3506), + [anon_sym___forceinline] = ACTIONS(3506), + [anon_sym_thread_local] = ACTIONS(3506), + [anon_sym___thread] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_constexpr] = ACTIONS(3530), + [anon_sym_volatile] = ACTIONS(3530), + [anon_sym_restrict] = ACTIONS(3530), + [anon_sym___restrict__] = ACTIONS(3530), + [anon_sym__Atomic] = ACTIONS(3530), + [anon_sym__Noreturn] = ACTIONS(3530), + [anon_sym_noreturn] = ACTIONS(3530), + [anon_sym_mutable] = ACTIONS(3530), + [anon_sym_constinit] = ACTIONS(3530), + [anon_sym_consteval] = ACTIONS(3530), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3536), + [anon_sym_class] = ACTIONS(3539), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3548), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3554), + [anon_sym_alignas] = ACTIONS(3557), + [anon_sym_explicit] = ACTIONS(3560), + [anon_sym_typename] = ACTIONS(3563), + [anon_sym_template] = ACTIONS(3566), + [anon_sym_operator] = ACTIONS(3569), + [anon_sym_friend] = ACTIONS(3572), + [anon_sym_public] = ACTIONS(3575), + [anon_sym_private] = ACTIONS(3575), + [anon_sym_protected] = ACTIONS(3575), + [anon_sym_using] = ACTIONS(3578), + [anon_sym_static_assert] = ACTIONS(3581), }, - [652] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [674] = { + [sym_identifier] = ACTIONS(2961), + [aux_sym_preproc_include_token1] = ACTIONS(2961), + [aux_sym_preproc_def_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), + [sym_preproc_directive] = ACTIONS(2961), + [anon_sym_LPAREN2] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2963), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym___extension__] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym___attribute__] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), + [anon_sym___declspec] = ACTIONS(2961), + [anon_sym___based] = ACTIONS(2961), + [anon_sym___cdecl] = ACTIONS(2961), + [anon_sym___clrcall] = ACTIONS(2961), + [anon_sym___stdcall] = ACTIONS(2961), + [anon_sym___fastcall] = ACTIONS(2961), + [anon_sym___thiscall] = ACTIONS(2961), + [anon_sym___vectorcall] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_RBRACE] = ACTIONS(2963), + [anon_sym_signed] = ACTIONS(2961), + [anon_sym_unsigned] = ACTIONS(2961), + [anon_sym_long] = ACTIONS(2961), + [anon_sym_short] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_register] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym___inline] = ACTIONS(2961), + [anon_sym___inline__] = ACTIONS(2961), + [anon_sym___forceinline] = ACTIONS(2961), + [anon_sym_thread_local] = ACTIONS(2961), + [anon_sym___thread] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_constexpr] = ACTIONS(2961), + [anon_sym_volatile] = ACTIONS(2961), + [anon_sym_restrict] = ACTIONS(2961), + [anon_sym___restrict__] = ACTIONS(2961), + [anon_sym__Atomic] = ACTIONS(2961), + [anon_sym__Noreturn] = ACTIONS(2961), + [anon_sym_noreturn] = ACTIONS(2961), + [anon_sym_mutable] = ACTIONS(2961), + [anon_sym_constinit] = ACTIONS(2961), + [anon_sym_consteval] = ACTIONS(2961), + [sym_primitive_type] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_else] = ACTIONS(2961), + [anon_sym_switch] = ACTIONS(2961), + [anon_sym_case] = ACTIONS(2961), + [anon_sym_default] = ACTIONS(2961), + [anon_sym_while] = ACTIONS(2961), + [anon_sym_do] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_goto] = ACTIONS(2961), + [anon_sym___try] = ACTIONS(2961), + [anon_sym___leave] = ACTIONS(2961), + [anon_sym_not] = ACTIONS(2961), + [anon_sym_compl] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2963), + [anon_sym_PLUS_PLUS] = ACTIONS(2963), + [anon_sym_sizeof] = ACTIONS(2961), + [anon_sym___alignof__] = ACTIONS(2961), + [anon_sym___alignof] = ACTIONS(2961), + [anon_sym__alignof] = ACTIONS(2961), + [anon_sym_alignof] = ACTIONS(2961), + [anon_sym__Alignof] = ACTIONS(2961), + [anon_sym_offsetof] = ACTIONS(2961), + [anon_sym__Generic] = ACTIONS(2961), + [anon_sym_asm] = ACTIONS(2961), + [anon_sym___asm__] = ACTIONS(2961), + [sym_number_literal] = ACTIONS(2963), + [anon_sym_L_SQUOTE] = ACTIONS(2963), + [anon_sym_u_SQUOTE] = ACTIONS(2963), + [anon_sym_U_SQUOTE] = ACTIONS(2963), + [anon_sym_u8_SQUOTE] = ACTIONS(2963), + [anon_sym_SQUOTE] = ACTIONS(2963), + [anon_sym_L_DQUOTE] = ACTIONS(2963), + [anon_sym_u_DQUOTE] = ACTIONS(2963), + [anon_sym_U_DQUOTE] = ACTIONS(2963), + [anon_sym_u8_DQUOTE] = ACTIONS(2963), + [anon_sym_DQUOTE] = ACTIONS(2963), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [anon_sym_NULL] = ACTIONS(2961), + [anon_sym_nullptr] = ACTIONS(2961), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2961), + [anon_sym_virtual] = ACTIONS(2961), + [anon_sym_alignas] = ACTIONS(2961), + [anon_sym_explicit] = ACTIONS(2961), + [anon_sym_typename] = ACTIONS(2961), + [anon_sym_template] = ACTIONS(2961), + [anon_sym_operator] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2961), + [anon_sym_throw] = ACTIONS(2961), + [anon_sym_namespace] = ACTIONS(2961), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_static_assert] = ACTIONS(2961), + [anon_sym_concept] = ACTIONS(2961), + [anon_sym_co_return] = ACTIONS(2961), + [anon_sym_co_yield] = ACTIONS(2961), + [anon_sym_R_DQUOTE] = ACTIONS(2963), + [anon_sym_LR_DQUOTE] = ACTIONS(2963), + [anon_sym_uR_DQUOTE] = ACTIONS(2963), + [anon_sym_UR_DQUOTE] = ACTIONS(2963), + [anon_sym_u8R_DQUOTE] = ACTIONS(2963), + [anon_sym_co_await] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2961), + [sym_this] = ACTIONS(2961), }, - [653] = { - [sym__expression] = STATE(4766), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_extern] = ACTIONS(3472), - [anon_sym___attribute__] = ACTIONS(3472), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3474), - [anon_sym___declspec] = ACTIONS(3472), - [anon_sym_signed] = ACTIONS(3472), - [anon_sym_unsigned] = ACTIONS(3472), - [anon_sym_long] = ACTIONS(3472), - [anon_sym_short] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(3472), - [anon_sym_register] = ACTIONS(3472), - [anon_sym_inline] = ACTIONS(3472), - [anon_sym___inline] = ACTIONS(3472), - [anon_sym___inline__] = ACTIONS(3472), - [anon_sym___forceinline] = ACTIONS(3472), - [anon_sym_thread_local] = ACTIONS(3472), - [anon_sym___thread] = ACTIONS(3472), - [anon_sym_const] = ACTIONS(3472), - [anon_sym_constexpr] = ACTIONS(3472), - [anon_sym_volatile] = ACTIONS(3472), - [anon_sym_restrict] = ACTIONS(3472), - [anon_sym___restrict__] = ACTIONS(3472), - [anon_sym__Atomic] = ACTIONS(3472), - [anon_sym__Noreturn] = ACTIONS(3472), - [anon_sym_noreturn] = ACTIONS(3472), - [anon_sym_mutable] = ACTIONS(3472), - [anon_sym_constinit] = ACTIONS(3472), - [anon_sym_consteval] = ACTIONS(3472), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(3472), - [anon_sym_class] = ACTIONS(3472), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3472), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3472), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(3472), - [anon_sym_alignas] = ACTIONS(3472), - [anon_sym_typename] = ACTIONS(3472), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [675] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [654] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [676] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [655] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [677] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [656] = { - [sym_identifier] = ACTIONS(2973), - [aux_sym_preproc_include_token1] = ACTIONS(2973), - [aux_sym_preproc_def_token1] = ACTIONS(2973), - [aux_sym_preproc_if_token1] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2975), - [anon_sym_BANG] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym___extension__] = ACTIONS(2973), - [anon_sym_typedef] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), - [anon_sym___declspec] = ACTIONS(2973), - [anon_sym___based] = ACTIONS(2973), - [anon_sym___cdecl] = ACTIONS(2973), - [anon_sym___clrcall] = ACTIONS(2973), - [anon_sym___stdcall] = ACTIONS(2973), - [anon_sym___fastcall] = ACTIONS(2973), - [anon_sym___thiscall] = ACTIONS(2973), - [anon_sym___vectorcall] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_RBRACE] = ACTIONS(2975), - [anon_sym_signed] = ACTIONS(2973), - [anon_sym_unsigned] = ACTIONS(2973), - [anon_sym_long] = ACTIONS(2973), - [anon_sym_short] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_register] = ACTIONS(2973), - [anon_sym_inline] = ACTIONS(2973), - [anon_sym___inline] = ACTIONS(2973), - [anon_sym___inline__] = ACTIONS(2973), - [anon_sym___forceinline] = ACTIONS(2973), - [anon_sym_thread_local] = ACTIONS(2973), - [anon_sym___thread] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_constexpr] = ACTIONS(2973), - [anon_sym_volatile] = ACTIONS(2973), - [anon_sym_restrict] = ACTIONS(2973), - [anon_sym___restrict__] = ACTIONS(2973), - [anon_sym__Atomic] = ACTIONS(2973), - [anon_sym__Noreturn] = ACTIONS(2973), - [anon_sym_noreturn] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [sym_primitive_type] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2973), - [anon_sym_switch] = ACTIONS(2973), - [anon_sym_case] = ACTIONS(2973), - [anon_sym_default] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym___try] = ACTIONS(2973), - [anon_sym___leave] = ACTIONS(2973), - [anon_sym_not] = ACTIONS(2973), - [anon_sym_compl] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_sizeof] = ACTIONS(2973), - [anon_sym___alignof__] = ACTIONS(2973), - [anon_sym___alignof] = ACTIONS(2973), - [anon_sym__alignof] = ACTIONS(2973), - [anon_sym_alignof] = ACTIONS(2973), - [anon_sym__Alignof] = ACTIONS(2973), - [anon_sym_offsetof] = ACTIONS(2973), - [anon_sym__Generic] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym___asm__] = ACTIONS(2973), - [sym_number_literal] = ACTIONS(2975), - [anon_sym_L_SQUOTE] = ACTIONS(2975), - [anon_sym_u_SQUOTE] = ACTIONS(2975), - [anon_sym_U_SQUOTE] = ACTIONS(2975), - [anon_sym_u8_SQUOTE] = ACTIONS(2975), - [anon_sym_SQUOTE] = ACTIONS(2975), - [anon_sym_L_DQUOTE] = ACTIONS(2975), - [anon_sym_u_DQUOTE] = ACTIONS(2975), - [anon_sym_U_DQUOTE] = ACTIONS(2975), - [anon_sym_u8_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2975), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [anon_sym_NULL] = ACTIONS(2973), - [anon_sym_nullptr] = ACTIONS(2973), + [678] = { + [sym_identifier] = ACTIONS(2957), + [aux_sym_preproc_include_token1] = ACTIONS(2957), + [aux_sym_preproc_def_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), + [sym_preproc_directive] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym___extension__] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym___attribute__] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), + [anon_sym___declspec] = ACTIONS(2957), + [anon_sym___based] = ACTIONS(2957), + [anon_sym___cdecl] = ACTIONS(2957), + [anon_sym___clrcall] = ACTIONS(2957), + [anon_sym___stdcall] = ACTIONS(2957), + [anon_sym___fastcall] = ACTIONS(2957), + [anon_sym___thiscall] = ACTIONS(2957), + [anon_sym___vectorcall] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_RBRACE] = ACTIONS(2959), + [anon_sym_signed] = ACTIONS(2957), + [anon_sym_unsigned] = ACTIONS(2957), + [anon_sym_long] = ACTIONS(2957), + [anon_sym_short] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym___inline] = ACTIONS(2957), + [anon_sym___inline__] = ACTIONS(2957), + [anon_sym___forceinline] = ACTIONS(2957), + [anon_sym_thread_local] = ACTIONS(2957), + [anon_sym___thread] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_constexpr] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_restrict] = ACTIONS(2957), + [anon_sym___restrict__] = ACTIONS(2957), + [anon_sym__Atomic] = ACTIONS(2957), + [anon_sym__Noreturn] = ACTIONS(2957), + [anon_sym_noreturn] = ACTIONS(2957), + [anon_sym_mutable] = ACTIONS(2957), + [anon_sym_constinit] = ACTIONS(2957), + [anon_sym_consteval] = ACTIONS(2957), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym___try] = ACTIONS(2957), + [anon_sym___leave] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_compl] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym___alignof__] = ACTIONS(2957), + [anon_sym___alignof] = ACTIONS(2957), + [anon_sym__alignof] = ACTIONS(2957), + [anon_sym_alignof] = ACTIONS(2957), + [anon_sym__Alignof] = ACTIONS(2957), + [anon_sym_offsetof] = ACTIONS(2957), + [anon_sym__Generic] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym___asm__] = ACTIONS(2957), + [sym_number_literal] = ACTIONS(2959), + [anon_sym_L_SQUOTE] = ACTIONS(2959), + [anon_sym_u_SQUOTE] = ACTIONS(2959), + [anon_sym_U_SQUOTE] = ACTIONS(2959), + [anon_sym_u8_SQUOTE] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_L_DQUOTE] = ACTIONS(2959), + [anon_sym_u_DQUOTE] = ACTIONS(2959), + [anon_sym_U_DQUOTE] = ACTIONS(2959), + [anon_sym_u8_DQUOTE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [anon_sym_NULL] = ACTIONS(2957), + [anon_sym_nullptr] = ACTIONS(2957), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_virtual] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym_explicit] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_operator] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_throw] = ACTIONS(2973), - [anon_sym_namespace] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2973), - [anon_sym_static_assert] = ACTIONS(2973), - [anon_sym_concept] = ACTIONS(2973), - [anon_sym_co_return] = ACTIONS(2973), - [anon_sym_co_yield] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_requires] = ACTIONS(2973), - [sym_this] = ACTIONS(2973), + [sym_auto] = ACTIONS(2957), + [anon_sym_decltype] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_alignas] = ACTIONS(2957), + [anon_sym_explicit] = ACTIONS(2957), + [anon_sym_typename] = ACTIONS(2957), + [anon_sym_template] = ACTIONS(2957), + [anon_sym_operator] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_delete] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_static_assert] = ACTIONS(2957), + [anon_sym_concept] = ACTIONS(2957), + [anon_sym_co_return] = ACTIONS(2957), + [anon_sym_co_yield] = ACTIONS(2957), + [anon_sym_R_DQUOTE] = ACTIONS(2959), + [anon_sym_LR_DQUOTE] = ACTIONS(2959), + [anon_sym_uR_DQUOTE] = ACTIONS(2959), + [anon_sym_UR_DQUOTE] = ACTIONS(2959), + [anon_sym_u8R_DQUOTE] = ACTIONS(2959), + [anon_sym_co_await] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_requires] = ACTIONS(2957), + [sym_this] = ACTIONS(2957), }, - [657] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [679] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [658] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [680] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [659] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [681] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token2] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [660] = { - [sym_identifier] = ACTIONS(2921), - [aux_sym_preproc_include_token1] = ACTIONS(2921), - [aux_sym_preproc_def_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token2] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), - [sym_preproc_directive] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym___based] = ACTIONS(2921), - [anon_sym___cdecl] = ACTIONS(2921), - [anon_sym___clrcall] = ACTIONS(2921), - [anon_sym___stdcall] = ACTIONS(2921), - [anon_sym___fastcall] = ACTIONS(2921), - [anon_sym___thiscall] = ACTIONS(2921), - [anon_sym___vectorcall] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_case] = ACTIONS(2921), - [anon_sym_default] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym___try] = ACTIONS(2921), - [anon_sym___leave] = ACTIONS(2921), - [anon_sym_not] = ACTIONS(2921), - [anon_sym_compl] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_sizeof] = ACTIONS(2921), - [anon_sym___alignof__] = ACTIONS(2921), - [anon_sym___alignof] = ACTIONS(2921), - [anon_sym__alignof] = ACTIONS(2921), - [anon_sym_alignof] = ACTIONS(2921), - [anon_sym__Alignof] = ACTIONS(2921), - [anon_sym_offsetof] = ACTIONS(2921), - [anon_sym__Generic] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym___asm__] = ACTIONS(2921), - [sym_number_literal] = ACTIONS(2923), - [anon_sym_L_SQUOTE] = ACTIONS(2923), - [anon_sym_u_SQUOTE] = ACTIONS(2923), - [anon_sym_U_SQUOTE] = ACTIONS(2923), - [anon_sym_u8_SQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_L_DQUOTE] = ACTIONS(2923), - [anon_sym_u_DQUOTE] = ACTIONS(2923), - [anon_sym_U_DQUOTE] = ACTIONS(2923), - [anon_sym_u8_DQUOTE] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [anon_sym_NULL] = ACTIONS(2921), - [anon_sym_nullptr] = ACTIONS(2921), + [682] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_explicit] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_namespace] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_static_assert] = ACTIONS(2921), - [anon_sym_concept] = ACTIONS(2921), - [anon_sym_co_return] = ACTIONS(2921), - [anon_sym_co_yield] = ACTIONS(2921), - [anon_sym_R_DQUOTE] = ACTIONS(2923), - [anon_sym_LR_DQUOTE] = ACTIONS(2923), - [anon_sym_uR_DQUOTE] = ACTIONS(2923), - [anon_sym_UR_DQUOTE] = ACTIONS(2923), - [anon_sym_u8R_DQUOTE] = ACTIONS(2923), - [anon_sym_co_await] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_requires] = ACTIONS(2921), - [sym_this] = ACTIONS(2921), - }, - [661] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [662] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [683] = { + [sym_identifier] = ACTIONS(2965), + [aux_sym_preproc_include_token1] = ACTIONS(2965), + [aux_sym_preproc_def_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), + [sym_preproc_directive] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym___cdecl] = ACTIONS(2965), + [anon_sym___clrcall] = ACTIONS(2965), + [anon_sym___stdcall] = ACTIONS(2965), + [anon_sym___fastcall] = ACTIONS(2965), + [anon_sym___thiscall] = ACTIONS(2965), + [anon_sym___vectorcall] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_RBRACE] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_else] = ACTIONS(2965), + [anon_sym_switch] = ACTIONS(2965), + [anon_sym_case] = ACTIONS(2965), + [anon_sym_default] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2965), + [anon_sym_do] = ACTIONS(2965), + [anon_sym_for] = ACTIONS(2965), + [anon_sym_return] = ACTIONS(2965), + [anon_sym_break] = ACTIONS(2965), + [anon_sym_continue] = ACTIONS(2965), + [anon_sym_goto] = ACTIONS(2965), + [anon_sym___try] = ACTIONS(2965), + [anon_sym___leave] = ACTIONS(2965), + [anon_sym_not] = ACTIONS(2965), + [anon_sym_compl] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_sizeof] = ACTIONS(2965), + [anon_sym___alignof__] = ACTIONS(2965), + [anon_sym___alignof] = ACTIONS(2965), + [anon_sym__alignof] = ACTIONS(2965), + [anon_sym_alignof] = ACTIONS(2965), + [anon_sym__Alignof] = ACTIONS(2965), + [anon_sym_offsetof] = ACTIONS(2965), + [anon_sym__Generic] = ACTIONS(2965), + [anon_sym_asm] = ACTIONS(2965), + [anon_sym___asm__] = ACTIONS(2965), + [sym_number_literal] = ACTIONS(2967), + [anon_sym_L_SQUOTE] = ACTIONS(2967), + [anon_sym_u_SQUOTE] = ACTIONS(2967), + [anon_sym_U_SQUOTE] = ACTIONS(2967), + [anon_sym_u8_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_L_DQUOTE] = ACTIONS(2967), + [anon_sym_u_DQUOTE] = ACTIONS(2967), + [anon_sym_U_DQUOTE] = ACTIONS(2967), + [anon_sym_u8_DQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [anon_sym_NULL] = ACTIONS(2965), + [anon_sym_nullptr] = ACTIONS(2965), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_try] = ACTIONS(2965), + [anon_sym_delete] = ACTIONS(2965), + [anon_sym_throw] = ACTIONS(2965), + [anon_sym_namespace] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), + [anon_sym_concept] = ACTIONS(2965), + [anon_sym_co_return] = ACTIONS(2965), + [anon_sym_co_yield] = ACTIONS(2965), + [anon_sym_R_DQUOTE] = ACTIONS(2967), + [anon_sym_LR_DQUOTE] = ACTIONS(2967), + [anon_sym_uR_DQUOTE] = ACTIONS(2967), + [anon_sym_UR_DQUOTE] = ACTIONS(2967), + [anon_sym_u8R_DQUOTE] = ACTIONS(2967), + [anon_sym_co_await] = ACTIONS(2965), + [anon_sym_new] = ACTIONS(2965), + [anon_sym_requires] = ACTIONS(2965), + [sym_this] = ACTIONS(2965), }, - [663] = { - [sym_identifier] = ACTIONS(2933), - [aux_sym_preproc_include_token1] = ACTIONS(2933), - [aux_sym_preproc_def_token1] = ACTIONS(2933), - [aux_sym_preproc_if_token1] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2933), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2933), - [sym_preproc_directive] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2933), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym___extension__] = ACTIONS(2933), - [anon_sym_typedef] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym___attribute__] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2933), - [anon_sym___based] = ACTIONS(2933), - [anon_sym___cdecl] = ACTIONS(2933), - [anon_sym___clrcall] = ACTIONS(2933), - [anon_sym___stdcall] = ACTIONS(2933), - [anon_sym___fastcall] = ACTIONS(2933), - [anon_sym___thiscall] = ACTIONS(2933), - [anon_sym___vectorcall] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_RBRACE] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2933), - [anon_sym_unsigned] = ACTIONS(2933), - [anon_sym_long] = ACTIONS(2933), - [anon_sym_short] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_register] = ACTIONS(2933), - [anon_sym_inline] = ACTIONS(2933), - [anon_sym___inline] = ACTIONS(2933), - [anon_sym___inline__] = ACTIONS(2933), - [anon_sym___forceinline] = ACTIONS(2933), - [anon_sym_thread_local] = ACTIONS(2933), - [anon_sym___thread] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_constexpr] = ACTIONS(2933), - [anon_sym_volatile] = ACTIONS(2933), - [anon_sym_restrict] = ACTIONS(2933), - [anon_sym___restrict__] = ACTIONS(2933), - [anon_sym__Atomic] = ACTIONS(2933), - [anon_sym__Noreturn] = ACTIONS(2933), - [anon_sym_noreturn] = ACTIONS(2933), - [anon_sym_mutable] = ACTIONS(2933), - [anon_sym_constinit] = ACTIONS(2933), - [anon_sym_consteval] = ACTIONS(2933), - [sym_primitive_type] = ACTIONS(2933), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2933), - [anon_sym_switch] = ACTIONS(2933), - [anon_sym_case] = ACTIONS(2933), - [anon_sym_default] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_do] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_goto] = ACTIONS(2933), - [anon_sym___try] = ACTIONS(2933), - [anon_sym___leave] = ACTIONS(2933), - [anon_sym_not] = ACTIONS(2933), - [anon_sym_compl] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(2933), - [anon_sym___alignof__] = ACTIONS(2933), - [anon_sym___alignof] = ACTIONS(2933), - [anon_sym__alignof] = ACTIONS(2933), - [anon_sym_alignof] = ACTIONS(2933), - [anon_sym__Alignof] = ACTIONS(2933), - [anon_sym_offsetof] = ACTIONS(2933), - [anon_sym__Generic] = ACTIONS(2933), - [anon_sym_asm] = ACTIONS(2933), - [anon_sym___asm__] = ACTIONS(2933), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_L_SQUOTE] = ACTIONS(2935), - [anon_sym_u_SQUOTE] = ACTIONS(2935), - [anon_sym_U_SQUOTE] = ACTIONS(2935), - [anon_sym_u8_SQUOTE] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_L_DQUOTE] = ACTIONS(2935), - [anon_sym_u_DQUOTE] = ACTIONS(2935), - [anon_sym_U_DQUOTE] = ACTIONS(2935), - [anon_sym_u8_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_true] = ACTIONS(2933), - [sym_false] = ACTIONS(2933), - [anon_sym_NULL] = ACTIONS(2933), - [anon_sym_nullptr] = ACTIONS(2933), + [684] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2933), - [anon_sym_decltype] = ACTIONS(2933), - [anon_sym_virtual] = ACTIONS(2933), - [anon_sym_alignas] = ACTIONS(2933), - [anon_sym_explicit] = ACTIONS(2933), - [anon_sym_typename] = ACTIONS(2933), - [anon_sym_template] = ACTIONS(2933), - [anon_sym_operator] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2933), - [anon_sym_delete] = ACTIONS(2933), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_using] = ACTIONS(2933), - [anon_sym_static_assert] = ACTIONS(2933), - [anon_sym_concept] = ACTIONS(2933), - [anon_sym_co_return] = ACTIONS(2933), - [anon_sym_co_yield] = ACTIONS(2933), - [anon_sym_R_DQUOTE] = ACTIONS(2935), - [anon_sym_LR_DQUOTE] = ACTIONS(2935), - [anon_sym_uR_DQUOTE] = ACTIONS(2935), - [anon_sym_UR_DQUOTE] = ACTIONS(2935), - [anon_sym_u8R_DQUOTE] = ACTIONS(2935), - [anon_sym_co_await] = ACTIONS(2933), - [anon_sym_new] = ACTIONS(2933), - [anon_sym_requires] = ACTIONS(2933), - [sym_this] = ACTIONS(2933), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [664] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [685] = { + [ts_builtin_sym_end] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2945), + [aux_sym_preproc_include_token1] = ACTIONS(2945), + [aux_sym_preproc_def_token1] = ACTIONS(2945), + [aux_sym_preproc_if_token1] = ACTIONS(2945), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), + [sym_preproc_directive] = ACTIONS(2945), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_SEMI] = ACTIONS(2947), + [anon_sym___extension__] = ACTIONS(2945), + [anon_sym_typedef] = ACTIONS(2945), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym___attribute__] = ACTIONS(2945), + [anon_sym_COLON_COLON] = ACTIONS(2947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), + [anon_sym___declspec] = ACTIONS(2945), + [anon_sym___based] = ACTIONS(2945), + [anon_sym___cdecl] = ACTIONS(2945), + [anon_sym___clrcall] = ACTIONS(2945), + [anon_sym___stdcall] = ACTIONS(2945), + [anon_sym___fastcall] = ACTIONS(2945), + [anon_sym___thiscall] = ACTIONS(2945), + [anon_sym___vectorcall] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_signed] = ACTIONS(2945), + [anon_sym_unsigned] = ACTIONS(2945), + [anon_sym_long] = ACTIONS(2945), + [anon_sym_short] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_register] = ACTIONS(2945), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym___inline] = ACTIONS(2945), + [anon_sym___inline__] = ACTIONS(2945), + [anon_sym___forceinline] = ACTIONS(2945), + [anon_sym_thread_local] = ACTIONS(2945), + [anon_sym___thread] = ACTIONS(2945), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_constexpr] = ACTIONS(2945), + [anon_sym_volatile] = ACTIONS(2945), + [anon_sym_restrict] = ACTIONS(2945), + [anon_sym___restrict__] = ACTIONS(2945), + [anon_sym__Atomic] = ACTIONS(2945), + [anon_sym__Noreturn] = ACTIONS(2945), + [anon_sym_noreturn] = ACTIONS(2945), + [anon_sym_mutable] = ACTIONS(2945), + [anon_sym_constinit] = ACTIONS(2945), + [anon_sym_consteval] = ACTIONS(2945), + [sym_primitive_type] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(2945), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_else] = ACTIONS(2945), + [anon_sym_switch] = ACTIONS(2945), + [anon_sym_case] = ACTIONS(2945), + [anon_sym_default] = ACTIONS(2945), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_do] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [anon_sym_goto] = ACTIONS(2945), + [anon_sym___try] = ACTIONS(2945), + [anon_sym___leave] = ACTIONS(2945), + [anon_sym_not] = ACTIONS(2945), + [anon_sym_compl] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_sizeof] = ACTIONS(2945), + [anon_sym___alignof__] = ACTIONS(2945), + [anon_sym___alignof] = ACTIONS(2945), + [anon_sym__alignof] = ACTIONS(2945), + [anon_sym_alignof] = ACTIONS(2945), + [anon_sym__Alignof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2945), + [anon_sym__Generic] = ACTIONS(2945), + [anon_sym_asm] = ACTIONS(2945), + [anon_sym___asm__] = ACTIONS(2945), + [sym_number_literal] = ACTIONS(2947), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2947), + [anon_sym_u_DQUOTE] = ACTIONS(2947), + [anon_sym_U_DQUOTE] = ACTIONS(2947), + [anon_sym_u8_DQUOTE] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(2947), + [sym_true] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [anon_sym_NULL] = ACTIONS(2945), + [anon_sym_nullptr] = ACTIONS(2945), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [665] = { - [ts_builtin_sym_end] = ACTIONS(2879), - [sym_identifier] = ACTIONS(2877), - [aux_sym_preproc_include_token1] = ACTIONS(2877), - [aux_sym_preproc_def_token1] = ACTIONS(2877), - [aux_sym_preproc_if_token1] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2877), - [sym_preproc_directive] = ACTIONS(2877), - [anon_sym_LPAREN2] = ACTIONS(2879), - [anon_sym_BANG] = ACTIONS(2879), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2879), - [anon_sym_AMP_AMP] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym___extension__] = ACTIONS(2877), - [anon_sym_typedef] = ACTIONS(2877), - [anon_sym_extern] = ACTIONS(2877), - [anon_sym___attribute__] = ACTIONS(2877), - [anon_sym_COLON_COLON] = ACTIONS(2879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2879), - [anon_sym___declspec] = ACTIONS(2877), - [anon_sym___based] = ACTIONS(2877), - [anon_sym___cdecl] = ACTIONS(2877), - [anon_sym___clrcall] = ACTIONS(2877), - [anon_sym___stdcall] = ACTIONS(2877), - [anon_sym___fastcall] = ACTIONS(2877), - [anon_sym___thiscall] = ACTIONS(2877), - [anon_sym___vectorcall] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_signed] = ACTIONS(2877), - [anon_sym_unsigned] = ACTIONS(2877), - [anon_sym_long] = ACTIONS(2877), - [anon_sym_short] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_register] = ACTIONS(2877), - [anon_sym_inline] = ACTIONS(2877), - [anon_sym___inline] = ACTIONS(2877), - [anon_sym___inline__] = ACTIONS(2877), - [anon_sym___forceinline] = ACTIONS(2877), - [anon_sym_thread_local] = ACTIONS(2877), - [anon_sym___thread] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_constexpr] = ACTIONS(2877), - [anon_sym_volatile] = ACTIONS(2877), - [anon_sym_restrict] = ACTIONS(2877), - [anon_sym___restrict__] = ACTIONS(2877), - [anon_sym__Atomic] = ACTIONS(2877), - [anon_sym__Noreturn] = ACTIONS(2877), - [anon_sym_noreturn] = ACTIONS(2877), - [anon_sym_mutable] = ACTIONS(2877), - [anon_sym_constinit] = ACTIONS(2877), - [anon_sym_consteval] = ACTIONS(2877), - [sym_primitive_type] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_else] = ACTIONS(2877), - [anon_sym_switch] = ACTIONS(2877), - [anon_sym_case] = ACTIONS(2877), - [anon_sym_default] = ACTIONS(2877), - [anon_sym_while] = ACTIONS(2877), - [anon_sym_do] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_goto] = ACTIONS(2877), - [anon_sym___try] = ACTIONS(2877), - [anon_sym___leave] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2877), - [anon_sym_compl] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2877), - [anon_sym___alignof__] = ACTIONS(2877), - [anon_sym___alignof] = ACTIONS(2877), - [anon_sym__alignof] = ACTIONS(2877), - [anon_sym_alignof] = ACTIONS(2877), - [anon_sym__Alignof] = ACTIONS(2877), - [anon_sym_offsetof] = ACTIONS(2877), - [anon_sym__Generic] = ACTIONS(2877), - [anon_sym_asm] = ACTIONS(2877), - [anon_sym___asm__] = ACTIONS(2877), - [sym_number_literal] = ACTIONS(2879), - [anon_sym_L_SQUOTE] = ACTIONS(2879), - [anon_sym_u_SQUOTE] = ACTIONS(2879), - [anon_sym_U_SQUOTE] = ACTIONS(2879), - [anon_sym_u8_SQUOTE] = ACTIONS(2879), - [anon_sym_SQUOTE] = ACTIONS(2879), - [anon_sym_L_DQUOTE] = ACTIONS(2879), - [anon_sym_u_DQUOTE] = ACTIONS(2879), - [anon_sym_U_DQUOTE] = ACTIONS(2879), - [anon_sym_u8_DQUOTE] = ACTIONS(2879), - [anon_sym_DQUOTE] = ACTIONS(2879), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [anon_sym_NULL] = ACTIONS(2877), - [anon_sym_nullptr] = ACTIONS(2877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2877), - [anon_sym_decltype] = ACTIONS(2877), - [anon_sym_virtual] = ACTIONS(2877), - [anon_sym_alignas] = ACTIONS(2877), - [anon_sym_explicit] = ACTIONS(2877), - [anon_sym_typename] = ACTIONS(2877), - [anon_sym_template] = ACTIONS(2877), - [anon_sym_operator] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2877), - [anon_sym_delete] = ACTIONS(2877), - [anon_sym_throw] = ACTIONS(2877), - [anon_sym_namespace] = ACTIONS(2877), - [anon_sym_using] = ACTIONS(2877), - [anon_sym_static_assert] = ACTIONS(2877), - [anon_sym_concept] = ACTIONS(2877), - [anon_sym_co_return] = ACTIONS(2877), - [anon_sym_co_yield] = ACTIONS(2877), - [anon_sym_R_DQUOTE] = ACTIONS(2879), - [anon_sym_LR_DQUOTE] = ACTIONS(2879), - [anon_sym_uR_DQUOTE] = ACTIONS(2879), - [anon_sym_UR_DQUOTE] = ACTIONS(2879), - [anon_sym_u8R_DQUOTE] = ACTIONS(2879), - [anon_sym_co_await] = ACTIONS(2877), - [anon_sym_new] = ACTIONS(2877), - [anon_sym_requires] = ACTIONS(2877), - [sym_this] = ACTIONS(2877), + [sym_auto] = ACTIONS(2945), + [anon_sym_decltype] = ACTIONS(2945), + [anon_sym_virtual] = ACTIONS(2945), + [anon_sym_alignas] = ACTIONS(2945), + [anon_sym_explicit] = ACTIONS(2945), + [anon_sym_typename] = ACTIONS(2945), + [anon_sym_template] = ACTIONS(2945), + [anon_sym_operator] = ACTIONS(2945), + [anon_sym_try] = ACTIONS(2945), + [anon_sym_delete] = ACTIONS(2945), + [anon_sym_throw] = ACTIONS(2945), + [anon_sym_namespace] = ACTIONS(2945), + [anon_sym_using] = ACTIONS(2945), + [anon_sym_static_assert] = ACTIONS(2945), + [anon_sym_concept] = ACTIONS(2945), + [anon_sym_co_return] = ACTIONS(2945), + [anon_sym_co_yield] = ACTIONS(2945), + [anon_sym_R_DQUOTE] = ACTIONS(2947), + [anon_sym_LR_DQUOTE] = ACTIONS(2947), + [anon_sym_uR_DQUOTE] = ACTIONS(2947), + [anon_sym_UR_DQUOTE] = ACTIONS(2947), + [anon_sym_u8R_DQUOTE] = ACTIONS(2947), + [anon_sym_co_await] = ACTIONS(2945), + [anon_sym_new] = ACTIONS(2945), + [anon_sym_requires] = ACTIONS(2945), + [sym_this] = ACTIONS(2945), }, - [666] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [686] = { + [ts_builtin_sym_end] = ACTIONS(2955), + [sym_identifier] = ACTIONS(2953), + [aux_sym_preproc_include_token1] = ACTIONS(2953), + [aux_sym_preproc_def_token1] = ACTIONS(2953), + [aux_sym_preproc_if_token1] = ACTIONS(2953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), + [sym_preproc_directive] = ACTIONS(2953), + [anon_sym_LPAREN2] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym___extension__] = ACTIONS(2953), + [anon_sym_typedef] = ACTIONS(2953), + [anon_sym_extern] = ACTIONS(2953), + [anon_sym___attribute__] = ACTIONS(2953), + [anon_sym_COLON_COLON] = ACTIONS(2955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), + [anon_sym___declspec] = ACTIONS(2953), + [anon_sym___based] = ACTIONS(2953), + [anon_sym___cdecl] = ACTIONS(2953), + [anon_sym___clrcall] = ACTIONS(2953), + [anon_sym___stdcall] = ACTIONS(2953), + [anon_sym___fastcall] = ACTIONS(2953), + [anon_sym___thiscall] = ACTIONS(2953), + [anon_sym___vectorcall] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_signed] = ACTIONS(2953), + [anon_sym_unsigned] = ACTIONS(2953), + [anon_sym_long] = ACTIONS(2953), + [anon_sym_short] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(2953), + [anon_sym_static] = ACTIONS(2953), + [anon_sym_register] = ACTIONS(2953), + [anon_sym_inline] = ACTIONS(2953), + [anon_sym___inline] = ACTIONS(2953), + [anon_sym___inline__] = ACTIONS(2953), + [anon_sym___forceinline] = ACTIONS(2953), + [anon_sym_thread_local] = ACTIONS(2953), + [anon_sym___thread] = ACTIONS(2953), + [anon_sym_const] = ACTIONS(2953), + [anon_sym_constexpr] = ACTIONS(2953), + [anon_sym_volatile] = ACTIONS(2953), + [anon_sym_restrict] = ACTIONS(2953), + [anon_sym___restrict__] = ACTIONS(2953), + [anon_sym__Atomic] = ACTIONS(2953), + [anon_sym__Noreturn] = ACTIONS(2953), + [anon_sym_noreturn] = ACTIONS(2953), + [anon_sym_mutable] = ACTIONS(2953), + [anon_sym_constinit] = ACTIONS(2953), + [anon_sym_consteval] = ACTIONS(2953), + [sym_primitive_type] = ACTIONS(2953), + [anon_sym_enum] = ACTIONS(2953), + [anon_sym_class] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(2953), + [anon_sym_union] = ACTIONS(2953), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_else] = ACTIONS(2953), + [anon_sym_switch] = ACTIONS(2953), + [anon_sym_case] = ACTIONS(2953), + [anon_sym_default] = ACTIONS(2953), + [anon_sym_while] = ACTIONS(2953), + [anon_sym_do] = ACTIONS(2953), + [anon_sym_for] = ACTIONS(2953), + [anon_sym_return] = ACTIONS(2953), + [anon_sym_break] = ACTIONS(2953), + [anon_sym_continue] = ACTIONS(2953), + [anon_sym_goto] = ACTIONS(2953), + [anon_sym___try] = ACTIONS(2953), + [anon_sym___leave] = ACTIONS(2953), + [anon_sym_not] = ACTIONS(2953), + [anon_sym_compl] = ACTIONS(2953), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_sizeof] = ACTIONS(2953), + [anon_sym___alignof__] = ACTIONS(2953), + [anon_sym___alignof] = ACTIONS(2953), + [anon_sym__alignof] = ACTIONS(2953), + [anon_sym_alignof] = ACTIONS(2953), + [anon_sym__Alignof] = ACTIONS(2953), + [anon_sym_offsetof] = ACTIONS(2953), + [anon_sym__Generic] = ACTIONS(2953), + [anon_sym_asm] = ACTIONS(2953), + [anon_sym___asm__] = ACTIONS(2953), + [sym_number_literal] = ACTIONS(2955), + [anon_sym_L_SQUOTE] = ACTIONS(2955), + [anon_sym_u_SQUOTE] = ACTIONS(2955), + [anon_sym_U_SQUOTE] = ACTIONS(2955), + [anon_sym_u8_SQUOTE] = ACTIONS(2955), + [anon_sym_SQUOTE] = ACTIONS(2955), + [anon_sym_L_DQUOTE] = ACTIONS(2955), + [anon_sym_u_DQUOTE] = ACTIONS(2955), + [anon_sym_U_DQUOTE] = ACTIONS(2955), + [anon_sym_u8_DQUOTE] = ACTIONS(2955), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_true] = ACTIONS(2953), + [sym_false] = ACTIONS(2953), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [667] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2953), + [anon_sym_decltype] = ACTIONS(2953), + [anon_sym_virtual] = ACTIONS(2953), + [anon_sym_alignas] = ACTIONS(2953), + [anon_sym_explicit] = ACTIONS(2953), + [anon_sym_typename] = ACTIONS(2953), + [anon_sym_template] = ACTIONS(2953), + [anon_sym_operator] = ACTIONS(2953), + [anon_sym_try] = ACTIONS(2953), + [anon_sym_delete] = ACTIONS(2953), + [anon_sym_throw] = ACTIONS(2953), + [anon_sym_namespace] = ACTIONS(2953), + [anon_sym_using] = ACTIONS(2953), + [anon_sym_static_assert] = ACTIONS(2953), + [anon_sym_concept] = ACTIONS(2953), + [anon_sym_co_return] = ACTIONS(2953), + [anon_sym_co_yield] = ACTIONS(2953), + [anon_sym_R_DQUOTE] = ACTIONS(2955), + [anon_sym_LR_DQUOTE] = ACTIONS(2955), + [anon_sym_uR_DQUOTE] = ACTIONS(2955), + [anon_sym_UR_DQUOTE] = ACTIONS(2955), + [anon_sym_u8R_DQUOTE] = ACTIONS(2955), + [anon_sym_co_await] = ACTIONS(2953), + [anon_sym_new] = ACTIONS(2953), + [anon_sym_requires] = ACTIONS(2953), + [sym_this] = ACTIONS(2953), }, - [668] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [687] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [669] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [670] = { - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [688] = { + [ts_builtin_sym_end] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2925), + [aux_sym_preproc_include_token1] = ACTIONS(2925), + [aux_sym_preproc_def_token1] = ACTIONS(2925), + [aux_sym_preproc_if_token1] = ACTIONS(2925), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), + [sym_preproc_directive] = ACTIONS(2925), + [anon_sym_LPAREN2] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym___extension__] = ACTIONS(2925), + [anon_sym_typedef] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2925), + [anon_sym___attribute__] = ACTIONS(2925), + [anon_sym_COLON_COLON] = ACTIONS(2927), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), + [anon_sym___declspec] = ACTIONS(2925), + [anon_sym___based] = ACTIONS(2925), + [anon_sym___cdecl] = ACTIONS(2925), + [anon_sym___clrcall] = ACTIONS(2925), + [anon_sym___stdcall] = ACTIONS(2925), + [anon_sym___fastcall] = ACTIONS(2925), + [anon_sym___thiscall] = ACTIONS(2925), + [anon_sym___vectorcall] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_signed] = ACTIONS(2925), + [anon_sym_unsigned] = ACTIONS(2925), + [anon_sym_long] = ACTIONS(2925), + [anon_sym_short] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_register] = ACTIONS(2925), + [anon_sym_inline] = ACTIONS(2925), + [anon_sym___inline] = ACTIONS(2925), + [anon_sym___inline__] = ACTIONS(2925), + [anon_sym___forceinline] = ACTIONS(2925), + [anon_sym_thread_local] = ACTIONS(2925), + [anon_sym___thread] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_constexpr] = ACTIONS(2925), + [anon_sym_volatile] = ACTIONS(2925), + [anon_sym_restrict] = ACTIONS(2925), + [anon_sym___restrict__] = ACTIONS(2925), + [anon_sym__Atomic] = ACTIONS(2925), + [anon_sym__Noreturn] = ACTIONS(2925), + [anon_sym_noreturn] = ACTIONS(2925), + [anon_sym_mutable] = ACTIONS(2925), + [anon_sym_constinit] = ACTIONS(2925), + [anon_sym_consteval] = ACTIONS(2925), + [sym_primitive_type] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_class] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2925), + [anon_sym_switch] = ACTIONS(2925), + [anon_sym_case] = ACTIONS(2925), + [anon_sym_default] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_do] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym___try] = ACTIONS(2925), + [anon_sym___leave] = ACTIONS(2925), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_sizeof] = ACTIONS(2925), + [anon_sym___alignof__] = ACTIONS(2925), + [anon_sym___alignof] = ACTIONS(2925), + [anon_sym__alignof] = ACTIONS(2925), + [anon_sym_alignof] = ACTIONS(2925), + [anon_sym__Alignof] = ACTIONS(2925), + [anon_sym_offsetof] = ACTIONS(2925), + [anon_sym__Generic] = ACTIONS(2925), + [anon_sym_asm] = ACTIONS(2925), + [anon_sym___asm__] = ACTIONS(2925), + [sym_number_literal] = ACTIONS(2927), + [anon_sym_L_SQUOTE] = ACTIONS(2927), + [anon_sym_u_SQUOTE] = ACTIONS(2927), + [anon_sym_U_SQUOTE] = ACTIONS(2927), + [anon_sym_u8_SQUOTE] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2927), + [anon_sym_L_DQUOTE] = ACTIONS(2927), + [anon_sym_u_DQUOTE] = ACTIONS(2927), + [anon_sym_U_DQUOTE] = ACTIONS(2927), + [anon_sym_u8_DQUOTE] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2927), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [anon_sym_NULL] = ACTIONS(2925), + [anon_sym_nullptr] = ACTIONS(2925), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [671] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [672] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [673] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2925), + [anon_sym_decltype] = ACTIONS(2925), + [anon_sym_virtual] = ACTIONS(2925), + [anon_sym_alignas] = ACTIONS(2925), + [anon_sym_explicit] = ACTIONS(2925), + [anon_sym_typename] = ACTIONS(2925), + [anon_sym_template] = ACTIONS(2925), + [anon_sym_operator] = ACTIONS(2925), + [anon_sym_try] = ACTIONS(2925), + [anon_sym_delete] = ACTIONS(2925), + [anon_sym_throw] = ACTIONS(2925), + [anon_sym_namespace] = ACTIONS(2925), + [anon_sym_using] = ACTIONS(2925), + [anon_sym_static_assert] = ACTIONS(2925), + [anon_sym_concept] = ACTIONS(2925), + [anon_sym_co_return] = ACTIONS(2925), + [anon_sym_co_yield] = ACTIONS(2925), + [anon_sym_R_DQUOTE] = ACTIONS(2927), + [anon_sym_LR_DQUOTE] = ACTIONS(2927), + [anon_sym_uR_DQUOTE] = ACTIONS(2927), + [anon_sym_UR_DQUOTE] = ACTIONS(2927), + [anon_sym_u8R_DQUOTE] = ACTIONS(2927), + [anon_sym_co_await] = ACTIONS(2925), + [anon_sym_new] = ACTIONS(2925), + [anon_sym_requires] = ACTIONS(2925), + [sym_this] = ACTIONS(2925), }, - [674] = { - [sym_identifier] = ACTIONS(2985), - [aux_sym_preproc_include_token1] = ACTIONS(2985), - [aux_sym_preproc_def_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), - [sym_preproc_directive] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym___based] = ACTIONS(2985), - [anon_sym___cdecl] = ACTIONS(2985), - [anon_sym___clrcall] = ACTIONS(2985), - [anon_sym___stdcall] = ACTIONS(2985), - [anon_sym___fastcall] = ACTIONS(2985), - [anon_sym___thiscall] = ACTIONS(2985), - [anon_sym___vectorcall] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_case] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym___try] = ACTIONS(2985), - [anon_sym___leave] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2985), - [anon_sym_compl] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym___alignof__] = ACTIONS(2985), - [anon_sym___alignof] = ACTIONS(2985), - [anon_sym__alignof] = ACTIONS(2985), - [anon_sym_alignof] = ACTIONS(2985), - [anon_sym__Alignof] = ACTIONS(2985), - [anon_sym_offsetof] = ACTIONS(2985), - [anon_sym__Generic] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym___asm__] = ACTIONS(2985), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_L_SQUOTE] = ACTIONS(2987), - [anon_sym_u_SQUOTE] = ACTIONS(2987), - [anon_sym_U_SQUOTE] = ACTIONS(2987), - [anon_sym_u8_SQUOTE] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_L_DQUOTE] = ACTIONS(2987), - [anon_sym_u_DQUOTE] = ACTIONS(2987), - [anon_sym_U_DQUOTE] = ACTIONS(2987), - [anon_sym_u8_DQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [anon_sym_NULL] = ACTIONS(2985), - [anon_sym_nullptr] = ACTIONS(2985), + [689] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_explicit] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_operator] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_delete] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_static_assert] = ACTIONS(2985), - [anon_sym_concept] = ACTIONS(2985), - [anon_sym_co_return] = ACTIONS(2985), - [anon_sym_co_yield] = ACTIONS(2985), - [anon_sym_R_DQUOTE] = ACTIONS(2987), - [anon_sym_LR_DQUOTE] = ACTIONS(2987), - [anon_sym_uR_DQUOTE] = ACTIONS(2987), - [anon_sym_UR_DQUOTE] = ACTIONS(2987), - [anon_sym_u8R_DQUOTE] = ACTIONS(2987), - [anon_sym_co_await] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_requires] = ACTIONS(2985), - [sym_this] = ACTIONS(2985), - }, - [675] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [676] = { - [ts_builtin_sym_end] = ACTIONS(2983), - [sym_identifier] = ACTIONS(2981), - [aux_sym_preproc_include_token1] = ACTIONS(2981), - [aux_sym_preproc_def_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token1] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), - [sym_preproc_directive] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym___based] = ACTIONS(2981), - [anon_sym___cdecl] = ACTIONS(2981), - [anon_sym___clrcall] = ACTIONS(2981), - [anon_sym___stdcall] = ACTIONS(2981), - [anon_sym___fastcall] = ACTIONS(2981), - [anon_sym___thiscall] = ACTIONS(2981), - [anon_sym___vectorcall] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_case] = ACTIONS(2981), - [anon_sym_default] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_do] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym___try] = ACTIONS(2981), - [anon_sym___leave] = ACTIONS(2981), - [anon_sym_not] = ACTIONS(2981), - [anon_sym_compl] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_sizeof] = ACTIONS(2981), - [anon_sym___alignof__] = ACTIONS(2981), - [anon_sym___alignof] = ACTIONS(2981), - [anon_sym__alignof] = ACTIONS(2981), - [anon_sym_alignof] = ACTIONS(2981), - [anon_sym__Alignof] = ACTIONS(2981), - [anon_sym_offsetof] = ACTIONS(2981), - [anon_sym__Generic] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym___asm__] = ACTIONS(2981), - [sym_number_literal] = ACTIONS(2983), - [anon_sym_L_SQUOTE] = ACTIONS(2983), - [anon_sym_u_SQUOTE] = ACTIONS(2983), - [anon_sym_U_SQUOTE] = ACTIONS(2983), - [anon_sym_u8_SQUOTE] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2983), - [anon_sym_L_DQUOTE] = ACTIONS(2983), - [anon_sym_u_DQUOTE] = ACTIONS(2983), - [anon_sym_U_DQUOTE] = ACTIONS(2983), - [anon_sym_u8_DQUOTE] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [anon_sym_NULL] = ACTIONS(2981), - [anon_sym_nullptr] = ACTIONS(2981), + [690] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_delete] = ACTIONS(2981), - [anon_sym_throw] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2981), - [anon_sym_using] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), - [anon_sym_concept] = ACTIONS(2981), - [anon_sym_co_return] = ACTIONS(2981), - [anon_sym_co_yield] = ACTIONS(2981), - [anon_sym_R_DQUOTE] = ACTIONS(2983), - [anon_sym_LR_DQUOTE] = ACTIONS(2983), - [anon_sym_uR_DQUOTE] = ACTIONS(2983), - [anon_sym_UR_DQUOTE] = ACTIONS(2983), - [anon_sym_u8R_DQUOTE] = ACTIONS(2983), - [anon_sym_co_await] = ACTIONS(2981), - [anon_sym_new] = ACTIONS(2981), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2981), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [677] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [691] = { + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [678] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [692] = { + [sym_identifier] = ACTIONS(2891), + [aux_sym_preproc_include_token1] = ACTIONS(2891), + [aux_sym_preproc_def_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), + [sym_preproc_directive] = ACTIONS(2891), + [anon_sym_LPAREN2] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym___extension__] = ACTIONS(2891), + [anon_sym_typedef] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym___attribute__] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), + [anon_sym___declspec] = ACTIONS(2891), + [anon_sym___based] = ACTIONS(2891), + [anon_sym___cdecl] = ACTIONS(2891), + [anon_sym___clrcall] = ACTIONS(2891), + [anon_sym___stdcall] = ACTIONS(2891), + [anon_sym___fastcall] = ACTIONS(2891), + [anon_sym___thiscall] = ACTIONS(2891), + [anon_sym___vectorcall] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym_signed] = ACTIONS(2891), + [anon_sym_unsigned] = ACTIONS(2891), + [anon_sym_long] = ACTIONS(2891), + [anon_sym_short] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_register] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym___inline] = ACTIONS(2891), + [anon_sym___inline__] = ACTIONS(2891), + [anon_sym___forceinline] = ACTIONS(2891), + [anon_sym_thread_local] = ACTIONS(2891), + [anon_sym___thread] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_constexpr] = ACTIONS(2891), + [anon_sym_volatile] = ACTIONS(2891), + [anon_sym_restrict] = ACTIONS(2891), + [anon_sym___restrict__] = ACTIONS(2891), + [anon_sym__Atomic] = ACTIONS(2891), + [anon_sym__Noreturn] = ACTIONS(2891), + [anon_sym_noreturn] = ACTIONS(2891), + [anon_sym_mutable] = ACTIONS(2891), + [anon_sym_constinit] = ACTIONS(2891), + [anon_sym_consteval] = ACTIONS(2891), + [sym_primitive_type] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_else] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym___try] = ACTIONS(2891), + [anon_sym___leave] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_compl] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2891), + [anon_sym___alignof__] = ACTIONS(2891), + [anon_sym___alignof] = ACTIONS(2891), + [anon_sym__alignof] = ACTIONS(2891), + [anon_sym_alignof] = ACTIONS(2891), + [anon_sym__Alignof] = ACTIONS(2891), + [anon_sym_offsetof] = ACTIONS(2891), + [anon_sym__Generic] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym___asm__] = ACTIONS(2891), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_L_SQUOTE] = ACTIONS(2893), + [anon_sym_u_SQUOTE] = ACTIONS(2893), + [anon_sym_U_SQUOTE] = ACTIONS(2893), + [anon_sym_u8_SQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_L_DQUOTE] = ACTIONS(2893), + [anon_sym_u_DQUOTE] = ACTIONS(2893), + [anon_sym_U_DQUOTE] = ACTIONS(2893), + [anon_sym_u8_DQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [anon_sym_NULL] = ACTIONS(2891), + [anon_sym_nullptr] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2891), + [anon_sym_virtual] = ACTIONS(2891), + [anon_sym_alignas] = ACTIONS(2891), + [anon_sym_explicit] = ACTIONS(2891), + [anon_sym_typename] = ACTIONS(2891), + [anon_sym_template] = ACTIONS(2891), + [anon_sym_operator] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_static_assert] = ACTIONS(2891), + [anon_sym_concept] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2891), + [anon_sym_co_yield] = ACTIONS(2891), + [anon_sym_R_DQUOTE] = ACTIONS(2893), + [anon_sym_LR_DQUOTE] = ACTIONS(2893), + [anon_sym_uR_DQUOTE] = ACTIONS(2893), + [anon_sym_UR_DQUOTE] = ACTIONS(2893), + [anon_sym_u8R_DQUOTE] = ACTIONS(2893), + [anon_sym_co_await] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_requires] = ACTIONS(2891), + [sym_this] = ACTIONS(2891), }, - [679] = { + [693] = { + [sym_type_qualifier] = STATE(4547), + [sym__type_specifier] = STATE(5424), + [sym_sized_type_specifier] = STATE(3342), + [sym_enum_specifier] = STATE(3342), + [sym_struct_specifier] = STATE(3342), + [sym_union_specifier] = STATE(3342), + [sym__expression] = STATE(5049), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_type_descriptor] = STATE(7885), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_placeholder_type_specifier] = STATE(3342), + [sym_decltype_auto] = STATE(3344), + [sym_decltype] = STATE(3223), + [sym_class_specifier] = STATE(3342), + [sym__class_name] = STATE(8280), + [sym_dependent_type] = STATE(3342), + [sym_template_type] = STATE(5949), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_type_parameter_pack_expansion] = STATE(8125), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6234), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(5955), + [sym_user_defined_literal] = STATE(4083), + [aux_sym__type_definition_type_repeat1] = STATE(4547), + [aux_sym_sized_type_specifier_repeat1] = STATE(2729), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3374), + [anon_sym_typename] = ACTIONS(3376), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [694] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [695] = { [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_preproc_else_in_field_declaration_list] = STATE(9294), - [sym_preproc_elif_in_field_declaration_list] = STATE(9294), + [sym_preproc_else_in_field_declaration_list] = STATE(8812), + [sym_preproc_elif_in_field_declaration_list] = STATE(8812), [sym_type_definition] = STATE(955), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6188), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6205), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym__field_declaration_list_item] = STATE(955), [sym_field_declaration] = STATE(955), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(955), - [sym_operator_cast] = STATE(7176), + [sym_operator_cast] = STATE(7192), [sym_inline_method_definition] = STATE(955), - [sym__constructor_specifiers] = STATE(2018), + [sym__constructor_specifiers] = STATE(2057), [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(8857), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), + [sym_access_specifier] = STATE(8453), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), [sym_using_declaration] = STATE(955), [sym_alias_declaration] = STATE(955), [sym_static_assert_declaration] = STATE(955), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3430), - [aux_sym_preproc_if_token2] = ACTIONS(3476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3432), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3584), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3438), - [anon_sym_typedef] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3444), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), @@ -184010,7 +186468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -184030,2954 +186488,1492 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3446), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_static_assert] = ACTIONS(3448), + [anon_sym_friend] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_static_assert] = ACTIONS(3452), }, - [680] = { - [sym_identifier] = ACTIONS(2981), - [aux_sym_preproc_include_token1] = ACTIONS(2981), - [aux_sym_preproc_def_token1] = ACTIONS(2981), - [aux_sym_preproc_if_token1] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), - [sym_preproc_directive] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym___based] = ACTIONS(2981), - [anon_sym___cdecl] = ACTIONS(2981), - [anon_sym___clrcall] = ACTIONS(2981), - [anon_sym___stdcall] = ACTIONS(2981), - [anon_sym___fastcall] = ACTIONS(2981), - [anon_sym___thiscall] = ACTIONS(2981), - [anon_sym___vectorcall] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_case] = ACTIONS(2981), - [anon_sym_default] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_do] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym___try] = ACTIONS(2981), - [anon_sym___leave] = ACTIONS(2981), - [anon_sym_not] = ACTIONS(2981), - [anon_sym_compl] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_sizeof] = ACTIONS(2981), - [anon_sym___alignof__] = ACTIONS(2981), - [anon_sym___alignof] = ACTIONS(2981), - [anon_sym__alignof] = ACTIONS(2981), - [anon_sym_alignof] = ACTIONS(2981), - [anon_sym__Alignof] = ACTIONS(2981), - [anon_sym_offsetof] = ACTIONS(2981), - [anon_sym__Generic] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym___asm__] = ACTIONS(2981), - [sym_number_literal] = ACTIONS(2983), - [anon_sym_L_SQUOTE] = ACTIONS(2983), - [anon_sym_u_SQUOTE] = ACTIONS(2983), - [anon_sym_U_SQUOTE] = ACTIONS(2983), - [anon_sym_u8_SQUOTE] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2983), - [anon_sym_L_DQUOTE] = ACTIONS(2983), - [anon_sym_u_DQUOTE] = ACTIONS(2983), - [anon_sym_U_DQUOTE] = ACTIONS(2983), - [anon_sym_u8_DQUOTE] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [anon_sym_NULL] = ACTIONS(2981), - [anon_sym_nullptr] = ACTIONS(2981), + [696] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_explicit] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_operator] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_delete] = ACTIONS(2981), - [anon_sym_throw] = ACTIONS(2981), - [anon_sym_namespace] = ACTIONS(2981), - [anon_sym_using] = ACTIONS(2981), - [anon_sym_static_assert] = ACTIONS(2981), - [anon_sym_concept] = ACTIONS(2981), - [anon_sym_co_return] = ACTIONS(2981), - [anon_sym_co_yield] = ACTIONS(2981), - [anon_sym_R_DQUOTE] = ACTIONS(2983), - [anon_sym_LR_DQUOTE] = ACTIONS(2983), - [anon_sym_uR_DQUOTE] = ACTIONS(2983), - [anon_sym_UR_DQUOTE] = ACTIONS(2983), - [anon_sym_u8R_DQUOTE] = ACTIONS(2983), - [anon_sym_co_await] = ACTIONS(2981), - [anon_sym_new] = ACTIONS(2981), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2981), - }, - [681] = { - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2985), - [aux_sym_preproc_include_token1] = ACTIONS(2985), - [aux_sym_preproc_def_token1] = ACTIONS(2985), - [aux_sym_preproc_if_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), - [sym_preproc_directive] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym___based] = ACTIONS(2985), - [anon_sym___cdecl] = ACTIONS(2985), - [anon_sym___clrcall] = ACTIONS(2985), - [anon_sym___stdcall] = ACTIONS(2985), - [anon_sym___fastcall] = ACTIONS(2985), - [anon_sym___thiscall] = ACTIONS(2985), - [anon_sym___vectorcall] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_case] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym___try] = ACTIONS(2985), - [anon_sym___leave] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2985), - [anon_sym_compl] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym___alignof__] = ACTIONS(2985), - [anon_sym___alignof] = ACTIONS(2985), - [anon_sym__alignof] = ACTIONS(2985), - [anon_sym_alignof] = ACTIONS(2985), - [anon_sym__Alignof] = ACTIONS(2985), - [anon_sym_offsetof] = ACTIONS(2985), - [anon_sym__Generic] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym___asm__] = ACTIONS(2985), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_L_SQUOTE] = ACTIONS(2987), - [anon_sym_u_SQUOTE] = ACTIONS(2987), - [anon_sym_U_SQUOTE] = ACTIONS(2987), - [anon_sym_u8_SQUOTE] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_L_DQUOTE] = ACTIONS(2987), - [anon_sym_u_DQUOTE] = ACTIONS(2987), - [anon_sym_U_DQUOTE] = ACTIONS(2987), - [anon_sym_u8_DQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [anon_sym_NULL] = ACTIONS(2985), - [anon_sym_nullptr] = ACTIONS(2985), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_explicit] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_operator] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_delete] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_namespace] = ACTIONS(2985), - [anon_sym_using] = ACTIONS(2985), - [anon_sym_static_assert] = ACTIONS(2985), - [anon_sym_concept] = ACTIONS(2985), - [anon_sym_co_return] = ACTIONS(2985), - [anon_sym_co_yield] = ACTIONS(2985), - [anon_sym_R_DQUOTE] = ACTIONS(2987), - [anon_sym_LR_DQUOTE] = ACTIONS(2987), - [anon_sym_uR_DQUOTE] = ACTIONS(2987), - [anon_sym_UR_DQUOTE] = ACTIONS(2987), - [anon_sym_u8R_DQUOTE] = ACTIONS(2987), - [anon_sym_co_await] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_requires] = ACTIONS(2985), - [sym_this] = ACTIONS(2985), - }, - [682] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [683] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [684] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [685] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [686] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [687] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [688] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [689] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [690] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [691] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [692] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [693] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [694] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [695] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [696] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, [697] = { - [sym_identifier] = ACTIONS(2953), - [aux_sym_preproc_include_token1] = ACTIONS(2953), - [aux_sym_preproc_def_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token2] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), - [sym_preproc_directive] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym___based] = ACTIONS(2953), - [anon_sym___cdecl] = ACTIONS(2953), - [anon_sym___clrcall] = ACTIONS(2953), - [anon_sym___stdcall] = ACTIONS(2953), - [anon_sym___fastcall] = ACTIONS(2953), - [anon_sym___thiscall] = ACTIONS(2953), - [anon_sym___vectorcall] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_default] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym___try] = ACTIONS(2953), - [anon_sym___leave] = ACTIONS(2953), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_compl] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2953), - [anon_sym___alignof] = ACTIONS(2953), - [anon_sym__alignof] = ACTIONS(2953), - [anon_sym_alignof] = ACTIONS(2953), - [anon_sym__Alignof] = ACTIONS(2953), - [anon_sym_offsetof] = ACTIONS(2953), - [anon_sym__Generic] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym___asm__] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2955), - [anon_sym_L_SQUOTE] = ACTIONS(2955), - [anon_sym_u_SQUOTE] = ACTIONS(2955), - [anon_sym_U_SQUOTE] = ACTIONS(2955), - [anon_sym_u8_SQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_L_DQUOTE] = ACTIONS(2955), - [anon_sym_u_DQUOTE] = ACTIONS(2955), - [anon_sym_U_DQUOTE] = ACTIONS(2955), - [anon_sym_u8_DQUOTE] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [anon_sym_NULL] = ACTIONS(2953), - [anon_sym_nullptr] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_explicit] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_operator] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_delete] = ACTIONS(2953), - [anon_sym_throw] = ACTIONS(2953), - [anon_sym_namespace] = ACTIONS(2953), - [anon_sym_using] = ACTIONS(2953), - [anon_sym_static_assert] = ACTIONS(2953), - [anon_sym_concept] = ACTIONS(2953), - [anon_sym_co_return] = ACTIONS(2953), - [anon_sym_co_yield] = ACTIONS(2953), - [anon_sym_R_DQUOTE] = ACTIONS(2955), - [anon_sym_LR_DQUOTE] = ACTIONS(2955), - [anon_sym_uR_DQUOTE] = ACTIONS(2955), - [anon_sym_UR_DQUOTE] = ACTIONS(2955), - [anon_sym_u8R_DQUOTE] = ACTIONS(2955), - [anon_sym_co_await] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_requires] = ACTIONS(2953), - [sym_this] = ACTIONS(2953), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [698] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_preproc_def] = STATE(695), + [sym_preproc_function_def] = STATE(695), + [sym_preproc_call] = STATE(695), + [sym_preproc_if_in_field_declaration_list] = STATE(695), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(695), + [sym_preproc_else_in_field_declaration_list] = STATE(8783), + [sym_preproc_elif_in_field_declaration_list] = STATE(8783), + [sym_type_definition] = STATE(695), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6205), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(695), + [sym_field_declaration] = STATE(695), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(695), + [sym_operator_cast] = STATE(7192), + [sym_inline_method_definition] = STATE(695), + [sym__constructor_specifiers] = STATE(2057), + [sym_operator_cast_definition] = STATE(695), + [sym_operator_cast_declaration] = STATE(695), + [sym_constructor_or_destructor_definition] = STATE(695), + [sym_constructor_or_destructor_declaration] = STATE(695), + [sym_friend_declaration] = STATE(695), + [sym_access_specifier] = STATE(8453), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(695), + [sym_alias_declaration] = STATE(695), + [sym_static_assert_declaration] = STATE(695), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(695), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3432), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3446), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_static_assert] = ACTIONS(3452), }, [699] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, [700] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [701] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, [702] = { + [sym__expression] = STATE(4857), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(3588), + [anon_sym_extern] = ACTIONS(3588), + [anon_sym___attribute__] = ACTIONS(3588), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3590), + [anon_sym___declspec] = ACTIONS(3588), + [anon_sym_signed] = ACTIONS(3588), + [anon_sym_unsigned] = ACTIONS(3588), + [anon_sym_long] = ACTIONS(3588), + [anon_sym_short] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(1426), + [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_mutable] = ACTIONS(3588), + [anon_sym_constinit] = ACTIONS(3588), + [anon_sym_consteval] = ACTIONS(3588), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_struct] = ACTIONS(3588), + [anon_sym_union] = ACTIONS(3588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3588), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(3588), + [anon_sym_alignas] = ACTIONS(3588), + [anon_sym_typename] = ACTIONS(3588), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [703] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [704] = { + [sym_identifier] = ACTIONS(2989), + [aux_sym_preproc_include_token1] = ACTIONS(2989), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token2] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), + [sym_preproc_directive] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym___based] = ACTIONS(2989), + [anon_sym___cdecl] = ACTIONS(2989), + [anon_sym___clrcall] = ACTIONS(2989), + [anon_sym___stdcall] = ACTIONS(2989), + [anon_sym___fastcall] = ACTIONS(2989), + [anon_sym___thiscall] = ACTIONS(2989), + [anon_sym___vectorcall] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_else] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_case] = ACTIONS(2989), + [anon_sym_default] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym___try] = ACTIONS(2989), + [anon_sym___leave] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2989), + [anon_sym_compl] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2989), + [anon_sym___alignof__] = ACTIONS(2989), + [anon_sym___alignof] = ACTIONS(2989), + [anon_sym__alignof] = ACTIONS(2989), + [anon_sym_alignof] = ACTIONS(2989), + [anon_sym__Alignof] = ACTIONS(2989), + [anon_sym_offsetof] = ACTIONS(2989), + [anon_sym__Generic] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym___asm__] = ACTIONS(2989), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [anon_sym_NULL] = ACTIONS(2989), + [anon_sym_nullptr] = ACTIONS(2989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_explicit] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_operator] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_namespace] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_static_assert] = ACTIONS(2989), + [anon_sym_concept] = ACTIONS(2989), + [anon_sym_co_return] = ACTIONS(2989), + [anon_sym_co_yield] = ACTIONS(2989), + [anon_sym_R_DQUOTE] = ACTIONS(2991), + [anon_sym_LR_DQUOTE] = ACTIONS(2991), + [anon_sym_uR_DQUOTE] = ACTIONS(2991), + [anon_sym_UR_DQUOTE] = ACTIONS(2991), + [anon_sym_u8R_DQUOTE] = ACTIONS(2991), + [anon_sym_co_await] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_requires] = ACTIONS(2989), + [sym_this] = ACTIONS(2989), + }, + [705] = { + [sym_identifier] = ACTIONS(2887), + [aux_sym_preproc_include_token1] = ACTIONS(2887), + [aux_sym_preproc_def_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), + [sym_preproc_directive] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym___extension__] = ACTIONS(2887), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym___based] = ACTIONS(2887), + [anon_sym___cdecl] = ACTIONS(2887), + [anon_sym___clrcall] = ACTIONS(2887), + [anon_sym___stdcall] = ACTIONS(2887), + [anon_sym___fastcall] = ACTIONS(2887), + [anon_sym___thiscall] = ACTIONS(2887), + [anon_sym___vectorcall] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym___inline] = ACTIONS(2887), + [anon_sym___inline__] = ACTIONS(2887), + [anon_sym___forceinline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym___thread] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym___restrict__] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym__Noreturn] = ACTIONS(2887), + [anon_sym_noreturn] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_else] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym___try] = ACTIONS(2887), + [anon_sym___leave] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [anon_sym___alignof__] = ACTIONS(2887), + [anon_sym___alignof] = ACTIONS(2887), + [anon_sym__alignof] = ACTIONS(2887), + [anon_sym_alignof] = ACTIONS(2887), + [anon_sym__Alignof] = ACTIONS(2887), + [anon_sym_offsetof] = ACTIONS(2887), + [anon_sym__Generic] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym___asm__] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [anon_sym_NULL] = ACTIONS(2887), + [anon_sym_nullptr] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_alignas] = ACTIONS(2887), + [anon_sym_explicit] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_operator] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_static_assert] = ACTIONS(2887), + [anon_sym_concept] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_R_DQUOTE] = ACTIONS(2889), + [anon_sym_LR_DQUOTE] = ACTIONS(2889), + [anon_sym_uR_DQUOTE] = ACTIONS(2889), + [anon_sym_UR_DQUOTE] = ACTIONS(2889), + [anon_sym_u8R_DQUOTE] = ACTIONS(2889), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), + }, + [706] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [707] = { + [ts_builtin_sym_end] = ACTIONS(2971), [sym_identifier] = ACTIONS(2969), [aux_sym_preproc_include_token1] = ACTIONS(2969), [aux_sym_preproc_def_token1] = ACTIONS(2969), @@ -187009,7 +188005,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2969), [anon_sym___vectorcall] = ACTIONS(2969), [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), [anon_sym_signed] = ACTIONS(2969), [anon_sym_unsigned] = ACTIONS(2969), [anon_sym_long] = ACTIONS(2969), @@ -187110,2938 +188105,942 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2969), [sym_this] = ACTIONS(2969), }, - [703] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [704] = { - [sym_identifier] = ACTIONS(2889), - [aux_sym_preproc_include_token1] = ACTIONS(2889), - [aux_sym_preproc_def_token1] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2889), - [aux_sym_preproc_if_token2] = ACTIONS(2889), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2889), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2889), - [sym_preproc_directive] = ACTIONS(2889), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym___extension__] = ACTIONS(2889), - [anon_sym_typedef] = ACTIONS(2889), - [anon_sym_extern] = ACTIONS(2889), - [anon_sym___attribute__] = ACTIONS(2889), - [anon_sym_COLON_COLON] = ACTIONS(2891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2891), - [anon_sym___declspec] = ACTIONS(2889), - [anon_sym___based] = ACTIONS(2889), - [anon_sym___cdecl] = ACTIONS(2889), - [anon_sym___clrcall] = ACTIONS(2889), - [anon_sym___stdcall] = ACTIONS(2889), - [anon_sym___fastcall] = ACTIONS(2889), - [anon_sym___thiscall] = ACTIONS(2889), - [anon_sym___vectorcall] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_signed] = ACTIONS(2889), - [anon_sym_unsigned] = ACTIONS(2889), - [anon_sym_long] = ACTIONS(2889), - [anon_sym_short] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_register] = ACTIONS(2889), - [anon_sym_inline] = ACTIONS(2889), - [anon_sym___inline] = ACTIONS(2889), - [anon_sym___inline__] = ACTIONS(2889), - [anon_sym___forceinline] = ACTIONS(2889), - [anon_sym_thread_local] = ACTIONS(2889), - [anon_sym___thread] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_constexpr] = ACTIONS(2889), - [anon_sym_volatile] = ACTIONS(2889), - [anon_sym_restrict] = ACTIONS(2889), - [anon_sym___restrict__] = ACTIONS(2889), - [anon_sym__Atomic] = ACTIONS(2889), - [anon_sym__Noreturn] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_mutable] = ACTIONS(2889), - [anon_sym_constinit] = ACTIONS(2889), - [anon_sym_consteval] = ACTIONS(2889), - [sym_primitive_type] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_union] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_do] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_goto] = ACTIONS(2889), - [anon_sym___try] = ACTIONS(2889), - [anon_sym___leave] = ACTIONS(2889), - [anon_sym_not] = ACTIONS(2889), - [anon_sym_compl] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_sizeof] = ACTIONS(2889), - [anon_sym___alignof__] = ACTIONS(2889), - [anon_sym___alignof] = ACTIONS(2889), - [anon_sym__alignof] = ACTIONS(2889), - [anon_sym_alignof] = ACTIONS(2889), - [anon_sym__Alignof] = ACTIONS(2889), - [anon_sym_offsetof] = ACTIONS(2889), - [anon_sym__Generic] = ACTIONS(2889), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [anon_sym_L_SQUOTE] = ACTIONS(2891), - [anon_sym_u_SQUOTE] = ACTIONS(2891), - [anon_sym_U_SQUOTE] = ACTIONS(2891), - [anon_sym_u8_SQUOTE] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2891), - [anon_sym_L_DQUOTE] = ACTIONS(2891), - [anon_sym_u_DQUOTE] = ACTIONS(2891), - [anon_sym_U_DQUOTE] = ACTIONS(2891), - [anon_sym_u8_DQUOTE] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2891), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [anon_sym_NULL] = ACTIONS(2889), - [anon_sym_nullptr] = ACTIONS(2889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2889), - [anon_sym_decltype] = ACTIONS(2889), - [anon_sym_virtual] = ACTIONS(2889), - [anon_sym_alignas] = ACTIONS(2889), - [anon_sym_explicit] = ACTIONS(2889), - [anon_sym_typename] = ACTIONS(2889), - [anon_sym_template] = ACTIONS(2889), - [anon_sym_operator] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_namespace] = ACTIONS(2889), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_static_assert] = ACTIONS(2889), - [anon_sym_concept] = ACTIONS(2889), - [anon_sym_co_return] = ACTIONS(2889), - [anon_sym_co_yield] = ACTIONS(2889), - [anon_sym_R_DQUOTE] = ACTIONS(2891), - [anon_sym_LR_DQUOTE] = ACTIONS(2891), - [anon_sym_uR_DQUOTE] = ACTIONS(2891), - [anon_sym_UR_DQUOTE] = ACTIONS(2891), - [anon_sym_u8R_DQUOTE] = ACTIONS(2891), - [anon_sym_co_await] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_requires] = ACTIONS(2889), - [sym_this] = ACTIONS(2889), - }, - [705] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [706] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [707] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, [708] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [709] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2883), + [aux_sym_preproc_include_token1] = ACTIONS(2883), + [aux_sym_preproc_def_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), + [sym_preproc_directive] = ACTIONS(2883), + [anon_sym_LPAREN2] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym___extension__] = ACTIONS(2883), + [anon_sym_typedef] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym___attribute__] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), + [anon_sym___declspec] = ACTIONS(2883), + [anon_sym___based] = ACTIONS(2883), + [anon_sym___cdecl] = ACTIONS(2883), + [anon_sym___clrcall] = ACTIONS(2883), + [anon_sym___stdcall] = ACTIONS(2883), + [anon_sym___fastcall] = ACTIONS(2883), + [anon_sym___thiscall] = ACTIONS(2883), + [anon_sym___vectorcall] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_signed] = ACTIONS(2883), + [anon_sym_unsigned] = ACTIONS(2883), + [anon_sym_long] = ACTIONS(2883), + [anon_sym_short] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_register] = ACTIONS(2883), + [anon_sym_inline] = ACTIONS(2883), + [anon_sym___inline] = ACTIONS(2883), + [anon_sym___inline__] = ACTIONS(2883), + [anon_sym___forceinline] = ACTIONS(2883), + [anon_sym_thread_local] = ACTIONS(2883), + [anon_sym___thread] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_constexpr] = ACTIONS(2883), + [anon_sym_volatile] = ACTIONS(2883), + [anon_sym_restrict] = ACTIONS(2883), + [anon_sym___restrict__] = ACTIONS(2883), + [anon_sym__Atomic] = ACTIONS(2883), + [anon_sym__Noreturn] = ACTIONS(2883), + [anon_sym_noreturn] = ACTIONS(2883), + [anon_sym_mutable] = ACTIONS(2883), + [anon_sym_constinit] = ACTIONS(2883), + [anon_sym_consteval] = ACTIONS(2883), + [sym_primitive_type] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_else] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym___try] = ACTIONS(2883), + [anon_sym___leave] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2883), + [anon_sym_compl] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_sizeof] = ACTIONS(2883), + [anon_sym___alignof__] = ACTIONS(2883), + [anon_sym___alignof] = ACTIONS(2883), + [anon_sym__alignof] = ACTIONS(2883), + [anon_sym_alignof] = ACTIONS(2883), + [anon_sym__Alignof] = ACTIONS(2883), + [anon_sym_offsetof] = ACTIONS(2883), + [anon_sym__Generic] = ACTIONS(2883), + [anon_sym_asm] = ACTIONS(2883), + [anon_sym___asm__] = ACTIONS(2883), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_L_SQUOTE] = ACTIONS(2885), + [anon_sym_u_SQUOTE] = ACTIONS(2885), + [anon_sym_U_SQUOTE] = ACTIONS(2885), + [anon_sym_u8_SQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_L_DQUOTE] = ACTIONS(2885), + [anon_sym_u_DQUOTE] = ACTIONS(2885), + [anon_sym_U_DQUOTE] = ACTIONS(2885), + [anon_sym_u8_DQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [anon_sym_NULL] = ACTIONS(2883), + [anon_sym_nullptr] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2883), + [anon_sym_decltype] = ACTIONS(2883), + [anon_sym_virtual] = ACTIONS(2883), + [anon_sym_alignas] = ACTIONS(2883), + [anon_sym_explicit] = ACTIONS(2883), + [anon_sym_typename] = ACTIONS(2883), + [anon_sym_template] = ACTIONS(2883), + [anon_sym_operator] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_static_assert] = ACTIONS(2883), + [anon_sym_concept] = ACTIONS(2883), + [anon_sym_co_return] = ACTIONS(2883), + [anon_sym_co_yield] = ACTIONS(2883), + [anon_sym_R_DQUOTE] = ACTIONS(2885), + [anon_sym_LR_DQUOTE] = ACTIONS(2885), + [anon_sym_uR_DQUOTE] = ACTIONS(2885), + [anon_sym_UR_DQUOTE] = ACTIONS(2885), + [anon_sym_u8R_DQUOTE] = ACTIONS(2885), + [anon_sym_co_await] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_requires] = ACTIONS(2883), + [sym_this] = ACTIONS(2883), }, [710] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, [711] = { - [sym_identifier] = ACTIONS(2913), - [aux_sym_preproc_include_token1] = ACTIONS(2913), - [aux_sym_preproc_def_token1] = ACTIONS(2913), - [aux_sym_preproc_if_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), - [sym_preproc_directive] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym___based] = ACTIONS(2913), - [anon_sym___cdecl] = ACTIONS(2913), - [anon_sym___clrcall] = ACTIONS(2913), - [anon_sym___stdcall] = ACTIONS(2913), - [anon_sym___fastcall] = ACTIONS(2913), - [anon_sym___thiscall] = ACTIONS(2913), - [anon_sym___vectorcall] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_case] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym___try] = ACTIONS(2913), - [anon_sym___leave] = ACTIONS(2913), - [anon_sym_not] = ACTIONS(2913), - [anon_sym_compl] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2913), - [anon_sym___alignof__] = ACTIONS(2913), - [anon_sym___alignof] = ACTIONS(2913), - [anon_sym__alignof] = ACTIONS(2913), - [anon_sym_alignof] = ACTIONS(2913), - [anon_sym__Alignof] = ACTIONS(2913), - [anon_sym_offsetof] = ACTIONS(2913), - [anon_sym__Generic] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym___asm__] = ACTIONS(2913), - [sym_number_literal] = ACTIONS(2915), - [anon_sym_L_SQUOTE] = ACTIONS(2915), - [anon_sym_u_SQUOTE] = ACTIONS(2915), - [anon_sym_U_SQUOTE] = ACTIONS(2915), - [anon_sym_u8_SQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_L_DQUOTE] = ACTIONS(2915), - [anon_sym_u_DQUOTE] = ACTIONS(2915), - [anon_sym_U_DQUOTE] = ACTIONS(2915), - [anon_sym_u8_DQUOTE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [anon_sym_NULL] = ACTIONS(2913), - [anon_sym_nullptr] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_explicit] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_operator] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_namespace] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_static_assert] = ACTIONS(2913), - [anon_sym_concept] = ACTIONS(2913), - [anon_sym_co_return] = ACTIONS(2913), - [anon_sym_co_yield] = ACTIONS(2913), - [anon_sym_R_DQUOTE] = ACTIONS(2915), - [anon_sym_LR_DQUOTE] = ACTIONS(2915), - [anon_sym_uR_DQUOTE] = ACTIONS(2915), - [anon_sym_UR_DQUOTE] = ACTIONS(2915), - [anon_sym_u8R_DQUOTE] = ACTIONS(2915), - [anon_sym_co_await] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_requires] = ACTIONS(2913), - [sym_this] = ACTIONS(2913), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, [712] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [713] = { - [sym_identifier] = ACTIONS(2909), - [aux_sym_preproc_include_token1] = ACTIONS(2909), - [aux_sym_preproc_def_token1] = ACTIONS(2909), - [aux_sym_preproc_if_token1] = ACTIONS(2909), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2909), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2909), - [sym_preproc_directive] = ACTIONS(2909), - [anon_sym_LPAREN2] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym___extension__] = ACTIONS(2909), - [anon_sym_typedef] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym___attribute__] = ACTIONS(2909), - [anon_sym_COLON_COLON] = ACTIONS(2911), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2911), - [anon_sym___declspec] = ACTIONS(2909), - [anon_sym___based] = ACTIONS(2909), - [anon_sym___cdecl] = ACTIONS(2909), - [anon_sym___clrcall] = ACTIONS(2909), - [anon_sym___stdcall] = ACTIONS(2909), - [anon_sym___fastcall] = ACTIONS(2909), - [anon_sym___thiscall] = ACTIONS(2909), - [anon_sym___vectorcall] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_signed] = ACTIONS(2909), - [anon_sym_unsigned] = ACTIONS(2909), - [anon_sym_long] = ACTIONS(2909), - [anon_sym_short] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_register] = ACTIONS(2909), - [anon_sym_inline] = ACTIONS(2909), - [anon_sym___inline] = ACTIONS(2909), - [anon_sym___inline__] = ACTIONS(2909), - [anon_sym___forceinline] = ACTIONS(2909), - [anon_sym_thread_local] = ACTIONS(2909), - [anon_sym___thread] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_constexpr] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_restrict] = ACTIONS(2909), - [anon_sym___restrict__] = ACTIONS(2909), - [anon_sym__Atomic] = ACTIONS(2909), - [anon_sym__Noreturn] = ACTIONS(2909), - [anon_sym_noreturn] = ACTIONS(2909), - [anon_sym_mutable] = ACTIONS(2909), - [anon_sym_constinit] = ACTIONS(2909), - [anon_sym_consteval] = ACTIONS(2909), - [sym_primitive_type] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_class] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_case] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym___try] = ACTIONS(2909), - [anon_sym___leave] = ACTIONS(2909), - [anon_sym_not] = ACTIONS(2909), - [anon_sym_compl] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_sizeof] = ACTIONS(2909), - [anon_sym___alignof__] = ACTIONS(2909), - [anon_sym___alignof] = ACTIONS(2909), - [anon_sym__alignof] = ACTIONS(2909), - [anon_sym_alignof] = ACTIONS(2909), - [anon_sym__Alignof] = ACTIONS(2909), - [anon_sym_offsetof] = ACTIONS(2909), - [anon_sym__Generic] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym___asm__] = ACTIONS(2909), - [sym_number_literal] = ACTIONS(2911), - [anon_sym_L_SQUOTE] = ACTIONS(2911), - [anon_sym_u_SQUOTE] = ACTIONS(2911), - [anon_sym_U_SQUOTE] = ACTIONS(2911), - [anon_sym_u8_SQUOTE] = ACTIONS(2911), - [anon_sym_SQUOTE] = ACTIONS(2911), - [anon_sym_L_DQUOTE] = ACTIONS(2911), - [anon_sym_u_DQUOTE] = ACTIONS(2911), - [anon_sym_U_DQUOTE] = ACTIONS(2911), - [anon_sym_u8_DQUOTE] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [anon_sym_NULL] = ACTIONS(2909), - [anon_sym_nullptr] = ACTIONS(2909), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2909), - [anon_sym_decltype] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_alignas] = ACTIONS(2909), - [anon_sym_explicit] = ACTIONS(2909), - [anon_sym_typename] = ACTIONS(2909), - [anon_sym_template] = ACTIONS(2909), - [anon_sym_operator] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_delete] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_namespace] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_static_assert] = ACTIONS(2909), - [anon_sym_concept] = ACTIONS(2909), - [anon_sym_co_return] = ACTIONS(2909), - [anon_sym_co_yield] = ACTIONS(2909), - [anon_sym_R_DQUOTE] = ACTIONS(2911), - [anon_sym_LR_DQUOTE] = ACTIONS(2911), - [anon_sym_uR_DQUOTE] = ACTIONS(2911), - [anon_sym_UR_DQUOTE] = ACTIONS(2911), - [anon_sym_u8R_DQUOTE] = ACTIONS(2911), - [anon_sym_co_await] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2909), - [sym_this] = ACTIONS(2909), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, [714] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [ts_builtin_sym_end] = ACTIONS(2967), + [sym_identifier] = ACTIONS(2965), + [aux_sym_preproc_include_token1] = ACTIONS(2965), + [aux_sym_preproc_def_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), + [sym_preproc_directive] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym___cdecl] = ACTIONS(2965), + [anon_sym___clrcall] = ACTIONS(2965), + [anon_sym___stdcall] = ACTIONS(2965), + [anon_sym___fastcall] = ACTIONS(2965), + [anon_sym___thiscall] = ACTIONS(2965), + [anon_sym___vectorcall] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_else] = ACTIONS(2965), + [anon_sym_switch] = ACTIONS(2965), + [anon_sym_case] = ACTIONS(2965), + [anon_sym_default] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2965), + [anon_sym_do] = ACTIONS(2965), + [anon_sym_for] = ACTIONS(2965), + [anon_sym_return] = ACTIONS(2965), + [anon_sym_break] = ACTIONS(2965), + [anon_sym_continue] = ACTIONS(2965), + [anon_sym_goto] = ACTIONS(2965), + [anon_sym___try] = ACTIONS(2965), + [anon_sym___leave] = ACTIONS(2965), + [anon_sym_not] = ACTIONS(2965), + [anon_sym_compl] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_sizeof] = ACTIONS(2965), + [anon_sym___alignof__] = ACTIONS(2965), + [anon_sym___alignof] = ACTIONS(2965), + [anon_sym__alignof] = ACTIONS(2965), + [anon_sym_alignof] = ACTIONS(2965), + [anon_sym__Alignof] = ACTIONS(2965), + [anon_sym_offsetof] = ACTIONS(2965), + [anon_sym__Generic] = ACTIONS(2965), + [anon_sym_asm] = ACTIONS(2965), + [anon_sym___asm__] = ACTIONS(2965), + [sym_number_literal] = ACTIONS(2967), + [anon_sym_L_SQUOTE] = ACTIONS(2967), + [anon_sym_u_SQUOTE] = ACTIONS(2967), + [anon_sym_U_SQUOTE] = ACTIONS(2967), + [anon_sym_u8_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_L_DQUOTE] = ACTIONS(2967), + [anon_sym_u_DQUOTE] = ACTIONS(2967), + [anon_sym_U_DQUOTE] = ACTIONS(2967), + [anon_sym_u8_DQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [anon_sym_NULL] = ACTIONS(2965), + [anon_sym_nullptr] = ACTIONS(2965), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_try] = ACTIONS(2965), + [anon_sym_delete] = ACTIONS(2965), + [anon_sym_throw] = ACTIONS(2965), + [anon_sym_namespace] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), + [anon_sym_concept] = ACTIONS(2965), + [anon_sym_co_return] = ACTIONS(2965), + [anon_sym_co_yield] = ACTIONS(2965), + [anon_sym_R_DQUOTE] = ACTIONS(2967), + [anon_sym_LR_DQUOTE] = ACTIONS(2967), + [anon_sym_uR_DQUOTE] = ACTIONS(2967), + [anon_sym_UR_DQUOTE] = ACTIONS(2967), + [anon_sym_u8R_DQUOTE] = ACTIONS(2967), + [anon_sym_co_await] = ACTIONS(2965), + [anon_sym_new] = ACTIONS(2965), + [anon_sym_requires] = ACTIONS(2965), + [sym_this] = ACTIONS(2965), }, [715] = { - [sym_identifier] = ACTIONS(2863), - [aux_sym_preproc_include_token1] = ACTIONS(2863), - [aux_sym_preproc_def_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), - [sym_preproc_directive] = ACTIONS(2863), - [anon_sym_LPAREN2] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_typedef] = ACTIONS(2863), - [anon_sym_extern] = ACTIONS(2863), - [anon_sym___attribute__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), - [anon_sym___declspec] = ACTIONS(2863), - [anon_sym___based] = ACTIONS(2863), - [anon_sym___cdecl] = ACTIONS(2863), - [anon_sym___clrcall] = ACTIONS(2863), - [anon_sym___stdcall] = ACTIONS(2863), - [anon_sym___fastcall] = ACTIONS(2863), - [anon_sym___thiscall] = ACTIONS(2863), - [anon_sym___vectorcall] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2863), - [anon_sym_unsigned] = ACTIONS(2863), - [anon_sym_long] = ACTIONS(2863), - [anon_sym_short] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(2863), - [anon_sym_register] = ACTIONS(2863), - [anon_sym_inline] = ACTIONS(2863), - [anon_sym___inline] = ACTIONS(2863), - [anon_sym___inline__] = ACTIONS(2863), - [anon_sym___forceinline] = ACTIONS(2863), - [anon_sym_thread_local] = ACTIONS(2863), - [anon_sym___thread] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_constexpr] = ACTIONS(2863), - [anon_sym_volatile] = ACTIONS(2863), - [anon_sym_restrict] = ACTIONS(2863), - [anon_sym___restrict__] = ACTIONS(2863), - [anon_sym__Atomic] = ACTIONS(2863), - [anon_sym__Noreturn] = ACTIONS(2863), - [anon_sym_noreturn] = ACTIONS(2863), - [anon_sym_mutable] = ACTIONS(2863), - [anon_sym_constinit] = ACTIONS(2863), - [anon_sym_consteval] = ACTIONS(2863), - [sym_primitive_type] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), - [anon_sym_class] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_union] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_else] = ACTIONS(2863), - [anon_sym_switch] = ACTIONS(2863), - [anon_sym_case] = ACTIONS(2863), - [anon_sym_default] = ACTIONS(2863), - [anon_sym_while] = ACTIONS(2863), - [anon_sym_do] = ACTIONS(2863), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_return] = ACTIONS(2863), - [anon_sym_break] = ACTIONS(2863), - [anon_sym_continue] = ACTIONS(2863), - [anon_sym_goto] = ACTIONS(2863), - [anon_sym___try] = ACTIONS(2863), - [anon_sym___leave] = ACTIONS(2863), - [anon_sym_not] = ACTIONS(2863), - [anon_sym_compl] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_sizeof] = ACTIONS(2863), - [anon_sym___alignof__] = ACTIONS(2863), - [anon_sym___alignof] = ACTIONS(2863), - [anon_sym__alignof] = ACTIONS(2863), - [anon_sym_alignof] = ACTIONS(2863), - [anon_sym__Alignof] = ACTIONS(2863), - [anon_sym_offsetof] = ACTIONS(2863), - [anon_sym__Generic] = ACTIONS(2863), - [anon_sym_asm] = ACTIONS(2863), - [anon_sym___asm__] = ACTIONS(2863), - [sym_number_literal] = ACTIONS(2865), - [anon_sym_L_SQUOTE] = ACTIONS(2865), - [anon_sym_u_SQUOTE] = ACTIONS(2865), - [anon_sym_U_SQUOTE] = ACTIONS(2865), - [anon_sym_u8_SQUOTE] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_L_DQUOTE] = ACTIONS(2865), - [anon_sym_u_DQUOTE] = ACTIONS(2865), - [anon_sym_U_DQUOTE] = ACTIONS(2865), - [anon_sym_u8_DQUOTE] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2865), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [anon_sym_NULL] = ACTIONS(2863), - [anon_sym_nullptr] = ACTIONS(2863), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2863), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2863), - [anon_sym_alignas] = ACTIONS(2863), - [anon_sym_explicit] = ACTIONS(2863), - [anon_sym_typename] = ACTIONS(2863), - [anon_sym_template] = ACTIONS(2863), - [anon_sym_operator] = ACTIONS(2863), - [anon_sym_try] = ACTIONS(2863), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_throw] = ACTIONS(2863), - [anon_sym_namespace] = ACTIONS(2863), - [anon_sym_using] = ACTIONS(2863), - [anon_sym_static_assert] = ACTIONS(2863), - [anon_sym_concept] = ACTIONS(2863), - [anon_sym_co_return] = ACTIONS(2863), - [anon_sym_co_yield] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2863), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2863), - [sym_this] = ACTIONS(2863), - }, - [716] = { - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym___try] = ACTIONS(2905), - [anon_sym___leave] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [sym_number_literal] = ACTIONS(2907), - [anon_sym_L_SQUOTE] = ACTIONS(2907), - [anon_sym_u_SQUOTE] = ACTIONS(2907), - [anon_sym_U_SQUOTE] = ACTIONS(2907), - [anon_sym_u8_SQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_L_DQUOTE] = ACTIONS(2907), - [anon_sym_u_DQUOTE] = ACTIONS(2907), - [anon_sym_U_DQUOTE] = ACTIONS(2907), - [anon_sym_u8_DQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [anon_sym_R_DQUOTE] = ACTIONS(2907), - [anon_sym_LR_DQUOTE] = ACTIONS(2907), - [anon_sym_uR_DQUOTE] = ACTIONS(2907), - [anon_sym_UR_DQUOTE] = ACTIONS(2907), - [anon_sym_u8R_DQUOTE] = ACTIONS(2907), - [anon_sym_co_await] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [sym_this] = ACTIONS(2905), - }, - [717] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [718] = { - [sym_preproc_def] = STATE(679), - [sym_preproc_function_def] = STATE(679), - [sym_preproc_call] = STATE(679), - [sym_preproc_if_in_field_declaration_list] = STATE(679), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(679), - [sym_preproc_else_in_field_declaration_list] = STATE(9274), - [sym_preproc_elif_in_field_declaration_list] = STATE(9274), - [sym_type_definition] = STATE(679), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6188), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(679), - [sym_field_declaration] = STATE(679), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(679), - [sym_operator_cast] = STATE(7176), - [sym_inline_method_definition] = STATE(679), - [sym__constructor_specifiers] = STATE(2018), - [sym_operator_cast_definition] = STATE(679), - [sym_operator_cast_declaration] = STATE(679), - [sym_constructor_or_destructor_definition] = STATE(679), - [sym_constructor_or_destructor_declaration] = STATE(679), - [sym_friend_declaration] = STATE(679), - [sym_access_specifier] = STATE(8857), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(679), - [sym_alias_declaration] = STATE(679), - [sym_static_assert_declaration] = STATE(679), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(679), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3430), - [aux_sym_preproc_if_token2] = ACTIONS(3478), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3438), - [anon_sym_typedef] = ACTIONS(3440), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3442), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_static_assert] = ACTIONS(3448), - }, - [719] = { - [sym_identifier] = ACTIONS(2901), - [aux_sym_preproc_include_token1] = ACTIONS(2901), - [aux_sym_preproc_def_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token1] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), - [sym_preproc_directive] = ACTIONS(2901), - [anon_sym_LPAREN2] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym___extension__] = ACTIONS(2901), - [anon_sym_typedef] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym___attribute__] = ACTIONS(2901), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), - [anon_sym___declspec] = ACTIONS(2901), - [anon_sym___based] = ACTIONS(2901), - [anon_sym___cdecl] = ACTIONS(2901), - [anon_sym___clrcall] = ACTIONS(2901), - [anon_sym___stdcall] = ACTIONS(2901), - [anon_sym___fastcall] = ACTIONS(2901), - [anon_sym___thiscall] = ACTIONS(2901), - [anon_sym___vectorcall] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2901), - [anon_sym_unsigned] = ACTIONS(2901), - [anon_sym_long] = ACTIONS(2901), - [anon_sym_short] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_register] = ACTIONS(2901), - [anon_sym_inline] = ACTIONS(2901), - [anon_sym___inline] = ACTIONS(2901), - [anon_sym___inline__] = ACTIONS(2901), - [anon_sym___forceinline] = ACTIONS(2901), - [anon_sym_thread_local] = ACTIONS(2901), - [anon_sym___thread] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_constexpr] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_restrict] = ACTIONS(2901), - [anon_sym___restrict__] = ACTIONS(2901), - [anon_sym__Atomic] = ACTIONS(2901), - [anon_sym__Noreturn] = ACTIONS(2901), - [anon_sym_noreturn] = ACTIONS(2901), - [anon_sym_mutable] = ACTIONS(2901), - [anon_sym_constinit] = ACTIONS(2901), - [anon_sym_consteval] = ACTIONS(2901), - [sym_primitive_type] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym___try] = ACTIONS(2901), - [anon_sym___leave] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2901), - [anon_sym_compl] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym___alignof__] = ACTIONS(2901), - [anon_sym___alignof] = ACTIONS(2901), - [anon_sym__alignof] = ACTIONS(2901), - [anon_sym_alignof] = ACTIONS(2901), - [anon_sym__Alignof] = ACTIONS(2901), - [anon_sym_offsetof] = ACTIONS(2901), - [anon_sym__Generic] = ACTIONS(2901), - [anon_sym_asm] = ACTIONS(2901), - [anon_sym___asm__] = ACTIONS(2901), - [sym_number_literal] = ACTIONS(2903), - [anon_sym_L_SQUOTE] = ACTIONS(2903), - [anon_sym_u_SQUOTE] = ACTIONS(2903), - [anon_sym_U_SQUOTE] = ACTIONS(2903), - [anon_sym_u8_SQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_L_DQUOTE] = ACTIONS(2903), - [anon_sym_u_DQUOTE] = ACTIONS(2903), - [anon_sym_U_DQUOTE] = ACTIONS(2903), - [anon_sym_u8_DQUOTE] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [anon_sym_NULL] = ACTIONS(2901), - [anon_sym_nullptr] = ACTIONS(2901), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_alignas] = ACTIONS(2901), - [anon_sym_explicit] = ACTIONS(2901), - [anon_sym_typename] = ACTIONS(2901), - [anon_sym_template] = ACTIONS(2901), - [anon_sym_operator] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_static_assert] = ACTIONS(2901), - [anon_sym_concept] = ACTIONS(2901), - [anon_sym_co_return] = ACTIONS(2901), - [anon_sym_co_yield] = ACTIONS(2901), - [anon_sym_R_DQUOTE] = ACTIONS(2903), - [anon_sym_LR_DQUOTE] = ACTIONS(2903), - [anon_sym_uR_DQUOTE] = ACTIONS(2903), - [anon_sym_UR_DQUOTE] = ACTIONS(2903), - [anon_sym_u8R_DQUOTE] = ACTIONS(2903), - [anon_sym_co_await] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_requires] = ACTIONS(2901), - [sym_this] = ACTIONS(2901), - }, - [720] = { - [sym_type_qualifier] = STATE(4527), - [sym__type_specifier] = STATE(5400), - [sym_sized_type_specifier] = STATE(3318), - [sym_enum_specifier] = STATE(3318), - [sym_struct_specifier] = STATE(3318), - [sym_union_specifier] = STATE(3318), - [sym__expression] = STATE(4987), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_type_descriptor] = STATE(7716), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_placeholder_type_specifier] = STATE(3318), - [sym_decltype_auto] = STATE(3319), - [sym_decltype] = STATE(3157), - [sym_class_specifier] = STATE(3318), - [sym__class_name] = STATE(8351), - [sym_dependent_type] = STATE(3318), - [sym_template_type] = STATE(5910), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_type_parameter_pack_expansion] = STATE(8103), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6157), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(5925), - [sym_user_defined_literal] = STATE(4040), - [aux_sym__type_definition_type_repeat1] = STATE(4527), - [aux_sym_sized_type_specifier_repeat1] = STATE(2706), - [sym_identifier] = ACTIONS(3324), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_signed] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_struct] = ACTIONS(3344), - [anon_sym_union] = ACTIONS(3346), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3370), - [anon_sym_decltype] = ACTIONS(3372), - [anon_sym_typename] = ACTIONS(3374), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [721] = { - [sym_preproc_def] = STATE(724), - [sym_preproc_function_def] = STATE(724), - [sym_preproc_call] = STATE(724), - [sym_preproc_if_in_field_declaration_list] = STATE(724), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(724), - [sym_preproc_else_in_field_declaration_list] = STATE(8935), - [sym_preproc_elif_in_field_declaration_list] = STATE(8935), - [sym_type_definition] = STATE(724), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6188), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(724), - [sym_field_declaration] = STATE(724), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(724), - [sym_operator_cast] = STATE(7176), - [sym_inline_method_definition] = STATE(724), - [sym__constructor_specifiers] = STATE(2018), - [sym_operator_cast_definition] = STATE(724), - [sym_operator_cast_declaration] = STATE(724), - [sym_constructor_or_destructor_definition] = STATE(724), - [sym_constructor_or_destructor_declaration] = STATE(724), - [sym_friend_declaration] = STATE(724), - [sym_access_specifier] = STATE(8857), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(724), - [sym_alias_declaration] = STATE(724), - [sym_static_assert_declaration] = STATE(724), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(724), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3430), - [aux_sym_preproc_if_token2] = ACTIONS(3480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3438), - [anon_sym_typedef] = ACTIONS(3440), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3442), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_static_assert] = ACTIONS(3448), - }, - [722] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [723] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [724] = { - [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_preproc_else_in_field_declaration_list] = STATE(8928), - [sym_preproc_elif_in_field_declaration_list] = STATE(8928), - [sym_type_definition] = STATE(955), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6188), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(955), - [sym_field_declaration] = STATE(955), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(955), - [sym_operator_cast] = STATE(7176), - [sym_inline_method_definition] = STATE(955), - [sym__constructor_specifiers] = STATE(2018), - [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(8857), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(955), - [sym_alias_declaration] = STATE(955), - [sym_static_assert_declaration] = STATE(955), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3430), - [aux_sym_preproc_if_token2] = ACTIONS(3482), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3438), - [anon_sym_typedef] = ACTIONS(3440), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3442), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_static_assert] = ACTIONS(3448), - }, - [725] = { [sym_identifier] = ACTIONS(2945), [aux_sym_preproc_include_token1] = ACTIONS(2945), [aux_sym_preproc_def_token1] = ACTIONS(2945), [aux_sym_preproc_if_token1] = ACTIONS(2945), - [aux_sym_preproc_if_token2] = ACTIONS(2945), [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), [sym_preproc_directive] = ACTIONS(2945), @@ -190069,6 +189068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2945), [anon_sym___vectorcall] = ACTIONS(2945), [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2947), [anon_sym_signed] = ACTIONS(2945), [anon_sym_unsigned] = ACTIONS(2945), [anon_sym_long] = ACTIONS(2945), @@ -190169,11 +189169,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2945), [sym_this] = ACTIONS(2945), }, - [726] = { + [716] = { [sym_identifier] = ACTIONS(2867), [aux_sym_preproc_include_token1] = ACTIONS(2867), [aux_sym_preproc_def_token1] = ACTIONS(2867), [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), [sym_preproc_directive] = ACTIONS(2867), @@ -190201,7 +189202,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2867), [anon_sym___vectorcall] = ACTIONS(2867), [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), [anon_sym_signed] = ACTIONS(2867), [anon_sym_unsigned] = ACTIONS(2867), [anon_sym_long] = ACTIONS(2867), @@ -190302,707 +189302,2037 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2867), [sym_this] = ACTIONS(2867), }, - [727] = { - [sym_identifier] = ACTIONS(2941), - [aux_sym_preproc_include_token1] = ACTIONS(2941), - [aux_sym_preproc_def_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token2] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), - [sym_preproc_directive] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym___extension__] = ACTIONS(2941), - [anon_sym_typedef] = ACTIONS(2941), - [anon_sym_extern] = ACTIONS(2941), - [anon_sym___attribute__] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), - [anon_sym___declspec] = ACTIONS(2941), - [anon_sym___based] = ACTIONS(2941), - [anon_sym___cdecl] = ACTIONS(2941), - [anon_sym___clrcall] = ACTIONS(2941), - [anon_sym___stdcall] = ACTIONS(2941), - [anon_sym___fastcall] = ACTIONS(2941), - [anon_sym___thiscall] = ACTIONS(2941), - [anon_sym___vectorcall] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2941), - [anon_sym_unsigned] = ACTIONS(2941), - [anon_sym_long] = ACTIONS(2941), - [anon_sym_short] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_register] = ACTIONS(2941), - [anon_sym_inline] = ACTIONS(2941), - [anon_sym___inline] = ACTIONS(2941), - [anon_sym___inline__] = ACTIONS(2941), - [anon_sym___forceinline] = ACTIONS(2941), - [anon_sym_thread_local] = ACTIONS(2941), - [anon_sym___thread] = ACTIONS(2941), - [anon_sym_const] = ACTIONS(2941), - [anon_sym_constexpr] = ACTIONS(2941), - [anon_sym_volatile] = ACTIONS(2941), - [anon_sym_restrict] = ACTIONS(2941), - [anon_sym___restrict__] = ACTIONS(2941), - [anon_sym__Atomic] = ACTIONS(2941), - [anon_sym__Noreturn] = ACTIONS(2941), - [anon_sym_noreturn] = ACTIONS(2941), - [anon_sym_mutable] = ACTIONS(2941), - [anon_sym_constinit] = ACTIONS(2941), - [anon_sym_consteval] = ACTIONS(2941), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2941), - [anon_sym_class] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2941), - [anon_sym_switch] = ACTIONS(2941), - [anon_sym_case] = ACTIONS(2941), - [anon_sym_default] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_goto] = ACTIONS(2941), - [anon_sym___try] = ACTIONS(2941), - [anon_sym___leave] = ACTIONS(2941), - [anon_sym_not] = ACTIONS(2941), - [anon_sym_compl] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_sizeof] = ACTIONS(2941), - [anon_sym___alignof__] = ACTIONS(2941), - [anon_sym___alignof] = ACTIONS(2941), - [anon_sym__alignof] = ACTIONS(2941), - [anon_sym_alignof] = ACTIONS(2941), - [anon_sym__Alignof] = ACTIONS(2941), - [anon_sym_offsetof] = ACTIONS(2941), - [anon_sym__Generic] = ACTIONS(2941), - [anon_sym_asm] = ACTIONS(2941), - [anon_sym___asm__] = ACTIONS(2941), - [sym_number_literal] = ACTIONS(2943), - [anon_sym_L_SQUOTE] = ACTIONS(2943), - [anon_sym_u_SQUOTE] = ACTIONS(2943), - [anon_sym_U_SQUOTE] = ACTIONS(2943), - [anon_sym_u8_SQUOTE] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2943), - [anon_sym_L_DQUOTE] = ACTIONS(2943), - [anon_sym_u_DQUOTE] = ACTIONS(2943), - [anon_sym_U_DQUOTE] = ACTIONS(2943), - [anon_sym_u8_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2943), - [sym_true] = ACTIONS(2941), - [sym_false] = ACTIONS(2941), - [anon_sym_NULL] = ACTIONS(2941), - [anon_sym_nullptr] = ACTIONS(2941), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2941), - [anon_sym_decltype] = ACTIONS(2941), - [anon_sym_virtual] = ACTIONS(2941), - [anon_sym_alignas] = ACTIONS(2941), - [anon_sym_explicit] = ACTIONS(2941), - [anon_sym_typename] = ACTIONS(2941), - [anon_sym_template] = ACTIONS(2941), - [anon_sym_operator] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_delete] = ACTIONS(2941), - [anon_sym_throw] = ACTIONS(2941), - [anon_sym_namespace] = ACTIONS(2941), - [anon_sym_using] = ACTIONS(2941), - [anon_sym_static_assert] = ACTIONS(2941), - [anon_sym_concept] = ACTIONS(2941), - [anon_sym_co_return] = ACTIONS(2941), - [anon_sym_co_yield] = ACTIONS(2941), - [anon_sym_R_DQUOTE] = ACTIONS(2943), - [anon_sym_LR_DQUOTE] = ACTIONS(2943), - [anon_sym_uR_DQUOTE] = ACTIONS(2943), - [anon_sym_UR_DQUOTE] = ACTIONS(2943), - [anon_sym_u8R_DQUOTE] = ACTIONS(2943), - [anon_sym_co_await] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_requires] = ACTIONS(2941), - [sym_this] = ACTIONS(2941), - }, - [728] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [717] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [729] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [718] = { + [sym_identifier] = ACTIONS(2953), + [aux_sym_preproc_include_token1] = ACTIONS(2953), + [aux_sym_preproc_def_token1] = ACTIONS(2953), + [aux_sym_preproc_if_token1] = ACTIONS(2953), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), + [sym_preproc_directive] = ACTIONS(2953), + [anon_sym_LPAREN2] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym___extension__] = ACTIONS(2953), + [anon_sym_typedef] = ACTIONS(2953), + [anon_sym_extern] = ACTIONS(2953), + [anon_sym___attribute__] = ACTIONS(2953), + [anon_sym_COLON_COLON] = ACTIONS(2955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), + [anon_sym___declspec] = ACTIONS(2953), + [anon_sym___based] = ACTIONS(2953), + [anon_sym___cdecl] = ACTIONS(2953), + [anon_sym___clrcall] = ACTIONS(2953), + [anon_sym___stdcall] = ACTIONS(2953), + [anon_sym___fastcall] = ACTIONS(2953), + [anon_sym___thiscall] = ACTIONS(2953), + [anon_sym___vectorcall] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_RBRACE] = ACTIONS(2955), + [anon_sym_signed] = ACTIONS(2953), + [anon_sym_unsigned] = ACTIONS(2953), + [anon_sym_long] = ACTIONS(2953), + [anon_sym_short] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(2953), + [anon_sym_static] = ACTIONS(2953), + [anon_sym_register] = ACTIONS(2953), + [anon_sym_inline] = ACTIONS(2953), + [anon_sym___inline] = ACTIONS(2953), + [anon_sym___inline__] = ACTIONS(2953), + [anon_sym___forceinline] = ACTIONS(2953), + [anon_sym_thread_local] = ACTIONS(2953), + [anon_sym___thread] = ACTIONS(2953), + [anon_sym_const] = ACTIONS(2953), + [anon_sym_constexpr] = ACTIONS(2953), + [anon_sym_volatile] = ACTIONS(2953), + [anon_sym_restrict] = ACTIONS(2953), + [anon_sym___restrict__] = ACTIONS(2953), + [anon_sym__Atomic] = ACTIONS(2953), + [anon_sym__Noreturn] = ACTIONS(2953), + [anon_sym_noreturn] = ACTIONS(2953), + [anon_sym_mutable] = ACTIONS(2953), + [anon_sym_constinit] = ACTIONS(2953), + [anon_sym_consteval] = ACTIONS(2953), + [sym_primitive_type] = ACTIONS(2953), + [anon_sym_enum] = ACTIONS(2953), + [anon_sym_class] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(2953), + [anon_sym_union] = ACTIONS(2953), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_else] = ACTIONS(2953), + [anon_sym_switch] = ACTIONS(2953), + [anon_sym_case] = ACTIONS(2953), + [anon_sym_default] = ACTIONS(2953), + [anon_sym_while] = ACTIONS(2953), + [anon_sym_do] = ACTIONS(2953), + [anon_sym_for] = ACTIONS(2953), + [anon_sym_return] = ACTIONS(2953), + [anon_sym_break] = ACTIONS(2953), + [anon_sym_continue] = ACTIONS(2953), + [anon_sym_goto] = ACTIONS(2953), + [anon_sym___try] = ACTIONS(2953), + [anon_sym___leave] = ACTIONS(2953), + [anon_sym_not] = ACTIONS(2953), + [anon_sym_compl] = ACTIONS(2953), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_sizeof] = ACTIONS(2953), + [anon_sym___alignof__] = ACTIONS(2953), + [anon_sym___alignof] = ACTIONS(2953), + [anon_sym__alignof] = ACTIONS(2953), + [anon_sym_alignof] = ACTIONS(2953), + [anon_sym__Alignof] = ACTIONS(2953), + [anon_sym_offsetof] = ACTIONS(2953), + [anon_sym__Generic] = ACTIONS(2953), + [anon_sym_asm] = ACTIONS(2953), + [anon_sym___asm__] = ACTIONS(2953), + [sym_number_literal] = ACTIONS(2955), + [anon_sym_L_SQUOTE] = ACTIONS(2955), + [anon_sym_u_SQUOTE] = ACTIONS(2955), + [anon_sym_U_SQUOTE] = ACTIONS(2955), + [anon_sym_u8_SQUOTE] = ACTIONS(2955), + [anon_sym_SQUOTE] = ACTIONS(2955), + [anon_sym_L_DQUOTE] = ACTIONS(2955), + [anon_sym_u_DQUOTE] = ACTIONS(2955), + [anon_sym_U_DQUOTE] = ACTIONS(2955), + [anon_sym_u8_DQUOTE] = ACTIONS(2955), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_true] = ACTIONS(2953), + [sym_false] = ACTIONS(2953), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2953), + [anon_sym_decltype] = ACTIONS(2953), + [anon_sym_virtual] = ACTIONS(2953), + [anon_sym_alignas] = ACTIONS(2953), + [anon_sym_explicit] = ACTIONS(2953), + [anon_sym_typename] = ACTIONS(2953), + [anon_sym_template] = ACTIONS(2953), + [anon_sym_operator] = ACTIONS(2953), + [anon_sym_try] = ACTIONS(2953), + [anon_sym_delete] = ACTIONS(2953), + [anon_sym_throw] = ACTIONS(2953), + [anon_sym_namespace] = ACTIONS(2953), + [anon_sym_using] = ACTIONS(2953), + [anon_sym_static_assert] = ACTIONS(2953), + [anon_sym_concept] = ACTIONS(2953), + [anon_sym_co_return] = ACTIONS(2953), + [anon_sym_co_yield] = ACTIONS(2953), + [anon_sym_R_DQUOTE] = ACTIONS(2955), + [anon_sym_LR_DQUOTE] = ACTIONS(2955), + [anon_sym_uR_DQUOTE] = ACTIONS(2955), + [anon_sym_UR_DQUOTE] = ACTIONS(2955), + [anon_sym_u8R_DQUOTE] = ACTIONS(2955), + [anon_sym_co_await] = ACTIONS(2953), + [anon_sym_new] = ACTIONS(2953), + [anon_sym_requires] = ACTIONS(2953), + [sym_this] = ACTIONS(2953), }, - [730] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [719] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [731] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [720] = { + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [721] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [732] = { - [sym_identifier] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token2] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym___based] = ACTIONS(2937), - [anon_sym___cdecl] = ACTIONS(2937), - [anon_sym___clrcall] = ACTIONS(2937), - [anon_sym___stdcall] = ACTIONS(2937), - [anon_sym___fastcall] = ACTIONS(2937), - [anon_sym___thiscall] = ACTIONS(2937), - [anon_sym___vectorcall] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), + [722] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [723] = { + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [724] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [725] = { + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [726] = { + [ts_builtin_sym_end] = ACTIONS(2915), + [sym_identifier] = ACTIONS(2913), + [aux_sym_preproc_include_token1] = ACTIONS(2913), + [aux_sym_preproc_def_token1] = ACTIONS(2913), + [aux_sym_preproc_if_token1] = ACTIONS(2913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), + [sym_preproc_directive] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_AMP_AMP] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym___extension__] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(2913), + [anon_sym_extern] = ACTIONS(2913), + [anon_sym___attribute__] = ACTIONS(2913), + [anon_sym_COLON_COLON] = ACTIONS(2915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), + [anon_sym___declspec] = ACTIONS(2913), + [anon_sym___based] = ACTIONS(2913), + [anon_sym___cdecl] = ACTIONS(2913), + [anon_sym___clrcall] = ACTIONS(2913), + [anon_sym___stdcall] = ACTIONS(2913), + [anon_sym___fastcall] = ACTIONS(2913), + [anon_sym___thiscall] = ACTIONS(2913), + [anon_sym___vectorcall] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(2913), + [anon_sym_unsigned] = ACTIONS(2913), + [anon_sym_long] = ACTIONS(2913), + [anon_sym_short] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_register] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym___inline] = ACTIONS(2913), + [anon_sym___inline__] = ACTIONS(2913), + [anon_sym___forceinline] = ACTIONS(2913), + [anon_sym_thread_local] = ACTIONS(2913), + [anon_sym___thread] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_constexpr] = ACTIONS(2913), + [anon_sym_volatile] = ACTIONS(2913), + [anon_sym_restrict] = ACTIONS(2913), + [anon_sym___restrict__] = ACTIONS(2913), + [anon_sym__Atomic] = ACTIONS(2913), + [anon_sym__Noreturn] = ACTIONS(2913), + [anon_sym_noreturn] = ACTIONS(2913), + [anon_sym_mutable] = ACTIONS(2913), + [anon_sym_constinit] = ACTIONS(2913), + [anon_sym_consteval] = ACTIONS(2913), + [sym_primitive_type] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_union] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_else] = ACTIONS(2913), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_case] = ACTIONS(2913), + [anon_sym_default] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_goto] = ACTIONS(2913), + [anon_sym___try] = ACTIONS(2913), + [anon_sym___leave] = ACTIONS(2913), + [anon_sym_not] = ACTIONS(2913), + [anon_sym_compl] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_sizeof] = ACTIONS(2913), + [anon_sym___alignof__] = ACTIONS(2913), + [anon_sym___alignof] = ACTIONS(2913), + [anon_sym__alignof] = ACTIONS(2913), + [anon_sym_alignof] = ACTIONS(2913), + [anon_sym__Alignof] = ACTIONS(2913), + [anon_sym_offsetof] = ACTIONS(2913), + [anon_sym__Generic] = ACTIONS(2913), + [anon_sym_asm] = ACTIONS(2913), + [anon_sym___asm__] = ACTIONS(2913), + [sym_number_literal] = ACTIONS(2915), + [anon_sym_L_SQUOTE] = ACTIONS(2915), + [anon_sym_u_SQUOTE] = ACTIONS(2915), + [anon_sym_U_SQUOTE] = ACTIONS(2915), + [anon_sym_u8_SQUOTE] = ACTIONS(2915), + [anon_sym_SQUOTE] = ACTIONS(2915), + [anon_sym_L_DQUOTE] = ACTIONS(2915), + [anon_sym_u_DQUOTE] = ACTIONS(2915), + [anon_sym_U_DQUOTE] = ACTIONS(2915), + [anon_sym_u8_DQUOTE] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(2915), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [anon_sym_NULL] = ACTIONS(2913), + [anon_sym_nullptr] = ACTIONS(2913), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2913), + [anon_sym_decltype] = ACTIONS(2913), + [anon_sym_virtual] = ACTIONS(2913), + [anon_sym_alignas] = ACTIONS(2913), + [anon_sym_explicit] = ACTIONS(2913), + [anon_sym_typename] = ACTIONS(2913), + [anon_sym_template] = ACTIONS(2913), + [anon_sym_operator] = ACTIONS(2913), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_delete] = ACTIONS(2913), + [anon_sym_throw] = ACTIONS(2913), + [anon_sym_namespace] = ACTIONS(2913), + [anon_sym_using] = ACTIONS(2913), + [anon_sym_static_assert] = ACTIONS(2913), + [anon_sym_concept] = ACTIONS(2913), + [anon_sym_co_return] = ACTIONS(2913), + [anon_sym_co_yield] = ACTIONS(2913), + [anon_sym_R_DQUOTE] = ACTIONS(2915), + [anon_sym_LR_DQUOTE] = ACTIONS(2915), + [anon_sym_uR_DQUOTE] = ACTIONS(2915), + [anon_sym_UR_DQUOTE] = ACTIONS(2915), + [anon_sym_u8R_DQUOTE] = ACTIONS(2915), + [anon_sym_co_await] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_requires] = ACTIONS(2913), + [sym_this] = ACTIONS(2913), + }, + [727] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [728] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token2] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [729] = { + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [730] = { + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [731] = { + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [732] = { + [ts_builtin_sym_end] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2937), + [aux_sym_preproc_include_token1] = ACTIONS(2937), + [aux_sym_preproc_def_token1] = ACTIONS(2937), + [aux_sym_preproc_if_token1] = ACTIONS(2937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), + [sym_preproc_directive] = ACTIONS(2937), + [anon_sym_LPAREN2] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2939), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym_typedef] = ACTIONS(2937), + [anon_sym_extern] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(2937), + [anon_sym_COLON_COLON] = ACTIONS(2939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), + [anon_sym___declspec] = ACTIONS(2937), + [anon_sym___based] = ACTIONS(2937), + [anon_sym___cdecl] = ACTIONS(2937), + [anon_sym___clrcall] = ACTIONS(2937), + [anon_sym___stdcall] = ACTIONS(2937), + [anon_sym___fastcall] = ACTIONS(2937), + [anon_sym___thiscall] = ACTIONS(2937), + [anon_sym___vectorcall] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2937), + [anon_sym_unsigned] = ACTIONS(2937), + [anon_sym_long] = ACTIONS(2937), [anon_sym_short] = ACTIONS(2937), [anon_sym_LBRACK] = ACTIONS(2937), [anon_sym_static] = ACTIONS(2937), @@ -191101,4346 +191431,3814 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2937), }, [733] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [734] = { - [sym_identifier] = ACTIONS(2893), - [aux_sym_preproc_include_token1] = ACTIONS(2893), - [aux_sym_preproc_def_token1] = ACTIONS(2893), - [aux_sym_preproc_if_token1] = ACTIONS(2893), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2893), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2893), - [anon_sym_LPAREN2] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2893), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym___extension__] = ACTIONS(2893), - [anon_sym_typedef] = ACTIONS(2893), - [anon_sym_extern] = ACTIONS(2893), - [anon_sym___attribute__] = ACTIONS(2893), - [anon_sym_COLON_COLON] = ACTIONS(2895), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2895), - [anon_sym___declspec] = ACTIONS(2893), - [anon_sym___based] = ACTIONS(2893), - [anon_sym___cdecl] = ACTIONS(2893), - [anon_sym___clrcall] = ACTIONS(2893), - [anon_sym___stdcall] = ACTIONS(2893), - [anon_sym___fastcall] = ACTIONS(2893), - [anon_sym___thiscall] = ACTIONS(2893), - [anon_sym___vectorcall] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2895), - [anon_sym_signed] = ACTIONS(2893), - [anon_sym_unsigned] = ACTIONS(2893), - [anon_sym_long] = ACTIONS(2893), - [anon_sym_short] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_register] = ACTIONS(2893), - [anon_sym_inline] = ACTIONS(2893), - [anon_sym___inline] = ACTIONS(2893), - [anon_sym___inline__] = ACTIONS(2893), - [anon_sym___forceinline] = ACTIONS(2893), - [anon_sym_thread_local] = ACTIONS(2893), - [anon_sym___thread] = ACTIONS(2893), - [anon_sym_const] = ACTIONS(2893), - [anon_sym_constexpr] = ACTIONS(2893), - [anon_sym_volatile] = ACTIONS(2893), - [anon_sym_restrict] = ACTIONS(2893), - [anon_sym___restrict__] = ACTIONS(2893), - [anon_sym__Atomic] = ACTIONS(2893), - [anon_sym__Noreturn] = ACTIONS(2893), - [anon_sym_noreturn] = ACTIONS(2893), - [anon_sym_mutable] = ACTIONS(2893), - [anon_sym_constinit] = ACTIONS(2893), - [anon_sym_consteval] = ACTIONS(2893), - [sym_primitive_type] = ACTIONS(2893), - [anon_sym_enum] = ACTIONS(2893), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2893), - [anon_sym_union] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_else] = ACTIONS(2893), - [anon_sym_switch] = ACTIONS(2893), - [anon_sym_case] = ACTIONS(2893), - [anon_sym_default] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_do] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2893), - [anon_sym_continue] = ACTIONS(2893), - [anon_sym_goto] = ACTIONS(2893), - [anon_sym___try] = ACTIONS(2893), - [anon_sym___leave] = ACTIONS(2893), - [anon_sym_not] = ACTIONS(2893), - [anon_sym_compl] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_sizeof] = ACTIONS(2893), - [anon_sym___alignof__] = ACTIONS(2893), - [anon_sym___alignof] = ACTIONS(2893), - [anon_sym__alignof] = ACTIONS(2893), - [anon_sym_alignof] = ACTIONS(2893), - [anon_sym__Alignof] = ACTIONS(2893), - [anon_sym_offsetof] = ACTIONS(2893), - [anon_sym__Generic] = ACTIONS(2893), - [anon_sym_asm] = ACTIONS(2893), - [anon_sym___asm__] = ACTIONS(2893), - [sym_number_literal] = ACTIONS(2895), - [anon_sym_L_SQUOTE] = ACTIONS(2895), - [anon_sym_u_SQUOTE] = ACTIONS(2895), - [anon_sym_U_SQUOTE] = ACTIONS(2895), - [anon_sym_u8_SQUOTE] = ACTIONS(2895), - [anon_sym_SQUOTE] = ACTIONS(2895), - [anon_sym_L_DQUOTE] = ACTIONS(2895), - [anon_sym_u_DQUOTE] = ACTIONS(2895), - [anon_sym_U_DQUOTE] = ACTIONS(2895), - [anon_sym_u8_DQUOTE] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [sym_true] = ACTIONS(2893), - [sym_false] = ACTIONS(2893), - [anon_sym_NULL] = ACTIONS(2893), - [anon_sym_nullptr] = ACTIONS(2893), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2893), - [anon_sym_decltype] = ACTIONS(2893), - [anon_sym_virtual] = ACTIONS(2893), - [anon_sym_alignas] = ACTIONS(2893), - [anon_sym_explicit] = ACTIONS(2893), - [anon_sym_typename] = ACTIONS(2893), - [anon_sym_template] = ACTIONS(2893), - [anon_sym_operator] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [anon_sym_delete] = ACTIONS(2893), - [anon_sym_throw] = ACTIONS(2893), - [anon_sym_namespace] = ACTIONS(2893), - [anon_sym_using] = ACTIONS(2893), - [anon_sym_static_assert] = ACTIONS(2893), - [anon_sym_concept] = ACTIONS(2893), - [anon_sym_co_return] = ACTIONS(2893), - [anon_sym_co_yield] = ACTIONS(2893), - [anon_sym_R_DQUOTE] = ACTIONS(2895), - [anon_sym_LR_DQUOTE] = ACTIONS(2895), - [anon_sym_uR_DQUOTE] = ACTIONS(2895), - [anon_sym_UR_DQUOTE] = ACTIONS(2895), - [anon_sym_u8R_DQUOTE] = ACTIONS(2895), - [anon_sym_co_await] = ACTIONS(2893), - [anon_sym_new] = ACTIONS(2893), - [anon_sym_requires] = ACTIONS(2893), - [sym_this] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2989), + [aux_sym_preproc_include_token1] = ACTIONS(2989), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), + [sym_preproc_directive] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym___based] = ACTIONS(2989), + [anon_sym___cdecl] = ACTIONS(2989), + [anon_sym___clrcall] = ACTIONS(2989), + [anon_sym___stdcall] = ACTIONS(2989), + [anon_sym___fastcall] = ACTIONS(2989), + [anon_sym___thiscall] = ACTIONS(2989), + [anon_sym___vectorcall] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_RBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_else] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_case] = ACTIONS(2989), + [anon_sym_default] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym___try] = ACTIONS(2989), + [anon_sym___leave] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2989), + [anon_sym_compl] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2989), + [anon_sym___alignof__] = ACTIONS(2989), + [anon_sym___alignof] = ACTIONS(2989), + [anon_sym__alignof] = ACTIONS(2989), + [anon_sym_alignof] = ACTIONS(2989), + [anon_sym__Alignof] = ACTIONS(2989), + [anon_sym_offsetof] = ACTIONS(2989), + [anon_sym__Generic] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym___asm__] = ACTIONS(2989), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [anon_sym_NULL] = ACTIONS(2989), + [anon_sym_nullptr] = ACTIONS(2989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_explicit] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_operator] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_namespace] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_static_assert] = ACTIONS(2989), + [anon_sym_concept] = ACTIONS(2989), + [anon_sym_co_return] = ACTIONS(2989), + [anon_sym_co_yield] = ACTIONS(2989), + [anon_sym_R_DQUOTE] = ACTIONS(2991), + [anon_sym_LR_DQUOTE] = ACTIONS(2991), + [anon_sym_uR_DQUOTE] = ACTIONS(2991), + [anon_sym_UR_DQUOTE] = ACTIONS(2991), + [anon_sym_u8R_DQUOTE] = ACTIONS(2991), + [anon_sym_co_await] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_requires] = ACTIONS(2989), + [sym_this] = ACTIONS(2989), }, [735] = { - [sym_identifier] = ACTIONS(2889), - [aux_sym_preproc_include_token1] = ACTIONS(2889), - [aux_sym_preproc_def_token1] = ACTIONS(2889), - [aux_sym_preproc_if_token1] = ACTIONS(2889), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2889), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2889), - [sym_preproc_directive] = ACTIONS(2889), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym___extension__] = ACTIONS(2889), - [anon_sym_typedef] = ACTIONS(2889), - [anon_sym_extern] = ACTIONS(2889), - [anon_sym___attribute__] = ACTIONS(2889), - [anon_sym_COLON_COLON] = ACTIONS(2891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2891), - [anon_sym___declspec] = ACTIONS(2889), - [anon_sym___based] = ACTIONS(2889), - [anon_sym___cdecl] = ACTIONS(2889), - [anon_sym___clrcall] = ACTIONS(2889), - [anon_sym___stdcall] = ACTIONS(2889), - [anon_sym___fastcall] = ACTIONS(2889), - [anon_sym___thiscall] = ACTIONS(2889), - [anon_sym___vectorcall] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_RBRACE] = ACTIONS(2891), - [anon_sym_signed] = ACTIONS(2889), - [anon_sym_unsigned] = ACTIONS(2889), - [anon_sym_long] = ACTIONS(2889), - [anon_sym_short] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_register] = ACTIONS(2889), - [anon_sym_inline] = ACTIONS(2889), - [anon_sym___inline] = ACTIONS(2889), - [anon_sym___inline__] = ACTIONS(2889), - [anon_sym___forceinline] = ACTIONS(2889), - [anon_sym_thread_local] = ACTIONS(2889), - [anon_sym___thread] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_constexpr] = ACTIONS(2889), - [anon_sym_volatile] = ACTIONS(2889), - [anon_sym_restrict] = ACTIONS(2889), - [anon_sym___restrict__] = ACTIONS(2889), - [anon_sym__Atomic] = ACTIONS(2889), - [anon_sym__Noreturn] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_mutable] = ACTIONS(2889), - [anon_sym_constinit] = ACTIONS(2889), - [anon_sym_consteval] = ACTIONS(2889), - [sym_primitive_type] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_union] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_do] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_goto] = ACTIONS(2889), - [anon_sym___try] = ACTIONS(2889), - [anon_sym___leave] = ACTIONS(2889), - [anon_sym_not] = ACTIONS(2889), - [anon_sym_compl] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_sizeof] = ACTIONS(2889), - [anon_sym___alignof__] = ACTIONS(2889), - [anon_sym___alignof] = ACTIONS(2889), - [anon_sym__alignof] = ACTIONS(2889), - [anon_sym_alignof] = ACTIONS(2889), - [anon_sym__Alignof] = ACTIONS(2889), - [anon_sym_offsetof] = ACTIONS(2889), - [anon_sym__Generic] = ACTIONS(2889), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [anon_sym_L_SQUOTE] = ACTIONS(2891), - [anon_sym_u_SQUOTE] = ACTIONS(2891), - [anon_sym_U_SQUOTE] = ACTIONS(2891), - [anon_sym_u8_SQUOTE] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2891), - [anon_sym_L_DQUOTE] = ACTIONS(2891), - [anon_sym_u_DQUOTE] = ACTIONS(2891), - [anon_sym_U_DQUOTE] = ACTIONS(2891), - [anon_sym_u8_DQUOTE] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2891), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [anon_sym_NULL] = ACTIONS(2889), - [anon_sym_nullptr] = ACTIONS(2889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2889), - [anon_sym_decltype] = ACTIONS(2889), - [anon_sym_virtual] = ACTIONS(2889), - [anon_sym_alignas] = ACTIONS(2889), - [anon_sym_explicit] = ACTIONS(2889), - [anon_sym_typename] = ACTIONS(2889), - [anon_sym_template] = ACTIONS(2889), - [anon_sym_operator] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_namespace] = ACTIONS(2889), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_static_assert] = ACTIONS(2889), - [anon_sym_concept] = ACTIONS(2889), - [anon_sym_co_return] = ACTIONS(2889), - [anon_sym_co_yield] = ACTIONS(2889), - [anon_sym_R_DQUOTE] = ACTIONS(2891), - [anon_sym_LR_DQUOTE] = ACTIONS(2891), - [anon_sym_uR_DQUOTE] = ACTIONS(2891), - [anon_sym_UR_DQUOTE] = ACTIONS(2891), - [anon_sym_u8R_DQUOTE] = ACTIONS(2891), - [anon_sym_co_await] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_requires] = ACTIONS(2889), - [sym_this] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2899), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), }, [736] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2981), + [aux_sym_preproc_include_token1] = ACTIONS(2981), + [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_if_token1] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2981), + [sym_preproc_directive] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym___extension__] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym___attribute__] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), + [anon_sym___declspec] = ACTIONS(2981), + [anon_sym___based] = ACTIONS(2981), + [anon_sym___cdecl] = ACTIONS(2981), + [anon_sym___clrcall] = ACTIONS(2981), + [anon_sym___stdcall] = ACTIONS(2981), + [anon_sym___fastcall] = ACTIONS(2981), + [anon_sym___thiscall] = ACTIONS(2981), + [anon_sym___vectorcall] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_signed] = ACTIONS(2981), + [anon_sym_unsigned] = ACTIONS(2981), + [anon_sym_long] = ACTIONS(2981), + [anon_sym_short] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_register] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym___inline] = ACTIONS(2981), + [anon_sym___inline__] = ACTIONS(2981), + [anon_sym___forceinline] = ACTIONS(2981), + [anon_sym_thread_local] = ACTIONS(2981), + [anon_sym___thread] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_constexpr] = ACTIONS(2981), + [anon_sym_volatile] = ACTIONS(2981), + [anon_sym_restrict] = ACTIONS(2981), + [anon_sym___restrict__] = ACTIONS(2981), + [anon_sym__Atomic] = ACTIONS(2981), + [anon_sym__Noreturn] = ACTIONS(2981), + [anon_sym_noreturn] = ACTIONS(2981), + [anon_sym_mutable] = ACTIONS(2981), + [anon_sym_constinit] = ACTIONS(2981), + [anon_sym_consteval] = ACTIONS(2981), + [sym_primitive_type] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_else] = ACTIONS(2981), + [anon_sym_switch] = ACTIONS(2981), + [anon_sym_case] = ACTIONS(2981), + [anon_sym_default] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_do] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_goto] = ACTIONS(2981), + [anon_sym___try] = ACTIONS(2981), + [anon_sym___leave] = ACTIONS(2981), + [anon_sym_not] = ACTIONS(2981), + [anon_sym_compl] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_sizeof] = ACTIONS(2981), + [anon_sym___alignof__] = ACTIONS(2981), + [anon_sym___alignof] = ACTIONS(2981), + [anon_sym__alignof] = ACTIONS(2981), + [anon_sym_alignof] = ACTIONS(2981), + [anon_sym__Alignof] = ACTIONS(2981), + [anon_sym_offsetof] = ACTIONS(2981), + [anon_sym__Generic] = ACTIONS(2981), + [anon_sym_asm] = ACTIONS(2981), + [anon_sym___asm__] = ACTIONS(2981), + [sym_number_literal] = ACTIONS(2983), + [anon_sym_L_SQUOTE] = ACTIONS(2983), + [anon_sym_u_SQUOTE] = ACTIONS(2983), + [anon_sym_U_SQUOTE] = ACTIONS(2983), + [anon_sym_u8_SQUOTE] = ACTIONS(2983), + [anon_sym_SQUOTE] = ACTIONS(2983), + [anon_sym_L_DQUOTE] = ACTIONS(2983), + [anon_sym_u_DQUOTE] = ACTIONS(2983), + [anon_sym_U_DQUOTE] = ACTIONS(2983), + [anon_sym_u8_DQUOTE] = ACTIONS(2983), + [anon_sym_DQUOTE] = ACTIONS(2983), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [anon_sym_NULL] = ACTIONS(2981), + [anon_sym_nullptr] = ACTIONS(2981), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2981), + [anon_sym_virtual] = ACTIONS(2981), + [anon_sym_alignas] = ACTIONS(2981), + [anon_sym_explicit] = ACTIONS(2981), + [anon_sym_typename] = ACTIONS(2981), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_delete] = ACTIONS(2981), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_namespace] = ACTIONS(2981), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_static_assert] = ACTIONS(2981), + [anon_sym_concept] = ACTIONS(2981), + [anon_sym_co_return] = ACTIONS(2981), + [anon_sym_co_yield] = ACTIONS(2981), + [anon_sym_R_DQUOTE] = ACTIONS(2983), + [anon_sym_LR_DQUOTE] = ACTIONS(2983), + [anon_sym_uR_DQUOTE] = ACTIONS(2983), + [anon_sym_UR_DQUOTE] = ACTIONS(2983), + [anon_sym_u8R_DQUOTE] = ACTIONS(2983), + [anon_sym_co_await] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_requires] = ACTIONS(2981), + [sym_this] = ACTIONS(2981), }, [737] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2985), + [aux_sym_preproc_include_token1] = ACTIONS(2985), + [aux_sym_preproc_def_token1] = ACTIONS(2985), + [aux_sym_preproc_if_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2985), + [sym_preproc_directive] = ACTIONS(2985), + [anon_sym_LPAREN2] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym___extension__] = ACTIONS(2985), + [anon_sym_typedef] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym___attribute__] = ACTIONS(2985), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), + [anon_sym___declspec] = ACTIONS(2985), + [anon_sym___based] = ACTIONS(2985), + [anon_sym___cdecl] = ACTIONS(2985), + [anon_sym___clrcall] = ACTIONS(2985), + [anon_sym___stdcall] = ACTIONS(2985), + [anon_sym___fastcall] = ACTIONS(2985), + [anon_sym___thiscall] = ACTIONS(2985), + [anon_sym___vectorcall] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_signed] = ACTIONS(2985), + [anon_sym_unsigned] = ACTIONS(2985), + [anon_sym_long] = ACTIONS(2985), + [anon_sym_short] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_register] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym___inline] = ACTIONS(2985), + [anon_sym___inline__] = ACTIONS(2985), + [anon_sym___forceinline] = ACTIONS(2985), + [anon_sym_thread_local] = ACTIONS(2985), + [anon_sym___thread] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_constexpr] = ACTIONS(2985), + [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_restrict] = ACTIONS(2985), + [anon_sym___restrict__] = ACTIONS(2985), + [anon_sym__Atomic] = ACTIONS(2985), + [anon_sym__Noreturn] = ACTIONS(2985), + [anon_sym_noreturn] = ACTIONS(2985), + [anon_sym_mutable] = ACTIONS(2985), + [anon_sym_constinit] = ACTIONS(2985), + [anon_sym_consteval] = ACTIONS(2985), + [sym_primitive_type] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_case] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym___try] = ACTIONS(2985), + [anon_sym___leave] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_compl] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_sizeof] = ACTIONS(2985), + [anon_sym___alignof__] = ACTIONS(2985), + [anon_sym___alignof] = ACTIONS(2985), + [anon_sym__alignof] = ACTIONS(2985), + [anon_sym_alignof] = ACTIONS(2985), + [anon_sym__Alignof] = ACTIONS(2985), + [anon_sym_offsetof] = ACTIONS(2985), + [anon_sym__Generic] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym___asm__] = ACTIONS(2985), + [sym_number_literal] = ACTIONS(2987), + [anon_sym_L_SQUOTE] = ACTIONS(2987), + [anon_sym_u_SQUOTE] = ACTIONS(2987), + [anon_sym_U_SQUOTE] = ACTIONS(2987), + [anon_sym_u8_SQUOTE] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_L_DQUOTE] = ACTIONS(2987), + [anon_sym_u_DQUOTE] = ACTIONS(2987), + [anon_sym_U_DQUOTE] = ACTIONS(2987), + [anon_sym_u8_DQUOTE] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [anon_sym_NULL] = ACTIONS(2985), + [anon_sym_nullptr] = ACTIONS(2985), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2985), + [anon_sym_virtual] = ACTIONS(2985), + [anon_sym_alignas] = ACTIONS(2985), + [anon_sym_explicit] = ACTIONS(2985), + [anon_sym_typename] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(2985), + [anon_sym_operator] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_delete] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_namespace] = ACTIONS(2985), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_static_assert] = ACTIONS(2985), + [anon_sym_concept] = ACTIONS(2985), + [anon_sym_co_return] = ACTIONS(2985), + [anon_sym_co_yield] = ACTIONS(2985), + [anon_sym_R_DQUOTE] = ACTIONS(2987), + [anon_sym_LR_DQUOTE] = ACTIONS(2987), + [anon_sym_uR_DQUOTE] = ACTIONS(2987), + [anon_sym_UR_DQUOTE] = ACTIONS(2987), + [anon_sym_u8R_DQUOTE] = ACTIONS(2987), + [anon_sym_co_await] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_requires] = ACTIONS(2985), + [sym_this] = ACTIONS(2985), }, [738] = { - [sym_identifier] = ACTIONS(2877), - [aux_sym_preproc_include_token1] = ACTIONS(2877), - [aux_sym_preproc_def_token1] = ACTIONS(2877), - [aux_sym_preproc_if_token1] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2877), - [sym_preproc_directive] = ACTIONS(2877), - [anon_sym_LPAREN2] = ACTIONS(2879), - [anon_sym_BANG] = ACTIONS(2879), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2879), - [anon_sym_AMP_AMP] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym___extension__] = ACTIONS(2877), - [anon_sym_typedef] = ACTIONS(2877), - [anon_sym_extern] = ACTIONS(2877), - [anon_sym___attribute__] = ACTIONS(2877), - [anon_sym_COLON_COLON] = ACTIONS(2879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2879), - [anon_sym___declspec] = ACTIONS(2877), - [anon_sym___based] = ACTIONS(2877), - [anon_sym___cdecl] = ACTIONS(2877), - [anon_sym___clrcall] = ACTIONS(2877), - [anon_sym___stdcall] = ACTIONS(2877), - [anon_sym___fastcall] = ACTIONS(2877), - [anon_sym___thiscall] = ACTIONS(2877), - [anon_sym___vectorcall] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_RBRACE] = ACTIONS(2879), - [anon_sym_signed] = ACTIONS(2877), - [anon_sym_unsigned] = ACTIONS(2877), - [anon_sym_long] = ACTIONS(2877), - [anon_sym_short] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_register] = ACTIONS(2877), - [anon_sym_inline] = ACTIONS(2877), - [anon_sym___inline] = ACTIONS(2877), - [anon_sym___inline__] = ACTIONS(2877), - [anon_sym___forceinline] = ACTIONS(2877), - [anon_sym_thread_local] = ACTIONS(2877), - [anon_sym___thread] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_constexpr] = ACTIONS(2877), - [anon_sym_volatile] = ACTIONS(2877), - [anon_sym_restrict] = ACTIONS(2877), - [anon_sym___restrict__] = ACTIONS(2877), - [anon_sym__Atomic] = ACTIONS(2877), - [anon_sym__Noreturn] = ACTIONS(2877), - [anon_sym_noreturn] = ACTIONS(2877), - [anon_sym_mutable] = ACTIONS(2877), - [anon_sym_constinit] = ACTIONS(2877), - [anon_sym_consteval] = ACTIONS(2877), - [sym_primitive_type] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_else] = ACTIONS(2877), - [anon_sym_switch] = ACTIONS(2877), - [anon_sym_case] = ACTIONS(2877), - [anon_sym_default] = ACTIONS(2877), - [anon_sym_while] = ACTIONS(2877), - [anon_sym_do] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_goto] = ACTIONS(2877), - [anon_sym___try] = ACTIONS(2877), - [anon_sym___leave] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2877), - [anon_sym_compl] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2877), - [anon_sym___alignof__] = ACTIONS(2877), - [anon_sym___alignof] = ACTIONS(2877), - [anon_sym__alignof] = ACTIONS(2877), - [anon_sym_alignof] = ACTIONS(2877), - [anon_sym__Alignof] = ACTIONS(2877), - [anon_sym_offsetof] = ACTIONS(2877), - [anon_sym__Generic] = ACTIONS(2877), - [anon_sym_asm] = ACTIONS(2877), - [anon_sym___asm__] = ACTIONS(2877), - [sym_number_literal] = ACTIONS(2879), - [anon_sym_L_SQUOTE] = ACTIONS(2879), - [anon_sym_u_SQUOTE] = ACTIONS(2879), - [anon_sym_U_SQUOTE] = ACTIONS(2879), - [anon_sym_u8_SQUOTE] = ACTIONS(2879), - [anon_sym_SQUOTE] = ACTIONS(2879), - [anon_sym_L_DQUOTE] = ACTIONS(2879), - [anon_sym_u_DQUOTE] = ACTIONS(2879), - [anon_sym_U_DQUOTE] = ACTIONS(2879), - [anon_sym_u8_DQUOTE] = ACTIONS(2879), - [anon_sym_DQUOTE] = ACTIONS(2879), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [anon_sym_NULL] = ACTIONS(2877), - [anon_sym_nullptr] = ACTIONS(2877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2877), - [anon_sym_decltype] = ACTIONS(2877), - [anon_sym_virtual] = ACTIONS(2877), - [anon_sym_alignas] = ACTIONS(2877), - [anon_sym_explicit] = ACTIONS(2877), - [anon_sym_typename] = ACTIONS(2877), - [anon_sym_template] = ACTIONS(2877), - [anon_sym_operator] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2877), - [anon_sym_delete] = ACTIONS(2877), - [anon_sym_throw] = ACTIONS(2877), - [anon_sym_namespace] = ACTIONS(2877), - [anon_sym_using] = ACTIONS(2877), - [anon_sym_static_assert] = ACTIONS(2877), - [anon_sym_concept] = ACTIONS(2877), - [anon_sym_co_return] = ACTIONS(2877), - [anon_sym_co_yield] = ACTIONS(2877), - [anon_sym_R_DQUOTE] = ACTIONS(2879), - [anon_sym_LR_DQUOTE] = ACTIONS(2879), - [anon_sym_uR_DQUOTE] = ACTIONS(2879), - [anon_sym_UR_DQUOTE] = ACTIONS(2879), - [anon_sym_u8R_DQUOTE] = ACTIONS(2879), - [anon_sym_co_await] = ACTIONS(2877), - [anon_sym_new] = ACTIONS(2877), - [anon_sym_requires] = ACTIONS(2877), - [sym_this] = ACTIONS(2877), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2977), + [aux_sym_preproc_include_token1] = ACTIONS(2977), + [aux_sym_preproc_def_token1] = ACTIONS(2977), + [aux_sym_preproc_if_token1] = ACTIONS(2977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2977), + [sym_preproc_directive] = ACTIONS(2977), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym___extension__] = ACTIONS(2977), + [anon_sym_typedef] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym___attribute__] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(2979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), + [anon_sym___declspec] = ACTIONS(2977), + [anon_sym___based] = ACTIONS(2977), + [anon_sym___cdecl] = ACTIONS(2977), + [anon_sym___clrcall] = ACTIONS(2977), + [anon_sym___stdcall] = ACTIONS(2977), + [anon_sym___fastcall] = ACTIONS(2977), + [anon_sym___thiscall] = ACTIONS(2977), + [anon_sym___vectorcall] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_signed] = ACTIONS(2977), + [anon_sym_unsigned] = ACTIONS(2977), + [anon_sym_long] = ACTIONS(2977), + [anon_sym_short] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_register] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym___inline] = ACTIONS(2977), + [anon_sym___inline__] = ACTIONS(2977), + [anon_sym___forceinline] = ACTIONS(2977), + [anon_sym_thread_local] = ACTIONS(2977), + [anon_sym___thread] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_constexpr] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_restrict] = ACTIONS(2977), + [anon_sym___restrict__] = ACTIONS(2977), + [anon_sym__Atomic] = ACTIONS(2977), + [anon_sym__Noreturn] = ACTIONS(2977), + [anon_sym_noreturn] = ACTIONS(2977), + [anon_sym_mutable] = ACTIONS(2977), + [anon_sym_constinit] = ACTIONS(2977), + [anon_sym_consteval] = ACTIONS(2977), + [sym_primitive_type] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_switch] = ACTIONS(2977), + [anon_sym_case] = ACTIONS(2977), + [anon_sym_default] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_do] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym___try] = ACTIONS(2977), + [anon_sym___leave] = ACTIONS(2977), + [anon_sym_not] = ACTIONS(2977), + [anon_sym_compl] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_sizeof] = ACTIONS(2977), + [anon_sym___alignof__] = ACTIONS(2977), + [anon_sym___alignof] = ACTIONS(2977), + [anon_sym__alignof] = ACTIONS(2977), + [anon_sym_alignof] = ACTIONS(2977), + [anon_sym__Alignof] = ACTIONS(2977), + [anon_sym_offsetof] = ACTIONS(2977), + [anon_sym__Generic] = ACTIONS(2977), + [anon_sym_asm] = ACTIONS(2977), + [anon_sym___asm__] = ACTIONS(2977), + [sym_number_literal] = ACTIONS(2979), + [anon_sym_L_SQUOTE] = ACTIONS(2979), + [anon_sym_u_SQUOTE] = ACTIONS(2979), + [anon_sym_U_SQUOTE] = ACTIONS(2979), + [anon_sym_u8_SQUOTE] = ACTIONS(2979), + [anon_sym_SQUOTE] = ACTIONS(2979), + [anon_sym_L_DQUOTE] = ACTIONS(2979), + [anon_sym_u_DQUOTE] = ACTIONS(2979), + [anon_sym_U_DQUOTE] = ACTIONS(2979), + [anon_sym_u8_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [anon_sym_NULL] = ACTIONS(2977), + [anon_sym_nullptr] = ACTIONS(2977), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2977), + [anon_sym_decltype] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_alignas] = ACTIONS(2977), + [anon_sym_explicit] = ACTIONS(2977), + [anon_sym_typename] = ACTIONS(2977), + [anon_sym_template] = ACTIONS(2977), + [anon_sym_operator] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_namespace] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_static_assert] = ACTIONS(2977), + [anon_sym_concept] = ACTIONS(2977), + [anon_sym_co_return] = ACTIONS(2977), + [anon_sym_co_yield] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2979), + [anon_sym_LR_DQUOTE] = ACTIONS(2979), + [anon_sym_uR_DQUOTE] = ACTIONS(2979), + [anon_sym_UR_DQUOTE] = ACTIONS(2979), + [anon_sym_u8R_DQUOTE] = ACTIONS(2979), + [anon_sym_co_await] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_requires] = ACTIONS(2977), + [sym_this] = ACTIONS(2977), }, [739] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, [740] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [741] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [ts_builtin_sym_end] = ACTIONS(2975), + [sym_identifier] = ACTIONS(2973), + [aux_sym_preproc_include_token1] = ACTIONS(2973), + [aux_sym_preproc_def_token1] = ACTIONS(2973), + [aux_sym_preproc_if_token1] = ACTIONS(2973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), + [sym_preproc_directive] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2975), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_AMP_AMP] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym___extension__] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym___attribute__] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), + [anon_sym___declspec] = ACTIONS(2973), + [anon_sym___based] = ACTIONS(2973), + [anon_sym___cdecl] = ACTIONS(2973), + [anon_sym___clrcall] = ACTIONS(2973), + [anon_sym___stdcall] = ACTIONS(2973), + [anon_sym___fastcall] = ACTIONS(2973), + [anon_sym___thiscall] = ACTIONS(2973), + [anon_sym___vectorcall] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_signed] = ACTIONS(2973), + [anon_sym_unsigned] = ACTIONS(2973), + [anon_sym_long] = ACTIONS(2973), + [anon_sym_short] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_register] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym___inline] = ACTIONS(2973), + [anon_sym___inline__] = ACTIONS(2973), + [anon_sym___forceinline] = ACTIONS(2973), + [anon_sym_thread_local] = ACTIONS(2973), + [anon_sym___thread] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_constexpr] = ACTIONS(2973), + [anon_sym_volatile] = ACTIONS(2973), + [anon_sym_restrict] = ACTIONS(2973), + [anon_sym___restrict__] = ACTIONS(2973), + [anon_sym__Atomic] = ACTIONS(2973), + [anon_sym__Noreturn] = ACTIONS(2973), + [anon_sym_noreturn] = ACTIONS(2973), + [anon_sym_mutable] = ACTIONS(2973), + [anon_sym_constinit] = ACTIONS(2973), + [anon_sym_consteval] = ACTIONS(2973), + [sym_primitive_type] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_else] = ACTIONS(2973), + [anon_sym_switch] = ACTIONS(2973), + [anon_sym_case] = ACTIONS(2973), + [anon_sym_default] = ACTIONS(2973), + [anon_sym_while] = ACTIONS(2973), + [anon_sym_do] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_goto] = ACTIONS(2973), + [anon_sym___try] = ACTIONS(2973), + [anon_sym___leave] = ACTIONS(2973), + [anon_sym_not] = ACTIONS(2973), + [anon_sym_compl] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2975), + [anon_sym_sizeof] = ACTIONS(2973), + [anon_sym___alignof__] = ACTIONS(2973), + [anon_sym___alignof] = ACTIONS(2973), + [anon_sym__alignof] = ACTIONS(2973), + [anon_sym_alignof] = ACTIONS(2973), + [anon_sym__Alignof] = ACTIONS(2973), + [anon_sym_offsetof] = ACTIONS(2973), + [anon_sym__Generic] = ACTIONS(2973), + [anon_sym_asm] = ACTIONS(2973), + [anon_sym___asm__] = ACTIONS(2973), + [sym_number_literal] = ACTIONS(2975), + [anon_sym_L_SQUOTE] = ACTIONS(2975), + [anon_sym_u_SQUOTE] = ACTIONS(2975), + [anon_sym_U_SQUOTE] = ACTIONS(2975), + [anon_sym_u8_SQUOTE] = ACTIONS(2975), + [anon_sym_SQUOTE] = ACTIONS(2975), + [anon_sym_L_DQUOTE] = ACTIONS(2975), + [anon_sym_u_DQUOTE] = ACTIONS(2975), + [anon_sym_U_DQUOTE] = ACTIONS(2975), + [anon_sym_u8_DQUOTE] = ACTIONS(2975), + [anon_sym_DQUOTE] = ACTIONS(2975), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [anon_sym_NULL] = ACTIONS(2973), + [anon_sym_nullptr] = ACTIONS(2973), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2973), + [anon_sym_virtual] = ACTIONS(2973), + [anon_sym_alignas] = ACTIONS(2973), + [anon_sym_explicit] = ACTIONS(2973), + [anon_sym_typename] = ACTIONS(2973), + [anon_sym_template] = ACTIONS(2973), + [anon_sym_operator] = ACTIONS(2973), + [anon_sym_try] = ACTIONS(2973), + [anon_sym_delete] = ACTIONS(2973), + [anon_sym_throw] = ACTIONS(2973), + [anon_sym_namespace] = ACTIONS(2973), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_static_assert] = ACTIONS(2973), + [anon_sym_concept] = ACTIONS(2973), + [anon_sym_co_return] = ACTIONS(2973), + [anon_sym_co_yield] = ACTIONS(2973), + [anon_sym_R_DQUOTE] = ACTIONS(2975), + [anon_sym_LR_DQUOTE] = ACTIONS(2975), + [anon_sym_uR_DQUOTE] = ACTIONS(2975), + [anon_sym_UR_DQUOTE] = ACTIONS(2975), + [anon_sym_u8R_DQUOTE] = ACTIONS(2975), + [anon_sym_co_await] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2973), + [anon_sym_requires] = ACTIONS(2973), + [sym_this] = ACTIONS(2973), + }, + [741] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, [742] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2957), + [aux_sym_preproc_include_token1] = ACTIONS(2957), + [aux_sym_preproc_def_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token2] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), + [sym_preproc_directive] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym___extension__] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym___attribute__] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), + [anon_sym___declspec] = ACTIONS(2957), + [anon_sym___based] = ACTIONS(2957), + [anon_sym___cdecl] = ACTIONS(2957), + [anon_sym___clrcall] = ACTIONS(2957), + [anon_sym___stdcall] = ACTIONS(2957), + [anon_sym___fastcall] = ACTIONS(2957), + [anon_sym___thiscall] = ACTIONS(2957), + [anon_sym___vectorcall] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_signed] = ACTIONS(2957), + [anon_sym_unsigned] = ACTIONS(2957), + [anon_sym_long] = ACTIONS(2957), + [anon_sym_short] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym___inline] = ACTIONS(2957), + [anon_sym___inline__] = ACTIONS(2957), + [anon_sym___forceinline] = ACTIONS(2957), + [anon_sym_thread_local] = ACTIONS(2957), + [anon_sym___thread] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_constexpr] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_restrict] = ACTIONS(2957), + [anon_sym___restrict__] = ACTIONS(2957), + [anon_sym__Atomic] = ACTIONS(2957), + [anon_sym__Noreturn] = ACTIONS(2957), + [anon_sym_noreturn] = ACTIONS(2957), + [anon_sym_mutable] = ACTIONS(2957), + [anon_sym_constinit] = ACTIONS(2957), + [anon_sym_consteval] = ACTIONS(2957), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym___try] = ACTIONS(2957), + [anon_sym___leave] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_compl] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym___alignof__] = ACTIONS(2957), + [anon_sym___alignof] = ACTIONS(2957), + [anon_sym__alignof] = ACTIONS(2957), + [anon_sym_alignof] = ACTIONS(2957), + [anon_sym__Alignof] = ACTIONS(2957), + [anon_sym_offsetof] = ACTIONS(2957), + [anon_sym__Generic] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym___asm__] = ACTIONS(2957), + [sym_number_literal] = ACTIONS(2959), + [anon_sym_L_SQUOTE] = ACTIONS(2959), + [anon_sym_u_SQUOTE] = ACTIONS(2959), + [anon_sym_U_SQUOTE] = ACTIONS(2959), + [anon_sym_u8_SQUOTE] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_L_DQUOTE] = ACTIONS(2959), + [anon_sym_u_DQUOTE] = ACTIONS(2959), + [anon_sym_U_DQUOTE] = ACTIONS(2959), + [anon_sym_u8_DQUOTE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [anon_sym_NULL] = ACTIONS(2957), + [anon_sym_nullptr] = ACTIONS(2957), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2957), + [anon_sym_decltype] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_alignas] = ACTIONS(2957), + [anon_sym_explicit] = ACTIONS(2957), + [anon_sym_typename] = ACTIONS(2957), + [anon_sym_template] = ACTIONS(2957), + [anon_sym_operator] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_delete] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_static_assert] = ACTIONS(2957), + [anon_sym_concept] = ACTIONS(2957), + [anon_sym_co_return] = ACTIONS(2957), + [anon_sym_co_yield] = ACTIONS(2957), + [anon_sym_R_DQUOTE] = ACTIONS(2959), + [anon_sym_LR_DQUOTE] = ACTIONS(2959), + [anon_sym_uR_DQUOTE] = ACTIONS(2959), + [anon_sym_UR_DQUOTE] = ACTIONS(2959), + [anon_sym_u8R_DQUOTE] = ACTIONS(2959), + [anon_sym_co_await] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_requires] = ACTIONS(2957), + [sym_this] = ACTIONS(2957), }, [743] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2925), + [aux_sym_preproc_include_token1] = ACTIONS(2925), + [aux_sym_preproc_def_token1] = ACTIONS(2925), + [aux_sym_preproc_if_token1] = ACTIONS(2925), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), + [sym_preproc_directive] = ACTIONS(2925), + [anon_sym_LPAREN2] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym___extension__] = ACTIONS(2925), + [anon_sym_typedef] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2925), + [anon_sym___attribute__] = ACTIONS(2925), + [anon_sym_COLON_COLON] = ACTIONS(2927), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), + [anon_sym___declspec] = ACTIONS(2925), + [anon_sym___based] = ACTIONS(2925), + [anon_sym___cdecl] = ACTIONS(2925), + [anon_sym___clrcall] = ACTIONS(2925), + [anon_sym___stdcall] = ACTIONS(2925), + [anon_sym___fastcall] = ACTIONS(2925), + [anon_sym___thiscall] = ACTIONS(2925), + [anon_sym___vectorcall] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_signed] = ACTIONS(2925), + [anon_sym_unsigned] = ACTIONS(2925), + [anon_sym_long] = ACTIONS(2925), + [anon_sym_short] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_register] = ACTIONS(2925), + [anon_sym_inline] = ACTIONS(2925), + [anon_sym___inline] = ACTIONS(2925), + [anon_sym___inline__] = ACTIONS(2925), + [anon_sym___forceinline] = ACTIONS(2925), + [anon_sym_thread_local] = ACTIONS(2925), + [anon_sym___thread] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_constexpr] = ACTIONS(2925), + [anon_sym_volatile] = ACTIONS(2925), + [anon_sym_restrict] = ACTIONS(2925), + [anon_sym___restrict__] = ACTIONS(2925), + [anon_sym__Atomic] = ACTIONS(2925), + [anon_sym__Noreturn] = ACTIONS(2925), + [anon_sym_noreturn] = ACTIONS(2925), + [anon_sym_mutable] = ACTIONS(2925), + [anon_sym_constinit] = ACTIONS(2925), + [anon_sym_consteval] = ACTIONS(2925), + [sym_primitive_type] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_class] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2925), + [anon_sym_switch] = ACTIONS(2925), + [anon_sym_case] = ACTIONS(2925), + [anon_sym_default] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_do] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym___try] = ACTIONS(2925), + [anon_sym___leave] = ACTIONS(2925), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_sizeof] = ACTIONS(2925), + [anon_sym___alignof__] = ACTIONS(2925), + [anon_sym___alignof] = ACTIONS(2925), + [anon_sym__alignof] = ACTIONS(2925), + [anon_sym_alignof] = ACTIONS(2925), + [anon_sym__Alignof] = ACTIONS(2925), + [anon_sym_offsetof] = ACTIONS(2925), + [anon_sym__Generic] = ACTIONS(2925), + [anon_sym_asm] = ACTIONS(2925), + [anon_sym___asm__] = ACTIONS(2925), + [sym_number_literal] = ACTIONS(2927), + [anon_sym_L_SQUOTE] = ACTIONS(2927), + [anon_sym_u_SQUOTE] = ACTIONS(2927), + [anon_sym_U_SQUOTE] = ACTIONS(2927), + [anon_sym_u8_SQUOTE] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2927), + [anon_sym_L_DQUOTE] = ACTIONS(2927), + [anon_sym_u_DQUOTE] = ACTIONS(2927), + [anon_sym_U_DQUOTE] = ACTIONS(2927), + [anon_sym_u8_DQUOTE] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2927), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [anon_sym_NULL] = ACTIONS(2925), + [anon_sym_nullptr] = ACTIONS(2925), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2925), + [anon_sym_decltype] = ACTIONS(2925), + [anon_sym_virtual] = ACTIONS(2925), + [anon_sym_alignas] = ACTIONS(2925), + [anon_sym_explicit] = ACTIONS(2925), + [anon_sym_typename] = ACTIONS(2925), + [anon_sym_template] = ACTIONS(2925), + [anon_sym_operator] = ACTIONS(2925), + [anon_sym_try] = ACTIONS(2925), + [anon_sym_delete] = ACTIONS(2925), + [anon_sym_throw] = ACTIONS(2925), + [anon_sym_namespace] = ACTIONS(2925), + [anon_sym_using] = ACTIONS(2925), + [anon_sym_static_assert] = ACTIONS(2925), + [anon_sym_concept] = ACTIONS(2925), + [anon_sym_co_return] = ACTIONS(2925), + [anon_sym_co_yield] = ACTIONS(2925), + [anon_sym_R_DQUOTE] = ACTIONS(2927), + [anon_sym_LR_DQUOTE] = ACTIONS(2927), + [anon_sym_uR_DQUOTE] = ACTIONS(2927), + [anon_sym_UR_DQUOTE] = ACTIONS(2927), + [anon_sym_u8R_DQUOTE] = ACTIONS(2927), + [anon_sym_co_await] = ACTIONS(2925), + [anon_sym_new] = ACTIONS(2925), + [anon_sym_requires] = ACTIONS(2925), + [sym_this] = ACTIONS(2925), }, [744] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [745] = { - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_include_token1] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token2] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym___cdecl] = ACTIONS(2949), - [anon_sym___clrcall] = ACTIONS(2949), - [anon_sym___stdcall] = ACTIONS(2949), - [anon_sym___fastcall] = ACTIONS(2949), - [anon_sym___thiscall] = ACTIONS(2949), - [anon_sym___vectorcall] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym___try] = ACTIONS(2949), - [anon_sym___leave] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [sym_number_literal] = ACTIONS(2951), - [anon_sym_L_SQUOTE] = ACTIONS(2951), - [anon_sym_u_SQUOTE] = ACTIONS(2951), - [anon_sym_U_SQUOTE] = ACTIONS(2951), - [anon_sym_u8_SQUOTE] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_L_DQUOTE] = ACTIONS(2951), - [anon_sym_u_DQUOTE] = ACTIONS(2951), - [anon_sym_U_DQUOTE] = ACTIONS(2951), - [anon_sym_u8_DQUOTE] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), + [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_preproc_else_in_field_declaration_list] = STATE(9231), + [sym_preproc_elif_in_field_declaration_list] = STATE(9231), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6205), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(7192), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2057), + [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(8453), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3432), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - [anon_sym_concept] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [anon_sym_R_DQUOTE] = ACTIONS(2951), - [anon_sym_LR_DQUOTE] = ACTIONS(2951), - [anon_sym_uR_DQUOTE] = ACTIONS(2951), - [anon_sym_UR_DQUOTE] = ACTIONS(2951), - [anon_sym_u8R_DQUOTE] = ACTIONS(2951), - [anon_sym_co_await] = ACTIONS(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [sym_this] = ACTIONS(2949), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3446), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_static_assert] = ACTIONS(3452), + }, + [745] = { + [sym_identifier] = ACTIONS(2941), + [aux_sym_preproc_include_token1] = ACTIONS(2941), + [aux_sym_preproc_def_token1] = ACTIONS(2941), + [aux_sym_preproc_if_token1] = ACTIONS(2941), + [aux_sym_preproc_if_token2] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), + [sym_preproc_directive] = ACTIONS(2941), + [anon_sym_LPAREN2] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_AMP_AMP] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2943), + [anon_sym___extension__] = ACTIONS(2941), + [anon_sym_typedef] = ACTIONS(2941), + [anon_sym_extern] = ACTIONS(2941), + [anon_sym___attribute__] = ACTIONS(2941), + [anon_sym_COLON_COLON] = ACTIONS(2943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), + [anon_sym___declspec] = ACTIONS(2941), + [anon_sym___based] = ACTIONS(2941), + [anon_sym___cdecl] = ACTIONS(2941), + [anon_sym___clrcall] = ACTIONS(2941), + [anon_sym___stdcall] = ACTIONS(2941), + [anon_sym___fastcall] = ACTIONS(2941), + [anon_sym___thiscall] = ACTIONS(2941), + [anon_sym___vectorcall] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_signed] = ACTIONS(2941), + [anon_sym_unsigned] = ACTIONS(2941), + [anon_sym_long] = ACTIONS(2941), + [anon_sym_short] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_static] = ACTIONS(2941), + [anon_sym_register] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2941), + [anon_sym___inline] = ACTIONS(2941), + [anon_sym___inline__] = ACTIONS(2941), + [anon_sym___forceinline] = ACTIONS(2941), + [anon_sym_thread_local] = ACTIONS(2941), + [anon_sym___thread] = ACTIONS(2941), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_constexpr] = ACTIONS(2941), + [anon_sym_volatile] = ACTIONS(2941), + [anon_sym_restrict] = ACTIONS(2941), + [anon_sym___restrict__] = ACTIONS(2941), + [anon_sym__Atomic] = ACTIONS(2941), + [anon_sym__Noreturn] = ACTIONS(2941), + [anon_sym_noreturn] = ACTIONS(2941), + [anon_sym_mutable] = ACTIONS(2941), + [anon_sym_constinit] = ACTIONS(2941), + [anon_sym_consteval] = ACTIONS(2941), + [sym_primitive_type] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2941), + [anon_sym_class] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_else] = ACTIONS(2941), + [anon_sym_switch] = ACTIONS(2941), + [anon_sym_case] = ACTIONS(2941), + [anon_sym_default] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_goto] = ACTIONS(2941), + [anon_sym___try] = ACTIONS(2941), + [anon_sym___leave] = ACTIONS(2941), + [anon_sym_not] = ACTIONS(2941), + [anon_sym_compl] = ACTIONS(2941), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_sizeof] = ACTIONS(2941), + [anon_sym___alignof__] = ACTIONS(2941), + [anon_sym___alignof] = ACTIONS(2941), + [anon_sym__alignof] = ACTIONS(2941), + [anon_sym_alignof] = ACTIONS(2941), + [anon_sym__Alignof] = ACTIONS(2941), + [anon_sym_offsetof] = ACTIONS(2941), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2941), + [anon_sym___asm__] = ACTIONS(2941), + [sym_number_literal] = ACTIONS(2943), + [anon_sym_L_SQUOTE] = ACTIONS(2943), + [anon_sym_u_SQUOTE] = ACTIONS(2943), + [anon_sym_U_SQUOTE] = ACTIONS(2943), + [anon_sym_u8_SQUOTE] = ACTIONS(2943), + [anon_sym_SQUOTE] = ACTIONS(2943), + [anon_sym_L_DQUOTE] = ACTIONS(2943), + [anon_sym_u_DQUOTE] = ACTIONS(2943), + [anon_sym_U_DQUOTE] = ACTIONS(2943), + [anon_sym_u8_DQUOTE] = ACTIONS(2943), + [anon_sym_DQUOTE] = ACTIONS(2943), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [anon_sym_NULL] = ACTIONS(2941), + [anon_sym_nullptr] = ACTIONS(2941), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2941), + [anon_sym_decltype] = ACTIONS(2941), + [anon_sym_virtual] = ACTIONS(2941), + [anon_sym_alignas] = ACTIONS(2941), + [anon_sym_explicit] = ACTIONS(2941), + [anon_sym_typename] = ACTIONS(2941), + [anon_sym_template] = ACTIONS(2941), + [anon_sym_operator] = ACTIONS(2941), + [anon_sym_try] = ACTIONS(2941), + [anon_sym_delete] = ACTIONS(2941), + [anon_sym_throw] = ACTIONS(2941), + [anon_sym_namespace] = ACTIONS(2941), + [anon_sym_using] = ACTIONS(2941), + [anon_sym_static_assert] = ACTIONS(2941), + [anon_sym_concept] = ACTIONS(2941), + [anon_sym_co_return] = ACTIONS(2941), + [anon_sym_co_yield] = ACTIONS(2941), + [anon_sym_R_DQUOTE] = ACTIONS(2943), + [anon_sym_LR_DQUOTE] = ACTIONS(2943), + [anon_sym_uR_DQUOTE] = ACTIONS(2943), + [anon_sym_UR_DQUOTE] = ACTIONS(2943), + [anon_sym_u8R_DQUOTE] = ACTIONS(2943), + [anon_sym_co_await] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_requires] = ACTIONS(2941), + [sym_this] = ACTIONS(2941), }, [746] = { - [sym_identifier] = ACTIONS(2893), - [aux_sym_preproc_include_token1] = ACTIONS(2893), - [aux_sym_preproc_def_token1] = ACTIONS(2893), - [aux_sym_preproc_if_token1] = ACTIONS(2893), - [aux_sym_preproc_if_token2] = ACTIONS(2893), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2893), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2893), - [anon_sym_LPAREN2] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2893), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym___extension__] = ACTIONS(2893), - [anon_sym_typedef] = ACTIONS(2893), - [anon_sym_extern] = ACTIONS(2893), - [anon_sym___attribute__] = ACTIONS(2893), - [anon_sym_COLON_COLON] = ACTIONS(2895), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2895), - [anon_sym___declspec] = ACTIONS(2893), - [anon_sym___based] = ACTIONS(2893), - [anon_sym___cdecl] = ACTIONS(2893), - [anon_sym___clrcall] = ACTIONS(2893), - [anon_sym___stdcall] = ACTIONS(2893), - [anon_sym___fastcall] = ACTIONS(2893), - [anon_sym___thiscall] = ACTIONS(2893), - [anon_sym___vectorcall] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_signed] = ACTIONS(2893), - [anon_sym_unsigned] = ACTIONS(2893), - [anon_sym_long] = ACTIONS(2893), - [anon_sym_short] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_register] = ACTIONS(2893), - [anon_sym_inline] = ACTIONS(2893), - [anon_sym___inline] = ACTIONS(2893), - [anon_sym___inline__] = ACTIONS(2893), - [anon_sym___forceinline] = ACTIONS(2893), - [anon_sym_thread_local] = ACTIONS(2893), - [anon_sym___thread] = ACTIONS(2893), - [anon_sym_const] = ACTIONS(2893), - [anon_sym_constexpr] = ACTIONS(2893), - [anon_sym_volatile] = ACTIONS(2893), - [anon_sym_restrict] = ACTIONS(2893), - [anon_sym___restrict__] = ACTIONS(2893), - [anon_sym__Atomic] = ACTIONS(2893), - [anon_sym__Noreturn] = ACTIONS(2893), - [anon_sym_noreturn] = ACTIONS(2893), - [anon_sym_mutable] = ACTIONS(2893), - [anon_sym_constinit] = ACTIONS(2893), - [anon_sym_consteval] = ACTIONS(2893), - [sym_primitive_type] = ACTIONS(2893), - [anon_sym_enum] = ACTIONS(2893), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2893), - [anon_sym_union] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_else] = ACTIONS(2893), - [anon_sym_switch] = ACTIONS(2893), - [anon_sym_case] = ACTIONS(2893), - [anon_sym_default] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_do] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2893), - [anon_sym_continue] = ACTIONS(2893), - [anon_sym_goto] = ACTIONS(2893), - [anon_sym___try] = ACTIONS(2893), - [anon_sym___leave] = ACTIONS(2893), - [anon_sym_not] = ACTIONS(2893), - [anon_sym_compl] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_sizeof] = ACTIONS(2893), - [anon_sym___alignof__] = ACTIONS(2893), - [anon_sym___alignof] = ACTIONS(2893), - [anon_sym__alignof] = ACTIONS(2893), - [anon_sym_alignof] = ACTIONS(2893), - [anon_sym__Alignof] = ACTIONS(2893), - [anon_sym_offsetof] = ACTIONS(2893), - [anon_sym__Generic] = ACTIONS(2893), - [anon_sym_asm] = ACTIONS(2893), - [anon_sym___asm__] = ACTIONS(2893), - [sym_number_literal] = ACTIONS(2895), - [anon_sym_L_SQUOTE] = ACTIONS(2895), - [anon_sym_u_SQUOTE] = ACTIONS(2895), - [anon_sym_U_SQUOTE] = ACTIONS(2895), - [anon_sym_u8_SQUOTE] = ACTIONS(2895), - [anon_sym_SQUOTE] = ACTIONS(2895), - [anon_sym_L_DQUOTE] = ACTIONS(2895), - [anon_sym_u_DQUOTE] = ACTIONS(2895), - [anon_sym_U_DQUOTE] = ACTIONS(2895), - [anon_sym_u8_DQUOTE] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [sym_true] = ACTIONS(2893), - [sym_false] = ACTIONS(2893), - [anon_sym_NULL] = ACTIONS(2893), - [anon_sym_nullptr] = ACTIONS(2893), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2893), - [anon_sym_decltype] = ACTIONS(2893), - [anon_sym_virtual] = ACTIONS(2893), - [anon_sym_alignas] = ACTIONS(2893), - [anon_sym_explicit] = ACTIONS(2893), - [anon_sym_typename] = ACTIONS(2893), - [anon_sym_template] = ACTIONS(2893), - [anon_sym_operator] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [anon_sym_delete] = ACTIONS(2893), - [anon_sym_throw] = ACTIONS(2893), - [anon_sym_namespace] = ACTIONS(2893), - [anon_sym_using] = ACTIONS(2893), - [anon_sym_static_assert] = ACTIONS(2893), - [anon_sym_concept] = ACTIONS(2893), - [anon_sym_co_return] = ACTIONS(2893), - [anon_sym_co_yield] = ACTIONS(2893), - [anon_sym_R_DQUOTE] = ACTIONS(2895), - [anon_sym_LR_DQUOTE] = ACTIONS(2895), - [anon_sym_uR_DQUOTE] = ACTIONS(2895), - [anon_sym_UR_DQUOTE] = ACTIONS(2895), - [anon_sym_u8R_DQUOTE] = ACTIONS(2895), - [anon_sym_co_await] = ACTIONS(2893), - [anon_sym_new] = ACTIONS(2893), - [anon_sym_requires] = ACTIONS(2893), - [sym_this] = ACTIONS(2893), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [747] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, [748] = { - [sym_identifier] = ACTIONS(2881), - [aux_sym_preproc_include_token1] = ACTIONS(2881), - [aux_sym_preproc_def_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token2] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2881), - [sym_preproc_directive] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym___based] = ACTIONS(2881), - [anon_sym___cdecl] = ACTIONS(2881), - [anon_sym___clrcall] = ACTIONS(2881), - [anon_sym___stdcall] = ACTIONS(2881), - [anon_sym___fastcall] = ACTIONS(2881), - [anon_sym___thiscall] = ACTIONS(2881), - [anon_sym___vectorcall] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym___try] = ACTIONS(2881), - [anon_sym___leave] = ACTIONS(2881), - [anon_sym_not] = ACTIONS(2881), - [anon_sym_compl] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_sizeof] = ACTIONS(2881), - [anon_sym___alignof__] = ACTIONS(2881), - [anon_sym___alignof] = ACTIONS(2881), - [anon_sym__alignof] = ACTIONS(2881), - [anon_sym_alignof] = ACTIONS(2881), - [anon_sym__Alignof] = ACTIONS(2881), - [anon_sym_offsetof] = ACTIONS(2881), - [anon_sym__Generic] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - [anon_sym___asm__] = ACTIONS(2881), - [sym_number_literal] = ACTIONS(2883), - [anon_sym_L_SQUOTE] = ACTIONS(2883), - [anon_sym_u_SQUOTE] = ACTIONS(2883), - [anon_sym_U_SQUOTE] = ACTIONS(2883), - [anon_sym_u8_SQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_L_DQUOTE] = ACTIONS(2883), - [anon_sym_u_DQUOTE] = ACTIONS(2883), - [anon_sym_U_DQUOTE] = ACTIONS(2883), - [anon_sym_u8_DQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [anon_sym_NULL] = ACTIONS(2881), - [anon_sym_nullptr] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_explicit] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_operator] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_static_assert] = ACTIONS(2881), - [anon_sym_concept] = ACTIONS(2881), - [anon_sym_co_return] = ACTIONS(2881), - [anon_sym_co_yield] = ACTIONS(2881), - [anon_sym_R_DQUOTE] = ACTIONS(2883), - [anon_sym_LR_DQUOTE] = ACTIONS(2883), - [anon_sym_uR_DQUOTE] = ACTIONS(2883), - [anon_sym_UR_DQUOTE] = ACTIONS(2883), - [anon_sym_u8R_DQUOTE] = ACTIONS(2883), - [anon_sym_co_await] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_requires] = ACTIONS(2881), - [sym_this] = ACTIONS(2881), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [749] = { - [sym_identifier] = ACTIONS(2957), - [aux_sym_preproc_include_token1] = ACTIONS(2957), - [aux_sym_preproc_def_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token2] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), - [sym_preproc_directive] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym___extension__] = ACTIONS(2957), - [anon_sym_typedef] = ACTIONS(2957), - [anon_sym_extern] = ACTIONS(2957), - [anon_sym___attribute__] = ACTIONS(2957), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), - [anon_sym___declspec] = ACTIONS(2957), - [anon_sym___based] = ACTIONS(2957), - [anon_sym___cdecl] = ACTIONS(2957), - [anon_sym___clrcall] = ACTIONS(2957), - [anon_sym___stdcall] = ACTIONS(2957), - [anon_sym___fastcall] = ACTIONS(2957), - [anon_sym___thiscall] = ACTIONS(2957), - [anon_sym___vectorcall] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_signed] = ACTIONS(2957), - [anon_sym_unsigned] = ACTIONS(2957), - [anon_sym_long] = ACTIONS(2957), - [anon_sym_short] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_register] = ACTIONS(2957), - [anon_sym_inline] = ACTIONS(2957), - [anon_sym___inline] = ACTIONS(2957), - [anon_sym___inline__] = ACTIONS(2957), - [anon_sym___forceinline] = ACTIONS(2957), - [anon_sym_thread_local] = ACTIONS(2957), - [anon_sym___thread] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_constexpr] = ACTIONS(2957), - [anon_sym_volatile] = ACTIONS(2957), - [anon_sym_restrict] = ACTIONS(2957), - [anon_sym___restrict__] = ACTIONS(2957), - [anon_sym__Atomic] = ACTIONS(2957), - [anon_sym__Noreturn] = ACTIONS(2957), - [anon_sym_noreturn] = ACTIONS(2957), - [anon_sym_mutable] = ACTIONS(2957), - [anon_sym_constinit] = ACTIONS(2957), - [anon_sym_consteval] = ACTIONS(2957), - [sym_primitive_type] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_case] = ACTIONS(2957), - [anon_sym_default] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_do] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym___try] = ACTIONS(2957), - [anon_sym___leave] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2957), - [anon_sym_compl] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2957), - [anon_sym___alignof__] = ACTIONS(2957), - [anon_sym___alignof] = ACTIONS(2957), - [anon_sym__alignof] = ACTIONS(2957), - [anon_sym_alignof] = ACTIONS(2957), - [anon_sym__Alignof] = ACTIONS(2957), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), - [anon_sym___asm__] = ACTIONS(2957), - [sym_number_literal] = ACTIONS(2959), - [anon_sym_L_SQUOTE] = ACTIONS(2959), - [anon_sym_u_SQUOTE] = ACTIONS(2959), - [anon_sym_U_SQUOTE] = ACTIONS(2959), - [anon_sym_u8_SQUOTE] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_L_DQUOTE] = ACTIONS(2959), - [anon_sym_u_DQUOTE] = ACTIONS(2959), - [anon_sym_U_DQUOTE] = ACTIONS(2959), - [anon_sym_u8_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [anon_sym_NULL] = ACTIONS(2957), - [anon_sym_nullptr] = ACTIONS(2957), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2957), - [anon_sym_decltype] = ACTIONS(2957), - [anon_sym_virtual] = ACTIONS(2957), - [anon_sym_alignas] = ACTIONS(2957), - [anon_sym_explicit] = ACTIONS(2957), - [anon_sym_typename] = ACTIONS(2957), - [anon_sym_template] = ACTIONS(2957), - [anon_sym_operator] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_delete] = ACTIONS(2957), - [anon_sym_throw] = ACTIONS(2957), - [anon_sym_namespace] = ACTIONS(2957), - [anon_sym_using] = ACTIONS(2957), - [anon_sym_static_assert] = ACTIONS(2957), - [anon_sym_concept] = ACTIONS(2957), - [anon_sym_co_return] = ACTIONS(2957), - [anon_sym_co_yield] = ACTIONS(2957), - [anon_sym_R_DQUOTE] = ACTIONS(2959), - [anon_sym_LR_DQUOTE] = ACTIONS(2959), - [anon_sym_uR_DQUOTE] = ACTIONS(2959), - [anon_sym_UR_DQUOTE] = ACTIONS(2959), - [anon_sym_u8R_DQUOTE] = ACTIONS(2959), - [anon_sym_co_await] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2957), - [anon_sym_requires] = ACTIONS(2957), - [sym_this] = ACTIONS(2957), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, [750] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [751] = { - [ts_builtin_sym_end] = ACTIONS(2899), - [sym_identifier] = ACTIONS(2897), - [aux_sym_preproc_include_token1] = ACTIONS(2897), - [aux_sym_preproc_def_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2897), - [sym_preproc_directive] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym___extension__] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym___attribute__] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2899), - [anon_sym___declspec] = ACTIONS(2897), - [anon_sym___based] = ACTIONS(2897), - [anon_sym___cdecl] = ACTIONS(2897), - [anon_sym___clrcall] = ACTIONS(2897), - [anon_sym___stdcall] = ACTIONS(2897), - [anon_sym___fastcall] = ACTIONS(2897), - [anon_sym___thiscall] = ACTIONS(2897), - [anon_sym___vectorcall] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_signed] = ACTIONS(2897), - [anon_sym_unsigned] = ACTIONS(2897), - [anon_sym_long] = ACTIONS(2897), - [anon_sym_short] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_register] = ACTIONS(2897), - [anon_sym_inline] = ACTIONS(2897), - [anon_sym___inline] = ACTIONS(2897), - [anon_sym___inline__] = ACTIONS(2897), - [anon_sym___forceinline] = ACTIONS(2897), - [anon_sym_thread_local] = ACTIONS(2897), - [anon_sym___thread] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_constexpr] = ACTIONS(2897), - [anon_sym_volatile] = ACTIONS(2897), - [anon_sym_restrict] = ACTIONS(2897), - [anon_sym___restrict__] = ACTIONS(2897), - [anon_sym__Atomic] = ACTIONS(2897), - [anon_sym__Noreturn] = ACTIONS(2897), - [anon_sym_noreturn] = ACTIONS(2897), - [anon_sym_mutable] = ACTIONS(2897), - [anon_sym_constinit] = ACTIONS(2897), - [anon_sym_consteval] = ACTIONS(2897), - [sym_primitive_type] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_goto] = ACTIONS(2897), - [anon_sym___try] = ACTIONS(2897), - [anon_sym___leave] = ACTIONS(2897), - [anon_sym_not] = ACTIONS(2897), - [anon_sym_compl] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_sizeof] = ACTIONS(2897), - [anon_sym___alignof__] = ACTIONS(2897), - [anon_sym___alignof] = ACTIONS(2897), - [anon_sym__alignof] = ACTIONS(2897), - [anon_sym_alignof] = ACTIONS(2897), - [anon_sym__Alignof] = ACTIONS(2897), - [anon_sym_offsetof] = ACTIONS(2897), - [anon_sym__Generic] = ACTIONS(2897), - [anon_sym_asm] = ACTIONS(2897), - [anon_sym___asm__] = ACTIONS(2897), - [sym_number_literal] = ACTIONS(2899), - [anon_sym_L_SQUOTE] = ACTIONS(2899), - [anon_sym_u_SQUOTE] = ACTIONS(2899), - [anon_sym_U_SQUOTE] = ACTIONS(2899), - [anon_sym_u8_SQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_L_DQUOTE] = ACTIONS(2899), - [anon_sym_u_DQUOTE] = ACTIONS(2899), - [anon_sym_U_DQUOTE] = ACTIONS(2899), - [anon_sym_u8_DQUOTE] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2897), - [anon_sym_nullptr] = ACTIONS(2897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2897), - [anon_sym_decltype] = ACTIONS(2897), - [anon_sym_virtual] = ACTIONS(2897), - [anon_sym_alignas] = ACTIONS(2897), - [anon_sym_explicit] = ACTIONS(2897), - [anon_sym_typename] = ACTIONS(2897), - [anon_sym_template] = ACTIONS(2897), - [anon_sym_operator] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_namespace] = ACTIONS(2897), - [anon_sym_using] = ACTIONS(2897), - [anon_sym_static_assert] = ACTIONS(2897), - [anon_sym_concept] = ACTIONS(2897), - [anon_sym_co_return] = ACTIONS(2897), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2899), - [anon_sym_LR_DQUOTE] = ACTIONS(2899), - [anon_sym_uR_DQUOTE] = ACTIONS(2899), - [anon_sym_UR_DQUOTE] = ACTIONS(2899), - [anon_sym_u8R_DQUOTE] = ACTIONS(2899), - [anon_sym_co_await] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_requires] = ACTIONS(2897), - [sym_this] = ACTIONS(2897), + [sym_preproc_def] = STATE(761), + [sym_preproc_function_def] = STATE(761), + [sym_preproc_call] = STATE(761), + [sym_preproc_if_in_field_declaration_list] = STATE(761), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(761), + [sym_preproc_else_in_field_declaration_list] = STATE(8554), + [sym_preproc_elif_in_field_declaration_list] = STATE(8554), + [sym_type_definition] = STATE(761), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6205), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(761), + [sym_field_declaration] = STATE(761), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(761), + [sym_operator_cast] = STATE(7192), + [sym_inline_method_definition] = STATE(761), + [sym__constructor_specifiers] = STATE(2057), + [sym_operator_cast_definition] = STATE(761), + [sym_operator_cast_declaration] = STATE(761), + [sym_constructor_or_destructor_definition] = STATE(761), + [sym_constructor_or_destructor_declaration] = STATE(761), + [sym_friend_declaration] = STATE(761), + [sym_access_specifier] = STATE(8453), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(761), + [sym_alias_declaration] = STATE(761), + [sym_static_assert_declaration] = STATE(761), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(761), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3432), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3594), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3446), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_static_assert] = ACTIONS(3452), }, [752] = { - [sym_identifier] = ACTIONS(2965), - [aux_sym_preproc_include_token1] = ACTIONS(2965), - [aux_sym_preproc_def_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), - [sym_preproc_directive] = ACTIONS(2965), - [anon_sym_LPAREN2] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym___based] = ACTIONS(2965), - [anon_sym___cdecl] = ACTIONS(2965), - [anon_sym___clrcall] = ACTIONS(2965), - [anon_sym___stdcall] = ACTIONS(2965), - [anon_sym___fastcall] = ACTIONS(2965), - [anon_sym___thiscall] = ACTIONS(2965), - [anon_sym___vectorcall] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_RBRACE] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2965), - [anon_sym_switch] = ACTIONS(2965), - [anon_sym_case] = ACTIONS(2965), - [anon_sym_default] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_do] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym___try] = ACTIONS(2965), - [anon_sym___leave] = ACTIONS(2965), - [anon_sym_not] = ACTIONS(2965), - [anon_sym_compl] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_sizeof] = ACTIONS(2965), - [anon_sym___alignof__] = ACTIONS(2965), - [anon_sym___alignof] = ACTIONS(2965), - [anon_sym__alignof] = ACTIONS(2965), - [anon_sym_alignof] = ACTIONS(2965), - [anon_sym__Alignof] = ACTIONS(2965), - [anon_sym_offsetof] = ACTIONS(2965), - [anon_sym__Generic] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym___asm__] = ACTIONS(2965), - [sym_number_literal] = ACTIONS(2967), - [anon_sym_L_SQUOTE] = ACTIONS(2967), - [anon_sym_u_SQUOTE] = ACTIONS(2967), - [anon_sym_U_SQUOTE] = ACTIONS(2967), - [anon_sym_u8_SQUOTE] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(2967), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [anon_sym_NULL] = ACTIONS(2965), - [anon_sym_nullptr] = ACTIONS(2965), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2965), - [anon_sym_delete] = ACTIONS(2965), - [anon_sym_throw] = ACTIONS(2965), - [anon_sym_namespace] = ACTIONS(2965), - [anon_sym_using] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), - [anon_sym_concept] = ACTIONS(2965), - [anon_sym_co_return] = ACTIONS(2965), - [anon_sym_co_yield] = ACTIONS(2965), - [anon_sym_R_DQUOTE] = ACTIONS(2967), - [anon_sym_LR_DQUOTE] = ACTIONS(2967), - [anon_sym_uR_DQUOTE] = ACTIONS(2967), - [anon_sym_UR_DQUOTE] = ACTIONS(2967), - [anon_sym_u8R_DQUOTE] = ACTIONS(2967), - [anon_sym_co_await] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2965), - [anon_sym_requires] = ACTIONS(2965), - [sym_this] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym___cdecl] = ACTIONS(2875), + [anon_sym___clrcall] = ACTIONS(2875), + [anon_sym___stdcall] = ACTIONS(2875), + [anon_sym___fastcall] = ACTIONS(2875), + [anon_sym___thiscall] = ACTIONS(2875), + [anon_sym___vectorcall] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_else] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym___try] = ACTIONS(2875), + [anon_sym___leave] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [anon_sym___alignof__] = ACTIONS(2875), + [anon_sym___alignof] = ACTIONS(2875), + [anon_sym__alignof] = ACTIONS(2875), + [anon_sym_alignof] = ACTIONS(2875), + [anon_sym__Alignof] = ACTIONS(2875), + [anon_sym_offsetof] = ACTIONS(2875), + [anon_sym__Generic] = ACTIONS(2875), + [anon_sym_asm] = ACTIONS(2875), + [anon_sym___asm__] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [anon_sym_NULL] = ACTIONS(2875), + [anon_sym_nullptr] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + [anon_sym_concept] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_R_DQUOTE] = ACTIONS(2877), + [anon_sym_LR_DQUOTE] = ACTIONS(2877), + [anon_sym_uR_DQUOTE] = ACTIONS(2877), + [anon_sym_UR_DQUOTE] = ACTIONS(2877), + [anon_sym_u8R_DQUOTE] = ACTIONS(2877), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), }, [753] = { - [sym_identifier] = ACTIONS(2961), - [aux_sym_preproc_include_token1] = ACTIONS(2961), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), - [sym_preproc_directive] = ACTIONS(2961), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), - [anon_sym___declspec] = ACTIONS(2961), - [anon_sym___based] = ACTIONS(2961), - [anon_sym___cdecl] = ACTIONS(2961), - [anon_sym___clrcall] = ACTIONS(2961), - [anon_sym___stdcall] = ACTIONS(2961), - [anon_sym___fastcall] = ACTIONS(2961), - [anon_sym___thiscall] = ACTIONS(2961), - [anon_sym___vectorcall] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_signed] = ACTIONS(2961), - [anon_sym_unsigned] = ACTIONS(2961), - [anon_sym_long] = ACTIONS(2961), - [anon_sym_short] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_register] = ACTIONS(2961), - [anon_sym_inline] = ACTIONS(2961), - [anon_sym___inline] = ACTIONS(2961), - [anon_sym___inline__] = ACTIONS(2961), - [anon_sym___forceinline] = ACTIONS(2961), - [anon_sym_thread_local] = ACTIONS(2961), - [anon_sym___thread] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_constexpr] = ACTIONS(2961), - [anon_sym_volatile] = ACTIONS(2961), - [anon_sym_restrict] = ACTIONS(2961), - [anon_sym___restrict__] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(2961), - [anon_sym__Noreturn] = ACTIONS(2961), - [anon_sym_noreturn] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [sym_primitive_type] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2961), - [anon_sym_switch] = ACTIONS(2961), - [anon_sym_case] = ACTIONS(2961), - [anon_sym_default] = ACTIONS(2961), - [anon_sym_while] = ACTIONS(2961), - [anon_sym_do] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym___try] = ACTIONS(2961), - [anon_sym___leave] = ACTIONS(2961), - [anon_sym_not] = ACTIONS(2961), - [anon_sym_compl] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2961), - [anon_sym___alignof__] = ACTIONS(2961), - [anon_sym___alignof] = ACTIONS(2961), - [anon_sym__alignof] = ACTIONS(2961), - [anon_sym_alignof] = ACTIONS(2961), - [anon_sym__Alignof] = ACTIONS(2961), - [anon_sym_offsetof] = ACTIONS(2961), - [anon_sym__Generic] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2963), - [anon_sym_u_SQUOTE] = ACTIONS(2963), - [anon_sym_U_SQUOTE] = ACTIONS(2963), - [anon_sym_u8_SQUOTE] = ACTIONS(2963), - [anon_sym_SQUOTE] = ACTIONS(2963), - [anon_sym_L_DQUOTE] = ACTIONS(2963), - [anon_sym_u_DQUOTE] = ACTIONS(2963), - [anon_sym_U_DQUOTE] = ACTIONS(2963), - [anon_sym_u8_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [anon_sym_NULL] = ACTIONS(2961), - [anon_sym_nullptr] = ACTIONS(2961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2961), - [anon_sym_decltype] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_try] = ACTIONS(2961), - [anon_sym_delete] = ACTIONS(2961), - [anon_sym_throw] = ACTIONS(2961), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_using] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), - [anon_sym_concept] = ACTIONS(2961), - [anon_sym_co_return] = ACTIONS(2961), - [anon_sym_co_yield] = ACTIONS(2961), - [anon_sym_R_DQUOTE] = ACTIONS(2963), - [anon_sym_LR_DQUOTE] = ACTIONS(2963), - [anon_sym_uR_DQUOTE] = ACTIONS(2963), - [anon_sym_UR_DQUOTE] = ACTIONS(2963), - [anon_sym_u8R_DQUOTE] = ACTIONS(2963), - [anon_sym_co_await] = ACTIONS(2961), - [anon_sym_new] = ACTIONS(2961), - [anon_sym_requires] = ACTIONS(2961), - [sym_this] = ACTIONS(2961), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [754] = { - [sym_identifier] = ACTIONS(2961), - [aux_sym_preproc_include_token1] = ACTIONS(2961), - [aux_sym_preproc_def_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token1] = ACTIONS(2961), - [aux_sym_preproc_if_token2] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), - [sym_preproc_directive] = ACTIONS(2961), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), - [anon_sym___declspec] = ACTIONS(2961), - [anon_sym___based] = ACTIONS(2961), - [anon_sym___cdecl] = ACTIONS(2961), - [anon_sym___clrcall] = ACTIONS(2961), - [anon_sym___stdcall] = ACTIONS(2961), - [anon_sym___fastcall] = ACTIONS(2961), - [anon_sym___thiscall] = ACTIONS(2961), - [anon_sym___vectorcall] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_signed] = ACTIONS(2961), - [anon_sym_unsigned] = ACTIONS(2961), - [anon_sym_long] = ACTIONS(2961), - [anon_sym_short] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_register] = ACTIONS(2961), - [anon_sym_inline] = ACTIONS(2961), - [anon_sym___inline] = ACTIONS(2961), - [anon_sym___inline__] = ACTIONS(2961), - [anon_sym___forceinline] = ACTIONS(2961), - [anon_sym_thread_local] = ACTIONS(2961), - [anon_sym___thread] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_constexpr] = ACTIONS(2961), - [anon_sym_volatile] = ACTIONS(2961), - [anon_sym_restrict] = ACTIONS(2961), - [anon_sym___restrict__] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(2961), - [anon_sym__Noreturn] = ACTIONS(2961), - [anon_sym_noreturn] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [sym_primitive_type] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2961), - [anon_sym_switch] = ACTIONS(2961), - [anon_sym_case] = ACTIONS(2961), - [anon_sym_default] = ACTIONS(2961), - [anon_sym_while] = ACTIONS(2961), - [anon_sym_do] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym___try] = ACTIONS(2961), - [anon_sym___leave] = ACTIONS(2961), - [anon_sym_not] = ACTIONS(2961), - [anon_sym_compl] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2961), - [anon_sym___alignof__] = ACTIONS(2961), - [anon_sym___alignof] = ACTIONS(2961), - [anon_sym__alignof] = ACTIONS(2961), - [anon_sym_alignof] = ACTIONS(2961), - [anon_sym__Alignof] = ACTIONS(2961), - [anon_sym_offsetof] = ACTIONS(2961), - [anon_sym__Generic] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2963), - [anon_sym_u_SQUOTE] = ACTIONS(2963), - [anon_sym_U_SQUOTE] = ACTIONS(2963), - [anon_sym_u8_SQUOTE] = ACTIONS(2963), - [anon_sym_SQUOTE] = ACTIONS(2963), - [anon_sym_L_DQUOTE] = ACTIONS(2963), - [anon_sym_u_DQUOTE] = ACTIONS(2963), - [anon_sym_U_DQUOTE] = ACTIONS(2963), - [anon_sym_u8_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [anon_sym_NULL] = ACTIONS(2961), - [anon_sym_nullptr] = ACTIONS(2961), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2961), - [anon_sym_decltype] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym_explicit] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_operator] = ACTIONS(2961), - [anon_sym_try] = ACTIONS(2961), - [anon_sym_delete] = ACTIONS(2961), - [anon_sym_throw] = ACTIONS(2961), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_using] = ACTIONS(2961), - [anon_sym_static_assert] = ACTIONS(2961), - [anon_sym_concept] = ACTIONS(2961), - [anon_sym_co_return] = ACTIONS(2961), - [anon_sym_co_yield] = ACTIONS(2961), - [anon_sym_R_DQUOTE] = ACTIONS(2963), - [anon_sym_LR_DQUOTE] = ACTIONS(2963), - [anon_sym_uR_DQUOTE] = ACTIONS(2963), - [anon_sym_UR_DQUOTE] = ACTIONS(2963), - [anon_sym_u8R_DQUOTE] = ACTIONS(2963), - [anon_sym_co_await] = ACTIONS(2961), - [anon_sym_new] = ACTIONS(2961), - [anon_sym_requires] = ACTIONS(2961), - [sym_this] = ACTIONS(2961), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [755] = { - [sym_identifier] = ACTIONS(2965), - [aux_sym_preproc_include_token1] = ACTIONS(2965), - [aux_sym_preproc_def_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token1] = ACTIONS(2965), - [aux_sym_preproc_if_token2] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), - [sym_preproc_directive] = ACTIONS(2965), - [anon_sym_LPAREN2] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym___based] = ACTIONS(2965), - [anon_sym___cdecl] = ACTIONS(2965), - [anon_sym___clrcall] = ACTIONS(2965), - [anon_sym___stdcall] = ACTIONS(2965), - [anon_sym___fastcall] = ACTIONS(2965), - [anon_sym___thiscall] = ACTIONS(2965), - [anon_sym___vectorcall] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2965), - [anon_sym_switch] = ACTIONS(2965), - [anon_sym_case] = ACTIONS(2965), - [anon_sym_default] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_do] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym___try] = ACTIONS(2965), - [anon_sym___leave] = ACTIONS(2965), - [anon_sym_not] = ACTIONS(2965), - [anon_sym_compl] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_sizeof] = ACTIONS(2965), - [anon_sym___alignof__] = ACTIONS(2965), - [anon_sym___alignof] = ACTIONS(2965), - [anon_sym__alignof] = ACTIONS(2965), - [anon_sym_alignof] = ACTIONS(2965), - [anon_sym__Alignof] = ACTIONS(2965), - [anon_sym_offsetof] = ACTIONS(2965), - [anon_sym__Generic] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym___asm__] = ACTIONS(2965), - [sym_number_literal] = ACTIONS(2967), - [anon_sym_L_SQUOTE] = ACTIONS(2967), - [anon_sym_u_SQUOTE] = ACTIONS(2967), - [anon_sym_U_SQUOTE] = ACTIONS(2967), - [anon_sym_u8_SQUOTE] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(2967), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [anon_sym_NULL] = ACTIONS(2965), - [anon_sym_nullptr] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2973), + [aux_sym_preproc_include_token1] = ACTIONS(2973), + [aux_sym_preproc_def_token1] = ACTIONS(2973), + [aux_sym_preproc_if_token1] = ACTIONS(2973), + [aux_sym_preproc_if_token2] = ACTIONS(2973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), + [sym_preproc_directive] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2975), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_AMP_AMP] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym___extension__] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym___attribute__] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), + [anon_sym___declspec] = ACTIONS(2973), + [anon_sym___based] = ACTIONS(2973), + [anon_sym___cdecl] = ACTIONS(2973), + [anon_sym___clrcall] = ACTIONS(2973), + [anon_sym___stdcall] = ACTIONS(2973), + [anon_sym___fastcall] = ACTIONS(2973), + [anon_sym___thiscall] = ACTIONS(2973), + [anon_sym___vectorcall] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_signed] = ACTIONS(2973), + [anon_sym_unsigned] = ACTIONS(2973), + [anon_sym_long] = ACTIONS(2973), + [anon_sym_short] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_register] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym___inline] = ACTIONS(2973), + [anon_sym___inline__] = ACTIONS(2973), + [anon_sym___forceinline] = ACTIONS(2973), + [anon_sym_thread_local] = ACTIONS(2973), + [anon_sym___thread] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_constexpr] = ACTIONS(2973), + [anon_sym_volatile] = ACTIONS(2973), + [anon_sym_restrict] = ACTIONS(2973), + [anon_sym___restrict__] = ACTIONS(2973), + [anon_sym__Atomic] = ACTIONS(2973), + [anon_sym__Noreturn] = ACTIONS(2973), + [anon_sym_noreturn] = ACTIONS(2973), + [anon_sym_mutable] = ACTIONS(2973), + [anon_sym_constinit] = ACTIONS(2973), + [anon_sym_consteval] = ACTIONS(2973), + [sym_primitive_type] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_else] = ACTIONS(2973), + [anon_sym_switch] = ACTIONS(2973), + [anon_sym_case] = ACTIONS(2973), + [anon_sym_default] = ACTIONS(2973), + [anon_sym_while] = ACTIONS(2973), + [anon_sym_do] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_goto] = ACTIONS(2973), + [anon_sym___try] = ACTIONS(2973), + [anon_sym___leave] = ACTIONS(2973), + [anon_sym_not] = ACTIONS(2973), + [anon_sym_compl] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2975), + [anon_sym_sizeof] = ACTIONS(2973), + [anon_sym___alignof__] = ACTIONS(2973), + [anon_sym___alignof] = ACTIONS(2973), + [anon_sym__alignof] = ACTIONS(2973), + [anon_sym_alignof] = ACTIONS(2973), + [anon_sym__Alignof] = ACTIONS(2973), + [anon_sym_offsetof] = ACTIONS(2973), + [anon_sym__Generic] = ACTIONS(2973), + [anon_sym_asm] = ACTIONS(2973), + [anon_sym___asm__] = ACTIONS(2973), + [sym_number_literal] = ACTIONS(2975), + [anon_sym_L_SQUOTE] = ACTIONS(2975), + [anon_sym_u_SQUOTE] = ACTIONS(2975), + [anon_sym_U_SQUOTE] = ACTIONS(2975), + [anon_sym_u8_SQUOTE] = ACTIONS(2975), + [anon_sym_SQUOTE] = ACTIONS(2975), + [anon_sym_L_DQUOTE] = ACTIONS(2975), + [anon_sym_u_DQUOTE] = ACTIONS(2975), + [anon_sym_U_DQUOTE] = ACTIONS(2975), + [anon_sym_u8_DQUOTE] = ACTIONS(2975), + [anon_sym_DQUOTE] = ACTIONS(2975), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [anon_sym_NULL] = ACTIONS(2973), + [anon_sym_nullptr] = ACTIONS(2973), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_explicit] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_operator] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2965), - [anon_sym_delete] = ACTIONS(2965), - [anon_sym_throw] = ACTIONS(2965), - [anon_sym_namespace] = ACTIONS(2965), - [anon_sym_using] = ACTIONS(2965), - [anon_sym_static_assert] = ACTIONS(2965), - [anon_sym_concept] = ACTIONS(2965), - [anon_sym_co_return] = ACTIONS(2965), - [anon_sym_co_yield] = ACTIONS(2965), - [anon_sym_R_DQUOTE] = ACTIONS(2967), - [anon_sym_LR_DQUOTE] = ACTIONS(2967), - [anon_sym_uR_DQUOTE] = ACTIONS(2967), - [anon_sym_UR_DQUOTE] = ACTIONS(2967), - [anon_sym_u8R_DQUOTE] = ACTIONS(2967), - [anon_sym_co_await] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2965), - [anon_sym_requires] = ACTIONS(2965), - [sym_this] = ACTIONS(2965), + [sym_auto] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2973), + [anon_sym_virtual] = ACTIONS(2973), + [anon_sym_alignas] = ACTIONS(2973), + [anon_sym_explicit] = ACTIONS(2973), + [anon_sym_typename] = ACTIONS(2973), + [anon_sym_template] = ACTIONS(2973), + [anon_sym_operator] = ACTIONS(2973), + [anon_sym_try] = ACTIONS(2973), + [anon_sym_delete] = ACTIONS(2973), + [anon_sym_throw] = ACTIONS(2973), + [anon_sym_namespace] = ACTIONS(2973), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_static_assert] = ACTIONS(2973), + [anon_sym_concept] = ACTIONS(2973), + [anon_sym_co_return] = ACTIONS(2973), + [anon_sym_co_yield] = ACTIONS(2973), + [anon_sym_R_DQUOTE] = ACTIONS(2975), + [anon_sym_LR_DQUOTE] = ACTIONS(2975), + [anon_sym_uR_DQUOTE] = ACTIONS(2975), + [anon_sym_UR_DQUOTE] = ACTIONS(2975), + [anon_sym_u8R_DQUOTE] = ACTIONS(2975), + [anon_sym_co_await] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2973), + [anon_sym_requires] = ACTIONS(2973), + [sym_this] = ACTIONS(2973), }, [756] = { - [ts_builtin_sym_end] = ACTIONS(2939), - [sym_identifier] = ACTIONS(2937), - [aux_sym_preproc_include_token1] = ACTIONS(2937), - [aux_sym_preproc_def_token1] = ACTIONS(2937), - [aux_sym_preproc_if_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), - [sym_preproc_directive] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym___based] = ACTIONS(2937), - [anon_sym___cdecl] = ACTIONS(2937), - [anon_sym___clrcall] = ACTIONS(2937), - [anon_sym___stdcall] = ACTIONS(2937), - [anon_sym___fastcall] = ACTIONS(2937), - [anon_sym___thiscall] = ACTIONS(2937), - [anon_sym___vectorcall] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym___inline] = ACTIONS(2937), - [anon_sym___inline__] = ACTIONS(2937), - [anon_sym___forceinline] = ACTIONS(2937), - [anon_sym_thread_local] = ACTIONS(2937), - [anon_sym___thread] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_case] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [anon_sym___try] = ACTIONS(2937), - [anon_sym___leave] = ACTIONS(2937), - [anon_sym_not] = ACTIONS(2937), - [anon_sym_compl] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym___alignof__] = ACTIONS(2937), - [anon_sym___alignof] = ACTIONS(2937), - [anon_sym__alignof] = ACTIONS(2937), - [anon_sym_alignof] = ACTIONS(2937), - [anon_sym__Alignof] = ACTIONS(2937), - [anon_sym_offsetof] = ACTIONS(2937), - [anon_sym__Generic] = ACTIONS(2937), - [anon_sym_asm] = ACTIONS(2937), - [anon_sym___asm__] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_L_SQUOTE] = ACTIONS(2939), - [anon_sym_u_SQUOTE] = ACTIONS(2939), - [anon_sym_U_SQUOTE] = ACTIONS(2939), - [anon_sym_u8_SQUOTE] = ACTIONS(2939), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_L_DQUOTE] = ACTIONS(2939), - [anon_sym_u_DQUOTE] = ACTIONS(2939), - [anon_sym_U_DQUOTE] = ACTIONS(2939), - [anon_sym_u8_DQUOTE] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [anon_sym_NULL] = ACTIONS(2937), - [anon_sym_nullptr] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2937), - [anon_sym_decltype] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2937), - [anon_sym_explicit] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_operator] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_throw] = ACTIONS(2937), - [anon_sym_namespace] = ACTIONS(2937), - [anon_sym_using] = ACTIONS(2937), - [anon_sym_static_assert] = ACTIONS(2937), - [anon_sym_concept] = ACTIONS(2937), - [anon_sym_co_return] = ACTIONS(2937), - [anon_sym_co_yield] = ACTIONS(2937), - [anon_sym_R_DQUOTE] = ACTIONS(2939), - [anon_sym_LR_DQUOTE] = ACTIONS(2939), - [anon_sym_uR_DQUOTE] = ACTIONS(2939), - [anon_sym_UR_DQUOTE] = ACTIONS(2939), - [anon_sym_u8R_DQUOTE] = ACTIONS(2939), - [anon_sym_co_await] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_requires] = ACTIONS(2937), - [sym_this] = ACTIONS(2937), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [757] = { - [sym_identifier] = ACTIONS(2957), - [aux_sym_preproc_include_token1] = ACTIONS(2957), - [aux_sym_preproc_def_token1] = ACTIONS(2957), - [aux_sym_preproc_if_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), - [sym_preproc_directive] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym___extension__] = ACTIONS(2957), - [anon_sym_typedef] = ACTIONS(2957), - [anon_sym_extern] = ACTIONS(2957), - [anon_sym___attribute__] = ACTIONS(2957), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), - [anon_sym___declspec] = ACTIONS(2957), - [anon_sym___based] = ACTIONS(2957), - [anon_sym___cdecl] = ACTIONS(2957), - [anon_sym___clrcall] = ACTIONS(2957), - [anon_sym___stdcall] = ACTIONS(2957), - [anon_sym___fastcall] = ACTIONS(2957), - [anon_sym___thiscall] = ACTIONS(2957), - [anon_sym___vectorcall] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_signed] = ACTIONS(2957), - [anon_sym_unsigned] = ACTIONS(2957), - [anon_sym_long] = ACTIONS(2957), - [anon_sym_short] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_register] = ACTIONS(2957), - [anon_sym_inline] = ACTIONS(2957), - [anon_sym___inline] = ACTIONS(2957), - [anon_sym___inline__] = ACTIONS(2957), - [anon_sym___forceinline] = ACTIONS(2957), - [anon_sym_thread_local] = ACTIONS(2957), - [anon_sym___thread] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_constexpr] = ACTIONS(2957), - [anon_sym_volatile] = ACTIONS(2957), - [anon_sym_restrict] = ACTIONS(2957), - [anon_sym___restrict__] = ACTIONS(2957), - [anon_sym__Atomic] = ACTIONS(2957), - [anon_sym__Noreturn] = ACTIONS(2957), - [anon_sym_noreturn] = ACTIONS(2957), - [anon_sym_mutable] = ACTIONS(2957), - [anon_sym_constinit] = ACTIONS(2957), - [anon_sym_consteval] = ACTIONS(2957), - [sym_primitive_type] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_case] = ACTIONS(2957), - [anon_sym_default] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_do] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym___try] = ACTIONS(2957), - [anon_sym___leave] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2957), - [anon_sym_compl] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2957), - [anon_sym___alignof__] = ACTIONS(2957), - [anon_sym___alignof] = ACTIONS(2957), - [anon_sym__alignof] = ACTIONS(2957), - [anon_sym_alignof] = ACTIONS(2957), - [anon_sym__Alignof] = ACTIONS(2957), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), - [anon_sym___asm__] = ACTIONS(2957), - [sym_number_literal] = ACTIONS(2959), - [anon_sym_L_SQUOTE] = ACTIONS(2959), - [anon_sym_u_SQUOTE] = ACTIONS(2959), - [anon_sym_U_SQUOTE] = ACTIONS(2959), - [anon_sym_u8_SQUOTE] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_L_DQUOTE] = ACTIONS(2959), - [anon_sym_u_DQUOTE] = ACTIONS(2959), - [anon_sym_U_DQUOTE] = ACTIONS(2959), - [anon_sym_u8_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [anon_sym_NULL] = ACTIONS(2957), - [anon_sym_nullptr] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2957), - [anon_sym_decltype] = ACTIONS(2957), - [anon_sym_virtual] = ACTIONS(2957), - [anon_sym_alignas] = ACTIONS(2957), - [anon_sym_explicit] = ACTIONS(2957), - [anon_sym_typename] = ACTIONS(2957), - [anon_sym_template] = ACTIONS(2957), - [anon_sym_operator] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_delete] = ACTIONS(2957), - [anon_sym_throw] = ACTIONS(2957), - [anon_sym_namespace] = ACTIONS(2957), - [anon_sym_using] = ACTIONS(2957), - [anon_sym_static_assert] = ACTIONS(2957), - [anon_sym_concept] = ACTIONS(2957), - [anon_sym_co_return] = ACTIONS(2957), - [anon_sym_co_yield] = ACTIONS(2957), - [anon_sym_R_DQUOTE] = ACTIONS(2959), - [anon_sym_LR_DQUOTE] = ACTIONS(2959), - [anon_sym_uR_DQUOTE] = ACTIONS(2959), - [anon_sym_UR_DQUOTE] = ACTIONS(2959), - [anon_sym_u8R_DQUOTE] = ACTIONS(2959), - [anon_sym_co_await] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2957), - [anon_sym_requires] = ACTIONS(2957), - [sym_this] = ACTIONS(2957), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_unaligned_ptr_modifier] = STATE(5820), + [sym_ms_pointer_modifier] = STATE(3887), + [sym__declarator] = STATE(6912), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6752), + [sym_array_declarator] = STATE(6752), + [sym_type_qualifier] = STATE(4615), + [sym__expression] = STATE(3491), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3653), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6232), + [sym_qualified_identifier] = STATE(3640), + [sym_qualified_type_identifier] = STATE(8066), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3833), + [aux_sym__type_definition_type_repeat1] = STATE(4615), + [aux_sym_pointer_declarator_repeat1] = STATE(3887), + [sym_identifier] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(2066), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym___extension__] = ACTIONS(3460), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym___based] = ACTIONS(47), + [sym_ms_restrict_modifier] = ACTIONS(3462), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3462), + [sym_ms_signed_ptr_modifier] = ACTIONS(3462), + [anon_sym__unaligned] = ACTIONS(3464), + [anon_sym___unaligned] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(2082), + [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_mutable] = ACTIONS(3460), + [anon_sym_constinit] = ACTIONS(3460), + [anon_sym_consteval] = ACTIONS(3460), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, [758] = { - [ts_builtin_sym_end] = ACTIONS(2943), - [sym_identifier] = ACTIONS(2941), - [aux_sym_preproc_include_token1] = ACTIONS(2941), - [aux_sym_preproc_def_token1] = ACTIONS(2941), - [aux_sym_preproc_if_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), - [sym_preproc_directive] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym___extension__] = ACTIONS(2941), - [anon_sym_typedef] = ACTIONS(2941), - [anon_sym_extern] = ACTIONS(2941), - [anon_sym___attribute__] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), - [anon_sym___declspec] = ACTIONS(2941), - [anon_sym___based] = ACTIONS(2941), - [anon_sym___cdecl] = ACTIONS(2941), - [anon_sym___clrcall] = ACTIONS(2941), - [anon_sym___stdcall] = ACTIONS(2941), - [anon_sym___fastcall] = ACTIONS(2941), - [anon_sym___thiscall] = ACTIONS(2941), - [anon_sym___vectorcall] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2941), - [anon_sym_unsigned] = ACTIONS(2941), - [anon_sym_long] = ACTIONS(2941), - [anon_sym_short] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_register] = ACTIONS(2941), - [anon_sym_inline] = ACTIONS(2941), - [anon_sym___inline] = ACTIONS(2941), - [anon_sym___inline__] = ACTIONS(2941), - [anon_sym___forceinline] = ACTIONS(2941), - [anon_sym_thread_local] = ACTIONS(2941), - [anon_sym___thread] = ACTIONS(2941), - [anon_sym_const] = ACTIONS(2941), - [anon_sym_constexpr] = ACTIONS(2941), - [anon_sym_volatile] = ACTIONS(2941), - [anon_sym_restrict] = ACTIONS(2941), - [anon_sym___restrict__] = ACTIONS(2941), - [anon_sym__Atomic] = ACTIONS(2941), - [anon_sym__Noreturn] = ACTIONS(2941), - [anon_sym_noreturn] = ACTIONS(2941), - [anon_sym_mutable] = ACTIONS(2941), - [anon_sym_constinit] = ACTIONS(2941), - [anon_sym_consteval] = ACTIONS(2941), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2941), - [anon_sym_class] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2941), - [anon_sym_switch] = ACTIONS(2941), - [anon_sym_case] = ACTIONS(2941), - [anon_sym_default] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_goto] = ACTIONS(2941), - [anon_sym___try] = ACTIONS(2941), - [anon_sym___leave] = ACTIONS(2941), - [anon_sym_not] = ACTIONS(2941), - [anon_sym_compl] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_sizeof] = ACTIONS(2941), - [anon_sym___alignof__] = ACTIONS(2941), - [anon_sym___alignof] = ACTIONS(2941), - [anon_sym__alignof] = ACTIONS(2941), - [anon_sym_alignof] = ACTIONS(2941), - [anon_sym__Alignof] = ACTIONS(2941), - [anon_sym_offsetof] = ACTIONS(2941), - [anon_sym__Generic] = ACTIONS(2941), - [anon_sym_asm] = ACTIONS(2941), - [anon_sym___asm__] = ACTIONS(2941), - [sym_number_literal] = ACTIONS(2943), - [anon_sym_L_SQUOTE] = ACTIONS(2943), - [anon_sym_u_SQUOTE] = ACTIONS(2943), - [anon_sym_U_SQUOTE] = ACTIONS(2943), - [anon_sym_u8_SQUOTE] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2943), - [anon_sym_L_DQUOTE] = ACTIONS(2943), - [anon_sym_u_DQUOTE] = ACTIONS(2943), - [anon_sym_U_DQUOTE] = ACTIONS(2943), - [anon_sym_u8_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2943), - [sym_true] = ACTIONS(2941), - [sym_false] = ACTIONS(2941), - [anon_sym_NULL] = ACTIONS(2941), - [anon_sym_nullptr] = ACTIONS(2941), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2941), - [anon_sym_decltype] = ACTIONS(2941), - [anon_sym_virtual] = ACTIONS(2941), - [anon_sym_alignas] = ACTIONS(2941), - [anon_sym_explicit] = ACTIONS(2941), - [anon_sym_typename] = ACTIONS(2941), - [anon_sym_template] = ACTIONS(2941), - [anon_sym_operator] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_delete] = ACTIONS(2941), - [anon_sym_throw] = ACTIONS(2941), - [anon_sym_namespace] = ACTIONS(2941), - [anon_sym_using] = ACTIONS(2941), - [anon_sym_static_assert] = ACTIONS(2941), - [anon_sym_concept] = ACTIONS(2941), - [anon_sym_co_return] = ACTIONS(2941), - [anon_sym_co_yield] = ACTIONS(2941), - [anon_sym_R_DQUOTE] = ACTIONS(2943), - [anon_sym_LR_DQUOTE] = ACTIONS(2943), - [anon_sym_uR_DQUOTE] = ACTIONS(2943), - [anon_sym_UR_DQUOTE] = ACTIONS(2943), - [anon_sym_u8R_DQUOTE] = ACTIONS(2943), - [anon_sym_co_await] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_requires] = ACTIONS(2941), - [sym_this] = ACTIONS(2941), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [759] = { - [ts_builtin_sym_end] = ACTIONS(2947), - [sym_identifier] = ACTIONS(2945), - [aux_sym_preproc_include_token1] = ACTIONS(2945), - [aux_sym_preproc_def_token1] = ACTIONS(2945), - [aux_sym_preproc_if_token1] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2945), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2945), - [sym_preproc_directive] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym___extension__] = ACTIONS(2945), - [anon_sym_typedef] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2945), - [anon_sym___attribute__] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), - [anon_sym___declspec] = ACTIONS(2945), - [anon_sym___based] = ACTIONS(2945), - [anon_sym___cdecl] = ACTIONS(2945), - [anon_sym___clrcall] = ACTIONS(2945), - [anon_sym___stdcall] = ACTIONS(2945), - [anon_sym___fastcall] = ACTIONS(2945), - [anon_sym___thiscall] = ACTIONS(2945), - [anon_sym___vectorcall] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_signed] = ACTIONS(2945), - [anon_sym_unsigned] = ACTIONS(2945), - [anon_sym_long] = ACTIONS(2945), - [anon_sym_short] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_static] = ACTIONS(2945), - [anon_sym_register] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2945), - [anon_sym___inline] = ACTIONS(2945), - [anon_sym___inline__] = ACTIONS(2945), - [anon_sym___forceinline] = ACTIONS(2945), - [anon_sym_thread_local] = ACTIONS(2945), - [anon_sym___thread] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2945), - [anon_sym_constexpr] = ACTIONS(2945), - [anon_sym_volatile] = ACTIONS(2945), - [anon_sym_restrict] = ACTIONS(2945), - [anon_sym___restrict__] = ACTIONS(2945), - [anon_sym__Atomic] = ACTIONS(2945), - [anon_sym__Noreturn] = ACTIONS(2945), - [anon_sym_noreturn] = ACTIONS(2945), - [anon_sym_mutable] = ACTIONS(2945), - [anon_sym_constinit] = ACTIONS(2945), - [anon_sym_consteval] = ACTIONS(2945), - [sym_primitive_type] = ACTIONS(2945), - [anon_sym_enum] = ACTIONS(2945), - [anon_sym_class] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_switch] = ACTIONS(2945), - [anon_sym_case] = ACTIONS(2945), - [anon_sym_default] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_break] = ACTIONS(2945), - [anon_sym_continue] = ACTIONS(2945), - [anon_sym_goto] = ACTIONS(2945), - [anon_sym___try] = ACTIONS(2945), - [anon_sym___leave] = ACTIONS(2945), - [anon_sym_not] = ACTIONS(2945), - [anon_sym_compl] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_sizeof] = ACTIONS(2945), - [anon_sym___alignof__] = ACTIONS(2945), - [anon_sym___alignof] = ACTIONS(2945), - [anon_sym__alignof] = ACTIONS(2945), - [anon_sym_alignof] = ACTIONS(2945), - [anon_sym__Alignof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2945), - [anon_sym__Generic] = ACTIONS(2945), - [anon_sym_asm] = ACTIONS(2945), - [anon_sym___asm__] = ACTIONS(2945), - [sym_number_literal] = ACTIONS(2947), - [anon_sym_L_SQUOTE] = ACTIONS(2947), - [anon_sym_u_SQUOTE] = ACTIONS(2947), - [anon_sym_U_SQUOTE] = ACTIONS(2947), - [anon_sym_u8_SQUOTE] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_L_DQUOTE] = ACTIONS(2947), - [anon_sym_u_DQUOTE] = ACTIONS(2947), - [anon_sym_U_DQUOTE] = ACTIONS(2947), - [anon_sym_u8_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [sym_true] = ACTIONS(2945), - [sym_false] = ACTIONS(2945), - [anon_sym_NULL] = ACTIONS(2945), - [anon_sym_nullptr] = ACTIONS(2945), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2945), - [anon_sym_decltype] = ACTIONS(2945), - [anon_sym_virtual] = ACTIONS(2945), - [anon_sym_alignas] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_typename] = ACTIONS(2945), - [anon_sym_template] = ACTIONS(2945), - [anon_sym_operator] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_delete] = ACTIONS(2945), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_namespace] = ACTIONS(2945), - [anon_sym_using] = ACTIONS(2945), - [anon_sym_static_assert] = ACTIONS(2945), - [anon_sym_concept] = ACTIONS(2945), - [anon_sym_co_return] = ACTIONS(2945), - [anon_sym_co_yield] = ACTIONS(2945), - [anon_sym_R_DQUOTE] = ACTIONS(2947), - [anon_sym_LR_DQUOTE] = ACTIONS(2947), - [anon_sym_uR_DQUOTE] = ACTIONS(2947), - [anon_sym_UR_DQUOTE] = ACTIONS(2947), - [anon_sym_u8R_DQUOTE] = ACTIONS(2947), - [anon_sym_co_await] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_requires] = ACTIONS(2945), - [sym_this] = ACTIONS(2945), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [760] = { - [sym_identifier] = ACTIONS(2877), - [aux_sym_preproc_include_token1] = ACTIONS(2877), - [aux_sym_preproc_def_token1] = ACTIONS(2877), - [aux_sym_preproc_if_token1] = ACTIONS(2877), - [aux_sym_preproc_if_token2] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2877), - [sym_preproc_directive] = ACTIONS(2877), - [anon_sym_LPAREN2] = ACTIONS(2879), - [anon_sym_BANG] = ACTIONS(2879), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2879), - [anon_sym_AMP_AMP] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym___extension__] = ACTIONS(2877), - [anon_sym_typedef] = ACTIONS(2877), - [anon_sym_extern] = ACTIONS(2877), - [anon_sym___attribute__] = ACTIONS(2877), - [anon_sym_COLON_COLON] = ACTIONS(2879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2879), - [anon_sym___declspec] = ACTIONS(2877), - [anon_sym___based] = ACTIONS(2877), - [anon_sym___cdecl] = ACTIONS(2877), - [anon_sym___clrcall] = ACTIONS(2877), - [anon_sym___stdcall] = ACTIONS(2877), - [anon_sym___fastcall] = ACTIONS(2877), - [anon_sym___thiscall] = ACTIONS(2877), - [anon_sym___vectorcall] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_signed] = ACTIONS(2877), - [anon_sym_unsigned] = ACTIONS(2877), - [anon_sym_long] = ACTIONS(2877), - [anon_sym_short] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_register] = ACTIONS(2877), - [anon_sym_inline] = ACTIONS(2877), - [anon_sym___inline] = ACTIONS(2877), - [anon_sym___inline__] = ACTIONS(2877), - [anon_sym___forceinline] = ACTIONS(2877), - [anon_sym_thread_local] = ACTIONS(2877), - [anon_sym___thread] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_constexpr] = ACTIONS(2877), - [anon_sym_volatile] = ACTIONS(2877), - [anon_sym_restrict] = ACTIONS(2877), - [anon_sym___restrict__] = ACTIONS(2877), - [anon_sym__Atomic] = ACTIONS(2877), - [anon_sym__Noreturn] = ACTIONS(2877), - [anon_sym_noreturn] = ACTIONS(2877), - [anon_sym_mutable] = ACTIONS(2877), - [anon_sym_constinit] = ACTIONS(2877), - [anon_sym_consteval] = ACTIONS(2877), - [sym_primitive_type] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_else] = ACTIONS(2877), - [anon_sym_switch] = ACTIONS(2877), - [anon_sym_case] = ACTIONS(2877), - [anon_sym_default] = ACTIONS(2877), - [anon_sym_while] = ACTIONS(2877), - [anon_sym_do] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_goto] = ACTIONS(2877), - [anon_sym___try] = ACTIONS(2877), - [anon_sym___leave] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2877), - [anon_sym_compl] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2877), - [anon_sym___alignof__] = ACTIONS(2877), - [anon_sym___alignof] = ACTIONS(2877), - [anon_sym__alignof] = ACTIONS(2877), - [anon_sym_alignof] = ACTIONS(2877), - [anon_sym__Alignof] = ACTIONS(2877), - [anon_sym_offsetof] = ACTIONS(2877), - [anon_sym__Generic] = ACTIONS(2877), - [anon_sym_asm] = ACTIONS(2877), - [anon_sym___asm__] = ACTIONS(2877), - [sym_number_literal] = ACTIONS(2879), - [anon_sym_L_SQUOTE] = ACTIONS(2879), - [anon_sym_u_SQUOTE] = ACTIONS(2879), - [anon_sym_U_SQUOTE] = ACTIONS(2879), - [anon_sym_u8_SQUOTE] = ACTIONS(2879), - [anon_sym_SQUOTE] = ACTIONS(2879), - [anon_sym_L_DQUOTE] = ACTIONS(2879), - [anon_sym_u_DQUOTE] = ACTIONS(2879), - [anon_sym_U_DQUOTE] = ACTIONS(2879), - [anon_sym_u8_DQUOTE] = ACTIONS(2879), - [anon_sym_DQUOTE] = ACTIONS(2879), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [anon_sym_NULL] = ACTIONS(2877), - [anon_sym_nullptr] = ACTIONS(2877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2877), - [anon_sym_decltype] = ACTIONS(2877), - [anon_sym_virtual] = ACTIONS(2877), - [anon_sym_alignas] = ACTIONS(2877), - [anon_sym_explicit] = ACTIONS(2877), - [anon_sym_typename] = ACTIONS(2877), - [anon_sym_template] = ACTIONS(2877), - [anon_sym_operator] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2877), - [anon_sym_delete] = ACTIONS(2877), - [anon_sym_throw] = ACTIONS(2877), - [anon_sym_namespace] = ACTIONS(2877), - [anon_sym_using] = ACTIONS(2877), - [anon_sym_static_assert] = ACTIONS(2877), - [anon_sym_concept] = ACTIONS(2877), - [anon_sym_co_return] = ACTIONS(2877), - [anon_sym_co_yield] = ACTIONS(2877), - [anon_sym_R_DQUOTE] = ACTIONS(2879), - [anon_sym_LR_DQUOTE] = ACTIONS(2879), - [anon_sym_uR_DQUOTE] = ACTIONS(2879), - [anon_sym_UR_DQUOTE] = ACTIONS(2879), - [anon_sym_u8R_DQUOTE] = ACTIONS(2879), - [anon_sym_co_await] = ACTIONS(2877), - [anon_sym_new] = ACTIONS(2877), - [anon_sym_requires] = ACTIONS(2877), - [sym_this] = ACTIONS(2877), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [761] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [762] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [763] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [764] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [765] = { [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_preproc_else_in_field_declaration_list] = STATE(8543), - [sym_preproc_elif_in_field_declaration_list] = STATE(8543), + [sym_preproc_else_in_field_declaration_list] = STATE(8581), + [sym_preproc_elif_in_field_declaration_list] = STATE(8581), [sym_type_definition] = STATE(955), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6188), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6205), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym__field_declaration_list_item] = STATE(955), [sym_field_declaration] = STATE(955), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(955), - [sym_operator_cast] = STATE(7176), + [sym_operator_cast] = STATE(7192), [sym_inline_method_definition] = STATE(955), - [sym__constructor_specifiers] = STATE(2018), + [sym__constructor_specifiers] = STATE(2057), [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(8857), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), + [sym_access_specifier] = STATE(8453), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), [sym_using_declaration] = STATE(955), [sym_alias_declaration] = STATE(955), [sym_static_assert_declaration] = STATE(955), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3430), - [aux_sym_preproc_if_token2] = ACTIONS(3484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3432), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3598), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3438), - [anon_sym_typedef] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3444), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), @@ -195448,7 +195246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -195468,644 +195266,1708 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3446), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_static_assert] = ACTIONS(3448), + [anon_sym_friend] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_static_assert] = ACTIONS(3452), }, - [766] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [762] = { + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [767] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [763] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [764] = { + [ts_builtin_sym_end] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2909), + [aux_sym_preproc_include_token1] = ACTIONS(2909), + [aux_sym_preproc_def_token1] = ACTIONS(2909), + [aux_sym_preproc_if_token1] = ACTIONS(2909), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2909), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2909), + [sym_preproc_directive] = ACTIONS(2909), + [anon_sym_LPAREN2] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_AMP_AMP] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_SEMI] = ACTIONS(2911), + [anon_sym___extension__] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2909), + [anon_sym_extern] = ACTIONS(2909), + [anon_sym___attribute__] = ACTIONS(2909), + [anon_sym_COLON_COLON] = ACTIONS(2911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2911), + [anon_sym___declspec] = ACTIONS(2909), + [anon_sym___based] = ACTIONS(2909), + [anon_sym___cdecl] = ACTIONS(2909), + [anon_sym___clrcall] = ACTIONS(2909), + [anon_sym___stdcall] = ACTIONS(2909), + [anon_sym___fastcall] = ACTIONS(2909), + [anon_sym___thiscall] = ACTIONS(2909), + [anon_sym___vectorcall] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(2909), + [anon_sym_unsigned] = ACTIONS(2909), + [anon_sym_long] = ACTIONS(2909), + [anon_sym_short] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2909), + [anon_sym_register] = ACTIONS(2909), + [anon_sym_inline] = ACTIONS(2909), + [anon_sym___inline] = ACTIONS(2909), + [anon_sym___inline__] = ACTIONS(2909), + [anon_sym___forceinline] = ACTIONS(2909), + [anon_sym_thread_local] = ACTIONS(2909), + [anon_sym___thread] = ACTIONS(2909), + [anon_sym_const] = ACTIONS(2909), + [anon_sym_constexpr] = ACTIONS(2909), + [anon_sym_volatile] = ACTIONS(2909), + [anon_sym_restrict] = ACTIONS(2909), + [anon_sym___restrict__] = ACTIONS(2909), + [anon_sym__Atomic] = ACTIONS(2909), + [anon_sym__Noreturn] = ACTIONS(2909), + [anon_sym_noreturn] = ACTIONS(2909), + [anon_sym_mutable] = ACTIONS(2909), + [anon_sym_constinit] = ACTIONS(2909), + [anon_sym_consteval] = ACTIONS(2909), + [sym_primitive_type] = ACTIONS(2909), + [anon_sym_enum] = ACTIONS(2909), + [anon_sym_class] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2909), + [anon_sym_union] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2909), + [anon_sym_switch] = ACTIONS(2909), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2909), + [anon_sym_while] = ACTIONS(2909), + [anon_sym_do] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_goto] = ACTIONS(2909), + [anon_sym___try] = ACTIONS(2909), + [anon_sym___leave] = ACTIONS(2909), + [anon_sym_not] = ACTIONS(2909), + [anon_sym_compl] = ACTIONS(2909), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_sizeof] = ACTIONS(2909), + [anon_sym___alignof__] = ACTIONS(2909), + [anon_sym___alignof] = ACTIONS(2909), + [anon_sym__alignof] = ACTIONS(2909), + [anon_sym_alignof] = ACTIONS(2909), + [anon_sym__Alignof] = ACTIONS(2909), + [anon_sym_offsetof] = ACTIONS(2909), + [anon_sym__Generic] = ACTIONS(2909), + [anon_sym_asm] = ACTIONS(2909), + [anon_sym___asm__] = ACTIONS(2909), + [sym_number_literal] = ACTIONS(2911), + [anon_sym_L_SQUOTE] = ACTIONS(2911), + [anon_sym_u_SQUOTE] = ACTIONS(2911), + [anon_sym_U_SQUOTE] = ACTIONS(2911), + [anon_sym_u8_SQUOTE] = ACTIONS(2911), + [anon_sym_SQUOTE] = ACTIONS(2911), + [anon_sym_L_DQUOTE] = ACTIONS(2911), + [anon_sym_u_DQUOTE] = ACTIONS(2911), + [anon_sym_U_DQUOTE] = ACTIONS(2911), + [anon_sym_u8_DQUOTE] = ACTIONS(2911), + [anon_sym_DQUOTE] = ACTIONS(2911), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [anon_sym_NULL] = ACTIONS(2909), + [anon_sym_nullptr] = ACTIONS(2909), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2909), + [anon_sym_decltype] = ACTIONS(2909), + [anon_sym_virtual] = ACTIONS(2909), + [anon_sym_alignas] = ACTIONS(2909), + [anon_sym_explicit] = ACTIONS(2909), + [anon_sym_typename] = ACTIONS(2909), + [anon_sym_template] = ACTIONS(2909), + [anon_sym_operator] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(2909), + [anon_sym_delete] = ACTIONS(2909), + [anon_sym_throw] = ACTIONS(2909), + [anon_sym_namespace] = ACTIONS(2909), + [anon_sym_using] = ACTIONS(2909), + [anon_sym_static_assert] = ACTIONS(2909), + [anon_sym_concept] = ACTIONS(2909), + [anon_sym_co_return] = ACTIONS(2909), + [anon_sym_co_yield] = ACTIONS(2909), + [anon_sym_R_DQUOTE] = ACTIONS(2911), + [anon_sym_LR_DQUOTE] = ACTIONS(2911), + [anon_sym_uR_DQUOTE] = ACTIONS(2911), + [anon_sym_UR_DQUOTE] = ACTIONS(2911), + [anon_sym_u8R_DQUOTE] = ACTIONS(2911), + [anon_sym_co_await] = ACTIONS(2909), + [anon_sym_new] = ACTIONS(2909), + [anon_sym_requires] = ACTIONS(2909), + [sym_this] = ACTIONS(2909), }, - [768] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [765] = { + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [766] = { + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [767] = { + [sym_identifier] = ACTIONS(2977), + [aux_sym_preproc_include_token1] = ACTIONS(2977), + [aux_sym_preproc_def_token1] = ACTIONS(2977), + [aux_sym_preproc_if_token1] = ACTIONS(2977), + [aux_sym_preproc_if_token2] = ACTIONS(2977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2977), + [sym_preproc_directive] = ACTIONS(2977), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym___extension__] = ACTIONS(2977), + [anon_sym_typedef] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym___attribute__] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(2979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), + [anon_sym___declspec] = ACTIONS(2977), + [anon_sym___based] = ACTIONS(2977), + [anon_sym___cdecl] = ACTIONS(2977), + [anon_sym___clrcall] = ACTIONS(2977), + [anon_sym___stdcall] = ACTIONS(2977), + [anon_sym___fastcall] = ACTIONS(2977), + [anon_sym___thiscall] = ACTIONS(2977), + [anon_sym___vectorcall] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_signed] = ACTIONS(2977), + [anon_sym_unsigned] = ACTIONS(2977), + [anon_sym_long] = ACTIONS(2977), + [anon_sym_short] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_register] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym___inline] = ACTIONS(2977), + [anon_sym___inline__] = ACTIONS(2977), + [anon_sym___forceinline] = ACTIONS(2977), + [anon_sym_thread_local] = ACTIONS(2977), + [anon_sym___thread] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_constexpr] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_restrict] = ACTIONS(2977), + [anon_sym___restrict__] = ACTIONS(2977), + [anon_sym__Atomic] = ACTIONS(2977), + [anon_sym__Noreturn] = ACTIONS(2977), + [anon_sym_noreturn] = ACTIONS(2977), + [anon_sym_mutable] = ACTIONS(2977), + [anon_sym_constinit] = ACTIONS(2977), + [anon_sym_consteval] = ACTIONS(2977), + [sym_primitive_type] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_switch] = ACTIONS(2977), + [anon_sym_case] = ACTIONS(2977), + [anon_sym_default] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_do] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym___try] = ACTIONS(2977), + [anon_sym___leave] = ACTIONS(2977), + [anon_sym_not] = ACTIONS(2977), + [anon_sym_compl] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_sizeof] = ACTIONS(2977), + [anon_sym___alignof__] = ACTIONS(2977), + [anon_sym___alignof] = ACTIONS(2977), + [anon_sym__alignof] = ACTIONS(2977), + [anon_sym_alignof] = ACTIONS(2977), + [anon_sym__Alignof] = ACTIONS(2977), + [anon_sym_offsetof] = ACTIONS(2977), + [anon_sym__Generic] = ACTIONS(2977), + [anon_sym_asm] = ACTIONS(2977), + [anon_sym___asm__] = ACTIONS(2977), + [sym_number_literal] = ACTIONS(2979), + [anon_sym_L_SQUOTE] = ACTIONS(2979), + [anon_sym_u_SQUOTE] = ACTIONS(2979), + [anon_sym_U_SQUOTE] = ACTIONS(2979), + [anon_sym_u8_SQUOTE] = ACTIONS(2979), + [anon_sym_SQUOTE] = ACTIONS(2979), + [anon_sym_L_DQUOTE] = ACTIONS(2979), + [anon_sym_u_DQUOTE] = ACTIONS(2979), + [anon_sym_U_DQUOTE] = ACTIONS(2979), + [anon_sym_u8_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [anon_sym_NULL] = ACTIONS(2977), + [anon_sym_nullptr] = ACTIONS(2977), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2977), + [anon_sym_decltype] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_alignas] = ACTIONS(2977), + [anon_sym_explicit] = ACTIONS(2977), + [anon_sym_typename] = ACTIONS(2977), + [anon_sym_template] = ACTIONS(2977), + [anon_sym_operator] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_namespace] = ACTIONS(2977), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_static_assert] = ACTIONS(2977), + [anon_sym_concept] = ACTIONS(2977), + [anon_sym_co_return] = ACTIONS(2977), + [anon_sym_co_yield] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2979), + [anon_sym_LR_DQUOTE] = ACTIONS(2979), + [anon_sym_uR_DQUOTE] = ACTIONS(2979), + [anon_sym_UR_DQUOTE] = ACTIONS(2979), + [anon_sym_u8R_DQUOTE] = ACTIONS(2979), + [anon_sym_co_await] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_requires] = ACTIONS(2977), + [sym_this] = ACTIONS(2977), + }, + [768] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [769] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [770] = { - [sym_preproc_def] = STATE(765), - [sym_preproc_function_def] = STATE(765), - [sym_preproc_call] = STATE(765), - [sym_preproc_if_in_field_declaration_list] = STATE(765), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(765), - [sym_preproc_else_in_field_declaration_list] = STATE(8560), - [sym_preproc_elif_in_field_declaration_list] = STATE(8560), - [sym_type_definition] = STATE(765), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6188), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(765), - [sym_field_declaration] = STATE(765), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(765), - [sym_operator_cast] = STATE(7176), - [sym_inline_method_definition] = STATE(765), - [sym__constructor_specifiers] = STATE(2018), - [sym_operator_cast_definition] = STATE(765), - [sym_operator_cast_declaration] = STATE(765), - [sym_constructor_or_destructor_definition] = STATE(765), - [sym_constructor_or_destructor_declaration] = STATE(765), - [sym_friend_declaration] = STATE(765), - [sym_access_specifier] = STATE(8857), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(765), - [sym_alias_declaration] = STATE(765), - [sym_static_assert_declaration] = STATE(765), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(765), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3430), - [aux_sym_preproc_if_token2] = ACTIONS(3486), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [sym_identifier] = ACTIONS(2913), + [aux_sym_preproc_include_token1] = ACTIONS(2913), + [aux_sym_preproc_def_token1] = ACTIONS(2913), + [aux_sym_preproc_if_token1] = ACTIONS(2913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), + [sym_preproc_directive] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_AMP_AMP] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym___extension__] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(2913), + [anon_sym_extern] = ACTIONS(2913), + [anon_sym___attribute__] = ACTIONS(2913), + [anon_sym_COLON_COLON] = ACTIONS(2915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), + [anon_sym___declspec] = ACTIONS(2913), + [anon_sym___based] = ACTIONS(2913), + [anon_sym___cdecl] = ACTIONS(2913), + [anon_sym___clrcall] = ACTIONS(2913), + [anon_sym___stdcall] = ACTIONS(2913), + [anon_sym___fastcall] = ACTIONS(2913), + [anon_sym___thiscall] = ACTIONS(2913), + [anon_sym___vectorcall] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_RBRACE] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(2913), + [anon_sym_unsigned] = ACTIONS(2913), + [anon_sym_long] = ACTIONS(2913), + [anon_sym_short] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_register] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym___inline] = ACTIONS(2913), + [anon_sym___inline__] = ACTIONS(2913), + [anon_sym___forceinline] = ACTIONS(2913), + [anon_sym_thread_local] = ACTIONS(2913), + [anon_sym___thread] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_constexpr] = ACTIONS(2913), + [anon_sym_volatile] = ACTIONS(2913), + [anon_sym_restrict] = ACTIONS(2913), + [anon_sym___restrict__] = ACTIONS(2913), + [anon_sym__Atomic] = ACTIONS(2913), + [anon_sym__Noreturn] = ACTIONS(2913), + [anon_sym_noreturn] = ACTIONS(2913), + [anon_sym_mutable] = ACTIONS(2913), + [anon_sym_constinit] = ACTIONS(2913), + [anon_sym_consteval] = ACTIONS(2913), + [sym_primitive_type] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_union] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_else] = ACTIONS(2913), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_case] = ACTIONS(2913), + [anon_sym_default] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_goto] = ACTIONS(2913), + [anon_sym___try] = ACTIONS(2913), + [anon_sym___leave] = ACTIONS(2913), + [anon_sym_not] = ACTIONS(2913), + [anon_sym_compl] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_sizeof] = ACTIONS(2913), + [anon_sym___alignof__] = ACTIONS(2913), + [anon_sym___alignof] = ACTIONS(2913), + [anon_sym__alignof] = ACTIONS(2913), + [anon_sym_alignof] = ACTIONS(2913), + [anon_sym__Alignof] = ACTIONS(2913), + [anon_sym_offsetof] = ACTIONS(2913), + [anon_sym__Generic] = ACTIONS(2913), + [anon_sym_asm] = ACTIONS(2913), + [anon_sym___asm__] = ACTIONS(2913), + [sym_number_literal] = ACTIONS(2915), + [anon_sym_L_SQUOTE] = ACTIONS(2915), + [anon_sym_u_SQUOTE] = ACTIONS(2915), + [anon_sym_U_SQUOTE] = ACTIONS(2915), + [anon_sym_u8_SQUOTE] = ACTIONS(2915), + [anon_sym_SQUOTE] = ACTIONS(2915), + [anon_sym_L_DQUOTE] = ACTIONS(2915), + [anon_sym_u_DQUOTE] = ACTIONS(2915), + [anon_sym_U_DQUOTE] = ACTIONS(2915), + [anon_sym_u8_DQUOTE] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(2915), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [anon_sym_NULL] = ACTIONS(2913), + [anon_sym_nullptr] = ACTIONS(2913), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2913), + [anon_sym_decltype] = ACTIONS(2913), + [anon_sym_virtual] = ACTIONS(2913), + [anon_sym_alignas] = ACTIONS(2913), + [anon_sym_explicit] = ACTIONS(2913), + [anon_sym_typename] = ACTIONS(2913), + [anon_sym_template] = ACTIONS(2913), + [anon_sym_operator] = ACTIONS(2913), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_delete] = ACTIONS(2913), + [anon_sym_throw] = ACTIONS(2913), + [anon_sym_namespace] = ACTIONS(2913), + [anon_sym_using] = ACTIONS(2913), + [anon_sym_static_assert] = ACTIONS(2913), + [anon_sym_concept] = ACTIONS(2913), + [anon_sym_co_return] = ACTIONS(2913), + [anon_sym_co_yield] = ACTIONS(2913), + [anon_sym_R_DQUOTE] = ACTIONS(2915), + [anon_sym_LR_DQUOTE] = ACTIONS(2915), + [anon_sym_uR_DQUOTE] = ACTIONS(2915), + [anon_sym_UR_DQUOTE] = ACTIONS(2915), + [anon_sym_u8R_DQUOTE] = ACTIONS(2915), + [anon_sym_co_await] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_requires] = ACTIONS(2913), + [sym_this] = ACTIONS(2913), + }, + [771] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [772] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), + }, + [773] = { + [sym_identifier] = ACTIONS(2941), + [aux_sym_preproc_include_token1] = ACTIONS(2941), + [aux_sym_preproc_def_token1] = ACTIONS(2941), + [aux_sym_preproc_if_token1] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), + [sym_preproc_directive] = ACTIONS(2941), + [anon_sym_LPAREN2] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_AMP_AMP] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2943), + [anon_sym___extension__] = ACTIONS(2941), + [anon_sym_typedef] = ACTIONS(2941), + [anon_sym_extern] = ACTIONS(2941), + [anon_sym___attribute__] = ACTIONS(2941), + [anon_sym_COLON_COLON] = ACTIONS(2943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), + [anon_sym___declspec] = ACTIONS(2941), + [anon_sym___based] = ACTIONS(2941), + [anon_sym___cdecl] = ACTIONS(2941), + [anon_sym___clrcall] = ACTIONS(2941), + [anon_sym___stdcall] = ACTIONS(2941), + [anon_sym___fastcall] = ACTIONS(2941), + [anon_sym___thiscall] = ACTIONS(2941), + [anon_sym___vectorcall] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_RBRACE] = ACTIONS(2943), + [anon_sym_signed] = ACTIONS(2941), + [anon_sym_unsigned] = ACTIONS(2941), + [anon_sym_long] = ACTIONS(2941), + [anon_sym_short] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_static] = ACTIONS(2941), + [anon_sym_register] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2941), + [anon_sym___inline] = ACTIONS(2941), + [anon_sym___inline__] = ACTIONS(2941), + [anon_sym___forceinline] = ACTIONS(2941), + [anon_sym_thread_local] = ACTIONS(2941), + [anon_sym___thread] = ACTIONS(2941), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_constexpr] = ACTIONS(2941), + [anon_sym_volatile] = ACTIONS(2941), + [anon_sym_restrict] = ACTIONS(2941), + [anon_sym___restrict__] = ACTIONS(2941), + [anon_sym__Atomic] = ACTIONS(2941), + [anon_sym__Noreturn] = ACTIONS(2941), + [anon_sym_noreturn] = ACTIONS(2941), + [anon_sym_mutable] = ACTIONS(2941), + [anon_sym_constinit] = ACTIONS(2941), + [anon_sym_consteval] = ACTIONS(2941), + [sym_primitive_type] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2941), + [anon_sym_class] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_else] = ACTIONS(2941), + [anon_sym_switch] = ACTIONS(2941), + [anon_sym_case] = ACTIONS(2941), + [anon_sym_default] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_goto] = ACTIONS(2941), + [anon_sym___try] = ACTIONS(2941), + [anon_sym___leave] = ACTIONS(2941), + [anon_sym_not] = ACTIONS(2941), + [anon_sym_compl] = ACTIONS(2941), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_sizeof] = ACTIONS(2941), + [anon_sym___alignof__] = ACTIONS(2941), + [anon_sym___alignof] = ACTIONS(2941), + [anon_sym__alignof] = ACTIONS(2941), + [anon_sym_alignof] = ACTIONS(2941), + [anon_sym__Alignof] = ACTIONS(2941), + [anon_sym_offsetof] = ACTIONS(2941), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2941), + [anon_sym___asm__] = ACTIONS(2941), + [sym_number_literal] = ACTIONS(2943), + [anon_sym_L_SQUOTE] = ACTIONS(2943), + [anon_sym_u_SQUOTE] = ACTIONS(2943), + [anon_sym_U_SQUOTE] = ACTIONS(2943), + [anon_sym_u8_SQUOTE] = ACTIONS(2943), + [anon_sym_SQUOTE] = ACTIONS(2943), + [anon_sym_L_DQUOTE] = ACTIONS(2943), + [anon_sym_u_DQUOTE] = ACTIONS(2943), + [anon_sym_U_DQUOTE] = ACTIONS(2943), + [anon_sym_u8_DQUOTE] = ACTIONS(2943), + [anon_sym_DQUOTE] = ACTIONS(2943), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [anon_sym_NULL] = ACTIONS(2941), + [anon_sym_nullptr] = ACTIONS(2941), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2941), + [anon_sym_decltype] = ACTIONS(2941), + [anon_sym_virtual] = ACTIONS(2941), + [anon_sym_alignas] = ACTIONS(2941), + [anon_sym_explicit] = ACTIONS(2941), + [anon_sym_typename] = ACTIONS(2941), + [anon_sym_template] = ACTIONS(2941), + [anon_sym_operator] = ACTIONS(2941), + [anon_sym_try] = ACTIONS(2941), + [anon_sym_delete] = ACTIONS(2941), + [anon_sym_throw] = ACTIONS(2941), + [anon_sym_namespace] = ACTIONS(2941), + [anon_sym_using] = ACTIONS(2941), + [anon_sym_static_assert] = ACTIONS(2941), + [anon_sym_concept] = ACTIONS(2941), + [anon_sym_co_return] = ACTIONS(2941), + [anon_sym_co_yield] = ACTIONS(2941), + [anon_sym_R_DQUOTE] = ACTIONS(2943), + [anon_sym_LR_DQUOTE] = ACTIONS(2943), + [anon_sym_uR_DQUOTE] = ACTIONS(2943), + [anon_sym_UR_DQUOTE] = ACTIONS(2943), + [anon_sym_u8R_DQUOTE] = ACTIONS(2943), + [anon_sym_co_await] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_requires] = ACTIONS(2941), + [sym_this] = ACTIONS(2941), + }, + [774] = { + [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_preproc_else_in_field_declaration_list] = STATE(8623), + [sym_preproc_elif_in_field_declaration_list] = STATE(8623), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6205), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(7192), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2057), + [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(8453), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3432), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3438), - [anon_sym_typedef] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3444), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), @@ -196113,7 +196975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -196133,698 +196995,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3446), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_static_assert] = ACTIONS(3448), - }, - [771] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [anon_sym_friend] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_static_assert] = ACTIONS(3452), }, - [772] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [775] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [773] = { - [ts_builtin_sym_end] = ACTIONS(2931), - [sym_identifier] = ACTIONS(2929), - [aux_sym_preproc_include_token1] = ACTIONS(2929), - [aux_sym_preproc_def_token1] = ACTIONS(2929), - [aux_sym_preproc_if_token1] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2929), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2929), - [sym_preproc_directive] = ACTIONS(2929), - [anon_sym_LPAREN2] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym___extension__] = ACTIONS(2929), - [anon_sym_typedef] = ACTIONS(2929), - [anon_sym_extern] = ACTIONS(2929), - [anon_sym___attribute__] = ACTIONS(2929), - [anon_sym_COLON_COLON] = ACTIONS(2931), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2931), - [anon_sym___declspec] = ACTIONS(2929), - [anon_sym___based] = ACTIONS(2929), - [anon_sym___cdecl] = ACTIONS(2929), - [anon_sym___clrcall] = ACTIONS(2929), - [anon_sym___stdcall] = ACTIONS(2929), - [anon_sym___fastcall] = ACTIONS(2929), - [anon_sym___thiscall] = ACTIONS(2929), - [anon_sym___vectorcall] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_signed] = ACTIONS(2929), - [anon_sym_unsigned] = ACTIONS(2929), - [anon_sym_long] = ACTIONS(2929), - [anon_sym_short] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_static] = ACTIONS(2929), - [anon_sym_register] = ACTIONS(2929), - [anon_sym_inline] = ACTIONS(2929), - [anon_sym___inline] = ACTIONS(2929), - [anon_sym___inline__] = ACTIONS(2929), - [anon_sym___forceinline] = ACTIONS(2929), - [anon_sym_thread_local] = ACTIONS(2929), - [anon_sym___thread] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2929), - [anon_sym_constexpr] = ACTIONS(2929), - [anon_sym_volatile] = ACTIONS(2929), - [anon_sym_restrict] = ACTIONS(2929), - [anon_sym___restrict__] = ACTIONS(2929), - [anon_sym__Atomic] = ACTIONS(2929), - [anon_sym__Noreturn] = ACTIONS(2929), - [anon_sym_noreturn] = ACTIONS(2929), - [anon_sym_mutable] = ACTIONS(2929), - [anon_sym_constinit] = ACTIONS(2929), - [anon_sym_consteval] = ACTIONS(2929), - [sym_primitive_type] = ACTIONS(2929), - [anon_sym_enum] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2929), - [anon_sym_union] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2929), - [anon_sym_switch] = ACTIONS(2929), - [anon_sym_case] = ACTIONS(2929), - [anon_sym_default] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_do] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_goto] = ACTIONS(2929), - [anon_sym___try] = ACTIONS(2929), - [anon_sym___leave] = ACTIONS(2929), - [anon_sym_not] = ACTIONS(2929), - [anon_sym_compl] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_sizeof] = ACTIONS(2929), - [anon_sym___alignof__] = ACTIONS(2929), - [anon_sym___alignof] = ACTIONS(2929), - [anon_sym__alignof] = ACTIONS(2929), - [anon_sym_alignof] = ACTIONS(2929), - [anon_sym__Alignof] = ACTIONS(2929), - [anon_sym_offsetof] = ACTIONS(2929), - [anon_sym__Generic] = ACTIONS(2929), - [anon_sym_asm] = ACTIONS(2929), - [anon_sym___asm__] = ACTIONS(2929), - [sym_number_literal] = ACTIONS(2931), - [anon_sym_L_SQUOTE] = ACTIONS(2931), - [anon_sym_u_SQUOTE] = ACTIONS(2931), - [anon_sym_U_SQUOTE] = ACTIONS(2931), - [anon_sym_u8_SQUOTE] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_L_DQUOTE] = ACTIONS(2931), - [anon_sym_u_DQUOTE] = ACTIONS(2931), - [anon_sym_U_DQUOTE] = ACTIONS(2931), - [anon_sym_u8_DQUOTE] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2931), - [sym_true] = ACTIONS(2929), - [sym_false] = ACTIONS(2929), - [anon_sym_NULL] = ACTIONS(2929), - [anon_sym_nullptr] = ACTIONS(2929), + [776] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2929), - [anon_sym_decltype] = ACTIONS(2929), - [anon_sym_virtual] = ACTIONS(2929), - [anon_sym_alignas] = ACTIONS(2929), - [anon_sym_explicit] = ACTIONS(2929), - [anon_sym_typename] = ACTIONS(2929), - [anon_sym_template] = ACTIONS(2929), - [anon_sym_operator] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2929), - [anon_sym_delete] = ACTIONS(2929), - [anon_sym_throw] = ACTIONS(2929), - [anon_sym_namespace] = ACTIONS(2929), - [anon_sym_using] = ACTIONS(2929), - [anon_sym_static_assert] = ACTIONS(2929), - [anon_sym_concept] = ACTIONS(2929), - [anon_sym_co_return] = ACTIONS(2929), - [anon_sym_co_yield] = ACTIONS(2929), - [anon_sym_R_DQUOTE] = ACTIONS(2931), - [anon_sym_LR_DQUOTE] = ACTIONS(2931), - [anon_sym_uR_DQUOTE] = ACTIONS(2931), - [anon_sym_UR_DQUOTE] = ACTIONS(2931), - [anon_sym_u8R_DQUOTE] = ACTIONS(2931), - [anon_sym_co_await] = ACTIONS(2929), - [anon_sym_new] = ACTIONS(2929), - [anon_sym_requires] = ACTIONS(2929), - [sym_this] = ACTIONS(2929), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [774] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [777] = { + [sym_preproc_def] = STATE(774), + [sym_preproc_function_def] = STATE(774), + [sym_preproc_call] = STATE(774), + [sym_preproc_if_in_field_declaration_list] = STATE(774), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(774), + [sym_preproc_else_in_field_declaration_list] = STATE(8612), + [sym_preproc_elif_in_field_declaration_list] = STATE(8612), + [sym_type_definition] = STATE(774), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6205), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(774), + [sym_field_declaration] = STATE(774), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(774), + [sym_operator_cast] = STATE(7192), + [sym_inline_method_definition] = STATE(774), + [sym__constructor_specifiers] = STATE(2057), + [sym_operator_cast_definition] = STATE(774), + [sym_operator_cast_declaration] = STATE(774), + [sym_constructor_or_destructor_definition] = STATE(774), + [sym_constructor_or_destructor_declaration] = STATE(774), + [sym_friend_declaration] = STATE(774), + [sym_access_specifier] = STATE(8453), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(774), + [sym_alias_declaration] = STATE(774), + [sym_static_assert_declaration] = STATE(774), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(774), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3432), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3602), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3446), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_static_assert] = ACTIONS(3452), }, - [775] = { - [ts_builtin_sym_end] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2973), - [aux_sym_preproc_include_token1] = ACTIONS(2973), - [aux_sym_preproc_def_token1] = ACTIONS(2973), - [aux_sym_preproc_if_token1] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2975), - [anon_sym_BANG] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym___extension__] = ACTIONS(2973), - [anon_sym_typedef] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), - [anon_sym___declspec] = ACTIONS(2973), - [anon_sym___based] = ACTIONS(2973), - [anon_sym___cdecl] = ACTIONS(2973), - [anon_sym___clrcall] = ACTIONS(2973), - [anon_sym___stdcall] = ACTIONS(2973), - [anon_sym___fastcall] = ACTIONS(2973), - [anon_sym___thiscall] = ACTIONS(2973), - [anon_sym___vectorcall] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_signed] = ACTIONS(2973), - [anon_sym_unsigned] = ACTIONS(2973), - [anon_sym_long] = ACTIONS(2973), - [anon_sym_short] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_register] = ACTIONS(2973), - [anon_sym_inline] = ACTIONS(2973), - [anon_sym___inline] = ACTIONS(2973), - [anon_sym___inline__] = ACTIONS(2973), - [anon_sym___forceinline] = ACTIONS(2973), - [anon_sym_thread_local] = ACTIONS(2973), - [anon_sym___thread] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_constexpr] = ACTIONS(2973), - [anon_sym_volatile] = ACTIONS(2973), - [anon_sym_restrict] = ACTIONS(2973), - [anon_sym___restrict__] = ACTIONS(2973), - [anon_sym__Atomic] = ACTIONS(2973), - [anon_sym__Noreturn] = ACTIONS(2973), - [anon_sym_noreturn] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [sym_primitive_type] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2973), - [anon_sym_switch] = ACTIONS(2973), - [anon_sym_case] = ACTIONS(2973), - [anon_sym_default] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym___try] = ACTIONS(2973), - [anon_sym___leave] = ACTIONS(2973), - [anon_sym_not] = ACTIONS(2973), - [anon_sym_compl] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_sizeof] = ACTIONS(2973), - [anon_sym___alignof__] = ACTIONS(2973), - [anon_sym___alignof] = ACTIONS(2973), - [anon_sym__alignof] = ACTIONS(2973), - [anon_sym_alignof] = ACTIONS(2973), - [anon_sym__Alignof] = ACTIONS(2973), - [anon_sym_offsetof] = ACTIONS(2973), - [anon_sym__Generic] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym___asm__] = ACTIONS(2973), - [sym_number_literal] = ACTIONS(2975), - [anon_sym_L_SQUOTE] = ACTIONS(2975), - [anon_sym_u_SQUOTE] = ACTIONS(2975), - [anon_sym_U_SQUOTE] = ACTIONS(2975), - [anon_sym_u8_SQUOTE] = ACTIONS(2975), - [anon_sym_SQUOTE] = ACTIONS(2975), - [anon_sym_L_DQUOTE] = ACTIONS(2975), - [anon_sym_u_DQUOTE] = ACTIONS(2975), - [anon_sym_U_DQUOTE] = ACTIONS(2975), - [anon_sym_u8_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2975), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [anon_sym_NULL] = ACTIONS(2973), - [anon_sym_nullptr] = ACTIONS(2973), + [778] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_virtual] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym_explicit] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_operator] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_throw] = ACTIONS(2973), - [anon_sym_namespace] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2973), - [anon_sym_static_assert] = ACTIONS(2973), - [anon_sym_concept] = ACTIONS(2973), - [anon_sym_co_return] = ACTIONS(2973), - [anon_sym_co_yield] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_requires] = ACTIONS(2973), - [sym_this] = ACTIONS(2973), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [776] = { + [779] = { [sym_identifier] = ACTIONS(2969), [aux_sym_preproc_include_token1] = ACTIONS(2969), [aux_sym_preproc_def_token1] = ACTIONS(2969), [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), [sym_preproc_directive] = ACTIONS(2969), @@ -196852,6 +197580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2969), [anon_sym___vectorcall] = ACTIONS(2969), [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_RBRACE] = ACTIONS(2971), [anon_sym_signed] = ACTIONS(2969), [anon_sym_unsigned] = ACTIONS(2969), [anon_sym_long] = ACTIONS(2969), @@ -196952,1475 +197681,1076 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2969), [sym_this] = ACTIONS(2969), }, - [777] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [778] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [779] = { - [sym_identifier] = ACTIONS(2909), - [aux_sym_preproc_include_token1] = ACTIONS(2909), - [aux_sym_preproc_def_token1] = ACTIONS(2909), - [aux_sym_preproc_if_token1] = ACTIONS(2909), - [aux_sym_preproc_if_token2] = ACTIONS(2909), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2909), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2909), - [sym_preproc_directive] = ACTIONS(2909), - [anon_sym_LPAREN2] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym___extension__] = ACTIONS(2909), - [anon_sym_typedef] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym___attribute__] = ACTIONS(2909), - [anon_sym_COLON_COLON] = ACTIONS(2911), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2911), - [anon_sym___declspec] = ACTIONS(2909), - [anon_sym___based] = ACTIONS(2909), - [anon_sym___cdecl] = ACTIONS(2909), - [anon_sym___clrcall] = ACTIONS(2909), - [anon_sym___stdcall] = ACTIONS(2909), - [anon_sym___fastcall] = ACTIONS(2909), - [anon_sym___thiscall] = ACTIONS(2909), - [anon_sym___vectorcall] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_signed] = ACTIONS(2909), - [anon_sym_unsigned] = ACTIONS(2909), - [anon_sym_long] = ACTIONS(2909), - [anon_sym_short] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_register] = ACTIONS(2909), - [anon_sym_inline] = ACTIONS(2909), - [anon_sym___inline] = ACTIONS(2909), - [anon_sym___inline__] = ACTIONS(2909), - [anon_sym___forceinline] = ACTIONS(2909), - [anon_sym_thread_local] = ACTIONS(2909), - [anon_sym___thread] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_constexpr] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_restrict] = ACTIONS(2909), - [anon_sym___restrict__] = ACTIONS(2909), - [anon_sym__Atomic] = ACTIONS(2909), - [anon_sym__Noreturn] = ACTIONS(2909), - [anon_sym_noreturn] = ACTIONS(2909), - [anon_sym_mutable] = ACTIONS(2909), - [anon_sym_constinit] = ACTIONS(2909), - [anon_sym_consteval] = ACTIONS(2909), - [sym_primitive_type] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_class] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_case] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym___try] = ACTIONS(2909), - [anon_sym___leave] = ACTIONS(2909), - [anon_sym_not] = ACTIONS(2909), - [anon_sym_compl] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_sizeof] = ACTIONS(2909), - [anon_sym___alignof__] = ACTIONS(2909), - [anon_sym___alignof] = ACTIONS(2909), - [anon_sym__alignof] = ACTIONS(2909), - [anon_sym_alignof] = ACTIONS(2909), - [anon_sym__Alignof] = ACTIONS(2909), - [anon_sym_offsetof] = ACTIONS(2909), - [anon_sym__Generic] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym___asm__] = ACTIONS(2909), - [sym_number_literal] = ACTIONS(2911), - [anon_sym_L_SQUOTE] = ACTIONS(2911), - [anon_sym_u_SQUOTE] = ACTIONS(2911), - [anon_sym_U_SQUOTE] = ACTIONS(2911), - [anon_sym_u8_SQUOTE] = ACTIONS(2911), - [anon_sym_SQUOTE] = ACTIONS(2911), - [anon_sym_L_DQUOTE] = ACTIONS(2911), - [anon_sym_u_DQUOTE] = ACTIONS(2911), - [anon_sym_U_DQUOTE] = ACTIONS(2911), - [anon_sym_u8_DQUOTE] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [anon_sym_NULL] = ACTIONS(2909), - [anon_sym_nullptr] = ACTIONS(2909), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2909), - [anon_sym_decltype] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_alignas] = ACTIONS(2909), - [anon_sym_explicit] = ACTIONS(2909), - [anon_sym_typename] = ACTIONS(2909), - [anon_sym_template] = ACTIONS(2909), - [anon_sym_operator] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_delete] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_namespace] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_static_assert] = ACTIONS(2909), - [anon_sym_concept] = ACTIONS(2909), - [anon_sym_co_return] = ACTIONS(2909), - [anon_sym_co_yield] = ACTIONS(2909), - [anon_sym_R_DQUOTE] = ACTIONS(2911), - [anon_sym_LR_DQUOTE] = ACTIONS(2911), - [anon_sym_uR_DQUOTE] = ACTIONS(2911), - [anon_sym_UR_DQUOTE] = ACTIONS(2911), - [anon_sym_u8R_DQUOTE] = ACTIONS(2911), - [anon_sym_co_await] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2909), - [sym_this] = ACTIONS(2909), - }, [780] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [ts_builtin_sym_end] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2949), + [aux_sym_preproc_include_token1] = ACTIONS(2949), + [aux_sym_preproc_def_token1] = ACTIONS(2949), + [aux_sym_preproc_if_token1] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), + [sym_preproc_directive] = ACTIONS(2949), + [anon_sym_LPAREN2] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym___extension__] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym___attribute__] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), + [anon_sym___declspec] = ACTIONS(2949), + [anon_sym___based] = ACTIONS(2949), + [anon_sym___cdecl] = ACTIONS(2949), + [anon_sym___clrcall] = ACTIONS(2949), + [anon_sym___stdcall] = ACTIONS(2949), + [anon_sym___fastcall] = ACTIONS(2949), + [anon_sym___thiscall] = ACTIONS(2949), + [anon_sym___vectorcall] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_signed] = ACTIONS(2949), + [anon_sym_unsigned] = ACTIONS(2949), + [anon_sym_long] = ACTIONS(2949), + [anon_sym_short] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_register] = ACTIONS(2949), + [anon_sym_inline] = ACTIONS(2949), + [anon_sym___inline] = ACTIONS(2949), + [anon_sym___inline__] = ACTIONS(2949), + [anon_sym___forceinline] = ACTIONS(2949), + [anon_sym_thread_local] = ACTIONS(2949), + [anon_sym___thread] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_constexpr] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_restrict] = ACTIONS(2949), + [anon_sym___restrict__] = ACTIONS(2949), + [anon_sym__Atomic] = ACTIONS(2949), + [anon_sym__Noreturn] = ACTIONS(2949), + [anon_sym_noreturn] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [anon_sym_constinit] = ACTIONS(2949), + [anon_sym_consteval] = ACTIONS(2949), + [sym_primitive_type] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_union] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_case] = ACTIONS(2949), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym___try] = ACTIONS(2949), + [anon_sym___leave] = ACTIONS(2949), + [anon_sym_not] = ACTIONS(2949), + [anon_sym_compl] = ACTIONS(2949), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym___alignof__] = ACTIONS(2949), + [anon_sym___alignof] = ACTIONS(2949), + [anon_sym__alignof] = ACTIONS(2949), + [anon_sym_alignof] = ACTIONS(2949), + [anon_sym__Alignof] = ACTIONS(2949), + [anon_sym_offsetof] = ACTIONS(2949), + [anon_sym__Generic] = ACTIONS(2949), + [anon_sym_asm] = ACTIONS(2949), + [anon_sym___asm__] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2951), + [anon_sym_L_SQUOTE] = ACTIONS(2951), + [anon_sym_u_SQUOTE] = ACTIONS(2951), + [anon_sym_U_SQUOTE] = ACTIONS(2951), + [anon_sym_u8_SQUOTE] = ACTIONS(2951), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_L_DQUOTE] = ACTIONS(2951), + [anon_sym_u_DQUOTE] = ACTIONS(2951), + [anon_sym_U_DQUOTE] = ACTIONS(2951), + [anon_sym_u8_DQUOTE] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [sym_true] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [anon_sym_NULL] = ACTIONS(2949), + [anon_sym_nullptr] = ACTIONS(2949), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2949), + [anon_sym_decltype] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_alignas] = ACTIONS(2949), + [anon_sym_explicit] = ACTIONS(2949), + [anon_sym_typename] = ACTIONS(2949), + [anon_sym_template] = ACTIONS(2949), + [anon_sym_operator] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_delete] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_namespace] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_static_assert] = ACTIONS(2949), + [anon_sym_concept] = ACTIONS(2949), + [anon_sym_co_return] = ACTIONS(2949), + [anon_sym_co_yield] = ACTIONS(2949), + [anon_sym_R_DQUOTE] = ACTIONS(2951), + [anon_sym_LR_DQUOTE] = ACTIONS(2951), + [anon_sym_uR_DQUOTE] = ACTIONS(2951), + [anon_sym_UR_DQUOTE] = ACTIONS(2951), + [anon_sym_u8R_DQUOTE] = ACTIONS(2951), + [anon_sym_co_await] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_requires] = ACTIONS(2949), + [sym_this] = ACTIONS(2949), }, [781] = { - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_include_token1] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym___cdecl] = ACTIONS(2925), - [anon_sym___clrcall] = ACTIONS(2925), - [anon_sym___stdcall] = ACTIONS(2925), - [anon_sym___fastcall] = ACTIONS(2925), - [anon_sym___thiscall] = ACTIONS(2925), - [anon_sym___vectorcall] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_RBRACE] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_case] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym___try] = ACTIONS(2925), - [anon_sym___leave] = ACTIONS(2925), - [anon_sym_not] = ACTIONS(2925), - [anon_sym_compl] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(2925), - [anon_sym___alignof__] = ACTIONS(2925), - [anon_sym___alignof] = ACTIONS(2925), - [anon_sym__alignof] = ACTIONS(2925), - [anon_sym_alignof] = ACTIONS(2925), - [anon_sym__Alignof] = ACTIONS(2925), - [anon_sym_offsetof] = ACTIONS(2925), - [anon_sym__Generic] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym___asm__] = ACTIONS(2925), - [sym_number_literal] = ACTIONS(2927), - [anon_sym_L_SQUOTE] = ACTIONS(2927), - [anon_sym_u_SQUOTE] = ACTIONS(2927), - [anon_sym_U_SQUOTE] = ACTIONS(2927), - [anon_sym_u8_SQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_L_DQUOTE] = ACTIONS(2927), - [anon_sym_u_DQUOTE] = ACTIONS(2927), - [anon_sym_U_DQUOTE] = ACTIONS(2927), - [anon_sym_u8_DQUOTE] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [anon_sym_NULL] = ACTIONS(2925), - [anon_sym_nullptr] = ACTIONS(2925), + [ts_builtin_sym_end] = ACTIONS(2943), + [sym_identifier] = ACTIONS(2941), + [aux_sym_preproc_include_token1] = ACTIONS(2941), + [aux_sym_preproc_def_token1] = ACTIONS(2941), + [aux_sym_preproc_if_token1] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2941), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2941), + [sym_preproc_directive] = ACTIONS(2941), + [anon_sym_LPAREN2] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_AMP_AMP] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2943), + [anon_sym___extension__] = ACTIONS(2941), + [anon_sym_typedef] = ACTIONS(2941), + [anon_sym_extern] = ACTIONS(2941), + [anon_sym___attribute__] = ACTIONS(2941), + [anon_sym_COLON_COLON] = ACTIONS(2943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), + [anon_sym___declspec] = ACTIONS(2941), + [anon_sym___based] = ACTIONS(2941), + [anon_sym___cdecl] = ACTIONS(2941), + [anon_sym___clrcall] = ACTIONS(2941), + [anon_sym___stdcall] = ACTIONS(2941), + [anon_sym___fastcall] = ACTIONS(2941), + [anon_sym___thiscall] = ACTIONS(2941), + [anon_sym___vectorcall] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_signed] = ACTIONS(2941), + [anon_sym_unsigned] = ACTIONS(2941), + [anon_sym_long] = ACTIONS(2941), + [anon_sym_short] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_static] = ACTIONS(2941), + [anon_sym_register] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2941), + [anon_sym___inline] = ACTIONS(2941), + [anon_sym___inline__] = ACTIONS(2941), + [anon_sym___forceinline] = ACTIONS(2941), + [anon_sym_thread_local] = ACTIONS(2941), + [anon_sym___thread] = ACTIONS(2941), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_constexpr] = ACTIONS(2941), + [anon_sym_volatile] = ACTIONS(2941), + [anon_sym_restrict] = ACTIONS(2941), + [anon_sym___restrict__] = ACTIONS(2941), + [anon_sym__Atomic] = ACTIONS(2941), + [anon_sym__Noreturn] = ACTIONS(2941), + [anon_sym_noreturn] = ACTIONS(2941), + [anon_sym_mutable] = ACTIONS(2941), + [anon_sym_constinit] = ACTIONS(2941), + [anon_sym_consteval] = ACTIONS(2941), + [sym_primitive_type] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2941), + [anon_sym_class] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_else] = ACTIONS(2941), + [anon_sym_switch] = ACTIONS(2941), + [anon_sym_case] = ACTIONS(2941), + [anon_sym_default] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_goto] = ACTIONS(2941), + [anon_sym___try] = ACTIONS(2941), + [anon_sym___leave] = ACTIONS(2941), + [anon_sym_not] = ACTIONS(2941), + [anon_sym_compl] = ACTIONS(2941), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_sizeof] = ACTIONS(2941), + [anon_sym___alignof__] = ACTIONS(2941), + [anon_sym___alignof] = ACTIONS(2941), + [anon_sym__alignof] = ACTIONS(2941), + [anon_sym_alignof] = ACTIONS(2941), + [anon_sym__Alignof] = ACTIONS(2941), + [anon_sym_offsetof] = ACTIONS(2941), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2941), + [anon_sym___asm__] = ACTIONS(2941), + [sym_number_literal] = ACTIONS(2943), + [anon_sym_L_SQUOTE] = ACTIONS(2943), + [anon_sym_u_SQUOTE] = ACTIONS(2943), + [anon_sym_U_SQUOTE] = ACTIONS(2943), + [anon_sym_u8_SQUOTE] = ACTIONS(2943), + [anon_sym_SQUOTE] = ACTIONS(2943), + [anon_sym_L_DQUOTE] = ACTIONS(2943), + [anon_sym_u_DQUOTE] = ACTIONS(2943), + [anon_sym_U_DQUOTE] = ACTIONS(2943), + [anon_sym_u8_DQUOTE] = ACTIONS(2943), + [anon_sym_DQUOTE] = ACTIONS(2943), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [anon_sym_NULL] = ACTIONS(2941), + [anon_sym_nullptr] = ACTIONS(2941), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_namespace] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - [anon_sym_concept] = ACTIONS(2925), - [anon_sym_co_return] = ACTIONS(2925), - [anon_sym_co_yield] = ACTIONS(2925), - [anon_sym_R_DQUOTE] = ACTIONS(2927), - [anon_sym_LR_DQUOTE] = ACTIONS(2927), - [anon_sym_uR_DQUOTE] = ACTIONS(2927), - [anon_sym_UR_DQUOTE] = ACTIONS(2927), - [anon_sym_u8R_DQUOTE] = ACTIONS(2927), - [anon_sym_co_await] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_requires] = ACTIONS(2925), - [sym_this] = ACTIONS(2925), + [sym_auto] = ACTIONS(2941), + [anon_sym_decltype] = ACTIONS(2941), + [anon_sym_virtual] = ACTIONS(2941), + [anon_sym_alignas] = ACTIONS(2941), + [anon_sym_explicit] = ACTIONS(2941), + [anon_sym_typename] = ACTIONS(2941), + [anon_sym_template] = ACTIONS(2941), + [anon_sym_operator] = ACTIONS(2941), + [anon_sym_try] = ACTIONS(2941), + [anon_sym_delete] = ACTIONS(2941), + [anon_sym_throw] = ACTIONS(2941), + [anon_sym_namespace] = ACTIONS(2941), + [anon_sym_using] = ACTIONS(2941), + [anon_sym_static_assert] = ACTIONS(2941), + [anon_sym_concept] = ACTIONS(2941), + [anon_sym_co_return] = ACTIONS(2941), + [anon_sym_co_yield] = ACTIONS(2941), + [anon_sym_R_DQUOTE] = ACTIONS(2943), + [anon_sym_LR_DQUOTE] = ACTIONS(2943), + [anon_sym_uR_DQUOTE] = ACTIONS(2943), + [anon_sym_UR_DQUOTE] = ACTIONS(2943), + [anon_sym_u8R_DQUOTE] = ACTIONS(2943), + [anon_sym_co_await] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_requires] = ACTIONS(2941), + [sym_this] = ACTIONS(2941), }, [782] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_include_token1] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym___cdecl] = ACTIONS(2917), - [anon_sym___clrcall] = ACTIONS(2917), - [anon_sym___stdcall] = ACTIONS(2917), - [anon_sym___fastcall] = ACTIONS(2917), - [anon_sym___thiscall] = ACTIONS(2917), - [anon_sym___vectorcall] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym___try] = ACTIONS(2917), - [anon_sym___leave] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - [anon_sym_concept] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym___cdecl] = ACTIONS(2875), + [anon_sym___clrcall] = ACTIONS(2875), + [anon_sym___stdcall] = ACTIONS(2875), + [anon_sym___fastcall] = ACTIONS(2875), + [anon_sym___thiscall] = ACTIONS(2875), + [anon_sym___vectorcall] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_else] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym___try] = ACTIONS(2875), + [anon_sym___leave] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [anon_sym___alignof__] = ACTIONS(2875), + [anon_sym___alignof] = ACTIONS(2875), + [anon_sym__alignof] = ACTIONS(2875), + [anon_sym_alignof] = ACTIONS(2875), + [anon_sym__Alignof] = ACTIONS(2875), + [anon_sym_offsetof] = ACTIONS(2875), + [anon_sym__Generic] = ACTIONS(2875), + [anon_sym_asm] = ACTIONS(2875), + [anon_sym___asm__] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [anon_sym_NULL] = ACTIONS(2875), + [anon_sym_nullptr] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + [anon_sym_concept] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_R_DQUOTE] = ACTIONS(2877), + [anon_sym_LR_DQUOTE] = ACTIONS(2877), + [anon_sym_uR_DQUOTE] = ACTIONS(2877), + [anon_sym_UR_DQUOTE] = ACTIONS(2877), + [anon_sym_u8R_DQUOTE] = ACTIONS(2877), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), }, [783] = { - [sym_identifier] = ACTIONS(2863), - [aux_sym_preproc_include_token1] = ACTIONS(2863), - [aux_sym_preproc_def_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token1] = ACTIONS(2863), - [aux_sym_preproc_if_token2] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), - [sym_preproc_directive] = ACTIONS(2863), - [anon_sym_LPAREN2] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym___extension__] = ACTIONS(2863), - [anon_sym_typedef] = ACTIONS(2863), - [anon_sym_extern] = ACTIONS(2863), - [anon_sym___attribute__] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), - [anon_sym___declspec] = ACTIONS(2863), - [anon_sym___based] = ACTIONS(2863), - [anon_sym___cdecl] = ACTIONS(2863), - [anon_sym___clrcall] = ACTIONS(2863), - [anon_sym___stdcall] = ACTIONS(2863), - [anon_sym___fastcall] = ACTIONS(2863), - [anon_sym___thiscall] = ACTIONS(2863), - [anon_sym___vectorcall] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_signed] = ACTIONS(2863), - [anon_sym_unsigned] = ACTIONS(2863), - [anon_sym_long] = ACTIONS(2863), - [anon_sym_short] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(2863), - [anon_sym_register] = ACTIONS(2863), - [anon_sym_inline] = ACTIONS(2863), - [anon_sym___inline] = ACTIONS(2863), - [anon_sym___inline__] = ACTIONS(2863), - [anon_sym___forceinline] = ACTIONS(2863), - [anon_sym_thread_local] = ACTIONS(2863), - [anon_sym___thread] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_constexpr] = ACTIONS(2863), - [anon_sym_volatile] = ACTIONS(2863), - [anon_sym_restrict] = ACTIONS(2863), - [anon_sym___restrict__] = ACTIONS(2863), - [anon_sym__Atomic] = ACTIONS(2863), - [anon_sym__Noreturn] = ACTIONS(2863), - [anon_sym_noreturn] = ACTIONS(2863), - [anon_sym_mutable] = ACTIONS(2863), - [anon_sym_constinit] = ACTIONS(2863), - [anon_sym_consteval] = ACTIONS(2863), - [sym_primitive_type] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), - [anon_sym_class] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_union] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_else] = ACTIONS(2863), - [anon_sym_switch] = ACTIONS(2863), - [anon_sym_case] = ACTIONS(2863), - [anon_sym_default] = ACTIONS(2863), - [anon_sym_while] = ACTIONS(2863), - [anon_sym_do] = ACTIONS(2863), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_return] = ACTIONS(2863), - [anon_sym_break] = ACTIONS(2863), - [anon_sym_continue] = ACTIONS(2863), - [anon_sym_goto] = ACTIONS(2863), - [anon_sym___try] = ACTIONS(2863), - [anon_sym___leave] = ACTIONS(2863), - [anon_sym_not] = ACTIONS(2863), - [anon_sym_compl] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_sizeof] = ACTIONS(2863), - [anon_sym___alignof__] = ACTIONS(2863), - [anon_sym___alignof] = ACTIONS(2863), - [anon_sym__alignof] = ACTIONS(2863), - [anon_sym_alignof] = ACTIONS(2863), - [anon_sym__Alignof] = ACTIONS(2863), - [anon_sym_offsetof] = ACTIONS(2863), - [anon_sym__Generic] = ACTIONS(2863), - [anon_sym_asm] = ACTIONS(2863), - [anon_sym___asm__] = ACTIONS(2863), - [sym_number_literal] = ACTIONS(2865), - [anon_sym_L_SQUOTE] = ACTIONS(2865), - [anon_sym_u_SQUOTE] = ACTIONS(2865), - [anon_sym_U_SQUOTE] = ACTIONS(2865), - [anon_sym_u8_SQUOTE] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_L_DQUOTE] = ACTIONS(2865), - [anon_sym_u_DQUOTE] = ACTIONS(2865), - [anon_sym_U_DQUOTE] = ACTIONS(2865), - [anon_sym_u8_DQUOTE] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2865), - [sym_true] = ACTIONS(2863), - [sym_false] = ACTIONS(2863), - [anon_sym_NULL] = ACTIONS(2863), - [anon_sym_nullptr] = ACTIONS(2863), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2863), - [anon_sym_decltype] = ACTIONS(2863), - [anon_sym_virtual] = ACTIONS(2863), - [anon_sym_alignas] = ACTIONS(2863), - [anon_sym_explicit] = ACTIONS(2863), - [anon_sym_typename] = ACTIONS(2863), - [anon_sym_template] = ACTIONS(2863), - [anon_sym_operator] = ACTIONS(2863), - [anon_sym_try] = ACTIONS(2863), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_throw] = ACTIONS(2863), - [anon_sym_namespace] = ACTIONS(2863), - [anon_sym_using] = ACTIONS(2863), - [anon_sym_static_assert] = ACTIONS(2863), - [anon_sym_concept] = ACTIONS(2863), - [anon_sym_co_return] = ACTIONS(2863), - [anon_sym_co_yield] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2863), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2863), - [sym_this] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [784] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, [785] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_include_token1] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym___cdecl] = ACTIONS(2895), + [anon_sym___clrcall] = ACTIONS(2895), + [anon_sym___stdcall] = ACTIONS(2895), + [anon_sym___fastcall] = ACTIONS(2895), + [anon_sym___thiscall] = ACTIONS(2895), + [anon_sym___vectorcall] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_RBRACE] = ACTIONS(2897), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_else] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym___try] = ACTIONS(2895), + [anon_sym___leave] = ACTIONS(2895), + [anon_sym_not] = ACTIONS(2895), + [anon_sym_compl] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_sizeof] = ACTIONS(2895), + [anon_sym___alignof__] = ACTIONS(2895), + [anon_sym___alignof] = ACTIONS(2895), + [anon_sym__alignof] = ACTIONS(2895), + [anon_sym_alignof] = ACTIONS(2895), + [anon_sym__Alignof] = ACTIONS(2895), + [anon_sym_offsetof] = ACTIONS(2895), + [anon_sym__Generic] = ACTIONS(2895), + [anon_sym_asm] = ACTIONS(2895), + [anon_sym___asm__] = ACTIONS(2895), + [sym_number_literal] = ACTIONS(2897), + [anon_sym_L_SQUOTE] = ACTIONS(2897), + [anon_sym_u_SQUOTE] = ACTIONS(2897), + [anon_sym_U_SQUOTE] = ACTIONS(2897), + [anon_sym_u8_SQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_L_DQUOTE] = ACTIONS(2897), + [anon_sym_u_DQUOTE] = ACTIONS(2897), + [anon_sym_U_DQUOTE] = ACTIONS(2897), + [anon_sym_u8_DQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [anon_sym_NULL] = ACTIONS(2895), + [anon_sym_nullptr] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + [anon_sym_concept] = ACTIONS(2895), + [anon_sym_co_return] = ACTIONS(2895), + [anon_sym_co_yield] = ACTIONS(2895), + [anon_sym_R_DQUOTE] = ACTIONS(2897), + [anon_sym_LR_DQUOTE] = ACTIONS(2897), + [anon_sym_uR_DQUOTE] = ACTIONS(2897), + [anon_sym_UR_DQUOTE] = ACTIONS(2897), + [anon_sym_u8R_DQUOTE] = ACTIONS(2897), + [anon_sym_co_await] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_requires] = ACTIONS(2895), + [sym_this] = ACTIONS(2895), }, [786] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, [787] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2913), + [aux_sym_preproc_include_token1] = ACTIONS(2913), + [aux_sym_preproc_def_token1] = ACTIONS(2913), + [aux_sym_preproc_if_token1] = ACTIONS(2913), + [aux_sym_preproc_if_token2] = ACTIONS(2913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2913), + [sym_preproc_directive] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_AMP_AMP] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym___extension__] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(2913), + [anon_sym_extern] = ACTIONS(2913), + [anon_sym___attribute__] = ACTIONS(2913), + [anon_sym_COLON_COLON] = ACTIONS(2915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), + [anon_sym___declspec] = ACTIONS(2913), + [anon_sym___based] = ACTIONS(2913), + [anon_sym___cdecl] = ACTIONS(2913), + [anon_sym___clrcall] = ACTIONS(2913), + [anon_sym___stdcall] = ACTIONS(2913), + [anon_sym___fastcall] = ACTIONS(2913), + [anon_sym___thiscall] = ACTIONS(2913), + [anon_sym___vectorcall] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(2913), + [anon_sym_unsigned] = ACTIONS(2913), + [anon_sym_long] = ACTIONS(2913), + [anon_sym_short] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_register] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym___inline] = ACTIONS(2913), + [anon_sym___inline__] = ACTIONS(2913), + [anon_sym___forceinline] = ACTIONS(2913), + [anon_sym_thread_local] = ACTIONS(2913), + [anon_sym___thread] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_constexpr] = ACTIONS(2913), + [anon_sym_volatile] = ACTIONS(2913), + [anon_sym_restrict] = ACTIONS(2913), + [anon_sym___restrict__] = ACTIONS(2913), + [anon_sym__Atomic] = ACTIONS(2913), + [anon_sym__Noreturn] = ACTIONS(2913), + [anon_sym_noreturn] = ACTIONS(2913), + [anon_sym_mutable] = ACTIONS(2913), + [anon_sym_constinit] = ACTIONS(2913), + [anon_sym_consteval] = ACTIONS(2913), + [sym_primitive_type] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_union] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_else] = ACTIONS(2913), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_case] = ACTIONS(2913), + [anon_sym_default] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_goto] = ACTIONS(2913), + [anon_sym___try] = ACTIONS(2913), + [anon_sym___leave] = ACTIONS(2913), + [anon_sym_not] = ACTIONS(2913), + [anon_sym_compl] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_sizeof] = ACTIONS(2913), + [anon_sym___alignof__] = ACTIONS(2913), + [anon_sym___alignof] = ACTIONS(2913), + [anon_sym__alignof] = ACTIONS(2913), + [anon_sym_alignof] = ACTIONS(2913), + [anon_sym__Alignof] = ACTIONS(2913), + [anon_sym_offsetof] = ACTIONS(2913), + [anon_sym__Generic] = ACTIONS(2913), + [anon_sym_asm] = ACTIONS(2913), + [anon_sym___asm__] = ACTIONS(2913), + [sym_number_literal] = ACTIONS(2915), + [anon_sym_L_SQUOTE] = ACTIONS(2915), + [anon_sym_u_SQUOTE] = ACTIONS(2915), + [anon_sym_U_SQUOTE] = ACTIONS(2915), + [anon_sym_u8_SQUOTE] = ACTIONS(2915), + [anon_sym_SQUOTE] = ACTIONS(2915), + [anon_sym_L_DQUOTE] = ACTIONS(2915), + [anon_sym_u_DQUOTE] = ACTIONS(2915), + [anon_sym_U_DQUOTE] = ACTIONS(2915), + [anon_sym_u8_DQUOTE] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(2915), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [anon_sym_NULL] = ACTIONS(2913), + [anon_sym_nullptr] = ACTIONS(2913), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2913), + [anon_sym_decltype] = ACTIONS(2913), + [anon_sym_virtual] = ACTIONS(2913), + [anon_sym_alignas] = ACTIONS(2913), + [anon_sym_explicit] = ACTIONS(2913), + [anon_sym_typename] = ACTIONS(2913), + [anon_sym_template] = ACTIONS(2913), + [anon_sym_operator] = ACTIONS(2913), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_delete] = ACTIONS(2913), + [anon_sym_throw] = ACTIONS(2913), + [anon_sym_namespace] = ACTIONS(2913), + [anon_sym_using] = ACTIONS(2913), + [anon_sym_static_assert] = ACTIONS(2913), + [anon_sym_concept] = ACTIONS(2913), + [anon_sym_co_return] = ACTIONS(2913), + [anon_sym_co_yield] = ACTIONS(2913), + [anon_sym_R_DQUOTE] = ACTIONS(2915), + [anon_sym_LR_DQUOTE] = ACTIONS(2915), + [anon_sym_uR_DQUOTE] = ACTIONS(2915), + [anon_sym_UR_DQUOTE] = ACTIONS(2915), + [anon_sym_u8R_DQUOTE] = ACTIONS(2915), + [anon_sym_co_await] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_requires] = ACTIONS(2913), + [sym_this] = ACTIONS(2913), }, [788] = { + [ts_builtin_sym_end] = ACTIONS(2869), [sym_identifier] = ACTIONS(2867), [aux_sym_preproc_include_token1] = ACTIONS(2867), [aux_sym_preproc_def_token1] = ACTIONS(2867), [aux_sym_preproc_if_token1] = ACTIONS(2867), - [aux_sym_preproc_if_token2] = ACTIONS(2867), [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), [sym_preproc_directive] = ACTIONS(2867), @@ -198549,2484 +198879,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2867), }, [789] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2973), + [aux_sym_preproc_include_token1] = ACTIONS(2973), + [aux_sym_preproc_def_token1] = ACTIONS(2973), + [aux_sym_preproc_if_token1] = ACTIONS(2973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), + [sym_preproc_directive] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2975), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_AMP_AMP] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym___extension__] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym___attribute__] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), + [anon_sym___declspec] = ACTIONS(2973), + [anon_sym___based] = ACTIONS(2973), + [anon_sym___cdecl] = ACTIONS(2973), + [anon_sym___clrcall] = ACTIONS(2973), + [anon_sym___stdcall] = ACTIONS(2973), + [anon_sym___fastcall] = ACTIONS(2973), + [anon_sym___thiscall] = ACTIONS(2973), + [anon_sym___vectorcall] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_RBRACE] = ACTIONS(2975), + [anon_sym_signed] = ACTIONS(2973), + [anon_sym_unsigned] = ACTIONS(2973), + [anon_sym_long] = ACTIONS(2973), + [anon_sym_short] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_register] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym___inline] = ACTIONS(2973), + [anon_sym___inline__] = ACTIONS(2973), + [anon_sym___forceinline] = ACTIONS(2973), + [anon_sym_thread_local] = ACTIONS(2973), + [anon_sym___thread] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_constexpr] = ACTIONS(2973), + [anon_sym_volatile] = ACTIONS(2973), + [anon_sym_restrict] = ACTIONS(2973), + [anon_sym___restrict__] = ACTIONS(2973), + [anon_sym__Atomic] = ACTIONS(2973), + [anon_sym__Noreturn] = ACTIONS(2973), + [anon_sym_noreturn] = ACTIONS(2973), + [anon_sym_mutable] = ACTIONS(2973), + [anon_sym_constinit] = ACTIONS(2973), + [anon_sym_consteval] = ACTIONS(2973), + [sym_primitive_type] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_else] = ACTIONS(2973), + [anon_sym_switch] = ACTIONS(2973), + [anon_sym_case] = ACTIONS(2973), + [anon_sym_default] = ACTIONS(2973), + [anon_sym_while] = ACTIONS(2973), + [anon_sym_do] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_goto] = ACTIONS(2973), + [anon_sym___try] = ACTIONS(2973), + [anon_sym___leave] = ACTIONS(2973), + [anon_sym_not] = ACTIONS(2973), + [anon_sym_compl] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2975), + [anon_sym_sizeof] = ACTIONS(2973), + [anon_sym___alignof__] = ACTIONS(2973), + [anon_sym___alignof] = ACTIONS(2973), + [anon_sym__alignof] = ACTIONS(2973), + [anon_sym_alignof] = ACTIONS(2973), + [anon_sym__Alignof] = ACTIONS(2973), + [anon_sym_offsetof] = ACTIONS(2973), + [anon_sym__Generic] = ACTIONS(2973), + [anon_sym_asm] = ACTIONS(2973), + [anon_sym___asm__] = ACTIONS(2973), + [sym_number_literal] = ACTIONS(2975), + [anon_sym_L_SQUOTE] = ACTIONS(2975), + [anon_sym_u_SQUOTE] = ACTIONS(2975), + [anon_sym_U_SQUOTE] = ACTIONS(2975), + [anon_sym_u8_SQUOTE] = ACTIONS(2975), + [anon_sym_SQUOTE] = ACTIONS(2975), + [anon_sym_L_DQUOTE] = ACTIONS(2975), + [anon_sym_u_DQUOTE] = ACTIONS(2975), + [anon_sym_U_DQUOTE] = ACTIONS(2975), + [anon_sym_u8_DQUOTE] = ACTIONS(2975), + [anon_sym_DQUOTE] = ACTIONS(2975), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [anon_sym_NULL] = ACTIONS(2973), + [anon_sym_nullptr] = ACTIONS(2973), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2973), + [anon_sym_virtual] = ACTIONS(2973), + [anon_sym_alignas] = ACTIONS(2973), + [anon_sym_explicit] = ACTIONS(2973), + [anon_sym_typename] = ACTIONS(2973), + [anon_sym_template] = ACTIONS(2973), + [anon_sym_operator] = ACTIONS(2973), + [anon_sym_try] = ACTIONS(2973), + [anon_sym_delete] = ACTIONS(2973), + [anon_sym_throw] = ACTIONS(2973), + [anon_sym_namespace] = ACTIONS(2973), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_static_assert] = ACTIONS(2973), + [anon_sym_concept] = ACTIONS(2973), + [anon_sym_co_return] = ACTIONS(2973), + [anon_sym_co_yield] = ACTIONS(2973), + [anon_sym_R_DQUOTE] = ACTIONS(2975), + [anon_sym_LR_DQUOTE] = ACTIONS(2975), + [anon_sym_uR_DQUOTE] = ACTIONS(2975), + [anon_sym_UR_DQUOTE] = ACTIONS(2975), + [anon_sym_u8R_DQUOTE] = ACTIONS(2975), + [anon_sym_co_await] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2973), + [anon_sym_requires] = ACTIONS(2973), + [sym_this] = ACTIONS(2973), }, [790] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [791] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [792] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [793] = { - [sym_identifier] = ACTIONS(2969), - [aux_sym_preproc_include_token1] = ACTIONS(2969), - [aux_sym_preproc_def_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token1] = ACTIONS(2969), - [aux_sym_preproc_if_token2] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2969), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2969), - [sym_preproc_directive] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym___based] = ACTIONS(2969), - [anon_sym___cdecl] = ACTIONS(2969), - [anon_sym___clrcall] = ACTIONS(2969), - [anon_sym___stdcall] = ACTIONS(2969), - [anon_sym___fastcall] = ACTIONS(2969), - [anon_sym___thiscall] = ACTIONS(2969), - [anon_sym___vectorcall] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_explicit] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_operator] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_namespace] = ACTIONS(2969), - [anon_sym_using] = ACTIONS(2969), - [anon_sym_static_assert] = ACTIONS(2969), - [anon_sym_concept] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [794] = { - [ts_builtin_sym_end] = ACTIONS(2951), - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_include_token1] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym___cdecl] = ACTIONS(2949), - [anon_sym___clrcall] = ACTIONS(2949), - [anon_sym___stdcall] = ACTIONS(2949), - [anon_sym___fastcall] = ACTIONS(2949), - [anon_sym___thiscall] = ACTIONS(2949), - [anon_sym___vectorcall] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym___try] = ACTIONS(2949), - [anon_sym___leave] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [sym_number_literal] = ACTIONS(2951), - [anon_sym_L_SQUOTE] = ACTIONS(2951), - [anon_sym_u_SQUOTE] = ACTIONS(2951), - [anon_sym_U_SQUOTE] = ACTIONS(2951), - [anon_sym_u8_SQUOTE] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_L_DQUOTE] = ACTIONS(2951), - [anon_sym_u_DQUOTE] = ACTIONS(2951), - [anon_sym_U_DQUOTE] = ACTIONS(2951), - [anon_sym_u8_DQUOTE] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - [anon_sym_concept] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [anon_sym_R_DQUOTE] = ACTIONS(2951), - [anon_sym_LR_DQUOTE] = ACTIONS(2951), - [anon_sym_uR_DQUOTE] = ACTIONS(2951), - [anon_sym_UR_DQUOTE] = ACTIONS(2951), - [anon_sym_u8R_DQUOTE] = ACTIONS(2951), - [anon_sym_co_await] = ACTIONS(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [sym_this] = ACTIONS(2949), - }, - [795] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [796] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [797] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [798] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [799] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym___cdecl] = ACTIONS(2144), - [anon_sym___clrcall] = ACTIONS(2144), - [anon_sym___stdcall] = ACTIONS(2144), - [anon_sym___fastcall] = ACTIONS(2144), - [anon_sym___thiscall] = ACTIONS(2144), - [anon_sym___vectorcall] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym___try] = ACTIONS(2144), - [anon_sym___leave] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2144), - [anon_sym_compl] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2144), - [anon_sym___alignof__] = ACTIONS(2144), - [anon_sym___alignof] = ACTIONS(2144), - [anon_sym__alignof] = ACTIONS(2144), - [anon_sym_alignof] = ACTIONS(2144), - [anon_sym__Alignof] = ACTIONS(2144), - [anon_sym_offsetof] = ACTIONS(2144), - [anon_sym__Generic] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym___asm__] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2142), - [anon_sym_L_SQUOTE] = ACTIONS(2142), - [anon_sym_u_SQUOTE] = ACTIONS(2142), - [anon_sym_U_SQUOTE] = ACTIONS(2142), - [anon_sym_u8_SQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_L_DQUOTE] = ACTIONS(2142), - [anon_sym_u_DQUOTE] = ACTIONS(2142), - [anon_sym_U_DQUOTE] = ACTIONS(2142), - [anon_sym_u8_DQUOTE] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [anon_sym_NULL] = ACTIONS(2144), - [anon_sym_nullptr] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_delete] = ACTIONS(2144), - [anon_sym_throw] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_concept] = ACTIONS(2144), - [anon_sym_co_return] = ACTIONS(2144), - [anon_sym_co_yield] = ACTIONS(2144), - [anon_sym_R_DQUOTE] = ACTIONS(2142), - [anon_sym_LR_DQUOTE] = ACTIONS(2142), - [anon_sym_uR_DQUOTE] = ACTIONS(2142), - [anon_sym_UR_DQUOTE] = ACTIONS(2142), - [anon_sym_u8R_DQUOTE] = ACTIONS(2142), - [anon_sym_co_await] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2144), - [anon_sym_requires] = ACTIONS(2144), - [sym_this] = ACTIONS(2144), - }, - [800] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [801] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [802] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [803] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [804] = { - [ts_builtin_sym_end] = ACTIONS(2955), - [sym_identifier] = ACTIONS(2953), - [aux_sym_preproc_include_token1] = ACTIONS(2953), - [aux_sym_preproc_def_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2953), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2953), - [sym_preproc_directive] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym___based] = ACTIONS(2953), - [anon_sym___cdecl] = ACTIONS(2953), - [anon_sym___clrcall] = ACTIONS(2953), - [anon_sym___stdcall] = ACTIONS(2953), - [anon_sym___fastcall] = ACTIONS(2953), - [anon_sym___thiscall] = ACTIONS(2953), - [anon_sym___vectorcall] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_default] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym___try] = ACTIONS(2953), - [anon_sym___leave] = ACTIONS(2953), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_compl] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2953), - [anon_sym___alignof] = ACTIONS(2953), - [anon_sym__alignof] = ACTIONS(2953), - [anon_sym_alignof] = ACTIONS(2953), - [anon_sym__Alignof] = ACTIONS(2953), - [anon_sym_offsetof] = ACTIONS(2953), - [anon_sym__Generic] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym___asm__] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2955), - [anon_sym_L_SQUOTE] = ACTIONS(2955), - [anon_sym_u_SQUOTE] = ACTIONS(2955), - [anon_sym_U_SQUOTE] = ACTIONS(2955), - [anon_sym_u8_SQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_L_DQUOTE] = ACTIONS(2955), - [anon_sym_u_DQUOTE] = ACTIONS(2955), - [anon_sym_U_DQUOTE] = ACTIONS(2955), - [anon_sym_u8_DQUOTE] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [anon_sym_NULL] = ACTIONS(2953), - [anon_sym_nullptr] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_explicit] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_operator] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_delete] = ACTIONS(2953), - [anon_sym_throw] = ACTIONS(2953), - [anon_sym_namespace] = ACTIONS(2953), - [anon_sym_using] = ACTIONS(2953), - [anon_sym_static_assert] = ACTIONS(2953), - [anon_sym_concept] = ACTIONS(2953), - [anon_sym_co_return] = ACTIONS(2953), - [anon_sym_co_yield] = ACTIONS(2953), - [anon_sym_R_DQUOTE] = ACTIONS(2955), - [anon_sym_LR_DQUOTE] = ACTIONS(2955), - [anon_sym_uR_DQUOTE] = ACTIONS(2955), - [anon_sym_UR_DQUOTE] = ACTIONS(2955), - [anon_sym_u8R_DQUOTE] = ACTIONS(2955), - [anon_sym_co_await] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_requires] = ACTIONS(2953), - [sym_this] = ACTIONS(2953), - }, - [805] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [806] = { - [sym_identifier] = ACTIONS(2973), - [aux_sym_preproc_include_token1] = ACTIONS(2973), - [aux_sym_preproc_def_token1] = ACTIONS(2973), - [aux_sym_preproc_if_token1] = ACTIONS(2973), - [aux_sym_preproc_if_token2] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2973), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2973), - [sym_preproc_directive] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2975), - [anon_sym_BANG] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym___extension__] = ACTIONS(2973), - [anon_sym_typedef] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), - [anon_sym___declspec] = ACTIONS(2973), - [anon_sym___based] = ACTIONS(2973), - [anon_sym___cdecl] = ACTIONS(2973), - [anon_sym___clrcall] = ACTIONS(2973), - [anon_sym___stdcall] = ACTIONS(2973), - [anon_sym___fastcall] = ACTIONS(2973), - [anon_sym___thiscall] = ACTIONS(2973), - [anon_sym___vectorcall] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_signed] = ACTIONS(2973), - [anon_sym_unsigned] = ACTIONS(2973), - [anon_sym_long] = ACTIONS(2973), - [anon_sym_short] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_register] = ACTIONS(2973), - [anon_sym_inline] = ACTIONS(2973), - [anon_sym___inline] = ACTIONS(2973), - [anon_sym___inline__] = ACTIONS(2973), - [anon_sym___forceinline] = ACTIONS(2973), - [anon_sym_thread_local] = ACTIONS(2973), - [anon_sym___thread] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_constexpr] = ACTIONS(2973), - [anon_sym_volatile] = ACTIONS(2973), - [anon_sym_restrict] = ACTIONS(2973), - [anon_sym___restrict__] = ACTIONS(2973), - [anon_sym__Atomic] = ACTIONS(2973), - [anon_sym__Noreturn] = ACTIONS(2973), - [anon_sym_noreturn] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [sym_primitive_type] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2973), - [anon_sym_switch] = ACTIONS(2973), - [anon_sym_case] = ACTIONS(2973), - [anon_sym_default] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym___try] = ACTIONS(2973), - [anon_sym___leave] = ACTIONS(2973), - [anon_sym_not] = ACTIONS(2973), - [anon_sym_compl] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_sizeof] = ACTIONS(2973), - [anon_sym___alignof__] = ACTIONS(2973), - [anon_sym___alignof] = ACTIONS(2973), - [anon_sym__alignof] = ACTIONS(2973), - [anon_sym_alignof] = ACTIONS(2973), - [anon_sym__Alignof] = ACTIONS(2973), - [anon_sym_offsetof] = ACTIONS(2973), - [anon_sym__Generic] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym___asm__] = ACTIONS(2973), - [sym_number_literal] = ACTIONS(2975), - [anon_sym_L_SQUOTE] = ACTIONS(2975), - [anon_sym_u_SQUOTE] = ACTIONS(2975), - [anon_sym_U_SQUOTE] = ACTIONS(2975), - [anon_sym_u8_SQUOTE] = ACTIONS(2975), - [anon_sym_SQUOTE] = ACTIONS(2975), - [anon_sym_L_DQUOTE] = ACTIONS(2975), - [anon_sym_u_DQUOTE] = ACTIONS(2975), - [anon_sym_U_DQUOTE] = ACTIONS(2975), - [anon_sym_u8_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2975), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [anon_sym_NULL] = ACTIONS(2973), - [anon_sym_nullptr] = ACTIONS(2973), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_virtual] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym_explicit] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_operator] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_throw] = ACTIONS(2973), - [anon_sym_namespace] = ACTIONS(2973), - [anon_sym_using] = ACTIONS(2973), - [anon_sym_static_assert] = ACTIONS(2973), - [anon_sym_concept] = ACTIONS(2973), - [anon_sym_co_return] = ACTIONS(2973), - [anon_sym_co_yield] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_requires] = ACTIONS(2973), - [sym_this] = ACTIONS(2973), - }, - [807] = { [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_preproc_else_in_field_declaration_list] = STATE(9216), - [sym_preproc_elif_in_field_declaration_list] = STATE(9216), + [sym_preproc_else_in_field_declaration_list] = STATE(9325), + [sym_preproc_elif_in_field_declaration_list] = STATE(9325), [sym_type_definition] = STATE(955), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6188), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6205), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym__field_declaration_list_item] = STATE(955), [sym_field_declaration] = STATE(955), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(955), - [sym_operator_cast] = STATE(7176), + [sym_operator_cast] = STATE(7192), [sym_inline_method_definition] = STATE(955), - [sym__constructor_specifiers] = STATE(2018), + [sym__constructor_specifiers] = STATE(2057), [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(8857), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), + [sym_access_specifier] = STATE(8453), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), [sym_using_declaration] = STATE(955), [sym_alias_declaration] = STATE(955), [sym_static_assert_declaration] = STATE(955), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3430), - [aux_sym_preproc_if_token2] = ACTIONS(3488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3432), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3438), - [anon_sym_typedef] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3444), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), @@ -201034,7 +199103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -201054,294 +199123,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3446), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_static_assert] = ACTIONS(3448), - }, - [808] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [809] = { - [sym_identifier] = ACTIONS(2921), - [aux_sym_preproc_include_token1] = ACTIONS(2921), - [aux_sym_preproc_def_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), - [sym_preproc_directive] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym___based] = ACTIONS(2921), - [anon_sym___cdecl] = ACTIONS(2921), - [anon_sym___clrcall] = ACTIONS(2921), - [anon_sym___stdcall] = ACTIONS(2921), - [anon_sym___fastcall] = ACTIONS(2921), - [anon_sym___thiscall] = ACTIONS(2921), - [anon_sym___vectorcall] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_RBRACE] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_case] = ACTIONS(2921), - [anon_sym_default] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym___try] = ACTIONS(2921), - [anon_sym___leave] = ACTIONS(2921), - [anon_sym_not] = ACTIONS(2921), - [anon_sym_compl] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_sizeof] = ACTIONS(2921), - [anon_sym___alignof__] = ACTIONS(2921), - [anon_sym___alignof] = ACTIONS(2921), - [anon_sym__alignof] = ACTIONS(2921), - [anon_sym_alignof] = ACTIONS(2921), - [anon_sym__Alignof] = ACTIONS(2921), - [anon_sym_offsetof] = ACTIONS(2921), - [anon_sym__Generic] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym___asm__] = ACTIONS(2921), - [sym_number_literal] = ACTIONS(2923), - [anon_sym_L_SQUOTE] = ACTIONS(2923), - [anon_sym_u_SQUOTE] = ACTIONS(2923), - [anon_sym_U_SQUOTE] = ACTIONS(2923), - [anon_sym_u8_SQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_L_DQUOTE] = ACTIONS(2923), - [anon_sym_u_DQUOTE] = ACTIONS(2923), - [anon_sym_U_DQUOTE] = ACTIONS(2923), - [anon_sym_u8_DQUOTE] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [anon_sym_NULL] = ACTIONS(2921), - [anon_sym_nullptr] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_explicit] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_namespace] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_static_assert] = ACTIONS(2921), - [anon_sym_concept] = ACTIONS(2921), - [anon_sym_co_return] = ACTIONS(2921), - [anon_sym_co_yield] = ACTIONS(2921), - [anon_sym_R_DQUOTE] = ACTIONS(2923), - [anon_sym_LR_DQUOTE] = ACTIONS(2923), - [anon_sym_uR_DQUOTE] = ACTIONS(2923), - [anon_sym_UR_DQUOTE] = ACTIONS(2923), - [anon_sym_u8R_DQUOTE] = ACTIONS(2923), - [anon_sym_co_await] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_requires] = ACTIONS(2921), - [sym_this] = ACTIONS(2921), + [anon_sym_friend] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_static_assert] = ACTIONS(3452), }, - [810] = { + [791] = { [sym_identifier] = ACTIONS(2977), [aux_sym_preproc_include_token1] = ACTIONS(2977), [aux_sym_preproc_def_token1] = ACTIONS(2977), @@ -201474,9534 +199277,6253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2977), [sym_this] = ACTIONS(2977), }, - [811] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [812] = { - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token2] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym___try] = ACTIONS(2905), - [anon_sym___leave] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [sym_number_literal] = ACTIONS(2907), - [anon_sym_L_SQUOTE] = ACTIONS(2907), - [anon_sym_u_SQUOTE] = ACTIONS(2907), - [anon_sym_U_SQUOTE] = ACTIONS(2907), - [anon_sym_u8_SQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_L_DQUOTE] = ACTIONS(2907), - [anon_sym_u_DQUOTE] = ACTIONS(2907), - [anon_sym_U_DQUOTE] = ACTIONS(2907), - [anon_sym_u8_DQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), + [792] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [anon_sym_R_DQUOTE] = ACTIONS(2907), - [anon_sym_LR_DQUOTE] = ACTIONS(2907), - [anon_sym_uR_DQUOTE] = ACTIONS(2907), - [anon_sym_UR_DQUOTE] = ACTIONS(2907), - [anon_sym_u8R_DQUOTE] = ACTIONS(2907), - [anon_sym_co_await] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [sym_this] = ACTIONS(2905), - }, - [813] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [814] = { - [sym_identifier] = ACTIONS(2901), - [aux_sym_preproc_include_token1] = ACTIONS(2901), - [aux_sym_preproc_def_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token1] = ACTIONS(2901), - [aux_sym_preproc_if_token2] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2901), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2901), - [sym_preproc_directive] = ACTIONS(2901), - [anon_sym_LPAREN2] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym___extension__] = ACTIONS(2901), - [anon_sym_typedef] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym___attribute__] = ACTIONS(2901), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), - [anon_sym___declspec] = ACTIONS(2901), - [anon_sym___based] = ACTIONS(2901), - [anon_sym___cdecl] = ACTIONS(2901), - [anon_sym___clrcall] = ACTIONS(2901), - [anon_sym___stdcall] = ACTIONS(2901), - [anon_sym___fastcall] = ACTIONS(2901), - [anon_sym___thiscall] = ACTIONS(2901), - [anon_sym___vectorcall] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2901), - [anon_sym_unsigned] = ACTIONS(2901), - [anon_sym_long] = ACTIONS(2901), - [anon_sym_short] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_register] = ACTIONS(2901), - [anon_sym_inline] = ACTIONS(2901), - [anon_sym___inline] = ACTIONS(2901), - [anon_sym___inline__] = ACTIONS(2901), - [anon_sym___forceinline] = ACTIONS(2901), - [anon_sym_thread_local] = ACTIONS(2901), - [anon_sym___thread] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_constexpr] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_restrict] = ACTIONS(2901), - [anon_sym___restrict__] = ACTIONS(2901), - [anon_sym__Atomic] = ACTIONS(2901), - [anon_sym__Noreturn] = ACTIONS(2901), - [anon_sym_noreturn] = ACTIONS(2901), - [anon_sym_mutable] = ACTIONS(2901), - [anon_sym_constinit] = ACTIONS(2901), - [anon_sym_consteval] = ACTIONS(2901), - [sym_primitive_type] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym___try] = ACTIONS(2901), - [anon_sym___leave] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2901), - [anon_sym_compl] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym___alignof__] = ACTIONS(2901), - [anon_sym___alignof] = ACTIONS(2901), - [anon_sym__alignof] = ACTIONS(2901), - [anon_sym_alignof] = ACTIONS(2901), - [anon_sym__Alignof] = ACTIONS(2901), - [anon_sym_offsetof] = ACTIONS(2901), - [anon_sym__Generic] = ACTIONS(2901), - [anon_sym_asm] = ACTIONS(2901), - [anon_sym___asm__] = ACTIONS(2901), - [sym_number_literal] = ACTIONS(2903), - [anon_sym_L_SQUOTE] = ACTIONS(2903), - [anon_sym_u_SQUOTE] = ACTIONS(2903), - [anon_sym_U_SQUOTE] = ACTIONS(2903), - [anon_sym_u8_SQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_L_DQUOTE] = ACTIONS(2903), - [anon_sym_u_DQUOTE] = ACTIONS(2903), - [anon_sym_U_DQUOTE] = ACTIONS(2903), - [anon_sym_u8_DQUOTE] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [anon_sym_NULL] = ACTIONS(2901), - [anon_sym_nullptr] = ACTIONS(2901), + [793] = { + [sym_identifier] = ACTIONS(2937), + [aux_sym_preproc_include_token1] = ACTIONS(2937), + [aux_sym_preproc_def_token1] = ACTIONS(2937), + [aux_sym_preproc_if_token1] = ACTIONS(2937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), + [sym_preproc_directive] = ACTIONS(2937), + [anon_sym_LPAREN2] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2939), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym_typedef] = ACTIONS(2937), + [anon_sym_extern] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(2937), + [anon_sym_COLON_COLON] = ACTIONS(2939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), + [anon_sym___declspec] = ACTIONS(2937), + [anon_sym___based] = ACTIONS(2937), + [anon_sym___cdecl] = ACTIONS(2937), + [anon_sym___clrcall] = ACTIONS(2937), + [anon_sym___stdcall] = ACTIONS(2937), + [anon_sym___fastcall] = ACTIONS(2937), + [anon_sym___thiscall] = ACTIONS(2937), + [anon_sym___vectorcall] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2937), + [anon_sym_unsigned] = ACTIONS(2937), + [anon_sym_long] = ACTIONS(2937), + [anon_sym_short] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_static] = ACTIONS(2937), + [anon_sym_register] = ACTIONS(2937), + [anon_sym_inline] = ACTIONS(2937), + [anon_sym___inline] = ACTIONS(2937), + [anon_sym___inline__] = ACTIONS(2937), + [anon_sym___forceinline] = ACTIONS(2937), + [anon_sym_thread_local] = ACTIONS(2937), + [anon_sym___thread] = ACTIONS(2937), + [anon_sym_const] = ACTIONS(2937), + [anon_sym_constexpr] = ACTIONS(2937), + [anon_sym_volatile] = ACTIONS(2937), + [anon_sym_restrict] = ACTIONS(2937), + [anon_sym___restrict__] = ACTIONS(2937), + [anon_sym__Atomic] = ACTIONS(2937), + [anon_sym__Noreturn] = ACTIONS(2937), + [anon_sym_noreturn] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [sym_primitive_type] = ACTIONS(2937), + [anon_sym_enum] = ACTIONS(2937), + [anon_sym_class] = ACTIONS(2937), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_else] = ACTIONS(2937), + [anon_sym_switch] = ACTIONS(2937), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_while] = ACTIONS(2937), + [anon_sym_do] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_goto] = ACTIONS(2937), + [anon_sym___try] = ACTIONS(2937), + [anon_sym___leave] = ACTIONS(2937), + [anon_sym_not] = ACTIONS(2937), + [anon_sym_compl] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2939), + [anon_sym_sizeof] = ACTIONS(2937), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2937), + [anon_sym__Generic] = ACTIONS(2937), + [anon_sym_asm] = ACTIONS(2937), + [anon_sym___asm__] = ACTIONS(2937), + [sym_number_literal] = ACTIONS(2939), + [anon_sym_L_SQUOTE] = ACTIONS(2939), + [anon_sym_u_SQUOTE] = ACTIONS(2939), + [anon_sym_U_SQUOTE] = ACTIONS(2939), + [anon_sym_u8_SQUOTE] = ACTIONS(2939), + [anon_sym_SQUOTE] = ACTIONS(2939), + [anon_sym_L_DQUOTE] = ACTIONS(2939), + [anon_sym_u_DQUOTE] = ACTIONS(2939), + [anon_sym_U_DQUOTE] = ACTIONS(2939), + [anon_sym_u8_DQUOTE] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [anon_sym_NULL] = ACTIONS(2937), + [anon_sym_nullptr] = ACTIONS(2937), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_alignas] = ACTIONS(2901), - [anon_sym_explicit] = ACTIONS(2901), - [anon_sym_typename] = ACTIONS(2901), - [anon_sym_template] = ACTIONS(2901), - [anon_sym_operator] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_static_assert] = ACTIONS(2901), - [anon_sym_concept] = ACTIONS(2901), - [anon_sym_co_return] = ACTIONS(2901), - [anon_sym_co_yield] = ACTIONS(2901), - [anon_sym_R_DQUOTE] = ACTIONS(2903), - [anon_sym_LR_DQUOTE] = ACTIONS(2903), - [anon_sym_uR_DQUOTE] = ACTIONS(2903), - [anon_sym_UR_DQUOTE] = ACTIONS(2903), - [anon_sym_u8R_DQUOTE] = ACTIONS(2903), - [anon_sym_co_await] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_requires] = ACTIONS(2901), - [sym_this] = ACTIONS(2901), - }, - [815] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [816] = { - [sym_preproc_def] = STATE(816), - [sym_preproc_function_def] = STATE(816), - [sym_preproc_call] = STATE(816), - [sym_preproc_if_in_field_declaration_list] = STATE(816), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(816), - [sym_type_definition] = STATE(816), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6173), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6781), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(816), - [sym_field_declaration] = STATE(816), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2007), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(816), - [sym_operator_cast] = STATE(7163), - [sym_inline_method_definition] = STATE(816), - [sym__constructor_specifiers] = STATE(2007), - [sym_operator_cast_definition] = STATE(816), - [sym_operator_cast_declaration] = STATE(816), - [sym_constructor_or_destructor_definition] = STATE(816), - [sym_constructor_or_destructor_declaration] = STATE(816), - [sym_friend_declaration] = STATE(816), - [sym_access_specifier] = STATE(8986), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(816), - [sym_alias_declaration] = STATE(816), - [sym_static_assert_declaration] = STATE(816), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7163), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(816), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2007), - [sym_identifier] = ACTIONS(3490), - [aux_sym_preproc_def_token1] = ACTIONS(3493), - [aux_sym_preproc_if_token1] = ACTIONS(3496), - [aux_sym_preproc_if_token2] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3501), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3501), - [aux_sym_preproc_else_token1] = ACTIONS(3499), - [aux_sym_preproc_elif_token1] = ACTIONS(3499), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3499), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3499), - [sym_preproc_directive] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(3507), - [anon_sym_TILDE] = ACTIONS(3510), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym___extension__] = ACTIONS(3522), - [anon_sym_typedef] = ACTIONS(3525), - [anon_sym_extern] = ACTIONS(3528), - [anon_sym___attribute__] = ACTIONS(3531), - [anon_sym_COLON_COLON] = ACTIONS(3534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3537), - [anon_sym___declspec] = ACTIONS(3540), - [anon_sym___based] = ACTIONS(3543), - [anon_sym_signed] = ACTIONS(3546), - [anon_sym_unsigned] = ACTIONS(3546), - [anon_sym_long] = ACTIONS(3546), - [anon_sym_short] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3549), - [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(3552), - [anon_sym_constexpr] = ACTIONS(3552), - [anon_sym_volatile] = ACTIONS(3552), - [anon_sym_restrict] = ACTIONS(3552), - [anon_sym___restrict__] = ACTIONS(3552), - [anon_sym__Atomic] = ACTIONS(3552), - [anon_sym__Noreturn] = ACTIONS(3552), - [anon_sym_noreturn] = ACTIONS(3552), - [anon_sym_mutable] = ACTIONS(3552), - [anon_sym_constinit] = ACTIONS(3552), - [anon_sym_consteval] = ACTIONS(3552), - [sym_primitive_type] = ACTIONS(3555), - [anon_sym_enum] = ACTIONS(3558), - [anon_sym_class] = ACTIONS(3561), - [anon_sym_struct] = ACTIONS(3564), - [anon_sym_union] = ACTIONS(3567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3570), - [anon_sym_decltype] = ACTIONS(3573), - [anon_sym_virtual] = ACTIONS(3576), - [anon_sym_alignas] = ACTIONS(3579), - [anon_sym_explicit] = ACTIONS(3582), - [anon_sym_typename] = ACTIONS(3585), - [anon_sym_template] = ACTIONS(3588), - [anon_sym_operator] = ACTIONS(3591), - [anon_sym_friend] = ACTIONS(3594), - [anon_sym_public] = ACTIONS(3597), - [anon_sym_private] = ACTIONS(3597), - [anon_sym_protected] = ACTIONS(3597), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3603), - }, - [817] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [818] = { - [sym_identifier] = ACTIONS(2897), - [aux_sym_preproc_include_token1] = ACTIONS(2897), - [aux_sym_preproc_def_token1] = ACTIONS(2897), - [aux_sym_preproc_if_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2897), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2897), - [sym_preproc_directive] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym___extension__] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym___attribute__] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2899), - [anon_sym___declspec] = ACTIONS(2897), - [anon_sym___based] = ACTIONS(2897), - [anon_sym___cdecl] = ACTIONS(2897), - [anon_sym___clrcall] = ACTIONS(2897), - [anon_sym___stdcall] = ACTIONS(2897), - [anon_sym___fastcall] = ACTIONS(2897), - [anon_sym___thiscall] = ACTIONS(2897), - [anon_sym___vectorcall] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2899), - [anon_sym_signed] = ACTIONS(2897), - [anon_sym_unsigned] = ACTIONS(2897), - [anon_sym_long] = ACTIONS(2897), - [anon_sym_short] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_register] = ACTIONS(2897), - [anon_sym_inline] = ACTIONS(2897), - [anon_sym___inline] = ACTIONS(2897), - [anon_sym___inline__] = ACTIONS(2897), - [anon_sym___forceinline] = ACTIONS(2897), - [anon_sym_thread_local] = ACTIONS(2897), - [anon_sym___thread] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_constexpr] = ACTIONS(2897), - [anon_sym_volatile] = ACTIONS(2897), - [anon_sym_restrict] = ACTIONS(2897), - [anon_sym___restrict__] = ACTIONS(2897), - [anon_sym__Atomic] = ACTIONS(2897), - [anon_sym__Noreturn] = ACTIONS(2897), - [anon_sym_noreturn] = ACTIONS(2897), - [anon_sym_mutable] = ACTIONS(2897), - [anon_sym_constinit] = ACTIONS(2897), - [anon_sym_consteval] = ACTIONS(2897), - [sym_primitive_type] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_goto] = ACTIONS(2897), - [anon_sym___try] = ACTIONS(2897), - [anon_sym___leave] = ACTIONS(2897), - [anon_sym_not] = ACTIONS(2897), - [anon_sym_compl] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_sizeof] = ACTIONS(2897), - [anon_sym___alignof__] = ACTIONS(2897), - [anon_sym___alignof] = ACTIONS(2897), - [anon_sym__alignof] = ACTIONS(2897), - [anon_sym_alignof] = ACTIONS(2897), - [anon_sym__Alignof] = ACTIONS(2897), - [anon_sym_offsetof] = ACTIONS(2897), - [anon_sym__Generic] = ACTIONS(2897), - [anon_sym_asm] = ACTIONS(2897), - [anon_sym___asm__] = ACTIONS(2897), - [sym_number_literal] = ACTIONS(2899), - [anon_sym_L_SQUOTE] = ACTIONS(2899), - [anon_sym_u_SQUOTE] = ACTIONS(2899), - [anon_sym_U_SQUOTE] = ACTIONS(2899), - [anon_sym_u8_SQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_L_DQUOTE] = ACTIONS(2899), - [anon_sym_u_DQUOTE] = ACTIONS(2899), - [anon_sym_U_DQUOTE] = ACTIONS(2899), - [anon_sym_u8_DQUOTE] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2897), - [anon_sym_nullptr] = ACTIONS(2897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2897), - [anon_sym_decltype] = ACTIONS(2897), - [anon_sym_virtual] = ACTIONS(2897), - [anon_sym_alignas] = ACTIONS(2897), - [anon_sym_explicit] = ACTIONS(2897), - [anon_sym_typename] = ACTIONS(2897), - [anon_sym_template] = ACTIONS(2897), - [anon_sym_operator] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_namespace] = ACTIONS(2897), - [anon_sym_using] = ACTIONS(2897), - [anon_sym_static_assert] = ACTIONS(2897), - [anon_sym_concept] = ACTIONS(2897), - [anon_sym_co_return] = ACTIONS(2897), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2899), - [anon_sym_LR_DQUOTE] = ACTIONS(2899), - [anon_sym_uR_DQUOTE] = ACTIONS(2899), - [anon_sym_UR_DQUOTE] = ACTIONS(2899), - [anon_sym_u8R_DQUOTE] = ACTIONS(2899), - [anon_sym_co_await] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_requires] = ACTIONS(2897), - [sym_this] = ACTIONS(2897), - }, - [819] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym___cdecl] = ACTIONS(2144), - [anon_sym___clrcall] = ACTIONS(2144), - [anon_sym___stdcall] = ACTIONS(2144), - [anon_sym___fastcall] = ACTIONS(2144), - [anon_sym___thiscall] = ACTIONS(2144), - [anon_sym___vectorcall] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym___try] = ACTIONS(2144), - [anon_sym___leave] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2144), - [anon_sym_compl] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2144), - [anon_sym___alignof__] = ACTIONS(2144), - [anon_sym___alignof] = ACTIONS(2144), - [anon_sym__alignof] = ACTIONS(2144), - [anon_sym_alignof] = ACTIONS(2144), - [anon_sym__Alignof] = ACTIONS(2144), - [anon_sym_offsetof] = ACTIONS(2144), - [anon_sym__Generic] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym___asm__] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2142), - [anon_sym_L_SQUOTE] = ACTIONS(2142), - [anon_sym_u_SQUOTE] = ACTIONS(2142), - [anon_sym_U_SQUOTE] = ACTIONS(2142), - [anon_sym_u8_SQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_L_DQUOTE] = ACTIONS(2142), - [anon_sym_u_DQUOTE] = ACTIONS(2142), - [anon_sym_U_DQUOTE] = ACTIONS(2142), - [anon_sym_u8_DQUOTE] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [anon_sym_NULL] = ACTIONS(2144), - [anon_sym_nullptr] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_delete] = ACTIONS(2144), - [anon_sym_throw] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_concept] = ACTIONS(2144), - [anon_sym_co_return] = ACTIONS(2144), - [anon_sym_co_yield] = ACTIONS(2144), - [anon_sym_R_DQUOTE] = ACTIONS(2142), - [anon_sym_LR_DQUOTE] = ACTIONS(2142), - [anon_sym_uR_DQUOTE] = ACTIONS(2142), - [anon_sym_UR_DQUOTE] = ACTIONS(2142), - [anon_sym_u8R_DQUOTE] = ACTIONS(2142), - [anon_sym_co_await] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2144), - [anon_sym_requires] = ACTIONS(2144), - [sym_this] = ACTIONS(2144), - }, - [820] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2937), + [anon_sym_decltype] = ACTIONS(2937), + [anon_sym_virtual] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2937), + [anon_sym_explicit] = ACTIONS(2937), + [anon_sym_typename] = ACTIONS(2937), + [anon_sym_template] = ACTIONS(2937), + [anon_sym_operator] = ACTIONS(2937), + [anon_sym_try] = ACTIONS(2937), + [anon_sym_delete] = ACTIONS(2937), + [anon_sym_throw] = ACTIONS(2937), + [anon_sym_namespace] = ACTIONS(2937), + [anon_sym_using] = ACTIONS(2937), + [anon_sym_static_assert] = ACTIONS(2937), + [anon_sym_concept] = ACTIONS(2937), + [anon_sym_co_return] = ACTIONS(2937), + [anon_sym_co_yield] = ACTIONS(2937), + [anon_sym_R_DQUOTE] = ACTIONS(2939), + [anon_sym_LR_DQUOTE] = ACTIONS(2939), + [anon_sym_uR_DQUOTE] = ACTIONS(2939), + [anon_sym_UR_DQUOTE] = ACTIONS(2939), + [anon_sym_u8R_DQUOTE] = ACTIONS(2939), + [anon_sym_co_await] = ACTIONS(2937), + [anon_sym_new] = ACTIONS(2937), + [anon_sym_requires] = ACTIONS(2937), + [sym_this] = ACTIONS(2937), }, - [821] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [794] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [822] = { - [ts_builtin_sym_end] = ACTIONS(2979), - [sym_identifier] = ACTIONS(2977), - [aux_sym_preproc_include_token1] = ACTIONS(2977), - [aux_sym_preproc_def_token1] = ACTIONS(2977), - [aux_sym_preproc_if_token1] = ACTIONS(2977), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2977), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2977), - [sym_preproc_directive] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2979), - [anon_sym_BANG] = ACTIONS(2979), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym___extension__] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2979), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), - [anon_sym___declspec] = ACTIONS(2977), - [anon_sym___based] = ACTIONS(2977), - [anon_sym___cdecl] = ACTIONS(2977), - [anon_sym___clrcall] = ACTIONS(2977), - [anon_sym___stdcall] = ACTIONS(2977), - [anon_sym___fastcall] = ACTIONS(2977), - [anon_sym___thiscall] = ACTIONS(2977), - [anon_sym___vectorcall] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_signed] = ACTIONS(2977), - [anon_sym_unsigned] = ACTIONS(2977), - [anon_sym_long] = ACTIONS(2977), - [anon_sym_short] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_register] = ACTIONS(2977), - [anon_sym_inline] = ACTIONS(2977), - [anon_sym___inline] = ACTIONS(2977), - [anon_sym___inline__] = ACTIONS(2977), - [anon_sym___forceinline] = ACTIONS(2977), - [anon_sym_thread_local] = ACTIONS(2977), - [anon_sym___thread] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_constexpr] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_restrict] = ACTIONS(2977), - [anon_sym___restrict__] = ACTIONS(2977), - [anon_sym__Atomic] = ACTIONS(2977), - [anon_sym__Noreturn] = ACTIONS(2977), - [anon_sym_noreturn] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [sym_primitive_type] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_switch] = ACTIONS(2977), - [anon_sym_case] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym___try] = ACTIONS(2977), - [anon_sym___leave] = ACTIONS(2977), - [anon_sym_not] = ACTIONS(2977), - [anon_sym_compl] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_sizeof] = ACTIONS(2977), - [anon_sym___alignof__] = ACTIONS(2977), - [anon_sym___alignof] = ACTIONS(2977), - [anon_sym__alignof] = ACTIONS(2977), - [anon_sym_alignof] = ACTIONS(2977), - [anon_sym__Alignof] = ACTIONS(2977), - [anon_sym_offsetof] = ACTIONS(2977), - [anon_sym__Generic] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), - [anon_sym___asm__] = ACTIONS(2977), - [sym_number_literal] = ACTIONS(2979), - [anon_sym_L_SQUOTE] = ACTIONS(2979), - [anon_sym_u_SQUOTE] = ACTIONS(2979), - [anon_sym_U_SQUOTE] = ACTIONS(2979), - [anon_sym_u8_SQUOTE] = ACTIONS(2979), - [anon_sym_SQUOTE] = ACTIONS(2979), - [anon_sym_L_DQUOTE] = ACTIONS(2979), - [anon_sym_u_DQUOTE] = ACTIONS(2979), - [anon_sym_U_DQUOTE] = ACTIONS(2979), - [anon_sym_u8_DQUOTE] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [anon_sym_NULL] = ACTIONS(2977), - [anon_sym_nullptr] = ACTIONS(2977), + [795] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym_explicit] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_operator] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_delete] = ACTIONS(2977), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_namespace] = ACTIONS(2977), - [anon_sym_using] = ACTIONS(2977), - [anon_sym_static_assert] = ACTIONS(2977), - [anon_sym_concept] = ACTIONS(2977), - [anon_sym_co_return] = ACTIONS(2977), - [anon_sym_co_yield] = ACTIONS(2977), - [anon_sym_R_DQUOTE] = ACTIONS(2979), - [anon_sym_LR_DQUOTE] = ACTIONS(2979), - [anon_sym_uR_DQUOTE] = ACTIONS(2979), - [anon_sym_UR_DQUOTE] = ACTIONS(2979), - [anon_sym_u8R_DQUOTE] = ACTIONS(2979), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_requires] = ACTIONS(2977), - [sym_this] = ACTIONS(2977), - }, - [823] = { - [ts_builtin_sym_end] = ACTIONS(2887), - [sym_identifier] = ACTIONS(2885), - [aux_sym_preproc_include_token1] = ACTIONS(2885), - [aux_sym_preproc_def_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2885), - [sym_preproc_directive] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym___based] = ACTIONS(2885), - [anon_sym___cdecl] = ACTIONS(2885), - [anon_sym___clrcall] = ACTIONS(2885), - [anon_sym___stdcall] = ACTIONS(2885), - [anon_sym___fastcall] = ACTIONS(2885), - [anon_sym___thiscall] = ACTIONS(2885), - [anon_sym___vectorcall] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym___try] = ACTIONS(2885), - [anon_sym___leave] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2885), - [anon_sym_compl] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_sizeof] = ACTIONS(2885), - [anon_sym___alignof__] = ACTIONS(2885), - [anon_sym___alignof] = ACTIONS(2885), - [anon_sym__alignof] = ACTIONS(2885), - [anon_sym_alignof] = ACTIONS(2885), - [anon_sym__Alignof] = ACTIONS(2885), - [anon_sym_offsetof] = ACTIONS(2885), - [anon_sym__Generic] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym___asm__] = ACTIONS(2885), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_L_SQUOTE] = ACTIONS(2887), - [anon_sym_u_SQUOTE] = ACTIONS(2887), - [anon_sym_U_SQUOTE] = ACTIONS(2887), - [anon_sym_u8_SQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_L_DQUOTE] = ACTIONS(2887), - [anon_sym_u_DQUOTE] = ACTIONS(2887), - [anon_sym_U_DQUOTE] = ACTIONS(2887), - [anon_sym_u8_DQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [anon_sym_NULL] = ACTIONS(2885), - [anon_sym_nullptr] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_explicit] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_operator] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_static_assert] = ACTIONS(2885), - [anon_sym_concept] = ACTIONS(2885), - [anon_sym_co_return] = ACTIONS(2885), - [anon_sym_co_yield] = ACTIONS(2885), - [anon_sym_R_DQUOTE] = ACTIONS(2887), - [anon_sym_LR_DQUOTE] = ACTIONS(2887), - [anon_sym_uR_DQUOTE] = ACTIONS(2887), - [anon_sym_UR_DQUOTE] = ACTIONS(2887), - [anon_sym_u8R_DQUOTE] = ACTIONS(2887), - [anon_sym_co_await] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_requires] = ACTIONS(2885), - [sym_this] = ACTIONS(2885), - }, - [824] = { - [sym_identifier] = ACTIONS(2881), - [aux_sym_preproc_include_token1] = ACTIONS(2881), - [aux_sym_preproc_def_token1] = ACTIONS(2881), - [aux_sym_preproc_if_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2881), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2881), - [sym_preproc_directive] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym___based] = ACTIONS(2881), - [anon_sym___cdecl] = ACTIONS(2881), - [anon_sym___clrcall] = ACTIONS(2881), - [anon_sym___stdcall] = ACTIONS(2881), - [anon_sym___fastcall] = ACTIONS(2881), - [anon_sym___thiscall] = ACTIONS(2881), - [anon_sym___vectorcall] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_RBRACE] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym___try] = ACTIONS(2881), - [anon_sym___leave] = ACTIONS(2881), - [anon_sym_not] = ACTIONS(2881), - [anon_sym_compl] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_sizeof] = ACTIONS(2881), - [anon_sym___alignof__] = ACTIONS(2881), - [anon_sym___alignof] = ACTIONS(2881), - [anon_sym__alignof] = ACTIONS(2881), - [anon_sym_alignof] = ACTIONS(2881), - [anon_sym__Alignof] = ACTIONS(2881), - [anon_sym_offsetof] = ACTIONS(2881), - [anon_sym__Generic] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - [anon_sym___asm__] = ACTIONS(2881), - [sym_number_literal] = ACTIONS(2883), - [anon_sym_L_SQUOTE] = ACTIONS(2883), - [anon_sym_u_SQUOTE] = ACTIONS(2883), - [anon_sym_U_SQUOTE] = ACTIONS(2883), - [anon_sym_u8_SQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_L_DQUOTE] = ACTIONS(2883), - [anon_sym_u_DQUOTE] = ACTIONS(2883), - [anon_sym_U_DQUOTE] = ACTIONS(2883), - [anon_sym_u8_DQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [anon_sym_NULL] = ACTIONS(2881), - [anon_sym_nullptr] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_explicit] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_operator] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_static_assert] = ACTIONS(2881), - [anon_sym_concept] = ACTIONS(2881), - [anon_sym_co_return] = ACTIONS(2881), - [anon_sym_co_yield] = ACTIONS(2881), - [anon_sym_R_DQUOTE] = ACTIONS(2883), - [anon_sym_LR_DQUOTE] = ACTIONS(2883), - [anon_sym_uR_DQUOTE] = ACTIONS(2883), - [anon_sym_UR_DQUOTE] = ACTIONS(2883), - [anon_sym_u8R_DQUOTE] = ACTIONS(2883), - [anon_sym_co_await] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_requires] = ACTIONS(2881), - [sym_this] = ACTIONS(2881), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [825] = { - [ts_builtin_sym_end] = ACTIONS(2923), - [sym_identifier] = ACTIONS(2921), - [aux_sym_preproc_include_token1] = ACTIONS(2921), - [aux_sym_preproc_def_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), - [sym_preproc_directive] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym___based] = ACTIONS(2921), - [anon_sym___cdecl] = ACTIONS(2921), - [anon_sym___clrcall] = ACTIONS(2921), - [anon_sym___stdcall] = ACTIONS(2921), - [anon_sym___fastcall] = ACTIONS(2921), - [anon_sym___thiscall] = ACTIONS(2921), - [anon_sym___vectorcall] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_case] = ACTIONS(2921), - [anon_sym_default] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym___try] = ACTIONS(2921), - [anon_sym___leave] = ACTIONS(2921), - [anon_sym_not] = ACTIONS(2921), - [anon_sym_compl] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_sizeof] = ACTIONS(2921), - [anon_sym___alignof__] = ACTIONS(2921), - [anon_sym___alignof] = ACTIONS(2921), - [anon_sym__alignof] = ACTIONS(2921), - [anon_sym_alignof] = ACTIONS(2921), - [anon_sym__Alignof] = ACTIONS(2921), - [anon_sym_offsetof] = ACTIONS(2921), - [anon_sym__Generic] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym___asm__] = ACTIONS(2921), - [sym_number_literal] = ACTIONS(2923), - [anon_sym_L_SQUOTE] = ACTIONS(2923), - [anon_sym_u_SQUOTE] = ACTIONS(2923), - [anon_sym_U_SQUOTE] = ACTIONS(2923), - [anon_sym_u8_SQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_L_DQUOTE] = ACTIONS(2923), - [anon_sym_u_DQUOTE] = ACTIONS(2923), - [anon_sym_U_DQUOTE] = ACTIONS(2923), - [anon_sym_u8_DQUOTE] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [anon_sym_NULL] = ACTIONS(2921), - [anon_sym_nullptr] = ACTIONS(2921), + [796] = { + [sym_identifier] = ACTIONS(2937), + [aux_sym_preproc_include_token1] = ACTIONS(2937), + [aux_sym_preproc_def_token1] = ACTIONS(2937), + [aux_sym_preproc_if_token1] = ACTIONS(2937), + [aux_sym_preproc_if_token2] = ACTIONS(2937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2937), + [sym_preproc_directive] = ACTIONS(2937), + [anon_sym_LPAREN2] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2939), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym_typedef] = ACTIONS(2937), + [anon_sym_extern] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(2937), + [anon_sym_COLON_COLON] = ACTIONS(2939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), + [anon_sym___declspec] = ACTIONS(2937), + [anon_sym___based] = ACTIONS(2937), + [anon_sym___cdecl] = ACTIONS(2937), + [anon_sym___clrcall] = ACTIONS(2937), + [anon_sym___stdcall] = ACTIONS(2937), + [anon_sym___fastcall] = ACTIONS(2937), + [anon_sym___thiscall] = ACTIONS(2937), + [anon_sym___vectorcall] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2937), + [anon_sym_unsigned] = ACTIONS(2937), + [anon_sym_long] = ACTIONS(2937), + [anon_sym_short] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_static] = ACTIONS(2937), + [anon_sym_register] = ACTIONS(2937), + [anon_sym_inline] = ACTIONS(2937), + [anon_sym___inline] = ACTIONS(2937), + [anon_sym___inline__] = ACTIONS(2937), + [anon_sym___forceinline] = ACTIONS(2937), + [anon_sym_thread_local] = ACTIONS(2937), + [anon_sym___thread] = ACTIONS(2937), + [anon_sym_const] = ACTIONS(2937), + [anon_sym_constexpr] = ACTIONS(2937), + [anon_sym_volatile] = ACTIONS(2937), + [anon_sym_restrict] = ACTIONS(2937), + [anon_sym___restrict__] = ACTIONS(2937), + [anon_sym__Atomic] = ACTIONS(2937), + [anon_sym__Noreturn] = ACTIONS(2937), + [anon_sym_noreturn] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [sym_primitive_type] = ACTIONS(2937), + [anon_sym_enum] = ACTIONS(2937), + [anon_sym_class] = ACTIONS(2937), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_else] = ACTIONS(2937), + [anon_sym_switch] = ACTIONS(2937), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_while] = ACTIONS(2937), + [anon_sym_do] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_goto] = ACTIONS(2937), + [anon_sym___try] = ACTIONS(2937), + [anon_sym___leave] = ACTIONS(2937), + [anon_sym_not] = ACTIONS(2937), + [anon_sym_compl] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2939), + [anon_sym_sizeof] = ACTIONS(2937), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2937), + [anon_sym__Generic] = ACTIONS(2937), + [anon_sym_asm] = ACTIONS(2937), + [anon_sym___asm__] = ACTIONS(2937), + [sym_number_literal] = ACTIONS(2939), + [anon_sym_L_SQUOTE] = ACTIONS(2939), + [anon_sym_u_SQUOTE] = ACTIONS(2939), + [anon_sym_U_SQUOTE] = ACTIONS(2939), + [anon_sym_u8_SQUOTE] = ACTIONS(2939), + [anon_sym_SQUOTE] = ACTIONS(2939), + [anon_sym_L_DQUOTE] = ACTIONS(2939), + [anon_sym_u_DQUOTE] = ACTIONS(2939), + [anon_sym_U_DQUOTE] = ACTIONS(2939), + [anon_sym_u8_DQUOTE] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [anon_sym_NULL] = ACTIONS(2937), + [anon_sym_nullptr] = ACTIONS(2937), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_explicit] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_namespace] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_static_assert] = ACTIONS(2921), - [anon_sym_concept] = ACTIONS(2921), - [anon_sym_co_return] = ACTIONS(2921), - [anon_sym_co_yield] = ACTIONS(2921), - [anon_sym_R_DQUOTE] = ACTIONS(2923), - [anon_sym_LR_DQUOTE] = ACTIONS(2923), - [anon_sym_uR_DQUOTE] = ACTIONS(2923), - [anon_sym_UR_DQUOTE] = ACTIONS(2923), - [anon_sym_u8R_DQUOTE] = ACTIONS(2923), - [anon_sym_co_await] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_requires] = ACTIONS(2921), - [sym_this] = ACTIONS(2921), + [sym_auto] = ACTIONS(2937), + [anon_sym_decltype] = ACTIONS(2937), + [anon_sym_virtual] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2937), + [anon_sym_explicit] = ACTIONS(2937), + [anon_sym_typename] = ACTIONS(2937), + [anon_sym_template] = ACTIONS(2937), + [anon_sym_operator] = ACTIONS(2937), + [anon_sym_try] = ACTIONS(2937), + [anon_sym_delete] = ACTIONS(2937), + [anon_sym_throw] = ACTIONS(2937), + [anon_sym_namespace] = ACTIONS(2937), + [anon_sym_using] = ACTIONS(2937), + [anon_sym_static_assert] = ACTIONS(2937), + [anon_sym_concept] = ACTIONS(2937), + [anon_sym_co_return] = ACTIONS(2937), + [anon_sym_co_yield] = ACTIONS(2937), + [anon_sym_R_DQUOTE] = ACTIONS(2939), + [anon_sym_LR_DQUOTE] = ACTIONS(2939), + [anon_sym_uR_DQUOTE] = ACTIONS(2939), + [anon_sym_UR_DQUOTE] = ACTIONS(2939), + [anon_sym_u8R_DQUOTE] = ACTIONS(2939), + [anon_sym_co_await] = ACTIONS(2937), + [anon_sym_new] = ACTIONS(2937), + [anon_sym_requires] = ACTIONS(2937), + [sym_this] = ACTIONS(2937), }, - [826] = { - [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_preproc_else_in_field_declaration_list] = STATE(8759), - [sym_preproc_elif_in_field_declaration_list] = STATE(8759), - [sym_type_definition] = STATE(955), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6188), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(955), - [sym_field_declaration] = STATE(955), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(955), - [sym_operator_cast] = STATE(7176), - [sym_inline_method_definition] = STATE(955), - [sym__constructor_specifiers] = STATE(2018), - [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(8857), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(955), - [sym_alias_declaration] = STATE(955), - [sym_static_assert_declaration] = STATE(955), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3430), - [aux_sym_preproc_if_token2] = ACTIONS(3606), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3438), - [anon_sym_typedef] = ACTIONS(3440), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [797] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3442), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_static_assert] = ACTIONS(3448), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [827] = { - [sym_preproc_def] = STATE(826), - [sym_preproc_function_def] = STATE(826), - [sym_preproc_call] = STATE(826), - [sym_preproc_if_in_field_declaration_list] = STATE(826), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(826), - [sym_preproc_else_in_field_declaration_list] = STATE(8768), - [sym_preproc_elif_in_field_declaration_list] = STATE(8768), - [sym_type_definition] = STATE(826), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6188), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(826), - [sym_field_declaration] = STATE(826), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(826), - [sym_operator_cast] = STATE(7176), - [sym_inline_method_definition] = STATE(826), - [sym__constructor_specifiers] = STATE(2018), - [sym_operator_cast_definition] = STATE(826), - [sym_operator_cast_declaration] = STATE(826), - [sym_constructor_or_destructor_definition] = STATE(826), - [sym_constructor_or_destructor_declaration] = STATE(826), - [sym_friend_declaration] = STATE(826), - [sym_access_specifier] = STATE(8857), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(826), - [sym_alias_declaration] = STATE(826), - [sym_static_assert_declaration] = STATE(826), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(826), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3430), - [aux_sym_preproc_if_token2] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3434), - [aux_sym_preproc_else_token1] = ACTIONS(3010), - [aux_sym_preproc_elif_token1] = ACTIONS(3012), - [sym_preproc_directive] = ACTIONS(3436), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3438), - [anon_sym_typedef] = ACTIONS(3440), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [798] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3442), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_static_assert] = ACTIONS(3448), - }, - [828] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym___cdecl] = ACTIONS(2144), - [anon_sym___clrcall] = ACTIONS(2144), - [anon_sym___stdcall] = ACTIONS(2144), - [anon_sym___fastcall] = ACTIONS(2144), - [anon_sym___thiscall] = ACTIONS(2144), - [anon_sym___vectorcall] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym___try] = ACTIONS(2144), - [anon_sym___leave] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2144), - [anon_sym_compl] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2144), - [anon_sym___alignof__] = ACTIONS(2144), - [anon_sym___alignof] = ACTIONS(2144), - [anon_sym__alignof] = ACTIONS(2144), - [anon_sym_alignof] = ACTIONS(2144), - [anon_sym__Alignof] = ACTIONS(2144), - [anon_sym_offsetof] = ACTIONS(2144), - [anon_sym__Generic] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym___asm__] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2142), - [anon_sym_L_SQUOTE] = ACTIONS(2142), - [anon_sym_u_SQUOTE] = ACTIONS(2142), - [anon_sym_U_SQUOTE] = ACTIONS(2142), - [anon_sym_u8_SQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_L_DQUOTE] = ACTIONS(2142), - [anon_sym_u_DQUOTE] = ACTIONS(2142), - [anon_sym_U_DQUOTE] = ACTIONS(2142), - [anon_sym_u8_DQUOTE] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [anon_sym_NULL] = ACTIONS(2144), - [anon_sym_nullptr] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_delete] = ACTIONS(2144), - [anon_sym_throw] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_concept] = ACTIONS(2144), - [anon_sym_co_return] = ACTIONS(2144), - [anon_sym_co_yield] = ACTIONS(2144), - [anon_sym_R_DQUOTE] = ACTIONS(2142), - [anon_sym_LR_DQUOTE] = ACTIONS(2142), - [anon_sym_uR_DQUOTE] = ACTIONS(2142), - [anon_sym_UR_DQUOTE] = ACTIONS(2142), - [anon_sym_u8R_DQUOTE] = ACTIONS(2142), - [anon_sym_co_await] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2144), - [anon_sym_requires] = ACTIONS(2144), - [sym_this] = ACTIONS(2144), - }, - [829] = { - [sym_identifier] = ACTIONS(2859), - [aux_sym_preproc_include_token1] = ACTIONS(2859), - [aux_sym_preproc_def_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token1] = ACTIONS(2859), - [aux_sym_preproc_if_token2] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2859), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2859), - [sym_preproc_directive] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym___based] = ACTIONS(2859), - [anon_sym___cdecl] = ACTIONS(2859), - [anon_sym___clrcall] = ACTIONS(2859), - [anon_sym___stdcall] = ACTIONS(2859), - [anon_sym___fastcall] = ACTIONS(2859), - [anon_sym___thiscall] = ACTIONS(2859), - [anon_sym___vectorcall] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_explicit] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_operator] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_namespace] = ACTIONS(2859), - [anon_sym_using] = ACTIONS(2859), - [anon_sym_static_assert] = ACTIONS(2859), - [anon_sym_concept] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [830] = { - [sym_identifier] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token2] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym___extension__] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym___attribute__] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym___declspec] = ACTIONS(3152), - [anon_sym___based] = ACTIONS(3152), - [anon_sym___cdecl] = ACTIONS(3152), - [anon_sym___clrcall] = ACTIONS(3152), - [anon_sym___stdcall] = ACTIONS(3152), - [anon_sym___fastcall] = ACTIONS(3152), - [anon_sym___thiscall] = ACTIONS(3152), - [anon_sym___vectorcall] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym___inline] = ACTIONS(3152), - [anon_sym___inline__] = ACTIONS(3152), - [anon_sym___forceinline] = ACTIONS(3152), - [anon_sym_thread_local] = ACTIONS(3152), - [anon_sym___thread] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_restrict] = ACTIONS(3152), - [anon_sym___restrict__] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [anon_sym__Noreturn] = ACTIONS(3152), - [anon_sym_noreturn] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [anon_sym_constinit] = ACTIONS(3152), - [anon_sym_consteval] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(3152), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [anon_sym___try] = ACTIONS(3152), - [anon_sym___leave] = ACTIONS(3152), - [anon_sym_not] = ACTIONS(3152), - [anon_sym_compl] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym___alignof__] = ACTIONS(3152), - [anon_sym___alignof] = ACTIONS(3152), - [anon_sym__alignof] = ACTIONS(3152), - [anon_sym_alignof] = ACTIONS(3152), - [anon_sym__Alignof] = ACTIONS(3152), - [anon_sym_offsetof] = ACTIONS(3152), - [anon_sym__Generic] = ACTIONS(3152), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3154), - [anon_sym_u_SQUOTE] = ACTIONS(3154), - [anon_sym_U_SQUOTE] = ACTIONS(3154), - [anon_sym_u8_SQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_L_DQUOTE] = ACTIONS(3154), - [anon_sym_u_DQUOTE] = ACTIONS(3154), - [anon_sym_U_DQUOTE] = ACTIONS(3154), - [anon_sym_u8_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [anon_sym_NULL] = ACTIONS(3152), - [anon_sym_nullptr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3152), - [anon_sym_decltype] = ACTIONS(3152), - [anon_sym_virtual] = ACTIONS(3152), - [anon_sym_alignas] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_static_assert] = ACTIONS(3152), - [anon_sym_concept] = ACTIONS(3152), - [anon_sym_co_return] = ACTIONS(3152), - [anon_sym_co_yield] = ACTIONS(3152), - [anon_sym_R_DQUOTE] = ACTIONS(3154), - [anon_sym_LR_DQUOTE] = ACTIONS(3154), - [anon_sym_uR_DQUOTE] = ACTIONS(3154), - [anon_sym_UR_DQUOTE] = ACTIONS(3154), - [anon_sym_u8R_DQUOTE] = ACTIONS(3154), - [anon_sym_co_await] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_requires] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [831] = { - [sym_identifier] = ACTIONS(3116), - [aux_sym_preproc_include_token1] = ACTIONS(3116), - [aux_sym_preproc_def_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token1] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), - [sym_preproc_directive] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3116), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym___extension__] = ACTIONS(3116), - [anon_sym_typedef] = ACTIONS(3116), - [anon_sym_extern] = ACTIONS(3116), - [anon_sym___attribute__] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = ACTIONS(3116), - [anon_sym___based] = ACTIONS(3116), - [anon_sym___cdecl] = ACTIONS(3116), - [anon_sym___clrcall] = ACTIONS(3116), - [anon_sym___stdcall] = ACTIONS(3116), - [anon_sym___fastcall] = ACTIONS(3116), - [anon_sym___thiscall] = ACTIONS(3116), - [anon_sym___vectorcall] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_signed] = ACTIONS(3116), - [anon_sym_unsigned] = ACTIONS(3116), - [anon_sym_long] = ACTIONS(3116), - [anon_sym_short] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_register] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym___inline] = ACTIONS(3116), - [anon_sym___inline__] = ACTIONS(3116), - [anon_sym___forceinline] = ACTIONS(3116), - [anon_sym_thread_local] = ACTIONS(3116), - [anon_sym___thread] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_constexpr] = ACTIONS(3116), - [anon_sym_volatile] = ACTIONS(3116), - [anon_sym_restrict] = ACTIONS(3116), - [anon_sym___restrict__] = ACTIONS(3116), - [anon_sym__Atomic] = ACTIONS(3116), - [anon_sym__Noreturn] = ACTIONS(3116), - [anon_sym_noreturn] = ACTIONS(3116), - [anon_sym_mutable] = ACTIONS(3116), - [anon_sym_constinit] = ACTIONS(3116), - [anon_sym_consteval] = ACTIONS(3116), - [sym_primitive_type] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3116), - [anon_sym_union] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_switch] = ACTIONS(3116), - [anon_sym_case] = ACTIONS(3116), - [anon_sym_default] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_do] = ACTIONS(3116), - [anon_sym_for] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_goto] = ACTIONS(3116), - [anon_sym___try] = ACTIONS(3116), - [anon_sym___leave] = ACTIONS(3116), - [anon_sym_not] = ACTIONS(3116), - [anon_sym_compl] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_sizeof] = ACTIONS(3116), - [anon_sym___alignof__] = ACTIONS(3116), - [anon_sym___alignof] = ACTIONS(3116), - [anon_sym__alignof] = ACTIONS(3116), - [anon_sym_alignof] = ACTIONS(3116), - [anon_sym__Alignof] = ACTIONS(3116), - [anon_sym_offsetof] = ACTIONS(3116), - [anon_sym__Generic] = ACTIONS(3116), - [anon_sym_asm] = ACTIONS(3116), - [anon_sym___asm__] = ACTIONS(3116), - [sym_number_literal] = ACTIONS(3118), - [anon_sym_L_SQUOTE] = ACTIONS(3118), - [anon_sym_u_SQUOTE] = ACTIONS(3118), - [anon_sym_U_SQUOTE] = ACTIONS(3118), - [anon_sym_u8_SQUOTE] = ACTIONS(3118), - [anon_sym_SQUOTE] = ACTIONS(3118), - [anon_sym_L_DQUOTE] = ACTIONS(3118), - [anon_sym_u_DQUOTE] = ACTIONS(3118), - [anon_sym_U_DQUOTE] = ACTIONS(3118), - [anon_sym_u8_DQUOTE] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym_true] = ACTIONS(3116), - [sym_false] = ACTIONS(3116), - [anon_sym_NULL] = ACTIONS(3116), - [anon_sym_nullptr] = ACTIONS(3116), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3116), - [anon_sym_decltype] = ACTIONS(3116), - [anon_sym_virtual] = ACTIONS(3116), - [anon_sym_alignas] = ACTIONS(3116), - [anon_sym_explicit] = ACTIONS(3116), - [anon_sym_typename] = ACTIONS(3116), - [anon_sym_template] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_delete] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_namespace] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3116), - [anon_sym_static_assert] = ACTIONS(3116), - [anon_sym_concept] = ACTIONS(3116), - [anon_sym_co_return] = ACTIONS(3116), - [anon_sym_co_yield] = ACTIONS(3116), - [anon_sym_R_DQUOTE] = ACTIONS(3118), - [anon_sym_LR_DQUOTE] = ACTIONS(3118), - [anon_sym_uR_DQUOTE] = ACTIONS(3118), - [anon_sym_UR_DQUOTE] = ACTIONS(3118), - [anon_sym_u8R_DQUOTE] = ACTIONS(3118), - [anon_sym_co_await] = ACTIONS(3116), - [anon_sym_new] = ACTIONS(3116), - [anon_sym_requires] = ACTIONS(3116), - [sym_this] = ACTIONS(3116), + [799] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [832] = { - [sym_identifier] = ACTIONS(3306), - [aux_sym_preproc_include_token1] = ACTIONS(3306), - [aux_sym_preproc_def_token1] = ACTIONS(3306), - [aux_sym_preproc_if_token1] = ACTIONS(3306), - [aux_sym_preproc_if_token2] = ACTIONS(3306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3306), - [sym_preproc_directive] = ACTIONS(3306), - [anon_sym_LPAREN2] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_STAR] = ACTIONS(3308), - [anon_sym_AMP_AMP] = ACTIONS(3308), - [anon_sym_AMP] = ACTIONS(3306), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym___extension__] = ACTIONS(3306), - [anon_sym_typedef] = ACTIONS(3306), - [anon_sym_extern] = ACTIONS(3306), - [anon_sym___attribute__] = ACTIONS(3306), - [anon_sym_COLON_COLON] = ACTIONS(3308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3308), - [anon_sym___declspec] = ACTIONS(3306), - [anon_sym___based] = ACTIONS(3306), - [anon_sym___cdecl] = ACTIONS(3306), - [anon_sym___clrcall] = ACTIONS(3306), - [anon_sym___stdcall] = ACTIONS(3306), - [anon_sym___fastcall] = ACTIONS(3306), - [anon_sym___thiscall] = ACTIONS(3306), - [anon_sym___vectorcall] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_signed] = ACTIONS(3306), - [anon_sym_unsigned] = ACTIONS(3306), - [anon_sym_long] = ACTIONS(3306), - [anon_sym_short] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_register] = ACTIONS(3306), - [anon_sym_inline] = ACTIONS(3306), - [anon_sym___inline] = ACTIONS(3306), - [anon_sym___inline__] = ACTIONS(3306), - [anon_sym___forceinline] = ACTIONS(3306), - [anon_sym_thread_local] = ACTIONS(3306), - [anon_sym___thread] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_constexpr] = ACTIONS(3306), - [anon_sym_volatile] = ACTIONS(3306), - [anon_sym_restrict] = ACTIONS(3306), - [anon_sym___restrict__] = ACTIONS(3306), - [anon_sym__Atomic] = ACTIONS(3306), - [anon_sym__Noreturn] = ACTIONS(3306), - [anon_sym_noreturn] = ACTIONS(3306), - [anon_sym_mutable] = ACTIONS(3306), - [anon_sym_constinit] = ACTIONS(3306), - [anon_sym_consteval] = ACTIONS(3306), - [sym_primitive_type] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), - [anon_sym_class] = ACTIONS(3306), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_union] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_case] = ACTIONS(3306), - [anon_sym_default] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_goto] = ACTIONS(3306), - [anon_sym___try] = ACTIONS(3306), - [anon_sym___leave] = ACTIONS(3306), - [anon_sym_not] = ACTIONS(3306), - [anon_sym_compl] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_sizeof] = ACTIONS(3306), - [anon_sym___alignof__] = ACTIONS(3306), - [anon_sym___alignof] = ACTIONS(3306), - [anon_sym__alignof] = ACTIONS(3306), - [anon_sym_alignof] = ACTIONS(3306), - [anon_sym__Alignof] = ACTIONS(3306), - [anon_sym_offsetof] = ACTIONS(3306), - [anon_sym__Generic] = ACTIONS(3306), - [anon_sym_asm] = ACTIONS(3306), - [anon_sym___asm__] = ACTIONS(3306), - [sym_number_literal] = ACTIONS(3308), - [anon_sym_L_SQUOTE] = ACTIONS(3308), - [anon_sym_u_SQUOTE] = ACTIONS(3308), - [anon_sym_U_SQUOTE] = ACTIONS(3308), - [anon_sym_u8_SQUOTE] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(3308), - [anon_sym_L_DQUOTE] = ACTIONS(3308), - [anon_sym_u_DQUOTE] = ACTIONS(3308), - [anon_sym_U_DQUOTE] = ACTIONS(3308), - [anon_sym_u8_DQUOTE] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [anon_sym_NULL] = ACTIONS(3306), - [anon_sym_nullptr] = ACTIONS(3306), + [800] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3306), - [anon_sym_decltype] = ACTIONS(3306), - [anon_sym_virtual] = ACTIONS(3306), - [anon_sym_alignas] = ACTIONS(3306), - [anon_sym_explicit] = ACTIONS(3306), - [anon_sym_typename] = ACTIONS(3306), - [anon_sym_template] = ACTIONS(3306), - [anon_sym_operator] = ACTIONS(3306), - [anon_sym_try] = ACTIONS(3306), - [anon_sym_delete] = ACTIONS(3306), - [anon_sym_throw] = ACTIONS(3306), - [anon_sym_namespace] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3306), - [anon_sym_static_assert] = ACTIONS(3306), - [anon_sym_concept] = ACTIONS(3306), - [anon_sym_co_return] = ACTIONS(3306), - [anon_sym_co_yield] = ACTIONS(3306), - [anon_sym_R_DQUOTE] = ACTIONS(3308), - [anon_sym_LR_DQUOTE] = ACTIONS(3308), - [anon_sym_uR_DQUOTE] = ACTIONS(3308), - [anon_sym_UR_DQUOTE] = ACTIONS(3308), - [anon_sym_u8R_DQUOTE] = ACTIONS(3308), - [anon_sym_co_await] = ACTIONS(3306), - [anon_sym_new] = ACTIONS(3306), - [anon_sym_requires] = ACTIONS(3306), - [sym_this] = ACTIONS(3306), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [833] = { - [sym_identifier] = ACTIONS(3266), - [aux_sym_preproc_include_token1] = ACTIONS(3266), - [aux_sym_preproc_def_token1] = ACTIONS(3266), - [aux_sym_preproc_if_token1] = ACTIONS(3266), - [aux_sym_preproc_if_token2] = ACTIONS(3266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), - [sym_preproc_directive] = ACTIONS(3266), - [anon_sym_LPAREN2] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_AMP] = ACTIONS(3266), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym___extension__] = ACTIONS(3266), - [anon_sym_typedef] = ACTIONS(3266), - [anon_sym_extern] = ACTIONS(3266), - [anon_sym___attribute__] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(3268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), - [anon_sym___declspec] = ACTIONS(3266), - [anon_sym___based] = ACTIONS(3266), - [anon_sym___cdecl] = ACTIONS(3266), - [anon_sym___clrcall] = ACTIONS(3266), - [anon_sym___stdcall] = ACTIONS(3266), - [anon_sym___fastcall] = ACTIONS(3266), - [anon_sym___thiscall] = ACTIONS(3266), - [anon_sym___vectorcall] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_signed] = ACTIONS(3266), - [anon_sym_unsigned] = ACTIONS(3266), - [anon_sym_long] = ACTIONS(3266), - [anon_sym_short] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_register] = ACTIONS(3266), - [anon_sym_inline] = ACTIONS(3266), - [anon_sym___inline] = ACTIONS(3266), - [anon_sym___inline__] = ACTIONS(3266), - [anon_sym___forceinline] = ACTIONS(3266), - [anon_sym_thread_local] = ACTIONS(3266), - [anon_sym___thread] = ACTIONS(3266), - [anon_sym_const] = ACTIONS(3266), - [anon_sym_constexpr] = ACTIONS(3266), - [anon_sym_volatile] = ACTIONS(3266), - [anon_sym_restrict] = ACTIONS(3266), - [anon_sym___restrict__] = ACTIONS(3266), - [anon_sym__Atomic] = ACTIONS(3266), - [anon_sym__Noreturn] = ACTIONS(3266), - [anon_sym_noreturn] = ACTIONS(3266), - [anon_sym_mutable] = ACTIONS(3266), - [anon_sym_constinit] = ACTIONS(3266), - [anon_sym_consteval] = ACTIONS(3266), - [sym_primitive_type] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_struct] = ACTIONS(3266), - [anon_sym_union] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_switch] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_default] = ACTIONS(3266), - [anon_sym_while] = ACTIONS(3266), - [anon_sym_do] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_goto] = ACTIONS(3266), - [anon_sym___try] = ACTIONS(3266), - [anon_sym___leave] = ACTIONS(3266), - [anon_sym_not] = ACTIONS(3266), - [anon_sym_compl] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_sizeof] = ACTIONS(3266), - [anon_sym___alignof__] = ACTIONS(3266), - [anon_sym___alignof] = ACTIONS(3266), - [anon_sym__alignof] = ACTIONS(3266), - [anon_sym_alignof] = ACTIONS(3266), - [anon_sym__Alignof] = ACTIONS(3266), - [anon_sym_offsetof] = ACTIONS(3266), - [anon_sym__Generic] = ACTIONS(3266), - [anon_sym_asm] = ACTIONS(3266), - [anon_sym___asm__] = ACTIONS(3266), - [sym_number_literal] = ACTIONS(3268), - [anon_sym_L_SQUOTE] = ACTIONS(3268), - [anon_sym_u_SQUOTE] = ACTIONS(3268), - [anon_sym_U_SQUOTE] = ACTIONS(3268), - [anon_sym_u8_SQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_L_DQUOTE] = ACTIONS(3268), - [anon_sym_u_DQUOTE] = ACTIONS(3268), - [anon_sym_U_DQUOTE] = ACTIONS(3268), - [anon_sym_u8_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [anon_sym_NULL] = ACTIONS(3266), - [anon_sym_nullptr] = ACTIONS(3266), + [801] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3266), - [anon_sym_decltype] = ACTIONS(3266), - [anon_sym_virtual] = ACTIONS(3266), - [anon_sym_alignas] = ACTIONS(3266), - [anon_sym_explicit] = ACTIONS(3266), - [anon_sym_typename] = ACTIONS(3266), - [anon_sym_template] = ACTIONS(3266), - [anon_sym_operator] = ACTIONS(3266), - [anon_sym_try] = ACTIONS(3266), - [anon_sym_delete] = ACTIONS(3266), - [anon_sym_throw] = ACTIONS(3266), - [anon_sym_namespace] = ACTIONS(3266), - [anon_sym_using] = ACTIONS(3266), - [anon_sym_static_assert] = ACTIONS(3266), - [anon_sym_concept] = ACTIONS(3266), - [anon_sym_co_return] = ACTIONS(3266), - [anon_sym_co_yield] = ACTIONS(3266), - [anon_sym_R_DQUOTE] = ACTIONS(3268), - [anon_sym_LR_DQUOTE] = ACTIONS(3268), - [anon_sym_uR_DQUOTE] = ACTIONS(3268), - [anon_sym_UR_DQUOTE] = ACTIONS(3268), - [anon_sym_u8R_DQUOTE] = ACTIONS(3268), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3266), - [anon_sym_requires] = ACTIONS(3266), - [sym_this] = ACTIONS(3266), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [834] = { - [sym_identifier] = ACTIONS(3302), - [aux_sym_preproc_include_token1] = ACTIONS(3302), - [aux_sym_preproc_def_token1] = ACTIONS(3302), - [aux_sym_preproc_if_token1] = ACTIONS(3302), - [aux_sym_preproc_if_token2] = ACTIONS(3302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), - [sym_preproc_directive] = ACTIONS(3302), - [anon_sym_LPAREN2] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_AMP_AMP] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym___extension__] = ACTIONS(3302), - [anon_sym_typedef] = ACTIONS(3302), - [anon_sym_extern] = ACTIONS(3302), - [anon_sym___attribute__] = ACTIONS(3302), - [anon_sym_COLON_COLON] = ACTIONS(3304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), - [anon_sym___declspec] = ACTIONS(3302), - [anon_sym___based] = ACTIONS(3302), - [anon_sym___cdecl] = ACTIONS(3302), - [anon_sym___clrcall] = ACTIONS(3302), - [anon_sym___stdcall] = ACTIONS(3302), - [anon_sym___fastcall] = ACTIONS(3302), - [anon_sym___thiscall] = ACTIONS(3302), - [anon_sym___vectorcall] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_signed] = ACTIONS(3302), - [anon_sym_unsigned] = ACTIONS(3302), - [anon_sym_long] = ACTIONS(3302), - [anon_sym_short] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym___inline] = ACTIONS(3302), - [anon_sym___inline__] = ACTIONS(3302), - [anon_sym___forceinline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym___thread] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym___restrict__] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym__Noreturn] = ACTIONS(3302), - [anon_sym_noreturn] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constinit] = ACTIONS(3302), - [anon_sym_consteval] = ACTIONS(3302), - [sym_primitive_type] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_struct] = ACTIONS(3302), - [anon_sym_union] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_goto] = ACTIONS(3302), - [anon_sym___try] = ACTIONS(3302), - [anon_sym___leave] = ACTIONS(3302), - [anon_sym_not] = ACTIONS(3302), - [anon_sym_compl] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_sizeof] = ACTIONS(3302), - [anon_sym___alignof__] = ACTIONS(3302), - [anon_sym___alignof] = ACTIONS(3302), - [anon_sym__alignof] = ACTIONS(3302), - [anon_sym_alignof] = ACTIONS(3302), - [anon_sym__Alignof] = ACTIONS(3302), - [anon_sym_offsetof] = ACTIONS(3302), - [anon_sym__Generic] = ACTIONS(3302), - [anon_sym_asm] = ACTIONS(3302), - [anon_sym___asm__] = ACTIONS(3302), - [sym_number_literal] = ACTIONS(3304), - [anon_sym_L_SQUOTE] = ACTIONS(3304), - [anon_sym_u_SQUOTE] = ACTIONS(3304), - [anon_sym_U_SQUOTE] = ACTIONS(3304), - [anon_sym_u8_SQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_L_DQUOTE] = ACTIONS(3304), - [anon_sym_u_DQUOTE] = ACTIONS(3304), - [anon_sym_U_DQUOTE] = ACTIONS(3304), - [anon_sym_u8_DQUOTE] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [anon_sym_NULL] = ACTIONS(3302), - [anon_sym_nullptr] = ACTIONS(3302), + [802] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3302), - [anon_sym_decltype] = ACTIONS(3302), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_alignas] = ACTIONS(3302), - [anon_sym_explicit] = ACTIONS(3302), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_template] = ACTIONS(3302), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_static_assert] = ACTIONS(3302), - [anon_sym_concept] = ACTIONS(3302), - [anon_sym_co_return] = ACTIONS(3302), - [anon_sym_co_yield] = ACTIONS(3302), - [anon_sym_R_DQUOTE] = ACTIONS(3304), - [anon_sym_LR_DQUOTE] = ACTIONS(3304), - [anon_sym_uR_DQUOTE] = ACTIONS(3304), - [anon_sym_UR_DQUOTE] = ACTIONS(3304), - [anon_sym_u8R_DQUOTE] = ACTIONS(3304), - [anon_sym_co_await] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_requires] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - }, - [835] = { - [sym_identifier] = ACTIONS(3136), - [aux_sym_preproc_include_token1] = ACTIONS(3136), - [aux_sym_preproc_def_token1] = ACTIONS(3136), - [aux_sym_preproc_if_token1] = ACTIONS(3136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3136), - [sym_preproc_directive] = ACTIONS(3136), - [anon_sym_LPAREN2] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym___extension__] = ACTIONS(3136), - [anon_sym_typedef] = ACTIONS(3136), - [anon_sym_extern] = ACTIONS(3136), - [anon_sym___attribute__] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3138), - [anon_sym___declspec] = ACTIONS(3136), - [anon_sym___based] = ACTIONS(3136), - [anon_sym___cdecl] = ACTIONS(3136), - [anon_sym___clrcall] = ACTIONS(3136), - [anon_sym___stdcall] = ACTIONS(3136), - [anon_sym___fastcall] = ACTIONS(3136), - [anon_sym___thiscall] = ACTIONS(3136), - [anon_sym___vectorcall] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_signed] = ACTIONS(3136), - [anon_sym_unsigned] = ACTIONS(3136), - [anon_sym_long] = ACTIONS(3136), - [anon_sym_short] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_register] = ACTIONS(3136), - [anon_sym_inline] = ACTIONS(3136), - [anon_sym___inline] = ACTIONS(3136), - [anon_sym___inline__] = ACTIONS(3136), - [anon_sym___forceinline] = ACTIONS(3136), - [anon_sym_thread_local] = ACTIONS(3136), - [anon_sym___thread] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_constexpr] = ACTIONS(3136), - [anon_sym_volatile] = ACTIONS(3136), - [anon_sym_restrict] = ACTIONS(3136), - [anon_sym___restrict__] = ACTIONS(3136), - [anon_sym__Atomic] = ACTIONS(3136), - [anon_sym__Noreturn] = ACTIONS(3136), - [anon_sym_noreturn] = ACTIONS(3136), - [anon_sym_mutable] = ACTIONS(3136), - [anon_sym_constinit] = ACTIONS(3136), - [anon_sym_consteval] = ACTIONS(3136), - [sym_primitive_type] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_case] = ACTIONS(3136), - [anon_sym_default] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_goto] = ACTIONS(3136), - [anon_sym___try] = ACTIONS(3136), - [anon_sym___leave] = ACTIONS(3136), - [anon_sym_not] = ACTIONS(3136), - [anon_sym_compl] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_sizeof] = ACTIONS(3136), - [anon_sym___alignof__] = ACTIONS(3136), - [anon_sym___alignof] = ACTIONS(3136), - [anon_sym__alignof] = ACTIONS(3136), - [anon_sym_alignof] = ACTIONS(3136), - [anon_sym__Alignof] = ACTIONS(3136), - [anon_sym_offsetof] = ACTIONS(3136), - [anon_sym__Generic] = ACTIONS(3136), - [anon_sym_asm] = ACTIONS(3136), - [anon_sym___asm__] = ACTIONS(3136), - [sym_number_literal] = ACTIONS(3138), - [anon_sym_L_SQUOTE] = ACTIONS(3138), - [anon_sym_u_SQUOTE] = ACTIONS(3138), - [anon_sym_U_SQUOTE] = ACTIONS(3138), - [anon_sym_u8_SQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [anon_sym_NULL] = ACTIONS(3136), - [anon_sym_nullptr] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3136), - [anon_sym_decltype] = ACTIONS(3136), - [anon_sym_virtual] = ACTIONS(3136), - [anon_sym_alignas] = ACTIONS(3136), - [anon_sym_explicit] = ACTIONS(3136), - [anon_sym_typename] = ACTIONS(3136), - [anon_sym_template] = ACTIONS(3136), - [anon_sym_operator] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_static_assert] = ACTIONS(3136), - [anon_sym_concept] = ACTIONS(3136), - [anon_sym_co_return] = ACTIONS(3136), - [anon_sym_co_yield] = ACTIONS(3136), - [anon_sym_R_DQUOTE] = ACTIONS(3138), - [anon_sym_LR_DQUOTE] = ACTIONS(3138), - [anon_sym_uR_DQUOTE] = ACTIONS(3138), - [anon_sym_UR_DQUOTE] = ACTIONS(3138), - [anon_sym_u8R_DQUOTE] = ACTIONS(3138), - [anon_sym_co_await] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_requires] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [836] = { - [sym_identifier] = ACTIONS(3086), - [aux_sym_preproc_include_token1] = ACTIONS(3086), - [aux_sym_preproc_def_token1] = ACTIONS(3086), - [aux_sym_preproc_if_token1] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3086), - [sym_preproc_directive] = ACTIONS(3086), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_SEMI] = ACTIONS(3088), - [anon_sym___extension__] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3086), - [anon_sym_extern] = ACTIONS(3086), - [anon_sym___attribute__] = ACTIONS(3086), - [anon_sym_COLON_COLON] = ACTIONS(3088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3088), - [anon_sym___declspec] = ACTIONS(3086), - [anon_sym___based] = ACTIONS(3086), - [anon_sym___cdecl] = ACTIONS(3086), - [anon_sym___clrcall] = ACTIONS(3086), - [anon_sym___stdcall] = ACTIONS(3086), - [anon_sym___fastcall] = ACTIONS(3086), - [anon_sym___thiscall] = ACTIONS(3086), - [anon_sym___vectorcall] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(3088), - [anon_sym_signed] = ACTIONS(3086), - [anon_sym_unsigned] = ACTIONS(3086), - [anon_sym_long] = ACTIONS(3086), - [anon_sym_short] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_register] = ACTIONS(3086), - [anon_sym_inline] = ACTIONS(3086), - [anon_sym___inline] = ACTIONS(3086), - [anon_sym___inline__] = ACTIONS(3086), - [anon_sym___forceinline] = ACTIONS(3086), - [anon_sym_thread_local] = ACTIONS(3086), - [anon_sym___thread] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_constexpr] = ACTIONS(3086), - [anon_sym_volatile] = ACTIONS(3086), - [anon_sym_restrict] = ACTIONS(3086), - [anon_sym___restrict__] = ACTIONS(3086), - [anon_sym__Atomic] = ACTIONS(3086), - [anon_sym__Noreturn] = ACTIONS(3086), - [anon_sym_noreturn] = ACTIONS(3086), - [anon_sym_mutable] = ACTIONS(3086), - [anon_sym_constinit] = ACTIONS(3086), - [anon_sym_consteval] = ACTIONS(3086), - [sym_primitive_type] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_struct] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_switch] = ACTIONS(3086), - [anon_sym_case] = ACTIONS(3086), - [anon_sym_default] = ACTIONS(3086), - [anon_sym_while] = ACTIONS(3086), - [anon_sym_do] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_goto] = ACTIONS(3086), - [anon_sym___try] = ACTIONS(3086), - [anon_sym___leave] = ACTIONS(3086), - [anon_sym_not] = ACTIONS(3086), - [anon_sym_compl] = ACTIONS(3086), - [anon_sym_DASH_DASH] = ACTIONS(3088), - [anon_sym_PLUS_PLUS] = ACTIONS(3088), - [anon_sym_sizeof] = ACTIONS(3086), - [anon_sym___alignof__] = ACTIONS(3086), - [anon_sym___alignof] = ACTIONS(3086), - [anon_sym__alignof] = ACTIONS(3086), - [anon_sym_alignof] = ACTIONS(3086), - [anon_sym__Alignof] = ACTIONS(3086), - [anon_sym_offsetof] = ACTIONS(3086), - [anon_sym__Generic] = ACTIONS(3086), - [anon_sym_asm] = ACTIONS(3086), - [anon_sym___asm__] = ACTIONS(3086), - [sym_number_literal] = ACTIONS(3088), - [anon_sym_L_SQUOTE] = ACTIONS(3088), - [anon_sym_u_SQUOTE] = ACTIONS(3088), - [anon_sym_U_SQUOTE] = ACTIONS(3088), - [anon_sym_u8_SQUOTE] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3088), - [anon_sym_L_DQUOTE] = ACTIONS(3088), - [anon_sym_u_DQUOTE] = ACTIONS(3088), - [anon_sym_U_DQUOTE] = ACTIONS(3088), - [anon_sym_u8_DQUOTE] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [anon_sym_NULL] = ACTIONS(3086), - [anon_sym_nullptr] = ACTIONS(3086), + [803] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3086), - [anon_sym_decltype] = ACTIONS(3086), - [anon_sym_virtual] = ACTIONS(3086), - [anon_sym_alignas] = ACTIONS(3086), - [anon_sym_explicit] = ACTIONS(3086), - [anon_sym_typename] = ACTIONS(3086), - [anon_sym_template] = ACTIONS(3086), - [anon_sym_operator] = ACTIONS(3086), - [anon_sym_try] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3086), - [anon_sym_throw] = ACTIONS(3086), - [anon_sym_namespace] = ACTIONS(3086), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_static_assert] = ACTIONS(3086), - [anon_sym_concept] = ACTIONS(3086), - [anon_sym_co_return] = ACTIONS(3086), - [anon_sym_co_yield] = ACTIONS(3086), - [anon_sym_R_DQUOTE] = ACTIONS(3088), - [anon_sym_LR_DQUOTE] = ACTIONS(3088), - [anon_sym_uR_DQUOTE] = ACTIONS(3088), - [anon_sym_UR_DQUOTE] = ACTIONS(3088), - [anon_sym_u8R_DQUOTE] = ACTIONS(3088), - [anon_sym_co_await] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3086), - [sym_this] = ACTIONS(3086), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [837] = { - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_include_token1] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token2] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym___cdecl] = ACTIONS(3298), - [anon_sym___clrcall] = ACTIONS(3298), - [anon_sym___stdcall] = ACTIONS(3298), - [anon_sym___fastcall] = ACTIONS(3298), - [anon_sym___thiscall] = ACTIONS(3298), - [anon_sym___vectorcall] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3298), - [anon_sym_default] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_goto] = ACTIONS(3298), - [anon_sym___try] = ACTIONS(3298), - [anon_sym___leave] = ACTIONS(3298), - [anon_sym_not] = ACTIONS(3298), - [anon_sym_compl] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_sizeof] = ACTIONS(3298), - [anon_sym___alignof__] = ACTIONS(3298), - [anon_sym___alignof] = ACTIONS(3298), - [anon_sym__alignof] = ACTIONS(3298), - [anon_sym_alignof] = ACTIONS(3298), - [anon_sym__Alignof] = ACTIONS(3298), - [anon_sym_offsetof] = ACTIONS(3298), - [anon_sym__Generic] = ACTIONS(3298), - [anon_sym_asm] = ACTIONS(3298), - [anon_sym___asm__] = ACTIONS(3298), - [sym_number_literal] = ACTIONS(3300), - [anon_sym_L_SQUOTE] = ACTIONS(3300), - [anon_sym_u_SQUOTE] = ACTIONS(3300), - [anon_sym_U_SQUOTE] = ACTIONS(3300), - [anon_sym_u8_SQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_L_DQUOTE] = ACTIONS(3300), - [anon_sym_u_DQUOTE] = ACTIONS(3300), - [anon_sym_U_DQUOTE] = ACTIONS(3300), - [anon_sym_u8_DQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [anon_sym_NULL] = ACTIONS(3298), - [anon_sym_nullptr] = ACTIONS(3298), + [804] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), - [anon_sym_concept] = ACTIONS(3298), - [anon_sym_co_return] = ACTIONS(3298), - [anon_sym_co_yield] = ACTIONS(3298), - [anon_sym_R_DQUOTE] = ACTIONS(3300), - [anon_sym_LR_DQUOTE] = ACTIONS(3300), - [anon_sym_uR_DQUOTE] = ACTIONS(3300), - [anon_sym_UR_DQUOTE] = ACTIONS(3300), - [anon_sym_u8R_DQUOTE] = ACTIONS(3300), - [anon_sym_co_await] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_requires] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), - }, - [838] = { - [sym_identifier] = ACTIONS(3284), - [aux_sym_preproc_include_token1] = ACTIONS(3284), - [aux_sym_preproc_def_token1] = ACTIONS(3284), - [aux_sym_preproc_if_token1] = ACTIONS(3284), - [aux_sym_preproc_if_token2] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3284), - [sym_preproc_directive] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym___extension__] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym___attribute__] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3286), - [anon_sym___declspec] = ACTIONS(3284), - [anon_sym___based] = ACTIONS(3284), - [anon_sym___cdecl] = ACTIONS(3284), - [anon_sym___clrcall] = ACTIONS(3284), - [anon_sym___stdcall] = ACTIONS(3284), - [anon_sym___fastcall] = ACTIONS(3284), - [anon_sym___thiscall] = ACTIONS(3284), - [anon_sym___vectorcall] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_signed] = ACTIONS(3284), - [anon_sym_unsigned] = ACTIONS(3284), - [anon_sym_long] = ACTIONS(3284), - [anon_sym_short] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_register] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym___inline] = ACTIONS(3284), - [anon_sym___inline__] = ACTIONS(3284), - [anon_sym___forceinline] = ACTIONS(3284), - [anon_sym_thread_local] = ACTIONS(3284), - [anon_sym___thread] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_constexpr] = ACTIONS(3284), - [anon_sym_volatile] = ACTIONS(3284), - [anon_sym_restrict] = ACTIONS(3284), - [anon_sym___restrict__] = ACTIONS(3284), - [anon_sym__Atomic] = ACTIONS(3284), - [anon_sym__Noreturn] = ACTIONS(3284), - [anon_sym_noreturn] = ACTIONS(3284), - [anon_sym_mutable] = ACTIONS(3284), - [anon_sym_constinit] = ACTIONS(3284), - [anon_sym_consteval] = ACTIONS(3284), - [sym_primitive_type] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3284), - [anon_sym_union] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_goto] = ACTIONS(3284), - [anon_sym___try] = ACTIONS(3284), - [anon_sym___leave] = ACTIONS(3284), - [anon_sym_not] = ACTIONS(3284), - [anon_sym_compl] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_sizeof] = ACTIONS(3284), - [anon_sym___alignof__] = ACTIONS(3284), - [anon_sym___alignof] = ACTIONS(3284), - [anon_sym__alignof] = ACTIONS(3284), - [anon_sym_alignof] = ACTIONS(3284), - [anon_sym__Alignof] = ACTIONS(3284), - [anon_sym_offsetof] = ACTIONS(3284), - [anon_sym__Generic] = ACTIONS(3284), - [anon_sym_asm] = ACTIONS(3284), - [anon_sym___asm__] = ACTIONS(3284), - [sym_number_literal] = ACTIONS(3286), - [anon_sym_L_SQUOTE] = ACTIONS(3286), - [anon_sym_u_SQUOTE] = ACTIONS(3286), - [anon_sym_U_SQUOTE] = ACTIONS(3286), - [anon_sym_u8_SQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_L_DQUOTE] = ACTIONS(3286), - [anon_sym_u_DQUOTE] = ACTIONS(3286), - [anon_sym_U_DQUOTE] = ACTIONS(3286), - [anon_sym_u8_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [anon_sym_NULL] = ACTIONS(3284), - [anon_sym_nullptr] = ACTIONS(3284), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3284), - [anon_sym_decltype] = ACTIONS(3284), - [anon_sym_virtual] = ACTIONS(3284), - [anon_sym_alignas] = ACTIONS(3284), - [anon_sym_explicit] = ACTIONS(3284), - [anon_sym_typename] = ACTIONS(3284), - [anon_sym_template] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_static_assert] = ACTIONS(3284), - [anon_sym_concept] = ACTIONS(3284), - [anon_sym_co_return] = ACTIONS(3284), - [anon_sym_co_yield] = ACTIONS(3284), - [anon_sym_R_DQUOTE] = ACTIONS(3286), - [anon_sym_LR_DQUOTE] = ACTIONS(3286), - [anon_sym_uR_DQUOTE] = ACTIONS(3286), - [anon_sym_UR_DQUOTE] = ACTIONS(3286), - [anon_sym_u8R_DQUOTE] = ACTIONS(3286), - [anon_sym_co_await] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_requires] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - }, - [839] = { - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_include_token1] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token2] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym___cdecl] = ACTIONS(3160), - [anon_sym___clrcall] = ACTIONS(3160), - [anon_sym___stdcall] = ACTIONS(3160), - [anon_sym___fastcall] = ACTIONS(3160), - [anon_sym___thiscall] = ACTIONS(3160), - [anon_sym___vectorcall] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_goto] = ACTIONS(3160), - [anon_sym___try] = ACTIONS(3160), - [anon_sym___leave] = ACTIONS(3160), - [anon_sym_not] = ACTIONS(3160), - [anon_sym_compl] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_sizeof] = ACTIONS(3160), - [anon_sym___alignof__] = ACTIONS(3160), - [anon_sym___alignof] = ACTIONS(3160), - [anon_sym__alignof] = ACTIONS(3160), - [anon_sym_alignof] = ACTIONS(3160), - [anon_sym__Alignof] = ACTIONS(3160), - [anon_sym_offsetof] = ACTIONS(3160), - [anon_sym__Generic] = ACTIONS(3160), - [anon_sym_asm] = ACTIONS(3160), - [anon_sym___asm__] = ACTIONS(3160), - [sym_number_literal] = ACTIONS(3162), - [anon_sym_L_SQUOTE] = ACTIONS(3162), - [anon_sym_u_SQUOTE] = ACTIONS(3162), - [anon_sym_U_SQUOTE] = ACTIONS(3162), - [anon_sym_u8_SQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_L_DQUOTE] = ACTIONS(3162), - [anon_sym_u_DQUOTE] = ACTIONS(3162), - [anon_sym_U_DQUOTE] = ACTIONS(3162), - [anon_sym_u8_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3160), - [anon_sym_nullptr] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), - [anon_sym_concept] = ACTIONS(3160), - [anon_sym_co_return] = ACTIONS(3160), - [anon_sym_co_yield] = ACTIONS(3160), - [anon_sym_R_DQUOTE] = ACTIONS(3162), - [anon_sym_LR_DQUOTE] = ACTIONS(3162), - [anon_sym_uR_DQUOTE] = ACTIONS(3162), - [anon_sym_UR_DQUOTE] = ACTIONS(3162), - [anon_sym_u8R_DQUOTE] = ACTIONS(3162), - [anon_sym_co_await] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_requires] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - }, - [840] = { - [sym_identifier] = ACTIONS(2996), - [aux_sym_preproc_include_token1] = ACTIONS(2996), - [aux_sym_preproc_def_token1] = ACTIONS(2996), - [aux_sym_preproc_if_token1] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2996), - [sym_preproc_directive] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2998), - [anon_sym___extension__] = ACTIONS(2996), - [anon_sym_typedef] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym___attribute__] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), - [anon_sym___declspec] = ACTIONS(2996), - [anon_sym___based] = ACTIONS(2996), - [anon_sym___cdecl] = ACTIONS(2996), - [anon_sym___clrcall] = ACTIONS(2996), - [anon_sym___stdcall] = ACTIONS(2996), - [anon_sym___fastcall] = ACTIONS(2996), - [anon_sym___thiscall] = ACTIONS(2996), - [anon_sym___vectorcall] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_RBRACE] = ACTIONS(2998), - [anon_sym_signed] = ACTIONS(2996), - [anon_sym_unsigned] = ACTIONS(2996), - [anon_sym_long] = ACTIONS(2996), - [anon_sym_short] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_inline] = ACTIONS(2996), - [anon_sym___inline] = ACTIONS(2996), - [anon_sym___inline__] = ACTIONS(2996), - [anon_sym___forceinline] = ACTIONS(2996), - [anon_sym_thread_local] = ACTIONS(2996), - [anon_sym___thread] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_constexpr] = ACTIONS(2996), - [anon_sym_volatile] = ACTIONS(2996), - [anon_sym_restrict] = ACTIONS(2996), - [anon_sym___restrict__] = ACTIONS(2996), - [anon_sym__Atomic] = ACTIONS(2996), - [anon_sym__Noreturn] = ACTIONS(2996), - [anon_sym_noreturn] = ACTIONS(2996), - [anon_sym_mutable] = ACTIONS(2996), - [anon_sym_constinit] = ACTIONS(2996), - [anon_sym_consteval] = ACTIONS(2996), - [sym_primitive_type] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), - [anon_sym_class] = ACTIONS(2996), - [anon_sym_struct] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_goto] = ACTIONS(2996), - [anon_sym___try] = ACTIONS(2996), - [anon_sym___leave] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_compl] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2998), - [anon_sym_PLUS_PLUS] = ACTIONS(2998), - [anon_sym_sizeof] = ACTIONS(2996), - [anon_sym___alignof__] = ACTIONS(2996), - [anon_sym___alignof] = ACTIONS(2996), - [anon_sym__alignof] = ACTIONS(2996), - [anon_sym_alignof] = ACTIONS(2996), - [anon_sym__Alignof] = ACTIONS(2996), - [anon_sym_offsetof] = ACTIONS(2996), - [anon_sym__Generic] = ACTIONS(2996), - [anon_sym_asm] = ACTIONS(2996), - [anon_sym___asm__] = ACTIONS(2996), - [sym_number_literal] = ACTIONS(2998), - [anon_sym_L_SQUOTE] = ACTIONS(2998), - [anon_sym_u_SQUOTE] = ACTIONS(2998), - [anon_sym_U_SQUOTE] = ACTIONS(2998), - [anon_sym_u8_SQUOTE] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(2998), - [anon_sym_L_DQUOTE] = ACTIONS(2998), - [anon_sym_u_DQUOTE] = ACTIONS(2998), - [anon_sym_U_DQUOTE] = ACTIONS(2998), - [anon_sym_u8_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [sym_true] = ACTIONS(2996), - [sym_false] = ACTIONS(2996), - [anon_sym_NULL] = ACTIONS(2996), - [anon_sym_nullptr] = ACTIONS(2996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2996), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2996), - [anon_sym_alignas] = ACTIONS(2996), - [anon_sym_explicit] = ACTIONS(2996), - [anon_sym_typename] = ACTIONS(2996), - [anon_sym_template] = ACTIONS(2996), - [anon_sym_operator] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_throw] = ACTIONS(2996), - [anon_sym_namespace] = ACTIONS(2996), - [anon_sym_using] = ACTIONS(2996), - [anon_sym_static_assert] = ACTIONS(2996), - [anon_sym_concept] = ACTIONS(2996), - [anon_sym_co_return] = ACTIONS(2996), - [anon_sym_co_yield] = 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(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_requires] = ACTIONS(2996), - [sym_this] = ACTIONS(2996), - }, - [841] = { - [sym_identifier] = ACTIONS(3247), - [aux_sym_preproc_include_token1] = ACTIONS(3247), - [aux_sym_preproc_def_token1] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3247), - [aux_sym_preproc_if_token2] = ACTIONS(3247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3247), - [sym_preproc_directive] = ACTIONS(3247), - [anon_sym_LPAREN2] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3249), - [anon_sym_AMP_AMP] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym___extension__] = ACTIONS(3247), - [anon_sym_typedef] = ACTIONS(3247), - [anon_sym_extern] = ACTIONS(3247), - [anon_sym___attribute__] = ACTIONS(3247), - [anon_sym_COLON_COLON] = ACTIONS(3249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3249), - [anon_sym___declspec] = ACTIONS(3247), - [anon_sym___based] = ACTIONS(3247), - [anon_sym___cdecl] = ACTIONS(3247), - [anon_sym___clrcall] = ACTIONS(3247), - [anon_sym___stdcall] = ACTIONS(3247), - [anon_sym___fastcall] = ACTIONS(3247), - [anon_sym___thiscall] = ACTIONS(3247), - [anon_sym___vectorcall] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_signed] = ACTIONS(3247), - [anon_sym_unsigned] = ACTIONS(3247), - [anon_sym_long] = ACTIONS(3247), - [anon_sym_short] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_register] = ACTIONS(3247), - [anon_sym_inline] = ACTIONS(3247), - [anon_sym___inline] = ACTIONS(3247), - [anon_sym___inline__] = ACTIONS(3247), - [anon_sym___forceinline] = ACTIONS(3247), - [anon_sym_thread_local] = ACTIONS(3247), - [anon_sym___thread] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_constexpr] = ACTIONS(3247), - [anon_sym_volatile] = ACTIONS(3247), - [anon_sym_restrict] = ACTIONS(3247), - [anon_sym___restrict__] = ACTIONS(3247), - [anon_sym__Atomic] = ACTIONS(3247), - [anon_sym__Noreturn] = ACTIONS(3247), - [anon_sym_noreturn] = ACTIONS(3247), - [anon_sym_mutable] = ACTIONS(3247), - [anon_sym_constinit] = ACTIONS(3247), - [anon_sym_consteval] = ACTIONS(3247), - [sym_primitive_type] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_case] = ACTIONS(3247), - [anon_sym_default] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_goto] = ACTIONS(3247), - [anon_sym___try] = ACTIONS(3247), - [anon_sym___leave] = ACTIONS(3247), - [anon_sym_not] = ACTIONS(3247), - [anon_sym_compl] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_sizeof] = ACTIONS(3247), - [anon_sym___alignof__] = ACTIONS(3247), - [anon_sym___alignof] = ACTIONS(3247), - [anon_sym__alignof] = ACTIONS(3247), - [anon_sym_alignof] = ACTIONS(3247), - [anon_sym__Alignof] = ACTIONS(3247), - [anon_sym_offsetof] = ACTIONS(3247), - [anon_sym__Generic] = ACTIONS(3247), - [anon_sym_asm] = ACTIONS(3247), - [anon_sym___asm__] = ACTIONS(3247), - [sym_number_literal] = ACTIONS(3249), - [anon_sym_L_SQUOTE] = ACTIONS(3249), - [anon_sym_u_SQUOTE] = ACTIONS(3249), - [anon_sym_U_SQUOTE] = ACTIONS(3249), - [anon_sym_u8_SQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_L_DQUOTE] = ACTIONS(3249), - [anon_sym_u_DQUOTE] = ACTIONS(3249), - [anon_sym_U_DQUOTE] = ACTIONS(3249), - [anon_sym_u8_DQUOTE] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [anon_sym_NULL] = ACTIONS(3247), - [anon_sym_nullptr] = ACTIONS(3247), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3247), - [anon_sym_decltype] = ACTIONS(3247), - [anon_sym_virtual] = ACTIONS(3247), - [anon_sym_alignas] = ACTIONS(3247), - [anon_sym_explicit] = ACTIONS(3247), - [anon_sym_typename] = ACTIONS(3247), - [anon_sym_template] = ACTIONS(3247), - [anon_sym_operator] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_static_assert] = ACTIONS(3247), - [anon_sym_concept] = ACTIONS(3247), - [anon_sym_co_return] = ACTIONS(3247), - [anon_sym_co_yield] = ACTIONS(3247), - [anon_sym_R_DQUOTE] = ACTIONS(3249), - [anon_sym_LR_DQUOTE] = ACTIONS(3249), - [anon_sym_uR_DQUOTE] = ACTIONS(3249), - [anon_sym_UR_DQUOTE] = ACTIONS(3249), - [anon_sym_u8R_DQUOTE] = ACTIONS(3249), - [anon_sym_co_await] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_requires] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [842] = { - [sym_identifier] = ACTIONS(3098), - [aux_sym_preproc_include_token1] = ACTIONS(3098), - [aux_sym_preproc_def_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token2] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_LPAREN2] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3100), - [anon_sym___extension__] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym___attribute__] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), - [anon_sym___declspec] = ACTIONS(3098), - [anon_sym___based] = ACTIONS(3098), - [anon_sym___cdecl] = ACTIONS(3098), - [anon_sym___clrcall] = ACTIONS(3098), - [anon_sym___stdcall] = ACTIONS(3098), - [anon_sym___fastcall] = ACTIONS(3098), - [anon_sym___thiscall] = ACTIONS(3098), - [anon_sym___vectorcall] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_signed] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym___inline] = ACTIONS(3098), - [anon_sym___inline__] = ACTIONS(3098), - [anon_sym___forceinline] = ACTIONS(3098), - [anon_sym_thread_local] = ACTIONS(3098), - [anon_sym___thread] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym___restrict__] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym__Noreturn] = ACTIONS(3098), - [anon_sym_noreturn] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_constinit] = ACTIONS(3098), - [anon_sym_consteval] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym___try] = ACTIONS(3098), - [anon_sym___leave] = ACTIONS(3098), - [anon_sym_not] = ACTIONS(3098), - [anon_sym_compl] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_sizeof] = ACTIONS(3098), - [anon_sym___alignof__] = ACTIONS(3098), - [anon_sym___alignof] = ACTIONS(3098), - [anon_sym__alignof] = ACTIONS(3098), - [anon_sym_alignof] = ACTIONS(3098), - [anon_sym__Alignof] = ACTIONS(3098), - [anon_sym_offsetof] = ACTIONS(3098), - [anon_sym__Generic] = ACTIONS(3098), - [anon_sym_asm] = ACTIONS(3098), - [anon_sym___asm__] = ACTIONS(3098), - [sym_number_literal] = ACTIONS(3100), - [anon_sym_L_SQUOTE] = ACTIONS(3100), - [anon_sym_u_SQUOTE] = ACTIONS(3100), - [anon_sym_U_SQUOTE] = ACTIONS(3100), - [anon_sym_u8_SQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [anon_sym_L_DQUOTE] = ACTIONS(3100), - [anon_sym_u_DQUOTE] = ACTIONS(3100), - [anon_sym_U_DQUOTE] = ACTIONS(3100), - [anon_sym_u8_DQUOTE] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [anon_sym_NULL] = ACTIONS(3098), - [anon_sym_nullptr] = ACTIONS(3098), + [805] = { + [ts_builtin_sym_end] = ACTIONS(2991), + [sym_identifier] = ACTIONS(2989), + [aux_sym_preproc_include_token1] = ACTIONS(2989), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), + [sym_preproc_directive] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym___based] = ACTIONS(2989), + [anon_sym___cdecl] = ACTIONS(2989), + [anon_sym___clrcall] = ACTIONS(2989), + [anon_sym___stdcall] = ACTIONS(2989), + [anon_sym___fastcall] = ACTIONS(2989), + [anon_sym___thiscall] = ACTIONS(2989), + [anon_sym___vectorcall] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_else] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_case] = ACTIONS(2989), + [anon_sym_default] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym___try] = ACTIONS(2989), + [anon_sym___leave] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2989), + [anon_sym_compl] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2989), + [anon_sym___alignof__] = ACTIONS(2989), + [anon_sym___alignof] = ACTIONS(2989), + [anon_sym__alignof] = ACTIONS(2989), + [anon_sym_alignof] = ACTIONS(2989), + [anon_sym__Alignof] = ACTIONS(2989), + [anon_sym_offsetof] = ACTIONS(2989), + [anon_sym__Generic] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym___asm__] = ACTIONS(2989), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [anon_sym_NULL] = ACTIONS(2989), + [anon_sym_nullptr] = ACTIONS(2989), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3098), - [anon_sym_decltype] = ACTIONS(3098), - [anon_sym_virtual] = ACTIONS(3098), - [anon_sym_alignas] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_template] = ACTIONS(3098), - [anon_sym_operator] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(3098), - [anon_sym_delete] = ACTIONS(3098), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_namespace] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_static_assert] = ACTIONS(3098), - [anon_sym_concept] = ACTIONS(3098), - [anon_sym_co_return] = ACTIONS(3098), - [anon_sym_co_yield] = ACTIONS(3098), - [anon_sym_R_DQUOTE] = ACTIONS(3100), - [anon_sym_LR_DQUOTE] = ACTIONS(3100), - [anon_sym_uR_DQUOTE] = ACTIONS(3100), - [anon_sym_UR_DQUOTE] = ACTIONS(3100), - [anon_sym_u8R_DQUOTE] = ACTIONS(3100), - [anon_sym_co_await] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_requires] = ACTIONS(3098), - [sym_this] = ACTIONS(3098), - }, - [843] = { - [sym_identifier] = ACTIONS(3116), - [aux_sym_preproc_include_token1] = ACTIONS(3116), - [aux_sym_preproc_def_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token2] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), - [sym_preproc_directive] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3116), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym___extension__] = ACTIONS(3116), - [anon_sym_typedef] = ACTIONS(3116), - [anon_sym_extern] = ACTIONS(3116), - [anon_sym___attribute__] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = ACTIONS(3116), - [anon_sym___based] = ACTIONS(3116), - [anon_sym___cdecl] = ACTIONS(3116), - [anon_sym___clrcall] = ACTIONS(3116), - [anon_sym___stdcall] = ACTIONS(3116), - [anon_sym___fastcall] = ACTIONS(3116), - [anon_sym___thiscall] = ACTIONS(3116), - [anon_sym___vectorcall] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_signed] = ACTIONS(3116), - [anon_sym_unsigned] = ACTIONS(3116), - [anon_sym_long] = ACTIONS(3116), - [anon_sym_short] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_register] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym___inline] = ACTIONS(3116), - [anon_sym___inline__] = ACTIONS(3116), - [anon_sym___forceinline] = ACTIONS(3116), - [anon_sym_thread_local] = ACTIONS(3116), - [anon_sym___thread] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_constexpr] = ACTIONS(3116), - [anon_sym_volatile] = ACTIONS(3116), - [anon_sym_restrict] = ACTIONS(3116), - [anon_sym___restrict__] = ACTIONS(3116), - [anon_sym__Atomic] = ACTIONS(3116), - [anon_sym__Noreturn] = ACTIONS(3116), - [anon_sym_noreturn] = ACTIONS(3116), - [anon_sym_mutable] = ACTIONS(3116), - [anon_sym_constinit] = ACTIONS(3116), - [anon_sym_consteval] = ACTIONS(3116), - [sym_primitive_type] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3116), - [anon_sym_union] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_switch] = ACTIONS(3116), - [anon_sym_case] = ACTIONS(3116), - [anon_sym_default] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_do] = ACTIONS(3116), - [anon_sym_for] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_goto] = ACTIONS(3116), - [anon_sym___try] = ACTIONS(3116), - [anon_sym___leave] = ACTIONS(3116), - [anon_sym_not] = ACTIONS(3116), - [anon_sym_compl] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_sizeof] = ACTIONS(3116), - [anon_sym___alignof__] = ACTIONS(3116), - [anon_sym___alignof] = ACTIONS(3116), - [anon_sym__alignof] = ACTIONS(3116), - [anon_sym_alignof] = ACTIONS(3116), - [anon_sym__Alignof] = ACTIONS(3116), - [anon_sym_offsetof] = ACTIONS(3116), - [anon_sym__Generic] = ACTIONS(3116), - [anon_sym_asm] = ACTIONS(3116), - [anon_sym___asm__] = ACTIONS(3116), - [sym_number_literal] = ACTIONS(3118), - [anon_sym_L_SQUOTE] = ACTIONS(3118), - [anon_sym_u_SQUOTE] = ACTIONS(3118), - [anon_sym_U_SQUOTE] = ACTIONS(3118), - [anon_sym_u8_SQUOTE] = ACTIONS(3118), - [anon_sym_SQUOTE] = ACTIONS(3118), - [anon_sym_L_DQUOTE] = ACTIONS(3118), - [anon_sym_u_DQUOTE] = ACTIONS(3118), - [anon_sym_U_DQUOTE] = ACTIONS(3118), - [anon_sym_u8_DQUOTE] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym_true] = ACTIONS(3116), - [sym_false] = ACTIONS(3116), - [anon_sym_NULL] = ACTIONS(3116), - [anon_sym_nullptr] = ACTIONS(3116), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3116), - [anon_sym_decltype] = ACTIONS(3116), - [anon_sym_virtual] = ACTIONS(3116), - [anon_sym_alignas] = ACTIONS(3116), - [anon_sym_explicit] = ACTIONS(3116), - [anon_sym_typename] = ACTIONS(3116), - [anon_sym_template] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_delete] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_namespace] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3116), - [anon_sym_static_assert] = ACTIONS(3116), - [anon_sym_concept] = ACTIONS(3116), - [anon_sym_co_return] = ACTIONS(3116), - [anon_sym_co_yield] = ACTIONS(3116), - [anon_sym_R_DQUOTE] = ACTIONS(3118), - [anon_sym_LR_DQUOTE] = ACTIONS(3118), - [anon_sym_uR_DQUOTE] = ACTIONS(3118), - [anon_sym_UR_DQUOTE] = ACTIONS(3118), - [anon_sym_u8R_DQUOTE] = ACTIONS(3118), - [anon_sym_co_await] = ACTIONS(3116), - [anon_sym_new] = ACTIONS(3116), - [anon_sym_requires] = ACTIONS(3116), - [sym_this] = ACTIONS(3116), - }, - [844] = { - [sym_identifier] = ACTIONS(3090), - [aux_sym_preproc_include_token1] = ACTIONS(3090), - [aux_sym_preproc_def_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token2] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), - [sym_preproc_directive] = ACTIONS(3090), - [anon_sym_LPAREN2] = ACTIONS(3092), - [anon_sym_BANG] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_SEMI] = ACTIONS(3092), - [anon_sym___extension__] = ACTIONS(3090), - [anon_sym_typedef] = ACTIONS(3090), - [anon_sym_extern] = ACTIONS(3090), - [anon_sym___attribute__] = ACTIONS(3090), - [anon_sym_COLON_COLON] = ACTIONS(3092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), - [anon_sym___declspec] = ACTIONS(3090), - [anon_sym___based] = ACTIONS(3090), - [anon_sym___cdecl] = ACTIONS(3090), - [anon_sym___clrcall] = ACTIONS(3090), - [anon_sym___stdcall] = ACTIONS(3090), - [anon_sym___fastcall] = ACTIONS(3090), - [anon_sym___thiscall] = ACTIONS(3090), - [anon_sym___vectorcall] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_signed] = ACTIONS(3090), - [anon_sym_unsigned] = ACTIONS(3090), - [anon_sym_long] = ACTIONS(3090), - [anon_sym_short] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3090), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_register] = ACTIONS(3090), - [anon_sym_inline] = ACTIONS(3090), - [anon_sym___inline] = ACTIONS(3090), - [anon_sym___inline__] = ACTIONS(3090), - [anon_sym___forceinline] = ACTIONS(3090), - [anon_sym_thread_local] = ACTIONS(3090), - [anon_sym___thread] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_constexpr] = ACTIONS(3090), - [anon_sym_volatile] = ACTIONS(3090), - [anon_sym_restrict] = ACTIONS(3090), - [anon_sym___restrict__] = ACTIONS(3090), - [anon_sym__Atomic] = ACTIONS(3090), - [anon_sym__Noreturn] = ACTIONS(3090), - [anon_sym_noreturn] = ACTIONS(3090), - [anon_sym_mutable] = ACTIONS(3090), - [anon_sym_constinit] = ACTIONS(3090), - [anon_sym_consteval] = ACTIONS(3090), - [sym_primitive_type] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_class] = ACTIONS(3090), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_switch] = ACTIONS(3090), - [anon_sym_case] = ACTIONS(3090), - [anon_sym_default] = ACTIONS(3090), - [anon_sym_while] = ACTIONS(3090), - [anon_sym_do] = ACTIONS(3090), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_goto] = ACTIONS(3090), - [anon_sym___try] = ACTIONS(3090), - [anon_sym___leave] = ACTIONS(3090), - [anon_sym_not] = ACTIONS(3090), - [anon_sym_compl] = ACTIONS(3090), - [anon_sym_DASH_DASH] = ACTIONS(3092), - [anon_sym_PLUS_PLUS] = ACTIONS(3092), - [anon_sym_sizeof] = ACTIONS(3090), - [anon_sym___alignof__] = ACTIONS(3090), - [anon_sym___alignof] = ACTIONS(3090), - [anon_sym__alignof] = ACTIONS(3090), - [anon_sym_alignof] = ACTIONS(3090), - [anon_sym__Alignof] = ACTIONS(3090), - [anon_sym_offsetof] = ACTIONS(3090), - [anon_sym__Generic] = ACTIONS(3090), - [anon_sym_asm] = ACTIONS(3090), - [anon_sym___asm__] = ACTIONS(3090), - [sym_number_literal] = ACTIONS(3092), - [anon_sym_L_SQUOTE] = ACTIONS(3092), - [anon_sym_u_SQUOTE] = ACTIONS(3092), - [anon_sym_U_SQUOTE] = ACTIONS(3092), - [anon_sym_u8_SQUOTE] = ACTIONS(3092), - [anon_sym_SQUOTE] = ACTIONS(3092), - [anon_sym_L_DQUOTE] = ACTIONS(3092), - [anon_sym_u_DQUOTE] = ACTIONS(3092), - [anon_sym_U_DQUOTE] = ACTIONS(3092), - [anon_sym_u8_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [anon_sym_NULL] = ACTIONS(3090), - [anon_sym_nullptr] = ACTIONS(3090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3090), - [anon_sym_decltype] = ACTIONS(3090), - [anon_sym_virtual] = ACTIONS(3090), - [anon_sym_alignas] = ACTIONS(3090), - [anon_sym_explicit] = ACTIONS(3090), - [anon_sym_typename] = ACTIONS(3090), - [anon_sym_template] = ACTIONS(3090), - [anon_sym_operator] = ACTIONS(3090), - [anon_sym_try] = ACTIONS(3090), - [anon_sym_delete] = ACTIONS(3090), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_namespace] = ACTIONS(3090), - [anon_sym_using] = ACTIONS(3090), - [anon_sym_static_assert] = ACTIONS(3090), - [anon_sym_concept] = ACTIONS(3090), - [anon_sym_co_return] = ACTIONS(3090), - [anon_sym_co_yield] = ACTIONS(3090), - [anon_sym_R_DQUOTE] = ACTIONS(3092), - [anon_sym_LR_DQUOTE] = ACTIONS(3092), - [anon_sym_uR_DQUOTE] = ACTIONS(3092), - [anon_sym_UR_DQUOTE] = ACTIONS(3092), - [anon_sym_u8R_DQUOTE] = ACTIONS(3092), - [anon_sym_co_await] = ACTIONS(3090), - [anon_sym_new] = ACTIONS(3090), - [anon_sym_requires] = ACTIONS(3090), - [sym_this] = ACTIONS(3090), - }, - [845] = { - [sym_identifier] = ACTIONS(3094), - [aux_sym_preproc_include_token1] = ACTIONS(3094), - [aux_sym_preproc_def_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token2] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3094), - [sym_preproc_directive] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym___extension__] = ACTIONS(3094), - [anon_sym_typedef] = ACTIONS(3094), - [anon_sym_extern] = ACTIONS(3094), - [anon_sym___attribute__] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3096), - [anon_sym___declspec] = ACTIONS(3094), - [anon_sym___based] = ACTIONS(3094), - [anon_sym___cdecl] = ACTIONS(3094), - [anon_sym___clrcall] = ACTIONS(3094), - [anon_sym___stdcall] = ACTIONS(3094), - [anon_sym___fastcall] = ACTIONS(3094), - [anon_sym___thiscall] = ACTIONS(3094), - [anon_sym___vectorcall] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_signed] = ACTIONS(3094), - [anon_sym_unsigned] = ACTIONS(3094), - [anon_sym_long] = ACTIONS(3094), - [anon_sym_short] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_register] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym___inline] = ACTIONS(3094), - [anon_sym___inline__] = ACTIONS(3094), - [anon_sym___forceinline] = ACTIONS(3094), - [anon_sym_thread_local] = ACTIONS(3094), - [anon_sym___thread] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_constexpr] = ACTIONS(3094), - [anon_sym_volatile] = ACTIONS(3094), - [anon_sym_restrict] = ACTIONS(3094), - [anon_sym___restrict__] = ACTIONS(3094), - [anon_sym__Atomic] = ACTIONS(3094), - [anon_sym__Noreturn] = ACTIONS(3094), - [anon_sym_noreturn] = ACTIONS(3094), - [anon_sym_mutable] = ACTIONS(3094), - [anon_sym_constinit] = ACTIONS(3094), - [anon_sym_consteval] = ACTIONS(3094), - [sym_primitive_type] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_union] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_switch] = ACTIONS(3094), - [anon_sym_case] = ACTIONS(3094), - [anon_sym_default] = ACTIONS(3094), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_do] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_goto] = ACTIONS(3094), - [anon_sym___try] = ACTIONS(3094), - [anon_sym___leave] = ACTIONS(3094), - [anon_sym_not] = ACTIONS(3094), - [anon_sym_compl] = ACTIONS(3094), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_sizeof] = ACTIONS(3094), - [anon_sym___alignof__] = ACTIONS(3094), - [anon_sym___alignof] = ACTIONS(3094), - [anon_sym__alignof] = ACTIONS(3094), - [anon_sym_alignof] = ACTIONS(3094), - [anon_sym__Alignof] = ACTIONS(3094), - [anon_sym_offsetof] = ACTIONS(3094), - [anon_sym__Generic] = ACTIONS(3094), - [anon_sym_asm] = ACTIONS(3094), - [anon_sym___asm__] = ACTIONS(3094), - [sym_number_literal] = ACTIONS(3096), - [anon_sym_L_SQUOTE] = ACTIONS(3096), - [anon_sym_u_SQUOTE] = ACTIONS(3096), - [anon_sym_U_SQUOTE] = ACTIONS(3096), - [anon_sym_u8_SQUOTE] = ACTIONS(3096), - [anon_sym_SQUOTE] = ACTIONS(3096), - [anon_sym_L_DQUOTE] = ACTIONS(3096), - [anon_sym_u_DQUOTE] = ACTIONS(3096), - [anon_sym_U_DQUOTE] = ACTIONS(3096), - [anon_sym_u8_DQUOTE] = ACTIONS(3096), - [anon_sym_DQUOTE] = ACTIONS(3096), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [anon_sym_NULL] = ACTIONS(3094), - [anon_sym_nullptr] = ACTIONS(3094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3094), - [anon_sym_decltype] = ACTIONS(3094), - [anon_sym_virtual] = ACTIONS(3094), - [anon_sym_alignas] = ACTIONS(3094), - [anon_sym_explicit] = ACTIONS(3094), - [anon_sym_typename] = ACTIONS(3094), - [anon_sym_template] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_delete] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_namespace] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_static_assert] = ACTIONS(3094), - [anon_sym_concept] = ACTIONS(3094), - [anon_sym_co_return] = ACTIONS(3094), - [anon_sym_co_yield] = ACTIONS(3094), - [anon_sym_R_DQUOTE] = ACTIONS(3096), - [anon_sym_LR_DQUOTE] = ACTIONS(3096), - [anon_sym_uR_DQUOTE] = ACTIONS(3096), - [anon_sym_UR_DQUOTE] = ACTIONS(3096), - [anon_sym_u8R_DQUOTE] = ACTIONS(3096), - [anon_sym_co_await] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3094), - [anon_sym_requires] = ACTIONS(3094), - [sym_this] = ACTIONS(3094), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_explicit] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_operator] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_namespace] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_static_assert] = ACTIONS(2989), + [anon_sym_concept] = ACTIONS(2989), + [anon_sym_co_return] = ACTIONS(2989), + [anon_sym_co_yield] = ACTIONS(2989), + [anon_sym_R_DQUOTE] = ACTIONS(2991), + [anon_sym_LR_DQUOTE] = ACTIONS(2991), + [anon_sym_uR_DQUOTE] = ACTIONS(2991), + [anon_sym_UR_DQUOTE] = ACTIONS(2991), + [anon_sym_u8R_DQUOTE] = ACTIONS(2991), + [anon_sym_co_await] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_requires] = ACTIONS(2989), + [sym_this] = ACTIONS(2989), }, - [846] = { - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_include_token1] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token2] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym___cdecl] = ACTIONS(3219), - [anon_sym___clrcall] = ACTIONS(3219), - [anon_sym___stdcall] = ACTIONS(3219), - [anon_sym___fastcall] = ACTIONS(3219), - [anon_sym___thiscall] = ACTIONS(3219), - [anon_sym___vectorcall] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym___try] = ACTIONS(3219), - [anon_sym___leave] = ACTIONS(3219), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_compl] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3219), - [anon_sym___alignof__] = ACTIONS(3219), - [anon_sym___alignof] = ACTIONS(3219), - [anon_sym__alignof] = ACTIONS(3219), - [anon_sym_alignof] = ACTIONS(3219), - [anon_sym__Alignof] = ACTIONS(3219), - [anon_sym_offsetof] = ACTIONS(3219), - [anon_sym__Generic] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym___asm__] = ACTIONS(3219), - [sym_number_literal] = ACTIONS(3221), - [anon_sym_L_SQUOTE] = ACTIONS(3221), - [anon_sym_u_SQUOTE] = ACTIONS(3221), - [anon_sym_U_SQUOTE] = ACTIONS(3221), - [anon_sym_u8_SQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_L_DQUOTE] = ACTIONS(3221), - [anon_sym_u_DQUOTE] = ACTIONS(3221), - [anon_sym_U_DQUOTE] = ACTIONS(3221), - [anon_sym_u8_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [anon_sym_NULL] = ACTIONS(3219), - [anon_sym_nullptr] = ACTIONS(3219), + [806] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_explicit] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_operator] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_static_assert] = ACTIONS(3219), - [anon_sym_concept] = ACTIONS(3219), - [anon_sym_co_return] = ACTIONS(3219), - [anon_sym_co_yield] = ACTIONS(3219), - [anon_sym_R_DQUOTE] = ACTIONS(3221), - [anon_sym_LR_DQUOTE] = ACTIONS(3221), - [anon_sym_uR_DQUOTE] = ACTIONS(3221), - [anon_sym_UR_DQUOTE] = ACTIONS(3221), - [anon_sym_u8R_DQUOTE] = ACTIONS(3221), - [anon_sym_co_await] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_requires] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [847] = { - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_include_token1] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token2] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym___cdecl] = ACTIONS(3219), - [anon_sym___clrcall] = ACTIONS(3219), - [anon_sym___stdcall] = ACTIONS(3219), - [anon_sym___fastcall] = ACTIONS(3219), - [anon_sym___thiscall] = ACTIONS(3219), - [anon_sym___vectorcall] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym___try] = ACTIONS(3219), - [anon_sym___leave] = ACTIONS(3219), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_compl] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3219), - [anon_sym___alignof__] = ACTIONS(3219), - [anon_sym___alignof] = ACTIONS(3219), - [anon_sym__alignof] = ACTIONS(3219), - [anon_sym_alignof] = ACTIONS(3219), - [anon_sym__Alignof] = ACTIONS(3219), - [anon_sym_offsetof] = ACTIONS(3219), - [anon_sym__Generic] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym___asm__] = ACTIONS(3219), - [sym_number_literal] = ACTIONS(3221), - [anon_sym_L_SQUOTE] = ACTIONS(3221), - [anon_sym_u_SQUOTE] = ACTIONS(3221), - [anon_sym_U_SQUOTE] = ACTIONS(3221), - [anon_sym_u8_SQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_L_DQUOTE] = ACTIONS(3221), - [anon_sym_u_DQUOTE] = ACTIONS(3221), - [anon_sym_U_DQUOTE] = ACTIONS(3221), - [anon_sym_u8_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [anon_sym_NULL] = ACTIONS(3219), - [anon_sym_nullptr] = ACTIONS(3219), + [807] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_explicit] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_operator] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_static_assert] = ACTIONS(3219), - [anon_sym_concept] = ACTIONS(3219), - [anon_sym_co_return] = ACTIONS(3219), - [anon_sym_co_yield] = ACTIONS(3219), - [anon_sym_R_DQUOTE] = ACTIONS(3221), - [anon_sym_LR_DQUOTE] = ACTIONS(3221), - [anon_sym_uR_DQUOTE] = ACTIONS(3221), - [anon_sym_UR_DQUOTE] = ACTIONS(3221), - [anon_sym_u8R_DQUOTE] = ACTIONS(3221), - [anon_sym_co_await] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_requires] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [848] = { - [sym_identifier] = ACTIONS(3259), - [aux_sym_preproc_include_token1] = ACTIONS(3259), - [aux_sym_preproc_def_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token2] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3259), - [sym_preproc_directive] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3261), - [anon_sym___extension__] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3259), - [anon_sym_extern] = ACTIONS(3259), - [anon_sym___attribute__] = ACTIONS(3259), - [anon_sym_COLON_COLON] = ACTIONS(3261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3261), - [anon_sym___declspec] = ACTIONS(3259), - [anon_sym___based] = ACTIONS(3259), - [anon_sym___cdecl] = ACTIONS(3259), - [anon_sym___clrcall] = ACTIONS(3259), - [anon_sym___stdcall] = ACTIONS(3259), - [anon_sym___fastcall] = ACTIONS(3259), - [anon_sym___thiscall] = ACTIONS(3259), - [anon_sym___vectorcall] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_signed] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_register] = ACTIONS(3259), - [anon_sym_inline] = ACTIONS(3259), - [anon_sym___inline] = ACTIONS(3259), - [anon_sym___inline__] = ACTIONS(3259), - [anon_sym___forceinline] = ACTIONS(3259), - [anon_sym_thread_local] = ACTIONS(3259), - [anon_sym___thread] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_constexpr] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym___restrict__] = ACTIONS(3259), - [anon_sym__Atomic] = ACTIONS(3259), - [anon_sym__Noreturn] = ACTIONS(3259), - [anon_sym_noreturn] = ACTIONS(3259), - [anon_sym_mutable] = ACTIONS(3259), - [anon_sym_constinit] = ACTIONS(3259), - [anon_sym_consteval] = ACTIONS(3259), - [sym_primitive_type] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym___try] = ACTIONS(3259), - [anon_sym___leave] = ACTIONS(3259), - [anon_sym_not] = ACTIONS(3259), - [anon_sym_compl] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3259), - [anon_sym___alignof__] = ACTIONS(3259), - [anon_sym___alignof] = ACTIONS(3259), - [anon_sym__alignof] = ACTIONS(3259), - [anon_sym_alignof] = ACTIONS(3259), - [anon_sym__Alignof] = ACTIONS(3259), - [anon_sym_offsetof] = ACTIONS(3259), - [anon_sym__Generic] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym___asm__] = ACTIONS(3259), - [sym_number_literal] = ACTIONS(3261), - [anon_sym_L_SQUOTE] = ACTIONS(3261), - [anon_sym_u_SQUOTE] = ACTIONS(3261), - [anon_sym_U_SQUOTE] = ACTIONS(3261), - [anon_sym_u8_SQUOTE] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3261), - [anon_sym_L_DQUOTE] = ACTIONS(3261), - [anon_sym_u_DQUOTE] = ACTIONS(3261), - [anon_sym_U_DQUOTE] = ACTIONS(3261), - [anon_sym_u8_DQUOTE] = ACTIONS(3261), - [anon_sym_DQUOTE] = ACTIONS(3261), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [anon_sym_NULL] = ACTIONS(3259), - [anon_sym_nullptr] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3259), - [anon_sym_decltype] = ACTIONS(3259), - [anon_sym_virtual] = ACTIONS(3259), - [anon_sym_alignas] = ACTIONS(3259), - [anon_sym_explicit] = ACTIONS(3259), - [anon_sym_typename] = ACTIONS(3259), - [anon_sym_template] = ACTIONS(3259), - [anon_sym_operator] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_static_assert] = ACTIONS(3259), - [anon_sym_concept] = ACTIONS(3259), - [anon_sym_co_return] = ACTIONS(3259), - [anon_sym_co_yield] = ACTIONS(3259), - [anon_sym_R_DQUOTE] = ACTIONS(3261), - [anon_sym_LR_DQUOTE] = ACTIONS(3261), - [anon_sym_uR_DQUOTE] = ACTIONS(3261), - [anon_sym_UR_DQUOTE] = ACTIONS(3261), - [anon_sym_u8R_DQUOTE] = ACTIONS(3261), - [anon_sym_co_await] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_requires] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), + [808] = { + [ts_builtin_sym_end] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_include_token1] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym___cdecl] = ACTIONS(2895), + [anon_sym___clrcall] = ACTIONS(2895), + [anon_sym___stdcall] = ACTIONS(2895), + [anon_sym___fastcall] = ACTIONS(2895), + [anon_sym___thiscall] = ACTIONS(2895), + [anon_sym___vectorcall] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_else] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym___try] = ACTIONS(2895), + [anon_sym___leave] = ACTIONS(2895), + [anon_sym_not] = ACTIONS(2895), + [anon_sym_compl] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_sizeof] = ACTIONS(2895), + [anon_sym___alignof__] = ACTIONS(2895), + [anon_sym___alignof] = ACTIONS(2895), + [anon_sym__alignof] = ACTIONS(2895), + [anon_sym_alignof] = ACTIONS(2895), + [anon_sym__Alignof] = ACTIONS(2895), + [anon_sym_offsetof] = ACTIONS(2895), + [anon_sym__Generic] = ACTIONS(2895), + [anon_sym_asm] = ACTIONS(2895), + [anon_sym___asm__] = ACTIONS(2895), + [sym_number_literal] = ACTIONS(2897), + [anon_sym_L_SQUOTE] = ACTIONS(2897), + [anon_sym_u_SQUOTE] = ACTIONS(2897), + [anon_sym_U_SQUOTE] = ACTIONS(2897), + [anon_sym_u8_SQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_L_DQUOTE] = ACTIONS(2897), + [anon_sym_u_DQUOTE] = ACTIONS(2897), + [anon_sym_U_DQUOTE] = ACTIONS(2897), + [anon_sym_u8_DQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [anon_sym_NULL] = ACTIONS(2895), + [anon_sym_nullptr] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + [anon_sym_concept] = ACTIONS(2895), + [anon_sym_co_return] = ACTIONS(2895), + [anon_sym_co_yield] = ACTIONS(2895), + [anon_sym_R_DQUOTE] = ACTIONS(2897), + [anon_sym_LR_DQUOTE] = ACTIONS(2897), + [anon_sym_uR_DQUOTE] = ACTIONS(2897), + [anon_sym_UR_DQUOTE] = ACTIONS(2897), + [anon_sym_u8R_DQUOTE] = ACTIONS(2897), + [anon_sym_co_await] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_requires] = ACTIONS(2895), + [sym_this] = ACTIONS(2895), }, - [849] = { - [sym_identifier] = ACTIONS(3132), - [aux_sym_preproc_include_token1] = ACTIONS(3132), - [aux_sym_preproc_def_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token2] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), - [sym_preproc_directive] = ACTIONS(3132), - [anon_sym_LPAREN2] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_STAR] = ACTIONS(3134), - [anon_sym_AMP_AMP] = ACTIONS(3134), - [anon_sym_AMP] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3134), - [anon_sym___extension__] = ACTIONS(3132), - [anon_sym_typedef] = ACTIONS(3132), - [anon_sym_extern] = ACTIONS(3132), - [anon_sym___attribute__] = ACTIONS(3132), - [anon_sym_COLON_COLON] = ACTIONS(3134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), - [anon_sym___declspec] = ACTIONS(3132), - [anon_sym___based] = ACTIONS(3132), - [anon_sym___cdecl] = ACTIONS(3132), - [anon_sym___clrcall] = ACTIONS(3132), - [anon_sym___stdcall] = ACTIONS(3132), - [anon_sym___fastcall] = ACTIONS(3132), - [anon_sym___thiscall] = ACTIONS(3132), - [anon_sym___vectorcall] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3134), - [anon_sym_signed] = ACTIONS(3132), - [anon_sym_unsigned] = ACTIONS(3132), - [anon_sym_long] = ACTIONS(3132), - [anon_sym_short] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_register] = ACTIONS(3132), - [anon_sym_inline] = ACTIONS(3132), - [anon_sym___inline] = ACTIONS(3132), - [anon_sym___inline__] = ACTIONS(3132), - [anon_sym___forceinline] = ACTIONS(3132), - [anon_sym_thread_local] = ACTIONS(3132), - [anon_sym___thread] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_constexpr] = ACTIONS(3132), - [anon_sym_volatile] = ACTIONS(3132), - [anon_sym_restrict] = ACTIONS(3132), - [anon_sym___restrict__] = ACTIONS(3132), - [anon_sym__Atomic] = ACTIONS(3132), - [anon_sym__Noreturn] = ACTIONS(3132), - [anon_sym_noreturn] = ACTIONS(3132), - [anon_sym_mutable] = ACTIONS(3132), - [anon_sym_constinit] = ACTIONS(3132), - [anon_sym_consteval] = ACTIONS(3132), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(3132), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_case] = ACTIONS(3132), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_goto] = ACTIONS(3132), - [anon_sym___try] = ACTIONS(3132), - [anon_sym___leave] = ACTIONS(3132), - [anon_sym_not] = ACTIONS(3132), - [anon_sym_compl] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3134), - [anon_sym_sizeof] = ACTIONS(3132), - [anon_sym___alignof__] = ACTIONS(3132), - [anon_sym___alignof] = ACTIONS(3132), - [anon_sym__alignof] = ACTIONS(3132), - [anon_sym_alignof] = ACTIONS(3132), - [anon_sym__Alignof] = ACTIONS(3132), - [anon_sym_offsetof] = ACTIONS(3132), - [anon_sym__Generic] = ACTIONS(3132), - [anon_sym_asm] = ACTIONS(3132), - [anon_sym___asm__] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3134), - [anon_sym_u_SQUOTE] = ACTIONS(3134), - [anon_sym_U_SQUOTE] = ACTIONS(3134), - [anon_sym_u8_SQUOTE] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3134), - [anon_sym_L_DQUOTE] = ACTIONS(3134), - [anon_sym_u_DQUOTE] = ACTIONS(3134), - [anon_sym_U_DQUOTE] = ACTIONS(3134), - [anon_sym_u8_DQUOTE] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(3134), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [anon_sym_NULL] = ACTIONS(3132), - [anon_sym_nullptr] = ACTIONS(3132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3132), - [anon_sym_decltype] = ACTIONS(3132), - [anon_sym_virtual] = ACTIONS(3132), - [anon_sym_alignas] = ACTIONS(3132), - [anon_sym_explicit] = ACTIONS(3132), - [anon_sym_typename] = ACTIONS(3132), - [anon_sym_template] = ACTIONS(3132), - [anon_sym_operator] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_static_assert] = ACTIONS(3132), - [anon_sym_concept] = ACTIONS(3132), - [anon_sym_co_return] = ACTIONS(3132), - [anon_sym_co_yield] = ACTIONS(3132), - [anon_sym_R_DQUOTE] = ACTIONS(3134), - [anon_sym_LR_DQUOTE] = ACTIONS(3134), - [anon_sym_uR_DQUOTE] = ACTIONS(3134), - [anon_sym_UR_DQUOTE] = ACTIONS(3134), - [anon_sym_u8R_DQUOTE] = ACTIONS(3134), - [anon_sym_co_await] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_requires] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), + [809] = { + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_include_token1] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym___extension__] = ACTIONS(2879), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym___cdecl] = ACTIONS(2879), + [anon_sym___clrcall] = ACTIONS(2879), + [anon_sym___stdcall] = ACTIONS(2879), + [anon_sym___fastcall] = ACTIONS(2879), + [anon_sym___thiscall] = ACTIONS(2879), + [anon_sym___vectorcall] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2881), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym___inline] = ACTIONS(2879), + [anon_sym___inline__] = ACTIONS(2879), + [anon_sym___forceinline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym___thread] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym___restrict__] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym__Noreturn] = ACTIONS(2879), + [anon_sym_noreturn] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_else] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym___try] = ACTIONS(2879), + [anon_sym___leave] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [anon_sym___alignof__] = ACTIONS(2879), + [anon_sym___alignof] = ACTIONS(2879), + [anon_sym__alignof] = ACTIONS(2879), + [anon_sym_alignof] = ACTIONS(2879), + [anon_sym__Alignof] = ACTIONS(2879), + [anon_sym_offsetof] = ACTIONS(2879), + [anon_sym__Generic] = ACTIONS(2879), + [anon_sym_asm] = ACTIONS(2879), + [anon_sym___asm__] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [anon_sym_NULL] = ACTIONS(2879), + [anon_sym_nullptr] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_alignas] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), + [anon_sym_concept] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_R_DQUOTE] = ACTIONS(2881), + [anon_sym_LR_DQUOTE] = ACTIONS(2881), + [anon_sym_uR_DQUOTE] = ACTIONS(2881), + [anon_sym_UR_DQUOTE] = ACTIONS(2881), + [anon_sym_u8R_DQUOTE] = ACTIONS(2881), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), }, - [850] = { - [sym_identifier] = ACTIONS(3112), - [aux_sym_preproc_include_token1] = ACTIONS(3112), - [aux_sym_preproc_def_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token2] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), - [sym_preproc_directive] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym___extension__] = ACTIONS(3112), - [anon_sym_typedef] = ACTIONS(3112), - [anon_sym_extern] = ACTIONS(3112), - [anon_sym___attribute__] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), - [anon_sym___declspec] = ACTIONS(3112), - [anon_sym___based] = ACTIONS(3112), - [anon_sym___cdecl] = ACTIONS(3112), - [anon_sym___clrcall] = ACTIONS(3112), - [anon_sym___stdcall] = ACTIONS(3112), - [anon_sym___fastcall] = ACTIONS(3112), - [anon_sym___thiscall] = ACTIONS(3112), - [anon_sym___vectorcall] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3114), - [anon_sym_signed] = ACTIONS(3112), - [anon_sym_unsigned] = ACTIONS(3112), - [anon_sym_long] = ACTIONS(3112), - [anon_sym_short] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_register] = ACTIONS(3112), - [anon_sym_inline] = ACTIONS(3112), - [anon_sym___inline] = ACTIONS(3112), - [anon_sym___inline__] = ACTIONS(3112), - [anon_sym___forceinline] = ACTIONS(3112), - [anon_sym_thread_local] = ACTIONS(3112), - [anon_sym___thread] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_constexpr] = ACTIONS(3112), - [anon_sym_volatile] = ACTIONS(3112), - [anon_sym_restrict] = ACTIONS(3112), - [anon_sym___restrict__] = ACTIONS(3112), - [anon_sym__Atomic] = ACTIONS(3112), - [anon_sym__Noreturn] = ACTIONS(3112), - [anon_sym_noreturn] = ACTIONS(3112), - [anon_sym_mutable] = ACTIONS(3112), - [anon_sym_constinit] = ACTIONS(3112), - [anon_sym_consteval] = ACTIONS(3112), - [sym_primitive_type] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3112), - [anon_sym_union] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3112), - [anon_sym_default] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_goto] = ACTIONS(3112), - [anon_sym___try] = ACTIONS(3112), - [anon_sym___leave] = ACTIONS(3112), - [anon_sym_not] = ACTIONS(3112), - [anon_sym_compl] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3114), - [anon_sym_sizeof] = ACTIONS(3112), - [anon_sym___alignof__] = ACTIONS(3112), - [anon_sym___alignof] = ACTIONS(3112), - [anon_sym__alignof] = ACTIONS(3112), - [anon_sym_alignof] = ACTIONS(3112), - [anon_sym__Alignof] = ACTIONS(3112), - [anon_sym_offsetof] = ACTIONS(3112), - [anon_sym__Generic] = ACTIONS(3112), - [anon_sym_asm] = ACTIONS(3112), - [anon_sym___asm__] = ACTIONS(3112), - [sym_number_literal] = ACTIONS(3114), - [anon_sym_L_SQUOTE] = ACTIONS(3114), - [anon_sym_u_SQUOTE] = ACTIONS(3114), - [anon_sym_U_SQUOTE] = ACTIONS(3114), - [anon_sym_u8_SQUOTE] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3114), - [anon_sym_L_DQUOTE] = ACTIONS(3114), - [anon_sym_u_DQUOTE] = ACTIONS(3114), - [anon_sym_U_DQUOTE] = ACTIONS(3114), - [anon_sym_u8_DQUOTE] = ACTIONS(3114), - [anon_sym_DQUOTE] = ACTIONS(3114), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [anon_sym_NULL] = ACTIONS(3112), - [anon_sym_nullptr] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3112), - [anon_sym_decltype] = ACTIONS(3112), - [anon_sym_virtual] = ACTIONS(3112), - [anon_sym_alignas] = ACTIONS(3112), - [anon_sym_explicit] = ACTIONS(3112), - [anon_sym_typename] = ACTIONS(3112), - [anon_sym_template] = ACTIONS(3112), - [anon_sym_operator] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_static_assert] = ACTIONS(3112), - [anon_sym_concept] = ACTIONS(3112), - [anon_sym_co_return] = ACTIONS(3112), - [anon_sym_co_yield] = ACTIONS(3112), - [anon_sym_R_DQUOTE] = ACTIONS(3114), - [anon_sym_LR_DQUOTE] = ACTIONS(3114), - [anon_sym_uR_DQUOTE] = ACTIONS(3114), - [anon_sym_UR_DQUOTE] = ACTIONS(3114), - [anon_sym_u8R_DQUOTE] = ACTIONS(3114), - [anon_sym_co_await] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_requires] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), + [810] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [851] = { - [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_extern] = ACTIONS(3180), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3180), - [anon_sym_constinit] = ACTIONS(3180), - [anon_sym_consteval] = 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_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_virtual] = ACTIONS(3180), - [anon_sym_alignas] = ACTIONS(3180), - [anon_sym_explicit] = ACTIONS(3180), - [anon_sym_typename] = 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_using] = 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_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), - [sym_this] = ACTIONS(3180), + [811] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [852] = { - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_include_token1] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token2] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym___cdecl] = ACTIONS(3148), - [anon_sym___clrcall] = ACTIONS(3148), - [anon_sym___stdcall] = ACTIONS(3148), - [anon_sym___fastcall] = ACTIONS(3148), - [anon_sym___thiscall] = ACTIONS(3148), - [anon_sym___vectorcall] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_goto] = ACTIONS(3148), - [anon_sym___try] = ACTIONS(3148), - [anon_sym___leave] = ACTIONS(3148), - [anon_sym_not] = ACTIONS(3148), - [anon_sym_compl] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_sizeof] = ACTIONS(3148), - [anon_sym___alignof__] = ACTIONS(3148), - [anon_sym___alignof] = ACTIONS(3148), - [anon_sym__alignof] = ACTIONS(3148), - [anon_sym_alignof] = ACTIONS(3148), - [anon_sym__Alignof] = ACTIONS(3148), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3148), - [anon_sym_asm] = ACTIONS(3148), - [anon_sym___asm__] = ACTIONS(3148), - [sym_number_literal] = ACTIONS(3150), - [anon_sym_L_SQUOTE] = ACTIONS(3150), - [anon_sym_u_SQUOTE] = ACTIONS(3150), - [anon_sym_U_SQUOTE] = ACTIONS(3150), - [anon_sym_u8_SQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_L_DQUOTE] = ACTIONS(3150), - [anon_sym_u_DQUOTE] = ACTIONS(3150), - [anon_sym_U_DQUOTE] = ACTIONS(3150), - [anon_sym_u8_DQUOTE] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [anon_sym_NULL] = ACTIONS(3148), - [anon_sym_nullptr] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - [anon_sym_concept] = ACTIONS(3148), - [anon_sym_co_return] = ACTIONS(3148), - [anon_sym_co_yield] = ACTIONS(3148), - [anon_sym_R_DQUOTE] = ACTIONS(3150), - [anon_sym_LR_DQUOTE] = ACTIONS(3150), - [anon_sym_uR_DQUOTE] = ACTIONS(3150), - [anon_sym_UR_DQUOTE] = ACTIONS(3150), - [anon_sym_u8R_DQUOTE] = ACTIONS(3150), - [anon_sym_co_await] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_requires] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), + [812] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [853] = { - [sym_identifier] = ACTIONS(3211), - [aux_sym_preproc_include_token1] = ACTIONS(3211), - [aux_sym_preproc_def_token1] = ACTIONS(3211), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_if_token2] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), - [sym_preproc_directive] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym_COLON_COLON] = ACTIONS(3213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), - [anon_sym___declspec] = ACTIONS(3211), - [anon_sym___based] = ACTIONS(3211), - [anon_sym___cdecl] = ACTIONS(3211), - [anon_sym___clrcall] = ACTIONS(3211), - [anon_sym___stdcall] = ACTIONS(3211), - [anon_sym___fastcall] = ACTIONS(3211), - [anon_sym___thiscall] = ACTIONS(3211), - [anon_sym___vectorcall] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_signed] = ACTIONS(3211), - [anon_sym_unsigned] = ACTIONS(3211), - [anon_sym_long] = ACTIONS(3211), - [anon_sym_short] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_register] = ACTIONS(3211), - [anon_sym_inline] = ACTIONS(3211), - [anon_sym___inline] = ACTIONS(3211), - [anon_sym___inline__] = ACTIONS(3211), - [anon_sym___forceinline] = ACTIONS(3211), - [anon_sym_thread_local] = ACTIONS(3211), - [anon_sym___thread] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_constexpr] = ACTIONS(3211), - [anon_sym_volatile] = ACTIONS(3211), - [anon_sym_restrict] = ACTIONS(3211), - [anon_sym___restrict__] = ACTIONS(3211), - [anon_sym__Atomic] = ACTIONS(3211), - [anon_sym__Noreturn] = ACTIONS(3211), - [anon_sym_noreturn] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [sym_primitive_type] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_default] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym___try] = ACTIONS(3211), - [anon_sym___leave] = ACTIONS(3211), - [anon_sym_not] = ACTIONS(3211), - [anon_sym_compl] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3211), - [anon_sym___alignof__] = ACTIONS(3211), - [anon_sym___alignof] = ACTIONS(3211), - [anon_sym__alignof] = ACTIONS(3211), - [anon_sym_alignof] = ACTIONS(3211), - [anon_sym__Alignof] = ACTIONS(3211), - [anon_sym_offsetof] = ACTIONS(3211), - [anon_sym__Generic] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym___asm__] = ACTIONS(3211), - [sym_number_literal] = ACTIONS(3213), - [anon_sym_L_SQUOTE] = ACTIONS(3213), - [anon_sym_u_SQUOTE] = ACTIONS(3213), - [anon_sym_U_SQUOTE] = ACTIONS(3213), - [anon_sym_u8_SQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_L_DQUOTE] = ACTIONS(3213), - [anon_sym_u_DQUOTE] = ACTIONS(3213), - [anon_sym_U_DQUOTE] = ACTIONS(3213), - [anon_sym_u8_DQUOTE] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [anon_sym_NULL] = ACTIONS(3211), - [anon_sym_nullptr] = ACTIONS(3211), + [813] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3211), - [anon_sym_decltype] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), - [anon_sym_concept] = ACTIONS(3211), - [anon_sym_co_return] = ACTIONS(3211), - [anon_sym_co_yield] = ACTIONS(3211), - [anon_sym_R_DQUOTE] = ACTIONS(3213), - [anon_sym_LR_DQUOTE] = ACTIONS(3213), - [anon_sym_uR_DQUOTE] = ACTIONS(3213), - [anon_sym_UR_DQUOTE] = ACTIONS(3213), - [anon_sym_u8R_DQUOTE] = ACTIONS(3213), - [anon_sym_co_await] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_requires] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [854] = { - [sym_identifier] = ACTIONS(3266), - [aux_sym_preproc_include_token1] = ACTIONS(3266), - [aux_sym_preproc_def_token1] = ACTIONS(3266), - [aux_sym_preproc_if_token1] = ACTIONS(3266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), - [sym_preproc_directive] = ACTIONS(3266), - [anon_sym_LPAREN2] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_AMP] = ACTIONS(3266), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym___extension__] = ACTIONS(3266), - [anon_sym_typedef] = ACTIONS(3266), - [anon_sym_extern] = ACTIONS(3266), - [anon_sym___attribute__] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(3268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), - [anon_sym___declspec] = ACTIONS(3266), - [anon_sym___based] = ACTIONS(3266), - [anon_sym___cdecl] = ACTIONS(3266), - [anon_sym___clrcall] = ACTIONS(3266), - [anon_sym___stdcall] = ACTIONS(3266), - [anon_sym___fastcall] = ACTIONS(3266), - [anon_sym___thiscall] = ACTIONS(3266), - [anon_sym___vectorcall] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_RBRACE] = ACTIONS(3268), - [anon_sym_signed] = ACTIONS(3266), - [anon_sym_unsigned] = ACTIONS(3266), - [anon_sym_long] = ACTIONS(3266), - [anon_sym_short] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_register] = ACTIONS(3266), - [anon_sym_inline] = ACTIONS(3266), - [anon_sym___inline] = ACTIONS(3266), - [anon_sym___inline__] = ACTIONS(3266), - [anon_sym___forceinline] = ACTIONS(3266), - [anon_sym_thread_local] = ACTIONS(3266), - [anon_sym___thread] = ACTIONS(3266), - [anon_sym_const] = ACTIONS(3266), - [anon_sym_constexpr] = ACTIONS(3266), - [anon_sym_volatile] = ACTIONS(3266), - [anon_sym_restrict] = ACTIONS(3266), - [anon_sym___restrict__] = ACTIONS(3266), - [anon_sym__Atomic] = ACTIONS(3266), - [anon_sym__Noreturn] = ACTIONS(3266), - [anon_sym_noreturn] = ACTIONS(3266), - [anon_sym_mutable] = ACTIONS(3266), - [anon_sym_constinit] = ACTIONS(3266), - [anon_sym_consteval] = ACTIONS(3266), - [sym_primitive_type] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_struct] = ACTIONS(3266), - [anon_sym_union] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_switch] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_default] = ACTIONS(3266), - [anon_sym_while] = ACTIONS(3266), - [anon_sym_do] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_goto] = ACTIONS(3266), - [anon_sym___try] = ACTIONS(3266), - [anon_sym___leave] = ACTIONS(3266), - [anon_sym_not] = ACTIONS(3266), - [anon_sym_compl] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_sizeof] = ACTIONS(3266), - [anon_sym___alignof__] = ACTIONS(3266), - [anon_sym___alignof] = ACTIONS(3266), - [anon_sym__alignof] = ACTIONS(3266), - [anon_sym_alignof] = ACTIONS(3266), - [anon_sym__Alignof] = ACTIONS(3266), - [anon_sym_offsetof] = ACTIONS(3266), - [anon_sym__Generic] = ACTIONS(3266), - [anon_sym_asm] = ACTIONS(3266), - [anon_sym___asm__] = ACTIONS(3266), - [sym_number_literal] = ACTIONS(3268), - [anon_sym_L_SQUOTE] = ACTIONS(3268), - [anon_sym_u_SQUOTE] = ACTIONS(3268), - [anon_sym_U_SQUOTE] = ACTIONS(3268), - [anon_sym_u8_SQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_L_DQUOTE] = ACTIONS(3268), - [anon_sym_u_DQUOTE] = ACTIONS(3268), - [anon_sym_U_DQUOTE] = ACTIONS(3268), - [anon_sym_u8_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [anon_sym_NULL] = ACTIONS(3266), - [anon_sym_nullptr] = ACTIONS(3266), + [814] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3266), - [anon_sym_decltype] = ACTIONS(3266), - [anon_sym_virtual] = ACTIONS(3266), - [anon_sym_alignas] = ACTIONS(3266), - [anon_sym_explicit] = ACTIONS(3266), - [anon_sym_typename] = ACTIONS(3266), - [anon_sym_template] = ACTIONS(3266), - [anon_sym_operator] = ACTIONS(3266), - [anon_sym_try] = ACTIONS(3266), - [anon_sym_delete] = ACTIONS(3266), - [anon_sym_throw] = ACTIONS(3266), - [anon_sym_namespace] = ACTIONS(3266), - [anon_sym_using] = ACTIONS(3266), - [anon_sym_static_assert] = ACTIONS(3266), - [anon_sym_concept] = ACTIONS(3266), - [anon_sym_co_return] = ACTIONS(3266), - [anon_sym_co_yield] = ACTIONS(3266), - [anon_sym_R_DQUOTE] = ACTIONS(3268), - [anon_sym_LR_DQUOTE] = ACTIONS(3268), - [anon_sym_uR_DQUOTE] = ACTIONS(3268), - [anon_sym_UR_DQUOTE] = ACTIONS(3268), - [anon_sym_u8R_DQUOTE] = ACTIONS(3268), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3266), - [anon_sym_requires] = ACTIONS(3266), - [sym_this] = ACTIONS(3266), - }, - [855] = { - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_include_token1] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym___cdecl] = ACTIONS(3251), - [anon_sym___clrcall] = ACTIONS(3251), - [anon_sym___stdcall] = ACTIONS(3251), - [anon_sym___fastcall] = ACTIONS(3251), - [anon_sym___thiscall] = ACTIONS(3251), - [anon_sym___vectorcall] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym___try] = ACTIONS(3251), - [anon_sym___leave] = ACTIONS(3251), - [anon_sym_not] = ACTIONS(3251), - [anon_sym_compl] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3251), - [anon_sym___alignof__] = ACTIONS(3251), - [anon_sym___alignof] = ACTIONS(3251), - [anon_sym__alignof] = ACTIONS(3251), - [anon_sym_alignof] = ACTIONS(3251), - [anon_sym__Alignof] = ACTIONS(3251), - [anon_sym_offsetof] = ACTIONS(3251), - [anon_sym__Generic] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym___asm__] = ACTIONS(3251), - [sym_number_literal] = ACTIONS(3253), - [anon_sym_L_SQUOTE] = ACTIONS(3253), - [anon_sym_u_SQUOTE] = ACTIONS(3253), - [anon_sym_U_SQUOTE] = ACTIONS(3253), - [anon_sym_u8_SQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_L_DQUOTE] = ACTIONS(3253), - [anon_sym_u_DQUOTE] = ACTIONS(3253), - [anon_sym_U_DQUOTE] = ACTIONS(3253), - [anon_sym_u8_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [anon_sym_NULL] = ACTIONS(3251), - [anon_sym_nullptr] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), - [anon_sym_concept] = ACTIONS(3251), - [anon_sym_co_return] = ACTIONS(3251), - [anon_sym_co_yield] = ACTIONS(3251), - [anon_sym_R_DQUOTE] = ACTIONS(3253), - [anon_sym_LR_DQUOTE] = ACTIONS(3253), - [anon_sym_uR_DQUOTE] = ACTIONS(3253), - [anon_sym_UR_DQUOTE] = ACTIONS(3253), - [anon_sym_u8R_DQUOTE] = ACTIONS(3253), - [anon_sym_co_await] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_requires] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - }, - [856] = { - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [anon_sym_RPAREN] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym___cdecl] = ACTIONS(2144), - [anon_sym___clrcall] = ACTIONS(2144), - [anon_sym___stdcall] = ACTIONS(2144), - [anon_sym___fastcall] = ACTIONS(2144), - [anon_sym___thiscall] = ACTIONS(2144), - [anon_sym___vectorcall] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_case] = ACTIONS(2144), - [anon_sym_default] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2144), - [anon_sym_compl] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2144), - [anon_sym___alignof__] = ACTIONS(2144), - [anon_sym___alignof] = ACTIONS(2144), - [anon_sym__alignof] = ACTIONS(2144), - [anon_sym_alignof] = ACTIONS(2144), - [anon_sym__Alignof] = ACTIONS(2144), - [anon_sym_offsetof] = ACTIONS(2144), - [anon_sym__Generic] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym___asm__] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2142), - [anon_sym_L_SQUOTE] = ACTIONS(2142), - [anon_sym_u_SQUOTE] = ACTIONS(2142), - [anon_sym_U_SQUOTE] = ACTIONS(2142), - [anon_sym_u8_SQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_L_DQUOTE] = ACTIONS(2142), - [anon_sym_u_DQUOTE] = ACTIONS(2142), - [anon_sym_U_DQUOTE] = ACTIONS(2142), - [anon_sym_u8_DQUOTE] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [anon_sym_NULL] = ACTIONS(2144), - [anon_sym_nullptr] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_delete] = ACTIONS(2144), - [anon_sym_throw] = ACTIONS(2144), - [anon_sym_namespace] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_concept] = ACTIONS(2144), - [anon_sym_co_return] = ACTIONS(2144), - [anon_sym_co_yield] = ACTIONS(2144), - [anon_sym_R_DQUOTE] = ACTIONS(2142), - [anon_sym_LR_DQUOTE] = ACTIONS(2142), - [anon_sym_uR_DQUOTE] = ACTIONS(2142), - [anon_sym_UR_DQUOTE] = ACTIONS(2142), - [anon_sym_u8R_DQUOTE] = ACTIONS(2142), - [anon_sym_co_await] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2144), - [anon_sym_requires] = ACTIONS(2144), - [sym_this] = ACTIONS(2144), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [857] = { - [sym_identifier] = ACTIONS(3247), - [aux_sym_preproc_include_token1] = ACTIONS(3247), - [aux_sym_preproc_def_token1] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3247), - [sym_preproc_directive] = ACTIONS(3247), - [anon_sym_LPAREN2] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3249), - [anon_sym_AMP_AMP] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym___extension__] = ACTIONS(3247), - [anon_sym_typedef] = ACTIONS(3247), - [anon_sym_extern] = ACTIONS(3247), - [anon_sym___attribute__] = ACTIONS(3247), - [anon_sym_COLON_COLON] = ACTIONS(3249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3249), - [anon_sym___declspec] = ACTIONS(3247), - [anon_sym___based] = ACTIONS(3247), - [anon_sym___cdecl] = ACTIONS(3247), - [anon_sym___clrcall] = ACTIONS(3247), - [anon_sym___stdcall] = ACTIONS(3247), - [anon_sym___fastcall] = ACTIONS(3247), - [anon_sym___thiscall] = ACTIONS(3247), - [anon_sym___vectorcall] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_signed] = ACTIONS(3247), - [anon_sym_unsigned] = ACTIONS(3247), - [anon_sym_long] = ACTIONS(3247), - [anon_sym_short] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_register] = ACTIONS(3247), - [anon_sym_inline] = ACTIONS(3247), - [anon_sym___inline] = ACTIONS(3247), - [anon_sym___inline__] = ACTIONS(3247), - [anon_sym___forceinline] = ACTIONS(3247), - [anon_sym_thread_local] = ACTIONS(3247), - [anon_sym___thread] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_constexpr] = ACTIONS(3247), - [anon_sym_volatile] = ACTIONS(3247), - [anon_sym_restrict] = ACTIONS(3247), - [anon_sym___restrict__] = ACTIONS(3247), - [anon_sym__Atomic] = ACTIONS(3247), - [anon_sym__Noreturn] = ACTIONS(3247), - [anon_sym_noreturn] = ACTIONS(3247), - [anon_sym_mutable] = ACTIONS(3247), - [anon_sym_constinit] = ACTIONS(3247), - [anon_sym_consteval] = ACTIONS(3247), - [sym_primitive_type] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_case] = ACTIONS(3247), - [anon_sym_default] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_goto] = ACTIONS(3247), - [anon_sym___try] = ACTIONS(3247), - [anon_sym___leave] = ACTIONS(3247), - [anon_sym_not] = ACTIONS(3247), - [anon_sym_compl] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_sizeof] = ACTIONS(3247), - [anon_sym___alignof__] = ACTIONS(3247), - [anon_sym___alignof] = ACTIONS(3247), - [anon_sym__alignof] = ACTIONS(3247), - [anon_sym_alignof] = ACTIONS(3247), - [anon_sym__Alignof] = ACTIONS(3247), - [anon_sym_offsetof] = ACTIONS(3247), - [anon_sym__Generic] = ACTIONS(3247), - [anon_sym_asm] = ACTIONS(3247), - [anon_sym___asm__] = ACTIONS(3247), - [sym_number_literal] = ACTIONS(3249), - [anon_sym_L_SQUOTE] = ACTIONS(3249), - [anon_sym_u_SQUOTE] = ACTIONS(3249), - [anon_sym_U_SQUOTE] = ACTIONS(3249), - [anon_sym_u8_SQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_L_DQUOTE] = ACTIONS(3249), - [anon_sym_u_DQUOTE] = ACTIONS(3249), - [anon_sym_U_DQUOTE] = ACTIONS(3249), - [anon_sym_u8_DQUOTE] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [anon_sym_NULL] = ACTIONS(3247), - [anon_sym_nullptr] = ACTIONS(3247), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3247), - [anon_sym_decltype] = ACTIONS(3247), - [anon_sym_virtual] = ACTIONS(3247), - [anon_sym_alignas] = ACTIONS(3247), - [anon_sym_explicit] = ACTIONS(3247), - [anon_sym_typename] = ACTIONS(3247), - [anon_sym_template] = ACTIONS(3247), - [anon_sym_operator] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_static_assert] = ACTIONS(3247), - [anon_sym_concept] = ACTIONS(3247), - [anon_sym_co_return] = ACTIONS(3247), - [anon_sym_co_yield] = ACTIONS(3247), - [anon_sym_R_DQUOTE] = ACTIONS(3249), - [anon_sym_LR_DQUOTE] = ACTIONS(3249), - [anon_sym_uR_DQUOTE] = ACTIONS(3249), - [anon_sym_UR_DQUOTE] = ACTIONS(3249), - [anon_sym_u8R_DQUOTE] = ACTIONS(3249), - [anon_sym_co_await] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_requires] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), + [815] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [858] = { - [sym_identifier] = ACTIONS(3194), - [aux_sym_preproc_include_token1] = ACTIONS(3194), - [aux_sym_preproc_def_token1] = ACTIONS(3194), - [aux_sym_preproc_if_token1] = ACTIONS(3194), - [aux_sym_preproc_if_token2] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3194), - [sym_preproc_directive] = ACTIONS(3194), - [anon_sym_LPAREN2] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_AMP_AMP] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym___extension__] = ACTIONS(3194), - [anon_sym_typedef] = ACTIONS(3194), - [anon_sym_extern] = ACTIONS(3194), - [anon_sym___attribute__] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3196), - [anon_sym___declspec] = ACTIONS(3194), - [anon_sym___based] = ACTIONS(3194), - [anon_sym___cdecl] = ACTIONS(3194), - [anon_sym___clrcall] = ACTIONS(3194), - [anon_sym___stdcall] = ACTIONS(3194), - [anon_sym___fastcall] = ACTIONS(3194), - [anon_sym___thiscall] = ACTIONS(3194), - [anon_sym___vectorcall] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_signed] = ACTIONS(3194), - [anon_sym_unsigned] = ACTIONS(3194), - [anon_sym_long] = ACTIONS(3194), - [anon_sym_short] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_register] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym___inline] = ACTIONS(3194), - [anon_sym___inline__] = ACTIONS(3194), - [anon_sym___forceinline] = ACTIONS(3194), - [anon_sym_thread_local] = ACTIONS(3194), - [anon_sym___thread] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_constexpr] = ACTIONS(3194), - [anon_sym_volatile] = ACTIONS(3194), - [anon_sym_restrict] = ACTIONS(3194), - [anon_sym___restrict__] = ACTIONS(3194), - [anon_sym__Atomic] = ACTIONS(3194), - [anon_sym__Noreturn] = ACTIONS(3194), - [anon_sym_noreturn] = ACTIONS(3194), - [anon_sym_mutable] = ACTIONS(3194), - [anon_sym_constinit] = ACTIONS(3194), - [anon_sym_consteval] = ACTIONS(3194), - [sym_primitive_type] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_struct] = ACTIONS(3194), - [anon_sym_union] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_goto] = ACTIONS(3194), - [anon_sym___try] = ACTIONS(3194), - [anon_sym___leave] = ACTIONS(3194), - [anon_sym_not] = ACTIONS(3194), - [anon_sym_compl] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_sizeof] = ACTIONS(3194), - [anon_sym___alignof__] = ACTIONS(3194), - [anon_sym___alignof] = ACTIONS(3194), - [anon_sym__alignof] = ACTIONS(3194), - [anon_sym_alignof] = ACTIONS(3194), - [anon_sym__Alignof] = ACTIONS(3194), - [anon_sym_offsetof] = ACTIONS(3194), - [anon_sym__Generic] = ACTIONS(3194), - [anon_sym_asm] = ACTIONS(3194), - [anon_sym___asm__] = ACTIONS(3194), - [sym_number_literal] = ACTIONS(3196), - [anon_sym_L_SQUOTE] = ACTIONS(3196), - [anon_sym_u_SQUOTE] = ACTIONS(3196), - [anon_sym_U_SQUOTE] = ACTIONS(3196), - [anon_sym_u8_SQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_L_DQUOTE] = ACTIONS(3196), - [anon_sym_u_DQUOTE] = ACTIONS(3196), - [anon_sym_U_DQUOTE] = ACTIONS(3196), - [anon_sym_u8_DQUOTE] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [anon_sym_NULL] = ACTIONS(3194), - [anon_sym_nullptr] = ACTIONS(3194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3194), - [anon_sym_decltype] = ACTIONS(3194), - [anon_sym_virtual] = ACTIONS(3194), - [anon_sym_alignas] = ACTIONS(3194), - [anon_sym_explicit] = ACTIONS(3194), - [anon_sym_typename] = ACTIONS(3194), - [anon_sym_template] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_static_assert] = ACTIONS(3194), - [anon_sym_concept] = ACTIONS(3194), - [anon_sym_co_return] = ACTIONS(3194), - [anon_sym_co_yield] = ACTIONS(3194), - [anon_sym_R_DQUOTE] = ACTIONS(3196), - [anon_sym_LR_DQUOTE] = ACTIONS(3196), - [anon_sym_uR_DQUOTE] = ACTIONS(3196), - [anon_sym_UR_DQUOTE] = ACTIONS(3196), - [anon_sym_u8R_DQUOTE] = ACTIONS(3196), - [anon_sym_co_await] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_requires] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), + [816] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [859] = { - [sym_identifier] = ACTIONS(3235), - [aux_sym_preproc_include_token1] = ACTIONS(3235), - [aux_sym_preproc_def_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3235), - [sym_preproc_directive] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym___based] = ACTIONS(3235), - [anon_sym___cdecl] = ACTIONS(3235), - [anon_sym___clrcall] = ACTIONS(3235), - [anon_sym___stdcall] = ACTIONS(3235), - [anon_sym___fastcall] = ACTIONS(3235), - [anon_sym___thiscall] = ACTIONS(3235), - [anon_sym___vectorcall] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym___try] = ACTIONS(3235), - [anon_sym___leave] = ACTIONS(3235), - [anon_sym_not] = ACTIONS(3235), - [anon_sym_compl] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3235), - [anon_sym___alignof__] = ACTIONS(3235), - [anon_sym___alignof] = ACTIONS(3235), - [anon_sym__alignof] = ACTIONS(3235), - [anon_sym_alignof] = ACTIONS(3235), - [anon_sym__Alignof] = ACTIONS(3235), - [anon_sym_offsetof] = ACTIONS(3235), - [anon_sym__Generic] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym___asm__] = ACTIONS(3235), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_L_SQUOTE] = ACTIONS(3237), - [anon_sym_u_SQUOTE] = ACTIONS(3237), - [anon_sym_U_SQUOTE] = ACTIONS(3237), - [anon_sym_u8_SQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_L_DQUOTE] = ACTIONS(3237), - [anon_sym_u_DQUOTE] = ACTIONS(3237), - [anon_sym_U_DQUOTE] = ACTIONS(3237), - [anon_sym_u8_DQUOTE] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [anon_sym_NULL] = ACTIONS(3235), - [anon_sym_nullptr] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_operator] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_static_assert] = ACTIONS(3235), - [anon_sym_concept] = ACTIONS(3235), - [anon_sym_co_return] = ACTIONS(3235), - [anon_sym_co_yield] = ACTIONS(3235), - [anon_sym_R_DQUOTE] = ACTIONS(3237), - [anon_sym_LR_DQUOTE] = ACTIONS(3237), - [anon_sym_uR_DQUOTE] = ACTIONS(3237), - [anon_sym_UR_DQUOTE] = ACTIONS(3237), - [anon_sym_u8R_DQUOTE] = ACTIONS(3237), - [anon_sym_co_await] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_requires] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), + [817] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [860] = { - [sym_identifier] = ACTIONS(3076), - [aux_sym_preproc_include_token1] = ACTIONS(3076), - [aux_sym_preproc_def_token1] = ACTIONS(3076), - [aux_sym_preproc_if_token1] = ACTIONS(3076), - [aux_sym_preproc_if_token2] = ACTIONS(3076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3076), - [sym_preproc_directive] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3078), - [anon_sym_AMP_AMP] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym___extension__] = ACTIONS(3076), - [anon_sym_typedef] = ACTIONS(3076), - [anon_sym_extern] = ACTIONS(3076), - [anon_sym___attribute__] = ACTIONS(3076), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3078), - [anon_sym___declspec] = ACTIONS(3076), - [anon_sym___based] = ACTIONS(3076), - [anon_sym___cdecl] = ACTIONS(3076), - [anon_sym___clrcall] = ACTIONS(3076), - [anon_sym___stdcall] = ACTIONS(3076), - [anon_sym___fastcall] = ACTIONS(3076), - [anon_sym___thiscall] = ACTIONS(3076), - [anon_sym___vectorcall] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3076), - [anon_sym_unsigned] = ACTIONS(3076), - [anon_sym_long] = ACTIONS(3076), - [anon_sym_short] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_static] = ACTIONS(3076), - [anon_sym_register] = ACTIONS(3076), - [anon_sym_inline] = ACTIONS(3076), - [anon_sym___inline] = ACTIONS(3076), - [anon_sym___inline__] = ACTIONS(3076), - [anon_sym___forceinline] = ACTIONS(3076), - [anon_sym_thread_local] = ACTIONS(3076), - [anon_sym___thread] = ACTIONS(3076), - [anon_sym_const] = ACTIONS(3076), - [anon_sym_constexpr] = ACTIONS(3076), - [anon_sym_volatile] = ACTIONS(3076), - [anon_sym_restrict] = ACTIONS(3076), - [anon_sym___restrict__] = ACTIONS(3076), - [anon_sym__Atomic] = ACTIONS(3076), - [anon_sym__Noreturn] = ACTIONS(3076), - [anon_sym_noreturn] = ACTIONS(3076), - [anon_sym_mutable] = ACTIONS(3076), - [anon_sym_constinit] = ACTIONS(3076), - [anon_sym_consteval] = ACTIONS(3076), - [sym_primitive_type] = ACTIONS(3076), - [anon_sym_enum] = ACTIONS(3076), - [anon_sym_class] = ACTIONS(3076), - [anon_sym_struct] = ACTIONS(3076), - [anon_sym_union] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_switch] = ACTIONS(3076), - [anon_sym_case] = ACTIONS(3076), - [anon_sym_default] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_break] = ACTIONS(3076), - [anon_sym_continue] = ACTIONS(3076), - [anon_sym_goto] = ACTIONS(3076), - [anon_sym___try] = ACTIONS(3076), - [anon_sym___leave] = ACTIONS(3076), - [anon_sym_not] = ACTIONS(3076), - [anon_sym_compl] = ACTIONS(3076), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_sizeof] = ACTIONS(3076), - [anon_sym___alignof__] = ACTIONS(3076), - [anon_sym___alignof] = ACTIONS(3076), - [anon_sym__alignof] = ACTIONS(3076), - [anon_sym_alignof] = ACTIONS(3076), - [anon_sym__Alignof] = ACTIONS(3076), - [anon_sym_offsetof] = ACTIONS(3076), - [anon_sym__Generic] = ACTIONS(3076), - [anon_sym_asm] = ACTIONS(3076), - [anon_sym___asm__] = ACTIONS(3076), - [sym_number_literal] = ACTIONS(3078), - [anon_sym_L_SQUOTE] = ACTIONS(3078), - [anon_sym_u_SQUOTE] = ACTIONS(3078), - [anon_sym_U_SQUOTE] = ACTIONS(3078), - [anon_sym_u8_SQUOTE] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_L_DQUOTE] = ACTIONS(3078), - [anon_sym_u_DQUOTE] = ACTIONS(3078), - [anon_sym_U_DQUOTE] = ACTIONS(3078), - [anon_sym_u8_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE] = ACTIONS(3078), - [sym_true] = ACTIONS(3076), - [sym_false] = ACTIONS(3076), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3076), - [anon_sym_decltype] = ACTIONS(3076), - [anon_sym_virtual] = ACTIONS(3076), - [anon_sym_alignas] = ACTIONS(3076), - [anon_sym_explicit] = ACTIONS(3076), - [anon_sym_typename] = ACTIONS(3076), - [anon_sym_template] = ACTIONS(3076), - [anon_sym_operator] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_delete] = ACTIONS(3076), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_namespace] = ACTIONS(3076), - [anon_sym_using] = ACTIONS(3076), - [anon_sym_static_assert] = ACTIONS(3076), - [anon_sym_concept] = ACTIONS(3076), - [anon_sym_co_return] = ACTIONS(3076), - [anon_sym_co_yield] = ACTIONS(3076), - [anon_sym_R_DQUOTE] = ACTIONS(3078), - [anon_sym_LR_DQUOTE] = ACTIONS(3078), - [anon_sym_uR_DQUOTE] = ACTIONS(3078), - [anon_sym_UR_DQUOTE] = ACTIONS(3078), - [anon_sym_u8R_DQUOTE] = ACTIONS(3078), - [anon_sym_co_await] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_requires] = ACTIONS(3076), - [sym_this] = ACTIONS(3076), + [818] = { + [sym_identifier] = ACTIONS(2871), + [aux_sym_preproc_include_token1] = ACTIONS(2871), + [aux_sym_preproc_def_token1] = ACTIONS(2871), + [aux_sym_preproc_if_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2871), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2871), + [sym_preproc_directive] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym___based] = ACTIONS(2871), + [anon_sym___cdecl] = ACTIONS(2871), + [anon_sym___clrcall] = ACTIONS(2871), + [anon_sym___stdcall] = ACTIONS(2871), + [anon_sym___fastcall] = ACTIONS(2871), + [anon_sym___thiscall] = ACTIONS(2871), + [anon_sym___vectorcall] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_explicit] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_operator] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_static_assert] = ACTIONS(2871), + [anon_sym_concept] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [861] = { - [sym_identifier] = ACTIONS(3274), - [aux_sym_preproc_include_token1] = ACTIONS(3274), - [aux_sym_preproc_def_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token2] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym___extension__] = ACTIONS(3274), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym___attribute__] = ACTIONS(3274), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), - [anon_sym___declspec] = ACTIONS(3274), - [anon_sym___based] = ACTIONS(3274), - [anon_sym___cdecl] = ACTIONS(3274), - [anon_sym___clrcall] = ACTIONS(3274), - [anon_sym___stdcall] = ACTIONS(3274), - [anon_sym___fastcall] = ACTIONS(3274), - [anon_sym___thiscall] = ACTIONS(3274), - [anon_sym___vectorcall] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_signed] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym___inline] = ACTIONS(3274), - [anon_sym___inline__] = ACTIONS(3274), - [anon_sym___forceinline] = ACTIONS(3274), - [anon_sym_thread_local] = ACTIONS(3274), - [anon_sym___thread] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_constexpr] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym___restrict__] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym__Noreturn] = ACTIONS(3274), - [anon_sym_noreturn] = ACTIONS(3274), - [anon_sym_mutable] = ACTIONS(3274), - [anon_sym_constinit] = ACTIONS(3274), - [anon_sym_consteval] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym___try] = ACTIONS(3274), - [anon_sym___leave] = ACTIONS(3274), - [anon_sym_not] = ACTIONS(3274), - [anon_sym_compl] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_sizeof] = ACTIONS(3274), - [anon_sym___alignof__] = ACTIONS(3274), - [anon_sym___alignof] = ACTIONS(3274), - [anon_sym__alignof] = ACTIONS(3274), - [anon_sym_alignof] = ACTIONS(3274), - [anon_sym__Alignof] = ACTIONS(3274), - [anon_sym_offsetof] = ACTIONS(3274), - [anon_sym__Generic] = ACTIONS(3274), - [anon_sym_asm] = ACTIONS(3274), - [anon_sym___asm__] = ACTIONS(3274), - [sym_number_literal] = ACTIONS(3276), - [anon_sym_L_SQUOTE] = ACTIONS(3276), - [anon_sym_u_SQUOTE] = ACTIONS(3276), - [anon_sym_U_SQUOTE] = ACTIONS(3276), - [anon_sym_u8_SQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_L_DQUOTE] = ACTIONS(3276), - [anon_sym_u_DQUOTE] = ACTIONS(3276), - [anon_sym_U_DQUOTE] = ACTIONS(3276), - [anon_sym_u8_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [anon_sym_NULL] = ACTIONS(3274), - [anon_sym_nullptr] = ACTIONS(3274), + [819] = { + [ts_builtin_sym_end] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2957), + [aux_sym_preproc_include_token1] = ACTIONS(2957), + [aux_sym_preproc_def_token1] = ACTIONS(2957), + [aux_sym_preproc_if_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2957), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2957), + [sym_preproc_directive] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym___extension__] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym___attribute__] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), + [anon_sym___declspec] = ACTIONS(2957), + [anon_sym___based] = ACTIONS(2957), + [anon_sym___cdecl] = ACTIONS(2957), + [anon_sym___clrcall] = ACTIONS(2957), + [anon_sym___stdcall] = ACTIONS(2957), + [anon_sym___fastcall] = ACTIONS(2957), + [anon_sym___thiscall] = ACTIONS(2957), + [anon_sym___vectorcall] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_signed] = ACTIONS(2957), + [anon_sym_unsigned] = ACTIONS(2957), + [anon_sym_long] = ACTIONS(2957), + [anon_sym_short] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym___inline] = ACTIONS(2957), + [anon_sym___inline__] = ACTIONS(2957), + [anon_sym___forceinline] = ACTIONS(2957), + [anon_sym_thread_local] = ACTIONS(2957), + [anon_sym___thread] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_constexpr] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_restrict] = ACTIONS(2957), + [anon_sym___restrict__] = ACTIONS(2957), + [anon_sym__Atomic] = ACTIONS(2957), + [anon_sym__Noreturn] = ACTIONS(2957), + [anon_sym_noreturn] = ACTIONS(2957), + [anon_sym_mutable] = ACTIONS(2957), + [anon_sym_constinit] = ACTIONS(2957), + [anon_sym_consteval] = ACTIONS(2957), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym___try] = ACTIONS(2957), + [anon_sym___leave] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_compl] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym___alignof__] = ACTIONS(2957), + [anon_sym___alignof] = ACTIONS(2957), + [anon_sym__alignof] = ACTIONS(2957), + [anon_sym_alignof] = ACTIONS(2957), + [anon_sym__Alignof] = ACTIONS(2957), + [anon_sym_offsetof] = ACTIONS(2957), + [anon_sym__Generic] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym___asm__] = ACTIONS(2957), + [sym_number_literal] = ACTIONS(2959), + [anon_sym_L_SQUOTE] = ACTIONS(2959), + [anon_sym_u_SQUOTE] = ACTIONS(2959), + [anon_sym_U_SQUOTE] = ACTIONS(2959), + [anon_sym_u8_SQUOTE] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_L_DQUOTE] = ACTIONS(2959), + [anon_sym_u_DQUOTE] = ACTIONS(2959), + [anon_sym_U_DQUOTE] = ACTIONS(2959), + [anon_sym_u8_DQUOTE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [anon_sym_NULL] = ACTIONS(2957), + [anon_sym_nullptr] = ACTIONS(2957), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3274), - [anon_sym_decltype] = ACTIONS(3274), - [anon_sym_virtual] = ACTIONS(3274), - [anon_sym_alignas] = ACTIONS(3274), - [anon_sym_explicit] = ACTIONS(3274), - [anon_sym_typename] = ACTIONS(3274), - [anon_sym_template] = ACTIONS(3274), - [anon_sym_operator] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_static_assert] = ACTIONS(3274), - [anon_sym_concept] = ACTIONS(3274), - [anon_sym_co_return] = ACTIONS(3274), - [anon_sym_co_yield] = ACTIONS(3274), - [anon_sym_R_DQUOTE] = ACTIONS(3276), - [anon_sym_LR_DQUOTE] = ACTIONS(3276), - [anon_sym_uR_DQUOTE] = ACTIONS(3276), - [anon_sym_UR_DQUOTE] = ACTIONS(3276), - [anon_sym_u8R_DQUOTE] = ACTIONS(3276), - [anon_sym_co_await] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_requires] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - }, - [862] = { - [sym_identifier] = ACTIONS(3066), - [aux_sym_preproc_include_token1] = ACTIONS(3066), - [aux_sym_preproc_def_token1] = ACTIONS(3066), - [aux_sym_preproc_if_token1] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3066), - [sym_preproc_directive] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym___extension__] = ACTIONS(3066), - [anon_sym_typedef] = ACTIONS(3066), - [anon_sym_extern] = ACTIONS(3066), - [anon_sym___attribute__] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3068), - [anon_sym___declspec] = ACTIONS(3066), - [anon_sym___based] = ACTIONS(3066), - [anon_sym___cdecl] = ACTIONS(3066), - [anon_sym___clrcall] = ACTIONS(3066), - [anon_sym___stdcall] = ACTIONS(3066), - [anon_sym___fastcall] = ACTIONS(3066), - [anon_sym___thiscall] = ACTIONS(3066), - [anon_sym___vectorcall] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_signed] = ACTIONS(3066), - [anon_sym_unsigned] = ACTIONS(3066), - [anon_sym_long] = ACTIONS(3066), - [anon_sym_short] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_register] = ACTIONS(3066), - [anon_sym_inline] = ACTIONS(3066), - [anon_sym___inline] = ACTIONS(3066), - [anon_sym___inline__] = ACTIONS(3066), - [anon_sym___forceinline] = ACTIONS(3066), - [anon_sym_thread_local] = ACTIONS(3066), - [anon_sym___thread] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_constexpr] = ACTIONS(3066), - [anon_sym_volatile] = ACTIONS(3066), - [anon_sym_restrict] = ACTIONS(3066), - [anon_sym___restrict__] = ACTIONS(3066), - [anon_sym__Atomic] = ACTIONS(3066), - [anon_sym__Noreturn] = ACTIONS(3066), - [anon_sym_noreturn] = ACTIONS(3066), - [anon_sym_mutable] = ACTIONS(3066), - [anon_sym_constinit] = ACTIONS(3066), - [anon_sym_consteval] = ACTIONS(3066), - [sym_primitive_type] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_union] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_goto] = ACTIONS(3066), - [anon_sym___try] = ACTIONS(3066), - [anon_sym___leave] = ACTIONS(3066), - [anon_sym_not] = ACTIONS(3066), - [anon_sym_compl] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_sizeof] = ACTIONS(3066), - [anon_sym___alignof__] = ACTIONS(3066), - [anon_sym___alignof] = ACTIONS(3066), - [anon_sym__alignof] = ACTIONS(3066), - [anon_sym_alignof] = ACTIONS(3066), - [anon_sym__Alignof] = ACTIONS(3066), - [anon_sym_offsetof] = ACTIONS(3066), - [anon_sym__Generic] = ACTIONS(3066), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3068), - [anon_sym_u_SQUOTE] = ACTIONS(3068), - [anon_sym_U_SQUOTE] = ACTIONS(3068), - [anon_sym_u8_SQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_L_DQUOTE] = ACTIONS(3068), - [anon_sym_u_DQUOTE] = ACTIONS(3068), - [anon_sym_U_DQUOTE] = ACTIONS(3068), - [anon_sym_u8_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [anon_sym_NULL] = ACTIONS(3066), - [anon_sym_nullptr] = ACTIONS(3066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3066), - [anon_sym_decltype] = ACTIONS(3066), - [anon_sym_virtual] = ACTIONS(3066), - [anon_sym_alignas] = ACTIONS(3066), - [anon_sym_explicit] = ACTIONS(3066), - [anon_sym_typename] = ACTIONS(3066), - [anon_sym_template] = ACTIONS(3066), - [anon_sym_operator] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_static_assert] = ACTIONS(3066), - [anon_sym_concept] = ACTIONS(3066), - [anon_sym_co_return] = ACTIONS(3066), - [anon_sym_co_yield] = 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(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_requires] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), - }, - [863] = { - [sym_identifier] = ACTIONS(3124), - [aux_sym_preproc_include_token1] = ACTIONS(3124), - [aux_sym_preproc_def_token1] = ACTIONS(3124), - [aux_sym_preproc_if_token1] = ACTIONS(3124), - [aux_sym_preproc_if_token2] = ACTIONS(3124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3124), - [sym_preproc_directive] = ACTIONS(3124), - [anon_sym_LPAREN2] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_AMP_AMP] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym___extension__] = ACTIONS(3124), - [anon_sym_typedef] = ACTIONS(3124), - [anon_sym_extern] = ACTIONS(3124), - [anon_sym___attribute__] = ACTIONS(3124), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3126), - [anon_sym___declspec] = ACTIONS(3124), - [anon_sym___based] = ACTIONS(3124), - [anon_sym___cdecl] = ACTIONS(3124), - [anon_sym___clrcall] = ACTIONS(3124), - [anon_sym___stdcall] = ACTIONS(3124), - [anon_sym___fastcall] = ACTIONS(3124), - [anon_sym___thiscall] = ACTIONS(3124), - [anon_sym___vectorcall] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_signed] = ACTIONS(3124), - [anon_sym_unsigned] = ACTIONS(3124), - [anon_sym_long] = ACTIONS(3124), - [anon_sym_short] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_register] = ACTIONS(3124), - [anon_sym_inline] = ACTIONS(3124), - [anon_sym___inline] = ACTIONS(3124), - [anon_sym___inline__] = ACTIONS(3124), - [anon_sym___forceinline] = ACTIONS(3124), - [anon_sym_thread_local] = ACTIONS(3124), - [anon_sym___thread] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_constexpr] = ACTIONS(3124), - [anon_sym_volatile] = ACTIONS(3124), - [anon_sym_restrict] = ACTIONS(3124), - [anon_sym___restrict__] = ACTIONS(3124), - [anon_sym__Atomic] = ACTIONS(3124), - [anon_sym__Noreturn] = ACTIONS(3124), - [anon_sym_noreturn] = ACTIONS(3124), - [anon_sym_mutable] = ACTIONS(3124), - [anon_sym_constinit] = ACTIONS(3124), - [anon_sym_consteval] = ACTIONS(3124), - [sym_primitive_type] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_struct] = ACTIONS(3124), - [anon_sym_union] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_goto] = ACTIONS(3124), - [anon_sym___try] = ACTIONS(3124), - [anon_sym___leave] = ACTIONS(3124), - [anon_sym_not] = ACTIONS(3124), - [anon_sym_compl] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3124), - [anon_sym___alignof__] = ACTIONS(3124), - [anon_sym___alignof] = ACTIONS(3124), - [anon_sym__alignof] = ACTIONS(3124), - [anon_sym_alignof] = ACTIONS(3124), - [anon_sym__Alignof] = ACTIONS(3124), - [anon_sym_offsetof] = ACTIONS(3124), - [anon_sym__Generic] = ACTIONS(3124), - [anon_sym_asm] = ACTIONS(3124), - [anon_sym___asm__] = ACTIONS(3124), - [sym_number_literal] = ACTIONS(3126), - [anon_sym_L_SQUOTE] = ACTIONS(3126), - [anon_sym_u_SQUOTE] = ACTIONS(3126), - [anon_sym_U_SQUOTE] = ACTIONS(3126), - [anon_sym_u8_SQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [anon_sym_L_DQUOTE] = ACTIONS(3126), - [anon_sym_u_DQUOTE] = ACTIONS(3126), - [anon_sym_U_DQUOTE] = ACTIONS(3126), - [anon_sym_u8_DQUOTE] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [anon_sym_NULL] = ACTIONS(3124), - [anon_sym_nullptr] = ACTIONS(3124), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3124), - [anon_sym_decltype] = ACTIONS(3124), - [anon_sym_virtual] = ACTIONS(3124), - [anon_sym_alignas] = ACTIONS(3124), - [anon_sym_explicit] = ACTIONS(3124), - [anon_sym_typename] = ACTIONS(3124), - [anon_sym_template] = ACTIONS(3124), - [anon_sym_operator] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_static_assert] = ACTIONS(3124), - [anon_sym_concept] = ACTIONS(3124), - [anon_sym_co_return] = ACTIONS(3124), - [anon_sym_co_yield] = ACTIONS(3124), - [anon_sym_R_DQUOTE] = ACTIONS(3126), - [anon_sym_LR_DQUOTE] = ACTIONS(3126), - [anon_sym_uR_DQUOTE] = ACTIONS(3126), - [anon_sym_UR_DQUOTE] = ACTIONS(3126), - [anon_sym_u8R_DQUOTE] = ACTIONS(3126), - [anon_sym_co_await] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_requires] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), + [sym_auto] = ACTIONS(2957), + [anon_sym_decltype] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_alignas] = ACTIONS(2957), + [anon_sym_explicit] = ACTIONS(2957), + [anon_sym_typename] = ACTIONS(2957), + [anon_sym_template] = ACTIONS(2957), + [anon_sym_operator] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_delete] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_static_assert] = ACTIONS(2957), + [anon_sym_concept] = ACTIONS(2957), + [anon_sym_co_return] = ACTIONS(2957), + [anon_sym_co_yield] = ACTIONS(2957), + [anon_sym_R_DQUOTE] = ACTIONS(2959), + [anon_sym_LR_DQUOTE] = ACTIONS(2959), + [anon_sym_uR_DQUOTE] = ACTIONS(2959), + [anon_sym_UR_DQUOTE] = ACTIONS(2959), + [anon_sym_u8R_DQUOTE] = ACTIONS(2959), + [anon_sym_co_await] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_requires] = ACTIONS(2957), + [sym_this] = ACTIONS(2957), }, - [864] = { - [sym_identifier] = ACTIONS(3211), - [aux_sym_preproc_include_token1] = ACTIONS(3211), - [aux_sym_preproc_def_token1] = ACTIONS(3211), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), - [sym_preproc_directive] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym_COLON_COLON] = ACTIONS(3213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), - [anon_sym___declspec] = ACTIONS(3211), - [anon_sym___based] = ACTIONS(3211), - [anon_sym___cdecl] = ACTIONS(3211), - [anon_sym___clrcall] = ACTIONS(3211), - [anon_sym___stdcall] = ACTIONS(3211), - [anon_sym___fastcall] = ACTIONS(3211), - [anon_sym___thiscall] = ACTIONS(3211), - [anon_sym___vectorcall] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_signed] = ACTIONS(3211), - [anon_sym_unsigned] = ACTIONS(3211), - [anon_sym_long] = ACTIONS(3211), - [anon_sym_short] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_register] = ACTIONS(3211), - [anon_sym_inline] = ACTIONS(3211), - [anon_sym___inline] = ACTIONS(3211), - [anon_sym___inline__] = ACTIONS(3211), - [anon_sym___forceinline] = ACTIONS(3211), - [anon_sym_thread_local] = ACTIONS(3211), - [anon_sym___thread] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_constexpr] = ACTIONS(3211), - [anon_sym_volatile] = ACTIONS(3211), - [anon_sym_restrict] = ACTIONS(3211), - [anon_sym___restrict__] = ACTIONS(3211), - [anon_sym__Atomic] = ACTIONS(3211), - [anon_sym__Noreturn] = ACTIONS(3211), - [anon_sym_noreturn] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [sym_primitive_type] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_default] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym___try] = ACTIONS(3211), - [anon_sym___leave] = ACTIONS(3211), - [anon_sym_not] = ACTIONS(3211), - [anon_sym_compl] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3211), - [anon_sym___alignof__] = ACTIONS(3211), - [anon_sym___alignof] = ACTIONS(3211), - [anon_sym__alignof] = ACTIONS(3211), - [anon_sym_alignof] = ACTIONS(3211), - [anon_sym__Alignof] = ACTIONS(3211), - [anon_sym_offsetof] = ACTIONS(3211), - [anon_sym__Generic] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym___asm__] = ACTIONS(3211), - [sym_number_literal] = ACTIONS(3213), - [anon_sym_L_SQUOTE] = ACTIONS(3213), - [anon_sym_u_SQUOTE] = ACTIONS(3213), - [anon_sym_U_SQUOTE] = ACTIONS(3213), - [anon_sym_u8_SQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_L_DQUOTE] = ACTIONS(3213), - [anon_sym_u_DQUOTE] = ACTIONS(3213), - [anon_sym_U_DQUOTE] = ACTIONS(3213), - [anon_sym_u8_DQUOTE] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [anon_sym_NULL] = ACTIONS(3211), - [anon_sym_nullptr] = ACTIONS(3211), + [820] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3211), - [anon_sym_decltype] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), - [anon_sym_concept] = ACTIONS(3211), - [anon_sym_co_return] = ACTIONS(3211), - [anon_sym_co_yield] = ACTIONS(3211), - [anon_sym_R_DQUOTE] = ACTIONS(3213), - [anon_sym_LR_DQUOTE] = ACTIONS(3213), - [anon_sym_uR_DQUOTE] = ACTIONS(3213), - [anon_sym_UR_DQUOTE] = ACTIONS(3213), - [anon_sym_u8R_DQUOTE] = ACTIONS(3213), - [anon_sym_co_await] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_requires] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [865] = { - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_include_token1] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [aux_sym_preproc_if_token1] = ACTIONS(3082), - [aux_sym_preproc_if_token2] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), - [sym_preproc_directive] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym___extension__] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym___attribute__] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), - [anon_sym___declspec] = ACTIONS(3082), - [anon_sym___based] = ACTIONS(3082), - [anon_sym___cdecl] = ACTIONS(3082), - [anon_sym___clrcall] = ACTIONS(3082), - [anon_sym___stdcall] = ACTIONS(3082), - [anon_sym___fastcall] = ACTIONS(3082), - [anon_sym___thiscall] = ACTIONS(3082), - [anon_sym___vectorcall] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym___inline] = ACTIONS(3082), - [anon_sym___inline__] = ACTIONS(3082), - [anon_sym___forceinline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym___thread] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym___restrict__] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym__Noreturn] = ACTIONS(3082), - [anon_sym_noreturn] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constinit] = ACTIONS(3082), - [anon_sym_consteval] = ACTIONS(3082), - [sym_primitive_type] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym___try] = ACTIONS(3082), - [anon_sym___leave] = ACTIONS(3082), - [anon_sym_not] = ACTIONS(3082), - [anon_sym_compl] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_sizeof] = ACTIONS(3082), - [anon_sym___alignof__] = ACTIONS(3082), - [anon_sym___alignof] = ACTIONS(3082), - [anon_sym__alignof] = ACTIONS(3082), - [anon_sym_alignof] = ACTIONS(3082), - [anon_sym__Alignof] = ACTIONS(3082), - [anon_sym_offsetof] = ACTIONS(3082), - [anon_sym__Generic] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym___asm__] = ACTIONS(3082), - [sym_number_literal] = ACTIONS(3084), - [anon_sym_L_SQUOTE] = ACTIONS(3084), - [anon_sym_u_SQUOTE] = ACTIONS(3084), - [anon_sym_U_SQUOTE] = ACTIONS(3084), - [anon_sym_u8_SQUOTE] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_L_DQUOTE] = ACTIONS(3084), - [anon_sym_u_DQUOTE] = ACTIONS(3084), - [anon_sym_U_DQUOTE] = ACTIONS(3084), - [anon_sym_u8_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [anon_sym_NULL] = ACTIONS(3082), - [anon_sym_nullptr] = ACTIONS(3082), + [821] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3082), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_alignas] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_concept] = ACTIONS(3082), - [anon_sym_co_return] = ACTIONS(3082), - [anon_sym_co_yield] = ACTIONS(3082), - [anon_sym_R_DQUOTE] = ACTIONS(3084), - [anon_sym_LR_DQUOTE] = ACTIONS(3084), - [anon_sym_uR_DQUOTE] = ACTIONS(3084), - [anon_sym_UR_DQUOTE] = ACTIONS(3084), - [anon_sym_u8R_DQUOTE] = ACTIONS(3084), - [anon_sym_co_await] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_requires] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [866] = { - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_include_token1] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym___cdecl] = ACTIONS(2989), - [anon_sym___clrcall] = ACTIONS(2989), - [anon_sym___stdcall] = ACTIONS(2989), - [anon_sym___fastcall] = ACTIONS(2989), - [anon_sym___thiscall] = ACTIONS(2989), - [anon_sym___vectorcall] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_case] = ACTIONS(2989), - [anon_sym_default] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_do] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym___try] = ACTIONS(2989), - [anon_sym___leave] = ACTIONS(2989), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_compl] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_sizeof] = ACTIONS(2989), - [anon_sym___alignof__] = ACTIONS(2989), - [anon_sym___alignof] = ACTIONS(2989), - [anon_sym__alignof] = ACTIONS(2989), - [anon_sym_alignof] = ACTIONS(2989), - [anon_sym__Alignof] = ACTIONS(2989), - [anon_sym_offsetof] = ACTIONS(2989), - [anon_sym__Generic] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym___asm__] = ACTIONS(2989), - [sym_number_literal] = ACTIONS(2991), - [anon_sym_L_SQUOTE] = ACTIONS(2991), - [anon_sym_u_SQUOTE] = ACTIONS(2991), - [anon_sym_U_SQUOTE] = ACTIONS(2991), - [anon_sym_u8_SQUOTE] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [anon_sym_L_DQUOTE] = ACTIONS(2991), - [anon_sym_u_DQUOTE] = ACTIONS(2991), - [anon_sym_U_DQUOTE] = ACTIONS(2991), - [anon_sym_u8_DQUOTE] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [anon_sym_NULL] = ACTIONS(2989), - [anon_sym_nullptr] = ACTIONS(2989), + [822] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_delete] = ACTIONS(2989), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - [anon_sym_concept] = ACTIONS(2989), - [anon_sym_co_return] = ACTIONS(2989), - [anon_sym_co_yield] = ACTIONS(2989), - [anon_sym_R_DQUOTE] = ACTIONS(2991), - [anon_sym_LR_DQUOTE] = ACTIONS(2991), - [anon_sym_uR_DQUOTE] = ACTIONS(2991), - [anon_sym_UR_DQUOTE] = ACTIONS(2991), - [anon_sym_u8R_DQUOTE] = ACTIONS(2991), - [anon_sym_co_await] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_requires] = ACTIONS(2989), - [sym_this] = ACTIONS(2989), - }, - [867] = { - [sym_identifier] = ACTIONS(3072), - [aux_sym_preproc_include_token1] = ACTIONS(3072), - [aux_sym_preproc_def_token1] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3072), - [aux_sym_preproc_if_token2] = ACTIONS(3072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3072), - [sym_preproc_directive] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym___extension__] = ACTIONS(3072), - [anon_sym_typedef] = ACTIONS(3072), - [anon_sym_extern] = ACTIONS(3072), - [anon_sym___attribute__] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3074), - [anon_sym___declspec] = ACTIONS(3072), - [anon_sym___based] = ACTIONS(3072), - [anon_sym___cdecl] = ACTIONS(3072), - [anon_sym___clrcall] = ACTIONS(3072), - [anon_sym___stdcall] = ACTIONS(3072), - [anon_sym___fastcall] = ACTIONS(3072), - [anon_sym___thiscall] = ACTIONS(3072), - [anon_sym___vectorcall] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_signed] = ACTIONS(3072), - [anon_sym_unsigned] = ACTIONS(3072), - [anon_sym_long] = ACTIONS(3072), - [anon_sym_short] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_register] = ACTIONS(3072), - [anon_sym_inline] = ACTIONS(3072), - [anon_sym___inline] = ACTIONS(3072), - [anon_sym___inline__] = ACTIONS(3072), - [anon_sym___forceinline] = ACTIONS(3072), - [anon_sym_thread_local] = ACTIONS(3072), - [anon_sym___thread] = ACTIONS(3072), - [anon_sym_const] = ACTIONS(3072), - [anon_sym_constexpr] = ACTIONS(3072), - [anon_sym_volatile] = ACTIONS(3072), - [anon_sym_restrict] = ACTIONS(3072), - [anon_sym___restrict__] = ACTIONS(3072), - [anon_sym__Atomic] = ACTIONS(3072), - [anon_sym__Noreturn] = ACTIONS(3072), - [anon_sym_noreturn] = ACTIONS(3072), - [anon_sym_mutable] = ACTIONS(3072), - [anon_sym_constinit] = ACTIONS(3072), - [anon_sym_consteval] = ACTIONS(3072), - [sym_primitive_type] = ACTIONS(3072), - [anon_sym_enum] = ACTIONS(3072), - [anon_sym_class] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_switch] = ACTIONS(3072), - [anon_sym_case] = ACTIONS(3072), - [anon_sym_default] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_break] = ACTIONS(3072), - [anon_sym_continue] = ACTIONS(3072), - [anon_sym_goto] = ACTIONS(3072), - [anon_sym___try] = ACTIONS(3072), - [anon_sym___leave] = ACTIONS(3072), - [anon_sym_not] = ACTIONS(3072), - [anon_sym_compl] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_sizeof] = ACTIONS(3072), - [anon_sym___alignof__] = ACTIONS(3072), - [anon_sym___alignof] = ACTIONS(3072), - [anon_sym__alignof] = ACTIONS(3072), - [anon_sym_alignof] = ACTIONS(3072), - [anon_sym__Alignof] = ACTIONS(3072), - [anon_sym_offsetof] = ACTIONS(3072), - [anon_sym__Generic] = ACTIONS(3072), - [anon_sym_asm] = ACTIONS(3072), - [anon_sym___asm__] = ACTIONS(3072), - [sym_number_literal] = ACTIONS(3074), - [anon_sym_L_SQUOTE] = ACTIONS(3074), - [anon_sym_u_SQUOTE] = ACTIONS(3074), - [anon_sym_U_SQUOTE] = ACTIONS(3074), - [anon_sym_u8_SQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_L_DQUOTE] = ACTIONS(3074), - [anon_sym_u_DQUOTE] = ACTIONS(3074), - [anon_sym_U_DQUOTE] = ACTIONS(3074), - [anon_sym_u8_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [sym_true] = ACTIONS(3072), - [sym_false] = ACTIONS(3072), - [anon_sym_NULL] = ACTIONS(3072), - [anon_sym_nullptr] = ACTIONS(3072), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3072), - [anon_sym_decltype] = ACTIONS(3072), - [anon_sym_virtual] = ACTIONS(3072), - [anon_sym_alignas] = ACTIONS(3072), - [anon_sym_explicit] = ACTIONS(3072), - [anon_sym_typename] = ACTIONS(3072), - [anon_sym_template] = ACTIONS(3072), - [anon_sym_operator] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_delete] = ACTIONS(3072), - [anon_sym_throw] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_using] = ACTIONS(3072), - [anon_sym_static_assert] = ACTIONS(3072), - [anon_sym_concept] = ACTIONS(3072), - [anon_sym_co_return] = ACTIONS(3072), - [anon_sym_co_yield] = ACTIONS(3072), - [anon_sym_R_DQUOTE] = ACTIONS(3074), - [anon_sym_LR_DQUOTE] = ACTIONS(3074), - [anon_sym_uR_DQUOTE] = ACTIONS(3074), - [anon_sym_UR_DQUOTE] = ACTIONS(3074), - [anon_sym_u8R_DQUOTE] = ACTIONS(3074), - [anon_sym_co_await] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_requires] = ACTIONS(3072), - [sym_this] = ACTIONS(3072), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [868] = { - [sym_identifier] = ACTIONS(3223), - [aux_sym_preproc_include_token1] = ACTIONS(3223), - [aux_sym_preproc_def_token1] = ACTIONS(3223), - [aux_sym_preproc_if_token1] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), - [sym_preproc_directive] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3225), - [anon_sym_AMP_AMP] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym___extension__] = ACTIONS(3223), - [anon_sym_typedef] = ACTIONS(3223), - [anon_sym_extern] = ACTIONS(3223), - [anon_sym___attribute__] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), - [anon_sym___declspec] = ACTIONS(3223), - [anon_sym___based] = ACTIONS(3223), - [anon_sym___cdecl] = ACTIONS(3223), - [anon_sym___clrcall] = ACTIONS(3223), - [anon_sym___stdcall] = ACTIONS(3223), - [anon_sym___fastcall] = ACTIONS(3223), - [anon_sym___thiscall] = ACTIONS(3223), - [anon_sym___vectorcall] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_signed] = ACTIONS(3223), - [anon_sym_unsigned] = ACTIONS(3223), - [anon_sym_long] = ACTIONS(3223), - [anon_sym_short] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_register] = ACTIONS(3223), - [anon_sym_inline] = ACTIONS(3223), - [anon_sym___inline] = ACTIONS(3223), - [anon_sym___inline__] = ACTIONS(3223), - [anon_sym___forceinline] = ACTIONS(3223), - [anon_sym_thread_local] = ACTIONS(3223), - [anon_sym___thread] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_constexpr] = ACTIONS(3223), - [anon_sym_volatile] = ACTIONS(3223), - [anon_sym_restrict] = ACTIONS(3223), - [anon_sym___restrict__] = ACTIONS(3223), - [anon_sym__Atomic] = ACTIONS(3223), - [anon_sym__Noreturn] = ACTIONS(3223), - [anon_sym_noreturn] = ACTIONS(3223), - [anon_sym_mutable] = ACTIONS(3223), - [anon_sym_constinit] = ACTIONS(3223), - [anon_sym_consteval] = ACTIONS(3223), - [sym_primitive_type] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_union] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_goto] = ACTIONS(3223), - [anon_sym___try] = ACTIONS(3223), - [anon_sym___leave] = ACTIONS(3223), - [anon_sym_not] = ACTIONS(3223), - [anon_sym_compl] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_sizeof] = ACTIONS(3223), - [anon_sym___alignof__] = ACTIONS(3223), - [anon_sym___alignof] = ACTIONS(3223), - [anon_sym__alignof] = ACTIONS(3223), - [anon_sym_alignof] = ACTIONS(3223), - [anon_sym__Alignof] = ACTIONS(3223), - [anon_sym_offsetof] = ACTIONS(3223), - [anon_sym__Generic] = ACTIONS(3223), - [anon_sym_asm] = ACTIONS(3223), - [anon_sym___asm__] = ACTIONS(3223), - [sym_number_literal] = ACTIONS(3225), - [anon_sym_L_SQUOTE] = ACTIONS(3225), - [anon_sym_u_SQUOTE] = ACTIONS(3225), - [anon_sym_U_SQUOTE] = ACTIONS(3225), - [anon_sym_u8_SQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_L_DQUOTE] = ACTIONS(3225), - [anon_sym_u_DQUOTE] = ACTIONS(3225), - [anon_sym_U_DQUOTE] = ACTIONS(3225), - [anon_sym_u8_DQUOTE] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [anon_sym_NULL] = ACTIONS(3223), - [anon_sym_nullptr] = ACTIONS(3223), + [823] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3223), - [anon_sym_decltype] = ACTIONS(3223), - [anon_sym_virtual] = ACTIONS(3223), - [anon_sym_alignas] = ACTIONS(3223), - [anon_sym_explicit] = ACTIONS(3223), - [anon_sym_typename] = ACTIONS(3223), - [anon_sym_template] = ACTIONS(3223), - [anon_sym_operator] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_static_assert] = ACTIONS(3223), - [anon_sym_concept] = ACTIONS(3223), - [anon_sym_co_return] = ACTIONS(3223), - [anon_sym_co_yield] = ACTIONS(3223), - [anon_sym_R_DQUOTE] = ACTIONS(3225), - [anon_sym_LR_DQUOTE] = ACTIONS(3225), - [anon_sym_uR_DQUOTE] = ACTIONS(3225), - [anon_sym_UR_DQUOTE] = ACTIONS(3225), - [anon_sym_u8R_DQUOTE] = ACTIONS(3225), - [anon_sym_co_await] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_requires] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - }, - [869] = { - [sym_identifier] = ACTIONS(3058), - [aux_sym_preproc_include_token1] = ACTIONS(3058), - [aux_sym_preproc_def_token1] = ACTIONS(3058), - [aux_sym_preproc_if_token1] = ACTIONS(3058), - [aux_sym_preproc_if_token2] = ACTIONS(3058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3058), - [sym_preproc_directive] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3060), - [anon_sym___extension__] = ACTIONS(3058), - [anon_sym_typedef] = ACTIONS(3058), - [anon_sym_extern] = ACTIONS(3058), - [anon_sym___attribute__] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3060), - [anon_sym___declspec] = ACTIONS(3058), - [anon_sym___based] = ACTIONS(3058), - [anon_sym___cdecl] = ACTIONS(3058), - [anon_sym___clrcall] = ACTIONS(3058), - [anon_sym___stdcall] = ACTIONS(3058), - [anon_sym___fastcall] = ACTIONS(3058), - [anon_sym___thiscall] = ACTIONS(3058), - [anon_sym___vectorcall] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_signed] = ACTIONS(3058), - [anon_sym_unsigned] = ACTIONS(3058), - [anon_sym_long] = ACTIONS(3058), - [anon_sym_short] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_static] = ACTIONS(3058), - [anon_sym_register] = ACTIONS(3058), - [anon_sym_inline] = ACTIONS(3058), - [anon_sym___inline] = ACTIONS(3058), - [anon_sym___inline__] = ACTIONS(3058), - [anon_sym___forceinline] = ACTIONS(3058), - [anon_sym_thread_local] = ACTIONS(3058), - [anon_sym___thread] = ACTIONS(3058), - [anon_sym_const] = ACTIONS(3058), - [anon_sym_constexpr] = ACTIONS(3058), - [anon_sym_volatile] = ACTIONS(3058), - [anon_sym_restrict] = ACTIONS(3058), - [anon_sym___restrict__] = ACTIONS(3058), - [anon_sym__Atomic] = ACTIONS(3058), - [anon_sym__Noreturn] = ACTIONS(3058), - [anon_sym_noreturn] = ACTIONS(3058), - [anon_sym_mutable] = ACTIONS(3058), - [anon_sym_constinit] = ACTIONS(3058), - [anon_sym_consteval] = ACTIONS(3058), - [sym_primitive_type] = ACTIONS(3058), - [anon_sym_enum] = ACTIONS(3058), - [anon_sym_class] = ACTIONS(3058), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_union] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_switch] = ACTIONS(3058), - [anon_sym_case] = ACTIONS(3058), - [anon_sym_default] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_goto] = ACTIONS(3058), - [anon_sym___try] = ACTIONS(3058), - [anon_sym___leave] = ACTIONS(3058), - [anon_sym_not] = ACTIONS(3058), - [anon_sym_compl] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_sizeof] = ACTIONS(3058), - [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(3058), - [anon_sym__Generic] = ACTIONS(3058), - [anon_sym_asm] = ACTIONS(3058), - [anon_sym___asm__] = ACTIONS(3058), - [sym_number_literal] = ACTIONS(3060), - [anon_sym_L_SQUOTE] = ACTIONS(3060), - [anon_sym_u_SQUOTE] = ACTIONS(3060), - [anon_sym_U_SQUOTE] = ACTIONS(3060), - [anon_sym_u8_SQUOTE] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_L_DQUOTE] = ACTIONS(3060), - [anon_sym_u_DQUOTE] = ACTIONS(3060), - [anon_sym_U_DQUOTE] = ACTIONS(3060), - [anon_sym_u8_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [anon_sym_NULL] = ACTIONS(3058), - [anon_sym_nullptr] = ACTIONS(3058), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3058), - [anon_sym_decltype] = ACTIONS(3058), - [anon_sym_virtual] = ACTIONS(3058), - [anon_sym_alignas] = ACTIONS(3058), - [anon_sym_explicit] = ACTIONS(3058), - [anon_sym_typename] = ACTIONS(3058), - [anon_sym_template] = ACTIONS(3058), - [anon_sym_operator] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_delete] = ACTIONS(3058), - [anon_sym_throw] = ACTIONS(3058), - [anon_sym_namespace] = ACTIONS(3058), - [anon_sym_using] = ACTIONS(3058), - [anon_sym_static_assert] = ACTIONS(3058), - [anon_sym_concept] = ACTIONS(3058), - [anon_sym_co_return] = ACTIONS(3058), - [anon_sym_co_yield] = ACTIONS(3058), - [anon_sym_R_DQUOTE] = ACTIONS(3060), - [anon_sym_LR_DQUOTE] = ACTIONS(3060), - [anon_sym_uR_DQUOTE] = ACTIONS(3060), - [anon_sym_UR_DQUOTE] = ACTIONS(3060), - [anon_sym_u8R_DQUOTE] = ACTIONS(3060), - [anon_sym_co_await] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_requires] = ACTIONS(3058), - [sym_this] = ACTIONS(3058), - }, - [870] = { - [sym_identifier] = ACTIONS(3156), - [aux_sym_preproc_include_token1] = ACTIONS(3156), - [aux_sym_preproc_def_token1] = ACTIONS(3156), - [aux_sym_preproc_if_token1] = ACTIONS(3156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3156), - [sym_preproc_directive] = ACTIONS(3156), - [anon_sym_LPAREN2] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym___extension__] = ACTIONS(3156), - [anon_sym_typedef] = ACTIONS(3156), - [anon_sym_extern] = ACTIONS(3156), - [anon_sym___attribute__] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3158), - [anon_sym___declspec] = ACTIONS(3156), - [anon_sym___based] = ACTIONS(3156), - [anon_sym___cdecl] = ACTIONS(3156), - [anon_sym___clrcall] = ACTIONS(3156), - [anon_sym___stdcall] = ACTIONS(3156), - [anon_sym___fastcall] = ACTIONS(3156), - [anon_sym___thiscall] = ACTIONS(3156), - [anon_sym___vectorcall] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_signed] = ACTIONS(3156), - [anon_sym_unsigned] = ACTIONS(3156), - [anon_sym_long] = ACTIONS(3156), - [anon_sym_short] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_register] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym___inline] = ACTIONS(3156), - [anon_sym___inline__] = ACTIONS(3156), - [anon_sym___forceinline] = ACTIONS(3156), - [anon_sym_thread_local] = ACTIONS(3156), - [anon_sym___thread] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_constexpr] = ACTIONS(3156), - [anon_sym_volatile] = ACTIONS(3156), - [anon_sym_restrict] = ACTIONS(3156), - [anon_sym___restrict__] = ACTIONS(3156), - [anon_sym__Atomic] = ACTIONS(3156), - [anon_sym__Noreturn] = ACTIONS(3156), - [anon_sym_noreturn] = ACTIONS(3156), - [anon_sym_mutable] = ACTIONS(3156), - [anon_sym_constinit] = ACTIONS(3156), - [anon_sym_consteval] = ACTIONS(3156), - [sym_primitive_type] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_struct] = ACTIONS(3156), - [anon_sym_union] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_case] = ACTIONS(3156), - [anon_sym_default] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_goto] = ACTIONS(3156), - [anon_sym___try] = ACTIONS(3156), - [anon_sym___leave] = ACTIONS(3156), - [anon_sym_not] = ACTIONS(3156), - [anon_sym_compl] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_sizeof] = ACTIONS(3156), - [anon_sym___alignof__] = ACTIONS(3156), - [anon_sym___alignof] = ACTIONS(3156), - [anon_sym__alignof] = ACTIONS(3156), - [anon_sym_alignof] = ACTIONS(3156), - [anon_sym__Alignof] = ACTIONS(3156), - [anon_sym_offsetof] = ACTIONS(3156), - [anon_sym__Generic] = ACTIONS(3156), - [anon_sym_asm] = ACTIONS(3156), - [anon_sym___asm__] = ACTIONS(3156), - [sym_number_literal] = ACTIONS(3158), - [anon_sym_L_SQUOTE] = ACTIONS(3158), - [anon_sym_u_SQUOTE] = ACTIONS(3158), - [anon_sym_U_SQUOTE] = ACTIONS(3158), - [anon_sym_u8_SQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [anon_sym_NULL] = ACTIONS(3156), - [anon_sym_nullptr] = ACTIONS(3156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3156), - [anon_sym_decltype] = ACTIONS(3156), - [anon_sym_virtual] = ACTIONS(3156), - [anon_sym_alignas] = ACTIONS(3156), - [anon_sym_explicit] = ACTIONS(3156), - [anon_sym_typename] = ACTIONS(3156), - [anon_sym_template] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_static_assert] = ACTIONS(3156), - [anon_sym_concept] = ACTIONS(3156), - [anon_sym_co_return] = ACTIONS(3156), - [anon_sym_co_yield] = ACTIONS(3156), - [anon_sym_R_DQUOTE] = ACTIONS(3158), - [anon_sym_LR_DQUOTE] = ACTIONS(3158), - [anon_sym_uR_DQUOTE] = ACTIONS(3158), - [anon_sym_UR_DQUOTE] = ACTIONS(3158), - [anon_sym_u8R_DQUOTE] = ACTIONS(3158), - [anon_sym_co_await] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_requires] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [871] = { - [sym_identifier] = ACTIONS(3207), - [aux_sym_preproc_include_token1] = ACTIONS(3207), - [aux_sym_preproc_def_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token2] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), - [sym_preproc_directive] = ACTIONS(3207), - [anon_sym_LPAREN2] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_AMP_AMP] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym___based] = ACTIONS(3207), - [anon_sym___cdecl] = ACTIONS(3207), - [anon_sym___clrcall] = ACTIONS(3207), - [anon_sym___stdcall] = ACTIONS(3207), - [anon_sym___fastcall] = ACTIONS(3207), - [anon_sym___thiscall] = ACTIONS(3207), - [anon_sym___vectorcall] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym___try] = ACTIONS(3207), - [anon_sym___leave] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), + [824] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_explicit] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_operator] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_static_assert] = ACTIONS(3207), - [anon_sym_concept] = ACTIONS(3207), - [anon_sym_co_return] = ACTIONS(3207), - [anon_sym_co_yield] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [872] = { - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_include_token1] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym___cdecl] = ACTIONS(3148), - [anon_sym___clrcall] = ACTIONS(3148), - [anon_sym___stdcall] = ACTIONS(3148), - [anon_sym___fastcall] = ACTIONS(3148), - [anon_sym___thiscall] = ACTIONS(3148), - [anon_sym___vectorcall] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_goto] = ACTIONS(3148), - [anon_sym___try] = ACTIONS(3148), - [anon_sym___leave] = ACTIONS(3148), - [anon_sym_not] = ACTIONS(3148), - [anon_sym_compl] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_sizeof] = ACTIONS(3148), - [anon_sym___alignof__] = ACTIONS(3148), - [anon_sym___alignof] = ACTIONS(3148), - [anon_sym__alignof] = ACTIONS(3148), - [anon_sym_alignof] = ACTIONS(3148), - [anon_sym__Alignof] = ACTIONS(3148), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3148), - [anon_sym_asm] = ACTIONS(3148), - [anon_sym___asm__] = ACTIONS(3148), - [sym_number_literal] = ACTIONS(3150), - [anon_sym_L_SQUOTE] = ACTIONS(3150), - [anon_sym_u_SQUOTE] = ACTIONS(3150), - [anon_sym_U_SQUOTE] = ACTIONS(3150), - [anon_sym_u8_SQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_L_DQUOTE] = ACTIONS(3150), - [anon_sym_u_DQUOTE] = ACTIONS(3150), - [anon_sym_U_DQUOTE] = ACTIONS(3150), - [anon_sym_u8_DQUOTE] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [anon_sym_NULL] = ACTIONS(3148), - [anon_sym_nullptr] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - [anon_sym_concept] = ACTIONS(3148), - [anon_sym_co_return] = ACTIONS(3148), - [anon_sym_co_yield] = ACTIONS(3148), - [anon_sym_R_DQUOTE] = ACTIONS(3150), - [anon_sym_LR_DQUOTE] = ACTIONS(3150), - [anon_sym_uR_DQUOTE] = ACTIONS(3150), - [anon_sym_UR_DQUOTE] = ACTIONS(3150), - [anon_sym_u8R_DQUOTE] = ACTIONS(3150), - [anon_sym_co_await] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_requires] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), + [825] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [873] = { - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_include_token1] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token2] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym___cdecl] = ACTIONS(2989), - [anon_sym___clrcall] = ACTIONS(2989), - [anon_sym___stdcall] = ACTIONS(2989), - [anon_sym___fastcall] = ACTIONS(2989), - [anon_sym___thiscall] = ACTIONS(2989), - [anon_sym___vectorcall] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_case] = ACTIONS(2989), - [anon_sym_default] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_do] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym___try] = ACTIONS(2989), - [anon_sym___leave] = ACTIONS(2989), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_compl] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_sizeof] = ACTIONS(2989), - [anon_sym___alignof__] = ACTIONS(2989), - [anon_sym___alignof] = ACTIONS(2989), - [anon_sym__alignof] = ACTIONS(2989), - [anon_sym_alignof] = ACTIONS(2989), - [anon_sym__Alignof] = ACTIONS(2989), - [anon_sym_offsetof] = ACTIONS(2989), - [anon_sym__Generic] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym___asm__] = ACTIONS(2989), - [sym_number_literal] = ACTIONS(2991), - [anon_sym_L_SQUOTE] = ACTIONS(2991), - [anon_sym_u_SQUOTE] = ACTIONS(2991), - [anon_sym_U_SQUOTE] = ACTIONS(2991), - [anon_sym_u8_SQUOTE] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [anon_sym_L_DQUOTE] = ACTIONS(2991), - [anon_sym_u_DQUOTE] = ACTIONS(2991), - [anon_sym_U_DQUOTE] = ACTIONS(2991), - [anon_sym_u8_DQUOTE] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [anon_sym_NULL] = ACTIONS(2989), - [anon_sym_nullptr] = ACTIONS(2989), + [826] = { + [sym_preproc_def] = STATE(790), + [sym_preproc_function_def] = STATE(790), + [sym_preproc_call] = STATE(790), + [sym_preproc_if_in_field_declaration_list] = STATE(790), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(790), + [sym_preproc_else_in_field_declaration_list] = STATE(9282), + [sym_preproc_elif_in_field_declaration_list] = STATE(9282), + [sym_type_definition] = STATE(790), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6205), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(790), + [sym_field_declaration] = STATE(790), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(790), + [sym_operator_cast] = STATE(7192), + [sym_inline_method_definition] = STATE(790), + [sym__constructor_specifiers] = STATE(2057), + [sym_operator_cast_definition] = STATE(790), + [sym_operator_cast_declaration] = STATE(790), + [sym_constructor_or_destructor_definition] = STATE(790), + [sym_constructor_or_destructor_declaration] = STATE(790), + [sym_friend_declaration] = STATE(790), + [sym_access_specifier] = STATE(8453), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(790), + [sym_alias_declaration] = STATE(790), + [sym_static_assert_declaration] = STATE(790), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3432), + [aux_sym_preproc_if_token1] = ACTIONS(3434), + [aux_sym_preproc_if_token2] = ACTIONS(3606), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3034), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3442), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_delete] = ACTIONS(2989), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - [anon_sym_concept] = ACTIONS(2989), - [anon_sym_co_return] = ACTIONS(2989), - [anon_sym_co_yield] = ACTIONS(2989), - [anon_sym_R_DQUOTE] = ACTIONS(2991), - [anon_sym_LR_DQUOTE] = ACTIONS(2991), - [anon_sym_uR_DQUOTE] = ACTIONS(2991), - [anon_sym_UR_DQUOTE] = ACTIONS(2991), - [anon_sym_u8R_DQUOTE] = ACTIONS(2991), - [anon_sym_co_await] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_requires] = ACTIONS(2989), - [sym_this] = ACTIONS(2989), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3446), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3448), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3450), + [anon_sym_static_assert] = ACTIONS(3452), }, - [874] = { - [sym_catch_clause] = STATE(348), - [aux_sym_constructor_try_statement_repeat1] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(2828), - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_include_token1] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym___extension__] = ACTIONS(2826), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym___cdecl] = ACTIONS(2826), - [anon_sym___clrcall] = ACTIONS(2826), - [anon_sym___stdcall] = ACTIONS(2826), - [anon_sym___fastcall] = ACTIONS(2826), - [anon_sym___thiscall] = ACTIONS(2826), - [anon_sym___vectorcall] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym___inline] = ACTIONS(2826), - [anon_sym___inline__] = ACTIONS(2826), - [anon_sym___forceinline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym___thread] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym___restrict__] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym__Noreturn] = ACTIONS(2826), - [anon_sym_noreturn] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_goto] = ACTIONS(2826), - [anon_sym_not] = ACTIONS(2826), - [anon_sym_compl] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_sizeof] = ACTIONS(2826), - [anon_sym___alignof__] = ACTIONS(2826), - [anon_sym___alignof] = ACTIONS(2826), - [anon_sym__alignof] = ACTIONS(2826), - [anon_sym_alignof] = ACTIONS(2826), - [anon_sym__Alignof] = ACTIONS(2826), - [anon_sym_offsetof] = ACTIONS(2826), - [anon_sym__Generic] = ACTIONS(2826), - [anon_sym_asm] = ACTIONS(2826), - [anon_sym___asm__] = ACTIONS(2826), - [sym_number_literal] = ACTIONS(2828), - [anon_sym_L_SQUOTE] = ACTIONS(2828), - [anon_sym_u_SQUOTE] = ACTIONS(2828), - [anon_sym_U_SQUOTE] = ACTIONS(2828), - [anon_sym_u8_SQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_L_DQUOTE] = ACTIONS(2828), - [anon_sym_u_DQUOTE] = ACTIONS(2828), - [anon_sym_U_DQUOTE] = ACTIONS(2828), - [anon_sym_u8_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [anon_sym_NULL] = ACTIONS(2826), - [anon_sym_nullptr] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_alignas] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_concept] = ACTIONS(2826), - [anon_sym_co_return] = ACTIONS(2826), - [anon_sym_co_yield] = ACTIONS(2826), - [anon_sym_catch] = ACTIONS(3062), - [anon_sym_R_DQUOTE] = ACTIONS(2828), - [anon_sym_LR_DQUOTE] = ACTIONS(2828), - [anon_sym_uR_DQUOTE] = ACTIONS(2828), - [anon_sym_UR_DQUOTE] = ACTIONS(2828), - [anon_sym_u8R_DQUOTE] = ACTIONS(2828), - [anon_sym_co_await] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_requires] = ACTIONS(2826), - [sym_this] = ACTIONS(2826), + [827] = { + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [875] = { - [sym_identifier] = ACTIONS(3190), - [aux_sym_preproc_include_token1] = ACTIONS(3190), - [aux_sym_preproc_def_token1] = ACTIONS(3190), - [aux_sym_preproc_if_token1] = ACTIONS(3190), - [aux_sym_preproc_if_token2] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3190), - [sym_preproc_directive] = ACTIONS(3190), - [anon_sym_LPAREN2] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_STAR] = ACTIONS(3192), - [anon_sym_AMP_AMP] = ACTIONS(3192), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym___extension__] = ACTIONS(3190), - [anon_sym_typedef] = ACTIONS(3190), - [anon_sym_extern] = ACTIONS(3190), - [anon_sym___attribute__] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(3192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3192), - [anon_sym___declspec] = ACTIONS(3190), - [anon_sym___based] = ACTIONS(3190), - [anon_sym___cdecl] = ACTIONS(3190), - [anon_sym___clrcall] = ACTIONS(3190), - [anon_sym___stdcall] = ACTIONS(3190), - [anon_sym___fastcall] = ACTIONS(3190), - [anon_sym___thiscall] = ACTIONS(3190), - [anon_sym___vectorcall] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_signed] = ACTIONS(3190), - [anon_sym_unsigned] = ACTIONS(3190), - [anon_sym_long] = ACTIONS(3190), - [anon_sym_short] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_register] = ACTIONS(3190), - [anon_sym_inline] = ACTIONS(3190), - [anon_sym___inline] = ACTIONS(3190), - [anon_sym___inline__] = ACTIONS(3190), - [anon_sym___forceinline] = ACTIONS(3190), - [anon_sym_thread_local] = ACTIONS(3190), - [anon_sym___thread] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_constexpr] = ACTIONS(3190), - [anon_sym_volatile] = ACTIONS(3190), - [anon_sym_restrict] = ACTIONS(3190), - [anon_sym___restrict__] = ACTIONS(3190), - [anon_sym__Atomic] = ACTIONS(3190), - [anon_sym__Noreturn] = ACTIONS(3190), - [anon_sym_noreturn] = ACTIONS(3190), - [anon_sym_mutable] = ACTIONS(3190), - [anon_sym_constinit] = ACTIONS(3190), - [anon_sym_consteval] = ACTIONS(3190), - [sym_primitive_type] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_struct] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3190), - [anon_sym_default] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_goto] = ACTIONS(3190), - [anon_sym___try] = ACTIONS(3190), - [anon_sym___leave] = ACTIONS(3190), - [anon_sym_not] = ACTIONS(3190), - [anon_sym_compl] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_sizeof] = ACTIONS(3190), - [anon_sym___alignof__] = ACTIONS(3190), - [anon_sym___alignof] = ACTIONS(3190), - [anon_sym__alignof] = ACTIONS(3190), - [anon_sym_alignof] = ACTIONS(3190), - [anon_sym__Alignof] = ACTIONS(3190), - [anon_sym_offsetof] = ACTIONS(3190), - [anon_sym__Generic] = ACTIONS(3190), - [anon_sym_asm] = ACTIONS(3190), - [anon_sym___asm__] = ACTIONS(3190), - [sym_number_literal] = ACTIONS(3192), - [anon_sym_L_SQUOTE] = ACTIONS(3192), - [anon_sym_u_SQUOTE] = ACTIONS(3192), - [anon_sym_U_SQUOTE] = ACTIONS(3192), - [anon_sym_u8_SQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_L_DQUOTE] = ACTIONS(3192), - [anon_sym_u_DQUOTE] = ACTIONS(3192), - [anon_sym_U_DQUOTE] = ACTIONS(3192), - [anon_sym_u8_DQUOTE] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [anon_sym_NULL] = ACTIONS(3190), - [anon_sym_nullptr] = ACTIONS(3190), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3190), - [anon_sym_decltype] = ACTIONS(3190), - [anon_sym_virtual] = ACTIONS(3190), - [anon_sym_alignas] = ACTIONS(3190), - [anon_sym_explicit] = ACTIONS(3190), - [anon_sym_typename] = ACTIONS(3190), - [anon_sym_template] = ACTIONS(3190), - [anon_sym_operator] = ACTIONS(3190), - [anon_sym_try] = ACTIONS(3190), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_throw] = ACTIONS(3190), - [anon_sym_namespace] = ACTIONS(3190), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_static_assert] = ACTIONS(3190), - [anon_sym_concept] = ACTIONS(3190), - [anon_sym_co_return] = ACTIONS(3190), - [anon_sym_co_yield] = ACTIONS(3190), - [anon_sym_R_DQUOTE] = ACTIONS(3192), - [anon_sym_LR_DQUOTE] = ACTIONS(3192), - [anon_sym_uR_DQUOTE] = ACTIONS(3192), - [anon_sym_UR_DQUOTE] = ACTIONS(3192), - [anon_sym_u8R_DQUOTE] = ACTIONS(3192), - [anon_sym_co_await] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_requires] = ACTIONS(3190), - [sym_this] = ACTIONS(3190), + [828] = { + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2867), + [aux_sym_preproc_include_token1] = ACTIONS(2867), + [aux_sym_preproc_def_token1] = ACTIONS(2867), + [aux_sym_preproc_if_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2867), + [sym_preproc_directive] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym___based] = ACTIONS(2867), + [anon_sym___cdecl] = ACTIONS(2867), + [anon_sym___clrcall] = ACTIONS(2867), + [anon_sym___stdcall] = ACTIONS(2867), + [anon_sym___fastcall] = ACTIONS(2867), + [anon_sym___thiscall] = ACTIONS(2867), + [anon_sym___vectorcall] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_explicit] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_operator] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_static_assert] = ACTIONS(2867), + [anon_sym_concept] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [876] = { - [sym_identifier] = ACTIONS(3235), - [aux_sym_preproc_include_token1] = ACTIONS(3235), - [aux_sym_preproc_def_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token2] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3235), - [sym_preproc_directive] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3237), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym___based] = ACTIONS(3235), - [anon_sym___cdecl] = ACTIONS(3235), - [anon_sym___clrcall] = ACTIONS(3235), - [anon_sym___stdcall] = ACTIONS(3235), - [anon_sym___fastcall] = ACTIONS(3235), - [anon_sym___thiscall] = ACTIONS(3235), - [anon_sym___vectorcall] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym___try] = ACTIONS(3235), - [anon_sym___leave] = ACTIONS(3235), - [anon_sym_not] = ACTIONS(3235), - [anon_sym_compl] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3235), - [anon_sym___alignof__] = ACTIONS(3235), - [anon_sym___alignof] = ACTIONS(3235), - [anon_sym__alignof] = ACTIONS(3235), - [anon_sym_alignof] = ACTIONS(3235), - [anon_sym__Alignof] = ACTIONS(3235), - [anon_sym_offsetof] = ACTIONS(3235), - [anon_sym__Generic] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym___asm__] = ACTIONS(3235), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_L_SQUOTE] = ACTIONS(3237), - [anon_sym_u_SQUOTE] = ACTIONS(3237), - [anon_sym_U_SQUOTE] = ACTIONS(3237), - [anon_sym_u8_SQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_L_DQUOTE] = ACTIONS(3237), - [anon_sym_u_DQUOTE] = ACTIONS(3237), - [anon_sym_U_DQUOTE] = ACTIONS(3237), - [anon_sym_u8_DQUOTE] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [anon_sym_NULL] = ACTIONS(3235), - [anon_sym_nullptr] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_operator] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_static_assert] = ACTIONS(3235), - [anon_sym_concept] = ACTIONS(3235), - [anon_sym_co_return] = ACTIONS(3235), - [anon_sym_co_yield] = ACTIONS(3235), - [anon_sym_R_DQUOTE] = ACTIONS(3237), - [anon_sym_LR_DQUOTE] = ACTIONS(3237), - [anon_sym_uR_DQUOTE] = ACTIONS(3237), - [anon_sym_UR_DQUOTE] = ACTIONS(3237), - [anon_sym_u8R_DQUOTE] = ACTIONS(3237), - [anon_sym_co_await] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_requires] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), + [829] = { + [sym_identifier] = ACTIONS(3090), + [aux_sym_preproc_include_token1] = ACTIONS(3090), + [aux_sym_preproc_def_token1] = ACTIONS(3090), + [aux_sym_preproc_if_token1] = ACTIONS(3090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), + [sym_preproc_directive] = ACTIONS(3090), + [anon_sym_LPAREN2] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym___extension__] = ACTIONS(3090), + [anon_sym_typedef] = ACTIONS(3090), + [anon_sym_extern] = ACTIONS(3090), + [anon_sym___attribute__] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), + [anon_sym___declspec] = ACTIONS(3090), + [anon_sym___based] = ACTIONS(3090), + [anon_sym___cdecl] = ACTIONS(3090), + [anon_sym___clrcall] = ACTIONS(3090), + [anon_sym___stdcall] = ACTIONS(3090), + [anon_sym___fastcall] = ACTIONS(3090), + [anon_sym___thiscall] = ACTIONS(3090), + [anon_sym___vectorcall] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_signed] = ACTIONS(3090), + [anon_sym_unsigned] = ACTIONS(3090), + [anon_sym_long] = ACTIONS(3090), + [anon_sym_short] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_static] = ACTIONS(3090), + [anon_sym_register] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym___inline] = ACTIONS(3090), + [anon_sym___inline__] = ACTIONS(3090), + [anon_sym___forceinline] = ACTIONS(3090), + [anon_sym_thread_local] = ACTIONS(3090), + [anon_sym___thread] = ACTIONS(3090), + [anon_sym_const] = ACTIONS(3090), + [anon_sym_constexpr] = ACTIONS(3090), + [anon_sym_volatile] = ACTIONS(3090), + [anon_sym_restrict] = ACTIONS(3090), + [anon_sym___restrict__] = ACTIONS(3090), + [anon_sym__Atomic] = ACTIONS(3090), + [anon_sym__Noreturn] = ACTIONS(3090), + [anon_sym_noreturn] = ACTIONS(3090), + [anon_sym_mutable] = ACTIONS(3090), + [anon_sym_constinit] = ACTIONS(3090), + [anon_sym_consteval] = ACTIONS(3090), + [sym_primitive_type] = ACTIONS(3090), + [anon_sym_enum] = ACTIONS(3090), + [anon_sym_class] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3090), + [anon_sym_union] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_switch] = ACTIONS(3090), + [anon_sym_case] = ACTIONS(3090), + [anon_sym_default] = ACTIONS(3090), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_do] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_goto] = ACTIONS(3090), + [anon_sym___try] = ACTIONS(3090), + [anon_sym___leave] = ACTIONS(3090), + [anon_sym_not] = ACTIONS(3090), + [anon_sym_compl] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_sizeof] = ACTIONS(3090), + [anon_sym___alignof__] = ACTIONS(3090), + [anon_sym___alignof] = ACTIONS(3090), + [anon_sym__alignof] = ACTIONS(3090), + [anon_sym_alignof] = ACTIONS(3090), + [anon_sym__Alignof] = ACTIONS(3090), + [anon_sym_offsetof] = ACTIONS(3090), + [anon_sym__Generic] = ACTIONS(3090), + [anon_sym_asm] = ACTIONS(3090), + [anon_sym___asm__] = ACTIONS(3090), + [sym_number_literal] = ACTIONS(3092), + [anon_sym_L_SQUOTE] = ACTIONS(3092), + [anon_sym_u_SQUOTE] = ACTIONS(3092), + [anon_sym_U_SQUOTE] = ACTIONS(3092), + [anon_sym_u8_SQUOTE] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3092), + [anon_sym_L_DQUOTE] = ACTIONS(3092), + [anon_sym_u_DQUOTE] = ACTIONS(3092), + [anon_sym_U_DQUOTE] = ACTIONS(3092), + [anon_sym_u8_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [anon_sym_NULL] = ACTIONS(3090), + [anon_sym_nullptr] = ACTIONS(3090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3090), + [anon_sym_decltype] = ACTIONS(3090), + [anon_sym_virtual] = ACTIONS(3090), + [anon_sym_alignas] = ACTIONS(3090), + [anon_sym_explicit] = ACTIONS(3090), + [anon_sym_typename] = ACTIONS(3090), + [anon_sym_template] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_namespace] = ACTIONS(3090), + [anon_sym_using] = ACTIONS(3090), + [anon_sym_static_assert] = ACTIONS(3090), + [anon_sym_concept] = ACTIONS(3090), + [anon_sym_co_return] = ACTIONS(3090), + [anon_sym_co_yield] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(3092), + [anon_sym_LR_DQUOTE] = ACTIONS(3092), + [anon_sym_uR_DQUOTE] = ACTIONS(3092), + [anon_sym_UR_DQUOTE] = ACTIONS(3092), + [anon_sym_u8R_DQUOTE] = ACTIONS(3092), + [anon_sym_co_await] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3090), + [anon_sym_requires] = ACTIONS(3090), + [sym_this] = ACTIONS(3090), }, - [877] = { - [sym_identifier] = ACTIONS(3243), - [aux_sym_preproc_include_token1] = ACTIONS(3243), - [aux_sym_preproc_def_token1] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3243), - [sym_preproc_directive] = ACTIONS(3243), - [anon_sym_LPAREN2] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym___extension__] = ACTIONS(3243), - [anon_sym_typedef] = ACTIONS(3243), - [anon_sym_extern] = ACTIONS(3243), - [anon_sym___attribute__] = ACTIONS(3243), - [anon_sym_COLON_COLON] = ACTIONS(3245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3245), - [anon_sym___declspec] = ACTIONS(3243), - [anon_sym___based] = ACTIONS(3243), - [anon_sym___cdecl] = ACTIONS(3243), - [anon_sym___clrcall] = ACTIONS(3243), - [anon_sym___stdcall] = ACTIONS(3243), - [anon_sym___fastcall] = ACTIONS(3243), - [anon_sym___thiscall] = ACTIONS(3243), - [anon_sym___vectorcall] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_signed] = ACTIONS(3243), - [anon_sym_unsigned] = ACTIONS(3243), - [anon_sym_long] = ACTIONS(3243), - [anon_sym_short] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_register] = ACTIONS(3243), - [anon_sym_inline] = ACTIONS(3243), - [anon_sym___inline] = ACTIONS(3243), - [anon_sym___inline__] = ACTIONS(3243), - [anon_sym___forceinline] = ACTIONS(3243), - [anon_sym_thread_local] = ACTIONS(3243), - [anon_sym___thread] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_constexpr] = ACTIONS(3243), - [anon_sym_volatile] = ACTIONS(3243), - [anon_sym_restrict] = ACTIONS(3243), - [anon_sym___restrict__] = ACTIONS(3243), - [anon_sym__Atomic] = ACTIONS(3243), - [anon_sym__Noreturn] = ACTIONS(3243), - [anon_sym_noreturn] = ACTIONS(3243), - [anon_sym_mutable] = ACTIONS(3243), - [anon_sym_constinit] = ACTIONS(3243), - [anon_sym_consteval] = ACTIONS(3243), - [sym_primitive_type] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_union] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_case] = ACTIONS(3243), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_goto] = ACTIONS(3243), - [anon_sym___try] = ACTIONS(3243), - [anon_sym___leave] = ACTIONS(3243), - [anon_sym_not] = ACTIONS(3243), - [anon_sym_compl] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_sizeof] = ACTIONS(3243), - [anon_sym___alignof__] = ACTIONS(3243), - [anon_sym___alignof] = ACTIONS(3243), - [anon_sym__alignof] = ACTIONS(3243), - [anon_sym_alignof] = ACTIONS(3243), - [anon_sym__Alignof] = ACTIONS(3243), - [anon_sym_offsetof] = ACTIONS(3243), - [anon_sym__Generic] = ACTIONS(3243), - [anon_sym_asm] = ACTIONS(3243), - [anon_sym___asm__] = ACTIONS(3243), - [sym_number_literal] = ACTIONS(3245), - [anon_sym_L_SQUOTE] = ACTIONS(3245), - [anon_sym_u_SQUOTE] = ACTIONS(3245), - [anon_sym_U_SQUOTE] = ACTIONS(3245), - [anon_sym_u8_SQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_L_DQUOTE] = ACTIONS(3245), - [anon_sym_u_DQUOTE] = ACTIONS(3245), - [anon_sym_U_DQUOTE] = ACTIONS(3245), - [anon_sym_u8_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [anon_sym_NULL] = ACTIONS(3243), - [anon_sym_nullptr] = ACTIONS(3243), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3243), - [anon_sym_decltype] = ACTIONS(3243), - [anon_sym_virtual] = ACTIONS(3243), - [anon_sym_alignas] = ACTIONS(3243), - [anon_sym_explicit] = ACTIONS(3243), - [anon_sym_typename] = ACTIONS(3243), - [anon_sym_template] = ACTIONS(3243), - [anon_sym_operator] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_static_assert] = ACTIONS(3243), - [anon_sym_concept] = ACTIONS(3243), - [anon_sym_co_return] = ACTIONS(3243), - [anon_sym_co_yield] = ACTIONS(3243), - [anon_sym_R_DQUOTE] = ACTIONS(3245), - [anon_sym_LR_DQUOTE] = ACTIONS(3245), - [anon_sym_uR_DQUOTE] = ACTIONS(3245), - [anon_sym_UR_DQUOTE] = ACTIONS(3245), - [anon_sym_u8R_DQUOTE] = ACTIONS(3245), - [anon_sym_co_await] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_requires] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), + [830] = { + [sym_identifier] = ACTIONS(3195), + [aux_sym_preproc_include_token1] = ACTIONS(3195), + [aux_sym_preproc_def_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token2] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), + [sym_preproc_directive] = ACTIONS(3195), + [anon_sym_LPAREN2] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym___extension__] = ACTIONS(3195), + [anon_sym_typedef] = ACTIONS(3195), + [anon_sym_extern] = ACTIONS(3195), + [anon_sym___attribute__] = ACTIONS(3195), + [anon_sym_COLON_COLON] = ACTIONS(3197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), + [anon_sym___declspec] = ACTIONS(3195), + [anon_sym___based] = ACTIONS(3195), + [anon_sym___cdecl] = ACTIONS(3195), + [anon_sym___clrcall] = ACTIONS(3195), + [anon_sym___stdcall] = ACTIONS(3195), + [anon_sym___fastcall] = ACTIONS(3195), + [anon_sym___thiscall] = ACTIONS(3195), + [anon_sym___vectorcall] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_signed] = ACTIONS(3195), + [anon_sym_unsigned] = ACTIONS(3195), + [anon_sym_long] = ACTIONS(3195), + [anon_sym_short] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_register] = ACTIONS(3195), + [anon_sym_inline] = ACTIONS(3195), + [anon_sym___inline] = ACTIONS(3195), + [anon_sym___inline__] = ACTIONS(3195), + [anon_sym___forceinline] = ACTIONS(3195), + [anon_sym_thread_local] = ACTIONS(3195), + [anon_sym___thread] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_constexpr] = ACTIONS(3195), + [anon_sym_volatile] = ACTIONS(3195), + [anon_sym_restrict] = ACTIONS(3195), + [anon_sym___restrict__] = ACTIONS(3195), + [anon_sym__Atomic] = ACTIONS(3195), + [anon_sym__Noreturn] = ACTIONS(3195), + [anon_sym_noreturn] = ACTIONS(3195), + [anon_sym_mutable] = ACTIONS(3195), + [anon_sym_constinit] = ACTIONS(3195), + [anon_sym_consteval] = ACTIONS(3195), + [sym_primitive_type] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_case] = ACTIONS(3195), + [anon_sym_default] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_goto] = ACTIONS(3195), + [anon_sym___try] = ACTIONS(3195), + [anon_sym___leave] = ACTIONS(3195), + [anon_sym_not] = ACTIONS(3195), + [anon_sym_compl] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_sizeof] = ACTIONS(3195), + [anon_sym___alignof__] = ACTIONS(3195), + [anon_sym___alignof] = ACTIONS(3195), + [anon_sym__alignof] = ACTIONS(3195), + [anon_sym_alignof] = ACTIONS(3195), + [anon_sym__Alignof] = ACTIONS(3195), + [anon_sym_offsetof] = ACTIONS(3195), + [anon_sym__Generic] = ACTIONS(3195), + [anon_sym_asm] = ACTIONS(3195), + [anon_sym___asm__] = ACTIONS(3195), + [sym_number_literal] = ACTIONS(3197), + [anon_sym_L_SQUOTE] = ACTIONS(3197), + [anon_sym_u_SQUOTE] = ACTIONS(3197), + [anon_sym_U_SQUOTE] = ACTIONS(3197), + [anon_sym_u8_SQUOTE] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3197), + [anon_sym_L_DQUOTE] = ACTIONS(3197), + [anon_sym_u_DQUOTE] = ACTIONS(3197), + [anon_sym_U_DQUOTE] = ACTIONS(3197), + [anon_sym_u8_DQUOTE] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(3197), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [anon_sym_NULL] = ACTIONS(3195), + [anon_sym_nullptr] = ACTIONS(3195), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3195), + [anon_sym_decltype] = ACTIONS(3195), + [anon_sym_virtual] = ACTIONS(3195), + [anon_sym_alignas] = ACTIONS(3195), + [anon_sym_explicit] = ACTIONS(3195), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(3195), + [anon_sym_operator] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_static_assert] = ACTIONS(3195), + [anon_sym_concept] = ACTIONS(3195), + [anon_sym_co_return] = ACTIONS(3195), + [anon_sym_co_yield] = ACTIONS(3195), + [anon_sym_R_DQUOTE] = ACTIONS(3197), + [anon_sym_LR_DQUOTE] = ACTIONS(3197), + [anon_sym_uR_DQUOTE] = ACTIONS(3197), + [anon_sym_UR_DQUOTE] = ACTIONS(3197), + [anon_sym_u8R_DQUOTE] = ACTIONS(3197), + [anon_sym_co_await] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_requires] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), }, - [878] = { - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_include_token1] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token2] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym___cdecl] = ACTIONS(3251), - [anon_sym___clrcall] = ACTIONS(3251), - [anon_sym___stdcall] = ACTIONS(3251), - [anon_sym___fastcall] = ACTIONS(3251), - [anon_sym___thiscall] = ACTIONS(3251), - [anon_sym___vectorcall] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym___try] = ACTIONS(3251), - [anon_sym___leave] = ACTIONS(3251), - [anon_sym_not] = ACTIONS(3251), - [anon_sym_compl] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3251), - [anon_sym___alignof__] = ACTIONS(3251), - [anon_sym___alignof] = ACTIONS(3251), - [anon_sym__alignof] = ACTIONS(3251), - [anon_sym_alignof] = ACTIONS(3251), - [anon_sym__Alignof] = ACTIONS(3251), - [anon_sym_offsetof] = ACTIONS(3251), - [anon_sym__Generic] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym___asm__] = ACTIONS(3251), - [sym_number_literal] = ACTIONS(3253), - [anon_sym_L_SQUOTE] = ACTIONS(3253), - [anon_sym_u_SQUOTE] = ACTIONS(3253), - [anon_sym_U_SQUOTE] = ACTIONS(3253), - [anon_sym_u8_SQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_L_DQUOTE] = ACTIONS(3253), - [anon_sym_u_DQUOTE] = ACTIONS(3253), - [anon_sym_U_DQUOTE] = ACTIONS(3253), - [anon_sym_u8_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [anon_sym_NULL] = ACTIONS(3251), - [anon_sym_nullptr] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), - [anon_sym_concept] = ACTIONS(3251), - [anon_sym_co_return] = ACTIONS(3251), - [anon_sym_co_yield] = ACTIONS(3251), - [anon_sym_R_DQUOTE] = ACTIONS(3253), - [anon_sym_LR_DQUOTE] = ACTIONS(3253), - [anon_sym_uR_DQUOTE] = ACTIONS(3253), - [anon_sym_UR_DQUOTE] = ACTIONS(3253), - [anon_sym_u8R_DQUOTE] = ACTIONS(3253), - [anon_sym_co_await] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_requires] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), + [831] = { + [sym_identifier] = ACTIONS(3151), + [aux_sym_preproc_include_token1] = ACTIONS(3151), + [aux_sym_preproc_def_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3151), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_extern] = ACTIONS(3151), + [anon_sym___attribute__] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(3151), + [anon_sym___cdecl] = ACTIONS(3151), + [anon_sym___clrcall] = ACTIONS(3151), + [anon_sym___stdcall] = ACTIONS(3151), + [anon_sym___fastcall] = ACTIONS(3151), + [anon_sym___thiscall] = ACTIONS(3151), + [anon_sym___vectorcall] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3151), + [anon_sym_unsigned] = ACTIONS(3151), + [anon_sym_long] = ACTIONS(3151), + [anon_sym_short] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_register] = ACTIONS(3151), + [anon_sym_inline] = ACTIONS(3151), + [anon_sym___inline] = ACTIONS(3151), + [anon_sym___inline__] = ACTIONS(3151), + [anon_sym___forceinline] = ACTIONS(3151), + [anon_sym_thread_local] = ACTIONS(3151), + [anon_sym___thread] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_constexpr] = ACTIONS(3151), + [anon_sym_volatile] = ACTIONS(3151), + [anon_sym_restrict] = ACTIONS(3151), + [anon_sym___restrict__] = ACTIONS(3151), + [anon_sym__Atomic] = ACTIONS(3151), + [anon_sym__Noreturn] = ACTIONS(3151), + [anon_sym_noreturn] = ACTIONS(3151), + [anon_sym_mutable] = ACTIONS(3151), + [anon_sym_constinit] = ACTIONS(3151), + [anon_sym_consteval] = ACTIONS(3151), + [sym_primitive_type] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_case] = ACTIONS(3151), + [anon_sym_default] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_goto] = ACTIONS(3151), + [anon_sym___try] = ACTIONS(3151), + [anon_sym___leave] = ACTIONS(3151), + [anon_sym_not] = ACTIONS(3151), + [anon_sym_compl] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3151), + [anon_sym___alignof__] = ACTIONS(3151), + [anon_sym___alignof] = ACTIONS(3151), + [anon_sym__alignof] = ACTIONS(3151), + [anon_sym_alignof] = ACTIONS(3151), + [anon_sym__Alignof] = ACTIONS(3151), + [anon_sym_offsetof] = ACTIONS(3151), + [anon_sym__Generic] = ACTIONS(3151), + [anon_sym_asm] = ACTIONS(3151), + [anon_sym___asm__] = ACTIONS(3151), + [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(3151), + [sym_false] = ACTIONS(3151), + [anon_sym_NULL] = ACTIONS(3151), + [anon_sym_nullptr] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3151), + [anon_sym_decltype] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3151), + [anon_sym_alignas] = ACTIONS(3151), + [anon_sym_explicit] = ACTIONS(3151), + [anon_sym_typename] = ACTIONS(3151), + [anon_sym_template] = ACTIONS(3151), + [anon_sym_operator] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_static_assert] = ACTIONS(3151), + [anon_sym_concept] = ACTIONS(3151), + [anon_sym_co_return] = ACTIONS(3151), + [anon_sym_co_yield] = ACTIONS(3151), + [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(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_requires] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), }, - [879] = { - [sym_identifier] = ACTIONS(3239), - [aux_sym_preproc_include_token1] = ACTIONS(3239), - [aux_sym_preproc_def_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token2] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), - [sym_preproc_directive] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_AMP_AMP] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym___extension__] = ACTIONS(3239), - [anon_sym_typedef] = ACTIONS(3239), - [anon_sym_extern] = ACTIONS(3239), - [anon_sym___attribute__] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3241), - [anon_sym___declspec] = ACTIONS(3239), - [anon_sym___based] = ACTIONS(3239), - [anon_sym___cdecl] = ACTIONS(3239), - [anon_sym___clrcall] = ACTIONS(3239), - [anon_sym___stdcall] = ACTIONS(3239), - [anon_sym___fastcall] = ACTIONS(3239), - [anon_sym___thiscall] = ACTIONS(3239), - [anon_sym___vectorcall] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_signed] = ACTIONS(3239), - [anon_sym_unsigned] = ACTIONS(3239), - [anon_sym_long] = ACTIONS(3239), - [anon_sym_short] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_register] = ACTIONS(3239), - [anon_sym_inline] = ACTIONS(3239), - [anon_sym___inline] = ACTIONS(3239), - [anon_sym___inline__] = ACTIONS(3239), - [anon_sym___forceinline] = ACTIONS(3239), - [anon_sym_thread_local] = ACTIONS(3239), - [anon_sym___thread] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_constexpr] = ACTIONS(3239), - [anon_sym_volatile] = ACTIONS(3239), - [anon_sym_restrict] = ACTIONS(3239), - [anon_sym___restrict__] = ACTIONS(3239), - [anon_sym__Atomic] = ACTIONS(3239), - [anon_sym__Noreturn] = ACTIONS(3239), - [anon_sym_noreturn] = ACTIONS(3239), - [anon_sym_mutable] = ACTIONS(3239), - [anon_sym_constinit] = ACTIONS(3239), - [anon_sym_consteval] = ACTIONS(3239), - [sym_primitive_type] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_case] = ACTIONS(3239), - [anon_sym_default] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_goto] = ACTIONS(3239), - [anon_sym___try] = ACTIONS(3239), - [anon_sym___leave] = ACTIONS(3239), - [anon_sym_not] = ACTIONS(3239), - [anon_sym_compl] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_sizeof] = ACTIONS(3239), - [anon_sym___alignof__] = ACTIONS(3239), - [anon_sym___alignof] = ACTIONS(3239), - [anon_sym__alignof] = ACTIONS(3239), - [anon_sym_alignof] = ACTIONS(3239), - [anon_sym__Alignof] = ACTIONS(3239), - [anon_sym_offsetof] = ACTIONS(3239), - [anon_sym__Generic] = ACTIONS(3239), - [anon_sym_asm] = ACTIONS(3239), - [anon_sym___asm__] = ACTIONS(3239), - [sym_number_literal] = ACTIONS(3241), - [anon_sym_L_SQUOTE] = ACTIONS(3241), - [anon_sym_u_SQUOTE] = ACTIONS(3241), - [anon_sym_U_SQUOTE] = ACTIONS(3241), - [anon_sym_u8_SQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_L_DQUOTE] = ACTIONS(3241), - [anon_sym_u_DQUOTE] = ACTIONS(3241), - [anon_sym_U_DQUOTE] = ACTIONS(3241), - [anon_sym_u8_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [anon_sym_NULL] = ACTIONS(3239), - [anon_sym_nullptr] = ACTIONS(3239), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3239), - [anon_sym_decltype] = ACTIONS(3239), - [anon_sym_virtual] = ACTIONS(3239), - [anon_sym_alignas] = ACTIONS(3239), - [anon_sym_explicit] = ACTIONS(3239), - [anon_sym_typename] = ACTIONS(3239), - [anon_sym_template] = ACTIONS(3239), - [anon_sym_operator] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_delete] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_static_assert] = ACTIONS(3239), - [anon_sym_concept] = ACTIONS(3239), - [anon_sym_co_return] = ACTIONS(3239), - [anon_sym_co_yield] = ACTIONS(3239), - [anon_sym_R_DQUOTE] = ACTIONS(3241), - [anon_sym_LR_DQUOTE] = ACTIONS(3241), - [anon_sym_uR_DQUOTE] = ACTIONS(3241), - [anon_sym_UR_DQUOTE] = ACTIONS(3241), - [anon_sym_u8R_DQUOTE] = ACTIONS(3241), - [anon_sym_co_await] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_requires] = ACTIONS(3239), - [sym_this] = ACTIONS(3239), + [832] = { + [sym_identifier] = ACTIONS(3147), + [aux_sym_preproc_include_token1] = ACTIONS(3147), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), + [sym_preproc_directive] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_AMP_AMP] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym___extension__] = ACTIONS(3147), + [anon_sym_typedef] = ACTIONS(3147), + [anon_sym_extern] = ACTIONS(3147), + [anon_sym___attribute__] = ACTIONS(3147), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), + [anon_sym___declspec] = ACTIONS(3147), + [anon_sym___based] = ACTIONS(3147), + [anon_sym___cdecl] = ACTIONS(3147), + [anon_sym___clrcall] = ACTIONS(3147), + [anon_sym___stdcall] = ACTIONS(3147), + [anon_sym___fastcall] = ACTIONS(3147), + [anon_sym___thiscall] = ACTIONS(3147), + [anon_sym___vectorcall] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3149), + [anon_sym_signed] = ACTIONS(3147), + [anon_sym_unsigned] = ACTIONS(3147), + [anon_sym_long] = ACTIONS(3147), + [anon_sym_short] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_register] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym___inline] = ACTIONS(3147), + [anon_sym___inline__] = ACTIONS(3147), + [anon_sym___forceinline] = ACTIONS(3147), + [anon_sym_thread_local] = ACTIONS(3147), + [anon_sym___thread] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_constexpr] = ACTIONS(3147), + [anon_sym_volatile] = ACTIONS(3147), + [anon_sym_restrict] = ACTIONS(3147), + [anon_sym___restrict__] = ACTIONS(3147), + [anon_sym__Atomic] = ACTIONS(3147), + [anon_sym__Noreturn] = ACTIONS(3147), + [anon_sym_noreturn] = ACTIONS(3147), + [anon_sym_mutable] = ACTIONS(3147), + [anon_sym_constinit] = ACTIONS(3147), + [anon_sym_consteval] = ACTIONS(3147), + [sym_primitive_type] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3147), + [anon_sym_case] = ACTIONS(3147), + [anon_sym_default] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_goto] = ACTIONS(3147), + [anon_sym___try] = ACTIONS(3147), + [anon_sym___leave] = ACTIONS(3147), + [anon_sym_not] = ACTIONS(3147), + [anon_sym_compl] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3147), + [anon_sym___alignof__] = ACTIONS(3147), + [anon_sym___alignof] = ACTIONS(3147), + [anon_sym__alignof] = ACTIONS(3147), + [anon_sym_alignof] = ACTIONS(3147), + [anon_sym__Alignof] = ACTIONS(3147), + [anon_sym_offsetof] = ACTIONS(3147), + [anon_sym__Generic] = ACTIONS(3147), + [anon_sym_asm] = ACTIONS(3147), + [anon_sym___asm__] = ACTIONS(3147), + [sym_number_literal] = ACTIONS(3149), + [anon_sym_L_SQUOTE] = ACTIONS(3149), + [anon_sym_u_SQUOTE] = ACTIONS(3149), + [anon_sym_U_SQUOTE] = ACTIONS(3149), + [anon_sym_u8_SQUOTE] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_L_DQUOTE] = ACTIONS(3149), + [anon_sym_u_DQUOTE] = ACTIONS(3149), + [anon_sym_U_DQUOTE] = ACTIONS(3149), + [anon_sym_u8_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(3149), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [anon_sym_NULL] = ACTIONS(3147), + [anon_sym_nullptr] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3147), + [anon_sym_decltype] = ACTIONS(3147), + [anon_sym_virtual] = ACTIONS(3147), + [anon_sym_alignas] = ACTIONS(3147), + [anon_sym_explicit] = ACTIONS(3147), + [anon_sym_typename] = ACTIONS(3147), + [anon_sym_template] = ACTIONS(3147), + [anon_sym_operator] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(3147), + [anon_sym_throw] = ACTIONS(3147), + [anon_sym_namespace] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_static_assert] = ACTIONS(3147), + [anon_sym_concept] = ACTIONS(3147), + [anon_sym_co_return] = ACTIONS(3147), + [anon_sym_co_yield] = ACTIONS(3147), + [anon_sym_R_DQUOTE] = ACTIONS(3149), + [anon_sym_LR_DQUOTE] = ACTIONS(3149), + [anon_sym_uR_DQUOTE] = ACTIONS(3149), + [anon_sym_UR_DQUOTE] = ACTIONS(3149), + [anon_sym_u8R_DQUOTE] = ACTIONS(3149), + [anon_sym_co_await] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_requires] = ACTIONS(3147), + [sym_this] = ACTIONS(3147), }, - [880] = { - [sym_identifier] = ACTIONS(3186), - [aux_sym_preproc_include_token1] = ACTIONS(3186), - [aux_sym_preproc_def_token1] = ACTIONS(3186), - [aux_sym_preproc_if_token1] = ACTIONS(3186), - [aux_sym_preproc_if_token2] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3186), - [sym_preproc_directive] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym___extension__] = ACTIONS(3186), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym___attribute__] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3188), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3188), - [anon_sym___declspec] = ACTIONS(3186), - [anon_sym___based] = ACTIONS(3186), - [anon_sym___cdecl] = ACTIONS(3186), - [anon_sym___clrcall] = ACTIONS(3186), - [anon_sym___stdcall] = ACTIONS(3186), - [anon_sym___fastcall] = ACTIONS(3186), - [anon_sym___thiscall] = ACTIONS(3186), - [anon_sym___vectorcall] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_signed] = ACTIONS(3186), - [anon_sym_unsigned] = ACTIONS(3186), - [anon_sym_long] = ACTIONS(3186), - [anon_sym_short] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_register] = ACTIONS(3186), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym___inline] = ACTIONS(3186), - [anon_sym___inline__] = ACTIONS(3186), - [anon_sym___forceinline] = ACTIONS(3186), - [anon_sym_thread_local] = ACTIONS(3186), - [anon_sym___thread] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_constexpr] = ACTIONS(3186), - [anon_sym_volatile] = ACTIONS(3186), - [anon_sym_restrict] = ACTIONS(3186), - [anon_sym___restrict__] = ACTIONS(3186), - [anon_sym__Atomic] = ACTIONS(3186), - [anon_sym__Noreturn] = ACTIONS(3186), - [anon_sym_noreturn] = ACTIONS(3186), - [anon_sym_mutable] = ACTIONS(3186), - [anon_sym_constinit] = ACTIONS(3186), - [anon_sym_consteval] = ACTIONS(3186), - [sym_primitive_type] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_struct] = ACTIONS(3186), - [anon_sym_union] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_goto] = ACTIONS(3186), - [anon_sym___try] = ACTIONS(3186), - [anon_sym___leave] = ACTIONS(3186), - [anon_sym_not] = ACTIONS(3186), - [anon_sym_compl] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_sizeof] = ACTIONS(3186), - [anon_sym___alignof__] = ACTIONS(3186), - [anon_sym___alignof] = ACTIONS(3186), - [anon_sym__alignof] = ACTIONS(3186), - [anon_sym_alignof] = ACTIONS(3186), - [anon_sym__Alignof] = ACTIONS(3186), - [anon_sym_offsetof] = ACTIONS(3186), - [anon_sym__Generic] = ACTIONS(3186), - [anon_sym_asm] = ACTIONS(3186), - [anon_sym___asm__] = ACTIONS(3186), - [sym_number_literal] = ACTIONS(3188), - [anon_sym_L_SQUOTE] = ACTIONS(3188), - [anon_sym_u_SQUOTE] = ACTIONS(3188), - [anon_sym_U_SQUOTE] = ACTIONS(3188), - [anon_sym_u8_SQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_L_DQUOTE] = ACTIONS(3188), - [anon_sym_u_DQUOTE] = ACTIONS(3188), - [anon_sym_U_DQUOTE] = ACTIONS(3188), - [anon_sym_u8_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [anon_sym_NULL] = ACTIONS(3186), - [anon_sym_nullptr] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3186), - [anon_sym_decltype] = ACTIONS(3186), - [anon_sym_virtual] = ACTIONS(3186), - [anon_sym_alignas] = ACTIONS(3186), - [anon_sym_explicit] = ACTIONS(3186), - [anon_sym_typename] = ACTIONS(3186), - [anon_sym_template] = ACTIONS(3186), - [anon_sym_operator] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_static_assert] = ACTIONS(3186), - [anon_sym_concept] = ACTIONS(3186), - [anon_sym_co_return] = ACTIONS(3186), - [anon_sym_co_yield] = ACTIONS(3186), - [anon_sym_R_DQUOTE] = ACTIONS(3188), - [anon_sym_LR_DQUOTE] = ACTIONS(3188), - [anon_sym_uR_DQUOTE] = ACTIONS(3188), - [anon_sym_UR_DQUOTE] = ACTIONS(3188), - [anon_sym_u8R_DQUOTE] = ACTIONS(3188), - [anon_sym_co_await] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_requires] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), + [833] = { + [sym_identifier] = ACTIONS(3138), + [aux_sym_preproc_include_token1] = ACTIONS(3138), + [aux_sym_preproc_def_token1] = ACTIONS(3138), + [aux_sym_preproc_if_token1] = ACTIONS(3138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3138), + [sym_preproc_directive] = ACTIONS(3138), + [anon_sym_LPAREN2] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_typedef] = ACTIONS(3138), + [anon_sym_extern] = ACTIONS(3138), + [anon_sym___attribute__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3140), + [anon_sym___declspec] = ACTIONS(3138), + [anon_sym___based] = ACTIONS(3138), + [anon_sym___cdecl] = ACTIONS(3138), + [anon_sym___clrcall] = ACTIONS(3138), + [anon_sym___stdcall] = ACTIONS(3138), + [anon_sym___fastcall] = ACTIONS(3138), + [anon_sym___thiscall] = ACTIONS(3138), + [anon_sym___vectorcall] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3138), + [anon_sym_unsigned] = ACTIONS(3138), + [anon_sym_long] = ACTIONS(3138), + [anon_sym_short] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_register] = ACTIONS(3138), + [anon_sym_inline] = ACTIONS(3138), + [anon_sym___inline] = ACTIONS(3138), + [anon_sym___inline__] = ACTIONS(3138), + [anon_sym___forceinline] = ACTIONS(3138), + [anon_sym_thread_local] = ACTIONS(3138), + [anon_sym___thread] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_constexpr] = ACTIONS(3138), + [anon_sym_volatile] = ACTIONS(3138), + [anon_sym_restrict] = ACTIONS(3138), + [anon_sym___restrict__] = ACTIONS(3138), + [anon_sym__Atomic] = ACTIONS(3138), + [anon_sym__Noreturn] = ACTIONS(3138), + [anon_sym_noreturn] = ACTIONS(3138), + [anon_sym_mutable] = ACTIONS(3138), + [anon_sym_constinit] = ACTIONS(3138), + [anon_sym_consteval] = ACTIONS(3138), + [sym_primitive_type] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_struct] = ACTIONS(3138), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_case] = ACTIONS(3138), + [anon_sym_default] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_goto] = ACTIONS(3138), + [anon_sym___try] = ACTIONS(3138), + [anon_sym___leave] = ACTIONS(3138), + [anon_sym_not] = ACTIONS(3138), + [anon_sym_compl] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_sizeof] = ACTIONS(3138), + [anon_sym___alignof__] = ACTIONS(3138), + [anon_sym___alignof] = ACTIONS(3138), + [anon_sym__alignof] = ACTIONS(3138), + [anon_sym_alignof] = ACTIONS(3138), + [anon_sym__Alignof] = ACTIONS(3138), + [anon_sym_offsetof] = ACTIONS(3138), + [anon_sym__Generic] = ACTIONS(3138), + [anon_sym_asm] = ACTIONS(3138), + [anon_sym___asm__] = ACTIONS(3138), + [sym_number_literal] = ACTIONS(3140), + [anon_sym_L_SQUOTE] = ACTIONS(3140), + [anon_sym_u_SQUOTE] = ACTIONS(3140), + [anon_sym_U_SQUOTE] = ACTIONS(3140), + [anon_sym_u8_SQUOTE] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3140), + [anon_sym_L_DQUOTE] = ACTIONS(3140), + [anon_sym_u_DQUOTE] = ACTIONS(3140), + [anon_sym_U_DQUOTE] = ACTIONS(3140), + [anon_sym_u8_DQUOTE] = ACTIONS(3140), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [anon_sym_NULL] = ACTIONS(3138), + [anon_sym_nullptr] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3138), + [anon_sym_decltype] = ACTIONS(3138), + [anon_sym_virtual] = ACTIONS(3138), + [anon_sym_alignas] = ACTIONS(3138), + [anon_sym_explicit] = ACTIONS(3138), + [anon_sym_typename] = ACTIONS(3138), + [anon_sym_template] = ACTIONS(3138), + [anon_sym_operator] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_static_assert] = ACTIONS(3138), + [anon_sym_concept] = ACTIONS(3138), + [anon_sym_co_return] = ACTIONS(3138), + [anon_sym_co_yield] = ACTIONS(3138), + [anon_sym_R_DQUOTE] = ACTIONS(3140), + [anon_sym_LR_DQUOTE] = ACTIONS(3140), + [anon_sym_uR_DQUOTE] = ACTIONS(3140), + [anon_sym_UR_DQUOTE] = ACTIONS(3140), + [anon_sym_u8R_DQUOTE] = ACTIONS(3140), + [anon_sym_co_await] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_requires] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), }, - [881] = { - [sym_identifier] = ACTIONS(3203), - [aux_sym_preproc_include_token1] = ACTIONS(3203), - [aux_sym_preproc_def_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token2] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), - [sym_preproc_directive] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym___extension__] = ACTIONS(3203), - [anon_sym_typedef] = ACTIONS(3203), - [anon_sym_extern] = ACTIONS(3203), - [anon_sym___attribute__] = ACTIONS(3203), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), - [anon_sym___declspec] = ACTIONS(3203), - [anon_sym___based] = ACTIONS(3203), - [anon_sym___cdecl] = ACTIONS(3203), - [anon_sym___clrcall] = ACTIONS(3203), - [anon_sym___stdcall] = ACTIONS(3203), - [anon_sym___fastcall] = ACTIONS(3203), - [anon_sym___thiscall] = ACTIONS(3203), - [anon_sym___vectorcall] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_signed] = ACTIONS(3203), - [anon_sym_unsigned] = ACTIONS(3203), - [anon_sym_long] = ACTIONS(3203), - [anon_sym_short] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_register] = ACTIONS(3203), - [anon_sym_inline] = ACTIONS(3203), - [anon_sym___inline] = ACTIONS(3203), - [anon_sym___inline__] = ACTIONS(3203), - [anon_sym___forceinline] = ACTIONS(3203), - [anon_sym_thread_local] = ACTIONS(3203), - [anon_sym___thread] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_constexpr] = ACTIONS(3203), - [anon_sym_volatile] = ACTIONS(3203), - [anon_sym_restrict] = ACTIONS(3203), - [anon_sym___restrict__] = ACTIONS(3203), - [anon_sym__Atomic] = ACTIONS(3203), - [anon_sym__Noreturn] = ACTIONS(3203), - [anon_sym_noreturn] = ACTIONS(3203), - [anon_sym_mutable] = ACTIONS(3203), - [anon_sym_constinit] = ACTIONS(3203), - [anon_sym_consteval] = ACTIONS(3203), - [sym_primitive_type] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_case] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_do] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym___try] = ACTIONS(3203), - [anon_sym___leave] = ACTIONS(3203), - [anon_sym_not] = ACTIONS(3203), - [anon_sym_compl] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3203), - [anon_sym___alignof__] = ACTIONS(3203), - [anon_sym___alignof] = ACTIONS(3203), - [anon_sym__alignof] = ACTIONS(3203), - [anon_sym_alignof] = ACTIONS(3203), - [anon_sym__Alignof] = ACTIONS(3203), - [anon_sym_offsetof] = ACTIONS(3203), - [anon_sym__Generic] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym___asm__] = ACTIONS(3203), - [sym_number_literal] = ACTIONS(3205), - [anon_sym_L_SQUOTE] = ACTIONS(3205), - [anon_sym_u_SQUOTE] = ACTIONS(3205), - [anon_sym_U_SQUOTE] = ACTIONS(3205), - [anon_sym_u8_SQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_L_DQUOTE] = ACTIONS(3205), - [anon_sym_u_DQUOTE] = ACTIONS(3205), - [anon_sym_U_DQUOTE] = ACTIONS(3205), - [anon_sym_u8_DQUOTE] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [anon_sym_NULL] = ACTIONS(3203), - [anon_sym_nullptr] = ACTIONS(3203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3203), - [anon_sym_decltype] = ACTIONS(3203), - [anon_sym_virtual] = ACTIONS(3203), - [anon_sym_alignas] = ACTIONS(3203), - [anon_sym_explicit] = ACTIONS(3203), - [anon_sym_typename] = ACTIONS(3203), - [anon_sym_template] = ACTIONS(3203), - [anon_sym_operator] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_delete] = ACTIONS(3203), - [anon_sym_throw] = ACTIONS(3203), - [anon_sym_namespace] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_static_assert] = ACTIONS(3203), - [anon_sym_concept] = ACTIONS(3203), - [anon_sym_co_return] = ACTIONS(3203), - [anon_sym_co_yield] = ACTIONS(3203), - [anon_sym_R_DQUOTE] = ACTIONS(3205), - [anon_sym_LR_DQUOTE] = ACTIONS(3205), - [anon_sym_uR_DQUOTE] = ACTIONS(3205), - [anon_sym_UR_DQUOTE] = ACTIONS(3205), - [anon_sym_u8R_DQUOTE] = ACTIONS(3205), - [anon_sym_co_await] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(3203), - [anon_sym_requires] = ACTIONS(3203), - [sym_this] = ACTIONS(3203), + [834] = { + [sym_identifier] = ACTIONS(3167), + [aux_sym_preproc_include_token1] = ACTIONS(3167), + [aux_sym_preproc_def_token1] = ACTIONS(3167), + [aux_sym_preproc_if_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [sym_preproc_directive] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym___extension__] = ACTIONS(3167), + [anon_sym_typedef] = ACTIONS(3167), + [anon_sym_extern] = ACTIONS(3167), + [anon_sym___attribute__] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3169), + [anon_sym___declspec] = ACTIONS(3167), + [anon_sym___based] = ACTIONS(3167), + [anon_sym___cdecl] = ACTIONS(3167), + [anon_sym___clrcall] = ACTIONS(3167), + [anon_sym___stdcall] = ACTIONS(3167), + [anon_sym___fastcall] = ACTIONS(3167), + [anon_sym___thiscall] = ACTIONS(3167), + [anon_sym___vectorcall] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_signed] = ACTIONS(3167), + [anon_sym_unsigned] = ACTIONS(3167), + [anon_sym_long] = ACTIONS(3167), + [anon_sym_short] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_register] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym___inline] = ACTIONS(3167), + [anon_sym___inline__] = ACTIONS(3167), + [anon_sym___forceinline] = ACTIONS(3167), + [anon_sym_thread_local] = ACTIONS(3167), + [anon_sym___thread] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_constexpr] = ACTIONS(3167), + [anon_sym_volatile] = ACTIONS(3167), + [anon_sym_restrict] = ACTIONS(3167), + [anon_sym___restrict__] = ACTIONS(3167), + [anon_sym__Atomic] = ACTIONS(3167), + [anon_sym__Noreturn] = ACTIONS(3167), + [anon_sym_noreturn] = ACTIONS(3167), + [anon_sym_mutable] = ACTIONS(3167), + [anon_sym_constinit] = ACTIONS(3167), + [anon_sym_consteval] = ACTIONS(3167), + [sym_primitive_type] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_goto] = ACTIONS(3167), + [anon_sym___try] = ACTIONS(3167), + [anon_sym___leave] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3167), + [anon_sym_compl] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3167), + [anon_sym___alignof__] = ACTIONS(3167), + [anon_sym___alignof] = ACTIONS(3167), + [anon_sym__alignof] = ACTIONS(3167), + [anon_sym_alignof] = ACTIONS(3167), + [anon_sym__Alignof] = ACTIONS(3167), + [anon_sym_offsetof] = ACTIONS(3167), + [anon_sym__Generic] = ACTIONS(3167), + [anon_sym_asm] = ACTIONS(3167), + [anon_sym___asm__] = ACTIONS(3167), + [sym_number_literal] = ACTIONS(3169), + [anon_sym_L_SQUOTE] = ACTIONS(3169), + [anon_sym_u_SQUOTE] = ACTIONS(3169), + [anon_sym_U_SQUOTE] = ACTIONS(3169), + [anon_sym_u8_SQUOTE] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_L_DQUOTE] = ACTIONS(3169), + [anon_sym_u_DQUOTE] = ACTIONS(3169), + [anon_sym_U_DQUOTE] = ACTIONS(3169), + [anon_sym_u8_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [anon_sym_NULL] = ACTIONS(3167), + [anon_sym_nullptr] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3167), + [anon_sym_decltype] = ACTIONS(3167), + [anon_sym_virtual] = ACTIONS(3167), + [anon_sym_alignas] = ACTIONS(3167), + [anon_sym_explicit] = ACTIONS(3167), + [anon_sym_typename] = ACTIONS(3167), + [anon_sym_template] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_static_assert] = ACTIONS(3167), + [anon_sym_concept] = ACTIONS(3167), + [anon_sym_co_return] = ACTIONS(3167), + [anon_sym_co_yield] = ACTIONS(3167), + [anon_sym_R_DQUOTE] = ACTIONS(3169), + [anon_sym_LR_DQUOTE] = ACTIONS(3169), + [anon_sym_uR_DQUOTE] = ACTIONS(3169), + [anon_sym_UR_DQUOTE] = ACTIONS(3169), + [anon_sym_u8R_DQUOTE] = ACTIONS(3169), + [anon_sym_co_await] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_requires] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), }, - [882] = { - [sym_identifier] = ACTIONS(3086), - [aux_sym_preproc_include_token1] = ACTIONS(3086), - [aux_sym_preproc_def_token1] = ACTIONS(3086), - [aux_sym_preproc_if_token1] = ACTIONS(3086), - [aux_sym_preproc_if_token2] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3086), - [sym_preproc_directive] = ACTIONS(3086), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_SEMI] = ACTIONS(3088), - [anon_sym___extension__] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3086), - [anon_sym_extern] = ACTIONS(3086), - [anon_sym___attribute__] = ACTIONS(3086), - [anon_sym_COLON_COLON] = ACTIONS(3088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3088), - [anon_sym___declspec] = ACTIONS(3086), - [anon_sym___based] = ACTIONS(3086), - [anon_sym___cdecl] = ACTIONS(3086), - [anon_sym___clrcall] = ACTIONS(3086), - [anon_sym___stdcall] = ACTIONS(3086), - [anon_sym___fastcall] = ACTIONS(3086), - [anon_sym___thiscall] = ACTIONS(3086), - [anon_sym___vectorcall] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_signed] = ACTIONS(3086), - [anon_sym_unsigned] = ACTIONS(3086), - [anon_sym_long] = ACTIONS(3086), - [anon_sym_short] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_register] = ACTIONS(3086), - [anon_sym_inline] = ACTIONS(3086), - [anon_sym___inline] = ACTIONS(3086), - [anon_sym___inline__] = ACTIONS(3086), - [anon_sym___forceinline] = ACTIONS(3086), - [anon_sym_thread_local] = ACTIONS(3086), - [anon_sym___thread] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_constexpr] = ACTIONS(3086), - [anon_sym_volatile] = ACTIONS(3086), - [anon_sym_restrict] = ACTIONS(3086), - [anon_sym___restrict__] = ACTIONS(3086), - [anon_sym__Atomic] = ACTIONS(3086), - [anon_sym__Noreturn] = ACTIONS(3086), - [anon_sym_noreturn] = ACTIONS(3086), - [anon_sym_mutable] = ACTIONS(3086), - [anon_sym_constinit] = ACTIONS(3086), - [anon_sym_consteval] = ACTIONS(3086), - [sym_primitive_type] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_struct] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_switch] = ACTIONS(3086), - [anon_sym_case] = ACTIONS(3086), - [anon_sym_default] = ACTIONS(3086), - [anon_sym_while] = ACTIONS(3086), - [anon_sym_do] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_goto] = ACTIONS(3086), - [anon_sym___try] = ACTIONS(3086), - [anon_sym___leave] = ACTIONS(3086), - [anon_sym_not] = ACTIONS(3086), - [anon_sym_compl] = ACTIONS(3086), - [anon_sym_DASH_DASH] = ACTIONS(3088), - [anon_sym_PLUS_PLUS] = ACTIONS(3088), - [anon_sym_sizeof] = ACTIONS(3086), - [anon_sym___alignof__] = ACTIONS(3086), - [anon_sym___alignof] = ACTIONS(3086), - [anon_sym__alignof] = ACTIONS(3086), - [anon_sym_alignof] = ACTIONS(3086), - [anon_sym__Alignof] = ACTIONS(3086), - [anon_sym_offsetof] = ACTIONS(3086), - [anon_sym__Generic] = ACTIONS(3086), - [anon_sym_asm] = ACTIONS(3086), - [anon_sym___asm__] = ACTIONS(3086), - [sym_number_literal] = ACTIONS(3088), - [anon_sym_L_SQUOTE] = ACTIONS(3088), - [anon_sym_u_SQUOTE] = ACTIONS(3088), - [anon_sym_U_SQUOTE] = ACTIONS(3088), - [anon_sym_u8_SQUOTE] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3088), - [anon_sym_L_DQUOTE] = ACTIONS(3088), - [anon_sym_u_DQUOTE] = ACTIONS(3088), - [anon_sym_U_DQUOTE] = ACTIONS(3088), - [anon_sym_u8_DQUOTE] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [anon_sym_NULL] = ACTIONS(3086), - [anon_sym_nullptr] = ACTIONS(3086), + [835] = { + [sym_identifier] = ACTIONS(3240), + [aux_sym_preproc_include_token1] = ACTIONS(3240), + [aux_sym_preproc_def_token1] = ACTIONS(3240), + [aux_sym_preproc_if_token1] = ACTIONS(3240), + [aux_sym_preproc_if_token2] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3240), + [sym_preproc_directive] = ACTIONS(3240), + [anon_sym_LPAREN2] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_typedef] = ACTIONS(3240), + [anon_sym_extern] = ACTIONS(3240), + [anon_sym___attribute__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3242), + [anon_sym___declspec] = ACTIONS(3240), + [anon_sym___based] = ACTIONS(3240), + [anon_sym___cdecl] = ACTIONS(3240), + [anon_sym___clrcall] = ACTIONS(3240), + [anon_sym___stdcall] = ACTIONS(3240), + [anon_sym___fastcall] = ACTIONS(3240), + [anon_sym___thiscall] = ACTIONS(3240), + [anon_sym___vectorcall] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3240), + [anon_sym_unsigned] = ACTIONS(3240), + [anon_sym_long] = ACTIONS(3240), + [anon_sym_short] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_register] = ACTIONS(3240), + [anon_sym_inline] = ACTIONS(3240), + [anon_sym___inline] = ACTIONS(3240), + [anon_sym___inline__] = ACTIONS(3240), + [anon_sym___forceinline] = ACTIONS(3240), + [anon_sym_thread_local] = ACTIONS(3240), + [anon_sym___thread] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_constexpr] = ACTIONS(3240), + [anon_sym_volatile] = ACTIONS(3240), + [anon_sym_restrict] = ACTIONS(3240), + [anon_sym___restrict__] = ACTIONS(3240), + [anon_sym__Atomic] = ACTIONS(3240), + [anon_sym__Noreturn] = ACTIONS(3240), + [anon_sym_noreturn] = ACTIONS(3240), + [anon_sym_mutable] = ACTIONS(3240), + [anon_sym_constinit] = ACTIONS(3240), + [anon_sym_consteval] = ACTIONS(3240), + [sym_primitive_type] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_case] = ACTIONS(3240), + [anon_sym_default] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_goto] = ACTIONS(3240), + [anon_sym___try] = ACTIONS(3240), + [anon_sym___leave] = ACTIONS(3240), + [anon_sym_not] = ACTIONS(3240), + [anon_sym_compl] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_sizeof] = ACTIONS(3240), + [anon_sym___alignof__] = ACTIONS(3240), + [anon_sym___alignof] = ACTIONS(3240), + [anon_sym__alignof] = ACTIONS(3240), + [anon_sym_alignof] = ACTIONS(3240), + [anon_sym__Alignof] = ACTIONS(3240), + [anon_sym_offsetof] = ACTIONS(3240), + [anon_sym__Generic] = ACTIONS(3240), + [anon_sym_asm] = ACTIONS(3240), + [anon_sym___asm__] = ACTIONS(3240), + [sym_number_literal] = ACTIONS(3242), + [anon_sym_L_SQUOTE] = ACTIONS(3242), + [anon_sym_u_SQUOTE] = ACTIONS(3242), + [anon_sym_U_SQUOTE] = ACTIONS(3242), + [anon_sym_u8_SQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_L_DQUOTE] = ACTIONS(3242), + [anon_sym_u_DQUOTE] = ACTIONS(3242), + [anon_sym_U_DQUOTE] = ACTIONS(3242), + [anon_sym_u8_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [anon_sym_NULL] = ACTIONS(3240), + [anon_sym_nullptr] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3240), + [anon_sym_decltype] = ACTIONS(3240), + [anon_sym_virtual] = ACTIONS(3240), + [anon_sym_alignas] = ACTIONS(3240), + [anon_sym_explicit] = ACTIONS(3240), + [anon_sym_typename] = ACTIONS(3240), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_operator] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_static_assert] = ACTIONS(3240), + [anon_sym_concept] = ACTIONS(3240), + [anon_sym_co_return] = ACTIONS(3240), + [anon_sym_co_yield] = ACTIONS(3240), + [anon_sym_R_DQUOTE] = ACTIONS(3242), + [anon_sym_LR_DQUOTE] = ACTIONS(3242), + [anon_sym_uR_DQUOTE] = ACTIONS(3242), + [anon_sym_UR_DQUOTE] = ACTIONS(3242), + [anon_sym_u8R_DQUOTE] = ACTIONS(3242), + [anon_sym_co_await] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_requires] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), + }, + [836] = { + [sym_identifier] = ACTIONS(3236), + [aux_sym_preproc_include_token1] = ACTIONS(3236), + [aux_sym_preproc_def_token1] = ACTIONS(3236), + [aux_sym_preproc_if_token1] = ACTIONS(3236), + [aux_sym_preproc_if_token2] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3236), + [sym_preproc_directive] = ACTIONS(3236), + [anon_sym_LPAREN2] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3236), + [anon_sym_typedef] = ACTIONS(3236), + [anon_sym_extern] = ACTIONS(3236), + [anon_sym___attribute__] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3238), + [anon_sym___declspec] = ACTIONS(3236), + [anon_sym___based] = ACTIONS(3236), + [anon_sym___cdecl] = ACTIONS(3236), + [anon_sym___clrcall] = ACTIONS(3236), + [anon_sym___stdcall] = ACTIONS(3236), + [anon_sym___fastcall] = ACTIONS(3236), + [anon_sym___thiscall] = ACTIONS(3236), + [anon_sym___vectorcall] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_signed] = ACTIONS(3236), + [anon_sym_unsigned] = ACTIONS(3236), + [anon_sym_long] = ACTIONS(3236), + [anon_sym_short] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_register] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym___inline] = ACTIONS(3236), + [anon_sym___inline__] = ACTIONS(3236), + [anon_sym___forceinline] = ACTIONS(3236), + [anon_sym_thread_local] = ACTIONS(3236), + [anon_sym___thread] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_constexpr] = ACTIONS(3236), + [anon_sym_volatile] = ACTIONS(3236), + [anon_sym_restrict] = ACTIONS(3236), + [anon_sym___restrict__] = ACTIONS(3236), + [anon_sym__Atomic] = ACTIONS(3236), + [anon_sym__Noreturn] = ACTIONS(3236), + [anon_sym_noreturn] = ACTIONS(3236), + [anon_sym_mutable] = ACTIONS(3236), + [anon_sym_constinit] = ACTIONS(3236), + [anon_sym_consteval] = ACTIONS(3236), + [sym_primitive_type] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_case] = ACTIONS(3236), + [anon_sym_default] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_goto] = ACTIONS(3236), + [anon_sym___try] = ACTIONS(3236), + [anon_sym___leave] = ACTIONS(3236), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_sizeof] = ACTIONS(3236), + [anon_sym___alignof__] = ACTIONS(3236), + [anon_sym___alignof] = ACTIONS(3236), + [anon_sym__alignof] = ACTIONS(3236), + [anon_sym_alignof] = ACTIONS(3236), + [anon_sym__Alignof] = ACTIONS(3236), + [anon_sym_offsetof] = ACTIONS(3236), + [anon_sym__Generic] = ACTIONS(3236), + [anon_sym_asm] = ACTIONS(3236), + [anon_sym___asm__] = ACTIONS(3236), + [sym_number_literal] = ACTIONS(3238), + [anon_sym_L_SQUOTE] = ACTIONS(3238), + [anon_sym_u_SQUOTE] = ACTIONS(3238), + [anon_sym_U_SQUOTE] = ACTIONS(3238), + [anon_sym_u8_SQUOTE] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_L_DQUOTE] = ACTIONS(3238), + [anon_sym_u_DQUOTE] = ACTIONS(3238), + [anon_sym_U_DQUOTE] = ACTIONS(3238), + [anon_sym_u8_DQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [anon_sym_NULL] = ACTIONS(3236), + [anon_sym_nullptr] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3236), + [anon_sym_virtual] = ACTIONS(3236), + [anon_sym_alignas] = ACTIONS(3236), + [anon_sym_explicit] = ACTIONS(3236), + [anon_sym_typename] = ACTIONS(3236), + [anon_sym_template] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_static_assert] = ACTIONS(3236), + [anon_sym_concept] = ACTIONS(3236), + [anon_sym_co_return] = ACTIONS(3236), + [anon_sym_co_yield] = ACTIONS(3236), + [anon_sym_R_DQUOTE] = ACTIONS(3238), + [anon_sym_LR_DQUOTE] = ACTIONS(3238), + [anon_sym_uR_DQUOTE] = ACTIONS(3238), + [anon_sym_UR_DQUOTE] = ACTIONS(3238), + [anon_sym_u8R_DQUOTE] = ACTIONS(3238), + [anon_sym_co_await] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_requires] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), + }, + [837] = { + [sym_identifier] = ACTIONS(3298), + [aux_sym_preproc_include_token1] = ACTIONS(3298), + [aux_sym_preproc_def_token1] = ACTIONS(3298), + [aux_sym_preproc_if_token1] = ACTIONS(3298), + [aux_sym_preproc_if_token2] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), + [sym_preproc_directive] = ACTIONS(3298), + [anon_sym_LPAREN2] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym___extension__] = ACTIONS(3298), + [anon_sym_typedef] = ACTIONS(3298), + [anon_sym_extern] = ACTIONS(3298), + [anon_sym___attribute__] = ACTIONS(3298), + [anon_sym_COLON_COLON] = ACTIONS(3300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), + [anon_sym___declspec] = ACTIONS(3298), + [anon_sym___based] = ACTIONS(3298), + [anon_sym___cdecl] = ACTIONS(3298), + [anon_sym___clrcall] = ACTIONS(3298), + [anon_sym___stdcall] = ACTIONS(3298), + [anon_sym___fastcall] = ACTIONS(3298), + [anon_sym___thiscall] = ACTIONS(3298), + [anon_sym___vectorcall] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_signed] = ACTIONS(3298), + [anon_sym_unsigned] = ACTIONS(3298), + [anon_sym_long] = ACTIONS(3298), + [anon_sym_short] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_register] = ACTIONS(3298), + [anon_sym_inline] = ACTIONS(3298), + [anon_sym___inline] = ACTIONS(3298), + [anon_sym___inline__] = ACTIONS(3298), + [anon_sym___forceinline] = ACTIONS(3298), + [anon_sym_thread_local] = ACTIONS(3298), + [anon_sym___thread] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_constexpr] = ACTIONS(3298), + [anon_sym_volatile] = ACTIONS(3298), + [anon_sym_restrict] = ACTIONS(3298), + [anon_sym___restrict__] = ACTIONS(3298), + [anon_sym__Atomic] = ACTIONS(3298), + [anon_sym__Noreturn] = ACTIONS(3298), + [anon_sym_noreturn] = ACTIONS(3298), + [anon_sym_mutable] = ACTIONS(3298), + [anon_sym_constinit] = ACTIONS(3298), + [anon_sym_consteval] = ACTIONS(3298), + [sym_primitive_type] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_struct] = ACTIONS(3298), + [anon_sym_union] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_case] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_goto] = ACTIONS(3298), + [anon_sym___try] = ACTIONS(3298), + [anon_sym___leave] = ACTIONS(3298), + [anon_sym_not] = ACTIONS(3298), + [anon_sym_compl] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_sizeof] = ACTIONS(3298), + [anon_sym___alignof__] = ACTIONS(3298), + [anon_sym___alignof] = ACTIONS(3298), + [anon_sym__alignof] = ACTIONS(3298), + [anon_sym_alignof] = ACTIONS(3298), + [anon_sym__Alignof] = ACTIONS(3298), + [anon_sym_offsetof] = ACTIONS(3298), + [anon_sym__Generic] = ACTIONS(3298), + [anon_sym_asm] = ACTIONS(3298), + [anon_sym___asm__] = ACTIONS(3298), + [sym_number_literal] = ACTIONS(3300), + [anon_sym_L_SQUOTE] = ACTIONS(3300), + [anon_sym_u_SQUOTE] = ACTIONS(3300), + [anon_sym_U_SQUOTE] = ACTIONS(3300), + [anon_sym_u8_SQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_L_DQUOTE] = ACTIONS(3300), + [anon_sym_u_DQUOTE] = ACTIONS(3300), + [anon_sym_U_DQUOTE] = ACTIONS(3300), + [anon_sym_u8_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [anon_sym_NULL] = ACTIONS(3298), + [anon_sym_nullptr] = ACTIONS(3298), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3086), - [anon_sym_decltype] = ACTIONS(3086), - [anon_sym_virtual] = ACTIONS(3086), - [anon_sym_alignas] = ACTIONS(3086), - [anon_sym_explicit] = ACTIONS(3086), - [anon_sym_typename] = ACTIONS(3086), - [anon_sym_template] = ACTIONS(3086), - [anon_sym_operator] = ACTIONS(3086), - [anon_sym_try] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3086), - [anon_sym_throw] = ACTIONS(3086), - [anon_sym_namespace] = ACTIONS(3086), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_static_assert] = ACTIONS(3086), - [anon_sym_concept] = ACTIONS(3086), - [anon_sym_co_return] = ACTIONS(3086), - [anon_sym_co_yield] = ACTIONS(3086), - [anon_sym_R_DQUOTE] = ACTIONS(3088), - [anon_sym_LR_DQUOTE] = ACTIONS(3088), - [anon_sym_uR_DQUOTE] = ACTIONS(3088), - [anon_sym_UR_DQUOTE] = ACTIONS(3088), - [anon_sym_u8R_DQUOTE] = ACTIONS(3088), - [anon_sym_co_await] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3086), - [sym_this] = ACTIONS(3086), + [sym_auto] = ACTIONS(3298), + [anon_sym_decltype] = ACTIONS(3298), + [anon_sym_virtual] = ACTIONS(3298), + [anon_sym_alignas] = ACTIONS(3298), + [anon_sym_explicit] = ACTIONS(3298), + [anon_sym_typename] = ACTIONS(3298), + [anon_sym_template] = ACTIONS(3298), + [anon_sym_operator] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_static_assert] = ACTIONS(3298), + [anon_sym_concept] = ACTIONS(3298), + [anon_sym_co_return] = ACTIONS(3298), + [anon_sym_co_yield] = ACTIONS(3298), + [anon_sym_R_DQUOTE] = ACTIONS(3300), + [anon_sym_LR_DQUOTE] = ACTIONS(3300), + [anon_sym_uR_DQUOTE] = ACTIONS(3300), + [anon_sym_UR_DQUOTE] = ACTIONS(3300), + [anon_sym_u8R_DQUOTE] = ACTIONS(3300), + [anon_sym_co_await] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_requires] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), }, - [883] = { + [838] = { + [sym_identifier] = ACTIONS(3130), + [aux_sym_preproc_include_token1] = ACTIONS(3130), + [aux_sym_preproc_def_token1] = ACTIONS(3130), + [aux_sym_preproc_if_token1] = ACTIONS(3130), + [aux_sym_preproc_if_token2] = ACTIONS(3130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3130), + [sym_preproc_directive] = ACTIONS(3130), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym___extension__] = ACTIONS(3130), + [anon_sym_typedef] = ACTIONS(3130), + [anon_sym_extern] = ACTIONS(3130), + [anon_sym___attribute__] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3132), + [anon_sym___declspec] = ACTIONS(3130), + [anon_sym___based] = ACTIONS(3130), + [anon_sym___cdecl] = ACTIONS(3130), + [anon_sym___clrcall] = ACTIONS(3130), + [anon_sym___stdcall] = ACTIONS(3130), + [anon_sym___fastcall] = ACTIONS(3130), + [anon_sym___thiscall] = ACTIONS(3130), + [anon_sym___vectorcall] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_signed] = ACTIONS(3130), + [anon_sym_unsigned] = ACTIONS(3130), + [anon_sym_long] = ACTIONS(3130), + [anon_sym_short] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_static] = ACTIONS(3130), + [anon_sym_register] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym___inline] = ACTIONS(3130), + [anon_sym___inline__] = ACTIONS(3130), + [anon_sym___forceinline] = ACTIONS(3130), + [anon_sym_thread_local] = ACTIONS(3130), + [anon_sym___thread] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(3130), + [anon_sym_constexpr] = ACTIONS(3130), + [anon_sym_volatile] = ACTIONS(3130), + [anon_sym_restrict] = ACTIONS(3130), + [anon_sym___restrict__] = ACTIONS(3130), + [anon_sym__Atomic] = ACTIONS(3130), + [anon_sym__Noreturn] = ACTIONS(3130), + [anon_sym_noreturn] = ACTIONS(3130), + [anon_sym_mutable] = ACTIONS(3130), + [anon_sym_constinit] = ACTIONS(3130), + [anon_sym_consteval] = ACTIONS(3130), + [sym_primitive_type] = ACTIONS(3130), + [anon_sym_enum] = ACTIONS(3130), + [anon_sym_class] = ACTIONS(3130), + [anon_sym_struct] = ACTIONS(3130), + [anon_sym_union] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_switch] = ACTIONS(3130), + [anon_sym_case] = ACTIONS(3130), + [anon_sym_default] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_goto] = ACTIONS(3130), + [anon_sym___try] = ACTIONS(3130), + [anon_sym___leave] = ACTIONS(3130), + [anon_sym_not] = ACTIONS(3130), + [anon_sym_compl] = ACTIONS(3130), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_sizeof] = ACTIONS(3130), + [anon_sym___alignof__] = ACTIONS(3130), + [anon_sym___alignof] = ACTIONS(3130), + [anon_sym__alignof] = ACTIONS(3130), + [anon_sym_alignof] = ACTIONS(3130), + [anon_sym__Alignof] = ACTIONS(3130), + [anon_sym_offsetof] = ACTIONS(3130), + [anon_sym__Generic] = ACTIONS(3130), + [anon_sym_asm] = ACTIONS(3130), + [anon_sym___asm__] = ACTIONS(3130), + [sym_number_literal] = ACTIONS(3132), + [anon_sym_L_SQUOTE] = ACTIONS(3132), + [anon_sym_u_SQUOTE] = ACTIONS(3132), + [anon_sym_U_SQUOTE] = ACTIONS(3132), + [anon_sym_u8_SQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_L_DQUOTE] = ACTIONS(3132), + [anon_sym_u_DQUOTE] = ACTIONS(3132), + [anon_sym_U_DQUOTE] = ACTIONS(3132), + [anon_sym_u8_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [sym_true] = ACTIONS(3130), + [sym_false] = ACTIONS(3130), + [anon_sym_NULL] = ACTIONS(3130), + [anon_sym_nullptr] = ACTIONS(3130), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3130), + [anon_sym_decltype] = ACTIONS(3130), + [anon_sym_virtual] = ACTIONS(3130), + [anon_sym_alignas] = ACTIONS(3130), + [anon_sym_explicit] = ACTIONS(3130), + [anon_sym_typename] = ACTIONS(3130), + [anon_sym_template] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_delete] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_namespace] = ACTIONS(3130), + [anon_sym_using] = ACTIONS(3130), + [anon_sym_static_assert] = ACTIONS(3130), + [anon_sym_concept] = ACTIONS(3130), + [anon_sym_co_return] = ACTIONS(3130), + [anon_sym_co_yield] = ACTIONS(3130), + [anon_sym_R_DQUOTE] = ACTIONS(3132), + [anon_sym_LR_DQUOTE] = ACTIONS(3132), + [anon_sym_uR_DQUOTE] = ACTIONS(3132), + [anon_sym_UR_DQUOTE] = ACTIONS(3132), + [anon_sym_u8R_DQUOTE] = ACTIONS(3132), + [anon_sym_co_await] = ACTIONS(3130), + [anon_sym_new] = ACTIONS(3130), + [anon_sym_requires] = ACTIONS(3130), + [sym_this] = ACTIONS(3130), + }, + [839] = { [sym_identifier] = ACTIONS(3219), [aux_sym_preproc_include_token1] = ACTIONS(3219), [aux_sym_preproc_def_token1] = ACTIONS(3219), [aux_sym_preproc_if_token1] = ACTIONS(3219), + [aux_sym_preproc_if_token2] = ACTIONS(3219), [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), [sym_preproc_directive] = ACTIONS(3219), @@ -211029,7 +205551,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3219), [anon_sym___vectorcall] = ACTIONS(3219), [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), [anon_sym_signed] = ACTIONS(3219), [anon_sym_unsigned] = ACTIONS(3219), [anon_sym_long] = ACTIONS(3219), @@ -211129,2387 +205650,3444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3219), [sym_this] = ACTIONS(3219), }, - [884] = { - [sym_identifier] = ACTIONS(3136), - [aux_sym_preproc_include_token1] = ACTIONS(3136), - [aux_sym_preproc_def_token1] = ACTIONS(3136), - [aux_sym_preproc_if_token1] = ACTIONS(3136), - [aux_sym_preproc_if_token2] = ACTIONS(3136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3136), - [sym_preproc_directive] = ACTIONS(3136), - [anon_sym_LPAREN2] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym___extension__] = ACTIONS(3136), - [anon_sym_typedef] = ACTIONS(3136), - [anon_sym_extern] = ACTIONS(3136), - [anon_sym___attribute__] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3138), - [anon_sym___declspec] = ACTIONS(3136), - [anon_sym___based] = ACTIONS(3136), - [anon_sym___cdecl] = ACTIONS(3136), - [anon_sym___clrcall] = ACTIONS(3136), - [anon_sym___stdcall] = ACTIONS(3136), - [anon_sym___fastcall] = ACTIONS(3136), - [anon_sym___thiscall] = ACTIONS(3136), - [anon_sym___vectorcall] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_signed] = ACTIONS(3136), - [anon_sym_unsigned] = ACTIONS(3136), - [anon_sym_long] = ACTIONS(3136), - [anon_sym_short] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_register] = ACTIONS(3136), - [anon_sym_inline] = ACTIONS(3136), - [anon_sym___inline] = ACTIONS(3136), - [anon_sym___inline__] = ACTIONS(3136), - [anon_sym___forceinline] = ACTIONS(3136), - [anon_sym_thread_local] = ACTIONS(3136), - [anon_sym___thread] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_constexpr] = ACTIONS(3136), - [anon_sym_volatile] = ACTIONS(3136), - [anon_sym_restrict] = ACTIONS(3136), - [anon_sym___restrict__] = ACTIONS(3136), - [anon_sym__Atomic] = ACTIONS(3136), - [anon_sym__Noreturn] = ACTIONS(3136), - [anon_sym_noreturn] = ACTIONS(3136), - [anon_sym_mutable] = ACTIONS(3136), - [anon_sym_constinit] = ACTIONS(3136), - [anon_sym_consteval] = ACTIONS(3136), - [sym_primitive_type] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_case] = ACTIONS(3136), - [anon_sym_default] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_goto] = ACTIONS(3136), - [anon_sym___try] = ACTIONS(3136), - [anon_sym___leave] = ACTIONS(3136), - [anon_sym_not] = ACTIONS(3136), - [anon_sym_compl] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_sizeof] = ACTIONS(3136), - [anon_sym___alignof__] = ACTIONS(3136), - [anon_sym___alignof] = ACTIONS(3136), - [anon_sym__alignof] = ACTIONS(3136), - [anon_sym_alignof] = ACTIONS(3136), - [anon_sym__Alignof] = ACTIONS(3136), - [anon_sym_offsetof] = ACTIONS(3136), - [anon_sym__Generic] = ACTIONS(3136), - [anon_sym_asm] = ACTIONS(3136), - [anon_sym___asm__] = ACTIONS(3136), - [sym_number_literal] = ACTIONS(3138), - [anon_sym_L_SQUOTE] = ACTIONS(3138), - [anon_sym_u_SQUOTE] = ACTIONS(3138), - [anon_sym_U_SQUOTE] = ACTIONS(3138), - [anon_sym_u8_SQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [anon_sym_NULL] = ACTIONS(3136), - [anon_sym_nullptr] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3136), - [anon_sym_decltype] = ACTIONS(3136), - [anon_sym_virtual] = ACTIONS(3136), - [anon_sym_alignas] = ACTIONS(3136), - [anon_sym_explicit] = ACTIONS(3136), - [anon_sym_typename] = ACTIONS(3136), - [anon_sym_template] = ACTIONS(3136), - [anon_sym_operator] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_static_assert] = ACTIONS(3136), - [anon_sym_concept] = ACTIONS(3136), - [anon_sym_co_return] = ACTIONS(3136), - [anon_sym_co_yield] = ACTIONS(3136), - [anon_sym_R_DQUOTE] = ACTIONS(3138), - [anon_sym_LR_DQUOTE] = ACTIONS(3138), - [anon_sym_uR_DQUOTE] = ACTIONS(3138), - [anon_sym_UR_DQUOTE] = ACTIONS(3138), - [anon_sym_u8R_DQUOTE] = ACTIONS(3138), - [anon_sym_co_await] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_requires] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), + [840] = { + [sym_identifier] = ACTIONS(3191), + [aux_sym_preproc_include_token1] = ACTIONS(3191), + [aux_sym_preproc_def_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token2] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3191), + [sym_preproc_directive] = ACTIONS(3191), + [anon_sym_LPAREN2] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym___extension__] = ACTIONS(3191), + [anon_sym_typedef] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym___attribute__] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(3193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3193), + [anon_sym___declspec] = ACTIONS(3191), + [anon_sym___based] = ACTIONS(3191), + [anon_sym___cdecl] = ACTIONS(3191), + [anon_sym___clrcall] = ACTIONS(3191), + [anon_sym___stdcall] = ACTIONS(3191), + [anon_sym___fastcall] = ACTIONS(3191), + [anon_sym___thiscall] = ACTIONS(3191), + [anon_sym___vectorcall] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_signed] = ACTIONS(3191), + [anon_sym_unsigned] = ACTIONS(3191), + [anon_sym_long] = ACTIONS(3191), + [anon_sym_short] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_register] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym___inline] = ACTIONS(3191), + [anon_sym___inline__] = ACTIONS(3191), + [anon_sym___forceinline] = ACTIONS(3191), + [anon_sym_thread_local] = ACTIONS(3191), + [anon_sym___thread] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_constexpr] = ACTIONS(3191), + [anon_sym_volatile] = ACTIONS(3191), + [anon_sym_restrict] = ACTIONS(3191), + [anon_sym___restrict__] = ACTIONS(3191), + [anon_sym__Atomic] = ACTIONS(3191), + [anon_sym__Noreturn] = ACTIONS(3191), + [anon_sym_noreturn] = ACTIONS(3191), + [anon_sym_mutable] = ACTIONS(3191), + [anon_sym_constinit] = ACTIONS(3191), + [anon_sym_consteval] = ACTIONS(3191), + [sym_primitive_type] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym___try] = ACTIONS(3191), + [anon_sym___leave] = ACTIONS(3191), + [anon_sym_not] = ACTIONS(3191), + [anon_sym_compl] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_sizeof] = ACTIONS(3191), + [anon_sym___alignof__] = ACTIONS(3191), + [anon_sym___alignof] = ACTIONS(3191), + [anon_sym__alignof] = ACTIONS(3191), + [anon_sym_alignof] = ACTIONS(3191), + [anon_sym__Alignof] = ACTIONS(3191), + [anon_sym_offsetof] = ACTIONS(3191), + [anon_sym__Generic] = ACTIONS(3191), + [anon_sym_asm] = ACTIONS(3191), + [anon_sym___asm__] = ACTIONS(3191), + [sym_number_literal] = ACTIONS(3193), + [anon_sym_L_SQUOTE] = ACTIONS(3193), + [anon_sym_u_SQUOTE] = ACTIONS(3193), + [anon_sym_U_SQUOTE] = ACTIONS(3193), + [anon_sym_u8_SQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_L_DQUOTE] = ACTIONS(3193), + [anon_sym_u_DQUOTE] = ACTIONS(3193), + [anon_sym_U_DQUOTE] = ACTIONS(3193), + [anon_sym_u8_DQUOTE] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [anon_sym_NULL] = ACTIONS(3191), + [anon_sym_nullptr] = ACTIONS(3191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3191), + [anon_sym_virtual] = ACTIONS(3191), + [anon_sym_alignas] = ACTIONS(3191), + [anon_sym_explicit] = ACTIONS(3191), + [anon_sym_typename] = ACTIONS(3191), + [anon_sym_template] = ACTIONS(3191), + [anon_sym_operator] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_static_assert] = ACTIONS(3191), + [anon_sym_concept] = ACTIONS(3191), + [anon_sym_co_return] = ACTIONS(3191), + [anon_sym_co_yield] = ACTIONS(3191), + [anon_sym_R_DQUOTE] = ACTIONS(3193), + [anon_sym_LR_DQUOTE] = ACTIONS(3193), + [anon_sym_uR_DQUOTE] = ACTIONS(3193), + [anon_sym_UR_DQUOTE] = ACTIONS(3193), + [anon_sym_u8R_DQUOTE] = ACTIONS(3193), + [anon_sym_co_await] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_requires] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), }, - [885] = { - [sym_identifier] = ACTIONS(3140), - [aux_sym_preproc_include_token1] = ACTIONS(3140), - [aux_sym_preproc_def_token1] = ACTIONS(3140), - [aux_sym_preproc_if_token1] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), - [sym_preproc_directive] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_AMP_AMP] = ACTIONS(3142), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym___extension__] = ACTIONS(3140), - [anon_sym_typedef] = ACTIONS(3140), - [anon_sym_extern] = ACTIONS(3140), - [anon_sym___attribute__] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3142), - [anon_sym___declspec] = ACTIONS(3140), - [anon_sym___based] = ACTIONS(3140), - [anon_sym___cdecl] = ACTIONS(3140), - [anon_sym___clrcall] = ACTIONS(3140), - [anon_sym___stdcall] = ACTIONS(3140), - [anon_sym___fastcall] = ACTIONS(3140), - [anon_sym___thiscall] = ACTIONS(3140), - [anon_sym___vectorcall] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_signed] = ACTIONS(3140), - [anon_sym_unsigned] = ACTIONS(3140), - [anon_sym_long] = ACTIONS(3140), - [anon_sym_short] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_register] = ACTIONS(3140), - [anon_sym_inline] = ACTIONS(3140), - [anon_sym___inline] = ACTIONS(3140), - [anon_sym___inline__] = ACTIONS(3140), - [anon_sym___forceinline] = ACTIONS(3140), - [anon_sym_thread_local] = ACTIONS(3140), - [anon_sym___thread] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_constexpr] = ACTIONS(3140), - [anon_sym_volatile] = ACTIONS(3140), - [anon_sym_restrict] = ACTIONS(3140), - [anon_sym___restrict__] = ACTIONS(3140), - [anon_sym__Atomic] = ACTIONS(3140), - [anon_sym__Noreturn] = ACTIONS(3140), - [anon_sym_noreturn] = ACTIONS(3140), - [anon_sym_mutable] = ACTIONS(3140), - [anon_sym_constinit] = ACTIONS(3140), - [anon_sym_consteval] = ACTIONS(3140), - [sym_primitive_type] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_struct] = ACTIONS(3140), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_case] = ACTIONS(3140), - [anon_sym_default] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_goto] = ACTIONS(3140), - [anon_sym___try] = ACTIONS(3140), - [anon_sym___leave] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3140), - [anon_sym_compl] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3140), - [anon_sym___alignof__] = ACTIONS(3140), - [anon_sym___alignof] = ACTIONS(3140), - [anon_sym__alignof] = ACTIONS(3140), - [anon_sym_alignof] = ACTIONS(3140), - [anon_sym__Alignof] = ACTIONS(3140), - [anon_sym_offsetof] = ACTIONS(3140), - [anon_sym__Generic] = ACTIONS(3140), - [anon_sym_asm] = ACTIONS(3140), - [anon_sym___asm__] = ACTIONS(3140), - [sym_number_literal] = ACTIONS(3142), - [anon_sym_L_SQUOTE] = ACTIONS(3142), - [anon_sym_u_SQUOTE] = ACTIONS(3142), - [anon_sym_U_SQUOTE] = ACTIONS(3142), - [anon_sym_u8_SQUOTE] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_L_DQUOTE] = ACTIONS(3142), - [anon_sym_u_DQUOTE] = ACTIONS(3142), - [anon_sym_U_DQUOTE] = ACTIONS(3142), - [anon_sym_u8_DQUOTE] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [anon_sym_NULL] = ACTIONS(3140), - [anon_sym_nullptr] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3140), - [anon_sym_decltype] = ACTIONS(3140), - [anon_sym_virtual] = ACTIONS(3140), - [anon_sym_alignas] = ACTIONS(3140), - [anon_sym_explicit] = ACTIONS(3140), - [anon_sym_typename] = ACTIONS(3140), - [anon_sym_template] = ACTIONS(3140), - [anon_sym_operator] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_static_assert] = ACTIONS(3140), - [anon_sym_concept] = ACTIONS(3140), - [anon_sym_co_return] = ACTIONS(3140), - [anon_sym_co_yield] = ACTIONS(3140), - [anon_sym_R_DQUOTE] = ACTIONS(3142), - [anon_sym_LR_DQUOTE] = ACTIONS(3142), - [anon_sym_uR_DQUOTE] = ACTIONS(3142), - [anon_sym_UR_DQUOTE] = ACTIONS(3142), - [anon_sym_u8R_DQUOTE] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_requires] = ACTIONS(3140), - [sym_this] = ACTIONS(3140), + [841] = { + [sym_identifier] = ACTIONS(3078), + [aux_sym_preproc_include_token1] = ACTIONS(3078), + [aux_sym_preproc_def_token1] = ACTIONS(3078), + [aux_sym_preproc_if_token1] = ACTIONS(3078), + [aux_sym_preproc_if_token2] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), + [sym_preproc_directive] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym___extension__] = ACTIONS(3078), + [anon_sym_typedef] = ACTIONS(3078), + [anon_sym_extern] = ACTIONS(3078), + [anon_sym___attribute__] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), + [anon_sym___declspec] = ACTIONS(3078), + [anon_sym___based] = ACTIONS(3078), + [anon_sym___cdecl] = ACTIONS(3078), + [anon_sym___clrcall] = ACTIONS(3078), + [anon_sym___stdcall] = ACTIONS(3078), + [anon_sym___fastcall] = ACTIONS(3078), + [anon_sym___thiscall] = ACTIONS(3078), + [anon_sym___vectorcall] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_signed] = ACTIONS(3078), + [anon_sym_unsigned] = ACTIONS(3078), + [anon_sym_long] = ACTIONS(3078), + [anon_sym_short] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_static] = ACTIONS(3078), + [anon_sym_register] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym___inline] = ACTIONS(3078), + [anon_sym___inline__] = ACTIONS(3078), + [anon_sym___forceinline] = ACTIONS(3078), + [anon_sym_thread_local] = ACTIONS(3078), + [anon_sym___thread] = ACTIONS(3078), + [anon_sym_const] = ACTIONS(3078), + [anon_sym_constexpr] = ACTIONS(3078), + [anon_sym_volatile] = ACTIONS(3078), + [anon_sym_restrict] = ACTIONS(3078), + [anon_sym___restrict__] = ACTIONS(3078), + [anon_sym__Atomic] = ACTIONS(3078), + [anon_sym__Noreturn] = ACTIONS(3078), + [anon_sym_noreturn] = ACTIONS(3078), + [anon_sym_mutable] = ACTIONS(3078), + [anon_sym_constinit] = ACTIONS(3078), + [anon_sym_consteval] = ACTIONS(3078), + [sym_primitive_type] = ACTIONS(3078), + [anon_sym_enum] = ACTIONS(3078), + [anon_sym_class] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_switch] = ACTIONS(3078), + [anon_sym_case] = ACTIONS(3078), + [anon_sym_default] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_goto] = ACTIONS(3078), + [anon_sym___try] = ACTIONS(3078), + [anon_sym___leave] = ACTIONS(3078), + [anon_sym_not] = ACTIONS(3078), + [anon_sym_compl] = ACTIONS(3078), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_sizeof] = ACTIONS(3078), + [anon_sym___alignof__] = ACTIONS(3078), + [anon_sym___alignof] = ACTIONS(3078), + [anon_sym__alignof] = ACTIONS(3078), + [anon_sym_alignof] = ACTIONS(3078), + [anon_sym__Alignof] = ACTIONS(3078), + [anon_sym_offsetof] = ACTIONS(3078), + [anon_sym__Generic] = ACTIONS(3078), + [anon_sym_asm] = ACTIONS(3078), + [anon_sym___asm__] = ACTIONS(3078), + [sym_number_literal] = ACTIONS(3080), + [anon_sym_L_SQUOTE] = ACTIONS(3080), + [anon_sym_u_SQUOTE] = ACTIONS(3080), + [anon_sym_U_SQUOTE] = ACTIONS(3080), + [anon_sym_u8_SQUOTE] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_L_DQUOTE] = ACTIONS(3080), + [anon_sym_u_DQUOTE] = ACTIONS(3080), + [anon_sym_U_DQUOTE] = ACTIONS(3080), + [anon_sym_u8_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [anon_sym_NULL] = ACTIONS(3078), + [anon_sym_nullptr] = ACTIONS(3078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3078), + [anon_sym_decltype] = ACTIONS(3078), + [anon_sym_virtual] = ACTIONS(3078), + [anon_sym_alignas] = ACTIONS(3078), + [anon_sym_explicit] = ACTIONS(3078), + [anon_sym_typename] = ACTIONS(3078), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3078), + [anon_sym_namespace] = ACTIONS(3078), + [anon_sym_using] = ACTIONS(3078), + [anon_sym_static_assert] = ACTIONS(3078), + [anon_sym_concept] = ACTIONS(3078), + [anon_sym_co_return] = ACTIONS(3078), + [anon_sym_co_yield] = ACTIONS(3078), + [anon_sym_R_DQUOTE] = ACTIONS(3080), + [anon_sym_LR_DQUOTE] = ACTIONS(3080), + [anon_sym_uR_DQUOTE] = ACTIONS(3080), + [anon_sym_UR_DQUOTE] = ACTIONS(3080), + [anon_sym_u8R_DQUOTE] = ACTIONS(3080), + [anon_sym_co_await] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_requires] = ACTIONS(3078), + [sym_this] = ACTIONS(3078), }, - [886] = { - [sym_identifier] = ACTIONS(3239), - [aux_sym_preproc_include_token1] = ACTIONS(3239), - [aux_sym_preproc_def_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token1] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), - [sym_preproc_directive] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_AMP_AMP] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym___extension__] = ACTIONS(3239), - [anon_sym_typedef] = ACTIONS(3239), - [anon_sym_extern] = ACTIONS(3239), - [anon_sym___attribute__] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3241), - [anon_sym___declspec] = ACTIONS(3239), - [anon_sym___based] = ACTIONS(3239), - [anon_sym___cdecl] = ACTIONS(3239), - [anon_sym___clrcall] = ACTIONS(3239), - [anon_sym___stdcall] = ACTIONS(3239), - [anon_sym___fastcall] = ACTIONS(3239), - [anon_sym___thiscall] = ACTIONS(3239), - [anon_sym___vectorcall] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_signed] = ACTIONS(3239), - [anon_sym_unsigned] = ACTIONS(3239), - [anon_sym_long] = ACTIONS(3239), - [anon_sym_short] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_register] = ACTIONS(3239), - [anon_sym_inline] = ACTIONS(3239), - [anon_sym___inline] = ACTIONS(3239), - [anon_sym___inline__] = ACTIONS(3239), - [anon_sym___forceinline] = ACTIONS(3239), - [anon_sym_thread_local] = ACTIONS(3239), - [anon_sym___thread] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_constexpr] = ACTIONS(3239), - [anon_sym_volatile] = ACTIONS(3239), - [anon_sym_restrict] = ACTIONS(3239), - [anon_sym___restrict__] = ACTIONS(3239), - [anon_sym__Atomic] = ACTIONS(3239), - [anon_sym__Noreturn] = ACTIONS(3239), - [anon_sym_noreturn] = ACTIONS(3239), - [anon_sym_mutable] = ACTIONS(3239), - [anon_sym_constinit] = ACTIONS(3239), - [anon_sym_consteval] = ACTIONS(3239), - [sym_primitive_type] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_case] = ACTIONS(3239), - [anon_sym_default] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_goto] = ACTIONS(3239), - [anon_sym___try] = ACTIONS(3239), - [anon_sym___leave] = ACTIONS(3239), - [anon_sym_not] = ACTIONS(3239), - [anon_sym_compl] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_sizeof] = ACTIONS(3239), - [anon_sym___alignof__] = ACTIONS(3239), - [anon_sym___alignof] = ACTIONS(3239), - [anon_sym__alignof] = ACTIONS(3239), - [anon_sym_alignof] = ACTIONS(3239), - [anon_sym__Alignof] = ACTIONS(3239), - [anon_sym_offsetof] = ACTIONS(3239), - [anon_sym__Generic] = ACTIONS(3239), - [anon_sym_asm] = ACTIONS(3239), - [anon_sym___asm__] = ACTIONS(3239), - [sym_number_literal] = ACTIONS(3241), - [anon_sym_L_SQUOTE] = ACTIONS(3241), - [anon_sym_u_SQUOTE] = ACTIONS(3241), - [anon_sym_U_SQUOTE] = ACTIONS(3241), - [anon_sym_u8_SQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_L_DQUOTE] = ACTIONS(3241), - [anon_sym_u_DQUOTE] = ACTIONS(3241), - [anon_sym_U_DQUOTE] = ACTIONS(3241), - [anon_sym_u8_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [anon_sym_NULL] = ACTIONS(3239), - [anon_sym_nullptr] = ACTIONS(3239), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3239), - [anon_sym_decltype] = ACTIONS(3239), - [anon_sym_virtual] = ACTIONS(3239), - [anon_sym_alignas] = ACTIONS(3239), - [anon_sym_explicit] = ACTIONS(3239), - [anon_sym_typename] = ACTIONS(3239), - [anon_sym_template] = ACTIONS(3239), - [anon_sym_operator] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_delete] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_static_assert] = ACTIONS(3239), - [anon_sym_concept] = ACTIONS(3239), - [anon_sym_co_return] = ACTIONS(3239), - [anon_sym_co_yield] = ACTIONS(3239), - [anon_sym_R_DQUOTE] = ACTIONS(3241), - [anon_sym_LR_DQUOTE] = ACTIONS(3241), - [anon_sym_uR_DQUOTE] = ACTIONS(3241), - [anon_sym_UR_DQUOTE] = ACTIONS(3241), - [anon_sym_u8R_DQUOTE] = ACTIONS(3241), - [anon_sym_co_await] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_requires] = ACTIONS(3239), - [sym_this] = ACTIONS(3239), + [842] = { + [sym_identifier] = ACTIONS(3012), + [aux_sym_preproc_include_token1] = ACTIONS(3012), + [aux_sym_preproc_def_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token2] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3012), + [sym_preproc_directive] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3012), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym___based] = ACTIONS(3012), + [anon_sym___cdecl] = ACTIONS(3012), + [anon_sym___clrcall] = ACTIONS(3012), + [anon_sym___stdcall] = ACTIONS(3012), + [anon_sym___fastcall] = ACTIONS(3012), + [anon_sym___thiscall] = ACTIONS(3012), + [anon_sym___vectorcall] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym___inline] = ACTIONS(3012), + [anon_sym___inline__] = ACTIONS(3012), + [anon_sym___forceinline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym___thread] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym___try] = ACTIONS(3012), + [anon_sym___leave] = ACTIONS(3012), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_sizeof] = ACTIONS(3012), + [anon_sym___alignof__] = ACTIONS(3012), + [anon_sym___alignof] = ACTIONS(3012), + [anon_sym__alignof] = ACTIONS(3012), + [anon_sym_alignof] = ACTIONS(3012), + [anon_sym__Alignof] = ACTIONS(3012), + [anon_sym_offsetof] = ACTIONS(3012), + [anon_sym__Generic] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym___asm__] = ACTIONS(3012), + [sym_number_literal] = ACTIONS(3014), + [anon_sym_L_SQUOTE] = ACTIONS(3014), + [anon_sym_u_SQUOTE] = ACTIONS(3014), + [anon_sym_U_SQUOTE] = ACTIONS(3014), + [anon_sym_u8_SQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_L_DQUOTE] = ACTIONS(3014), + [anon_sym_u_DQUOTE] = ACTIONS(3014), + [anon_sym_U_DQUOTE] = ACTIONS(3014), + [anon_sym_u8_DQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_nullptr] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_alignas] = ACTIONS(3012), + [anon_sym_explicit] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_operator] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_static_assert] = ACTIONS(3012), + [anon_sym_concept] = ACTIONS(3012), + [anon_sym_co_return] = ACTIONS(3012), + [anon_sym_co_yield] = ACTIONS(3012), + [anon_sym_R_DQUOTE] = ACTIONS(3014), + [anon_sym_LR_DQUOTE] = ACTIONS(3014), + [anon_sym_uR_DQUOTE] = ACTIONS(3014), + [anon_sym_UR_DQUOTE] = ACTIONS(3014), + [anon_sym_u8R_DQUOTE] = ACTIONS(3014), + [anon_sym_co_await] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_requires] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), }, - [887] = { - [sym_identifier] = ACTIONS(3054), - [aux_sym_preproc_include_token1] = ACTIONS(3054), - [aux_sym_preproc_def_token1] = ACTIONS(3054), - [aux_sym_preproc_if_token1] = ACTIONS(3054), - [aux_sym_preproc_if_token2] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3054), - [sym_preproc_directive] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym___extension__] = ACTIONS(3054), - [anon_sym_typedef] = ACTIONS(3054), - [anon_sym_extern] = ACTIONS(3054), - [anon_sym___attribute__] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3056), - [anon_sym___declspec] = ACTIONS(3054), - [anon_sym___based] = ACTIONS(3054), - [anon_sym___cdecl] = ACTIONS(3054), - [anon_sym___clrcall] = ACTIONS(3054), - [anon_sym___stdcall] = ACTIONS(3054), - [anon_sym___fastcall] = ACTIONS(3054), - [anon_sym___thiscall] = ACTIONS(3054), - [anon_sym___vectorcall] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_signed] = ACTIONS(3054), - [anon_sym_unsigned] = ACTIONS(3054), - [anon_sym_long] = ACTIONS(3054), - [anon_sym_short] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_register] = ACTIONS(3054), - [anon_sym_inline] = ACTIONS(3054), - [anon_sym___inline] = ACTIONS(3054), - [anon_sym___inline__] = ACTIONS(3054), - [anon_sym___forceinline] = ACTIONS(3054), - [anon_sym_thread_local] = ACTIONS(3054), - [anon_sym___thread] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_constexpr] = ACTIONS(3054), - [anon_sym_volatile] = ACTIONS(3054), - [anon_sym_restrict] = ACTIONS(3054), - [anon_sym___restrict__] = ACTIONS(3054), - [anon_sym__Atomic] = ACTIONS(3054), - [anon_sym__Noreturn] = ACTIONS(3054), - [anon_sym_noreturn] = ACTIONS(3054), - [anon_sym_mutable] = ACTIONS(3054), - [anon_sym_constinit] = ACTIONS(3054), - [anon_sym_consteval] = ACTIONS(3054), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_class] = ACTIONS(3054), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_union] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_switch] = ACTIONS(3054), - [anon_sym_case] = ACTIONS(3054), - [anon_sym_default] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_goto] = ACTIONS(3054), - [anon_sym___try] = ACTIONS(3054), - [anon_sym___leave] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3054), - [anon_sym_compl] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_sizeof] = ACTIONS(3054), - [anon_sym___alignof__] = ACTIONS(3054), - [anon_sym___alignof] = ACTIONS(3054), - [anon_sym__alignof] = ACTIONS(3054), - [anon_sym_alignof] = ACTIONS(3054), - [anon_sym__Alignof] = ACTIONS(3054), - [anon_sym_offsetof] = ACTIONS(3054), - [anon_sym__Generic] = ACTIONS(3054), - [anon_sym_asm] = ACTIONS(3054), - [anon_sym___asm__] = ACTIONS(3054), - [sym_number_literal] = ACTIONS(3056), - [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(3056), - [anon_sym_u_DQUOTE] = ACTIONS(3056), - [anon_sym_U_DQUOTE] = ACTIONS(3056), - [anon_sym_u8_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [anon_sym_NULL] = ACTIONS(3054), - [anon_sym_nullptr] = ACTIONS(3054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3054), - [anon_sym_decltype] = ACTIONS(3054), - [anon_sym_virtual] = ACTIONS(3054), - [anon_sym_alignas] = ACTIONS(3054), - [anon_sym_explicit] = ACTIONS(3054), - [anon_sym_typename] = ACTIONS(3054), - [anon_sym_template] = ACTIONS(3054), - [anon_sym_operator] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_delete] = ACTIONS(3054), - [anon_sym_throw] = ACTIONS(3054), - [anon_sym_namespace] = ACTIONS(3054), - [anon_sym_using] = ACTIONS(3054), - [anon_sym_static_assert] = ACTIONS(3054), - [anon_sym_concept] = ACTIONS(3054), - [anon_sym_co_return] = ACTIONS(3054), - [anon_sym_co_yield] = ACTIONS(3054), - [anon_sym_R_DQUOTE] = ACTIONS(3056), - [anon_sym_LR_DQUOTE] = ACTIONS(3056), - [anon_sym_uR_DQUOTE] = ACTIONS(3056), - [anon_sym_UR_DQUOTE] = ACTIONS(3056), - [anon_sym_u8R_DQUOTE] = ACTIONS(3056), - [anon_sym_co_await] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_requires] = ACTIONS(3054), - [sym_this] = ACTIONS(3054), + [843] = { + [sym_identifier] = ACTIONS(3114), + [aux_sym_preproc_include_token1] = ACTIONS(3114), + [aux_sym_preproc_def_token1] = ACTIONS(3114), + [aux_sym_preproc_if_token1] = ACTIONS(3114), + [aux_sym_preproc_if_token2] = ACTIONS(3114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3114), + [sym_preproc_directive] = ACTIONS(3114), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3114), + [anon_sym_PLUS] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym___extension__] = ACTIONS(3114), + [anon_sym_typedef] = ACTIONS(3114), + [anon_sym_extern] = ACTIONS(3114), + [anon_sym___attribute__] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3114), + [anon_sym___based] = ACTIONS(3114), + [anon_sym___cdecl] = ACTIONS(3114), + [anon_sym___clrcall] = ACTIONS(3114), + [anon_sym___stdcall] = ACTIONS(3114), + [anon_sym___fastcall] = ACTIONS(3114), + [anon_sym___thiscall] = ACTIONS(3114), + [anon_sym___vectorcall] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3114), + [anon_sym_unsigned] = ACTIONS(3114), + [anon_sym_long] = ACTIONS(3114), + [anon_sym_short] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_static] = ACTIONS(3114), + [anon_sym_register] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym___inline] = ACTIONS(3114), + [anon_sym___inline__] = ACTIONS(3114), + [anon_sym___forceinline] = ACTIONS(3114), + [anon_sym_thread_local] = ACTIONS(3114), + [anon_sym___thread] = ACTIONS(3114), + [anon_sym_const] = ACTIONS(3114), + [anon_sym_constexpr] = ACTIONS(3114), + [anon_sym_volatile] = ACTIONS(3114), + [anon_sym_restrict] = ACTIONS(3114), + [anon_sym___restrict__] = ACTIONS(3114), + [anon_sym__Atomic] = ACTIONS(3114), + [anon_sym__Noreturn] = ACTIONS(3114), + [anon_sym_noreturn] = ACTIONS(3114), + [anon_sym_mutable] = ACTIONS(3114), + [anon_sym_constinit] = ACTIONS(3114), + [anon_sym_consteval] = ACTIONS(3114), + [sym_primitive_type] = ACTIONS(3114), + [anon_sym_enum] = ACTIONS(3114), + [anon_sym_class] = ACTIONS(3114), + [anon_sym_struct] = ACTIONS(3114), + [anon_sym_union] = ACTIONS(3114), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_switch] = ACTIONS(3114), + [anon_sym_case] = ACTIONS(3114), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_do] = ACTIONS(3114), + [anon_sym_for] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_goto] = ACTIONS(3114), + [anon_sym___try] = ACTIONS(3114), + [anon_sym___leave] = ACTIONS(3114), + [anon_sym_not] = ACTIONS(3114), + [anon_sym_compl] = ACTIONS(3114), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_sizeof] = ACTIONS(3114), + [anon_sym___alignof__] = ACTIONS(3114), + [anon_sym___alignof] = ACTIONS(3114), + [anon_sym__alignof] = ACTIONS(3114), + [anon_sym_alignof] = ACTIONS(3114), + [anon_sym__Alignof] = ACTIONS(3114), + [anon_sym_offsetof] = ACTIONS(3114), + [anon_sym__Generic] = ACTIONS(3114), + [anon_sym_asm] = ACTIONS(3114), + [anon_sym___asm__] = ACTIONS(3114), + [sym_number_literal] = ACTIONS(3116), + [anon_sym_L_SQUOTE] = ACTIONS(3116), + [anon_sym_u_SQUOTE] = ACTIONS(3116), + [anon_sym_U_SQUOTE] = ACTIONS(3116), + [anon_sym_u8_SQUOTE] = ACTIONS(3116), + [anon_sym_SQUOTE] = ACTIONS(3116), + [anon_sym_L_DQUOTE] = ACTIONS(3116), + [anon_sym_u_DQUOTE] = ACTIONS(3116), + [anon_sym_U_DQUOTE] = ACTIONS(3116), + [anon_sym_u8_DQUOTE] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3116), + [sym_true] = ACTIONS(3114), + [sym_false] = ACTIONS(3114), + [anon_sym_NULL] = ACTIONS(3114), + [anon_sym_nullptr] = ACTIONS(3114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3114), + [anon_sym_decltype] = ACTIONS(3114), + [anon_sym_virtual] = ACTIONS(3114), + [anon_sym_alignas] = ACTIONS(3114), + [anon_sym_explicit] = ACTIONS(3114), + [anon_sym_typename] = ACTIONS(3114), + [anon_sym_template] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_delete] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_namespace] = ACTIONS(3114), + [anon_sym_using] = ACTIONS(3114), + [anon_sym_static_assert] = ACTIONS(3114), + [anon_sym_concept] = ACTIONS(3114), + [anon_sym_co_return] = ACTIONS(3114), + [anon_sym_co_yield] = ACTIONS(3114), + [anon_sym_R_DQUOTE] = ACTIONS(3116), + [anon_sym_LR_DQUOTE] = ACTIONS(3116), + [anon_sym_uR_DQUOTE] = ACTIONS(3116), + [anon_sym_UR_DQUOTE] = ACTIONS(3116), + [anon_sym_u8R_DQUOTE] = ACTIONS(3116), + [anon_sym_co_await] = ACTIONS(3114), + [anon_sym_new] = ACTIONS(3114), + [anon_sym_requires] = ACTIONS(3114), + [sym_this] = ACTIONS(3114), }, - [888] = { - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_include_token1] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym___cdecl] = ACTIONS(3219), - [anon_sym___clrcall] = ACTIONS(3219), - [anon_sym___stdcall] = ACTIONS(3219), - [anon_sym___fastcall] = ACTIONS(3219), - [anon_sym___thiscall] = ACTIONS(3219), - [anon_sym___vectorcall] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym___try] = ACTIONS(3219), - [anon_sym___leave] = ACTIONS(3219), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_compl] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3219), - [anon_sym___alignof__] = ACTIONS(3219), - [anon_sym___alignof] = ACTIONS(3219), - [anon_sym__alignof] = ACTIONS(3219), - [anon_sym_alignof] = ACTIONS(3219), - [anon_sym__Alignof] = ACTIONS(3219), - [anon_sym_offsetof] = ACTIONS(3219), - [anon_sym__Generic] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym___asm__] = ACTIONS(3219), - [sym_number_literal] = ACTIONS(3221), - [anon_sym_L_SQUOTE] = ACTIONS(3221), - [anon_sym_u_SQUOTE] = ACTIONS(3221), - [anon_sym_U_SQUOTE] = ACTIONS(3221), - [anon_sym_u8_SQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_L_DQUOTE] = ACTIONS(3221), - [anon_sym_u_DQUOTE] = ACTIONS(3221), - [anon_sym_U_DQUOTE] = ACTIONS(3221), - [anon_sym_u8_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [anon_sym_NULL] = ACTIONS(3219), - [anon_sym_nullptr] = ACTIONS(3219), + [844] = { + [sym_catch_clause] = STATE(403), + [aux_sym_constructor_try_statement_repeat1] = STATE(403), + [ts_builtin_sym_end] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2834), + [aux_sym_preproc_include_token1] = ACTIONS(2834), + [aux_sym_preproc_def_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token1] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), + [sym_preproc_directive] = ACTIONS(2834), + [anon_sym_LPAREN2] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_PLUS] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_AMP_AMP] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym___extension__] = ACTIONS(2834), + [anon_sym_typedef] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym___attribute__] = ACTIONS(2834), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), + [anon_sym___declspec] = ACTIONS(2834), + [anon_sym___based] = ACTIONS(2834), + [anon_sym___cdecl] = ACTIONS(2834), + [anon_sym___clrcall] = ACTIONS(2834), + [anon_sym___stdcall] = ACTIONS(2834), + [anon_sym___fastcall] = ACTIONS(2834), + [anon_sym___thiscall] = ACTIONS(2834), + [anon_sym___vectorcall] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_signed] = ACTIONS(2834), + [anon_sym_unsigned] = ACTIONS(2834), + [anon_sym_long] = ACTIONS(2834), + [anon_sym_short] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_register] = ACTIONS(2834), + [anon_sym_inline] = ACTIONS(2834), + [anon_sym___inline] = ACTIONS(2834), + [anon_sym___inline__] = ACTIONS(2834), + [anon_sym___forceinline] = ACTIONS(2834), + [anon_sym_thread_local] = ACTIONS(2834), + [anon_sym___thread] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_constexpr] = ACTIONS(2834), + [anon_sym_volatile] = ACTIONS(2834), + [anon_sym_restrict] = ACTIONS(2834), + [anon_sym___restrict__] = ACTIONS(2834), + [anon_sym__Atomic] = ACTIONS(2834), + [anon_sym__Noreturn] = ACTIONS(2834), + [anon_sym_noreturn] = ACTIONS(2834), + [anon_sym_mutable] = ACTIONS(2834), + [anon_sym_constinit] = ACTIONS(2834), + [anon_sym_consteval] = ACTIONS(2834), + [sym_primitive_type] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_class] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_switch] = ACTIONS(2834), + [anon_sym_case] = ACTIONS(2834), + [anon_sym_default] = ACTIONS(2834), + [anon_sym_while] = ACTIONS(2834), + [anon_sym_do] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_goto] = ACTIONS(2834), + [anon_sym_not] = ACTIONS(2834), + [anon_sym_compl] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_PLUS_PLUS] = ACTIONS(2836), + [anon_sym_sizeof] = ACTIONS(2834), + [anon_sym___alignof__] = ACTIONS(2834), + [anon_sym___alignof] = ACTIONS(2834), + [anon_sym__alignof] = ACTIONS(2834), + [anon_sym_alignof] = ACTIONS(2834), + [anon_sym__Alignof] = ACTIONS(2834), + [anon_sym_offsetof] = ACTIONS(2834), + [anon_sym__Generic] = ACTIONS(2834), + [anon_sym_asm] = ACTIONS(2834), + [anon_sym___asm__] = ACTIONS(2834), + [sym_number_literal] = ACTIONS(2836), + [anon_sym_L_SQUOTE] = ACTIONS(2836), + [anon_sym_u_SQUOTE] = ACTIONS(2836), + [anon_sym_U_SQUOTE] = ACTIONS(2836), + [anon_sym_u8_SQUOTE] = ACTIONS(2836), + [anon_sym_SQUOTE] = ACTIONS(2836), + [anon_sym_L_DQUOTE] = ACTIONS(2836), + [anon_sym_u_DQUOTE] = ACTIONS(2836), + [anon_sym_U_DQUOTE] = ACTIONS(2836), + [anon_sym_u8_DQUOTE] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2836), + [sym_true] = ACTIONS(2834), + [sym_false] = ACTIONS(2834), + [anon_sym_NULL] = ACTIONS(2834), + [anon_sym_nullptr] = ACTIONS(2834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2834), + [anon_sym_decltype] = ACTIONS(2834), + [anon_sym_virtual] = ACTIONS(2834), + [anon_sym_alignas] = ACTIONS(2834), + [anon_sym_explicit] = ACTIONS(2834), + [anon_sym_typename] = ACTIONS(2834), + [anon_sym_template] = ACTIONS(2834), + [anon_sym_operator] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2834), + [anon_sym_delete] = ACTIONS(2834), + [anon_sym_throw] = ACTIONS(2834), + [anon_sym_namespace] = ACTIONS(2834), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_static_assert] = ACTIONS(2834), + [anon_sym_concept] = ACTIONS(2834), + [anon_sym_co_return] = ACTIONS(2834), + [anon_sym_co_yield] = ACTIONS(2834), + [anon_sym_catch] = ACTIONS(3008), + [anon_sym_R_DQUOTE] = ACTIONS(2836), + [anon_sym_LR_DQUOTE] = ACTIONS(2836), + [anon_sym_uR_DQUOTE] = ACTIONS(2836), + [anon_sym_UR_DQUOTE] = ACTIONS(2836), + [anon_sym_u8R_DQUOTE] = ACTIONS(2836), + [anon_sym_co_await] = ACTIONS(2834), + [anon_sym_new] = ACTIONS(2834), + [anon_sym_requires] = ACTIONS(2834), + [sym_this] = ACTIONS(2834), + }, + [845] = { + [sym_identifier] = ACTIONS(3082), + [aux_sym_preproc_include_token1] = ACTIONS(3082), + [aux_sym_preproc_def_token1] = ACTIONS(3082), + [aux_sym_preproc_if_token1] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), + [sym_preproc_directive] = ACTIONS(3082), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym___extension__] = ACTIONS(3082), + [anon_sym_typedef] = ACTIONS(3082), + [anon_sym_extern] = ACTIONS(3082), + [anon_sym___attribute__] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), + [anon_sym___declspec] = ACTIONS(3082), + [anon_sym___based] = ACTIONS(3082), + [anon_sym___cdecl] = ACTIONS(3082), + [anon_sym___clrcall] = ACTIONS(3082), + [anon_sym___stdcall] = ACTIONS(3082), + [anon_sym___fastcall] = ACTIONS(3082), + [anon_sym___thiscall] = ACTIONS(3082), + [anon_sym___vectorcall] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_signed] = ACTIONS(3082), + [anon_sym_unsigned] = ACTIONS(3082), + [anon_sym_long] = ACTIONS(3082), + [anon_sym_short] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_register] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym___inline] = ACTIONS(3082), + [anon_sym___inline__] = ACTIONS(3082), + [anon_sym___forceinline] = ACTIONS(3082), + [anon_sym_thread_local] = ACTIONS(3082), + [anon_sym___thread] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_constexpr] = ACTIONS(3082), + [anon_sym_volatile] = ACTIONS(3082), + [anon_sym_restrict] = ACTIONS(3082), + [anon_sym___restrict__] = ACTIONS(3082), + [anon_sym__Atomic] = ACTIONS(3082), + [anon_sym__Noreturn] = ACTIONS(3082), + [anon_sym_noreturn] = ACTIONS(3082), + [anon_sym_mutable] = ACTIONS(3082), + [anon_sym_constinit] = ACTIONS(3082), + [anon_sym_consteval] = ACTIONS(3082), + [sym_primitive_type] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_union] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_switch] = ACTIONS(3082), + [anon_sym_case] = ACTIONS(3082), + [anon_sym_default] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_do] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_goto] = ACTIONS(3082), + [anon_sym___try] = ACTIONS(3082), + [anon_sym___leave] = ACTIONS(3082), + [anon_sym_not] = ACTIONS(3082), + [anon_sym_compl] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_sizeof] = ACTIONS(3082), + [anon_sym___alignof__] = ACTIONS(3082), + [anon_sym___alignof] = ACTIONS(3082), + [anon_sym__alignof] = ACTIONS(3082), + [anon_sym_alignof] = ACTIONS(3082), + [anon_sym__Alignof] = ACTIONS(3082), + [anon_sym_offsetof] = ACTIONS(3082), + [anon_sym__Generic] = ACTIONS(3082), + [anon_sym_asm] = ACTIONS(3082), + [anon_sym___asm__] = ACTIONS(3082), + [sym_number_literal] = ACTIONS(3084), + [anon_sym_L_SQUOTE] = ACTIONS(3084), + [anon_sym_u_SQUOTE] = ACTIONS(3084), + [anon_sym_U_SQUOTE] = ACTIONS(3084), + [anon_sym_u8_SQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_L_DQUOTE] = ACTIONS(3084), + [anon_sym_u_DQUOTE] = ACTIONS(3084), + [anon_sym_U_DQUOTE] = ACTIONS(3084), + [anon_sym_u8_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [anon_sym_NULL] = ACTIONS(3082), + [anon_sym_nullptr] = ACTIONS(3082), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_explicit] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_operator] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_static_assert] = ACTIONS(3219), - [anon_sym_concept] = ACTIONS(3219), - [anon_sym_co_return] = ACTIONS(3219), - [anon_sym_co_yield] = ACTIONS(3219), - [anon_sym_R_DQUOTE] = ACTIONS(3221), - [anon_sym_LR_DQUOTE] = ACTIONS(3221), - [anon_sym_uR_DQUOTE] = ACTIONS(3221), - [anon_sym_UR_DQUOTE] = ACTIONS(3221), - [anon_sym_u8R_DQUOTE] = ACTIONS(3221), - [anon_sym_co_await] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_requires] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), + [sym_auto] = ACTIONS(3082), + [anon_sym_decltype] = ACTIONS(3082), + [anon_sym_virtual] = ACTIONS(3082), + [anon_sym_alignas] = ACTIONS(3082), + [anon_sym_explicit] = ACTIONS(3082), + [anon_sym_typename] = ACTIONS(3082), + [anon_sym_template] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_delete] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_namespace] = ACTIONS(3082), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_static_assert] = ACTIONS(3082), + [anon_sym_concept] = ACTIONS(3082), + [anon_sym_co_return] = ACTIONS(3082), + [anon_sym_co_yield] = ACTIONS(3082), + [anon_sym_R_DQUOTE] = ACTIONS(3084), + [anon_sym_LR_DQUOTE] = ACTIONS(3084), + [anon_sym_uR_DQUOTE] = ACTIONS(3084), + [anon_sym_UR_DQUOTE] = ACTIONS(3084), + [anon_sym_u8R_DQUOTE] = ACTIONS(3084), + [anon_sym_co_await] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3082), + [anon_sym_requires] = ACTIONS(3082), + [sym_this] = ACTIONS(3082), }, - [889] = { - [sym_identifier] = ACTIONS(3132), - [aux_sym_preproc_include_token1] = ACTIONS(3132), - [aux_sym_preproc_def_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token1] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), - [sym_preproc_directive] = ACTIONS(3132), - [anon_sym_LPAREN2] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_STAR] = ACTIONS(3134), - [anon_sym_AMP_AMP] = ACTIONS(3134), - [anon_sym_AMP] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3134), - [anon_sym___extension__] = ACTIONS(3132), - [anon_sym_typedef] = ACTIONS(3132), - [anon_sym_extern] = ACTIONS(3132), - [anon_sym___attribute__] = ACTIONS(3132), - [anon_sym_COLON_COLON] = ACTIONS(3134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), - [anon_sym___declspec] = ACTIONS(3132), - [anon_sym___based] = ACTIONS(3132), - [anon_sym___cdecl] = ACTIONS(3132), - [anon_sym___clrcall] = ACTIONS(3132), - [anon_sym___stdcall] = ACTIONS(3132), - [anon_sym___fastcall] = ACTIONS(3132), - [anon_sym___thiscall] = ACTIONS(3132), - [anon_sym___vectorcall] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3134), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_signed] = ACTIONS(3132), - [anon_sym_unsigned] = ACTIONS(3132), - [anon_sym_long] = ACTIONS(3132), - [anon_sym_short] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_register] = ACTIONS(3132), - [anon_sym_inline] = ACTIONS(3132), - [anon_sym___inline] = ACTIONS(3132), - [anon_sym___inline__] = ACTIONS(3132), - [anon_sym___forceinline] = ACTIONS(3132), - [anon_sym_thread_local] = ACTIONS(3132), - [anon_sym___thread] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_constexpr] = ACTIONS(3132), - [anon_sym_volatile] = ACTIONS(3132), - [anon_sym_restrict] = ACTIONS(3132), - [anon_sym___restrict__] = ACTIONS(3132), - [anon_sym__Atomic] = ACTIONS(3132), - [anon_sym__Noreturn] = ACTIONS(3132), - [anon_sym_noreturn] = ACTIONS(3132), - [anon_sym_mutable] = ACTIONS(3132), - [anon_sym_constinit] = ACTIONS(3132), - [anon_sym_consteval] = ACTIONS(3132), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(3132), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_case] = ACTIONS(3132), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_goto] = ACTIONS(3132), - [anon_sym___try] = ACTIONS(3132), - [anon_sym___leave] = ACTIONS(3132), - [anon_sym_not] = ACTIONS(3132), - [anon_sym_compl] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3134), - [anon_sym_sizeof] = ACTIONS(3132), - [anon_sym___alignof__] = ACTIONS(3132), - [anon_sym___alignof] = ACTIONS(3132), - [anon_sym__alignof] = ACTIONS(3132), - [anon_sym_alignof] = ACTIONS(3132), - [anon_sym__Alignof] = ACTIONS(3132), - [anon_sym_offsetof] = ACTIONS(3132), - [anon_sym__Generic] = ACTIONS(3132), - [anon_sym_asm] = ACTIONS(3132), - [anon_sym___asm__] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3134), - [anon_sym_u_SQUOTE] = ACTIONS(3134), - [anon_sym_U_SQUOTE] = ACTIONS(3134), - [anon_sym_u8_SQUOTE] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3134), - [anon_sym_L_DQUOTE] = ACTIONS(3134), - [anon_sym_u_DQUOTE] = ACTIONS(3134), - [anon_sym_U_DQUOTE] = ACTIONS(3134), - [anon_sym_u8_DQUOTE] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(3134), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [anon_sym_NULL] = ACTIONS(3132), - [anon_sym_nullptr] = ACTIONS(3132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3132), - [anon_sym_decltype] = ACTIONS(3132), - [anon_sym_virtual] = ACTIONS(3132), - [anon_sym_alignas] = ACTIONS(3132), - [anon_sym_explicit] = ACTIONS(3132), - [anon_sym_typename] = ACTIONS(3132), - [anon_sym_template] = ACTIONS(3132), - [anon_sym_operator] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_static_assert] = ACTIONS(3132), - [anon_sym_concept] = ACTIONS(3132), - [anon_sym_co_return] = ACTIONS(3132), - [anon_sym_co_yield] = ACTIONS(3132), - [anon_sym_R_DQUOTE] = ACTIONS(3134), - [anon_sym_LR_DQUOTE] = ACTIONS(3134), - [anon_sym_uR_DQUOTE] = ACTIONS(3134), - [anon_sym_UR_DQUOTE] = ACTIONS(3134), - [anon_sym_u8R_DQUOTE] = ACTIONS(3134), - [anon_sym_co_await] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_requires] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), + [846] = { + [sym_identifier] = ACTIONS(3130), + [aux_sym_preproc_include_token1] = ACTIONS(3130), + [aux_sym_preproc_def_token1] = ACTIONS(3130), + [aux_sym_preproc_if_token1] = ACTIONS(3130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3130), + [sym_preproc_directive] = ACTIONS(3130), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym___extension__] = ACTIONS(3130), + [anon_sym_typedef] = ACTIONS(3130), + [anon_sym_extern] = ACTIONS(3130), + [anon_sym___attribute__] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3132), + [anon_sym___declspec] = ACTIONS(3130), + [anon_sym___based] = ACTIONS(3130), + [anon_sym___cdecl] = ACTIONS(3130), + [anon_sym___clrcall] = ACTIONS(3130), + [anon_sym___stdcall] = ACTIONS(3130), + [anon_sym___fastcall] = ACTIONS(3130), + [anon_sym___thiscall] = ACTIONS(3130), + [anon_sym___vectorcall] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_signed] = ACTIONS(3130), + [anon_sym_unsigned] = ACTIONS(3130), + [anon_sym_long] = ACTIONS(3130), + [anon_sym_short] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_static] = ACTIONS(3130), + [anon_sym_register] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym___inline] = ACTIONS(3130), + [anon_sym___inline__] = ACTIONS(3130), + [anon_sym___forceinline] = ACTIONS(3130), + [anon_sym_thread_local] = ACTIONS(3130), + [anon_sym___thread] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(3130), + [anon_sym_constexpr] = ACTIONS(3130), + [anon_sym_volatile] = ACTIONS(3130), + [anon_sym_restrict] = ACTIONS(3130), + [anon_sym___restrict__] = ACTIONS(3130), + [anon_sym__Atomic] = ACTIONS(3130), + [anon_sym__Noreturn] = ACTIONS(3130), + [anon_sym_noreturn] = ACTIONS(3130), + [anon_sym_mutable] = ACTIONS(3130), + [anon_sym_constinit] = ACTIONS(3130), + [anon_sym_consteval] = ACTIONS(3130), + [sym_primitive_type] = ACTIONS(3130), + [anon_sym_enum] = ACTIONS(3130), + [anon_sym_class] = ACTIONS(3130), + [anon_sym_struct] = ACTIONS(3130), + [anon_sym_union] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_switch] = ACTIONS(3130), + [anon_sym_case] = ACTIONS(3130), + [anon_sym_default] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_goto] = ACTIONS(3130), + [anon_sym___try] = ACTIONS(3130), + [anon_sym___leave] = ACTIONS(3130), + [anon_sym_not] = ACTIONS(3130), + [anon_sym_compl] = ACTIONS(3130), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_sizeof] = ACTIONS(3130), + [anon_sym___alignof__] = ACTIONS(3130), + [anon_sym___alignof] = ACTIONS(3130), + [anon_sym__alignof] = ACTIONS(3130), + [anon_sym_alignof] = ACTIONS(3130), + [anon_sym__Alignof] = ACTIONS(3130), + [anon_sym_offsetof] = ACTIONS(3130), + [anon_sym__Generic] = ACTIONS(3130), + [anon_sym_asm] = ACTIONS(3130), + [anon_sym___asm__] = ACTIONS(3130), + [sym_number_literal] = ACTIONS(3132), + [anon_sym_L_SQUOTE] = ACTIONS(3132), + [anon_sym_u_SQUOTE] = ACTIONS(3132), + [anon_sym_U_SQUOTE] = ACTIONS(3132), + [anon_sym_u8_SQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_L_DQUOTE] = ACTIONS(3132), + [anon_sym_u_DQUOTE] = ACTIONS(3132), + [anon_sym_U_DQUOTE] = ACTIONS(3132), + [anon_sym_u8_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [sym_true] = ACTIONS(3130), + [sym_false] = ACTIONS(3130), + [anon_sym_NULL] = ACTIONS(3130), + [anon_sym_nullptr] = ACTIONS(3130), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3130), + [anon_sym_decltype] = ACTIONS(3130), + [anon_sym_virtual] = ACTIONS(3130), + [anon_sym_alignas] = ACTIONS(3130), + [anon_sym_explicit] = ACTIONS(3130), + [anon_sym_typename] = ACTIONS(3130), + [anon_sym_template] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_delete] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_namespace] = ACTIONS(3130), + [anon_sym_using] = ACTIONS(3130), + [anon_sym_static_assert] = ACTIONS(3130), + [anon_sym_concept] = ACTIONS(3130), + [anon_sym_co_return] = ACTIONS(3130), + [anon_sym_co_yield] = ACTIONS(3130), + [anon_sym_R_DQUOTE] = ACTIONS(3132), + [anon_sym_LR_DQUOTE] = ACTIONS(3132), + [anon_sym_uR_DQUOTE] = ACTIONS(3132), + [anon_sym_UR_DQUOTE] = ACTIONS(3132), + [anon_sym_u8R_DQUOTE] = ACTIONS(3132), + [anon_sym_co_await] = ACTIONS(3130), + [anon_sym_new] = ACTIONS(3130), + [anon_sym_requires] = ACTIONS(3130), + [sym_this] = ACTIONS(3130), }, - [890] = { - [sym_identifier] = ACTIONS(3066), - [aux_sym_preproc_include_token1] = ACTIONS(3066), - [aux_sym_preproc_def_token1] = ACTIONS(3066), - [aux_sym_preproc_if_token1] = ACTIONS(3066), - [aux_sym_preproc_if_token2] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3066), - [sym_preproc_directive] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym___extension__] = ACTIONS(3066), - [anon_sym_typedef] = ACTIONS(3066), - [anon_sym_extern] = ACTIONS(3066), - [anon_sym___attribute__] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3068), - [anon_sym___declspec] = ACTIONS(3066), - [anon_sym___based] = ACTIONS(3066), - [anon_sym___cdecl] = ACTIONS(3066), - [anon_sym___clrcall] = ACTIONS(3066), - [anon_sym___stdcall] = ACTIONS(3066), - [anon_sym___fastcall] = ACTIONS(3066), - [anon_sym___thiscall] = ACTIONS(3066), - [anon_sym___vectorcall] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_signed] = ACTIONS(3066), - [anon_sym_unsigned] = ACTIONS(3066), - [anon_sym_long] = ACTIONS(3066), - [anon_sym_short] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_register] = ACTIONS(3066), - [anon_sym_inline] = ACTIONS(3066), - [anon_sym___inline] = ACTIONS(3066), - [anon_sym___inline__] = ACTIONS(3066), - [anon_sym___forceinline] = ACTIONS(3066), - [anon_sym_thread_local] = ACTIONS(3066), - [anon_sym___thread] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_constexpr] = ACTIONS(3066), - [anon_sym_volatile] = ACTIONS(3066), - [anon_sym_restrict] = ACTIONS(3066), - [anon_sym___restrict__] = ACTIONS(3066), - [anon_sym__Atomic] = ACTIONS(3066), - [anon_sym__Noreturn] = ACTIONS(3066), - [anon_sym_noreturn] = ACTIONS(3066), - [anon_sym_mutable] = ACTIONS(3066), - [anon_sym_constinit] = ACTIONS(3066), - [anon_sym_consteval] = ACTIONS(3066), - [sym_primitive_type] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_union] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_goto] = ACTIONS(3066), - [anon_sym___try] = ACTIONS(3066), - [anon_sym___leave] = ACTIONS(3066), - [anon_sym_not] = ACTIONS(3066), - [anon_sym_compl] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_sizeof] = ACTIONS(3066), - [anon_sym___alignof__] = ACTIONS(3066), - [anon_sym___alignof] = ACTIONS(3066), - [anon_sym__alignof] = ACTIONS(3066), - [anon_sym_alignof] = ACTIONS(3066), - [anon_sym__Alignof] = ACTIONS(3066), - [anon_sym_offsetof] = ACTIONS(3066), - [anon_sym__Generic] = ACTIONS(3066), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3068), - [anon_sym_u_SQUOTE] = ACTIONS(3068), - [anon_sym_U_SQUOTE] = ACTIONS(3068), - [anon_sym_u8_SQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_L_DQUOTE] = ACTIONS(3068), - [anon_sym_u_DQUOTE] = ACTIONS(3068), - [anon_sym_U_DQUOTE] = ACTIONS(3068), - [anon_sym_u8_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [anon_sym_NULL] = ACTIONS(3066), - [anon_sym_nullptr] = ACTIONS(3066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3066), - [anon_sym_decltype] = ACTIONS(3066), - [anon_sym_virtual] = ACTIONS(3066), - [anon_sym_alignas] = ACTIONS(3066), - [anon_sym_explicit] = ACTIONS(3066), - [anon_sym_typename] = ACTIONS(3066), - [anon_sym_template] = ACTIONS(3066), - [anon_sym_operator] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_static_assert] = ACTIONS(3066), - [anon_sym_concept] = ACTIONS(3066), - [anon_sym_co_return] = ACTIONS(3066), - [anon_sym_co_yield] = 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(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_requires] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), + [847] = { + [sym_identifier] = ACTIONS(3195), + [aux_sym_preproc_include_token1] = ACTIONS(3195), + [aux_sym_preproc_def_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), + [sym_preproc_directive] = ACTIONS(3195), + [anon_sym_LPAREN2] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym___extension__] = ACTIONS(3195), + [anon_sym_typedef] = ACTIONS(3195), + [anon_sym_extern] = ACTIONS(3195), + [anon_sym___attribute__] = ACTIONS(3195), + [anon_sym_COLON_COLON] = ACTIONS(3197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), + [anon_sym___declspec] = ACTIONS(3195), + [anon_sym___based] = ACTIONS(3195), + [anon_sym___cdecl] = ACTIONS(3195), + [anon_sym___clrcall] = ACTIONS(3195), + [anon_sym___stdcall] = ACTIONS(3195), + [anon_sym___fastcall] = ACTIONS(3195), + [anon_sym___thiscall] = ACTIONS(3195), + [anon_sym___vectorcall] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_RBRACE] = ACTIONS(3197), + [anon_sym_signed] = ACTIONS(3195), + [anon_sym_unsigned] = ACTIONS(3195), + [anon_sym_long] = ACTIONS(3195), + [anon_sym_short] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_register] = ACTIONS(3195), + [anon_sym_inline] = ACTIONS(3195), + [anon_sym___inline] = ACTIONS(3195), + [anon_sym___inline__] = ACTIONS(3195), + [anon_sym___forceinline] = ACTIONS(3195), + [anon_sym_thread_local] = ACTIONS(3195), + [anon_sym___thread] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_constexpr] = ACTIONS(3195), + [anon_sym_volatile] = ACTIONS(3195), + [anon_sym_restrict] = ACTIONS(3195), + [anon_sym___restrict__] = ACTIONS(3195), + [anon_sym__Atomic] = ACTIONS(3195), + [anon_sym__Noreturn] = ACTIONS(3195), + [anon_sym_noreturn] = ACTIONS(3195), + [anon_sym_mutable] = ACTIONS(3195), + [anon_sym_constinit] = ACTIONS(3195), + [anon_sym_consteval] = ACTIONS(3195), + [sym_primitive_type] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_case] = ACTIONS(3195), + [anon_sym_default] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_goto] = ACTIONS(3195), + [anon_sym___try] = ACTIONS(3195), + [anon_sym___leave] = ACTIONS(3195), + [anon_sym_not] = ACTIONS(3195), + [anon_sym_compl] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_sizeof] = ACTIONS(3195), + [anon_sym___alignof__] = ACTIONS(3195), + [anon_sym___alignof] = ACTIONS(3195), + [anon_sym__alignof] = ACTIONS(3195), + [anon_sym_alignof] = ACTIONS(3195), + [anon_sym__Alignof] = ACTIONS(3195), + [anon_sym_offsetof] = ACTIONS(3195), + [anon_sym__Generic] = ACTIONS(3195), + [anon_sym_asm] = ACTIONS(3195), + [anon_sym___asm__] = ACTIONS(3195), + [sym_number_literal] = ACTIONS(3197), + [anon_sym_L_SQUOTE] = ACTIONS(3197), + [anon_sym_u_SQUOTE] = ACTIONS(3197), + [anon_sym_U_SQUOTE] = ACTIONS(3197), + [anon_sym_u8_SQUOTE] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3197), + [anon_sym_L_DQUOTE] = ACTIONS(3197), + [anon_sym_u_DQUOTE] = ACTIONS(3197), + [anon_sym_U_DQUOTE] = ACTIONS(3197), + [anon_sym_u8_DQUOTE] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(3197), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [anon_sym_NULL] = ACTIONS(3195), + [anon_sym_nullptr] = ACTIONS(3195), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3195), + [anon_sym_decltype] = ACTIONS(3195), + [anon_sym_virtual] = ACTIONS(3195), + [anon_sym_alignas] = ACTIONS(3195), + [anon_sym_explicit] = ACTIONS(3195), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(3195), + [anon_sym_operator] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_static_assert] = ACTIONS(3195), + [anon_sym_concept] = ACTIONS(3195), + [anon_sym_co_return] = ACTIONS(3195), + [anon_sym_co_yield] = ACTIONS(3195), + [anon_sym_R_DQUOTE] = ACTIONS(3197), + [anon_sym_LR_DQUOTE] = ACTIONS(3197), + [anon_sym_uR_DQUOTE] = ACTIONS(3197), + [anon_sym_UR_DQUOTE] = ACTIONS(3197), + [anon_sym_u8R_DQUOTE] = ACTIONS(3197), + [anon_sym_co_await] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_requires] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), }, - [891] = { - [sym_identifier] = ACTIONS(3172), - [aux_sym_preproc_include_token1] = ACTIONS(3172), - [aux_sym_preproc_def_token1] = ACTIONS(3172), - [aux_sym_preproc_if_token1] = ACTIONS(3172), - [aux_sym_preproc_if_token2] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), - [sym_preproc_directive] = ACTIONS(3172), - [anon_sym_LPAREN2] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_STAR] = ACTIONS(3174), - [anon_sym_AMP_AMP] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym___extension__] = ACTIONS(3172), - [anon_sym_typedef] = ACTIONS(3172), - [anon_sym_extern] = ACTIONS(3172), - [anon_sym___attribute__] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), - [anon_sym___declspec] = ACTIONS(3172), - [anon_sym___based] = ACTIONS(3172), - [anon_sym___cdecl] = ACTIONS(3172), - [anon_sym___clrcall] = ACTIONS(3172), - [anon_sym___stdcall] = ACTIONS(3172), - [anon_sym___fastcall] = ACTIONS(3172), - [anon_sym___thiscall] = ACTIONS(3172), - [anon_sym___vectorcall] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_signed] = ACTIONS(3172), - [anon_sym_unsigned] = ACTIONS(3172), - [anon_sym_long] = ACTIONS(3172), - [anon_sym_short] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_register] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym___inline] = ACTIONS(3172), - [anon_sym___inline__] = ACTIONS(3172), - [anon_sym___forceinline] = ACTIONS(3172), - [anon_sym_thread_local] = ACTIONS(3172), - [anon_sym___thread] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_constexpr] = ACTIONS(3172), - [anon_sym_volatile] = ACTIONS(3172), - [anon_sym_restrict] = ACTIONS(3172), - [anon_sym___restrict__] = ACTIONS(3172), - [anon_sym__Atomic] = ACTIONS(3172), - [anon_sym__Noreturn] = ACTIONS(3172), - [anon_sym_noreturn] = ACTIONS(3172), - [anon_sym_mutable] = ACTIONS(3172), - [anon_sym_constinit] = ACTIONS(3172), - [anon_sym_consteval] = ACTIONS(3172), - [sym_primitive_type] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_struct] = ACTIONS(3172), - [anon_sym_union] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_case] = ACTIONS(3172), - [anon_sym_default] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_goto] = ACTIONS(3172), - [anon_sym___try] = ACTIONS(3172), - [anon_sym___leave] = ACTIONS(3172), - [anon_sym_not] = ACTIONS(3172), - [anon_sym_compl] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_sizeof] = ACTIONS(3172), - [anon_sym___alignof__] = ACTIONS(3172), - [anon_sym___alignof] = ACTIONS(3172), - [anon_sym__alignof] = ACTIONS(3172), - [anon_sym_alignof] = ACTIONS(3172), - [anon_sym__Alignof] = ACTIONS(3172), - [anon_sym_offsetof] = ACTIONS(3172), - [anon_sym__Generic] = ACTIONS(3172), - [anon_sym_asm] = ACTIONS(3172), - [anon_sym___asm__] = ACTIONS(3172), - [sym_number_literal] = ACTIONS(3174), - [anon_sym_L_SQUOTE] = ACTIONS(3174), - [anon_sym_u_SQUOTE] = ACTIONS(3174), - [anon_sym_U_SQUOTE] = ACTIONS(3174), - [anon_sym_u8_SQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_L_DQUOTE] = ACTIONS(3174), - [anon_sym_u_DQUOTE] = ACTIONS(3174), - [anon_sym_U_DQUOTE] = ACTIONS(3174), - [anon_sym_u8_DQUOTE] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [anon_sym_NULL] = ACTIONS(3172), - [anon_sym_nullptr] = ACTIONS(3172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3172), - [anon_sym_decltype] = ACTIONS(3172), - [anon_sym_virtual] = ACTIONS(3172), - [anon_sym_alignas] = ACTIONS(3172), - [anon_sym_explicit] = ACTIONS(3172), - [anon_sym_typename] = ACTIONS(3172), - [anon_sym_template] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_static_assert] = ACTIONS(3172), - [anon_sym_concept] = ACTIONS(3172), - [anon_sym_co_return] = ACTIONS(3172), - [anon_sym_co_yield] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_requires] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), + [848] = { + [sym_identifier] = ACTIONS(3147), + [aux_sym_preproc_include_token1] = ACTIONS(3147), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token2] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), + [sym_preproc_directive] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_AMP_AMP] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym___extension__] = ACTIONS(3147), + [anon_sym_typedef] = ACTIONS(3147), + [anon_sym_extern] = ACTIONS(3147), + [anon_sym___attribute__] = ACTIONS(3147), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), + [anon_sym___declspec] = ACTIONS(3147), + [anon_sym___based] = ACTIONS(3147), + [anon_sym___cdecl] = ACTIONS(3147), + [anon_sym___clrcall] = ACTIONS(3147), + [anon_sym___stdcall] = ACTIONS(3147), + [anon_sym___fastcall] = ACTIONS(3147), + [anon_sym___thiscall] = ACTIONS(3147), + [anon_sym___vectorcall] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_signed] = ACTIONS(3147), + [anon_sym_unsigned] = ACTIONS(3147), + [anon_sym_long] = ACTIONS(3147), + [anon_sym_short] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_register] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym___inline] = ACTIONS(3147), + [anon_sym___inline__] = ACTIONS(3147), + [anon_sym___forceinline] = ACTIONS(3147), + [anon_sym_thread_local] = ACTIONS(3147), + [anon_sym___thread] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_constexpr] = ACTIONS(3147), + [anon_sym_volatile] = ACTIONS(3147), + [anon_sym_restrict] = ACTIONS(3147), + [anon_sym___restrict__] = ACTIONS(3147), + [anon_sym__Atomic] = ACTIONS(3147), + [anon_sym__Noreturn] = ACTIONS(3147), + [anon_sym_noreturn] = ACTIONS(3147), + [anon_sym_mutable] = ACTIONS(3147), + [anon_sym_constinit] = ACTIONS(3147), + [anon_sym_consteval] = ACTIONS(3147), + [sym_primitive_type] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3147), + [anon_sym_case] = ACTIONS(3147), + [anon_sym_default] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_goto] = ACTIONS(3147), + [anon_sym___try] = ACTIONS(3147), + [anon_sym___leave] = ACTIONS(3147), + [anon_sym_not] = ACTIONS(3147), + [anon_sym_compl] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3147), + [anon_sym___alignof__] = ACTIONS(3147), + [anon_sym___alignof] = ACTIONS(3147), + [anon_sym__alignof] = ACTIONS(3147), + [anon_sym_alignof] = ACTIONS(3147), + [anon_sym__Alignof] = ACTIONS(3147), + [anon_sym_offsetof] = ACTIONS(3147), + [anon_sym__Generic] = ACTIONS(3147), + [anon_sym_asm] = ACTIONS(3147), + [anon_sym___asm__] = ACTIONS(3147), + [sym_number_literal] = ACTIONS(3149), + [anon_sym_L_SQUOTE] = ACTIONS(3149), + [anon_sym_u_SQUOTE] = ACTIONS(3149), + [anon_sym_U_SQUOTE] = ACTIONS(3149), + [anon_sym_u8_SQUOTE] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_L_DQUOTE] = ACTIONS(3149), + [anon_sym_u_DQUOTE] = ACTIONS(3149), + [anon_sym_U_DQUOTE] = ACTIONS(3149), + [anon_sym_u8_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(3149), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [anon_sym_NULL] = ACTIONS(3147), + [anon_sym_nullptr] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3147), + [anon_sym_decltype] = ACTIONS(3147), + [anon_sym_virtual] = ACTIONS(3147), + [anon_sym_alignas] = ACTIONS(3147), + [anon_sym_explicit] = ACTIONS(3147), + [anon_sym_typename] = ACTIONS(3147), + [anon_sym_template] = ACTIONS(3147), + [anon_sym_operator] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(3147), + [anon_sym_throw] = ACTIONS(3147), + [anon_sym_namespace] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_static_assert] = ACTIONS(3147), + [anon_sym_concept] = ACTIONS(3147), + [anon_sym_co_return] = ACTIONS(3147), + [anon_sym_co_yield] = ACTIONS(3147), + [anon_sym_R_DQUOTE] = ACTIONS(3149), + [anon_sym_LR_DQUOTE] = ACTIONS(3149), + [anon_sym_uR_DQUOTE] = ACTIONS(3149), + [anon_sym_UR_DQUOTE] = ACTIONS(3149), + [anon_sym_u8R_DQUOTE] = ACTIONS(3149), + [anon_sym_co_await] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_requires] = ACTIONS(3147), + [sym_this] = ACTIONS(3147), }, - [892] = { - [sym_catch_clause] = STATE(348), - [aux_sym_constructor_try_statement_repeat1] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2836), - [aux_sym_preproc_include_token1] = ACTIONS(2836), - [aux_sym_preproc_def_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token1] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), - [sym_preproc_directive] = ACTIONS(2836), - [anon_sym_LPAREN2] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym___extension__] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym___attribute__] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2838), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), - [anon_sym___declspec] = ACTIONS(2836), - [anon_sym___based] = ACTIONS(2836), - [anon_sym___cdecl] = ACTIONS(2836), - [anon_sym___clrcall] = ACTIONS(2836), - [anon_sym___stdcall] = ACTIONS(2836), - [anon_sym___fastcall] = ACTIONS(2836), - [anon_sym___thiscall] = ACTIONS(2836), - [anon_sym___vectorcall] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_signed] = ACTIONS(2836), - [anon_sym_unsigned] = ACTIONS(2836), - [anon_sym_long] = ACTIONS(2836), - [anon_sym_short] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_register] = ACTIONS(2836), - [anon_sym_inline] = ACTIONS(2836), - [anon_sym___inline] = ACTIONS(2836), - [anon_sym___inline__] = ACTIONS(2836), - [anon_sym___forceinline] = ACTIONS(2836), - [anon_sym_thread_local] = ACTIONS(2836), - [anon_sym___thread] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_constexpr] = ACTIONS(2836), - [anon_sym_volatile] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(2836), - [anon_sym___restrict__] = ACTIONS(2836), - [anon_sym__Atomic] = ACTIONS(2836), - [anon_sym__Noreturn] = ACTIONS(2836), - [anon_sym_noreturn] = ACTIONS(2836), - [anon_sym_mutable] = ACTIONS(2836), - [anon_sym_constinit] = ACTIONS(2836), - [anon_sym_consteval] = ACTIONS(2836), - [sym_primitive_type] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_switch] = ACTIONS(2836), - [anon_sym_case] = ACTIONS(2836), - [anon_sym_default] = ACTIONS(2836), - [anon_sym_while] = ACTIONS(2836), - [anon_sym_do] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_goto] = ACTIONS(2836), - [anon_sym_not] = ACTIONS(2836), - [anon_sym_compl] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_sizeof] = ACTIONS(2836), - [anon_sym___alignof__] = ACTIONS(2836), - [anon_sym___alignof] = ACTIONS(2836), - [anon_sym__alignof] = ACTIONS(2836), - [anon_sym_alignof] = ACTIONS(2836), - [anon_sym__Alignof] = ACTIONS(2836), - [anon_sym_offsetof] = ACTIONS(2836), - [anon_sym__Generic] = ACTIONS(2836), - [anon_sym_asm] = ACTIONS(2836), - [anon_sym___asm__] = ACTIONS(2836), - [sym_number_literal] = ACTIONS(2838), - [anon_sym_L_SQUOTE] = ACTIONS(2838), - [anon_sym_u_SQUOTE] = ACTIONS(2838), - [anon_sym_U_SQUOTE] = ACTIONS(2838), - [anon_sym_u8_SQUOTE] = ACTIONS(2838), - [anon_sym_SQUOTE] = ACTIONS(2838), - [anon_sym_L_DQUOTE] = ACTIONS(2838), - [anon_sym_u_DQUOTE] = ACTIONS(2838), - [anon_sym_U_DQUOTE] = ACTIONS(2838), - [anon_sym_u8_DQUOTE] = ACTIONS(2838), - [anon_sym_DQUOTE] = ACTIONS(2838), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [anon_sym_NULL] = ACTIONS(2836), - [anon_sym_nullptr] = ACTIONS(2836), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2836), - [anon_sym_decltype] = ACTIONS(2836), - [anon_sym_virtual] = ACTIONS(2836), - [anon_sym_alignas] = ACTIONS(2836), - [anon_sym_explicit] = ACTIONS(2836), - [anon_sym_typename] = ACTIONS(2836), - [anon_sym_template] = ACTIONS(2836), - [anon_sym_operator] = ACTIONS(2836), - [anon_sym_try] = ACTIONS(2836), - [anon_sym_delete] = ACTIONS(2836), - [anon_sym_throw] = ACTIONS(2836), - [anon_sym_namespace] = ACTIONS(2836), - [anon_sym_using] = ACTIONS(2836), - [anon_sym_static_assert] = ACTIONS(2836), - [anon_sym_concept] = ACTIONS(2836), - [anon_sym_co_return] = ACTIONS(2836), - [anon_sym_co_yield] = ACTIONS(2836), - [anon_sym_catch] = ACTIONS(3062), - [anon_sym_R_DQUOTE] = ACTIONS(2838), - [anon_sym_LR_DQUOTE] = ACTIONS(2838), - [anon_sym_uR_DQUOTE] = ACTIONS(2838), - [anon_sym_UR_DQUOTE] = ACTIONS(2838), - [anon_sym_u8R_DQUOTE] = ACTIONS(2838), - [anon_sym_co_await] = ACTIONS(2836), - [anon_sym_new] = ACTIONS(2836), - [anon_sym_requires] = ACTIONS(2836), - [sym_this] = ACTIONS(2836), + [849] = { + [sym_identifier] = ACTIONS(3151), + [aux_sym_preproc_include_token1] = ACTIONS(3151), + [aux_sym_preproc_def_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token2] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3151), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_extern] = ACTIONS(3151), + [anon_sym___attribute__] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(3151), + [anon_sym___cdecl] = ACTIONS(3151), + [anon_sym___clrcall] = ACTIONS(3151), + [anon_sym___stdcall] = ACTIONS(3151), + [anon_sym___fastcall] = ACTIONS(3151), + [anon_sym___thiscall] = ACTIONS(3151), + [anon_sym___vectorcall] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3151), + [anon_sym_unsigned] = ACTIONS(3151), + [anon_sym_long] = ACTIONS(3151), + [anon_sym_short] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_register] = ACTIONS(3151), + [anon_sym_inline] = ACTIONS(3151), + [anon_sym___inline] = ACTIONS(3151), + [anon_sym___inline__] = ACTIONS(3151), + [anon_sym___forceinline] = ACTIONS(3151), + [anon_sym_thread_local] = ACTIONS(3151), + [anon_sym___thread] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_constexpr] = ACTIONS(3151), + [anon_sym_volatile] = ACTIONS(3151), + [anon_sym_restrict] = ACTIONS(3151), + [anon_sym___restrict__] = ACTIONS(3151), + [anon_sym__Atomic] = ACTIONS(3151), + [anon_sym__Noreturn] = ACTIONS(3151), + [anon_sym_noreturn] = ACTIONS(3151), + [anon_sym_mutable] = ACTIONS(3151), + [anon_sym_constinit] = ACTIONS(3151), + [anon_sym_consteval] = ACTIONS(3151), + [sym_primitive_type] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_case] = ACTIONS(3151), + [anon_sym_default] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_goto] = ACTIONS(3151), + [anon_sym___try] = ACTIONS(3151), + [anon_sym___leave] = ACTIONS(3151), + [anon_sym_not] = ACTIONS(3151), + [anon_sym_compl] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3151), + [anon_sym___alignof__] = ACTIONS(3151), + [anon_sym___alignof] = ACTIONS(3151), + [anon_sym__alignof] = ACTIONS(3151), + [anon_sym_alignof] = ACTIONS(3151), + [anon_sym__Alignof] = ACTIONS(3151), + [anon_sym_offsetof] = ACTIONS(3151), + [anon_sym__Generic] = ACTIONS(3151), + [anon_sym_asm] = ACTIONS(3151), + [anon_sym___asm__] = ACTIONS(3151), + [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(3151), + [sym_false] = ACTIONS(3151), + [anon_sym_NULL] = ACTIONS(3151), + [anon_sym_nullptr] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3151), + [anon_sym_decltype] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3151), + [anon_sym_alignas] = ACTIONS(3151), + [anon_sym_explicit] = ACTIONS(3151), + [anon_sym_typename] = ACTIONS(3151), + [anon_sym_template] = ACTIONS(3151), + [anon_sym_operator] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_static_assert] = ACTIONS(3151), + [anon_sym_concept] = ACTIONS(3151), + [anon_sym_co_return] = ACTIONS(3151), + [anon_sym_co_yield] = ACTIONS(3151), + [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(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_requires] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), }, - [893] = { - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_include_token1] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym___cdecl] = ACTIONS(3160), - [anon_sym___clrcall] = ACTIONS(3160), - [anon_sym___stdcall] = ACTIONS(3160), - [anon_sym___fastcall] = ACTIONS(3160), - [anon_sym___thiscall] = ACTIONS(3160), - [anon_sym___vectorcall] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_goto] = ACTIONS(3160), - [anon_sym___try] = ACTIONS(3160), - [anon_sym___leave] = ACTIONS(3160), - [anon_sym_not] = ACTIONS(3160), - [anon_sym_compl] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_sizeof] = ACTIONS(3160), - [anon_sym___alignof__] = ACTIONS(3160), - [anon_sym___alignof] = ACTIONS(3160), - [anon_sym__alignof] = ACTIONS(3160), - [anon_sym_alignof] = ACTIONS(3160), - [anon_sym__Alignof] = ACTIONS(3160), - [anon_sym_offsetof] = ACTIONS(3160), - [anon_sym__Generic] = ACTIONS(3160), - [anon_sym_asm] = ACTIONS(3160), - [anon_sym___asm__] = ACTIONS(3160), - [sym_number_literal] = ACTIONS(3162), - [anon_sym_L_SQUOTE] = ACTIONS(3162), - [anon_sym_u_SQUOTE] = ACTIONS(3162), - [anon_sym_U_SQUOTE] = ACTIONS(3162), - [anon_sym_u8_SQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_L_DQUOTE] = ACTIONS(3162), - [anon_sym_u_DQUOTE] = ACTIONS(3162), - [anon_sym_U_DQUOTE] = ACTIONS(3162), - [anon_sym_u8_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3160), - [anon_sym_nullptr] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), - [anon_sym_concept] = ACTIONS(3160), - [anon_sym_co_return] = ACTIONS(3160), - [anon_sym_co_yield] = ACTIONS(3160), - [anon_sym_R_DQUOTE] = ACTIONS(3162), - [anon_sym_LR_DQUOTE] = ACTIONS(3162), - [anon_sym_uR_DQUOTE] = ACTIONS(3162), - [anon_sym_UR_DQUOTE] = ACTIONS(3162), - [anon_sym_u8R_DQUOTE] = ACTIONS(3162), - [anon_sym_co_await] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_requires] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), + [850] = { + [sym_identifier] = ACTIONS(3114), + [aux_sym_preproc_include_token1] = ACTIONS(3114), + [aux_sym_preproc_def_token1] = ACTIONS(3114), + [aux_sym_preproc_if_token1] = ACTIONS(3114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3114), + [sym_preproc_directive] = ACTIONS(3114), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3114), + [anon_sym_PLUS] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym___extension__] = ACTIONS(3114), + [anon_sym_typedef] = ACTIONS(3114), + [anon_sym_extern] = ACTIONS(3114), + [anon_sym___attribute__] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3114), + [anon_sym___based] = ACTIONS(3114), + [anon_sym___cdecl] = ACTIONS(3114), + [anon_sym___clrcall] = ACTIONS(3114), + [anon_sym___stdcall] = ACTIONS(3114), + [anon_sym___fastcall] = ACTIONS(3114), + [anon_sym___thiscall] = ACTIONS(3114), + [anon_sym___vectorcall] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3114), + [anon_sym_unsigned] = ACTIONS(3114), + [anon_sym_long] = ACTIONS(3114), + [anon_sym_short] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_static] = ACTIONS(3114), + [anon_sym_register] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym___inline] = ACTIONS(3114), + [anon_sym___inline__] = ACTIONS(3114), + [anon_sym___forceinline] = ACTIONS(3114), + [anon_sym_thread_local] = ACTIONS(3114), + [anon_sym___thread] = ACTIONS(3114), + [anon_sym_const] = ACTIONS(3114), + [anon_sym_constexpr] = ACTIONS(3114), + [anon_sym_volatile] = ACTIONS(3114), + [anon_sym_restrict] = ACTIONS(3114), + [anon_sym___restrict__] = ACTIONS(3114), + [anon_sym__Atomic] = ACTIONS(3114), + [anon_sym__Noreturn] = ACTIONS(3114), + [anon_sym_noreturn] = ACTIONS(3114), + [anon_sym_mutable] = ACTIONS(3114), + [anon_sym_constinit] = ACTIONS(3114), + [anon_sym_consteval] = ACTIONS(3114), + [sym_primitive_type] = ACTIONS(3114), + [anon_sym_enum] = ACTIONS(3114), + [anon_sym_class] = ACTIONS(3114), + [anon_sym_struct] = ACTIONS(3114), + [anon_sym_union] = ACTIONS(3114), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_switch] = ACTIONS(3114), + [anon_sym_case] = ACTIONS(3114), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_do] = ACTIONS(3114), + [anon_sym_for] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_goto] = ACTIONS(3114), + [anon_sym___try] = ACTIONS(3114), + [anon_sym___leave] = ACTIONS(3114), + [anon_sym_not] = ACTIONS(3114), + [anon_sym_compl] = ACTIONS(3114), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_sizeof] = ACTIONS(3114), + [anon_sym___alignof__] = ACTIONS(3114), + [anon_sym___alignof] = ACTIONS(3114), + [anon_sym__alignof] = ACTIONS(3114), + [anon_sym_alignof] = ACTIONS(3114), + [anon_sym__Alignof] = ACTIONS(3114), + [anon_sym_offsetof] = ACTIONS(3114), + [anon_sym__Generic] = ACTIONS(3114), + [anon_sym_asm] = ACTIONS(3114), + [anon_sym___asm__] = ACTIONS(3114), + [sym_number_literal] = ACTIONS(3116), + [anon_sym_L_SQUOTE] = ACTIONS(3116), + [anon_sym_u_SQUOTE] = ACTIONS(3116), + [anon_sym_U_SQUOTE] = ACTIONS(3116), + [anon_sym_u8_SQUOTE] = ACTIONS(3116), + [anon_sym_SQUOTE] = ACTIONS(3116), + [anon_sym_L_DQUOTE] = ACTIONS(3116), + [anon_sym_u_DQUOTE] = ACTIONS(3116), + [anon_sym_U_DQUOTE] = ACTIONS(3116), + [anon_sym_u8_DQUOTE] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3116), + [sym_true] = ACTIONS(3114), + [sym_false] = ACTIONS(3114), + [anon_sym_NULL] = ACTIONS(3114), + [anon_sym_nullptr] = ACTIONS(3114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3114), + [anon_sym_decltype] = ACTIONS(3114), + [anon_sym_virtual] = ACTIONS(3114), + [anon_sym_alignas] = ACTIONS(3114), + [anon_sym_explicit] = ACTIONS(3114), + [anon_sym_typename] = ACTIONS(3114), + [anon_sym_template] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_delete] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_namespace] = ACTIONS(3114), + [anon_sym_using] = ACTIONS(3114), + [anon_sym_static_assert] = ACTIONS(3114), + [anon_sym_concept] = ACTIONS(3114), + [anon_sym_co_return] = ACTIONS(3114), + [anon_sym_co_yield] = ACTIONS(3114), + [anon_sym_R_DQUOTE] = ACTIONS(3116), + [anon_sym_LR_DQUOTE] = ACTIONS(3116), + [anon_sym_uR_DQUOTE] = ACTIONS(3116), + [anon_sym_UR_DQUOTE] = ACTIONS(3116), + [anon_sym_u8R_DQUOTE] = ACTIONS(3116), + [anon_sym_co_await] = ACTIONS(3114), + [anon_sym_new] = ACTIONS(3114), + [anon_sym_requires] = ACTIONS(3114), + [sym_this] = ACTIONS(3114), }, - [894] = { - [sym_identifier] = ACTIONS(3194), - [aux_sym_preproc_include_token1] = ACTIONS(3194), - [aux_sym_preproc_def_token1] = ACTIONS(3194), - [aux_sym_preproc_if_token1] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3194), - [sym_preproc_directive] = ACTIONS(3194), - [anon_sym_LPAREN2] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_AMP_AMP] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym___extension__] = ACTIONS(3194), - [anon_sym_typedef] = ACTIONS(3194), - [anon_sym_extern] = ACTIONS(3194), - [anon_sym___attribute__] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3196), - [anon_sym___declspec] = ACTIONS(3194), - [anon_sym___based] = ACTIONS(3194), - [anon_sym___cdecl] = ACTIONS(3194), - [anon_sym___clrcall] = ACTIONS(3194), - [anon_sym___stdcall] = ACTIONS(3194), - [anon_sym___fastcall] = ACTIONS(3194), - [anon_sym___thiscall] = ACTIONS(3194), - [anon_sym___vectorcall] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_signed] = ACTIONS(3194), - [anon_sym_unsigned] = ACTIONS(3194), - [anon_sym_long] = ACTIONS(3194), - [anon_sym_short] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_register] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym___inline] = ACTIONS(3194), - [anon_sym___inline__] = ACTIONS(3194), - [anon_sym___forceinline] = ACTIONS(3194), - [anon_sym_thread_local] = ACTIONS(3194), - [anon_sym___thread] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_constexpr] = ACTIONS(3194), - [anon_sym_volatile] = ACTIONS(3194), - [anon_sym_restrict] = ACTIONS(3194), - [anon_sym___restrict__] = ACTIONS(3194), - [anon_sym__Atomic] = ACTIONS(3194), - [anon_sym__Noreturn] = ACTIONS(3194), - [anon_sym_noreturn] = ACTIONS(3194), - [anon_sym_mutable] = ACTIONS(3194), - [anon_sym_constinit] = ACTIONS(3194), - [anon_sym_consteval] = ACTIONS(3194), - [sym_primitive_type] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_struct] = ACTIONS(3194), - [anon_sym_union] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_goto] = ACTIONS(3194), - [anon_sym___try] = ACTIONS(3194), - [anon_sym___leave] = ACTIONS(3194), - [anon_sym_not] = ACTIONS(3194), - [anon_sym_compl] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_sizeof] = ACTIONS(3194), - [anon_sym___alignof__] = ACTIONS(3194), - [anon_sym___alignof] = ACTIONS(3194), - [anon_sym__alignof] = ACTIONS(3194), - [anon_sym_alignof] = ACTIONS(3194), - [anon_sym__Alignof] = ACTIONS(3194), - [anon_sym_offsetof] = ACTIONS(3194), - [anon_sym__Generic] = ACTIONS(3194), - [anon_sym_asm] = ACTIONS(3194), - [anon_sym___asm__] = ACTIONS(3194), - [sym_number_literal] = ACTIONS(3196), - [anon_sym_L_SQUOTE] = ACTIONS(3196), - [anon_sym_u_SQUOTE] = ACTIONS(3196), - [anon_sym_U_SQUOTE] = ACTIONS(3196), - [anon_sym_u8_SQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_L_DQUOTE] = ACTIONS(3196), - [anon_sym_u_DQUOTE] = ACTIONS(3196), - [anon_sym_U_DQUOTE] = ACTIONS(3196), - [anon_sym_u8_DQUOTE] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [anon_sym_NULL] = ACTIONS(3194), - [anon_sym_nullptr] = ACTIONS(3194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3194), - [anon_sym_decltype] = ACTIONS(3194), - [anon_sym_virtual] = ACTIONS(3194), - [anon_sym_alignas] = ACTIONS(3194), - [anon_sym_explicit] = ACTIONS(3194), - [anon_sym_typename] = ACTIONS(3194), - [anon_sym_template] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_static_assert] = ACTIONS(3194), - [anon_sym_concept] = ACTIONS(3194), - [anon_sym_co_return] = ACTIONS(3194), - [anon_sym_co_yield] = ACTIONS(3194), - [anon_sym_R_DQUOTE] = ACTIONS(3196), - [anon_sym_LR_DQUOTE] = ACTIONS(3196), - [anon_sym_uR_DQUOTE] = ACTIONS(3196), - [anon_sym_UR_DQUOTE] = ACTIONS(3196), - [anon_sym_u8R_DQUOTE] = ACTIONS(3196), - [anon_sym_co_await] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_requires] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), + [851] = { + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_include_token1] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token2] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym___cdecl] = ACTIONS(3159), + [anon_sym___clrcall] = ACTIONS(3159), + [anon_sym___stdcall] = ACTIONS(3159), + [anon_sym___fastcall] = ACTIONS(3159), + [anon_sym___thiscall] = ACTIONS(3159), + [anon_sym___vectorcall] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_concept] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), }, - [895] = { - [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_extern] = ACTIONS(3180), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3180), - [anon_sym_constinit] = ACTIONS(3180), - [anon_sym_consteval] = 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_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_virtual] = ACTIONS(3180), - [anon_sym_alignas] = ACTIONS(3180), - [anon_sym_explicit] = ACTIONS(3180), - [anon_sym_typename] = 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_using] = 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_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), - [sym_this] = ACTIONS(3180), + [852] = { + [sym_identifier] = ACTIONS(3199), + [aux_sym_preproc_include_token1] = ACTIONS(3199), + [aux_sym_preproc_def_token1] = ACTIONS(3199), + [aux_sym_preproc_if_token1] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3199), + [sym_preproc_directive] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym___extension__] = ACTIONS(3199), + [anon_sym_typedef] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym___attribute__] = ACTIONS(3199), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3199), + [anon_sym___based] = ACTIONS(3199), + [anon_sym___cdecl] = ACTIONS(3199), + [anon_sym___clrcall] = ACTIONS(3199), + [anon_sym___stdcall] = ACTIONS(3199), + [anon_sym___fastcall] = ACTIONS(3199), + [anon_sym___thiscall] = ACTIONS(3199), + [anon_sym___vectorcall] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_RBRACE] = ACTIONS(3201), + [anon_sym_signed] = ACTIONS(3199), + [anon_sym_unsigned] = ACTIONS(3199), + [anon_sym_long] = ACTIONS(3199), + [anon_sym_short] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_register] = ACTIONS(3199), + [anon_sym_inline] = ACTIONS(3199), + [anon_sym___inline] = ACTIONS(3199), + [anon_sym___inline__] = ACTIONS(3199), + [anon_sym___forceinline] = ACTIONS(3199), + [anon_sym_thread_local] = ACTIONS(3199), + [anon_sym___thread] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_constexpr] = ACTIONS(3199), + [anon_sym_volatile] = ACTIONS(3199), + [anon_sym_restrict] = ACTIONS(3199), + [anon_sym___restrict__] = ACTIONS(3199), + [anon_sym__Atomic] = ACTIONS(3199), + [anon_sym__Noreturn] = ACTIONS(3199), + [anon_sym_noreturn] = ACTIONS(3199), + [anon_sym_mutable] = ACTIONS(3199), + [anon_sym_constinit] = ACTIONS(3199), + [anon_sym_consteval] = ACTIONS(3199), + [sym_primitive_type] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_switch] = ACTIONS(3199), + [anon_sym_case] = ACTIONS(3199), + [anon_sym_default] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_do] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_goto] = ACTIONS(3199), + [anon_sym___try] = ACTIONS(3199), + [anon_sym___leave] = ACTIONS(3199), + [anon_sym_not] = ACTIONS(3199), + [anon_sym_compl] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3199), + [anon_sym___alignof__] = ACTIONS(3199), + [anon_sym___alignof] = ACTIONS(3199), + [anon_sym__alignof] = ACTIONS(3199), + [anon_sym_alignof] = ACTIONS(3199), + [anon_sym__Alignof] = ACTIONS(3199), + [anon_sym_offsetof] = ACTIONS(3199), + [anon_sym__Generic] = ACTIONS(3199), + [anon_sym_asm] = ACTIONS(3199), + [anon_sym___asm__] = ACTIONS(3199), + [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(3199), + [sym_false] = ACTIONS(3199), + [anon_sym_NULL] = ACTIONS(3199), + [anon_sym_nullptr] = ACTIONS(3199), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3199), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3199), + [anon_sym_alignas] = ACTIONS(3199), + [anon_sym_explicit] = ACTIONS(3199), + [anon_sym_typename] = ACTIONS(3199), + [anon_sym_template] = ACTIONS(3199), + [anon_sym_operator] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_throw] = ACTIONS(3199), + [anon_sym_namespace] = ACTIONS(3199), + [anon_sym_using] = ACTIONS(3199), + [anon_sym_static_assert] = ACTIONS(3199), + [anon_sym_concept] = ACTIONS(3199), + [anon_sym_co_return] = ACTIONS(3199), + [anon_sym_co_yield] = ACTIONS(3199), + [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(3199), + [anon_sym_new] = ACTIONS(3199), + [anon_sym_requires] = ACTIONS(3199), + [sym_this] = ACTIONS(3199), }, - [896] = { - [sym_identifier] = ACTIONS(3108), - [aux_sym_preproc_include_token1] = ACTIONS(3108), - [aux_sym_preproc_def_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3108), - [sym_preproc_directive] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym___extension__] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(3108), - [anon_sym_extern] = ACTIONS(3108), - [anon_sym___attribute__] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), - [anon_sym___declspec] = ACTIONS(3108), - [anon_sym___based] = ACTIONS(3108), - [anon_sym___cdecl] = ACTIONS(3108), - [anon_sym___clrcall] = ACTIONS(3108), - [anon_sym___stdcall] = ACTIONS(3108), - [anon_sym___fastcall] = ACTIONS(3108), - [anon_sym___thiscall] = ACTIONS(3108), - [anon_sym___vectorcall] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_RBRACE] = ACTIONS(3110), - [anon_sym_signed] = ACTIONS(3108), - [anon_sym_unsigned] = ACTIONS(3108), - [anon_sym_long] = ACTIONS(3108), - [anon_sym_short] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3108), - [anon_sym_register] = ACTIONS(3108), - [anon_sym_inline] = ACTIONS(3108), - [anon_sym___inline] = ACTIONS(3108), - [anon_sym___inline__] = ACTIONS(3108), - [anon_sym___forceinline] = ACTIONS(3108), - [anon_sym_thread_local] = ACTIONS(3108), - [anon_sym___thread] = ACTIONS(3108), - [anon_sym_const] = ACTIONS(3108), - [anon_sym_constexpr] = ACTIONS(3108), - [anon_sym_volatile] = ACTIONS(3108), - [anon_sym_restrict] = ACTIONS(3108), - [anon_sym___restrict__] = ACTIONS(3108), - [anon_sym__Atomic] = ACTIONS(3108), - [anon_sym__Noreturn] = ACTIONS(3108), - [anon_sym_noreturn] = ACTIONS(3108), - [anon_sym_mutable] = ACTIONS(3108), - [anon_sym_constinit] = ACTIONS(3108), - [anon_sym_consteval] = ACTIONS(3108), - [sym_primitive_type] = ACTIONS(3108), - [anon_sym_enum] = ACTIONS(3108), - [anon_sym_class] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3108), - [anon_sym_union] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_switch] = ACTIONS(3108), - [anon_sym_case] = ACTIONS(3108), - [anon_sym_default] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_break] = ACTIONS(3108), - [anon_sym_continue] = ACTIONS(3108), - [anon_sym_goto] = ACTIONS(3108), - [anon_sym___try] = ACTIONS(3108), - [anon_sym___leave] = ACTIONS(3108), - [anon_sym_not] = ACTIONS(3108), - [anon_sym_compl] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_sizeof] = ACTIONS(3108), - [anon_sym___alignof__] = ACTIONS(3108), - [anon_sym___alignof] = ACTIONS(3108), - [anon_sym__alignof] = ACTIONS(3108), - [anon_sym_alignof] = ACTIONS(3108), - [anon_sym__Alignof] = ACTIONS(3108), - [anon_sym_offsetof] = ACTIONS(3108), - [anon_sym__Generic] = ACTIONS(3108), - [anon_sym_asm] = ACTIONS(3108), - [anon_sym___asm__] = ACTIONS(3108), - [sym_number_literal] = ACTIONS(3110), - [anon_sym_L_SQUOTE] = ACTIONS(3110), - [anon_sym_u_SQUOTE] = ACTIONS(3110), - [anon_sym_U_SQUOTE] = ACTIONS(3110), - [anon_sym_u8_SQUOTE] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3110), - [anon_sym_L_DQUOTE] = ACTIONS(3110), - [anon_sym_u_DQUOTE] = ACTIONS(3110), - [anon_sym_U_DQUOTE] = ACTIONS(3110), - [anon_sym_u8_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE] = ACTIONS(3110), - [sym_true] = ACTIONS(3108), - [sym_false] = ACTIONS(3108), - [anon_sym_NULL] = ACTIONS(3108), - [anon_sym_nullptr] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3108), - [anon_sym_decltype] = ACTIONS(3108), - [anon_sym_virtual] = ACTIONS(3108), - [anon_sym_alignas] = ACTIONS(3108), - [anon_sym_explicit] = ACTIONS(3108), - [anon_sym_typename] = ACTIONS(3108), - [anon_sym_template] = ACTIONS(3108), - [anon_sym_operator] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_delete] = ACTIONS(3108), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_namespace] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3108), - [anon_sym_static_assert] = ACTIONS(3108), - [anon_sym_concept] = ACTIONS(3108), - [anon_sym_co_return] = ACTIONS(3108), - [anon_sym_co_yield] = ACTIONS(3108), - [anon_sym_R_DQUOTE] = ACTIONS(3110), - [anon_sym_LR_DQUOTE] = ACTIONS(3110), - [anon_sym_uR_DQUOTE] = ACTIONS(3110), - [anon_sym_UR_DQUOTE] = ACTIONS(3110), - [anon_sym_u8R_DQUOTE] = ACTIONS(3110), - [anon_sym_co_await] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_requires] = ACTIONS(3108), - [sym_this] = ACTIONS(3108), + [853] = { + [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(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_AMP_AMP] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), + [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(3157), + [anon_sym_RBRACE] = ACTIONS(3157), + [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_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = 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_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(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [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_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3157), + [anon_sym_L_SQUOTE] = ACTIONS(3157), + [anon_sym_u_SQUOTE] = ACTIONS(3157), + [anon_sym_U_SQUOTE] = ACTIONS(3157), + [anon_sym_u8_SQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_L_DQUOTE] = ACTIONS(3157), + [anon_sym_u_DQUOTE] = ACTIONS(3157), + [anon_sym_U_DQUOTE] = ACTIONS(3157), + [anon_sym_u8_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [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_virtual] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_typename] = 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_using] = 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_R_DQUOTE] = ACTIONS(3157), + [anon_sym_LR_DQUOTE] = ACTIONS(3157), + [anon_sym_uR_DQUOTE] = ACTIONS(3157), + [anon_sym_UR_DQUOTE] = ACTIONS(3157), + [anon_sym_u8R_DQUOTE] = ACTIONS(3157), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [sym_this] = ACTIONS(3155), }, - [897] = { - [sym_identifier] = ACTIONS(3259), - [aux_sym_preproc_include_token1] = ACTIONS(3259), - [aux_sym_preproc_def_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3259), - [sym_preproc_directive] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3261), - [anon_sym___extension__] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3259), - [anon_sym_extern] = ACTIONS(3259), - [anon_sym___attribute__] = ACTIONS(3259), - [anon_sym_COLON_COLON] = ACTIONS(3261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3261), - [anon_sym___declspec] = ACTIONS(3259), - [anon_sym___based] = ACTIONS(3259), - [anon_sym___cdecl] = ACTIONS(3259), - [anon_sym___clrcall] = ACTIONS(3259), - [anon_sym___stdcall] = ACTIONS(3259), - [anon_sym___fastcall] = ACTIONS(3259), - [anon_sym___thiscall] = ACTIONS(3259), - [anon_sym___vectorcall] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_RBRACE] = ACTIONS(3261), - [anon_sym_signed] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_register] = ACTIONS(3259), - [anon_sym_inline] = ACTIONS(3259), - [anon_sym___inline] = ACTIONS(3259), - [anon_sym___inline__] = ACTIONS(3259), - [anon_sym___forceinline] = ACTIONS(3259), - [anon_sym_thread_local] = ACTIONS(3259), - [anon_sym___thread] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_constexpr] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym___restrict__] = ACTIONS(3259), - [anon_sym__Atomic] = ACTIONS(3259), - [anon_sym__Noreturn] = ACTIONS(3259), - [anon_sym_noreturn] = ACTIONS(3259), - [anon_sym_mutable] = ACTIONS(3259), - [anon_sym_constinit] = ACTIONS(3259), - [anon_sym_consteval] = ACTIONS(3259), - [sym_primitive_type] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym___try] = ACTIONS(3259), - [anon_sym___leave] = ACTIONS(3259), - [anon_sym_not] = ACTIONS(3259), - [anon_sym_compl] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3259), - [anon_sym___alignof__] = ACTIONS(3259), - [anon_sym___alignof] = ACTIONS(3259), - [anon_sym__alignof] = ACTIONS(3259), - [anon_sym_alignof] = ACTIONS(3259), - [anon_sym__Alignof] = ACTIONS(3259), - [anon_sym_offsetof] = ACTIONS(3259), - [anon_sym__Generic] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym___asm__] = ACTIONS(3259), - [sym_number_literal] = ACTIONS(3261), - [anon_sym_L_SQUOTE] = ACTIONS(3261), - [anon_sym_u_SQUOTE] = ACTIONS(3261), - [anon_sym_U_SQUOTE] = ACTIONS(3261), - [anon_sym_u8_SQUOTE] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3261), - [anon_sym_L_DQUOTE] = ACTIONS(3261), - [anon_sym_u_DQUOTE] = ACTIONS(3261), - [anon_sym_U_DQUOTE] = ACTIONS(3261), - [anon_sym_u8_DQUOTE] = ACTIONS(3261), - [anon_sym_DQUOTE] = ACTIONS(3261), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [anon_sym_NULL] = ACTIONS(3259), - [anon_sym_nullptr] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3259), - [anon_sym_decltype] = ACTIONS(3259), - [anon_sym_virtual] = ACTIONS(3259), - [anon_sym_alignas] = ACTIONS(3259), - [anon_sym_explicit] = ACTIONS(3259), - [anon_sym_typename] = ACTIONS(3259), - [anon_sym_template] = ACTIONS(3259), - [anon_sym_operator] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_static_assert] = ACTIONS(3259), - [anon_sym_concept] = ACTIONS(3259), - [anon_sym_co_return] = ACTIONS(3259), - [anon_sym_co_yield] = ACTIONS(3259), - [anon_sym_R_DQUOTE] = ACTIONS(3261), - [anon_sym_LR_DQUOTE] = ACTIONS(3261), - [anon_sym_uR_DQUOTE] = ACTIONS(3261), - [anon_sym_UR_DQUOTE] = ACTIONS(3261), - [anon_sym_u8R_DQUOTE] = ACTIONS(3261), - [anon_sym_co_await] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_requires] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), + [854] = { + [sym_identifier] = ACTIONS(3126), + [aux_sym_preproc_include_token1] = ACTIONS(3126), + [aux_sym_preproc_def_token1] = ACTIONS(3126), + [aux_sym_preproc_if_token1] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3126), + [sym_preproc_directive] = ACTIONS(3126), + [anon_sym_LPAREN2] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_AMP_AMP] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym_typedef] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3128), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym___based] = ACTIONS(3126), + [anon_sym___cdecl] = ACTIONS(3126), + [anon_sym___clrcall] = ACTIONS(3126), + [anon_sym___stdcall] = ACTIONS(3126), + [anon_sym___fastcall] = ACTIONS(3126), + [anon_sym___thiscall] = ACTIONS(3126), + [anon_sym___vectorcall] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_case] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_goto] = ACTIONS(3126), + [anon_sym___try] = ACTIONS(3126), + [anon_sym___leave] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(3126), + [anon_sym_compl] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_sizeof] = ACTIONS(3126), + [anon_sym___alignof__] = ACTIONS(3126), + [anon_sym___alignof] = ACTIONS(3126), + [anon_sym__alignof] = ACTIONS(3126), + [anon_sym_alignof] = ACTIONS(3126), + [anon_sym__Alignof] = ACTIONS(3126), + [anon_sym_offsetof] = ACTIONS(3126), + [anon_sym__Generic] = ACTIONS(3126), + [anon_sym_asm] = ACTIONS(3126), + [anon_sym___asm__] = ACTIONS(3126), + [sym_number_literal] = ACTIONS(3128), + [anon_sym_L_SQUOTE] = ACTIONS(3128), + [anon_sym_u_SQUOTE] = ACTIONS(3128), + [anon_sym_U_SQUOTE] = ACTIONS(3128), + [anon_sym_u8_SQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_L_DQUOTE] = ACTIONS(3128), + [anon_sym_u_DQUOTE] = ACTIONS(3128), + [anon_sym_U_DQUOTE] = ACTIONS(3128), + [anon_sym_u8_DQUOTE] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [anon_sym_NULL] = ACTIONS(3126), + [anon_sym_nullptr] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym_explicit] = ACTIONS(3126), + [anon_sym_typename] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_static_assert] = ACTIONS(3126), + [anon_sym_concept] = ACTIONS(3126), + [anon_sym_co_return] = ACTIONS(3126), + [anon_sym_co_yield] = ACTIONS(3126), + [anon_sym_R_DQUOTE] = ACTIONS(3128), + [anon_sym_LR_DQUOTE] = ACTIONS(3128), + [anon_sym_uR_DQUOTE] = ACTIONS(3128), + [anon_sym_UR_DQUOTE] = ACTIONS(3128), + [anon_sym_u8R_DQUOTE] = ACTIONS(3128), + [anon_sym_co_await] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + [sym_this] = ACTIONS(3126), }, - [898] = { - [sym_identifier] = ACTIONS(3112), - [aux_sym_preproc_include_token1] = ACTIONS(3112), - [aux_sym_preproc_def_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), - [sym_preproc_directive] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym___extension__] = ACTIONS(3112), - [anon_sym_typedef] = ACTIONS(3112), - [anon_sym_extern] = ACTIONS(3112), - [anon_sym___attribute__] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), - [anon_sym___declspec] = ACTIONS(3112), - [anon_sym___based] = ACTIONS(3112), - [anon_sym___cdecl] = ACTIONS(3112), - [anon_sym___clrcall] = ACTIONS(3112), - [anon_sym___stdcall] = ACTIONS(3112), - [anon_sym___fastcall] = ACTIONS(3112), - [anon_sym___thiscall] = ACTIONS(3112), - [anon_sym___vectorcall] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3114), - [anon_sym_RBRACE] = ACTIONS(3114), - [anon_sym_signed] = ACTIONS(3112), - [anon_sym_unsigned] = ACTIONS(3112), - [anon_sym_long] = ACTIONS(3112), - [anon_sym_short] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_register] = ACTIONS(3112), - [anon_sym_inline] = ACTIONS(3112), - [anon_sym___inline] = ACTIONS(3112), - [anon_sym___inline__] = ACTIONS(3112), - [anon_sym___forceinline] = ACTIONS(3112), - [anon_sym_thread_local] = ACTIONS(3112), - [anon_sym___thread] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_constexpr] = ACTIONS(3112), - [anon_sym_volatile] = ACTIONS(3112), - [anon_sym_restrict] = ACTIONS(3112), - [anon_sym___restrict__] = ACTIONS(3112), - [anon_sym__Atomic] = ACTIONS(3112), - [anon_sym__Noreturn] = ACTIONS(3112), - [anon_sym_noreturn] = ACTIONS(3112), - [anon_sym_mutable] = ACTIONS(3112), - [anon_sym_constinit] = ACTIONS(3112), - [anon_sym_consteval] = ACTIONS(3112), - [sym_primitive_type] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3112), - [anon_sym_union] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3112), - [anon_sym_default] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_goto] = ACTIONS(3112), - [anon_sym___try] = ACTIONS(3112), - [anon_sym___leave] = ACTIONS(3112), - [anon_sym_not] = ACTIONS(3112), - [anon_sym_compl] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3114), - [anon_sym_sizeof] = ACTIONS(3112), - [anon_sym___alignof__] = ACTIONS(3112), - [anon_sym___alignof] = ACTIONS(3112), - [anon_sym__alignof] = ACTIONS(3112), - [anon_sym_alignof] = ACTIONS(3112), - [anon_sym__Alignof] = ACTIONS(3112), - [anon_sym_offsetof] = ACTIONS(3112), - [anon_sym__Generic] = ACTIONS(3112), - [anon_sym_asm] = ACTIONS(3112), - [anon_sym___asm__] = ACTIONS(3112), - [sym_number_literal] = ACTIONS(3114), - [anon_sym_L_SQUOTE] = ACTIONS(3114), - [anon_sym_u_SQUOTE] = ACTIONS(3114), - [anon_sym_U_SQUOTE] = ACTIONS(3114), - [anon_sym_u8_SQUOTE] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3114), - [anon_sym_L_DQUOTE] = ACTIONS(3114), - [anon_sym_u_DQUOTE] = ACTIONS(3114), - [anon_sym_U_DQUOTE] = ACTIONS(3114), - [anon_sym_u8_DQUOTE] = ACTIONS(3114), - [anon_sym_DQUOTE] = ACTIONS(3114), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [anon_sym_NULL] = ACTIONS(3112), - [anon_sym_nullptr] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3112), - [anon_sym_decltype] = ACTIONS(3112), - [anon_sym_virtual] = ACTIONS(3112), - [anon_sym_alignas] = ACTIONS(3112), - [anon_sym_explicit] = ACTIONS(3112), - [anon_sym_typename] = ACTIONS(3112), - [anon_sym_template] = ACTIONS(3112), - [anon_sym_operator] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_static_assert] = ACTIONS(3112), - [anon_sym_concept] = ACTIONS(3112), - [anon_sym_co_return] = ACTIONS(3112), - [anon_sym_co_yield] = ACTIONS(3112), - [anon_sym_R_DQUOTE] = ACTIONS(3114), - [anon_sym_LR_DQUOTE] = ACTIONS(3114), - [anon_sym_uR_DQUOTE] = ACTIONS(3114), - [anon_sym_UR_DQUOTE] = ACTIONS(3114), - [anon_sym_u8R_DQUOTE] = ACTIONS(3114), - [anon_sym_co_await] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_requires] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), + [855] = { + [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_extern] = 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___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_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = 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(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_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_virtual] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_typename] = 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_using] = 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(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), + [sym_this] = ACTIONS(3163), }, - [899] = { - [sym_identifier] = ACTIONS(3094), - [aux_sym_preproc_include_token1] = ACTIONS(3094), - [aux_sym_preproc_def_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3094), - [sym_preproc_directive] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym___extension__] = ACTIONS(3094), - [anon_sym_typedef] = ACTIONS(3094), - [anon_sym_extern] = ACTIONS(3094), - [anon_sym___attribute__] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3096), - [anon_sym___declspec] = ACTIONS(3094), - [anon_sym___based] = ACTIONS(3094), - [anon_sym___cdecl] = ACTIONS(3094), - [anon_sym___clrcall] = ACTIONS(3094), - [anon_sym___stdcall] = ACTIONS(3094), - [anon_sym___fastcall] = ACTIONS(3094), - [anon_sym___thiscall] = ACTIONS(3094), - [anon_sym___vectorcall] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_signed] = ACTIONS(3094), - [anon_sym_unsigned] = ACTIONS(3094), - [anon_sym_long] = ACTIONS(3094), - [anon_sym_short] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_register] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym___inline] = ACTIONS(3094), - [anon_sym___inline__] = ACTIONS(3094), - [anon_sym___forceinline] = ACTIONS(3094), - [anon_sym_thread_local] = ACTIONS(3094), - [anon_sym___thread] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_constexpr] = ACTIONS(3094), - [anon_sym_volatile] = ACTIONS(3094), - [anon_sym_restrict] = ACTIONS(3094), - [anon_sym___restrict__] = ACTIONS(3094), - [anon_sym__Atomic] = ACTIONS(3094), - [anon_sym__Noreturn] = ACTIONS(3094), - [anon_sym_noreturn] = ACTIONS(3094), - [anon_sym_mutable] = ACTIONS(3094), - [anon_sym_constinit] = ACTIONS(3094), - [anon_sym_consteval] = ACTIONS(3094), - [sym_primitive_type] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_union] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_switch] = ACTIONS(3094), - [anon_sym_case] = ACTIONS(3094), - [anon_sym_default] = ACTIONS(3094), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_do] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_goto] = ACTIONS(3094), - [anon_sym___try] = ACTIONS(3094), - [anon_sym___leave] = ACTIONS(3094), - [anon_sym_not] = ACTIONS(3094), - [anon_sym_compl] = ACTIONS(3094), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_sizeof] = ACTIONS(3094), - [anon_sym___alignof__] = ACTIONS(3094), - [anon_sym___alignof] = ACTIONS(3094), - [anon_sym__alignof] = ACTIONS(3094), - [anon_sym_alignof] = ACTIONS(3094), - [anon_sym__Alignof] = ACTIONS(3094), - [anon_sym_offsetof] = ACTIONS(3094), - [anon_sym__Generic] = ACTIONS(3094), - [anon_sym_asm] = ACTIONS(3094), - [anon_sym___asm__] = ACTIONS(3094), - [sym_number_literal] = ACTIONS(3096), - [anon_sym_L_SQUOTE] = ACTIONS(3096), - [anon_sym_u_SQUOTE] = ACTIONS(3096), - [anon_sym_U_SQUOTE] = ACTIONS(3096), - [anon_sym_u8_SQUOTE] = ACTIONS(3096), - [anon_sym_SQUOTE] = ACTIONS(3096), - [anon_sym_L_DQUOTE] = ACTIONS(3096), - [anon_sym_u_DQUOTE] = ACTIONS(3096), - [anon_sym_U_DQUOTE] = ACTIONS(3096), - [anon_sym_u8_DQUOTE] = ACTIONS(3096), - [anon_sym_DQUOTE] = ACTIONS(3096), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [anon_sym_NULL] = ACTIONS(3094), - [anon_sym_nullptr] = ACTIONS(3094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3094), - [anon_sym_decltype] = ACTIONS(3094), - [anon_sym_virtual] = ACTIONS(3094), - [anon_sym_alignas] = ACTIONS(3094), - [anon_sym_explicit] = ACTIONS(3094), - [anon_sym_typename] = ACTIONS(3094), - [anon_sym_template] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_delete] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_namespace] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_static_assert] = ACTIONS(3094), - [anon_sym_concept] = ACTIONS(3094), - [anon_sym_co_return] = ACTIONS(3094), - [anon_sym_co_yield] = ACTIONS(3094), - [anon_sym_R_DQUOTE] = ACTIONS(3096), - [anon_sym_LR_DQUOTE] = ACTIONS(3096), - [anon_sym_uR_DQUOTE] = ACTIONS(3096), - [anon_sym_UR_DQUOTE] = ACTIONS(3096), - [anon_sym_u8R_DQUOTE] = ACTIONS(3096), - [anon_sym_co_await] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3094), - [anon_sym_requires] = ACTIONS(3094), - [sym_this] = ACTIONS(3094), + [856] = { + [sym_identifier] = ACTIONS(3179), + [aux_sym_preproc_include_token1] = ACTIONS(3179), + [aux_sym_preproc_def_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token2] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), + [sym_preproc_directive] = ACTIONS(3179), + [anon_sym_LPAREN2] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym___extension__] = ACTIONS(3179), + [anon_sym_typedef] = ACTIONS(3179), + [anon_sym_extern] = ACTIONS(3179), + [anon_sym___attribute__] = ACTIONS(3179), + [anon_sym_COLON_COLON] = ACTIONS(3181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), + [anon_sym___declspec] = ACTIONS(3179), + [anon_sym___based] = ACTIONS(3179), + [anon_sym___cdecl] = ACTIONS(3179), + [anon_sym___clrcall] = ACTIONS(3179), + [anon_sym___stdcall] = ACTIONS(3179), + [anon_sym___fastcall] = ACTIONS(3179), + [anon_sym___thiscall] = ACTIONS(3179), + [anon_sym___vectorcall] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_signed] = ACTIONS(3179), + [anon_sym_unsigned] = ACTIONS(3179), + [anon_sym_long] = ACTIONS(3179), + [anon_sym_short] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_register] = ACTIONS(3179), + [anon_sym_inline] = ACTIONS(3179), + [anon_sym___inline] = ACTIONS(3179), + [anon_sym___inline__] = ACTIONS(3179), + [anon_sym___forceinline] = ACTIONS(3179), + [anon_sym_thread_local] = ACTIONS(3179), + [anon_sym___thread] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_constexpr] = ACTIONS(3179), + [anon_sym_volatile] = ACTIONS(3179), + [anon_sym_restrict] = ACTIONS(3179), + [anon_sym___restrict__] = ACTIONS(3179), + [anon_sym__Atomic] = ACTIONS(3179), + [anon_sym__Noreturn] = ACTIONS(3179), + [anon_sym_noreturn] = ACTIONS(3179), + [anon_sym_mutable] = ACTIONS(3179), + [anon_sym_constinit] = ACTIONS(3179), + [anon_sym_consteval] = ACTIONS(3179), + [sym_primitive_type] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3179), + [anon_sym_case] = ACTIONS(3179), + [anon_sym_default] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_do] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_goto] = ACTIONS(3179), + [anon_sym___try] = ACTIONS(3179), + [anon_sym___leave] = ACTIONS(3179), + [anon_sym_not] = ACTIONS(3179), + [anon_sym_compl] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3179), + [anon_sym___alignof__] = ACTIONS(3179), + [anon_sym___alignof] = ACTIONS(3179), + [anon_sym__alignof] = ACTIONS(3179), + [anon_sym_alignof] = ACTIONS(3179), + [anon_sym__Alignof] = ACTIONS(3179), + [anon_sym_offsetof] = ACTIONS(3179), + [anon_sym__Generic] = ACTIONS(3179), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [anon_sym_L_SQUOTE] = ACTIONS(3181), + [anon_sym_u_SQUOTE] = ACTIONS(3181), + [anon_sym_U_SQUOTE] = ACTIONS(3181), + [anon_sym_u8_SQUOTE] = ACTIONS(3181), + [anon_sym_SQUOTE] = ACTIONS(3181), + [anon_sym_L_DQUOTE] = ACTIONS(3181), + [anon_sym_u_DQUOTE] = ACTIONS(3181), + [anon_sym_U_DQUOTE] = ACTIONS(3181), + [anon_sym_u8_DQUOTE] = ACTIONS(3181), + [anon_sym_DQUOTE] = ACTIONS(3181), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [anon_sym_NULL] = ACTIONS(3179), + [anon_sym_nullptr] = ACTIONS(3179), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3179), + [anon_sym_decltype] = ACTIONS(3179), + [anon_sym_virtual] = ACTIONS(3179), + [anon_sym_alignas] = ACTIONS(3179), + [anon_sym_explicit] = ACTIONS(3179), + [anon_sym_typename] = ACTIONS(3179), + [anon_sym_template] = ACTIONS(3179), + [anon_sym_operator] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3179), + [anon_sym_delete] = ACTIONS(3179), + [anon_sym_throw] = ACTIONS(3179), + [anon_sym_namespace] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3179), + [anon_sym_static_assert] = ACTIONS(3179), + [anon_sym_concept] = ACTIONS(3179), + [anon_sym_co_return] = ACTIONS(3179), + [anon_sym_co_yield] = ACTIONS(3179), + [anon_sym_R_DQUOTE] = ACTIONS(3181), + [anon_sym_LR_DQUOTE] = ACTIONS(3181), + [anon_sym_uR_DQUOTE] = ACTIONS(3181), + [anon_sym_UR_DQUOTE] = ACTIONS(3181), + [anon_sym_u8R_DQUOTE] = ACTIONS(3181), + [anon_sym_co_await] = ACTIONS(3179), + [anon_sym_new] = ACTIONS(3179), + [anon_sym_requires] = ACTIONS(3179), + [sym_this] = ACTIONS(3179), }, - [900] = { - [sym_identifier] = ACTIONS(3102), - [aux_sym_preproc_include_token1] = ACTIONS(3102), - [aux_sym_preproc_def_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token1] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3102), - [sym_preproc_directive] = ACTIONS(3102), - [anon_sym_LPAREN2] = ACTIONS(3104), - [anon_sym_BANG] = ACTIONS(3104), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3104), - [anon_sym___extension__] = ACTIONS(3102), - [anon_sym_typedef] = ACTIONS(3102), - [anon_sym_extern] = ACTIONS(3102), - [anon_sym___attribute__] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3104), - [anon_sym___declspec] = ACTIONS(3102), - [anon_sym___based] = ACTIONS(3102), - [anon_sym___cdecl] = ACTIONS(3102), - [anon_sym___clrcall] = ACTIONS(3102), - [anon_sym___stdcall] = ACTIONS(3102), - [anon_sym___fastcall] = ACTIONS(3102), - [anon_sym___thiscall] = ACTIONS(3102), - [anon_sym___vectorcall] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_RBRACE] = ACTIONS(3104), - [anon_sym_signed] = ACTIONS(3102), - [anon_sym_unsigned] = ACTIONS(3102), - [anon_sym_long] = ACTIONS(3102), - [anon_sym_short] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_register] = ACTIONS(3102), - [anon_sym_inline] = ACTIONS(3102), - [anon_sym___inline] = ACTIONS(3102), - [anon_sym___inline__] = ACTIONS(3102), - [anon_sym___forceinline] = ACTIONS(3102), - [anon_sym_thread_local] = ACTIONS(3102), - [anon_sym___thread] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_constexpr] = ACTIONS(3102), - [anon_sym_volatile] = ACTIONS(3102), - [anon_sym_restrict] = ACTIONS(3102), - [anon_sym___restrict__] = ACTIONS(3102), - [anon_sym__Atomic] = ACTIONS(3102), - [anon_sym__Noreturn] = ACTIONS(3102), - [anon_sym_noreturn] = ACTIONS(3102), - [anon_sym_mutable] = ACTIONS(3102), - [anon_sym_constinit] = ACTIONS(3102), - [anon_sym_consteval] = ACTIONS(3102), - [sym_primitive_type] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_case] = ACTIONS(3102), - [anon_sym_default] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_goto] = ACTIONS(3102), - [anon_sym___try] = ACTIONS(3102), - [anon_sym___leave] = ACTIONS(3102), - [anon_sym_not] = ACTIONS(3102), - [anon_sym_compl] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3104), - [anon_sym_PLUS_PLUS] = ACTIONS(3104), - [anon_sym_sizeof] = ACTIONS(3102), - [anon_sym___alignof__] = ACTIONS(3102), - [anon_sym___alignof] = ACTIONS(3102), - [anon_sym__alignof] = ACTIONS(3102), - [anon_sym_alignof] = ACTIONS(3102), - [anon_sym__Alignof] = ACTIONS(3102), - [anon_sym_offsetof] = ACTIONS(3102), - [anon_sym__Generic] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(3102), - [anon_sym___asm__] = ACTIONS(3102), - [sym_number_literal] = ACTIONS(3104), - [anon_sym_L_SQUOTE] = ACTIONS(3104), - [anon_sym_u_SQUOTE] = ACTIONS(3104), - [anon_sym_U_SQUOTE] = ACTIONS(3104), - [anon_sym_u8_SQUOTE] = ACTIONS(3104), - [anon_sym_SQUOTE] = ACTIONS(3104), - [anon_sym_L_DQUOTE] = ACTIONS(3104), - [anon_sym_u_DQUOTE] = ACTIONS(3104), - [anon_sym_U_DQUOTE] = ACTIONS(3104), - [anon_sym_u8_DQUOTE] = ACTIONS(3104), - [anon_sym_DQUOTE] = ACTIONS(3104), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [anon_sym_NULL] = ACTIONS(3102), - [anon_sym_nullptr] = ACTIONS(3102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3102), - [anon_sym_decltype] = ACTIONS(3102), - [anon_sym_virtual] = ACTIONS(3102), - [anon_sym_alignas] = ACTIONS(3102), - [anon_sym_explicit] = ACTIONS(3102), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_template] = ACTIONS(3102), - [anon_sym_operator] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_static_assert] = ACTIONS(3102), - [anon_sym_concept] = ACTIONS(3102), - [anon_sym_co_return] = ACTIONS(3102), - [anon_sym_co_yield] = ACTIONS(3102), - [anon_sym_R_DQUOTE] = ACTIONS(3104), - [anon_sym_LR_DQUOTE] = ACTIONS(3104), - [anon_sym_uR_DQUOTE] = ACTIONS(3104), - [anon_sym_UR_DQUOTE] = ACTIONS(3104), - [anon_sym_u8R_DQUOTE] = ACTIONS(3104), - [anon_sym_co_await] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_requires] = ACTIONS(3102), - [sym_this] = ACTIONS(3102), + [857] = { + [sym_identifier] = ACTIONS(3183), + [aux_sym_preproc_include_token1] = ACTIONS(3183), + [aux_sym_preproc_def_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token2] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3183), + [anon_sym_LPAREN2] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_AMP_AMP] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym___extension__] = ACTIONS(3183), + [anon_sym_typedef] = ACTIONS(3183), + [anon_sym_extern] = ACTIONS(3183), + [anon_sym___attribute__] = ACTIONS(3183), + [anon_sym_COLON_COLON] = ACTIONS(3185), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), + [anon_sym___declspec] = ACTIONS(3183), + [anon_sym___based] = ACTIONS(3183), + [anon_sym___cdecl] = ACTIONS(3183), + [anon_sym___clrcall] = ACTIONS(3183), + [anon_sym___stdcall] = ACTIONS(3183), + [anon_sym___fastcall] = ACTIONS(3183), + [anon_sym___thiscall] = ACTIONS(3183), + [anon_sym___vectorcall] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_signed] = ACTIONS(3183), + [anon_sym_unsigned] = ACTIONS(3183), + [anon_sym_long] = ACTIONS(3183), + [anon_sym_short] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_register] = ACTIONS(3183), + [anon_sym_inline] = ACTIONS(3183), + [anon_sym___inline] = ACTIONS(3183), + [anon_sym___inline__] = ACTIONS(3183), + [anon_sym___forceinline] = ACTIONS(3183), + [anon_sym_thread_local] = ACTIONS(3183), + [anon_sym___thread] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_constexpr] = ACTIONS(3183), + [anon_sym_volatile] = ACTIONS(3183), + [anon_sym_restrict] = ACTIONS(3183), + [anon_sym___restrict__] = ACTIONS(3183), + [anon_sym__Atomic] = ACTIONS(3183), + [anon_sym__Noreturn] = ACTIONS(3183), + [anon_sym_noreturn] = ACTIONS(3183), + [anon_sym_mutable] = ACTIONS(3183), + [anon_sym_constinit] = ACTIONS(3183), + [anon_sym_consteval] = ACTIONS(3183), + [sym_primitive_type] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_goto] = ACTIONS(3183), + [anon_sym___try] = ACTIONS(3183), + [anon_sym___leave] = ACTIONS(3183), + [anon_sym_not] = ACTIONS(3183), + [anon_sym_compl] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3183), + [anon_sym___alignof__] = ACTIONS(3183), + [anon_sym___alignof] = ACTIONS(3183), + [anon_sym__alignof] = ACTIONS(3183), + [anon_sym_alignof] = ACTIONS(3183), + [anon_sym__Alignof] = ACTIONS(3183), + [anon_sym_offsetof] = ACTIONS(3183), + [anon_sym__Generic] = ACTIONS(3183), + [anon_sym_asm] = ACTIONS(3183), + [anon_sym___asm__] = ACTIONS(3183), + [sym_number_literal] = ACTIONS(3185), + [anon_sym_L_SQUOTE] = ACTIONS(3185), + [anon_sym_u_SQUOTE] = ACTIONS(3185), + [anon_sym_U_SQUOTE] = ACTIONS(3185), + [anon_sym_u8_SQUOTE] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3185), + [anon_sym_L_DQUOTE] = ACTIONS(3185), + [anon_sym_u_DQUOTE] = ACTIONS(3185), + [anon_sym_U_DQUOTE] = ACTIONS(3185), + [anon_sym_u8_DQUOTE] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3185), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [anon_sym_NULL] = ACTIONS(3183), + [anon_sym_nullptr] = ACTIONS(3183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3183), + [anon_sym_decltype] = ACTIONS(3183), + [anon_sym_virtual] = ACTIONS(3183), + [anon_sym_alignas] = ACTIONS(3183), + [anon_sym_explicit] = ACTIONS(3183), + [anon_sym_typename] = ACTIONS(3183), + [anon_sym_template] = ACTIONS(3183), + [anon_sym_operator] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_static_assert] = ACTIONS(3183), + [anon_sym_concept] = ACTIONS(3183), + [anon_sym_co_return] = ACTIONS(3183), + [anon_sym_co_yield] = ACTIONS(3183), + [anon_sym_R_DQUOTE] = ACTIONS(3185), + [anon_sym_LR_DQUOTE] = ACTIONS(3185), + [anon_sym_uR_DQUOTE] = ACTIONS(3185), + [anon_sym_UR_DQUOTE] = ACTIONS(3185), + [anon_sym_u8R_DQUOTE] = ACTIONS(3185), + [anon_sym_co_await] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_requires] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), }, - [901] = { - [sym_identifier] = ACTIONS(3284), - [aux_sym_preproc_include_token1] = ACTIONS(3284), - [aux_sym_preproc_def_token1] = ACTIONS(3284), - [aux_sym_preproc_if_token1] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3284), - [sym_preproc_directive] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym___extension__] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym___attribute__] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3286), - [anon_sym___declspec] = ACTIONS(3284), - [anon_sym___based] = ACTIONS(3284), - [anon_sym___cdecl] = ACTIONS(3284), - [anon_sym___clrcall] = ACTIONS(3284), - [anon_sym___stdcall] = ACTIONS(3284), - [anon_sym___fastcall] = ACTIONS(3284), - [anon_sym___thiscall] = ACTIONS(3284), - [anon_sym___vectorcall] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_signed] = ACTIONS(3284), - [anon_sym_unsigned] = ACTIONS(3284), - [anon_sym_long] = ACTIONS(3284), - [anon_sym_short] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_register] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym___inline] = ACTIONS(3284), - [anon_sym___inline__] = ACTIONS(3284), - [anon_sym___forceinline] = ACTIONS(3284), - [anon_sym_thread_local] = ACTIONS(3284), - [anon_sym___thread] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_constexpr] = ACTIONS(3284), - [anon_sym_volatile] = ACTIONS(3284), - [anon_sym_restrict] = ACTIONS(3284), - [anon_sym___restrict__] = ACTIONS(3284), - [anon_sym__Atomic] = ACTIONS(3284), - [anon_sym__Noreturn] = ACTIONS(3284), - [anon_sym_noreturn] = ACTIONS(3284), - [anon_sym_mutable] = ACTIONS(3284), - [anon_sym_constinit] = ACTIONS(3284), - [anon_sym_consteval] = ACTIONS(3284), - [sym_primitive_type] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3284), - [anon_sym_union] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_goto] = ACTIONS(3284), - [anon_sym___try] = ACTIONS(3284), - [anon_sym___leave] = ACTIONS(3284), - [anon_sym_not] = ACTIONS(3284), - [anon_sym_compl] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_sizeof] = ACTIONS(3284), - [anon_sym___alignof__] = ACTIONS(3284), - [anon_sym___alignof] = ACTIONS(3284), - [anon_sym__alignof] = ACTIONS(3284), - [anon_sym_alignof] = ACTIONS(3284), - [anon_sym__Alignof] = ACTIONS(3284), - [anon_sym_offsetof] = ACTIONS(3284), - [anon_sym__Generic] = ACTIONS(3284), - [anon_sym_asm] = ACTIONS(3284), - [anon_sym___asm__] = ACTIONS(3284), - [sym_number_literal] = ACTIONS(3286), - [anon_sym_L_SQUOTE] = ACTIONS(3286), - [anon_sym_u_SQUOTE] = ACTIONS(3286), - [anon_sym_U_SQUOTE] = ACTIONS(3286), - [anon_sym_u8_SQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_L_DQUOTE] = ACTIONS(3286), - [anon_sym_u_DQUOTE] = ACTIONS(3286), - [anon_sym_U_DQUOTE] = ACTIONS(3286), - [anon_sym_u8_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [anon_sym_NULL] = ACTIONS(3284), - [anon_sym_nullptr] = ACTIONS(3284), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3284), - [anon_sym_decltype] = ACTIONS(3284), - [anon_sym_virtual] = ACTIONS(3284), - [anon_sym_alignas] = ACTIONS(3284), - [anon_sym_explicit] = ACTIONS(3284), - [anon_sym_typename] = ACTIONS(3284), - [anon_sym_template] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_static_assert] = ACTIONS(3284), - [anon_sym_concept] = ACTIONS(3284), - [anon_sym_co_return] = ACTIONS(3284), - [anon_sym_co_yield] = ACTIONS(3284), - [anon_sym_R_DQUOTE] = ACTIONS(3286), - [anon_sym_LR_DQUOTE] = ACTIONS(3286), - [anon_sym_uR_DQUOTE] = ACTIONS(3286), - [anon_sym_UR_DQUOTE] = ACTIONS(3286), - [anon_sym_u8R_DQUOTE] = ACTIONS(3286), - [anon_sym_co_await] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_requires] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), + [858] = { + [sym_identifier] = ACTIONS(2993), + [aux_sym_preproc_include_token1] = ACTIONS(2993), + [aux_sym_preproc_def_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym___attribute__] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), + [anon_sym___declspec] = ACTIONS(2993), + [anon_sym___based] = ACTIONS(2993), + [anon_sym___cdecl] = ACTIONS(2993), + [anon_sym___clrcall] = ACTIONS(2993), + [anon_sym___stdcall] = ACTIONS(2993), + [anon_sym___fastcall] = ACTIONS(2993), + [anon_sym___thiscall] = ACTIONS(2993), + [anon_sym___vectorcall] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_RBRACE] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2993), + [anon_sym_unsigned] = ACTIONS(2993), + [anon_sym_long] = ACTIONS(2993), + [anon_sym_short] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_register] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym___inline] = ACTIONS(2993), + [anon_sym___inline__] = ACTIONS(2993), + [anon_sym___forceinline] = ACTIONS(2993), + [anon_sym_thread_local] = ACTIONS(2993), + [anon_sym___thread] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_constexpr] = ACTIONS(2993), + [anon_sym_volatile] = ACTIONS(2993), + [anon_sym_restrict] = ACTIONS(2993), + [anon_sym___restrict__] = ACTIONS(2993), + [anon_sym__Atomic] = ACTIONS(2993), + [anon_sym__Noreturn] = ACTIONS(2993), + [anon_sym_noreturn] = ACTIONS(2993), + [anon_sym_mutable] = ACTIONS(2993), + [anon_sym_constinit] = ACTIONS(2993), + [anon_sym_consteval] = ACTIONS(2993), + [sym_primitive_type] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym___try] = ACTIONS(2993), + [anon_sym___leave] = ACTIONS(2993), + [anon_sym_not] = ACTIONS(2993), + [anon_sym_compl] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2993), + [anon_sym___alignof] = ACTIONS(2993), + [anon_sym__alignof] = ACTIONS(2993), + [anon_sym_alignof] = ACTIONS(2993), + [anon_sym__Alignof] = ACTIONS(2993), + [anon_sym_offsetof] = ACTIONS(2993), + [anon_sym__Generic] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym___asm__] = ACTIONS(2993), + [sym_number_literal] = ACTIONS(2995), + [anon_sym_L_SQUOTE] = ACTIONS(2995), + [anon_sym_u_SQUOTE] = ACTIONS(2995), + [anon_sym_U_SQUOTE] = ACTIONS(2995), + [anon_sym_u8_SQUOTE] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_L_DQUOTE] = ACTIONS(2995), + [anon_sym_u_DQUOTE] = ACTIONS(2995), + [anon_sym_U_DQUOTE] = ACTIONS(2995), + [anon_sym_u8_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [anon_sym_NULL] = ACTIONS(2993), + [anon_sym_nullptr] = ACTIONS(2993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2993), + [anon_sym_virtual] = ACTIONS(2993), + [anon_sym_alignas] = ACTIONS(2993), + [anon_sym_explicit] = ACTIONS(2993), + [anon_sym_typename] = ACTIONS(2993), + [anon_sym_template] = ACTIONS(2993), + [anon_sym_operator] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_delete] = ACTIONS(2993), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_namespace] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_static_assert] = ACTIONS(2993), + [anon_sym_concept] = ACTIONS(2993), + [anon_sym_co_return] = ACTIONS(2993), + [anon_sym_co_yield] = ACTIONS(2993), + [anon_sym_R_DQUOTE] = ACTIONS(2995), + [anon_sym_LR_DQUOTE] = ACTIONS(2995), + [anon_sym_uR_DQUOTE] = ACTIONS(2995), + [anon_sym_UR_DQUOTE] = ACTIONS(2995), + [anon_sym_u8R_DQUOTE] = ACTIONS(2995), + [anon_sym_co_await] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_requires] = ACTIONS(2993), + [sym_this] = ACTIONS(2993), }, - [902] = { + [859] = { + [ts_builtin_sym_end] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_include_token1] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [anon_sym_RPAREN] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym___cdecl] = ACTIONS(2186), + [anon_sym___clrcall] = ACTIONS(2186), + [anon_sym___stdcall] = ACTIONS(2186), + [anon_sym___fastcall] = ACTIONS(2186), + [anon_sym___thiscall] = ACTIONS(2186), + [anon_sym___vectorcall] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_case] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_namespace] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_concept] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), + }, + [860] = { + [sym_identifier] = ACTIONS(3199), + [aux_sym_preproc_include_token1] = ACTIONS(3199), + [aux_sym_preproc_def_token1] = ACTIONS(3199), + [aux_sym_preproc_if_token1] = ACTIONS(3199), + [aux_sym_preproc_if_token2] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3199), + [sym_preproc_directive] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym___extension__] = ACTIONS(3199), + [anon_sym_typedef] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym___attribute__] = ACTIONS(3199), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3199), + [anon_sym___based] = ACTIONS(3199), + [anon_sym___cdecl] = ACTIONS(3199), + [anon_sym___clrcall] = ACTIONS(3199), + [anon_sym___stdcall] = ACTIONS(3199), + [anon_sym___fastcall] = ACTIONS(3199), + [anon_sym___thiscall] = ACTIONS(3199), + [anon_sym___vectorcall] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_signed] = ACTIONS(3199), + [anon_sym_unsigned] = ACTIONS(3199), + [anon_sym_long] = ACTIONS(3199), + [anon_sym_short] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_register] = ACTIONS(3199), + [anon_sym_inline] = ACTIONS(3199), + [anon_sym___inline] = ACTIONS(3199), + [anon_sym___inline__] = ACTIONS(3199), + [anon_sym___forceinline] = ACTIONS(3199), + [anon_sym_thread_local] = ACTIONS(3199), + [anon_sym___thread] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_constexpr] = ACTIONS(3199), + [anon_sym_volatile] = ACTIONS(3199), + [anon_sym_restrict] = ACTIONS(3199), + [anon_sym___restrict__] = ACTIONS(3199), + [anon_sym__Atomic] = ACTIONS(3199), + [anon_sym__Noreturn] = ACTIONS(3199), + [anon_sym_noreturn] = ACTIONS(3199), + [anon_sym_mutable] = ACTIONS(3199), + [anon_sym_constinit] = ACTIONS(3199), + [anon_sym_consteval] = ACTIONS(3199), + [sym_primitive_type] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_switch] = ACTIONS(3199), + [anon_sym_case] = ACTIONS(3199), + [anon_sym_default] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_do] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_goto] = ACTIONS(3199), + [anon_sym___try] = ACTIONS(3199), + [anon_sym___leave] = ACTIONS(3199), + [anon_sym_not] = ACTIONS(3199), + [anon_sym_compl] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3199), + [anon_sym___alignof__] = ACTIONS(3199), + [anon_sym___alignof] = ACTIONS(3199), + [anon_sym__alignof] = ACTIONS(3199), + [anon_sym_alignof] = ACTIONS(3199), + [anon_sym__Alignof] = ACTIONS(3199), + [anon_sym_offsetof] = ACTIONS(3199), + [anon_sym__Generic] = ACTIONS(3199), + [anon_sym_asm] = ACTIONS(3199), + [anon_sym___asm__] = ACTIONS(3199), + [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(3199), + [sym_false] = ACTIONS(3199), + [anon_sym_NULL] = ACTIONS(3199), + [anon_sym_nullptr] = ACTIONS(3199), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3199), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3199), + [anon_sym_alignas] = ACTIONS(3199), + [anon_sym_explicit] = ACTIONS(3199), + [anon_sym_typename] = ACTIONS(3199), + [anon_sym_template] = ACTIONS(3199), + [anon_sym_operator] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_throw] = ACTIONS(3199), + [anon_sym_namespace] = ACTIONS(3199), + [anon_sym_using] = ACTIONS(3199), + [anon_sym_static_assert] = ACTIONS(3199), + [anon_sym_concept] = ACTIONS(3199), + [anon_sym_co_return] = ACTIONS(3199), + [anon_sym_co_yield] = ACTIONS(3199), + [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(3199), + [anon_sym_new] = ACTIONS(3199), + [anon_sym_requires] = ACTIONS(3199), + [sym_this] = ACTIONS(3199), + }, + [861] = { + [sym_identifier] = ACTIONS(3244), + [aux_sym_preproc_include_token1] = ACTIONS(3244), + [aux_sym_preproc_def_token1] = ACTIONS(3244), + [aux_sym_preproc_if_token1] = ACTIONS(3244), + [aux_sym_preproc_if_token2] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3244), + [sym_preproc_directive] = ACTIONS(3244), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_typedef] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym___cdecl] = ACTIONS(3244), + [anon_sym___clrcall] = ACTIONS(3244), + [anon_sym___stdcall] = ACTIONS(3244), + [anon_sym___fastcall] = ACTIONS(3244), + [anon_sym___thiscall] = ACTIONS(3244), + [anon_sym___vectorcall] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [sym_primitive_type] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3244), + [anon_sym_union] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_goto] = ACTIONS(3244), + [anon_sym___try] = ACTIONS(3244), + [anon_sym___leave] = ACTIONS(3244), + [anon_sym_not] = ACTIONS(3244), + [anon_sym_compl] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_sizeof] = ACTIONS(3244), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3244), + [anon_sym__Generic] = ACTIONS(3244), + [anon_sym_asm] = ACTIONS(3244), + [anon_sym___asm__] = ACTIONS(3244), + [sym_number_literal] = ACTIONS(3246), + [anon_sym_L_SQUOTE] = ACTIONS(3246), + [anon_sym_u_SQUOTE] = ACTIONS(3246), + [anon_sym_U_SQUOTE] = ACTIONS(3246), + [anon_sym_u8_SQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_L_DQUOTE] = ACTIONS(3246), + [anon_sym_u_DQUOTE] = ACTIONS(3246), + [anon_sym_U_DQUOTE] = ACTIONS(3246), + [anon_sym_u8_DQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [anon_sym_NULL] = ACTIONS(3244), + [anon_sym_nullptr] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym_explicit] = ACTIONS(3244), + [anon_sym_typename] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_static_assert] = ACTIONS(3244), + [anon_sym_concept] = ACTIONS(3244), + [anon_sym_co_return] = ACTIONS(3244), + [anon_sym_co_yield] = 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(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_requires] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), + }, + [862] = { + [sym_identifier] = ACTIONS(3122), + [aux_sym_preproc_include_token1] = ACTIONS(3122), + [aux_sym_preproc_def_token1] = ACTIONS(3122), + [aux_sym_preproc_if_token1] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3122), + [sym_preproc_directive] = ACTIONS(3122), + [anon_sym_LPAREN2] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym___extension__] = ACTIONS(3122), + [anon_sym_typedef] = ACTIONS(3122), + [anon_sym_extern] = ACTIONS(3122), + [anon_sym___attribute__] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3124), + [anon_sym___declspec] = ACTIONS(3122), + [anon_sym___based] = ACTIONS(3122), + [anon_sym___cdecl] = ACTIONS(3122), + [anon_sym___clrcall] = ACTIONS(3122), + [anon_sym___stdcall] = ACTIONS(3122), + [anon_sym___fastcall] = ACTIONS(3122), + [anon_sym___thiscall] = ACTIONS(3122), + [anon_sym___vectorcall] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_signed] = ACTIONS(3122), + [anon_sym_unsigned] = ACTIONS(3122), + [anon_sym_long] = ACTIONS(3122), + [anon_sym_short] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_register] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym___inline] = ACTIONS(3122), + [anon_sym___inline__] = ACTIONS(3122), + [anon_sym___forceinline] = ACTIONS(3122), + [anon_sym_thread_local] = ACTIONS(3122), + [anon_sym___thread] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym___restrict__] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym__Noreturn] = ACTIONS(3122), + [anon_sym_noreturn] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_union] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_goto] = ACTIONS(3122), + [anon_sym___try] = ACTIONS(3122), + [anon_sym___leave] = ACTIONS(3122), + [anon_sym_not] = ACTIONS(3122), + [anon_sym_compl] = ACTIONS(3122), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_sizeof] = ACTIONS(3122), + [anon_sym___alignof__] = ACTIONS(3122), + [anon_sym___alignof] = ACTIONS(3122), + [anon_sym__alignof] = ACTIONS(3122), + [anon_sym_alignof] = ACTIONS(3122), + [anon_sym__Alignof] = ACTIONS(3122), + [anon_sym_offsetof] = ACTIONS(3122), + [anon_sym__Generic] = ACTIONS(3122), + [anon_sym_asm] = ACTIONS(3122), + [anon_sym___asm__] = ACTIONS(3122), + [sym_number_literal] = ACTIONS(3124), + [anon_sym_L_SQUOTE] = ACTIONS(3124), + [anon_sym_u_SQUOTE] = ACTIONS(3124), + [anon_sym_U_SQUOTE] = ACTIONS(3124), + [anon_sym_u8_SQUOTE] = ACTIONS(3124), + [anon_sym_SQUOTE] = ACTIONS(3124), + [anon_sym_L_DQUOTE] = ACTIONS(3124), + [anon_sym_u_DQUOTE] = ACTIONS(3124), + [anon_sym_U_DQUOTE] = ACTIONS(3124), + [anon_sym_u8_DQUOTE] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [anon_sym_NULL] = ACTIONS(3122), + [anon_sym_nullptr] = ACTIONS(3122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3122), + [anon_sym_decltype] = ACTIONS(3122), + [anon_sym_virtual] = ACTIONS(3122), + [anon_sym_alignas] = ACTIONS(3122), + [anon_sym_explicit] = ACTIONS(3122), + [anon_sym_typename] = ACTIONS(3122), + [anon_sym_template] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_using] = ACTIONS(3122), + [anon_sym_static_assert] = ACTIONS(3122), + [anon_sym_concept] = ACTIONS(3122), + [anon_sym_co_return] = ACTIONS(3122), + [anon_sym_co_yield] = ACTIONS(3122), + [anon_sym_R_DQUOTE] = ACTIONS(3124), + [anon_sym_LR_DQUOTE] = ACTIONS(3124), + [anon_sym_uR_DQUOTE] = ACTIONS(3124), + [anon_sym_UR_DQUOTE] = ACTIONS(3124), + [anon_sym_u8R_DQUOTE] = ACTIONS(3124), + [anon_sym_co_await] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_requires] = ACTIONS(3122), + [sym_this] = ACTIONS(3122), + }, + [863] = { + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_include_token1] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token2] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym___cdecl] = ACTIONS(2997), + [anon_sym___clrcall] = ACTIONS(2997), + [anon_sym___stdcall] = ACTIONS(2997), + [anon_sym___fastcall] = ACTIONS(2997), + [anon_sym___thiscall] = ACTIONS(2997), + [anon_sym___vectorcall] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_switch] = ACTIONS(2997), + [anon_sym_case] = ACTIONS(2997), + [anon_sym_default] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym___try] = ACTIONS(2997), + [anon_sym___leave] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2997), + [anon_sym_compl] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(2997), + [anon_sym___alignof__] = ACTIONS(2997), + [anon_sym___alignof] = ACTIONS(2997), + [anon_sym__alignof] = ACTIONS(2997), + [anon_sym_alignof] = ACTIONS(2997), + [anon_sym__Alignof] = ACTIONS(2997), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym___asm__] = ACTIONS(2997), + [sym_number_literal] = ACTIONS(2999), + [anon_sym_L_SQUOTE] = ACTIONS(2999), + [anon_sym_u_SQUOTE] = ACTIONS(2999), + [anon_sym_U_SQUOTE] = ACTIONS(2999), + [anon_sym_u8_SQUOTE] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_L_DQUOTE] = ACTIONS(2999), + [anon_sym_u_DQUOTE] = ACTIONS(2999), + [anon_sym_U_DQUOTE] = ACTIONS(2999), + [anon_sym_u8_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [anon_sym_NULL] = ACTIONS(2997), + [anon_sym_nullptr] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_delete] = ACTIONS(2997), + [anon_sym_throw] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), + [anon_sym_concept] = ACTIONS(2997), + [anon_sym_co_return] = ACTIONS(2997), + [anon_sym_co_yield] = ACTIONS(2997), + [anon_sym_R_DQUOTE] = ACTIONS(2999), + [anon_sym_LR_DQUOTE] = ACTIONS(2999), + [anon_sym_uR_DQUOTE] = ACTIONS(2999), + [anon_sym_UR_DQUOTE] = ACTIONS(2999), + [anon_sym_u8R_DQUOTE] = ACTIONS(2999), + [anon_sym_co_await] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_requires] = ACTIONS(2997), + [sym_this] = ACTIONS(2997), + }, + [864] = { + [sym_identifier] = ACTIONS(3110), + [aux_sym_preproc_include_token1] = ACTIONS(3110), + [aux_sym_preproc_def_token1] = ACTIONS(3110), + [aux_sym_preproc_if_token1] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3110), + [sym_preproc_directive] = ACTIONS(3110), + [anon_sym_LPAREN2] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym___extension__] = ACTIONS(3110), + [anon_sym_typedef] = ACTIONS(3110), + [anon_sym_extern] = ACTIONS(3110), + [anon_sym___attribute__] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3112), + [anon_sym___declspec] = ACTIONS(3110), + [anon_sym___based] = ACTIONS(3110), + [anon_sym___cdecl] = ACTIONS(3110), + [anon_sym___clrcall] = ACTIONS(3110), + [anon_sym___stdcall] = ACTIONS(3110), + [anon_sym___fastcall] = ACTIONS(3110), + [anon_sym___thiscall] = ACTIONS(3110), + [anon_sym___vectorcall] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_signed] = ACTIONS(3110), + [anon_sym_unsigned] = ACTIONS(3110), + [anon_sym_long] = ACTIONS(3110), + [anon_sym_short] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_static] = ACTIONS(3110), + [anon_sym_register] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym___inline] = ACTIONS(3110), + [anon_sym___inline__] = ACTIONS(3110), + [anon_sym___forceinline] = ACTIONS(3110), + [anon_sym_thread_local] = ACTIONS(3110), + [anon_sym___thread] = ACTIONS(3110), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_constexpr] = ACTIONS(3110), + [anon_sym_volatile] = ACTIONS(3110), + [anon_sym_restrict] = ACTIONS(3110), + [anon_sym___restrict__] = ACTIONS(3110), + [anon_sym__Atomic] = ACTIONS(3110), + [anon_sym__Noreturn] = ACTIONS(3110), + [anon_sym_noreturn] = ACTIONS(3110), + [anon_sym_mutable] = ACTIONS(3110), + [anon_sym_constinit] = ACTIONS(3110), + [anon_sym_consteval] = ACTIONS(3110), + [sym_primitive_type] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_class] = ACTIONS(3110), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_union] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_switch] = ACTIONS(3110), + [anon_sym_case] = ACTIONS(3110), + [anon_sym_default] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_do] = ACTIONS(3110), + [anon_sym_for] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_goto] = ACTIONS(3110), + [anon_sym___try] = ACTIONS(3110), + [anon_sym___leave] = ACTIONS(3110), + [anon_sym_not] = ACTIONS(3110), + [anon_sym_compl] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_sizeof] = ACTIONS(3110), + [anon_sym___alignof__] = ACTIONS(3110), + [anon_sym___alignof] = ACTIONS(3110), + [anon_sym__alignof] = ACTIONS(3110), + [anon_sym_alignof] = ACTIONS(3110), + [anon_sym__Alignof] = ACTIONS(3110), + [anon_sym_offsetof] = ACTIONS(3110), + [anon_sym__Generic] = ACTIONS(3110), + [anon_sym_asm] = ACTIONS(3110), + [anon_sym___asm__] = ACTIONS(3110), + [sym_number_literal] = ACTIONS(3112), + [anon_sym_L_SQUOTE] = ACTIONS(3112), + [anon_sym_u_SQUOTE] = ACTIONS(3112), + [anon_sym_U_SQUOTE] = ACTIONS(3112), + [anon_sym_u8_SQUOTE] = ACTIONS(3112), + [anon_sym_SQUOTE] = ACTIONS(3112), + [anon_sym_L_DQUOTE] = ACTIONS(3112), + [anon_sym_u_DQUOTE] = ACTIONS(3112), + [anon_sym_U_DQUOTE] = ACTIONS(3112), + [anon_sym_u8_DQUOTE] = ACTIONS(3112), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [anon_sym_NULL] = ACTIONS(3110), + [anon_sym_nullptr] = ACTIONS(3110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3110), + [anon_sym_decltype] = ACTIONS(3110), + [anon_sym_virtual] = ACTIONS(3110), + [anon_sym_alignas] = ACTIONS(3110), + [anon_sym_explicit] = ACTIONS(3110), + [anon_sym_typename] = ACTIONS(3110), + [anon_sym_template] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_delete] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_namespace] = ACTIONS(3110), + [anon_sym_using] = ACTIONS(3110), + [anon_sym_static_assert] = ACTIONS(3110), + [anon_sym_concept] = ACTIONS(3110), + [anon_sym_co_return] = ACTIONS(3110), + [anon_sym_co_yield] = ACTIONS(3110), + [anon_sym_R_DQUOTE] = ACTIONS(3112), + [anon_sym_LR_DQUOTE] = ACTIONS(3112), + [anon_sym_uR_DQUOTE] = ACTIONS(3112), + [anon_sym_UR_DQUOTE] = ACTIONS(3112), + [anon_sym_u8R_DQUOTE] = ACTIONS(3112), + [anon_sym_co_await] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3110), + [anon_sym_requires] = ACTIONS(3110), + [sym_this] = ACTIONS(3110), + }, + [865] = { + [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_extern] = 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___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_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_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = 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(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_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_virtual] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_typename] = 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_using] = 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(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), + [sym_this] = ACTIONS(3163), + }, + [866] = { [sym_identifier] = ACTIONS(3090), [aux_sym_preproc_include_token1] = ACTIONS(3090), [aux_sym_preproc_def_token1] = ACTIONS(3090), [aux_sym_preproc_if_token1] = ACTIONS(3090), + [aux_sym_preproc_if_token2] = ACTIONS(3090), [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), [sym_preproc_directive] = ACTIONS(3090), @@ -213537,7 +209115,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3090), [anon_sym___vectorcall] = ACTIONS(3090), [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_RBRACE] = ACTIONS(3092), [anon_sym_signed] = ACTIONS(3090), [anon_sym_unsigned] = ACTIONS(3090), [anon_sym_long] = ACTIONS(3090), @@ -213637,1463 +209214,2520 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3090), [sym_this] = ACTIONS(3090), }, - [903] = { - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_include_token1] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [aux_sym_preproc_if_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), - [sym_preproc_directive] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3084), - [anon_sym___extension__] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym___attribute__] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), - [anon_sym___declspec] = ACTIONS(3082), - [anon_sym___based] = ACTIONS(3082), - [anon_sym___cdecl] = ACTIONS(3082), - [anon_sym___clrcall] = ACTIONS(3082), - [anon_sym___stdcall] = ACTIONS(3082), - [anon_sym___fastcall] = ACTIONS(3082), - [anon_sym___thiscall] = ACTIONS(3082), - [anon_sym___vectorcall] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym___inline] = ACTIONS(3082), - [anon_sym___inline__] = ACTIONS(3082), - [anon_sym___forceinline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym___thread] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym___restrict__] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym__Noreturn] = ACTIONS(3082), - [anon_sym_noreturn] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constinit] = ACTIONS(3082), - [anon_sym_consteval] = ACTIONS(3082), - [sym_primitive_type] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym___try] = ACTIONS(3082), - [anon_sym___leave] = ACTIONS(3082), - [anon_sym_not] = ACTIONS(3082), - [anon_sym_compl] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_sizeof] = ACTIONS(3082), - [anon_sym___alignof__] = ACTIONS(3082), - [anon_sym___alignof] = ACTIONS(3082), - [anon_sym__alignof] = ACTIONS(3082), - [anon_sym_alignof] = ACTIONS(3082), - [anon_sym__Alignof] = ACTIONS(3082), - [anon_sym_offsetof] = ACTIONS(3082), - [anon_sym__Generic] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym___asm__] = ACTIONS(3082), - [sym_number_literal] = ACTIONS(3084), - [anon_sym_L_SQUOTE] = ACTIONS(3084), - [anon_sym_u_SQUOTE] = ACTIONS(3084), - [anon_sym_U_SQUOTE] = ACTIONS(3084), - [anon_sym_u8_SQUOTE] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_L_DQUOTE] = ACTIONS(3084), - [anon_sym_u_DQUOTE] = ACTIONS(3084), - [anon_sym_U_DQUOTE] = ACTIONS(3084), - [anon_sym_u8_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [anon_sym_NULL] = ACTIONS(3082), - [anon_sym_nullptr] = ACTIONS(3082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3082), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_alignas] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_concept] = ACTIONS(3082), - [anon_sym_co_return] = ACTIONS(3082), - [anon_sym_co_yield] = ACTIONS(3082), - [anon_sym_R_DQUOTE] = ACTIONS(3084), - [anon_sym_LR_DQUOTE] = ACTIONS(3084), - [anon_sym_uR_DQUOTE] = ACTIONS(3084), - [anon_sym_UR_DQUOTE] = ACTIONS(3084), - [anon_sym_u8R_DQUOTE] = ACTIONS(3084), - [anon_sym_co_await] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_requires] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), + [867] = { + [sym_identifier] = ACTIONS(3167), + [aux_sym_preproc_include_token1] = ACTIONS(3167), + [aux_sym_preproc_def_token1] = ACTIONS(3167), + [aux_sym_preproc_if_token1] = ACTIONS(3167), + [aux_sym_preproc_if_token2] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [sym_preproc_directive] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym___extension__] = ACTIONS(3167), + [anon_sym_typedef] = ACTIONS(3167), + [anon_sym_extern] = ACTIONS(3167), + [anon_sym___attribute__] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3169), + [anon_sym___declspec] = ACTIONS(3167), + [anon_sym___based] = ACTIONS(3167), + [anon_sym___cdecl] = ACTIONS(3167), + [anon_sym___clrcall] = ACTIONS(3167), + [anon_sym___stdcall] = ACTIONS(3167), + [anon_sym___fastcall] = ACTIONS(3167), + [anon_sym___thiscall] = ACTIONS(3167), + [anon_sym___vectorcall] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_signed] = ACTIONS(3167), + [anon_sym_unsigned] = ACTIONS(3167), + [anon_sym_long] = ACTIONS(3167), + [anon_sym_short] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_register] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym___inline] = ACTIONS(3167), + [anon_sym___inline__] = ACTIONS(3167), + [anon_sym___forceinline] = ACTIONS(3167), + [anon_sym_thread_local] = ACTIONS(3167), + [anon_sym___thread] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_constexpr] = ACTIONS(3167), + [anon_sym_volatile] = ACTIONS(3167), + [anon_sym_restrict] = ACTIONS(3167), + [anon_sym___restrict__] = ACTIONS(3167), + [anon_sym__Atomic] = ACTIONS(3167), + [anon_sym__Noreturn] = ACTIONS(3167), + [anon_sym_noreturn] = ACTIONS(3167), + [anon_sym_mutable] = ACTIONS(3167), + [anon_sym_constinit] = ACTIONS(3167), + [anon_sym_consteval] = ACTIONS(3167), + [sym_primitive_type] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_goto] = ACTIONS(3167), + [anon_sym___try] = ACTIONS(3167), + [anon_sym___leave] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3167), + [anon_sym_compl] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3167), + [anon_sym___alignof__] = ACTIONS(3167), + [anon_sym___alignof] = ACTIONS(3167), + [anon_sym__alignof] = ACTIONS(3167), + [anon_sym_alignof] = ACTIONS(3167), + [anon_sym__Alignof] = ACTIONS(3167), + [anon_sym_offsetof] = ACTIONS(3167), + [anon_sym__Generic] = ACTIONS(3167), + [anon_sym_asm] = ACTIONS(3167), + [anon_sym___asm__] = ACTIONS(3167), + [sym_number_literal] = ACTIONS(3169), + [anon_sym_L_SQUOTE] = ACTIONS(3169), + [anon_sym_u_SQUOTE] = ACTIONS(3169), + [anon_sym_U_SQUOTE] = ACTIONS(3169), + [anon_sym_u8_SQUOTE] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_L_DQUOTE] = ACTIONS(3169), + [anon_sym_u_DQUOTE] = ACTIONS(3169), + [anon_sym_U_DQUOTE] = ACTIONS(3169), + [anon_sym_u8_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [anon_sym_NULL] = ACTIONS(3167), + [anon_sym_nullptr] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3167), + [anon_sym_decltype] = ACTIONS(3167), + [anon_sym_virtual] = ACTIONS(3167), + [anon_sym_alignas] = ACTIONS(3167), + [anon_sym_explicit] = ACTIONS(3167), + [anon_sym_typename] = ACTIONS(3167), + [anon_sym_template] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_static_assert] = ACTIONS(3167), + [anon_sym_concept] = ACTIONS(3167), + [anon_sym_co_return] = ACTIONS(3167), + [anon_sym_co_yield] = ACTIONS(3167), + [anon_sym_R_DQUOTE] = ACTIONS(3169), + [anon_sym_LR_DQUOTE] = ACTIONS(3169), + [anon_sym_uR_DQUOTE] = ACTIONS(3169), + [anon_sym_UR_DQUOTE] = ACTIONS(3169), + [anon_sym_u8R_DQUOTE] = ACTIONS(3169), + [anon_sym_co_await] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_requires] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), }, - [904] = { - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_include_token1] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym_SEMI] = ACTIONS(3300), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym___cdecl] = ACTIONS(3298), - [anon_sym___clrcall] = ACTIONS(3298), - [anon_sym___stdcall] = ACTIONS(3298), - [anon_sym___fastcall] = ACTIONS(3298), - [anon_sym___thiscall] = ACTIONS(3298), - [anon_sym___vectorcall] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3298), - [anon_sym_default] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_goto] = ACTIONS(3298), - [anon_sym___try] = ACTIONS(3298), - [anon_sym___leave] = ACTIONS(3298), - [anon_sym_not] = ACTIONS(3298), - [anon_sym_compl] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_sizeof] = ACTIONS(3298), - [anon_sym___alignof__] = ACTIONS(3298), - [anon_sym___alignof] = ACTIONS(3298), - [anon_sym__alignof] = ACTIONS(3298), - [anon_sym_alignof] = ACTIONS(3298), - [anon_sym__Alignof] = ACTIONS(3298), - [anon_sym_offsetof] = ACTIONS(3298), - [anon_sym__Generic] = ACTIONS(3298), - [anon_sym_asm] = ACTIONS(3298), - [anon_sym___asm__] = ACTIONS(3298), - [sym_number_literal] = ACTIONS(3300), - [anon_sym_L_SQUOTE] = ACTIONS(3300), - [anon_sym_u_SQUOTE] = ACTIONS(3300), - [anon_sym_U_SQUOTE] = ACTIONS(3300), - [anon_sym_u8_SQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_L_DQUOTE] = ACTIONS(3300), - [anon_sym_u_DQUOTE] = ACTIONS(3300), - [anon_sym_U_DQUOTE] = ACTIONS(3300), - [anon_sym_u8_DQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [anon_sym_NULL] = ACTIONS(3298), - [anon_sym_nullptr] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), - [anon_sym_concept] = ACTIONS(3298), - [anon_sym_co_return] = ACTIONS(3298), - [anon_sym_co_yield] = ACTIONS(3298), - [anon_sym_R_DQUOTE] = ACTIONS(3300), - [anon_sym_LR_DQUOTE] = ACTIONS(3300), - [anon_sym_uR_DQUOTE] = ACTIONS(3300), - [anon_sym_UR_DQUOTE] = ACTIONS(3300), - [anon_sym_u8R_DQUOTE] = ACTIONS(3300), - [anon_sym_co_await] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_requires] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), + [868] = { + [sym_identifier] = ACTIONS(3187), + [aux_sym_preproc_include_token1] = ACTIONS(3187), + [aux_sym_preproc_def_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token2] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3187), + [sym_preproc_directive] = ACTIONS(3187), + [anon_sym_LPAREN2] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym___extension__] = ACTIONS(3187), + [anon_sym_typedef] = ACTIONS(3187), + [anon_sym_extern] = ACTIONS(3187), + [anon_sym___attribute__] = ACTIONS(3187), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3189), + [anon_sym___declspec] = ACTIONS(3187), + [anon_sym___based] = ACTIONS(3187), + [anon_sym___cdecl] = ACTIONS(3187), + [anon_sym___clrcall] = ACTIONS(3187), + [anon_sym___stdcall] = ACTIONS(3187), + [anon_sym___fastcall] = ACTIONS(3187), + [anon_sym___thiscall] = ACTIONS(3187), + [anon_sym___vectorcall] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3187), + [anon_sym_unsigned] = ACTIONS(3187), + [anon_sym_long] = ACTIONS(3187), + [anon_sym_short] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_register] = ACTIONS(3187), + [anon_sym_inline] = ACTIONS(3187), + [anon_sym___inline] = ACTIONS(3187), + [anon_sym___inline__] = ACTIONS(3187), + [anon_sym___forceinline] = ACTIONS(3187), + [anon_sym_thread_local] = ACTIONS(3187), + [anon_sym___thread] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_constexpr] = ACTIONS(3187), + [anon_sym_volatile] = ACTIONS(3187), + [anon_sym_restrict] = ACTIONS(3187), + [anon_sym___restrict__] = ACTIONS(3187), + [anon_sym__Atomic] = ACTIONS(3187), + [anon_sym__Noreturn] = ACTIONS(3187), + [anon_sym_noreturn] = ACTIONS(3187), + [anon_sym_mutable] = ACTIONS(3187), + [anon_sym_constinit] = ACTIONS(3187), + [anon_sym_consteval] = ACTIONS(3187), + [sym_primitive_type] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_goto] = ACTIONS(3187), + [anon_sym___try] = ACTIONS(3187), + [anon_sym___leave] = ACTIONS(3187), + [anon_sym_not] = ACTIONS(3187), + [anon_sym_compl] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_sizeof] = ACTIONS(3187), + [anon_sym___alignof__] = ACTIONS(3187), + [anon_sym___alignof] = ACTIONS(3187), + [anon_sym__alignof] = ACTIONS(3187), + [anon_sym_alignof] = ACTIONS(3187), + [anon_sym__Alignof] = ACTIONS(3187), + [anon_sym_offsetof] = ACTIONS(3187), + [anon_sym__Generic] = ACTIONS(3187), + [anon_sym_asm] = ACTIONS(3187), + [anon_sym___asm__] = ACTIONS(3187), + [sym_number_literal] = ACTIONS(3189), + [anon_sym_L_SQUOTE] = ACTIONS(3189), + [anon_sym_u_SQUOTE] = ACTIONS(3189), + [anon_sym_U_SQUOTE] = ACTIONS(3189), + [anon_sym_u8_SQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_L_DQUOTE] = ACTIONS(3189), + [anon_sym_u_DQUOTE] = ACTIONS(3189), + [anon_sym_U_DQUOTE] = ACTIONS(3189), + [anon_sym_u8_DQUOTE] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3187), + [anon_sym_nullptr] = ACTIONS(3187), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3187), + [anon_sym_decltype] = ACTIONS(3187), + [anon_sym_virtual] = ACTIONS(3187), + [anon_sym_alignas] = ACTIONS(3187), + [anon_sym_explicit] = ACTIONS(3187), + [anon_sym_typename] = ACTIONS(3187), + [anon_sym_template] = ACTIONS(3187), + [anon_sym_operator] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_static_assert] = ACTIONS(3187), + [anon_sym_concept] = ACTIONS(3187), + [anon_sym_co_return] = ACTIONS(3187), + [anon_sym_co_yield] = ACTIONS(3187), + [anon_sym_R_DQUOTE] = ACTIONS(3189), + [anon_sym_LR_DQUOTE] = ACTIONS(3189), + [anon_sym_uR_DQUOTE] = ACTIONS(3189), + [anon_sym_UR_DQUOTE] = ACTIONS(3189), + [anon_sym_u8R_DQUOTE] = ACTIONS(3189), + [anon_sym_co_await] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_requires] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), }, - [905] = { - [sym_identifier] = ACTIONS(3302), - [aux_sym_preproc_include_token1] = ACTIONS(3302), - [aux_sym_preproc_def_token1] = ACTIONS(3302), - [aux_sym_preproc_if_token1] = ACTIONS(3302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), - [sym_preproc_directive] = ACTIONS(3302), - [anon_sym_LPAREN2] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_AMP_AMP] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym___extension__] = ACTIONS(3302), - [anon_sym_typedef] = ACTIONS(3302), - [anon_sym_extern] = ACTIONS(3302), - [anon_sym___attribute__] = ACTIONS(3302), - [anon_sym_COLON_COLON] = ACTIONS(3304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), - [anon_sym___declspec] = ACTIONS(3302), - [anon_sym___based] = ACTIONS(3302), - [anon_sym___cdecl] = ACTIONS(3302), - [anon_sym___clrcall] = ACTIONS(3302), - [anon_sym___stdcall] = ACTIONS(3302), - [anon_sym___fastcall] = ACTIONS(3302), - [anon_sym___thiscall] = ACTIONS(3302), - [anon_sym___vectorcall] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_signed] = ACTIONS(3302), - [anon_sym_unsigned] = ACTIONS(3302), - [anon_sym_long] = ACTIONS(3302), - [anon_sym_short] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym___inline] = ACTIONS(3302), - [anon_sym___inline__] = ACTIONS(3302), - [anon_sym___forceinline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym___thread] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym___restrict__] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym__Noreturn] = ACTIONS(3302), - [anon_sym_noreturn] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constinit] = ACTIONS(3302), - [anon_sym_consteval] = ACTIONS(3302), - [sym_primitive_type] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_struct] = ACTIONS(3302), - [anon_sym_union] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_goto] = ACTIONS(3302), - [anon_sym___try] = ACTIONS(3302), - [anon_sym___leave] = ACTIONS(3302), - [anon_sym_not] = ACTIONS(3302), - [anon_sym_compl] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_sizeof] = ACTIONS(3302), - [anon_sym___alignof__] = ACTIONS(3302), - [anon_sym___alignof] = ACTIONS(3302), - [anon_sym__alignof] = ACTIONS(3302), - [anon_sym_alignof] = ACTIONS(3302), - [anon_sym__Alignof] = ACTIONS(3302), - [anon_sym_offsetof] = ACTIONS(3302), - [anon_sym__Generic] = ACTIONS(3302), - [anon_sym_asm] = ACTIONS(3302), - [anon_sym___asm__] = ACTIONS(3302), - [sym_number_literal] = ACTIONS(3304), - [anon_sym_L_SQUOTE] = ACTIONS(3304), - [anon_sym_u_SQUOTE] = ACTIONS(3304), - [anon_sym_U_SQUOTE] = ACTIONS(3304), - [anon_sym_u8_SQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_L_DQUOTE] = ACTIONS(3304), - [anon_sym_u_DQUOTE] = ACTIONS(3304), - [anon_sym_U_DQUOTE] = ACTIONS(3304), - [anon_sym_u8_DQUOTE] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [anon_sym_NULL] = ACTIONS(3302), - [anon_sym_nullptr] = ACTIONS(3302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3302), - [anon_sym_decltype] = ACTIONS(3302), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_alignas] = ACTIONS(3302), - [anon_sym_explicit] = ACTIONS(3302), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_template] = ACTIONS(3302), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_static_assert] = ACTIONS(3302), - [anon_sym_concept] = ACTIONS(3302), - [anon_sym_co_return] = ACTIONS(3302), - [anon_sym_co_yield] = ACTIONS(3302), - [anon_sym_R_DQUOTE] = ACTIONS(3304), - [anon_sym_LR_DQUOTE] = ACTIONS(3304), - [anon_sym_uR_DQUOTE] = ACTIONS(3304), - [anon_sym_UR_DQUOTE] = ACTIONS(3304), - [anon_sym_u8R_DQUOTE] = ACTIONS(3304), - [anon_sym_co_await] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_requires] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), + [869] = { + [sym_identifier] = ACTIONS(3175), + [aux_sym_preproc_include_token1] = ACTIONS(3175), + [aux_sym_preproc_def_token1] = ACTIONS(3175), + [aux_sym_preproc_if_token1] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3175), + [sym_preproc_directive] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym___extension__] = ACTIONS(3175), + [anon_sym_typedef] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym___attribute__] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), + [anon_sym___declspec] = ACTIONS(3175), + [anon_sym___based] = ACTIONS(3175), + [anon_sym___cdecl] = ACTIONS(3175), + [anon_sym___clrcall] = ACTIONS(3175), + [anon_sym___stdcall] = ACTIONS(3175), + [anon_sym___fastcall] = ACTIONS(3175), + [anon_sym___thiscall] = ACTIONS(3175), + [anon_sym___vectorcall] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_signed] = ACTIONS(3175), + [anon_sym_unsigned] = ACTIONS(3175), + [anon_sym_long] = ACTIONS(3175), + [anon_sym_short] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_register] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym___inline] = ACTIONS(3175), + [anon_sym___inline__] = ACTIONS(3175), + [anon_sym___forceinline] = ACTIONS(3175), + [anon_sym_thread_local] = ACTIONS(3175), + [anon_sym___thread] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_constexpr] = ACTIONS(3175), + [anon_sym_volatile] = ACTIONS(3175), + [anon_sym_restrict] = ACTIONS(3175), + [anon_sym___restrict__] = ACTIONS(3175), + [anon_sym__Atomic] = ACTIONS(3175), + [anon_sym__Noreturn] = ACTIONS(3175), + [anon_sym_noreturn] = ACTIONS(3175), + [anon_sym_mutable] = ACTIONS(3175), + [anon_sym_constinit] = ACTIONS(3175), + [anon_sym_consteval] = ACTIONS(3175), + [sym_primitive_type] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym___try] = ACTIONS(3175), + [anon_sym___leave] = ACTIONS(3175), + [anon_sym_not] = ACTIONS(3175), + [anon_sym_compl] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3175), + [anon_sym___alignof__] = ACTIONS(3175), + [anon_sym___alignof] = ACTIONS(3175), + [anon_sym__alignof] = ACTIONS(3175), + [anon_sym_alignof] = ACTIONS(3175), + [anon_sym__Alignof] = ACTIONS(3175), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3175), + [anon_sym_asm] = ACTIONS(3175), + [anon_sym___asm__] = ACTIONS(3175), + [sym_number_literal] = ACTIONS(3177), + [anon_sym_L_SQUOTE] = ACTIONS(3177), + [anon_sym_u_SQUOTE] = ACTIONS(3177), + [anon_sym_U_SQUOTE] = ACTIONS(3177), + [anon_sym_u8_SQUOTE] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_L_DQUOTE] = ACTIONS(3177), + [anon_sym_u_DQUOTE] = ACTIONS(3177), + [anon_sym_U_DQUOTE] = ACTIONS(3177), + [anon_sym_u8_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [anon_sym_NULL] = ACTIONS(3175), + [anon_sym_nullptr] = ACTIONS(3175), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3175), + [anon_sym_decltype] = ACTIONS(3175), + [anon_sym_virtual] = ACTIONS(3175), + [anon_sym_alignas] = ACTIONS(3175), + [anon_sym_explicit] = ACTIONS(3175), + [anon_sym_typename] = ACTIONS(3175), + [anon_sym_template] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_static_assert] = ACTIONS(3175), + [anon_sym_concept] = ACTIONS(3175), + [anon_sym_co_return] = ACTIONS(3175), + [anon_sym_co_yield] = ACTIONS(3175), + [anon_sym_R_DQUOTE] = ACTIONS(3177), + [anon_sym_LR_DQUOTE] = ACTIONS(3177), + [anon_sym_uR_DQUOTE] = ACTIONS(3177), + [anon_sym_UR_DQUOTE] = ACTIONS(3177), + [anon_sym_u8R_DQUOTE] = ACTIONS(3177), + [anon_sym_co_await] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_requires] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), }, - [906] = { - [sym_identifier] = ACTIONS(3186), - [aux_sym_preproc_include_token1] = ACTIONS(3186), - [aux_sym_preproc_def_token1] = ACTIONS(3186), - [aux_sym_preproc_if_token1] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3186), - [sym_preproc_directive] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym___extension__] = ACTIONS(3186), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym___attribute__] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3188), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3188), - [anon_sym___declspec] = ACTIONS(3186), - [anon_sym___based] = ACTIONS(3186), - [anon_sym___cdecl] = ACTIONS(3186), - [anon_sym___clrcall] = ACTIONS(3186), - [anon_sym___stdcall] = ACTIONS(3186), - [anon_sym___fastcall] = ACTIONS(3186), - [anon_sym___thiscall] = ACTIONS(3186), - [anon_sym___vectorcall] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_signed] = ACTIONS(3186), - [anon_sym_unsigned] = ACTIONS(3186), - [anon_sym_long] = ACTIONS(3186), - [anon_sym_short] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_register] = ACTIONS(3186), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym___inline] = ACTIONS(3186), - [anon_sym___inline__] = ACTIONS(3186), - [anon_sym___forceinline] = ACTIONS(3186), - [anon_sym_thread_local] = ACTIONS(3186), - [anon_sym___thread] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_constexpr] = ACTIONS(3186), - [anon_sym_volatile] = ACTIONS(3186), - [anon_sym_restrict] = ACTIONS(3186), - [anon_sym___restrict__] = ACTIONS(3186), - [anon_sym__Atomic] = ACTIONS(3186), - [anon_sym__Noreturn] = ACTIONS(3186), - [anon_sym_noreturn] = ACTIONS(3186), - [anon_sym_mutable] = ACTIONS(3186), - [anon_sym_constinit] = ACTIONS(3186), - [anon_sym_consteval] = ACTIONS(3186), - [sym_primitive_type] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_struct] = ACTIONS(3186), - [anon_sym_union] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_goto] = ACTIONS(3186), - [anon_sym___try] = ACTIONS(3186), - [anon_sym___leave] = ACTIONS(3186), - [anon_sym_not] = ACTIONS(3186), - [anon_sym_compl] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_sizeof] = ACTIONS(3186), - [anon_sym___alignof__] = ACTIONS(3186), - [anon_sym___alignof] = ACTIONS(3186), - [anon_sym__alignof] = ACTIONS(3186), - [anon_sym_alignof] = ACTIONS(3186), - [anon_sym__Alignof] = ACTIONS(3186), - [anon_sym_offsetof] = ACTIONS(3186), - [anon_sym__Generic] = ACTIONS(3186), - [anon_sym_asm] = ACTIONS(3186), - [anon_sym___asm__] = ACTIONS(3186), - [sym_number_literal] = ACTIONS(3188), - [anon_sym_L_SQUOTE] = ACTIONS(3188), - [anon_sym_u_SQUOTE] = ACTIONS(3188), - [anon_sym_U_SQUOTE] = ACTIONS(3188), - [anon_sym_u8_SQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_L_DQUOTE] = ACTIONS(3188), - [anon_sym_u_DQUOTE] = ACTIONS(3188), - [anon_sym_U_DQUOTE] = ACTIONS(3188), - [anon_sym_u8_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [anon_sym_NULL] = ACTIONS(3186), - [anon_sym_nullptr] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3186), - [anon_sym_decltype] = ACTIONS(3186), - [anon_sym_virtual] = ACTIONS(3186), - [anon_sym_alignas] = ACTIONS(3186), - [anon_sym_explicit] = ACTIONS(3186), - [anon_sym_typename] = ACTIONS(3186), - [anon_sym_template] = ACTIONS(3186), - [anon_sym_operator] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_static_assert] = ACTIONS(3186), - [anon_sym_concept] = ACTIONS(3186), - [anon_sym_co_return] = ACTIONS(3186), - [anon_sym_co_yield] = ACTIONS(3186), - [anon_sym_R_DQUOTE] = ACTIONS(3188), - [anon_sym_LR_DQUOTE] = ACTIONS(3188), - [anon_sym_uR_DQUOTE] = ACTIONS(3188), - [anon_sym_UR_DQUOTE] = ACTIONS(3188), - [anon_sym_u8R_DQUOTE] = ACTIONS(3188), - [anon_sym_co_await] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_requires] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), + [870] = { + [sym_identifier] = ACTIONS(3187), + [aux_sym_preproc_include_token1] = ACTIONS(3187), + [aux_sym_preproc_def_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3187), + [sym_preproc_directive] = ACTIONS(3187), + [anon_sym_LPAREN2] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym___extension__] = ACTIONS(3187), + [anon_sym_typedef] = ACTIONS(3187), + [anon_sym_extern] = ACTIONS(3187), + [anon_sym___attribute__] = ACTIONS(3187), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3189), + [anon_sym___declspec] = ACTIONS(3187), + [anon_sym___based] = ACTIONS(3187), + [anon_sym___cdecl] = ACTIONS(3187), + [anon_sym___clrcall] = ACTIONS(3187), + [anon_sym___stdcall] = ACTIONS(3187), + [anon_sym___fastcall] = ACTIONS(3187), + [anon_sym___thiscall] = ACTIONS(3187), + [anon_sym___vectorcall] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3187), + [anon_sym_unsigned] = ACTIONS(3187), + [anon_sym_long] = ACTIONS(3187), + [anon_sym_short] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_register] = ACTIONS(3187), + [anon_sym_inline] = ACTIONS(3187), + [anon_sym___inline] = ACTIONS(3187), + [anon_sym___inline__] = ACTIONS(3187), + [anon_sym___forceinline] = ACTIONS(3187), + [anon_sym_thread_local] = ACTIONS(3187), + [anon_sym___thread] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_constexpr] = ACTIONS(3187), + [anon_sym_volatile] = ACTIONS(3187), + [anon_sym_restrict] = ACTIONS(3187), + [anon_sym___restrict__] = ACTIONS(3187), + [anon_sym__Atomic] = ACTIONS(3187), + [anon_sym__Noreturn] = ACTIONS(3187), + [anon_sym_noreturn] = ACTIONS(3187), + [anon_sym_mutable] = ACTIONS(3187), + [anon_sym_constinit] = ACTIONS(3187), + [anon_sym_consteval] = ACTIONS(3187), + [sym_primitive_type] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_goto] = ACTIONS(3187), + [anon_sym___try] = ACTIONS(3187), + [anon_sym___leave] = ACTIONS(3187), + [anon_sym_not] = ACTIONS(3187), + [anon_sym_compl] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_sizeof] = ACTIONS(3187), + [anon_sym___alignof__] = ACTIONS(3187), + [anon_sym___alignof] = ACTIONS(3187), + [anon_sym__alignof] = ACTIONS(3187), + [anon_sym_alignof] = ACTIONS(3187), + [anon_sym__Alignof] = ACTIONS(3187), + [anon_sym_offsetof] = ACTIONS(3187), + [anon_sym__Generic] = ACTIONS(3187), + [anon_sym_asm] = ACTIONS(3187), + [anon_sym___asm__] = ACTIONS(3187), + [sym_number_literal] = ACTIONS(3189), + [anon_sym_L_SQUOTE] = ACTIONS(3189), + [anon_sym_u_SQUOTE] = ACTIONS(3189), + [anon_sym_U_SQUOTE] = ACTIONS(3189), + [anon_sym_u8_SQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_L_DQUOTE] = ACTIONS(3189), + [anon_sym_u_DQUOTE] = ACTIONS(3189), + [anon_sym_U_DQUOTE] = ACTIONS(3189), + [anon_sym_u8_DQUOTE] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3187), + [anon_sym_nullptr] = ACTIONS(3187), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3187), + [anon_sym_decltype] = ACTIONS(3187), + [anon_sym_virtual] = ACTIONS(3187), + [anon_sym_alignas] = ACTIONS(3187), + [anon_sym_explicit] = ACTIONS(3187), + [anon_sym_typename] = ACTIONS(3187), + [anon_sym_template] = ACTIONS(3187), + [anon_sym_operator] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_static_assert] = ACTIONS(3187), + [anon_sym_concept] = ACTIONS(3187), + [anon_sym_co_return] = ACTIONS(3187), + [anon_sym_co_yield] = ACTIONS(3187), + [anon_sym_R_DQUOTE] = ACTIONS(3189), + [anon_sym_LR_DQUOTE] = ACTIONS(3189), + [anon_sym_uR_DQUOTE] = ACTIONS(3189), + [anon_sym_UR_DQUOTE] = ACTIONS(3189), + [anon_sym_u8R_DQUOTE] = ACTIONS(3189), + [anon_sym_co_await] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_requires] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), }, - [907] = { - [sym_identifier] = ACTIONS(3288), - [aux_sym_preproc_include_token1] = ACTIONS(3288), - [aux_sym_preproc_def_token1] = ACTIONS(3288), - [aux_sym_preproc_if_token1] = ACTIONS(3288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3288), - [sym_preproc_directive] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3290), - [anon_sym_AMP_AMP] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym___extension__] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym___attribute__] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3290), - [anon_sym___declspec] = ACTIONS(3288), - [anon_sym___based] = ACTIONS(3288), - [anon_sym___cdecl] = ACTIONS(3288), - [anon_sym___clrcall] = ACTIONS(3288), - [anon_sym___stdcall] = ACTIONS(3288), - [anon_sym___fastcall] = ACTIONS(3288), - [anon_sym___thiscall] = ACTIONS(3288), - [anon_sym___vectorcall] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_signed] = ACTIONS(3288), - [anon_sym_unsigned] = ACTIONS(3288), - [anon_sym_long] = ACTIONS(3288), - [anon_sym_short] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_register] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym___inline] = ACTIONS(3288), - [anon_sym___inline__] = ACTIONS(3288), - [anon_sym___forceinline] = ACTIONS(3288), - [anon_sym_thread_local] = ACTIONS(3288), - [anon_sym___thread] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_constexpr] = ACTIONS(3288), - [anon_sym_volatile] = ACTIONS(3288), - [anon_sym_restrict] = ACTIONS(3288), - [anon_sym___restrict__] = ACTIONS(3288), - [anon_sym__Atomic] = ACTIONS(3288), - [anon_sym__Noreturn] = ACTIONS(3288), - [anon_sym_noreturn] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(3288), - [anon_sym_constinit] = ACTIONS(3288), - [anon_sym_consteval] = ACTIONS(3288), - [sym_primitive_type] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3288), - [anon_sym_union] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_goto] = ACTIONS(3288), - [anon_sym___try] = ACTIONS(3288), - [anon_sym___leave] = ACTIONS(3288), - [anon_sym_not] = ACTIONS(3288), - [anon_sym_compl] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_sizeof] = ACTIONS(3288), - [anon_sym___alignof__] = ACTIONS(3288), - [anon_sym___alignof] = ACTIONS(3288), - [anon_sym__alignof] = ACTIONS(3288), - [anon_sym_alignof] = ACTIONS(3288), - [anon_sym__Alignof] = ACTIONS(3288), - [anon_sym_offsetof] = ACTIONS(3288), - [anon_sym__Generic] = ACTIONS(3288), - [anon_sym_asm] = ACTIONS(3288), - [anon_sym___asm__] = ACTIONS(3288), - [sym_number_literal] = ACTIONS(3290), - [anon_sym_L_SQUOTE] = ACTIONS(3290), - [anon_sym_u_SQUOTE] = ACTIONS(3290), - [anon_sym_U_SQUOTE] = ACTIONS(3290), - [anon_sym_u8_SQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_L_DQUOTE] = ACTIONS(3290), - [anon_sym_u_DQUOTE] = ACTIONS(3290), - [anon_sym_U_DQUOTE] = ACTIONS(3290), - [anon_sym_u8_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [anon_sym_NULL] = ACTIONS(3288), - [anon_sym_nullptr] = ACTIONS(3288), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3288), - [anon_sym_decltype] = ACTIONS(3288), - [anon_sym_virtual] = ACTIONS(3288), - [anon_sym_alignas] = ACTIONS(3288), - [anon_sym_explicit] = ACTIONS(3288), - [anon_sym_typename] = ACTIONS(3288), - [anon_sym_template] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_static_assert] = ACTIONS(3288), - [anon_sym_concept] = ACTIONS(3288), - [anon_sym_co_return] = ACTIONS(3288), - [anon_sym_co_yield] = 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(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_requires] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), + [871] = { + [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_extern] = 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___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_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = 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_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_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_virtual] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_typename] = 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_using] = 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_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), + [sym_this] = ACTIONS(3171), }, - [908] = { - [sym_identifier] = ACTIONS(3072), - [aux_sym_preproc_include_token1] = ACTIONS(3072), - [aux_sym_preproc_def_token1] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3072), - [sym_preproc_directive] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym___extension__] = ACTIONS(3072), - [anon_sym_typedef] = ACTIONS(3072), - [anon_sym_extern] = ACTIONS(3072), - [anon_sym___attribute__] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3074), - [anon_sym___declspec] = ACTIONS(3072), - [anon_sym___based] = ACTIONS(3072), - [anon_sym___cdecl] = ACTIONS(3072), - [anon_sym___clrcall] = ACTIONS(3072), - [anon_sym___stdcall] = ACTIONS(3072), - [anon_sym___fastcall] = ACTIONS(3072), - [anon_sym___thiscall] = ACTIONS(3072), - [anon_sym___vectorcall] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_signed] = ACTIONS(3072), - [anon_sym_unsigned] = ACTIONS(3072), - [anon_sym_long] = ACTIONS(3072), - [anon_sym_short] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_register] = ACTIONS(3072), - [anon_sym_inline] = ACTIONS(3072), - [anon_sym___inline] = ACTIONS(3072), - [anon_sym___inline__] = ACTIONS(3072), - [anon_sym___forceinline] = ACTIONS(3072), - [anon_sym_thread_local] = ACTIONS(3072), - [anon_sym___thread] = ACTIONS(3072), - [anon_sym_const] = ACTIONS(3072), - [anon_sym_constexpr] = ACTIONS(3072), - [anon_sym_volatile] = ACTIONS(3072), - [anon_sym_restrict] = ACTIONS(3072), - [anon_sym___restrict__] = ACTIONS(3072), - [anon_sym__Atomic] = ACTIONS(3072), - [anon_sym__Noreturn] = ACTIONS(3072), - [anon_sym_noreturn] = ACTIONS(3072), - [anon_sym_mutable] = ACTIONS(3072), - [anon_sym_constinit] = ACTIONS(3072), - [anon_sym_consteval] = ACTIONS(3072), - [sym_primitive_type] = ACTIONS(3072), - [anon_sym_enum] = ACTIONS(3072), - [anon_sym_class] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_switch] = ACTIONS(3072), - [anon_sym_case] = ACTIONS(3072), - [anon_sym_default] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_break] = ACTIONS(3072), - [anon_sym_continue] = ACTIONS(3072), - [anon_sym_goto] = ACTIONS(3072), - [anon_sym___try] = ACTIONS(3072), - [anon_sym___leave] = ACTIONS(3072), - [anon_sym_not] = ACTIONS(3072), - [anon_sym_compl] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_sizeof] = ACTIONS(3072), - [anon_sym___alignof__] = ACTIONS(3072), - [anon_sym___alignof] = ACTIONS(3072), - [anon_sym__alignof] = ACTIONS(3072), - [anon_sym_alignof] = ACTIONS(3072), - [anon_sym__Alignof] = ACTIONS(3072), - [anon_sym_offsetof] = ACTIONS(3072), - [anon_sym__Generic] = ACTIONS(3072), - [anon_sym_asm] = ACTIONS(3072), - [anon_sym___asm__] = ACTIONS(3072), - [sym_number_literal] = ACTIONS(3074), - [anon_sym_L_SQUOTE] = ACTIONS(3074), - [anon_sym_u_SQUOTE] = ACTIONS(3074), - [anon_sym_U_SQUOTE] = ACTIONS(3074), - [anon_sym_u8_SQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_L_DQUOTE] = ACTIONS(3074), - [anon_sym_u_DQUOTE] = ACTIONS(3074), - [anon_sym_U_DQUOTE] = ACTIONS(3074), - [anon_sym_u8_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [sym_true] = ACTIONS(3072), - [sym_false] = ACTIONS(3072), - [anon_sym_NULL] = ACTIONS(3072), - [anon_sym_nullptr] = ACTIONS(3072), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3072), - [anon_sym_decltype] = ACTIONS(3072), - [anon_sym_virtual] = ACTIONS(3072), - [anon_sym_alignas] = ACTIONS(3072), - [anon_sym_explicit] = ACTIONS(3072), - [anon_sym_typename] = ACTIONS(3072), - [anon_sym_template] = ACTIONS(3072), - [anon_sym_operator] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_delete] = ACTIONS(3072), - [anon_sym_throw] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_using] = ACTIONS(3072), - [anon_sym_static_assert] = ACTIONS(3072), - [anon_sym_concept] = ACTIONS(3072), - [anon_sym_co_return] = ACTIONS(3072), - [anon_sym_co_yield] = ACTIONS(3072), - [anon_sym_R_DQUOTE] = ACTIONS(3074), - [anon_sym_LR_DQUOTE] = ACTIONS(3074), - [anon_sym_uR_DQUOTE] = ACTIONS(3074), - [anon_sym_UR_DQUOTE] = ACTIONS(3074), - [anon_sym_u8R_DQUOTE] = ACTIONS(3074), - [anon_sym_co_await] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_requires] = ACTIONS(3072), - [sym_this] = ACTIONS(3072), + [872] = { + [sym_identifier] = ACTIONS(3215), + [aux_sym_preproc_include_token1] = ACTIONS(3215), + [aux_sym_preproc_def_token1] = ACTIONS(3215), + [aux_sym_preproc_if_token1] = ACTIONS(3215), + [aux_sym_preproc_if_token2] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3215), + [sym_preproc_directive] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_AMP_AMP] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym___extension__] = ACTIONS(3215), + [anon_sym_typedef] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym___attribute__] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), + [anon_sym___declspec] = ACTIONS(3215), + [anon_sym___based] = ACTIONS(3215), + [anon_sym___cdecl] = ACTIONS(3215), + [anon_sym___clrcall] = ACTIONS(3215), + [anon_sym___stdcall] = ACTIONS(3215), + [anon_sym___fastcall] = ACTIONS(3215), + [anon_sym___thiscall] = ACTIONS(3215), + [anon_sym___vectorcall] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_signed] = ACTIONS(3215), + [anon_sym_unsigned] = ACTIONS(3215), + [anon_sym_long] = ACTIONS(3215), + [anon_sym_short] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_register] = ACTIONS(3215), + [anon_sym_inline] = ACTIONS(3215), + [anon_sym___inline] = ACTIONS(3215), + [anon_sym___inline__] = ACTIONS(3215), + [anon_sym___forceinline] = ACTIONS(3215), + [anon_sym_thread_local] = ACTIONS(3215), + [anon_sym___thread] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_constexpr] = ACTIONS(3215), + [anon_sym_volatile] = ACTIONS(3215), + [anon_sym_restrict] = ACTIONS(3215), + [anon_sym___restrict__] = ACTIONS(3215), + [anon_sym__Atomic] = ACTIONS(3215), + [anon_sym__Noreturn] = ACTIONS(3215), + [anon_sym_noreturn] = ACTIONS(3215), + [anon_sym_mutable] = ACTIONS(3215), + [anon_sym_constinit] = ACTIONS(3215), + [anon_sym_consteval] = ACTIONS(3215), + [sym_primitive_type] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3215), + [anon_sym_union] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_case] = ACTIONS(3215), + [anon_sym_default] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_goto] = ACTIONS(3215), + [anon_sym___try] = ACTIONS(3215), + [anon_sym___leave] = ACTIONS(3215), + [anon_sym_not] = ACTIONS(3215), + [anon_sym_compl] = ACTIONS(3215), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_sizeof] = ACTIONS(3215), + [anon_sym___alignof__] = ACTIONS(3215), + [anon_sym___alignof] = ACTIONS(3215), + [anon_sym__alignof] = ACTIONS(3215), + [anon_sym_alignof] = ACTIONS(3215), + [anon_sym__Alignof] = ACTIONS(3215), + [anon_sym_offsetof] = ACTIONS(3215), + [anon_sym__Generic] = ACTIONS(3215), + [anon_sym_asm] = ACTIONS(3215), + [anon_sym___asm__] = ACTIONS(3215), + [sym_number_literal] = ACTIONS(3217), + [anon_sym_L_SQUOTE] = ACTIONS(3217), + [anon_sym_u_SQUOTE] = ACTIONS(3217), + [anon_sym_U_SQUOTE] = ACTIONS(3217), + [anon_sym_u8_SQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_L_DQUOTE] = ACTIONS(3217), + [anon_sym_u_DQUOTE] = ACTIONS(3217), + [anon_sym_U_DQUOTE] = ACTIONS(3217), + [anon_sym_u8_DQUOTE] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [sym_true] = ACTIONS(3215), + [sym_false] = ACTIONS(3215), + [anon_sym_NULL] = ACTIONS(3215), + [anon_sym_nullptr] = ACTIONS(3215), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3215), + [anon_sym_decltype] = ACTIONS(3215), + [anon_sym_virtual] = ACTIONS(3215), + [anon_sym_alignas] = ACTIONS(3215), + [anon_sym_explicit] = ACTIONS(3215), + [anon_sym_typename] = ACTIONS(3215), + [anon_sym_template] = ACTIONS(3215), + [anon_sym_operator] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_delete] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_namespace] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_static_assert] = ACTIONS(3215), + [anon_sym_concept] = ACTIONS(3215), + [anon_sym_co_return] = ACTIONS(3215), + [anon_sym_co_yield] = ACTIONS(3215), + [anon_sym_R_DQUOTE] = ACTIONS(3217), + [anon_sym_LR_DQUOTE] = ACTIONS(3217), + [anon_sym_uR_DQUOTE] = ACTIONS(3217), + [anon_sym_UR_DQUOTE] = ACTIONS(3217), + [anon_sym_u8R_DQUOTE] = ACTIONS(3217), + [anon_sym_co_await] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_requires] = ACTIONS(3215), + [sym_this] = ACTIONS(3215), }, - [909] = { - [sym_identifier] = ACTIONS(3058), - [aux_sym_preproc_include_token1] = ACTIONS(3058), - [aux_sym_preproc_def_token1] = ACTIONS(3058), - [aux_sym_preproc_if_token1] = ACTIONS(3058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3058), - [sym_preproc_directive] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_SEMI] = ACTIONS(3060), - [anon_sym___extension__] = ACTIONS(3058), - [anon_sym_typedef] = ACTIONS(3058), - [anon_sym_extern] = ACTIONS(3058), - [anon_sym___attribute__] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3060), - [anon_sym___declspec] = ACTIONS(3058), - [anon_sym___based] = ACTIONS(3058), - [anon_sym___cdecl] = ACTIONS(3058), - [anon_sym___clrcall] = ACTIONS(3058), - [anon_sym___stdcall] = ACTIONS(3058), - [anon_sym___fastcall] = ACTIONS(3058), - [anon_sym___thiscall] = ACTIONS(3058), - [anon_sym___vectorcall] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_signed] = ACTIONS(3058), - [anon_sym_unsigned] = ACTIONS(3058), - [anon_sym_long] = ACTIONS(3058), - [anon_sym_short] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_static] = ACTIONS(3058), - [anon_sym_register] = ACTIONS(3058), - [anon_sym_inline] = ACTIONS(3058), - [anon_sym___inline] = ACTIONS(3058), - [anon_sym___inline__] = ACTIONS(3058), - [anon_sym___forceinline] = ACTIONS(3058), - [anon_sym_thread_local] = ACTIONS(3058), - [anon_sym___thread] = ACTIONS(3058), - [anon_sym_const] = ACTIONS(3058), - [anon_sym_constexpr] = ACTIONS(3058), - [anon_sym_volatile] = ACTIONS(3058), - [anon_sym_restrict] = ACTIONS(3058), - [anon_sym___restrict__] = ACTIONS(3058), - [anon_sym__Atomic] = ACTIONS(3058), - [anon_sym__Noreturn] = ACTIONS(3058), - [anon_sym_noreturn] = ACTIONS(3058), - [anon_sym_mutable] = ACTIONS(3058), - [anon_sym_constinit] = ACTIONS(3058), - [anon_sym_consteval] = ACTIONS(3058), - [sym_primitive_type] = ACTIONS(3058), - [anon_sym_enum] = ACTIONS(3058), - [anon_sym_class] = ACTIONS(3058), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_union] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_switch] = ACTIONS(3058), - [anon_sym_case] = ACTIONS(3058), - [anon_sym_default] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_goto] = ACTIONS(3058), - [anon_sym___try] = ACTIONS(3058), - [anon_sym___leave] = ACTIONS(3058), - [anon_sym_not] = ACTIONS(3058), - [anon_sym_compl] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_sizeof] = ACTIONS(3058), - [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(3058), - [anon_sym__Generic] = ACTIONS(3058), - [anon_sym_asm] = ACTIONS(3058), - [anon_sym___asm__] = ACTIONS(3058), - [sym_number_literal] = ACTIONS(3060), - [anon_sym_L_SQUOTE] = ACTIONS(3060), - [anon_sym_u_SQUOTE] = ACTIONS(3060), - [anon_sym_U_SQUOTE] = ACTIONS(3060), - [anon_sym_u8_SQUOTE] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_L_DQUOTE] = ACTIONS(3060), - [anon_sym_u_DQUOTE] = ACTIONS(3060), - [anon_sym_U_DQUOTE] = ACTIONS(3060), - [anon_sym_u8_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [anon_sym_NULL] = ACTIONS(3058), - [anon_sym_nullptr] = ACTIONS(3058), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3058), - [anon_sym_decltype] = ACTIONS(3058), - [anon_sym_virtual] = ACTIONS(3058), - [anon_sym_alignas] = ACTIONS(3058), - [anon_sym_explicit] = ACTIONS(3058), - [anon_sym_typename] = ACTIONS(3058), - [anon_sym_template] = ACTIONS(3058), - [anon_sym_operator] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_delete] = ACTIONS(3058), - [anon_sym_throw] = ACTIONS(3058), - [anon_sym_namespace] = ACTIONS(3058), - [anon_sym_using] = ACTIONS(3058), - [anon_sym_static_assert] = ACTIONS(3058), - [anon_sym_concept] = ACTIONS(3058), - [anon_sym_co_return] = ACTIONS(3058), - [anon_sym_co_yield] = ACTIONS(3058), - [anon_sym_R_DQUOTE] = ACTIONS(3060), - [anon_sym_LR_DQUOTE] = ACTIONS(3060), - [anon_sym_uR_DQUOTE] = ACTIONS(3060), - [anon_sym_UR_DQUOTE] = ACTIONS(3060), - [anon_sym_u8R_DQUOTE] = ACTIONS(3060), - [anon_sym_co_await] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_requires] = ACTIONS(3058), - [sym_this] = ACTIONS(3058), + [873] = { + [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(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_AMP_AMP] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), + [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(3157), + [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_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = 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_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(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [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_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3157), + [anon_sym_L_SQUOTE] = ACTIONS(3157), + [anon_sym_u_SQUOTE] = ACTIONS(3157), + [anon_sym_U_SQUOTE] = ACTIONS(3157), + [anon_sym_u8_SQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_L_DQUOTE] = ACTIONS(3157), + [anon_sym_u_DQUOTE] = ACTIONS(3157), + [anon_sym_U_DQUOTE] = ACTIONS(3157), + [anon_sym_u8_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [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_virtual] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_typename] = 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_using] = 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_R_DQUOTE] = ACTIONS(3157), + [anon_sym_LR_DQUOTE] = ACTIONS(3157), + [anon_sym_uR_DQUOTE] = ACTIONS(3157), + [anon_sym_UR_DQUOTE] = ACTIONS(3157), + [anon_sym_u8R_DQUOTE] = ACTIONS(3157), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [sym_this] = ACTIONS(3155), }, - [910] = { - [sym_identifier] = ACTIONS(3168), - [aux_sym_preproc_include_token1] = ACTIONS(3168), - [aux_sym_preproc_def_token1] = ACTIONS(3168), - [aux_sym_preproc_if_token1] = ACTIONS(3168), - [aux_sym_preproc_if_token2] = ACTIONS(3168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), - [sym_preproc_directive] = ACTIONS(3168), - [anon_sym_LPAREN2] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3170), - [anon_sym_AMP_AMP] = ACTIONS(3170), - [anon_sym_AMP] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym___extension__] = ACTIONS(3168), - [anon_sym_typedef] = ACTIONS(3168), - [anon_sym_extern] = ACTIONS(3168), - [anon_sym___attribute__] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), - [anon_sym___declspec] = ACTIONS(3168), - [anon_sym___based] = ACTIONS(3168), - [anon_sym___cdecl] = ACTIONS(3168), - [anon_sym___clrcall] = ACTIONS(3168), - [anon_sym___stdcall] = ACTIONS(3168), - [anon_sym___fastcall] = ACTIONS(3168), - [anon_sym___thiscall] = ACTIONS(3168), - [anon_sym___vectorcall] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_signed] = ACTIONS(3168), - [anon_sym_unsigned] = ACTIONS(3168), - [anon_sym_long] = ACTIONS(3168), - [anon_sym_short] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_register] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym___inline] = ACTIONS(3168), - [anon_sym___inline__] = ACTIONS(3168), - [anon_sym___forceinline] = ACTIONS(3168), - [anon_sym_thread_local] = ACTIONS(3168), - [anon_sym___thread] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_constexpr] = ACTIONS(3168), - [anon_sym_volatile] = ACTIONS(3168), - [anon_sym_restrict] = ACTIONS(3168), - [anon_sym___restrict__] = ACTIONS(3168), - [anon_sym__Atomic] = ACTIONS(3168), - [anon_sym__Noreturn] = ACTIONS(3168), - [anon_sym_noreturn] = ACTIONS(3168), - [anon_sym_mutable] = ACTIONS(3168), - [anon_sym_constinit] = ACTIONS(3168), - [anon_sym_consteval] = ACTIONS(3168), - [sym_primitive_type] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_struct] = ACTIONS(3168), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_case] = ACTIONS(3168), - [anon_sym_default] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_goto] = ACTIONS(3168), - [anon_sym___try] = ACTIONS(3168), - [anon_sym___leave] = ACTIONS(3168), - [anon_sym_not] = ACTIONS(3168), - [anon_sym_compl] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_sizeof] = ACTIONS(3168), - [anon_sym___alignof__] = ACTIONS(3168), - [anon_sym___alignof] = ACTIONS(3168), - [anon_sym__alignof] = ACTIONS(3168), - [anon_sym_alignof] = ACTIONS(3168), - [anon_sym__Alignof] = ACTIONS(3168), - [anon_sym_offsetof] = ACTIONS(3168), - [anon_sym__Generic] = ACTIONS(3168), - [anon_sym_asm] = ACTIONS(3168), - [anon_sym___asm__] = ACTIONS(3168), - [sym_number_literal] = ACTIONS(3170), - [anon_sym_L_SQUOTE] = ACTIONS(3170), - [anon_sym_u_SQUOTE] = ACTIONS(3170), - [anon_sym_U_SQUOTE] = ACTIONS(3170), - [anon_sym_u8_SQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [anon_sym_L_DQUOTE] = ACTIONS(3170), - [anon_sym_u_DQUOTE] = ACTIONS(3170), - [anon_sym_U_DQUOTE] = ACTIONS(3170), - [anon_sym_u8_DQUOTE] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [anon_sym_NULL] = ACTIONS(3168), - [anon_sym_nullptr] = ACTIONS(3168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3168), - [anon_sym_decltype] = ACTIONS(3168), - [anon_sym_virtual] = ACTIONS(3168), - [anon_sym_alignas] = ACTIONS(3168), - [anon_sym_explicit] = ACTIONS(3168), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3168), - [anon_sym_static_assert] = ACTIONS(3168), - [anon_sym_concept] = ACTIONS(3168), - [anon_sym_co_return] = ACTIONS(3168), - [anon_sym_co_yield] = ACTIONS(3168), - [anon_sym_R_DQUOTE] = ACTIONS(3170), - [anon_sym_LR_DQUOTE] = ACTIONS(3170), - [anon_sym_uR_DQUOTE] = ACTIONS(3170), - [anon_sym_UR_DQUOTE] = ACTIONS(3170), - [anon_sym_u8R_DQUOTE] = ACTIONS(3170), - [anon_sym_co_await] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_requires] = ACTIONS(3168), - [sym_this] = ACTIONS(3168), + [874] = { + [sym_identifier] = ACTIONS(3126), + [aux_sym_preproc_include_token1] = ACTIONS(3126), + [aux_sym_preproc_def_token1] = ACTIONS(3126), + [aux_sym_preproc_if_token1] = ACTIONS(3126), + [aux_sym_preproc_if_token2] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3126), + [sym_preproc_directive] = ACTIONS(3126), + [anon_sym_LPAREN2] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_AMP_AMP] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym_typedef] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3128), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym___based] = ACTIONS(3126), + [anon_sym___cdecl] = ACTIONS(3126), + [anon_sym___clrcall] = ACTIONS(3126), + [anon_sym___stdcall] = ACTIONS(3126), + [anon_sym___fastcall] = ACTIONS(3126), + [anon_sym___thiscall] = ACTIONS(3126), + [anon_sym___vectorcall] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_case] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_goto] = ACTIONS(3126), + [anon_sym___try] = ACTIONS(3126), + [anon_sym___leave] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(3126), + [anon_sym_compl] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_sizeof] = ACTIONS(3126), + [anon_sym___alignof__] = ACTIONS(3126), + [anon_sym___alignof] = ACTIONS(3126), + [anon_sym__alignof] = ACTIONS(3126), + [anon_sym_alignof] = ACTIONS(3126), + [anon_sym__Alignof] = ACTIONS(3126), + [anon_sym_offsetof] = ACTIONS(3126), + [anon_sym__Generic] = ACTIONS(3126), + [anon_sym_asm] = ACTIONS(3126), + [anon_sym___asm__] = ACTIONS(3126), + [sym_number_literal] = ACTIONS(3128), + [anon_sym_L_SQUOTE] = ACTIONS(3128), + [anon_sym_u_SQUOTE] = ACTIONS(3128), + [anon_sym_U_SQUOTE] = ACTIONS(3128), + [anon_sym_u8_SQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_L_DQUOTE] = ACTIONS(3128), + [anon_sym_u_DQUOTE] = ACTIONS(3128), + [anon_sym_U_DQUOTE] = ACTIONS(3128), + [anon_sym_u8_DQUOTE] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [anon_sym_NULL] = ACTIONS(3126), + [anon_sym_nullptr] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym_explicit] = ACTIONS(3126), + [anon_sym_typename] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_static_assert] = ACTIONS(3126), + [anon_sym_concept] = ACTIONS(3126), + [anon_sym_co_return] = ACTIONS(3126), + [anon_sym_co_yield] = ACTIONS(3126), + [anon_sym_R_DQUOTE] = ACTIONS(3128), + [anon_sym_LR_DQUOTE] = ACTIONS(3128), + [anon_sym_uR_DQUOTE] = ACTIONS(3128), + [anon_sym_UR_DQUOTE] = ACTIONS(3128), + [anon_sym_u8R_DQUOTE] = ACTIONS(3128), + [anon_sym_co_await] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + [sym_this] = ACTIONS(3126), }, - [911] = { - [sym_identifier] = ACTIONS(3054), - [aux_sym_preproc_include_token1] = ACTIONS(3054), - [aux_sym_preproc_def_token1] = ACTIONS(3054), - [aux_sym_preproc_if_token1] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3054), - [sym_preproc_directive] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym___extension__] = ACTIONS(3054), - [anon_sym_typedef] = ACTIONS(3054), - [anon_sym_extern] = ACTIONS(3054), - [anon_sym___attribute__] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3056), - [anon_sym___declspec] = ACTIONS(3054), - [anon_sym___based] = ACTIONS(3054), - [anon_sym___cdecl] = ACTIONS(3054), - [anon_sym___clrcall] = ACTIONS(3054), - [anon_sym___stdcall] = ACTIONS(3054), - [anon_sym___fastcall] = ACTIONS(3054), - [anon_sym___thiscall] = ACTIONS(3054), - [anon_sym___vectorcall] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_signed] = ACTIONS(3054), - [anon_sym_unsigned] = ACTIONS(3054), - [anon_sym_long] = ACTIONS(3054), - [anon_sym_short] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_register] = ACTIONS(3054), - [anon_sym_inline] = ACTIONS(3054), - [anon_sym___inline] = ACTIONS(3054), - [anon_sym___inline__] = ACTIONS(3054), - [anon_sym___forceinline] = ACTIONS(3054), - [anon_sym_thread_local] = ACTIONS(3054), - [anon_sym___thread] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_constexpr] = ACTIONS(3054), - [anon_sym_volatile] = ACTIONS(3054), - [anon_sym_restrict] = ACTIONS(3054), - [anon_sym___restrict__] = ACTIONS(3054), - [anon_sym__Atomic] = ACTIONS(3054), - [anon_sym__Noreturn] = ACTIONS(3054), - [anon_sym_noreturn] = ACTIONS(3054), - [anon_sym_mutable] = ACTIONS(3054), - [anon_sym_constinit] = ACTIONS(3054), - [anon_sym_consteval] = ACTIONS(3054), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_class] = ACTIONS(3054), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_union] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_switch] = ACTIONS(3054), - [anon_sym_case] = ACTIONS(3054), - [anon_sym_default] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_goto] = ACTIONS(3054), - [anon_sym___try] = ACTIONS(3054), - [anon_sym___leave] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3054), - [anon_sym_compl] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_sizeof] = ACTIONS(3054), - [anon_sym___alignof__] = ACTIONS(3054), - [anon_sym___alignof] = ACTIONS(3054), - [anon_sym__alignof] = ACTIONS(3054), - [anon_sym_alignof] = ACTIONS(3054), - [anon_sym__Alignof] = ACTIONS(3054), - [anon_sym_offsetof] = ACTIONS(3054), - [anon_sym__Generic] = ACTIONS(3054), - [anon_sym_asm] = ACTIONS(3054), - [anon_sym___asm__] = ACTIONS(3054), - [sym_number_literal] = ACTIONS(3056), - [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(3056), - [anon_sym_u_DQUOTE] = ACTIONS(3056), - [anon_sym_U_DQUOTE] = ACTIONS(3056), - [anon_sym_u8_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [anon_sym_NULL] = ACTIONS(3054), - [anon_sym_nullptr] = ACTIONS(3054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3054), - [anon_sym_decltype] = ACTIONS(3054), - [anon_sym_virtual] = ACTIONS(3054), - [anon_sym_alignas] = ACTIONS(3054), - [anon_sym_explicit] = ACTIONS(3054), - [anon_sym_typename] = ACTIONS(3054), - [anon_sym_template] = ACTIONS(3054), - [anon_sym_operator] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_delete] = ACTIONS(3054), - [anon_sym_throw] = ACTIONS(3054), - [anon_sym_namespace] = ACTIONS(3054), - [anon_sym_using] = ACTIONS(3054), - [anon_sym_static_assert] = ACTIONS(3054), - [anon_sym_concept] = ACTIONS(3054), - [anon_sym_co_return] = ACTIONS(3054), - [anon_sym_co_yield] = ACTIONS(3054), - [anon_sym_R_DQUOTE] = ACTIONS(3056), - [anon_sym_LR_DQUOTE] = ACTIONS(3056), - [anon_sym_uR_DQUOTE] = ACTIONS(3056), - [anon_sym_UR_DQUOTE] = ACTIONS(3056), - [anon_sym_u8R_DQUOTE] = ACTIONS(3056), - [anon_sym_co_await] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_requires] = ACTIONS(3054), - [sym_this] = ACTIONS(3054), + [875] = { + [sym_identifier] = ACTIONS(3122), + [aux_sym_preproc_include_token1] = ACTIONS(3122), + [aux_sym_preproc_def_token1] = ACTIONS(3122), + [aux_sym_preproc_if_token1] = ACTIONS(3122), + [aux_sym_preproc_if_token2] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3122), + [sym_preproc_directive] = ACTIONS(3122), + [anon_sym_LPAREN2] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym___extension__] = ACTIONS(3122), + [anon_sym_typedef] = ACTIONS(3122), + [anon_sym_extern] = ACTIONS(3122), + [anon_sym___attribute__] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3124), + [anon_sym___declspec] = ACTIONS(3122), + [anon_sym___based] = ACTIONS(3122), + [anon_sym___cdecl] = ACTIONS(3122), + [anon_sym___clrcall] = ACTIONS(3122), + [anon_sym___stdcall] = ACTIONS(3122), + [anon_sym___fastcall] = ACTIONS(3122), + [anon_sym___thiscall] = ACTIONS(3122), + [anon_sym___vectorcall] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_signed] = ACTIONS(3122), + [anon_sym_unsigned] = ACTIONS(3122), + [anon_sym_long] = ACTIONS(3122), + [anon_sym_short] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_register] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym___inline] = ACTIONS(3122), + [anon_sym___inline__] = ACTIONS(3122), + [anon_sym___forceinline] = ACTIONS(3122), + [anon_sym_thread_local] = ACTIONS(3122), + [anon_sym___thread] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym___restrict__] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym__Noreturn] = ACTIONS(3122), + [anon_sym_noreturn] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_union] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_goto] = ACTIONS(3122), + [anon_sym___try] = ACTIONS(3122), + [anon_sym___leave] = ACTIONS(3122), + [anon_sym_not] = ACTIONS(3122), + [anon_sym_compl] = ACTIONS(3122), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_sizeof] = ACTIONS(3122), + [anon_sym___alignof__] = ACTIONS(3122), + [anon_sym___alignof] = ACTIONS(3122), + [anon_sym__alignof] = ACTIONS(3122), + [anon_sym_alignof] = ACTIONS(3122), + [anon_sym__Alignof] = ACTIONS(3122), + [anon_sym_offsetof] = ACTIONS(3122), + [anon_sym__Generic] = ACTIONS(3122), + [anon_sym_asm] = ACTIONS(3122), + [anon_sym___asm__] = ACTIONS(3122), + [sym_number_literal] = ACTIONS(3124), + [anon_sym_L_SQUOTE] = ACTIONS(3124), + [anon_sym_u_SQUOTE] = ACTIONS(3124), + [anon_sym_U_SQUOTE] = ACTIONS(3124), + [anon_sym_u8_SQUOTE] = ACTIONS(3124), + [anon_sym_SQUOTE] = ACTIONS(3124), + [anon_sym_L_DQUOTE] = ACTIONS(3124), + [anon_sym_u_DQUOTE] = ACTIONS(3124), + [anon_sym_U_DQUOTE] = ACTIONS(3124), + [anon_sym_u8_DQUOTE] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [anon_sym_NULL] = ACTIONS(3122), + [anon_sym_nullptr] = ACTIONS(3122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3122), + [anon_sym_decltype] = ACTIONS(3122), + [anon_sym_virtual] = ACTIONS(3122), + [anon_sym_alignas] = ACTIONS(3122), + [anon_sym_explicit] = ACTIONS(3122), + [anon_sym_typename] = ACTIONS(3122), + [anon_sym_template] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_using] = ACTIONS(3122), + [anon_sym_static_assert] = ACTIONS(3122), + [anon_sym_concept] = ACTIONS(3122), + [anon_sym_co_return] = ACTIONS(3122), + [anon_sym_co_yield] = ACTIONS(3122), + [anon_sym_R_DQUOTE] = ACTIONS(3124), + [anon_sym_LR_DQUOTE] = ACTIONS(3124), + [anon_sym_uR_DQUOTE] = ACTIONS(3124), + [anon_sym_UR_DQUOTE] = ACTIONS(3124), + [anon_sym_u8R_DQUOTE] = ACTIONS(3124), + [anon_sym_co_await] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_requires] = ACTIONS(3122), + [sym_this] = ACTIONS(3122), }, - [912] = { - [sym_identifier] = ACTIONS(3172), - [aux_sym_preproc_include_token1] = ACTIONS(3172), - [aux_sym_preproc_def_token1] = ACTIONS(3172), - [aux_sym_preproc_if_token1] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), - [sym_preproc_directive] = ACTIONS(3172), - [anon_sym_LPAREN2] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_STAR] = ACTIONS(3174), - [anon_sym_AMP_AMP] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym___extension__] = ACTIONS(3172), - [anon_sym_typedef] = ACTIONS(3172), - [anon_sym_extern] = ACTIONS(3172), - [anon_sym___attribute__] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), - [anon_sym___declspec] = ACTIONS(3172), - [anon_sym___based] = ACTIONS(3172), - [anon_sym___cdecl] = ACTIONS(3172), - [anon_sym___clrcall] = ACTIONS(3172), - [anon_sym___stdcall] = ACTIONS(3172), - [anon_sym___fastcall] = ACTIONS(3172), - [anon_sym___thiscall] = ACTIONS(3172), - [anon_sym___vectorcall] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_signed] = ACTIONS(3172), - [anon_sym_unsigned] = ACTIONS(3172), - [anon_sym_long] = ACTIONS(3172), - [anon_sym_short] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_register] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym___inline] = ACTIONS(3172), - [anon_sym___inline__] = ACTIONS(3172), - [anon_sym___forceinline] = ACTIONS(3172), - [anon_sym_thread_local] = ACTIONS(3172), - [anon_sym___thread] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_constexpr] = ACTIONS(3172), - [anon_sym_volatile] = ACTIONS(3172), - [anon_sym_restrict] = ACTIONS(3172), - [anon_sym___restrict__] = ACTIONS(3172), - [anon_sym__Atomic] = ACTIONS(3172), - [anon_sym__Noreturn] = ACTIONS(3172), - [anon_sym_noreturn] = ACTIONS(3172), - [anon_sym_mutable] = ACTIONS(3172), - [anon_sym_constinit] = ACTIONS(3172), - [anon_sym_consteval] = ACTIONS(3172), - [sym_primitive_type] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_struct] = ACTIONS(3172), - [anon_sym_union] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_case] = ACTIONS(3172), - [anon_sym_default] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_goto] = ACTIONS(3172), - [anon_sym___try] = ACTIONS(3172), - [anon_sym___leave] = ACTIONS(3172), - [anon_sym_not] = ACTIONS(3172), - [anon_sym_compl] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_sizeof] = ACTIONS(3172), - [anon_sym___alignof__] = ACTIONS(3172), - [anon_sym___alignof] = ACTIONS(3172), - [anon_sym__alignof] = ACTIONS(3172), - [anon_sym_alignof] = ACTIONS(3172), - [anon_sym__Alignof] = ACTIONS(3172), - [anon_sym_offsetof] = ACTIONS(3172), - [anon_sym__Generic] = ACTIONS(3172), - [anon_sym_asm] = ACTIONS(3172), - [anon_sym___asm__] = ACTIONS(3172), - [sym_number_literal] = ACTIONS(3174), - [anon_sym_L_SQUOTE] = ACTIONS(3174), - [anon_sym_u_SQUOTE] = ACTIONS(3174), - [anon_sym_U_SQUOTE] = ACTIONS(3174), - [anon_sym_u8_SQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_L_DQUOTE] = ACTIONS(3174), - [anon_sym_u_DQUOTE] = ACTIONS(3174), - [anon_sym_U_DQUOTE] = ACTIONS(3174), - [anon_sym_u8_DQUOTE] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [anon_sym_NULL] = ACTIONS(3172), - [anon_sym_nullptr] = ACTIONS(3172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3172), - [anon_sym_decltype] = ACTIONS(3172), - [anon_sym_virtual] = ACTIONS(3172), - [anon_sym_alignas] = ACTIONS(3172), - [anon_sym_explicit] = ACTIONS(3172), - [anon_sym_typename] = ACTIONS(3172), - [anon_sym_template] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_static_assert] = ACTIONS(3172), - [anon_sym_concept] = ACTIONS(3172), - [anon_sym_co_return] = ACTIONS(3172), - [anon_sym_co_yield] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_requires] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), + [876] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_RBRACE] = ACTIONS(3006), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym___try] = ACTIONS(3004), + [anon_sym___leave] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym___alignof__] = ACTIONS(3004), + [anon_sym___alignof] = ACTIONS(3004), + [anon_sym__alignof] = ACTIONS(3004), + [anon_sym_alignof] = ACTIONS(3004), + [anon_sym__Alignof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), }, - [913] = { - [sym_identifier] = ACTIONS(3128), - [aux_sym_preproc_include_token1] = ACTIONS(3128), - [aux_sym_preproc_def_token1] = ACTIONS(3128), - [aux_sym_preproc_if_token1] = ACTIONS(3128), - [aux_sym_preproc_if_token2] = ACTIONS(3128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3128), - [sym_preproc_directive] = ACTIONS(3128), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3130), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym_typedef] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3130), - [anon_sym___declspec] = ACTIONS(3128), - [anon_sym___based] = ACTIONS(3128), - [anon_sym___cdecl] = ACTIONS(3128), - [anon_sym___clrcall] = ACTIONS(3128), - [anon_sym___stdcall] = ACTIONS(3128), - [anon_sym___fastcall] = ACTIONS(3128), - [anon_sym___thiscall] = ACTIONS(3128), - [anon_sym___vectorcall] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_register] = ACTIONS(3128), - [anon_sym_inline] = ACTIONS(3128), - [anon_sym___inline] = ACTIONS(3128), - [anon_sym___inline__] = ACTIONS(3128), - [anon_sym___forceinline] = ACTIONS(3128), - [anon_sym_thread_local] = ACTIONS(3128), - [anon_sym___thread] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3128), - [anon_sym_volatile] = ACTIONS(3128), - [anon_sym_restrict] = ACTIONS(3128), - [anon_sym___restrict__] = ACTIONS(3128), - [anon_sym__Atomic] = ACTIONS(3128), - [anon_sym__Noreturn] = ACTIONS(3128), - [anon_sym_noreturn] = ACTIONS(3128), - [anon_sym_mutable] = ACTIONS(3128), - [anon_sym_constinit] = ACTIONS(3128), - [anon_sym_consteval] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_goto] = ACTIONS(3128), - [anon_sym___try] = ACTIONS(3128), - [anon_sym___leave] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(3128), - [anon_sym_compl] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3128), - [anon_sym___alignof__] = ACTIONS(3128), - [anon_sym___alignof] = ACTIONS(3128), - [anon_sym__alignof] = ACTIONS(3128), - [anon_sym_alignof] = ACTIONS(3128), - [anon_sym__Alignof] = ACTIONS(3128), - [anon_sym_offsetof] = ACTIONS(3128), - [anon_sym__Generic] = ACTIONS(3128), - [anon_sym_asm] = ACTIONS(3128), - [anon_sym___asm__] = ACTIONS(3128), - [sym_number_literal] = ACTIONS(3130), - [anon_sym_L_SQUOTE] = ACTIONS(3130), - [anon_sym_u_SQUOTE] = ACTIONS(3130), - [anon_sym_U_SQUOTE] = ACTIONS(3130), - [anon_sym_u8_SQUOTE] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3130), - [anon_sym_L_DQUOTE] = ACTIONS(3130), - [anon_sym_u_DQUOTE] = ACTIONS(3130), - [anon_sym_U_DQUOTE] = ACTIONS(3130), - [anon_sym_u8_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [anon_sym_NULL] = ACTIONS(3128), - [anon_sym_nullptr] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3128), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_alignas] = ACTIONS(3128), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_typename] = ACTIONS(3128), - [anon_sym_template] = ACTIONS(3128), - [anon_sym_operator] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_static_assert] = ACTIONS(3128), - [anon_sym_concept] = ACTIONS(3128), - [anon_sym_co_return] = ACTIONS(3128), - [anon_sym_co_yield] = ACTIONS(3128), - [anon_sym_R_DQUOTE] = ACTIONS(3130), - [anon_sym_LR_DQUOTE] = ACTIONS(3130), - [anon_sym_uR_DQUOTE] = ACTIONS(3130), - [anon_sym_UR_DQUOTE] = ACTIONS(3130), - [anon_sym_u8R_DQUOTE] = ACTIONS(3130), - [anon_sym_co_await] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), + [877] = { + [sym_identifier] = ACTIONS(3262), + [aux_sym_preproc_include_token1] = ACTIONS(3262), + [aux_sym_preproc_def_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token2] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym___extension__] = ACTIONS(3262), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3264), + [anon_sym___declspec] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3262), + [anon_sym___cdecl] = ACTIONS(3262), + [anon_sym___clrcall] = ACTIONS(3262), + [anon_sym___stdcall] = ACTIONS(3262), + [anon_sym___fastcall] = ACTIONS(3262), + [anon_sym___thiscall] = ACTIONS(3262), + [anon_sym___vectorcall] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_signed] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym___inline] = ACTIONS(3262), + [anon_sym___inline__] = ACTIONS(3262), + [anon_sym___forceinline] = ACTIONS(3262), + [anon_sym_thread_local] = ACTIONS(3262), + [anon_sym___thread] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym___try] = ACTIONS(3262), + [anon_sym___leave] = ACTIONS(3262), + [anon_sym_not] = ACTIONS(3262), + [anon_sym_compl] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [anon_sym___alignof__] = ACTIONS(3262), + [anon_sym___alignof] = ACTIONS(3262), + [anon_sym__alignof] = ACTIONS(3262), + [anon_sym_alignof] = ACTIONS(3262), + [anon_sym__Alignof] = ACTIONS(3262), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), + [anon_sym___asm__] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [anon_sym_L_SQUOTE] = ACTIONS(3264), + [anon_sym_u_SQUOTE] = ACTIONS(3264), + [anon_sym_U_SQUOTE] = ACTIONS(3264), + [anon_sym_u8_SQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_L_DQUOTE] = ACTIONS(3264), + [anon_sym_u_DQUOTE] = ACTIONS(3264), + [anon_sym_U_DQUOTE] = ACTIONS(3264), + [anon_sym_u8_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_virtual] = ACTIONS(3262), + [anon_sym_alignas] = ACTIONS(3262), + [anon_sym_explicit] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3262), + [anon_sym_template] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_static_assert] = ACTIONS(3262), + [anon_sym_concept] = ACTIONS(3262), + [anon_sym_co_return] = ACTIONS(3262), + [anon_sym_co_yield] = ACTIONS(3262), + [anon_sym_R_DQUOTE] = ACTIONS(3264), + [anon_sym_LR_DQUOTE] = ACTIONS(3264), + [anon_sym_uR_DQUOTE] = ACTIONS(3264), + [anon_sym_UR_DQUOTE] = ACTIONS(3264), + [anon_sym_u8R_DQUOTE] = ACTIONS(3264), + [anon_sym_co_await] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_requires] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), }, - [914] = { + [878] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_RBRACE] = ACTIONS(3006), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym___try] = ACTIONS(3004), + [anon_sym___leave] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym___alignof__] = ACTIONS(3004), + [anon_sym___alignof] = ACTIONS(3004), + [anon_sym__alignof] = ACTIONS(3004), + [anon_sym_alignof] = ACTIONS(3004), + [anon_sym__Alignof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), + }, + [879] = { + [sym_identifier] = ACTIONS(3110), + [aux_sym_preproc_include_token1] = ACTIONS(3110), + [aux_sym_preproc_def_token1] = ACTIONS(3110), + [aux_sym_preproc_if_token1] = ACTIONS(3110), + [aux_sym_preproc_if_token2] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3110), + [sym_preproc_directive] = ACTIONS(3110), + [anon_sym_LPAREN2] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_SEMI] = ACTIONS(3112), + [anon_sym___extension__] = ACTIONS(3110), + [anon_sym_typedef] = ACTIONS(3110), + [anon_sym_extern] = ACTIONS(3110), + [anon_sym___attribute__] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3112), + [anon_sym___declspec] = ACTIONS(3110), + [anon_sym___based] = ACTIONS(3110), + [anon_sym___cdecl] = ACTIONS(3110), + [anon_sym___clrcall] = ACTIONS(3110), + [anon_sym___stdcall] = ACTIONS(3110), + [anon_sym___fastcall] = ACTIONS(3110), + [anon_sym___thiscall] = ACTIONS(3110), + [anon_sym___vectorcall] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_signed] = ACTIONS(3110), + [anon_sym_unsigned] = ACTIONS(3110), + [anon_sym_long] = ACTIONS(3110), + [anon_sym_short] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_static] = ACTIONS(3110), + [anon_sym_register] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym___inline] = ACTIONS(3110), + [anon_sym___inline__] = ACTIONS(3110), + [anon_sym___forceinline] = ACTIONS(3110), + [anon_sym_thread_local] = ACTIONS(3110), + [anon_sym___thread] = ACTIONS(3110), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_constexpr] = ACTIONS(3110), + [anon_sym_volatile] = ACTIONS(3110), + [anon_sym_restrict] = ACTIONS(3110), + [anon_sym___restrict__] = ACTIONS(3110), + [anon_sym__Atomic] = ACTIONS(3110), + [anon_sym__Noreturn] = ACTIONS(3110), + [anon_sym_noreturn] = ACTIONS(3110), + [anon_sym_mutable] = ACTIONS(3110), + [anon_sym_constinit] = ACTIONS(3110), + [anon_sym_consteval] = ACTIONS(3110), + [sym_primitive_type] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_class] = ACTIONS(3110), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_union] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_switch] = ACTIONS(3110), + [anon_sym_case] = ACTIONS(3110), + [anon_sym_default] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_do] = ACTIONS(3110), + [anon_sym_for] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_goto] = ACTIONS(3110), + [anon_sym___try] = ACTIONS(3110), + [anon_sym___leave] = ACTIONS(3110), + [anon_sym_not] = ACTIONS(3110), + [anon_sym_compl] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_sizeof] = ACTIONS(3110), + [anon_sym___alignof__] = ACTIONS(3110), + [anon_sym___alignof] = ACTIONS(3110), + [anon_sym__alignof] = ACTIONS(3110), + [anon_sym_alignof] = ACTIONS(3110), + [anon_sym__Alignof] = ACTIONS(3110), + [anon_sym_offsetof] = ACTIONS(3110), + [anon_sym__Generic] = ACTIONS(3110), + [anon_sym_asm] = ACTIONS(3110), + [anon_sym___asm__] = ACTIONS(3110), + [sym_number_literal] = ACTIONS(3112), + [anon_sym_L_SQUOTE] = ACTIONS(3112), + [anon_sym_u_SQUOTE] = ACTIONS(3112), + [anon_sym_U_SQUOTE] = ACTIONS(3112), + [anon_sym_u8_SQUOTE] = ACTIONS(3112), + [anon_sym_SQUOTE] = ACTIONS(3112), + [anon_sym_L_DQUOTE] = ACTIONS(3112), + [anon_sym_u_DQUOTE] = ACTIONS(3112), + [anon_sym_U_DQUOTE] = ACTIONS(3112), + [anon_sym_u8_DQUOTE] = ACTIONS(3112), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [anon_sym_NULL] = ACTIONS(3110), + [anon_sym_nullptr] = ACTIONS(3110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3110), + [anon_sym_decltype] = ACTIONS(3110), + [anon_sym_virtual] = ACTIONS(3110), + [anon_sym_alignas] = ACTIONS(3110), + [anon_sym_explicit] = ACTIONS(3110), + [anon_sym_typename] = ACTIONS(3110), + [anon_sym_template] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_delete] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_namespace] = ACTIONS(3110), + [anon_sym_using] = ACTIONS(3110), + [anon_sym_static_assert] = ACTIONS(3110), + [anon_sym_concept] = ACTIONS(3110), + [anon_sym_co_return] = ACTIONS(3110), + [anon_sym_co_yield] = ACTIONS(3110), + [anon_sym_R_DQUOTE] = ACTIONS(3112), + [anon_sym_LR_DQUOTE] = ACTIONS(3112), + [anon_sym_uR_DQUOTE] = ACTIONS(3112), + [anon_sym_UR_DQUOTE] = ACTIONS(3112), + [anon_sym_u8R_DQUOTE] = ACTIONS(3112), + [anon_sym_co_await] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3110), + [anon_sym_requires] = ACTIONS(3110), + [sym_this] = ACTIONS(3110), + }, + [880] = { + [sym_identifier] = ACTIONS(3215), + [aux_sym_preproc_include_token1] = ACTIONS(3215), + [aux_sym_preproc_def_token1] = ACTIONS(3215), + [aux_sym_preproc_if_token1] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3215), + [sym_preproc_directive] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_AMP_AMP] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym___extension__] = ACTIONS(3215), + [anon_sym_typedef] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym___attribute__] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), + [anon_sym___declspec] = ACTIONS(3215), + [anon_sym___based] = ACTIONS(3215), + [anon_sym___cdecl] = ACTIONS(3215), + [anon_sym___clrcall] = ACTIONS(3215), + [anon_sym___stdcall] = ACTIONS(3215), + [anon_sym___fastcall] = ACTIONS(3215), + [anon_sym___thiscall] = ACTIONS(3215), + [anon_sym___vectorcall] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_signed] = ACTIONS(3215), + [anon_sym_unsigned] = ACTIONS(3215), + [anon_sym_long] = ACTIONS(3215), + [anon_sym_short] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_register] = ACTIONS(3215), + [anon_sym_inline] = ACTIONS(3215), + [anon_sym___inline] = ACTIONS(3215), + [anon_sym___inline__] = ACTIONS(3215), + [anon_sym___forceinline] = ACTIONS(3215), + [anon_sym_thread_local] = ACTIONS(3215), + [anon_sym___thread] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_constexpr] = ACTIONS(3215), + [anon_sym_volatile] = ACTIONS(3215), + [anon_sym_restrict] = ACTIONS(3215), + [anon_sym___restrict__] = ACTIONS(3215), + [anon_sym__Atomic] = ACTIONS(3215), + [anon_sym__Noreturn] = ACTIONS(3215), + [anon_sym_noreturn] = ACTIONS(3215), + [anon_sym_mutable] = ACTIONS(3215), + [anon_sym_constinit] = ACTIONS(3215), + [anon_sym_consteval] = ACTIONS(3215), + [sym_primitive_type] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3215), + [anon_sym_union] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_case] = ACTIONS(3215), + [anon_sym_default] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_goto] = ACTIONS(3215), + [anon_sym___try] = ACTIONS(3215), + [anon_sym___leave] = ACTIONS(3215), + [anon_sym_not] = ACTIONS(3215), + [anon_sym_compl] = ACTIONS(3215), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_sizeof] = ACTIONS(3215), + [anon_sym___alignof__] = ACTIONS(3215), + [anon_sym___alignof] = ACTIONS(3215), + [anon_sym__alignof] = ACTIONS(3215), + [anon_sym_alignof] = ACTIONS(3215), + [anon_sym__Alignof] = ACTIONS(3215), + [anon_sym_offsetof] = ACTIONS(3215), + [anon_sym__Generic] = ACTIONS(3215), + [anon_sym_asm] = ACTIONS(3215), + [anon_sym___asm__] = ACTIONS(3215), + [sym_number_literal] = ACTIONS(3217), + [anon_sym_L_SQUOTE] = ACTIONS(3217), + [anon_sym_u_SQUOTE] = ACTIONS(3217), + [anon_sym_U_SQUOTE] = ACTIONS(3217), + [anon_sym_u8_SQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_L_DQUOTE] = ACTIONS(3217), + [anon_sym_u_DQUOTE] = ACTIONS(3217), + [anon_sym_U_DQUOTE] = ACTIONS(3217), + [anon_sym_u8_DQUOTE] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [sym_true] = ACTIONS(3215), + [sym_false] = ACTIONS(3215), + [anon_sym_NULL] = ACTIONS(3215), + [anon_sym_nullptr] = ACTIONS(3215), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3215), + [anon_sym_decltype] = ACTIONS(3215), + [anon_sym_virtual] = ACTIONS(3215), + [anon_sym_alignas] = ACTIONS(3215), + [anon_sym_explicit] = ACTIONS(3215), + [anon_sym_typename] = ACTIONS(3215), + [anon_sym_template] = ACTIONS(3215), + [anon_sym_operator] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_delete] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_namespace] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_static_assert] = ACTIONS(3215), + [anon_sym_concept] = ACTIONS(3215), + [anon_sym_co_return] = ACTIONS(3215), + [anon_sym_co_yield] = ACTIONS(3215), + [anon_sym_R_DQUOTE] = ACTIONS(3217), + [anon_sym_LR_DQUOTE] = ACTIONS(3217), + [anon_sym_uR_DQUOTE] = ACTIONS(3217), + [anon_sym_UR_DQUOTE] = ACTIONS(3217), + [anon_sym_u8R_DQUOTE] = ACTIONS(3217), + [anon_sym_co_await] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_requires] = ACTIONS(3215), + [sym_this] = ACTIONS(3215), + }, + [881] = { + [sym_identifier] = ACTIONS(3098), + [aux_sym_preproc_include_token1] = ACTIONS(3098), + [aux_sym_preproc_def_token1] = ACTIONS(3098), + [aux_sym_preproc_if_token1] = ACTIONS(3098), + [aux_sym_preproc_if_token2] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), + [sym_preproc_directive] = ACTIONS(3098), + [anon_sym_LPAREN2] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym___extension__] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3098), + [anon_sym_extern] = ACTIONS(3098), + [anon_sym___attribute__] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), + [anon_sym___declspec] = ACTIONS(3098), + [anon_sym___based] = ACTIONS(3098), + [anon_sym___cdecl] = ACTIONS(3098), + [anon_sym___clrcall] = ACTIONS(3098), + [anon_sym___stdcall] = ACTIONS(3098), + [anon_sym___fastcall] = ACTIONS(3098), + [anon_sym___thiscall] = ACTIONS(3098), + [anon_sym___vectorcall] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_signed] = ACTIONS(3098), + [anon_sym_unsigned] = ACTIONS(3098), + [anon_sym_long] = ACTIONS(3098), + [anon_sym_short] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_register] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym___inline] = ACTIONS(3098), + [anon_sym___inline__] = ACTIONS(3098), + [anon_sym___forceinline] = ACTIONS(3098), + [anon_sym_thread_local] = ACTIONS(3098), + [anon_sym___thread] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_constexpr] = ACTIONS(3098), + [anon_sym_volatile] = ACTIONS(3098), + [anon_sym_restrict] = ACTIONS(3098), + [anon_sym___restrict__] = ACTIONS(3098), + [anon_sym__Atomic] = ACTIONS(3098), + [anon_sym__Noreturn] = ACTIONS(3098), + [anon_sym_noreturn] = ACTIONS(3098), + [anon_sym_mutable] = ACTIONS(3098), + [anon_sym_constinit] = ACTIONS(3098), + [anon_sym_consteval] = ACTIONS(3098), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(3098), + [anon_sym_union] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_switch] = ACTIONS(3098), + [anon_sym_case] = ACTIONS(3098), + [anon_sym_default] = ACTIONS(3098), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_do] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_goto] = ACTIONS(3098), + [anon_sym___try] = ACTIONS(3098), + [anon_sym___leave] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(3098), + [anon_sym_compl] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_sizeof] = ACTIONS(3098), + [anon_sym___alignof__] = ACTIONS(3098), + [anon_sym___alignof] = ACTIONS(3098), + [anon_sym__alignof] = ACTIONS(3098), + [anon_sym_alignof] = ACTIONS(3098), + [anon_sym__Alignof] = ACTIONS(3098), + [anon_sym_offsetof] = ACTIONS(3098), + [anon_sym__Generic] = ACTIONS(3098), + [anon_sym_asm] = ACTIONS(3098), + [anon_sym___asm__] = ACTIONS(3098), + [sym_number_literal] = ACTIONS(3100), + [anon_sym_L_SQUOTE] = ACTIONS(3100), + [anon_sym_u_SQUOTE] = ACTIONS(3100), + [anon_sym_U_SQUOTE] = ACTIONS(3100), + [anon_sym_u8_SQUOTE] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3100), + [anon_sym_L_DQUOTE] = ACTIONS(3100), + [anon_sym_u_DQUOTE] = ACTIONS(3100), + [anon_sym_U_DQUOTE] = ACTIONS(3100), + [anon_sym_u8_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE] = ACTIONS(3100), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [anon_sym_NULL] = ACTIONS(3098), + [anon_sym_nullptr] = ACTIONS(3098), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3098), + [anon_sym_decltype] = ACTIONS(3098), + [anon_sym_virtual] = ACTIONS(3098), + [anon_sym_alignas] = ACTIONS(3098), + [anon_sym_explicit] = ACTIONS(3098), + [anon_sym_typename] = ACTIONS(3098), + [anon_sym_template] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_static_assert] = ACTIONS(3098), + [anon_sym_concept] = ACTIONS(3098), + [anon_sym_co_return] = ACTIONS(3098), + [anon_sym_co_yield] = ACTIONS(3098), + [anon_sym_R_DQUOTE] = ACTIONS(3100), + [anon_sym_LR_DQUOTE] = ACTIONS(3100), + [anon_sym_uR_DQUOTE] = ACTIONS(3100), + [anon_sym_UR_DQUOTE] = ACTIONS(3100), + [anon_sym_u8R_DQUOTE] = ACTIONS(3100), + [anon_sym_co_await] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_requires] = ACTIONS(3098), + [sym_this] = ACTIONS(3098), + }, + [882] = { + [sym_identifier] = ACTIONS(3262), + [aux_sym_preproc_include_token1] = ACTIONS(3262), + [aux_sym_preproc_def_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym___extension__] = ACTIONS(3262), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3264), + [anon_sym___declspec] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3262), + [anon_sym___cdecl] = ACTIONS(3262), + [anon_sym___clrcall] = ACTIONS(3262), + [anon_sym___stdcall] = ACTIONS(3262), + [anon_sym___fastcall] = ACTIONS(3262), + [anon_sym___thiscall] = ACTIONS(3262), + [anon_sym___vectorcall] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_signed] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym___inline] = ACTIONS(3262), + [anon_sym___inline__] = ACTIONS(3262), + [anon_sym___forceinline] = ACTIONS(3262), + [anon_sym_thread_local] = ACTIONS(3262), + [anon_sym___thread] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym___try] = ACTIONS(3262), + [anon_sym___leave] = ACTIONS(3262), + [anon_sym_not] = ACTIONS(3262), + [anon_sym_compl] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [anon_sym___alignof__] = ACTIONS(3262), + [anon_sym___alignof] = ACTIONS(3262), + [anon_sym__alignof] = ACTIONS(3262), + [anon_sym_alignof] = ACTIONS(3262), + [anon_sym__Alignof] = ACTIONS(3262), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), + [anon_sym___asm__] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [anon_sym_L_SQUOTE] = ACTIONS(3264), + [anon_sym_u_SQUOTE] = ACTIONS(3264), + [anon_sym_U_SQUOTE] = ACTIONS(3264), + [anon_sym_u8_SQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_L_DQUOTE] = ACTIONS(3264), + [anon_sym_u_DQUOTE] = ACTIONS(3264), + [anon_sym_U_DQUOTE] = ACTIONS(3264), + [anon_sym_u8_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_virtual] = ACTIONS(3262), + [anon_sym_alignas] = ACTIONS(3262), + [anon_sym_explicit] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3262), + [anon_sym_template] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_static_assert] = ACTIONS(3262), + [anon_sym_concept] = ACTIONS(3262), + [anon_sym_co_return] = ACTIONS(3262), + [anon_sym_co_yield] = ACTIONS(3262), + [anon_sym_R_DQUOTE] = ACTIONS(3264), + [anon_sym_LR_DQUOTE] = ACTIONS(3264), + [anon_sym_uR_DQUOTE] = ACTIONS(3264), + [anon_sym_UR_DQUOTE] = ACTIONS(3264), + [anon_sym_u8R_DQUOTE] = ACTIONS(3264), + [anon_sym_co_await] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_requires] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), + }, + [883] = { + [sym_identifier] = ACTIONS(3290), + [aux_sym_preproc_include_token1] = ACTIONS(3290), + [aux_sym_preproc_def_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token2] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), + [sym_preproc_directive] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym___extension__] = ACTIONS(3290), + [anon_sym_typedef] = ACTIONS(3290), + [anon_sym_extern] = ACTIONS(3290), + [anon_sym___attribute__] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), + [anon_sym___declspec] = ACTIONS(3290), + [anon_sym___based] = ACTIONS(3290), + [anon_sym___cdecl] = ACTIONS(3290), + [anon_sym___clrcall] = ACTIONS(3290), + [anon_sym___stdcall] = ACTIONS(3290), + [anon_sym___fastcall] = ACTIONS(3290), + [anon_sym___thiscall] = ACTIONS(3290), + [anon_sym___vectorcall] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_signed] = ACTIONS(3290), + [anon_sym_unsigned] = ACTIONS(3290), + [anon_sym_long] = ACTIONS(3290), + [anon_sym_short] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_register] = ACTIONS(3290), + [anon_sym_inline] = ACTIONS(3290), + [anon_sym___inline] = ACTIONS(3290), + [anon_sym___inline__] = ACTIONS(3290), + [anon_sym___forceinline] = ACTIONS(3290), + [anon_sym_thread_local] = ACTIONS(3290), + [anon_sym___thread] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_constexpr] = ACTIONS(3290), + [anon_sym_volatile] = ACTIONS(3290), + [anon_sym_restrict] = ACTIONS(3290), + [anon_sym___restrict__] = ACTIONS(3290), + [anon_sym__Atomic] = ACTIONS(3290), + [anon_sym__Noreturn] = ACTIONS(3290), + [anon_sym_noreturn] = ACTIONS(3290), + [anon_sym_mutable] = ACTIONS(3290), + [anon_sym_constinit] = ACTIONS(3290), + [anon_sym_consteval] = ACTIONS(3290), + [sym_primitive_type] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_goto] = ACTIONS(3290), + [anon_sym___try] = ACTIONS(3290), + [anon_sym___leave] = ACTIONS(3290), + [anon_sym_not] = ACTIONS(3290), + [anon_sym_compl] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_sizeof] = ACTIONS(3290), + [anon_sym___alignof__] = ACTIONS(3290), + [anon_sym___alignof] = ACTIONS(3290), + [anon_sym__alignof] = ACTIONS(3290), + [anon_sym_alignof] = ACTIONS(3290), + [anon_sym__Alignof] = ACTIONS(3290), + [anon_sym_offsetof] = ACTIONS(3290), + [anon_sym__Generic] = ACTIONS(3290), + [anon_sym_asm] = ACTIONS(3290), + [anon_sym___asm__] = ACTIONS(3290), + [sym_number_literal] = ACTIONS(3292), + [anon_sym_L_SQUOTE] = ACTIONS(3292), + [anon_sym_u_SQUOTE] = ACTIONS(3292), + [anon_sym_U_SQUOTE] = ACTIONS(3292), + [anon_sym_u8_SQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_L_DQUOTE] = ACTIONS(3292), + [anon_sym_u_DQUOTE] = ACTIONS(3292), + [anon_sym_U_DQUOTE] = ACTIONS(3292), + [anon_sym_u8_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [anon_sym_NULL] = ACTIONS(3290), + [anon_sym_nullptr] = ACTIONS(3290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3290), + [anon_sym_decltype] = ACTIONS(3290), + [anon_sym_virtual] = ACTIONS(3290), + [anon_sym_alignas] = ACTIONS(3290), + [anon_sym_explicit] = ACTIONS(3290), + [anon_sym_typename] = ACTIONS(3290), + [anon_sym_template] = ACTIONS(3290), + [anon_sym_operator] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_static_assert] = ACTIONS(3290), + [anon_sym_concept] = ACTIONS(3290), + [anon_sym_co_return] = ACTIONS(3290), + [anon_sym_co_yield] = ACTIONS(3290), + [anon_sym_R_DQUOTE] = ACTIONS(3292), + [anon_sym_LR_DQUOTE] = ACTIONS(3292), + [anon_sym_uR_DQUOTE] = ACTIONS(3292), + [anon_sym_UR_DQUOTE] = ACTIONS(3292), + [anon_sym_u8R_DQUOTE] = ACTIONS(3292), + [anon_sym_co_await] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_requires] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), + }, + [884] = { + [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(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym___extension__] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3312), + [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(3312), + [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_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = 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_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(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [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_asm] = ACTIONS(3310), + [anon_sym___asm__] = ACTIONS(3310), + [sym_number_literal] = ACTIONS(3312), + [anon_sym_L_SQUOTE] = ACTIONS(3312), + [anon_sym_u_SQUOTE] = ACTIONS(3312), + [anon_sym_U_SQUOTE] = ACTIONS(3312), + [anon_sym_u8_SQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_L_DQUOTE] = ACTIONS(3312), + [anon_sym_u_DQUOTE] = ACTIONS(3312), + [anon_sym_U_DQUOTE] = ACTIONS(3312), + [anon_sym_u8_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [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_virtual] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym_explicit] = ACTIONS(3310), + [anon_sym_typename] = 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_using] = 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(3312), + [anon_sym_LR_DQUOTE] = ACTIONS(3312), + [anon_sym_uR_DQUOTE] = ACTIONS(3312), + [anon_sym_UR_DQUOTE] = ACTIONS(3312), + [anon_sym_u8R_DQUOTE] = ACTIONS(3312), + [anon_sym_co_await] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_requires] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + }, + [885] = { + [sym_identifier] = ACTIONS(3138), + [aux_sym_preproc_include_token1] = ACTIONS(3138), + [aux_sym_preproc_def_token1] = ACTIONS(3138), + [aux_sym_preproc_if_token1] = ACTIONS(3138), + [aux_sym_preproc_if_token2] = ACTIONS(3138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3138), + [sym_preproc_directive] = ACTIONS(3138), + [anon_sym_LPAREN2] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_typedef] = ACTIONS(3138), + [anon_sym_extern] = ACTIONS(3138), + [anon_sym___attribute__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3140), + [anon_sym___declspec] = ACTIONS(3138), + [anon_sym___based] = ACTIONS(3138), + [anon_sym___cdecl] = ACTIONS(3138), + [anon_sym___clrcall] = ACTIONS(3138), + [anon_sym___stdcall] = ACTIONS(3138), + [anon_sym___fastcall] = ACTIONS(3138), + [anon_sym___thiscall] = ACTIONS(3138), + [anon_sym___vectorcall] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3138), + [anon_sym_unsigned] = ACTIONS(3138), + [anon_sym_long] = ACTIONS(3138), + [anon_sym_short] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_register] = ACTIONS(3138), + [anon_sym_inline] = ACTIONS(3138), + [anon_sym___inline] = ACTIONS(3138), + [anon_sym___inline__] = ACTIONS(3138), + [anon_sym___forceinline] = ACTIONS(3138), + [anon_sym_thread_local] = ACTIONS(3138), + [anon_sym___thread] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_constexpr] = ACTIONS(3138), + [anon_sym_volatile] = ACTIONS(3138), + [anon_sym_restrict] = ACTIONS(3138), + [anon_sym___restrict__] = ACTIONS(3138), + [anon_sym__Atomic] = ACTIONS(3138), + [anon_sym__Noreturn] = ACTIONS(3138), + [anon_sym_noreturn] = ACTIONS(3138), + [anon_sym_mutable] = ACTIONS(3138), + [anon_sym_constinit] = ACTIONS(3138), + [anon_sym_consteval] = ACTIONS(3138), + [sym_primitive_type] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_struct] = ACTIONS(3138), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_case] = ACTIONS(3138), + [anon_sym_default] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_goto] = ACTIONS(3138), + [anon_sym___try] = ACTIONS(3138), + [anon_sym___leave] = ACTIONS(3138), + [anon_sym_not] = ACTIONS(3138), + [anon_sym_compl] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_sizeof] = ACTIONS(3138), + [anon_sym___alignof__] = ACTIONS(3138), + [anon_sym___alignof] = ACTIONS(3138), + [anon_sym__alignof] = ACTIONS(3138), + [anon_sym_alignof] = ACTIONS(3138), + [anon_sym__Alignof] = ACTIONS(3138), + [anon_sym_offsetof] = ACTIONS(3138), + [anon_sym__Generic] = ACTIONS(3138), + [anon_sym_asm] = ACTIONS(3138), + [anon_sym___asm__] = ACTIONS(3138), + [sym_number_literal] = ACTIONS(3140), + [anon_sym_L_SQUOTE] = ACTIONS(3140), + [anon_sym_u_SQUOTE] = ACTIONS(3140), + [anon_sym_U_SQUOTE] = ACTIONS(3140), + [anon_sym_u8_SQUOTE] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3140), + [anon_sym_L_DQUOTE] = ACTIONS(3140), + [anon_sym_u_DQUOTE] = ACTIONS(3140), + [anon_sym_U_DQUOTE] = ACTIONS(3140), + [anon_sym_u8_DQUOTE] = ACTIONS(3140), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [anon_sym_NULL] = ACTIONS(3138), + [anon_sym_nullptr] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3138), + [anon_sym_decltype] = ACTIONS(3138), + [anon_sym_virtual] = ACTIONS(3138), + [anon_sym_alignas] = ACTIONS(3138), + [anon_sym_explicit] = ACTIONS(3138), + [anon_sym_typename] = ACTIONS(3138), + [anon_sym_template] = ACTIONS(3138), + [anon_sym_operator] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_static_assert] = ACTIONS(3138), + [anon_sym_concept] = ACTIONS(3138), + [anon_sym_co_return] = ACTIONS(3138), + [anon_sym_co_yield] = ACTIONS(3138), + [anon_sym_R_DQUOTE] = ACTIONS(3140), + [anon_sym_LR_DQUOTE] = ACTIONS(3140), + [anon_sym_uR_DQUOTE] = ACTIONS(3140), + [anon_sym_UR_DQUOTE] = ACTIONS(3140), + [anon_sym_u8R_DQUOTE] = ACTIONS(3140), + [anon_sym_co_await] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_requires] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + }, + [886] = { [sym_identifier] = ACTIONS(3306), [aux_sym_preproc_include_token1] = ACTIONS(3306), [aux_sym_preproc_def_token1] = ACTIONS(3306), [aux_sym_preproc_if_token1] = ACTIONS(3306), + [aux_sym_preproc_if_token2] = ACTIONS(3306), [aux_sym_preproc_ifdef_token1] = ACTIONS(3306), [aux_sym_preproc_ifdef_token2] = ACTIONS(3306), [sym_preproc_directive] = ACTIONS(3306), @@ -215121,7 +211755,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3306), [anon_sym___vectorcall] = ACTIONS(3306), [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_RBRACE] = ACTIONS(3308), [anon_sym_signed] = ACTIONS(3306), [anon_sym_unsigned] = ACTIONS(3306), [anon_sym_long] = ACTIONS(3306), @@ -215221,1331 +211854,540 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3306), [sym_this] = ACTIONS(3306), }, - [915] = { - [sym_identifier] = ACTIONS(3144), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3144), - [aux_sym_preproc_if_token1] = ACTIONS(3144), - [aux_sym_preproc_if_token2] = ACTIONS(3144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3144), - [sym_preproc_directive] = ACTIONS(3144), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3144), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym___extension__] = ACTIONS(3144), - [anon_sym_typedef] = ACTIONS(3144), - [anon_sym_extern] = ACTIONS(3144), - [anon_sym___attribute__] = ACTIONS(3144), - [anon_sym_COLON_COLON] = ACTIONS(3146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3146), - [anon_sym___declspec] = ACTIONS(3144), - [anon_sym___based] = ACTIONS(3144), - [anon_sym___cdecl] = ACTIONS(3144), - [anon_sym___clrcall] = ACTIONS(3144), - [anon_sym___stdcall] = ACTIONS(3144), - [anon_sym___fastcall] = ACTIONS(3144), - [anon_sym___thiscall] = ACTIONS(3144), - [anon_sym___vectorcall] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_signed] = ACTIONS(3144), - [anon_sym_unsigned] = ACTIONS(3144), - [anon_sym_long] = ACTIONS(3144), - [anon_sym_short] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_register] = ACTIONS(3144), - [anon_sym_inline] = ACTIONS(3144), - [anon_sym___inline] = ACTIONS(3144), - [anon_sym___inline__] = ACTIONS(3144), - [anon_sym___forceinline] = ACTIONS(3144), - [anon_sym_thread_local] = ACTIONS(3144), - [anon_sym___thread] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_constexpr] = ACTIONS(3144), - [anon_sym_volatile] = ACTIONS(3144), - [anon_sym_restrict] = ACTIONS(3144), - [anon_sym___restrict__] = ACTIONS(3144), - [anon_sym__Atomic] = ACTIONS(3144), - [anon_sym__Noreturn] = ACTIONS(3144), - [anon_sym_noreturn] = ACTIONS(3144), - [anon_sym_mutable] = ACTIONS(3144), - [anon_sym_constinit] = ACTIONS(3144), - [anon_sym_consteval] = ACTIONS(3144), - [sym_primitive_type] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_struct] = ACTIONS(3144), - [anon_sym_union] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_case] = ACTIONS(3144), - [anon_sym_default] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_goto] = ACTIONS(3144), - [anon_sym___try] = ACTIONS(3144), - [anon_sym___leave] = ACTIONS(3144), - [anon_sym_not] = ACTIONS(3144), - [anon_sym_compl] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3144), - [anon_sym___alignof] = ACTIONS(3144), - [anon_sym__alignof] = ACTIONS(3144), - [anon_sym_alignof] = ACTIONS(3144), - [anon_sym__Alignof] = ACTIONS(3144), - [anon_sym_offsetof] = ACTIONS(3144), - [anon_sym__Generic] = ACTIONS(3144), - [anon_sym_asm] = ACTIONS(3144), - [anon_sym___asm__] = ACTIONS(3144), - [sym_number_literal] = ACTIONS(3146), - [anon_sym_L_SQUOTE] = ACTIONS(3146), - [anon_sym_u_SQUOTE] = ACTIONS(3146), - [anon_sym_U_SQUOTE] = ACTIONS(3146), - [anon_sym_u8_SQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_L_DQUOTE] = ACTIONS(3146), - [anon_sym_u_DQUOTE] = ACTIONS(3146), - [anon_sym_U_DQUOTE] = ACTIONS(3146), - [anon_sym_u8_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [anon_sym_NULL] = ACTIONS(3144), - [anon_sym_nullptr] = ACTIONS(3144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3144), - [anon_sym_decltype] = ACTIONS(3144), - [anon_sym_virtual] = ACTIONS(3144), - [anon_sym_alignas] = ACTIONS(3144), - [anon_sym_explicit] = ACTIONS(3144), - [anon_sym_typename] = ACTIONS(3144), - [anon_sym_template] = ACTIONS(3144), - [anon_sym_operator] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3144), - [anon_sym_static_assert] = ACTIONS(3144), - [anon_sym_concept] = ACTIONS(3144), - [anon_sym_co_return] = ACTIONS(3144), - [anon_sym_co_yield] = ACTIONS(3144), - [anon_sym_R_DQUOTE] = ACTIONS(3146), - [anon_sym_LR_DQUOTE] = ACTIONS(3146), - [anon_sym_uR_DQUOTE] = ACTIONS(3146), - [anon_sym_UR_DQUOTE] = ACTIONS(3146), - [anon_sym_u8R_DQUOTE] = ACTIONS(3146), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_requires] = ACTIONS(3144), - [sym_this] = ACTIONS(3144), - }, - [916] = { - [sym_identifier] = ACTIONS(3280), - [aux_sym_preproc_include_token1] = ACTIONS(3280), - [aux_sym_preproc_def_token1] = ACTIONS(3280), - [aux_sym_preproc_if_token1] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3280), - [sym_preproc_directive] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_STAR] = ACTIONS(3282), - [anon_sym_AMP_AMP] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym___extension__] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3282), - [anon_sym___declspec] = ACTIONS(3280), - [anon_sym___based] = ACTIONS(3280), - [anon_sym___cdecl] = ACTIONS(3280), - [anon_sym___clrcall] = ACTIONS(3280), - [anon_sym___stdcall] = ACTIONS(3280), - [anon_sym___fastcall] = ACTIONS(3280), - [anon_sym___thiscall] = ACTIONS(3280), - [anon_sym___vectorcall] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_signed] = ACTIONS(3280), - [anon_sym_unsigned] = ACTIONS(3280), - [anon_sym_long] = ACTIONS(3280), - [anon_sym_short] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_register] = ACTIONS(3280), - [anon_sym_inline] = ACTIONS(3280), - [anon_sym___inline] = ACTIONS(3280), - [anon_sym___inline__] = ACTIONS(3280), - [anon_sym___forceinline] = ACTIONS(3280), - [anon_sym_thread_local] = ACTIONS(3280), - [anon_sym___thread] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_constexpr] = ACTIONS(3280), - [anon_sym_volatile] = ACTIONS(3280), - [anon_sym_restrict] = ACTIONS(3280), - [anon_sym___restrict__] = ACTIONS(3280), - [anon_sym__Atomic] = ACTIONS(3280), - [anon_sym__Noreturn] = ACTIONS(3280), - [anon_sym_noreturn] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [sym_primitive_type] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_struct] = ACTIONS(3280), - [anon_sym_union] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_case] = ACTIONS(3280), - [anon_sym_default] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_goto] = ACTIONS(3280), - [anon_sym___try] = ACTIONS(3280), - [anon_sym___leave] = ACTIONS(3280), - [anon_sym_not] = ACTIONS(3280), - [anon_sym_compl] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_sizeof] = ACTIONS(3280), - [anon_sym___alignof__] = ACTIONS(3280), - [anon_sym___alignof] = ACTIONS(3280), - [anon_sym__alignof] = ACTIONS(3280), - [anon_sym_alignof] = ACTIONS(3280), - [anon_sym__Alignof] = ACTIONS(3280), - [anon_sym_offsetof] = ACTIONS(3280), - [anon_sym__Generic] = ACTIONS(3280), - [anon_sym_asm] = ACTIONS(3280), - [anon_sym___asm__] = ACTIONS(3280), - [sym_number_literal] = ACTIONS(3282), - [anon_sym_L_SQUOTE] = ACTIONS(3282), - [anon_sym_u_SQUOTE] = ACTIONS(3282), - [anon_sym_U_SQUOTE] = ACTIONS(3282), - [anon_sym_u8_SQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_L_DQUOTE] = ACTIONS(3282), - [anon_sym_u_DQUOTE] = ACTIONS(3282), - [anon_sym_U_DQUOTE] = ACTIONS(3282), - [anon_sym_u8_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym_true] = ACTIONS(3280), - [sym_false] = ACTIONS(3280), - [anon_sym_NULL] = ACTIONS(3280), - [anon_sym_nullptr] = ACTIONS(3280), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3280), - [anon_sym_decltype] = ACTIONS(3280), - [anon_sym_virtual] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym_explicit] = ACTIONS(3280), - [anon_sym_typename] = ACTIONS(3280), - [anon_sym_template] = ACTIONS(3280), - [anon_sym_operator] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_namespace] = ACTIONS(3280), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_static_assert] = ACTIONS(3280), - [anon_sym_concept] = ACTIONS(3280), - [anon_sym_co_return] = ACTIONS(3280), - [anon_sym_co_yield] = ACTIONS(3280), - [anon_sym_R_DQUOTE] = ACTIONS(3282), - [anon_sym_LR_DQUOTE] = ACTIONS(3282), - [anon_sym_uR_DQUOTE] = ACTIONS(3282), - [anon_sym_UR_DQUOTE] = ACTIONS(3282), - [anon_sym_u8R_DQUOTE] = ACTIONS(3282), - [anon_sym_co_await] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_requires] = ACTIONS(3280), - [sym_this] = ACTIONS(3280), - }, - [917] = { - [sym_identifier] = ACTIONS(3270), - [aux_sym_preproc_include_token1] = ACTIONS(3270), - [aux_sym_preproc_def_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), - [sym_preproc_directive] = ACTIONS(3270), - [anon_sym_LPAREN2] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), - [anon_sym___declspec] = ACTIONS(3270), - [anon_sym___based] = ACTIONS(3270), - [anon_sym___cdecl] = ACTIONS(3270), - [anon_sym___clrcall] = ACTIONS(3270), - [anon_sym___stdcall] = ACTIONS(3270), - [anon_sym___fastcall] = ACTIONS(3270), - [anon_sym___thiscall] = ACTIONS(3270), - [anon_sym___vectorcall] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_signed] = ACTIONS(3270), - [anon_sym_unsigned] = ACTIONS(3270), - [anon_sym_long] = ACTIONS(3270), - [anon_sym_short] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_register] = ACTIONS(3270), - [anon_sym_inline] = ACTIONS(3270), - [anon_sym___inline] = ACTIONS(3270), - [anon_sym___inline__] = ACTIONS(3270), - [anon_sym___forceinline] = ACTIONS(3270), - [anon_sym_thread_local] = ACTIONS(3270), - [anon_sym___thread] = ACTIONS(3270), - [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_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [sym_primitive_type] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3270), - [anon_sym_default] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_goto] = ACTIONS(3270), - [anon_sym___try] = ACTIONS(3270), - [anon_sym___leave] = ACTIONS(3270), - [anon_sym_not] = ACTIONS(3270), - [anon_sym_compl] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_sizeof] = ACTIONS(3270), - [anon_sym___alignof__] = ACTIONS(3270), - [anon_sym___alignof] = ACTIONS(3270), - [anon_sym__alignof] = ACTIONS(3270), - [anon_sym_alignof] = ACTIONS(3270), - [anon_sym__Alignof] = ACTIONS(3270), - [anon_sym_offsetof] = ACTIONS(3270), - [anon_sym__Generic] = ACTIONS(3270), - [anon_sym_asm] = ACTIONS(3270), - [anon_sym___asm__] = ACTIONS(3270), - [sym_number_literal] = ACTIONS(3272), - [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(3272), - [anon_sym_u_DQUOTE] = ACTIONS(3272), - [anon_sym_U_DQUOTE] = ACTIONS(3272), - [anon_sym_u8_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [anon_sym_NULL] = ACTIONS(3270), - [anon_sym_nullptr] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3270), - [anon_sym_decltype] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), - [anon_sym_concept] = ACTIONS(3270), - [anon_sym_co_return] = ACTIONS(3270), - [anon_sym_co_yield] = ACTIONS(3270), - [anon_sym_R_DQUOTE] = ACTIONS(3272), - [anon_sym_LR_DQUOTE] = ACTIONS(3272), - [anon_sym_uR_DQUOTE] = ACTIONS(3272), - [anon_sym_UR_DQUOTE] = ACTIONS(3272), - [anon_sym_u8R_DQUOTE] = ACTIONS(3272), - [anon_sym_co_await] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_requires] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), - }, - [918] = { - [sym_identifier] = ACTIONS(3274), - [aux_sym_preproc_include_token1] = ACTIONS(3274), - [aux_sym_preproc_def_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym___extension__] = ACTIONS(3274), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym___attribute__] = ACTIONS(3274), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), - [anon_sym___declspec] = ACTIONS(3274), - [anon_sym___based] = ACTIONS(3274), - [anon_sym___cdecl] = ACTIONS(3274), - [anon_sym___clrcall] = ACTIONS(3274), - [anon_sym___stdcall] = ACTIONS(3274), - [anon_sym___fastcall] = ACTIONS(3274), - [anon_sym___thiscall] = ACTIONS(3274), - [anon_sym___vectorcall] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_signed] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym___inline] = ACTIONS(3274), - [anon_sym___inline__] = ACTIONS(3274), - [anon_sym___forceinline] = ACTIONS(3274), - [anon_sym_thread_local] = ACTIONS(3274), - [anon_sym___thread] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_constexpr] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym___restrict__] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym__Noreturn] = ACTIONS(3274), - [anon_sym_noreturn] = ACTIONS(3274), - [anon_sym_mutable] = ACTIONS(3274), - [anon_sym_constinit] = ACTIONS(3274), - [anon_sym_consteval] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym___try] = ACTIONS(3274), - [anon_sym___leave] = ACTIONS(3274), - [anon_sym_not] = ACTIONS(3274), - [anon_sym_compl] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_sizeof] = ACTIONS(3274), - [anon_sym___alignof__] = ACTIONS(3274), - [anon_sym___alignof] = ACTIONS(3274), - [anon_sym__alignof] = ACTIONS(3274), - [anon_sym_alignof] = ACTIONS(3274), - [anon_sym__Alignof] = ACTIONS(3274), - [anon_sym_offsetof] = ACTIONS(3274), - [anon_sym__Generic] = ACTIONS(3274), - [anon_sym_asm] = ACTIONS(3274), - [anon_sym___asm__] = ACTIONS(3274), - [sym_number_literal] = ACTIONS(3276), - [anon_sym_L_SQUOTE] = ACTIONS(3276), - [anon_sym_u_SQUOTE] = ACTIONS(3276), - [anon_sym_U_SQUOTE] = ACTIONS(3276), - [anon_sym_u8_SQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_L_DQUOTE] = ACTIONS(3276), - [anon_sym_u_DQUOTE] = ACTIONS(3276), - [anon_sym_U_DQUOTE] = ACTIONS(3276), - [anon_sym_u8_DQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [anon_sym_NULL] = ACTIONS(3274), - [anon_sym_nullptr] = ACTIONS(3274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3274), - [anon_sym_decltype] = ACTIONS(3274), - [anon_sym_virtual] = ACTIONS(3274), - [anon_sym_alignas] = ACTIONS(3274), - [anon_sym_explicit] = ACTIONS(3274), - [anon_sym_typename] = ACTIONS(3274), - [anon_sym_template] = ACTIONS(3274), - [anon_sym_operator] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_static_assert] = ACTIONS(3274), - [anon_sym_concept] = ACTIONS(3274), - [anon_sym_co_return] = ACTIONS(3274), - [anon_sym_co_yield] = ACTIONS(3274), - [anon_sym_R_DQUOTE] = ACTIONS(3276), - [anon_sym_LR_DQUOTE] = ACTIONS(3276), - [anon_sym_uR_DQUOTE] = ACTIONS(3276), - [anon_sym_UR_DQUOTE] = ACTIONS(3276), - [anon_sym_u8R_DQUOTE] = ACTIONS(3276), - [anon_sym_co_await] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_requires] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), + [887] = { + [sym_identifier] = ACTIONS(3179), + [aux_sym_preproc_include_token1] = ACTIONS(3179), + [aux_sym_preproc_def_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), + [sym_preproc_directive] = ACTIONS(3179), + [anon_sym_LPAREN2] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym___extension__] = ACTIONS(3179), + [anon_sym_typedef] = ACTIONS(3179), + [anon_sym_extern] = ACTIONS(3179), + [anon_sym___attribute__] = ACTIONS(3179), + [anon_sym_COLON_COLON] = ACTIONS(3181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), + [anon_sym___declspec] = ACTIONS(3179), + [anon_sym___based] = ACTIONS(3179), + [anon_sym___cdecl] = ACTIONS(3179), + [anon_sym___clrcall] = ACTIONS(3179), + [anon_sym___stdcall] = ACTIONS(3179), + [anon_sym___fastcall] = ACTIONS(3179), + [anon_sym___thiscall] = ACTIONS(3179), + [anon_sym___vectorcall] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_RBRACE] = ACTIONS(3181), + [anon_sym_signed] = ACTIONS(3179), + [anon_sym_unsigned] = ACTIONS(3179), + [anon_sym_long] = ACTIONS(3179), + [anon_sym_short] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_register] = ACTIONS(3179), + [anon_sym_inline] = ACTIONS(3179), + [anon_sym___inline] = ACTIONS(3179), + [anon_sym___inline__] = ACTIONS(3179), + [anon_sym___forceinline] = ACTIONS(3179), + [anon_sym_thread_local] = ACTIONS(3179), + [anon_sym___thread] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_constexpr] = ACTIONS(3179), + [anon_sym_volatile] = ACTIONS(3179), + [anon_sym_restrict] = ACTIONS(3179), + [anon_sym___restrict__] = ACTIONS(3179), + [anon_sym__Atomic] = ACTIONS(3179), + [anon_sym__Noreturn] = ACTIONS(3179), + [anon_sym_noreturn] = ACTIONS(3179), + [anon_sym_mutable] = ACTIONS(3179), + [anon_sym_constinit] = ACTIONS(3179), + [anon_sym_consteval] = ACTIONS(3179), + [sym_primitive_type] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3179), + [anon_sym_case] = ACTIONS(3179), + [anon_sym_default] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_do] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_goto] = ACTIONS(3179), + [anon_sym___try] = ACTIONS(3179), + [anon_sym___leave] = ACTIONS(3179), + [anon_sym_not] = ACTIONS(3179), + [anon_sym_compl] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3179), + [anon_sym___alignof__] = ACTIONS(3179), + [anon_sym___alignof] = ACTIONS(3179), + [anon_sym__alignof] = ACTIONS(3179), + [anon_sym_alignof] = ACTIONS(3179), + [anon_sym__Alignof] = ACTIONS(3179), + [anon_sym_offsetof] = ACTIONS(3179), + [anon_sym__Generic] = ACTIONS(3179), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [anon_sym_L_SQUOTE] = ACTIONS(3181), + [anon_sym_u_SQUOTE] = ACTIONS(3181), + [anon_sym_U_SQUOTE] = ACTIONS(3181), + [anon_sym_u8_SQUOTE] = ACTIONS(3181), + [anon_sym_SQUOTE] = ACTIONS(3181), + [anon_sym_L_DQUOTE] = ACTIONS(3181), + [anon_sym_u_DQUOTE] = ACTIONS(3181), + [anon_sym_U_DQUOTE] = ACTIONS(3181), + [anon_sym_u8_DQUOTE] = ACTIONS(3181), + [anon_sym_DQUOTE] = ACTIONS(3181), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [anon_sym_NULL] = ACTIONS(3179), + [anon_sym_nullptr] = ACTIONS(3179), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3179), + [anon_sym_decltype] = ACTIONS(3179), + [anon_sym_virtual] = ACTIONS(3179), + [anon_sym_alignas] = ACTIONS(3179), + [anon_sym_explicit] = ACTIONS(3179), + [anon_sym_typename] = ACTIONS(3179), + [anon_sym_template] = ACTIONS(3179), + [anon_sym_operator] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3179), + [anon_sym_delete] = ACTIONS(3179), + [anon_sym_throw] = ACTIONS(3179), + [anon_sym_namespace] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3179), + [anon_sym_static_assert] = ACTIONS(3179), + [anon_sym_concept] = ACTIONS(3179), + [anon_sym_co_return] = ACTIONS(3179), + [anon_sym_co_yield] = ACTIONS(3179), + [anon_sym_R_DQUOTE] = ACTIONS(3181), + [anon_sym_LR_DQUOTE] = ACTIONS(3181), + [anon_sym_uR_DQUOTE] = ACTIONS(3181), + [anon_sym_UR_DQUOTE] = ACTIONS(3181), + [anon_sym_u8R_DQUOTE] = ACTIONS(3181), + [anon_sym_co_await] = ACTIONS(3179), + [anon_sym_new] = ACTIONS(3179), + [anon_sym_requires] = ACTIONS(3179), + [sym_this] = ACTIONS(3179), }, - [919] = { - [sym_identifier] = ACTIONS(3270), - [aux_sym_preproc_include_token1] = ACTIONS(3270), - [aux_sym_preproc_def_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token2] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), - [sym_preproc_directive] = ACTIONS(3270), - [anon_sym_LPAREN2] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), - [anon_sym___declspec] = ACTIONS(3270), - [anon_sym___based] = ACTIONS(3270), - [anon_sym___cdecl] = ACTIONS(3270), - [anon_sym___clrcall] = ACTIONS(3270), - [anon_sym___stdcall] = ACTIONS(3270), - [anon_sym___fastcall] = ACTIONS(3270), - [anon_sym___thiscall] = ACTIONS(3270), - [anon_sym___vectorcall] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_signed] = ACTIONS(3270), - [anon_sym_unsigned] = ACTIONS(3270), - [anon_sym_long] = ACTIONS(3270), - [anon_sym_short] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_register] = ACTIONS(3270), - [anon_sym_inline] = ACTIONS(3270), - [anon_sym___inline] = ACTIONS(3270), - [anon_sym___inline__] = ACTIONS(3270), - [anon_sym___forceinline] = ACTIONS(3270), - [anon_sym_thread_local] = ACTIONS(3270), - [anon_sym___thread] = ACTIONS(3270), - [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_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [sym_primitive_type] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3270), - [anon_sym_default] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_goto] = ACTIONS(3270), - [anon_sym___try] = ACTIONS(3270), - [anon_sym___leave] = ACTIONS(3270), - [anon_sym_not] = ACTIONS(3270), - [anon_sym_compl] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_sizeof] = ACTIONS(3270), - [anon_sym___alignof__] = ACTIONS(3270), - [anon_sym___alignof] = ACTIONS(3270), - [anon_sym__alignof] = ACTIONS(3270), - [anon_sym_alignof] = ACTIONS(3270), - [anon_sym__Alignof] = ACTIONS(3270), - [anon_sym_offsetof] = ACTIONS(3270), - [anon_sym__Generic] = ACTIONS(3270), - [anon_sym_asm] = ACTIONS(3270), - [anon_sym___asm__] = ACTIONS(3270), - [sym_number_literal] = ACTIONS(3272), - [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(3272), - [anon_sym_u_DQUOTE] = ACTIONS(3272), - [anon_sym_U_DQUOTE] = ACTIONS(3272), - [anon_sym_u8_DQUOTE] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [anon_sym_NULL] = ACTIONS(3270), - [anon_sym_nullptr] = ACTIONS(3270), + [888] = { + [sym_identifier] = ACTIONS(3306), + [aux_sym_preproc_include_token1] = ACTIONS(3306), + [aux_sym_preproc_def_token1] = ACTIONS(3306), + [aux_sym_preproc_if_token1] = ACTIONS(3306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3306), + [sym_preproc_directive] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym___extension__] = ACTIONS(3306), + [anon_sym_typedef] = ACTIONS(3306), + [anon_sym_extern] = ACTIONS(3306), + [anon_sym___attribute__] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3308), + [anon_sym___declspec] = ACTIONS(3306), + [anon_sym___based] = ACTIONS(3306), + [anon_sym___cdecl] = ACTIONS(3306), + [anon_sym___clrcall] = ACTIONS(3306), + [anon_sym___stdcall] = ACTIONS(3306), + [anon_sym___fastcall] = ACTIONS(3306), + [anon_sym___thiscall] = ACTIONS(3306), + [anon_sym___vectorcall] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_signed] = ACTIONS(3306), + [anon_sym_unsigned] = ACTIONS(3306), + [anon_sym_long] = ACTIONS(3306), + [anon_sym_short] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_register] = ACTIONS(3306), + [anon_sym_inline] = ACTIONS(3306), + [anon_sym___inline] = ACTIONS(3306), + [anon_sym___inline__] = ACTIONS(3306), + [anon_sym___forceinline] = ACTIONS(3306), + [anon_sym_thread_local] = ACTIONS(3306), + [anon_sym___thread] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_constexpr] = ACTIONS(3306), + [anon_sym_volatile] = ACTIONS(3306), + [anon_sym_restrict] = ACTIONS(3306), + [anon_sym___restrict__] = ACTIONS(3306), + [anon_sym__Atomic] = ACTIONS(3306), + [anon_sym__Noreturn] = ACTIONS(3306), + [anon_sym_noreturn] = ACTIONS(3306), + [anon_sym_mutable] = ACTIONS(3306), + [anon_sym_constinit] = ACTIONS(3306), + [anon_sym_consteval] = ACTIONS(3306), + [sym_primitive_type] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_struct] = ACTIONS(3306), + [anon_sym_union] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_case] = ACTIONS(3306), + [anon_sym_default] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_goto] = ACTIONS(3306), + [anon_sym___try] = ACTIONS(3306), + [anon_sym___leave] = ACTIONS(3306), + [anon_sym_not] = ACTIONS(3306), + [anon_sym_compl] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_sizeof] = ACTIONS(3306), + [anon_sym___alignof__] = ACTIONS(3306), + [anon_sym___alignof] = ACTIONS(3306), + [anon_sym__alignof] = ACTIONS(3306), + [anon_sym_alignof] = ACTIONS(3306), + [anon_sym__Alignof] = ACTIONS(3306), + [anon_sym_offsetof] = ACTIONS(3306), + [anon_sym__Generic] = ACTIONS(3306), + [anon_sym_asm] = ACTIONS(3306), + [anon_sym___asm__] = ACTIONS(3306), + [sym_number_literal] = ACTIONS(3308), + [anon_sym_L_SQUOTE] = ACTIONS(3308), + [anon_sym_u_SQUOTE] = ACTIONS(3308), + [anon_sym_U_SQUOTE] = ACTIONS(3308), + [anon_sym_u8_SQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_L_DQUOTE] = ACTIONS(3308), + [anon_sym_u_DQUOTE] = ACTIONS(3308), + [anon_sym_U_DQUOTE] = ACTIONS(3308), + [anon_sym_u8_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [anon_sym_NULL] = ACTIONS(3306), + [anon_sym_nullptr] = ACTIONS(3306), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3270), - [anon_sym_decltype] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), - [anon_sym_concept] = ACTIONS(3270), - [anon_sym_co_return] = ACTIONS(3270), - [anon_sym_co_yield] = ACTIONS(3270), - [anon_sym_R_DQUOTE] = ACTIONS(3272), - [anon_sym_LR_DQUOTE] = ACTIONS(3272), - [anon_sym_uR_DQUOTE] = ACTIONS(3272), - [anon_sym_UR_DQUOTE] = ACTIONS(3272), - [anon_sym_u8R_DQUOTE] = ACTIONS(3272), - [anon_sym_co_await] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_requires] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), - }, - [920] = { - [sym_identifier] = ACTIONS(3231), - [aux_sym_preproc_include_token1] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), - [sym_preproc_directive] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym___based] = ACTIONS(3231), - [anon_sym___cdecl] = ACTIONS(3231), - [anon_sym___clrcall] = ACTIONS(3231), - [anon_sym___stdcall] = ACTIONS(3231), - [anon_sym___fastcall] = ACTIONS(3231), - [anon_sym___thiscall] = ACTIONS(3231), - [anon_sym___vectorcall] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym___try] = ACTIONS(3231), - [anon_sym___leave] = ACTIONS(3231), - [anon_sym_not] = ACTIONS(3231), - [anon_sym_compl] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3231), - [anon_sym___alignof__] = ACTIONS(3231), - [anon_sym___alignof] = ACTIONS(3231), - [anon_sym__alignof] = ACTIONS(3231), - [anon_sym_alignof] = ACTIONS(3231), - [anon_sym__Alignof] = ACTIONS(3231), - [anon_sym_offsetof] = ACTIONS(3231), - [anon_sym__Generic] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym___asm__] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3233), - [anon_sym_L_SQUOTE] = ACTIONS(3233), - [anon_sym_u_SQUOTE] = ACTIONS(3233), - [anon_sym_U_SQUOTE] = ACTIONS(3233), - [anon_sym_u8_SQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_L_DQUOTE] = ACTIONS(3233), - [anon_sym_u_DQUOTE] = ACTIONS(3233), - [anon_sym_U_DQUOTE] = ACTIONS(3233), - [anon_sym_u8_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [anon_sym_NULL] = ACTIONS(3231), - [anon_sym_nullptr] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_explicit] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_operator] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_static_assert] = ACTIONS(3231), - [anon_sym_concept] = ACTIONS(3231), - [anon_sym_co_return] = ACTIONS(3231), - [anon_sym_co_yield] = ACTIONS(3231), - [anon_sym_R_DQUOTE] = ACTIONS(3233), - [anon_sym_LR_DQUOTE] = ACTIONS(3233), - [anon_sym_uR_DQUOTE] = ACTIONS(3233), - [anon_sym_UR_DQUOTE] = ACTIONS(3233), - [anon_sym_u8R_DQUOTE] = ACTIONS(3233), - [anon_sym_co_await] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_requires] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), + [sym_auto] = ACTIONS(3306), + [anon_sym_decltype] = ACTIONS(3306), + [anon_sym_virtual] = ACTIONS(3306), + [anon_sym_alignas] = ACTIONS(3306), + [anon_sym_explicit] = ACTIONS(3306), + [anon_sym_typename] = ACTIONS(3306), + [anon_sym_template] = ACTIONS(3306), + [anon_sym_operator] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_static_assert] = ACTIONS(3306), + [anon_sym_concept] = ACTIONS(3306), + [anon_sym_co_return] = ACTIONS(3306), + [anon_sym_co_yield] = ACTIONS(3306), + [anon_sym_R_DQUOTE] = ACTIONS(3308), + [anon_sym_LR_DQUOTE] = ACTIONS(3308), + [anon_sym_uR_DQUOTE] = ACTIONS(3308), + [anon_sym_UR_DQUOTE] = ACTIONS(3308), + [anon_sym_u8R_DQUOTE] = ACTIONS(3308), + [anon_sym_co_await] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_requires] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), }, - [921] = { - [sym_identifier] = ACTIONS(3255), - [aux_sym_preproc_include_token1] = ACTIONS(3255), - [aux_sym_preproc_def_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token2] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), - [sym_preproc_directive] = ACTIONS(3255), - [anon_sym_LPAREN2] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_AMP_AMP] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym___extension__] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3255), - [anon_sym_extern] = ACTIONS(3255), - [anon_sym___attribute__] = ACTIONS(3255), - [anon_sym_COLON_COLON] = ACTIONS(3257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3257), - [anon_sym___declspec] = ACTIONS(3255), - [anon_sym___based] = ACTIONS(3255), - [anon_sym___cdecl] = ACTIONS(3255), - [anon_sym___clrcall] = ACTIONS(3255), - [anon_sym___stdcall] = ACTIONS(3255), - [anon_sym___fastcall] = ACTIONS(3255), - [anon_sym___thiscall] = ACTIONS(3255), - [anon_sym___vectorcall] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_signed] = ACTIONS(3255), - [anon_sym_unsigned] = ACTIONS(3255), - [anon_sym_long] = ACTIONS(3255), - [anon_sym_short] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_register] = ACTIONS(3255), - [anon_sym_inline] = ACTIONS(3255), - [anon_sym___inline] = ACTIONS(3255), - [anon_sym___inline__] = ACTIONS(3255), - [anon_sym___forceinline] = ACTIONS(3255), - [anon_sym_thread_local] = ACTIONS(3255), - [anon_sym___thread] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_constexpr] = ACTIONS(3255), - [anon_sym_volatile] = ACTIONS(3255), - [anon_sym_restrict] = ACTIONS(3255), - [anon_sym___restrict__] = ACTIONS(3255), - [anon_sym__Atomic] = ACTIONS(3255), - [anon_sym__Noreturn] = ACTIONS(3255), - [anon_sym_noreturn] = ACTIONS(3255), - [anon_sym_mutable] = ACTIONS(3255), - [anon_sym_constinit] = ACTIONS(3255), - [anon_sym_consteval] = ACTIONS(3255), - [sym_primitive_type] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym___try] = ACTIONS(3255), - [anon_sym___leave] = ACTIONS(3255), - [anon_sym_not] = ACTIONS(3255), - [anon_sym_compl] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3255), - [anon_sym___alignof__] = ACTIONS(3255), - [anon_sym___alignof] = ACTIONS(3255), - [anon_sym__alignof] = ACTIONS(3255), - [anon_sym_alignof] = ACTIONS(3255), - [anon_sym__Alignof] = ACTIONS(3255), - [anon_sym_offsetof] = ACTIONS(3255), - [anon_sym__Generic] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym___asm__] = ACTIONS(3255), - [sym_number_literal] = ACTIONS(3257), - [anon_sym_L_SQUOTE] = ACTIONS(3257), - [anon_sym_u_SQUOTE] = ACTIONS(3257), - [anon_sym_U_SQUOTE] = ACTIONS(3257), - [anon_sym_u8_SQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_L_DQUOTE] = ACTIONS(3257), - [anon_sym_u_DQUOTE] = ACTIONS(3257), - [anon_sym_U_DQUOTE] = ACTIONS(3257), - [anon_sym_u8_DQUOTE] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [anon_sym_NULL] = ACTIONS(3255), - [anon_sym_nullptr] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3255), - [anon_sym_decltype] = ACTIONS(3255), - [anon_sym_virtual] = ACTIONS(3255), - [anon_sym_alignas] = ACTIONS(3255), - [anon_sym_explicit] = ACTIONS(3255), - [anon_sym_typename] = ACTIONS(3255), - [anon_sym_template] = ACTIONS(3255), - [anon_sym_operator] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_static_assert] = ACTIONS(3255), - [anon_sym_concept] = ACTIONS(3255), - [anon_sym_co_return] = ACTIONS(3255), - [anon_sym_co_yield] = ACTIONS(3255), - [anon_sym_R_DQUOTE] = ACTIONS(3257), - [anon_sym_LR_DQUOTE] = ACTIONS(3257), - [anon_sym_uR_DQUOTE] = ACTIONS(3257), - [anon_sym_UR_DQUOTE] = ACTIONS(3257), - [anon_sym_u8R_DQUOTE] = ACTIONS(3257), - [anon_sym_co_await] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_requires] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), + [889] = { + [sym_identifier] = ACTIONS(3106), + [aux_sym_preproc_include_token1] = ACTIONS(3106), + [aux_sym_preproc_def_token1] = ACTIONS(3106), + [aux_sym_preproc_if_token1] = ACTIONS(3106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3106), + [sym_preproc_directive] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3106), + [anon_sym_typedef] = ACTIONS(3106), + [anon_sym_extern] = ACTIONS(3106), + [anon_sym___attribute__] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3106), + [anon_sym___based] = ACTIONS(3106), + [anon_sym___cdecl] = ACTIONS(3106), + [anon_sym___clrcall] = ACTIONS(3106), + [anon_sym___stdcall] = ACTIONS(3106), + [anon_sym___fastcall] = ACTIONS(3106), + [anon_sym___thiscall] = ACTIONS(3106), + [anon_sym___vectorcall] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3106), + [anon_sym_unsigned] = ACTIONS(3106), + [anon_sym_long] = ACTIONS(3106), + [anon_sym_short] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_register] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym___inline] = ACTIONS(3106), + [anon_sym___inline__] = ACTIONS(3106), + [anon_sym___forceinline] = ACTIONS(3106), + [anon_sym_thread_local] = ACTIONS(3106), + [anon_sym___thread] = ACTIONS(3106), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_constexpr] = ACTIONS(3106), + [anon_sym_volatile] = ACTIONS(3106), + [anon_sym_restrict] = ACTIONS(3106), + [anon_sym___restrict__] = ACTIONS(3106), + [anon_sym__Atomic] = ACTIONS(3106), + [anon_sym__Noreturn] = ACTIONS(3106), + [anon_sym_noreturn] = ACTIONS(3106), + [anon_sym_mutable] = ACTIONS(3106), + [anon_sym_constinit] = ACTIONS(3106), + [anon_sym_consteval] = ACTIONS(3106), + [sym_primitive_type] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [anon_sym_class] = ACTIONS(3106), + [anon_sym_struct] = ACTIONS(3106), + [anon_sym_union] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_switch] = ACTIONS(3106), + [anon_sym_case] = ACTIONS(3106), + [anon_sym_default] = ACTIONS(3106), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_do] = ACTIONS(3106), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_goto] = ACTIONS(3106), + [anon_sym___try] = ACTIONS(3106), + [anon_sym___leave] = ACTIONS(3106), + [anon_sym_not] = ACTIONS(3106), + [anon_sym_compl] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_sizeof] = ACTIONS(3106), + [anon_sym___alignof__] = ACTIONS(3106), + [anon_sym___alignof] = ACTIONS(3106), + [anon_sym__alignof] = ACTIONS(3106), + [anon_sym_alignof] = ACTIONS(3106), + [anon_sym__Alignof] = ACTIONS(3106), + [anon_sym_offsetof] = ACTIONS(3106), + [anon_sym__Generic] = ACTIONS(3106), + [anon_sym_asm] = ACTIONS(3106), + [anon_sym___asm__] = ACTIONS(3106), + [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(3106), + [sym_false] = ACTIONS(3106), + [anon_sym_NULL] = ACTIONS(3106), + [anon_sym_nullptr] = ACTIONS(3106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3106), + [anon_sym_decltype] = ACTIONS(3106), + [anon_sym_virtual] = ACTIONS(3106), + [anon_sym_alignas] = ACTIONS(3106), + [anon_sym_explicit] = ACTIONS(3106), + [anon_sym_typename] = ACTIONS(3106), + [anon_sym_template] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_delete] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_namespace] = ACTIONS(3106), + [anon_sym_using] = ACTIONS(3106), + [anon_sym_static_assert] = ACTIONS(3106), + [anon_sym_concept] = ACTIONS(3106), + [anon_sym_co_return] = ACTIONS(3106), + [anon_sym_co_yield] = ACTIONS(3106), + [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(3106), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_requires] = ACTIONS(3106), + [sym_this] = ACTIONS(3106), }, - [922] = { - [sym_identifier] = ACTIONS(3227), - [aux_sym_preproc_include_token1] = ACTIONS(3227), - [aux_sym_preproc_def_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), - [sym_preproc_directive] = ACTIONS(3227), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym___extension__] = ACTIONS(3227), - [anon_sym_typedef] = ACTIONS(3227), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym___attribute__] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), - [anon_sym___declspec] = ACTIONS(3227), - [anon_sym___based] = ACTIONS(3227), - [anon_sym___cdecl] = ACTIONS(3227), - [anon_sym___clrcall] = ACTIONS(3227), - [anon_sym___stdcall] = ACTIONS(3227), - [anon_sym___fastcall] = ACTIONS(3227), - [anon_sym___thiscall] = ACTIONS(3227), - [anon_sym___vectorcall] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_signed] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym___inline] = ACTIONS(3227), - [anon_sym___inline__] = ACTIONS(3227), - [anon_sym___forceinline] = ACTIONS(3227), - [anon_sym_thread_local] = ACTIONS(3227), - [anon_sym___thread] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_constexpr] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym___restrict__] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym__Noreturn] = ACTIONS(3227), - [anon_sym_noreturn] = ACTIONS(3227), - [anon_sym_mutable] = ACTIONS(3227), - [anon_sym_constinit] = ACTIONS(3227), - [anon_sym_consteval] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_default] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_goto] = ACTIONS(3227), - [anon_sym___try] = ACTIONS(3227), - [anon_sym___leave] = ACTIONS(3227), - [anon_sym_not] = ACTIONS(3227), - [anon_sym_compl] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_sizeof] = ACTIONS(3227), - [anon_sym___alignof__] = ACTIONS(3227), - [anon_sym___alignof] = ACTIONS(3227), - [anon_sym__alignof] = ACTIONS(3227), - [anon_sym_alignof] = ACTIONS(3227), - [anon_sym__Alignof] = ACTIONS(3227), - [anon_sym_offsetof] = ACTIONS(3227), - [anon_sym__Generic] = ACTIONS(3227), - [anon_sym_asm] = ACTIONS(3227), - [anon_sym___asm__] = ACTIONS(3227), - [sym_number_literal] = ACTIONS(3229), - [anon_sym_L_SQUOTE] = ACTIONS(3229), - [anon_sym_u_SQUOTE] = ACTIONS(3229), - [anon_sym_U_SQUOTE] = ACTIONS(3229), - [anon_sym_u8_SQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_L_DQUOTE] = ACTIONS(3229), - [anon_sym_u_DQUOTE] = ACTIONS(3229), - [anon_sym_U_DQUOTE] = ACTIONS(3229), - [anon_sym_u8_DQUOTE] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [anon_sym_NULL] = ACTIONS(3227), - [anon_sym_nullptr] = ACTIONS(3227), + [890] = { + [sym_identifier] = ACTIONS(3098), + [aux_sym_preproc_include_token1] = ACTIONS(3098), + [aux_sym_preproc_def_token1] = ACTIONS(3098), + [aux_sym_preproc_if_token1] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), + [sym_preproc_directive] = ACTIONS(3098), + [anon_sym_LPAREN2] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym___extension__] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3098), + [anon_sym_extern] = ACTIONS(3098), + [anon_sym___attribute__] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), + [anon_sym___declspec] = ACTIONS(3098), + [anon_sym___based] = ACTIONS(3098), + [anon_sym___cdecl] = ACTIONS(3098), + [anon_sym___clrcall] = ACTIONS(3098), + [anon_sym___stdcall] = ACTIONS(3098), + [anon_sym___fastcall] = ACTIONS(3098), + [anon_sym___thiscall] = ACTIONS(3098), + [anon_sym___vectorcall] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_signed] = ACTIONS(3098), + [anon_sym_unsigned] = ACTIONS(3098), + [anon_sym_long] = ACTIONS(3098), + [anon_sym_short] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_register] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym___inline] = ACTIONS(3098), + [anon_sym___inline__] = ACTIONS(3098), + [anon_sym___forceinline] = ACTIONS(3098), + [anon_sym_thread_local] = ACTIONS(3098), + [anon_sym___thread] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_constexpr] = ACTIONS(3098), + [anon_sym_volatile] = ACTIONS(3098), + [anon_sym_restrict] = ACTIONS(3098), + [anon_sym___restrict__] = ACTIONS(3098), + [anon_sym__Atomic] = ACTIONS(3098), + [anon_sym__Noreturn] = ACTIONS(3098), + [anon_sym_noreturn] = ACTIONS(3098), + [anon_sym_mutable] = ACTIONS(3098), + [anon_sym_constinit] = ACTIONS(3098), + [anon_sym_consteval] = ACTIONS(3098), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(3098), + [anon_sym_union] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_switch] = ACTIONS(3098), + [anon_sym_case] = ACTIONS(3098), + [anon_sym_default] = ACTIONS(3098), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_do] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_goto] = ACTIONS(3098), + [anon_sym___try] = ACTIONS(3098), + [anon_sym___leave] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(3098), + [anon_sym_compl] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_sizeof] = ACTIONS(3098), + [anon_sym___alignof__] = ACTIONS(3098), + [anon_sym___alignof] = ACTIONS(3098), + [anon_sym__alignof] = ACTIONS(3098), + [anon_sym_alignof] = ACTIONS(3098), + [anon_sym__Alignof] = ACTIONS(3098), + [anon_sym_offsetof] = ACTIONS(3098), + [anon_sym__Generic] = ACTIONS(3098), + [anon_sym_asm] = ACTIONS(3098), + [anon_sym___asm__] = ACTIONS(3098), + [sym_number_literal] = ACTIONS(3100), + [anon_sym_L_SQUOTE] = ACTIONS(3100), + [anon_sym_u_SQUOTE] = ACTIONS(3100), + [anon_sym_U_SQUOTE] = ACTIONS(3100), + [anon_sym_u8_SQUOTE] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3100), + [anon_sym_L_DQUOTE] = ACTIONS(3100), + [anon_sym_u_DQUOTE] = ACTIONS(3100), + [anon_sym_U_DQUOTE] = ACTIONS(3100), + [anon_sym_u8_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE] = ACTIONS(3100), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [anon_sym_NULL] = ACTIONS(3098), + [anon_sym_nullptr] = ACTIONS(3098), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3227), - [anon_sym_decltype] = ACTIONS(3227), - [anon_sym_virtual] = ACTIONS(3227), - [anon_sym_alignas] = ACTIONS(3227), - [anon_sym_explicit] = ACTIONS(3227), - [anon_sym_typename] = ACTIONS(3227), - [anon_sym_template] = ACTIONS(3227), - [anon_sym_operator] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_static_assert] = ACTIONS(3227), - [anon_sym_concept] = ACTIONS(3227), - [anon_sym_co_return] = ACTIONS(3227), - [anon_sym_co_yield] = ACTIONS(3227), - [anon_sym_R_DQUOTE] = ACTIONS(3229), - [anon_sym_LR_DQUOTE] = ACTIONS(3229), - [anon_sym_uR_DQUOTE] = ACTIONS(3229), - [anon_sym_UR_DQUOTE] = ACTIONS(3229), - [anon_sym_u8R_DQUOTE] = ACTIONS(3229), - [anon_sym_co_await] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_requires] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - }, - [923] = { - [sym_identifier] = ACTIONS(3176), - [aux_sym_preproc_include_token1] = ACTIONS(3176), - [aux_sym_preproc_def_token1] = ACTIONS(3176), - [aux_sym_preproc_if_token1] = ACTIONS(3176), - [aux_sym_preproc_if_token2] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), - [sym_preproc_directive] = ACTIONS(3176), - [anon_sym_LPAREN2] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym___extension__] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3176), - [anon_sym_extern] = ACTIONS(3176), - [anon_sym___attribute__] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(3178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), - [anon_sym___declspec] = ACTIONS(3176), - [anon_sym___based] = ACTIONS(3176), - [anon_sym___cdecl] = ACTIONS(3176), - [anon_sym___clrcall] = ACTIONS(3176), - [anon_sym___stdcall] = ACTIONS(3176), - [anon_sym___fastcall] = ACTIONS(3176), - [anon_sym___thiscall] = ACTIONS(3176), - [anon_sym___vectorcall] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_signed] = ACTIONS(3176), - [anon_sym_unsigned] = ACTIONS(3176), - [anon_sym_long] = ACTIONS(3176), - [anon_sym_short] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_register] = ACTIONS(3176), - [anon_sym_inline] = ACTIONS(3176), - [anon_sym___inline] = ACTIONS(3176), - [anon_sym___inline__] = ACTIONS(3176), - [anon_sym___forceinline] = ACTIONS(3176), - [anon_sym_thread_local] = ACTIONS(3176), - [anon_sym___thread] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_constexpr] = ACTIONS(3176), - [anon_sym_volatile] = ACTIONS(3176), - [anon_sym_restrict] = ACTIONS(3176), - [anon_sym___restrict__] = ACTIONS(3176), - [anon_sym__Atomic] = ACTIONS(3176), - [anon_sym__Noreturn] = ACTIONS(3176), - [anon_sym_noreturn] = ACTIONS(3176), - [anon_sym_mutable] = ACTIONS(3176), - [anon_sym_constinit] = ACTIONS(3176), - [anon_sym_consteval] = ACTIONS(3176), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_struct] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_case] = ACTIONS(3176), - [anon_sym_default] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_goto] = ACTIONS(3176), - [anon_sym___try] = ACTIONS(3176), - [anon_sym___leave] = ACTIONS(3176), - [anon_sym_not] = ACTIONS(3176), - [anon_sym_compl] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3176), - [anon_sym___alignof__] = ACTIONS(3176), - [anon_sym___alignof] = ACTIONS(3176), - [anon_sym__alignof] = ACTIONS(3176), - [anon_sym_alignof] = ACTIONS(3176), - [anon_sym__Alignof] = ACTIONS(3176), - [anon_sym_offsetof] = ACTIONS(3176), - [anon_sym__Generic] = ACTIONS(3176), - [anon_sym_asm] = ACTIONS(3176), - [anon_sym___asm__] = ACTIONS(3176), - [sym_number_literal] = ACTIONS(3178), - [anon_sym_L_SQUOTE] = ACTIONS(3178), - [anon_sym_u_SQUOTE] = ACTIONS(3178), - [anon_sym_U_SQUOTE] = ACTIONS(3178), - [anon_sym_u8_SQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_L_DQUOTE] = ACTIONS(3178), - [anon_sym_u_DQUOTE] = ACTIONS(3178), - [anon_sym_U_DQUOTE] = ACTIONS(3178), - [anon_sym_u8_DQUOTE] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [anon_sym_NULL] = ACTIONS(3176), - [anon_sym_nullptr] = ACTIONS(3176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3176), - [anon_sym_decltype] = ACTIONS(3176), - [anon_sym_virtual] = ACTIONS(3176), - [anon_sym_alignas] = ACTIONS(3176), - [anon_sym_explicit] = ACTIONS(3176), - [anon_sym_typename] = ACTIONS(3176), - [anon_sym_template] = ACTIONS(3176), - [anon_sym_operator] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_static_assert] = ACTIONS(3176), - [anon_sym_concept] = ACTIONS(3176), - [anon_sym_co_return] = ACTIONS(3176), - [anon_sym_co_yield] = ACTIONS(3176), - [anon_sym_R_DQUOTE] = ACTIONS(3178), - [anon_sym_LR_DQUOTE] = ACTIONS(3178), - [anon_sym_uR_DQUOTE] = ACTIONS(3178), - [anon_sym_UR_DQUOTE] = ACTIONS(3178), - [anon_sym_u8R_DQUOTE] = ACTIONS(3178), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_requires] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), - }, - [924] = { - [sym_identifier] = ACTIONS(3144), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3144), - [aux_sym_preproc_if_token1] = ACTIONS(3144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3144), - [sym_preproc_directive] = ACTIONS(3144), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3144), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym___extension__] = ACTIONS(3144), - [anon_sym_typedef] = ACTIONS(3144), - [anon_sym_extern] = ACTIONS(3144), - [anon_sym___attribute__] = ACTIONS(3144), - [anon_sym_COLON_COLON] = ACTIONS(3146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3146), - [anon_sym___declspec] = ACTIONS(3144), - [anon_sym___based] = ACTIONS(3144), - [anon_sym___cdecl] = ACTIONS(3144), - [anon_sym___clrcall] = ACTIONS(3144), - [anon_sym___stdcall] = ACTIONS(3144), - [anon_sym___fastcall] = ACTIONS(3144), - [anon_sym___thiscall] = ACTIONS(3144), - [anon_sym___vectorcall] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_signed] = ACTIONS(3144), - [anon_sym_unsigned] = ACTIONS(3144), - [anon_sym_long] = ACTIONS(3144), - [anon_sym_short] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_register] = ACTIONS(3144), - [anon_sym_inline] = ACTIONS(3144), - [anon_sym___inline] = ACTIONS(3144), - [anon_sym___inline__] = ACTIONS(3144), - [anon_sym___forceinline] = ACTIONS(3144), - [anon_sym_thread_local] = ACTIONS(3144), - [anon_sym___thread] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_constexpr] = ACTIONS(3144), - [anon_sym_volatile] = ACTIONS(3144), - [anon_sym_restrict] = ACTIONS(3144), - [anon_sym___restrict__] = ACTIONS(3144), - [anon_sym__Atomic] = ACTIONS(3144), - [anon_sym__Noreturn] = ACTIONS(3144), - [anon_sym_noreturn] = ACTIONS(3144), - [anon_sym_mutable] = ACTIONS(3144), - [anon_sym_constinit] = ACTIONS(3144), - [anon_sym_consteval] = ACTIONS(3144), - [sym_primitive_type] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_struct] = ACTIONS(3144), - [anon_sym_union] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_case] = ACTIONS(3144), - [anon_sym_default] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_goto] = ACTIONS(3144), - [anon_sym___try] = ACTIONS(3144), - [anon_sym___leave] = ACTIONS(3144), - [anon_sym_not] = ACTIONS(3144), - [anon_sym_compl] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3144), - [anon_sym___alignof] = ACTIONS(3144), - [anon_sym__alignof] = ACTIONS(3144), - [anon_sym_alignof] = ACTIONS(3144), - [anon_sym__Alignof] = ACTIONS(3144), - [anon_sym_offsetof] = ACTIONS(3144), - [anon_sym__Generic] = ACTIONS(3144), - [anon_sym_asm] = ACTIONS(3144), - [anon_sym___asm__] = ACTIONS(3144), - [sym_number_literal] = ACTIONS(3146), - [anon_sym_L_SQUOTE] = ACTIONS(3146), - [anon_sym_u_SQUOTE] = ACTIONS(3146), - [anon_sym_U_SQUOTE] = ACTIONS(3146), - [anon_sym_u8_SQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_L_DQUOTE] = ACTIONS(3146), - [anon_sym_u_DQUOTE] = ACTIONS(3146), - [anon_sym_U_DQUOTE] = ACTIONS(3146), - [anon_sym_u8_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [anon_sym_NULL] = ACTIONS(3144), - [anon_sym_nullptr] = ACTIONS(3144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3144), - [anon_sym_decltype] = ACTIONS(3144), - [anon_sym_virtual] = ACTIONS(3144), - [anon_sym_alignas] = ACTIONS(3144), - [anon_sym_explicit] = ACTIONS(3144), - [anon_sym_typename] = ACTIONS(3144), - [anon_sym_template] = ACTIONS(3144), - [anon_sym_operator] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3144), - [anon_sym_static_assert] = ACTIONS(3144), - [anon_sym_concept] = ACTIONS(3144), - [anon_sym_co_return] = ACTIONS(3144), - [anon_sym_co_yield] = ACTIONS(3144), - [anon_sym_R_DQUOTE] = ACTIONS(3146), - [anon_sym_LR_DQUOTE] = ACTIONS(3146), - [anon_sym_uR_DQUOTE] = ACTIONS(3146), - [anon_sym_UR_DQUOTE] = ACTIONS(3146), - [anon_sym_u8R_DQUOTE] = ACTIONS(3146), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_requires] = ACTIONS(3144), - [sym_this] = ACTIONS(3144), + [sym_auto] = ACTIONS(3098), + [anon_sym_decltype] = ACTIONS(3098), + [anon_sym_virtual] = ACTIONS(3098), + [anon_sym_alignas] = ACTIONS(3098), + [anon_sym_explicit] = ACTIONS(3098), + [anon_sym_typename] = ACTIONS(3098), + [anon_sym_template] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_static_assert] = ACTIONS(3098), + [anon_sym_concept] = ACTIONS(3098), + [anon_sym_co_return] = ACTIONS(3098), + [anon_sym_co_yield] = ACTIONS(3098), + [anon_sym_R_DQUOTE] = ACTIONS(3100), + [anon_sym_LR_DQUOTE] = ACTIONS(3100), + [anon_sym_uR_DQUOTE] = ACTIONS(3100), + [anon_sym_UR_DQUOTE] = ACTIONS(3100), + [anon_sym_u8R_DQUOTE] = ACTIONS(3100), + [anon_sym_co_await] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_requires] = ACTIONS(3098), + [sym_this] = ACTIONS(3098), }, - [925] = { + [891] = { [sym_identifier] = ACTIONS(3207), [aux_sym_preproc_include_token1] = ACTIONS(3207), [aux_sym_preproc_def_token1] = ACTIONS(3207), [aux_sym_preproc_if_token1] = ACTIONS(3207), + [aux_sym_preproc_if_token2] = ACTIONS(3207), [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), [sym_preproc_directive] = ACTIONS(3207), @@ -216573,7 +212415,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3207), [anon_sym___vectorcall] = ACTIONS(3207), [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), [anon_sym_signed] = ACTIONS(3207), [anon_sym_unsigned] = ACTIONS(3207), [anon_sym_long] = ACTIONS(3207), @@ -216673,1063 +212514,1063 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3207), [sym_this] = ACTIONS(3207), }, - [926] = { - [sym_identifier] = ACTIONS(3102), - [aux_sym_preproc_include_token1] = ACTIONS(3102), - [aux_sym_preproc_def_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token2] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3102), - [sym_preproc_directive] = ACTIONS(3102), - [anon_sym_LPAREN2] = ACTIONS(3104), - [anon_sym_BANG] = ACTIONS(3104), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3104), - [anon_sym___extension__] = ACTIONS(3102), - [anon_sym_typedef] = ACTIONS(3102), - [anon_sym_extern] = ACTIONS(3102), - [anon_sym___attribute__] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3104), - [anon_sym___declspec] = ACTIONS(3102), - [anon_sym___based] = ACTIONS(3102), - [anon_sym___cdecl] = ACTIONS(3102), - [anon_sym___clrcall] = ACTIONS(3102), - [anon_sym___stdcall] = ACTIONS(3102), - [anon_sym___fastcall] = ACTIONS(3102), - [anon_sym___thiscall] = ACTIONS(3102), - [anon_sym___vectorcall] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_signed] = ACTIONS(3102), - [anon_sym_unsigned] = ACTIONS(3102), - [anon_sym_long] = ACTIONS(3102), - [anon_sym_short] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_register] = ACTIONS(3102), - [anon_sym_inline] = ACTIONS(3102), - [anon_sym___inline] = ACTIONS(3102), - [anon_sym___inline__] = ACTIONS(3102), - [anon_sym___forceinline] = ACTIONS(3102), - [anon_sym_thread_local] = ACTIONS(3102), - [anon_sym___thread] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_constexpr] = ACTIONS(3102), - [anon_sym_volatile] = ACTIONS(3102), - [anon_sym_restrict] = ACTIONS(3102), - [anon_sym___restrict__] = ACTIONS(3102), - [anon_sym__Atomic] = ACTIONS(3102), - [anon_sym__Noreturn] = ACTIONS(3102), - [anon_sym_noreturn] = ACTIONS(3102), - [anon_sym_mutable] = ACTIONS(3102), - [anon_sym_constinit] = ACTIONS(3102), - [anon_sym_consteval] = ACTIONS(3102), - [sym_primitive_type] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_case] = ACTIONS(3102), - [anon_sym_default] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_goto] = ACTIONS(3102), - [anon_sym___try] = ACTIONS(3102), - [anon_sym___leave] = ACTIONS(3102), - [anon_sym_not] = ACTIONS(3102), - [anon_sym_compl] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3104), - [anon_sym_PLUS_PLUS] = ACTIONS(3104), - [anon_sym_sizeof] = ACTIONS(3102), - [anon_sym___alignof__] = ACTIONS(3102), - [anon_sym___alignof] = ACTIONS(3102), - [anon_sym__alignof] = ACTIONS(3102), - [anon_sym_alignof] = ACTIONS(3102), - [anon_sym__Alignof] = ACTIONS(3102), - [anon_sym_offsetof] = ACTIONS(3102), - [anon_sym__Generic] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(3102), - [anon_sym___asm__] = ACTIONS(3102), - [sym_number_literal] = ACTIONS(3104), - [anon_sym_L_SQUOTE] = ACTIONS(3104), - [anon_sym_u_SQUOTE] = ACTIONS(3104), - [anon_sym_U_SQUOTE] = ACTIONS(3104), - [anon_sym_u8_SQUOTE] = ACTIONS(3104), - [anon_sym_SQUOTE] = ACTIONS(3104), - [anon_sym_L_DQUOTE] = ACTIONS(3104), - [anon_sym_u_DQUOTE] = ACTIONS(3104), - [anon_sym_U_DQUOTE] = ACTIONS(3104), - [anon_sym_u8_DQUOTE] = ACTIONS(3104), - [anon_sym_DQUOTE] = ACTIONS(3104), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [anon_sym_NULL] = ACTIONS(3102), - [anon_sym_nullptr] = ACTIONS(3102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3102), - [anon_sym_decltype] = ACTIONS(3102), - [anon_sym_virtual] = ACTIONS(3102), - [anon_sym_alignas] = ACTIONS(3102), - [anon_sym_explicit] = ACTIONS(3102), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_template] = ACTIONS(3102), - [anon_sym_operator] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_static_assert] = ACTIONS(3102), - [anon_sym_concept] = ACTIONS(3102), - [anon_sym_co_return] = ACTIONS(3102), - [anon_sym_co_yield] = ACTIONS(3102), - [anon_sym_R_DQUOTE] = ACTIONS(3104), - [anon_sym_LR_DQUOTE] = ACTIONS(3104), - [anon_sym_uR_DQUOTE] = ACTIONS(3104), - [anon_sym_UR_DQUOTE] = ACTIONS(3104), - [anon_sym_u8R_DQUOTE] = ACTIONS(3104), - [anon_sym_co_await] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_requires] = ACTIONS(3102), - [sym_this] = ACTIONS(3102), + [892] = { + [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_extern] = 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___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_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = 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_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_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_virtual] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_typename] = 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_using] = 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_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), + [sym_this] = ACTIONS(3171), }, - [927] = { - [sym_identifier] = ACTIONS(3164), - [aux_sym_preproc_include_token1] = ACTIONS(3164), - [aux_sym_preproc_def_token1] = ACTIONS(3164), - [aux_sym_preproc_if_token1] = ACTIONS(3164), - [aux_sym_preproc_if_token2] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), - [sym_preproc_directive] = ACTIONS(3164), - [anon_sym_LPAREN2] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3166), - [anon_sym_AMP_AMP] = ACTIONS(3166), - [anon_sym_AMP] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym___extension__] = ACTIONS(3164), - [anon_sym_typedef] = ACTIONS(3164), - [anon_sym_extern] = ACTIONS(3164), - [anon_sym___attribute__] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), - [anon_sym___declspec] = ACTIONS(3164), - [anon_sym___based] = ACTIONS(3164), - [anon_sym___cdecl] = ACTIONS(3164), - [anon_sym___clrcall] = ACTIONS(3164), - [anon_sym___stdcall] = ACTIONS(3164), - [anon_sym___fastcall] = ACTIONS(3164), - [anon_sym___thiscall] = ACTIONS(3164), - [anon_sym___vectorcall] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_signed] = ACTIONS(3164), - [anon_sym_unsigned] = ACTIONS(3164), - [anon_sym_long] = ACTIONS(3164), - [anon_sym_short] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_register] = ACTIONS(3164), - [anon_sym_inline] = ACTIONS(3164), - [anon_sym___inline] = ACTIONS(3164), - [anon_sym___inline__] = ACTIONS(3164), - [anon_sym___forceinline] = ACTIONS(3164), - [anon_sym_thread_local] = ACTIONS(3164), - [anon_sym___thread] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_constexpr] = ACTIONS(3164), - [anon_sym_volatile] = ACTIONS(3164), - [anon_sym_restrict] = ACTIONS(3164), - [anon_sym___restrict__] = ACTIONS(3164), - [anon_sym__Atomic] = ACTIONS(3164), - [anon_sym__Noreturn] = ACTIONS(3164), - [anon_sym_noreturn] = ACTIONS(3164), - [anon_sym_mutable] = ACTIONS(3164), - [anon_sym_constinit] = ACTIONS(3164), - [anon_sym_consteval] = ACTIONS(3164), - [sym_primitive_type] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_struct] = ACTIONS(3164), - [anon_sym_union] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_case] = ACTIONS(3164), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_goto] = ACTIONS(3164), - [anon_sym___try] = ACTIONS(3164), - [anon_sym___leave] = ACTIONS(3164), - [anon_sym_not] = ACTIONS(3164), - [anon_sym_compl] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_sizeof] = ACTIONS(3164), - [anon_sym___alignof__] = ACTIONS(3164), - [anon_sym___alignof] = ACTIONS(3164), - [anon_sym__alignof] = ACTIONS(3164), - [anon_sym_alignof] = ACTIONS(3164), - [anon_sym__Alignof] = ACTIONS(3164), - [anon_sym_offsetof] = ACTIONS(3164), - [anon_sym__Generic] = ACTIONS(3164), - [anon_sym_asm] = ACTIONS(3164), - [anon_sym___asm__] = ACTIONS(3164), - [sym_number_literal] = ACTIONS(3166), - [anon_sym_L_SQUOTE] = ACTIONS(3166), - [anon_sym_u_SQUOTE] = ACTIONS(3166), - [anon_sym_U_SQUOTE] = ACTIONS(3166), - [anon_sym_u8_SQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_L_DQUOTE] = ACTIONS(3166), - [anon_sym_u_DQUOTE] = ACTIONS(3166), - [anon_sym_U_DQUOTE] = ACTIONS(3166), - [anon_sym_u8_DQUOTE] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [anon_sym_NULL] = ACTIONS(3164), - [anon_sym_nullptr] = ACTIONS(3164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3164), - [anon_sym_virtual] = ACTIONS(3164), - [anon_sym_alignas] = ACTIONS(3164), - [anon_sym_explicit] = ACTIONS(3164), - [anon_sym_typename] = ACTIONS(3164), - [anon_sym_template] = ACTIONS(3164), - [anon_sym_operator] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_static_assert] = ACTIONS(3164), - [anon_sym_concept] = ACTIONS(3164), - [anon_sym_co_return] = ACTIONS(3164), - [anon_sym_co_yield] = ACTIONS(3164), - [anon_sym_R_DQUOTE] = ACTIONS(3166), - [anon_sym_LR_DQUOTE] = ACTIONS(3166), - [anon_sym_uR_DQUOTE] = ACTIONS(3166), - [anon_sym_UR_DQUOTE] = ACTIONS(3166), - [anon_sym_u8R_DQUOTE] = ACTIONS(3166), - [anon_sym_co_await] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_requires] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), - }, - [928] = { - [sym_identifier] = ACTIONS(3190), - [aux_sym_preproc_include_token1] = ACTIONS(3190), - [aux_sym_preproc_def_token1] = ACTIONS(3190), - [aux_sym_preproc_if_token1] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3190), - [sym_preproc_directive] = ACTIONS(3190), - [anon_sym_LPAREN2] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_STAR] = ACTIONS(3192), - [anon_sym_AMP_AMP] = ACTIONS(3192), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym___extension__] = ACTIONS(3190), - [anon_sym_typedef] = ACTIONS(3190), - [anon_sym_extern] = ACTIONS(3190), - [anon_sym___attribute__] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(3192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3192), - [anon_sym___declspec] = ACTIONS(3190), - [anon_sym___based] = ACTIONS(3190), - [anon_sym___cdecl] = ACTIONS(3190), - [anon_sym___clrcall] = ACTIONS(3190), - [anon_sym___stdcall] = ACTIONS(3190), - [anon_sym___fastcall] = ACTIONS(3190), - [anon_sym___thiscall] = ACTIONS(3190), - [anon_sym___vectorcall] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_signed] = ACTIONS(3190), - [anon_sym_unsigned] = ACTIONS(3190), - [anon_sym_long] = ACTIONS(3190), - [anon_sym_short] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_register] = ACTIONS(3190), - [anon_sym_inline] = ACTIONS(3190), - [anon_sym___inline] = ACTIONS(3190), - [anon_sym___inline__] = ACTIONS(3190), - [anon_sym___forceinline] = ACTIONS(3190), - [anon_sym_thread_local] = ACTIONS(3190), - [anon_sym___thread] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_constexpr] = ACTIONS(3190), - [anon_sym_volatile] = ACTIONS(3190), - [anon_sym_restrict] = ACTIONS(3190), - [anon_sym___restrict__] = ACTIONS(3190), - [anon_sym__Atomic] = ACTIONS(3190), - [anon_sym__Noreturn] = ACTIONS(3190), - [anon_sym_noreturn] = ACTIONS(3190), - [anon_sym_mutable] = ACTIONS(3190), - [anon_sym_constinit] = ACTIONS(3190), - [anon_sym_consteval] = ACTIONS(3190), - [sym_primitive_type] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_struct] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3190), - [anon_sym_default] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_goto] = ACTIONS(3190), - [anon_sym___try] = ACTIONS(3190), - [anon_sym___leave] = ACTIONS(3190), - [anon_sym_not] = ACTIONS(3190), - [anon_sym_compl] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_sizeof] = ACTIONS(3190), - [anon_sym___alignof__] = ACTIONS(3190), - [anon_sym___alignof] = ACTIONS(3190), - [anon_sym__alignof] = ACTIONS(3190), - [anon_sym_alignof] = ACTIONS(3190), - [anon_sym__Alignof] = ACTIONS(3190), - [anon_sym_offsetof] = ACTIONS(3190), - [anon_sym__Generic] = ACTIONS(3190), - [anon_sym_asm] = ACTIONS(3190), - [anon_sym___asm__] = ACTIONS(3190), - [sym_number_literal] = ACTIONS(3192), - [anon_sym_L_SQUOTE] = ACTIONS(3192), - [anon_sym_u_SQUOTE] = ACTIONS(3192), - [anon_sym_U_SQUOTE] = ACTIONS(3192), - [anon_sym_u8_SQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_L_DQUOTE] = ACTIONS(3192), - [anon_sym_u_DQUOTE] = ACTIONS(3192), - [anon_sym_U_DQUOTE] = ACTIONS(3192), - [anon_sym_u8_DQUOTE] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [anon_sym_NULL] = ACTIONS(3190), - [anon_sym_nullptr] = ACTIONS(3190), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3190), - [anon_sym_decltype] = ACTIONS(3190), - [anon_sym_virtual] = ACTIONS(3190), - [anon_sym_alignas] = ACTIONS(3190), - [anon_sym_explicit] = ACTIONS(3190), - [anon_sym_typename] = ACTIONS(3190), - [anon_sym_template] = ACTIONS(3190), - [anon_sym_operator] = ACTIONS(3190), - [anon_sym_try] = ACTIONS(3190), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_throw] = ACTIONS(3190), - [anon_sym_namespace] = ACTIONS(3190), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_static_assert] = ACTIONS(3190), - [anon_sym_concept] = ACTIONS(3190), - [anon_sym_co_return] = ACTIONS(3190), - [anon_sym_co_yield] = ACTIONS(3190), - [anon_sym_R_DQUOTE] = ACTIONS(3192), - [anon_sym_LR_DQUOTE] = ACTIONS(3192), - [anon_sym_uR_DQUOTE] = ACTIONS(3192), - [anon_sym_UR_DQUOTE] = ACTIONS(3192), - [anon_sym_u8R_DQUOTE] = ACTIONS(3192), - [anon_sym_co_await] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_requires] = ACTIONS(3190), - [sym_this] = ACTIONS(3190), + [893] = { + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_include_token1] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym___cdecl] = ACTIONS(3159), + [anon_sym___clrcall] = ACTIONS(3159), + [anon_sym___stdcall] = ACTIONS(3159), + [anon_sym___fastcall] = ACTIONS(3159), + [anon_sym___thiscall] = ACTIONS(3159), + [anon_sym___vectorcall] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_concept] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), }, - [929] = { - [sym_identifier] = ACTIONS(3108), - [aux_sym_preproc_include_token1] = ACTIONS(3108), - [aux_sym_preproc_def_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token2] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3108), - [sym_preproc_directive] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym___extension__] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(3108), - [anon_sym_extern] = ACTIONS(3108), - [anon_sym___attribute__] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), - [anon_sym___declspec] = ACTIONS(3108), - [anon_sym___based] = ACTIONS(3108), - [anon_sym___cdecl] = ACTIONS(3108), - [anon_sym___clrcall] = ACTIONS(3108), - [anon_sym___stdcall] = ACTIONS(3108), - [anon_sym___fastcall] = ACTIONS(3108), - [anon_sym___thiscall] = ACTIONS(3108), - [anon_sym___vectorcall] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_signed] = ACTIONS(3108), - [anon_sym_unsigned] = ACTIONS(3108), - [anon_sym_long] = ACTIONS(3108), - [anon_sym_short] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3108), - [anon_sym_register] = ACTIONS(3108), - [anon_sym_inline] = ACTIONS(3108), - [anon_sym___inline] = ACTIONS(3108), - [anon_sym___inline__] = ACTIONS(3108), - [anon_sym___forceinline] = ACTIONS(3108), - [anon_sym_thread_local] = ACTIONS(3108), - [anon_sym___thread] = ACTIONS(3108), - [anon_sym_const] = ACTIONS(3108), - [anon_sym_constexpr] = ACTIONS(3108), - [anon_sym_volatile] = ACTIONS(3108), - [anon_sym_restrict] = ACTIONS(3108), - [anon_sym___restrict__] = ACTIONS(3108), - [anon_sym__Atomic] = ACTIONS(3108), - [anon_sym__Noreturn] = ACTIONS(3108), - [anon_sym_noreturn] = ACTIONS(3108), - [anon_sym_mutable] = ACTIONS(3108), - [anon_sym_constinit] = ACTIONS(3108), - [anon_sym_consteval] = ACTIONS(3108), - [sym_primitive_type] = ACTIONS(3108), - [anon_sym_enum] = ACTIONS(3108), - [anon_sym_class] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3108), - [anon_sym_union] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_switch] = ACTIONS(3108), - [anon_sym_case] = ACTIONS(3108), - [anon_sym_default] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_break] = ACTIONS(3108), - [anon_sym_continue] = ACTIONS(3108), - [anon_sym_goto] = ACTIONS(3108), - [anon_sym___try] = ACTIONS(3108), - [anon_sym___leave] = ACTIONS(3108), - [anon_sym_not] = ACTIONS(3108), - [anon_sym_compl] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_sizeof] = ACTIONS(3108), - [anon_sym___alignof__] = ACTIONS(3108), - [anon_sym___alignof] = ACTIONS(3108), - [anon_sym__alignof] = ACTIONS(3108), - [anon_sym_alignof] = ACTIONS(3108), - [anon_sym__Alignof] = ACTIONS(3108), - [anon_sym_offsetof] = ACTIONS(3108), - [anon_sym__Generic] = ACTIONS(3108), - [anon_sym_asm] = ACTIONS(3108), - [anon_sym___asm__] = ACTIONS(3108), - [sym_number_literal] = ACTIONS(3110), - [anon_sym_L_SQUOTE] = ACTIONS(3110), - [anon_sym_u_SQUOTE] = ACTIONS(3110), - [anon_sym_U_SQUOTE] = ACTIONS(3110), - [anon_sym_u8_SQUOTE] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3110), - [anon_sym_L_DQUOTE] = ACTIONS(3110), - [anon_sym_u_DQUOTE] = ACTIONS(3110), - [anon_sym_U_DQUOTE] = ACTIONS(3110), - [anon_sym_u8_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE] = ACTIONS(3110), - [sym_true] = ACTIONS(3108), - [sym_false] = ACTIONS(3108), - [anon_sym_NULL] = ACTIONS(3108), - [anon_sym_nullptr] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3108), - [anon_sym_decltype] = ACTIONS(3108), - [anon_sym_virtual] = ACTIONS(3108), - [anon_sym_alignas] = ACTIONS(3108), - [anon_sym_explicit] = ACTIONS(3108), - [anon_sym_typename] = ACTIONS(3108), - [anon_sym_template] = ACTIONS(3108), - [anon_sym_operator] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_delete] = ACTIONS(3108), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_namespace] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3108), - [anon_sym_static_assert] = ACTIONS(3108), - [anon_sym_concept] = ACTIONS(3108), - [anon_sym_co_return] = ACTIONS(3108), - [anon_sym_co_yield] = ACTIONS(3108), - [anon_sym_R_DQUOTE] = ACTIONS(3110), - [anon_sym_LR_DQUOTE] = ACTIONS(3110), - [anon_sym_uR_DQUOTE] = ACTIONS(3110), - [anon_sym_UR_DQUOTE] = ACTIONS(3110), - [anon_sym_u8R_DQUOTE] = ACTIONS(3110), - [anon_sym_co_await] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_requires] = ACTIONS(3108), - [sym_this] = ACTIONS(3108), + [894] = { + [sym_identifier] = ACTIONS(3082), + [aux_sym_preproc_include_token1] = ACTIONS(3082), + [aux_sym_preproc_def_token1] = ACTIONS(3082), + [aux_sym_preproc_if_token1] = ACTIONS(3082), + [aux_sym_preproc_if_token2] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), + [sym_preproc_directive] = ACTIONS(3082), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym___extension__] = ACTIONS(3082), + [anon_sym_typedef] = ACTIONS(3082), + [anon_sym_extern] = ACTIONS(3082), + [anon_sym___attribute__] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), + [anon_sym___declspec] = ACTIONS(3082), + [anon_sym___based] = ACTIONS(3082), + [anon_sym___cdecl] = ACTIONS(3082), + [anon_sym___clrcall] = ACTIONS(3082), + [anon_sym___stdcall] = ACTIONS(3082), + [anon_sym___fastcall] = ACTIONS(3082), + [anon_sym___thiscall] = ACTIONS(3082), + [anon_sym___vectorcall] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_signed] = ACTIONS(3082), + [anon_sym_unsigned] = ACTIONS(3082), + [anon_sym_long] = ACTIONS(3082), + [anon_sym_short] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_register] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym___inline] = ACTIONS(3082), + [anon_sym___inline__] = ACTIONS(3082), + [anon_sym___forceinline] = ACTIONS(3082), + [anon_sym_thread_local] = ACTIONS(3082), + [anon_sym___thread] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_constexpr] = ACTIONS(3082), + [anon_sym_volatile] = ACTIONS(3082), + [anon_sym_restrict] = ACTIONS(3082), + [anon_sym___restrict__] = ACTIONS(3082), + [anon_sym__Atomic] = ACTIONS(3082), + [anon_sym__Noreturn] = ACTIONS(3082), + [anon_sym_noreturn] = ACTIONS(3082), + [anon_sym_mutable] = ACTIONS(3082), + [anon_sym_constinit] = ACTIONS(3082), + [anon_sym_consteval] = ACTIONS(3082), + [sym_primitive_type] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_union] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_switch] = ACTIONS(3082), + [anon_sym_case] = ACTIONS(3082), + [anon_sym_default] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_do] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_goto] = ACTIONS(3082), + [anon_sym___try] = ACTIONS(3082), + [anon_sym___leave] = ACTIONS(3082), + [anon_sym_not] = ACTIONS(3082), + [anon_sym_compl] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_sizeof] = ACTIONS(3082), + [anon_sym___alignof__] = ACTIONS(3082), + [anon_sym___alignof] = ACTIONS(3082), + [anon_sym__alignof] = ACTIONS(3082), + [anon_sym_alignof] = ACTIONS(3082), + [anon_sym__Alignof] = ACTIONS(3082), + [anon_sym_offsetof] = ACTIONS(3082), + [anon_sym__Generic] = ACTIONS(3082), + [anon_sym_asm] = ACTIONS(3082), + [anon_sym___asm__] = ACTIONS(3082), + [sym_number_literal] = ACTIONS(3084), + [anon_sym_L_SQUOTE] = ACTIONS(3084), + [anon_sym_u_SQUOTE] = ACTIONS(3084), + [anon_sym_U_SQUOTE] = ACTIONS(3084), + [anon_sym_u8_SQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_L_DQUOTE] = ACTIONS(3084), + [anon_sym_u_DQUOTE] = ACTIONS(3084), + [anon_sym_U_DQUOTE] = ACTIONS(3084), + [anon_sym_u8_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [anon_sym_NULL] = ACTIONS(3082), + [anon_sym_nullptr] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3082), + [anon_sym_decltype] = ACTIONS(3082), + [anon_sym_virtual] = ACTIONS(3082), + [anon_sym_alignas] = ACTIONS(3082), + [anon_sym_explicit] = ACTIONS(3082), + [anon_sym_typename] = ACTIONS(3082), + [anon_sym_template] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_delete] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_namespace] = ACTIONS(3082), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_static_assert] = ACTIONS(3082), + [anon_sym_concept] = ACTIONS(3082), + [anon_sym_co_return] = ACTIONS(3082), + [anon_sym_co_yield] = ACTIONS(3082), + [anon_sym_R_DQUOTE] = ACTIONS(3084), + [anon_sym_LR_DQUOTE] = ACTIONS(3084), + [anon_sym_uR_DQUOTE] = ACTIONS(3084), + [anon_sym_UR_DQUOTE] = ACTIONS(3084), + [anon_sym_u8R_DQUOTE] = ACTIONS(3084), + [anon_sym_co_await] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3082), + [anon_sym_requires] = ACTIONS(3082), + [sym_this] = ACTIONS(3082), }, - [930] = { - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_include_token1] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym___cdecl] = ACTIONS(3160), - [anon_sym___clrcall] = ACTIONS(3160), - [anon_sym___stdcall] = ACTIONS(3160), - [anon_sym___fastcall] = ACTIONS(3160), - [anon_sym___thiscall] = ACTIONS(3160), - [anon_sym___vectorcall] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_goto] = ACTIONS(3160), - [anon_sym___try] = ACTIONS(3160), - [anon_sym___leave] = ACTIONS(3160), - [anon_sym_not] = ACTIONS(3160), - [anon_sym_compl] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_sizeof] = ACTIONS(3160), - [anon_sym___alignof__] = ACTIONS(3160), - [anon_sym___alignof] = ACTIONS(3160), - [anon_sym__alignof] = ACTIONS(3160), - [anon_sym_alignof] = ACTIONS(3160), - [anon_sym__Alignof] = ACTIONS(3160), - [anon_sym_offsetof] = ACTIONS(3160), - [anon_sym__Generic] = ACTIONS(3160), - [anon_sym_asm] = ACTIONS(3160), - [anon_sym___asm__] = ACTIONS(3160), - [sym_number_literal] = ACTIONS(3162), - [anon_sym_L_SQUOTE] = ACTIONS(3162), - [anon_sym_u_SQUOTE] = ACTIONS(3162), - [anon_sym_U_SQUOTE] = ACTIONS(3162), - [anon_sym_u8_SQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_L_DQUOTE] = ACTIONS(3162), - [anon_sym_u_DQUOTE] = ACTIONS(3162), - [anon_sym_U_DQUOTE] = ACTIONS(3162), - [anon_sym_u8_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3160), - [anon_sym_nullptr] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), - [anon_sym_concept] = ACTIONS(3160), - [anon_sym_co_return] = ACTIONS(3160), - [anon_sym_co_yield] = ACTIONS(3160), - [anon_sym_R_DQUOTE] = ACTIONS(3162), - [anon_sym_LR_DQUOTE] = ACTIONS(3162), - [anon_sym_uR_DQUOTE] = ACTIONS(3162), - [anon_sym_UR_DQUOTE] = ACTIONS(3162), - [anon_sym_u8R_DQUOTE] = ACTIONS(3162), - [anon_sym_co_await] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_requires] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), + [895] = { + [sym_identifier] = ACTIONS(3106), + [aux_sym_preproc_include_token1] = ACTIONS(3106), + [aux_sym_preproc_def_token1] = ACTIONS(3106), + [aux_sym_preproc_if_token1] = ACTIONS(3106), + [aux_sym_preproc_if_token2] = ACTIONS(3106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3106), + [sym_preproc_directive] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3106), + [anon_sym_typedef] = ACTIONS(3106), + [anon_sym_extern] = ACTIONS(3106), + [anon_sym___attribute__] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3106), + [anon_sym___based] = ACTIONS(3106), + [anon_sym___cdecl] = ACTIONS(3106), + [anon_sym___clrcall] = ACTIONS(3106), + [anon_sym___stdcall] = ACTIONS(3106), + [anon_sym___fastcall] = ACTIONS(3106), + [anon_sym___thiscall] = ACTIONS(3106), + [anon_sym___vectorcall] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3106), + [anon_sym_unsigned] = ACTIONS(3106), + [anon_sym_long] = ACTIONS(3106), + [anon_sym_short] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_register] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym___inline] = ACTIONS(3106), + [anon_sym___inline__] = ACTIONS(3106), + [anon_sym___forceinline] = ACTIONS(3106), + [anon_sym_thread_local] = ACTIONS(3106), + [anon_sym___thread] = ACTIONS(3106), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_constexpr] = ACTIONS(3106), + [anon_sym_volatile] = ACTIONS(3106), + [anon_sym_restrict] = ACTIONS(3106), + [anon_sym___restrict__] = ACTIONS(3106), + [anon_sym__Atomic] = ACTIONS(3106), + [anon_sym__Noreturn] = ACTIONS(3106), + [anon_sym_noreturn] = ACTIONS(3106), + [anon_sym_mutable] = ACTIONS(3106), + [anon_sym_constinit] = ACTIONS(3106), + [anon_sym_consteval] = ACTIONS(3106), + [sym_primitive_type] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [anon_sym_class] = ACTIONS(3106), + [anon_sym_struct] = ACTIONS(3106), + [anon_sym_union] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_switch] = ACTIONS(3106), + [anon_sym_case] = ACTIONS(3106), + [anon_sym_default] = ACTIONS(3106), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_do] = ACTIONS(3106), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_goto] = ACTIONS(3106), + [anon_sym___try] = ACTIONS(3106), + [anon_sym___leave] = ACTIONS(3106), + [anon_sym_not] = ACTIONS(3106), + [anon_sym_compl] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_sizeof] = ACTIONS(3106), + [anon_sym___alignof__] = ACTIONS(3106), + [anon_sym___alignof] = ACTIONS(3106), + [anon_sym__alignof] = ACTIONS(3106), + [anon_sym_alignof] = ACTIONS(3106), + [anon_sym__Alignof] = ACTIONS(3106), + [anon_sym_offsetof] = ACTIONS(3106), + [anon_sym__Generic] = ACTIONS(3106), + [anon_sym_asm] = ACTIONS(3106), + [anon_sym___asm__] = ACTIONS(3106), + [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(3106), + [sym_false] = ACTIONS(3106), + [anon_sym_NULL] = ACTIONS(3106), + [anon_sym_nullptr] = ACTIONS(3106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3106), + [anon_sym_decltype] = ACTIONS(3106), + [anon_sym_virtual] = ACTIONS(3106), + [anon_sym_alignas] = ACTIONS(3106), + [anon_sym_explicit] = ACTIONS(3106), + [anon_sym_typename] = ACTIONS(3106), + [anon_sym_template] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_delete] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_namespace] = ACTIONS(3106), + [anon_sym_using] = ACTIONS(3106), + [anon_sym_static_assert] = ACTIONS(3106), + [anon_sym_concept] = ACTIONS(3106), + [anon_sym_co_return] = ACTIONS(3106), + [anon_sym_co_yield] = ACTIONS(3106), + [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(3106), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_requires] = ACTIONS(3106), + [sym_this] = ACTIONS(3106), }, - [931] = { - [sym_identifier] = ACTIONS(3203), - [aux_sym_preproc_include_token1] = ACTIONS(3203), - [aux_sym_preproc_def_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), - [sym_preproc_directive] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym___extension__] = ACTIONS(3203), - [anon_sym_typedef] = ACTIONS(3203), - [anon_sym_extern] = ACTIONS(3203), - [anon_sym___attribute__] = ACTIONS(3203), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), - [anon_sym___declspec] = ACTIONS(3203), - [anon_sym___based] = ACTIONS(3203), - [anon_sym___cdecl] = ACTIONS(3203), - [anon_sym___clrcall] = ACTIONS(3203), - [anon_sym___stdcall] = ACTIONS(3203), - [anon_sym___fastcall] = ACTIONS(3203), - [anon_sym___thiscall] = ACTIONS(3203), - [anon_sym___vectorcall] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_signed] = ACTIONS(3203), - [anon_sym_unsigned] = ACTIONS(3203), - [anon_sym_long] = ACTIONS(3203), - [anon_sym_short] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_register] = ACTIONS(3203), - [anon_sym_inline] = ACTIONS(3203), - [anon_sym___inline] = ACTIONS(3203), - [anon_sym___inline__] = ACTIONS(3203), - [anon_sym___forceinline] = ACTIONS(3203), - [anon_sym_thread_local] = ACTIONS(3203), - [anon_sym___thread] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_constexpr] = ACTIONS(3203), - [anon_sym_volatile] = ACTIONS(3203), - [anon_sym_restrict] = ACTIONS(3203), - [anon_sym___restrict__] = ACTIONS(3203), - [anon_sym__Atomic] = ACTIONS(3203), - [anon_sym__Noreturn] = ACTIONS(3203), - [anon_sym_noreturn] = ACTIONS(3203), - [anon_sym_mutable] = ACTIONS(3203), - [anon_sym_constinit] = ACTIONS(3203), - [anon_sym_consteval] = ACTIONS(3203), - [sym_primitive_type] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_case] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_do] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym___try] = ACTIONS(3203), - [anon_sym___leave] = ACTIONS(3203), - [anon_sym_not] = ACTIONS(3203), - [anon_sym_compl] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3203), - [anon_sym___alignof__] = ACTIONS(3203), - [anon_sym___alignof] = ACTIONS(3203), - [anon_sym__alignof] = ACTIONS(3203), - [anon_sym_alignof] = ACTIONS(3203), - [anon_sym__Alignof] = ACTIONS(3203), - [anon_sym_offsetof] = ACTIONS(3203), - [anon_sym__Generic] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym___asm__] = ACTIONS(3203), - [sym_number_literal] = ACTIONS(3205), - [anon_sym_L_SQUOTE] = ACTIONS(3205), - [anon_sym_u_SQUOTE] = ACTIONS(3205), - [anon_sym_U_SQUOTE] = ACTIONS(3205), - [anon_sym_u8_SQUOTE] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3205), - [anon_sym_L_DQUOTE] = ACTIONS(3205), - [anon_sym_u_DQUOTE] = ACTIONS(3205), - [anon_sym_U_DQUOTE] = ACTIONS(3205), - [anon_sym_u8_DQUOTE] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [anon_sym_NULL] = ACTIONS(3203), - [anon_sym_nullptr] = ACTIONS(3203), + [896] = { + [sym_identifier] = ACTIONS(3086), + [aux_sym_preproc_include_token1] = ACTIONS(3086), + [aux_sym_preproc_def_token1] = ACTIONS(3086), + [aux_sym_preproc_if_token1] = ACTIONS(3086), + [aux_sym_preproc_if_token2] = ACTIONS(3086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3086), + [sym_preproc_directive] = ACTIONS(3086), + [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3086), + [anon_sym_SEMI] = ACTIONS(3088), + [anon_sym___extension__] = ACTIONS(3086), + [anon_sym_typedef] = ACTIONS(3086), + [anon_sym_extern] = ACTIONS(3086), + [anon_sym___attribute__] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3088), + [anon_sym___declspec] = ACTIONS(3086), + [anon_sym___based] = ACTIONS(3086), + [anon_sym___cdecl] = ACTIONS(3086), + [anon_sym___clrcall] = ACTIONS(3086), + [anon_sym___stdcall] = ACTIONS(3086), + [anon_sym___fastcall] = ACTIONS(3086), + [anon_sym___thiscall] = ACTIONS(3086), + [anon_sym___vectorcall] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_signed] = ACTIONS(3086), + [anon_sym_unsigned] = ACTIONS(3086), + [anon_sym_long] = ACTIONS(3086), + [anon_sym_short] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_static] = ACTIONS(3086), + [anon_sym_register] = ACTIONS(3086), + [anon_sym_inline] = ACTIONS(3086), + [anon_sym___inline] = ACTIONS(3086), + [anon_sym___inline__] = ACTIONS(3086), + [anon_sym___forceinline] = ACTIONS(3086), + [anon_sym_thread_local] = ACTIONS(3086), + [anon_sym___thread] = ACTIONS(3086), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_constexpr] = ACTIONS(3086), + [anon_sym_volatile] = ACTIONS(3086), + [anon_sym_restrict] = ACTIONS(3086), + [anon_sym___restrict__] = ACTIONS(3086), + [anon_sym__Atomic] = ACTIONS(3086), + [anon_sym__Noreturn] = ACTIONS(3086), + [anon_sym_noreturn] = ACTIONS(3086), + [anon_sym_mutable] = ACTIONS(3086), + [anon_sym_constinit] = ACTIONS(3086), + [anon_sym_consteval] = ACTIONS(3086), + [sym_primitive_type] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), + [anon_sym_class] = ACTIONS(3086), + [anon_sym_struct] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_switch] = ACTIONS(3086), + [anon_sym_case] = ACTIONS(3086), + [anon_sym_default] = ACTIONS(3086), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_do] = ACTIONS(3086), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_goto] = ACTIONS(3086), + [anon_sym___try] = ACTIONS(3086), + [anon_sym___leave] = ACTIONS(3086), + [anon_sym_not] = ACTIONS(3086), + [anon_sym_compl] = ACTIONS(3086), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_sizeof] = ACTIONS(3086), + [anon_sym___alignof__] = ACTIONS(3086), + [anon_sym___alignof] = ACTIONS(3086), + [anon_sym__alignof] = ACTIONS(3086), + [anon_sym_alignof] = ACTIONS(3086), + [anon_sym__Alignof] = ACTIONS(3086), + [anon_sym_offsetof] = ACTIONS(3086), + [anon_sym__Generic] = ACTIONS(3086), + [anon_sym_asm] = ACTIONS(3086), + [anon_sym___asm__] = ACTIONS(3086), + [sym_number_literal] = ACTIONS(3088), + [anon_sym_L_SQUOTE] = ACTIONS(3088), + [anon_sym_u_SQUOTE] = ACTIONS(3088), + [anon_sym_U_SQUOTE] = ACTIONS(3088), + [anon_sym_u8_SQUOTE] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3088), + [anon_sym_L_DQUOTE] = ACTIONS(3088), + [anon_sym_u_DQUOTE] = ACTIONS(3088), + [anon_sym_U_DQUOTE] = ACTIONS(3088), + [anon_sym_u8_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [anon_sym_NULL] = ACTIONS(3086), + [anon_sym_nullptr] = ACTIONS(3086), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3203), - [anon_sym_decltype] = ACTIONS(3203), - [anon_sym_virtual] = ACTIONS(3203), - [anon_sym_alignas] = ACTIONS(3203), - [anon_sym_explicit] = ACTIONS(3203), - [anon_sym_typename] = ACTIONS(3203), - [anon_sym_template] = ACTIONS(3203), - [anon_sym_operator] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_delete] = ACTIONS(3203), - [anon_sym_throw] = ACTIONS(3203), - [anon_sym_namespace] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_static_assert] = ACTIONS(3203), - [anon_sym_concept] = ACTIONS(3203), - [anon_sym_co_return] = ACTIONS(3203), - [anon_sym_co_yield] = ACTIONS(3203), - [anon_sym_R_DQUOTE] = ACTIONS(3205), - [anon_sym_LR_DQUOTE] = ACTIONS(3205), - [anon_sym_uR_DQUOTE] = ACTIONS(3205), - [anon_sym_UR_DQUOTE] = ACTIONS(3205), - [anon_sym_u8R_DQUOTE] = ACTIONS(3205), - [anon_sym_co_await] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(3203), - [anon_sym_requires] = ACTIONS(3203), - [sym_this] = ACTIONS(3203), + [sym_auto] = ACTIONS(3086), + [anon_sym_decltype] = ACTIONS(3086), + [anon_sym_virtual] = ACTIONS(3086), + [anon_sym_alignas] = ACTIONS(3086), + [anon_sym_explicit] = ACTIONS(3086), + [anon_sym_typename] = ACTIONS(3086), + [anon_sym_template] = ACTIONS(3086), + [anon_sym_operator] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_namespace] = ACTIONS(3086), + [anon_sym_using] = ACTIONS(3086), + [anon_sym_static_assert] = ACTIONS(3086), + [anon_sym_concept] = ACTIONS(3086), + [anon_sym_co_return] = ACTIONS(3086), + [anon_sym_co_yield] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(3088), + [anon_sym_LR_DQUOTE] = ACTIONS(3088), + [anon_sym_uR_DQUOTE] = ACTIONS(3088), + [anon_sym_UR_DQUOTE] = ACTIONS(3088), + [anon_sym_u8R_DQUOTE] = ACTIONS(3088), + [anon_sym_co_await] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3086), + [sym_this] = ACTIONS(3086), }, - [932] = { - [sym_identifier] = ACTIONS(3176), - [aux_sym_preproc_include_token1] = ACTIONS(3176), - [aux_sym_preproc_def_token1] = ACTIONS(3176), - [aux_sym_preproc_if_token1] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), - [sym_preproc_directive] = ACTIONS(3176), - [anon_sym_LPAREN2] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym___extension__] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3176), - [anon_sym_extern] = ACTIONS(3176), - [anon_sym___attribute__] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(3178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), - [anon_sym___declspec] = ACTIONS(3176), - [anon_sym___based] = ACTIONS(3176), - [anon_sym___cdecl] = ACTIONS(3176), - [anon_sym___clrcall] = ACTIONS(3176), - [anon_sym___stdcall] = ACTIONS(3176), - [anon_sym___fastcall] = ACTIONS(3176), - [anon_sym___thiscall] = ACTIONS(3176), - [anon_sym___vectorcall] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_signed] = ACTIONS(3176), - [anon_sym_unsigned] = ACTIONS(3176), - [anon_sym_long] = ACTIONS(3176), - [anon_sym_short] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_register] = ACTIONS(3176), - [anon_sym_inline] = ACTIONS(3176), - [anon_sym___inline] = ACTIONS(3176), - [anon_sym___inline__] = ACTIONS(3176), - [anon_sym___forceinline] = ACTIONS(3176), - [anon_sym_thread_local] = ACTIONS(3176), - [anon_sym___thread] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_constexpr] = ACTIONS(3176), - [anon_sym_volatile] = ACTIONS(3176), - [anon_sym_restrict] = ACTIONS(3176), - [anon_sym___restrict__] = ACTIONS(3176), - [anon_sym__Atomic] = ACTIONS(3176), - [anon_sym__Noreturn] = ACTIONS(3176), - [anon_sym_noreturn] = ACTIONS(3176), - [anon_sym_mutable] = ACTIONS(3176), - [anon_sym_constinit] = ACTIONS(3176), - [anon_sym_consteval] = ACTIONS(3176), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_struct] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_case] = ACTIONS(3176), - [anon_sym_default] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_goto] = ACTIONS(3176), - [anon_sym___try] = ACTIONS(3176), - [anon_sym___leave] = ACTIONS(3176), - [anon_sym_not] = ACTIONS(3176), - [anon_sym_compl] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3176), - [anon_sym___alignof__] = ACTIONS(3176), - [anon_sym___alignof] = ACTIONS(3176), - [anon_sym__alignof] = ACTIONS(3176), - [anon_sym_alignof] = ACTIONS(3176), - [anon_sym__Alignof] = ACTIONS(3176), - [anon_sym_offsetof] = ACTIONS(3176), - [anon_sym__Generic] = ACTIONS(3176), - [anon_sym_asm] = ACTIONS(3176), - [anon_sym___asm__] = ACTIONS(3176), - [sym_number_literal] = ACTIONS(3178), - [anon_sym_L_SQUOTE] = ACTIONS(3178), - [anon_sym_u_SQUOTE] = ACTIONS(3178), - [anon_sym_U_SQUOTE] = ACTIONS(3178), - [anon_sym_u8_SQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_L_DQUOTE] = ACTIONS(3178), - [anon_sym_u_DQUOTE] = ACTIONS(3178), - [anon_sym_U_DQUOTE] = ACTIONS(3178), - [anon_sym_u8_DQUOTE] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [anon_sym_NULL] = ACTIONS(3176), - [anon_sym_nullptr] = ACTIONS(3176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3176), - [anon_sym_decltype] = ACTIONS(3176), - [anon_sym_virtual] = ACTIONS(3176), - [anon_sym_alignas] = ACTIONS(3176), - [anon_sym_explicit] = ACTIONS(3176), - [anon_sym_typename] = ACTIONS(3176), - [anon_sym_template] = ACTIONS(3176), - [anon_sym_operator] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_static_assert] = ACTIONS(3176), - [anon_sym_concept] = ACTIONS(3176), - [anon_sym_co_return] = ACTIONS(3176), - [anon_sym_co_yield] = ACTIONS(3176), - [anon_sym_R_DQUOTE] = ACTIONS(3178), - [anon_sym_LR_DQUOTE] = ACTIONS(3178), - [anon_sym_uR_DQUOTE] = ACTIONS(3178), - [anon_sym_UR_DQUOTE] = ACTIONS(3178), - [anon_sym_u8R_DQUOTE] = ACTIONS(3178), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_requires] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), + [897] = { + [sym_identifier] = ACTIONS(3244), + [aux_sym_preproc_include_token1] = ACTIONS(3244), + [aux_sym_preproc_def_token1] = ACTIONS(3244), + [aux_sym_preproc_if_token1] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3244), + [sym_preproc_directive] = ACTIONS(3244), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_typedef] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym___cdecl] = ACTIONS(3244), + [anon_sym___clrcall] = ACTIONS(3244), + [anon_sym___stdcall] = ACTIONS(3244), + [anon_sym___fastcall] = ACTIONS(3244), + [anon_sym___thiscall] = ACTIONS(3244), + [anon_sym___vectorcall] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [sym_primitive_type] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3244), + [anon_sym_union] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_goto] = ACTIONS(3244), + [anon_sym___try] = ACTIONS(3244), + [anon_sym___leave] = ACTIONS(3244), + [anon_sym_not] = ACTIONS(3244), + [anon_sym_compl] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_sizeof] = ACTIONS(3244), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3244), + [anon_sym__Generic] = ACTIONS(3244), + [anon_sym_asm] = ACTIONS(3244), + [anon_sym___asm__] = ACTIONS(3244), + [sym_number_literal] = ACTIONS(3246), + [anon_sym_L_SQUOTE] = ACTIONS(3246), + [anon_sym_u_SQUOTE] = ACTIONS(3246), + [anon_sym_U_SQUOTE] = ACTIONS(3246), + [anon_sym_u8_SQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_L_DQUOTE] = ACTIONS(3246), + [anon_sym_u_DQUOTE] = ACTIONS(3246), + [anon_sym_U_DQUOTE] = ACTIONS(3246), + [anon_sym_u8_DQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [anon_sym_NULL] = ACTIONS(3244), + [anon_sym_nullptr] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym_explicit] = ACTIONS(3244), + [anon_sym_typename] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_static_assert] = ACTIONS(3244), + [anon_sym_concept] = ACTIONS(3244), + [anon_sym_co_return] = ACTIONS(3244), + [anon_sym_co_yield] = 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(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_requires] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), }, - [933] = { - [sym_identifier] = ACTIONS(3124), - [aux_sym_preproc_include_token1] = ACTIONS(3124), - [aux_sym_preproc_def_token1] = ACTIONS(3124), - [aux_sym_preproc_if_token1] = ACTIONS(3124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3124), - [sym_preproc_directive] = ACTIONS(3124), - [anon_sym_LPAREN2] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_AMP_AMP] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym___extension__] = ACTIONS(3124), - [anon_sym_typedef] = ACTIONS(3124), - [anon_sym_extern] = ACTIONS(3124), - [anon_sym___attribute__] = ACTIONS(3124), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3126), - [anon_sym___declspec] = ACTIONS(3124), - [anon_sym___based] = ACTIONS(3124), - [anon_sym___cdecl] = ACTIONS(3124), - [anon_sym___clrcall] = ACTIONS(3124), - [anon_sym___stdcall] = ACTIONS(3124), - [anon_sym___fastcall] = ACTIONS(3124), - [anon_sym___thiscall] = ACTIONS(3124), - [anon_sym___vectorcall] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_signed] = ACTIONS(3124), - [anon_sym_unsigned] = ACTIONS(3124), - [anon_sym_long] = ACTIONS(3124), - [anon_sym_short] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_register] = ACTIONS(3124), - [anon_sym_inline] = ACTIONS(3124), - [anon_sym___inline] = ACTIONS(3124), - [anon_sym___inline__] = ACTIONS(3124), - [anon_sym___forceinline] = ACTIONS(3124), - [anon_sym_thread_local] = ACTIONS(3124), - [anon_sym___thread] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_constexpr] = ACTIONS(3124), - [anon_sym_volatile] = ACTIONS(3124), - [anon_sym_restrict] = ACTIONS(3124), - [anon_sym___restrict__] = ACTIONS(3124), - [anon_sym__Atomic] = ACTIONS(3124), - [anon_sym__Noreturn] = ACTIONS(3124), - [anon_sym_noreturn] = ACTIONS(3124), - [anon_sym_mutable] = ACTIONS(3124), - [anon_sym_constinit] = ACTIONS(3124), - [anon_sym_consteval] = ACTIONS(3124), - [sym_primitive_type] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_struct] = ACTIONS(3124), - [anon_sym_union] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_goto] = ACTIONS(3124), - [anon_sym___try] = ACTIONS(3124), - [anon_sym___leave] = ACTIONS(3124), - [anon_sym_not] = ACTIONS(3124), - [anon_sym_compl] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3124), - [anon_sym___alignof__] = ACTIONS(3124), - [anon_sym___alignof] = ACTIONS(3124), - [anon_sym__alignof] = ACTIONS(3124), - [anon_sym_alignof] = ACTIONS(3124), - [anon_sym__Alignof] = ACTIONS(3124), - [anon_sym_offsetof] = ACTIONS(3124), - [anon_sym__Generic] = ACTIONS(3124), - [anon_sym_asm] = ACTIONS(3124), - [anon_sym___asm__] = ACTIONS(3124), - [sym_number_literal] = ACTIONS(3126), - [anon_sym_L_SQUOTE] = ACTIONS(3126), - [anon_sym_u_SQUOTE] = ACTIONS(3126), - [anon_sym_U_SQUOTE] = ACTIONS(3126), - [anon_sym_u8_SQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [anon_sym_L_DQUOTE] = ACTIONS(3126), - [anon_sym_u_DQUOTE] = ACTIONS(3126), - [anon_sym_U_DQUOTE] = ACTIONS(3126), - [anon_sym_u8_DQUOTE] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [anon_sym_NULL] = ACTIONS(3124), - [anon_sym_nullptr] = ACTIONS(3124), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3124), - [anon_sym_decltype] = ACTIONS(3124), - [anon_sym_virtual] = ACTIONS(3124), - [anon_sym_alignas] = ACTIONS(3124), - [anon_sym_explicit] = ACTIONS(3124), - [anon_sym_typename] = ACTIONS(3124), - [anon_sym_template] = ACTIONS(3124), - [anon_sym_operator] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_static_assert] = ACTIONS(3124), - [anon_sym_concept] = ACTIONS(3124), - [anon_sym_co_return] = ACTIONS(3124), - [anon_sym_co_yield] = ACTIONS(3124), - [anon_sym_R_DQUOTE] = ACTIONS(3126), - [anon_sym_LR_DQUOTE] = ACTIONS(3126), - [anon_sym_uR_DQUOTE] = ACTIONS(3126), - [anon_sym_UR_DQUOTE] = ACTIONS(3126), - [anon_sym_u8R_DQUOTE] = ACTIONS(3126), - [anon_sym_co_await] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_requires] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), + [898] = { + [sym_identifier] = ACTIONS(3266), + [aux_sym_preproc_include_token1] = ACTIONS(3266), + [aux_sym_preproc_def_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), + [sym_preproc_directive] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym___extension__] = ACTIONS(3266), + [anon_sym_typedef] = ACTIONS(3266), + [anon_sym_extern] = ACTIONS(3266), + [anon_sym___attribute__] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(3268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), + [anon_sym___declspec] = ACTIONS(3266), + [anon_sym___based] = ACTIONS(3266), + [anon_sym___cdecl] = ACTIONS(3266), + [anon_sym___clrcall] = ACTIONS(3266), + [anon_sym___stdcall] = ACTIONS(3266), + [anon_sym___fastcall] = ACTIONS(3266), + [anon_sym___thiscall] = ACTIONS(3266), + [anon_sym___vectorcall] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_signed] = ACTIONS(3266), + [anon_sym_unsigned] = ACTIONS(3266), + [anon_sym_long] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3266), + [anon_sym_inline] = ACTIONS(3266), + [anon_sym___inline] = ACTIONS(3266), + [anon_sym___inline__] = ACTIONS(3266), + [anon_sym___forceinline] = ACTIONS(3266), + [anon_sym_thread_local] = ACTIONS(3266), + [anon_sym___thread] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_constexpr] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym___restrict__] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym__Noreturn] = ACTIONS(3266), + [anon_sym_noreturn] = ACTIONS(3266), + [anon_sym_mutable] = ACTIONS(3266), + [anon_sym_constinit] = ACTIONS(3266), + [anon_sym_consteval] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym___try] = ACTIONS(3266), + [anon_sym___leave] = ACTIONS(3266), + [anon_sym_not] = ACTIONS(3266), + [anon_sym_compl] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_sizeof] = ACTIONS(3266), + [anon_sym___alignof__] = ACTIONS(3266), + [anon_sym___alignof] = ACTIONS(3266), + [anon_sym__alignof] = ACTIONS(3266), + [anon_sym_alignof] = ACTIONS(3266), + [anon_sym__Alignof] = ACTIONS(3266), + [anon_sym_offsetof] = ACTIONS(3266), + [anon_sym__Generic] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym___asm__] = ACTIONS(3266), + [sym_number_literal] = ACTIONS(3268), + [anon_sym_L_SQUOTE] = ACTIONS(3268), + [anon_sym_u_SQUOTE] = ACTIONS(3268), + [anon_sym_U_SQUOTE] = ACTIONS(3268), + [anon_sym_u8_SQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_L_DQUOTE] = ACTIONS(3268), + [anon_sym_u_DQUOTE] = ACTIONS(3268), + [anon_sym_U_DQUOTE] = ACTIONS(3268), + [anon_sym_u8_DQUOTE] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [anon_sym_NULL] = ACTIONS(3266), + [anon_sym_nullptr] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3266), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_virtual] = ACTIONS(3266), + [anon_sym_alignas] = ACTIONS(3266), + [anon_sym_explicit] = ACTIONS(3266), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3266), + [anon_sym_operator] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_static_assert] = ACTIONS(3266), + [anon_sym_concept] = ACTIONS(3266), + [anon_sym_co_return] = ACTIONS(3266), + [anon_sym_co_yield] = ACTIONS(3266), + [anon_sym_R_DQUOTE] = ACTIONS(3268), + [anon_sym_LR_DQUOTE] = ACTIONS(3268), + [anon_sym_uR_DQUOTE] = ACTIONS(3268), + [anon_sym_UR_DQUOTE] = ACTIONS(3268), + [anon_sym_u8R_DQUOTE] = ACTIONS(3268), + [anon_sym_co_await] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_requires] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), }, - [934] = { + [899] = { + [sym_identifier] = ACTIONS(3183), + [aux_sym_preproc_include_token1] = ACTIONS(3183), + [aux_sym_preproc_def_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3183), + [anon_sym_LPAREN2] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_AMP_AMP] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym___extension__] = ACTIONS(3183), + [anon_sym_typedef] = ACTIONS(3183), + [anon_sym_extern] = ACTIONS(3183), + [anon_sym___attribute__] = ACTIONS(3183), + [anon_sym_COLON_COLON] = ACTIONS(3185), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), + [anon_sym___declspec] = ACTIONS(3183), + [anon_sym___based] = ACTIONS(3183), + [anon_sym___cdecl] = ACTIONS(3183), + [anon_sym___clrcall] = ACTIONS(3183), + [anon_sym___stdcall] = ACTIONS(3183), + [anon_sym___fastcall] = ACTIONS(3183), + [anon_sym___thiscall] = ACTIONS(3183), + [anon_sym___vectorcall] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_RBRACE] = ACTIONS(3185), + [anon_sym_signed] = ACTIONS(3183), + [anon_sym_unsigned] = ACTIONS(3183), + [anon_sym_long] = ACTIONS(3183), + [anon_sym_short] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_register] = ACTIONS(3183), + [anon_sym_inline] = ACTIONS(3183), + [anon_sym___inline] = ACTIONS(3183), + [anon_sym___inline__] = ACTIONS(3183), + [anon_sym___forceinline] = ACTIONS(3183), + [anon_sym_thread_local] = ACTIONS(3183), + [anon_sym___thread] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_constexpr] = ACTIONS(3183), + [anon_sym_volatile] = ACTIONS(3183), + [anon_sym_restrict] = ACTIONS(3183), + [anon_sym___restrict__] = ACTIONS(3183), + [anon_sym__Atomic] = ACTIONS(3183), + [anon_sym__Noreturn] = ACTIONS(3183), + [anon_sym_noreturn] = ACTIONS(3183), + [anon_sym_mutable] = ACTIONS(3183), + [anon_sym_constinit] = ACTIONS(3183), + [anon_sym_consteval] = ACTIONS(3183), + [sym_primitive_type] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_goto] = ACTIONS(3183), + [anon_sym___try] = ACTIONS(3183), + [anon_sym___leave] = ACTIONS(3183), + [anon_sym_not] = ACTIONS(3183), + [anon_sym_compl] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3183), + [anon_sym___alignof__] = ACTIONS(3183), + [anon_sym___alignof] = ACTIONS(3183), + [anon_sym__alignof] = ACTIONS(3183), + [anon_sym_alignof] = ACTIONS(3183), + [anon_sym__Alignof] = ACTIONS(3183), + [anon_sym_offsetof] = ACTIONS(3183), + [anon_sym__Generic] = ACTIONS(3183), + [anon_sym_asm] = ACTIONS(3183), + [anon_sym___asm__] = ACTIONS(3183), + [sym_number_literal] = ACTIONS(3185), + [anon_sym_L_SQUOTE] = ACTIONS(3185), + [anon_sym_u_SQUOTE] = ACTIONS(3185), + [anon_sym_U_SQUOTE] = ACTIONS(3185), + [anon_sym_u8_SQUOTE] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3185), + [anon_sym_L_DQUOTE] = ACTIONS(3185), + [anon_sym_u_DQUOTE] = ACTIONS(3185), + [anon_sym_U_DQUOTE] = ACTIONS(3185), + [anon_sym_u8_DQUOTE] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3185), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [anon_sym_NULL] = ACTIONS(3183), + [anon_sym_nullptr] = ACTIONS(3183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3183), + [anon_sym_decltype] = ACTIONS(3183), + [anon_sym_virtual] = ACTIONS(3183), + [anon_sym_alignas] = ACTIONS(3183), + [anon_sym_explicit] = ACTIONS(3183), + [anon_sym_typename] = ACTIONS(3183), + [anon_sym_template] = ACTIONS(3183), + [anon_sym_operator] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_static_assert] = ACTIONS(3183), + [anon_sym_concept] = ACTIONS(3183), + [anon_sym_co_return] = ACTIONS(3183), + [anon_sym_co_yield] = ACTIONS(3183), + [anon_sym_R_DQUOTE] = ACTIONS(3185), + [anon_sym_LR_DQUOTE] = ACTIONS(3185), + [anon_sym_uR_DQUOTE] = ACTIONS(3185), + [anon_sym_UR_DQUOTE] = ACTIONS(3185), + [anon_sym_u8R_DQUOTE] = ACTIONS(3185), + [anon_sym_co_await] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_requires] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), + }, + [900] = { [sym_identifier] = ACTIONS(3227), [aux_sym_preproc_include_token1] = ACTIONS(3227), [aux_sym_preproc_def_token1] = ACTIONS(3227), @@ -217861,1063 +213702,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3227), [sym_this] = ACTIONS(3227), }, - [935] = { - [sym_identifier] = ACTIONS(3231), - [aux_sym_preproc_include_token1] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token2] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), - [sym_preproc_directive] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym___based] = ACTIONS(3231), - [anon_sym___cdecl] = ACTIONS(3231), - [anon_sym___clrcall] = ACTIONS(3231), - [anon_sym___stdcall] = ACTIONS(3231), - [anon_sym___fastcall] = ACTIONS(3231), - [anon_sym___thiscall] = ACTIONS(3231), - [anon_sym___vectorcall] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym___try] = ACTIONS(3231), - [anon_sym___leave] = ACTIONS(3231), - [anon_sym_not] = ACTIONS(3231), - [anon_sym_compl] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3231), - [anon_sym___alignof__] = ACTIONS(3231), - [anon_sym___alignof] = ACTIONS(3231), - [anon_sym__alignof] = ACTIONS(3231), - [anon_sym_alignof] = ACTIONS(3231), - [anon_sym__Alignof] = ACTIONS(3231), - [anon_sym_offsetof] = ACTIONS(3231), - [anon_sym__Generic] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym___asm__] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3233), - [anon_sym_L_SQUOTE] = ACTIONS(3233), - [anon_sym_u_SQUOTE] = ACTIONS(3233), - [anon_sym_U_SQUOTE] = ACTIONS(3233), - [anon_sym_u8_SQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_L_DQUOTE] = ACTIONS(3233), - [anon_sym_u_DQUOTE] = ACTIONS(3233), - [anon_sym_U_DQUOTE] = ACTIONS(3233), - [anon_sym_u8_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [anon_sym_NULL] = ACTIONS(3231), - [anon_sym_nullptr] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_explicit] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_operator] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_static_assert] = ACTIONS(3231), - [anon_sym_concept] = ACTIONS(3231), - [anon_sym_co_return] = ACTIONS(3231), - [anon_sym_co_yield] = ACTIONS(3231), - [anon_sym_R_DQUOTE] = ACTIONS(3233), - [anon_sym_LR_DQUOTE] = ACTIONS(3233), - [anon_sym_uR_DQUOTE] = ACTIONS(3233), - [anon_sym_UR_DQUOTE] = ACTIONS(3233), - [anon_sym_u8R_DQUOTE] = ACTIONS(3233), - [anon_sym_co_await] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_requires] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - }, - [936] = { - [sym_identifier] = ACTIONS(3288), - [aux_sym_preproc_include_token1] = ACTIONS(3288), - [aux_sym_preproc_def_token1] = ACTIONS(3288), - [aux_sym_preproc_if_token1] = ACTIONS(3288), - [aux_sym_preproc_if_token2] = ACTIONS(3288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3288), - [sym_preproc_directive] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3290), - [anon_sym_AMP_AMP] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym___extension__] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym___attribute__] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3290), - [anon_sym___declspec] = ACTIONS(3288), - [anon_sym___based] = ACTIONS(3288), - [anon_sym___cdecl] = ACTIONS(3288), - [anon_sym___clrcall] = ACTIONS(3288), - [anon_sym___stdcall] = ACTIONS(3288), - [anon_sym___fastcall] = ACTIONS(3288), - [anon_sym___thiscall] = ACTIONS(3288), - [anon_sym___vectorcall] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_signed] = ACTIONS(3288), - [anon_sym_unsigned] = ACTIONS(3288), - [anon_sym_long] = ACTIONS(3288), - [anon_sym_short] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_register] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym___inline] = ACTIONS(3288), - [anon_sym___inline__] = ACTIONS(3288), - [anon_sym___forceinline] = ACTIONS(3288), - [anon_sym_thread_local] = ACTIONS(3288), - [anon_sym___thread] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_constexpr] = ACTIONS(3288), - [anon_sym_volatile] = ACTIONS(3288), - [anon_sym_restrict] = ACTIONS(3288), - [anon_sym___restrict__] = ACTIONS(3288), - [anon_sym__Atomic] = ACTIONS(3288), - [anon_sym__Noreturn] = ACTIONS(3288), - [anon_sym_noreturn] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(3288), - [anon_sym_constinit] = ACTIONS(3288), - [anon_sym_consteval] = ACTIONS(3288), - [sym_primitive_type] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3288), - [anon_sym_union] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_goto] = ACTIONS(3288), - [anon_sym___try] = ACTIONS(3288), - [anon_sym___leave] = ACTIONS(3288), - [anon_sym_not] = ACTIONS(3288), - [anon_sym_compl] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_sizeof] = ACTIONS(3288), - [anon_sym___alignof__] = ACTIONS(3288), - [anon_sym___alignof] = ACTIONS(3288), - [anon_sym__alignof] = ACTIONS(3288), - [anon_sym_alignof] = ACTIONS(3288), - [anon_sym__Alignof] = ACTIONS(3288), - [anon_sym_offsetof] = ACTIONS(3288), - [anon_sym__Generic] = ACTIONS(3288), - [anon_sym_asm] = ACTIONS(3288), - [anon_sym___asm__] = ACTIONS(3288), - [sym_number_literal] = ACTIONS(3290), - [anon_sym_L_SQUOTE] = ACTIONS(3290), - [anon_sym_u_SQUOTE] = ACTIONS(3290), - [anon_sym_U_SQUOTE] = ACTIONS(3290), - [anon_sym_u8_SQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_L_DQUOTE] = ACTIONS(3290), - [anon_sym_u_DQUOTE] = ACTIONS(3290), - [anon_sym_U_DQUOTE] = ACTIONS(3290), - [anon_sym_u8_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [anon_sym_NULL] = ACTIONS(3288), - [anon_sym_nullptr] = ACTIONS(3288), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3288), - [anon_sym_decltype] = ACTIONS(3288), - [anon_sym_virtual] = ACTIONS(3288), - [anon_sym_alignas] = ACTIONS(3288), - [anon_sym_explicit] = ACTIONS(3288), - [anon_sym_typename] = ACTIONS(3288), - [anon_sym_template] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_static_assert] = ACTIONS(3288), - [anon_sym_concept] = ACTIONS(3288), - [anon_sym_co_return] = ACTIONS(3288), - [anon_sym_co_yield] = 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(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_requires] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - }, - [937] = { - [sym_identifier] = ACTIONS(3280), - [aux_sym_preproc_include_token1] = ACTIONS(3280), - [aux_sym_preproc_def_token1] = ACTIONS(3280), - [aux_sym_preproc_if_token1] = ACTIONS(3280), - [aux_sym_preproc_if_token2] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3280), - [sym_preproc_directive] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_STAR] = ACTIONS(3282), - [anon_sym_AMP_AMP] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym___extension__] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3282), - [anon_sym___declspec] = ACTIONS(3280), - [anon_sym___based] = ACTIONS(3280), - [anon_sym___cdecl] = ACTIONS(3280), - [anon_sym___clrcall] = ACTIONS(3280), - [anon_sym___stdcall] = ACTIONS(3280), - [anon_sym___fastcall] = ACTIONS(3280), - [anon_sym___thiscall] = ACTIONS(3280), - [anon_sym___vectorcall] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_signed] = ACTIONS(3280), - [anon_sym_unsigned] = ACTIONS(3280), - [anon_sym_long] = ACTIONS(3280), - [anon_sym_short] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_register] = ACTIONS(3280), - [anon_sym_inline] = ACTIONS(3280), - [anon_sym___inline] = ACTIONS(3280), - [anon_sym___inline__] = ACTIONS(3280), - [anon_sym___forceinline] = ACTIONS(3280), - [anon_sym_thread_local] = ACTIONS(3280), - [anon_sym___thread] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_constexpr] = ACTIONS(3280), - [anon_sym_volatile] = ACTIONS(3280), - [anon_sym_restrict] = ACTIONS(3280), - [anon_sym___restrict__] = ACTIONS(3280), - [anon_sym__Atomic] = ACTIONS(3280), - [anon_sym__Noreturn] = ACTIONS(3280), - [anon_sym_noreturn] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [sym_primitive_type] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_struct] = ACTIONS(3280), - [anon_sym_union] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_case] = ACTIONS(3280), - [anon_sym_default] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_goto] = ACTIONS(3280), - [anon_sym___try] = ACTIONS(3280), - [anon_sym___leave] = ACTIONS(3280), - [anon_sym_not] = ACTIONS(3280), - [anon_sym_compl] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_sizeof] = ACTIONS(3280), - [anon_sym___alignof__] = ACTIONS(3280), - [anon_sym___alignof] = ACTIONS(3280), - [anon_sym__alignof] = ACTIONS(3280), - [anon_sym_alignof] = ACTIONS(3280), - [anon_sym__Alignof] = ACTIONS(3280), - [anon_sym_offsetof] = ACTIONS(3280), - [anon_sym__Generic] = ACTIONS(3280), - [anon_sym_asm] = ACTIONS(3280), - [anon_sym___asm__] = ACTIONS(3280), - [sym_number_literal] = ACTIONS(3282), - [anon_sym_L_SQUOTE] = ACTIONS(3282), - [anon_sym_u_SQUOTE] = ACTIONS(3282), - [anon_sym_U_SQUOTE] = ACTIONS(3282), - [anon_sym_u8_SQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_L_DQUOTE] = ACTIONS(3282), - [anon_sym_u_DQUOTE] = ACTIONS(3282), - [anon_sym_U_DQUOTE] = ACTIONS(3282), - [anon_sym_u8_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym_true] = ACTIONS(3280), - [sym_false] = ACTIONS(3280), - [anon_sym_NULL] = ACTIONS(3280), - [anon_sym_nullptr] = ACTIONS(3280), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3280), - [anon_sym_decltype] = ACTIONS(3280), - [anon_sym_virtual] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym_explicit] = ACTIONS(3280), - [anon_sym_typename] = ACTIONS(3280), - [anon_sym_template] = ACTIONS(3280), - [anon_sym_operator] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_namespace] = ACTIONS(3280), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_static_assert] = ACTIONS(3280), - [anon_sym_concept] = ACTIONS(3280), - [anon_sym_co_return] = ACTIONS(3280), - [anon_sym_co_yield] = ACTIONS(3280), - [anon_sym_R_DQUOTE] = ACTIONS(3282), - [anon_sym_LR_DQUOTE] = ACTIONS(3282), - [anon_sym_uR_DQUOTE] = ACTIONS(3282), - [anon_sym_UR_DQUOTE] = ACTIONS(3282), - [anon_sym_u8R_DQUOTE] = ACTIONS(3282), - [anon_sym_co_await] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_requires] = ACTIONS(3280), - [sym_this] = ACTIONS(3280), - }, - [938] = { - [sym_identifier] = ACTIONS(3292), - [aux_sym_preproc_include_token1] = ACTIONS(3292), - [aux_sym_preproc_def_token1] = ACTIONS(3292), - [aux_sym_preproc_if_token1] = ACTIONS(3292), - [aux_sym_preproc_if_token2] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3292), - [sym_preproc_directive] = ACTIONS(3292), - [anon_sym_LPAREN2] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_AMP_AMP] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym___extension__] = ACTIONS(3292), - [anon_sym_typedef] = ACTIONS(3292), - [anon_sym_extern] = ACTIONS(3292), - [anon_sym___attribute__] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3294), - [anon_sym___declspec] = ACTIONS(3292), - [anon_sym___based] = ACTIONS(3292), - [anon_sym___cdecl] = ACTIONS(3292), - [anon_sym___clrcall] = ACTIONS(3292), - [anon_sym___stdcall] = ACTIONS(3292), - [anon_sym___fastcall] = ACTIONS(3292), - [anon_sym___thiscall] = ACTIONS(3292), - [anon_sym___vectorcall] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_signed] = ACTIONS(3292), - [anon_sym_unsigned] = ACTIONS(3292), - [anon_sym_long] = ACTIONS(3292), - [anon_sym_short] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_register] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym___inline] = ACTIONS(3292), - [anon_sym___inline__] = ACTIONS(3292), - [anon_sym___forceinline] = ACTIONS(3292), - [anon_sym_thread_local] = ACTIONS(3292), - [anon_sym___thread] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_constexpr] = ACTIONS(3292), - [anon_sym_volatile] = ACTIONS(3292), - [anon_sym_restrict] = ACTIONS(3292), - [anon_sym___restrict__] = ACTIONS(3292), - [anon_sym__Atomic] = ACTIONS(3292), - [anon_sym__Noreturn] = ACTIONS(3292), - [anon_sym_noreturn] = ACTIONS(3292), - [anon_sym_mutable] = ACTIONS(3292), - [anon_sym_constinit] = ACTIONS(3292), - [anon_sym_consteval] = ACTIONS(3292), - [sym_primitive_type] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3292), - [anon_sym_union] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_case] = ACTIONS(3292), - [anon_sym_default] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_goto] = ACTIONS(3292), - [anon_sym___try] = ACTIONS(3292), - [anon_sym___leave] = ACTIONS(3292), - [anon_sym_not] = ACTIONS(3292), - [anon_sym_compl] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_sizeof] = ACTIONS(3292), - [anon_sym___alignof__] = ACTIONS(3292), - [anon_sym___alignof] = ACTIONS(3292), - [anon_sym__alignof] = ACTIONS(3292), - [anon_sym_alignof] = ACTIONS(3292), - [anon_sym__Alignof] = ACTIONS(3292), - [anon_sym_offsetof] = ACTIONS(3292), - [anon_sym__Generic] = ACTIONS(3292), - [anon_sym_asm] = ACTIONS(3292), - [anon_sym___asm__] = ACTIONS(3292), - [sym_number_literal] = ACTIONS(3294), - [anon_sym_L_SQUOTE] = ACTIONS(3294), - [anon_sym_u_SQUOTE] = ACTIONS(3294), - [anon_sym_U_SQUOTE] = ACTIONS(3294), - [anon_sym_u8_SQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_L_DQUOTE] = ACTIONS(3294), - [anon_sym_u_DQUOTE] = ACTIONS(3294), - [anon_sym_U_DQUOTE] = ACTIONS(3294), - [anon_sym_u8_DQUOTE] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [anon_sym_NULL] = ACTIONS(3292), - [anon_sym_nullptr] = ACTIONS(3292), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3292), - [anon_sym_decltype] = ACTIONS(3292), - [anon_sym_virtual] = ACTIONS(3292), - [anon_sym_alignas] = ACTIONS(3292), - [anon_sym_explicit] = ACTIONS(3292), - [anon_sym_typename] = ACTIONS(3292), - [anon_sym_template] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_static_assert] = ACTIONS(3292), - [anon_sym_concept] = ACTIONS(3292), - [anon_sym_co_return] = ACTIONS(3292), - [anon_sym_co_yield] = ACTIONS(3292), - [anon_sym_R_DQUOTE] = ACTIONS(3294), - [anon_sym_LR_DQUOTE] = ACTIONS(3294), - [anon_sym_uR_DQUOTE] = ACTIONS(3294), - [anon_sym_UR_DQUOTE] = ACTIONS(3294), - [anon_sym_u8R_DQUOTE] = ACTIONS(3294), - [anon_sym_co_await] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_requires] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - }, - [939] = { - [sym_identifier] = ACTIONS(3140), - [aux_sym_preproc_include_token1] = ACTIONS(3140), - [aux_sym_preproc_def_token1] = ACTIONS(3140), - [aux_sym_preproc_if_token1] = ACTIONS(3140), - [aux_sym_preproc_if_token2] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), - [sym_preproc_directive] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_AMP_AMP] = ACTIONS(3142), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym___extension__] = ACTIONS(3140), - [anon_sym_typedef] = ACTIONS(3140), - [anon_sym_extern] = ACTIONS(3140), - [anon_sym___attribute__] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3142), - [anon_sym___declspec] = ACTIONS(3140), - [anon_sym___based] = ACTIONS(3140), - [anon_sym___cdecl] = ACTIONS(3140), - [anon_sym___clrcall] = ACTIONS(3140), - [anon_sym___stdcall] = ACTIONS(3140), - [anon_sym___fastcall] = ACTIONS(3140), - [anon_sym___thiscall] = ACTIONS(3140), - [anon_sym___vectorcall] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_signed] = ACTIONS(3140), - [anon_sym_unsigned] = ACTIONS(3140), - [anon_sym_long] = ACTIONS(3140), - [anon_sym_short] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_register] = ACTIONS(3140), - [anon_sym_inline] = ACTIONS(3140), - [anon_sym___inline] = ACTIONS(3140), - [anon_sym___inline__] = ACTIONS(3140), - [anon_sym___forceinline] = ACTIONS(3140), - [anon_sym_thread_local] = ACTIONS(3140), - [anon_sym___thread] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_constexpr] = ACTIONS(3140), - [anon_sym_volatile] = ACTIONS(3140), - [anon_sym_restrict] = ACTIONS(3140), - [anon_sym___restrict__] = ACTIONS(3140), - [anon_sym__Atomic] = ACTIONS(3140), - [anon_sym__Noreturn] = ACTIONS(3140), - [anon_sym_noreturn] = ACTIONS(3140), - [anon_sym_mutable] = ACTIONS(3140), - [anon_sym_constinit] = ACTIONS(3140), - [anon_sym_consteval] = ACTIONS(3140), - [sym_primitive_type] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_struct] = ACTIONS(3140), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_case] = ACTIONS(3140), - [anon_sym_default] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_goto] = ACTIONS(3140), - [anon_sym___try] = ACTIONS(3140), - [anon_sym___leave] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3140), - [anon_sym_compl] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3140), - [anon_sym___alignof__] = ACTIONS(3140), - [anon_sym___alignof] = ACTIONS(3140), - [anon_sym__alignof] = ACTIONS(3140), - [anon_sym_alignof] = ACTIONS(3140), - [anon_sym__Alignof] = ACTIONS(3140), - [anon_sym_offsetof] = ACTIONS(3140), - [anon_sym__Generic] = ACTIONS(3140), - [anon_sym_asm] = ACTIONS(3140), - [anon_sym___asm__] = ACTIONS(3140), - [sym_number_literal] = ACTIONS(3142), - [anon_sym_L_SQUOTE] = ACTIONS(3142), - [anon_sym_u_SQUOTE] = ACTIONS(3142), - [anon_sym_U_SQUOTE] = ACTIONS(3142), - [anon_sym_u8_SQUOTE] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_L_DQUOTE] = ACTIONS(3142), - [anon_sym_u_DQUOTE] = ACTIONS(3142), - [anon_sym_U_DQUOTE] = ACTIONS(3142), - [anon_sym_u8_DQUOTE] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [anon_sym_NULL] = ACTIONS(3140), - [anon_sym_nullptr] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3140), - [anon_sym_decltype] = ACTIONS(3140), - [anon_sym_virtual] = ACTIONS(3140), - [anon_sym_alignas] = ACTIONS(3140), - [anon_sym_explicit] = ACTIONS(3140), - [anon_sym_typename] = ACTIONS(3140), - [anon_sym_template] = ACTIONS(3140), - [anon_sym_operator] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_static_assert] = ACTIONS(3140), - [anon_sym_concept] = ACTIONS(3140), - [anon_sym_co_return] = ACTIONS(3140), - [anon_sym_co_yield] = ACTIONS(3140), - [anon_sym_R_DQUOTE] = ACTIONS(3142), - [anon_sym_LR_DQUOTE] = ACTIONS(3142), - [anon_sym_uR_DQUOTE] = ACTIONS(3142), - [anon_sym_UR_DQUOTE] = ACTIONS(3142), - [anon_sym_u8R_DQUOTE] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_requires] = ACTIONS(3140), - [sym_this] = ACTIONS(3140), - }, - [940] = { - [sym_identifier] = ACTIONS(3164), - [aux_sym_preproc_include_token1] = ACTIONS(3164), - [aux_sym_preproc_def_token1] = ACTIONS(3164), - [aux_sym_preproc_if_token1] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), - [sym_preproc_directive] = ACTIONS(3164), - [anon_sym_LPAREN2] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3166), - [anon_sym_AMP_AMP] = ACTIONS(3166), - [anon_sym_AMP] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym___extension__] = ACTIONS(3164), - [anon_sym_typedef] = ACTIONS(3164), - [anon_sym_extern] = ACTIONS(3164), - [anon_sym___attribute__] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), - [anon_sym___declspec] = ACTIONS(3164), - [anon_sym___based] = ACTIONS(3164), - [anon_sym___cdecl] = ACTIONS(3164), - [anon_sym___clrcall] = ACTIONS(3164), - [anon_sym___stdcall] = ACTIONS(3164), - [anon_sym___fastcall] = ACTIONS(3164), - [anon_sym___thiscall] = ACTIONS(3164), - [anon_sym___vectorcall] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_signed] = ACTIONS(3164), - [anon_sym_unsigned] = ACTIONS(3164), - [anon_sym_long] = ACTIONS(3164), - [anon_sym_short] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_register] = ACTIONS(3164), - [anon_sym_inline] = ACTIONS(3164), - [anon_sym___inline] = ACTIONS(3164), - [anon_sym___inline__] = ACTIONS(3164), - [anon_sym___forceinline] = ACTIONS(3164), - [anon_sym_thread_local] = ACTIONS(3164), - [anon_sym___thread] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_constexpr] = ACTIONS(3164), - [anon_sym_volatile] = ACTIONS(3164), - [anon_sym_restrict] = ACTIONS(3164), - [anon_sym___restrict__] = ACTIONS(3164), - [anon_sym__Atomic] = ACTIONS(3164), - [anon_sym__Noreturn] = ACTIONS(3164), - [anon_sym_noreturn] = ACTIONS(3164), - [anon_sym_mutable] = ACTIONS(3164), - [anon_sym_constinit] = ACTIONS(3164), - [anon_sym_consteval] = ACTIONS(3164), - [sym_primitive_type] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_struct] = ACTIONS(3164), - [anon_sym_union] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_case] = ACTIONS(3164), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_goto] = ACTIONS(3164), - [anon_sym___try] = ACTIONS(3164), - [anon_sym___leave] = ACTIONS(3164), - [anon_sym_not] = ACTIONS(3164), - [anon_sym_compl] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_sizeof] = ACTIONS(3164), - [anon_sym___alignof__] = ACTIONS(3164), - [anon_sym___alignof] = ACTIONS(3164), - [anon_sym__alignof] = ACTIONS(3164), - [anon_sym_alignof] = ACTIONS(3164), - [anon_sym__Alignof] = ACTIONS(3164), - [anon_sym_offsetof] = ACTIONS(3164), - [anon_sym__Generic] = ACTIONS(3164), - [anon_sym_asm] = ACTIONS(3164), - [anon_sym___asm__] = ACTIONS(3164), - [sym_number_literal] = ACTIONS(3166), - [anon_sym_L_SQUOTE] = ACTIONS(3166), - [anon_sym_u_SQUOTE] = ACTIONS(3166), - [anon_sym_U_SQUOTE] = ACTIONS(3166), - [anon_sym_u8_SQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_L_DQUOTE] = ACTIONS(3166), - [anon_sym_u_DQUOTE] = ACTIONS(3166), - [anon_sym_U_DQUOTE] = ACTIONS(3166), - [anon_sym_u8_DQUOTE] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [anon_sym_NULL] = ACTIONS(3164), - [anon_sym_nullptr] = ACTIONS(3164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3164), - [anon_sym_virtual] = ACTIONS(3164), - [anon_sym_alignas] = ACTIONS(3164), - [anon_sym_explicit] = ACTIONS(3164), - [anon_sym_typename] = ACTIONS(3164), - [anon_sym_template] = ACTIONS(3164), - [anon_sym_operator] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_static_assert] = ACTIONS(3164), - [anon_sym_concept] = ACTIONS(3164), - [anon_sym_co_return] = ACTIONS(3164), - [anon_sym_co_yield] = ACTIONS(3164), - [anon_sym_R_DQUOTE] = ACTIONS(3166), - [anon_sym_LR_DQUOTE] = ACTIONS(3166), - [anon_sym_uR_DQUOTE] = ACTIONS(3166), - [anon_sym_UR_DQUOTE] = ACTIONS(3166), - [anon_sym_u8R_DQUOTE] = ACTIONS(3166), - [anon_sym_co_await] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_requires] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), - }, - [941] = { - [sym_identifier] = ACTIONS(3255), - [aux_sym_preproc_include_token1] = ACTIONS(3255), - [aux_sym_preproc_def_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), - [sym_preproc_directive] = ACTIONS(3255), - [anon_sym_LPAREN2] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_AMP_AMP] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym___extension__] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3255), - [anon_sym_extern] = ACTIONS(3255), - [anon_sym___attribute__] = ACTIONS(3255), - [anon_sym_COLON_COLON] = ACTIONS(3257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3257), - [anon_sym___declspec] = ACTIONS(3255), - [anon_sym___based] = ACTIONS(3255), - [anon_sym___cdecl] = ACTIONS(3255), - [anon_sym___clrcall] = ACTIONS(3255), - [anon_sym___stdcall] = ACTIONS(3255), - [anon_sym___fastcall] = ACTIONS(3255), - [anon_sym___thiscall] = ACTIONS(3255), - [anon_sym___vectorcall] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_signed] = ACTIONS(3255), - [anon_sym_unsigned] = ACTIONS(3255), - [anon_sym_long] = ACTIONS(3255), - [anon_sym_short] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_register] = ACTIONS(3255), - [anon_sym_inline] = ACTIONS(3255), - [anon_sym___inline] = ACTIONS(3255), - [anon_sym___inline__] = ACTIONS(3255), - [anon_sym___forceinline] = ACTIONS(3255), - [anon_sym_thread_local] = ACTIONS(3255), - [anon_sym___thread] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_constexpr] = ACTIONS(3255), - [anon_sym_volatile] = ACTIONS(3255), - [anon_sym_restrict] = ACTIONS(3255), - [anon_sym___restrict__] = ACTIONS(3255), - [anon_sym__Atomic] = ACTIONS(3255), - [anon_sym__Noreturn] = ACTIONS(3255), - [anon_sym_noreturn] = ACTIONS(3255), - [anon_sym_mutable] = ACTIONS(3255), - [anon_sym_constinit] = ACTIONS(3255), - [anon_sym_consteval] = ACTIONS(3255), - [sym_primitive_type] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym___try] = ACTIONS(3255), - [anon_sym___leave] = ACTIONS(3255), - [anon_sym_not] = ACTIONS(3255), - [anon_sym_compl] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3255), - [anon_sym___alignof__] = ACTIONS(3255), - [anon_sym___alignof] = ACTIONS(3255), - [anon_sym__alignof] = ACTIONS(3255), - [anon_sym_alignof] = ACTIONS(3255), - [anon_sym__Alignof] = ACTIONS(3255), - [anon_sym_offsetof] = ACTIONS(3255), - [anon_sym__Generic] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym___asm__] = ACTIONS(3255), - [sym_number_literal] = ACTIONS(3257), - [anon_sym_L_SQUOTE] = ACTIONS(3257), - [anon_sym_u_SQUOTE] = ACTIONS(3257), - [anon_sym_U_SQUOTE] = ACTIONS(3257), - [anon_sym_u8_SQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_L_DQUOTE] = ACTIONS(3257), - [anon_sym_u_DQUOTE] = ACTIONS(3257), - [anon_sym_U_DQUOTE] = ACTIONS(3257), - [anon_sym_u8_DQUOTE] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [anon_sym_NULL] = ACTIONS(3255), - [anon_sym_nullptr] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3255), - [anon_sym_decltype] = ACTIONS(3255), - [anon_sym_virtual] = ACTIONS(3255), - [anon_sym_alignas] = ACTIONS(3255), - [anon_sym_explicit] = ACTIONS(3255), - [anon_sym_typename] = ACTIONS(3255), - [anon_sym_template] = ACTIONS(3255), - [anon_sym_operator] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_static_assert] = ACTIONS(3255), - [anon_sym_concept] = ACTIONS(3255), - [anon_sym_co_return] = ACTIONS(3255), - [anon_sym_co_yield] = ACTIONS(3255), - [anon_sym_R_DQUOTE] = ACTIONS(3257), - [anon_sym_LR_DQUOTE] = ACTIONS(3257), - [anon_sym_uR_DQUOTE] = ACTIONS(3257), - [anon_sym_UR_DQUOTE] = ACTIONS(3257), - [anon_sym_u8R_DQUOTE] = ACTIONS(3257), - [anon_sym_co_await] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_requires] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), + [901] = { + [sym_identifier] = ACTIONS(3282), + [aux_sym_preproc_include_token1] = ACTIONS(3282), + [aux_sym_preproc_def_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym___extension__] = ACTIONS(3282), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym___attribute__] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), + [anon_sym___declspec] = ACTIONS(3282), + [anon_sym___based] = ACTIONS(3282), + [anon_sym___cdecl] = ACTIONS(3282), + [anon_sym___clrcall] = ACTIONS(3282), + [anon_sym___stdcall] = ACTIONS(3282), + [anon_sym___fastcall] = ACTIONS(3282), + [anon_sym___thiscall] = ACTIONS(3282), + [anon_sym___vectorcall] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_signed] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym___inline] = ACTIONS(3282), + [anon_sym___inline__] = ACTIONS(3282), + [anon_sym___forceinline] = ACTIONS(3282), + [anon_sym_thread_local] = ACTIONS(3282), + [anon_sym___thread] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_constexpr] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym___restrict__] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym__Noreturn] = ACTIONS(3282), + [anon_sym_noreturn] = ACTIONS(3282), + [anon_sym_mutable] = ACTIONS(3282), + [anon_sym_constinit] = ACTIONS(3282), + [anon_sym_consteval] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym___try] = ACTIONS(3282), + [anon_sym___leave] = ACTIONS(3282), + [anon_sym_not] = ACTIONS(3282), + [anon_sym_compl] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [anon_sym___alignof__] = ACTIONS(3282), + [anon_sym___alignof] = ACTIONS(3282), + [anon_sym__alignof] = ACTIONS(3282), + [anon_sym_alignof] = ACTIONS(3282), + [anon_sym__Alignof] = ACTIONS(3282), + [anon_sym_offsetof] = ACTIONS(3282), + [anon_sym__Generic] = ACTIONS(3282), + [anon_sym_asm] = ACTIONS(3282), + [anon_sym___asm__] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [anon_sym_L_SQUOTE] = ACTIONS(3284), + [anon_sym_u_SQUOTE] = ACTIONS(3284), + [anon_sym_U_SQUOTE] = ACTIONS(3284), + [anon_sym_u8_SQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_L_DQUOTE] = ACTIONS(3284), + [anon_sym_u_DQUOTE] = ACTIONS(3284), + [anon_sym_U_DQUOTE] = ACTIONS(3284), + [anon_sym_u8_DQUOTE] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [anon_sym_NULL] = ACTIONS(3282), + [anon_sym_nullptr] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3282), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_virtual] = ACTIONS(3282), + [anon_sym_alignas] = ACTIONS(3282), + [anon_sym_explicit] = ACTIONS(3282), + [anon_sym_typename] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3282), + [anon_sym_operator] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_static_assert] = ACTIONS(3282), + [anon_sym_concept] = ACTIONS(3282), + [anon_sym_co_return] = ACTIONS(3282), + [anon_sym_co_yield] = ACTIONS(3282), + [anon_sym_R_DQUOTE] = ACTIONS(3284), + [anon_sym_LR_DQUOTE] = ACTIONS(3284), + [anon_sym_uR_DQUOTE] = ACTIONS(3284), + [anon_sym_UR_DQUOTE] = ACTIONS(3284), + [anon_sym_u8R_DQUOTE] = ACTIONS(3284), + [anon_sym_co_await] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_requires] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), }, - [942] = { - [sym_identifier] = ACTIONS(3076), - [aux_sym_preproc_include_token1] = ACTIONS(3076), - [aux_sym_preproc_def_token1] = ACTIONS(3076), - [aux_sym_preproc_if_token1] = ACTIONS(3076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3076), - [sym_preproc_directive] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3078), - [anon_sym_AMP_AMP] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym___extension__] = ACTIONS(3076), - [anon_sym_typedef] = ACTIONS(3076), - [anon_sym_extern] = ACTIONS(3076), - [anon_sym___attribute__] = ACTIONS(3076), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3078), - [anon_sym___declspec] = ACTIONS(3076), - [anon_sym___based] = ACTIONS(3076), - [anon_sym___cdecl] = ACTIONS(3076), - [anon_sym___clrcall] = ACTIONS(3076), - [anon_sym___stdcall] = ACTIONS(3076), - [anon_sym___fastcall] = ACTIONS(3076), - [anon_sym___thiscall] = ACTIONS(3076), - [anon_sym___vectorcall] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_RBRACE] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3076), - [anon_sym_unsigned] = ACTIONS(3076), - [anon_sym_long] = ACTIONS(3076), - [anon_sym_short] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_static] = ACTIONS(3076), - [anon_sym_register] = ACTIONS(3076), - [anon_sym_inline] = ACTIONS(3076), - [anon_sym___inline] = ACTIONS(3076), - [anon_sym___inline__] = ACTIONS(3076), - [anon_sym___forceinline] = ACTIONS(3076), - [anon_sym_thread_local] = ACTIONS(3076), - [anon_sym___thread] = ACTIONS(3076), - [anon_sym_const] = ACTIONS(3076), - [anon_sym_constexpr] = ACTIONS(3076), - [anon_sym_volatile] = ACTIONS(3076), - [anon_sym_restrict] = ACTIONS(3076), - [anon_sym___restrict__] = ACTIONS(3076), - [anon_sym__Atomic] = ACTIONS(3076), - [anon_sym__Noreturn] = ACTIONS(3076), - [anon_sym_noreturn] = ACTIONS(3076), - [anon_sym_mutable] = ACTIONS(3076), - [anon_sym_constinit] = ACTIONS(3076), - [anon_sym_consteval] = ACTIONS(3076), - [sym_primitive_type] = ACTIONS(3076), - [anon_sym_enum] = ACTIONS(3076), - [anon_sym_class] = ACTIONS(3076), - [anon_sym_struct] = ACTIONS(3076), - [anon_sym_union] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_switch] = ACTIONS(3076), - [anon_sym_case] = ACTIONS(3076), - [anon_sym_default] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_break] = ACTIONS(3076), - [anon_sym_continue] = ACTIONS(3076), - [anon_sym_goto] = ACTIONS(3076), - [anon_sym___try] = ACTIONS(3076), - [anon_sym___leave] = ACTIONS(3076), - [anon_sym_not] = ACTIONS(3076), - [anon_sym_compl] = ACTIONS(3076), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_sizeof] = ACTIONS(3076), - [anon_sym___alignof__] = ACTIONS(3076), - [anon_sym___alignof] = ACTIONS(3076), - [anon_sym__alignof] = ACTIONS(3076), - [anon_sym_alignof] = ACTIONS(3076), - [anon_sym__Alignof] = ACTIONS(3076), - [anon_sym_offsetof] = ACTIONS(3076), - [anon_sym__Generic] = ACTIONS(3076), - [anon_sym_asm] = ACTIONS(3076), - [anon_sym___asm__] = ACTIONS(3076), - [sym_number_literal] = ACTIONS(3078), - [anon_sym_L_SQUOTE] = ACTIONS(3078), - [anon_sym_u_SQUOTE] = ACTIONS(3078), - [anon_sym_U_SQUOTE] = ACTIONS(3078), - [anon_sym_u8_SQUOTE] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_L_DQUOTE] = ACTIONS(3078), - [anon_sym_u_DQUOTE] = ACTIONS(3078), - [anon_sym_U_DQUOTE] = ACTIONS(3078), - [anon_sym_u8_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE] = ACTIONS(3078), - [sym_true] = ACTIONS(3076), - [sym_false] = ACTIONS(3076), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3076), - [anon_sym_decltype] = ACTIONS(3076), - [anon_sym_virtual] = ACTIONS(3076), - [anon_sym_alignas] = ACTIONS(3076), - [anon_sym_explicit] = ACTIONS(3076), - [anon_sym_typename] = ACTIONS(3076), - [anon_sym_template] = ACTIONS(3076), - [anon_sym_operator] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_delete] = ACTIONS(3076), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_namespace] = ACTIONS(3076), - [anon_sym_using] = ACTIONS(3076), - [anon_sym_static_assert] = ACTIONS(3076), - [anon_sym_concept] = ACTIONS(3076), - [anon_sym_co_return] = ACTIONS(3076), - [anon_sym_co_yield] = ACTIONS(3076), - [anon_sym_R_DQUOTE] = ACTIONS(3078), - [anon_sym_LR_DQUOTE] = ACTIONS(3078), - [anon_sym_uR_DQUOTE] = ACTIONS(3078), - [anon_sym_UR_DQUOTE] = ACTIONS(3078), - [anon_sym_u8R_DQUOTE] = ACTIONS(3078), - [anon_sym_co_await] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_requires] = ACTIONS(3076), - [sym_this] = ACTIONS(3076), + [902] = { + [sym_identifier] = ACTIONS(3274), + [aux_sym_preproc_include_token1] = ACTIONS(3274), + [aux_sym_preproc_def_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token1] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), + [sym_preproc_directive] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym___extension__] = ACTIONS(3274), + [anon_sym_typedef] = ACTIONS(3274), + [anon_sym_extern] = ACTIONS(3274), + [anon_sym___attribute__] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3274), + [anon_sym___based] = ACTIONS(3274), + [anon_sym___cdecl] = ACTIONS(3274), + [anon_sym___clrcall] = ACTIONS(3274), + [anon_sym___stdcall] = ACTIONS(3274), + [anon_sym___fastcall] = ACTIONS(3274), + [anon_sym___thiscall] = ACTIONS(3274), + [anon_sym___vectorcall] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_signed] = ACTIONS(3274), + [anon_sym_unsigned] = ACTIONS(3274), + [anon_sym_long] = ACTIONS(3274), + [anon_sym_short] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_register] = ACTIONS(3274), + [anon_sym_inline] = ACTIONS(3274), + [anon_sym___inline] = ACTIONS(3274), + [anon_sym___inline__] = ACTIONS(3274), + [anon_sym___forceinline] = ACTIONS(3274), + [anon_sym_thread_local] = ACTIONS(3274), + [anon_sym___thread] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_constexpr] = ACTIONS(3274), + [anon_sym_volatile] = ACTIONS(3274), + [anon_sym_restrict] = ACTIONS(3274), + [anon_sym___restrict__] = ACTIONS(3274), + [anon_sym__Atomic] = ACTIONS(3274), + [anon_sym__Noreturn] = ACTIONS(3274), + [anon_sym_noreturn] = ACTIONS(3274), + [anon_sym_mutable] = ACTIONS(3274), + [anon_sym_constinit] = ACTIONS(3274), + [anon_sym_consteval] = ACTIONS(3274), + [sym_primitive_type] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_union] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym___try] = ACTIONS(3274), + [anon_sym___leave] = ACTIONS(3274), + [anon_sym_not] = ACTIONS(3274), + [anon_sym_compl] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_sizeof] = ACTIONS(3274), + [anon_sym___alignof__] = ACTIONS(3274), + [anon_sym___alignof] = ACTIONS(3274), + [anon_sym__alignof] = ACTIONS(3274), + [anon_sym_alignof] = ACTIONS(3274), + [anon_sym__Alignof] = ACTIONS(3274), + [anon_sym_offsetof] = ACTIONS(3274), + [anon_sym__Generic] = ACTIONS(3274), + [anon_sym_asm] = ACTIONS(3274), + [anon_sym___asm__] = ACTIONS(3274), + [sym_number_literal] = ACTIONS(3276), + [anon_sym_L_SQUOTE] = ACTIONS(3276), + [anon_sym_u_SQUOTE] = ACTIONS(3276), + [anon_sym_U_SQUOTE] = ACTIONS(3276), + [anon_sym_u8_SQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_L_DQUOTE] = ACTIONS(3276), + [anon_sym_u_DQUOTE] = ACTIONS(3276), + [anon_sym_U_DQUOTE] = ACTIONS(3276), + [anon_sym_u8_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [anon_sym_NULL] = ACTIONS(3274), + [anon_sym_nullptr] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3274), + [anon_sym_decltype] = ACTIONS(3274), + [anon_sym_virtual] = ACTIONS(3274), + [anon_sym_alignas] = ACTIONS(3274), + [anon_sym_explicit] = ACTIONS(3274), + [anon_sym_typename] = ACTIONS(3274), + [anon_sym_template] = ACTIONS(3274), + [anon_sym_operator] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_static_assert] = ACTIONS(3274), + [anon_sym_concept] = ACTIONS(3274), + [anon_sym_co_return] = ACTIONS(3274), + [anon_sym_co_yield] = ACTIONS(3274), + [anon_sym_R_DQUOTE] = ACTIONS(3276), + [anon_sym_LR_DQUOTE] = ACTIONS(3276), + [anon_sym_uR_DQUOTE] = ACTIONS(3276), + [anon_sym_UR_DQUOTE] = ACTIONS(3276), + [anon_sym_u8R_DQUOTE] = ACTIONS(3276), + [anon_sym_co_await] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_requires] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), }, - [943] = { + [903] = { [sym_identifier] = ACTIONS(3223), [aux_sym_preproc_include_token1] = ACTIONS(3223), [aux_sym_preproc_def_token1] = ACTIONS(3223), @@ -219049,3915 +214098,931 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3223), [sym_this] = ACTIONS(3223), }, - [944] = { - [sym_identifier] = ACTIONS(3243), - [aux_sym_preproc_include_token1] = ACTIONS(3243), - [aux_sym_preproc_def_token1] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3243), - [aux_sym_preproc_if_token2] = ACTIONS(3243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3243), - [sym_preproc_directive] = ACTIONS(3243), - [anon_sym_LPAREN2] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym___extension__] = ACTIONS(3243), - [anon_sym_typedef] = ACTIONS(3243), - [anon_sym_extern] = ACTIONS(3243), - [anon_sym___attribute__] = ACTIONS(3243), - [anon_sym_COLON_COLON] = ACTIONS(3245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3245), - [anon_sym___declspec] = ACTIONS(3243), - [anon_sym___based] = ACTIONS(3243), - [anon_sym___cdecl] = ACTIONS(3243), - [anon_sym___clrcall] = ACTIONS(3243), - [anon_sym___stdcall] = ACTIONS(3243), - [anon_sym___fastcall] = ACTIONS(3243), - [anon_sym___thiscall] = ACTIONS(3243), - [anon_sym___vectorcall] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_signed] = ACTIONS(3243), - [anon_sym_unsigned] = ACTIONS(3243), - [anon_sym_long] = ACTIONS(3243), - [anon_sym_short] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_register] = ACTIONS(3243), - [anon_sym_inline] = ACTIONS(3243), - [anon_sym___inline] = ACTIONS(3243), - [anon_sym___inline__] = ACTIONS(3243), - [anon_sym___forceinline] = ACTIONS(3243), - [anon_sym_thread_local] = ACTIONS(3243), - [anon_sym___thread] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_constexpr] = ACTIONS(3243), - [anon_sym_volatile] = ACTIONS(3243), - [anon_sym_restrict] = ACTIONS(3243), - [anon_sym___restrict__] = ACTIONS(3243), - [anon_sym__Atomic] = ACTIONS(3243), - [anon_sym__Noreturn] = ACTIONS(3243), - [anon_sym_noreturn] = ACTIONS(3243), - [anon_sym_mutable] = ACTIONS(3243), - [anon_sym_constinit] = ACTIONS(3243), - [anon_sym_consteval] = ACTIONS(3243), - [sym_primitive_type] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_union] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_case] = ACTIONS(3243), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_goto] = ACTIONS(3243), - [anon_sym___try] = ACTIONS(3243), - [anon_sym___leave] = ACTIONS(3243), - [anon_sym_not] = ACTIONS(3243), - [anon_sym_compl] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_sizeof] = ACTIONS(3243), - [anon_sym___alignof__] = ACTIONS(3243), - [anon_sym___alignof] = ACTIONS(3243), - [anon_sym__alignof] = ACTIONS(3243), - [anon_sym_alignof] = ACTIONS(3243), - [anon_sym__Alignof] = ACTIONS(3243), - [anon_sym_offsetof] = ACTIONS(3243), - [anon_sym__Generic] = ACTIONS(3243), - [anon_sym_asm] = ACTIONS(3243), - [anon_sym___asm__] = ACTIONS(3243), - [sym_number_literal] = ACTIONS(3245), - [anon_sym_L_SQUOTE] = ACTIONS(3245), - [anon_sym_u_SQUOTE] = ACTIONS(3245), - [anon_sym_U_SQUOTE] = ACTIONS(3245), - [anon_sym_u8_SQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_L_DQUOTE] = ACTIONS(3245), - [anon_sym_u_DQUOTE] = ACTIONS(3245), - [anon_sym_U_DQUOTE] = ACTIONS(3245), - [anon_sym_u8_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [anon_sym_NULL] = ACTIONS(3243), - [anon_sym_nullptr] = ACTIONS(3243), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3243), - [anon_sym_decltype] = ACTIONS(3243), - [anon_sym_virtual] = ACTIONS(3243), - [anon_sym_alignas] = ACTIONS(3243), - [anon_sym_explicit] = ACTIONS(3243), - [anon_sym_typename] = ACTIONS(3243), - [anon_sym_template] = ACTIONS(3243), - [anon_sym_operator] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_static_assert] = ACTIONS(3243), - [anon_sym_concept] = ACTIONS(3243), - [anon_sym_co_return] = ACTIONS(3243), - [anon_sym_co_yield] = ACTIONS(3243), - [anon_sym_R_DQUOTE] = ACTIONS(3245), - [anon_sym_LR_DQUOTE] = ACTIONS(3245), - [anon_sym_uR_DQUOTE] = ACTIONS(3245), - [anon_sym_UR_DQUOTE] = ACTIONS(3245), - [anon_sym_u8R_DQUOTE] = ACTIONS(3245), - [anon_sym_co_await] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_requires] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), - }, - [945] = { - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_include_token1] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token2] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym___cdecl] = ACTIONS(3160), - [anon_sym___clrcall] = ACTIONS(3160), - [anon_sym___stdcall] = ACTIONS(3160), - [anon_sym___fastcall] = ACTIONS(3160), - [anon_sym___thiscall] = ACTIONS(3160), - [anon_sym___vectorcall] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_goto] = ACTIONS(3160), - [anon_sym___try] = ACTIONS(3160), - [anon_sym___leave] = ACTIONS(3160), - [anon_sym_not] = ACTIONS(3160), - [anon_sym_compl] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_sizeof] = ACTIONS(3160), - [anon_sym___alignof__] = ACTIONS(3160), - [anon_sym___alignof] = ACTIONS(3160), - [anon_sym__alignof] = ACTIONS(3160), - [anon_sym_alignof] = ACTIONS(3160), - [anon_sym__Alignof] = ACTIONS(3160), - [anon_sym_offsetof] = ACTIONS(3160), - [anon_sym__Generic] = ACTIONS(3160), - [anon_sym_asm] = ACTIONS(3160), - [anon_sym___asm__] = ACTIONS(3160), - [sym_number_literal] = ACTIONS(3162), - [anon_sym_L_SQUOTE] = ACTIONS(3162), - [anon_sym_u_SQUOTE] = ACTIONS(3162), - [anon_sym_U_SQUOTE] = ACTIONS(3162), - [anon_sym_u8_SQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_L_DQUOTE] = ACTIONS(3162), - [anon_sym_u_DQUOTE] = ACTIONS(3162), - [anon_sym_U_DQUOTE] = ACTIONS(3162), - [anon_sym_u8_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3160), - [anon_sym_nullptr] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), - [anon_sym_concept] = ACTIONS(3160), - [anon_sym_co_return] = ACTIONS(3160), - [anon_sym_co_yield] = ACTIONS(3160), - [anon_sym_R_DQUOTE] = ACTIONS(3162), - [anon_sym_LR_DQUOTE] = ACTIONS(3162), - [anon_sym_uR_DQUOTE] = ACTIONS(3162), - [anon_sym_UR_DQUOTE] = ACTIONS(3162), - [anon_sym_u8R_DQUOTE] = ACTIONS(3162), - [anon_sym_co_await] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_requires] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - }, - [946] = { - [sym_identifier] = ACTIONS(3098), - [aux_sym_preproc_include_token1] = ACTIONS(3098), - [aux_sym_preproc_def_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_LPAREN2] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3100), - [anon_sym___extension__] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym___attribute__] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), - [anon_sym___declspec] = ACTIONS(3098), - [anon_sym___based] = ACTIONS(3098), - [anon_sym___cdecl] = ACTIONS(3098), - [anon_sym___clrcall] = ACTIONS(3098), - [anon_sym___stdcall] = ACTIONS(3098), - [anon_sym___fastcall] = ACTIONS(3098), - [anon_sym___thiscall] = ACTIONS(3098), - [anon_sym___vectorcall] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_RBRACE] = ACTIONS(3100), - [anon_sym_signed] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym___inline] = ACTIONS(3098), - [anon_sym___inline__] = ACTIONS(3098), - [anon_sym___forceinline] = ACTIONS(3098), - [anon_sym_thread_local] = ACTIONS(3098), - [anon_sym___thread] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym___restrict__] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym__Noreturn] = ACTIONS(3098), - [anon_sym_noreturn] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_constinit] = ACTIONS(3098), - [anon_sym_consteval] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym___try] = ACTIONS(3098), - [anon_sym___leave] = ACTIONS(3098), - [anon_sym_not] = ACTIONS(3098), - [anon_sym_compl] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_sizeof] = ACTIONS(3098), - [anon_sym___alignof__] = ACTIONS(3098), - [anon_sym___alignof] = ACTIONS(3098), - [anon_sym__alignof] = ACTIONS(3098), - [anon_sym_alignof] = ACTIONS(3098), - [anon_sym__Alignof] = ACTIONS(3098), - [anon_sym_offsetof] = ACTIONS(3098), - [anon_sym__Generic] = ACTIONS(3098), - [anon_sym_asm] = ACTIONS(3098), - [anon_sym___asm__] = ACTIONS(3098), - [sym_number_literal] = ACTIONS(3100), - [anon_sym_L_SQUOTE] = ACTIONS(3100), - [anon_sym_u_SQUOTE] = ACTIONS(3100), - [anon_sym_U_SQUOTE] = ACTIONS(3100), - [anon_sym_u8_SQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [anon_sym_L_DQUOTE] = ACTIONS(3100), - [anon_sym_u_DQUOTE] = ACTIONS(3100), - [anon_sym_U_DQUOTE] = ACTIONS(3100), - [anon_sym_u8_DQUOTE] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [anon_sym_NULL] = ACTIONS(3098), - [anon_sym_nullptr] = ACTIONS(3098), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3098), - [anon_sym_decltype] = ACTIONS(3098), - [anon_sym_virtual] = ACTIONS(3098), - [anon_sym_alignas] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_template] = ACTIONS(3098), - [anon_sym_operator] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(3098), - [anon_sym_delete] = ACTIONS(3098), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_namespace] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_static_assert] = ACTIONS(3098), - [anon_sym_concept] = ACTIONS(3098), - [anon_sym_co_return] = ACTIONS(3098), - [anon_sym_co_yield] = ACTIONS(3098), - [anon_sym_R_DQUOTE] = ACTIONS(3100), - [anon_sym_LR_DQUOTE] = ACTIONS(3100), - [anon_sym_uR_DQUOTE] = ACTIONS(3100), - [anon_sym_UR_DQUOTE] = ACTIONS(3100), - [anon_sym_u8R_DQUOTE] = ACTIONS(3100), - [anon_sym_co_await] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_requires] = ACTIONS(3098), - [sym_this] = ACTIONS(3098), - }, - [947] = { - [sym_identifier] = ACTIONS(3120), - [aux_sym_preproc_include_token1] = ACTIONS(3120), - [aux_sym_preproc_def_token1] = ACTIONS(3120), - [aux_sym_preproc_if_token1] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), - [sym_preproc_directive] = ACTIONS(3120), - [anon_sym_LPAREN2] = ACTIONS(3122), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_AMP_AMP] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym___extension__] = ACTIONS(3120), - [anon_sym_typedef] = ACTIONS(3120), - [anon_sym_extern] = ACTIONS(3120), - [anon_sym___attribute__] = ACTIONS(3120), - [anon_sym_COLON_COLON] = ACTIONS(3122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), - [anon_sym___declspec] = ACTIONS(3120), - [anon_sym___based] = ACTIONS(3120), - [anon_sym___cdecl] = ACTIONS(3120), - [anon_sym___clrcall] = ACTIONS(3120), - [anon_sym___stdcall] = ACTIONS(3120), - [anon_sym___fastcall] = ACTIONS(3120), - [anon_sym___thiscall] = ACTIONS(3120), - [anon_sym___vectorcall] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_signed] = ACTIONS(3120), - [anon_sym_unsigned] = ACTIONS(3120), - [anon_sym_long] = ACTIONS(3120), - [anon_sym_short] = ACTIONS(3120), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_static] = ACTIONS(3120), - [anon_sym_register] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym___inline] = ACTIONS(3120), - [anon_sym___inline__] = ACTIONS(3120), - [anon_sym___forceinline] = ACTIONS(3120), - [anon_sym_thread_local] = ACTIONS(3120), - [anon_sym___thread] = ACTIONS(3120), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_constexpr] = ACTIONS(3120), - [anon_sym_volatile] = ACTIONS(3120), - [anon_sym_restrict] = ACTIONS(3120), - [anon_sym___restrict__] = ACTIONS(3120), - [anon_sym__Atomic] = ACTIONS(3120), - [anon_sym__Noreturn] = ACTIONS(3120), - [anon_sym_noreturn] = ACTIONS(3120), - [anon_sym_mutable] = ACTIONS(3120), - [anon_sym_constinit] = ACTIONS(3120), - [anon_sym_consteval] = ACTIONS(3120), - [sym_primitive_type] = ACTIONS(3120), - [anon_sym_enum] = ACTIONS(3120), - [anon_sym_class] = ACTIONS(3120), - [anon_sym_struct] = ACTIONS(3120), - [anon_sym_union] = ACTIONS(3120), - [anon_sym_if] = ACTIONS(3120), - [anon_sym_switch] = ACTIONS(3120), - [anon_sym_case] = ACTIONS(3120), - [anon_sym_default] = ACTIONS(3120), - [anon_sym_while] = ACTIONS(3120), - [anon_sym_do] = ACTIONS(3120), - [anon_sym_for] = ACTIONS(3120), - [anon_sym_return] = ACTIONS(3120), - [anon_sym_break] = ACTIONS(3120), - [anon_sym_continue] = ACTIONS(3120), - [anon_sym_goto] = ACTIONS(3120), - [anon_sym___try] = ACTIONS(3120), - [anon_sym___leave] = ACTIONS(3120), - [anon_sym_not] = ACTIONS(3120), - [anon_sym_compl] = ACTIONS(3120), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_sizeof] = ACTIONS(3120), - [anon_sym___alignof__] = ACTIONS(3120), - [anon_sym___alignof] = ACTIONS(3120), - [anon_sym__alignof] = ACTIONS(3120), - [anon_sym_alignof] = ACTIONS(3120), - [anon_sym__Alignof] = ACTIONS(3120), - [anon_sym_offsetof] = ACTIONS(3120), - [anon_sym__Generic] = ACTIONS(3120), - [anon_sym_asm] = ACTIONS(3120), - [anon_sym___asm__] = ACTIONS(3120), - [sym_number_literal] = ACTIONS(3122), - [anon_sym_L_SQUOTE] = ACTIONS(3122), - [anon_sym_u_SQUOTE] = ACTIONS(3122), - [anon_sym_U_SQUOTE] = ACTIONS(3122), - [anon_sym_u8_SQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [anon_sym_L_DQUOTE] = ACTIONS(3122), - [anon_sym_u_DQUOTE] = ACTIONS(3122), - [anon_sym_U_DQUOTE] = ACTIONS(3122), - [anon_sym_u8_DQUOTE] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [sym_true] = ACTIONS(3120), - [sym_false] = ACTIONS(3120), - [anon_sym_NULL] = ACTIONS(3120), - [anon_sym_nullptr] = ACTIONS(3120), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3120), - [anon_sym_decltype] = ACTIONS(3120), - [anon_sym_virtual] = ACTIONS(3120), - [anon_sym_alignas] = ACTIONS(3120), - [anon_sym_explicit] = ACTIONS(3120), - [anon_sym_typename] = ACTIONS(3120), - [anon_sym_template] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_try] = ACTIONS(3120), - [anon_sym_delete] = ACTIONS(3120), - [anon_sym_throw] = ACTIONS(3120), - [anon_sym_namespace] = ACTIONS(3120), - [anon_sym_using] = ACTIONS(3120), - [anon_sym_static_assert] = ACTIONS(3120), - [anon_sym_concept] = ACTIONS(3120), - [anon_sym_co_return] = ACTIONS(3120), - [anon_sym_co_yield] = ACTIONS(3120), - [anon_sym_R_DQUOTE] = ACTIONS(3122), - [anon_sym_LR_DQUOTE] = ACTIONS(3122), - [anon_sym_uR_DQUOTE] = ACTIONS(3122), - [anon_sym_UR_DQUOTE] = ACTIONS(3122), - [anon_sym_u8R_DQUOTE] = ACTIONS(3122), - [anon_sym_co_await] = ACTIONS(3120), - [anon_sym_new] = ACTIONS(3120), - [anon_sym_requires] = ACTIONS(3120), - [sym_this] = ACTIONS(3120), - }, - [948] = { - [sym_identifier] = ACTIONS(3120), - [aux_sym_preproc_include_token1] = ACTIONS(3120), - [aux_sym_preproc_def_token1] = ACTIONS(3120), - [aux_sym_preproc_if_token1] = ACTIONS(3120), - [aux_sym_preproc_if_token2] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), - [sym_preproc_directive] = ACTIONS(3120), - [anon_sym_LPAREN2] = ACTIONS(3122), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_AMP_AMP] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym___extension__] = ACTIONS(3120), - [anon_sym_typedef] = ACTIONS(3120), - [anon_sym_extern] = ACTIONS(3120), - [anon_sym___attribute__] = ACTIONS(3120), - [anon_sym_COLON_COLON] = ACTIONS(3122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), - [anon_sym___declspec] = ACTIONS(3120), - [anon_sym___based] = ACTIONS(3120), - [anon_sym___cdecl] = ACTIONS(3120), - [anon_sym___clrcall] = ACTIONS(3120), - [anon_sym___stdcall] = ACTIONS(3120), - [anon_sym___fastcall] = ACTIONS(3120), - [anon_sym___thiscall] = ACTIONS(3120), - [anon_sym___vectorcall] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_signed] = ACTIONS(3120), - [anon_sym_unsigned] = ACTIONS(3120), - [anon_sym_long] = ACTIONS(3120), - [anon_sym_short] = ACTIONS(3120), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_static] = ACTIONS(3120), - [anon_sym_register] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym___inline] = ACTIONS(3120), - [anon_sym___inline__] = ACTIONS(3120), - [anon_sym___forceinline] = ACTIONS(3120), - [anon_sym_thread_local] = ACTIONS(3120), - [anon_sym___thread] = ACTIONS(3120), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_constexpr] = ACTIONS(3120), - [anon_sym_volatile] = ACTIONS(3120), - [anon_sym_restrict] = ACTIONS(3120), - [anon_sym___restrict__] = ACTIONS(3120), - [anon_sym__Atomic] = ACTIONS(3120), - [anon_sym__Noreturn] = ACTIONS(3120), - [anon_sym_noreturn] = ACTIONS(3120), - [anon_sym_mutable] = ACTIONS(3120), - [anon_sym_constinit] = ACTIONS(3120), - [anon_sym_consteval] = ACTIONS(3120), - [sym_primitive_type] = ACTIONS(3120), - [anon_sym_enum] = ACTIONS(3120), - [anon_sym_class] = ACTIONS(3120), - [anon_sym_struct] = ACTIONS(3120), - [anon_sym_union] = ACTIONS(3120), - [anon_sym_if] = ACTIONS(3120), - [anon_sym_switch] = ACTIONS(3120), - [anon_sym_case] = ACTIONS(3120), - [anon_sym_default] = ACTIONS(3120), - [anon_sym_while] = ACTIONS(3120), - [anon_sym_do] = ACTIONS(3120), - [anon_sym_for] = ACTIONS(3120), - [anon_sym_return] = ACTIONS(3120), - [anon_sym_break] = ACTIONS(3120), - [anon_sym_continue] = ACTIONS(3120), - [anon_sym_goto] = ACTIONS(3120), - [anon_sym___try] = ACTIONS(3120), - [anon_sym___leave] = ACTIONS(3120), - [anon_sym_not] = ACTIONS(3120), - [anon_sym_compl] = ACTIONS(3120), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_sizeof] = ACTIONS(3120), - [anon_sym___alignof__] = ACTIONS(3120), - [anon_sym___alignof] = ACTIONS(3120), - [anon_sym__alignof] = ACTIONS(3120), - [anon_sym_alignof] = ACTIONS(3120), - [anon_sym__Alignof] = ACTIONS(3120), - [anon_sym_offsetof] = ACTIONS(3120), - [anon_sym__Generic] = ACTIONS(3120), - [anon_sym_asm] = ACTIONS(3120), - [anon_sym___asm__] = ACTIONS(3120), - [sym_number_literal] = ACTIONS(3122), - [anon_sym_L_SQUOTE] = ACTIONS(3122), - [anon_sym_u_SQUOTE] = ACTIONS(3122), - [anon_sym_U_SQUOTE] = ACTIONS(3122), - [anon_sym_u8_SQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [anon_sym_L_DQUOTE] = ACTIONS(3122), - [anon_sym_u_DQUOTE] = ACTIONS(3122), - [anon_sym_U_DQUOTE] = ACTIONS(3122), - [anon_sym_u8_DQUOTE] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [sym_true] = ACTIONS(3120), - [sym_false] = ACTIONS(3120), - [anon_sym_NULL] = ACTIONS(3120), - [anon_sym_nullptr] = ACTIONS(3120), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3120), - [anon_sym_decltype] = ACTIONS(3120), - [anon_sym_virtual] = ACTIONS(3120), - [anon_sym_alignas] = ACTIONS(3120), - [anon_sym_explicit] = ACTIONS(3120), - [anon_sym_typename] = ACTIONS(3120), - [anon_sym_template] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_try] = ACTIONS(3120), - [anon_sym_delete] = ACTIONS(3120), - [anon_sym_throw] = ACTIONS(3120), - [anon_sym_namespace] = ACTIONS(3120), - [anon_sym_using] = ACTIONS(3120), - [anon_sym_static_assert] = ACTIONS(3120), - [anon_sym_concept] = ACTIONS(3120), - [anon_sym_co_return] = ACTIONS(3120), - [anon_sym_co_yield] = ACTIONS(3120), - [anon_sym_R_DQUOTE] = ACTIONS(3122), - [anon_sym_LR_DQUOTE] = ACTIONS(3122), - [anon_sym_uR_DQUOTE] = ACTIONS(3122), - [anon_sym_UR_DQUOTE] = ACTIONS(3122), - [anon_sym_u8R_DQUOTE] = ACTIONS(3122), - [anon_sym_co_await] = ACTIONS(3120), - [anon_sym_new] = ACTIONS(3120), - [anon_sym_requires] = ACTIONS(3120), - [sym_this] = ACTIONS(3120), - }, - [949] = { - [sym_identifier] = ACTIONS(3156), - [aux_sym_preproc_include_token1] = ACTIONS(3156), - [aux_sym_preproc_def_token1] = ACTIONS(3156), - [aux_sym_preproc_if_token1] = ACTIONS(3156), - [aux_sym_preproc_if_token2] = ACTIONS(3156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3156), - [sym_preproc_directive] = ACTIONS(3156), - [anon_sym_LPAREN2] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym___extension__] = ACTIONS(3156), - [anon_sym_typedef] = ACTIONS(3156), - [anon_sym_extern] = ACTIONS(3156), - [anon_sym___attribute__] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3158), - [anon_sym___declspec] = ACTIONS(3156), - [anon_sym___based] = ACTIONS(3156), - [anon_sym___cdecl] = ACTIONS(3156), - [anon_sym___clrcall] = ACTIONS(3156), - [anon_sym___stdcall] = ACTIONS(3156), - [anon_sym___fastcall] = ACTIONS(3156), - [anon_sym___thiscall] = ACTIONS(3156), - [anon_sym___vectorcall] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_signed] = ACTIONS(3156), - [anon_sym_unsigned] = ACTIONS(3156), - [anon_sym_long] = ACTIONS(3156), - [anon_sym_short] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_register] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym___inline] = ACTIONS(3156), - [anon_sym___inline__] = ACTIONS(3156), - [anon_sym___forceinline] = ACTIONS(3156), - [anon_sym_thread_local] = ACTIONS(3156), - [anon_sym___thread] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_constexpr] = ACTIONS(3156), - [anon_sym_volatile] = ACTIONS(3156), - [anon_sym_restrict] = ACTIONS(3156), - [anon_sym___restrict__] = ACTIONS(3156), - [anon_sym__Atomic] = ACTIONS(3156), - [anon_sym__Noreturn] = ACTIONS(3156), - [anon_sym_noreturn] = ACTIONS(3156), - [anon_sym_mutable] = ACTIONS(3156), - [anon_sym_constinit] = ACTIONS(3156), - [anon_sym_consteval] = ACTIONS(3156), - [sym_primitive_type] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_struct] = ACTIONS(3156), - [anon_sym_union] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_case] = ACTIONS(3156), - [anon_sym_default] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_goto] = ACTIONS(3156), - [anon_sym___try] = ACTIONS(3156), - [anon_sym___leave] = ACTIONS(3156), - [anon_sym_not] = ACTIONS(3156), - [anon_sym_compl] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_sizeof] = ACTIONS(3156), - [anon_sym___alignof__] = ACTIONS(3156), - [anon_sym___alignof] = ACTIONS(3156), - [anon_sym__alignof] = ACTIONS(3156), - [anon_sym_alignof] = ACTIONS(3156), - [anon_sym__Alignof] = ACTIONS(3156), - [anon_sym_offsetof] = ACTIONS(3156), - [anon_sym__Generic] = ACTIONS(3156), - [anon_sym_asm] = ACTIONS(3156), - [anon_sym___asm__] = ACTIONS(3156), - [sym_number_literal] = ACTIONS(3158), - [anon_sym_L_SQUOTE] = ACTIONS(3158), - [anon_sym_u_SQUOTE] = ACTIONS(3158), - [anon_sym_U_SQUOTE] = ACTIONS(3158), - [anon_sym_u8_SQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [anon_sym_NULL] = ACTIONS(3156), - [anon_sym_nullptr] = ACTIONS(3156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3156), - [anon_sym_decltype] = ACTIONS(3156), - [anon_sym_virtual] = ACTIONS(3156), - [anon_sym_alignas] = ACTIONS(3156), - [anon_sym_explicit] = ACTIONS(3156), - [anon_sym_typename] = ACTIONS(3156), - [anon_sym_template] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_static_assert] = ACTIONS(3156), - [anon_sym_concept] = ACTIONS(3156), - [anon_sym_co_return] = ACTIONS(3156), - [anon_sym_co_yield] = ACTIONS(3156), - [anon_sym_R_DQUOTE] = ACTIONS(3158), - [anon_sym_LR_DQUOTE] = ACTIONS(3158), - [anon_sym_uR_DQUOTE] = ACTIONS(3158), - [anon_sym_UR_DQUOTE] = ACTIONS(3158), - [anon_sym_u8R_DQUOTE] = ACTIONS(3158), - [anon_sym_co_await] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_requires] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - }, - [950] = { - [sym_identifier] = ACTIONS(3168), - [aux_sym_preproc_include_token1] = ACTIONS(3168), - [aux_sym_preproc_def_token1] = ACTIONS(3168), - [aux_sym_preproc_if_token1] = ACTIONS(3168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), - [sym_preproc_directive] = ACTIONS(3168), - [anon_sym_LPAREN2] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3170), - [anon_sym_AMP_AMP] = ACTIONS(3170), - [anon_sym_AMP] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym___extension__] = ACTIONS(3168), - [anon_sym_typedef] = ACTIONS(3168), - [anon_sym_extern] = ACTIONS(3168), - [anon_sym___attribute__] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), - [anon_sym___declspec] = ACTIONS(3168), - [anon_sym___based] = ACTIONS(3168), - [anon_sym___cdecl] = ACTIONS(3168), - [anon_sym___clrcall] = ACTIONS(3168), - [anon_sym___stdcall] = ACTIONS(3168), - [anon_sym___fastcall] = ACTIONS(3168), - [anon_sym___thiscall] = ACTIONS(3168), - [anon_sym___vectorcall] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_signed] = ACTIONS(3168), - [anon_sym_unsigned] = ACTIONS(3168), - [anon_sym_long] = ACTIONS(3168), - [anon_sym_short] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_register] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym___inline] = ACTIONS(3168), - [anon_sym___inline__] = ACTIONS(3168), - [anon_sym___forceinline] = ACTIONS(3168), - [anon_sym_thread_local] = ACTIONS(3168), - [anon_sym___thread] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_constexpr] = ACTIONS(3168), - [anon_sym_volatile] = ACTIONS(3168), - [anon_sym_restrict] = ACTIONS(3168), - [anon_sym___restrict__] = ACTIONS(3168), - [anon_sym__Atomic] = ACTIONS(3168), - [anon_sym__Noreturn] = ACTIONS(3168), - [anon_sym_noreturn] = ACTIONS(3168), - [anon_sym_mutable] = ACTIONS(3168), - [anon_sym_constinit] = ACTIONS(3168), - [anon_sym_consteval] = ACTIONS(3168), - [sym_primitive_type] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_struct] = ACTIONS(3168), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_case] = ACTIONS(3168), - [anon_sym_default] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_goto] = ACTIONS(3168), - [anon_sym___try] = ACTIONS(3168), - [anon_sym___leave] = ACTIONS(3168), - [anon_sym_not] = ACTIONS(3168), - [anon_sym_compl] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_sizeof] = ACTIONS(3168), - [anon_sym___alignof__] = ACTIONS(3168), - [anon_sym___alignof] = ACTIONS(3168), - [anon_sym__alignof] = ACTIONS(3168), - [anon_sym_alignof] = ACTIONS(3168), - [anon_sym__Alignof] = ACTIONS(3168), - [anon_sym_offsetof] = ACTIONS(3168), - [anon_sym__Generic] = ACTIONS(3168), - [anon_sym_asm] = ACTIONS(3168), - [anon_sym___asm__] = ACTIONS(3168), - [sym_number_literal] = ACTIONS(3170), - [anon_sym_L_SQUOTE] = ACTIONS(3170), - [anon_sym_u_SQUOTE] = ACTIONS(3170), - [anon_sym_U_SQUOTE] = ACTIONS(3170), - [anon_sym_u8_SQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [anon_sym_L_DQUOTE] = ACTIONS(3170), - [anon_sym_u_DQUOTE] = ACTIONS(3170), - [anon_sym_U_DQUOTE] = ACTIONS(3170), - [anon_sym_u8_DQUOTE] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [anon_sym_NULL] = ACTIONS(3168), - [anon_sym_nullptr] = ACTIONS(3168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3168), - [anon_sym_decltype] = ACTIONS(3168), - [anon_sym_virtual] = ACTIONS(3168), - [anon_sym_alignas] = ACTIONS(3168), - [anon_sym_explicit] = ACTIONS(3168), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3168), - [anon_sym_static_assert] = ACTIONS(3168), - [anon_sym_concept] = ACTIONS(3168), - [anon_sym_co_return] = ACTIONS(3168), - [anon_sym_co_yield] = ACTIONS(3168), - [anon_sym_R_DQUOTE] = ACTIONS(3170), - [anon_sym_LR_DQUOTE] = ACTIONS(3170), - [anon_sym_uR_DQUOTE] = ACTIONS(3170), - [anon_sym_UR_DQUOTE] = ACTIONS(3170), - [anon_sym_u8R_DQUOTE] = ACTIONS(3170), - [anon_sym_co_await] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_requires] = ACTIONS(3168), - [sym_this] = ACTIONS(3168), - }, - [951] = { - [sym_identifier] = ACTIONS(3128), - [aux_sym_preproc_include_token1] = ACTIONS(3128), - [aux_sym_preproc_def_token1] = ACTIONS(3128), - [aux_sym_preproc_if_token1] = ACTIONS(3128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3128), - [sym_preproc_directive] = ACTIONS(3128), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3130), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym_typedef] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3130), - [anon_sym___declspec] = ACTIONS(3128), - [anon_sym___based] = ACTIONS(3128), - [anon_sym___cdecl] = ACTIONS(3128), - [anon_sym___clrcall] = ACTIONS(3128), - [anon_sym___stdcall] = ACTIONS(3128), - [anon_sym___fastcall] = ACTIONS(3128), - [anon_sym___thiscall] = ACTIONS(3128), - [anon_sym___vectorcall] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_RBRACE] = ACTIONS(3130), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_register] = ACTIONS(3128), - [anon_sym_inline] = ACTIONS(3128), - [anon_sym___inline] = ACTIONS(3128), - [anon_sym___inline__] = ACTIONS(3128), - [anon_sym___forceinline] = ACTIONS(3128), - [anon_sym_thread_local] = ACTIONS(3128), - [anon_sym___thread] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3128), - [anon_sym_volatile] = ACTIONS(3128), - [anon_sym_restrict] = ACTIONS(3128), - [anon_sym___restrict__] = ACTIONS(3128), - [anon_sym__Atomic] = ACTIONS(3128), - [anon_sym__Noreturn] = ACTIONS(3128), - [anon_sym_noreturn] = ACTIONS(3128), - [anon_sym_mutable] = ACTIONS(3128), - [anon_sym_constinit] = ACTIONS(3128), - [anon_sym_consteval] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_goto] = ACTIONS(3128), - [anon_sym___try] = ACTIONS(3128), - [anon_sym___leave] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(3128), - [anon_sym_compl] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3128), - [anon_sym___alignof__] = ACTIONS(3128), - [anon_sym___alignof] = ACTIONS(3128), - [anon_sym__alignof] = ACTIONS(3128), - [anon_sym_alignof] = ACTIONS(3128), - [anon_sym__Alignof] = ACTIONS(3128), - [anon_sym_offsetof] = ACTIONS(3128), - [anon_sym__Generic] = ACTIONS(3128), - [anon_sym_asm] = ACTIONS(3128), - [anon_sym___asm__] = ACTIONS(3128), - [sym_number_literal] = ACTIONS(3130), - [anon_sym_L_SQUOTE] = ACTIONS(3130), - [anon_sym_u_SQUOTE] = ACTIONS(3130), - [anon_sym_U_SQUOTE] = ACTIONS(3130), - [anon_sym_u8_SQUOTE] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3130), - [anon_sym_L_DQUOTE] = ACTIONS(3130), - [anon_sym_u_DQUOTE] = ACTIONS(3130), - [anon_sym_U_DQUOTE] = ACTIONS(3130), - [anon_sym_u8_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [anon_sym_NULL] = ACTIONS(3128), - [anon_sym_nullptr] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3128), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_alignas] = ACTIONS(3128), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_typename] = ACTIONS(3128), - [anon_sym_template] = ACTIONS(3128), - [anon_sym_operator] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_static_assert] = ACTIONS(3128), - [anon_sym_concept] = ACTIONS(3128), - [anon_sym_co_return] = ACTIONS(3128), - [anon_sym_co_yield] = ACTIONS(3128), - [anon_sym_R_DQUOTE] = ACTIONS(3130), - [anon_sym_LR_DQUOTE] = ACTIONS(3130), - [anon_sym_uR_DQUOTE] = ACTIONS(3130), - [anon_sym_UR_DQUOTE] = ACTIONS(3130), - [anon_sym_u8R_DQUOTE] = ACTIONS(3130), - [anon_sym_co_await] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - }, - [952] = { - [sym_identifier] = ACTIONS(3292), - [aux_sym_preproc_include_token1] = ACTIONS(3292), - [aux_sym_preproc_def_token1] = ACTIONS(3292), - [aux_sym_preproc_if_token1] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3292), - [sym_preproc_directive] = ACTIONS(3292), - [anon_sym_LPAREN2] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_AMP_AMP] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym___extension__] = ACTIONS(3292), - [anon_sym_typedef] = ACTIONS(3292), - [anon_sym_extern] = ACTIONS(3292), - [anon_sym___attribute__] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3294), - [anon_sym___declspec] = ACTIONS(3292), - [anon_sym___based] = ACTIONS(3292), - [anon_sym___cdecl] = ACTIONS(3292), - [anon_sym___clrcall] = ACTIONS(3292), - [anon_sym___stdcall] = ACTIONS(3292), - [anon_sym___fastcall] = ACTIONS(3292), - [anon_sym___thiscall] = ACTIONS(3292), - [anon_sym___vectorcall] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_signed] = ACTIONS(3292), - [anon_sym_unsigned] = ACTIONS(3292), - [anon_sym_long] = ACTIONS(3292), - [anon_sym_short] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_register] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym___inline] = ACTIONS(3292), - [anon_sym___inline__] = ACTIONS(3292), - [anon_sym___forceinline] = ACTIONS(3292), - [anon_sym_thread_local] = ACTIONS(3292), - [anon_sym___thread] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_constexpr] = ACTIONS(3292), - [anon_sym_volatile] = ACTIONS(3292), - [anon_sym_restrict] = ACTIONS(3292), - [anon_sym___restrict__] = ACTIONS(3292), - [anon_sym__Atomic] = ACTIONS(3292), - [anon_sym__Noreturn] = ACTIONS(3292), - [anon_sym_noreturn] = ACTIONS(3292), - [anon_sym_mutable] = ACTIONS(3292), - [anon_sym_constinit] = ACTIONS(3292), - [anon_sym_consteval] = ACTIONS(3292), - [sym_primitive_type] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3292), - [anon_sym_union] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_case] = ACTIONS(3292), - [anon_sym_default] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_goto] = ACTIONS(3292), - [anon_sym___try] = ACTIONS(3292), - [anon_sym___leave] = ACTIONS(3292), - [anon_sym_not] = ACTIONS(3292), - [anon_sym_compl] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_sizeof] = ACTIONS(3292), - [anon_sym___alignof__] = ACTIONS(3292), - [anon_sym___alignof] = ACTIONS(3292), - [anon_sym__alignof] = ACTIONS(3292), - [anon_sym_alignof] = ACTIONS(3292), - [anon_sym__Alignof] = ACTIONS(3292), - [anon_sym_offsetof] = ACTIONS(3292), - [anon_sym__Generic] = ACTIONS(3292), - [anon_sym_asm] = ACTIONS(3292), - [anon_sym___asm__] = ACTIONS(3292), - [sym_number_literal] = ACTIONS(3294), - [anon_sym_L_SQUOTE] = ACTIONS(3294), - [anon_sym_u_SQUOTE] = ACTIONS(3294), - [anon_sym_U_SQUOTE] = ACTIONS(3294), - [anon_sym_u8_SQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_L_DQUOTE] = ACTIONS(3294), - [anon_sym_u_DQUOTE] = ACTIONS(3294), - [anon_sym_U_DQUOTE] = ACTIONS(3294), - [anon_sym_u8_DQUOTE] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [anon_sym_NULL] = ACTIONS(3292), - [anon_sym_nullptr] = ACTIONS(3292), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3292), - [anon_sym_decltype] = ACTIONS(3292), - [anon_sym_virtual] = ACTIONS(3292), - [anon_sym_alignas] = ACTIONS(3292), - [anon_sym_explicit] = ACTIONS(3292), - [anon_sym_typename] = ACTIONS(3292), - [anon_sym_template] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_static_assert] = ACTIONS(3292), - [anon_sym_concept] = ACTIONS(3292), - [anon_sym_co_return] = ACTIONS(3292), - [anon_sym_co_yield] = ACTIONS(3292), - [anon_sym_R_DQUOTE] = ACTIONS(3294), - [anon_sym_LR_DQUOTE] = ACTIONS(3294), - [anon_sym_uR_DQUOTE] = ACTIONS(3294), - [anon_sym_UR_DQUOTE] = ACTIONS(3294), - [anon_sym_u8R_DQUOTE] = ACTIONS(3294), - [anon_sym_co_await] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_requires] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - }, - [953] = { - [sym_identifier] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym___extension__] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym___attribute__] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym___declspec] = ACTIONS(3152), - [anon_sym___based] = ACTIONS(3152), - [anon_sym___cdecl] = ACTIONS(3152), - [anon_sym___clrcall] = ACTIONS(3152), - [anon_sym___stdcall] = ACTIONS(3152), - [anon_sym___fastcall] = ACTIONS(3152), - [anon_sym___thiscall] = ACTIONS(3152), - [anon_sym___vectorcall] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym___inline] = ACTIONS(3152), - [anon_sym___inline__] = ACTIONS(3152), - [anon_sym___forceinline] = ACTIONS(3152), - [anon_sym_thread_local] = ACTIONS(3152), - [anon_sym___thread] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_restrict] = ACTIONS(3152), - [anon_sym___restrict__] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [anon_sym__Noreturn] = ACTIONS(3152), - [anon_sym_noreturn] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [anon_sym_constinit] = ACTIONS(3152), - [anon_sym_consteval] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(3152), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [anon_sym___try] = ACTIONS(3152), - [anon_sym___leave] = ACTIONS(3152), - [anon_sym_not] = ACTIONS(3152), - [anon_sym_compl] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym___alignof__] = ACTIONS(3152), - [anon_sym___alignof] = ACTIONS(3152), - [anon_sym__alignof] = ACTIONS(3152), - [anon_sym_alignof] = ACTIONS(3152), - [anon_sym__Alignof] = ACTIONS(3152), - [anon_sym_offsetof] = ACTIONS(3152), - [anon_sym__Generic] = ACTIONS(3152), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3154), - [anon_sym_u_SQUOTE] = ACTIONS(3154), - [anon_sym_U_SQUOTE] = ACTIONS(3154), - [anon_sym_u8_SQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_L_DQUOTE] = ACTIONS(3154), - [anon_sym_u_DQUOTE] = ACTIONS(3154), - [anon_sym_U_DQUOTE] = ACTIONS(3154), - [anon_sym_u8_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [anon_sym_NULL] = ACTIONS(3152), - [anon_sym_nullptr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3152), - [anon_sym_decltype] = ACTIONS(3152), - [anon_sym_virtual] = ACTIONS(3152), - [anon_sym_alignas] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_static_assert] = ACTIONS(3152), - [anon_sym_concept] = ACTIONS(3152), - [anon_sym_co_return] = ACTIONS(3152), - [anon_sym_co_yield] = ACTIONS(3152), - [anon_sym_R_DQUOTE] = ACTIONS(3154), - [anon_sym_LR_DQUOTE] = ACTIONS(3154), - [anon_sym_uR_DQUOTE] = ACTIONS(3154), - [anon_sym_UR_DQUOTE] = ACTIONS(3154), - [anon_sym_u8R_DQUOTE] = ACTIONS(3154), - [anon_sym_co_await] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_requires] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), - }, - [954] = { - [sym_identifier] = ACTIONS(2996), - [aux_sym_preproc_include_token1] = ACTIONS(2996), - [aux_sym_preproc_def_token1] = ACTIONS(2996), - [aux_sym_preproc_if_token1] = ACTIONS(2996), - [aux_sym_preproc_if_token2] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2996), - [sym_preproc_directive] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym_SEMI] = ACTIONS(2998), - [anon_sym___extension__] = ACTIONS(2996), - [anon_sym_typedef] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym___attribute__] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), - [anon_sym___declspec] = ACTIONS(2996), - [anon_sym___based] = ACTIONS(2996), - [anon_sym___cdecl] = ACTIONS(2996), - [anon_sym___clrcall] = ACTIONS(2996), - [anon_sym___stdcall] = ACTIONS(2996), - [anon_sym___fastcall] = ACTIONS(2996), - [anon_sym___thiscall] = ACTIONS(2996), - [anon_sym___vectorcall] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_signed] = ACTIONS(2996), - [anon_sym_unsigned] = ACTIONS(2996), - [anon_sym_long] = ACTIONS(2996), - [anon_sym_short] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_inline] = ACTIONS(2996), - [anon_sym___inline] = ACTIONS(2996), - [anon_sym___inline__] = ACTIONS(2996), - [anon_sym___forceinline] = ACTIONS(2996), - [anon_sym_thread_local] = ACTIONS(2996), - [anon_sym___thread] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_constexpr] = ACTIONS(2996), - [anon_sym_volatile] = ACTIONS(2996), - [anon_sym_restrict] = ACTIONS(2996), - [anon_sym___restrict__] = ACTIONS(2996), - [anon_sym__Atomic] = ACTIONS(2996), - [anon_sym__Noreturn] = ACTIONS(2996), - [anon_sym_noreturn] = ACTIONS(2996), - [anon_sym_mutable] = ACTIONS(2996), - [anon_sym_constinit] = ACTIONS(2996), - [anon_sym_consteval] = ACTIONS(2996), - [sym_primitive_type] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), - [anon_sym_class] = ACTIONS(2996), - [anon_sym_struct] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_goto] = ACTIONS(2996), - [anon_sym___try] = ACTIONS(2996), - [anon_sym___leave] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_compl] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2998), - [anon_sym_PLUS_PLUS] = ACTIONS(2998), - [anon_sym_sizeof] = ACTIONS(2996), - [anon_sym___alignof__] = ACTIONS(2996), - [anon_sym___alignof] = ACTIONS(2996), - [anon_sym__alignof] = ACTIONS(2996), - [anon_sym_alignof] = ACTIONS(2996), - [anon_sym__Alignof] = ACTIONS(2996), - [anon_sym_offsetof] = ACTIONS(2996), - [anon_sym__Generic] = ACTIONS(2996), - [anon_sym_asm] = ACTIONS(2996), - [anon_sym___asm__] = ACTIONS(2996), - [sym_number_literal] = ACTIONS(2998), - [anon_sym_L_SQUOTE] = ACTIONS(2998), - [anon_sym_u_SQUOTE] = ACTIONS(2998), - [anon_sym_U_SQUOTE] = ACTIONS(2998), - [anon_sym_u8_SQUOTE] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(2998), - [anon_sym_L_DQUOTE] = ACTIONS(2998), - [anon_sym_u_DQUOTE] = ACTIONS(2998), - [anon_sym_U_DQUOTE] = ACTIONS(2998), - [anon_sym_u8_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [sym_true] = ACTIONS(2996), - [sym_false] = ACTIONS(2996), - [anon_sym_NULL] = ACTIONS(2996), - [anon_sym_nullptr] = ACTIONS(2996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2996), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2996), - [anon_sym_alignas] = ACTIONS(2996), - [anon_sym_explicit] = ACTIONS(2996), - [anon_sym_typename] = ACTIONS(2996), - [anon_sym_template] = ACTIONS(2996), - [anon_sym_operator] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_throw] = ACTIONS(2996), - [anon_sym_namespace] = ACTIONS(2996), - [anon_sym_using] = ACTIONS(2996), - [anon_sym_static_assert] = ACTIONS(2996), - [anon_sym_concept] = ACTIONS(2996), - [anon_sym_co_return] = ACTIONS(2996), - [anon_sym_co_yield] = 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(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_requires] = ACTIONS(2996), - [sym_this] = ACTIONS(2996), - }, - [955] = { - [sym_preproc_def] = STATE(955), - [sym_preproc_function_def] = STATE(955), - [sym_preproc_call] = STATE(955), - [sym_preproc_if_in_field_declaration_list] = STATE(955), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), - [sym_type_definition] = STATE(955), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6188), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(955), - [sym_field_declaration] = STATE(955), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(955), - [sym_operator_cast] = STATE(7176), - [sym_inline_method_definition] = STATE(955), - [sym__constructor_specifiers] = STATE(2018), - [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(8857), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(955), - [sym_alias_declaration] = STATE(955), - [sym_static_assert_declaration] = STATE(955), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3490), - [aux_sym_preproc_def_token1] = ACTIONS(3610), - [aux_sym_preproc_if_token1] = ACTIONS(3613), - [aux_sym_preproc_if_token2] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3616), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3616), - [aux_sym_preproc_else_token1] = ACTIONS(3499), - [aux_sym_preproc_elif_token1] = ACTIONS(3499), - [sym_preproc_directive] = ACTIONS(3619), - [anon_sym_LPAREN2] = ACTIONS(3507), - [anon_sym_TILDE] = ACTIONS(3510), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3625), - [anon_sym_extern] = ACTIONS(3528), - [anon_sym___attribute__] = ACTIONS(3531), - [anon_sym_COLON_COLON] = ACTIONS(3534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3537), - [anon_sym___declspec] = ACTIONS(3540), - [anon_sym___based] = ACTIONS(3543), - [anon_sym_signed] = ACTIONS(3546), - [anon_sym_unsigned] = ACTIONS(3546), - [anon_sym_long] = ACTIONS(3546), - [anon_sym_short] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3549), - [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(3552), - [anon_sym_constexpr] = ACTIONS(3552), - [anon_sym_volatile] = ACTIONS(3552), - [anon_sym_restrict] = ACTIONS(3552), - [anon_sym___restrict__] = ACTIONS(3552), - [anon_sym__Atomic] = ACTIONS(3552), - [anon_sym__Noreturn] = ACTIONS(3552), - [anon_sym_noreturn] = ACTIONS(3552), - [anon_sym_mutable] = ACTIONS(3552), - [anon_sym_constinit] = ACTIONS(3552), - [anon_sym_consteval] = ACTIONS(3552), - [sym_primitive_type] = ACTIONS(3555), - [anon_sym_enum] = ACTIONS(3558), - [anon_sym_class] = ACTIONS(3561), - [anon_sym_struct] = ACTIONS(3564), - [anon_sym_union] = ACTIONS(3567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3570), - [anon_sym_decltype] = ACTIONS(3573), - [anon_sym_virtual] = ACTIONS(3576), - [anon_sym_alignas] = ACTIONS(3579), - [anon_sym_explicit] = ACTIONS(3582), - [anon_sym_typename] = ACTIONS(3585), - [anon_sym_template] = ACTIONS(3628), - [anon_sym_operator] = ACTIONS(3591), - [anon_sym_friend] = ACTIONS(3631), - [anon_sym_public] = ACTIONS(3597), - [anon_sym_private] = ACTIONS(3597), - [anon_sym_protected] = ACTIONS(3597), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_static_assert] = ACTIONS(3637), + [904] = { + [sym_identifier] = ACTIONS(3278), + [aux_sym_preproc_include_token1] = ACTIONS(3278), + [aux_sym_preproc_def_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_LPAREN2] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym___extension__] = ACTIONS(3278), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym___attribute__] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), + [anon_sym___declspec] = ACTIONS(3278), + [anon_sym___based] = ACTIONS(3278), + [anon_sym___cdecl] = ACTIONS(3278), + [anon_sym___clrcall] = ACTIONS(3278), + [anon_sym___stdcall] = ACTIONS(3278), + [anon_sym___fastcall] = ACTIONS(3278), + [anon_sym___thiscall] = ACTIONS(3278), + [anon_sym___vectorcall] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_signed] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym___inline] = ACTIONS(3278), + [anon_sym___inline__] = ACTIONS(3278), + [anon_sym___forceinline] = ACTIONS(3278), + [anon_sym_thread_local] = ACTIONS(3278), + [anon_sym___thread] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_constexpr] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym___restrict__] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym__Noreturn] = ACTIONS(3278), + [anon_sym_noreturn] = ACTIONS(3278), + [anon_sym_mutable] = ACTIONS(3278), + [anon_sym_constinit] = ACTIONS(3278), + [anon_sym_consteval] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym___try] = ACTIONS(3278), + [anon_sym___leave] = ACTIONS(3278), + [anon_sym_not] = ACTIONS(3278), + [anon_sym_compl] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [anon_sym___alignof__] = ACTIONS(3278), + [anon_sym___alignof] = ACTIONS(3278), + [anon_sym__alignof] = ACTIONS(3278), + [anon_sym_alignof] = ACTIONS(3278), + [anon_sym__Alignof] = ACTIONS(3278), + [anon_sym_offsetof] = ACTIONS(3278), + [anon_sym__Generic] = ACTIONS(3278), + [anon_sym_asm] = ACTIONS(3278), + [anon_sym___asm__] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [anon_sym_L_SQUOTE] = ACTIONS(3280), + [anon_sym_u_SQUOTE] = ACTIONS(3280), + [anon_sym_U_SQUOTE] = ACTIONS(3280), + [anon_sym_u8_SQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_L_DQUOTE] = ACTIONS(3280), + [anon_sym_u_DQUOTE] = ACTIONS(3280), + [anon_sym_U_DQUOTE] = ACTIONS(3280), + [anon_sym_u8_DQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3278), + [anon_sym_decltype] = ACTIONS(3278), + [anon_sym_virtual] = ACTIONS(3278), + [anon_sym_alignas] = ACTIONS(3278), + [anon_sym_explicit] = ACTIONS(3278), + [anon_sym_typename] = ACTIONS(3278), + [anon_sym_template] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_static_assert] = ACTIONS(3278), + [anon_sym_concept] = ACTIONS(3278), + [anon_sym_co_return] = ACTIONS(3278), + [anon_sym_co_yield] = ACTIONS(3278), + [anon_sym_R_DQUOTE] = ACTIONS(3280), + [anon_sym_LR_DQUOTE] = ACTIONS(3280), + [anon_sym_uR_DQUOTE] = ACTIONS(3280), + [anon_sym_UR_DQUOTE] = ACTIONS(3280), + [anon_sym_u8R_DQUOTE] = ACTIONS(3280), + [anon_sym_co_await] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), }, - [956] = { - [sym__expression] = STATE(4177), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_initializer_list] = STATE(4290), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [aux_sym_preproc_if_token2] = ACTIONS(2098), - [aux_sym_preproc_else_token1] = ACTIONS(2098), - [aux_sym_preproc_elif_token1] = ACTIONS(2096), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2098), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2098), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2098), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(3650), - [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(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(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [905] = { + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_include_token1] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym___cdecl] = ACTIONS(3302), + [anon_sym___clrcall] = ACTIONS(3302), + [anon_sym___stdcall] = ACTIONS(3302), + [anon_sym___fastcall] = ACTIONS(3302), + [anon_sym___thiscall] = ACTIONS(3302), + [anon_sym___vectorcall] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_goto] = ACTIONS(3302), + [anon_sym___try] = ACTIONS(3302), + [anon_sym___leave] = ACTIONS(3302), + [anon_sym_not] = ACTIONS(3302), + [anon_sym_compl] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_sizeof] = ACTIONS(3302), + [anon_sym___alignof__] = ACTIONS(3302), + [anon_sym___alignof] = ACTIONS(3302), + [anon_sym__alignof] = ACTIONS(3302), + [anon_sym_alignof] = ACTIONS(3302), + [anon_sym__Alignof] = ACTIONS(3302), + [anon_sym_offsetof] = ACTIONS(3302), + [anon_sym__Generic] = ACTIONS(3302), + [anon_sym_asm] = ACTIONS(3302), + [anon_sym___asm__] = ACTIONS(3302), + [sym_number_literal] = ACTIONS(3304), + [anon_sym_L_SQUOTE] = ACTIONS(3304), + [anon_sym_u_SQUOTE] = ACTIONS(3304), + [anon_sym_U_SQUOTE] = ACTIONS(3304), + [anon_sym_u8_SQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_L_DQUOTE] = ACTIONS(3304), + [anon_sym_u_DQUOTE] = ACTIONS(3304), + [anon_sym_U_DQUOTE] = ACTIONS(3304), + [anon_sym_u8_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [anon_sym_NULL] = ACTIONS(3302), + [anon_sym_nullptr] = ACTIONS(3302), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [anon_sym_concept] = ACTIONS(3302), + [anon_sym_co_return] = ACTIONS(3302), + [anon_sym_co_yield] = ACTIONS(3302), + [anon_sym_R_DQUOTE] = ACTIONS(3304), + [anon_sym_LR_DQUOTE] = ACTIONS(3304), + [anon_sym_uR_DQUOTE] = ACTIONS(3304), + [anon_sym_UR_DQUOTE] = ACTIONS(3304), + [anon_sym_u8R_DQUOTE] = ACTIONS(3304), + [anon_sym_co_await] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_requires] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), }, - [957] = { - [ts_builtin_sym_end] = ACTIONS(3268), - [sym_identifier] = ACTIONS(3266), - [aux_sym_preproc_include_token1] = ACTIONS(3266), - [aux_sym_preproc_def_token1] = ACTIONS(3266), - [aux_sym_preproc_if_token1] = ACTIONS(3266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), - [sym_preproc_directive] = ACTIONS(3266), - [anon_sym_LPAREN2] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3268), - [anon_sym_AMP_AMP] = ACTIONS(3268), - [anon_sym_AMP] = ACTIONS(3266), - [anon_sym___extension__] = ACTIONS(3266), - [anon_sym_typedef] = ACTIONS(3266), - [anon_sym_extern] = ACTIONS(3266), - [anon_sym___attribute__] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(3268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), - [anon_sym___declspec] = ACTIONS(3266), - [anon_sym___based] = ACTIONS(3266), - [anon_sym___cdecl] = ACTIONS(3266), - [anon_sym___clrcall] = ACTIONS(3266), - [anon_sym___stdcall] = ACTIONS(3266), - [anon_sym___fastcall] = ACTIONS(3266), - [anon_sym___thiscall] = ACTIONS(3266), - [anon_sym___vectorcall] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3268), - [anon_sym_signed] = ACTIONS(3266), - [anon_sym_unsigned] = ACTIONS(3266), - [anon_sym_long] = ACTIONS(3266), - [anon_sym_short] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_register] = ACTIONS(3266), - [anon_sym_inline] = ACTIONS(3266), - [anon_sym___inline] = ACTIONS(3266), - [anon_sym___inline__] = ACTIONS(3266), - [anon_sym___forceinline] = ACTIONS(3266), - [anon_sym_thread_local] = ACTIONS(3266), - [anon_sym___thread] = ACTIONS(3266), - [anon_sym_const] = ACTIONS(3266), - [anon_sym_constexpr] = ACTIONS(3266), - [anon_sym_volatile] = ACTIONS(3266), - [anon_sym_restrict] = ACTIONS(3266), - [anon_sym___restrict__] = ACTIONS(3266), - [anon_sym__Atomic] = ACTIONS(3266), - [anon_sym__Noreturn] = ACTIONS(3266), - [anon_sym_noreturn] = ACTIONS(3266), - [anon_sym_mutable] = ACTIONS(3266), - [anon_sym_constinit] = ACTIONS(3266), - [anon_sym_consteval] = ACTIONS(3266), - [sym_primitive_type] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_struct] = ACTIONS(3266), - [anon_sym_union] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_switch] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_default] = ACTIONS(3266), - [anon_sym_while] = ACTIONS(3266), - [anon_sym_do] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_goto] = ACTIONS(3266), - [anon_sym_not] = ACTIONS(3266), - [anon_sym_compl] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3268), - [anon_sym_sizeof] = ACTIONS(3266), - [anon_sym___alignof__] = ACTIONS(3266), - [anon_sym___alignof] = ACTIONS(3266), - [anon_sym__alignof] = ACTIONS(3266), - [anon_sym_alignof] = ACTIONS(3266), - [anon_sym__Alignof] = ACTIONS(3266), - [anon_sym_offsetof] = ACTIONS(3266), - [anon_sym__Generic] = ACTIONS(3266), - [anon_sym_asm] = ACTIONS(3266), - [anon_sym___asm__] = ACTIONS(3266), - [sym_number_literal] = ACTIONS(3268), - [anon_sym_L_SQUOTE] = ACTIONS(3268), - [anon_sym_u_SQUOTE] = ACTIONS(3268), - [anon_sym_U_SQUOTE] = ACTIONS(3268), - [anon_sym_u8_SQUOTE] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(3268), - [anon_sym_L_DQUOTE] = ACTIONS(3268), - [anon_sym_u_DQUOTE] = ACTIONS(3268), - [anon_sym_U_DQUOTE] = ACTIONS(3268), - [anon_sym_u8_DQUOTE] = ACTIONS(3268), - [anon_sym_DQUOTE] = ACTIONS(3268), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [anon_sym_NULL] = ACTIONS(3266), - [anon_sym_nullptr] = ACTIONS(3266), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3266), - [anon_sym_decltype] = ACTIONS(3266), - [anon_sym_virtual] = ACTIONS(3266), - [anon_sym_alignas] = ACTIONS(3266), - [anon_sym_explicit] = ACTIONS(3266), - [anon_sym_typename] = ACTIONS(3266), - [anon_sym_template] = ACTIONS(3266), - [anon_sym_operator] = ACTIONS(3266), - [anon_sym_try] = ACTIONS(3266), - [anon_sym_delete] = ACTIONS(3266), - [anon_sym_throw] = ACTIONS(3266), - [anon_sym_namespace] = ACTIONS(3266), - [anon_sym_using] = ACTIONS(3266), - [anon_sym_static_assert] = ACTIONS(3266), - [anon_sym_concept] = ACTIONS(3266), - [anon_sym_co_return] = ACTIONS(3266), - [anon_sym_co_yield] = ACTIONS(3266), - [anon_sym_R_DQUOTE] = ACTIONS(3268), - [anon_sym_LR_DQUOTE] = ACTIONS(3268), - [anon_sym_uR_DQUOTE] = ACTIONS(3268), - [anon_sym_UR_DQUOTE] = ACTIONS(3268), - [anon_sym_u8R_DQUOTE] = ACTIONS(3268), - [anon_sym_co_await] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3266), - [anon_sym_requires] = ACTIONS(3266), - [sym_this] = ACTIONS(3266), - }, - [958] = { - [ts_builtin_sym_end] = ACTIONS(3300), - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_include_token1] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym___cdecl] = ACTIONS(3298), - [anon_sym___clrcall] = ACTIONS(3298), - [anon_sym___stdcall] = ACTIONS(3298), - [anon_sym___fastcall] = ACTIONS(3298), - [anon_sym___thiscall] = ACTIONS(3298), - [anon_sym___vectorcall] = ACTIONS(3298), - [anon_sym_LBRACE] = ACTIONS(3300), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_if] = ACTIONS(3298), - [anon_sym_switch] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3298), - [anon_sym_default] = ACTIONS(3298), - [anon_sym_while] = ACTIONS(3298), - [anon_sym_do] = ACTIONS(3298), - [anon_sym_for] = ACTIONS(3298), - [anon_sym_return] = ACTIONS(3298), - [anon_sym_break] = ACTIONS(3298), - [anon_sym_continue] = ACTIONS(3298), - [anon_sym_goto] = ACTIONS(3298), - [anon_sym_not] = ACTIONS(3298), - [anon_sym_compl] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3300), - [anon_sym_sizeof] = ACTIONS(3298), - [anon_sym___alignof__] = ACTIONS(3298), - [anon_sym___alignof] = ACTIONS(3298), - [anon_sym__alignof] = ACTIONS(3298), - [anon_sym_alignof] = ACTIONS(3298), - [anon_sym__Alignof] = ACTIONS(3298), - [anon_sym_offsetof] = ACTIONS(3298), - [anon_sym__Generic] = ACTIONS(3298), - [anon_sym_asm] = ACTIONS(3298), - [anon_sym___asm__] = ACTIONS(3298), - [sym_number_literal] = ACTIONS(3300), - [anon_sym_L_SQUOTE] = ACTIONS(3300), - [anon_sym_u_SQUOTE] = ACTIONS(3300), - [anon_sym_U_SQUOTE] = ACTIONS(3300), - [anon_sym_u8_SQUOTE] = ACTIONS(3300), - [anon_sym_SQUOTE] = ACTIONS(3300), - [anon_sym_L_DQUOTE] = ACTIONS(3300), - [anon_sym_u_DQUOTE] = ACTIONS(3300), - [anon_sym_U_DQUOTE] = ACTIONS(3300), - [anon_sym_u8_DQUOTE] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(3300), - [sym_true] = ACTIONS(3298), - [sym_false] = ACTIONS(3298), - [anon_sym_NULL] = ACTIONS(3298), - [anon_sym_nullptr] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_try] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3298), - [anon_sym_throw] = ACTIONS(3298), - [anon_sym_namespace] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), - [anon_sym_concept] = ACTIONS(3298), - [anon_sym_co_return] = ACTIONS(3298), - [anon_sym_co_yield] = ACTIONS(3298), - [anon_sym_R_DQUOTE] = ACTIONS(3300), - [anon_sym_LR_DQUOTE] = ACTIONS(3300), - [anon_sym_uR_DQUOTE] = ACTIONS(3300), - [anon_sym_UR_DQUOTE] = ACTIONS(3300), - [anon_sym_u8R_DQUOTE] = ACTIONS(3300), - [anon_sym_co_await] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3298), - [anon_sym_requires] = ACTIONS(3298), - [sym_this] = ACTIONS(3298), - }, - [959] = { - [sym_preproc_def] = STATE(1025), - [sym_preproc_function_def] = STATE(1025), - [sym_preproc_call] = STATE(1025), - [sym_preproc_if_in_field_declaration_list] = STATE(1025), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1025), - [sym_type_definition] = STATE(1025), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6154), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6722), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1025), - [sym_field_declaration] = STATE(1025), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2011), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1025), - [sym_operator_cast] = STATE(7212), - [sym_inline_method_definition] = STATE(1025), - [sym__constructor_specifiers] = STATE(2011), - [sym_operator_cast_definition] = STATE(1025), - [sym_operator_cast_declaration] = STATE(1025), - [sym_constructor_or_destructor_definition] = STATE(1025), - [sym_constructor_or_destructor_declaration] = STATE(1025), - [sym_friend_declaration] = STATE(1025), - [sym_access_specifier] = STATE(8624), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1025), - [sym_alias_declaration] = STATE(1025), - [sym_static_assert_declaration] = STATE(1025), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7212), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1025), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2011), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token1] = ACTIONS(3668), - [aux_sym_preproc_if_token2] = ACTIONS(3670), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), - [sym_preproc_directive] = ACTIONS(3674), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3676), - [anon_sym_typedef] = ACTIONS(3678), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3680), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3682), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_static_assert] = ACTIONS(3686), - }, - [960] = { - [ts_builtin_sym_end] = ACTIONS(3174), - [sym_identifier] = ACTIONS(3172), - [aux_sym_preproc_include_token1] = ACTIONS(3172), - [aux_sym_preproc_def_token1] = ACTIONS(3172), - [aux_sym_preproc_if_token1] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), - [sym_preproc_directive] = ACTIONS(3172), - [anon_sym_LPAREN2] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_STAR] = ACTIONS(3174), - [anon_sym_AMP_AMP] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym___extension__] = ACTIONS(3172), - [anon_sym_typedef] = ACTIONS(3172), - [anon_sym_extern] = ACTIONS(3172), - [anon_sym___attribute__] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), - [anon_sym___declspec] = ACTIONS(3172), - [anon_sym___based] = ACTIONS(3172), - [anon_sym___cdecl] = ACTIONS(3172), - [anon_sym___clrcall] = ACTIONS(3172), - [anon_sym___stdcall] = ACTIONS(3172), - [anon_sym___fastcall] = ACTIONS(3172), - [anon_sym___thiscall] = ACTIONS(3172), - [anon_sym___vectorcall] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_signed] = ACTIONS(3172), - [anon_sym_unsigned] = ACTIONS(3172), - [anon_sym_long] = ACTIONS(3172), - [anon_sym_short] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_register] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym___inline] = ACTIONS(3172), - [anon_sym___inline__] = ACTIONS(3172), - [anon_sym___forceinline] = ACTIONS(3172), - [anon_sym_thread_local] = ACTIONS(3172), - [anon_sym___thread] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_constexpr] = ACTIONS(3172), - [anon_sym_volatile] = ACTIONS(3172), - [anon_sym_restrict] = ACTIONS(3172), - [anon_sym___restrict__] = ACTIONS(3172), - [anon_sym__Atomic] = ACTIONS(3172), - [anon_sym__Noreturn] = ACTIONS(3172), - [anon_sym_noreturn] = ACTIONS(3172), - [anon_sym_mutable] = ACTIONS(3172), - [anon_sym_constinit] = ACTIONS(3172), - [anon_sym_consteval] = ACTIONS(3172), - [sym_primitive_type] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_struct] = ACTIONS(3172), - [anon_sym_union] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_case] = ACTIONS(3172), - [anon_sym_default] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_goto] = ACTIONS(3172), - [anon_sym_not] = ACTIONS(3172), - [anon_sym_compl] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_sizeof] = ACTIONS(3172), - [anon_sym___alignof__] = ACTIONS(3172), - [anon_sym___alignof] = ACTIONS(3172), - [anon_sym__alignof] = ACTIONS(3172), - [anon_sym_alignof] = ACTIONS(3172), - [anon_sym__Alignof] = ACTIONS(3172), - [anon_sym_offsetof] = ACTIONS(3172), - [anon_sym__Generic] = ACTIONS(3172), - [anon_sym_asm] = ACTIONS(3172), - [anon_sym___asm__] = ACTIONS(3172), - [sym_number_literal] = ACTIONS(3174), - [anon_sym_L_SQUOTE] = ACTIONS(3174), - [anon_sym_u_SQUOTE] = ACTIONS(3174), - [anon_sym_U_SQUOTE] = ACTIONS(3174), - [anon_sym_u8_SQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_L_DQUOTE] = ACTIONS(3174), - [anon_sym_u_DQUOTE] = ACTIONS(3174), - [anon_sym_U_DQUOTE] = ACTIONS(3174), - [anon_sym_u8_DQUOTE] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [anon_sym_NULL] = ACTIONS(3172), - [anon_sym_nullptr] = ACTIONS(3172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3172), - [anon_sym_decltype] = ACTIONS(3172), - [anon_sym_virtual] = ACTIONS(3172), - [anon_sym_alignas] = ACTIONS(3172), - [anon_sym_explicit] = ACTIONS(3172), - [anon_sym_typename] = ACTIONS(3172), - [anon_sym_template] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_static_assert] = ACTIONS(3172), - [anon_sym_concept] = ACTIONS(3172), - [anon_sym_co_return] = ACTIONS(3172), - [anon_sym_co_yield] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_requires] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - }, - [961] = { - [ts_builtin_sym_end] = ACTIONS(3241), - [sym_identifier] = ACTIONS(3239), - [aux_sym_preproc_include_token1] = ACTIONS(3239), - [aux_sym_preproc_def_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token1] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), - [sym_preproc_directive] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_AMP_AMP] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym___extension__] = ACTIONS(3239), - [anon_sym_typedef] = ACTIONS(3239), - [anon_sym_extern] = ACTIONS(3239), - [anon_sym___attribute__] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3241), - [anon_sym___declspec] = ACTIONS(3239), - [anon_sym___based] = ACTIONS(3239), - [anon_sym___cdecl] = ACTIONS(3239), - [anon_sym___clrcall] = ACTIONS(3239), - [anon_sym___stdcall] = ACTIONS(3239), - [anon_sym___fastcall] = ACTIONS(3239), - [anon_sym___thiscall] = ACTIONS(3239), - [anon_sym___vectorcall] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_signed] = ACTIONS(3239), - [anon_sym_unsigned] = ACTIONS(3239), - [anon_sym_long] = ACTIONS(3239), - [anon_sym_short] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_register] = ACTIONS(3239), - [anon_sym_inline] = ACTIONS(3239), - [anon_sym___inline] = ACTIONS(3239), - [anon_sym___inline__] = ACTIONS(3239), - [anon_sym___forceinline] = ACTIONS(3239), - [anon_sym_thread_local] = ACTIONS(3239), - [anon_sym___thread] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_constexpr] = ACTIONS(3239), - [anon_sym_volatile] = ACTIONS(3239), - [anon_sym_restrict] = ACTIONS(3239), - [anon_sym___restrict__] = ACTIONS(3239), - [anon_sym__Atomic] = ACTIONS(3239), - [anon_sym__Noreturn] = ACTIONS(3239), - [anon_sym_noreturn] = ACTIONS(3239), - [anon_sym_mutable] = ACTIONS(3239), - [anon_sym_constinit] = ACTIONS(3239), - [anon_sym_consteval] = ACTIONS(3239), - [sym_primitive_type] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_case] = ACTIONS(3239), - [anon_sym_default] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_goto] = ACTIONS(3239), - [anon_sym_not] = ACTIONS(3239), - [anon_sym_compl] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_sizeof] = ACTIONS(3239), - [anon_sym___alignof__] = ACTIONS(3239), - [anon_sym___alignof] = ACTIONS(3239), - [anon_sym__alignof] = ACTIONS(3239), - [anon_sym_alignof] = ACTIONS(3239), - [anon_sym__Alignof] = ACTIONS(3239), - [anon_sym_offsetof] = ACTIONS(3239), - [anon_sym__Generic] = ACTIONS(3239), - [anon_sym_asm] = ACTIONS(3239), - [anon_sym___asm__] = ACTIONS(3239), - [sym_number_literal] = ACTIONS(3241), - [anon_sym_L_SQUOTE] = ACTIONS(3241), - [anon_sym_u_SQUOTE] = ACTIONS(3241), - [anon_sym_U_SQUOTE] = ACTIONS(3241), - [anon_sym_u8_SQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_L_DQUOTE] = ACTIONS(3241), - [anon_sym_u_DQUOTE] = ACTIONS(3241), - [anon_sym_U_DQUOTE] = ACTIONS(3241), - [anon_sym_u8_DQUOTE] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [anon_sym_NULL] = ACTIONS(3239), - [anon_sym_nullptr] = ACTIONS(3239), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3239), - [anon_sym_decltype] = ACTIONS(3239), - [anon_sym_virtual] = ACTIONS(3239), - [anon_sym_alignas] = ACTIONS(3239), - [anon_sym_explicit] = ACTIONS(3239), - [anon_sym_typename] = ACTIONS(3239), - [anon_sym_template] = ACTIONS(3239), - [anon_sym_operator] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_delete] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_static_assert] = ACTIONS(3239), - [anon_sym_concept] = ACTIONS(3239), - [anon_sym_co_return] = ACTIONS(3239), - [anon_sym_co_yield] = ACTIONS(3239), - [anon_sym_R_DQUOTE] = ACTIONS(3241), - [anon_sym_LR_DQUOTE] = ACTIONS(3241), - [anon_sym_uR_DQUOTE] = ACTIONS(3241), - [anon_sym_UR_DQUOTE] = ACTIONS(3241), - [anon_sym_u8R_DQUOTE] = ACTIONS(3241), - [anon_sym_co_await] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_requires] = ACTIONS(3239), - [sym_this] = ACTIONS(3239), - }, - [962] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [963] = { - [ts_builtin_sym_end] = ACTIONS(3104), - [sym_identifier] = ACTIONS(3102), - [aux_sym_preproc_include_token1] = ACTIONS(3102), - [aux_sym_preproc_def_token1] = ACTIONS(3102), - [aux_sym_preproc_if_token1] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3102), - [sym_preproc_directive] = ACTIONS(3102), - [anon_sym_LPAREN2] = ACTIONS(3104), - [anon_sym_BANG] = ACTIONS(3104), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym___extension__] = ACTIONS(3102), - [anon_sym_typedef] = ACTIONS(3102), - [anon_sym_extern] = ACTIONS(3102), - [anon_sym___attribute__] = ACTIONS(3102), - [anon_sym_COLON_COLON] = ACTIONS(3104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3104), - [anon_sym___declspec] = ACTIONS(3102), - [anon_sym___based] = ACTIONS(3102), - [anon_sym___cdecl] = ACTIONS(3102), - [anon_sym___clrcall] = ACTIONS(3102), - [anon_sym___stdcall] = ACTIONS(3102), - [anon_sym___fastcall] = ACTIONS(3102), - [anon_sym___thiscall] = ACTIONS(3102), - [anon_sym___vectorcall] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_signed] = ACTIONS(3102), - [anon_sym_unsigned] = ACTIONS(3102), - [anon_sym_long] = ACTIONS(3102), - [anon_sym_short] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_register] = ACTIONS(3102), - [anon_sym_inline] = ACTIONS(3102), - [anon_sym___inline] = ACTIONS(3102), - [anon_sym___inline__] = ACTIONS(3102), - [anon_sym___forceinline] = ACTIONS(3102), - [anon_sym_thread_local] = ACTIONS(3102), - [anon_sym___thread] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_constexpr] = ACTIONS(3102), - [anon_sym_volatile] = ACTIONS(3102), - [anon_sym_restrict] = ACTIONS(3102), - [anon_sym___restrict__] = ACTIONS(3102), - [anon_sym__Atomic] = ACTIONS(3102), - [anon_sym__Noreturn] = ACTIONS(3102), - [anon_sym_noreturn] = ACTIONS(3102), - [anon_sym_mutable] = ACTIONS(3102), - [anon_sym_constinit] = ACTIONS(3102), - [anon_sym_consteval] = ACTIONS(3102), - [sym_primitive_type] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_case] = ACTIONS(3102), - [anon_sym_default] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_goto] = ACTIONS(3102), - [anon_sym_not] = ACTIONS(3102), - [anon_sym_compl] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3104), - [anon_sym_PLUS_PLUS] = ACTIONS(3104), - [anon_sym_sizeof] = ACTIONS(3102), - [anon_sym___alignof__] = ACTIONS(3102), - [anon_sym___alignof] = ACTIONS(3102), - [anon_sym__alignof] = ACTIONS(3102), - [anon_sym_alignof] = ACTIONS(3102), - [anon_sym__Alignof] = ACTIONS(3102), - [anon_sym_offsetof] = ACTIONS(3102), - [anon_sym__Generic] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(3102), - [anon_sym___asm__] = ACTIONS(3102), - [sym_number_literal] = ACTIONS(3104), - [anon_sym_L_SQUOTE] = ACTIONS(3104), - [anon_sym_u_SQUOTE] = ACTIONS(3104), - [anon_sym_U_SQUOTE] = ACTIONS(3104), - [anon_sym_u8_SQUOTE] = ACTIONS(3104), - [anon_sym_SQUOTE] = ACTIONS(3104), - [anon_sym_L_DQUOTE] = ACTIONS(3104), - [anon_sym_u_DQUOTE] = ACTIONS(3104), - [anon_sym_U_DQUOTE] = ACTIONS(3104), - [anon_sym_u8_DQUOTE] = ACTIONS(3104), - [anon_sym_DQUOTE] = ACTIONS(3104), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [anon_sym_NULL] = ACTIONS(3102), - [anon_sym_nullptr] = ACTIONS(3102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3102), - [anon_sym_decltype] = ACTIONS(3102), - [anon_sym_virtual] = ACTIONS(3102), - [anon_sym_alignas] = ACTIONS(3102), - [anon_sym_explicit] = ACTIONS(3102), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_template] = ACTIONS(3102), - [anon_sym_operator] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_using] = ACTIONS(3102), - [anon_sym_static_assert] = ACTIONS(3102), - [anon_sym_concept] = ACTIONS(3102), - [anon_sym_co_return] = ACTIONS(3102), - [anon_sym_co_yield] = ACTIONS(3102), - [anon_sym_R_DQUOTE] = ACTIONS(3104), - [anon_sym_LR_DQUOTE] = ACTIONS(3104), - [anon_sym_uR_DQUOTE] = ACTIONS(3104), - [anon_sym_UR_DQUOTE] = ACTIONS(3104), - [anon_sym_u8R_DQUOTE] = ACTIONS(3104), - [anon_sym_co_await] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_requires] = ACTIONS(3102), - [sym_this] = ACTIONS(3102), - }, - [964] = { - [ts_builtin_sym_end] = ACTIONS(3110), - [sym_identifier] = ACTIONS(3108), - [aux_sym_preproc_include_token1] = ACTIONS(3108), - [aux_sym_preproc_def_token1] = ACTIONS(3108), - [aux_sym_preproc_if_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3108), - [sym_preproc_directive] = ACTIONS(3108), - [anon_sym_LPAREN2] = ACTIONS(3110), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3108), - [anon_sym___extension__] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(3108), - [anon_sym_extern] = ACTIONS(3108), - [anon_sym___attribute__] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(3110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3110), - [anon_sym___declspec] = ACTIONS(3108), - [anon_sym___based] = ACTIONS(3108), - [anon_sym___cdecl] = ACTIONS(3108), - [anon_sym___clrcall] = ACTIONS(3108), - [anon_sym___stdcall] = ACTIONS(3108), - [anon_sym___fastcall] = ACTIONS(3108), - [anon_sym___thiscall] = ACTIONS(3108), - [anon_sym___vectorcall] = ACTIONS(3108), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_signed] = ACTIONS(3108), - [anon_sym_unsigned] = ACTIONS(3108), - [anon_sym_long] = ACTIONS(3108), - [anon_sym_short] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3108), - [anon_sym_register] = ACTIONS(3108), - [anon_sym_inline] = ACTIONS(3108), - [anon_sym___inline] = ACTIONS(3108), - [anon_sym___inline__] = ACTIONS(3108), - [anon_sym___forceinline] = ACTIONS(3108), - [anon_sym_thread_local] = ACTIONS(3108), - [anon_sym___thread] = ACTIONS(3108), - [anon_sym_const] = ACTIONS(3108), - [anon_sym_constexpr] = ACTIONS(3108), - [anon_sym_volatile] = ACTIONS(3108), - [anon_sym_restrict] = ACTIONS(3108), - [anon_sym___restrict__] = ACTIONS(3108), - [anon_sym__Atomic] = ACTIONS(3108), - [anon_sym__Noreturn] = ACTIONS(3108), - [anon_sym_noreturn] = ACTIONS(3108), - [anon_sym_mutable] = ACTIONS(3108), - [anon_sym_constinit] = ACTIONS(3108), - [anon_sym_consteval] = ACTIONS(3108), - [sym_primitive_type] = ACTIONS(3108), - [anon_sym_enum] = ACTIONS(3108), - [anon_sym_class] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3108), - [anon_sym_union] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3108), - [anon_sym_switch] = ACTIONS(3108), - [anon_sym_case] = ACTIONS(3108), - [anon_sym_default] = ACTIONS(3108), - [anon_sym_while] = ACTIONS(3108), - [anon_sym_do] = ACTIONS(3108), - [anon_sym_for] = ACTIONS(3108), - [anon_sym_return] = ACTIONS(3108), - [anon_sym_break] = ACTIONS(3108), - [anon_sym_continue] = ACTIONS(3108), - [anon_sym_goto] = ACTIONS(3108), - [anon_sym_not] = ACTIONS(3108), - [anon_sym_compl] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_sizeof] = ACTIONS(3108), - [anon_sym___alignof__] = ACTIONS(3108), - [anon_sym___alignof] = ACTIONS(3108), - [anon_sym__alignof] = ACTIONS(3108), - [anon_sym_alignof] = ACTIONS(3108), - [anon_sym__Alignof] = ACTIONS(3108), - [anon_sym_offsetof] = ACTIONS(3108), - [anon_sym__Generic] = ACTIONS(3108), - [anon_sym_asm] = ACTIONS(3108), - [anon_sym___asm__] = ACTIONS(3108), - [sym_number_literal] = ACTIONS(3110), - [anon_sym_L_SQUOTE] = ACTIONS(3110), - [anon_sym_u_SQUOTE] = ACTIONS(3110), - [anon_sym_U_SQUOTE] = ACTIONS(3110), - [anon_sym_u8_SQUOTE] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3110), - [anon_sym_L_DQUOTE] = ACTIONS(3110), - [anon_sym_u_DQUOTE] = ACTIONS(3110), - [anon_sym_U_DQUOTE] = ACTIONS(3110), - [anon_sym_u8_DQUOTE] = ACTIONS(3110), - [anon_sym_DQUOTE] = ACTIONS(3110), - [sym_true] = ACTIONS(3108), - [sym_false] = ACTIONS(3108), - [anon_sym_NULL] = ACTIONS(3108), - [anon_sym_nullptr] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3108), - [anon_sym_decltype] = ACTIONS(3108), - [anon_sym_virtual] = ACTIONS(3108), - [anon_sym_alignas] = ACTIONS(3108), - [anon_sym_explicit] = ACTIONS(3108), - [anon_sym_typename] = ACTIONS(3108), - [anon_sym_template] = ACTIONS(3108), - [anon_sym_operator] = ACTIONS(3108), - [anon_sym_try] = ACTIONS(3108), - [anon_sym_delete] = ACTIONS(3108), - [anon_sym_throw] = ACTIONS(3108), - [anon_sym_namespace] = ACTIONS(3108), - [anon_sym_using] = ACTIONS(3108), - [anon_sym_static_assert] = ACTIONS(3108), - [anon_sym_concept] = ACTIONS(3108), - [anon_sym_co_return] = ACTIONS(3108), - [anon_sym_co_yield] = ACTIONS(3108), - [anon_sym_R_DQUOTE] = ACTIONS(3110), - [anon_sym_LR_DQUOTE] = ACTIONS(3110), - [anon_sym_uR_DQUOTE] = ACTIONS(3110), - [anon_sym_UR_DQUOTE] = ACTIONS(3110), - [anon_sym_u8R_DQUOTE] = ACTIONS(3110), - [anon_sym_co_await] = ACTIONS(3108), - [anon_sym_new] = ACTIONS(3108), - [anon_sym_requires] = ACTIONS(3108), - [sym_this] = ACTIONS(3108), - }, - [965] = { - [sym__expression] = STATE(4177), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(4290), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2098), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2098), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [966] = { - [ts_builtin_sym_end] = ACTIONS(3118), - [sym_identifier] = ACTIONS(3116), - [aux_sym_preproc_include_token1] = ACTIONS(3116), - [aux_sym_preproc_def_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token1] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), - [sym_preproc_directive] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3116), - [anon_sym___extension__] = ACTIONS(3116), - [anon_sym_typedef] = ACTIONS(3116), - [anon_sym_extern] = ACTIONS(3116), - [anon_sym___attribute__] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = ACTIONS(3116), - [anon_sym___based] = ACTIONS(3116), - [anon_sym___cdecl] = ACTIONS(3116), - [anon_sym___clrcall] = ACTIONS(3116), - [anon_sym___stdcall] = ACTIONS(3116), - [anon_sym___fastcall] = ACTIONS(3116), - [anon_sym___thiscall] = ACTIONS(3116), - [anon_sym___vectorcall] = ACTIONS(3116), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_signed] = ACTIONS(3116), - [anon_sym_unsigned] = ACTIONS(3116), - [anon_sym_long] = ACTIONS(3116), - [anon_sym_short] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_register] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym___inline] = ACTIONS(3116), - [anon_sym___inline__] = ACTIONS(3116), - [anon_sym___forceinline] = ACTIONS(3116), - [anon_sym_thread_local] = ACTIONS(3116), - [anon_sym___thread] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_constexpr] = ACTIONS(3116), - [anon_sym_volatile] = ACTIONS(3116), - [anon_sym_restrict] = ACTIONS(3116), - [anon_sym___restrict__] = ACTIONS(3116), - [anon_sym__Atomic] = ACTIONS(3116), - [anon_sym__Noreturn] = ACTIONS(3116), - [anon_sym_noreturn] = ACTIONS(3116), - [anon_sym_mutable] = ACTIONS(3116), - [anon_sym_constinit] = ACTIONS(3116), - [anon_sym_consteval] = ACTIONS(3116), - [sym_primitive_type] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3116), - [anon_sym_union] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3116), - [anon_sym_switch] = ACTIONS(3116), - [anon_sym_case] = ACTIONS(3116), - [anon_sym_default] = ACTIONS(3116), - [anon_sym_while] = ACTIONS(3116), - [anon_sym_do] = ACTIONS(3116), - [anon_sym_for] = ACTIONS(3116), - [anon_sym_return] = ACTIONS(3116), - [anon_sym_break] = ACTIONS(3116), - [anon_sym_continue] = ACTIONS(3116), - [anon_sym_goto] = ACTIONS(3116), - [anon_sym_not] = ACTIONS(3116), - [anon_sym_compl] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_sizeof] = ACTIONS(3116), - [anon_sym___alignof__] = ACTIONS(3116), - [anon_sym___alignof] = ACTIONS(3116), - [anon_sym__alignof] = ACTIONS(3116), - [anon_sym_alignof] = ACTIONS(3116), - [anon_sym__Alignof] = ACTIONS(3116), - [anon_sym_offsetof] = ACTIONS(3116), - [anon_sym__Generic] = ACTIONS(3116), - [anon_sym_asm] = ACTIONS(3116), - [anon_sym___asm__] = ACTIONS(3116), - [sym_number_literal] = ACTIONS(3118), - [anon_sym_L_SQUOTE] = ACTIONS(3118), - [anon_sym_u_SQUOTE] = ACTIONS(3118), - [anon_sym_U_SQUOTE] = ACTIONS(3118), - [anon_sym_u8_SQUOTE] = ACTIONS(3118), - [anon_sym_SQUOTE] = ACTIONS(3118), - [anon_sym_L_DQUOTE] = ACTIONS(3118), - [anon_sym_u_DQUOTE] = ACTIONS(3118), - [anon_sym_U_DQUOTE] = ACTIONS(3118), - [anon_sym_u8_DQUOTE] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym_true] = ACTIONS(3116), - [sym_false] = ACTIONS(3116), - [anon_sym_NULL] = ACTIONS(3116), - [anon_sym_nullptr] = ACTIONS(3116), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3116), - [anon_sym_decltype] = ACTIONS(3116), - [anon_sym_virtual] = ACTIONS(3116), - [anon_sym_alignas] = ACTIONS(3116), - [anon_sym_explicit] = ACTIONS(3116), - [anon_sym_typename] = ACTIONS(3116), - [anon_sym_template] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_try] = ACTIONS(3116), - [anon_sym_delete] = ACTIONS(3116), - [anon_sym_throw] = ACTIONS(3116), - [anon_sym_namespace] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3116), - [anon_sym_static_assert] = ACTIONS(3116), - [anon_sym_concept] = ACTIONS(3116), - [anon_sym_co_return] = ACTIONS(3116), - [anon_sym_co_yield] = ACTIONS(3116), - [anon_sym_R_DQUOTE] = ACTIONS(3118), - [anon_sym_LR_DQUOTE] = ACTIONS(3118), - [anon_sym_uR_DQUOTE] = ACTIONS(3118), - [anon_sym_UR_DQUOTE] = ACTIONS(3118), - [anon_sym_u8R_DQUOTE] = ACTIONS(3118), - [anon_sym_co_await] = ACTIONS(3116), - [anon_sym_new] = ACTIONS(3116), - [anon_sym_requires] = ACTIONS(3116), - [sym_this] = ACTIONS(3116), - }, - [967] = { - [sym__expression] = STATE(4665), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_initializer_list] = STATE(4919), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [aux_sym_preproc_if_token2] = ACTIONS(2098), - [aux_sym_preproc_else_token1] = ACTIONS(2098), - [aux_sym_preproc_elif_token1] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2098), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(2098), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [968] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3750), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [906] = { + [sym_identifier] = ACTIONS(3211), + [aux_sym_preproc_include_token1] = ACTIONS(3211), + [aux_sym_preproc_def_token1] = ACTIONS(3211), + [aux_sym_preproc_if_token1] = ACTIONS(3211), + [aux_sym_preproc_if_token2] = ACTIONS(3211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), + [sym_preproc_directive] = ACTIONS(3211), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_AMP_AMP] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym___extension__] = ACTIONS(3211), + [anon_sym_typedef] = ACTIONS(3211), + [anon_sym_extern] = ACTIONS(3211), + [anon_sym___attribute__] = ACTIONS(3211), + [anon_sym_COLON_COLON] = ACTIONS(3213), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), + [anon_sym___declspec] = ACTIONS(3211), + [anon_sym___based] = ACTIONS(3211), + [anon_sym___cdecl] = ACTIONS(3211), + [anon_sym___clrcall] = ACTIONS(3211), + [anon_sym___stdcall] = ACTIONS(3211), + [anon_sym___fastcall] = ACTIONS(3211), + [anon_sym___thiscall] = ACTIONS(3211), + [anon_sym___vectorcall] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_signed] = ACTIONS(3211), + [anon_sym_unsigned] = ACTIONS(3211), + [anon_sym_long] = ACTIONS(3211), + [anon_sym_short] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_register] = ACTIONS(3211), + [anon_sym_inline] = ACTIONS(3211), + [anon_sym___inline] = ACTIONS(3211), + [anon_sym___inline__] = ACTIONS(3211), + [anon_sym___forceinline] = ACTIONS(3211), + [anon_sym_thread_local] = ACTIONS(3211), + [anon_sym___thread] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_constexpr] = ACTIONS(3211), + [anon_sym_volatile] = ACTIONS(3211), + [anon_sym_restrict] = ACTIONS(3211), + [anon_sym___restrict__] = ACTIONS(3211), + [anon_sym__Atomic] = ACTIONS(3211), + [anon_sym__Noreturn] = ACTIONS(3211), + [anon_sym_noreturn] = ACTIONS(3211), + [anon_sym_mutable] = ACTIONS(3211), + [anon_sym_constinit] = ACTIONS(3211), + [anon_sym_consteval] = ACTIONS(3211), + [sym_primitive_type] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3211), + [anon_sym_union] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_case] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_goto] = ACTIONS(3211), + [anon_sym___try] = ACTIONS(3211), + [anon_sym___leave] = ACTIONS(3211), + [anon_sym_not] = ACTIONS(3211), + [anon_sym_compl] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_sizeof] = ACTIONS(3211), + [anon_sym___alignof__] = ACTIONS(3211), + [anon_sym___alignof] = ACTIONS(3211), + [anon_sym__alignof] = ACTIONS(3211), + [anon_sym_alignof] = ACTIONS(3211), + [anon_sym__Alignof] = ACTIONS(3211), + [anon_sym_offsetof] = ACTIONS(3211), + [anon_sym__Generic] = ACTIONS(3211), + [anon_sym_asm] = ACTIONS(3211), + [anon_sym___asm__] = ACTIONS(3211), + [sym_number_literal] = ACTIONS(3213), + [anon_sym_L_SQUOTE] = ACTIONS(3213), + [anon_sym_u_SQUOTE] = ACTIONS(3213), + [anon_sym_U_SQUOTE] = ACTIONS(3213), + [anon_sym_u8_SQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_L_DQUOTE] = ACTIONS(3213), + [anon_sym_u_DQUOTE] = ACTIONS(3213), + [anon_sym_U_DQUOTE] = ACTIONS(3213), + [anon_sym_u8_DQUOTE] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [anon_sym_NULL] = ACTIONS(3211), + [anon_sym_nullptr] = ACTIONS(3211), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [969] = { - [sym_preproc_def] = STATE(969), - [sym_preproc_function_def] = STATE(969), - [sym_preproc_call] = STATE(969), - [sym_preproc_if_in_field_declaration_list] = STATE(969), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(969), - [sym_type_definition] = STATE(969), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6154), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6722), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(969), - [sym_field_declaration] = STATE(969), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2011), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(969), - [sym_operator_cast] = STATE(7212), - [sym_inline_method_definition] = STATE(969), - [sym__constructor_specifiers] = STATE(2011), - [sym_operator_cast_definition] = STATE(969), - [sym_operator_cast_declaration] = STATE(969), - [sym_constructor_or_destructor_definition] = STATE(969), - [sym_constructor_or_destructor_declaration] = STATE(969), - [sym_friend_declaration] = STATE(969), - [sym_access_specifier] = STATE(8624), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(969), - [sym_alias_declaration] = STATE(969), - [sym_static_assert_declaration] = STATE(969), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7212), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(969), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2011), - [sym_identifier] = ACTIONS(3490), - [aux_sym_preproc_def_token1] = ACTIONS(3752), - [aux_sym_preproc_if_token1] = ACTIONS(3755), - [aux_sym_preproc_if_token2] = ACTIONS(3499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3758), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3758), - [sym_preproc_directive] = ACTIONS(3761), - [anon_sym_LPAREN2] = ACTIONS(3507), - [anon_sym_TILDE] = ACTIONS(3510), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym___extension__] = ACTIONS(3764), - [anon_sym_typedef] = ACTIONS(3767), - [anon_sym_extern] = ACTIONS(3528), - [anon_sym___attribute__] = ACTIONS(3531), - [anon_sym_COLON_COLON] = ACTIONS(3534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3537), - [anon_sym___declspec] = ACTIONS(3540), - [anon_sym___based] = ACTIONS(3543), - [anon_sym_signed] = ACTIONS(3546), - [anon_sym_unsigned] = ACTIONS(3546), - [anon_sym_long] = ACTIONS(3546), - [anon_sym_short] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3549), - [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(3552), - [anon_sym_constexpr] = ACTIONS(3552), - [anon_sym_volatile] = ACTIONS(3552), - [anon_sym_restrict] = ACTIONS(3552), - [anon_sym___restrict__] = ACTIONS(3552), - [anon_sym__Atomic] = ACTIONS(3552), - [anon_sym__Noreturn] = ACTIONS(3552), - [anon_sym_noreturn] = ACTIONS(3552), - [anon_sym_mutable] = ACTIONS(3552), - [anon_sym_constinit] = ACTIONS(3552), - [anon_sym_consteval] = ACTIONS(3552), - [sym_primitive_type] = ACTIONS(3555), - [anon_sym_enum] = ACTIONS(3558), - [anon_sym_class] = ACTIONS(3561), - [anon_sym_struct] = ACTIONS(3564), - [anon_sym_union] = ACTIONS(3567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3570), - [anon_sym_decltype] = ACTIONS(3573), - [anon_sym_virtual] = ACTIONS(3576), - [anon_sym_alignas] = ACTIONS(3579), - [anon_sym_explicit] = ACTIONS(3582), - [anon_sym_typename] = ACTIONS(3585), - [anon_sym_template] = ACTIONS(3770), - [anon_sym_operator] = ACTIONS(3591), - [anon_sym_friend] = ACTIONS(3773), - [anon_sym_public] = ACTIONS(3597), - [anon_sym_private] = ACTIONS(3597), - [anon_sym_protected] = ACTIONS(3597), - [anon_sym_using] = ACTIONS(3776), - [anon_sym_static_assert] = ACTIONS(3779), + [sym_auto] = ACTIONS(3211), + [anon_sym_decltype] = ACTIONS(3211), + [anon_sym_virtual] = ACTIONS(3211), + [anon_sym_alignas] = ACTIONS(3211), + [anon_sym_explicit] = ACTIONS(3211), + [anon_sym_typename] = ACTIONS(3211), + [anon_sym_template] = ACTIONS(3211), + [anon_sym_operator] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_delete] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_static_assert] = ACTIONS(3211), + [anon_sym_concept] = ACTIONS(3211), + [anon_sym_co_return] = ACTIONS(3211), + [anon_sym_co_yield] = ACTIONS(3211), + [anon_sym_R_DQUOTE] = ACTIONS(3213), + [anon_sym_LR_DQUOTE] = ACTIONS(3213), + [anon_sym_uR_DQUOTE] = ACTIONS(3213), + [anon_sym_UR_DQUOTE] = ACTIONS(3213), + [anon_sym_u8R_DQUOTE] = ACTIONS(3213), + [anon_sym_co_await] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_requires] = ACTIONS(3211), + [sym_this] = ACTIONS(3211), }, - [970] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3782), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), + [907] = { + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_include_token1] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym___cdecl] = ACTIONS(2997), + [anon_sym___clrcall] = ACTIONS(2997), + [anon_sym___stdcall] = ACTIONS(2997), + [anon_sym___fastcall] = ACTIONS(2997), + [anon_sym___thiscall] = ACTIONS(2997), + [anon_sym___vectorcall] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_RBRACE] = ACTIONS(2999), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_switch] = ACTIONS(2997), + [anon_sym_case] = ACTIONS(2997), + [anon_sym_default] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym___try] = ACTIONS(2997), + [anon_sym___leave] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2997), + [anon_sym_compl] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(2997), + [anon_sym___alignof__] = ACTIONS(2997), + [anon_sym___alignof] = ACTIONS(2997), + [anon_sym__alignof] = ACTIONS(2997), + [anon_sym_alignof] = ACTIONS(2997), + [anon_sym__Alignof] = ACTIONS(2997), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym___asm__] = ACTIONS(2997), + [sym_number_literal] = ACTIONS(2999), + [anon_sym_L_SQUOTE] = ACTIONS(2999), + [anon_sym_u_SQUOTE] = ACTIONS(2999), + [anon_sym_U_SQUOTE] = ACTIONS(2999), + [anon_sym_u8_SQUOTE] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_L_DQUOTE] = ACTIONS(2999), + [anon_sym_u_DQUOTE] = ACTIONS(2999), + [anon_sym_U_DQUOTE] = ACTIONS(2999), + [anon_sym_u8_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [anon_sym_NULL] = ACTIONS(2997), + [anon_sym_nullptr] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_delete] = ACTIONS(2997), + [anon_sym_throw] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), + [anon_sym_concept] = ACTIONS(2997), + [anon_sym_co_return] = ACTIONS(2997), + [anon_sym_co_yield] = ACTIONS(2997), + [anon_sym_R_DQUOTE] = ACTIONS(2999), + [anon_sym_LR_DQUOTE] = ACTIONS(2999), + [anon_sym_uR_DQUOTE] = ACTIONS(2999), + [anon_sym_UR_DQUOTE] = ACTIONS(2999), + [anon_sym_u8R_DQUOTE] = ACTIONS(2999), + [anon_sym_co_await] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_requires] = ACTIONS(2997), + [sym_this] = ACTIONS(2997), }, - [971] = { - [sym_preproc_def] = STATE(1006), - [sym_preproc_function_def] = STATE(1006), - [sym_preproc_call] = STATE(1006), - [sym_preproc_if_in_field_declaration_list] = STATE(1006), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1006), - [sym_type_definition] = STATE(1006), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1006), - [sym_field_declaration] = STATE(1006), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1006), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1006), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1006), - [sym_operator_cast_declaration] = STATE(1006), - [sym_constructor_or_destructor_definition] = STATE(1006), - [sym_constructor_or_destructor_declaration] = STATE(1006), - [sym_friend_declaration] = STATE(1006), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1006), - [sym_alias_declaration] = STATE(1006), - [sym_static_assert_declaration] = STATE(1006), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1006), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3784), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), + [908] = { + [sym_identifier] = ACTIONS(3252), + [aux_sym_preproc_include_token1] = ACTIONS(3252), + [aux_sym_preproc_def_token1] = ACTIONS(3252), + [aux_sym_preproc_if_token1] = ACTIONS(3252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3252), + [sym_preproc_directive] = ACTIONS(3252), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym_typedef] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3254), + [anon_sym___declspec] = ACTIONS(3252), + [anon_sym___based] = ACTIONS(3252), + [anon_sym___cdecl] = ACTIONS(3252), + [anon_sym___clrcall] = ACTIONS(3252), + [anon_sym___stdcall] = ACTIONS(3252), + [anon_sym___fastcall] = ACTIONS(3252), + [anon_sym___thiscall] = ACTIONS(3252), + [anon_sym___vectorcall] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_signed] = ACTIONS(3252), + [anon_sym_unsigned] = ACTIONS(3252), + [anon_sym_long] = ACTIONS(3252), + [anon_sym_short] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_inline] = ACTIONS(3252), + [anon_sym___inline] = ACTIONS(3252), + [anon_sym___inline__] = ACTIONS(3252), + [anon_sym___forceinline] = ACTIONS(3252), + [anon_sym_thread_local] = ACTIONS(3252), + [anon_sym___thread] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [sym_primitive_type] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_goto] = ACTIONS(3252), + [anon_sym___try] = ACTIONS(3252), + [anon_sym___leave] = ACTIONS(3252), + [anon_sym_not] = ACTIONS(3252), + [anon_sym_compl] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_sizeof] = ACTIONS(3252), + [anon_sym___alignof__] = ACTIONS(3252), + [anon_sym___alignof] = ACTIONS(3252), + [anon_sym__alignof] = ACTIONS(3252), + [anon_sym_alignof] = ACTIONS(3252), + [anon_sym__Alignof] = ACTIONS(3252), + [anon_sym_offsetof] = ACTIONS(3252), + [anon_sym__Generic] = ACTIONS(3252), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3254), + [anon_sym_u_SQUOTE] = ACTIONS(3254), + [anon_sym_U_SQUOTE] = ACTIONS(3254), + [anon_sym_u8_SQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_L_DQUOTE] = ACTIONS(3254), + [anon_sym_u_DQUOTE] = ACTIONS(3254), + [anon_sym_U_DQUOTE] = ACTIONS(3254), + [anon_sym_u8_DQUOTE] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [anon_sym_NULL] = ACTIONS(3252), + [anon_sym_nullptr] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_virtual] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym_explicit] = ACTIONS(3252), + [anon_sym_typename] = ACTIONS(3252), + [anon_sym_template] = ACTIONS(3252), + [anon_sym_operator] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_static_assert] = ACTIONS(3252), + [anon_sym_concept] = ACTIONS(3252), + [anon_sym_co_return] = ACTIONS(3252), + [anon_sym_co_yield] = ACTIONS(3252), + [anon_sym_R_DQUOTE] = ACTIONS(3254), + [anon_sym_LR_DQUOTE] = ACTIONS(3254), + [anon_sym_uR_DQUOTE] = ACTIONS(3254), + [anon_sym_UR_DQUOTE] = ACTIONS(3254), + [anon_sym_u8R_DQUOTE] = ACTIONS(3254), + [anon_sym_co_await] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_requires] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), }, - [972] = { - [ts_builtin_sym_end] = ACTIONS(3237), - [sym_identifier] = ACTIONS(3235), - [aux_sym_preproc_include_token1] = ACTIONS(3235), - [aux_sym_preproc_def_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3235), - [sym_preproc_directive] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym___based] = ACTIONS(3235), - [anon_sym___cdecl] = ACTIONS(3235), - [anon_sym___clrcall] = ACTIONS(3235), - [anon_sym___stdcall] = ACTIONS(3235), - [anon_sym___fastcall] = ACTIONS(3235), - [anon_sym___thiscall] = ACTIONS(3235), - [anon_sym___vectorcall] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_case] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym_not] = ACTIONS(3235), - [anon_sym_compl] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3235), - [anon_sym___alignof__] = ACTIONS(3235), - [anon_sym___alignof] = ACTIONS(3235), - [anon_sym__alignof] = ACTIONS(3235), - [anon_sym_alignof] = ACTIONS(3235), - [anon_sym__Alignof] = ACTIONS(3235), - [anon_sym_offsetof] = ACTIONS(3235), - [anon_sym__Generic] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym___asm__] = ACTIONS(3235), - [sym_number_literal] = ACTIONS(3237), - [anon_sym_L_SQUOTE] = ACTIONS(3237), - [anon_sym_u_SQUOTE] = ACTIONS(3237), - [anon_sym_U_SQUOTE] = ACTIONS(3237), - [anon_sym_u8_SQUOTE] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3237), - [anon_sym_L_DQUOTE] = ACTIONS(3237), - [anon_sym_u_DQUOTE] = ACTIONS(3237), - [anon_sym_U_DQUOTE] = ACTIONS(3237), - [anon_sym_u8_DQUOTE] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(3237), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [anon_sym_NULL] = ACTIONS(3235), - [anon_sym_nullptr] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_operator] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_static_assert] = ACTIONS(3235), - [anon_sym_concept] = ACTIONS(3235), - [anon_sym_co_return] = ACTIONS(3235), - [anon_sym_co_yield] = ACTIONS(3235), - [anon_sym_R_DQUOTE] = ACTIONS(3237), - [anon_sym_LR_DQUOTE] = ACTIONS(3237), - [anon_sym_uR_DQUOTE] = ACTIONS(3237), - [anon_sym_UR_DQUOTE] = ACTIONS(3237), - [anon_sym_u8R_DQUOTE] = ACTIONS(3237), - [anon_sym_co_await] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_requires] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), + [909] = { + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym___extension__] = ACTIONS(3286), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym___inline] = ACTIONS(3286), + [anon_sym___inline__] = ACTIONS(3286), + [anon_sym___forceinline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym___thread] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym___try] = ACTIONS(3286), + [anon_sym___leave] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym___alignof__] = ACTIONS(3286), + [anon_sym___alignof] = ACTIONS(3286), + [anon_sym__alignof] = ACTIONS(3286), + [anon_sym_alignof] = ACTIONS(3286), + [anon_sym__Alignof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_alignas] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), }, - [973] = { - [sym_preproc_def] = STATE(991), - [sym_preproc_function_def] = STATE(991), - [sym_preproc_call] = STATE(991), - [sym_preproc_if_in_field_declaration_list] = STATE(991), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(991), - [sym_type_definition] = STATE(991), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(991), - [sym_field_declaration] = STATE(991), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(991), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(991), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(991), - [sym_operator_cast_declaration] = STATE(991), - [sym_constructor_or_destructor_definition] = STATE(991), - [sym_constructor_or_destructor_declaration] = STATE(991), - [sym_friend_declaration] = STATE(991), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(991), - [sym_alias_declaration] = STATE(991), - [sym_static_assert_declaration] = STATE(991), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(991), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3786), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), + [910] = { + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_include_token1] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym___cdecl] = ACTIONS(3294), + [anon_sym___clrcall] = ACTIONS(3294), + [anon_sym___stdcall] = ACTIONS(3294), + [anon_sym___fastcall] = ACTIONS(3294), + [anon_sym___thiscall] = ACTIONS(3294), + [anon_sym___vectorcall] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_goto] = ACTIONS(3294), + [anon_sym___try] = ACTIONS(3294), + [anon_sym___leave] = ACTIONS(3294), + [anon_sym_not] = ACTIONS(3294), + [anon_sym_compl] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_sizeof] = ACTIONS(3294), + [anon_sym___alignof__] = ACTIONS(3294), + [anon_sym___alignof] = ACTIONS(3294), + [anon_sym__alignof] = ACTIONS(3294), + [anon_sym_alignof] = ACTIONS(3294), + [anon_sym__Alignof] = ACTIONS(3294), + [anon_sym_offsetof] = ACTIONS(3294), + [anon_sym__Generic] = ACTIONS(3294), + [anon_sym_asm] = ACTIONS(3294), + [anon_sym___asm__] = ACTIONS(3294), + [sym_number_literal] = ACTIONS(3296), + [anon_sym_L_SQUOTE] = ACTIONS(3296), + [anon_sym_u_SQUOTE] = ACTIONS(3296), + [anon_sym_U_SQUOTE] = ACTIONS(3296), + [anon_sym_u8_SQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_L_DQUOTE] = ACTIONS(3296), + [anon_sym_u_DQUOTE] = ACTIONS(3296), + [anon_sym_U_DQUOTE] = ACTIONS(3296), + [anon_sym_u8_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [anon_sym_NULL] = ACTIONS(3294), + [anon_sym_nullptr] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [anon_sym_concept] = ACTIONS(3294), + [anon_sym_co_return] = ACTIONS(3294), + [anon_sym_co_yield] = ACTIONS(3294), + [anon_sym_R_DQUOTE] = ACTIONS(3296), + [anon_sym_LR_DQUOTE] = ACTIONS(3296), + [anon_sym_uR_DQUOTE] = ACTIONS(3296), + [anon_sym_UR_DQUOTE] = ACTIONS(3296), + [anon_sym_u8R_DQUOTE] = ACTIONS(3296), + [anon_sym_co_await] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), }, - [974] = { - [ts_builtin_sym_end] = ACTIONS(3272), + [911] = { [sym_identifier] = ACTIONS(3270), [aux_sym_preproc_include_token1] = ACTIONS(3270), [aux_sym_preproc_def_token1] = ACTIONS(3270), @@ -222973,6 +215038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3272), [anon_sym_AMP_AMP] = ACTIONS(3272), [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3272), [anon_sym___extension__] = ACTIONS(3270), [anon_sym_typedef] = ACTIONS(3270), [anon_sym_extern] = ACTIONS(3270), @@ -222988,6 +215054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3270), [anon_sym___vectorcall] = ACTIONS(3270), [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), [anon_sym_signed] = ACTIONS(3270), [anon_sym_unsigned] = ACTIONS(3270), [anon_sym_long] = ACTIONS(3270), @@ -223028,6 +215095,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(3270), [anon_sym_continue] = ACTIONS(3270), [anon_sym_goto] = ACTIONS(3270), + [anon_sym___try] = ACTIONS(3270), + [anon_sym___leave] = ACTIONS(3270), [anon_sym_not] = ACTIONS(3270), [anon_sym_compl] = ACTIONS(3270), [anon_sym_DASH_DASH] = ACTIONS(3272), @@ -223085,12 +215154,1464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3270), [sym_this] = ACTIONS(3270), }, - [975] = { - [ts_builtin_sym_end] = ACTIONS(3276), + [912] = { + [sym_identifier] = ACTIONS(3256), + [aux_sym_preproc_include_token1] = ACTIONS(3256), + [aux_sym_preproc_def_token1] = ACTIONS(3256), + [aux_sym_preproc_if_token1] = ACTIONS(3256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3256), + [sym_preproc_directive] = ACTIONS(3256), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym_typedef] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3258), + [anon_sym___declspec] = ACTIONS(3256), + [anon_sym___based] = ACTIONS(3256), + [anon_sym___cdecl] = ACTIONS(3256), + [anon_sym___clrcall] = ACTIONS(3256), + [anon_sym___stdcall] = ACTIONS(3256), + [anon_sym___fastcall] = ACTIONS(3256), + [anon_sym___thiscall] = ACTIONS(3256), + [anon_sym___vectorcall] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_signed] = ACTIONS(3256), + [anon_sym_unsigned] = ACTIONS(3256), + [anon_sym_long] = ACTIONS(3256), + [anon_sym_short] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym___inline] = ACTIONS(3256), + [anon_sym___inline__] = ACTIONS(3256), + [anon_sym___forceinline] = ACTIONS(3256), + [anon_sym_thread_local] = ACTIONS(3256), + [anon_sym___thread] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [sym_primitive_type] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [anon_sym_class] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_union] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3256), + [anon_sym_case] = ACTIONS(3256), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_goto] = ACTIONS(3256), + [anon_sym___try] = ACTIONS(3256), + [anon_sym___leave] = ACTIONS(3256), + [anon_sym_not] = ACTIONS(3256), + [anon_sym_compl] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_sizeof] = ACTIONS(3256), + [anon_sym___alignof__] = ACTIONS(3256), + [anon_sym___alignof] = ACTIONS(3256), + [anon_sym__alignof] = ACTIONS(3256), + [anon_sym_alignof] = ACTIONS(3256), + [anon_sym__Alignof] = ACTIONS(3256), + [anon_sym_offsetof] = ACTIONS(3256), + [anon_sym__Generic] = ACTIONS(3256), + [anon_sym_asm] = ACTIONS(3256), + [anon_sym___asm__] = ACTIONS(3256), + [sym_number_literal] = ACTIONS(3258), + [anon_sym_L_SQUOTE] = ACTIONS(3258), + [anon_sym_u_SQUOTE] = ACTIONS(3258), + [anon_sym_U_SQUOTE] = ACTIONS(3258), + [anon_sym_u8_SQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [anon_sym_NULL] = ACTIONS(3256), + [anon_sym_nullptr] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_virtual] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym_explicit] = ACTIONS(3256), + [anon_sym_typename] = ACTIONS(3256), + [anon_sym_template] = ACTIONS(3256), + [anon_sym_operator] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3256), + [anon_sym_delete] = ACTIONS(3256), + [anon_sym_throw] = ACTIONS(3256), + [anon_sym_namespace] = ACTIONS(3256), + [anon_sym_using] = ACTIONS(3256), + [anon_sym_static_assert] = ACTIONS(3256), + [anon_sym_concept] = ACTIONS(3256), + [anon_sym_co_return] = ACTIONS(3256), + [anon_sym_co_yield] = ACTIONS(3256), + [anon_sym_R_DQUOTE] = ACTIONS(3258), + [anon_sym_LR_DQUOTE] = ACTIONS(3258), + [anon_sym_uR_DQUOTE] = ACTIONS(3258), + [anon_sym_UR_DQUOTE] = ACTIONS(3258), + [anon_sym_u8R_DQUOTE] = ACTIONS(3258), + [anon_sym_co_await] = ACTIONS(3256), + [anon_sym_new] = ACTIONS(3256), + [anon_sym_requires] = ACTIONS(3256), + [sym_this] = ACTIONS(3256), + }, + [913] = { + [sym_identifier] = ACTIONS(2993), + [aux_sym_preproc_include_token1] = ACTIONS(2993), + [aux_sym_preproc_def_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token2] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym___extension__] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym___attribute__] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), + [anon_sym___declspec] = ACTIONS(2993), + [anon_sym___based] = ACTIONS(2993), + [anon_sym___cdecl] = ACTIONS(2993), + [anon_sym___clrcall] = ACTIONS(2993), + [anon_sym___stdcall] = ACTIONS(2993), + [anon_sym___fastcall] = ACTIONS(2993), + [anon_sym___thiscall] = ACTIONS(2993), + [anon_sym___vectorcall] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2993), + [anon_sym_unsigned] = ACTIONS(2993), + [anon_sym_long] = ACTIONS(2993), + [anon_sym_short] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_register] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym___inline] = ACTIONS(2993), + [anon_sym___inline__] = ACTIONS(2993), + [anon_sym___forceinline] = ACTIONS(2993), + [anon_sym_thread_local] = ACTIONS(2993), + [anon_sym___thread] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_constexpr] = ACTIONS(2993), + [anon_sym_volatile] = ACTIONS(2993), + [anon_sym_restrict] = ACTIONS(2993), + [anon_sym___restrict__] = ACTIONS(2993), + [anon_sym__Atomic] = ACTIONS(2993), + [anon_sym__Noreturn] = ACTIONS(2993), + [anon_sym_noreturn] = ACTIONS(2993), + [anon_sym_mutable] = ACTIONS(2993), + [anon_sym_constinit] = ACTIONS(2993), + [anon_sym_consteval] = ACTIONS(2993), + [sym_primitive_type] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym___try] = ACTIONS(2993), + [anon_sym___leave] = ACTIONS(2993), + [anon_sym_not] = ACTIONS(2993), + [anon_sym_compl] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2993), + [anon_sym___alignof] = ACTIONS(2993), + [anon_sym__alignof] = ACTIONS(2993), + [anon_sym_alignof] = ACTIONS(2993), + [anon_sym__Alignof] = ACTIONS(2993), + [anon_sym_offsetof] = ACTIONS(2993), + [anon_sym__Generic] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym___asm__] = ACTIONS(2993), + [sym_number_literal] = ACTIONS(2995), + [anon_sym_L_SQUOTE] = ACTIONS(2995), + [anon_sym_u_SQUOTE] = ACTIONS(2995), + [anon_sym_U_SQUOTE] = ACTIONS(2995), + [anon_sym_u8_SQUOTE] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_L_DQUOTE] = ACTIONS(2995), + [anon_sym_u_DQUOTE] = ACTIONS(2995), + [anon_sym_U_DQUOTE] = ACTIONS(2995), + [anon_sym_u8_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [anon_sym_NULL] = ACTIONS(2993), + [anon_sym_nullptr] = ACTIONS(2993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2993), + [anon_sym_virtual] = ACTIONS(2993), + [anon_sym_alignas] = ACTIONS(2993), + [anon_sym_explicit] = ACTIONS(2993), + [anon_sym_typename] = ACTIONS(2993), + [anon_sym_template] = ACTIONS(2993), + [anon_sym_operator] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_delete] = ACTIONS(2993), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_namespace] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_static_assert] = ACTIONS(2993), + [anon_sym_concept] = ACTIONS(2993), + [anon_sym_co_return] = ACTIONS(2993), + [anon_sym_co_yield] = ACTIONS(2993), + [anon_sym_R_DQUOTE] = ACTIONS(2995), + [anon_sym_LR_DQUOTE] = ACTIONS(2995), + [anon_sym_uR_DQUOTE] = ACTIONS(2995), + [anon_sym_UR_DQUOTE] = ACTIONS(2995), + [anon_sym_u8R_DQUOTE] = ACTIONS(2995), + [anon_sym_co_await] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_requires] = ACTIONS(2993), + [sym_this] = ACTIONS(2993), + }, + [914] = { + [sym_identifier] = ACTIONS(3282), + [aux_sym_preproc_include_token1] = ACTIONS(3282), + [aux_sym_preproc_def_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token2] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym___extension__] = ACTIONS(3282), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym___attribute__] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), + [anon_sym___declspec] = ACTIONS(3282), + [anon_sym___based] = ACTIONS(3282), + [anon_sym___cdecl] = ACTIONS(3282), + [anon_sym___clrcall] = ACTIONS(3282), + [anon_sym___stdcall] = ACTIONS(3282), + [anon_sym___fastcall] = ACTIONS(3282), + [anon_sym___thiscall] = ACTIONS(3282), + [anon_sym___vectorcall] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_signed] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym___inline] = ACTIONS(3282), + [anon_sym___inline__] = ACTIONS(3282), + [anon_sym___forceinline] = ACTIONS(3282), + [anon_sym_thread_local] = ACTIONS(3282), + [anon_sym___thread] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_constexpr] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym___restrict__] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym__Noreturn] = ACTIONS(3282), + [anon_sym_noreturn] = ACTIONS(3282), + [anon_sym_mutable] = ACTIONS(3282), + [anon_sym_constinit] = ACTIONS(3282), + [anon_sym_consteval] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym___try] = ACTIONS(3282), + [anon_sym___leave] = ACTIONS(3282), + [anon_sym_not] = ACTIONS(3282), + [anon_sym_compl] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [anon_sym___alignof__] = ACTIONS(3282), + [anon_sym___alignof] = ACTIONS(3282), + [anon_sym__alignof] = ACTIONS(3282), + [anon_sym_alignof] = ACTIONS(3282), + [anon_sym__Alignof] = ACTIONS(3282), + [anon_sym_offsetof] = ACTIONS(3282), + [anon_sym__Generic] = ACTIONS(3282), + [anon_sym_asm] = ACTIONS(3282), + [anon_sym___asm__] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [anon_sym_L_SQUOTE] = ACTIONS(3284), + [anon_sym_u_SQUOTE] = ACTIONS(3284), + [anon_sym_U_SQUOTE] = ACTIONS(3284), + [anon_sym_u8_SQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_L_DQUOTE] = ACTIONS(3284), + [anon_sym_u_DQUOTE] = ACTIONS(3284), + [anon_sym_U_DQUOTE] = ACTIONS(3284), + [anon_sym_u8_DQUOTE] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [anon_sym_NULL] = ACTIONS(3282), + [anon_sym_nullptr] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3282), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_virtual] = ACTIONS(3282), + [anon_sym_alignas] = ACTIONS(3282), + [anon_sym_explicit] = ACTIONS(3282), + [anon_sym_typename] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3282), + [anon_sym_operator] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_static_assert] = ACTIONS(3282), + [anon_sym_concept] = ACTIONS(3282), + [anon_sym_co_return] = ACTIONS(3282), + [anon_sym_co_yield] = ACTIONS(3282), + [anon_sym_R_DQUOTE] = ACTIONS(3284), + [anon_sym_LR_DQUOTE] = ACTIONS(3284), + [anon_sym_uR_DQUOTE] = ACTIONS(3284), + [anon_sym_UR_DQUOTE] = ACTIONS(3284), + [anon_sym_u8R_DQUOTE] = ACTIONS(3284), + [anon_sym_co_await] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_requires] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), + }, + [915] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym___try] = ACTIONS(3004), + [anon_sym___leave] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym___alignof__] = ACTIONS(3004), + [anon_sym___alignof] = ACTIONS(3004), + [anon_sym__alignof] = ACTIONS(3004), + [anon_sym_alignof] = ACTIONS(3004), + [anon_sym__Alignof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), + }, + [916] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym___try] = ACTIONS(3004), + [anon_sym___leave] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym___alignof__] = ACTIONS(3004), + [anon_sym___alignof] = ACTIONS(3004), + [anon_sym__alignof] = ACTIONS(3004), + [anon_sym_alignof] = ACTIONS(3004), + [anon_sym__Alignof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), + }, + [917] = { + [sym_identifier] = ACTIONS(3240), + [aux_sym_preproc_include_token1] = ACTIONS(3240), + [aux_sym_preproc_def_token1] = ACTIONS(3240), + [aux_sym_preproc_if_token1] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3240), + [sym_preproc_directive] = ACTIONS(3240), + [anon_sym_LPAREN2] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_typedef] = ACTIONS(3240), + [anon_sym_extern] = ACTIONS(3240), + [anon_sym___attribute__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3242), + [anon_sym___declspec] = ACTIONS(3240), + [anon_sym___based] = ACTIONS(3240), + [anon_sym___cdecl] = ACTIONS(3240), + [anon_sym___clrcall] = ACTIONS(3240), + [anon_sym___stdcall] = ACTIONS(3240), + [anon_sym___fastcall] = ACTIONS(3240), + [anon_sym___thiscall] = ACTIONS(3240), + [anon_sym___vectorcall] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3240), + [anon_sym_unsigned] = ACTIONS(3240), + [anon_sym_long] = ACTIONS(3240), + [anon_sym_short] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_register] = ACTIONS(3240), + [anon_sym_inline] = ACTIONS(3240), + [anon_sym___inline] = ACTIONS(3240), + [anon_sym___inline__] = ACTIONS(3240), + [anon_sym___forceinline] = ACTIONS(3240), + [anon_sym_thread_local] = ACTIONS(3240), + [anon_sym___thread] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_constexpr] = ACTIONS(3240), + [anon_sym_volatile] = ACTIONS(3240), + [anon_sym_restrict] = ACTIONS(3240), + [anon_sym___restrict__] = ACTIONS(3240), + [anon_sym__Atomic] = ACTIONS(3240), + [anon_sym__Noreturn] = ACTIONS(3240), + [anon_sym_noreturn] = ACTIONS(3240), + [anon_sym_mutable] = ACTIONS(3240), + [anon_sym_constinit] = ACTIONS(3240), + [anon_sym_consteval] = ACTIONS(3240), + [sym_primitive_type] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_case] = ACTIONS(3240), + [anon_sym_default] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_goto] = ACTIONS(3240), + [anon_sym___try] = ACTIONS(3240), + [anon_sym___leave] = ACTIONS(3240), + [anon_sym_not] = ACTIONS(3240), + [anon_sym_compl] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_sizeof] = ACTIONS(3240), + [anon_sym___alignof__] = ACTIONS(3240), + [anon_sym___alignof] = ACTIONS(3240), + [anon_sym__alignof] = ACTIONS(3240), + [anon_sym_alignof] = ACTIONS(3240), + [anon_sym__Alignof] = ACTIONS(3240), + [anon_sym_offsetof] = ACTIONS(3240), + [anon_sym__Generic] = ACTIONS(3240), + [anon_sym_asm] = ACTIONS(3240), + [anon_sym___asm__] = ACTIONS(3240), + [sym_number_literal] = ACTIONS(3242), + [anon_sym_L_SQUOTE] = ACTIONS(3242), + [anon_sym_u_SQUOTE] = ACTIONS(3242), + [anon_sym_U_SQUOTE] = ACTIONS(3242), + [anon_sym_u8_SQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_L_DQUOTE] = ACTIONS(3242), + [anon_sym_u_DQUOTE] = ACTIONS(3242), + [anon_sym_U_DQUOTE] = ACTIONS(3242), + [anon_sym_u8_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [anon_sym_NULL] = ACTIONS(3240), + [anon_sym_nullptr] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3240), + [anon_sym_decltype] = ACTIONS(3240), + [anon_sym_virtual] = ACTIONS(3240), + [anon_sym_alignas] = ACTIONS(3240), + [anon_sym_explicit] = ACTIONS(3240), + [anon_sym_typename] = ACTIONS(3240), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_operator] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_static_assert] = ACTIONS(3240), + [anon_sym_concept] = ACTIONS(3240), + [anon_sym_co_return] = ACTIONS(3240), + [anon_sym_co_yield] = ACTIONS(3240), + [anon_sym_R_DQUOTE] = ACTIONS(3242), + [anon_sym_LR_DQUOTE] = ACTIONS(3242), + [anon_sym_uR_DQUOTE] = ACTIONS(3242), + [anon_sym_UR_DQUOTE] = ACTIONS(3242), + [anon_sym_u8R_DQUOTE] = ACTIONS(3242), + [anon_sym_co_await] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_requires] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), + }, + [918] = { + [sym_identifier] = ACTIONS(3236), + [aux_sym_preproc_include_token1] = ACTIONS(3236), + [aux_sym_preproc_def_token1] = ACTIONS(3236), + [aux_sym_preproc_if_token1] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3236), + [sym_preproc_directive] = ACTIONS(3236), + [anon_sym_LPAREN2] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3236), + [anon_sym_typedef] = ACTIONS(3236), + [anon_sym_extern] = ACTIONS(3236), + [anon_sym___attribute__] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3238), + [anon_sym___declspec] = ACTIONS(3236), + [anon_sym___based] = ACTIONS(3236), + [anon_sym___cdecl] = ACTIONS(3236), + [anon_sym___clrcall] = ACTIONS(3236), + [anon_sym___stdcall] = ACTIONS(3236), + [anon_sym___fastcall] = ACTIONS(3236), + [anon_sym___thiscall] = ACTIONS(3236), + [anon_sym___vectorcall] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_signed] = ACTIONS(3236), + [anon_sym_unsigned] = ACTIONS(3236), + [anon_sym_long] = ACTIONS(3236), + [anon_sym_short] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_register] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym___inline] = ACTIONS(3236), + [anon_sym___inline__] = ACTIONS(3236), + [anon_sym___forceinline] = ACTIONS(3236), + [anon_sym_thread_local] = ACTIONS(3236), + [anon_sym___thread] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_constexpr] = ACTIONS(3236), + [anon_sym_volatile] = ACTIONS(3236), + [anon_sym_restrict] = ACTIONS(3236), + [anon_sym___restrict__] = ACTIONS(3236), + [anon_sym__Atomic] = ACTIONS(3236), + [anon_sym__Noreturn] = ACTIONS(3236), + [anon_sym_noreturn] = ACTIONS(3236), + [anon_sym_mutable] = ACTIONS(3236), + [anon_sym_constinit] = ACTIONS(3236), + [anon_sym_consteval] = ACTIONS(3236), + [sym_primitive_type] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_case] = ACTIONS(3236), + [anon_sym_default] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_goto] = ACTIONS(3236), + [anon_sym___try] = ACTIONS(3236), + [anon_sym___leave] = ACTIONS(3236), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_sizeof] = ACTIONS(3236), + [anon_sym___alignof__] = ACTIONS(3236), + [anon_sym___alignof] = ACTIONS(3236), + [anon_sym__alignof] = ACTIONS(3236), + [anon_sym_alignof] = ACTIONS(3236), + [anon_sym__Alignof] = ACTIONS(3236), + [anon_sym_offsetof] = ACTIONS(3236), + [anon_sym__Generic] = ACTIONS(3236), + [anon_sym_asm] = ACTIONS(3236), + [anon_sym___asm__] = ACTIONS(3236), + [sym_number_literal] = ACTIONS(3238), + [anon_sym_L_SQUOTE] = ACTIONS(3238), + [anon_sym_u_SQUOTE] = ACTIONS(3238), + [anon_sym_U_SQUOTE] = ACTIONS(3238), + [anon_sym_u8_SQUOTE] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_L_DQUOTE] = ACTIONS(3238), + [anon_sym_u_DQUOTE] = ACTIONS(3238), + [anon_sym_U_DQUOTE] = ACTIONS(3238), + [anon_sym_u8_DQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [anon_sym_NULL] = ACTIONS(3236), + [anon_sym_nullptr] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3236), + [anon_sym_virtual] = ACTIONS(3236), + [anon_sym_alignas] = ACTIONS(3236), + [anon_sym_explicit] = ACTIONS(3236), + [anon_sym_typename] = ACTIONS(3236), + [anon_sym_template] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_static_assert] = ACTIONS(3236), + [anon_sym_concept] = ACTIONS(3236), + [anon_sym_co_return] = ACTIONS(3236), + [anon_sym_co_yield] = ACTIONS(3236), + [anon_sym_R_DQUOTE] = ACTIONS(3238), + [anon_sym_LR_DQUOTE] = ACTIONS(3238), + [anon_sym_uR_DQUOTE] = ACTIONS(3238), + [anon_sym_UR_DQUOTE] = ACTIONS(3238), + [anon_sym_u8R_DQUOTE] = ACTIONS(3238), + [anon_sym_co_await] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_requires] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), + }, + [919] = { + [sym_identifier] = ACTIONS(3016), + [aux_sym_preproc_include_token1] = ACTIONS(3016), + [aux_sym_preproc_def_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3016), + [sym_preproc_directive] = ACTIONS(3016), + [anon_sym_LPAREN2] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_typedef] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym___attribute__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3018), + [anon_sym___declspec] = ACTIONS(3016), + [anon_sym___based] = ACTIONS(3016), + [anon_sym___cdecl] = ACTIONS(3016), + [anon_sym___clrcall] = ACTIONS(3016), + [anon_sym___stdcall] = ACTIONS(3016), + [anon_sym___fastcall] = ACTIONS(3016), + [anon_sym___thiscall] = ACTIONS(3016), + [anon_sym___vectorcall] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_signed] = ACTIONS(3016), + [anon_sym_unsigned] = ACTIONS(3016), + [anon_sym_long] = ACTIONS(3016), + [anon_sym_short] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_register] = ACTIONS(3016), + [anon_sym_inline] = ACTIONS(3016), + [anon_sym___inline] = ACTIONS(3016), + [anon_sym___inline__] = ACTIONS(3016), + [anon_sym___forceinline] = ACTIONS(3016), + [anon_sym_thread_local] = ACTIONS(3016), + [anon_sym___thread] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_constexpr] = ACTIONS(3016), + [anon_sym_volatile] = ACTIONS(3016), + [anon_sym_restrict] = ACTIONS(3016), + [anon_sym___restrict__] = ACTIONS(3016), + [anon_sym__Atomic] = ACTIONS(3016), + [anon_sym__Noreturn] = ACTIONS(3016), + [anon_sym_noreturn] = ACTIONS(3016), + [anon_sym_mutable] = ACTIONS(3016), + [anon_sym_constinit] = ACTIONS(3016), + [anon_sym_consteval] = ACTIONS(3016), + [sym_primitive_type] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_class] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym___try] = ACTIONS(3016), + [anon_sym___leave] = ACTIONS(3016), + [anon_sym_not] = ACTIONS(3016), + [anon_sym_compl] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_sizeof] = ACTIONS(3016), + [anon_sym___alignof__] = ACTIONS(3016), + [anon_sym___alignof] = ACTIONS(3016), + [anon_sym__alignof] = ACTIONS(3016), + [anon_sym_alignof] = ACTIONS(3016), + [anon_sym__Alignof] = ACTIONS(3016), + [anon_sym_offsetof] = ACTIONS(3016), + [anon_sym__Generic] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym___asm__] = ACTIONS(3016), + [sym_number_literal] = ACTIONS(3018), + [anon_sym_L_SQUOTE] = ACTIONS(3018), + [anon_sym_u_SQUOTE] = ACTIONS(3018), + [anon_sym_U_SQUOTE] = ACTIONS(3018), + [anon_sym_u8_SQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_L_DQUOTE] = ACTIONS(3018), + [anon_sym_u_DQUOTE] = ACTIONS(3018), + [anon_sym_U_DQUOTE] = ACTIONS(3018), + [anon_sym_u8_DQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_nullptr] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3016), + [anon_sym_decltype] = ACTIONS(3016), + [anon_sym_virtual] = ACTIONS(3016), + [anon_sym_alignas] = ACTIONS(3016), + [anon_sym_explicit] = ACTIONS(3016), + [anon_sym_typename] = ACTIONS(3016), + [anon_sym_template] = ACTIONS(3016), + [anon_sym_operator] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_delete] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_using] = ACTIONS(3016), + [anon_sym_static_assert] = ACTIONS(3016), + [anon_sym_concept] = ACTIONS(3016), + [anon_sym_co_return] = ACTIONS(3016), + [anon_sym_co_yield] = ACTIONS(3016), + [anon_sym_R_DQUOTE] = ACTIONS(3018), + [anon_sym_LR_DQUOTE] = ACTIONS(3018), + [anon_sym_uR_DQUOTE] = ACTIONS(3018), + [anon_sym_UR_DQUOTE] = ACTIONS(3018), + [anon_sym_u8R_DQUOTE] = ACTIONS(3018), + [anon_sym_co_await] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3016), + [sym_this] = ACTIONS(3016), + }, + [920] = { + [sym_identifier] = ACTIONS(3012), + [aux_sym_preproc_include_token1] = ACTIONS(3012), + [aux_sym_preproc_def_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3012), + [sym_preproc_directive] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym___extension__] = ACTIONS(3012), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym___based] = ACTIONS(3012), + [anon_sym___cdecl] = ACTIONS(3012), + [anon_sym___clrcall] = ACTIONS(3012), + [anon_sym___stdcall] = ACTIONS(3012), + [anon_sym___fastcall] = ACTIONS(3012), + [anon_sym___thiscall] = ACTIONS(3012), + [anon_sym___vectorcall] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_RBRACE] = ACTIONS(3014), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym___inline] = ACTIONS(3012), + [anon_sym___inline__] = ACTIONS(3012), + [anon_sym___forceinline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym___thread] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym___try] = ACTIONS(3012), + [anon_sym___leave] = ACTIONS(3012), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_sizeof] = ACTIONS(3012), + [anon_sym___alignof__] = ACTIONS(3012), + [anon_sym___alignof] = ACTIONS(3012), + [anon_sym__alignof] = ACTIONS(3012), + [anon_sym_alignof] = ACTIONS(3012), + [anon_sym__Alignof] = ACTIONS(3012), + [anon_sym_offsetof] = ACTIONS(3012), + [anon_sym__Generic] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym___asm__] = ACTIONS(3012), + [sym_number_literal] = ACTIONS(3014), + [anon_sym_L_SQUOTE] = ACTIONS(3014), + [anon_sym_u_SQUOTE] = ACTIONS(3014), + [anon_sym_U_SQUOTE] = ACTIONS(3014), + [anon_sym_u8_SQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_L_DQUOTE] = ACTIONS(3014), + [anon_sym_u_DQUOTE] = ACTIONS(3014), + [anon_sym_U_DQUOTE] = ACTIONS(3014), + [anon_sym_u8_DQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_nullptr] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_alignas] = ACTIONS(3012), + [anon_sym_explicit] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_operator] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_static_assert] = ACTIONS(3012), + [anon_sym_concept] = ACTIONS(3012), + [anon_sym_co_return] = ACTIONS(3012), + [anon_sym_co_yield] = ACTIONS(3012), + [anon_sym_R_DQUOTE] = ACTIONS(3014), + [anon_sym_LR_DQUOTE] = ACTIONS(3014), + [anon_sym_uR_DQUOTE] = ACTIONS(3014), + [anon_sym_UR_DQUOTE] = ACTIONS(3014), + [anon_sym_u8R_DQUOTE] = ACTIONS(3014), + [anon_sym_co_await] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_requires] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), + }, + [921] = { + [sym_identifier] = ACTIONS(3203), + [aux_sym_preproc_include_token1] = ACTIONS(3203), + [aux_sym_preproc_def_token1] = ACTIONS(3203), + [aux_sym_preproc_if_token1] = ACTIONS(3203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), + [sym_preproc_directive] = ACTIONS(3203), + [anon_sym_LPAREN2] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym___extension__] = ACTIONS(3203), + [anon_sym_typedef] = ACTIONS(3203), + [anon_sym_extern] = ACTIONS(3203), + [anon_sym___attribute__] = ACTIONS(3203), + [anon_sym_COLON_COLON] = ACTIONS(3205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), + [anon_sym___declspec] = ACTIONS(3203), + [anon_sym___based] = ACTIONS(3203), + [anon_sym___cdecl] = ACTIONS(3203), + [anon_sym___clrcall] = ACTIONS(3203), + [anon_sym___stdcall] = ACTIONS(3203), + [anon_sym___fastcall] = ACTIONS(3203), + [anon_sym___thiscall] = ACTIONS(3203), + [anon_sym___vectorcall] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_signed] = ACTIONS(3203), + [anon_sym_unsigned] = ACTIONS(3203), + [anon_sym_long] = ACTIONS(3203), + [anon_sym_short] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3203), + [anon_sym_static] = ACTIONS(3203), + [anon_sym_register] = ACTIONS(3203), + [anon_sym_inline] = ACTIONS(3203), + [anon_sym___inline] = ACTIONS(3203), + [anon_sym___inline__] = ACTIONS(3203), + [anon_sym___forceinline] = ACTIONS(3203), + [anon_sym_thread_local] = ACTIONS(3203), + [anon_sym___thread] = ACTIONS(3203), + [anon_sym_const] = ACTIONS(3203), + [anon_sym_constexpr] = ACTIONS(3203), + [anon_sym_volatile] = ACTIONS(3203), + [anon_sym_restrict] = ACTIONS(3203), + [anon_sym___restrict__] = ACTIONS(3203), + [anon_sym__Atomic] = ACTIONS(3203), + [anon_sym__Noreturn] = ACTIONS(3203), + [anon_sym_noreturn] = ACTIONS(3203), + [anon_sym_mutable] = ACTIONS(3203), + [anon_sym_constinit] = ACTIONS(3203), + [anon_sym_consteval] = ACTIONS(3203), + [sym_primitive_type] = ACTIONS(3203), + [anon_sym_enum] = ACTIONS(3203), + [anon_sym_class] = ACTIONS(3203), + [anon_sym_struct] = ACTIONS(3203), + [anon_sym_union] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_switch] = ACTIONS(3203), + [anon_sym_case] = ACTIONS(3203), + [anon_sym_default] = ACTIONS(3203), + [anon_sym_while] = ACTIONS(3203), + [anon_sym_do] = ACTIONS(3203), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_goto] = ACTIONS(3203), + [anon_sym___try] = ACTIONS(3203), + [anon_sym___leave] = ACTIONS(3203), + [anon_sym_not] = ACTIONS(3203), + [anon_sym_compl] = ACTIONS(3203), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(3203), + [anon_sym___alignof__] = ACTIONS(3203), + [anon_sym___alignof] = ACTIONS(3203), + [anon_sym__alignof] = ACTIONS(3203), + [anon_sym_alignof] = ACTIONS(3203), + [anon_sym__Alignof] = ACTIONS(3203), + [anon_sym_offsetof] = ACTIONS(3203), + [anon_sym__Generic] = ACTIONS(3203), + [anon_sym_asm] = ACTIONS(3203), + [anon_sym___asm__] = ACTIONS(3203), + [sym_number_literal] = ACTIONS(3205), + [anon_sym_L_SQUOTE] = ACTIONS(3205), + [anon_sym_u_SQUOTE] = ACTIONS(3205), + [anon_sym_U_SQUOTE] = ACTIONS(3205), + [anon_sym_u8_SQUOTE] = ACTIONS(3205), + [anon_sym_SQUOTE] = ACTIONS(3205), + [anon_sym_L_DQUOTE] = ACTIONS(3205), + [anon_sym_u_DQUOTE] = ACTIONS(3205), + [anon_sym_U_DQUOTE] = ACTIONS(3205), + [anon_sym_u8_DQUOTE] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [sym_true] = ACTIONS(3203), + [sym_false] = ACTIONS(3203), + [anon_sym_NULL] = ACTIONS(3203), + [anon_sym_nullptr] = ACTIONS(3203), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3203), + [anon_sym_decltype] = ACTIONS(3203), + [anon_sym_virtual] = ACTIONS(3203), + [anon_sym_alignas] = ACTIONS(3203), + [anon_sym_explicit] = ACTIONS(3203), + [anon_sym_typename] = ACTIONS(3203), + [anon_sym_template] = ACTIONS(3203), + [anon_sym_operator] = ACTIONS(3203), + [anon_sym_try] = ACTIONS(3203), + [anon_sym_delete] = ACTIONS(3203), + [anon_sym_throw] = ACTIONS(3203), + [anon_sym_namespace] = ACTIONS(3203), + [anon_sym_using] = ACTIONS(3203), + [anon_sym_static_assert] = ACTIONS(3203), + [anon_sym_concept] = ACTIONS(3203), + [anon_sym_co_return] = ACTIONS(3203), + [anon_sym_co_yield] = ACTIONS(3203), + [anon_sym_R_DQUOTE] = ACTIONS(3205), + [anon_sym_LR_DQUOTE] = ACTIONS(3205), + [anon_sym_uR_DQUOTE] = ACTIONS(3205), + [anon_sym_UR_DQUOTE] = ACTIONS(3205), + [anon_sym_u8R_DQUOTE] = ACTIONS(3205), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3203), + [anon_sym_requires] = ACTIONS(3203), + [sym_this] = ACTIONS(3203), + }, + [922] = { + [sym_identifier] = ACTIONS(3266), + [aux_sym_preproc_include_token1] = ACTIONS(3266), + [aux_sym_preproc_def_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token2] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), + [sym_preproc_directive] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym___extension__] = ACTIONS(3266), + [anon_sym_typedef] = ACTIONS(3266), + [anon_sym_extern] = ACTIONS(3266), + [anon_sym___attribute__] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(3268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), + [anon_sym___declspec] = ACTIONS(3266), + [anon_sym___based] = ACTIONS(3266), + [anon_sym___cdecl] = ACTIONS(3266), + [anon_sym___clrcall] = ACTIONS(3266), + [anon_sym___stdcall] = ACTIONS(3266), + [anon_sym___fastcall] = ACTIONS(3266), + [anon_sym___thiscall] = ACTIONS(3266), + [anon_sym___vectorcall] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_signed] = ACTIONS(3266), + [anon_sym_unsigned] = ACTIONS(3266), + [anon_sym_long] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3266), + [anon_sym_inline] = ACTIONS(3266), + [anon_sym___inline] = ACTIONS(3266), + [anon_sym___inline__] = ACTIONS(3266), + [anon_sym___forceinline] = ACTIONS(3266), + [anon_sym_thread_local] = ACTIONS(3266), + [anon_sym___thread] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_constexpr] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym___restrict__] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym__Noreturn] = ACTIONS(3266), + [anon_sym_noreturn] = ACTIONS(3266), + [anon_sym_mutable] = ACTIONS(3266), + [anon_sym_constinit] = ACTIONS(3266), + [anon_sym_consteval] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym___try] = ACTIONS(3266), + [anon_sym___leave] = ACTIONS(3266), + [anon_sym_not] = ACTIONS(3266), + [anon_sym_compl] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_sizeof] = ACTIONS(3266), + [anon_sym___alignof__] = ACTIONS(3266), + [anon_sym___alignof] = ACTIONS(3266), + [anon_sym__alignof] = ACTIONS(3266), + [anon_sym_alignof] = ACTIONS(3266), + [anon_sym__Alignof] = ACTIONS(3266), + [anon_sym_offsetof] = ACTIONS(3266), + [anon_sym__Generic] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym___asm__] = ACTIONS(3266), + [sym_number_literal] = ACTIONS(3268), + [anon_sym_L_SQUOTE] = ACTIONS(3268), + [anon_sym_u_SQUOTE] = ACTIONS(3268), + [anon_sym_U_SQUOTE] = ACTIONS(3268), + [anon_sym_u8_SQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_L_DQUOTE] = ACTIONS(3268), + [anon_sym_u_DQUOTE] = ACTIONS(3268), + [anon_sym_U_DQUOTE] = ACTIONS(3268), + [anon_sym_u8_DQUOTE] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [anon_sym_NULL] = ACTIONS(3266), + [anon_sym_nullptr] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3266), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_virtual] = ACTIONS(3266), + [anon_sym_alignas] = ACTIONS(3266), + [anon_sym_explicit] = ACTIONS(3266), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3266), + [anon_sym_operator] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_static_assert] = ACTIONS(3266), + [anon_sym_concept] = ACTIONS(3266), + [anon_sym_co_return] = ACTIONS(3266), + [anon_sym_co_yield] = ACTIONS(3266), + [anon_sym_R_DQUOTE] = ACTIONS(3268), + [anon_sym_LR_DQUOTE] = ACTIONS(3268), + [anon_sym_uR_DQUOTE] = ACTIONS(3268), + [anon_sym_UR_DQUOTE] = ACTIONS(3268), + [anon_sym_u8R_DQUOTE] = ACTIONS(3268), + [anon_sym_co_await] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_requires] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), + }, + [923] = { [sym_identifier] = ACTIONS(3274), [aux_sym_preproc_include_token1] = ACTIONS(3274), [aux_sym_preproc_def_token1] = ACTIONS(3274), [aux_sym_preproc_if_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token2] = ACTIONS(3274), [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), [sym_preproc_directive] = ACTIONS(3274), @@ -223102,6 +216623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3276), [anon_sym_AMP_AMP] = ACTIONS(3276), [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3276), [anon_sym___extension__] = ACTIONS(3274), [anon_sym_typedef] = ACTIONS(3274), [anon_sym_extern] = ACTIONS(3274), @@ -223157,6 +216679,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(3274), [anon_sym_continue] = ACTIONS(3274), [anon_sym_goto] = ACTIONS(3274), + [anon_sym___try] = ACTIONS(3274), + [anon_sym___leave] = ACTIONS(3274), [anon_sym_not] = ACTIONS(3274), [anon_sym_compl] = ACTIONS(3274), [anon_sym_DASH_DASH] = ACTIONS(3276), @@ -223214,1173 +216738,540 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3274), [sym_this] = ACTIONS(3274), }, - [976] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3788), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [977] = { - [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(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(970), - [sym_field_declaration] = STATE(970), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(970), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(970), - [sym__constructor_specifiers] = STATE(2005), - [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(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(970), - [sym_alias_declaration] = STATE(970), - [sym_static_assert_declaration] = STATE(970), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(970), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3790), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [978] = { - [ts_builtin_sym_end] = ACTIONS(3282), - [sym_identifier] = ACTIONS(3280), - [aux_sym_preproc_include_token1] = ACTIONS(3280), - [aux_sym_preproc_def_token1] = ACTIONS(3280), - [aux_sym_preproc_if_token1] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3280), - [sym_preproc_directive] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_STAR] = ACTIONS(3282), - [anon_sym_AMP_AMP] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym___extension__] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3282), - [anon_sym___declspec] = ACTIONS(3280), - [anon_sym___based] = ACTIONS(3280), - [anon_sym___cdecl] = ACTIONS(3280), - [anon_sym___clrcall] = ACTIONS(3280), - [anon_sym___stdcall] = ACTIONS(3280), - [anon_sym___fastcall] = ACTIONS(3280), - [anon_sym___thiscall] = ACTIONS(3280), - [anon_sym___vectorcall] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_signed] = ACTIONS(3280), - [anon_sym_unsigned] = ACTIONS(3280), - [anon_sym_long] = ACTIONS(3280), - [anon_sym_short] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_register] = ACTIONS(3280), - [anon_sym_inline] = ACTIONS(3280), - [anon_sym___inline] = ACTIONS(3280), - [anon_sym___inline__] = ACTIONS(3280), - [anon_sym___forceinline] = ACTIONS(3280), - [anon_sym_thread_local] = ACTIONS(3280), - [anon_sym___thread] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_constexpr] = ACTIONS(3280), - [anon_sym_volatile] = ACTIONS(3280), - [anon_sym_restrict] = ACTIONS(3280), - [anon_sym___restrict__] = ACTIONS(3280), - [anon_sym__Atomic] = ACTIONS(3280), - [anon_sym__Noreturn] = ACTIONS(3280), - [anon_sym_noreturn] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [sym_primitive_type] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_struct] = ACTIONS(3280), - [anon_sym_union] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_case] = ACTIONS(3280), - [anon_sym_default] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_goto] = ACTIONS(3280), - [anon_sym_not] = ACTIONS(3280), - [anon_sym_compl] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_sizeof] = ACTIONS(3280), - [anon_sym___alignof__] = ACTIONS(3280), - [anon_sym___alignof] = ACTIONS(3280), - [anon_sym__alignof] = ACTIONS(3280), - [anon_sym_alignof] = ACTIONS(3280), - [anon_sym__Alignof] = ACTIONS(3280), - [anon_sym_offsetof] = ACTIONS(3280), - [anon_sym__Generic] = ACTIONS(3280), - [anon_sym_asm] = ACTIONS(3280), - [anon_sym___asm__] = ACTIONS(3280), - [sym_number_literal] = ACTIONS(3282), - [anon_sym_L_SQUOTE] = ACTIONS(3282), - [anon_sym_u_SQUOTE] = ACTIONS(3282), - [anon_sym_U_SQUOTE] = ACTIONS(3282), - [anon_sym_u8_SQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_L_DQUOTE] = ACTIONS(3282), - [anon_sym_u_DQUOTE] = ACTIONS(3282), - [anon_sym_U_DQUOTE] = ACTIONS(3282), - [anon_sym_u8_DQUOTE] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym_true] = ACTIONS(3280), - [sym_false] = ACTIONS(3280), - [anon_sym_NULL] = ACTIONS(3280), - [anon_sym_nullptr] = ACTIONS(3280), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3280), - [anon_sym_decltype] = ACTIONS(3280), - [anon_sym_virtual] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym_explicit] = ACTIONS(3280), - [anon_sym_typename] = ACTIONS(3280), - [anon_sym_template] = ACTIONS(3280), - [anon_sym_operator] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_namespace] = ACTIONS(3280), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_static_assert] = ACTIONS(3280), - [anon_sym_concept] = ACTIONS(3280), - [anon_sym_co_return] = ACTIONS(3280), - [anon_sym_co_yield] = ACTIONS(3280), - [anon_sym_R_DQUOTE] = ACTIONS(3282), - [anon_sym_LR_DQUOTE] = ACTIONS(3282), - [anon_sym_uR_DQUOTE] = ACTIONS(3282), - [anon_sym_UR_DQUOTE] = ACTIONS(3282), - [anon_sym_u8R_DQUOTE] = ACTIONS(3282), - [anon_sym_co_await] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_requires] = ACTIONS(3280), - [sym_this] = ACTIONS(3280), - }, - [979] = { - [ts_builtin_sym_end] = ACTIONS(3060), - [sym_identifier] = ACTIONS(3058), - [aux_sym_preproc_include_token1] = ACTIONS(3058), - [aux_sym_preproc_def_token1] = ACTIONS(3058), - [aux_sym_preproc_if_token1] = ACTIONS(3058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3058), - [sym_preproc_directive] = ACTIONS(3058), - [anon_sym_LPAREN2] = ACTIONS(3060), - [anon_sym_BANG] = ACTIONS(3060), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym___extension__] = ACTIONS(3058), - [anon_sym_typedef] = ACTIONS(3058), - [anon_sym_extern] = ACTIONS(3058), - [anon_sym___attribute__] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(3060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3060), - [anon_sym___declspec] = ACTIONS(3058), - [anon_sym___based] = ACTIONS(3058), - [anon_sym___cdecl] = ACTIONS(3058), - [anon_sym___clrcall] = ACTIONS(3058), - [anon_sym___stdcall] = ACTIONS(3058), - [anon_sym___fastcall] = ACTIONS(3058), - [anon_sym___thiscall] = ACTIONS(3058), - [anon_sym___vectorcall] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_signed] = ACTIONS(3058), - [anon_sym_unsigned] = ACTIONS(3058), - [anon_sym_long] = ACTIONS(3058), - [anon_sym_short] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3058), - [anon_sym_static] = ACTIONS(3058), - [anon_sym_register] = ACTIONS(3058), - [anon_sym_inline] = ACTIONS(3058), - [anon_sym___inline] = ACTIONS(3058), - [anon_sym___inline__] = ACTIONS(3058), - [anon_sym___forceinline] = ACTIONS(3058), - [anon_sym_thread_local] = ACTIONS(3058), - [anon_sym___thread] = ACTIONS(3058), - [anon_sym_const] = ACTIONS(3058), - [anon_sym_constexpr] = ACTIONS(3058), - [anon_sym_volatile] = ACTIONS(3058), - [anon_sym_restrict] = ACTIONS(3058), - [anon_sym___restrict__] = ACTIONS(3058), - [anon_sym__Atomic] = ACTIONS(3058), - [anon_sym__Noreturn] = ACTIONS(3058), - [anon_sym_noreturn] = ACTIONS(3058), - [anon_sym_mutable] = ACTIONS(3058), - [anon_sym_constinit] = ACTIONS(3058), - [anon_sym_consteval] = ACTIONS(3058), - [sym_primitive_type] = ACTIONS(3058), - [anon_sym_enum] = ACTIONS(3058), - [anon_sym_class] = ACTIONS(3058), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_union] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_switch] = ACTIONS(3058), - [anon_sym_case] = ACTIONS(3058), - [anon_sym_default] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3058), - [anon_sym_do] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_goto] = ACTIONS(3058), - [anon_sym_not] = ACTIONS(3058), - [anon_sym_compl] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_sizeof] = ACTIONS(3058), - [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(3058), - [anon_sym__Generic] = ACTIONS(3058), - [anon_sym_asm] = ACTIONS(3058), - [anon_sym___asm__] = ACTIONS(3058), - [sym_number_literal] = ACTIONS(3060), - [anon_sym_L_SQUOTE] = ACTIONS(3060), - [anon_sym_u_SQUOTE] = ACTIONS(3060), - [anon_sym_U_SQUOTE] = ACTIONS(3060), - [anon_sym_u8_SQUOTE] = ACTIONS(3060), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_L_DQUOTE] = ACTIONS(3060), - [anon_sym_u_DQUOTE] = ACTIONS(3060), - [anon_sym_U_DQUOTE] = ACTIONS(3060), - [anon_sym_u8_DQUOTE] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3060), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [anon_sym_NULL] = ACTIONS(3058), - [anon_sym_nullptr] = ACTIONS(3058), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3058), - [anon_sym_decltype] = ACTIONS(3058), - [anon_sym_virtual] = ACTIONS(3058), - [anon_sym_alignas] = ACTIONS(3058), - [anon_sym_explicit] = ACTIONS(3058), - [anon_sym_typename] = ACTIONS(3058), - [anon_sym_template] = ACTIONS(3058), - [anon_sym_operator] = ACTIONS(3058), - [anon_sym_try] = ACTIONS(3058), - [anon_sym_delete] = ACTIONS(3058), - [anon_sym_throw] = ACTIONS(3058), - [anon_sym_namespace] = ACTIONS(3058), - [anon_sym_using] = ACTIONS(3058), - [anon_sym_static_assert] = ACTIONS(3058), - [anon_sym_concept] = ACTIONS(3058), - [anon_sym_co_return] = ACTIONS(3058), - [anon_sym_co_yield] = ACTIONS(3058), - [anon_sym_R_DQUOTE] = ACTIONS(3060), - [anon_sym_LR_DQUOTE] = ACTIONS(3060), - [anon_sym_uR_DQUOTE] = ACTIONS(3060), - [anon_sym_UR_DQUOTE] = ACTIONS(3060), - [anon_sym_u8R_DQUOTE] = ACTIONS(3060), - [anon_sym_co_await] = ACTIONS(3058), - [anon_sym_new] = ACTIONS(3058), - [anon_sym_requires] = ACTIONS(3058), - [sym_this] = ACTIONS(3058), - }, - [980] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3792), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [981] = { - [ts_builtin_sym_end] = ACTIONS(3074), - [sym_identifier] = ACTIONS(3072), - [aux_sym_preproc_include_token1] = ACTIONS(3072), - [aux_sym_preproc_def_token1] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3072), - [sym_preproc_directive] = ACTIONS(3072), - [anon_sym_LPAREN2] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym___extension__] = ACTIONS(3072), - [anon_sym_typedef] = ACTIONS(3072), - [anon_sym_extern] = ACTIONS(3072), - [anon_sym___attribute__] = ACTIONS(3072), - [anon_sym_COLON_COLON] = ACTIONS(3074), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3074), - [anon_sym___declspec] = ACTIONS(3072), - [anon_sym___based] = ACTIONS(3072), - [anon_sym___cdecl] = ACTIONS(3072), - [anon_sym___clrcall] = ACTIONS(3072), - [anon_sym___stdcall] = ACTIONS(3072), - [anon_sym___fastcall] = ACTIONS(3072), - [anon_sym___thiscall] = ACTIONS(3072), - [anon_sym___vectorcall] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_signed] = ACTIONS(3072), - [anon_sym_unsigned] = ACTIONS(3072), - [anon_sym_long] = ACTIONS(3072), - [anon_sym_short] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_register] = ACTIONS(3072), - [anon_sym_inline] = ACTIONS(3072), - [anon_sym___inline] = ACTIONS(3072), - [anon_sym___inline__] = ACTIONS(3072), - [anon_sym___forceinline] = ACTIONS(3072), - [anon_sym_thread_local] = ACTIONS(3072), - [anon_sym___thread] = ACTIONS(3072), - [anon_sym_const] = ACTIONS(3072), - [anon_sym_constexpr] = ACTIONS(3072), - [anon_sym_volatile] = ACTIONS(3072), - [anon_sym_restrict] = ACTIONS(3072), - [anon_sym___restrict__] = ACTIONS(3072), - [anon_sym__Atomic] = ACTIONS(3072), - [anon_sym__Noreturn] = ACTIONS(3072), - [anon_sym_noreturn] = ACTIONS(3072), - [anon_sym_mutable] = ACTIONS(3072), - [anon_sym_constinit] = ACTIONS(3072), - [anon_sym_consteval] = ACTIONS(3072), - [sym_primitive_type] = ACTIONS(3072), - [anon_sym_enum] = ACTIONS(3072), - [anon_sym_class] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_switch] = ACTIONS(3072), - [anon_sym_case] = ACTIONS(3072), - [anon_sym_default] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_break] = ACTIONS(3072), - [anon_sym_continue] = ACTIONS(3072), - [anon_sym_goto] = ACTIONS(3072), - [anon_sym_not] = ACTIONS(3072), - [anon_sym_compl] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_sizeof] = ACTIONS(3072), - [anon_sym___alignof__] = ACTIONS(3072), - [anon_sym___alignof] = ACTIONS(3072), - [anon_sym__alignof] = ACTIONS(3072), - [anon_sym_alignof] = ACTIONS(3072), - [anon_sym__Alignof] = ACTIONS(3072), - [anon_sym_offsetof] = ACTIONS(3072), - [anon_sym__Generic] = ACTIONS(3072), - [anon_sym_asm] = ACTIONS(3072), - [anon_sym___asm__] = ACTIONS(3072), - [sym_number_literal] = ACTIONS(3074), - [anon_sym_L_SQUOTE] = ACTIONS(3074), - [anon_sym_u_SQUOTE] = ACTIONS(3074), - [anon_sym_U_SQUOTE] = ACTIONS(3074), - [anon_sym_u8_SQUOTE] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(3074), - [anon_sym_L_DQUOTE] = ACTIONS(3074), - [anon_sym_u_DQUOTE] = ACTIONS(3074), - [anon_sym_U_DQUOTE] = ACTIONS(3074), - [anon_sym_u8_DQUOTE] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3074), - [sym_true] = ACTIONS(3072), - [sym_false] = ACTIONS(3072), - [anon_sym_NULL] = ACTIONS(3072), - [anon_sym_nullptr] = ACTIONS(3072), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3072), - [anon_sym_decltype] = ACTIONS(3072), - [anon_sym_virtual] = ACTIONS(3072), - [anon_sym_alignas] = ACTIONS(3072), - [anon_sym_explicit] = ACTIONS(3072), - [anon_sym_typename] = ACTIONS(3072), - [anon_sym_template] = ACTIONS(3072), - [anon_sym_operator] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_delete] = ACTIONS(3072), - [anon_sym_throw] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_using] = ACTIONS(3072), - [anon_sym_static_assert] = ACTIONS(3072), - [anon_sym_concept] = ACTIONS(3072), - [anon_sym_co_return] = ACTIONS(3072), - [anon_sym_co_yield] = ACTIONS(3072), - [anon_sym_R_DQUOTE] = ACTIONS(3074), - [anon_sym_LR_DQUOTE] = ACTIONS(3074), - [anon_sym_uR_DQUOTE] = ACTIONS(3074), - [anon_sym_UR_DQUOTE] = ACTIONS(3074), - [anon_sym_u8R_DQUOTE] = ACTIONS(3074), - [anon_sym_co_await] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_requires] = ACTIONS(3072), - [sym_this] = ACTIONS(3072), + [924] = { + [sym_identifier] = ACTIONS(3278), + [aux_sym_preproc_include_token1] = ACTIONS(3278), + [aux_sym_preproc_def_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token2] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_LPAREN2] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym___extension__] = ACTIONS(3278), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym___attribute__] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), + [anon_sym___declspec] = ACTIONS(3278), + [anon_sym___based] = ACTIONS(3278), + [anon_sym___cdecl] = ACTIONS(3278), + [anon_sym___clrcall] = ACTIONS(3278), + [anon_sym___stdcall] = ACTIONS(3278), + [anon_sym___fastcall] = ACTIONS(3278), + [anon_sym___thiscall] = ACTIONS(3278), + [anon_sym___vectorcall] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_signed] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym___inline] = ACTIONS(3278), + [anon_sym___inline__] = ACTIONS(3278), + [anon_sym___forceinline] = ACTIONS(3278), + [anon_sym_thread_local] = ACTIONS(3278), + [anon_sym___thread] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_constexpr] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym___restrict__] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym__Noreturn] = ACTIONS(3278), + [anon_sym_noreturn] = ACTIONS(3278), + [anon_sym_mutable] = ACTIONS(3278), + [anon_sym_constinit] = ACTIONS(3278), + [anon_sym_consteval] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym___try] = ACTIONS(3278), + [anon_sym___leave] = ACTIONS(3278), + [anon_sym_not] = ACTIONS(3278), + [anon_sym_compl] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [anon_sym___alignof__] = ACTIONS(3278), + [anon_sym___alignof] = ACTIONS(3278), + [anon_sym__alignof] = ACTIONS(3278), + [anon_sym_alignof] = ACTIONS(3278), + [anon_sym__Alignof] = ACTIONS(3278), + [anon_sym_offsetof] = ACTIONS(3278), + [anon_sym__Generic] = ACTIONS(3278), + [anon_sym_asm] = ACTIONS(3278), + [anon_sym___asm__] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [anon_sym_L_SQUOTE] = ACTIONS(3280), + [anon_sym_u_SQUOTE] = ACTIONS(3280), + [anon_sym_U_SQUOTE] = ACTIONS(3280), + [anon_sym_u8_SQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_L_DQUOTE] = ACTIONS(3280), + [anon_sym_u_DQUOTE] = ACTIONS(3280), + [anon_sym_U_DQUOTE] = ACTIONS(3280), + [anon_sym_u8_DQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3278), + [anon_sym_decltype] = ACTIONS(3278), + [anon_sym_virtual] = ACTIONS(3278), + [anon_sym_alignas] = ACTIONS(3278), + [anon_sym_explicit] = ACTIONS(3278), + [anon_sym_typename] = ACTIONS(3278), + [anon_sym_template] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_static_assert] = ACTIONS(3278), + [anon_sym_concept] = ACTIONS(3278), + [anon_sym_co_return] = ACTIONS(3278), + [anon_sym_co_yield] = ACTIONS(3278), + [anon_sym_R_DQUOTE] = ACTIONS(3280), + [anon_sym_LR_DQUOTE] = ACTIONS(3280), + [anon_sym_uR_DQUOTE] = ACTIONS(3280), + [anon_sym_UR_DQUOTE] = ACTIONS(3280), + [anon_sym_u8R_DQUOTE] = ACTIONS(3280), + [anon_sym_co_await] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), }, - [982] = { - [ts_builtin_sym_end] = ACTIONS(3084), - [sym_identifier] = ACTIONS(3082), - [aux_sym_preproc_include_token1] = ACTIONS(3082), - [aux_sym_preproc_def_token1] = ACTIONS(3082), - [aux_sym_preproc_if_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), - [sym_preproc_directive] = ACTIONS(3082), - [anon_sym_LPAREN2] = ACTIONS(3084), - [anon_sym_BANG] = ACTIONS(3084), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym___extension__] = ACTIONS(3082), - [anon_sym_typedef] = ACTIONS(3082), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym___attribute__] = ACTIONS(3082), - [anon_sym_COLON_COLON] = ACTIONS(3084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), - [anon_sym___declspec] = ACTIONS(3082), - [anon_sym___based] = ACTIONS(3082), - [anon_sym___cdecl] = ACTIONS(3082), - [anon_sym___clrcall] = ACTIONS(3082), - [anon_sym___stdcall] = ACTIONS(3082), - [anon_sym___fastcall] = ACTIONS(3082), - [anon_sym___thiscall] = ACTIONS(3082), - [anon_sym___vectorcall] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_signed] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3082), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym___inline] = ACTIONS(3082), - [anon_sym___inline__] = ACTIONS(3082), - [anon_sym___forceinline] = ACTIONS(3082), - [anon_sym_thread_local] = ACTIONS(3082), - [anon_sym___thread] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_constexpr] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym___restrict__] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym__Noreturn] = ACTIONS(3082), - [anon_sym_noreturn] = ACTIONS(3082), - [anon_sym_mutable] = ACTIONS(3082), - [anon_sym_constinit] = ACTIONS(3082), - [anon_sym_consteval] = ACTIONS(3082), - [sym_primitive_type] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_class] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_switch] = ACTIONS(3082), - [anon_sym_case] = ACTIONS(3082), - [anon_sym_default] = ACTIONS(3082), - [anon_sym_while] = ACTIONS(3082), - [anon_sym_do] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym_not] = ACTIONS(3082), - [anon_sym_compl] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_sizeof] = ACTIONS(3082), - [anon_sym___alignof__] = ACTIONS(3082), - [anon_sym___alignof] = ACTIONS(3082), - [anon_sym__alignof] = ACTIONS(3082), - [anon_sym_alignof] = ACTIONS(3082), - [anon_sym__Alignof] = ACTIONS(3082), - [anon_sym_offsetof] = ACTIONS(3082), - [anon_sym__Generic] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym___asm__] = ACTIONS(3082), - [sym_number_literal] = ACTIONS(3084), - [anon_sym_L_SQUOTE] = ACTIONS(3084), - [anon_sym_u_SQUOTE] = ACTIONS(3084), - [anon_sym_U_SQUOTE] = ACTIONS(3084), - [anon_sym_u8_SQUOTE] = ACTIONS(3084), - [anon_sym_SQUOTE] = ACTIONS(3084), - [anon_sym_L_DQUOTE] = ACTIONS(3084), - [anon_sym_u_DQUOTE] = ACTIONS(3084), - [anon_sym_U_DQUOTE] = ACTIONS(3084), - [anon_sym_u8_DQUOTE] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(3084), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [anon_sym_NULL] = ACTIONS(3082), - [anon_sym_nullptr] = ACTIONS(3082), + [925] = { + [sym_identifier] = ACTIONS(3086), + [aux_sym_preproc_include_token1] = ACTIONS(3086), + [aux_sym_preproc_def_token1] = ACTIONS(3086), + [aux_sym_preproc_if_token1] = ACTIONS(3086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3086), + [sym_preproc_directive] = ACTIONS(3086), + [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3086), + [anon_sym_SEMI] = ACTIONS(3088), + [anon_sym___extension__] = ACTIONS(3086), + [anon_sym_typedef] = ACTIONS(3086), + [anon_sym_extern] = ACTIONS(3086), + [anon_sym___attribute__] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3088), + [anon_sym___declspec] = ACTIONS(3086), + [anon_sym___based] = ACTIONS(3086), + [anon_sym___cdecl] = ACTIONS(3086), + [anon_sym___clrcall] = ACTIONS(3086), + [anon_sym___stdcall] = ACTIONS(3086), + [anon_sym___fastcall] = ACTIONS(3086), + [anon_sym___thiscall] = ACTIONS(3086), + [anon_sym___vectorcall] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_signed] = ACTIONS(3086), + [anon_sym_unsigned] = ACTIONS(3086), + [anon_sym_long] = ACTIONS(3086), + [anon_sym_short] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_static] = ACTIONS(3086), + [anon_sym_register] = ACTIONS(3086), + [anon_sym_inline] = ACTIONS(3086), + [anon_sym___inline] = ACTIONS(3086), + [anon_sym___inline__] = ACTIONS(3086), + [anon_sym___forceinline] = ACTIONS(3086), + [anon_sym_thread_local] = ACTIONS(3086), + [anon_sym___thread] = ACTIONS(3086), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_constexpr] = ACTIONS(3086), + [anon_sym_volatile] = ACTIONS(3086), + [anon_sym_restrict] = ACTIONS(3086), + [anon_sym___restrict__] = ACTIONS(3086), + [anon_sym__Atomic] = ACTIONS(3086), + [anon_sym__Noreturn] = ACTIONS(3086), + [anon_sym_noreturn] = ACTIONS(3086), + [anon_sym_mutable] = ACTIONS(3086), + [anon_sym_constinit] = ACTIONS(3086), + [anon_sym_consteval] = ACTIONS(3086), + [sym_primitive_type] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), + [anon_sym_class] = ACTIONS(3086), + [anon_sym_struct] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_switch] = ACTIONS(3086), + [anon_sym_case] = ACTIONS(3086), + [anon_sym_default] = ACTIONS(3086), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_do] = ACTIONS(3086), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_goto] = ACTIONS(3086), + [anon_sym___try] = ACTIONS(3086), + [anon_sym___leave] = ACTIONS(3086), + [anon_sym_not] = ACTIONS(3086), + [anon_sym_compl] = ACTIONS(3086), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_sizeof] = ACTIONS(3086), + [anon_sym___alignof__] = ACTIONS(3086), + [anon_sym___alignof] = ACTIONS(3086), + [anon_sym__alignof] = ACTIONS(3086), + [anon_sym_alignof] = ACTIONS(3086), + [anon_sym__Alignof] = ACTIONS(3086), + [anon_sym_offsetof] = ACTIONS(3086), + [anon_sym__Generic] = ACTIONS(3086), + [anon_sym_asm] = ACTIONS(3086), + [anon_sym___asm__] = ACTIONS(3086), + [sym_number_literal] = ACTIONS(3088), + [anon_sym_L_SQUOTE] = ACTIONS(3088), + [anon_sym_u_SQUOTE] = ACTIONS(3088), + [anon_sym_U_SQUOTE] = ACTIONS(3088), + [anon_sym_u8_SQUOTE] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3088), + [anon_sym_L_DQUOTE] = ACTIONS(3088), + [anon_sym_u_DQUOTE] = ACTIONS(3088), + [anon_sym_U_DQUOTE] = ACTIONS(3088), + [anon_sym_u8_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [anon_sym_NULL] = ACTIONS(3086), + [anon_sym_nullptr] = ACTIONS(3086), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3082), - [anon_sym_decltype] = ACTIONS(3082), - [anon_sym_virtual] = ACTIONS(3082), - [anon_sym_alignas] = ACTIONS(3082), - [anon_sym_explicit] = ACTIONS(3082), - [anon_sym_typename] = ACTIONS(3082), - [anon_sym_template] = ACTIONS(3082), - [anon_sym_operator] = ACTIONS(3082), - [anon_sym_try] = ACTIONS(3082), - [anon_sym_delete] = ACTIONS(3082), - [anon_sym_throw] = ACTIONS(3082), - [anon_sym_namespace] = ACTIONS(3082), - [anon_sym_using] = ACTIONS(3082), - [anon_sym_static_assert] = ACTIONS(3082), - [anon_sym_concept] = ACTIONS(3082), - [anon_sym_co_return] = ACTIONS(3082), - [anon_sym_co_yield] = ACTIONS(3082), - [anon_sym_R_DQUOTE] = ACTIONS(3084), - [anon_sym_LR_DQUOTE] = ACTIONS(3084), - [anon_sym_uR_DQUOTE] = ACTIONS(3084), - [anon_sym_UR_DQUOTE] = ACTIONS(3084), - [anon_sym_u8R_DQUOTE] = ACTIONS(3084), - [anon_sym_co_await] = ACTIONS(3082), - [anon_sym_new] = ACTIONS(3082), - [anon_sym_requires] = ACTIONS(3082), - [sym_this] = ACTIONS(3082), + [sym_auto] = ACTIONS(3086), + [anon_sym_decltype] = ACTIONS(3086), + [anon_sym_virtual] = ACTIONS(3086), + [anon_sym_alignas] = ACTIONS(3086), + [anon_sym_explicit] = ACTIONS(3086), + [anon_sym_typename] = ACTIONS(3086), + [anon_sym_template] = ACTIONS(3086), + [anon_sym_operator] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_namespace] = ACTIONS(3086), + [anon_sym_using] = ACTIONS(3086), + [anon_sym_static_assert] = ACTIONS(3086), + [anon_sym_concept] = ACTIONS(3086), + [anon_sym_co_return] = ACTIONS(3086), + [anon_sym_co_yield] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(3088), + [anon_sym_LR_DQUOTE] = ACTIONS(3088), + [anon_sym_uR_DQUOTE] = ACTIONS(3088), + [anon_sym_UR_DQUOTE] = ACTIONS(3088), + [anon_sym_u8R_DQUOTE] = ACTIONS(3088), + [anon_sym_co_await] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3086), + [sym_this] = ACTIONS(3086), }, - [983] = { - [ts_builtin_sym_end] = ACTIONS(3092), - [sym_identifier] = ACTIONS(3090), - [aux_sym_preproc_include_token1] = ACTIONS(3090), - [aux_sym_preproc_def_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), - [sym_preproc_directive] = ACTIONS(3090), - [anon_sym_LPAREN2] = ACTIONS(3092), - [anon_sym_BANG] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym___extension__] = ACTIONS(3090), - [anon_sym_typedef] = ACTIONS(3090), - [anon_sym_extern] = ACTIONS(3090), - [anon_sym___attribute__] = ACTIONS(3090), - [anon_sym_COLON_COLON] = ACTIONS(3092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), - [anon_sym___declspec] = ACTIONS(3090), - [anon_sym___based] = ACTIONS(3090), - [anon_sym___cdecl] = ACTIONS(3090), - [anon_sym___clrcall] = ACTIONS(3090), - [anon_sym___stdcall] = ACTIONS(3090), - [anon_sym___fastcall] = ACTIONS(3090), - [anon_sym___thiscall] = ACTIONS(3090), - [anon_sym___vectorcall] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_signed] = ACTIONS(3090), - [anon_sym_unsigned] = ACTIONS(3090), - [anon_sym_long] = ACTIONS(3090), - [anon_sym_short] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3090), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_register] = ACTIONS(3090), - [anon_sym_inline] = ACTIONS(3090), - [anon_sym___inline] = ACTIONS(3090), - [anon_sym___inline__] = ACTIONS(3090), - [anon_sym___forceinline] = ACTIONS(3090), - [anon_sym_thread_local] = ACTIONS(3090), - [anon_sym___thread] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_constexpr] = ACTIONS(3090), - [anon_sym_volatile] = ACTIONS(3090), - [anon_sym_restrict] = ACTIONS(3090), - [anon_sym___restrict__] = ACTIONS(3090), - [anon_sym__Atomic] = ACTIONS(3090), - [anon_sym__Noreturn] = ACTIONS(3090), - [anon_sym_noreturn] = ACTIONS(3090), - [anon_sym_mutable] = ACTIONS(3090), - [anon_sym_constinit] = ACTIONS(3090), - [anon_sym_consteval] = ACTIONS(3090), - [sym_primitive_type] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_class] = ACTIONS(3090), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_switch] = ACTIONS(3090), - [anon_sym_case] = ACTIONS(3090), - [anon_sym_default] = ACTIONS(3090), - [anon_sym_while] = ACTIONS(3090), - [anon_sym_do] = ACTIONS(3090), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_goto] = ACTIONS(3090), - [anon_sym_not] = ACTIONS(3090), - [anon_sym_compl] = ACTIONS(3090), - [anon_sym_DASH_DASH] = ACTIONS(3092), - [anon_sym_PLUS_PLUS] = ACTIONS(3092), - [anon_sym_sizeof] = ACTIONS(3090), - [anon_sym___alignof__] = ACTIONS(3090), - [anon_sym___alignof] = ACTIONS(3090), - [anon_sym__alignof] = ACTIONS(3090), - [anon_sym_alignof] = ACTIONS(3090), - [anon_sym__Alignof] = ACTIONS(3090), - [anon_sym_offsetof] = ACTIONS(3090), - [anon_sym__Generic] = ACTIONS(3090), - [anon_sym_asm] = ACTIONS(3090), - [anon_sym___asm__] = ACTIONS(3090), - [sym_number_literal] = ACTIONS(3092), - [anon_sym_L_SQUOTE] = ACTIONS(3092), - [anon_sym_u_SQUOTE] = ACTIONS(3092), - [anon_sym_U_SQUOTE] = ACTIONS(3092), - [anon_sym_u8_SQUOTE] = ACTIONS(3092), - [anon_sym_SQUOTE] = ACTIONS(3092), - [anon_sym_L_DQUOTE] = ACTIONS(3092), - [anon_sym_u_DQUOTE] = ACTIONS(3092), - [anon_sym_U_DQUOTE] = ACTIONS(3092), - [anon_sym_u8_DQUOTE] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [anon_sym_NULL] = ACTIONS(3090), - [anon_sym_nullptr] = ACTIONS(3090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3090), - [anon_sym_decltype] = ACTIONS(3090), - [anon_sym_virtual] = ACTIONS(3090), - [anon_sym_alignas] = ACTIONS(3090), - [anon_sym_explicit] = ACTIONS(3090), - [anon_sym_typename] = ACTIONS(3090), - [anon_sym_template] = ACTIONS(3090), - [anon_sym_operator] = ACTIONS(3090), - [anon_sym_try] = ACTIONS(3090), - [anon_sym_delete] = ACTIONS(3090), - [anon_sym_throw] = ACTIONS(3090), - [anon_sym_namespace] = ACTIONS(3090), - [anon_sym_using] = ACTIONS(3090), - [anon_sym_static_assert] = ACTIONS(3090), - [anon_sym_concept] = ACTIONS(3090), - [anon_sym_co_return] = ACTIONS(3090), - [anon_sym_co_yield] = ACTIONS(3090), - [anon_sym_R_DQUOTE] = ACTIONS(3092), - [anon_sym_LR_DQUOTE] = ACTIONS(3092), - [anon_sym_uR_DQUOTE] = ACTIONS(3092), - [anon_sym_UR_DQUOTE] = ACTIONS(3092), - [anon_sym_u8R_DQUOTE] = ACTIONS(3092), - [anon_sym_co_await] = ACTIONS(3090), - [anon_sym_new] = ACTIONS(3090), - [anon_sym_requires] = ACTIONS(3090), - [sym_this] = ACTIONS(3090), + [926] = { + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token2] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym___extension__] = ACTIONS(3286), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym___inline] = ACTIONS(3286), + [anon_sym___inline__] = ACTIONS(3286), + [anon_sym___forceinline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym___thread] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym___try] = ACTIONS(3286), + [anon_sym___leave] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym___alignof__] = ACTIONS(3286), + [anon_sym___alignof] = ACTIONS(3286), + [anon_sym__alignof] = ACTIONS(3286), + [anon_sym_alignof] = ACTIONS(3286), + [anon_sym__Alignof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_alignas] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), }, - [984] = { - [ts_builtin_sym_end] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3292), - [aux_sym_preproc_include_token1] = ACTIONS(3292), - [aux_sym_preproc_def_token1] = ACTIONS(3292), - [aux_sym_preproc_if_token1] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3292), - [sym_preproc_directive] = ACTIONS(3292), - [anon_sym_LPAREN2] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_AMP_AMP] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3292), - [anon_sym___extension__] = ACTIONS(3292), - [anon_sym_typedef] = ACTIONS(3292), - [anon_sym_extern] = ACTIONS(3292), - [anon_sym___attribute__] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3294), - [anon_sym___declspec] = ACTIONS(3292), - [anon_sym___based] = ACTIONS(3292), - [anon_sym___cdecl] = ACTIONS(3292), - [anon_sym___clrcall] = ACTIONS(3292), - [anon_sym___stdcall] = ACTIONS(3292), - [anon_sym___fastcall] = ACTIONS(3292), - [anon_sym___thiscall] = ACTIONS(3292), - [anon_sym___vectorcall] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_signed] = ACTIONS(3292), - [anon_sym_unsigned] = ACTIONS(3292), - [anon_sym_long] = ACTIONS(3292), - [anon_sym_short] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_register] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym___inline] = ACTIONS(3292), - [anon_sym___inline__] = ACTIONS(3292), - [anon_sym___forceinline] = ACTIONS(3292), - [anon_sym_thread_local] = ACTIONS(3292), - [anon_sym___thread] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_constexpr] = ACTIONS(3292), - [anon_sym_volatile] = ACTIONS(3292), - [anon_sym_restrict] = ACTIONS(3292), - [anon_sym___restrict__] = ACTIONS(3292), - [anon_sym__Atomic] = ACTIONS(3292), - [anon_sym__Noreturn] = ACTIONS(3292), - [anon_sym_noreturn] = ACTIONS(3292), - [anon_sym_mutable] = ACTIONS(3292), - [anon_sym_constinit] = ACTIONS(3292), - [anon_sym_consteval] = ACTIONS(3292), - [sym_primitive_type] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3292), - [anon_sym_union] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_case] = ACTIONS(3292), - [anon_sym_default] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_goto] = ACTIONS(3292), - [anon_sym_not] = ACTIONS(3292), - [anon_sym_compl] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_sizeof] = ACTIONS(3292), - [anon_sym___alignof__] = ACTIONS(3292), - [anon_sym___alignof] = ACTIONS(3292), - [anon_sym__alignof] = ACTIONS(3292), - [anon_sym_alignof] = ACTIONS(3292), - [anon_sym__Alignof] = ACTIONS(3292), - [anon_sym_offsetof] = ACTIONS(3292), - [anon_sym__Generic] = ACTIONS(3292), - [anon_sym_asm] = ACTIONS(3292), - [anon_sym___asm__] = ACTIONS(3292), - [sym_number_literal] = ACTIONS(3294), - [anon_sym_L_SQUOTE] = ACTIONS(3294), - [anon_sym_u_SQUOTE] = ACTIONS(3294), - [anon_sym_U_SQUOTE] = ACTIONS(3294), - [anon_sym_u8_SQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_L_DQUOTE] = ACTIONS(3294), - [anon_sym_u_DQUOTE] = ACTIONS(3294), - [anon_sym_U_DQUOTE] = ACTIONS(3294), - [anon_sym_u8_DQUOTE] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [anon_sym_NULL] = ACTIONS(3292), - [anon_sym_nullptr] = ACTIONS(3292), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3292), - [anon_sym_decltype] = ACTIONS(3292), - [anon_sym_virtual] = ACTIONS(3292), - [anon_sym_alignas] = ACTIONS(3292), - [anon_sym_explicit] = ACTIONS(3292), - [anon_sym_typename] = ACTIONS(3292), - [anon_sym_template] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_static_assert] = ACTIONS(3292), - [anon_sym_concept] = ACTIONS(3292), - [anon_sym_co_return] = ACTIONS(3292), - [anon_sym_co_yield] = ACTIONS(3292), - [anon_sym_R_DQUOTE] = ACTIONS(3294), - [anon_sym_LR_DQUOTE] = ACTIONS(3294), - [anon_sym_uR_DQUOTE] = ACTIONS(3294), - [anon_sym_UR_DQUOTE] = ACTIONS(3294), - [anon_sym_u8R_DQUOTE] = ACTIONS(3294), - [anon_sym_co_await] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_requires] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), + [927] = { + [sym_identifier] = ACTIONS(3020), + [aux_sym_preproc_include_token1] = ACTIONS(3020), + [aux_sym_preproc_def_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3020), + [sym_preproc_directive] = ACTIONS(3020), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym___extension__] = ACTIONS(3020), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym___attribute__] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(3020), + [anon_sym___based] = ACTIONS(3020), + [anon_sym___cdecl] = ACTIONS(3020), + [anon_sym___clrcall] = ACTIONS(3020), + [anon_sym___stdcall] = ACTIONS(3020), + [anon_sym___fastcall] = ACTIONS(3020), + [anon_sym___thiscall] = ACTIONS(3020), + [anon_sym___vectorcall] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_signed] = ACTIONS(3020), + [anon_sym_unsigned] = ACTIONS(3020), + [anon_sym_long] = ACTIONS(3020), + [anon_sym_short] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_register] = ACTIONS(3020), + [anon_sym_inline] = ACTIONS(3020), + [anon_sym___inline] = ACTIONS(3020), + [anon_sym___inline__] = ACTIONS(3020), + [anon_sym___forceinline] = ACTIONS(3020), + [anon_sym_thread_local] = ACTIONS(3020), + [anon_sym___thread] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_constexpr] = ACTIONS(3020), + [anon_sym_volatile] = ACTIONS(3020), + [anon_sym_restrict] = ACTIONS(3020), + [anon_sym___restrict__] = ACTIONS(3020), + [anon_sym__Atomic] = ACTIONS(3020), + [anon_sym__Noreturn] = ACTIONS(3020), + [anon_sym_noreturn] = ACTIONS(3020), + [anon_sym_mutable] = ACTIONS(3020), + [anon_sym_constinit] = ACTIONS(3020), + [anon_sym_consteval] = ACTIONS(3020), + [sym_primitive_type] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_class] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym___try] = ACTIONS(3020), + [anon_sym___leave] = ACTIONS(3020), + [anon_sym_not] = ACTIONS(3020), + [anon_sym_compl] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_sizeof] = ACTIONS(3020), + [anon_sym___alignof__] = ACTIONS(3020), + [anon_sym___alignof] = ACTIONS(3020), + [anon_sym__alignof] = ACTIONS(3020), + [anon_sym_alignof] = ACTIONS(3020), + [anon_sym__Alignof] = ACTIONS(3020), + [anon_sym_offsetof] = ACTIONS(3020), + [anon_sym__Generic] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym___asm__] = ACTIONS(3020), + [sym_number_literal] = ACTIONS(3022), + [anon_sym_L_SQUOTE] = ACTIONS(3022), + [anon_sym_u_SQUOTE] = ACTIONS(3022), + [anon_sym_U_SQUOTE] = ACTIONS(3022), + [anon_sym_u8_SQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_L_DQUOTE] = ACTIONS(3022), + [anon_sym_u_DQUOTE] = ACTIONS(3022), + [anon_sym_U_DQUOTE] = ACTIONS(3022), + [anon_sym_u8_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_nullptr] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3020), + [anon_sym_decltype] = ACTIONS(3020), + [anon_sym_virtual] = ACTIONS(3020), + [anon_sym_alignas] = ACTIONS(3020), + [anon_sym_explicit] = ACTIONS(3020), + [anon_sym_typename] = ACTIONS(3020), + [anon_sym_template] = ACTIONS(3020), + [anon_sym_operator] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_using] = ACTIONS(3020), + [anon_sym_static_assert] = ACTIONS(3020), + [anon_sym_concept] = ACTIONS(3020), + [anon_sym_co_return] = ACTIONS(3020), + [anon_sym_co_yield] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(3022), + [anon_sym_LR_DQUOTE] = ACTIONS(3022), + [anon_sym_uR_DQUOTE] = ACTIONS(3022), + [anon_sym_UR_DQUOTE] = ACTIONS(3022), + [anon_sym_u8R_DQUOTE] = ACTIONS(3022), + [anon_sym_co_await] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_requires] = ACTIONS(3020), + [sym_this] = ACTIONS(3020), }, - [985] = { - [ts_builtin_sym_end] = ACTIONS(3205), + [928] = { [sym_identifier] = ACTIONS(3203), [aux_sym_preproc_include_token1] = ACTIONS(3203), [aux_sym_preproc_def_token1] = ACTIONS(3203), [aux_sym_preproc_if_token1] = ACTIONS(3203), + [aux_sym_preproc_if_token2] = ACTIONS(3203), [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), [sym_preproc_directive] = ACTIONS(3203), @@ -224392,6 +217283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3205), [anon_sym_AMP_AMP] = ACTIONS(3205), [anon_sym_AMP] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3205), [anon_sym___extension__] = ACTIONS(3203), [anon_sym_typedef] = ACTIONS(3203), [anon_sym_extern] = ACTIONS(3203), @@ -224447,6 +217339,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(3203), [anon_sym_continue] = ACTIONS(3203), [anon_sym_goto] = ACTIONS(3203), + [anon_sym___try] = ACTIONS(3203), + [anon_sym___leave] = ACTIONS(3203), [anon_sym_not] = ACTIONS(3203), [anon_sym_compl] = ACTIONS(3203), [anon_sym_DASH_DASH] = ACTIONS(3205), @@ -224504,1139 +217398,770 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3203), [sym_this] = ACTIONS(3203), }, - [986] = { - [sym_preproc_def] = STATE(980), - [sym_preproc_function_def] = STATE(980), - [sym_preproc_call] = STATE(980), - [sym_preproc_if_in_field_declaration_list] = STATE(980), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(980), - [sym_type_definition] = STATE(980), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(980), - [sym_field_declaration] = STATE(980), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(980), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(980), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(980), - [sym_operator_cast_declaration] = STATE(980), - [sym_constructor_or_destructor_definition] = STATE(980), - [sym_constructor_or_destructor_declaration] = STATE(980), - [sym_friend_declaration] = STATE(980), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(980), - [sym_alias_declaration] = STATE(980), - [sym_static_assert_declaration] = STATE(980), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(980), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3794), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), + [929] = { + [sym_identifier] = ACTIONS(3078), + [aux_sym_preproc_include_token1] = ACTIONS(3078), + [aux_sym_preproc_def_token1] = ACTIONS(3078), + [aux_sym_preproc_if_token1] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), + [sym_preproc_directive] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym___extension__] = ACTIONS(3078), + [anon_sym_typedef] = ACTIONS(3078), + [anon_sym_extern] = ACTIONS(3078), + [anon_sym___attribute__] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), + [anon_sym___declspec] = ACTIONS(3078), + [anon_sym___based] = ACTIONS(3078), + [anon_sym___cdecl] = ACTIONS(3078), + [anon_sym___clrcall] = ACTIONS(3078), + [anon_sym___stdcall] = ACTIONS(3078), + [anon_sym___fastcall] = ACTIONS(3078), + [anon_sym___thiscall] = ACTIONS(3078), + [anon_sym___vectorcall] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_signed] = ACTIONS(3078), + [anon_sym_unsigned] = ACTIONS(3078), + [anon_sym_long] = ACTIONS(3078), + [anon_sym_short] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_static] = ACTIONS(3078), + [anon_sym_register] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym___inline] = ACTIONS(3078), + [anon_sym___inline__] = ACTIONS(3078), + [anon_sym___forceinline] = ACTIONS(3078), + [anon_sym_thread_local] = ACTIONS(3078), + [anon_sym___thread] = ACTIONS(3078), + [anon_sym_const] = ACTIONS(3078), + [anon_sym_constexpr] = ACTIONS(3078), + [anon_sym_volatile] = ACTIONS(3078), + [anon_sym_restrict] = ACTIONS(3078), + [anon_sym___restrict__] = ACTIONS(3078), + [anon_sym__Atomic] = ACTIONS(3078), + [anon_sym__Noreturn] = ACTIONS(3078), + [anon_sym_noreturn] = ACTIONS(3078), + [anon_sym_mutable] = ACTIONS(3078), + [anon_sym_constinit] = ACTIONS(3078), + [anon_sym_consteval] = ACTIONS(3078), + [sym_primitive_type] = ACTIONS(3078), + [anon_sym_enum] = ACTIONS(3078), + [anon_sym_class] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_switch] = ACTIONS(3078), + [anon_sym_case] = ACTIONS(3078), + [anon_sym_default] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_goto] = ACTIONS(3078), + [anon_sym___try] = ACTIONS(3078), + [anon_sym___leave] = ACTIONS(3078), + [anon_sym_not] = ACTIONS(3078), + [anon_sym_compl] = ACTIONS(3078), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_sizeof] = ACTIONS(3078), + [anon_sym___alignof__] = ACTIONS(3078), + [anon_sym___alignof] = ACTIONS(3078), + [anon_sym__alignof] = ACTIONS(3078), + [anon_sym_alignof] = ACTIONS(3078), + [anon_sym__Alignof] = ACTIONS(3078), + [anon_sym_offsetof] = ACTIONS(3078), + [anon_sym__Generic] = ACTIONS(3078), + [anon_sym_asm] = ACTIONS(3078), + [anon_sym___asm__] = ACTIONS(3078), + [sym_number_literal] = ACTIONS(3080), + [anon_sym_L_SQUOTE] = ACTIONS(3080), + [anon_sym_u_SQUOTE] = ACTIONS(3080), + [anon_sym_U_SQUOTE] = ACTIONS(3080), + [anon_sym_u8_SQUOTE] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_L_DQUOTE] = ACTIONS(3080), + [anon_sym_u_DQUOTE] = ACTIONS(3080), + [anon_sym_U_DQUOTE] = ACTIONS(3080), + [anon_sym_u8_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [anon_sym_NULL] = ACTIONS(3078), + [anon_sym_nullptr] = ACTIONS(3078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3078), + [anon_sym_decltype] = ACTIONS(3078), + [anon_sym_virtual] = ACTIONS(3078), + [anon_sym_alignas] = ACTIONS(3078), + [anon_sym_explicit] = ACTIONS(3078), + [anon_sym_typename] = ACTIONS(3078), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3078), + [anon_sym_namespace] = ACTIONS(3078), + [anon_sym_using] = ACTIONS(3078), + [anon_sym_static_assert] = ACTIONS(3078), + [anon_sym_concept] = ACTIONS(3078), + [anon_sym_co_return] = ACTIONS(3078), + [anon_sym_co_yield] = ACTIONS(3078), + [anon_sym_R_DQUOTE] = ACTIONS(3080), + [anon_sym_LR_DQUOTE] = ACTIONS(3080), + [anon_sym_uR_DQUOTE] = ACTIONS(3080), + [anon_sym_UR_DQUOTE] = ACTIONS(3080), + [anon_sym_u8R_DQUOTE] = ACTIONS(3080), + [anon_sym_co_await] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_requires] = ACTIONS(3078), + [sym_this] = ACTIONS(3078), }, - [987] = { - [ts_builtin_sym_end] = ACTIONS(3170), - [sym_identifier] = ACTIONS(3168), - [aux_sym_preproc_include_token1] = ACTIONS(3168), - [aux_sym_preproc_def_token1] = ACTIONS(3168), - [aux_sym_preproc_if_token1] = ACTIONS(3168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), - [sym_preproc_directive] = ACTIONS(3168), - [anon_sym_LPAREN2] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_STAR] = ACTIONS(3170), - [anon_sym_AMP_AMP] = ACTIONS(3170), - [anon_sym_AMP] = ACTIONS(3168), - [anon_sym___extension__] = ACTIONS(3168), - [anon_sym_typedef] = ACTIONS(3168), - [anon_sym_extern] = ACTIONS(3168), - [anon_sym___attribute__] = ACTIONS(3168), - [anon_sym_COLON_COLON] = ACTIONS(3170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), - [anon_sym___declspec] = ACTIONS(3168), - [anon_sym___based] = ACTIONS(3168), - [anon_sym___cdecl] = ACTIONS(3168), - [anon_sym___clrcall] = ACTIONS(3168), - [anon_sym___stdcall] = ACTIONS(3168), - [anon_sym___fastcall] = ACTIONS(3168), - [anon_sym___thiscall] = ACTIONS(3168), - [anon_sym___vectorcall] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_signed] = ACTIONS(3168), - [anon_sym_unsigned] = ACTIONS(3168), - [anon_sym_long] = ACTIONS(3168), - [anon_sym_short] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_register] = ACTIONS(3168), - [anon_sym_inline] = ACTIONS(3168), - [anon_sym___inline] = ACTIONS(3168), - [anon_sym___inline__] = ACTIONS(3168), - [anon_sym___forceinline] = ACTIONS(3168), - [anon_sym_thread_local] = ACTIONS(3168), - [anon_sym___thread] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_constexpr] = ACTIONS(3168), - [anon_sym_volatile] = ACTIONS(3168), - [anon_sym_restrict] = ACTIONS(3168), - [anon_sym___restrict__] = ACTIONS(3168), - [anon_sym__Atomic] = ACTIONS(3168), - [anon_sym__Noreturn] = ACTIONS(3168), - [anon_sym_noreturn] = ACTIONS(3168), - [anon_sym_mutable] = ACTIONS(3168), - [anon_sym_constinit] = ACTIONS(3168), - [anon_sym_consteval] = ACTIONS(3168), - [sym_primitive_type] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_struct] = ACTIONS(3168), - [anon_sym_union] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_case] = ACTIONS(3168), - [anon_sym_default] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_goto] = ACTIONS(3168), - [anon_sym_not] = ACTIONS(3168), - [anon_sym_compl] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_sizeof] = ACTIONS(3168), - [anon_sym___alignof__] = ACTIONS(3168), - [anon_sym___alignof] = ACTIONS(3168), - [anon_sym__alignof] = ACTIONS(3168), - [anon_sym_alignof] = ACTIONS(3168), - [anon_sym__Alignof] = ACTIONS(3168), - [anon_sym_offsetof] = ACTIONS(3168), - [anon_sym__Generic] = ACTIONS(3168), - [anon_sym_asm] = ACTIONS(3168), - [anon_sym___asm__] = ACTIONS(3168), - [sym_number_literal] = ACTIONS(3170), - [anon_sym_L_SQUOTE] = ACTIONS(3170), - [anon_sym_u_SQUOTE] = ACTIONS(3170), - [anon_sym_U_SQUOTE] = ACTIONS(3170), - [anon_sym_u8_SQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [anon_sym_L_DQUOTE] = ACTIONS(3170), - [anon_sym_u_DQUOTE] = ACTIONS(3170), - [anon_sym_U_DQUOTE] = ACTIONS(3170), - [anon_sym_u8_DQUOTE] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [anon_sym_NULL] = ACTIONS(3168), - [anon_sym_nullptr] = ACTIONS(3168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3168), - [anon_sym_decltype] = ACTIONS(3168), - [anon_sym_virtual] = ACTIONS(3168), - [anon_sym_alignas] = ACTIONS(3168), - [anon_sym_explicit] = ACTIONS(3168), - [anon_sym_typename] = ACTIONS(3168), - [anon_sym_template] = ACTIONS(3168), - [anon_sym_operator] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3168), - [anon_sym_static_assert] = ACTIONS(3168), - [anon_sym_concept] = ACTIONS(3168), - [anon_sym_co_return] = ACTIONS(3168), - [anon_sym_co_yield] = ACTIONS(3168), - [anon_sym_R_DQUOTE] = ACTIONS(3170), - [anon_sym_LR_DQUOTE] = ACTIONS(3170), - [anon_sym_uR_DQUOTE] = ACTIONS(3170), - [anon_sym_UR_DQUOTE] = ACTIONS(3170), - [anon_sym_u8R_DQUOTE] = ACTIONS(3170), - [anon_sym_co_await] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_requires] = ACTIONS(3168), - [sym_this] = ACTIONS(3168), + [930] = { + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_include_token1] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym___cdecl] = ACTIONS(3134), + [anon_sym___clrcall] = ACTIONS(3134), + [anon_sym___stdcall] = ACTIONS(3134), + [anon_sym___fastcall] = ACTIONS(3134), + [anon_sym___thiscall] = ACTIONS(3134), + [anon_sym___vectorcall] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_RBRACE] = ACTIONS(3136), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym___try] = ACTIONS(3134), + [anon_sym___leave] = ACTIONS(3134), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_sizeof] = ACTIONS(3134), + [anon_sym___alignof__] = ACTIONS(3134), + [anon_sym___alignof] = ACTIONS(3134), + [anon_sym__alignof] = ACTIONS(3134), + [anon_sym_alignof] = ACTIONS(3134), + [anon_sym__Alignof] = ACTIONS(3134), + [anon_sym_offsetof] = ACTIONS(3134), + [anon_sym__Generic] = ACTIONS(3134), + [anon_sym_asm] = ACTIONS(3134), + [anon_sym___asm__] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3136), + [anon_sym_L_SQUOTE] = ACTIONS(3136), + [anon_sym_u_SQUOTE] = ACTIONS(3136), + [anon_sym_U_SQUOTE] = ACTIONS(3136), + [anon_sym_u8_SQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_L_DQUOTE] = ACTIONS(3136), + [anon_sym_u_DQUOTE] = ACTIONS(3136), + [anon_sym_U_DQUOTE] = ACTIONS(3136), + [anon_sym_u8_DQUOTE] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [anon_sym_NULL] = ACTIONS(3134), + [anon_sym_nullptr] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), + [anon_sym_concept] = ACTIONS(3134), + [anon_sym_co_return] = ACTIONS(3134), + [anon_sym_co_yield] = ACTIONS(3134), + [anon_sym_R_DQUOTE] = ACTIONS(3136), + [anon_sym_LR_DQUOTE] = ACTIONS(3136), + [anon_sym_uR_DQUOTE] = ACTIONS(3136), + [anon_sym_UR_DQUOTE] = ACTIONS(3136), + [anon_sym_u8R_DQUOTE] = ACTIONS(3136), + [anon_sym_co_await] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_requires] = ACTIONS(3134), + [sym_this] = ACTIONS(3134), }, - [988] = { - [ts_builtin_sym_end] = ACTIONS(3308), - [sym_identifier] = ACTIONS(3306), - [aux_sym_preproc_include_token1] = ACTIONS(3306), - [aux_sym_preproc_def_token1] = ACTIONS(3306), - [aux_sym_preproc_if_token1] = ACTIONS(3306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3306), - [sym_preproc_directive] = ACTIONS(3306), - [anon_sym_LPAREN2] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_STAR] = ACTIONS(3308), - [anon_sym_AMP_AMP] = ACTIONS(3308), - [anon_sym_AMP] = ACTIONS(3306), - [anon_sym___extension__] = ACTIONS(3306), - [anon_sym_typedef] = ACTIONS(3306), - [anon_sym_extern] = ACTIONS(3306), - [anon_sym___attribute__] = ACTIONS(3306), - [anon_sym_COLON_COLON] = ACTIONS(3308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3308), - [anon_sym___declspec] = ACTIONS(3306), - [anon_sym___based] = ACTIONS(3306), - [anon_sym___cdecl] = ACTIONS(3306), - [anon_sym___clrcall] = ACTIONS(3306), - [anon_sym___stdcall] = ACTIONS(3306), - [anon_sym___fastcall] = ACTIONS(3306), - [anon_sym___thiscall] = ACTIONS(3306), - [anon_sym___vectorcall] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_signed] = ACTIONS(3306), - [anon_sym_unsigned] = ACTIONS(3306), - [anon_sym_long] = ACTIONS(3306), - [anon_sym_short] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_register] = ACTIONS(3306), - [anon_sym_inline] = ACTIONS(3306), - [anon_sym___inline] = ACTIONS(3306), - [anon_sym___inline__] = ACTIONS(3306), - [anon_sym___forceinline] = ACTIONS(3306), - [anon_sym_thread_local] = ACTIONS(3306), - [anon_sym___thread] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_constexpr] = ACTIONS(3306), - [anon_sym_volatile] = ACTIONS(3306), - [anon_sym_restrict] = ACTIONS(3306), - [anon_sym___restrict__] = ACTIONS(3306), - [anon_sym__Atomic] = ACTIONS(3306), - [anon_sym__Noreturn] = ACTIONS(3306), - [anon_sym_noreturn] = ACTIONS(3306), - [anon_sym_mutable] = ACTIONS(3306), - [anon_sym_constinit] = ACTIONS(3306), - [anon_sym_consteval] = ACTIONS(3306), - [sym_primitive_type] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), - [anon_sym_class] = ACTIONS(3306), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_union] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_case] = ACTIONS(3306), - [anon_sym_default] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_goto] = ACTIONS(3306), - [anon_sym_not] = ACTIONS(3306), - [anon_sym_compl] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_sizeof] = ACTIONS(3306), - [anon_sym___alignof__] = ACTIONS(3306), - [anon_sym___alignof] = ACTIONS(3306), - [anon_sym__alignof] = ACTIONS(3306), - [anon_sym_alignof] = ACTIONS(3306), - [anon_sym__Alignof] = ACTIONS(3306), - [anon_sym_offsetof] = ACTIONS(3306), - [anon_sym__Generic] = ACTIONS(3306), - [anon_sym_asm] = ACTIONS(3306), - [anon_sym___asm__] = ACTIONS(3306), - [sym_number_literal] = ACTIONS(3308), - [anon_sym_L_SQUOTE] = ACTIONS(3308), - [anon_sym_u_SQUOTE] = ACTIONS(3308), - [anon_sym_U_SQUOTE] = ACTIONS(3308), - [anon_sym_u8_SQUOTE] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(3308), - [anon_sym_L_DQUOTE] = ACTIONS(3308), - [anon_sym_u_DQUOTE] = ACTIONS(3308), - [anon_sym_U_DQUOTE] = ACTIONS(3308), - [anon_sym_u8_DQUOTE] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [anon_sym_NULL] = ACTIONS(3306), - [anon_sym_nullptr] = ACTIONS(3306), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3306), - [anon_sym_decltype] = ACTIONS(3306), - [anon_sym_virtual] = ACTIONS(3306), - [anon_sym_alignas] = ACTIONS(3306), - [anon_sym_explicit] = ACTIONS(3306), - [anon_sym_typename] = ACTIONS(3306), - [anon_sym_template] = ACTIONS(3306), - [anon_sym_operator] = ACTIONS(3306), - [anon_sym_try] = ACTIONS(3306), - [anon_sym_delete] = ACTIONS(3306), - [anon_sym_throw] = ACTIONS(3306), - [anon_sym_namespace] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3306), - [anon_sym_static_assert] = ACTIONS(3306), - [anon_sym_concept] = ACTIONS(3306), - [anon_sym_co_return] = ACTIONS(3306), - [anon_sym_co_yield] = ACTIONS(3306), - [anon_sym_R_DQUOTE] = ACTIONS(3308), - [anon_sym_LR_DQUOTE] = ACTIONS(3308), - [anon_sym_uR_DQUOTE] = ACTIONS(3308), - [anon_sym_UR_DQUOTE] = ACTIONS(3308), - [anon_sym_u8R_DQUOTE] = ACTIONS(3308), - [anon_sym_co_await] = ACTIONS(3306), - [anon_sym_new] = ACTIONS(3306), - [anon_sym_requires] = ACTIONS(3306), - [sym_this] = ACTIONS(3306), + [931] = { + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_include_token1] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym___cdecl] = ACTIONS(3134), + [anon_sym___clrcall] = ACTIONS(3134), + [anon_sym___stdcall] = ACTIONS(3134), + [anon_sym___fastcall] = ACTIONS(3134), + [anon_sym___thiscall] = ACTIONS(3134), + [anon_sym___vectorcall] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_RBRACE] = ACTIONS(3136), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym___try] = ACTIONS(3134), + [anon_sym___leave] = ACTIONS(3134), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_sizeof] = ACTIONS(3134), + [anon_sym___alignof__] = ACTIONS(3134), + [anon_sym___alignof] = ACTIONS(3134), + [anon_sym__alignof] = ACTIONS(3134), + [anon_sym_alignof] = ACTIONS(3134), + [anon_sym__Alignof] = ACTIONS(3134), + [anon_sym_offsetof] = ACTIONS(3134), + [anon_sym__Generic] = ACTIONS(3134), + [anon_sym_asm] = ACTIONS(3134), + [anon_sym___asm__] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3136), + [anon_sym_L_SQUOTE] = ACTIONS(3136), + [anon_sym_u_SQUOTE] = ACTIONS(3136), + [anon_sym_U_SQUOTE] = ACTIONS(3136), + [anon_sym_u8_SQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_L_DQUOTE] = ACTIONS(3136), + [anon_sym_u_DQUOTE] = ACTIONS(3136), + [anon_sym_U_DQUOTE] = ACTIONS(3136), + [anon_sym_u8_DQUOTE] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [anon_sym_NULL] = ACTIONS(3134), + [anon_sym_nullptr] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), + [anon_sym_concept] = ACTIONS(3134), + [anon_sym_co_return] = ACTIONS(3134), + [anon_sym_co_yield] = ACTIONS(3134), + [anon_sym_R_DQUOTE] = ACTIONS(3136), + [anon_sym_LR_DQUOTE] = ACTIONS(3136), + [anon_sym_uR_DQUOTE] = ACTIONS(3136), + [anon_sym_UR_DQUOTE] = ACTIONS(3136), + [anon_sym_u8R_DQUOTE] = ACTIONS(3136), + [anon_sym_co_await] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_requires] = ACTIONS(3134), + [sym_this] = ACTIONS(3134), }, - [989] = { - [sym_preproc_def] = STATE(1010), - [sym_preproc_function_def] = STATE(1010), - [sym_preproc_call] = STATE(1010), - [sym_preproc_if_in_field_declaration_list] = STATE(1010), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1010), - [sym_type_definition] = STATE(1010), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1010), - [sym_field_declaration] = STATE(1010), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1010), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1010), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1010), - [sym_operator_cast_declaration] = STATE(1010), - [sym_constructor_or_destructor_definition] = STATE(1010), - [sym_constructor_or_destructor_declaration] = STATE(1010), - [sym_friend_declaration] = STATE(1010), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1010), - [sym_alias_declaration] = STATE(1010), - [sym_static_assert_declaration] = STATE(1010), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1010), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3796), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [932] = { + [sym_identifier] = ACTIONS(3298), + [aux_sym_preproc_include_token1] = ACTIONS(3298), + [aux_sym_preproc_def_token1] = ACTIONS(3298), + [aux_sym_preproc_if_token1] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), + [sym_preproc_directive] = ACTIONS(3298), + [anon_sym_LPAREN2] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym___extension__] = ACTIONS(3298), + [anon_sym_typedef] = ACTIONS(3298), + [anon_sym_extern] = ACTIONS(3298), + [anon_sym___attribute__] = ACTIONS(3298), + [anon_sym_COLON_COLON] = ACTIONS(3300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), + [anon_sym___declspec] = ACTIONS(3298), + [anon_sym___based] = ACTIONS(3298), + [anon_sym___cdecl] = ACTIONS(3298), + [anon_sym___clrcall] = ACTIONS(3298), + [anon_sym___stdcall] = ACTIONS(3298), + [anon_sym___fastcall] = ACTIONS(3298), + [anon_sym___thiscall] = ACTIONS(3298), + [anon_sym___vectorcall] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_signed] = ACTIONS(3298), + [anon_sym_unsigned] = ACTIONS(3298), + [anon_sym_long] = ACTIONS(3298), + [anon_sym_short] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_register] = ACTIONS(3298), + [anon_sym_inline] = ACTIONS(3298), + [anon_sym___inline] = ACTIONS(3298), + [anon_sym___inline__] = ACTIONS(3298), + [anon_sym___forceinline] = ACTIONS(3298), + [anon_sym_thread_local] = ACTIONS(3298), + [anon_sym___thread] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_constexpr] = ACTIONS(3298), + [anon_sym_volatile] = ACTIONS(3298), + [anon_sym_restrict] = ACTIONS(3298), + [anon_sym___restrict__] = ACTIONS(3298), + [anon_sym__Atomic] = ACTIONS(3298), + [anon_sym__Noreturn] = ACTIONS(3298), + [anon_sym_noreturn] = ACTIONS(3298), + [anon_sym_mutable] = ACTIONS(3298), + [anon_sym_constinit] = ACTIONS(3298), + [anon_sym_consteval] = ACTIONS(3298), + [sym_primitive_type] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_struct] = ACTIONS(3298), + [anon_sym_union] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_case] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_goto] = ACTIONS(3298), + [anon_sym___try] = ACTIONS(3298), + [anon_sym___leave] = ACTIONS(3298), + [anon_sym_not] = ACTIONS(3298), + [anon_sym_compl] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_sizeof] = ACTIONS(3298), + [anon_sym___alignof__] = ACTIONS(3298), + [anon_sym___alignof] = ACTIONS(3298), + [anon_sym__alignof] = ACTIONS(3298), + [anon_sym_alignof] = ACTIONS(3298), + [anon_sym__Alignof] = ACTIONS(3298), + [anon_sym_offsetof] = ACTIONS(3298), + [anon_sym__Generic] = ACTIONS(3298), + [anon_sym_asm] = ACTIONS(3298), + [anon_sym___asm__] = ACTIONS(3298), + [sym_number_literal] = ACTIONS(3300), + [anon_sym_L_SQUOTE] = ACTIONS(3300), + [anon_sym_u_SQUOTE] = ACTIONS(3300), + [anon_sym_U_SQUOTE] = ACTIONS(3300), + [anon_sym_u8_SQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_L_DQUOTE] = ACTIONS(3300), + [anon_sym_u_DQUOTE] = ACTIONS(3300), + [anon_sym_U_DQUOTE] = ACTIONS(3300), + [anon_sym_u8_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [anon_sym_NULL] = ACTIONS(3298), + [anon_sym_nullptr] = ACTIONS(3298), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), + [sym_auto] = ACTIONS(3298), + [anon_sym_decltype] = ACTIONS(3298), + [anon_sym_virtual] = ACTIONS(3298), + [anon_sym_alignas] = ACTIONS(3298), + [anon_sym_explicit] = ACTIONS(3298), + [anon_sym_typename] = ACTIONS(3298), + [anon_sym_template] = ACTIONS(3298), + [anon_sym_operator] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_static_assert] = ACTIONS(3298), + [anon_sym_concept] = ACTIONS(3298), + [anon_sym_co_return] = ACTIONS(3298), + [anon_sym_co_yield] = ACTIONS(3298), + [anon_sym_R_DQUOTE] = ACTIONS(3300), + [anon_sym_LR_DQUOTE] = ACTIONS(3300), + [anon_sym_uR_DQUOTE] = ACTIONS(3300), + [anon_sym_UR_DQUOTE] = ACTIONS(3300), + [anon_sym_u8R_DQUOTE] = ACTIONS(3300), + [anon_sym_co_await] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_requires] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), }, - [990] = { - [ts_builtin_sym_end] = ACTIONS(3096), - [sym_identifier] = ACTIONS(3094), - [aux_sym_preproc_include_token1] = ACTIONS(3094), - [aux_sym_preproc_def_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3094), - [sym_preproc_directive] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym___extension__] = ACTIONS(3094), - [anon_sym_typedef] = ACTIONS(3094), - [anon_sym_extern] = ACTIONS(3094), - [anon_sym___attribute__] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3096), - [anon_sym___declspec] = ACTIONS(3094), - [anon_sym___based] = ACTIONS(3094), - [anon_sym___cdecl] = ACTIONS(3094), - [anon_sym___clrcall] = ACTIONS(3094), - [anon_sym___stdcall] = ACTIONS(3094), - [anon_sym___fastcall] = ACTIONS(3094), - [anon_sym___thiscall] = ACTIONS(3094), - [anon_sym___vectorcall] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_signed] = ACTIONS(3094), - [anon_sym_unsigned] = ACTIONS(3094), - [anon_sym_long] = ACTIONS(3094), - [anon_sym_short] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_register] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym___inline] = ACTIONS(3094), - [anon_sym___inline__] = ACTIONS(3094), - [anon_sym___forceinline] = ACTIONS(3094), - [anon_sym_thread_local] = ACTIONS(3094), - [anon_sym___thread] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_constexpr] = ACTIONS(3094), - [anon_sym_volatile] = ACTIONS(3094), - [anon_sym_restrict] = ACTIONS(3094), - [anon_sym___restrict__] = ACTIONS(3094), - [anon_sym__Atomic] = ACTIONS(3094), - [anon_sym__Noreturn] = ACTIONS(3094), - [anon_sym_noreturn] = ACTIONS(3094), - [anon_sym_mutable] = ACTIONS(3094), - [anon_sym_constinit] = ACTIONS(3094), - [anon_sym_consteval] = ACTIONS(3094), - [sym_primitive_type] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_union] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_switch] = ACTIONS(3094), - [anon_sym_case] = ACTIONS(3094), - [anon_sym_default] = ACTIONS(3094), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_do] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_goto] = ACTIONS(3094), - [anon_sym_not] = ACTIONS(3094), - [anon_sym_compl] = ACTIONS(3094), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_sizeof] = ACTIONS(3094), - [anon_sym___alignof__] = ACTIONS(3094), - [anon_sym___alignof] = ACTIONS(3094), - [anon_sym__alignof] = ACTIONS(3094), - [anon_sym_alignof] = ACTIONS(3094), - [anon_sym__Alignof] = ACTIONS(3094), - [anon_sym_offsetof] = ACTIONS(3094), - [anon_sym__Generic] = ACTIONS(3094), - [anon_sym_asm] = ACTIONS(3094), - [anon_sym___asm__] = ACTIONS(3094), - [sym_number_literal] = ACTIONS(3096), - [anon_sym_L_SQUOTE] = ACTIONS(3096), - [anon_sym_u_SQUOTE] = ACTIONS(3096), - [anon_sym_U_SQUOTE] = ACTIONS(3096), - [anon_sym_u8_SQUOTE] = ACTIONS(3096), - [anon_sym_SQUOTE] = ACTIONS(3096), - [anon_sym_L_DQUOTE] = ACTIONS(3096), - [anon_sym_u_DQUOTE] = ACTIONS(3096), - [anon_sym_U_DQUOTE] = ACTIONS(3096), - [anon_sym_u8_DQUOTE] = ACTIONS(3096), - [anon_sym_DQUOTE] = ACTIONS(3096), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [anon_sym_NULL] = ACTIONS(3094), - [anon_sym_nullptr] = ACTIONS(3094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3094), - [anon_sym_decltype] = ACTIONS(3094), - [anon_sym_virtual] = ACTIONS(3094), - [anon_sym_alignas] = ACTIONS(3094), - [anon_sym_explicit] = ACTIONS(3094), - [anon_sym_typename] = ACTIONS(3094), - [anon_sym_template] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_delete] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_namespace] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_static_assert] = ACTIONS(3094), - [anon_sym_concept] = ACTIONS(3094), - [anon_sym_co_return] = ACTIONS(3094), - [anon_sym_co_yield] = ACTIONS(3094), - [anon_sym_R_DQUOTE] = ACTIONS(3096), - [anon_sym_LR_DQUOTE] = ACTIONS(3096), - [anon_sym_uR_DQUOTE] = ACTIONS(3096), - [anon_sym_UR_DQUOTE] = ACTIONS(3096), - [anon_sym_u8R_DQUOTE] = ACTIONS(3096), - [anon_sym_co_await] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3094), - [anon_sym_requires] = ACTIONS(3094), - [sym_this] = ACTIONS(3094), + [933] = { + [sym_identifier] = ACTIONS(3248), + [aux_sym_preproc_include_token1] = ACTIONS(3248), + [aux_sym_preproc_def_token1] = ACTIONS(3248), + [aux_sym_preproc_if_token1] = ACTIONS(3248), + [aux_sym_preproc_if_token2] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3248), + [sym_preproc_directive] = ACTIONS(3248), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_typedef] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym___cdecl] = ACTIONS(3248), + [anon_sym___clrcall] = ACTIONS(3248), + [anon_sym___stdcall] = ACTIONS(3248), + [anon_sym___fastcall] = ACTIONS(3248), + [anon_sym___thiscall] = ACTIONS(3248), + [anon_sym___vectorcall] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_signed] = ACTIONS(3248), + [anon_sym_unsigned] = ACTIONS(3248), + [anon_sym_long] = ACTIONS(3248), + [anon_sym_short] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [sym_primitive_type] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3248), + [anon_sym_union] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_goto] = ACTIONS(3248), + [anon_sym___try] = ACTIONS(3248), + [anon_sym___leave] = ACTIONS(3248), + [anon_sym_not] = ACTIONS(3248), + [anon_sym_compl] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_sizeof] = ACTIONS(3248), + [anon_sym___alignof__] = ACTIONS(3248), + [anon_sym___alignof] = ACTIONS(3248), + [anon_sym__alignof] = ACTIONS(3248), + [anon_sym_alignof] = ACTIONS(3248), + [anon_sym__Alignof] = ACTIONS(3248), + [anon_sym_offsetof] = ACTIONS(3248), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_asm] = ACTIONS(3248), + [anon_sym___asm__] = ACTIONS(3248), + [sym_number_literal] = ACTIONS(3250), + [anon_sym_L_SQUOTE] = ACTIONS(3250), + [anon_sym_u_SQUOTE] = ACTIONS(3250), + [anon_sym_U_SQUOTE] = ACTIONS(3250), + [anon_sym_u8_SQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_L_DQUOTE] = ACTIONS(3250), + [anon_sym_u_DQUOTE] = ACTIONS(3250), + [anon_sym_U_DQUOTE] = ACTIONS(3250), + [anon_sym_u8_DQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [anon_sym_NULL] = ACTIONS(3248), + [anon_sym_nullptr] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym_explicit] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_static_assert] = ACTIONS(3248), + [anon_sym_concept] = ACTIONS(3248), + [anon_sym_co_return] = ACTIONS(3248), + [anon_sym_co_yield] = ACTIONS(3248), + [anon_sym_R_DQUOTE] = ACTIONS(3250), + [anon_sym_LR_DQUOTE] = ACTIONS(3250), + [anon_sym_uR_DQUOTE] = ACTIONS(3250), + [anon_sym_UR_DQUOTE] = ACTIONS(3250), + [anon_sym_u8R_DQUOTE] = ACTIONS(3250), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_requires] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), }, - [991] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3798), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [992] = { - [ts_builtin_sym_end] = ACTIONS(3158), - [sym_identifier] = ACTIONS(3156), - [aux_sym_preproc_include_token1] = ACTIONS(3156), - [aux_sym_preproc_def_token1] = ACTIONS(3156), - [aux_sym_preproc_if_token1] = ACTIONS(3156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3156), - [sym_preproc_directive] = ACTIONS(3156), - [anon_sym_LPAREN2] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3156), - [anon_sym___extension__] = ACTIONS(3156), - [anon_sym_typedef] = ACTIONS(3156), - [anon_sym_extern] = ACTIONS(3156), - [anon_sym___attribute__] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3158), - [anon_sym___declspec] = ACTIONS(3156), - [anon_sym___based] = ACTIONS(3156), - [anon_sym___cdecl] = ACTIONS(3156), - [anon_sym___clrcall] = ACTIONS(3156), - [anon_sym___stdcall] = ACTIONS(3156), - [anon_sym___fastcall] = ACTIONS(3156), - [anon_sym___thiscall] = ACTIONS(3156), - [anon_sym___vectorcall] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_signed] = ACTIONS(3156), - [anon_sym_unsigned] = ACTIONS(3156), - [anon_sym_long] = ACTIONS(3156), - [anon_sym_short] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_register] = ACTIONS(3156), - [anon_sym_inline] = ACTIONS(3156), - [anon_sym___inline] = ACTIONS(3156), - [anon_sym___inline__] = ACTIONS(3156), - [anon_sym___forceinline] = ACTIONS(3156), - [anon_sym_thread_local] = ACTIONS(3156), - [anon_sym___thread] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_constexpr] = ACTIONS(3156), - [anon_sym_volatile] = ACTIONS(3156), - [anon_sym_restrict] = ACTIONS(3156), - [anon_sym___restrict__] = ACTIONS(3156), - [anon_sym__Atomic] = ACTIONS(3156), - [anon_sym__Noreturn] = ACTIONS(3156), - [anon_sym_noreturn] = ACTIONS(3156), - [anon_sym_mutable] = ACTIONS(3156), - [anon_sym_constinit] = ACTIONS(3156), - [anon_sym_consteval] = ACTIONS(3156), - [sym_primitive_type] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_struct] = ACTIONS(3156), - [anon_sym_union] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_case] = ACTIONS(3156), - [anon_sym_default] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_goto] = ACTIONS(3156), - [anon_sym_not] = ACTIONS(3156), - [anon_sym_compl] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_sizeof] = ACTIONS(3156), - [anon_sym___alignof__] = ACTIONS(3156), - [anon_sym___alignof] = ACTIONS(3156), - [anon_sym__alignof] = ACTIONS(3156), - [anon_sym_alignof] = ACTIONS(3156), - [anon_sym__Alignof] = ACTIONS(3156), - [anon_sym_offsetof] = ACTIONS(3156), - [anon_sym__Generic] = ACTIONS(3156), - [anon_sym_asm] = ACTIONS(3156), - [anon_sym___asm__] = ACTIONS(3156), - [sym_number_literal] = ACTIONS(3158), - [anon_sym_L_SQUOTE] = ACTIONS(3158), - [anon_sym_u_SQUOTE] = ACTIONS(3158), - [anon_sym_U_SQUOTE] = ACTIONS(3158), - [anon_sym_u8_SQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [anon_sym_L_DQUOTE] = ACTIONS(3158), - [anon_sym_u_DQUOTE] = ACTIONS(3158), - [anon_sym_U_DQUOTE] = ACTIONS(3158), - [anon_sym_u8_DQUOTE] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [anon_sym_NULL] = ACTIONS(3156), - [anon_sym_nullptr] = ACTIONS(3156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3156), - [anon_sym_decltype] = ACTIONS(3156), - [anon_sym_virtual] = ACTIONS(3156), - [anon_sym_alignas] = ACTIONS(3156), - [anon_sym_explicit] = ACTIONS(3156), - [anon_sym_typename] = ACTIONS(3156), - [anon_sym_template] = ACTIONS(3156), - [anon_sym_operator] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_static_assert] = ACTIONS(3156), - [anon_sym_concept] = ACTIONS(3156), - [anon_sym_co_return] = ACTIONS(3156), - [anon_sym_co_yield] = ACTIONS(3156), - [anon_sym_R_DQUOTE] = ACTIONS(3158), - [anon_sym_LR_DQUOTE] = ACTIONS(3158), - [anon_sym_uR_DQUOTE] = ACTIONS(3158), - [anon_sym_UR_DQUOTE] = ACTIONS(3158), - [anon_sym_u8R_DQUOTE] = ACTIONS(3158), - [anon_sym_co_await] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_requires] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - }, - [993] = { - [ts_builtin_sym_end] = ACTIONS(3304), - [sym_identifier] = ACTIONS(3302), - [aux_sym_preproc_include_token1] = ACTIONS(3302), - [aux_sym_preproc_def_token1] = ACTIONS(3302), - [aux_sym_preproc_if_token1] = ACTIONS(3302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), - [sym_preproc_directive] = ACTIONS(3302), - [anon_sym_LPAREN2] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_AMP_AMP] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym___extension__] = ACTIONS(3302), - [anon_sym_typedef] = ACTIONS(3302), - [anon_sym_extern] = ACTIONS(3302), - [anon_sym___attribute__] = ACTIONS(3302), - [anon_sym_COLON_COLON] = ACTIONS(3304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), - [anon_sym___declspec] = ACTIONS(3302), - [anon_sym___based] = ACTIONS(3302), - [anon_sym___cdecl] = ACTIONS(3302), - [anon_sym___clrcall] = ACTIONS(3302), - [anon_sym___stdcall] = ACTIONS(3302), - [anon_sym___fastcall] = ACTIONS(3302), - [anon_sym___thiscall] = ACTIONS(3302), - [anon_sym___vectorcall] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_signed] = ACTIONS(3302), - [anon_sym_unsigned] = ACTIONS(3302), - [anon_sym_long] = ACTIONS(3302), - [anon_sym_short] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym___inline] = ACTIONS(3302), - [anon_sym___inline__] = ACTIONS(3302), - [anon_sym___forceinline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym___thread] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym___restrict__] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym__Noreturn] = ACTIONS(3302), - [anon_sym_noreturn] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constinit] = ACTIONS(3302), - [anon_sym_consteval] = ACTIONS(3302), - [sym_primitive_type] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_struct] = ACTIONS(3302), - [anon_sym_union] = ACTIONS(3302), - [anon_sym_if] = ACTIONS(3302), - [anon_sym_switch] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3302), - [anon_sym_default] = ACTIONS(3302), - [anon_sym_while] = ACTIONS(3302), - [anon_sym_do] = ACTIONS(3302), - [anon_sym_for] = ACTIONS(3302), - [anon_sym_return] = ACTIONS(3302), - [anon_sym_break] = ACTIONS(3302), - [anon_sym_continue] = ACTIONS(3302), - [anon_sym_goto] = ACTIONS(3302), - [anon_sym_not] = ACTIONS(3302), - [anon_sym_compl] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_sizeof] = ACTIONS(3302), - [anon_sym___alignof__] = ACTIONS(3302), - [anon_sym___alignof] = ACTIONS(3302), - [anon_sym__alignof] = ACTIONS(3302), - [anon_sym_alignof] = ACTIONS(3302), - [anon_sym__Alignof] = ACTIONS(3302), - [anon_sym_offsetof] = ACTIONS(3302), - [anon_sym__Generic] = ACTIONS(3302), - [anon_sym_asm] = ACTIONS(3302), - [anon_sym___asm__] = ACTIONS(3302), - [sym_number_literal] = ACTIONS(3304), - [anon_sym_L_SQUOTE] = ACTIONS(3304), - [anon_sym_u_SQUOTE] = ACTIONS(3304), - [anon_sym_U_SQUOTE] = ACTIONS(3304), - [anon_sym_u8_SQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_L_DQUOTE] = ACTIONS(3304), - [anon_sym_u_DQUOTE] = ACTIONS(3304), - [anon_sym_U_DQUOTE] = ACTIONS(3304), - [anon_sym_u8_DQUOTE] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [sym_true] = ACTIONS(3302), - [sym_false] = ACTIONS(3302), - [anon_sym_NULL] = ACTIONS(3302), - [anon_sym_nullptr] = ACTIONS(3302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3302), - [anon_sym_decltype] = ACTIONS(3302), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_alignas] = ACTIONS(3302), - [anon_sym_explicit] = ACTIONS(3302), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_template] = ACTIONS(3302), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_try] = ACTIONS(3302), - [anon_sym_delete] = ACTIONS(3302), - [anon_sym_throw] = ACTIONS(3302), - [anon_sym_namespace] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_static_assert] = ACTIONS(3302), - [anon_sym_concept] = ACTIONS(3302), - [anon_sym_co_return] = ACTIONS(3302), - [anon_sym_co_yield] = ACTIONS(3302), - [anon_sym_R_DQUOTE] = ACTIONS(3304), - [anon_sym_LR_DQUOTE] = ACTIONS(3304), - [anon_sym_uR_DQUOTE] = ACTIONS(3304), - [anon_sym_UR_DQUOTE] = ACTIONS(3304), - [anon_sym_u8R_DQUOTE] = ACTIONS(3304), - [anon_sym_co_await] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3302), - [anon_sym_requires] = ACTIONS(3302), - [sym_this] = ACTIONS(3302), - }, - [994] = { - [ts_builtin_sym_end] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_include_token1] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym___cdecl] = ACTIONS(3219), - [anon_sym___clrcall] = ACTIONS(3219), - [anon_sym___stdcall] = ACTIONS(3219), - [anon_sym___fastcall] = ACTIONS(3219), - [anon_sym___thiscall] = ACTIONS(3219), - [anon_sym___vectorcall] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_compl] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3219), - [anon_sym___alignof__] = ACTIONS(3219), - [anon_sym___alignof] = ACTIONS(3219), - [anon_sym__alignof] = ACTIONS(3219), - [anon_sym_alignof] = ACTIONS(3219), - [anon_sym__Alignof] = ACTIONS(3219), - [anon_sym_offsetof] = ACTIONS(3219), - [anon_sym__Generic] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym___asm__] = ACTIONS(3219), - [sym_number_literal] = ACTIONS(3221), - [anon_sym_L_SQUOTE] = ACTIONS(3221), - [anon_sym_u_SQUOTE] = ACTIONS(3221), - [anon_sym_U_SQUOTE] = ACTIONS(3221), - [anon_sym_u8_SQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_L_DQUOTE] = ACTIONS(3221), - [anon_sym_u_DQUOTE] = ACTIONS(3221), - [anon_sym_U_DQUOTE] = ACTIONS(3221), - [anon_sym_u8_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [anon_sym_NULL] = ACTIONS(3219), - [anon_sym_nullptr] = ACTIONS(3219), + [934] = { + [sym_identifier] = ACTIONS(3219), + [aux_sym_preproc_include_token1] = ACTIONS(3219), + [aux_sym_preproc_def_token1] = ACTIONS(3219), + [aux_sym_preproc_if_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), + [sym_preproc_directive] = ACTIONS(3219), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym___extension__] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym___attribute__] = ACTIONS(3219), + [anon_sym_COLON_COLON] = ACTIONS(3221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), + [anon_sym___declspec] = ACTIONS(3219), + [anon_sym___based] = ACTIONS(3219), + [anon_sym___cdecl] = ACTIONS(3219), + [anon_sym___clrcall] = ACTIONS(3219), + [anon_sym___stdcall] = ACTIONS(3219), + [anon_sym___fastcall] = ACTIONS(3219), + [anon_sym___thiscall] = ACTIONS(3219), + [anon_sym___vectorcall] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_signed] = ACTIONS(3219), + [anon_sym_unsigned] = ACTIONS(3219), + [anon_sym_long] = ACTIONS(3219), + [anon_sym_short] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_register] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym___inline] = ACTIONS(3219), + [anon_sym___inline__] = ACTIONS(3219), + [anon_sym___forceinline] = ACTIONS(3219), + [anon_sym_thread_local] = ACTIONS(3219), + [anon_sym___thread] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_constexpr] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_restrict] = ACTIONS(3219), + [anon_sym___restrict__] = ACTIONS(3219), + [anon_sym__Atomic] = ACTIONS(3219), + [anon_sym__Noreturn] = ACTIONS(3219), + [anon_sym_noreturn] = ACTIONS(3219), + [anon_sym_mutable] = ACTIONS(3219), + [anon_sym_constinit] = ACTIONS(3219), + [anon_sym_consteval] = ACTIONS(3219), + [sym_primitive_type] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_goto] = ACTIONS(3219), + [anon_sym___try] = ACTIONS(3219), + [anon_sym___leave] = ACTIONS(3219), + [anon_sym_not] = ACTIONS(3219), + [anon_sym_compl] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(3219), + [anon_sym___alignof__] = ACTIONS(3219), + [anon_sym___alignof] = ACTIONS(3219), + [anon_sym__alignof] = ACTIONS(3219), + [anon_sym_alignof] = ACTIONS(3219), + [anon_sym__Alignof] = ACTIONS(3219), + [anon_sym_offsetof] = ACTIONS(3219), + [anon_sym__Generic] = ACTIONS(3219), + [anon_sym_asm] = ACTIONS(3219), + [anon_sym___asm__] = ACTIONS(3219), + [sym_number_literal] = ACTIONS(3221), + [anon_sym_L_SQUOTE] = ACTIONS(3221), + [anon_sym_u_SQUOTE] = ACTIONS(3221), + [anon_sym_U_SQUOTE] = ACTIONS(3221), + [anon_sym_u8_SQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_L_DQUOTE] = ACTIONS(3221), + [anon_sym_u_DQUOTE] = ACTIONS(3221), + [anon_sym_U_DQUOTE] = ACTIONS(3221), + [anon_sym_u8_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [anon_sym_NULL] = ACTIONS(3219), + [anon_sym_nullptr] = ACTIONS(3219), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(3219), [anon_sym_decltype] = ACTIONS(3219), @@ -225665,395 +218190,799 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3219), [sym_this] = ACTIONS(3219), }, - [995] = { - [ts_builtin_sym_end] = ACTIONS(3178), - [sym_identifier] = ACTIONS(3176), - [aux_sym_preproc_include_token1] = ACTIONS(3176), - [aux_sym_preproc_def_token1] = ACTIONS(3176), - [aux_sym_preproc_if_token1] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), - [sym_preproc_directive] = ACTIONS(3176), - [anon_sym_LPAREN2] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym___extension__] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3176), - [anon_sym_extern] = ACTIONS(3176), - [anon_sym___attribute__] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(3178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), - [anon_sym___declspec] = ACTIONS(3176), - [anon_sym___based] = ACTIONS(3176), - [anon_sym___cdecl] = ACTIONS(3176), - [anon_sym___clrcall] = ACTIONS(3176), - [anon_sym___stdcall] = ACTIONS(3176), - [anon_sym___fastcall] = ACTIONS(3176), - [anon_sym___thiscall] = ACTIONS(3176), - [anon_sym___vectorcall] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_signed] = ACTIONS(3176), - [anon_sym_unsigned] = ACTIONS(3176), - [anon_sym_long] = ACTIONS(3176), - [anon_sym_short] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_register] = ACTIONS(3176), - [anon_sym_inline] = ACTIONS(3176), - [anon_sym___inline] = ACTIONS(3176), - [anon_sym___inline__] = ACTIONS(3176), - [anon_sym___forceinline] = ACTIONS(3176), - [anon_sym_thread_local] = ACTIONS(3176), - [anon_sym___thread] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_constexpr] = ACTIONS(3176), - [anon_sym_volatile] = ACTIONS(3176), - [anon_sym_restrict] = ACTIONS(3176), - [anon_sym___restrict__] = ACTIONS(3176), - [anon_sym__Atomic] = ACTIONS(3176), - [anon_sym__Noreturn] = ACTIONS(3176), - [anon_sym_noreturn] = ACTIONS(3176), - [anon_sym_mutable] = ACTIONS(3176), - [anon_sym_constinit] = ACTIONS(3176), - [anon_sym_consteval] = ACTIONS(3176), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_struct] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_case] = ACTIONS(3176), - [anon_sym_default] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_goto] = ACTIONS(3176), - [anon_sym_not] = ACTIONS(3176), - [anon_sym_compl] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_sizeof] = ACTIONS(3176), - [anon_sym___alignof__] = ACTIONS(3176), - [anon_sym___alignof] = ACTIONS(3176), - [anon_sym__alignof] = ACTIONS(3176), - [anon_sym_alignof] = ACTIONS(3176), - [anon_sym__Alignof] = ACTIONS(3176), - [anon_sym_offsetof] = ACTIONS(3176), - [anon_sym__Generic] = ACTIONS(3176), - [anon_sym_asm] = ACTIONS(3176), - [anon_sym___asm__] = ACTIONS(3176), - [sym_number_literal] = ACTIONS(3178), - [anon_sym_L_SQUOTE] = ACTIONS(3178), - [anon_sym_u_SQUOTE] = ACTIONS(3178), - [anon_sym_U_SQUOTE] = ACTIONS(3178), - [anon_sym_u8_SQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_L_DQUOTE] = ACTIONS(3178), - [anon_sym_u_DQUOTE] = ACTIONS(3178), - [anon_sym_U_DQUOTE] = ACTIONS(3178), - [anon_sym_u8_DQUOTE] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [anon_sym_NULL] = ACTIONS(3176), - [anon_sym_nullptr] = ACTIONS(3176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3176), - [anon_sym_decltype] = ACTIONS(3176), - [anon_sym_virtual] = ACTIONS(3176), - [anon_sym_alignas] = ACTIONS(3176), - [anon_sym_explicit] = ACTIONS(3176), - [anon_sym_typename] = ACTIONS(3176), - [anon_sym_template] = ACTIONS(3176), - [anon_sym_operator] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_static_assert] = ACTIONS(3176), - [anon_sym_concept] = ACTIONS(3176), - [anon_sym_co_return] = ACTIONS(3176), - [anon_sym_co_yield] = ACTIONS(3176), - [anon_sym_R_DQUOTE] = ACTIONS(3178), - [anon_sym_LR_DQUOTE] = ACTIONS(3178), - [anon_sym_uR_DQUOTE] = ACTIONS(3178), - [anon_sym_UR_DQUOTE] = ACTIONS(3178), - [anon_sym_u8R_DQUOTE] = ACTIONS(3178), - [anon_sym_co_await] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_requires] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), + [935] = { + [sym_identifier] = ACTIONS(3270), + [aux_sym_preproc_include_token1] = ACTIONS(3270), + [aux_sym_preproc_def_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token2] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), + [sym_preproc_directive] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym_typedef] = ACTIONS(3270), + [anon_sym_extern] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), + [anon_sym___declspec] = ACTIONS(3270), + [anon_sym___based] = ACTIONS(3270), + [anon_sym___cdecl] = ACTIONS(3270), + [anon_sym___clrcall] = ACTIONS(3270), + [anon_sym___stdcall] = ACTIONS(3270), + [anon_sym___fastcall] = ACTIONS(3270), + [anon_sym___thiscall] = ACTIONS(3270), + [anon_sym___vectorcall] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_signed] = ACTIONS(3270), + [anon_sym_unsigned] = ACTIONS(3270), + [anon_sym_long] = ACTIONS(3270), + [anon_sym_short] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_register] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym___inline] = ACTIONS(3270), + [anon_sym___inline__] = ACTIONS(3270), + [anon_sym___forceinline] = ACTIONS(3270), + [anon_sym_thread_local] = ACTIONS(3270), + [anon_sym___thread] = ACTIONS(3270), + [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_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [sym_primitive_type] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym___try] = ACTIONS(3270), + [anon_sym___leave] = ACTIONS(3270), + [anon_sym_not] = ACTIONS(3270), + [anon_sym_compl] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_sizeof] = ACTIONS(3270), + [anon_sym___alignof__] = ACTIONS(3270), + [anon_sym___alignof] = ACTIONS(3270), + [anon_sym__alignof] = ACTIONS(3270), + [anon_sym_alignof] = ACTIONS(3270), + [anon_sym__Alignof] = ACTIONS(3270), + [anon_sym_offsetof] = ACTIONS(3270), + [anon_sym__Generic] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym___asm__] = ACTIONS(3270), + [sym_number_literal] = ACTIONS(3272), + [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(3272), + [anon_sym_u_DQUOTE] = ACTIONS(3272), + [anon_sym_U_DQUOTE] = ACTIONS(3272), + [anon_sym_u8_DQUOTE] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [anon_sym_NULL] = ACTIONS(3270), + [anon_sym_nullptr] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3270), + [anon_sym_decltype] = ACTIONS(3270), + [anon_sym_virtual] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3270), + [anon_sym_explicit] = ACTIONS(3270), + [anon_sym_typename] = ACTIONS(3270), + [anon_sym_template] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_static_assert] = ACTIONS(3270), + [anon_sym_concept] = ACTIONS(3270), + [anon_sym_co_return] = ACTIONS(3270), + [anon_sym_co_yield] = ACTIONS(3270), + [anon_sym_R_DQUOTE] = ACTIONS(3272), + [anon_sym_LR_DQUOTE] = ACTIONS(3272), + [anon_sym_uR_DQUOTE] = ACTIONS(3272), + [anon_sym_UR_DQUOTE] = ACTIONS(3272), + [anon_sym_u8R_DQUOTE] = ACTIONS(3272), + [anon_sym_co_await] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_requires] = ACTIONS(3270), + [sym_this] = ACTIONS(3270), }, - [996] = { - [ts_builtin_sym_end] = ACTIONS(2998), - [sym_identifier] = ACTIONS(2996), - [aux_sym_preproc_include_token1] = ACTIONS(2996), - [aux_sym_preproc_def_token1] = ACTIONS(2996), - [aux_sym_preproc_if_token1] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2996), - [sym_preproc_directive] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym___extension__] = ACTIONS(2996), - [anon_sym_typedef] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym___attribute__] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), - [anon_sym___declspec] = ACTIONS(2996), - [anon_sym___based] = ACTIONS(2996), - [anon_sym___cdecl] = ACTIONS(2996), - [anon_sym___clrcall] = ACTIONS(2996), - [anon_sym___stdcall] = ACTIONS(2996), - [anon_sym___fastcall] = ACTIONS(2996), - [anon_sym___thiscall] = ACTIONS(2996), - [anon_sym___vectorcall] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_signed] = ACTIONS(2996), - [anon_sym_unsigned] = ACTIONS(2996), - [anon_sym_long] = ACTIONS(2996), - [anon_sym_short] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_inline] = ACTIONS(2996), - [anon_sym___inline] = ACTIONS(2996), - [anon_sym___inline__] = ACTIONS(2996), - [anon_sym___forceinline] = ACTIONS(2996), - [anon_sym_thread_local] = ACTIONS(2996), - [anon_sym___thread] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_constexpr] = ACTIONS(2996), - [anon_sym_volatile] = ACTIONS(2996), - [anon_sym_restrict] = ACTIONS(2996), - [anon_sym___restrict__] = ACTIONS(2996), - [anon_sym__Atomic] = ACTIONS(2996), - [anon_sym__Noreturn] = ACTIONS(2996), - [anon_sym_noreturn] = ACTIONS(2996), - [anon_sym_mutable] = ACTIONS(2996), - [anon_sym_constinit] = ACTIONS(2996), - [anon_sym_consteval] = ACTIONS(2996), - [sym_primitive_type] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), - [anon_sym_class] = ACTIONS(2996), - [anon_sym_struct] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_case] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_goto] = ACTIONS(2996), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_compl] = ACTIONS(2996), - [anon_sym_DASH_DASH] = ACTIONS(2998), - [anon_sym_PLUS_PLUS] = ACTIONS(2998), - [anon_sym_sizeof] = ACTIONS(2996), - [anon_sym___alignof__] = ACTIONS(2996), - [anon_sym___alignof] = ACTIONS(2996), - [anon_sym__alignof] = ACTIONS(2996), - [anon_sym_alignof] = ACTIONS(2996), - [anon_sym__Alignof] = ACTIONS(2996), - [anon_sym_offsetof] = ACTIONS(2996), - [anon_sym__Generic] = ACTIONS(2996), - [anon_sym_asm] = ACTIONS(2996), - [anon_sym___asm__] = ACTIONS(2996), - [sym_number_literal] = ACTIONS(2998), - [anon_sym_L_SQUOTE] = ACTIONS(2998), - [anon_sym_u_SQUOTE] = ACTIONS(2998), - [anon_sym_U_SQUOTE] = ACTIONS(2998), - [anon_sym_u8_SQUOTE] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(2998), - [anon_sym_L_DQUOTE] = ACTIONS(2998), - [anon_sym_u_DQUOTE] = ACTIONS(2998), - [anon_sym_U_DQUOTE] = ACTIONS(2998), - [anon_sym_u8_DQUOTE] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [sym_true] = ACTIONS(2996), - [sym_false] = ACTIONS(2996), - [anon_sym_NULL] = ACTIONS(2996), - [anon_sym_nullptr] = ACTIONS(2996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2996), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2996), - [anon_sym_alignas] = ACTIONS(2996), - [anon_sym_explicit] = ACTIONS(2996), - [anon_sym_typename] = ACTIONS(2996), - [anon_sym_template] = ACTIONS(2996), - [anon_sym_operator] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_throw] = ACTIONS(2996), - [anon_sym_namespace] = ACTIONS(2996), - [anon_sym_using] = ACTIONS(2996), - [anon_sym_static_assert] = ACTIONS(2996), - [anon_sym_concept] = ACTIONS(2996), - [anon_sym_co_return] = ACTIONS(2996), - [anon_sym_co_yield] = 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(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_requires] = ACTIONS(2996), - [sym_this] = ACTIONS(2996), + [936] = { + [sym_identifier] = ACTIONS(3256), + [aux_sym_preproc_include_token1] = ACTIONS(3256), + [aux_sym_preproc_def_token1] = ACTIONS(3256), + [aux_sym_preproc_if_token1] = ACTIONS(3256), + [aux_sym_preproc_if_token2] = ACTIONS(3256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3256), + [sym_preproc_directive] = ACTIONS(3256), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym_typedef] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3258), + [anon_sym___declspec] = ACTIONS(3256), + [anon_sym___based] = ACTIONS(3256), + [anon_sym___cdecl] = ACTIONS(3256), + [anon_sym___clrcall] = ACTIONS(3256), + [anon_sym___stdcall] = ACTIONS(3256), + [anon_sym___fastcall] = ACTIONS(3256), + [anon_sym___thiscall] = ACTIONS(3256), + [anon_sym___vectorcall] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_signed] = ACTIONS(3256), + [anon_sym_unsigned] = ACTIONS(3256), + [anon_sym_long] = ACTIONS(3256), + [anon_sym_short] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym___inline] = ACTIONS(3256), + [anon_sym___inline__] = ACTIONS(3256), + [anon_sym___forceinline] = ACTIONS(3256), + [anon_sym_thread_local] = ACTIONS(3256), + [anon_sym___thread] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [sym_primitive_type] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [anon_sym_class] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_union] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3256), + [anon_sym_case] = ACTIONS(3256), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_goto] = ACTIONS(3256), + [anon_sym___try] = ACTIONS(3256), + [anon_sym___leave] = ACTIONS(3256), + [anon_sym_not] = ACTIONS(3256), + [anon_sym_compl] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_sizeof] = ACTIONS(3256), + [anon_sym___alignof__] = ACTIONS(3256), + [anon_sym___alignof] = ACTIONS(3256), + [anon_sym__alignof] = ACTIONS(3256), + [anon_sym_alignof] = ACTIONS(3256), + [anon_sym__Alignof] = ACTIONS(3256), + [anon_sym_offsetof] = ACTIONS(3256), + [anon_sym__Generic] = ACTIONS(3256), + [anon_sym_asm] = ACTIONS(3256), + [anon_sym___asm__] = ACTIONS(3256), + [sym_number_literal] = ACTIONS(3258), + [anon_sym_L_SQUOTE] = ACTIONS(3258), + [anon_sym_u_SQUOTE] = ACTIONS(3258), + [anon_sym_U_SQUOTE] = ACTIONS(3258), + [anon_sym_u8_SQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [anon_sym_NULL] = ACTIONS(3256), + [anon_sym_nullptr] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_virtual] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym_explicit] = ACTIONS(3256), + [anon_sym_typename] = ACTIONS(3256), + [anon_sym_template] = ACTIONS(3256), + [anon_sym_operator] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3256), + [anon_sym_delete] = ACTIONS(3256), + [anon_sym_throw] = ACTIONS(3256), + [anon_sym_namespace] = ACTIONS(3256), + [anon_sym_using] = ACTIONS(3256), + [anon_sym_static_assert] = ACTIONS(3256), + [anon_sym_concept] = ACTIONS(3256), + [anon_sym_co_return] = ACTIONS(3256), + [anon_sym_co_yield] = ACTIONS(3256), + [anon_sym_R_DQUOTE] = ACTIONS(3258), + [anon_sym_LR_DQUOTE] = ACTIONS(3258), + [anon_sym_uR_DQUOTE] = ACTIONS(3258), + [anon_sym_UR_DQUOTE] = ACTIONS(3258), + [anon_sym_u8R_DQUOTE] = ACTIONS(3258), + [anon_sym_co_await] = ACTIONS(3256), + [anon_sym_new] = ACTIONS(3256), + [anon_sym_requires] = ACTIONS(3256), + [sym_this] = ACTIONS(3256), }, - [997] = { - [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(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(976), - [sym_field_declaration] = STATE(976), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(976), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(976), - [sym__constructor_specifiers] = STATE(2005), - [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(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(976), - [sym_alias_declaration] = STATE(976), - [sym_static_assert_declaration] = STATE(976), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3800), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [937] = { + [sym_identifier] = ACTIONS(3207), + [aux_sym_preproc_include_token1] = ACTIONS(3207), + [aux_sym_preproc_def_token1] = ACTIONS(3207), + [aux_sym_preproc_if_token1] = ACTIONS(3207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), + [sym_preproc_directive] = ACTIONS(3207), + [anon_sym_LPAREN2] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_AMP_AMP] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym___extension__] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3207), + [anon_sym___attribute__] = ACTIONS(3207), + [anon_sym_COLON_COLON] = ACTIONS(3209), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), + [anon_sym___declspec] = ACTIONS(3207), + [anon_sym___based] = ACTIONS(3207), + [anon_sym___cdecl] = ACTIONS(3207), + [anon_sym___clrcall] = ACTIONS(3207), + [anon_sym___stdcall] = ACTIONS(3207), + [anon_sym___fastcall] = ACTIONS(3207), + [anon_sym___thiscall] = ACTIONS(3207), + [anon_sym___vectorcall] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_RBRACE] = ACTIONS(3209), + [anon_sym_signed] = ACTIONS(3207), + [anon_sym_unsigned] = ACTIONS(3207), + [anon_sym_long] = ACTIONS(3207), + [anon_sym_short] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_register] = ACTIONS(3207), + [anon_sym_inline] = ACTIONS(3207), + [anon_sym___inline] = ACTIONS(3207), + [anon_sym___inline__] = ACTIONS(3207), + [anon_sym___forceinline] = ACTIONS(3207), + [anon_sym_thread_local] = ACTIONS(3207), + [anon_sym___thread] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_constexpr] = ACTIONS(3207), + [anon_sym_volatile] = ACTIONS(3207), + [anon_sym_restrict] = ACTIONS(3207), + [anon_sym___restrict__] = ACTIONS(3207), + [anon_sym__Atomic] = ACTIONS(3207), + [anon_sym__Noreturn] = ACTIONS(3207), + [anon_sym_noreturn] = ACTIONS(3207), + [anon_sym_mutable] = ACTIONS(3207), + [anon_sym_constinit] = ACTIONS(3207), + [anon_sym_consteval] = ACTIONS(3207), + [sym_primitive_type] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3207), + [anon_sym_union] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_case] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_goto] = ACTIONS(3207), + [anon_sym___try] = ACTIONS(3207), + [anon_sym___leave] = ACTIONS(3207), + [anon_sym_not] = ACTIONS(3207), + [anon_sym_compl] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_sizeof] = ACTIONS(3207), + [anon_sym___alignof__] = ACTIONS(3207), + [anon_sym___alignof] = ACTIONS(3207), + [anon_sym__alignof] = ACTIONS(3207), + [anon_sym_alignof] = ACTIONS(3207), + [anon_sym__Alignof] = ACTIONS(3207), + [anon_sym_offsetof] = ACTIONS(3207), + [anon_sym__Generic] = ACTIONS(3207), + [anon_sym_asm] = ACTIONS(3207), + [anon_sym___asm__] = ACTIONS(3207), + [sym_number_literal] = ACTIONS(3209), + [anon_sym_L_SQUOTE] = ACTIONS(3209), + [anon_sym_u_SQUOTE] = ACTIONS(3209), + [anon_sym_U_SQUOTE] = ACTIONS(3209), + [anon_sym_u8_SQUOTE] = ACTIONS(3209), + [anon_sym_SQUOTE] = ACTIONS(3209), + [anon_sym_L_DQUOTE] = ACTIONS(3209), + [anon_sym_u_DQUOTE] = ACTIONS(3209), + [anon_sym_U_DQUOTE] = ACTIONS(3209), + [anon_sym_u8_DQUOTE] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3209), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [anon_sym_NULL] = ACTIONS(3207), + [anon_sym_nullptr] = ACTIONS(3207), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), + [sym_auto] = ACTIONS(3207), + [anon_sym_decltype] = ACTIONS(3207), + [anon_sym_virtual] = ACTIONS(3207), + [anon_sym_alignas] = ACTIONS(3207), + [anon_sym_explicit] = ACTIONS(3207), + [anon_sym_typename] = ACTIONS(3207), + [anon_sym_template] = ACTIONS(3207), + [anon_sym_operator] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_delete] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_static_assert] = ACTIONS(3207), + [anon_sym_concept] = ACTIONS(3207), + [anon_sym_co_return] = ACTIONS(3207), + [anon_sym_co_yield] = ACTIONS(3207), + [anon_sym_R_DQUOTE] = ACTIONS(3209), + [anon_sym_LR_DQUOTE] = ACTIONS(3209), + [anon_sym_uR_DQUOTE] = ACTIONS(3209), + [anon_sym_UR_DQUOTE] = ACTIONS(3209), + [anon_sym_u8R_DQUOTE] = ACTIONS(3209), + [anon_sym_co_await] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3207), }, - [998] = { - [ts_builtin_sym_end] = ACTIONS(3229), + [938] = { + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_include_token1] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token2] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym___cdecl] = ACTIONS(3134), + [anon_sym___clrcall] = ACTIONS(3134), + [anon_sym___stdcall] = ACTIONS(3134), + [anon_sym___fastcall] = ACTIONS(3134), + [anon_sym___thiscall] = ACTIONS(3134), + [anon_sym___vectorcall] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym___try] = ACTIONS(3134), + [anon_sym___leave] = ACTIONS(3134), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_sizeof] = ACTIONS(3134), + [anon_sym___alignof__] = ACTIONS(3134), + [anon_sym___alignof] = ACTIONS(3134), + [anon_sym__alignof] = ACTIONS(3134), + [anon_sym_alignof] = ACTIONS(3134), + [anon_sym__Alignof] = ACTIONS(3134), + [anon_sym_offsetof] = ACTIONS(3134), + [anon_sym__Generic] = ACTIONS(3134), + [anon_sym_asm] = ACTIONS(3134), + [anon_sym___asm__] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3136), + [anon_sym_L_SQUOTE] = ACTIONS(3136), + [anon_sym_u_SQUOTE] = ACTIONS(3136), + [anon_sym_U_SQUOTE] = ACTIONS(3136), + [anon_sym_u8_SQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_L_DQUOTE] = ACTIONS(3136), + [anon_sym_u_DQUOTE] = ACTIONS(3136), + [anon_sym_U_DQUOTE] = ACTIONS(3136), + [anon_sym_u8_DQUOTE] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [anon_sym_NULL] = ACTIONS(3134), + [anon_sym_nullptr] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), + [anon_sym_concept] = ACTIONS(3134), + [anon_sym_co_return] = ACTIONS(3134), + [anon_sym_co_yield] = ACTIONS(3134), + [anon_sym_R_DQUOTE] = ACTIONS(3136), + [anon_sym_LR_DQUOTE] = ACTIONS(3136), + [anon_sym_uR_DQUOTE] = ACTIONS(3136), + [anon_sym_UR_DQUOTE] = ACTIONS(3136), + [anon_sym_u8R_DQUOTE] = ACTIONS(3136), + [anon_sym_co_await] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_requires] = ACTIONS(3134), + [sym_this] = ACTIONS(3134), + }, + [939] = { + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_include_token1] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token2] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym___cdecl] = ACTIONS(3134), + [anon_sym___clrcall] = ACTIONS(3134), + [anon_sym___stdcall] = ACTIONS(3134), + [anon_sym___fastcall] = ACTIONS(3134), + [anon_sym___thiscall] = ACTIONS(3134), + [anon_sym___vectorcall] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym___try] = ACTIONS(3134), + [anon_sym___leave] = ACTIONS(3134), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_sizeof] = ACTIONS(3134), + [anon_sym___alignof__] = ACTIONS(3134), + [anon_sym___alignof] = ACTIONS(3134), + [anon_sym__alignof] = ACTIONS(3134), + [anon_sym_alignof] = ACTIONS(3134), + [anon_sym__Alignof] = ACTIONS(3134), + [anon_sym_offsetof] = ACTIONS(3134), + [anon_sym__Generic] = ACTIONS(3134), + [anon_sym_asm] = ACTIONS(3134), + [anon_sym___asm__] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3136), + [anon_sym_L_SQUOTE] = ACTIONS(3136), + [anon_sym_u_SQUOTE] = ACTIONS(3136), + [anon_sym_U_SQUOTE] = ACTIONS(3136), + [anon_sym_u8_SQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_L_DQUOTE] = ACTIONS(3136), + [anon_sym_u_DQUOTE] = ACTIONS(3136), + [anon_sym_U_DQUOTE] = ACTIONS(3136), + [anon_sym_u8_DQUOTE] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [anon_sym_NULL] = ACTIONS(3134), + [anon_sym_nullptr] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), + [anon_sym_concept] = ACTIONS(3134), + [anon_sym_co_return] = ACTIONS(3134), + [anon_sym_co_yield] = ACTIONS(3134), + [anon_sym_R_DQUOTE] = ACTIONS(3136), + [anon_sym_LR_DQUOTE] = ACTIONS(3136), + [anon_sym_uR_DQUOTE] = ACTIONS(3136), + [anon_sym_UR_DQUOTE] = ACTIONS(3136), + [anon_sym_u8R_DQUOTE] = ACTIONS(3136), + [anon_sym_co_await] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_requires] = ACTIONS(3134), + [sym_this] = ACTIONS(3134), + }, + [940] = { + [sym_identifier] = ACTIONS(3248), + [aux_sym_preproc_include_token1] = ACTIONS(3248), + [aux_sym_preproc_def_token1] = ACTIONS(3248), + [aux_sym_preproc_if_token1] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3248), + [sym_preproc_directive] = ACTIONS(3248), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_typedef] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym___cdecl] = ACTIONS(3248), + [anon_sym___clrcall] = ACTIONS(3248), + [anon_sym___stdcall] = ACTIONS(3248), + [anon_sym___fastcall] = ACTIONS(3248), + [anon_sym___thiscall] = ACTIONS(3248), + [anon_sym___vectorcall] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_signed] = ACTIONS(3248), + [anon_sym_unsigned] = ACTIONS(3248), + [anon_sym_long] = ACTIONS(3248), + [anon_sym_short] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [sym_primitive_type] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3248), + [anon_sym_union] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_goto] = ACTIONS(3248), + [anon_sym___try] = ACTIONS(3248), + [anon_sym___leave] = ACTIONS(3248), + [anon_sym_not] = ACTIONS(3248), + [anon_sym_compl] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_sizeof] = ACTIONS(3248), + [anon_sym___alignof__] = ACTIONS(3248), + [anon_sym___alignof] = ACTIONS(3248), + [anon_sym__alignof] = ACTIONS(3248), + [anon_sym_alignof] = ACTIONS(3248), + [anon_sym__Alignof] = ACTIONS(3248), + [anon_sym_offsetof] = ACTIONS(3248), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_asm] = ACTIONS(3248), + [anon_sym___asm__] = ACTIONS(3248), + [sym_number_literal] = ACTIONS(3250), + [anon_sym_L_SQUOTE] = ACTIONS(3250), + [anon_sym_u_SQUOTE] = ACTIONS(3250), + [anon_sym_U_SQUOTE] = ACTIONS(3250), + [anon_sym_u8_SQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_L_DQUOTE] = ACTIONS(3250), + [anon_sym_u_DQUOTE] = ACTIONS(3250), + [anon_sym_U_DQUOTE] = ACTIONS(3250), + [anon_sym_u8_DQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [anon_sym_NULL] = ACTIONS(3248), + [anon_sym_nullptr] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym_explicit] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_static_assert] = ACTIONS(3248), + [anon_sym_concept] = ACTIONS(3248), + [anon_sym_co_return] = ACTIONS(3248), + [anon_sym_co_yield] = ACTIONS(3248), + [anon_sym_R_DQUOTE] = ACTIONS(3250), + [anon_sym_LR_DQUOTE] = ACTIONS(3250), + [anon_sym_uR_DQUOTE] = ACTIONS(3250), + [anon_sym_UR_DQUOTE] = ACTIONS(3250), + [anon_sym_u8R_DQUOTE] = ACTIONS(3250), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_requires] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + }, + [941] = { [sym_identifier] = ACTIONS(3227), [aux_sym_preproc_include_token1] = ACTIONS(3227), [aux_sym_preproc_def_token1] = ACTIONS(3227), @@ -226069,6 +218998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3229), [anon_sym_AMP_AMP] = ACTIONS(3229), [anon_sym_AMP] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3229), [anon_sym___extension__] = ACTIONS(3227), [anon_sym_typedef] = ACTIONS(3227), [anon_sym_extern] = ACTIONS(3227), @@ -226084,6 +219014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3227), [anon_sym___vectorcall] = ACTIONS(3227), [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), [anon_sym_signed] = ACTIONS(3227), [anon_sym_unsigned] = ACTIONS(3227), [anon_sym_long] = ACTIONS(3227), @@ -226124,6 +219055,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(3227), [anon_sym_continue] = ACTIONS(3227), [anon_sym_goto] = ACTIONS(3227), + [anon_sym___try] = ACTIONS(3227), + [anon_sym___leave] = ACTIONS(3227), [anon_sym_not] = ACTIONS(3227), [anon_sym_compl] = ACTIONS(3227), [anon_sym_DASH_DASH] = ACTIONS(3229), @@ -226181,224 +219114,2199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3227), [sym_this] = ACTIONS(3227), }, - [999] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3124), - [aux_sym_preproc_include_token1] = ACTIONS(3124), - [aux_sym_preproc_def_token1] = ACTIONS(3124), - [aux_sym_preproc_if_token1] = ACTIONS(3124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3124), - [sym_preproc_directive] = ACTIONS(3124), - [anon_sym_LPAREN2] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_AMP_AMP] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym___extension__] = ACTIONS(3124), - [anon_sym_typedef] = ACTIONS(3124), - [anon_sym_extern] = ACTIONS(3124), - [anon_sym___attribute__] = ACTIONS(3124), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3126), - [anon_sym___declspec] = ACTIONS(3124), - [anon_sym___based] = ACTIONS(3124), - [anon_sym___cdecl] = ACTIONS(3124), - [anon_sym___clrcall] = ACTIONS(3124), - [anon_sym___stdcall] = ACTIONS(3124), - [anon_sym___fastcall] = ACTIONS(3124), - [anon_sym___thiscall] = ACTIONS(3124), - [anon_sym___vectorcall] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_signed] = ACTIONS(3124), - [anon_sym_unsigned] = ACTIONS(3124), - [anon_sym_long] = ACTIONS(3124), - [anon_sym_short] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_register] = ACTIONS(3124), - [anon_sym_inline] = ACTIONS(3124), - [anon_sym___inline] = ACTIONS(3124), - [anon_sym___inline__] = ACTIONS(3124), - [anon_sym___forceinline] = ACTIONS(3124), - [anon_sym_thread_local] = ACTIONS(3124), - [anon_sym___thread] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_constexpr] = ACTIONS(3124), - [anon_sym_volatile] = ACTIONS(3124), - [anon_sym_restrict] = ACTIONS(3124), - [anon_sym___restrict__] = ACTIONS(3124), - [anon_sym__Atomic] = ACTIONS(3124), - [anon_sym__Noreturn] = ACTIONS(3124), - [anon_sym_noreturn] = ACTIONS(3124), - [anon_sym_mutable] = ACTIONS(3124), - [anon_sym_constinit] = ACTIONS(3124), - [anon_sym_consteval] = ACTIONS(3124), - [sym_primitive_type] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_struct] = ACTIONS(3124), - [anon_sym_union] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_goto] = ACTIONS(3124), - [anon_sym_not] = ACTIONS(3124), - [anon_sym_compl] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3124), - [anon_sym___alignof__] = ACTIONS(3124), - [anon_sym___alignof] = ACTIONS(3124), - [anon_sym__alignof] = ACTIONS(3124), - [anon_sym_alignof] = ACTIONS(3124), - [anon_sym__Alignof] = ACTIONS(3124), - [anon_sym_offsetof] = ACTIONS(3124), - [anon_sym__Generic] = ACTIONS(3124), - [anon_sym_asm] = ACTIONS(3124), - [anon_sym___asm__] = ACTIONS(3124), - [sym_number_literal] = ACTIONS(3126), - [anon_sym_L_SQUOTE] = ACTIONS(3126), - [anon_sym_u_SQUOTE] = ACTIONS(3126), - [anon_sym_U_SQUOTE] = ACTIONS(3126), - [anon_sym_u8_SQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [anon_sym_L_DQUOTE] = ACTIONS(3126), - [anon_sym_u_DQUOTE] = ACTIONS(3126), - [anon_sym_U_DQUOTE] = ACTIONS(3126), - [anon_sym_u8_DQUOTE] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [anon_sym_NULL] = ACTIONS(3124), - [anon_sym_nullptr] = ACTIONS(3124), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3124), - [anon_sym_decltype] = ACTIONS(3124), - [anon_sym_virtual] = ACTIONS(3124), - [anon_sym_alignas] = ACTIONS(3124), - [anon_sym_explicit] = ACTIONS(3124), - [anon_sym_typename] = ACTIONS(3124), - [anon_sym_template] = ACTIONS(3124), - [anon_sym_operator] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_static_assert] = ACTIONS(3124), - [anon_sym_concept] = ACTIONS(3124), - [anon_sym_co_return] = ACTIONS(3124), - [anon_sym_co_yield] = ACTIONS(3124), - [anon_sym_R_DQUOTE] = ACTIONS(3126), - [anon_sym_LR_DQUOTE] = ACTIONS(3126), - [anon_sym_uR_DQUOTE] = ACTIONS(3126), - [anon_sym_UR_DQUOTE] = ACTIONS(3126), - [anon_sym_u8R_DQUOTE] = ACTIONS(3126), - [anon_sym_co_await] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_requires] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), + [942] = { + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_include_token1] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym___cdecl] = ACTIONS(3223), + [anon_sym___clrcall] = ACTIONS(3223), + [anon_sym___stdcall] = ACTIONS(3223), + [anon_sym___fastcall] = ACTIONS(3223), + [anon_sym___thiscall] = ACTIONS(3223), + [anon_sym___vectorcall] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_case] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_goto] = ACTIONS(3223), + [anon_sym___try] = ACTIONS(3223), + [anon_sym___leave] = ACTIONS(3223), + [anon_sym_not] = ACTIONS(3223), + [anon_sym_compl] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_sizeof] = ACTIONS(3223), + [anon_sym___alignof__] = ACTIONS(3223), + [anon_sym___alignof] = ACTIONS(3223), + [anon_sym__alignof] = ACTIONS(3223), + [anon_sym_alignof] = ACTIONS(3223), + [anon_sym__Alignof] = ACTIONS(3223), + [anon_sym_offsetof] = ACTIONS(3223), + [anon_sym__Generic] = ACTIONS(3223), + [anon_sym_asm] = ACTIONS(3223), + [anon_sym___asm__] = ACTIONS(3223), + [sym_number_literal] = ACTIONS(3225), + [anon_sym_L_SQUOTE] = ACTIONS(3225), + [anon_sym_u_SQUOTE] = ACTIONS(3225), + [anon_sym_U_SQUOTE] = ACTIONS(3225), + [anon_sym_u8_SQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_L_DQUOTE] = ACTIONS(3225), + [anon_sym_u_DQUOTE] = ACTIONS(3225), + [anon_sym_U_DQUOTE] = ACTIONS(3225), + [anon_sym_u8_DQUOTE] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [anon_sym_NULL] = ACTIONS(3223), + [anon_sym_nullptr] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + [anon_sym_concept] = ACTIONS(3223), + [anon_sym_co_return] = ACTIONS(3223), + [anon_sym_co_yield] = ACTIONS(3223), + [anon_sym_R_DQUOTE] = ACTIONS(3225), + [anon_sym_LR_DQUOTE] = ACTIONS(3225), + [anon_sym_uR_DQUOTE] = ACTIONS(3225), + [anon_sym_UR_DQUOTE] = ACTIONS(3225), + [anon_sym_u8R_DQUOTE] = ACTIONS(3225), + [anon_sym_co_await] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_requires] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), }, - [1000] = { - [sym_preproc_def] = STATE(968), - [sym_preproc_function_def] = STATE(968), - [sym_preproc_call] = STATE(968), - [sym_preproc_if_in_field_declaration_list] = STATE(968), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(968), - [sym_type_definition] = STATE(968), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(968), - [sym_field_declaration] = STATE(968), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(968), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(968), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(968), - [sym_operator_cast_declaration] = STATE(968), - [sym_constructor_or_destructor_definition] = STATE(968), - [sym_constructor_or_destructor_declaration] = STATE(968), - [sym_friend_declaration] = STATE(968), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(968), - [sym_alias_declaration] = STATE(968), - [sym_static_assert_declaration] = STATE(968), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(968), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), + [943] = { + [sym_identifier] = ACTIONS(3252), + [aux_sym_preproc_include_token1] = ACTIONS(3252), + [aux_sym_preproc_def_token1] = ACTIONS(3252), + [aux_sym_preproc_if_token1] = ACTIONS(3252), + [aux_sym_preproc_if_token2] = ACTIONS(3252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3252), + [sym_preproc_directive] = ACTIONS(3252), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym_typedef] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3254), + [anon_sym___declspec] = ACTIONS(3252), + [anon_sym___based] = ACTIONS(3252), + [anon_sym___cdecl] = ACTIONS(3252), + [anon_sym___clrcall] = ACTIONS(3252), + [anon_sym___stdcall] = ACTIONS(3252), + [anon_sym___fastcall] = ACTIONS(3252), + [anon_sym___thiscall] = ACTIONS(3252), + [anon_sym___vectorcall] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_signed] = ACTIONS(3252), + [anon_sym_unsigned] = ACTIONS(3252), + [anon_sym_long] = ACTIONS(3252), + [anon_sym_short] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_inline] = ACTIONS(3252), + [anon_sym___inline] = ACTIONS(3252), + [anon_sym___inline__] = ACTIONS(3252), + [anon_sym___forceinline] = ACTIONS(3252), + [anon_sym_thread_local] = ACTIONS(3252), + [anon_sym___thread] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [sym_primitive_type] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_goto] = ACTIONS(3252), + [anon_sym___try] = ACTIONS(3252), + [anon_sym___leave] = ACTIONS(3252), + [anon_sym_not] = ACTIONS(3252), + [anon_sym_compl] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_sizeof] = ACTIONS(3252), + [anon_sym___alignof__] = ACTIONS(3252), + [anon_sym___alignof] = ACTIONS(3252), + [anon_sym__alignof] = ACTIONS(3252), + [anon_sym_alignof] = ACTIONS(3252), + [anon_sym__Alignof] = ACTIONS(3252), + [anon_sym_offsetof] = ACTIONS(3252), + [anon_sym__Generic] = ACTIONS(3252), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3254), + [anon_sym_u_SQUOTE] = ACTIONS(3254), + [anon_sym_U_SQUOTE] = ACTIONS(3254), + [anon_sym_u8_SQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_L_DQUOTE] = ACTIONS(3254), + [anon_sym_u_DQUOTE] = ACTIONS(3254), + [anon_sym_U_DQUOTE] = ACTIONS(3254), + [anon_sym_u8_DQUOTE] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [anon_sym_NULL] = ACTIONS(3252), + [anon_sym_nullptr] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_virtual] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym_explicit] = ACTIONS(3252), + [anon_sym_typename] = ACTIONS(3252), + [anon_sym_template] = ACTIONS(3252), + [anon_sym_operator] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_static_assert] = ACTIONS(3252), + [anon_sym_concept] = ACTIONS(3252), + [anon_sym_co_return] = ACTIONS(3252), + [anon_sym_co_yield] = ACTIONS(3252), + [anon_sym_R_DQUOTE] = ACTIONS(3254), + [anon_sym_LR_DQUOTE] = ACTIONS(3254), + [anon_sym_uR_DQUOTE] = ACTIONS(3254), + [anon_sym_UR_DQUOTE] = ACTIONS(3254), + [anon_sym_u8R_DQUOTE] = ACTIONS(3254), + [anon_sym_co_await] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_requires] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + }, + [944] = { + [sym_identifier] = ACTIONS(3020), + [aux_sym_preproc_include_token1] = ACTIONS(3020), + [aux_sym_preproc_def_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token2] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3020), + [sym_preproc_directive] = ACTIONS(3020), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym___extension__] = ACTIONS(3020), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym___attribute__] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(3020), + [anon_sym___based] = ACTIONS(3020), + [anon_sym___cdecl] = ACTIONS(3020), + [anon_sym___clrcall] = ACTIONS(3020), + [anon_sym___stdcall] = ACTIONS(3020), + [anon_sym___fastcall] = ACTIONS(3020), + [anon_sym___thiscall] = ACTIONS(3020), + [anon_sym___vectorcall] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_signed] = ACTIONS(3020), + [anon_sym_unsigned] = ACTIONS(3020), + [anon_sym_long] = ACTIONS(3020), + [anon_sym_short] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_register] = ACTIONS(3020), + [anon_sym_inline] = ACTIONS(3020), + [anon_sym___inline] = ACTIONS(3020), + [anon_sym___inline__] = ACTIONS(3020), + [anon_sym___forceinline] = ACTIONS(3020), + [anon_sym_thread_local] = ACTIONS(3020), + [anon_sym___thread] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_constexpr] = ACTIONS(3020), + [anon_sym_volatile] = ACTIONS(3020), + [anon_sym_restrict] = ACTIONS(3020), + [anon_sym___restrict__] = ACTIONS(3020), + [anon_sym__Atomic] = ACTIONS(3020), + [anon_sym__Noreturn] = ACTIONS(3020), + [anon_sym_noreturn] = ACTIONS(3020), + [anon_sym_mutable] = ACTIONS(3020), + [anon_sym_constinit] = ACTIONS(3020), + [anon_sym_consteval] = ACTIONS(3020), + [sym_primitive_type] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_class] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym___try] = ACTIONS(3020), + [anon_sym___leave] = ACTIONS(3020), + [anon_sym_not] = ACTIONS(3020), + [anon_sym_compl] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_sizeof] = ACTIONS(3020), + [anon_sym___alignof__] = ACTIONS(3020), + [anon_sym___alignof] = ACTIONS(3020), + [anon_sym__alignof] = ACTIONS(3020), + [anon_sym_alignof] = ACTIONS(3020), + [anon_sym__Alignof] = ACTIONS(3020), + [anon_sym_offsetof] = ACTIONS(3020), + [anon_sym__Generic] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym___asm__] = ACTIONS(3020), + [sym_number_literal] = ACTIONS(3022), + [anon_sym_L_SQUOTE] = ACTIONS(3022), + [anon_sym_u_SQUOTE] = ACTIONS(3022), + [anon_sym_U_SQUOTE] = ACTIONS(3022), + [anon_sym_u8_SQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_L_DQUOTE] = ACTIONS(3022), + [anon_sym_u_DQUOTE] = ACTIONS(3022), + [anon_sym_U_DQUOTE] = ACTIONS(3022), + [anon_sym_u8_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_nullptr] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3020), + [anon_sym_decltype] = ACTIONS(3020), + [anon_sym_virtual] = ACTIONS(3020), + [anon_sym_alignas] = ACTIONS(3020), + [anon_sym_explicit] = ACTIONS(3020), + [anon_sym_typename] = ACTIONS(3020), + [anon_sym_template] = ACTIONS(3020), + [anon_sym_operator] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_using] = ACTIONS(3020), + [anon_sym_static_assert] = ACTIONS(3020), + [anon_sym_concept] = ACTIONS(3020), + [anon_sym_co_return] = ACTIONS(3020), + [anon_sym_co_yield] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(3022), + [anon_sym_LR_DQUOTE] = ACTIONS(3022), + [anon_sym_uR_DQUOTE] = ACTIONS(3022), + [anon_sym_UR_DQUOTE] = ACTIONS(3022), + [anon_sym_u8R_DQUOTE] = ACTIONS(3022), + [anon_sym_co_await] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_requires] = ACTIONS(3020), + [sym_this] = ACTIONS(3020), + }, + [945] = { + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_include_token1] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_if_token2] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym___cdecl] = ACTIONS(3302), + [anon_sym___clrcall] = ACTIONS(3302), + [anon_sym___stdcall] = ACTIONS(3302), + [anon_sym___fastcall] = ACTIONS(3302), + [anon_sym___thiscall] = ACTIONS(3302), + [anon_sym___vectorcall] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_goto] = ACTIONS(3302), + [anon_sym___try] = ACTIONS(3302), + [anon_sym___leave] = ACTIONS(3302), + [anon_sym_not] = ACTIONS(3302), + [anon_sym_compl] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_sizeof] = ACTIONS(3302), + [anon_sym___alignof__] = ACTIONS(3302), + [anon_sym___alignof] = ACTIONS(3302), + [anon_sym__alignof] = ACTIONS(3302), + [anon_sym_alignof] = ACTIONS(3302), + [anon_sym__Alignof] = ACTIONS(3302), + [anon_sym_offsetof] = ACTIONS(3302), + [anon_sym__Generic] = ACTIONS(3302), + [anon_sym_asm] = ACTIONS(3302), + [anon_sym___asm__] = ACTIONS(3302), + [sym_number_literal] = ACTIONS(3304), + [anon_sym_L_SQUOTE] = ACTIONS(3304), + [anon_sym_u_SQUOTE] = ACTIONS(3304), + [anon_sym_U_SQUOTE] = ACTIONS(3304), + [anon_sym_u8_SQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_L_DQUOTE] = ACTIONS(3304), + [anon_sym_u_DQUOTE] = ACTIONS(3304), + [anon_sym_U_DQUOTE] = ACTIONS(3304), + [anon_sym_u8_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [anon_sym_NULL] = ACTIONS(3302), + [anon_sym_nullptr] = ACTIONS(3302), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [anon_sym_concept] = ACTIONS(3302), + [anon_sym_co_return] = ACTIONS(3302), + [anon_sym_co_yield] = ACTIONS(3302), + [anon_sym_R_DQUOTE] = ACTIONS(3304), + [anon_sym_LR_DQUOTE] = ACTIONS(3304), + [anon_sym_uR_DQUOTE] = ACTIONS(3304), + [anon_sym_UR_DQUOTE] = ACTIONS(3304), + [anon_sym_u8R_DQUOTE] = ACTIONS(3304), + [anon_sym_co_await] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_requires] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + }, + [946] = { + [sym_identifier] = ACTIONS(3211), + [aux_sym_preproc_include_token1] = ACTIONS(3211), + [aux_sym_preproc_def_token1] = ACTIONS(3211), + [aux_sym_preproc_if_token1] = ACTIONS(3211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), + [sym_preproc_directive] = ACTIONS(3211), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_AMP_AMP] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym___extension__] = ACTIONS(3211), + [anon_sym_typedef] = ACTIONS(3211), + [anon_sym_extern] = ACTIONS(3211), + [anon_sym___attribute__] = ACTIONS(3211), + [anon_sym_COLON_COLON] = ACTIONS(3213), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), + [anon_sym___declspec] = ACTIONS(3211), + [anon_sym___based] = ACTIONS(3211), + [anon_sym___cdecl] = ACTIONS(3211), + [anon_sym___clrcall] = ACTIONS(3211), + [anon_sym___stdcall] = ACTIONS(3211), + [anon_sym___fastcall] = ACTIONS(3211), + [anon_sym___thiscall] = ACTIONS(3211), + [anon_sym___vectorcall] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_signed] = ACTIONS(3211), + [anon_sym_unsigned] = ACTIONS(3211), + [anon_sym_long] = ACTIONS(3211), + [anon_sym_short] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_register] = ACTIONS(3211), + [anon_sym_inline] = ACTIONS(3211), + [anon_sym___inline] = ACTIONS(3211), + [anon_sym___inline__] = ACTIONS(3211), + [anon_sym___forceinline] = ACTIONS(3211), + [anon_sym_thread_local] = ACTIONS(3211), + [anon_sym___thread] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_constexpr] = ACTIONS(3211), + [anon_sym_volatile] = ACTIONS(3211), + [anon_sym_restrict] = ACTIONS(3211), + [anon_sym___restrict__] = ACTIONS(3211), + [anon_sym__Atomic] = ACTIONS(3211), + [anon_sym__Noreturn] = ACTIONS(3211), + [anon_sym_noreturn] = ACTIONS(3211), + [anon_sym_mutable] = ACTIONS(3211), + [anon_sym_constinit] = ACTIONS(3211), + [anon_sym_consteval] = ACTIONS(3211), + [sym_primitive_type] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3211), + [anon_sym_union] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_case] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_goto] = ACTIONS(3211), + [anon_sym___try] = ACTIONS(3211), + [anon_sym___leave] = ACTIONS(3211), + [anon_sym_not] = ACTIONS(3211), + [anon_sym_compl] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_sizeof] = ACTIONS(3211), + [anon_sym___alignof__] = ACTIONS(3211), + [anon_sym___alignof] = ACTIONS(3211), + [anon_sym__alignof] = ACTIONS(3211), + [anon_sym_alignof] = ACTIONS(3211), + [anon_sym__Alignof] = ACTIONS(3211), + [anon_sym_offsetof] = ACTIONS(3211), + [anon_sym__Generic] = ACTIONS(3211), + [anon_sym_asm] = ACTIONS(3211), + [anon_sym___asm__] = ACTIONS(3211), + [sym_number_literal] = ACTIONS(3213), + [anon_sym_L_SQUOTE] = ACTIONS(3213), + [anon_sym_u_SQUOTE] = ACTIONS(3213), + [anon_sym_U_SQUOTE] = ACTIONS(3213), + [anon_sym_u8_SQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_L_DQUOTE] = ACTIONS(3213), + [anon_sym_u_DQUOTE] = ACTIONS(3213), + [anon_sym_U_DQUOTE] = ACTIONS(3213), + [anon_sym_u8_DQUOTE] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [anon_sym_NULL] = ACTIONS(3211), + [anon_sym_nullptr] = ACTIONS(3211), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3211), + [anon_sym_decltype] = ACTIONS(3211), + [anon_sym_virtual] = ACTIONS(3211), + [anon_sym_alignas] = ACTIONS(3211), + [anon_sym_explicit] = ACTIONS(3211), + [anon_sym_typename] = ACTIONS(3211), + [anon_sym_template] = ACTIONS(3211), + [anon_sym_operator] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_delete] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_static_assert] = ACTIONS(3211), + [anon_sym_concept] = ACTIONS(3211), + [anon_sym_co_return] = ACTIONS(3211), + [anon_sym_co_yield] = ACTIONS(3211), + [anon_sym_R_DQUOTE] = ACTIONS(3213), + [anon_sym_LR_DQUOTE] = ACTIONS(3213), + [anon_sym_uR_DQUOTE] = ACTIONS(3213), + [anon_sym_UR_DQUOTE] = ACTIONS(3213), + [anon_sym_u8R_DQUOTE] = ACTIONS(3213), + [anon_sym_co_await] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_requires] = ACTIONS(3211), + [sym_this] = ACTIONS(3211), + }, + [947] = { + [sym_identifier] = ACTIONS(3016), + [aux_sym_preproc_include_token1] = ACTIONS(3016), + [aux_sym_preproc_def_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token2] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3016), + [sym_preproc_directive] = ACTIONS(3016), + [anon_sym_LPAREN2] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_typedef] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym___attribute__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3018), + [anon_sym___declspec] = ACTIONS(3016), + [anon_sym___based] = ACTIONS(3016), + [anon_sym___cdecl] = ACTIONS(3016), + [anon_sym___clrcall] = ACTIONS(3016), + [anon_sym___stdcall] = ACTIONS(3016), + [anon_sym___fastcall] = ACTIONS(3016), + [anon_sym___thiscall] = ACTIONS(3016), + [anon_sym___vectorcall] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_signed] = ACTIONS(3016), + [anon_sym_unsigned] = ACTIONS(3016), + [anon_sym_long] = ACTIONS(3016), + [anon_sym_short] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_register] = ACTIONS(3016), + [anon_sym_inline] = ACTIONS(3016), + [anon_sym___inline] = ACTIONS(3016), + [anon_sym___inline__] = ACTIONS(3016), + [anon_sym___forceinline] = ACTIONS(3016), + [anon_sym_thread_local] = ACTIONS(3016), + [anon_sym___thread] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_constexpr] = ACTIONS(3016), + [anon_sym_volatile] = ACTIONS(3016), + [anon_sym_restrict] = ACTIONS(3016), + [anon_sym___restrict__] = ACTIONS(3016), + [anon_sym__Atomic] = ACTIONS(3016), + [anon_sym__Noreturn] = ACTIONS(3016), + [anon_sym_noreturn] = ACTIONS(3016), + [anon_sym_mutable] = ACTIONS(3016), + [anon_sym_constinit] = ACTIONS(3016), + [anon_sym_consteval] = ACTIONS(3016), + [sym_primitive_type] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_class] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym___try] = ACTIONS(3016), + [anon_sym___leave] = ACTIONS(3016), + [anon_sym_not] = ACTIONS(3016), + [anon_sym_compl] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_sizeof] = ACTIONS(3016), + [anon_sym___alignof__] = ACTIONS(3016), + [anon_sym___alignof] = ACTIONS(3016), + [anon_sym__alignof] = ACTIONS(3016), + [anon_sym_alignof] = ACTIONS(3016), + [anon_sym__Alignof] = ACTIONS(3016), + [anon_sym_offsetof] = ACTIONS(3016), + [anon_sym__Generic] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym___asm__] = ACTIONS(3016), + [sym_number_literal] = ACTIONS(3018), + [anon_sym_L_SQUOTE] = ACTIONS(3018), + [anon_sym_u_SQUOTE] = ACTIONS(3018), + [anon_sym_U_SQUOTE] = ACTIONS(3018), + [anon_sym_u8_SQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_L_DQUOTE] = ACTIONS(3018), + [anon_sym_u_DQUOTE] = ACTIONS(3018), + [anon_sym_U_DQUOTE] = ACTIONS(3018), + [anon_sym_u8_DQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_nullptr] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3016), + [anon_sym_decltype] = ACTIONS(3016), + [anon_sym_virtual] = ACTIONS(3016), + [anon_sym_alignas] = ACTIONS(3016), + [anon_sym_explicit] = ACTIONS(3016), + [anon_sym_typename] = ACTIONS(3016), + [anon_sym_template] = ACTIONS(3016), + [anon_sym_operator] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_delete] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_using] = ACTIONS(3016), + [anon_sym_static_assert] = ACTIONS(3016), + [anon_sym_concept] = ACTIONS(3016), + [anon_sym_co_return] = ACTIONS(3016), + [anon_sym_co_yield] = ACTIONS(3016), + [anon_sym_R_DQUOTE] = ACTIONS(3018), + [anon_sym_LR_DQUOTE] = ACTIONS(3018), + [anon_sym_uR_DQUOTE] = ACTIONS(3018), + [anon_sym_UR_DQUOTE] = ACTIONS(3018), + [anon_sym_u8R_DQUOTE] = ACTIONS(3018), + [anon_sym_co_await] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3016), + [sym_this] = ACTIONS(3016), + }, + [948] = { + [sym_identifier] = ACTIONS(3191), + [aux_sym_preproc_include_token1] = ACTIONS(3191), + [aux_sym_preproc_def_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3191), + [sym_preproc_directive] = ACTIONS(3191), + [anon_sym_LPAREN2] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym___extension__] = ACTIONS(3191), + [anon_sym_typedef] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym___attribute__] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(3193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3193), + [anon_sym___declspec] = ACTIONS(3191), + [anon_sym___based] = ACTIONS(3191), + [anon_sym___cdecl] = ACTIONS(3191), + [anon_sym___clrcall] = ACTIONS(3191), + [anon_sym___stdcall] = ACTIONS(3191), + [anon_sym___fastcall] = ACTIONS(3191), + [anon_sym___thiscall] = ACTIONS(3191), + [anon_sym___vectorcall] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_signed] = ACTIONS(3191), + [anon_sym_unsigned] = ACTIONS(3191), + [anon_sym_long] = ACTIONS(3191), + [anon_sym_short] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_register] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym___inline] = ACTIONS(3191), + [anon_sym___inline__] = ACTIONS(3191), + [anon_sym___forceinline] = ACTIONS(3191), + [anon_sym_thread_local] = ACTIONS(3191), + [anon_sym___thread] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_constexpr] = ACTIONS(3191), + [anon_sym_volatile] = ACTIONS(3191), + [anon_sym_restrict] = ACTIONS(3191), + [anon_sym___restrict__] = ACTIONS(3191), + [anon_sym__Atomic] = ACTIONS(3191), + [anon_sym__Noreturn] = ACTIONS(3191), + [anon_sym_noreturn] = ACTIONS(3191), + [anon_sym_mutable] = ACTIONS(3191), + [anon_sym_constinit] = ACTIONS(3191), + [anon_sym_consteval] = ACTIONS(3191), + [sym_primitive_type] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym___try] = ACTIONS(3191), + [anon_sym___leave] = ACTIONS(3191), + [anon_sym_not] = ACTIONS(3191), + [anon_sym_compl] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_sizeof] = ACTIONS(3191), + [anon_sym___alignof__] = ACTIONS(3191), + [anon_sym___alignof] = ACTIONS(3191), + [anon_sym__alignof] = ACTIONS(3191), + [anon_sym_alignof] = ACTIONS(3191), + [anon_sym__Alignof] = ACTIONS(3191), + [anon_sym_offsetof] = ACTIONS(3191), + [anon_sym__Generic] = ACTIONS(3191), + [anon_sym_asm] = ACTIONS(3191), + [anon_sym___asm__] = ACTIONS(3191), + [sym_number_literal] = ACTIONS(3193), + [anon_sym_L_SQUOTE] = ACTIONS(3193), + [anon_sym_u_SQUOTE] = ACTIONS(3193), + [anon_sym_U_SQUOTE] = ACTIONS(3193), + [anon_sym_u8_SQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_L_DQUOTE] = ACTIONS(3193), + [anon_sym_u_DQUOTE] = ACTIONS(3193), + [anon_sym_U_DQUOTE] = ACTIONS(3193), + [anon_sym_u8_DQUOTE] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [anon_sym_NULL] = ACTIONS(3191), + [anon_sym_nullptr] = ACTIONS(3191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3191), + [anon_sym_virtual] = ACTIONS(3191), + [anon_sym_alignas] = ACTIONS(3191), + [anon_sym_explicit] = ACTIONS(3191), + [anon_sym_typename] = ACTIONS(3191), + [anon_sym_template] = ACTIONS(3191), + [anon_sym_operator] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_static_assert] = ACTIONS(3191), + [anon_sym_concept] = ACTIONS(3191), + [anon_sym_co_return] = ACTIONS(3191), + [anon_sym_co_yield] = ACTIONS(3191), + [anon_sym_R_DQUOTE] = ACTIONS(3193), + [anon_sym_LR_DQUOTE] = ACTIONS(3193), + [anon_sym_uR_DQUOTE] = ACTIONS(3193), + [anon_sym_UR_DQUOTE] = ACTIONS(3193), + [anon_sym_u8R_DQUOTE] = ACTIONS(3193), + [anon_sym_co_await] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_requires] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), + }, + [949] = { + [sym_catch_clause] = STATE(403), + [aux_sym_constructor_try_statement_repeat1] = STATE(403), + [ts_builtin_sym_end] = ACTIONS(2840), + [sym_identifier] = ACTIONS(2838), + [aux_sym_preproc_include_token1] = ACTIONS(2838), + [aux_sym_preproc_def_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), + [sym_preproc_directive] = ACTIONS(2838), + [anon_sym_LPAREN2] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_PLUS] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2838), + [anon_sym_typedef] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym___attribute__] = ACTIONS(2838), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), + [anon_sym___declspec] = ACTIONS(2838), + [anon_sym___based] = ACTIONS(2838), + [anon_sym___cdecl] = ACTIONS(2838), + [anon_sym___clrcall] = ACTIONS(2838), + [anon_sym___stdcall] = ACTIONS(2838), + [anon_sym___fastcall] = ACTIONS(2838), + [anon_sym___thiscall] = ACTIONS(2838), + [anon_sym___vectorcall] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_signed] = ACTIONS(2838), + [anon_sym_unsigned] = ACTIONS(2838), + [anon_sym_long] = ACTIONS(2838), + [anon_sym_short] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_register] = ACTIONS(2838), + [anon_sym_inline] = ACTIONS(2838), + [anon_sym___inline] = ACTIONS(2838), + [anon_sym___inline__] = ACTIONS(2838), + [anon_sym___forceinline] = ACTIONS(2838), + [anon_sym_thread_local] = ACTIONS(2838), + [anon_sym___thread] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_constexpr] = ACTIONS(2838), + [anon_sym_volatile] = ACTIONS(2838), + [anon_sym_restrict] = ACTIONS(2838), + [anon_sym___restrict__] = ACTIONS(2838), + [anon_sym__Atomic] = ACTIONS(2838), + [anon_sym__Noreturn] = ACTIONS(2838), + [anon_sym_noreturn] = ACTIONS(2838), + [anon_sym_mutable] = ACTIONS(2838), + [anon_sym_constinit] = ACTIONS(2838), + [anon_sym_consteval] = ACTIONS(2838), + [sym_primitive_type] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_class] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_switch] = ACTIONS(2838), + [anon_sym_case] = ACTIONS(2838), + [anon_sym_default] = ACTIONS(2838), + [anon_sym_while] = ACTIONS(2838), + [anon_sym_do] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_goto] = ACTIONS(2838), + [anon_sym_not] = ACTIONS(2838), + [anon_sym_compl] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_sizeof] = ACTIONS(2838), + [anon_sym___alignof__] = ACTIONS(2838), + [anon_sym___alignof] = ACTIONS(2838), + [anon_sym__alignof] = ACTIONS(2838), + [anon_sym_alignof] = ACTIONS(2838), + [anon_sym__Alignof] = ACTIONS(2838), + [anon_sym_offsetof] = ACTIONS(2838), + [anon_sym__Generic] = ACTIONS(2838), + [anon_sym_asm] = ACTIONS(2838), + [anon_sym___asm__] = ACTIONS(2838), + [sym_number_literal] = ACTIONS(2840), + [anon_sym_L_SQUOTE] = ACTIONS(2840), + [anon_sym_u_SQUOTE] = ACTIONS(2840), + [anon_sym_U_SQUOTE] = ACTIONS(2840), + [anon_sym_u8_SQUOTE] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2840), + [anon_sym_L_DQUOTE] = ACTIONS(2840), + [anon_sym_u_DQUOTE] = ACTIONS(2840), + [anon_sym_U_DQUOTE] = ACTIONS(2840), + [anon_sym_u8_DQUOTE] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2840), + [sym_true] = ACTIONS(2838), + [sym_false] = ACTIONS(2838), + [anon_sym_NULL] = ACTIONS(2838), + [anon_sym_nullptr] = ACTIONS(2838), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2838), + [anon_sym_decltype] = ACTIONS(2838), + [anon_sym_virtual] = ACTIONS(2838), + [anon_sym_alignas] = ACTIONS(2838), + [anon_sym_explicit] = ACTIONS(2838), + [anon_sym_typename] = ACTIONS(2838), + [anon_sym_template] = ACTIONS(2838), + [anon_sym_operator] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2838), + [anon_sym_delete] = ACTIONS(2838), + [anon_sym_throw] = ACTIONS(2838), + [anon_sym_namespace] = ACTIONS(2838), + [anon_sym_using] = ACTIONS(2838), + [anon_sym_static_assert] = ACTIONS(2838), + [anon_sym_concept] = ACTIONS(2838), + [anon_sym_co_return] = ACTIONS(2838), + [anon_sym_co_yield] = ACTIONS(2838), + [anon_sym_catch] = ACTIONS(3008), + [anon_sym_R_DQUOTE] = ACTIONS(2840), + [anon_sym_LR_DQUOTE] = ACTIONS(2840), + [anon_sym_uR_DQUOTE] = ACTIONS(2840), + [anon_sym_UR_DQUOTE] = ACTIONS(2840), + [anon_sym_u8R_DQUOTE] = ACTIONS(2840), + [anon_sym_co_await] = ACTIONS(2838), + [anon_sym_new] = ACTIONS(2838), + [anon_sym_requires] = ACTIONS(2838), + [sym_this] = ACTIONS(2838), + }, + [950] = { + [sym_identifier] = ACTIONS(3175), + [aux_sym_preproc_include_token1] = ACTIONS(3175), + [aux_sym_preproc_def_token1] = ACTIONS(3175), + [aux_sym_preproc_if_token1] = ACTIONS(3175), + [aux_sym_preproc_if_token2] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3175), + [sym_preproc_directive] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym___extension__] = ACTIONS(3175), + [anon_sym_typedef] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym___attribute__] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), + [anon_sym___declspec] = ACTIONS(3175), + [anon_sym___based] = ACTIONS(3175), + [anon_sym___cdecl] = ACTIONS(3175), + [anon_sym___clrcall] = ACTIONS(3175), + [anon_sym___stdcall] = ACTIONS(3175), + [anon_sym___fastcall] = ACTIONS(3175), + [anon_sym___thiscall] = ACTIONS(3175), + [anon_sym___vectorcall] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_signed] = ACTIONS(3175), + [anon_sym_unsigned] = ACTIONS(3175), + [anon_sym_long] = ACTIONS(3175), + [anon_sym_short] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_register] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym___inline] = ACTIONS(3175), + [anon_sym___inline__] = ACTIONS(3175), + [anon_sym___forceinline] = ACTIONS(3175), + [anon_sym_thread_local] = ACTIONS(3175), + [anon_sym___thread] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_constexpr] = ACTIONS(3175), + [anon_sym_volatile] = ACTIONS(3175), + [anon_sym_restrict] = ACTIONS(3175), + [anon_sym___restrict__] = ACTIONS(3175), + [anon_sym__Atomic] = ACTIONS(3175), + [anon_sym__Noreturn] = ACTIONS(3175), + [anon_sym_noreturn] = ACTIONS(3175), + [anon_sym_mutable] = ACTIONS(3175), + [anon_sym_constinit] = ACTIONS(3175), + [anon_sym_consteval] = ACTIONS(3175), + [sym_primitive_type] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym___try] = ACTIONS(3175), + [anon_sym___leave] = ACTIONS(3175), + [anon_sym_not] = ACTIONS(3175), + [anon_sym_compl] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3175), + [anon_sym___alignof__] = ACTIONS(3175), + [anon_sym___alignof] = ACTIONS(3175), + [anon_sym__alignof] = ACTIONS(3175), + [anon_sym_alignof] = ACTIONS(3175), + [anon_sym__Alignof] = ACTIONS(3175), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3175), + [anon_sym_asm] = ACTIONS(3175), + [anon_sym___asm__] = ACTIONS(3175), + [sym_number_literal] = ACTIONS(3177), + [anon_sym_L_SQUOTE] = ACTIONS(3177), + [anon_sym_u_SQUOTE] = ACTIONS(3177), + [anon_sym_U_SQUOTE] = ACTIONS(3177), + [anon_sym_u8_SQUOTE] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_L_DQUOTE] = ACTIONS(3177), + [anon_sym_u_DQUOTE] = ACTIONS(3177), + [anon_sym_U_DQUOTE] = ACTIONS(3177), + [anon_sym_u8_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [anon_sym_NULL] = ACTIONS(3175), + [anon_sym_nullptr] = ACTIONS(3175), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3175), + [anon_sym_decltype] = ACTIONS(3175), + [anon_sym_virtual] = ACTIONS(3175), + [anon_sym_alignas] = ACTIONS(3175), + [anon_sym_explicit] = ACTIONS(3175), + [anon_sym_typename] = ACTIONS(3175), + [anon_sym_template] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_static_assert] = ACTIONS(3175), + [anon_sym_concept] = ACTIONS(3175), + [anon_sym_co_return] = ACTIONS(3175), + [anon_sym_co_yield] = ACTIONS(3175), + [anon_sym_R_DQUOTE] = ACTIONS(3177), + [anon_sym_LR_DQUOTE] = ACTIONS(3177), + [anon_sym_uR_DQUOTE] = ACTIONS(3177), + [anon_sym_UR_DQUOTE] = ACTIONS(3177), + [anon_sym_u8R_DQUOTE] = ACTIONS(3177), + [anon_sym_co_await] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_requires] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), + }, + [951] = { + [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(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym___extension__] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3312), + [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(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [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_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = 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_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(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [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_asm] = ACTIONS(3310), + [anon_sym___asm__] = ACTIONS(3310), + [sym_number_literal] = ACTIONS(3312), + [anon_sym_L_SQUOTE] = ACTIONS(3312), + [anon_sym_u_SQUOTE] = ACTIONS(3312), + [anon_sym_U_SQUOTE] = ACTIONS(3312), + [anon_sym_u8_SQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_L_DQUOTE] = ACTIONS(3312), + [anon_sym_u_DQUOTE] = ACTIONS(3312), + [anon_sym_U_DQUOTE] = ACTIONS(3312), + [anon_sym_u8_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [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_virtual] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym_explicit] = ACTIONS(3310), + [anon_sym_typename] = 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_using] = 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(3312), + [anon_sym_LR_DQUOTE] = ACTIONS(3312), + [anon_sym_uR_DQUOTE] = ACTIONS(3312), + [anon_sym_UR_DQUOTE] = ACTIONS(3312), + [anon_sym_u8R_DQUOTE] = ACTIONS(3312), + [anon_sym_co_await] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_requires] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + }, + [952] = { + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_include_token1] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym___cdecl] = ACTIONS(3294), + [anon_sym___clrcall] = ACTIONS(3294), + [anon_sym___stdcall] = ACTIONS(3294), + [anon_sym___fastcall] = ACTIONS(3294), + [anon_sym___thiscall] = ACTIONS(3294), + [anon_sym___vectorcall] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_goto] = ACTIONS(3294), + [anon_sym___try] = ACTIONS(3294), + [anon_sym___leave] = ACTIONS(3294), + [anon_sym_not] = ACTIONS(3294), + [anon_sym_compl] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_sizeof] = ACTIONS(3294), + [anon_sym___alignof__] = ACTIONS(3294), + [anon_sym___alignof] = ACTIONS(3294), + [anon_sym__alignof] = ACTIONS(3294), + [anon_sym_alignof] = ACTIONS(3294), + [anon_sym__Alignof] = ACTIONS(3294), + [anon_sym_offsetof] = ACTIONS(3294), + [anon_sym__Generic] = ACTIONS(3294), + [anon_sym_asm] = ACTIONS(3294), + [anon_sym___asm__] = ACTIONS(3294), + [sym_number_literal] = ACTIONS(3296), + [anon_sym_L_SQUOTE] = ACTIONS(3296), + [anon_sym_u_SQUOTE] = ACTIONS(3296), + [anon_sym_U_SQUOTE] = ACTIONS(3296), + [anon_sym_u8_SQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_L_DQUOTE] = ACTIONS(3296), + [anon_sym_u_DQUOTE] = ACTIONS(3296), + [anon_sym_U_DQUOTE] = ACTIONS(3296), + [anon_sym_u8_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [anon_sym_NULL] = ACTIONS(3294), + [anon_sym_nullptr] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [anon_sym_concept] = ACTIONS(3294), + [anon_sym_co_return] = ACTIONS(3294), + [anon_sym_co_yield] = ACTIONS(3294), + [anon_sym_R_DQUOTE] = ACTIONS(3296), + [anon_sym_LR_DQUOTE] = ACTIONS(3296), + [anon_sym_uR_DQUOTE] = ACTIONS(3296), + [anon_sym_UR_DQUOTE] = ACTIONS(3296), + [anon_sym_u8R_DQUOTE] = ACTIONS(3296), + [anon_sym_co_await] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), + }, + [953] = { + [sym_identifier] = ACTIONS(3290), + [aux_sym_preproc_include_token1] = ACTIONS(3290), + [aux_sym_preproc_def_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), + [sym_preproc_directive] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym___extension__] = ACTIONS(3290), + [anon_sym_typedef] = ACTIONS(3290), + [anon_sym_extern] = ACTIONS(3290), + [anon_sym___attribute__] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), + [anon_sym___declspec] = ACTIONS(3290), + [anon_sym___based] = ACTIONS(3290), + [anon_sym___cdecl] = ACTIONS(3290), + [anon_sym___clrcall] = ACTIONS(3290), + [anon_sym___stdcall] = ACTIONS(3290), + [anon_sym___fastcall] = ACTIONS(3290), + [anon_sym___thiscall] = ACTIONS(3290), + [anon_sym___vectorcall] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_signed] = ACTIONS(3290), + [anon_sym_unsigned] = ACTIONS(3290), + [anon_sym_long] = ACTIONS(3290), + [anon_sym_short] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_register] = ACTIONS(3290), + [anon_sym_inline] = ACTIONS(3290), + [anon_sym___inline] = ACTIONS(3290), + [anon_sym___inline__] = ACTIONS(3290), + [anon_sym___forceinline] = ACTIONS(3290), + [anon_sym_thread_local] = ACTIONS(3290), + [anon_sym___thread] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_constexpr] = ACTIONS(3290), + [anon_sym_volatile] = ACTIONS(3290), + [anon_sym_restrict] = ACTIONS(3290), + [anon_sym___restrict__] = ACTIONS(3290), + [anon_sym__Atomic] = ACTIONS(3290), + [anon_sym__Noreturn] = ACTIONS(3290), + [anon_sym_noreturn] = ACTIONS(3290), + [anon_sym_mutable] = ACTIONS(3290), + [anon_sym_constinit] = ACTIONS(3290), + [anon_sym_consteval] = ACTIONS(3290), + [sym_primitive_type] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_goto] = ACTIONS(3290), + [anon_sym___try] = ACTIONS(3290), + [anon_sym___leave] = ACTIONS(3290), + [anon_sym_not] = ACTIONS(3290), + [anon_sym_compl] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_sizeof] = ACTIONS(3290), + [anon_sym___alignof__] = ACTIONS(3290), + [anon_sym___alignof] = ACTIONS(3290), + [anon_sym__alignof] = ACTIONS(3290), + [anon_sym_alignof] = ACTIONS(3290), + [anon_sym__Alignof] = ACTIONS(3290), + [anon_sym_offsetof] = ACTIONS(3290), + [anon_sym__Generic] = ACTIONS(3290), + [anon_sym_asm] = ACTIONS(3290), + [anon_sym___asm__] = ACTIONS(3290), + [sym_number_literal] = ACTIONS(3292), + [anon_sym_L_SQUOTE] = ACTIONS(3292), + [anon_sym_u_SQUOTE] = ACTIONS(3292), + [anon_sym_U_SQUOTE] = ACTIONS(3292), + [anon_sym_u8_SQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_L_DQUOTE] = ACTIONS(3292), + [anon_sym_u_DQUOTE] = ACTIONS(3292), + [anon_sym_U_DQUOTE] = ACTIONS(3292), + [anon_sym_u8_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [anon_sym_NULL] = ACTIONS(3290), + [anon_sym_nullptr] = ACTIONS(3290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3290), + [anon_sym_decltype] = ACTIONS(3290), + [anon_sym_virtual] = ACTIONS(3290), + [anon_sym_alignas] = ACTIONS(3290), + [anon_sym_explicit] = ACTIONS(3290), + [anon_sym_typename] = ACTIONS(3290), + [anon_sym_template] = ACTIONS(3290), + [anon_sym_operator] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_static_assert] = ACTIONS(3290), + [anon_sym_concept] = ACTIONS(3290), + [anon_sym_co_return] = ACTIONS(3290), + [anon_sym_co_yield] = ACTIONS(3290), + [anon_sym_R_DQUOTE] = ACTIONS(3292), + [anon_sym_LR_DQUOTE] = ACTIONS(3292), + [anon_sym_uR_DQUOTE] = ACTIONS(3292), + [anon_sym_UR_DQUOTE] = ACTIONS(3292), + [anon_sym_u8R_DQUOTE] = ACTIONS(3292), + [anon_sym_co_await] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_requires] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), + }, + [954] = { + [sym__expression] = STATE(4185), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_initializer_list] = STATE(4333), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [aux_sym_preproc_if_token2] = ACTIONS(2140), + [aux_sym_preproc_else_token1] = ACTIONS(2140), + [aux_sym_preproc_elif_token1] = ACTIONS(2138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2140), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2140), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2140), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), + }, + [955] = { + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6205), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(7192), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2057), + [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(8453), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3468), + [aux_sym_preproc_def_token1] = ACTIONS(3634), + [aux_sym_preproc_if_token1] = ACTIONS(3637), + [aux_sym_preproc_if_token2] = ACTIONS(3477), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3477), + [aux_sym_preproc_elif_token1] = ACTIONS(3477), + [sym_preproc_directive] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_AMP_AMP] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym___extension__] = ACTIONS(3646), + [anon_sym_typedef] = ACTIONS(3649), + [anon_sym_extern] = ACTIONS(3506), + [anon_sym___attribute__] = ACTIONS(3509), + [anon_sym_COLON_COLON] = ACTIONS(3512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3521), + [anon_sym_signed] = ACTIONS(3524), + [anon_sym_unsigned] = ACTIONS(3524), + [anon_sym_long] = ACTIONS(3524), + [anon_sym_short] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_register] = ACTIONS(3506), + [anon_sym_inline] = ACTIONS(3506), + [anon_sym___inline] = ACTIONS(3506), + [anon_sym___inline__] = ACTIONS(3506), + [anon_sym___forceinline] = ACTIONS(3506), + [anon_sym_thread_local] = ACTIONS(3506), + [anon_sym___thread] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_constexpr] = ACTIONS(3530), + [anon_sym_volatile] = ACTIONS(3530), + [anon_sym_restrict] = ACTIONS(3530), + [anon_sym___restrict__] = ACTIONS(3530), + [anon_sym__Atomic] = ACTIONS(3530), + [anon_sym__Noreturn] = ACTIONS(3530), + [anon_sym_noreturn] = ACTIONS(3530), + [anon_sym_mutable] = ACTIONS(3530), + [anon_sym_constinit] = ACTIONS(3530), + [anon_sym_consteval] = ACTIONS(3530), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3536), + [anon_sym_class] = ACTIONS(3539), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3548), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3554), + [anon_sym_alignas] = ACTIONS(3557), + [anon_sym_explicit] = ACTIONS(3560), + [anon_sym_typename] = ACTIONS(3563), + [anon_sym_template] = ACTIONS(3652), + [anon_sym_operator] = ACTIONS(3569), + [anon_sym_friend] = ACTIONS(3655), + [anon_sym_public] = ACTIONS(3575), + [anon_sym_private] = ACTIONS(3575), + [anon_sym_protected] = ACTIONS(3575), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_static_assert] = ACTIONS(3661), + }, + [956] = { + [ts_builtin_sym_end] = ACTIONS(3112), + [sym_identifier] = ACTIONS(3110), + [aux_sym_preproc_include_token1] = ACTIONS(3110), + [aux_sym_preproc_def_token1] = ACTIONS(3110), + [aux_sym_preproc_if_token1] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3110), + [sym_preproc_directive] = ACTIONS(3110), + [anon_sym_LPAREN2] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym___extension__] = ACTIONS(3110), + [anon_sym_typedef] = ACTIONS(3110), + [anon_sym_extern] = ACTIONS(3110), + [anon_sym___attribute__] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3112), + [anon_sym___declspec] = ACTIONS(3110), + [anon_sym___based] = ACTIONS(3110), + [anon_sym___cdecl] = ACTIONS(3110), + [anon_sym___clrcall] = ACTIONS(3110), + [anon_sym___stdcall] = ACTIONS(3110), + [anon_sym___fastcall] = ACTIONS(3110), + [anon_sym___thiscall] = ACTIONS(3110), + [anon_sym___vectorcall] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_signed] = ACTIONS(3110), + [anon_sym_unsigned] = ACTIONS(3110), + [anon_sym_long] = ACTIONS(3110), + [anon_sym_short] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_static] = ACTIONS(3110), + [anon_sym_register] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym___inline] = ACTIONS(3110), + [anon_sym___inline__] = ACTIONS(3110), + [anon_sym___forceinline] = ACTIONS(3110), + [anon_sym_thread_local] = ACTIONS(3110), + [anon_sym___thread] = ACTIONS(3110), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_constexpr] = ACTIONS(3110), + [anon_sym_volatile] = ACTIONS(3110), + [anon_sym_restrict] = ACTIONS(3110), + [anon_sym___restrict__] = ACTIONS(3110), + [anon_sym__Atomic] = ACTIONS(3110), + [anon_sym__Noreturn] = ACTIONS(3110), + [anon_sym_noreturn] = ACTIONS(3110), + [anon_sym_mutable] = ACTIONS(3110), + [anon_sym_constinit] = ACTIONS(3110), + [anon_sym_consteval] = ACTIONS(3110), + [sym_primitive_type] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_class] = ACTIONS(3110), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_union] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_switch] = ACTIONS(3110), + [anon_sym_case] = ACTIONS(3110), + [anon_sym_default] = ACTIONS(3110), + [anon_sym_while] = ACTIONS(3110), + [anon_sym_do] = ACTIONS(3110), + [anon_sym_for] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_goto] = ACTIONS(3110), + [anon_sym_not] = ACTIONS(3110), + [anon_sym_compl] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_sizeof] = ACTIONS(3110), + [anon_sym___alignof__] = ACTIONS(3110), + [anon_sym___alignof] = ACTIONS(3110), + [anon_sym__alignof] = ACTIONS(3110), + [anon_sym_alignof] = ACTIONS(3110), + [anon_sym__Alignof] = ACTIONS(3110), + [anon_sym_offsetof] = ACTIONS(3110), + [anon_sym__Generic] = ACTIONS(3110), + [anon_sym_asm] = ACTIONS(3110), + [anon_sym___asm__] = ACTIONS(3110), + [sym_number_literal] = ACTIONS(3112), + [anon_sym_L_SQUOTE] = ACTIONS(3112), + [anon_sym_u_SQUOTE] = ACTIONS(3112), + [anon_sym_U_SQUOTE] = ACTIONS(3112), + [anon_sym_u8_SQUOTE] = ACTIONS(3112), + [anon_sym_SQUOTE] = ACTIONS(3112), + [anon_sym_L_DQUOTE] = ACTIONS(3112), + [anon_sym_u_DQUOTE] = ACTIONS(3112), + [anon_sym_U_DQUOTE] = ACTIONS(3112), + [anon_sym_u8_DQUOTE] = ACTIONS(3112), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [anon_sym_NULL] = ACTIONS(3110), + [anon_sym_nullptr] = ACTIONS(3110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3110), + [anon_sym_decltype] = ACTIONS(3110), + [anon_sym_virtual] = ACTIONS(3110), + [anon_sym_alignas] = ACTIONS(3110), + [anon_sym_explicit] = ACTIONS(3110), + [anon_sym_typename] = ACTIONS(3110), + [anon_sym_template] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_try] = ACTIONS(3110), + [anon_sym_delete] = ACTIONS(3110), + [anon_sym_throw] = ACTIONS(3110), + [anon_sym_namespace] = ACTIONS(3110), + [anon_sym_using] = ACTIONS(3110), + [anon_sym_static_assert] = ACTIONS(3110), + [anon_sym_concept] = ACTIONS(3110), + [anon_sym_co_return] = ACTIONS(3110), + [anon_sym_co_yield] = ACTIONS(3110), + [anon_sym_R_DQUOTE] = ACTIONS(3112), + [anon_sym_LR_DQUOTE] = ACTIONS(3112), + [anon_sym_uR_DQUOTE] = ACTIONS(3112), + [anon_sym_UR_DQUOTE] = ACTIONS(3112), + [anon_sym_u8R_DQUOTE] = ACTIONS(3112), + [anon_sym_co_await] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3110), + [anon_sym_requires] = ACTIONS(3110), + [sym_this] = ACTIONS(3110), + }, + [957] = { + [ts_builtin_sym_end] = ACTIONS(3153), + [sym_identifier] = ACTIONS(3151), + [aux_sym_preproc_include_token1] = ACTIONS(3151), + [aux_sym_preproc_def_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym___extension__] = ACTIONS(3151), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_extern] = ACTIONS(3151), + [anon_sym___attribute__] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(3151), + [anon_sym___cdecl] = ACTIONS(3151), + [anon_sym___clrcall] = ACTIONS(3151), + [anon_sym___stdcall] = ACTIONS(3151), + [anon_sym___fastcall] = ACTIONS(3151), + [anon_sym___thiscall] = ACTIONS(3151), + [anon_sym___vectorcall] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3151), + [anon_sym_unsigned] = ACTIONS(3151), + [anon_sym_long] = ACTIONS(3151), + [anon_sym_short] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_register] = ACTIONS(3151), + [anon_sym_inline] = ACTIONS(3151), + [anon_sym___inline] = ACTIONS(3151), + [anon_sym___inline__] = ACTIONS(3151), + [anon_sym___forceinline] = ACTIONS(3151), + [anon_sym_thread_local] = ACTIONS(3151), + [anon_sym___thread] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_constexpr] = ACTIONS(3151), + [anon_sym_volatile] = ACTIONS(3151), + [anon_sym_restrict] = ACTIONS(3151), + [anon_sym___restrict__] = ACTIONS(3151), + [anon_sym__Atomic] = ACTIONS(3151), + [anon_sym__Noreturn] = ACTIONS(3151), + [anon_sym_noreturn] = ACTIONS(3151), + [anon_sym_mutable] = ACTIONS(3151), + [anon_sym_constinit] = ACTIONS(3151), + [anon_sym_consteval] = ACTIONS(3151), + [sym_primitive_type] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3151), + [anon_sym_case] = ACTIONS(3151), + [anon_sym_default] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_do] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_goto] = ACTIONS(3151), + [anon_sym_not] = ACTIONS(3151), + [anon_sym_compl] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3151), + [anon_sym___alignof__] = ACTIONS(3151), + [anon_sym___alignof] = ACTIONS(3151), + [anon_sym__alignof] = ACTIONS(3151), + [anon_sym_alignof] = ACTIONS(3151), + [anon_sym__Alignof] = ACTIONS(3151), + [anon_sym_offsetof] = ACTIONS(3151), + [anon_sym__Generic] = ACTIONS(3151), + [anon_sym_asm] = ACTIONS(3151), + [anon_sym___asm__] = ACTIONS(3151), + [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(3151), + [sym_false] = ACTIONS(3151), + [anon_sym_NULL] = ACTIONS(3151), + [anon_sym_nullptr] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3151), + [anon_sym_decltype] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3151), + [anon_sym_alignas] = ACTIONS(3151), + [anon_sym_explicit] = ACTIONS(3151), + [anon_sym_typename] = ACTIONS(3151), + [anon_sym_template] = ACTIONS(3151), + [anon_sym_operator] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [anon_sym_delete] = ACTIONS(3151), + [anon_sym_throw] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_static_assert] = ACTIONS(3151), + [anon_sym_concept] = ACTIONS(3151), + [anon_sym_co_return] = ACTIONS(3151), + [anon_sym_co_yield] = ACTIONS(3151), + [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(3151), + [anon_sym_new] = ACTIONS(3151), + [anon_sym_requires] = ACTIONS(3151), + [sym_this] = ACTIONS(3151), + }, + [958] = { + [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(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(960), + [sym_field_declaration] = STATE(960), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(960), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(960), + [sym__constructor_specifiers] = STATE(2044), + [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(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(960), + [sym_alias_declaration] = STATE(960), + [sym_static_assert_declaration] = STATE(960), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(960), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3802), + [anon_sym_RBRACE] = ACTIONS(3676), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -226418,374 +221326,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [1001] = { - [ts_builtin_sym_end] = ACTIONS(3166), - [sym_identifier] = ACTIONS(3164), - [aux_sym_preproc_include_token1] = ACTIONS(3164), - [aux_sym_preproc_def_token1] = ACTIONS(3164), - [aux_sym_preproc_if_token1] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), - [sym_preproc_directive] = ACTIONS(3164), - [anon_sym_LPAREN2] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_STAR] = ACTIONS(3166), - [anon_sym_AMP_AMP] = ACTIONS(3166), - [anon_sym_AMP] = ACTIONS(3164), - [anon_sym___extension__] = ACTIONS(3164), - [anon_sym_typedef] = ACTIONS(3164), - [anon_sym_extern] = ACTIONS(3164), - [anon_sym___attribute__] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), - [anon_sym___declspec] = ACTIONS(3164), - [anon_sym___based] = ACTIONS(3164), - [anon_sym___cdecl] = ACTIONS(3164), - [anon_sym___clrcall] = ACTIONS(3164), - [anon_sym___stdcall] = ACTIONS(3164), - [anon_sym___fastcall] = ACTIONS(3164), - [anon_sym___thiscall] = ACTIONS(3164), - [anon_sym___vectorcall] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_signed] = ACTIONS(3164), - [anon_sym_unsigned] = ACTIONS(3164), - [anon_sym_long] = ACTIONS(3164), - [anon_sym_short] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_register] = ACTIONS(3164), - [anon_sym_inline] = ACTIONS(3164), - [anon_sym___inline] = ACTIONS(3164), - [anon_sym___inline__] = ACTIONS(3164), - [anon_sym___forceinline] = ACTIONS(3164), - [anon_sym_thread_local] = ACTIONS(3164), - [anon_sym___thread] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_constexpr] = ACTIONS(3164), - [anon_sym_volatile] = ACTIONS(3164), - [anon_sym_restrict] = ACTIONS(3164), - [anon_sym___restrict__] = ACTIONS(3164), - [anon_sym__Atomic] = ACTIONS(3164), - [anon_sym__Noreturn] = ACTIONS(3164), - [anon_sym_noreturn] = ACTIONS(3164), - [anon_sym_mutable] = ACTIONS(3164), - [anon_sym_constinit] = ACTIONS(3164), - [anon_sym_consteval] = ACTIONS(3164), - [sym_primitive_type] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_struct] = ACTIONS(3164), - [anon_sym_union] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_case] = ACTIONS(3164), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_goto] = ACTIONS(3164), - [anon_sym_not] = ACTIONS(3164), - [anon_sym_compl] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_sizeof] = ACTIONS(3164), - [anon_sym___alignof__] = ACTIONS(3164), - [anon_sym___alignof] = ACTIONS(3164), - [anon_sym__alignof] = ACTIONS(3164), - [anon_sym_alignof] = ACTIONS(3164), - [anon_sym__Alignof] = ACTIONS(3164), - [anon_sym_offsetof] = ACTIONS(3164), - [anon_sym__Generic] = ACTIONS(3164), - [anon_sym_asm] = ACTIONS(3164), - [anon_sym___asm__] = ACTIONS(3164), - [sym_number_literal] = ACTIONS(3166), - [anon_sym_L_SQUOTE] = ACTIONS(3166), - [anon_sym_u_SQUOTE] = ACTIONS(3166), - [anon_sym_U_SQUOTE] = ACTIONS(3166), - [anon_sym_u8_SQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_L_DQUOTE] = ACTIONS(3166), - [anon_sym_u_DQUOTE] = ACTIONS(3166), - [anon_sym_U_DQUOTE] = ACTIONS(3166), - [anon_sym_u8_DQUOTE] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [anon_sym_NULL] = ACTIONS(3164), - [anon_sym_nullptr] = ACTIONS(3164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3164), - [anon_sym_virtual] = ACTIONS(3164), - [anon_sym_alignas] = ACTIONS(3164), - [anon_sym_explicit] = ACTIONS(3164), - [anon_sym_typename] = ACTIONS(3164), - [anon_sym_template] = ACTIONS(3164), - [anon_sym_operator] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_static_assert] = ACTIONS(3164), - [anon_sym_concept] = ACTIONS(3164), - [anon_sym_co_return] = ACTIONS(3164), - [anon_sym_co_yield] = ACTIONS(3164), - [anon_sym_R_DQUOTE] = ACTIONS(3166), - [anon_sym_LR_DQUOTE] = ACTIONS(3166), - [anon_sym_uR_DQUOTE] = ACTIONS(3166), - [anon_sym_UR_DQUOTE] = ACTIONS(3166), - [anon_sym_u8R_DQUOTE] = ACTIONS(3166), - [anon_sym_co_await] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_requires] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1002] = { - [ts_builtin_sym_end] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_include_token1] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym___cdecl] = ACTIONS(3219), - [anon_sym___clrcall] = ACTIONS(3219), - [anon_sym___stdcall] = ACTIONS(3219), - [anon_sym___fastcall] = ACTIONS(3219), - [anon_sym___thiscall] = ACTIONS(3219), - [anon_sym___vectorcall] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_compl] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(3219), - [anon_sym___alignof__] = ACTIONS(3219), - [anon_sym___alignof] = ACTIONS(3219), - [anon_sym__alignof] = ACTIONS(3219), - [anon_sym_alignof] = ACTIONS(3219), - [anon_sym__Alignof] = ACTIONS(3219), - [anon_sym_offsetof] = ACTIONS(3219), - [anon_sym__Generic] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym___asm__] = ACTIONS(3219), - [sym_number_literal] = ACTIONS(3221), - [anon_sym_L_SQUOTE] = ACTIONS(3221), - [anon_sym_u_SQUOTE] = ACTIONS(3221), - [anon_sym_U_SQUOTE] = ACTIONS(3221), - [anon_sym_u8_SQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_L_DQUOTE] = ACTIONS(3221), - [anon_sym_u_DQUOTE] = ACTIONS(3221), - [anon_sym_U_DQUOTE] = ACTIONS(3221), - [anon_sym_u8_DQUOTE] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [anon_sym_NULL] = ACTIONS(3219), - [anon_sym_nullptr] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_explicit] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_operator] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_static_assert] = ACTIONS(3219), - [anon_sym_concept] = ACTIONS(3219), - [anon_sym_co_return] = ACTIONS(3219), - [anon_sym_co_yield] = ACTIONS(3219), - [anon_sym_R_DQUOTE] = ACTIONS(3221), - [anon_sym_LR_DQUOTE] = ACTIONS(3221), - [anon_sym_uR_DQUOTE] = ACTIONS(3221), - [anon_sym_UR_DQUOTE] = ACTIONS(3221), - [anon_sym_u8R_DQUOTE] = ACTIONS(3221), - [anon_sym_co_await] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_requires] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - }, - [1003] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), + [959] = { + [sym_preproc_def] = STATE(1035), + [sym_preproc_function_def] = STATE(1035), + [sym_preproc_call] = STATE(1035), + [sym_preproc_if_in_field_declaration_list] = STATE(1035), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1035), + [sym_type_definition] = STATE(1035), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6173), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6766), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(1035), + [sym_field_declaration] = STATE(1035), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2043), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(1035), + [sym_operator_cast] = STATE(7229), + [sym_inline_method_definition] = STATE(1035), + [sym__constructor_specifiers] = STATE(2043), + [sym_operator_cast_definition] = STATE(1035), + [sym_operator_cast_declaration] = STATE(1035), + [sym_constructor_or_destructor_definition] = STATE(1035), + [sym_constructor_or_destructor_declaration] = STATE(1035), + [sym_friend_declaration] = STATE(1035), + [sym_access_specifier] = STATE(8696), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(1035), + [sym_alias_declaration] = STATE(1035), + [sym_static_assert_declaration] = STATE(1035), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7229), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1035), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2043), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3688), + [aux_sym_preproc_if_token2] = ACTIONS(3690), [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3046), [anon_sym___extension__] = ACTIONS(3696), [anon_sym_typedef] = ACTIONS(3698), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3804), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -226805,374 +221455,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3700), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [1004] = { - [ts_builtin_sym_end] = ACTIONS(3114), - [sym_identifier] = ACTIONS(3112), - [aux_sym_preproc_include_token1] = ACTIONS(3112), - [aux_sym_preproc_def_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), - [sym_preproc_directive] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym___extension__] = ACTIONS(3112), - [anon_sym_typedef] = ACTIONS(3112), - [anon_sym_extern] = ACTIONS(3112), - [anon_sym___attribute__] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), - [anon_sym___declspec] = ACTIONS(3112), - [anon_sym___based] = ACTIONS(3112), - [anon_sym___cdecl] = ACTIONS(3112), - [anon_sym___clrcall] = ACTIONS(3112), - [anon_sym___stdcall] = ACTIONS(3112), - [anon_sym___fastcall] = ACTIONS(3112), - [anon_sym___thiscall] = ACTIONS(3112), - [anon_sym___vectorcall] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3114), - [anon_sym_signed] = ACTIONS(3112), - [anon_sym_unsigned] = ACTIONS(3112), - [anon_sym_long] = ACTIONS(3112), - [anon_sym_short] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_register] = ACTIONS(3112), - [anon_sym_inline] = ACTIONS(3112), - [anon_sym___inline] = ACTIONS(3112), - [anon_sym___inline__] = ACTIONS(3112), - [anon_sym___forceinline] = ACTIONS(3112), - [anon_sym_thread_local] = ACTIONS(3112), - [anon_sym___thread] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_constexpr] = ACTIONS(3112), - [anon_sym_volatile] = ACTIONS(3112), - [anon_sym_restrict] = ACTIONS(3112), - [anon_sym___restrict__] = ACTIONS(3112), - [anon_sym__Atomic] = ACTIONS(3112), - [anon_sym__Noreturn] = ACTIONS(3112), - [anon_sym_noreturn] = ACTIONS(3112), - [anon_sym_mutable] = ACTIONS(3112), - [anon_sym_constinit] = ACTIONS(3112), - [anon_sym_consteval] = ACTIONS(3112), - [sym_primitive_type] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3112), - [anon_sym_union] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3112), - [anon_sym_switch] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3112), - [anon_sym_default] = ACTIONS(3112), - [anon_sym_while] = ACTIONS(3112), - [anon_sym_do] = ACTIONS(3112), - [anon_sym_for] = ACTIONS(3112), - [anon_sym_return] = ACTIONS(3112), - [anon_sym_break] = ACTIONS(3112), - [anon_sym_continue] = ACTIONS(3112), - [anon_sym_goto] = ACTIONS(3112), - [anon_sym_not] = ACTIONS(3112), - [anon_sym_compl] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3114), - [anon_sym_sizeof] = ACTIONS(3112), - [anon_sym___alignof__] = ACTIONS(3112), - [anon_sym___alignof] = ACTIONS(3112), - [anon_sym__alignof] = ACTIONS(3112), - [anon_sym_alignof] = ACTIONS(3112), - [anon_sym__Alignof] = ACTIONS(3112), - [anon_sym_offsetof] = ACTIONS(3112), - [anon_sym__Generic] = ACTIONS(3112), - [anon_sym_asm] = ACTIONS(3112), - [anon_sym___asm__] = ACTIONS(3112), - [sym_number_literal] = ACTIONS(3114), - [anon_sym_L_SQUOTE] = ACTIONS(3114), - [anon_sym_u_SQUOTE] = ACTIONS(3114), - [anon_sym_U_SQUOTE] = ACTIONS(3114), - [anon_sym_u8_SQUOTE] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3114), - [anon_sym_L_DQUOTE] = ACTIONS(3114), - [anon_sym_u_DQUOTE] = ACTIONS(3114), - [anon_sym_U_DQUOTE] = ACTIONS(3114), - [anon_sym_u8_DQUOTE] = ACTIONS(3114), - [anon_sym_DQUOTE] = ACTIONS(3114), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [anon_sym_NULL] = ACTIONS(3112), - [anon_sym_nullptr] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3112), - [anon_sym_decltype] = ACTIONS(3112), - [anon_sym_virtual] = ACTIONS(3112), - [anon_sym_alignas] = ACTIONS(3112), - [anon_sym_explicit] = ACTIONS(3112), - [anon_sym_typename] = ACTIONS(3112), - [anon_sym_template] = ACTIONS(3112), - [anon_sym_operator] = ACTIONS(3112), - [anon_sym_try] = ACTIONS(3112), - [anon_sym_delete] = ACTIONS(3112), - [anon_sym_throw] = ACTIONS(3112), - [anon_sym_namespace] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_static_assert] = ACTIONS(3112), - [anon_sym_concept] = ACTIONS(3112), - [anon_sym_co_return] = ACTIONS(3112), - [anon_sym_co_yield] = ACTIONS(3112), - [anon_sym_R_DQUOTE] = ACTIONS(3114), - [anon_sym_LR_DQUOTE] = ACTIONS(3114), - [anon_sym_uR_DQUOTE] = ACTIONS(3114), - [anon_sym_UR_DQUOTE] = ACTIONS(3114), - [anon_sym_u8R_DQUOTE] = ACTIONS(3114), - [anon_sym_co_await] = ACTIONS(3112), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_requires] = ACTIONS(3112), - [sym_this] = ACTIONS(3112), - }, - [1005] = { - [ts_builtin_sym_end] = ACTIONS(3100), - [sym_identifier] = ACTIONS(3098), - [aux_sym_preproc_include_token1] = ACTIONS(3098), - [aux_sym_preproc_def_token1] = ACTIONS(3098), - [aux_sym_preproc_if_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_LPAREN2] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym___extension__] = ACTIONS(3098), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym___attribute__] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), - [anon_sym___declspec] = ACTIONS(3098), - [anon_sym___based] = ACTIONS(3098), - [anon_sym___cdecl] = ACTIONS(3098), - [anon_sym___clrcall] = ACTIONS(3098), - [anon_sym___stdcall] = ACTIONS(3098), - [anon_sym___fastcall] = ACTIONS(3098), - [anon_sym___thiscall] = ACTIONS(3098), - [anon_sym___vectorcall] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_signed] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym___inline] = ACTIONS(3098), - [anon_sym___inline__] = ACTIONS(3098), - [anon_sym___forceinline] = ACTIONS(3098), - [anon_sym_thread_local] = ACTIONS(3098), - [anon_sym___thread] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym___restrict__] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym__Noreturn] = ACTIONS(3098), - [anon_sym_noreturn] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_constinit] = ACTIONS(3098), - [anon_sym_consteval] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym_not] = ACTIONS(3098), - [anon_sym_compl] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_sizeof] = ACTIONS(3098), - [anon_sym___alignof__] = ACTIONS(3098), - [anon_sym___alignof] = ACTIONS(3098), - [anon_sym__alignof] = ACTIONS(3098), - [anon_sym_alignof] = ACTIONS(3098), - [anon_sym__Alignof] = ACTIONS(3098), - [anon_sym_offsetof] = ACTIONS(3098), - [anon_sym__Generic] = ACTIONS(3098), - [anon_sym_asm] = ACTIONS(3098), - [anon_sym___asm__] = ACTIONS(3098), - [sym_number_literal] = ACTIONS(3100), - [anon_sym_L_SQUOTE] = ACTIONS(3100), - [anon_sym_u_SQUOTE] = ACTIONS(3100), - [anon_sym_U_SQUOTE] = ACTIONS(3100), - [anon_sym_u8_SQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [anon_sym_L_DQUOTE] = ACTIONS(3100), - [anon_sym_u_DQUOTE] = ACTIONS(3100), - [anon_sym_U_DQUOTE] = ACTIONS(3100), - [anon_sym_u8_DQUOTE] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [anon_sym_NULL] = ACTIONS(3098), - [anon_sym_nullptr] = ACTIONS(3098), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3098), - [anon_sym_decltype] = ACTIONS(3098), - [anon_sym_virtual] = ACTIONS(3098), - [anon_sym_alignas] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_template] = ACTIONS(3098), - [anon_sym_operator] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(3098), - [anon_sym_delete] = ACTIONS(3098), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_namespace] = ACTIONS(3098), - [anon_sym_using] = ACTIONS(3098), - [anon_sym_static_assert] = ACTIONS(3098), - [anon_sym_concept] = ACTIONS(3098), - [anon_sym_co_return] = ACTIONS(3098), - [anon_sym_co_yield] = ACTIONS(3098), - [anon_sym_R_DQUOTE] = ACTIONS(3100), - [anon_sym_LR_DQUOTE] = ACTIONS(3100), - [anon_sym_uR_DQUOTE] = ACTIONS(3100), - [anon_sym_UR_DQUOTE] = ACTIONS(3100), - [anon_sym_u8R_DQUOTE] = ACTIONS(3100), - [anon_sym_co_await] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_requires] = ACTIONS(3098), - [sym_this] = ACTIONS(3098), + [anon_sym_friend] = ACTIONS(3702), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3706), }, - [1006] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [960] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3806), + [anon_sym_RBRACE] = ACTIONS(3708), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -227192,503 +221584,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1007] = { - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3231), - [aux_sym_preproc_include_token1] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), - [sym_preproc_directive] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym___based] = ACTIONS(3231), - [anon_sym___cdecl] = ACTIONS(3231), - [anon_sym___clrcall] = ACTIONS(3231), - [anon_sym___stdcall] = ACTIONS(3231), - [anon_sym___fastcall] = ACTIONS(3231), - [anon_sym___thiscall] = ACTIONS(3231), - [anon_sym___vectorcall] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym_not] = ACTIONS(3231), - [anon_sym_compl] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_sizeof] = ACTIONS(3231), - [anon_sym___alignof__] = ACTIONS(3231), - [anon_sym___alignof] = ACTIONS(3231), - [anon_sym__alignof] = ACTIONS(3231), - [anon_sym_alignof] = ACTIONS(3231), - [anon_sym__Alignof] = ACTIONS(3231), - [anon_sym_offsetof] = ACTIONS(3231), - [anon_sym__Generic] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym___asm__] = ACTIONS(3231), - [sym_number_literal] = ACTIONS(3233), - [anon_sym_L_SQUOTE] = ACTIONS(3233), - [anon_sym_u_SQUOTE] = ACTIONS(3233), - [anon_sym_U_SQUOTE] = ACTIONS(3233), - [anon_sym_u8_SQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_L_DQUOTE] = ACTIONS(3233), - [anon_sym_u_DQUOTE] = ACTIONS(3233), - [anon_sym_U_DQUOTE] = ACTIONS(3233), - [anon_sym_u8_DQUOTE] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [anon_sym_NULL] = ACTIONS(3231), - [anon_sym_nullptr] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_explicit] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_operator] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_static_assert] = ACTIONS(3231), - [anon_sym_concept] = ACTIONS(3231), - [anon_sym_co_return] = ACTIONS(3231), - [anon_sym_co_yield] = ACTIONS(3231), - [anon_sym_R_DQUOTE] = ACTIONS(3233), - [anon_sym_LR_DQUOTE] = ACTIONS(3233), - [anon_sym_uR_DQUOTE] = ACTIONS(3233), - [anon_sym_UR_DQUOTE] = ACTIONS(3233), - [anon_sym_u8R_DQUOTE] = ACTIONS(3233), - [anon_sym_co_await] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_requires] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - }, - [1008] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3120), - [aux_sym_preproc_include_token1] = ACTIONS(3120), - [aux_sym_preproc_def_token1] = ACTIONS(3120), - [aux_sym_preproc_if_token1] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), - [sym_preproc_directive] = ACTIONS(3120), - [anon_sym_LPAREN2] = ACTIONS(3122), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_AMP_AMP] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3120), - [anon_sym___extension__] = ACTIONS(3120), - [anon_sym_typedef] = ACTIONS(3120), - [anon_sym_extern] = ACTIONS(3120), - [anon_sym___attribute__] = ACTIONS(3120), - [anon_sym_COLON_COLON] = ACTIONS(3122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), - [anon_sym___declspec] = ACTIONS(3120), - [anon_sym___based] = ACTIONS(3120), - [anon_sym___cdecl] = ACTIONS(3120), - [anon_sym___clrcall] = ACTIONS(3120), - [anon_sym___stdcall] = ACTIONS(3120), - [anon_sym___fastcall] = ACTIONS(3120), - [anon_sym___thiscall] = ACTIONS(3120), - [anon_sym___vectorcall] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_signed] = ACTIONS(3120), - [anon_sym_unsigned] = ACTIONS(3120), - [anon_sym_long] = ACTIONS(3120), - [anon_sym_short] = ACTIONS(3120), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_static] = ACTIONS(3120), - [anon_sym_register] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym___inline] = ACTIONS(3120), - [anon_sym___inline__] = ACTIONS(3120), - [anon_sym___forceinline] = ACTIONS(3120), - [anon_sym_thread_local] = ACTIONS(3120), - [anon_sym___thread] = ACTIONS(3120), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_constexpr] = ACTIONS(3120), - [anon_sym_volatile] = ACTIONS(3120), - [anon_sym_restrict] = ACTIONS(3120), - [anon_sym___restrict__] = ACTIONS(3120), - [anon_sym__Atomic] = ACTIONS(3120), - [anon_sym__Noreturn] = ACTIONS(3120), - [anon_sym_noreturn] = ACTIONS(3120), - [anon_sym_mutable] = ACTIONS(3120), - [anon_sym_constinit] = ACTIONS(3120), - [anon_sym_consteval] = ACTIONS(3120), - [sym_primitive_type] = ACTIONS(3120), - [anon_sym_enum] = ACTIONS(3120), - [anon_sym_class] = ACTIONS(3120), - [anon_sym_struct] = ACTIONS(3120), - [anon_sym_union] = ACTIONS(3120), - [anon_sym_if] = ACTIONS(3120), - [anon_sym_switch] = ACTIONS(3120), - [anon_sym_case] = ACTIONS(3120), - [anon_sym_default] = ACTIONS(3120), - [anon_sym_while] = ACTIONS(3120), - [anon_sym_do] = ACTIONS(3120), - [anon_sym_for] = ACTIONS(3120), - [anon_sym_return] = ACTIONS(3120), - [anon_sym_break] = ACTIONS(3120), - [anon_sym_continue] = ACTIONS(3120), - [anon_sym_goto] = ACTIONS(3120), - [anon_sym_not] = ACTIONS(3120), - [anon_sym_compl] = ACTIONS(3120), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_sizeof] = ACTIONS(3120), - [anon_sym___alignof__] = ACTIONS(3120), - [anon_sym___alignof] = ACTIONS(3120), - [anon_sym__alignof] = ACTIONS(3120), - [anon_sym_alignof] = ACTIONS(3120), - [anon_sym__Alignof] = ACTIONS(3120), - [anon_sym_offsetof] = ACTIONS(3120), - [anon_sym__Generic] = ACTIONS(3120), - [anon_sym_asm] = ACTIONS(3120), - [anon_sym___asm__] = ACTIONS(3120), - [sym_number_literal] = ACTIONS(3122), - [anon_sym_L_SQUOTE] = ACTIONS(3122), - [anon_sym_u_SQUOTE] = ACTIONS(3122), - [anon_sym_U_SQUOTE] = ACTIONS(3122), - [anon_sym_u8_SQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [anon_sym_L_DQUOTE] = ACTIONS(3122), - [anon_sym_u_DQUOTE] = ACTIONS(3122), - [anon_sym_U_DQUOTE] = ACTIONS(3122), - [anon_sym_u8_DQUOTE] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [sym_true] = ACTIONS(3120), - [sym_false] = ACTIONS(3120), - [anon_sym_NULL] = ACTIONS(3120), - [anon_sym_nullptr] = ACTIONS(3120), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3120), - [anon_sym_decltype] = ACTIONS(3120), - [anon_sym_virtual] = ACTIONS(3120), - [anon_sym_alignas] = ACTIONS(3120), - [anon_sym_explicit] = ACTIONS(3120), - [anon_sym_typename] = ACTIONS(3120), - [anon_sym_template] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_try] = ACTIONS(3120), - [anon_sym_delete] = ACTIONS(3120), - [anon_sym_throw] = ACTIONS(3120), - [anon_sym_namespace] = ACTIONS(3120), - [anon_sym_using] = ACTIONS(3120), - [anon_sym_static_assert] = ACTIONS(3120), - [anon_sym_concept] = ACTIONS(3120), - [anon_sym_co_return] = ACTIONS(3120), - [anon_sym_co_yield] = ACTIONS(3120), - [anon_sym_R_DQUOTE] = ACTIONS(3122), - [anon_sym_LR_DQUOTE] = ACTIONS(3122), - [anon_sym_uR_DQUOTE] = ACTIONS(3122), - [anon_sym_UR_DQUOTE] = ACTIONS(3122), - [anon_sym_u8R_DQUOTE] = ACTIONS(3122), - [anon_sym_co_await] = ACTIONS(3120), - [anon_sym_new] = ACTIONS(3120), - [anon_sym_requires] = ACTIONS(3120), - [sym_this] = ACTIONS(3120), + [961] = { + [ts_builtin_sym_end] = ACTIONS(3157), + [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(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_AMP_AMP] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), + [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(3157), + [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_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = 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_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_not] = ACTIONS(3155), + [anon_sym_compl] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [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_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3157), + [anon_sym_L_SQUOTE] = ACTIONS(3157), + [anon_sym_u_SQUOTE] = ACTIONS(3157), + [anon_sym_U_SQUOTE] = ACTIONS(3157), + [anon_sym_u8_SQUOTE] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3157), + [anon_sym_L_DQUOTE] = ACTIONS(3157), + [anon_sym_u_DQUOTE] = ACTIONS(3157), + [anon_sym_U_DQUOTE] = ACTIONS(3157), + [anon_sym_u8_DQUOTE] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(3157), + [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_virtual] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_typename] = 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_using] = 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_R_DQUOTE] = ACTIONS(3157), + [anon_sym_LR_DQUOTE] = ACTIONS(3157), + [anon_sym_uR_DQUOTE] = ACTIONS(3157), + [anon_sym_UR_DQUOTE] = ACTIONS(3157), + [anon_sym_u8R_DQUOTE] = ACTIONS(3157), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [sym_this] = ACTIONS(3155), }, - [1009] = { - [ts_builtin_sym_end] = ACTIONS(3253), - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_include_token1] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym___cdecl] = ACTIONS(3251), - [anon_sym___clrcall] = ACTIONS(3251), - [anon_sym___stdcall] = ACTIONS(3251), - [anon_sym___fastcall] = ACTIONS(3251), - [anon_sym___thiscall] = ACTIONS(3251), - [anon_sym___vectorcall] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym_not] = ACTIONS(3251), - [anon_sym_compl] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3251), - [anon_sym___alignof__] = ACTIONS(3251), - [anon_sym___alignof] = ACTIONS(3251), - [anon_sym__alignof] = ACTIONS(3251), - [anon_sym_alignof] = ACTIONS(3251), - [anon_sym__Alignof] = ACTIONS(3251), - [anon_sym_offsetof] = ACTIONS(3251), - [anon_sym__Generic] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym___asm__] = ACTIONS(3251), - [sym_number_literal] = ACTIONS(3253), - [anon_sym_L_SQUOTE] = ACTIONS(3253), - [anon_sym_u_SQUOTE] = ACTIONS(3253), - [anon_sym_U_SQUOTE] = ACTIONS(3253), - [anon_sym_u8_SQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_L_DQUOTE] = ACTIONS(3253), - [anon_sym_u_DQUOTE] = ACTIONS(3253), - [anon_sym_U_DQUOTE] = ACTIONS(3253), - [anon_sym_u8_DQUOTE] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [anon_sym_NULL] = ACTIONS(3251), - [anon_sym_nullptr] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), - [anon_sym_concept] = ACTIONS(3251), - [anon_sym_co_return] = ACTIONS(3251), - [anon_sym_co_yield] = ACTIONS(3251), - [anon_sym_R_DQUOTE] = ACTIONS(3253), - [anon_sym_LR_DQUOTE] = ACTIONS(3253), - [anon_sym_uR_DQUOTE] = ACTIONS(3253), - [anon_sym_UR_DQUOTE] = ACTIONS(3253), - [anon_sym_u8R_DQUOTE] = ACTIONS(3253), - [anon_sym_co_await] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_requires] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), + [962] = { + [ts_builtin_sym_end] = ACTIONS(3128), + [sym_identifier] = ACTIONS(3126), + [aux_sym_preproc_include_token1] = ACTIONS(3126), + [aux_sym_preproc_def_token1] = ACTIONS(3126), + [aux_sym_preproc_if_token1] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3126), + [sym_preproc_directive] = ACTIONS(3126), + [anon_sym_LPAREN2] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_AMP_AMP] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym_typedef] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3128), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym___based] = ACTIONS(3126), + [anon_sym___cdecl] = ACTIONS(3126), + [anon_sym___clrcall] = ACTIONS(3126), + [anon_sym___stdcall] = ACTIONS(3126), + [anon_sym___fastcall] = ACTIONS(3126), + [anon_sym___thiscall] = ACTIONS(3126), + [anon_sym___vectorcall] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_case] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_goto] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(3126), + [anon_sym_compl] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_sizeof] = ACTIONS(3126), + [anon_sym___alignof__] = ACTIONS(3126), + [anon_sym___alignof] = ACTIONS(3126), + [anon_sym__alignof] = ACTIONS(3126), + [anon_sym_alignof] = ACTIONS(3126), + [anon_sym__Alignof] = ACTIONS(3126), + [anon_sym_offsetof] = ACTIONS(3126), + [anon_sym__Generic] = ACTIONS(3126), + [anon_sym_asm] = ACTIONS(3126), + [anon_sym___asm__] = ACTIONS(3126), + [sym_number_literal] = ACTIONS(3128), + [anon_sym_L_SQUOTE] = ACTIONS(3128), + [anon_sym_u_SQUOTE] = ACTIONS(3128), + [anon_sym_U_SQUOTE] = ACTIONS(3128), + [anon_sym_u8_SQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_L_DQUOTE] = ACTIONS(3128), + [anon_sym_u_DQUOTE] = ACTIONS(3128), + [anon_sym_U_DQUOTE] = ACTIONS(3128), + [anon_sym_u8_DQUOTE] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [anon_sym_NULL] = ACTIONS(3126), + [anon_sym_nullptr] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym_explicit] = ACTIONS(3126), + [anon_sym_typename] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_static_assert] = ACTIONS(3126), + [anon_sym_concept] = ACTIONS(3126), + [anon_sym_co_return] = ACTIONS(3126), + [anon_sym_co_yield] = ACTIONS(3126), + [anon_sym_R_DQUOTE] = ACTIONS(3128), + [anon_sym_LR_DQUOTE] = ACTIONS(3128), + [anon_sym_uR_DQUOTE] = ACTIONS(3128), + [anon_sym_UR_DQUOTE] = ACTIONS(3128), + [anon_sym_u8R_DQUOTE] = ACTIONS(3128), + [anon_sym_co_await] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + [sym_this] = ACTIONS(3126), }, - [1010] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [963] = { + [sym_preproc_def] = STATE(1020), + [sym_preproc_function_def] = STATE(1020), + [sym_preproc_call] = STATE(1020), + [sym_preproc_if_in_field_declaration_list] = STATE(1020), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1020), + [sym_type_definition] = STATE(1020), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(1020), + [sym_field_declaration] = STATE(1020), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(1020), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(1020), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(1020), + [sym_operator_cast_declaration] = STATE(1020), + [sym_constructor_or_destructor_definition] = STATE(1020), + [sym_constructor_or_destructor_declaration] = STATE(1020), + [sym_friend_declaration] = STATE(1020), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(1020), + [sym_alias_declaration] = STATE(1020), + [sym_static_assert_declaration] = STATE(1020), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1020), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3808), + [anon_sym_RBRACE] = ACTIONS(3710), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -227708,761 +221971,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [1011] = { - [ts_builtin_sym_end] = ACTIONS(3213), - [sym_identifier] = ACTIONS(3211), - [aux_sym_preproc_include_token1] = ACTIONS(3211), - [aux_sym_preproc_def_token1] = ACTIONS(3211), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), - [sym_preproc_directive] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym_COLON_COLON] = ACTIONS(3213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), - [anon_sym___declspec] = ACTIONS(3211), - [anon_sym___based] = ACTIONS(3211), - [anon_sym___cdecl] = ACTIONS(3211), - [anon_sym___clrcall] = ACTIONS(3211), - [anon_sym___stdcall] = ACTIONS(3211), - [anon_sym___fastcall] = ACTIONS(3211), - [anon_sym___thiscall] = ACTIONS(3211), - [anon_sym___vectorcall] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_signed] = ACTIONS(3211), - [anon_sym_unsigned] = ACTIONS(3211), - [anon_sym_long] = ACTIONS(3211), - [anon_sym_short] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_register] = ACTIONS(3211), - [anon_sym_inline] = ACTIONS(3211), - [anon_sym___inline] = ACTIONS(3211), - [anon_sym___inline__] = ACTIONS(3211), - [anon_sym___forceinline] = ACTIONS(3211), - [anon_sym_thread_local] = ACTIONS(3211), - [anon_sym___thread] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_constexpr] = ACTIONS(3211), - [anon_sym_volatile] = ACTIONS(3211), - [anon_sym_restrict] = ACTIONS(3211), - [anon_sym___restrict__] = ACTIONS(3211), - [anon_sym__Atomic] = ACTIONS(3211), - [anon_sym__Noreturn] = ACTIONS(3211), - [anon_sym_noreturn] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [sym_primitive_type] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_switch] = ACTIONS(3211), - [anon_sym_case] = ACTIONS(3211), - [anon_sym_default] = ACTIONS(3211), - [anon_sym_while] = ACTIONS(3211), - [anon_sym_do] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym_not] = ACTIONS(3211), - [anon_sym_compl] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3211), - [anon_sym___alignof__] = ACTIONS(3211), - [anon_sym___alignof] = ACTIONS(3211), - [anon_sym__alignof] = ACTIONS(3211), - [anon_sym_alignof] = ACTIONS(3211), - [anon_sym__Alignof] = ACTIONS(3211), - [anon_sym_offsetof] = ACTIONS(3211), - [anon_sym__Generic] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym___asm__] = ACTIONS(3211), - [sym_number_literal] = ACTIONS(3213), - [anon_sym_L_SQUOTE] = ACTIONS(3213), - [anon_sym_u_SQUOTE] = ACTIONS(3213), - [anon_sym_U_SQUOTE] = ACTIONS(3213), - [anon_sym_u8_SQUOTE] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3213), - [anon_sym_L_DQUOTE] = ACTIONS(3213), - [anon_sym_u_DQUOTE] = ACTIONS(3213), - [anon_sym_U_DQUOTE] = ACTIONS(3213), - [anon_sym_u8_DQUOTE] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(3213), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [anon_sym_NULL] = ACTIONS(3211), - [anon_sym_nullptr] = ACTIONS(3211), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3211), - [anon_sym_decltype] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_try] = ACTIONS(3211), - [anon_sym_delete] = ACTIONS(3211), - [anon_sym_throw] = ACTIONS(3211), - [anon_sym_namespace] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), - [anon_sym_concept] = ACTIONS(3211), - [anon_sym_co_return] = ACTIONS(3211), - [anon_sym_co_yield] = ACTIONS(3211), - [anon_sym_R_DQUOTE] = ACTIONS(3213), - [anon_sym_LR_DQUOTE] = ACTIONS(3213), - [anon_sym_uR_DQUOTE] = ACTIONS(3213), - [anon_sym_UR_DQUOTE] = ACTIONS(3213), - [anon_sym_u8R_DQUOTE] = ACTIONS(3213), - [anon_sym_co_await] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(3211), - [anon_sym_requires] = ACTIONS(3211), - [sym_this] = ACTIONS(3211), - }, - [1012] = { - [ts_builtin_sym_end] = ACTIONS(3138), - [sym_identifier] = ACTIONS(3136), - [aux_sym_preproc_include_token1] = ACTIONS(3136), - [aux_sym_preproc_def_token1] = ACTIONS(3136), - [aux_sym_preproc_if_token1] = ACTIONS(3136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3136), - [sym_preproc_directive] = ACTIONS(3136), - [anon_sym_LPAREN2] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_STAR] = ACTIONS(3138), - [anon_sym_AMP_AMP] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(3136), - [anon_sym___extension__] = ACTIONS(3136), - [anon_sym_typedef] = ACTIONS(3136), - [anon_sym_extern] = ACTIONS(3136), - [anon_sym___attribute__] = ACTIONS(3136), - [anon_sym_COLON_COLON] = ACTIONS(3138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3138), - [anon_sym___declspec] = ACTIONS(3136), - [anon_sym___based] = ACTIONS(3136), - [anon_sym___cdecl] = ACTIONS(3136), - [anon_sym___clrcall] = ACTIONS(3136), - [anon_sym___stdcall] = ACTIONS(3136), - [anon_sym___fastcall] = ACTIONS(3136), - [anon_sym___thiscall] = ACTIONS(3136), - [anon_sym___vectorcall] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_signed] = ACTIONS(3136), - [anon_sym_unsigned] = ACTIONS(3136), - [anon_sym_long] = ACTIONS(3136), - [anon_sym_short] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_register] = ACTIONS(3136), - [anon_sym_inline] = ACTIONS(3136), - [anon_sym___inline] = ACTIONS(3136), - [anon_sym___inline__] = ACTIONS(3136), - [anon_sym___forceinline] = ACTIONS(3136), - [anon_sym_thread_local] = ACTIONS(3136), - [anon_sym___thread] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_constexpr] = ACTIONS(3136), - [anon_sym_volatile] = ACTIONS(3136), - [anon_sym_restrict] = ACTIONS(3136), - [anon_sym___restrict__] = ACTIONS(3136), - [anon_sym__Atomic] = ACTIONS(3136), - [anon_sym__Noreturn] = ACTIONS(3136), - [anon_sym_noreturn] = ACTIONS(3136), - [anon_sym_mutable] = ACTIONS(3136), - [anon_sym_constinit] = ACTIONS(3136), - [anon_sym_consteval] = ACTIONS(3136), - [sym_primitive_type] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_struct] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_case] = ACTIONS(3136), - [anon_sym_default] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_goto] = ACTIONS(3136), - [anon_sym_not] = ACTIONS(3136), - [anon_sym_compl] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_sizeof] = ACTIONS(3136), - [anon_sym___alignof__] = ACTIONS(3136), - [anon_sym___alignof] = ACTIONS(3136), - [anon_sym__alignof] = ACTIONS(3136), - [anon_sym_alignof] = ACTIONS(3136), - [anon_sym__Alignof] = ACTIONS(3136), - [anon_sym_offsetof] = ACTIONS(3136), - [anon_sym__Generic] = ACTIONS(3136), - [anon_sym_asm] = ACTIONS(3136), - [anon_sym___asm__] = ACTIONS(3136), - [sym_number_literal] = ACTIONS(3138), - [anon_sym_L_SQUOTE] = ACTIONS(3138), - [anon_sym_u_SQUOTE] = ACTIONS(3138), - [anon_sym_U_SQUOTE] = ACTIONS(3138), - [anon_sym_u8_SQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_L_DQUOTE] = ACTIONS(3138), - [anon_sym_u_DQUOTE] = ACTIONS(3138), - [anon_sym_U_DQUOTE] = ACTIONS(3138), - [anon_sym_u8_DQUOTE] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [anon_sym_NULL] = ACTIONS(3136), - [anon_sym_nullptr] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3136), - [anon_sym_decltype] = ACTIONS(3136), - [anon_sym_virtual] = ACTIONS(3136), - [anon_sym_alignas] = ACTIONS(3136), - [anon_sym_explicit] = ACTIONS(3136), - [anon_sym_typename] = ACTIONS(3136), - [anon_sym_template] = ACTIONS(3136), - [anon_sym_operator] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_static_assert] = ACTIONS(3136), - [anon_sym_concept] = ACTIONS(3136), - [anon_sym_co_return] = ACTIONS(3136), - [anon_sym_co_yield] = ACTIONS(3136), - [anon_sym_R_DQUOTE] = ACTIONS(3138), - [anon_sym_LR_DQUOTE] = ACTIONS(3138), - [anon_sym_uR_DQUOTE] = ACTIONS(3138), - [anon_sym_UR_DQUOTE] = ACTIONS(3138), - [anon_sym_u8R_DQUOTE] = ACTIONS(3138), - [anon_sym_co_await] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_requires] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - }, - [1013] = { - [ts_builtin_sym_end] = ACTIONS(3249), - [sym_identifier] = ACTIONS(3247), - [aux_sym_preproc_include_token1] = ACTIONS(3247), - [aux_sym_preproc_def_token1] = ACTIONS(3247), - [aux_sym_preproc_if_token1] = ACTIONS(3247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3247), - [sym_preproc_directive] = ACTIONS(3247), - [anon_sym_LPAREN2] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3249), - [anon_sym_AMP_AMP] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym___extension__] = ACTIONS(3247), - [anon_sym_typedef] = ACTIONS(3247), - [anon_sym_extern] = ACTIONS(3247), - [anon_sym___attribute__] = ACTIONS(3247), - [anon_sym_COLON_COLON] = ACTIONS(3249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3249), - [anon_sym___declspec] = ACTIONS(3247), - [anon_sym___based] = ACTIONS(3247), - [anon_sym___cdecl] = ACTIONS(3247), - [anon_sym___clrcall] = ACTIONS(3247), - [anon_sym___stdcall] = ACTIONS(3247), - [anon_sym___fastcall] = ACTIONS(3247), - [anon_sym___thiscall] = ACTIONS(3247), - [anon_sym___vectorcall] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_signed] = ACTIONS(3247), - [anon_sym_unsigned] = ACTIONS(3247), - [anon_sym_long] = ACTIONS(3247), - [anon_sym_short] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_register] = ACTIONS(3247), - [anon_sym_inline] = ACTIONS(3247), - [anon_sym___inline] = ACTIONS(3247), - [anon_sym___inline__] = ACTIONS(3247), - [anon_sym___forceinline] = ACTIONS(3247), - [anon_sym_thread_local] = ACTIONS(3247), - [anon_sym___thread] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_constexpr] = ACTIONS(3247), - [anon_sym_volatile] = ACTIONS(3247), - [anon_sym_restrict] = ACTIONS(3247), - [anon_sym___restrict__] = ACTIONS(3247), - [anon_sym__Atomic] = ACTIONS(3247), - [anon_sym__Noreturn] = ACTIONS(3247), - [anon_sym_noreturn] = ACTIONS(3247), - [anon_sym_mutable] = ACTIONS(3247), - [anon_sym_constinit] = ACTIONS(3247), - [anon_sym_consteval] = ACTIONS(3247), - [sym_primitive_type] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_case] = ACTIONS(3247), - [anon_sym_default] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_goto] = ACTIONS(3247), - [anon_sym_not] = ACTIONS(3247), - [anon_sym_compl] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_sizeof] = ACTIONS(3247), - [anon_sym___alignof__] = ACTIONS(3247), - [anon_sym___alignof] = ACTIONS(3247), - [anon_sym__alignof] = ACTIONS(3247), - [anon_sym_alignof] = ACTIONS(3247), - [anon_sym__Alignof] = ACTIONS(3247), - [anon_sym_offsetof] = ACTIONS(3247), - [anon_sym__Generic] = ACTIONS(3247), - [anon_sym_asm] = ACTIONS(3247), - [anon_sym___asm__] = ACTIONS(3247), - [sym_number_literal] = ACTIONS(3249), - [anon_sym_L_SQUOTE] = ACTIONS(3249), - [anon_sym_u_SQUOTE] = ACTIONS(3249), - [anon_sym_U_SQUOTE] = ACTIONS(3249), - [anon_sym_u8_SQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_L_DQUOTE] = ACTIONS(3249), - [anon_sym_u_DQUOTE] = ACTIONS(3249), - [anon_sym_U_DQUOTE] = ACTIONS(3249), - [anon_sym_u8_DQUOTE] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [anon_sym_NULL] = ACTIONS(3247), - [anon_sym_nullptr] = ACTIONS(3247), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3247), - [anon_sym_decltype] = ACTIONS(3247), - [anon_sym_virtual] = ACTIONS(3247), - [anon_sym_alignas] = ACTIONS(3247), - [anon_sym_explicit] = ACTIONS(3247), - [anon_sym_typename] = ACTIONS(3247), - [anon_sym_template] = ACTIONS(3247), - [anon_sym_operator] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_static_assert] = ACTIONS(3247), - [anon_sym_concept] = ACTIONS(3247), - [anon_sym_co_return] = ACTIONS(3247), - [anon_sym_co_yield] = ACTIONS(3247), - [anon_sym_R_DQUOTE] = ACTIONS(3249), - [anon_sym_LR_DQUOTE] = ACTIONS(3249), - [anon_sym_uR_DQUOTE] = ACTIONS(3249), - [anon_sym_UR_DQUOTE] = ACTIONS(3249), - [anon_sym_u8R_DQUOTE] = ACTIONS(3249), - [anon_sym_co_await] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_requires] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1014] = { - [ts_builtin_sym_end] = ACTIONS(3134), - [sym_identifier] = ACTIONS(3132), - [aux_sym_preproc_include_token1] = ACTIONS(3132), - [aux_sym_preproc_def_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token1] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), - [sym_preproc_directive] = ACTIONS(3132), - [anon_sym_LPAREN2] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_STAR] = ACTIONS(3134), - [anon_sym_AMP_AMP] = ACTIONS(3134), - [anon_sym_AMP] = ACTIONS(3132), - [anon_sym___extension__] = ACTIONS(3132), - [anon_sym_typedef] = ACTIONS(3132), - [anon_sym_extern] = ACTIONS(3132), - [anon_sym___attribute__] = ACTIONS(3132), - [anon_sym_COLON_COLON] = ACTIONS(3134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), - [anon_sym___declspec] = ACTIONS(3132), - [anon_sym___based] = ACTIONS(3132), - [anon_sym___cdecl] = ACTIONS(3132), - [anon_sym___clrcall] = ACTIONS(3132), - [anon_sym___stdcall] = ACTIONS(3132), - [anon_sym___fastcall] = ACTIONS(3132), - [anon_sym___thiscall] = ACTIONS(3132), - [anon_sym___vectorcall] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3134), - [anon_sym_signed] = ACTIONS(3132), - [anon_sym_unsigned] = ACTIONS(3132), - [anon_sym_long] = ACTIONS(3132), - [anon_sym_short] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_register] = ACTIONS(3132), - [anon_sym_inline] = ACTIONS(3132), - [anon_sym___inline] = ACTIONS(3132), - [anon_sym___inline__] = ACTIONS(3132), - [anon_sym___forceinline] = ACTIONS(3132), - [anon_sym_thread_local] = ACTIONS(3132), - [anon_sym___thread] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_constexpr] = ACTIONS(3132), - [anon_sym_volatile] = ACTIONS(3132), - [anon_sym_restrict] = ACTIONS(3132), - [anon_sym___restrict__] = ACTIONS(3132), - [anon_sym__Atomic] = ACTIONS(3132), - [anon_sym__Noreturn] = ACTIONS(3132), - [anon_sym_noreturn] = ACTIONS(3132), - [anon_sym_mutable] = ACTIONS(3132), - [anon_sym_constinit] = ACTIONS(3132), - [anon_sym_consteval] = ACTIONS(3132), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(3132), - [anon_sym_union] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_case] = ACTIONS(3132), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_goto] = ACTIONS(3132), - [anon_sym_not] = ACTIONS(3132), - [anon_sym_compl] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3134), - [anon_sym_sizeof] = ACTIONS(3132), - [anon_sym___alignof__] = ACTIONS(3132), - [anon_sym___alignof] = ACTIONS(3132), - [anon_sym__alignof] = ACTIONS(3132), - [anon_sym_alignof] = ACTIONS(3132), - [anon_sym__Alignof] = ACTIONS(3132), - [anon_sym_offsetof] = ACTIONS(3132), - [anon_sym__Generic] = ACTIONS(3132), - [anon_sym_asm] = ACTIONS(3132), - [anon_sym___asm__] = ACTIONS(3132), - [sym_number_literal] = ACTIONS(3134), - [anon_sym_L_SQUOTE] = ACTIONS(3134), - [anon_sym_u_SQUOTE] = ACTIONS(3134), - [anon_sym_U_SQUOTE] = ACTIONS(3134), - [anon_sym_u8_SQUOTE] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3134), - [anon_sym_L_DQUOTE] = ACTIONS(3134), - [anon_sym_u_DQUOTE] = ACTIONS(3134), - [anon_sym_U_DQUOTE] = ACTIONS(3134), - [anon_sym_u8_DQUOTE] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(3134), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [anon_sym_NULL] = ACTIONS(3132), - [anon_sym_nullptr] = ACTIONS(3132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3132), - [anon_sym_decltype] = ACTIONS(3132), - [anon_sym_virtual] = ACTIONS(3132), - [anon_sym_alignas] = ACTIONS(3132), - [anon_sym_explicit] = ACTIONS(3132), - [anon_sym_typename] = ACTIONS(3132), - [anon_sym_template] = ACTIONS(3132), - [anon_sym_operator] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_static_assert] = ACTIONS(3132), - [anon_sym_concept] = ACTIONS(3132), - [anon_sym_co_return] = ACTIONS(3132), - [anon_sym_co_yield] = ACTIONS(3132), - [anon_sym_R_DQUOTE] = ACTIONS(3134), - [anon_sym_LR_DQUOTE] = ACTIONS(3134), - [anon_sym_uR_DQUOTE] = ACTIONS(3134), - [anon_sym_UR_DQUOTE] = ACTIONS(3134), - [anon_sym_u8R_DQUOTE] = ACTIONS(3134), - [anon_sym_co_await] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_requires] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), + [964] = { + [ts_builtin_sym_end] = ACTIONS(3712), + [sym_identifier] = ACTIONS(3714), + [aux_sym_preproc_include_token1] = ACTIONS(3714), + [aux_sym_preproc_def_token1] = ACTIONS(3714), + [aux_sym_preproc_if_token1] = ACTIONS(3714), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3714), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3714), + [sym_preproc_directive] = ACTIONS(3714), + [anon_sym_LPAREN2] = ACTIONS(3712), + [anon_sym_BANG] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3714), + [anon_sym_PLUS] = ACTIONS(3714), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_AMP] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3714), + [anon_sym_typedef] = ACTIONS(3714), + [anon_sym_extern] = ACTIONS(3714), + [anon_sym___attribute__] = ACTIONS(3714), + [anon_sym_COLON_COLON] = ACTIONS(3712), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3712), + [anon_sym___declspec] = ACTIONS(3714), + [anon_sym___based] = ACTIONS(3714), + [anon_sym___cdecl] = ACTIONS(3714), + [anon_sym___clrcall] = ACTIONS(3714), + [anon_sym___stdcall] = ACTIONS(3714), + [anon_sym___fastcall] = ACTIONS(3714), + [anon_sym___thiscall] = ACTIONS(3714), + [anon_sym___vectorcall] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_signed] = ACTIONS(3714), + [anon_sym_unsigned] = ACTIONS(3714), + [anon_sym_long] = ACTIONS(3714), + [anon_sym_short] = ACTIONS(3714), + [anon_sym_LBRACK] = ACTIONS(3714), + [anon_sym_static] = ACTIONS(3714), + [anon_sym_register] = ACTIONS(3714), + [anon_sym_inline] = ACTIONS(3714), + [anon_sym___inline] = ACTIONS(3714), + [anon_sym___inline__] = ACTIONS(3714), + [anon_sym___forceinline] = ACTIONS(3714), + [anon_sym_thread_local] = ACTIONS(3714), + [anon_sym___thread] = ACTIONS(3714), + [anon_sym_const] = ACTIONS(3714), + [anon_sym_constexpr] = ACTIONS(3714), + [anon_sym_volatile] = ACTIONS(3714), + [anon_sym_restrict] = ACTIONS(3714), + [anon_sym___restrict__] = ACTIONS(3714), + [anon_sym__Atomic] = ACTIONS(3714), + [anon_sym__Noreturn] = ACTIONS(3714), + [anon_sym_noreturn] = ACTIONS(3714), + [anon_sym_mutable] = ACTIONS(3714), + [anon_sym_constinit] = ACTIONS(3714), + [anon_sym_consteval] = ACTIONS(3714), + [sym_primitive_type] = ACTIONS(3714), + [anon_sym_enum] = ACTIONS(3714), + [anon_sym_class] = ACTIONS(3714), + [anon_sym_struct] = ACTIONS(3714), + [anon_sym_union] = ACTIONS(3714), + [anon_sym_if] = ACTIONS(3714), + [anon_sym_switch] = ACTIONS(3714), + [anon_sym_case] = ACTIONS(3714), + [anon_sym_default] = ACTIONS(3714), + [anon_sym_while] = ACTIONS(3714), + [anon_sym_do] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3714), + [anon_sym_return] = ACTIONS(3714), + [anon_sym_break] = ACTIONS(3714), + [anon_sym_continue] = ACTIONS(3714), + [anon_sym_goto] = ACTIONS(3714), + [anon_sym_not] = ACTIONS(3714), + [anon_sym_compl] = ACTIONS(3714), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(3714), + [anon_sym___alignof] = ACTIONS(3714), + [anon_sym__alignof] = ACTIONS(3714), + [anon_sym_alignof] = ACTIONS(3714), + [anon_sym__Alignof] = ACTIONS(3714), + [anon_sym_offsetof] = ACTIONS(3714), + [anon_sym__Generic] = ACTIONS(3714), + [anon_sym_asm] = ACTIONS(3714), + [anon_sym___asm__] = ACTIONS(3714), + [sym_number_literal] = ACTIONS(3712), + [anon_sym_L_SQUOTE] = ACTIONS(3712), + [anon_sym_u_SQUOTE] = ACTIONS(3712), + [anon_sym_U_SQUOTE] = ACTIONS(3712), + [anon_sym_u8_SQUOTE] = ACTIONS(3712), + [anon_sym_SQUOTE] = ACTIONS(3712), + [anon_sym_L_DQUOTE] = ACTIONS(3712), + [anon_sym_u_DQUOTE] = ACTIONS(3712), + [anon_sym_U_DQUOTE] = ACTIONS(3712), + [anon_sym_u8_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [sym_true] = ACTIONS(3714), + [sym_false] = ACTIONS(3714), + [anon_sym_NULL] = ACTIONS(3714), + [anon_sym_nullptr] = ACTIONS(3714), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3714), + [anon_sym_decltype] = ACTIONS(3714), + [anon_sym_virtual] = ACTIONS(3714), + [anon_sym_alignas] = ACTIONS(3714), + [anon_sym_explicit] = ACTIONS(3714), + [anon_sym_typename] = ACTIONS(3714), + [anon_sym_template] = ACTIONS(3714), + [anon_sym_operator] = ACTIONS(3714), + [anon_sym_try] = ACTIONS(3714), + [anon_sym_delete] = ACTIONS(3714), + [anon_sym_throw] = ACTIONS(3714), + [anon_sym_namespace] = ACTIONS(3714), + [anon_sym_using] = ACTIONS(3714), + [anon_sym_static_assert] = ACTIONS(3714), + [anon_sym_concept] = ACTIONS(3714), + [anon_sym_co_return] = ACTIONS(3714), + [anon_sym_co_yield] = ACTIONS(3714), + [anon_sym_R_DQUOTE] = ACTIONS(3712), + [anon_sym_LR_DQUOTE] = ACTIONS(3712), + [anon_sym_uR_DQUOTE] = ACTIONS(3712), + [anon_sym_UR_DQUOTE] = ACTIONS(3712), + [anon_sym_u8R_DQUOTE] = ACTIONS(3712), + [anon_sym_co_await] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3714), + [anon_sym_requires] = ACTIONS(3714), + [sym_this] = ACTIONS(3714), }, - [1015] = { - [sym_preproc_def] = STATE(1003), - [sym_preproc_function_def] = STATE(1003), - [sym_preproc_call] = STATE(1003), - [sym_preproc_if_in_field_declaration_list] = STATE(1003), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1003), - [sym_type_definition] = STATE(1003), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1003), - [sym_field_declaration] = STATE(1003), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1003), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1003), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1003), - [sym_operator_cast_declaration] = STATE(1003), - [sym_constructor_or_destructor_definition] = STATE(1003), - [sym_constructor_or_destructor_declaration] = STATE(1003), - [sym_friend_declaration] = STATE(1003), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1003), - [sym_alias_declaration] = STATE(1003), - [sym_static_assert_declaration] = STATE(1003), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1003), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3810), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), + [965] = { + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2993), + [aux_sym_preproc_include_token1] = ACTIONS(2993), + [aux_sym_preproc_def_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym___extension__] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym___attribute__] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), + [anon_sym___declspec] = ACTIONS(2993), + [anon_sym___based] = ACTIONS(2993), + [anon_sym___cdecl] = ACTIONS(2993), + [anon_sym___clrcall] = ACTIONS(2993), + [anon_sym___stdcall] = ACTIONS(2993), + [anon_sym___fastcall] = ACTIONS(2993), + [anon_sym___thiscall] = ACTIONS(2993), + [anon_sym___vectorcall] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_signed] = ACTIONS(2993), + [anon_sym_unsigned] = ACTIONS(2993), + [anon_sym_long] = ACTIONS(2993), + [anon_sym_short] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_register] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym___inline] = ACTIONS(2993), + [anon_sym___inline__] = ACTIONS(2993), + [anon_sym___forceinline] = ACTIONS(2993), + [anon_sym_thread_local] = ACTIONS(2993), + [anon_sym___thread] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_constexpr] = ACTIONS(2993), + [anon_sym_volatile] = ACTIONS(2993), + [anon_sym_restrict] = ACTIONS(2993), + [anon_sym___restrict__] = ACTIONS(2993), + [anon_sym__Atomic] = ACTIONS(2993), + [anon_sym__Noreturn] = ACTIONS(2993), + [anon_sym_noreturn] = ACTIONS(2993), + [anon_sym_mutable] = ACTIONS(2993), + [anon_sym_constinit] = ACTIONS(2993), + [anon_sym_consteval] = ACTIONS(2993), + [sym_primitive_type] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_not] = ACTIONS(2993), + [anon_sym_compl] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_sizeof] = ACTIONS(2993), + [anon_sym___alignof__] = ACTIONS(2993), + [anon_sym___alignof] = ACTIONS(2993), + [anon_sym__alignof] = ACTIONS(2993), + [anon_sym_alignof] = ACTIONS(2993), + [anon_sym__Alignof] = ACTIONS(2993), + [anon_sym_offsetof] = ACTIONS(2993), + [anon_sym__Generic] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym___asm__] = ACTIONS(2993), + [sym_number_literal] = ACTIONS(2995), + [anon_sym_L_SQUOTE] = ACTIONS(2995), + [anon_sym_u_SQUOTE] = ACTIONS(2995), + [anon_sym_U_SQUOTE] = ACTIONS(2995), + [anon_sym_u8_SQUOTE] = ACTIONS(2995), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_L_DQUOTE] = ACTIONS(2995), + [anon_sym_u_DQUOTE] = ACTIONS(2995), + [anon_sym_U_DQUOTE] = ACTIONS(2995), + [anon_sym_u8_DQUOTE] = ACTIONS(2995), + [anon_sym_DQUOTE] = ACTIONS(2995), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [anon_sym_NULL] = ACTIONS(2993), + [anon_sym_nullptr] = ACTIONS(2993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2993), + [anon_sym_virtual] = ACTIONS(2993), + [anon_sym_alignas] = ACTIONS(2993), + [anon_sym_explicit] = ACTIONS(2993), + [anon_sym_typename] = ACTIONS(2993), + [anon_sym_template] = ACTIONS(2993), + [anon_sym_operator] = ACTIONS(2993), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_delete] = ACTIONS(2993), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_namespace] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_static_assert] = ACTIONS(2993), + [anon_sym_concept] = ACTIONS(2993), + [anon_sym_co_return] = ACTIONS(2993), + [anon_sym_co_yield] = ACTIONS(2993), + [anon_sym_R_DQUOTE] = ACTIONS(2995), + [anon_sym_LR_DQUOTE] = ACTIONS(2995), + [anon_sym_uR_DQUOTE] = ACTIONS(2995), + [anon_sym_UR_DQUOTE] = ACTIONS(2995), + [anon_sym_u8R_DQUOTE] = ACTIONS(2995), + [anon_sym_co_await] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_requires] = ACTIONS(2993), + [sym_this] = ACTIONS(2993), }, - [1016] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [966] = { + [sym_preproc_def] = STATE(978), + [sym_preproc_function_def] = STATE(978), + [sym_preproc_call] = STATE(978), + [sym_preproc_if_in_field_declaration_list] = STATE(978), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(978), + [sym_type_definition] = STATE(978), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(978), + [sym_field_declaration] = STATE(978), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(978), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(978), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(978), + [sym_operator_cast_declaration] = STATE(978), + [sym_constructor_or_destructor_definition] = STATE(978), + [sym_constructor_or_destructor_declaration] = STATE(978), + [sym_friend_declaration] = STATE(978), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(978), + [sym_alias_declaration] = STATE(978), + [sym_static_assert_declaration] = STATE(978), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(978), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3812), + [anon_sym_RBRACE] = ACTIONS(3716), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -228482,1148 +222358,503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [1017] = { - [ts_builtin_sym_end] = ACTIONS(3192), - [sym_identifier] = ACTIONS(3190), - [aux_sym_preproc_include_token1] = ACTIONS(3190), - [aux_sym_preproc_def_token1] = ACTIONS(3190), - [aux_sym_preproc_if_token1] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3190), - [sym_preproc_directive] = ACTIONS(3190), - [anon_sym_LPAREN2] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_STAR] = ACTIONS(3192), - [anon_sym_AMP_AMP] = ACTIONS(3192), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym___extension__] = ACTIONS(3190), - [anon_sym_typedef] = ACTIONS(3190), - [anon_sym_extern] = ACTIONS(3190), - [anon_sym___attribute__] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(3192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3192), - [anon_sym___declspec] = ACTIONS(3190), - [anon_sym___based] = ACTIONS(3190), - [anon_sym___cdecl] = ACTIONS(3190), - [anon_sym___clrcall] = ACTIONS(3190), - [anon_sym___stdcall] = ACTIONS(3190), - [anon_sym___fastcall] = ACTIONS(3190), - [anon_sym___thiscall] = ACTIONS(3190), - [anon_sym___vectorcall] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_signed] = ACTIONS(3190), - [anon_sym_unsigned] = ACTIONS(3190), - [anon_sym_long] = ACTIONS(3190), - [anon_sym_short] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_register] = ACTIONS(3190), - [anon_sym_inline] = ACTIONS(3190), - [anon_sym___inline] = ACTIONS(3190), - [anon_sym___inline__] = ACTIONS(3190), - [anon_sym___forceinline] = ACTIONS(3190), - [anon_sym_thread_local] = ACTIONS(3190), - [anon_sym___thread] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_constexpr] = ACTIONS(3190), - [anon_sym_volatile] = ACTIONS(3190), - [anon_sym_restrict] = ACTIONS(3190), - [anon_sym___restrict__] = ACTIONS(3190), - [anon_sym__Atomic] = ACTIONS(3190), - [anon_sym__Noreturn] = ACTIONS(3190), - [anon_sym_noreturn] = ACTIONS(3190), - [anon_sym_mutable] = ACTIONS(3190), - [anon_sym_constinit] = ACTIONS(3190), - [anon_sym_consteval] = ACTIONS(3190), - [sym_primitive_type] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_struct] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3190), - [anon_sym_default] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_goto] = ACTIONS(3190), - [anon_sym_not] = ACTIONS(3190), - [anon_sym_compl] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_sizeof] = ACTIONS(3190), - [anon_sym___alignof__] = ACTIONS(3190), - [anon_sym___alignof] = ACTIONS(3190), - [anon_sym__alignof] = ACTIONS(3190), - [anon_sym_alignof] = ACTIONS(3190), - [anon_sym__Alignof] = ACTIONS(3190), - [anon_sym_offsetof] = ACTIONS(3190), - [anon_sym__Generic] = ACTIONS(3190), - [anon_sym_asm] = ACTIONS(3190), - [anon_sym___asm__] = ACTIONS(3190), - [sym_number_literal] = ACTIONS(3192), - [anon_sym_L_SQUOTE] = ACTIONS(3192), - [anon_sym_u_SQUOTE] = ACTIONS(3192), - [anon_sym_U_SQUOTE] = ACTIONS(3192), - [anon_sym_u8_SQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_L_DQUOTE] = ACTIONS(3192), - [anon_sym_u_DQUOTE] = ACTIONS(3192), - [anon_sym_U_DQUOTE] = ACTIONS(3192), - [anon_sym_u8_DQUOTE] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [anon_sym_NULL] = ACTIONS(3190), - [anon_sym_nullptr] = ACTIONS(3190), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3190), - [anon_sym_decltype] = ACTIONS(3190), - [anon_sym_virtual] = ACTIONS(3190), - [anon_sym_alignas] = ACTIONS(3190), - [anon_sym_explicit] = ACTIONS(3190), - [anon_sym_typename] = ACTIONS(3190), - [anon_sym_template] = ACTIONS(3190), - [anon_sym_operator] = ACTIONS(3190), - [anon_sym_try] = ACTIONS(3190), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_throw] = ACTIONS(3190), - [anon_sym_namespace] = ACTIONS(3190), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_static_assert] = ACTIONS(3190), - [anon_sym_concept] = ACTIONS(3190), - [anon_sym_co_return] = ACTIONS(3190), - [anon_sym_co_yield] = ACTIONS(3190), - [anon_sym_R_DQUOTE] = ACTIONS(3192), - [anon_sym_LR_DQUOTE] = ACTIONS(3192), - [anon_sym_uR_DQUOTE] = ACTIONS(3192), - [anon_sym_UR_DQUOTE] = ACTIONS(3192), - [anon_sym_u8R_DQUOTE] = ACTIONS(3192), - [anon_sym_co_await] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_requires] = ACTIONS(3190), - [sym_this] = ACTIONS(3190), - }, - [1018] = { - [ts_builtin_sym_end] = ACTIONS(2991), - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_include_token1] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym___cdecl] = ACTIONS(2989), - [anon_sym___clrcall] = ACTIONS(2989), - [anon_sym___stdcall] = ACTIONS(2989), - [anon_sym___fastcall] = ACTIONS(2989), - [anon_sym___thiscall] = ACTIONS(2989), - [anon_sym___vectorcall] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_switch] = ACTIONS(2989), - [anon_sym_case] = ACTIONS(2989), - [anon_sym_default] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_do] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_compl] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_sizeof] = ACTIONS(2989), - [anon_sym___alignof__] = ACTIONS(2989), - [anon_sym___alignof] = ACTIONS(2989), - [anon_sym__alignof] = ACTIONS(2989), - [anon_sym_alignof] = ACTIONS(2989), - [anon_sym__Alignof] = ACTIONS(2989), - [anon_sym_offsetof] = ACTIONS(2989), - [anon_sym__Generic] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym___asm__] = ACTIONS(2989), - [sym_number_literal] = ACTIONS(2991), - [anon_sym_L_SQUOTE] = ACTIONS(2991), - [anon_sym_u_SQUOTE] = ACTIONS(2991), - [anon_sym_U_SQUOTE] = ACTIONS(2991), - [anon_sym_u8_SQUOTE] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2991), - [anon_sym_L_DQUOTE] = ACTIONS(2991), - [anon_sym_u_DQUOTE] = ACTIONS(2991), - [anon_sym_U_DQUOTE] = ACTIONS(2991), - [anon_sym_u8_DQUOTE] = ACTIONS(2991), - [anon_sym_DQUOTE] = ACTIONS(2991), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [anon_sym_NULL] = ACTIONS(2989), - [anon_sym_nullptr] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_delete] = ACTIONS(2989), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_namespace] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - [anon_sym_concept] = ACTIONS(2989), - [anon_sym_co_return] = ACTIONS(2989), - [anon_sym_co_yield] = ACTIONS(2989), - [anon_sym_R_DQUOTE] = ACTIONS(2991), - [anon_sym_LR_DQUOTE] = ACTIONS(2991), - [anon_sym_uR_DQUOTE] = ACTIONS(2991), - [anon_sym_UR_DQUOTE] = ACTIONS(2991), - [anon_sym_u8R_DQUOTE] = ACTIONS(2991), - [anon_sym_co_await] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_requires] = ACTIONS(2989), - [sym_this] = ACTIONS(2989), - }, - [1019] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_identifier] = ACTIONS(3066), - [aux_sym_preproc_include_token1] = ACTIONS(3066), - [aux_sym_preproc_def_token1] = ACTIONS(3066), - [aux_sym_preproc_if_token1] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3066), - [sym_preproc_directive] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym___extension__] = ACTIONS(3066), - [anon_sym_typedef] = ACTIONS(3066), - [anon_sym_extern] = ACTIONS(3066), - [anon_sym___attribute__] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3068), - [anon_sym___declspec] = ACTIONS(3066), - [anon_sym___based] = ACTIONS(3066), - [anon_sym___cdecl] = ACTIONS(3066), - [anon_sym___clrcall] = ACTIONS(3066), - [anon_sym___stdcall] = ACTIONS(3066), - [anon_sym___fastcall] = ACTIONS(3066), - [anon_sym___thiscall] = ACTIONS(3066), - [anon_sym___vectorcall] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_signed] = ACTIONS(3066), - [anon_sym_unsigned] = ACTIONS(3066), - [anon_sym_long] = ACTIONS(3066), - [anon_sym_short] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_register] = ACTIONS(3066), - [anon_sym_inline] = ACTIONS(3066), - [anon_sym___inline] = ACTIONS(3066), - [anon_sym___inline__] = ACTIONS(3066), - [anon_sym___forceinline] = ACTIONS(3066), - [anon_sym_thread_local] = ACTIONS(3066), - [anon_sym___thread] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_constexpr] = ACTIONS(3066), - [anon_sym_volatile] = ACTIONS(3066), - [anon_sym_restrict] = ACTIONS(3066), - [anon_sym___restrict__] = ACTIONS(3066), - [anon_sym__Atomic] = ACTIONS(3066), - [anon_sym__Noreturn] = ACTIONS(3066), - [anon_sym_noreturn] = ACTIONS(3066), - [anon_sym_mutable] = ACTIONS(3066), - [anon_sym_constinit] = ACTIONS(3066), - [anon_sym_consteval] = ACTIONS(3066), - [sym_primitive_type] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_union] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_goto] = ACTIONS(3066), - [anon_sym_not] = ACTIONS(3066), - [anon_sym_compl] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_sizeof] = ACTIONS(3066), - [anon_sym___alignof__] = ACTIONS(3066), - [anon_sym___alignof] = ACTIONS(3066), - [anon_sym__alignof] = ACTIONS(3066), - [anon_sym_alignof] = ACTIONS(3066), - [anon_sym__Alignof] = ACTIONS(3066), - [anon_sym_offsetof] = ACTIONS(3066), - [anon_sym__Generic] = ACTIONS(3066), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3068), - [anon_sym_u_SQUOTE] = ACTIONS(3068), - [anon_sym_U_SQUOTE] = ACTIONS(3068), - [anon_sym_u8_SQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_L_DQUOTE] = ACTIONS(3068), - [anon_sym_u_DQUOTE] = ACTIONS(3068), - [anon_sym_U_DQUOTE] = ACTIONS(3068), - [anon_sym_u8_DQUOTE] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [anon_sym_NULL] = ACTIONS(3066), - [anon_sym_nullptr] = ACTIONS(3066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3066), - [anon_sym_decltype] = ACTIONS(3066), - [anon_sym_virtual] = ACTIONS(3066), - [anon_sym_alignas] = ACTIONS(3066), - [anon_sym_explicit] = ACTIONS(3066), [anon_sym_typename] = ACTIONS(3066), - [anon_sym_template] = ACTIONS(3066), - [anon_sym_operator] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_static_assert] = ACTIONS(3066), - [anon_sym_concept] = ACTIONS(3066), - [anon_sym_co_return] = ACTIONS(3066), - [anon_sym_co_yield] = 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(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_requires] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), - }, - [1020] = { - [ts_builtin_sym_end] = ACTIONS(3142), - [sym_identifier] = ACTIONS(3140), - [aux_sym_preproc_include_token1] = ACTIONS(3140), - [aux_sym_preproc_def_token1] = ACTIONS(3140), - [aux_sym_preproc_if_token1] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), - [sym_preproc_directive] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_AMP_AMP] = ACTIONS(3142), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym___extension__] = ACTIONS(3140), - [anon_sym_typedef] = ACTIONS(3140), - [anon_sym_extern] = ACTIONS(3140), - [anon_sym___attribute__] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3142), - [anon_sym___declspec] = ACTIONS(3140), - [anon_sym___based] = ACTIONS(3140), - [anon_sym___cdecl] = ACTIONS(3140), - [anon_sym___clrcall] = ACTIONS(3140), - [anon_sym___stdcall] = ACTIONS(3140), - [anon_sym___fastcall] = ACTIONS(3140), - [anon_sym___thiscall] = ACTIONS(3140), - [anon_sym___vectorcall] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_signed] = ACTIONS(3140), - [anon_sym_unsigned] = ACTIONS(3140), - [anon_sym_long] = ACTIONS(3140), - [anon_sym_short] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_register] = ACTIONS(3140), - [anon_sym_inline] = ACTIONS(3140), - [anon_sym___inline] = ACTIONS(3140), - [anon_sym___inline__] = ACTIONS(3140), - [anon_sym___forceinline] = ACTIONS(3140), - [anon_sym_thread_local] = ACTIONS(3140), - [anon_sym___thread] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_constexpr] = ACTIONS(3140), - [anon_sym_volatile] = ACTIONS(3140), - [anon_sym_restrict] = ACTIONS(3140), - [anon_sym___restrict__] = ACTIONS(3140), - [anon_sym__Atomic] = ACTIONS(3140), - [anon_sym__Noreturn] = ACTIONS(3140), - [anon_sym_noreturn] = ACTIONS(3140), - [anon_sym_mutable] = ACTIONS(3140), - [anon_sym_constinit] = ACTIONS(3140), - [anon_sym_consteval] = ACTIONS(3140), - [sym_primitive_type] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_struct] = ACTIONS(3140), - [anon_sym_union] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_case] = ACTIONS(3140), - [anon_sym_default] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_goto] = ACTIONS(3140), - [anon_sym_not] = ACTIONS(3140), - [anon_sym_compl] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_sizeof] = ACTIONS(3140), - [anon_sym___alignof__] = ACTIONS(3140), - [anon_sym___alignof] = ACTIONS(3140), - [anon_sym__alignof] = ACTIONS(3140), - [anon_sym_alignof] = ACTIONS(3140), - [anon_sym__Alignof] = ACTIONS(3140), - [anon_sym_offsetof] = ACTIONS(3140), - [anon_sym__Generic] = ACTIONS(3140), - [anon_sym_asm] = ACTIONS(3140), - [anon_sym___asm__] = ACTIONS(3140), - [sym_number_literal] = ACTIONS(3142), - [anon_sym_L_SQUOTE] = ACTIONS(3142), - [anon_sym_u_SQUOTE] = ACTIONS(3142), - [anon_sym_U_SQUOTE] = ACTIONS(3142), - [anon_sym_u8_SQUOTE] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_L_DQUOTE] = ACTIONS(3142), - [anon_sym_u_DQUOTE] = ACTIONS(3142), - [anon_sym_U_DQUOTE] = ACTIONS(3142), - [anon_sym_u8_DQUOTE] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [anon_sym_NULL] = ACTIONS(3140), - [anon_sym_nullptr] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3140), - [anon_sym_decltype] = ACTIONS(3140), - [anon_sym_virtual] = ACTIONS(3140), - [anon_sym_alignas] = ACTIONS(3140), - [anon_sym_explicit] = ACTIONS(3140), - [anon_sym_typename] = ACTIONS(3140), - [anon_sym_template] = ACTIONS(3140), - [anon_sym_operator] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_static_assert] = ACTIONS(3140), - [anon_sym_concept] = ACTIONS(3140), - [anon_sym_co_return] = ACTIONS(3140), - [anon_sym_co_yield] = ACTIONS(3140), - [anon_sym_R_DQUOTE] = ACTIONS(3142), - [anon_sym_LR_DQUOTE] = ACTIONS(3142), - [anon_sym_uR_DQUOTE] = ACTIONS(3142), - [anon_sym_UR_DQUOTE] = ACTIONS(3142), - [anon_sym_u8R_DQUOTE] = ACTIONS(3142), - [anon_sym_co_await] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_requires] = ACTIONS(3140), - [sym_this] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1021] = { - [ts_builtin_sym_end] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3086), - [aux_sym_preproc_include_token1] = ACTIONS(3086), - [aux_sym_preproc_def_token1] = ACTIONS(3086), - [aux_sym_preproc_if_token1] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3086), - [sym_preproc_directive] = ACTIONS(3086), - [anon_sym_LPAREN2] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym___extension__] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3086), - [anon_sym_extern] = ACTIONS(3086), - [anon_sym___attribute__] = ACTIONS(3086), - [anon_sym_COLON_COLON] = ACTIONS(3088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3088), - [anon_sym___declspec] = ACTIONS(3086), - [anon_sym___based] = ACTIONS(3086), - [anon_sym___cdecl] = ACTIONS(3086), - [anon_sym___clrcall] = ACTIONS(3086), - [anon_sym___stdcall] = ACTIONS(3086), - [anon_sym___fastcall] = ACTIONS(3086), - [anon_sym___thiscall] = ACTIONS(3086), - [anon_sym___vectorcall] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_signed] = ACTIONS(3086), - [anon_sym_unsigned] = ACTIONS(3086), - [anon_sym_long] = ACTIONS(3086), - [anon_sym_short] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_register] = ACTIONS(3086), - [anon_sym_inline] = ACTIONS(3086), - [anon_sym___inline] = ACTIONS(3086), - [anon_sym___inline__] = ACTIONS(3086), - [anon_sym___forceinline] = ACTIONS(3086), - [anon_sym_thread_local] = ACTIONS(3086), - [anon_sym___thread] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_constexpr] = ACTIONS(3086), - [anon_sym_volatile] = ACTIONS(3086), - [anon_sym_restrict] = ACTIONS(3086), - [anon_sym___restrict__] = ACTIONS(3086), - [anon_sym__Atomic] = ACTIONS(3086), - [anon_sym__Noreturn] = ACTIONS(3086), - [anon_sym_noreturn] = ACTIONS(3086), - [anon_sym_mutable] = ACTIONS(3086), - [anon_sym_constinit] = ACTIONS(3086), - [anon_sym_consteval] = ACTIONS(3086), - [sym_primitive_type] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), - [anon_sym_class] = ACTIONS(3086), - [anon_sym_struct] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_switch] = ACTIONS(3086), - [anon_sym_case] = ACTIONS(3086), - [anon_sym_default] = ACTIONS(3086), - [anon_sym_while] = ACTIONS(3086), - [anon_sym_do] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_goto] = ACTIONS(3086), - [anon_sym_not] = ACTIONS(3086), - [anon_sym_compl] = ACTIONS(3086), - [anon_sym_DASH_DASH] = ACTIONS(3088), - [anon_sym_PLUS_PLUS] = ACTIONS(3088), - [anon_sym_sizeof] = ACTIONS(3086), - [anon_sym___alignof__] = ACTIONS(3086), - [anon_sym___alignof] = ACTIONS(3086), - [anon_sym__alignof] = ACTIONS(3086), - [anon_sym_alignof] = ACTIONS(3086), - [anon_sym__Alignof] = ACTIONS(3086), - [anon_sym_offsetof] = ACTIONS(3086), - [anon_sym__Generic] = ACTIONS(3086), - [anon_sym_asm] = ACTIONS(3086), - [anon_sym___asm__] = ACTIONS(3086), - [sym_number_literal] = ACTIONS(3088), - [anon_sym_L_SQUOTE] = ACTIONS(3088), - [anon_sym_u_SQUOTE] = ACTIONS(3088), - [anon_sym_U_SQUOTE] = ACTIONS(3088), - [anon_sym_u8_SQUOTE] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3088), - [anon_sym_L_DQUOTE] = ACTIONS(3088), - [anon_sym_u_DQUOTE] = ACTIONS(3088), - [anon_sym_U_DQUOTE] = ACTIONS(3088), - [anon_sym_u8_DQUOTE] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [anon_sym_NULL] = ACTIONS(3086), - [anon_sym_nullptr] = ACTIONS(3086), + [967] = { + [sym__expression] = STATE(4185), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(4333), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2140), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3086), - [anon_sym_decltype] = ACTIONS(3086), - [anon_sym_virtual] = ACTIONS(3086), - [anon_sym_alignas] = ACTIONS(3086), - [anon_sym_explicit] = ACTIONS(3086), - [anon_sym_typename] = ACTIONS(3086), - [anon_sym_template] = ACTIONS(3086), - [anon_sym_operator] = ACTIONS(3086), - [anon_sym_try] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3086), - [anon_sym_throw] = ACTIONS(3086), - [anon_sym_namespace] = ACTIONS(3086), - [anon_sym_using] = ACTIONS(3086), - [anon_sym_static_assert] = ACTIONS(3086), - [anon_sym_concept] = ACTIONS(3086), - [anon_sym_co_return] = ACTIONS(3086), - [anon_sym_co_yield] = ACTIONS(3086), - [anon_sym_R_DQUOTE] = ACTIONS(3088), - [anon_sym_LR_DQUOTE] = ACTIONS(3088), - [anon_sym_uR_DQUOTE] = ACTIONS(3088), - [anon_sym_UR_DQUOTE] = ACTIONS(3088), - [anon_sym_u8R_DQUOTE] = ACTIONS(3088), - [anon_sym_co_await] = ACTIONS(3086), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3086), - [sym_this] = ACTIONS(3086), - }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(3056), - [sym_identifier] = ACTIONS(3054), - [aux_sym_preproc_include_token1] = ACTIONS(3054), - [aux_sym_preproc_def_token1] = ACTIONS(3054), - [aux_sym_preproc_if_token1] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3054), - [sym_preproc_directive] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym___extension__] = ACTIONS(3054), - [anon_sym_typedef] = ACTIONS(3054), - [anon_sym_extern] = ACTIONS(3054), - [anon_sym___attribute__] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3056), - [anon_sym___declspec] = ACTIONS(3054), - [anon_sym___based] = ACTIONS(3054), - [anon_sym___cdecl] = ACTIONS(3054), - [anon_sym___clrcall] = ACTIONS(3054), - [anon_sym___stdcall] = ACTIONS(3054), - [anon_sym___fastcall] = ACTIONS(3054), - [anon_sym___thiscall] = ACTIONS(3054), - [anon_sym___vectorcall] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_signed] = ACTIONS(3054), - [anon_sym_unsigned] = ACTIONS(3054), - [anon_sym_long] = ACTIONS(3054), - [anon_sym_short] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_register] = ACTIONS(3054), - [anon_sym_inline] = ACTIONS(3054), - [anon_sym___inline] = ACTIONS(3054), - [anon_sym___inline__] = ACTIONS(3054), - [anon_sym___forceinline] = ACTIONS(3054), - [anon_sym_thread_local] = ACTIONS(3054), - [anon_sym___thread] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_constexpr] = ACTIONS(3054), - [anon_sym_volatile] = ACTIONS(3054), - [anon_sym_restrict] = ACTIONS(3054), - [anon_sym___restrict__] = ACTIONS(3054), - [anon_sym__Atomic] = ACTIONS(3054), - [anon_sym__Noreturn] = ACTIONS(3054), - [anon_sym_noreturn] = ACTIONS(3054), - [anon_sym_mutable] = ACTIONS(3054), - [anon_sym_constinit] = ACTIONS(3054), - [anon_sym_consteval] = ACTIONS(3054), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_class] = ACTIONS(3054), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_union] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_switch] = ACTIONS(3054), - [anon_sym_case] = ACTIONS(3054), - [anon_sym_default] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_goto] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3054), - [anon_sym_compl] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_sizeof] = ACTIONS(3054), - [anon_sym___alignof__] = ACTIONS(3054), - [anon_sym___alignof] = ACTIONS(3054), - [anon_sym__alignof] = ACTIONS(3054), - [anon_sym_alignof] = ACTIONS(3054), - [anon_sym__Alignof] = ACTIONS(3054), - [anon_sym_offsetof] = ACTIONS(3054), - [anon_sym__Generic] = ACTIONS(3054), - [anon_sym_asm] = ACTIONS(3054), - [anon_sym___asm__] = ACTIONS(3054), - [sym_number_literal] = ACTIONS(3056), - [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(3056), - [anon_sym_u_DQUOTE] = ACTIONS(3056), - [anon_sym_U_DQUOTE] = ACTIONS(3056), - [anon_sym_u8_DQUOTE] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [anon_sym_NULL] = ACTIONS(3054), - [anon_sym_nullptr] = ACTIONS(3054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3054), - [anon_sym_decltype] = ACTIONS(3054), - [anon_sym_virtual] = ACTIONS(3054), - [anon_sym_alignas] = ACTIONS(3054), - [anon_sym_explicit] = ACTIONS(3054), - [anon_sym_typename] = ACTIONS(3054), - [anon_sym_template] = ACTIONS(3054), - [anon_sym_operator] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_delete] = ACTIONS(3054), - [anon_sym_throw] = ACTIONS(3054), - [anon_sym_namespace] = ACTIONS(3054), - [anon_sym_using] = ACTIONS(3054), - [anon_sym_static_assert] = ACTIONS(3054), - [anon_sym_concept] = ACTIONS(3054), - [anon_sym_co_return] = ACTIONS(3054), - [anon_sym_co_yield] = ACTIONS(3054), - [anon_sym_R_DQUOTE] = ACTIONS(3056), - [anon_sym_LR_DQUOTE] = ACTIONS(3056), - [anon_sym_uR_DQUOTE] = ACTIONS(3056), - [anon_sym_UR_DQUOTE] = ACTIONS(3056), - [anon_sym_u8R_DQUOTE] = ACTIONS(3056), - [anon_sym_co_await] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_requires] = ACTIONS(3054), - [sym_this] = ACTIONS(3054), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1023] = { - [ts_builtin_sym_end] = ACTIONS(3150), - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_include_token1] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym___cdecl] = ACTIONS(3148), - [anon_sym___clrcall] = ACTIONS(3148), - [anon_sym___stdcall] = ACTIONS(3148), - [anon_sym___fastcall] = ACTIONS(3148), - [anon_sym___thiscall] = ACTIONS(3148), - [anon_sym___vectorcall] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_goto] = ACTIONS(3148), - [anon_sym_not] = ACTIONS(3148), - [anon_sym_compl] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_sizeof] = ACTIONS(3148), - [anon_sym___alignof__] = ACTIONS(3148), - [anon_sym___alignof] = ACTIONS(3148), - [anon_sym__alignof] = ACTIONS(3148), - [anon_sym_alignof] = ACTIONS(3148), - [anon_sym__Alignof] = ACTIONS(3148), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3148), - [anon_sym_asm] = ACTIONS(3148), - [anon_sym___asm__] = ACTIONS(3148), - [sym_number_literal] = ACTIONS(3150), - [anon_sym_L_SQUOTE] = ACTIONS(3150), - [anon_sym_u_SQUOTE] = ACTIONS(3150), - [anon_sym_U_SQUOTE] = ACTIONS(3150), - [anon_sym_u8_SQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_L_DQUOTE] = ACTIONS(3150), - [anon_sym_u_DQUOTE] = ACTIONS(3150), - [anon_sym_U_DQUOTE] = ACTIONS(3150), - [anon_sym_u8_DQUOTE] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [anon_sym_NULL] = ACTIONS(3148), - [anon_sym_nullptr] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - [anon_sym_concept] = ACTIONS(3148), - [anon_sym_co_return] = ACTIONS(3148), - [anon_sym_co_yield] = ACTIONS(3148), - [anon_sym_R_DQUOTE] = ACTIONS(3150), - [anon_sym_LR_DQUOTE] = ACTIONS(3150), - [anon_sym_uR_DQUOTE] = ACTIONS(3150), - [anon_sym_UR_DQUOTE] = ACTIONS(3150), - [anon_sym_u8R_DQUOTE] = ACTIONS(3150), - [anon_sym_co_await] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_requires] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), + [968] = { + [ts_builtin_sym_end] = ACTIONS(3284), + [sym_identifier] = ACTIONS(3282), + [aux_sym_preproc_include_token1] = ACTIONS(3282), + [aux_sym_preproc_def_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym___extension__] = ACTIONS(3282), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym___attribute__] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), + [anon_sym___declspec] = ACTIONS(3282), + [anon_sym___based] = ACTIONS(3282), + [anon_sym___cdecl] = ACTIONS(3282), + [anon_sym___clrcall] = ACTIONS(3282), + [anon_sym___stdcall] = ACTIONS(3282), + [anon_sym___fastcall] = ACTIONS(3282), + [anon_sym___thiscall] = ACTIONS(3282), + [anon_sym___vectorcall] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_signed] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym___inline] = ACTIONS(3282), + [anon_sym___inline__] = ACTIONS(3282), + [anon_sym___forceinline] = ACTIONS(3282), + [anon_sym_thread_local] = ACTIONS(3282), + [anon_sym___thread] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_constexpr] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym___restrict__] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym__Noreturn] = ACTIONS(3282), + [anon_sym_noreturn] = ACTIONS(3282), + [anon_sym_mutable] = ACTIONS(3282), + [anon_sym_constinit] = ACTIONS(3282), + [anon_sym_consteval] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym_not] = ACTIONS(3282), + [anon_sym_compl] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [anon_sym___alignof__] = ACTIONS(3282), + [anon_sym___alignof] = ACTIONS(3282), + [anon_sym__alignof] = ACTIONS(3282), + [anon_sym_alignof] = ACTIONS(3282), + [anon_sym__Alignof] = ACTIONS(3282), + [anon_sym_offsetof] = ACTIONS(3282), + [anon_sym__Generic] = ACTIONS(3282), + [anon_sym_asm] = ACTIONS(3282), + [anon_sym___asm__] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [anon_sym_L_SQUOTE] = ACTIONS(3284), + [anon_sym_u_SQUOTE] = ACTIONS(3284), + [anon_sym_U_SQUOTE] = ACTIONS(3284), + [anon_sym_u8_SQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_L_DQUOTE] = ACTIONS(3284), + [anon_sym_u_DQUOTE] = ACTIONS(3284), + [anon_sym_U_DQUOTE] = ACTIONS(3284), + [anon_sym_u8_DQUOTE] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [anon_sym_NULL] = ACTIONS(3282), + [anon_sym_nullptr] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3282), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_virtual] = ACTIONS(3282), + [anon_sym_alignas] = ACTIONS(3282), + [anon_sym_explicit] = ACTIONS(3282), + [anon_sym_typename] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3282), + [anon_sym_operator] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_static_assert] = ACTIONS(3282), + [anon_sym_concept] = ACTIONS(3282), + [anon_sym_co_return] = ACTIONS(3282), + [anon_sym_co_yield] = ACTIONS(3282), + [anon_sym_R_DQUOTE] = ACTIONS(3284), + [anon_sym_LR_DQUOTE] = ACTIONS(3284), + [anon_sym_uR_DQUOTE] = ACTIONS(3284), + [anon_sym_UR_DQUOTE] = ACTIONS(3284), + [anon_sym_u8R_DQUOTE] = ACTIONS(3284), + [anon_sym_co_await] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_requires] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), }, - [1024] = { - [ts_builtin_sym_end] = ACTIONS(3290), - [sym_identifier] = ACTIONS(3288), - [aux_sym_preproc_include_token1] = ACTIONS(3288), - [aux_sym_preproc_def_token1] = ACTIONS(3288), - [aux_sym_preproc_if_token1] = ACTIONS(3288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3288), - [sym_preproc_directive] = ACTIONS(3288), - [anon_sym_LPAREN2] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3290), - [anon_sym_AMP_AMP] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym___extension__] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3288), - [anon_sym_extern] = ACTIONS(3288), - [anon_sym___attribute__] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3290), - [anon_sym___declspec] = ACTIONS(3288), - [anon_sym___based] = ACTIONS(3288), - [anon_sym___cdecl] = ACTIONS(3288), - [anon_sym___clrcall] = ACTIONS(3288), - [anon_sym___stdcall] = ACTIONS(3288), - [anon_sym___fastcall] = ACTIONS(3288), - [anon_sym___thiscall] = ACTIONS(3288), - [anon_sym___vectorcall] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_signed] = ACTIONS(3288), - [anon_sym_unsigned] = ACTIONS(3288), - [anon_sym_long] = ACTIONS(3288), - [anon_sym_short] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_register] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym___inline] = ACTIONS(3288), - [anon_sym___inline__] = ACTIONS(3288), - [anon_sym___forceinline] = ACTIONS(3288), - [anon_sym_thread_local] = ACTIONS(3288), - [anon_sym___thread] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_constexpr] = ACTIONS(3288), - [anon_sym_volatile] = ACTIONS(3288), - [anon_sym_restrict] = ACTIONS(3288), - [anon_sym___restrict__] = ACTIONS(3288), - [anon_sym__Atomic] = ACTIONS(3288), - [anon_sym__Noreturn] = ACTIONS(3288), - [anon_sym_noreturn] = ACTIONS(3288), - [anon_sym_mutable] = ACTIONS(3288), - [anon_sym_constinit] = ACTIONS(3288), - [anon_sym_consteval] = ACTIONS(3288), - [sym_primitive_type] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_struct] = ACTIONS(3288), - [anon_sym_union] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_goto] = ACTIONS(3288), - [anon_sym_not] = ACTIONS(3288), - [anon_sym_compl] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_sizeof] = ACTIONS(3288), - [anon_sym___alignof__] = ACTIONS(3288), - [anon_sym___alignof] = ACTIONS(3288), - [anon_sym__alignof] = ACTIONS(3288), - [anon_sym_alignof] = ACTIONS(3288), - [anon_sym__Alignof] = ACTIONS(3288), - [anon_sym_offsetof] = ACTIONS(3288), - [anon_sym__Generic] = ACTIONS(3288), - [anon_sym_asm] = ACTIONS(3288), - [anon_sym___asm__] = ACTIONS(3288), - [sym_number_literal] = ACTIONS(3290), - [anon_sym_L_SQUOTE] = ACTIONS(3290), - [anon_sym_u_SQUOTE] = ACTIONS(3290), - [anon_sym_U_SQUOTE] = ACTIONS(3290), - [anon_sym_u8_SQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_L_DQUOTE] = ACTIONS(3290), - [anon_sym_u_DQUOTE] = ACTIONS(3290), - [anon_sym_U_DQUOTE] = ACTIONS(3290), - [anon_sym_u8_DQUOTE] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [anon_sym_NULL] = ACTIONS(3288), - [anon_sym_nullptr] = ACTIONS(3288), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3288), - [anon_sym_decltype] = ACTIONS(3288), - [anon_sym_virtual] = ACTIONS(3288), - [anon_sym_alignas] = ACTIONS(3288), - [anon_sym_explicit] = ACTIONS(3288), - [anon_sym_typename] = ACTIONS(3288), - [anon_sym_template] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_static_assert] = ACTIONS(3288), - [anon_sym_concept] = ACTIONS(3288), - [anon_sym_co_return] = ACTIONS(3288), - [anon_sym_co_yield] = 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(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_requires] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), + [969] = { + [ts_builtin_sym_end] = ACTIONS(3124), + [sym_identifier] = ACTIONS(3122), + [aux_sym_preproc_include_token1] = ACTIONS(3122), + [aux_sym_preproc_def_token1] = ACTIONS(3122), + [aux_sym_preproc_if_token1] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3122), + [sym_preproc_directive] = ACTIONS(3122), + [anon_sym_LPAREN2] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym___extension__] = ACTIONS(3122), + [anon_sym_typedef] = ACTIONS(3122), + [anon_sym_extern] = ACTIONS(3122), + [anon_sym___attribute__] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3124), + [anon_sym___declspec] = ACTIONS(3122), + [anon_sym___based] = ACTIONS(3122), + [anon_sym___cdecl] = ACTIONS(3122), + [anon_sym___clrcall] = ACTIONS(3122), + [anon_sym___stdcall] = ACTIONS(3122), + [anon_sym___fastcall] = ACTIONS(3122), + [anon_sym___thiscall] = ACTIONS(3122), + [anon_sym___vectorcall] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_signed] = ACTIONS(3122), + [anon_sym_unsigned] = ACTIONS(3122), + [anon_sym_long] = ACTIONS(3122), + [anon_sym_short] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_register] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym___inline] = ACTIONS(3122), + [anon_sym___inline__] = ACTIONS(3122), + [anon_sym___forceinline] = ACTIONS(3122), + [anon_sym_thread_local] = ACTIONS(3122), + [anon_sym___thread] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym___restrict__] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym__Noreturn] = ACTIONS(3122), + [anon_sym_noreturn] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_union] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_goto] = ACTIONS(3122), + [anon_sym_not] = ACTIONS(3122), + [anon_sym_compl] = ACTIONS(3122), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_sizeof] = ACTIONS(3122), + [anon_sym___alignof__] = ACTIONS(3122), + [anon_sym___alignof] = ACTIONS(3122), + [anon_sym__alignof] = ACTIONS(3122), + [anon_sym_alignof] = ACTIONS(3122), + [anon_sym__Alignof] = ACTIONS(3122), + [anon_sym_offsetof] = ACTIONS(3122), + [anon_sym__Generic] = ACTIONS(3122), + [anon_sym_asm] = ACTIONS(3122), + [anon_sym___asm__] = ACTIONS(3122), + [sym_number_literal] = ACTIONS(3124), + [anon_sym_L_SQUOTE] = ACTIONS(3124), + [anon_sym_u_SQUOTE] = ACTIONS(3124), + [anon_sym_U_SQUOTE] = ACTIONS(3124), + [anon_sym_u8_SQUOTE] = ACTIONS(3124), + [anon_sym_SQUOTE] = ACTIONS(3124), + [anon_sym_L_DQUOTE] = ACTIONS(3124), + [anon_sym_u_DQUOTE] = ACTIONS(3124), + [anon_sym_U_DQUOTE] = ACTIONS(3124), + [anon_sym_u8_DQUOTE] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [anon_sym_NULL] = ACTIONS(3122), + [anon_sym_nullptr] = ACTIONS(3122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3122), + [anon_sym_decltype] = ACTIONS(3122), + [anon_sym_virtual] = ACTIONS(3122), + [anon_sym_alignas] = ACTIONS(3122), + [anon_sym_explicit] = ACTIONS(3122), + [anon_sym_typename] = ACTIONS(3122), + [anon_sym_template] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_using] = ACTIONS(3122), + [anon_sym_static_assert] = ACTIONS(3122), + [anon_sym_concept] = ACTIONS(3122), + [anon_sym_co_return] = ACTIONS(3122), + [anon_sym_co_yield] = ACTIONS(3122), + [anon_sym_R_DQUOTE] = ACTIONS(3124), + [anon_sym_LR_DQUOTE] = ACTIONS(3124), + [anon_sym_uR_DQUOTE] = ACTIONS(3124), + [anon_sym_UR_DQUOTE] = ACTIONS(3124), + [anon_sym_u8R_DQUOTE] = ACTIONS(3124), + [anon_sym_co_await] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_requires] = ACTIONS(3122), + [sym_this] = ACTIONS(3122), }, - [1025] = { - [sym_preproc_def] = STATE(969), - [sym_preproc_function_def] = STATE(969), - [sym_preproc_call] = STATE(969), - [sym_preproc_if_in_field_declaration_list] = STATE(969), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(969), - [sym_type_definition] = STATE(969), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6154), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6722), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(969), - [sym_field_declaration] = STATE(969), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2011), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(969), - [sym_operator_cast] = STATE(7212), - [sym_inline_method_definition] = STATE(969), - [sym__constructor_specifiers] = STATE(2011), - [sym_operator_cast_definition] = STATE(969), - [sym_operator_cast_declaration] = STATE(969), - [sym_constructor_or_destructor_definition] = STATE(969), - [sym_constructor_or_destructor_declaration] = STATE(969), - [sym_friend_declaration] = STATE(969), - [sym_access_specifier] = STATE(8624), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(969), - [sym_alias_declaration] = STATE(969), - [sym_static_assert_declaration] = STATE(969), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7212), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(969), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2011), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token1] = ACTIONS(3668), - [aux_sym_preproc_if_token2] = ACTIONS(3814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), - [sym_preproc_directive] = ACTIONS(3674), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [970] = { + [sym_preproc_def] = STATE(993), + [sym_preproc_function_def] = STATE(993), + [sym_preproc_call] = STATE(993), + [sym_preproc_if_in_field_declaration_list] = STATE(993), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(993), + [sym_type_definition] = STATE(993), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(993), + [sym_field_declaration] = STATE(993), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(993), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(993), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(993), + [sym_operator_cast_declaration] = STATE(993), + [sym_constructor_or_destructor_definition] = STATE(993), + [sym_constructor_or_destructor_declaration] = STATE(993), + [sym_friend_declaration] = STATE(993), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(993), + [sym_alias_declaration] = STATE(993), + [sym_static_assert_declaration] = STATE(993), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(993), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3676), - [anon_sym_typedef] = ACTIONS(3678), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3718), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -229643,1406 +222874,1019 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3682), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_static_assert] = ACTIONS(3686), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1026] = { - [sym_preproc_def] = STATE(962), - [sym_preproc_function_def] = STATE(962), - [sym_preproc_call] = STATE(962), - [sym_preproc_if_in_field_declaration_list] = STATE(962), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(962), - [sym_type_definition] = STATE(962), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(962), - [sym_field_declaration] = STATE(962), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(962), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(962), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(962), - [sym_operator_cast_declaration] = STATE(962), - [sym_constructor_or_destructor_definition] = STATE(962), - [sym_constructor_or_destructor_declaration] = STATE(962), - [sym_friend_declaration] = STATE(962), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(962), - [sym_alias_declaration] = STATE(962), - [sym_static_assert_declaration] = STATE(962), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(962), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3816), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [971] = { + [ts_builtin_sym_end] = ACTIONS(3205), + [sym_identifier] = ACTIONS(3203), + [aux_sym_preproc_include_token1] = ACTIONS(3203), + [aux_sym_preproc_def_token1] = ACTIONS(3203), + [aux_sym_preproc_if_token1] = ACTIONS(3203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), + [sym_preproc_directive] = ACTIONS(3203), + [anon_sym_LPAREN2] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3203), + [anon_sym___extension__] = ACTIONS(3203), + [anon_sym_typedef] = ACTIONS(3203), + [anon_sym_extern] = ACTIONS(3203), + [anon_sym___attribute__] = ACTIONS(3203), + [anon_sym_COLON_COLON] = ACTIONS(3205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), + [anon_sym___declspec] = ACTIONS(3203), + [anon_sym___based] = ACTIONS(3203), + [anon_sym___cdecl] = ACTIONS(3203), + [anon_sym___clrcall] = ACTIONS(3203), + [anon_sym___stdcall] = ACTIONS(3203), + [anon_sym___fastcall] = ACTIONS(3203), + [anon_sym___thiscall] = ACTIONS(3203), + [anon_sym___vectorcall] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_signed] = ACTIONS(3203), + [anon_sym_unsigned] = ACTIONS(3203), + [anon_sym_long] = ACTIONS(3203), + [anon_sym_short] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3203), + [anon_sym_static] = ACTIONS(3203), + [anon_sym_register] = ACTIONS(3203), + [anon_sym_inline] = ACTIONS(3203), + [anon_sym___inline] = ACTIONS(3203), + [anon_sym___inline__] = ACTIONS(3203), + [anon_sym___forceinline] = ACTIONS(3203), + [anon_sym_thread_local] = ACTIONS(3203), + [anon_sym___thread] = ACTIONS(3203), + [anon_sym_const] = ACTIONS(3203), + [anon_sym_constexpr] = ACTIONS(3203), + [anon_sym_volatile] = ACTIONS(3203), + [anon_sym_restrict] = ACTIONS(3203), + [anon_sym___restrict__] = ACTIONS(3203), + [anon_sym__Atomic] = ACTIONS(3203), + [anon_sym__Noreturn] = ACTIONS(3203), + [anon_sym_noreturn] = ACTIONS(3203), + [anon_sym_mutable] = ACTIONS(3203), + [anon_sym_constinit] = ACTIONS(3203), + [anon_sym_consteval] = ACTIONS(3203), + [sym_primitive_type] = ACTIONS(3203), + [anon_sym_enum] = ACTIONS(3203), + [anon_sym_class] = ACTIONS(3203), + [anon_sym_struct] = ACTIONS(3203), + [anon_sym_union] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_switch] = ACTIONS(3203), + [anon_sym_case] = ACTIONS(3203), + [anon_sym_default] = ACTIONS(3203), + [anon_sym_while] = ACTIONS(3203), + [anon_sym_do] = ACTIONS(3203), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_goto] = ACTIONS(3203), + [anon_sym_not] = ACTIONS(3203), + [anon_sym_compl] = ACTIONS(3203), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(3203), + [anon_sym___alignof__] = ACTIONS(3203), + [anon_sym___alignof] = ACTIONS(3203), + [anon_sym__alignof] = ACTIONS(3203), + [anon_sym_alignof] = ACTIONS(3203), + [anon_sym__Alignof] = ACTIONS(3203), + [anon_sym_offsetof] = ACTIONS(3203), + [anon_sym__Generic] = ACTIONS(3203), + [anon_sym_asm] = ACTIONS(3203), + [anon_sym___asm__] = ACTIONS(3203), + [sym_number_literal] = ACTIONS(3205), + [anon_sym_L_SQUOTE] = ACTIONS(3205), + [anon_sym_u_SQUOTE] = ACTIONS(3205), + [anon_sym_U_SQUOTE] = ACTIONS(3205), + [anon_sym_u8_SQUOTE] = ACTIONS(3205), + [anon_sym_SQUOTE] = ACTIONS(3205), + [anon_sym_L_DQUOTE] = ACTIONS(3205), + [anon_sym_u_DQUOTE] = ACTIONS(3205), + [anon_sym_U_DQUOTE] = ACTIONS(3205), + [anon_sym_u8_DQUOTE] = ACTIONS(3205), + [anon_sym_DQUOTE] = ACTIONS(3205), + [sym_true] = ACTIONS(3203), + [sym_false] = ACTIONS(3203), + [anon_sym_NULL] = ACTIONS(3203), + [anon_sym_nullptr] = ACTIONS(3203), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), + [sym_auto] = ACTIONS(3203), + [anon_sym_decltype] = ACTIONS(3203), + [anon_sym_virtual] = ACTIONS(3203), + [anon_sym_alignas] = ACTIONS(3203), + [anon_sym_explicit] = ACTIONS(3203), + [anon_sym_typename] = ACTIONS(3203), + [anon_sym_template] = ACTIONS(3203), + [anon_sym_operator] = ACTIONS(3203), + [anon_sym_try] = ACTIONS(3203), + [anon_sym_delete] = ACTIONS(3203), + [anon_sym_throw] = ACTIONS(3203), + [anon_sym_namespace] = ACTIONS(3203), + [anon_sym_using] = ACTIONS(3203), + [anon_sym_static_assert] = ACTIONS(3203), + [anon_sym_concept] = ACTIONS(3203), + [anon_sym_co_return] = ACTIONS(3203), + [anon_sym_co_yield] = ACTIONS(3203), + [anon_sym_R_DQUOTE] = ACTIONS(3205), + [anon_sym_LR_DQUOTE] = ACTIONS(3205), + [anon_sym_uR_DQUOTE] = ACTIONS(3205), + [anon_sym_UR_DQUOTE] = ACTIONS(3205), + [anon_sym_u8R_DQUOTE] = ACTIONS(3205), + [anon_sym_co_await] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3203), + [anon_sym_requires] = ACTIONS(3203), + [sym_this] = ACTIONS(3203), }, - [1027] = { - [ts_builtin_sym_end] = ACTIONS(3162), - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_include_token1] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym___cdecl] = ACTIONS(3160), - [anon_sym___clrcall] = ACTIONS(3160), - [anon_sym___stdcall] = ACTIONS(3160), - [anon_sym___fastcall] = ACTIONS(3160), - [anon_sym___thiscall] = ACTIONS(3160), - [anon_sym___vectorcall] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_goto] = ACTIONS(3160), - [anon_sym_not] = ACTIONS(3160), - [anon_sym_compl] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_sizeof] = ACTIONS(3160), - [anon_sym___alignof__] = ACTIONS(3160), - [anon_sym___alignof] = ACTIONS(3160), - [anon_sym__alignof] = ACTIONS(3160), - [anon_sym_alignof] = ACTIONS(3160), - [anon_sym__Alignof] = ACTIONS(3160), - [anon_sym_offsetof] = ACTIONS(3160), - [anon_sym__Generic] = ACTIONS(3160), - [anon_sym_asm] = ACTIONS(3160), - [anon_sym___asm__] = ACTIONS(3160), - [sym_number_literal] = ACTIONS(3162), - [anon_sym_L_SQUOTE] = ACTIONS(3162), - [anon_sym_u_SQUOTE] = ACTIONS(3162), - [anon_sym_U_SQUOTE] = ACTIONS(3162), - [anon_sym_u8_SQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_L_DQUOTE] = ACTIONS(3162), - [anon_sym_u_DQUOTE] = ACTIONS(3162), - [anon_sym_U_DQUOTE] = ACTIONS(3162), - [anon_sym_u8_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3160), - [anon_sym_nullptr] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), - [anon_sym_concept] = ACTIONS(3160), - [anon_sym_co_return] = ACTIONS(3160), - [anon_sym_co_yield] = ACTIONS(3160), - [anon_sym_R_DQUOTE] = ACTIONS(3162), - [anon_sym_LR_DQUOTE] = ACTIONS(3162), - [anon_sym_uR_DQUOTE] = ACTIONS(3162), - [anon_sym_UR_DQUOTE] = ACTIONS(3162), - [anon_sym_u8R_DQUOTE] = ACTIONS(3162), - [anon_sym_co_await] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_requires] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), + [972] = { + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_include_token1] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym___cdecl] = ACTIONS(2997), + [anon_sym___clrcall] = ACTIONS(2997), + [anon_sym___stdcall] = ACTIONS(2997), + [anon_sym___fastcall] = ACTIONS(2997), + [anon_sym___thiscall] = ACTIONS(2997), + [anon_sym___vectorcall] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_switch] = ACTIONS(2997), + [anon_sym_case] = ACTIONS(2997), + [anon_sym_default] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_not] = ACTIONS(2997), + [anon_sym_compl] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(2997), + [anon_sym___alignof__] = ACTIONS(2997), + [anon_sym___alignof] = ACTIONS(2997), + [anon_sym__alignof] = ACTIONS(2997), + [anon_sym_alignof] = ACTIONS(2997), + [anon_sym__Alignof] = ACTIONS(2997), + [anon_sym_offsetof] = ACTIONS(2997), + [anon_sym__Generic] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym___asm__] = ACTIONS(2997), + [sym_number_literal] = ACTIONS(2999), + [anon_sym_L_SQUOTE] = ACTIONS(2999), + [anon_sym_u_SQUOTE] = ACTIONS(2999), + [anon_sym_U_SQUOTE] = ACTIONS(2999), + [anon_sym_u8_SQUOTE] = ACTIONS(2999), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_L_DQUOTE] = ACTIONS(2999), + [anon_sym_u_DQUOTE] = ACTIONS(2999), + [anon_sym_U_DQUOTE] = ACTIONS(2999), + [anon_sym_u8_DQUOTE] = ACTIONS(2999), + [anon_sym_DQUOTE] = ACTIONS(2999), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [anon_sym_NULL] = ACTIONS(2997), + [anon_sym_nullptr] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_delete] = ACTIONS(2997), + [anon_sym_throw] = ACTIONS(2997), + [anon_sym_namespace] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), + [anon_sym_concept] = ACTIONS(2997), + [anon_sym_co_return] = ACTIONS(2997), + [anon_sym_co_yield] = ACTIONS(2997), + [anon_sym_R_DQUOTE] = ACTIONS(2999), + [anon_sym_LR_DQUOTE] = ACTIONS(2999), + [anon_sym_uR_DQUOTE] = ACTIONS(2999), + [anon_sym_UR_DQUOTE] = ACTIONS(2999), + [anon_sym_u8R_DQUOTE] = ACTIONS(2999), + [anon_sym_co_await] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_requires] = ACTIONS(2997), + [sym_this] = ACTIONS(2997), }, - [1028] = { - [ts_builtin_sym_end] = ACTIONS(3188), - [sym_identifier] = ACTIONS(3186), - [aux_sym_preproc_include_token1] = ACTIONS(3186), - [aux_sym_preproc_def_token1] = ACTIONS(3186), - [aux_sym_preproc_if_token1] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3186), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3186), - [sym_preproc_directive] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_STAR] = ACTIONS(3188), - [anon_sym_AMP_AMP] = ACTIONS(3188), - [anon_sym_AMP] = ACTIONS(3186), - [anon_sym___extension__] = ACTIONS(3186), - [anon_sym_typedef] = ACTIONS(3186), - [anon_sym_extern] = ACTIONS(3186), - [anon_sym___attribute__] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(3188), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3188), - [anon_sym___declspec] = ACTIONS(3186), - [anon_sym___based] = ACTIONS(3186), - [anon_sym___cdecl] = ACTIONS(3186), - [anon_sym___clrcall] = ACTIONS(3186), - [anon_sym___stdcall] = ACTIONS(3186), - [anon_sym___fastcall] = ACTIONS(3186), - [anon_sym___thiscall] = ACTIONS(3186), - [anon_sym___vectorcall] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_signed] = ACTIONS(3186), - [anon_sym_unsigned] = ACTIONS(3186), - [anon_sym_long] = ACTIONS(3186), - [anon_sym_short] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_register] = ACTIONS(3186), - [anon_sym_inline] = ACTIONS(3186), - [anon_sym___inline] = ACTIONS(3186), - [anon_sym___inline__] = ACTIONS(3186), - [anon_sym___forceinline] = ACTIONS(3186), - [anon_sym_thread_local] = ACTIONS(3186), - [anon_sym___thread] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_constexpr] = ACTIONS(3186), - [anon_sym_volatile] = ACTIONS(3186), - [anon_sym_restrict] = ACTIONS(3186), - [anon_sym___restrict__] = ACTIONS(3186), - [anon_sym__Atomic] = ACTIONS(3186), - [anon_sym__Noreturn] = ACTIONS(3186), - [anon_sym_noreturn] = ACTIONS(3186), - [anon_sym_mutable] = ACTIONS(3186), - [anon_sym_constinit] = ACTIONS(3186), - [anon_sym_consteval] = ACTIONS(3186), - [sym_primitive_type] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_struct] = ACTIONS(3186), - [anon_sym_union] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_goto] = ACTIONS(3186), - [anon_sym_not] = ACTIONS(3186), - [anon_sym_compl] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_sizeof] = ACTIONS(3186), - [anon_sym___alignof__] = ACTIONS(3186), - [anon_sym___alignof] = ACTIONS(3186), - [anon_sym__alignof] = ACTIONS(3186), - [anon_sym_alignof] = ACTIONS(3186), - [anon_sym__Alignof] = ACTIONS(3186), - [anon_sym_offsetof] = ACTIONS(3186), - [anon_sym__Generic] = ACTIONS(3186), - [anon_sym_asm] = ACTIONS(3186), - [anon_sym___asm__] = ACTIONS(3186), - [sym_number_literal] = ACTIONS(3188), - [anon_sym_L_SQUOTE] = ACTIONS(3188), - [anon_sym_u_SQUOTE] = ACTIONS(3188), - [anon_sym_U_SQUOTE] = ACTIONS(3188), - [anon_sym_u8_SQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_L_DQUOTE] = ACTIONS(3188), - [anon_sym_u_DQUOTE] = ACTIONS(3188), - [anon_sym_U_DQUOTE] = ACTIONS(3188), - [anon_sym_u8_DQUOTE] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [anon_sym_NULL] = ACTIONS(3186), - [anon_sym_nullptr] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3186), - [anon_sym_decltype] = ACTIONS(3186), - [anon_sym_virtual] = ACTIONS(3186), - [anon_sym_alignas] = ACTIONS(3186), - [anon_sym_explicit] = ACTIONS(3186), - [anon_sym_typename] = ACTIONS(3186), - [anon_sym_template] = ACTIONS(3186), - [anon_sym_operator] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_static_assert] = ACTIONS(3186), - [anon_sym_concept] = ACTIONS(3186), - [anon_sym_co_return] = ACTIONS(3186), - [anon_sym_co_yield] = ACTIONS(3186), - [anon_sym_R_DQUOTE] = ACTIONS(3188), - [anon_sym_LR_DQUOTE] = ACTIONS(3188), - [anon_sym_uR_DQUOTE] = ACTIONS(3188), - [anon_sym_UR_DQUOTE] = ACTIONS(3188), - [anon_sym_u8R_DQUOTE] = ACTIONS(3188), - [anon_sym_co_await] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_requires] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), + [973] = { + [ts_builtin_sym_end] = ACTIONS(3197), + [sym_identifier] = ACTIONS(3195), + [aux_sym_preproc_include_token1] = ACTIONS(3195), + [aux_sym_preproc_def_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), + [sym_preproc_directive] = ACTIONS(3195), + [anon_sym_LPAREN2] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym___extension__] = ACTIONS(3195), + [anon_sym_typedef] = ACTIONS(3195), + [anon_sym_extern] = ACTIONS(3195), + [anon_sym___attribute__] = ACTIONS(3195), + [anon_sym_COLON_COLON] = ACTIONS(3197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), + [anon_sym___declspec] = ACTIONS(3195), + [anon_sym___based] = ACTIONS(3195), + [anon_sym___cdecl] = ACTIONS(3195), + [anon_sym___clrcall] = ACTIONS(3195), + [anon_sym___stdcall] = ACTIONS(3195), + [anon_sym___fastcall] = ACTIONS(3195), + [anon_sym___thiscall] = ACTIONS(3195), + [anon_sym___vectorcall] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_signed] = ACTIONS(3195), + [anon_sym_unsigned] = ACTIONS(3195), + [anon_sym_long] = ACTIONS(3195), + [anon_sym_short] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_register] = ACTIONS(3195), + [anon_sym_inline] = ACTIONS(3195), + [anon_sym___inline] = ACTIONS(3195), + [anon_sym___inline__] = ACTIONS(3195), + [anon_sym___forceinline] = ACTIONS(3195), + [anon_sym_thread_local] = ACTIONS(3195), + [anon_sym___thread] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_constexpr] = ACTIONS(3195), + [anon_sym_volatile] = ACTIONS(3195), + [anon_sym_restrict] = ACTIONS(3195), + [anon_sym___restrict__] = ACTIONS(3195), + [anon_sym__Atomic] = ACTIONS(3195), + [anon_sym__Noreturn] = ACTIONS(3195), + [anon_sym_noreturn] = ACTIONS(3195), + [anon_sym_mutable] = ACTIONS(3195), + [anon_sym_constinit] = ACTIONS(3195), + [anon_sym_consteval] = ACTIONS(3195), + [sym_primitive_type] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_case] = ACTIONS(3195), + [anon_sym_default] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_goto] = ACTIONS(3195), + [anon_sym_not] = ACTIONS(3195), + [anon_sym_compl] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_sizeof] = ACTIONS(3195), + [anon_sym___alignof__] = ACTIONS(3195), + [anon_sym___alignof] = ACTIONS(3195), + [anon_sym__alignof] = ACTIONS(3195), + [anon_sym_alignof] = ACTIONS(3195), + [anon_sym__Alignof] = ACTIONS(3195), + [anon_sym_offsetof] = ACTIONS(3195), + [anon_sym__Generic] = ACTIONS(3195), + [anon_sym_asm] = ACTIONS(3195), + [anon_sym___asm__] = ACTIONS(3195), + [sym_number_literal] = ACTIONS(3197), + [anon_sym_L_SQUOTE] = ACTIONS(3197), + [anon_sym_u_SQUOTE] = ACTIONS(3197), + [anon_sym_U_SQUOTE] = ACTIONS(3197), + [anon_sym_u8_SQUOTE] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3197), + [anon_sym_L_DQUOTE] = ACTIONS(3197), + [anon_sym_u_DQUOTE] = ACTIONS(3197), + [anon_sym_U_DQUOTE] = ACTIONS(3197), + [anon_sym_u8_DQUOTE] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(3197), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [anon_sym_NULL] = ACTIONS(3195), + [anon_sym_nullptr] = ACTIONS(3195), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3195), + [anon_sym_decltype] = ACTIONS(3195), + [anon_sym_virtual] = ACTIONS(3195), + [anon_sym_alignas] = ACTIONS(3195), + [anon_sym_explicit] = ACTIONS(3195), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(3195), + [anon_sym_operator] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_static_assert] = ACTIONS(3195), + [anon_sym_concept] = ACTIONS(3195), + [anon_sym_co_return] = ACTIONS(3195), + [anon_sym_co_yield] = ACTIONS(3195), + [anon_sym_R_DQUOTE] = ACTIONS(3197), + [anon_sym_LR_DQUOTE] = ACTIONS(3197), + [anon_sym_uR_DQUOTE] = ACTIONS(3197), + [anon_sym_UR_DQUOTE] = ACTIONS(3197), + [anon_sym_u8R_DQUOTE] = ACTIONS(3197), + [anon_sym_co_await] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_requires] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), }, - [1029] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3818), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), + [974] = { + [ts_builtin_sym_end] = ACTIONS(3300), + [sym_identifier] = ACTIONS(3298), + [aux_sym_preproc_include_token1] = ACTIONS(3298), + [aux_sym_preproc_def_token1] = ACTIONS(3298), + [aux_sym_preproc_if_token1] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), + [sym_preproc_directive] = ACTIONS(3298), + [anon_sym_LPAREN2] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym___extension__] = ACTIONS(3298), + [anon_sym_typedef] = ACTIONS(3298), + [anon_sym_extern] = ACTIONS(3298), + [anon_sym___attribute__] = ACTIONS(3298), + [anon_sym_COLON_COLON] = ACTIONS(3300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), + [anon_sym___declspec] = ACTIONS(3298), + [anon_sym___based] = ACTIONS(3298), + [anon_sym___cdecl] = ACTIONS(3298), + [anon_sym___clrcall] = ACTIONS(3298), + [anon_sym___stdcall] = ACTIONS(3298), + [anon_sym___fastcall] = ACTIONS(3298), + [anon_sym___thiscall] = ACTIONS(3298), + [anon_sym___vectorcall] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_signed] = ACTIONS(3298), + [anon_sym_unsigned] = ACTIONS(3298), + [anon_sym_long] = ACTIONS(3298), + [anon_sym_short] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_register] = ACTIONS(3298), + [anon_sym_inline] = ACTIONS(3298), + [anon_sym___inline] = ACTIONS(3298), + [anon_sym___inline__] = ACTIONS(3298), + [anon_sym___forceinline] = ACTIONS(3298), + [anon_sym_thread_local] = ACTIONS(3298), + [anon_sym___thread] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_constexpr] = ACTIONS(3298), + [anon_sym_volatile] = ACTIONS(3298), + [anon_sym_restrict] = ACTIONS(3298), + [anon_sym___restrict__] = ACTIONS(3298), + [anon_sym__Atomic] = ACTIONS(3298), + [anon_sym__Noreturn] = ACTIONS(3298), + [anon_sym_noreturn] = ACTIONS(3298), + [anon_sym_mutable] = ACTIONS(3298), + [anon_sym_constinit] = ACTIONS(3298), + [anon_sym_consteval] = ACTIONS(3298), + [sym_primitive_type] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_struct] = ACTIONS(3298), + [anon_sym_union] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_case] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_goto] = ACTIONS(3298), + [anon_sym_not] = ACTIONS(3298), + [anon_sym_compl] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_sizeof] = ACTIONS(3298), + [anon_sym___alignof__] = ACTIONS(3298), + [anon_sym___alignof] = ACTIONS(3298), + [anon_sym__alignof] = ACTIONS(3298), + [anon_sym_alignof] = ACTIONS(3298), + [anon_sym__Alignof] = ACTIONS(3298), + [anon_sym_offsetof] = ACTIONS(3298), + [anon_sym__Generic] = ACTIONS(3298), + [anon_sym_asm] = ACTIONS(3298), + [anon_sym___asm__] = ACTIONS(3298), + [sym_number_literal] = ACTIONS(3300), + [anon_sym_L_SQUOTE] = ACTIONS(3300), + [anon_sym_u_SQUOTE] = ACTIONS(3300), + [anon_sym_U_SQUOTE] = ACTIONS(3300), + [anon_sym_u8_SQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_L_DQUOTE] = ACTIONS(3300), + [anon_sym_u_DQUOTE] = ACTIONS(3300), + [anon_sym_U_DQUOTE] = ACTIONS(3300), + [anon_sym_u8_DQUOTE] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [anon_sym_NULL] = ACTIONS(3298), + [anon_sym_nullptr] = ACTIONS(3298), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3298), + [anon_sym_decltype] = ACTIONS(3298), + [anon_sym_virtual] = ACTIONS(3298), + [anon_sym_alignas] = ACTIONS(3298), + [anon_sym_explicit] = ACTIONS(3298), + [anon_sym_typename] = ACTIONS(3298), + [anon_sym_template] = ACTIONS(3298), + [anon_sym_operator] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_static_assert] = ACTIONS(3298), + [anon_sym_concept] = ACTIONS(3298), + [anon_sym_co_return] = ACTIONS(3298), + [anon_sym_co_yield] = ACTIONS(3298), + [anon_sym_R_DQUOTE] = ACTIONS(3300), + [anon_sym_LR_DQUOTE] = ACTIONS(3300), + [anon_sym_uR_DQUOTE] = ACTIONS(3300), + [anon_sym_UR_DQUOTE] = ACTIONS(3300), + [anon_sym_u8R_DQUOTE] = ACTIONS(3300), + [anon_sym_co_await] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_requires] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), + }, + [975] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3720), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [1030] = { - [ts_builtin_sym_end] = ACTIONS(3162), - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_include_token1] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym___cdecl] = ACTIONS(3160), - [anon_sym___clrcall] = ACTIONS(3160), - [anon_sym___stdcall] = ACTIONS(3160), - [anon_sym___fastcall] = ACTIONS(3160), - [anon_sym___thiscall] = ACTIONS(3160), - [anon_sym___vectorcall] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_goto] = ACTIONS(3160), - [anon_sym_not] = ACTIONS(3160), - [anon_sym_compl] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_sizeof] = ACTIONS(3160), - [anon_sym___alignof__] = ACTIONS(3160), - [anon_sym___alignof] = ACTIONS(3160), - [anon_sym__alignof] = ACTIONS(3160), - [anon_sym_alignof] = ACTIONS(3160), - [anon_sym__Alignof] = ACTIONS(3160), - [anon_sym_offsetof] = ACTIONS(3160), - [anon_sym__Generic] = ACTIONS(3160), - [anon_sym_asm] = ACTIONS(3160), - [anon_sym___asm__] = ACTIONS(3160), - [sym_number_literal] = ACTIONS(3162), - [anon_sym_L_SQUOTE] = ACTIONS(3162), - [anon_sym_u_SQUOTE] = ACTIONS(3162), - [anon_sym_U_SQUOTE] = ACTIONS(3162), - [anon_sym_u8_SQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_L_DQUOTE] = ACTIONS(3162), - [anon_sym_u_DQUOTE] = ACTIONS(3162), - [anon_sym_U_DQUOTE] = ACTIONS(3162), - [anon_sym_u8_DQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [anon_sym_NULL] = ACTIONS(3160), - [anon_sym_nullptr] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), - [anon_sym_concept] = ACTIONS(3160), - [anon_sym_co_return] = ACTIONS(3160), - [anon_sym_co_yield] = ACTIONS(3160), - [anon_sym_R_DQUOTE] = ACTIONS(3162), - [anon_sym_LR_DQUOTE] = ACTIONS(3162), - [anon_sym_uR_DQUOTE] = ACTIONS(3162), - [anon_sym_UR_DQUOTE] = ACTIONS(3162), - [anon_sym_u8R_DQUOTE] = ACTIONS(3162), - [anon_sym_co_await] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_requires] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - }, - [1031] = { - [ts_builtin_sym_end] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3284), - [aux_sym_preproc_include_token1] = ACTIONS(3284), - [aux_sym_preproc_def_token1] = ACTIONS(3284), - [aux_sym_preproc_if_token1] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3284), - [sym_preproc_directive] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym___extension__] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym___attribute__] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3286), - [anon_sym___declspec] = ACTIONS(3284), - [anon_sym___based] = ACTIONS(3284), - [anon_sym___cdecl] = ACTIONS(3284), - [anon_sym___clrcall] = ACTIONS(3284), - [anon_sym___stdcall] = ACTIONS(3284), - [anon_sym___fastcall] = ACTIONS(3284), - [anon_sym___thiscall] = ACTIONS(3284), - [anon_sym___vectorcall] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_signed] = ACTIONS(3284), - [anon_sym_unsigned] = ACTIONS(3284), - [anon_sym_long] = ACTIONS(3284), - [anon_sym_short] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_register] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym___inline] = ACTIONS(3284), - [anon_sym___inline__] = ACTIONS(3284), - [anon_sym___forceinline] = ACTIONS(3284), - [anon_sym_thread_local] = ACTIONS(3284), - [anon_sym___thread] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_constexpr] = ACTIONS(3284), - [anon_sym_volatile] = ACTIONS(3284), - [anon_sym_restrict] = ACTIONS(3284), - [anon_sym___restrict__] = ACTIONS(3284), - [anon_sym__Atomic] = ACTIONS(3284), - [anon_sym__Noreturn] = ACTIONS(3284), - [anon_sym_noreturn] = ACTIONS(3284), - [anon_sym_mutable] = ACTIONS(3284), - [anon_sym_constinit] = ACTIONS(3284), - [anon_sym_consteval] = ACTIONS(3284), - [sym_primitive_type] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3284), - [anon_sym_union] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_goto] = ACTIONS(3284), - [anon_sym_not] = ACTIONS(3284), - [anon_sym_compl] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_sizeof] = ACTIONS(3284), - [anon_sym___alignof__] = ACTIONS(3284), - [anon_sym___alignof] = ACTIONS(3284), - [anon_sym__alignof] = ACTIONS(3284), - [anon_sym_alignof] = ACTIONS(3284), - [anon_sym__Alignof] = ACTIONS(3284), - [anon_sym_offsetof] = ACTIONS(3284), - [anon_sym__Generic] = ACTIONS(3284), - [anon_sym_asm] = ACTIONS(3284), - [anon_sym___asm__] = ACTIONS(3284), - [sym_number_literal] = ACTIONS(3286), - [anon_sym_L_SQUOTE] = ACTIONS(3286), - [anon_sym_u_SQUOTE] = ACTIONS(3286), - [anon_sym_U_SQUOTE] = ACTIONS(3286), - [anon_sym_u8_SQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_L_DQUOTE] = ACTIONS(3286), - [anon_sym_u_DQUOTE] = ACTIONS(3286), - [anon_sym_U_DQUOTE] = ACTIONS(3286), - [anon_sym_u8_DQUOTE] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [anon_sym_NULL] = ACTIONS(3284), - [anon_sym_nullptr] = ACTIONS(3284), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3284), - [anon_sym_decltype] = ACTIONS(3284), - [anon_sym_virtual] = ACTIONS(3284), - [anon_sym_alignas] = ACTIONS(3284), - [anon_sym_explicit] = ACTIONS(3284), - [anon_sym_typename] = ACTIONS(3284), - [anon_sym_template] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_static_assert] = ACTIONS(3284), - [anon_sym_concept] = ACTIONS(3284), - [anon_sym_co_return] = ACTIONS(3284), - [anon_sym_co_yield] = ACTIONS(3284), - [anon_sym_R_DQUOTE] = ACTIONS(3286), - [anon_sym_LR_DQUOTE] = ACTIONS(3286), - [anon_sym_uR_DQUOTE] = ACTIONS(3286), - [anon_sym_UR_DQUOTE] = ACTIONS(3286), - [anon_sym_u8R_DQUOTE] = ACTIONS(3286), - [anon_sym_co_await] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_requires] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - }, - [1032] = { - [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___extension__] = ACTIONS(3180), - [anon_sym_typedef] = ACTIONS(3180), - [anon_sym_extern] = ACTIONS(3180), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3180), - [anon_sym_constinit] = ACTIONS(3180), - [anon_sym_consteval] = 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_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_virtual] = ACTIONS(3180), - [anon_sym_alignas] = ACTIONS(3180), - [anon_sym_explicit] = ACTIONS(3180), - [anon_sym_typename] = 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_using] = 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_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), - [sym_this] = ACTIONS(3180), - }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(3196), - [sym_identifier] = ACTIONS(3194), - [aux_sym_preproc_include_token1] = ACTIONS(3194), - [aux_sym_preproc_def_token1] = ACTIONS(3194), - [aux_sym_preproc_if_token1] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3194), - [sym_preproc_directive] = ACTIONS(3194), - [anon_sym_LPAREN2] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_AMP_AMP] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3194), - [anon_sym_typedef] = ACTIONS(3194), - [anon_sym_extern] = ACTIONS(3194), - [anon_sym___attribute__] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3196), - [anon_sym___declspec] = ACTIONS(3194), - [anon_sym___based] = ACTIONS(3194), - [anon_sym___cdecl] = ACTIONS(3194), - [anon_sym___clrcall] = ACTIONS(3194), - [anon_sym___stdcall] = ACTIONS(3194), - [anon_sym___fastcall] = ACTIONS(3194), - [anon_sym___thiscall] = ACTIONS(3194), - [anon_sym___vectorcall] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_signed] = ACTIONS(3194), - [anon_sym_unsigned] = ACTIONS(3194), - [anon_sym_long] = ACTIONS(3194), - [anon_sym_short] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_register] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym___inline] = ACTIONS(3194), - [anon_sym___inline__] = ACTIONS(3194), - [anon_sym___forceinline] = ACTIONS(3194), - [anon_sym_thread_local] = ACTIONS(3194), - [anon_sym___thread] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_constexpr] = ACTIONS(3194), - [anon_sym_volatile] = ACTIONS(3194), - [anon_sym_restrict] = ACTIONS(3194), - [anon_sym___restrict__] = ACTIONS(3194), - [anon_sym__Atomic] = ACTIONS(3194), - [anon_sym__Noreturn] = ACTIONS(3194), - [anon_sym_noreturn] = ACTIONS(3194), - [anon_sym_mutable] = ACTIONS(3194), - [anon_sym_constinit] = ACTIONS(3194), - [anon_sym_consteval] = ACTIONS(3194), - [sym_primitive_type] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_struct] = ACTIONS(3194), - [anon_sym_union] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_goto] = ACTIONS(3194), - [anon_sym_not] = ACTIONS(3194), - [anon_sym_compl] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_sizeof] = ACTIONS(3194), - [anon_sym___alignof__] = ACTIONS(3194), - [anon_sym___alignof] = ACTIONS(3194), - [anon_sym__alignof] = ACTIONS(3194), - [anon_sym_alignof] = ACTIONS(3194), - [anon_sym__Alignof] = ACTIONS(3194), - [anon_sym_offsetof] = ACTIONS(3194), - [anon_sym__Generic] = ACTIONS(3194), - [anon_sym_asm] = ACTIONS(3194), - [anon_sym___asm__] = ACTIONS(3194), - [sym_number_literal] = ACTIONS(3196), - [anon_sym_L_SQUOTE] = ACTIONS(3196), - [anon_sym_u_SQUOTE] = ACTIONS(3196), - [anon_sym_U_SQUOTE] = ACTIONS(3196), - [anon_sym_u8_SQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_L_DQUOTE] = ACTIONS(3196), - [anon_sym_u_DQUOTE] = ACTIONS(3196), - [anon_sym_U_DQUOTE] = ACTIONS(3196), - [anon_sym_u8_DQUOTE] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [anon_sym_NULL] = ACTIONS(3194), - [anon_sym_nullptr] = ACTIONS(3194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3194), - [anon_sym_decltype] = ACTIONS(3194), - [anon_sym_virtual] = ACTIONS(3194), - [anon_sym_alignas] = ACTIONS(3194), - [anon_sym_explicit] = ACTIONS(3194), - [anon_sym_typename] = ACTIONS(3194), - [anon_sym_template] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_static_assert] = ACTIONS(3194), - [anon_sym_concept] = ACTIONS(3194), - [anon_sym_co_return] = ACTIONS(3194), - [anon_sym_co_yield] = ACTIONS(3194), - [anon_sym_R_DQUOTE] = ACTIONS(3196), - [anon_sym_LR_DQUOTE] = ACTIONS(3196), - [anon_sym_uR_DQUOTE] = ACTIONS(3196), - [anon_sym_UR_DQUOTE] = ACTIONS(3196), - [anon_sym_u8R_DQUOTE] = ACTIONS(3196), - [anon_sym_co_await] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_requires] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1034] = { - [ts_builtin_sym_end] = ACTIONS(3078), - [sym_identifier] = ACTIONS(3076), - [aux_sym_preproc_include_token1] = ACTIONS(3076), - [aux_sym_preproc_def_token1] = ACTIONS(3076), - [aux_sym_preproc_if_token1] = ACTIONS(3076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3076), - [sym_preproc_directive] = ACTIONS(3076), - [anon_sym_LPAREN2] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3076), - [anon_sym_PLUS] = ACTIONS(3076), - [anon_sym_STAR] = ACTIONS(3078), - [anon_sym_AMP_AMP] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3076), - [anon_sym___extension__] = ACTIONS(3076), - [anon_sym_typedef] = ACTIONS(3076), - [anon_sym_extern] = ACTIONS(3076), - [anon_sym___attribute__] = ACTIONS(3076), - [anon_sym_COLON_COLON] = ACTIONS(3078), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3078), - [anon_sym___declspec] = ACTIONS(3076), - [anon_sym___based] = ACTIONS(3076), - [anon_sym___cdecl] = ACTIONS(3076), - [anon_sym___clrcall] = ACTIONS(3076), - [anon_sym___stdcall] = ACTIONS(3076), - [anon_sym___fastcall] = ACTIONS(3076), - [anon_sym___thiscall] = ACTIONS(3076), - [anon_sym___vectorcall] = ACTIONS(3076), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_signed] = ACTIONS(3076), - [anon_sym_unsigned] = ACTIONS(3076), - [anon_sym_long] = ACTIONS(3076), - [anon_sym_short] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_static] = ACTIONS(3076), - [anon_sym_register] = ACTIONS(3076), - [anon_sym_inline] = ACTIONS(3076), - [anon_sym___inline] = ACTIONS(3076), - [anon_sym___inline__] = ACTIONS(3076), - [anon_sym___forceinline] = ACTIONS(3076), - [anon_sym_thread_local] = ACTIONS(3076), - [anon_sym___thread] = ACTIONS(3076), - [anon_sym_const] = ACTIONS(3076), - [anon_sym_constexpr] = ACTIONS(3076), - [anon_sym_volatile] = ACTIONS(3076), - [anon_sym_restrict] = ACTIONS(3076), - [anon_sym___restrict__] = ACTIONS(3076), - [anon_sym__Atomic] = ACTIONS(3076), - [anon_sym__Noreturn] = ACTIONS(3076), - [anon_sym_noreturn] = ACTIONS(3076), - [anon_sym_mutable] = ACTIONS(3076), - [anon_sym_constinit] = ACTIONS(3076), - [anon_sym_consteval] = ACTIONS(3076), - [sym_primitive_type] = ACTIONS(3076), - [anon_sym_enum] = ACTIONS(3076), - [anon_sym_class] = ACTIONS(3076), - [anon_sym_struct] = ACTIONS(3076), - [anon_sym_union] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3076), - [anon_sym_switch] = ACTIONS(3076), - [anon_sym_case] = ACTIONS(3076), - [anon_sym_default] = ACTIONS(3076), - [anon_sym_while] = ACTIONS(3076), - [anon_sym_do] = ACTIONS(3076), - [anon_sym_for] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3076), - [anon_sym_break] = ACTIONS(3076), - [anon_sym_continue] = ACTIONS(3076), - [anon_sym_goto] = ACTIONS(3076), - [anon_sym_not] = ACTIONS(3076), - [anon_sym_compl] = ACTIONS(3076), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_sizeof] = ACTIONS(3076), - [anon_sym___alignof__] = ACTIONS(3076), - [anon_sym___alignof] = ACTIONS(3076), - [anon_sym__alignof] = ACTIONS(3076), - [anon_sym_alignof] = ACTIONS(3076), - [anon_sym__Alignof] = ACTIONS(3076), - [anon_sym_offsetof] = ACTIONS(3076), - [anon_sym__Generic] = ACTIONS(3076), - [anon_sym_asm] = ACTIONS(3076), - [anon_sym___asm__] = ACTIONS(3076), - [sym_number_literal] = ACTIONS(3078), - [anon_sym_L_SQUOTE] = ACTIONS(3078), - [anon_sym_u_SQUOTE] = ACTIONS(3078), - [anon_sym_U_SQUOTE] = ACTIONS(3078), - [anon_sym_u8_SQUOTE] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_L_DQUOTE] = ACTIONS(3078), - [anon_sym_u_DQUOTE] = ACTIONS(3078), - [anon_sym_U_DQUOTE] = ACTIONS(3078), - [anon_sym_u8_DQUOTE] = ACTIONS(3078), - [anon_sym_DQUOTE] = ACTIONS(3078), - [sym_true] = ACTIONS(3076), - [sym_false] = ACTIONS(3076), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3076), - [anon_sym_decltype] = ACTIONS(3076), - [anon_sym_virtual] = ACTIONS(3076), - [anon_sym_alignas] = ACTIONS(3076), - [anon_sym_explicit] = ACTIONS(3076), - [anon_sym_typename] = ACTIONS(3076), - [anon_sym_template] = ACTIONS(3076), - [anon_sym_operator] = ACTIONS(3076), - [anon_sym_try] = ACTIONS(3076), - [anon_sym_delete] = ACTIONS(3076), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_namespace] = ACTIONS(3076), - [anon_sym_using] = ACTIONS(3076), - [anon_sym_static_assert] = ACTIONS(3076), - [anon_sym_concept] = ACTIONS(3076), - [anon_sym_co_return] = ACTIONS(3076), - [anon_sym_co_yield] = ACTIONS(3076), - [anon_sym_R_DQUOTE] = ACTIONS(3078), - [anon_sym_LR_DQUOTE] = ACTIONS(3078), - [anon_sym_uR_DQUOTE] = ACTIONS(3078), - [anon_sym_UR_DQUOTE] = ACTIONS(3078), - [anon_sym_u8R_DQUOTE] = ACTIONS(3078), - [anon_sym_co_await] = ACTIONS(3076), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_requires] = ACTIONS(3076), - [sym_this] = ACTIONS(3076), + [976] = { + [ts_builtin_sym_end] = ACTIONS(3280), + [sym_identifier] = ACTIONS(3278), + [aux_sym_preproc_include_token1] = ACTIONS(3278), + [aux_sym_preproc_def_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_LPAREN2] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3278), + [anon_sym___extension__] = ACTIONS(3278), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym___attribute__] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), + [anon_sym___declspec] = ACTIONS(3278), + [anon_sym___based] = ACTIONS(3278), + [anon_sym___cdecl] = ACTIONS(3278), + [anon_sym___clrcall] = ACTIONS(3278), + [anon_sym___stdcall] = ACTIONS(3278), + [anon_sym___fastcall] = ACTIONS(3278), + [anon_sym___thiscall] = ACTIONS(3278), + [anon_sym___vectorcall] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_signed] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym___inline] = ACTIONS(3278), + [anon_sym___inline__] = ACTIONS(3278), + [anon_sym___forceinline] = ACTIONS(3278), + [anon_sym_thread_local] = ACTIONS(3278), + [anon_sym___thread] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_constexpr] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym___restrict__] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym__Noreturn] = ACTIONS(3278), + [anon_sym_noreturn] = ACTIONS(3278), + [anon_sym_mutable] = ACTIONS(3278), + [anon_sym_constinit] = ACTIONS(3278), + [anon_sym_consteval] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym_not] = ACTIONS(3278), + [anon_sym_compl] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [anon_sym___alignof__] = ACTIONS(3278), + [anon_sym___alignof] = ACTIONS(3278), + [anon_sym__alignof] = ACTIONS(3278), + [anon_sym_alignof] = ACTIONS(3278), + [anon_sym__Alignof] = ACTIONS(3278), + [anon_sym_offsetof] = ACTIONS(3278), + [anon_sym__Generic] = ACTIONS(3278), + [anon_sym_asm] = ACTIONS(3278), + [anon_sym___asm__] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [anon_sym_L_SQUOTE] = ACTIONS(3280), + [anon_sym_u_SQUOTE] = ACTIONS(3280), + [anon_sym_U_SQUOTE] = ACTIONS(3280), + [anon_sym_u8_SQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_L_DQUOTE] = ACTIONS(3280), + [anon_sym_u_DQUOTE] = ACTIONS(3280), + [anon_sym_U_DQUOTE] = ACTIONS(3280), + [anon_sym_u8_DQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3278), + [anon_sym_decltype] = ACTIONS(3278), + [anon_sym_virtual] = ACTIONS(3278), + [anon_sym_alignas] = ACTIONS(3278), + [anon_sym_explicit] = ACTIONS(3278), + [anon_sym_typename] = ACTIONS(3278), + [anon_sym_template] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_static_assert] = ACTIONS(3278), + [anon_sym_concept] = ACTIONS(3278), + [anon_sym_co_return] = ACTIONS(3278), + [anon_sym_co_yield] = ACTIONS(3278), + [anon_sym_R_DQUOTE] = ACTIONS(3280), + [anon_sym_LR_DQUOTE] = ACTIONS(3280), + [anon_sym_uR_DQUOTE] = ACTIONS(3280), + [anon_sym_UR_DQUOTE] = ACTIONS(3280), + [anon_sym_u8R_DQUOTE] = ACTIONS(3280), + [anon_sym_co_await] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), }, - [1035] = { - [ts_builtin_sym_end] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3259), - [aux_sym_preproc_include_token1] = ACTIONS(3259), - [aux_sym_preproc_def_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3259), - [sym_preproc_directive] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym___extension__] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3259), - [anon_sym_extern] = ACTIONS(3259), - [anon_sym___attribute__] = ACTIONS(3259), - [anon_sym_COLON_COLON] = ACTIONS(3261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3261), - [anon_sym___declspec] = ACTIONS(3259), - [anon_sym___based] = ACTIONS(3259), - [anon_sym___cdecl] = ACTIONS(3259), - [anon_sym___clrcall] = ACTIONS(3259), - [anon_sym___stdcall] = ACTIONS(3259), - [anon_sym___fastcall] = ACTIONS(3259), - [anon_sym___thiscall] = ACTIONS(3259), - [anon_sym___vectorcall] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_signed] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_register] = ACTIONS(3259), - [anon_sym_inline] = ACTIONS(3259), - [anon_sym___inline] = ACTIONS(3259), - [anon_sym___inline__] = ACTIONS(3259), - [anon_sym___forceinline] = ACTIONS(3259), - [anon_sym_thread_local] = ACTIONS(3259), - [anon_sym___thread] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_constexpr] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym___restrict__] = ACTIONS(3259), - [anon_sym__Atomic] = ACTIONS(3259), - [anon_sym__Noreturn] = ACTIONS(3259), - [anon_sym_noreturn] = ACTIONS(3259), - [anon_sym_mutable] = ACTIONS(3259), - [anon_sym_constinit] = ACTIONS(3259), - [anon_sym_consteval] = ACTIONS(3259), - [sym_primitive_type] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym_not] = ACTIONS(3259), - [anon_sym_compl] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3259), - [anon_sym___alignof__] = ACTIONS(3259), - [anon_sym___alignof] = ACTIONS(3259), - [anon_sym__alignof] = ACTIONS(3259), - [anon_sym_alignof] = ACTIONS(3259), - [anon_sym__Alignof] = ACTIONS(3259), - [anon_sym_offsetof] = ACTIONS(3259), - [anon_sym__Generic] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym___asm__] = ACTIONS(3259), - [sym_number_literal] = ACTIONS(3261), - [anon_sym_L_SQUOTE] = ACTIONS(3261), - [anon_sym_u_SQUOTE] = ACTIONS(3261), - [anon_sym_U_SQUOTE] = ACTIONS(3261), - [anon_sym_u8_SQUOTE] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3261), - [anon_sym_L_DQUOTE] = ACTIONS(3261), - [anon_sym_u_DQUOTE] = ACTIONS(3261), - [anon_sym_U_DQUOTE] = ACTIONS(3261), - [anon_sym_u8_DQUOTE] = ACTIONS(3261), - [anon_sym_DQUOTE] = ACTIONS(3261), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [anon_sym_NULL] = ACTIONS(3259), - [anon_sym_nullptr] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3259), - [anon_sym_decltype] = ACTIONS(3259), - [anon_sym_virtual] = ACTIONS(3259), - [anon_sym_alignas] = ACTIONS(3259), - [anon_sym_explicit] = ACTIONS(3259), - [anon_sym_typename] = ACTIONS(3259), - [anon_sym_template] = ACTIONS(3259), - [anon_sym_operator] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_static_assert] = ACTIONS(3259), - [anon_sym_concept] = ACTIONS(3259), - [anon_sym_co_return] = ACTIONS(3259), - [anon_sym_co_yield] = ACTIONS(3259), - [anon_sym_R_DQUOTE] = ACTIONS(3261), - [anon_sym_LR_DQUOTE] = ACTIONS(3261), - [anon_sym_uR_DQUOTE] = ACTIONS(3261), - [anon_sym_UR_DQUOTE] = ACTIONS(3261), - [anon_sym_u8R_DQUOTE] = ACTIONS(3261), - [anon_sym_co_await] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_requires] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), + [977] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3468), + [aux_sym_preproc_def_token1] = ACTIONS(3722), + [aux_sym_preproc_if_token1] = ACTIONS(3725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), + [sym_preproc_directive] = ACTIONS(3731), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_AMP_AMP] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym___extension__] = ACTIONS(3734), + [anon_sym_typedef] = ACTIONS(3737), + [anon_sym_extern] = ACTIONS(3506), + [anon_sym___attribute__] = ACTIONS(3509), + [anon_sym_COLON_COLON] = ACTIONS(3512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3521), + [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_signed] = ACTIONS(3524), + [anon_sym_unsigned] = ACTIONS(3524), + [anon_sym_long] = ACTIONS(3524), + [anon_sym_short] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_register] = ACTIONS(3506), + [anon_sym_inline] = ACTIONS(3506), + [anon_sym___inline] = ACTIONS(3506), + [anon_sym___inline__] = ACTIONS(3506), + [anon_sym___forceinline] = ACTIONS(3506), + [anon_sym_thread_local] = ACTIONS(3506), + [anon_sym___thread] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_constexpr] = ACTIONS(3530), + [anon_sym_volatile] = ACTIONS(3530), + [anon_sym_restrict] = ACTIONS(3530), + [anon_sym___restrict__] = ACTIONS(3530), + [anon_sym__Atomic] = ACTIONS(3530), + [anon_sym__Noreturn] = ACTIONS(3530), + [anon_sym_noreturn] = ACTIONS(3530), + [anon_sym_mutable] = ACTIONS(3530), + [anon_sym_constinit] = ACTIONS(3530), + [anon_sym_consteval] = ACTIONS(3530), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3536), + [anon_sym_class] = ACTIONS(3539), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3548), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3554), + [anon_sym_alignas] = ACTIONS(3557), + [anon_sym_explicit] = ACTIONS(3560), + [anon_sym_typename] = ACTIONS(3563), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3569), + [anon_sym_friend] = ACTIONS(3745), + [anon_sym_public] = ACTIONS(3575), + [anon_sym_private] = ACTIONS(3575), + [anon_sym_protected] = ACTIONS(3575), + [anon_sym_using] = ACTIONS(3748), + [anon_sym_static_assert] = ACTIONS(3751), }, - [1036] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [978] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3820), + [anon_sym_RBRACE] = ACTIONS(3754), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -231062,116 +223906,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1037] = { + [979] = { + [ts_builtin_sym_end] = ACTIONS(3221), + [sym_identifier] = ACTIONS(3219), + [aux_sym_preproc_include_token1] = ACTIONS(3219), + [aux_sym_preproc_def_token1] = ACTIONS(3219), + [aux_sym_preproc_if_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), + [sym_preproc_directive] = ACTIONS(3219), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym___extension__] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym___attribute__] = ACTIONS(3219), + [anon_sym_COLON_COLON] = ACTIONS(3221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), + [anon_sym___declspec] = ACTIONS(3219), + [anon_sym___based] = ACTIONS(3219), + [anon_sym___cdecl] = ACTIONS(3219), + [anon_sym___clrcall] = ACTIONS(3219), + [anon_sym___stdcall] = ACTIONS(3219), + [anon_sym___fastcall] = ACTIONS(3219), + [anon_sym___thiscall] = ACTIONS(3219), + [anon_sym___vectorcall] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_signed] = ACTIONS(3219), + [anon_sym_unsigned] = ACTIONS(3219), + [anon_sym_long] = ACTIONS(3219), + [anon_sym_short] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_register] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym___inline] = ACTIONS(3219), + [anon_sym___inline__] = ACTIONS(3219), + [anon_sym___forceinline] = ACTIONS(3219), + [anon_sym_thread_local] = ACTIONS(3219), + [anon_sym___thread] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_constexpr] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_restrict] = ACTIONS(3219), + [anon_sym___restrict__] = ACTIONS(3219), + [anon_sym__Atomic] = ACTIONS(3219), + [anon_sym__Noreturn] = ACTIONS(3219), + [anon_sym_noreturn] = ACTIONS(3219), + [anon_sym_mutable] = ACTIONS(3219), + [anon_sym_constinit] = ACTIONS(3219), + [anon_sym_consteval] = ACTIONS(3219), + [sym_primitive_type] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_goto] = ACTIONS(3219), + [anon_sym_not] = ACTIONS(3219), + [anon_sym_compl] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_sizeof] = ACTIONS(3219), + [anon_sym___alignof__] = ACTIONS(3219), + [anon_sym___alignof] = ACTIONS(3219), + [anon_sym__alignof] = ACTIONS(3219), + [anon_sym_alignof] = ACTIONS(3219), + [anon_sym__Alignof] = ACTIONS(3219), + [anon_sym_offsetof] = ACTIONS(3219), + [anon_sym__Generic] = ACTIONS(3219), + [anon_sym_asm] = ACTIONS(3219), + [anon_sym___asm__] = ACTIONS(3219), + [sym_number_literal] = ACTIONS(3221), + [anon_sym_L_SQUOTE] = ACTIONS(3221), + [anon_sym_u_SQUOTE] = ACTIONS(3221), + [anon_sym_U_SQUOTE] = ACTIONS(3221), + [anon_sym_u8_SQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_L_DQUOTE] = ACTIONS(3221), + [anon_sym_u_DQUOTE] = ACTIONS(3221), + [anon_sym_U_DQUOTE] = ACTIONS(3221), + [anon_sym_u8_DQUOTE] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [anon_sym_NULL] = ACTIONS(3219), + [anon_sym_nullptr] = ACTIONS(3219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3219), + [anon_sym_decltype] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_alignas] = ACTIONS(3219), + [anon_sym_explicit] = ACTIONS(3219), + [anon_sym_typename] = ACTIONS(3219), + [anon_sym_template] = ACTIONS(3219), + [anon_sym_operator] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_static_assert] = ACTIONS(3219), + [anon_sym_concept] = ACTIONS(3219), + [anon_sym_co_return] = ACTIONS(3219), + [anon_sym_co_yield] = ACTIONS(3219), + [anon_sym_R_DQUOTE] = ACTIONS(3221), + [anon_sym_LR_DQUOTE] = ACTIONS(3221), + [anon_sym_uR_DQUOTE] = ACTIONS(3221), + [anon_sym_UR_DQUOTE] = ACTIONS(3221), + [anon_sym_u8R_DQUOTE] = ACTIONS(3221), + [anon_sym_co_await] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_requires] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + }, + [980] = { [sym_preproc_def] = STATE(1029), [sym_preproc_function_def] = STATE(1029), [sym_preproc_call] = STATE(1029), [sym_preproc_if_in_field_declaration_list] = STATE(1029), [sym_preproc_ifdef_in_field_declaration_list] = STATE(1029), [sym_type_definition] = STATE(1029), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), [sym__field_declaration_list_item] = STATE(1029), [sym_field_declaration] = STATE(1029), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), [sym_template_declaration] = STATE(1029), - [sym_operator_cast] = STATE(7172), + [sym_operator_cast] = STATE(7191), [sym_inline_method_definition] = STATE(1029), - [sym__constructor_specifiers] = STATE(2005), + [sym__constructor_specifiers] = STATE(2044), [sym_operator_cast_definition] = STATE(1029), [sym_operator_cast_declaration] = STATE(1029), [sym_constructor_or_destructor_definition] = STATE(1029), [sym_constructor_or_destructor_declaration] = STATE(1029), [sym_friend_declaration] = STATE(1029), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), [sym_using_declaration] = STATE(1029), [sym_alias_declaration] = STATE(1029), [sym_static_assert_declaration] = STATE(1029), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1029), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3822), + [anon_sym_RBRACE] = ACTIONS(3756), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -231191,761 +224164,1019 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1038] = { - [ts_builtin_sym_end] = ACTIONS(3824), - [sym_identifier] = ACTIONS(3826), - [aux_sym_preproc_include_token1] = ACTIONS(3826), - [aux_sym_preproc_def_token1] = ACTIONS(3826), - [aux_sym_preproc_if_token1] = ACTIONS(3826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3826), - [sym_preproc_directive] = ACTIONS(3826), - [anon_sym_LPAREN2] = ACTIONS(3824), - [anon_sym_BANG] = ACTIONS(3824), - [anon_sym_TILDE] = ACTIONS(3824), - [anon_sym_DASH] = ACTIONS(3826), - [anon_sym_PLUS] = ACTIONS(3826), - [anon_sym_STAR] = ACTIONS(3824), - [anon_sym_AMP_AMP] = ACTIONS(3824), - [anon_sym_AMP] = ACTIONS(3826), - [anon_sym___extension__] = ACTIONS(3826), - [anon_sym_typedef] = ACTIONS(3826), - [anon_sym_extern] = ACTIONS(3826), - [anon_sym___attribute__] = ACTIONS(3826), - [anon_sym_COLON_COLON] = ACTIONS(3824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3824), - [anon_sym___declspec] = ACTIONS(3826), - [anon_sym___based] = ACTIONS(3826), - [anon_sym___cdecl] = ACTIONS(3826), - [anon_sym___clrcall] = ACTIONS(3826), - [anon_sym___stdcall] = ACTIONS(3826), - [anon_sym___fastcall] = ACTIONS(3826), - [anon_sym___thiscall] = ACTIONS(3826), - [anon_sym___vectorcall] = ACTIONS(3826), - [anon_sym_LBRACE] = ACTIONS(3824), - [anon_sym_signed] = ACTIONS(3826), - [anon_sym_unsigned] = ACTIONS(3826), - [anon_sym_long] = ACTIONS(3826), - [anon_sym_short] = ACTIONS(3826), - [anon_sym_LBRACK] = ACTIONS(3826), - [anon_sym_static] = ACTIONS(3826), - [anon_sym_register] = ACTIONS(3826), - [anon_sym_inline] = ACTIONS(3826), - [anon_sym___inline] = ACTIONS(3826), - [anon_sym___inline__] = ACTIONS(3826), - [anon_sym___forceinline] = ACTIONS(3826), - [anon_sym_thread_local] = ACTIONS(3826), - [anon_sym___thread] = ACTIONS(3826), - [anon_sym_const] = ACTIONS(3826), - [anon_sym_constexpr] = ACTIONS(3826), - [anon_sym_volatile] = ACTIONS(3826), - [anon_sym_restrict] = ACTIONS(3826), - [anon_sym___restrict__] = ACTIONS(3826), - [anon_sym__Atomic] = ACTIONS(3826), - [anon_sym__Noreturn] = ACTIONS(3826), - [anon_sym_noreturn] = ACTIONS(3826), - [anon_sym_mutable] = ACTIONS(3826), - [anon_sym_constinit] = ACTIONS(3826), - [anon_sym_consteval] = ACTIONS(3826), - [sym_primitive_type] = ACTIONS(3826), - [anon_sym_enum] = ACTIONS(3826), - [anon_sym_class] = ACTIONS(3826), - [anon_sym_struct] = ACTIONS(3826), - [anon_sym_union] = ACTIONS(3826), - [anon_sym_if] = ACTIONS(3826), - [anon_sym_switch] = ACTIONS(3826), - [anon_sym_case] = ACTIONS(3826), - [anon_sym_default] = ACTIONS(3826), - [anon_sym_while] = ACTIONS(3826), - [anon_sym_do] = ACTIONS(3826), - [anon_sym_for] = ACTIONS(3826), - [anon_sym_return] = ACTIONS(3826), - [anon_sym_break] = ACTIONS(3826), - [anon_sym_continue] = ACTIONS(3826), - [anon_sym_goto] = ACTIONS(3826), - [anon_sym_not] = ACTIONS(3826), - [anon_sym_compl] = ACTIONS(3826), - [anon_sym_DASH_DASH] = ACTIONS(3824), - [anon_sym_PLUS_PLUS] = ACTIONS(3824), - [anon_sym_sizeof] = ACTIONS(3826), - [anon_sym___alignof__] = ACTIONS(3826), - [anon_sym___alignof] = ACTIONS(3826), - [anon_sym__alignof] = ACTIONS(3826), - [anon_sym_alignof] = ACTIONS(3826), - [anon_sym__Alignof] = ACTIONS(3826), - [anon_sym_offsetof] = ACTIONS(3826), - [anon_sym__Generic] = ACTIONS(3826), - [anon_sym_asm] = ACTIONS(3826), - [anon_sym___asm__] = ACTIONS(3826), - [sym_number_literal] = ACTIONS(3824), - [anon_sym_L_SQUOTE] = ACTIONS(3824), - [anon_sym_u_SQUOTE] = ACTIONS(3824), - [anon_sym_U_SQUOTE] = ACTIONS(3824), - [anon_sym_u8_SQUOTE] = ACTIONS(3824), - [anon_sym_SQUOTE] = ACTIONS(3824), - [anon_sym_L_DQUOTE] = ACTIONS(3824), - [anon_sym_u_DQUOTE] = ACTIONS(3824), - [anon_sym_U_DQUOTE] = ACTIONS(3824), - [anon_sym_u8_DQUOTE] = ACTIONS(3824), - [anon_sym_DQUOTE] = ACTIONS(3824), - [sym_true] = ACTIONS(3826), - [sym_false] = ACTIONS(3826), - [anon_sym_NULL] = ACTIONS(3826), - [anon_sym_nullptr] = ACTIONS(3826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3826), - [anon_sym_decltype] = ACTIONS(3826), - [anon_sym_virtual] = ACTIONS(3826), - [anon_sym_alignas] = ACTIONS(3826), - [anon_sym_explicit] = ACTIONS(3826), - [anon_sym_typename] = ACTIONS(3826), - [anon_sym_template] = ACTIONS(3826), - [anon_sym_operator] = ACTIONS(3826), - [anon_sym_try] = ACTIONS(3826), - [anon_sym_delete] = ACTIONS(3826), - [anon_sym_throw] = ACTIONS(3826), - [anon_sym_namespace] = ACTIONS(3826), - [anon_sym_using] = ACTIONS(3826), - [anon_sym_static_assert] = ACTIONS(3826), - [anon_sym_concept] = ACTIONS(3826), - [anon_sym_co_return] = ACTIONS(3826), - [anon_sym_co_yield] = ACTIONS(3826), - [anon_sym_R_DQUOTE] = ACTIONS(3824), - [anon_sym_LR_DQUOTE] = ACTIONS(3824), - [anon_sym_uR_DQUOTE] = ACTIONS(3824), - [anon_sym_UR_DQUOTE] = ACTIONS(3824), - [anon_sym_u8R_DQUOTE] = ACTIONS(3824), - [anon_sym_co_await] = ACTIONS(3826), - [anon_sym_new] = ACTIONS(3826), - [anon_sym_requires] = ACTIONS(3826), - [sym_this] = ACTIONS(3826), + [981] = { + [ts_builtin_sym_end] = ACTIONS(3193), + [sym_identifier] = ACTIONS(3191), + [aux_sym_preproc_include_token1] = ACTIONS(3191), + [aux_sym_preproc_def_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3191), + [sym_preproc_directive] = ACTIONS(3191), + [anon_sym_LPAREN2] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym___extension__] = ACTIONS(3191), + [anon_sym_typedef] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym___attribute__] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(3193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3193), + [anon_sym___declspec] = ACTIONS(3191), + [anon_sym___based] = ACTIONS(3191), + [anon_sym___cdecl] = ACTIONS(3191), + [anon_sym___clrcall] = ACTIONS(3191), + [anon_sym___stdcall] = ACTIONS(3191), + [anon_sym___fastcall] = ACTIONS(3191), + [anon_sym___thiscall] = ACTIONS(3191), + [anon_sym___vectorcall] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_signed] = ACTIONS(3191), + [anon_sym_unsigned] = ACTIONS(3191), + [anon_sym_long] = ACTIONS(3191), + [anon_sym_short] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_register] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym___inline] = ACTIONS(3191), + [anon_sym___inline__] = ACTIONS(3191), + [anon_sym___forceinline] = ACTIONS(3191), + [anon_sym_thread_local] = ACTIONS(3191), + [anon_sym___thread] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_constexpr] = ACTIONS(3191), + [anon_sym_volatile] = ACTIONS(3191), + [anon_sym_restrict] = ACTIONS(3191), + [anon_sym___restrict__] = ACTIONS(3191), + [anon_sym__Atomic] = ACTIONS(3191), + [anon_sym__Noreturn] = ACTIONS(3191), + [anon_sym_noreturn] = ACTIONS(3191), + [anon_sym_mutable] = ACTIONS(3191), + [anon_sym_constinit] = ACTIONS(3191), + [anon_sym_consteval] = ACTIONS(3191), + [sym_primitive_type] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym_not] = ACTIONS(3191), + [anon_sym_compl] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_sizeof] = ACTIONS(3191), + [anon_sym___alignof__] = ACTIONS(3191), + [anon_sym___alignof] = ACTIONS(3191), + [anon_sym__alignof] = ACTIONS(3191), + [anon_sym_alignof] = ACTIONS(3191), + [anon_sym__Alignof] = ACTIONS(3191), + [anon_sym_offsetof] = ACTIONS(3191), + [anon_sym__Generic] = ACTIONS(3191), + [anon_sym_asm] = ACTIONS(3191), + [anon_sym___asm__] = ACTIONS(3191), + [sym_number_literal] = ACTIONS(3193), + [anon_sym_L_SQUOTE] = ACTIONS(3193), + [anon_sym_u_SQUOTE] = ACTIONS(3193), + [anon_sym_U_SQUOTE] = ACTIONS(3193), + [anon_sym_u8_SQUOTE] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3193), + [anon_sym_L_DQUOTE] = ACTIONS(3193), + [anon_sym_u_DQUOTE] = ACTIONS(3193), + [anon_sym_U_DQUOTE] = ACTIONS(3193), + [anon_sym_u8_DQUOTE] = ACTIONS(3193), + [anon_sym_DQUOTE] = ACTIONS(3193), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [anon_sym_NULL] = ACTIONS(3191), + [anon_sym_nullptr] = ACTIONS(3191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3191), + [anon_sym_virtual] = ACTIONS(3191), + [anon_sym_alignas] = ACTIONS(3191), + [anon_sym_explicit] = ACTIONS(3191), + [anon_sym_typename] = ACTIONS(3191), + [anon_sym_template] = ACTIONS(3191), + [anon_sym_operator] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_static_assert] = ACTIONS(3191), + [anon_sym_concept] = ACTIONS(3191), + [anon_sym_co_return] = ACTIONS(3191), + [anon_sym_co_yield] = ACTIONS(3191), + [anon_sym_R_DQUOTE] = ACTIONS(3193), + [anon_sym_LR_DQUOTE] = ACTIONS(3193), + [anon_sym_uR_DQUOTE] = ACTIONS(3193), + [anon_sym_UR_DQUOTE] = ACTIONS(3193), + [anon_sym_u8R_DQUOTE] = ACTIONS(3193), + [anon_sym_co_await] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_requires] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), }, - [1039] = { - [ts_builtin_sym_end] = ACTIONS(3209), - [sym_identifier] = ACTIONS(3207), - [aux_sym_preproc_include_token1] = ACTIONS(3207), - [aux_sym_preproc_def_token1] = ACTIONS(3207), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), - [sym_preproc_directive] = ACTIONS(3207), - [anon_sym_LPAREN2] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_AMP_AMP] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym___extension__] = ACTIONS(3207), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3207), - [anon_sym___attribute__] = ACTIONS(3207), - [anon_sym_COLON_COLON] = ACTIONS(3209), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), - [anon_sym___declspec] = ACTIONS(3207), - [anon_sym___based] = ACTIONS(3207), - [anon_sym___cdecl] = ACTIONS(3207), - [anon_sym___clrcall] = ACTIONS(3207), - [anon_sym___stdcall] = ACTIONS(3207), - [anon_sym___fastcall] = ACTIONS(3207), - [anon_sym___thiscall] = ACTIONS(3207), - [anon_sym___vectorcall] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_signed] = ACTIONS(3207), - [anon_sym_unsigned] = ACTIONS(3207), - [anon_sym_long] = ACTIONS(3207), - [anon_sym_short] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_static] = ACTIONS(3207), - [anon_sym_register] = ACTIONS(3207), - [anon_sym_inline] = ACTIONS(3207), - [anon_sym___inline] = ACTIONS(3207), - [anon_sym___inline__] = ACTIONS(3207), - [anon_sym___forceinline] = ACTIONS(3207), - [anon_sym_thread_local] = ACTIONS(3207), - [anon_sym___thread] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_constexpr] = ACTIONS(3207), - [anon_sym_volatile] = ACTIONS(3207), - [anon_sym_restrict] = ACTIONS(3207), - [anon_sym___restrict__] = ACTIONS(3207), - [anon_sym__Atomic] = ACTIONS(3207), - [anon_sym__Noreturn] = ACTIONS(3207), - [anon_sym_noreturn] = ACTIONS(3207), - [anon_sym_mutable] = ACTIONS(3207), - [anon_sym_constinit] = ACTIONS(3207), - [anon_sym_consteval] = ACTIONS(3207), - [sym_primitive_type] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_class] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_switch] = ACTIONS(3207), - [anon_sym_case] = ACTIONS(3207), - [anon_sym_default] = ACTIONS(3207), - [anon_sym_while] = ACTIONS(3207), - [anon_sym_do] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3207), - [anon_sym_compl] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3207), - [anon_sym___alignof__] = ACTIONS(3207), - [anon_sym___alignof] = ACTIONS(3207), - [anon_sym__alignof] = ACTIONS(3207), - [anon_sym_alignof] = ACTIONS(3207), - [anon_sym__Alignof] = ACTIONS(3207), - [anon_sym_offsetof] = ACTIONS(3207), - [anon_sym__Generic] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym___asm__] = ACTIONS(3207), - [sym_number_literal] = ACTIONS(3209), - [anon_sym_L_SQUOTE] = ACTIONS(3209), - [anon_sym_u_SQUOTE] = ACTIONS(3209), - [anon_sym_U_SQUOTE] = ACTIONS(3209), - [anon_sym_u8_SQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_L_DQUOTE] = ACTIONS(3209), - [anon_sym_u_DQUOTE] = ACTIONS(3209), - [anon_sym_U_DQUOTE] = ACTIONS(3209), - [anon_sym_u8_DQUOTE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [anon_sym_NULL] = ACTIONS(3207), - [anon_sym_nullptr] = ACTIONS(3207), + [982] = { + [ts_builtin_sym_end] = ACTIONS(3276), + [sym_identifier] = ACTIONS(3274), + [aux_sym_preproc_include_token1] = ACTIONS(3274), + [aux_sym_preproc_def_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token1] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), + [sym_preproc_directive] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym___extension__] = ACTIONS(3274), + [anon_sym_typedef] = ACTIONS(3274), + [anon_sym_extern] = ACTIONS(3274), + [anon_sym___attribute__] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3274), + [anon_sym___based] = ACTIONS(3274), + [anon_sym___cdecl] = ACTIONS(3274), + [anon_sym___clrcall] = ACTIONS(3274), + [anon_sym___stdcall] = ACTIONS(3274), + [anon_sym___fastcall] = ACTIONS(3274), + [anon_sym___thiscall] = ACTIONS(3274), + [anon_sym___vectorcall] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_signed] = ACTIONS(3274), + [anon_sym_unsigned] = ACTIONS(3274), + [anon_sym_long] = ACTIONS(3274), + [anon_sym_short] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_register] = ACTIONS(3274), + [anon_sym_inline] = ACTIONS(3274), + [anon_sym___inline] = ACTIONS(3274), + [anon_sym___inline__] = ACTIONS(3274), + [anon_sym___forceinline] = ACTIONS(3274), + [anon_sym_thread_local] = ACTIONS(3274), + [anon_sym___thread] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_constexpr] = ACTIONS(3274), + [anon_sym_volatile] = ACTIONS(3274), + [anon_sym_restrict] = ACTIONS(3274), + [anon_sym___restrict__] = ACTIONS(3274), + [anon_sym__Atomic] = ACTIONS(3274), + [anon_sym__Noreturn] = ACTIONS(3274), + [anon_sym_noreturn] = ACTIONS(3274), + [anon_sym_mutable] = ACTIONS(3274), + [anon_sym_constinit] = ACTIONS(3274), + [anon_sym_consteval] = ACTIONS(3274), + [sym_primitive_type] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_union] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym_not] = ACTIONS(3274), + [anon_sym_compl] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_sizeof] = ACTIONS(3274), + [anon_sym___alignof__] = ACTIONS(3274), + [anon_sym___alignof] = ACTIONS(3274), + [anon_sym__alignof] = ACTIONS(3274), + [anon_sym_alignof] = ACTIONS(3274), + [anon_sym__Alignof] = ACTIONS(3274), + [anon_sym_offsetof] = ACTIONS(3274), + [anon_sym__Generic] = ACTIONS(3274), + [anon_sym_asm] = ACTIONS(3274), + [anon_sym___asm__] = ACTIONS(3274), + [sym_number_literal] = ACTIONS(3276), + [anon_sym_L_SQUOTE] = ACTIONS(3276), + [anon_sym_u_SQUOTE] = ACTIONS(3276), + [anon_sym_U_SQUOTE] = ACTIONS(3276), + [anon_sym_u8_SQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_L_DQUOTE] = ACTIONS(3276), + [anon_sym_u_DQUOTE] = ACTIONS(3276), + [anon_sym_U_DQUOTE] = ACTIONS(3276), + [anon_sym_u8_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [anon_sym_NULL] = ACTIONS(3274), + [anon_sym_nullptr] = ACTIONS(3274), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3207), - [anon_sym_virtual] = ACTIONS(3207), - [anon_sym_alignas] = ACTIONS(3207), - [anon_sym_explicit] = ACTIONS(3207), - [anon_sym_typename] = ACTIONS(3207), - [anon_sym_template] = ACTIONS(3207), - [anon_sym_operator] = ACTIONS(3207), - [anon_sym_try] = ACTIONS(3207), - [anon_sym_delete] = ACTIONS(3207), - [anon_sym_throw] = ACTIONS(3207), - [anon_sym_namespace] = ACTIONS(3207), - [anon_sym_using] = ACTIONS(3207), - [anon_sym_static_assert] = ACTIONS(3207), - [anon_sym_concept] = ACTIONS(3207), - [anon_sym_co_return] = ACTIONS(3207), - [anon_sym_co_yield] = ACTIONS(3207), - [anon_sym_R_DQUOTE] = ACTIONS(3209), - [anon_sym_LR_DQUOTE] = ACTIONS(3209), - [anon_sym_uR_DQUOTE] = ACTIONS(3209), - [anon_sym_UR_DQUOTE] = ACTIONS(3209), - [anon_sym_u8R_DQUOTE] = ACTIONS(3209), - [anon_sym_co_await] = ACTIONS(3207), - [anon_sym_new] = ACTIONS(3207), - [anon_sym_requires] = ACTIONS(3207), - [sym_this] = ACTIONS(3207), + [sym_auto] = ACTIONS(3274), + [anon_sym_decltype] = ACTIONS(3274), + [anon_sym_virtual] = ACTIONS(3274), + [anon_sym_alignas] = ACTIONS(3274), + [anon_sym_explicit] = ACTIONS(3274), + [anon_sym_typename] = ACTIONS(3274), + [anon_sym_template] = ACTIONS(3274), + [anon_sym_operator] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_static_assert] = ACTIONS(3274), + [anon_sym_concept] = ACTIONS(3274), + [anon_sym_co_return] = ACTIONS(3274), + [anon_sym_co_yield] = ACTIONS(3274), + [anon_sym_R_DQUOTE] = ACTIONS(3276), + [anon_sym_LR_DQUOTE] = ACTIONS(3276), + [anon_sym_uR_DQUOTE] = ACTIONS(3276), + [anon_sym_UR_DQUOTE] = ACTIONS(3276), + [anon_sym_u8R_DQUOTE] = ACTIONS(3276), + [anon_sym_co_await] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_requires] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), }, - [1040] = { - [ts_builtin_sym_end] = ACTIONS(3154), - [sym_identifier] = ACTIONS(3152), - [aux_sym_preproc_include_token1] = ACTIONS(3152), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym___extension__] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym___attribute__] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym___declspec] = ACTIONS(3152), - [anon_sym___based] = ACTIONS(3152), - [anon_sym___cdecl] = ACTIONS(3152), - [anon_sym___clrcall] = ACTIONS(3152), - [anon_sym___stdcall] = ACTIONS(3152), - [anon_sym___fastcall] = ACTIONS(3152), - [anon_sym___thiscall] = ACTIONS(3152), - [anon_sym___vectorcall] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym___inline] = ACTIONS(3152), - [anon_sym___inline__] = ACTIONS(3152), - [anon_sym___forceinline] = ACTIONS(3152), - [anon_sym_thread_local] = ACTIONS(3152), - [anon_sym___thread] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_restrict] = ACTIONS(3152), - [anon_sym___restrict__] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [anon_sym__Noreturn] = ACTIONS(3152), - [anon_sym_noreturn] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [anon_sym_constinit] = ACTIONS(3152), - [anon_sym_consteval] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(3152), - [anon_sym_union] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_goto] = ACTIONS(3152), - [anon_sym_not] = ACTIONS(3152), - [anon_sym_compl] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_sizeof] = ACTIONS(3152), - [anon_sym___alignof__] = ACTIONS(3152), - [anon_sym___alignof] = ACTIONS(3152), - [anon_sym__alignof] = ACTIONS(3152), - [anon_sym_alignof] = ACTIONS(3152), - [anon_sym__Alignof] = ACTIONS(3152), - [anon_sym_offsetof] = ACTIONS(3152), - [anon_sym__Generic] = ACTIONS(3152), - [anon_sym_asm] = ACTIONS(3152), - [anon_sym___asm__] = ACTIONS(3152), - [sym_number_literal] = ACTIONS(3154), - [anon_sym_L_SQUOTE] = ACTIONS(3154), - [anon_sym_u_SQUOTE] = ACTIONS(3154), - [anon_sym_U_SQUOTE] = ACTIONS(3154), - [anon_sym_u8_SQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_L_DQUOTE] = ACTIONS(3154), - [anon_sym_u_DQUOTE] = ACTIONS(3154), - [anon_sym_U_DQUOTE] = ACTIONS(3154), - [anon_sym_u8_DQUOTE] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [anon_sym_NULL] = ACTIONS(3152), - [anon_sym_nullptr] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3152), - [anon_sym_decltype] = ACTIONS(3152), - [anon_sym_virtual] = ACTIONS(3152), - [anon_sym_alignas] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_static_assert] = ACTIONS(3152), - [anon_sym_concept] = ACTIONS(3152), - [anon_sym_co_return] = ACTIONS(3152), - [anon_sym_co_yield] = ACTIONS(3152), - [anon_sym_R_DQUOTE] = ACTIONS(3154), - [anon_sym_LR_DQUOTE] = ACTIONS(3154), - [anon_sym_uR_DQUOTE] = ACTIONS(3154), - [anon_sym_UR_DQUOTE] = ACTIONS(3154), - [anon_sym_u8R_DQUOTE] = ACTIONS(3154), - [anon_sym_co_await] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_requires] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), + [983] = { + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3266), + [aux_sym_preproc_include_token1] = ACTIONS(3266), + [aux_sym_preproc_def_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), + [sym_preproc_directive] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym___extension__] = ACTIONS(3266), + [anon_sym_typedef] = ACTIONS(3266), + [anon_sym_extern] = ACTIONS(3266), + [anon_sym___attribute__] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(3268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), + [anon_sym___declspec] = ACTIONS(3266), + [anon_sym___based] = ACTIONS(3266), + [anon_sym___cdecl] = ACTIONS(3266), + [anon_sym___clrcall] = ACTIONS(3266), + [anon_sym___stdcall] = ACTIONS(3266), + [anon_sym___fastcall] = ACTIONS(3266), + [anon_sym___thiscall] = ACTIONS(3266), + [anon_sym___vectorcall] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_signed] = ACTIONS(3266), + [anon_sym_unsigned] = ACTIONS(3266), + [anon_sym_long] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3266), + [anon_sym_inline] = ACTIONS(3266), + [anon_sym___inline] = ACTIONS(3266), + [anon_sym___inline__] = ACTIONS(3266), + [anon_sym___forceinline] = ACTIONS(3266), + [anon_sym_thread_local] = ACTIONS(3266), + [anon_sym___thread] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_constexpr] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym___restrict__] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym__Noreturn] = ACTIONS(3266), + [anon_sym_noreturn] = ACTIONS(3266), + [anon_sym_mutable] = ACTIONS(3266), + [anon_sym_constinit] = ACTIONS(3266), + [anon_sym_consteval] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_not] = ACTIONS(3266), + [anon_sym_compl] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_sizeof] = ACTIONS(3266), + [anon_sym___alignof__] = ACTIONS(3266), + [anon_sym___alignof] = ACTIONS(3266), + [anon_sym__alignof] = ACTIONS(3266), + [anon_sym_alignof] = ACTIONS(3266), + [anon_sym__Alignof] = ACTIONS(3266), + [anon_sym_offsetof] = ACTIONS(3266), + [anon_sym__Generic] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym___asm__] = ACTIONS(3266), + [sym_number_literal] = ACTIONS(3268), + [anon_sym_L_SQUOTE] = ACTIONS(3268), + [anon_sym_u_SQUOTE] = ACTIONS(3268), + [anon_sym_U_SQUOTE] = ACTIONS(3268), + [anon_sym_u8_SQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_L_DQUOTE] = ACTIONS(3268), + [anon_sym_u_DQUOTE] = ACTIONS(3268), + [anon_sym_U_DQUOTE] = ACTIONS(3268), + [anon_sym_u8_DQUOTE] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [anon_sym_NULL] = ACTIONS(3266), + [anon_sym_nullptr] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3266), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_virtual] = ACTIONS(3266), + [anon_sym_alignas] = ACTIONS(3266), + [anon_sym_explicit] = ACTIONS(3266), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3266), + [anon_sym_operator] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_static_assert] = ACTIONS(3266), + [anon_sym_concept] = ACTIONS(3266), + [anon_sym_co_return] = ACTIONS(3266), + [anon_sym_co_yield] = ACTIONS(3266), + [anon_sym_R_DQUOTE] = ACTIONS(3268), + [anon_sym_LR_DQUOTE] = ACTIONS(3268), + [anon_sym_uR_DQUOTE] = ACTIONS(3268), + [anon_sym_UR_DQUOTE] = ACTIONS(3268), + [anon_sym_u8R_DQUOTE] = ACTIONS(3268), + [anon_sym_co_await] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_requires] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), }, - [1041] = { - [ts_builtin_sym_end] = ACTIONS(3257), - [sym_identifier] = ACTIONS(3255), - [aux_sym_preproc_include_token1] = ACTIONS(3255), - [aux_sym_preproc_def_token1] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3255), - [sym_preproc_directive] = ACTIONS(3255), - [anon_sym_LPAREN2] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_AMP_AMP] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym___extension__] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3255), - [anon_sym_extern] = ACTIONS(3255), - [anon_sym___attribute__] = ACTIONS(3255), - [anon_sym_COLON_COLON] = ACTIONS(3257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3257), - [anon_sym___declspec] = ACTIONS(3255), - [anon_sym___based] = ACTIONS(3255), - [anon_sym___cdecl] = ACTIONS(3255), - [anon_sym___clrcall] = ACTIONS(3255), - [anon_sym___stdcall] = ACTIONS(3255), - [anon_sym___fastcall] = ACTIONS(3255), - [anon_sym___thiscall] = ACTIONS(3255), - [anon_sym___vectorcall] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_signed] = ACTIONS(3255), - [anon_sym_unsigned] = ACTIONS(3255), - [anon_sym_long] = ACTIONS(3255), - [anon_sym_short] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_register] = ACTIONS(3255), - [anon_sym_inline] = ACTIONS(3255), - [anon_sym___inline] = ACTIONS(3255), - [anon_sym___inline__] = ACTIONS(3255), - [anon_sym___forceinline] = ACTIONS(3255), - [anon_sym_thread_local] = ACTIONS(3255), - [anon_sym___thread] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_constexpr] = ACTIONS(3255), - [anon_sym_volatile] = ACTIONS(3255), - [anon_sym_restrict] = ACTIONS(3255), - [anon_sym___restrict__] = ACTIONS(3255), - [anon_sym__Atomic] = ACTIONS(3255), - [anon_sym__Noreturn] = ACTIONS(3255), - [anon_sym_noreturn] = ACTIONS(3255), - [anon_sym_mutable] = ACTIONS(3255), - [anon_sym_constinit] = ACTIONS(3255), - [anon_sym_consteval] = ACTIONS(3255), - [sym_primitive_type] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym_not] = ACTIONS(3255), - [anon_sym_compl] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3255), - [anon_sym___alignof__] = ACTIONS(3255), - [anon_sym___alignof] = ACTIONS(3255), - [anon_sym__alignof] = ACTIONS(3255), - [anon_sym_alignof] = ACTIONS(3255), - [anon_sym__Alignof] = ACTIONS(3255), - [anon_sym_offsetof] = ACTIONS(3255), - [anon_sym__Generic] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym___asm__] = ACTIONS(3255), - [sym_number_literal] = ACTIONS(3257), - [anon_sym_L_SQUOTE] = ACTIONS(3257), - [anon_sym_u_SQUOTE] = ACTIONS(3257), - [anon_sym_U_SQUOTE] = ACTIONS(3257), - [anon_sym_u8_SQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_L_DQUOTE] = ACTIONS(3257), - [anon_sym_u_DQUOTE] = ACTIONS(3257), - [anon_sym_U_DQUOTE] = ACTIONS(3257), - [anon_sym_u8_DQUOTE] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [anon_sym_NULL] = ACTIONS(3255), - [anon_sym_nullptr] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3255), - [anon_sym_decltype] = ACTIONS(3255), - [anon_sym_virtual] = ACTIONS(3255), - [anon_sym_alignas] = ACTIONS(3255), - [anon_sym_explicit] = ACTIONS(3255), - [anon_sym_typename] = ACTIONS(3255), - [anon_sym_template] = ACTIONS(3255), - [anon_sym_operator] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_static_assert] = ACTIONS(3255), - [anon_sym_concept] = ACTIONS(3255), - [anon_sym_co_return] = ACTIONS(3255), - [anon_sym_co_yield] = ACTIONS(3255), - [anon_sym_R_DQUOTE] = ACTIONS(3257), - [anon_sym_LR_DQUOTE] = ACTIONS(3257), - [anon_sym_uR_DQUOTE] = ACTIONS(3257), - [anon_sym_UR_DQUOTE] = ACTIONS(3257), - [anon_sym_u8R_DQUOTE] = ACTIONS(3257), - [anon_sym_co_await] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_requires] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), + [984] = { + [ts_builtin_sym_end] = ACTIONS(3246), + [sym_identifier] = ACTIONS(3244), + [aux_sym_preproc_include_token1] = ACTIONS(3244), + [aux_sym_preproc_def_token1] = ACTIONS(3244), + [aux_sym_preproc_if_token1] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3244), + [sym_preproc_directive] = ACTIONS(3244), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3244), + [anon_sym_PLUS] = ACTIONS(3244), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_typedef] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym___cdecl] = ACTIONS(3244), + [anon_sym___clrcall] = ACTIONS(3244), + [anon_sym___stdcall] = ACTIONS(3244), + [anon_sym___fastcall] = ACTIONS(3244), + [anon_sym___thiscall] = ACTIONS(3244), + [anon_sym___vectorcall] = ACTIONS(3244), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [sym_primitive_type] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3244), + [anon_sym_union] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3244), + [anon_sym_switch] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3244), + [anon_sym_default] = ACTIONS(3244), + [anon_sym_while] = ACTIONS(3244), + [anon_sym_do] = ACTIONS(3244), + [anon_sym_for] = ACTIONS(3244), + [anon_sym_return] = ACTIONS(3244), + [anon_sym_break] = ACTIONS(3244), + [anon_sym_continue] = ACTIONS(3244), + [anon_sym_goto] = ACTIONS(3244), + [anon_sym_not] = ACTIONS(3244), + [anon_sym_compl] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_sizeof] = ACTIONS(3244), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3244), + [anon_sym__Generic] = ACTIONS(3244), + [anon_sym_asm] = ACTIONS(3244), + [anon_sym___asm__] = ACTIONS(3244), + [sym_number_literal] = ACTIONS(3246), + [anon_sym_L_SQUOTE] = ACTIONS(3246), + [anon_sym_u_SQUOTE] = ACTIONS(3246), + [anon_sym_U_SQUOTE] = ACTIONS(3246), + [anon_sym_u8_SQUOTE] = ACTIONS(3246), + [anon_sym_SQUOTE] = ACTIONS(3246), + [anon_sym_L_DQUOTE] = ACTIONS(3246), + [anon_sym_u_DQUOTE] = ACTIONS(3246), + [anon_sym_U_DQUOTE] = ACTIONS(3246), + [anon_sym_u8_DQUOTE] = ACTIONS(3246), + [anon_sym_DQUOTE] = ACTIONS(3246), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [anon_sym_NULL] = ACTIONS(3244), + [anon_sym_nullptr] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym_explicit] = ACTIONS(3244), + [anon_sym_typename] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_try] = ACTIONS(3244), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_throw] = ACTIONS(3244), + [anon_sym_namespace] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_static_assert] = ACTIONS(3244), + [anon_sym_concept] = ACTIONS(3244), + [anon_sym_co_return] = ACTIONS(3244), + [anon_sym_co_yield] = 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(3244), + [anon_sym_new] = ACTIONS(3244), + [anon_sym_requires] = ACTIONS(3244), + [sym_this] = ACTIONS(3244), }, - [1042] = { - [ts_builtin_sym_end] = ACTIONS(3245), - [sym_identifier] = ACTIONS(3243), - [aux_sym_preproc_include_token1] = ACTIONS(3243), - [aux_sym_preproc_def_token1] = ACTIONS(3243), - [aux_sym_preproc_if_token1] = ACTIONS(3243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3243), - [sym_preproc_directive] = ACTIONS(3243), - [anon_sym_LPAREN2] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym___extension__] = ACTIONS(3243), - [anon_sym_typedef] = ACTIONS(3243), - [anon_sym_extern] = ACTIONS(3243), - [anon_sym___attribute__] = ACTIONS(3243), - [anon_sym_COLON_COLON] = ACTIONS(3245), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3245), - [anon_sym___declspec] = ACTIONS(3243), - [anon_sym___based] = ACTIONS(3243), - [anon_sym___cdecl] = ACTIONS(3243), - [anon_sym___clrcall] = ACTIONS(3243), - [anon_sym___stdcall] = ACTIONS(3243), - [anon_sym___fastcall] = ACTIONS(3243), - [anon_sym___thiscall] = ACTIONS(3243), - [anon_sym___vectorcall] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_signed] = ACTIONS(3243), - [anon_sym_unsigned] = ACTIONS(3243), - [anon_sym_long] = ACTIONS(3243), - [anon_sym_short] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_register] = ACTIONS(3243), - [anon_sym_inline] = ACTIONS(3243), - [anon_sym___inline] = ACTIONS(3243), - [anon_sym___inline__] = ACTIONS(3243), - [anon_sym___forceinline] = ACTIONS(3243), - [anon_sym_thread_local] = ACTIONS(3243), - [anon_sym___thread] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_constexpr] = ACTIONS(3243), - [anon_sym_volatile] = ACTIONS(3243), - [anon_sym_restrict] = ACTIONS(3243), - [anon_sym___restrict__] = ACTIONS(3243), - [anon_sym__Atomic] = ACTIONS(3243), - [anon_sym__Noreturn] = ACTIONS(3243), - [anon_sym_noreturn] = ACTIONS(3243), - [anon_sym_mutable] = ACTIONS(3243), - [anon_sym_constinit] = ACTIONS(3243), - [anon_sym_consteval] = ACTIONS(3243), - [sym_primitive_type] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_union] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_case] = ACTIONS(3243), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_goto] = ACTIONS(3243), - [anon_sym_not] = ACTIONS(3243), - [anon_sym_compl] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_sizeof] = ACTIONS(3243), - [anon_sym___alignof__] = ACTIONS(3243), - [anon_sym___alignof] = ACTIONS(3243), - [anon_sym__alignof] = ACTIONS(3243), - [anon_sym_alignof] = ACTIONS(3243), - [anon_sym__Alignof] = ACTIONS(3243), - [anon_sym_offsetof] = ACTIONS(3243), - [anon_sym__Generic] = ACTIONS(3243), - [anon_sym_asm] = ACTIONS(3243), - [anon_sym___asm__] = ACTIONS(3243), - [sym_number_literal] = ACTIONS(3245), - [anon_sym_L_SQUOTE] = ACTIONS(3245), - [anon_sym_u_SQUOTE] = ACTIONS(3245), - [anon_sym_U_SQUOTE] = ACTIONS(3245), - [anon_sym_u8_SQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_L_DQUOTE] = ACTIONS(3245), - [anon_sym_u_DQUOTE] = ACTIONS(3245), - [anon_sym_U_DQUOTE] = ACTIONS(3245), - [anon_sym_u8_DQUOTE] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [anon_sym_NULL] = ACTIONS(3243), - [anon_sym_nullptr] = ACTIONS(3243), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3243), - [anon_sym_decltype] = ACTIONS(3243), - [anon_sym_virtual] = ACTIONS(3243), - [anon_sym_alignas] = ACTIONS(3243), - [anon_sym_explicit] = ACTIONS(3243), - [anon_sym_typename] = ACTIONS(3243), - [anon_sym_template] = ACTIONS(3243), - [anon_sym_operator] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_static_assert] = ACTIONS(3243), - [anon_sym_concept] = ACTIONS(3243), - [anon_sym_co_return] = ACTIONS(3243), - [anon_sym_co_yield] = ACTIONS(3243), - [anon_sym_R_DQUOTE] = ACTIONS(3245), - [anon_sym_LR_DQUOTE] = ACTIONS(3245), - [anon_sym_uR_DQUOTE] = ACTIONS(3245), - [anon_sym_UR_DQUOTE] = ACTIONS(3245), - [anon_sym_u8R_DQUOTE] = ACTIONS(3245), - [anon_sym_co_await] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_requires] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), + [985] = { + [ts_builtin_sym_end] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3167), + [aux_sym_preproc_include_token1] = ACTIONS(3167), + [aux_sym_preproc_def_token1] = ACTIONS(3167), + [aux_sym_preproc_if_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3167), + [sym_preproc_directive] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym___extension__] = ACTIONS(3167), + [anon_sym_typedef] = ACTIONS(3167), + [anon_sym_extern] = ACTIONS(3167), + [anon_sym___attribute__] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3169), + [anon_sym___declspec] = ACTIONS(3167), + [anon_sym___based] = ACTIONS(3167), + [anon_sym___cdecl] = ACTIONS(3167), + [anon_sym___clrcall] = ACTIONS(3167), + [anon_sym___stdcall] = ACTIONS(3167), + [anon_sym___fastcall] = ACTIONS(3167), + [anon_sym___thiscall] = ACTIONS(3167), + [anon_sym___vectorcall] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_signed] = ACTIONS(3167), + [anon_sym_unsigned] = ACTIONS(3167), + [anon_sym_long] = ACTIONS(3167), + [anon_sym_short] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_register] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym___inline] = ACTIONS(3167), + [anon_sym___inline__] = ACTIONS(3167), + [anon_sym___forceinline] = ACTIONS(3167), + [anon_sym_thread_local] = ACTIONS(3167), + [anon_sym___thread] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_constexpr] = ACTIONS(3167), + [anon_sym_volatile] = ACTIONS(3167), + [anon_sym_restrict] = ACTIONS(3167), + [anon_sym___restrict__] = ACTIONS(3167), + [anon_sym__Atomic] = ACTIONS(3167), + [anon_sym__Noreturn] = ACTIONS(3167), + [anon_sym_noreturn] = ACTIONS(3167), + [anon_sym_mutable] = ACTIONS(3167), + [anon_sym_constinit] = ACTIONS(3167), + [anon_sym_consteval] = ACTIONS(3167), + [sym_primitive_type] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_goto] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3167), + [anon_sym_compl] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3167), + [anon_sym___alignof__] = ACTIONS(3167), + [anon_sym___alignof] = ACTIONS(3167), + [anon_sym__alignof] = ACTIONS(3167), + [anon_sym_alignof] = ACTIONS(3167), + [anon_sym__Alignof] = ACTIONS(3167), + [anon_sym_offsetof] = ACTIONS(3167), + [anon_sym__Generic] = ACTIONS(3167), + [anon_sym_asm] = ACTIONS(3167), + [anon_sym___asm__] = ACTIONS(3167), + [sym_number_literal] = ACTIONS(3169), + [anon_sym_L_SQUOTE] = ACTIONS(3169), + [anon_sym_u_SQUOTE] = ACTIONS(3169), + [anon_sym_U_SQUOTE] = ACTIONS(3169), + [anon_sym_u8_SQUOTE] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_L_DQUOTE] = ACTIONS(3169), + [anon_sym_u_DQUOTE] = ACTIONS(3169), + [anon_sym_U_DQUOTE] = ACTIONS(3169), + [anon_sym_u8_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [anon_sym_NULL] = ACTIONS(3167), + [anon_sym_nullptr] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3167), + [anon_sym_decltype] = ACTIONS(3167), + [anon_sym_virtual] = ACTIONS(3167), + [anon_sym_alignas] = ACTIONS(3167), + [anon_sym_explicit] = ACTIONS(3167), + [anon_sym_typename] = ACTIONS(3167), + [anon_sym_template] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_static_assert] = ACTIONS(3167), + [anon_sym_concept] = ACTIONS(3167), + [anon_sym_co_return] = ACTIONS(3167), + [anon_sym_co_yield] = ACTIONS(3167), + [anon_sym_R_DQUOTE] = ACTIONS(3169), + [anon_sym_LR_DQUOTE] = ACTIONS(3169), + [anon_sym_uR_DQUOTE] = ACTIONS(3169), + [anon_sym_UR_DQUOTE] = ACTIONS(3169), + [anon_sym_u8R_DQUOTE] = ACTIONS(3169), + [anon_sym_co_await] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_requires] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), }, - [1043] = { - [sym_preproc_def] = STATE(1016), - [sym_preproc_function_def] = STATE(1016), - [sym_preproc_call] = STATE(1016), - [sym_preproc_if_in_field_declaration_list] = STATE(1016), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1016), - [sym_type_definition] = STATE(1016), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1016), - [sym_field_declaration] = STATE(1016), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1016), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1016), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1016), - [sym_operator_cast_declaration] = STATE(1016), - [sym_constructor_or_destructor_definition] = STATE(1016), - [sym_constructor_or_destructor_declaration] = STATE(1016), - [sym_friend_declaration] = STATE(1016), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1016), - [sym_alias_declaration] = STATE(1016), - [sym_static_assert_declaration] = STATE(1016), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1016), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [986] = { + [ts_builtin_sym_end] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3082), + [aux_sym_preproc_include_token1] = ACTIONS(3082), + [aux_sym_preproc_def_token1] = ACTIONS(3082), + [aux_sym_preproc_if_token1] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), + [sym_preproc_directive] = ACTIONS(3082), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym___extension__] = ACTIONS(3082), + [anon_sym_typedef] = ACTIONS(3082), + [anon_sym_extern] = ACTIONS(3082), + [anon_sym___attribute__] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), + [anon_sym___declspec] = ACTIONS(3082), + [anon_sym___based] = ACTIONS(3082), + [anon_sym___cdecl] = ACTIONS(3082), + [anon_sym___clrcall] = ACTIONS(3082), + [anon_sym___stdcall] = ACTIONS(3082), + [anon_sym___fastcall] = ACTIONS(3082), + [anon_sym___thiscall] = ACTIONS(3082), + [anon_sym___vectorcall] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_signed] = ACTIONS(3082), + [anon_sym_unsigned] = ACTIONS(3082), + [anon_sym_long] = ACTIONS(3082), + [anon_sym_short] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_register] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym___inline] = ACTIONS(3082), + [anon_sym___inline__] = ACTIONS(3082), + [anon_sym___forceinline] = ACTIONS(3082), + [anon_sym_thread_local] = ACTIONS(3082), + [anon_sym___thread] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_constexpr] = ACTIONS(3082), + [anon_sym_volatile] = ACTIONS(3082), + [anon_sym_restrict] = ACTIONS(3082), + [anon_sym___restrict__] = ACTIONS(3082), + [anon_sym__Atomic] = ACTIONS(3082), + [anon_sym__Noreturn] = ACTIONS(3082), + [anon_sym_noreturn] = ACTIONS(3082), + [anon_sym_mutable] = ACTIONS(3082), + [anon_sym_constinit] = ACTIONS(3082), + [anon_sym_consteval] = ACTIONS(3082), + [sym_primitive_type] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_union] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_switch] = ACTIONS(3082), + [anon_sym_case] = ACTIONS(3082), + [anon_sym_default] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_do] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_goto] = ACTIONS(3082), + [anon_sym_not] = ACTIONS(3082), + [anon_sym_compl] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_sizeof] = ACTIONS(3082), + [anon_sym___alignof__] = ACTIONS(3082), + [anon_sym___alignof] = ACTIONS(3082), + [anon_sym__alignof] = ACTIONS(3082), + [anon_sym_alignof] = ACTIONS(3082), + [anon_sym__Alignof] = ACTIONS(3082), + [anon_sym_offsetof] = ACTIONS(3082), + [anon_sym__Generic] = ACTIONS(3082), + [anon_sym_asm] = ACTIONS(3082), + [anon_sym___asm__] = ACTIONS(3082), + [sym_number_literal] = ACTIONS(3084), + [anon_sym_L_SQUOTE] = ACTIONS(3084), + [anon_sym_u_SQUOTE] = ACTIONS(3084), + [anon_sym_U_SQUOTE] = ACTIONS(3084), + [anon_sym_u8_SQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_L_DQUOTE] = ACTIONS(3084), + [anon_sym_u_DQUOTE] = ACTIONS(3084), + [anon_sym_U_DQUOTE] = ACTIONS(3084), + [anon_sym_u8_DQUOTE] = ACTIONS(3084), + [anon_sym_DQUOTE] = ACTIONS(3084), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [anon_sym_NULL] = ACTIONS(3082), + [anon_sym_nullptr] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3082), + [anon_sym_decltype] = ACTIONS(3082), + [anon_sym_virtual] = ACTIONS(3082), + [anon_sym_alignas] = ACTIONS(3082), + [anon_sym_explicit] = ACTIONS(3082), + [anon_sym_typename] = ACTIONS(3082), + [anon_sym_template] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_delete] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_namespace] = ACTIONS(3082), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_static_assert] = ACTIONS(3082), + [anon_sym_concept] = ACTIONS(3082), + [anon_sym_co_return] = ACTIONS(3082), + [anon_sym_co_yield] = ACTIONS(3082), + [anon_sym_R_DQUOTE] = ACTIONS(3084), + [anon_sym_LR_DQUOTE] = ACTIONS(3084), + [anon_sym_uR_DQUOTE] = ACTIONS(3084), + [anon_sym_UR_DQUOTE] = ACTIONS(3084), + [anon_sym_u8R_DQUOTE] = ACTIONS(3084), + [anon_sym_co_await] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3082), + [anon_sym_requires] = ACTIONS(3082), + [sym_this] = ACTIONS(3082), + }, + [987] = { + [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___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_extern] = 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___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_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = 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_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_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_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_virtual] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_typename] = 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_using] = 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_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), + [sym_this] = ACTIONS(3171), + }, + [988] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3828), + [anon_sym_RBRACE] = ACTIONS(3758), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -231965,632 +225196,632 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [1044] = { - [ts_builtin_sym_end] = ACTIONS(3146), - [sym_identifier] = ACTIONS(3144), - [aux_sym_preproc_include_token1] = ACTIONS(3144), - [aux_sym_preproc_def_token1] = ACTIONS(3144), - [aux_sym_preproc_if_token1] = ACTIONS(3144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3144), - [sym_preproc_directive] = ACTIONS(3144), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3146), - [anon_sym_AMP] = ACTIONS(3144), - [anon_sym___extension__] = ACTIONS(3144), - [anon_sym_typedef] = ACTIONS(3144), - [anon_sym_extern] = ACTIONS(3144), - [anon_sym___attribute__] = ACTIONS(3144), - [anon_sym_COLON_COLON] = ACTIONS(3146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3146), - [anon_sym___declspec] = ACTIONS(3144), - [anon_sym___based] = ACTIONS(3144), - [anon_sym___cdecl] = ACTIONS(3144), - [anon_sym___clrcall] = ACTIONS(3144), - [anon_sym___stdcall] = ACTIONS(3144), - [anon_sym___fastcall] = ACTIONS(3144), - [anon_sym___thiscall] = ACTIONS(3144), - [anon_sym___vectorcall] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_signed] = ACTIONS(3144), - [anon_sym_unsigned] = ACTIONS(3144), - [anon_sym_long] = ACTIONS(3144), - [anon_sym_short] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_register] = ACTIONS(3144), - [anon_sym_inline] = ACTIONS(3144), - [anon_sym___inline] = ACTIONS(3144), - [anon_sym___inline__] = ACTIONS(3144), - [anon_sym___forceinline] = ACTIONS(3144), - [anon_sym_thread_local] = ACTIONS(3144), - [anon_sym___thread] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_constexpr] = ACTIONS(3144), - [anon_sym_volatile] = ACTIONS(3144), - [anon_sym_restrict] = ACTIONS(3144), - [anon_sym___restrict__] = ACTIONS(3144), - [anon_sym__Atomic] = ACTIONS(3144), - [anon_sym__Noreturn] = ACTIONS(3144), - [anon_sym_noreturn] = ACTIONS(3144), - [anon_sym_mutable] = ACTIONS(3144), - [anon_sym_constinit] = ACTIONS(3144), - [anon_sym_consteval] = ACTIONS(3144), - [sym_primitive_type] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_struct] = ACTIONS(3144), - [anon_sym_union] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_case] = ACTIONS(3144), - [anon_sym_default] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_goto] = ACTIONS(3144), - [anon_sym_not] = ACTIONS(3144), - [anon_sym_compl] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_sizeof] = ACTIONS(3144), - [anon_sym___alignof__] = ACTIONS(3144), - [anon_sym___alignof] = ACTIONS(3144), - [anon_sym__alignof] = ACTIONS(3144), - [anon_sym_alignof] = ACTIONS(3144), - [anon_sym__Alignof] = ACTIONS(3144), - [anon_sym_offsetof] = ACTIONS(3144), - [anon_sym__Generic] = ACTIONS(3144), - [anon_sym_asm] = ACTIONS(3144), - [anon_sym___asm__] = ACTIONS(3144), - [sym_number_literal] = ACTIONS(3146), - [anon_sym_L_SQUOTE] = ACTIONS(3146), - [anon_sym_u_SQUOTE] = ACTIONS(3146), - [anon_sym_U_SQUOTE] = ACTIONS(3146), - [anon_sym_u8_SQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_L_DQUOTE] = ACTIONS(3146), - [anon_sym_u_DQUOTE] = ACTIONS(3146), - [anon_sym_U_DQUOTE] = ACTIONS(3146), - [anon_sym_u8_DQUOTE] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [anon_sym_NULL] = ACTIONS(3144), - [anon_sym_nullptr] = ACTIONS(3144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3144), - [anon_sym_decltype] = ACTIONS(3144), - [anon_sym_virtual] = ACTIONS(3144), - [anon_sym_alignas] = ACTIONS(3144), - [anon_sym_explicit] = ACTIONS(3144), - [anon_sym_typename] = ACTIONS(3144), - [anon_sym_template] = ACTIONS(3144), - [anon_sym_operator] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3144), - [anon_sym_static_assert] = ACTIONS(3144), - [anon_sym_concept] = ACTIONS(3144), - [anon_sym_co_return] = ACTIONS(3144), - [anon_sym_co_yield] = ACTIONS(3144), - [anon_sym_R_DQUOTE] = ACTIONS(3146), - [anon_sym_LR_DQUOTE] = ACTIONS(3146), - [anon_sym_uR_DQUOTE] = ACTIONS(3146), - [anon_sym_UR_DQUOTE] = ACTIONS(3146), - [anon_sym_u8R_DQUOTE] = ACTIONS(3146), - [anon_sym_co_await] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_requires] = ACTIONS(3144), - [sym_this] = ACTIONS(3144), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1045] = { - [sym_preproc_def] = STATE(1045), - [sym_preproc_function_def] = STATE(1045), - [sym_preproc_call] = STATE(1045), - [sym_preproc_if_in_field_declaration_list] = STATE(1045), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1045), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1045), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(1045), - [sym_operator_cast_declaration] = STATE(1045), - [sym_constructor_or_destructor_definition] = STATE(1045), - [sym_constructor_or_destructor_declaration] = STATE(1045), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), - [sym_static_assert_declaration] = STATE(1045), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3490), - [aux_sym_preproc_def_token1] = ACTIONS(3830), - [aux_sym_preproc_if_token1] = ACTIONS(3833), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3836), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3836), - [sym_preproc_directive] = ACTIONS(3839), - [anon_sym_LPAREN2] = ACTIONS(3507), - [anon_sym_TILDE] = ACTIONS(3510), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3516), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym___extension__] = ACTIONS(3842), - [anon_sym_typedef] = ACTIONS(3845), - [anon_sym_extern] = ACTIONS(3528), - [anon_sym___attribute__] = ACTIONS(3531), - [anon_sym_COLON_COLON] = ACTIONS(3534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3537), - [anon_sym___declspec] = ACTIONS(3540), - [anon_sym___based] = ACTIONS(3543), - [anon_sym_RBRACE] = ACTIONS(3848), - [anon_sym_signed] = ACTIONS(3546), - [anon_sym_unsigned] = ACTIONS(3546), - [anon_sym_long] = ACTIONS(3546), - [anon_sym_short] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3549), - [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(3552), - [anon_sym_constexpr] = ACTIONS(3552), - [anon_sym_volatile] = ACTIONS(3552), - [anon_sym_restrict] = ACTIONS(3552), - [anon_sym___restrict__] = ACTIONS(3552), - [anon_sym__Atomic] = ACTIONS(3552), - [anon_sym__Noreturn] = ACTIONS(3552), - [anon_sym_noreturn] = ACTIONS(3552), - [anon_sym_mutable] = ACTIONS(3552), - [anon_sym_constinit] = ACTIONS(3552), - [anon_sym_consteval] = ACTIONS(3552), - [sym_primitive_type] = ACTIONS(3555), - [anon_sym_enum] = ACTIONS(3558), - [anon_sym_class] = ACTIONS(3561), - [anon_sym_struct] = ACTIONS(3564), - [anon_sym_union] = ACTIONS(3567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3570), - [anon_sym_decltype] = ACTIONS(3573), - [anon_sym_virtual] = ACTIONS(3576), - [anon_sym_alignas] = ACTIONS(3579), - [anon_sym_explicit] = ACTIONS(3582), - [anon_sym_typename] = ACTIONS(3585), - [anon_sym_template] = ACTIONS(3850), - [anon_sym_operator] = ACTIONS(3591), - [anon_sym_friend] = ACTIONS(3853), - [anon_sym_public] = ACTIONS(3597), - [anon_sym_private] = ACTIONS(3597), - [anon_sym_protected] = ACTIONS(3597), - [anon_sym_using] = ACTIONS(3856), - [anon_sym_static_assert] = ACTIONS(3859), + [989] = { + [sym_preproc_def] = STATE(998), + [sym_preproc_function_def] = STATE(998), + [sym_preproc_call] = STATE(998), + [sym_preproc_if_in_field_declaration_list] = STATE(998), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(998), + [sym_type_definition] = STATE(998), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(998), + [sym_field_declaration] = STATE(998), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(998), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(998), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(998), + [sym_operator_cast_declaration] = STATE(998), + [sym_constructor_or_destructor_definition] = STATE(998), + [sym_constructor_or_destructor_declaration] = STATE(998), + [sym_friend_declaration] = STATE(998), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(998), + [sym_alias_declaration] = STATE(998), + [sym_static_assert_declaration] = STATE(998), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3760), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1046] = { - [ts_builtin_sym_end] = ACTIONS(3130), - [sym_identifier] = ACTIONS(3128), - [aux_sym_preproc_include_token1] = ACTIONS(3128), - [aux_sym_preproc_def_token1] = ACTIONS(3128), - [aux_sym_preproc_if_token1] = ACTIONS(3128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3128), - [sym_preproc_directive] = ACTIONS(3128), - [anon_sym_LPAREN2] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3130), - [anon_sym_AMP_AMP] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym_typedef] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3130), - [anon_sym___declspec] = ACTIONS(3128), - [anon_sym___based] = ACTIONS(3128), - [anon_sym___cdecl] = ACTIONS(3128), - [anon_sym___clrcall] = ACTIONS(3128), - [anon_sym___stdcall] = ACTIONS(3128), - [anon_sym___fastcall] = ACTIONS(3128), - [anon_sym___thiscall] = ACTIONS(3128), - [anon_sym___vectorcall] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_register] = ACTIONS(3128), - [anon_sym_inline] = ACTIONS(3128), - [anon_sym___inline] = ACTIONS(3128), - [anon_sym___inline__] = ACTIONS(3128), - [anon_sym___forceinline] = ACTIONS(3128), - [anon_sym_thread_local] = ACTIONS(3128), - [anon_sym___thread] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3128), - [anon_sym_volatile] = ACTIONS(3128), - [anon_sym_restrict] = ACTIONS(3128), - [anon_sym___restrict__] = ACTIONS(3128), - [anon_sym__Atomic] = ACTIONS(3128), - [anon_sym__Noreturn] = ACTIONS(3128), - [anon_sym_noreturn] = ACTIONS(3128), - [anon_sym_mutable] = ACTIONS(3128), - [anon_sym_constinit] = ACTIONS(3128), - [anon_sym_consteval] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_goto] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(3128), - [anon_sym_compl] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_sizeof] = ACTIONS(3128), - [anon_sym___alignof__] = ACTIONS(3128), - [anon_sym___alignof] = ACTIONS(3128), - [anon_sym__alignof] = ACTIONS(3128), - [anon_sym_alignof] = ACTIONS(3128), - [anon_sym__Alignof] = ACTIONS(3128), - [anon_sym_offsetof] = ACTIONS(3128), - [anon_sym__Generic] = ACTIONS(3128), - [anon_sym_asm] = ACTIONS(3128), - [anon_sym___asm__] = ACTIONS(3128), - [sym_number_literal] = ACTIONS(3130), - [anon_sym_L_SQUOTE] = ACTIONS(3130), - [anon_sym_u_SQUOTE] = ACTIONS(3130), - [anon_sym_U_SQUOTE] = ACTIONS(3130), - [anon_sym_u8_SQUOTE] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3130), - [anon_sym_L_DQUOTE] = ACTIONS(3130), - [anon_sym_u_DQUOTE] = ACTIONS(3130), - [anon_sym_U_DQUOTE] = ACTIONS(3130), - [anon_sym_u8_DQUOTE] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [anon_sym_NULL] = ACTIONS(3128), - [anon_sym_nullptr] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3128), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_alignas] = ACTIONS(3128), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_typename] = ACTIONS(3128), - [anon_sym_template] = ACTIONS(3128), - [anon_sym_operator] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_static_assert] = ACTIONS(3128), - [anon_sym_concept] = ACTIONS(3128), - [anon_sym_co_return] = ACTIONS(3128), - [anon_sym_co_yield] = ACTIONS(3128), - [anon_sym_R_DQUOTE] = ACTIONS(3130), - [anon_sym_LR_DQUOTE] = ACTIONS(3130), - [anon_sym_uR_DQUOTE] = ACTIONS(3130), - [anon_sym_UR_DQUOTE] = ACTIONS(3130), - [anon_sym_u8R_DQUOTE] = ACTIONS(3130), - [anon_sym_co_await] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), + [990] = { + [sym_preproc_def] = STATE(975), + [sym_preproc_function_def] = STATE(975), + [sym_preproc_call] = STATE(975), + [sym_preproc_if_in_field_declaration_list] = STATE(975), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(975), + [sym_type_definition] = STATE(975), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(975), + [sym_field_declaration] = STATE(975), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(975), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(975), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(975), + [sym_operator_cast_declaration] = STATE(975), + [sym_constructor_or_destructor_definition] = STATE(975), + [sym_constructor_or_destructor_declaration] = STATE(975), + [sym_friend_declaration] = STATE(975), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(975), + [sym_alias_declaration] = STATE(975), + [sym_static_assert_declaration] = STATE(975), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(975), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(3762), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1047] = { - [ts_builtin_sym_end] = ACTIONS(3225), - [sym_identifier] = ACTIONS(3223), - [aux_sym_preproc_include_token1] = ACTIONS(3223), - [aux_sym_preproc_def_token1] = ACTIONS(3223), - [aux_sym_preproc_if_token1] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), - [sym_preproc_directive] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3225), - [anon_sym_AMP_AMP] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym___extension__] = ACTIONS(3223), - [anon_sym_typedef] = ACTIONS(3223), - [anon_sym_extern] = ACTIONS(3223), - [anon_sym___attribute__] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(3225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), - [anon_sym___declspec] = ACTIONS(3223), - [anon_sym___based] = ACTIONS(3223), - [anon_sym___cdecl] = ACTIONS(3223), - [anon_sym___clrcall] = ACTIONS(3223), - [anon_sym___stdcall] = ACTIONS(3223), - [anon_sym___fastcall] = ACTIONS(3223), - [anon_sym___thiscall] = ACTIONS(3223), - [anon_sym___vectorcall] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_signed] = ACTIONS(3223), - [anon_sym_unsigned] = ACTIONS(3223), - [anon_sym_long] = ACTIONS(3223), - [anon_sym_short] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_register] = ACTIONS(3223), - [anon_sym_inline] = ACTIONS(3223), - [anon_sym___inline] = ACTIONS(3223), - [anon_sym___inline__] = ACTIONS(3223), - [anon_sym___forceinline] = ACTIONS(3223), - [anon_sym_thread_local] = ACTIONS(3223), - [anon_sym___thread] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_constexpr] = ACTIONS(3223), - [anon_sym_volatile] = ACTIONS(3223), - [anon_sym_restrict] = ACTIONS(3223), - [anon_sym___restrict__] = ACTIONS(3223), - [anon_sym__Atomic] = ACTIONS(3223), - [anon_sym__Noreturn] = ACTIONS(3223), - [anon_sym_noreturn] = ACTIONS(3223), - [anon_sym_mutable] = ACTIONS(3223), - [anon_sym_constinit] = ACTIONS(3223), - [anon_sym_consteval] = ACTIONS(3223), - [sym_primitive_type] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_union] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_goto] = ACTIONS(3223), - [anon_sym_not] = ACTIONS(3223), - [anon_sym_compl] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_sizeof] = ACTIONS(3223), - [anon_sym___alignof__] = ACTIONS(3223), - [anon_sym___alignof] = ACTIONS(3223), - [anon_sym__alignof] = ACTIONS(3223), - [anon_sym_alignof] = ACTIONS(3223), - [anon_sym__Alignof] = ACTIONS(3223), - [anon_sym_offsetof] = ACTIONS(3223), - [anon_sym__Generic] = ACTIONS(3223), - [anon_sym_asm] = ACTIONS(3223), - [anon_sym___asm__] = ACTIONS(3223), - [sym_number_literal] = ACTIONS(3225), - [anon_sym_L_SQUOTE] = ACTIONS(3225), - [anon_sym_u_SQUOTE] = ACTIONS(3225), - [anon_sym_U_SQUOTE] = ACTIONS(3225), - [anon_sym_u8_SQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_L_DQUOTE] = ACTIONS(3225), - [anon_sym_u_DQUOTE] = ACTIONS(3225), - [anon_sym_U_DQUOTE] = ACTIONS(3225), - [anon_sym_u8_DQUOTE] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [anon_sym_NULL] = ACTIONS(3223), - [anon_sym_nullptr] = ACTIONS(3223), + [991] = { + [ts_builtin_sym_end] = ACTIONS(3088), + [sym_identifier] = ACTIONS(3086), + [aux_sym_preproc_include_token1] = ACTIONS(3086), + [aux_sym_preproc_def_token1] = ACTIONS(3086), + [aux_sym_preproc_if_token1] = ACTIONS(3086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3086), + [sym_preproc_directive] = ACTIONS(3086), + [anon_sym_LPAREN2] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3086), + [anon_sym___extension__] = ACTIONS(3086), + [anon_sym_typedef] = ACTIONS(3086), + [anon_sym_extern] = ACTIONS(3086), + [anon_sym___attribute__] = ACTIONS(3086), + [anon_sym_COLON_COLON] = ACTIONS(3088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3088), + [anon_sym___declspec] = ACTIONS(3086), + [anon_sym___based] = ACTIONS(3086), + [anon_sym___cdecl] = ACTIONS(3086), + [anon_sym___clrcall] = ACTIONS(3086), + [anon_sym___stdcall] = ACTIONS(3086), + [anon_sym___fastcall] = ACTIONS(3086), + [anon_sym___thiscall] = ACTIONS(3086), + [anon_sym___vectorcall] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_signed] = ACTIONS(3086), + [anon_sym_unsigned] = ACTIONS(3086), + [anon_sym_long] = ACTIONS(3086), + [anon_sym_short] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_static] = ACTIONS(3086), + [anon_sym_register] = ACTIONS(3086), + [anon_sym_inline] = ACTIONS(3086), + [anon_sym___inline] = ACTIONS(3086), + [anon_sym___inline__] = ACTIONS(3086), + [anon_sym___forceinline] = ACTIONS(3086), + [anon_sym_thread_local] = ACTIONS(3086), + [anon_sym___thread] = ACTIONS(3086), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_constexpr] = ACTIONS(3086), + [anon_sym_volatile] = ACTIONS(3086), + [anon_sym_restrict] = ACTIONS(3086), + [anon_sym___restrict__] = ACTIONS(3086), + [anon_sym__Atomic] = ACTIONS(3086), + [anon_sym__Noreturn] = ACTIONS(3086), + [anon_sym_noreturn] = ACTIONS(3086), + [anon_sym_mutable] = ACTIONS(3086), + [anon_sym_constinit] = ACTIONS(3086), + [anon_sym_consteval] = ACTIONS(3086), + [sym_primitive_type] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), + [anon_sym_class] = ACTIONS(3086), + [anon_sym_struct] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_switch] = ACTIONS(3086), + [anon_sym_case] = ACTIONS(3086), + [anon_sym_default] = ACTIONS(3086), + [anon_sym_while] = ACTIONS(3086), + [anon_sym_do] = ACTIONS(3086), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_goto] = ACTIONS(3086), + [anon_sym_not] = ACTIONS(3086), + [anon_sym_compl] = ACTIONS(3086), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_sizeof] = ACTIONS(3086), + [anon_sym___alignof__] = ACTIONS(3086), + [anon_sym___alignof] = ACTIONS(3086), + [anon_sym__alignof] = ACTIONS(3086), + [anon_sym_alignof] = ACTIONS(3086), + [anon_sym__Alignof] = ACTIONS(3086), + [anon_sym_offsetof] = ACTIONS(3086), + [anon_sym__Generic] = ACTIONS(3086), + [anon_sym_asm] = ACTIONS(3086), + [anon_sym___asm__] = ACTIONS(3086), + [sym_number_literal] = ACTIONS(3088), + [anon_sym_L_SQUOTE] = ACTIONS(3088), + [anon_sym_u_SQUOTE] = ACTIONS(3088), + [anon_sym_U_SQUOTE] = ACTIONS(3088), + [anon_sym_u8_SQUOTE] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(3088), + [anon_sym_L_DQUOTE] = ACTIONS(3088), + [anon_sym_u_DQUOTE] = ACTIONS(3088), + [anon_sym_U_DQUOTE] = ACTIONS(3088), + [anon_sym_u8_DQUOTE] = ACTIONS(3088), + [anon_sym_DQUOTE] = ACTIONS(3088), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [anon_sym_NULL] = ACTIONS(3086), + [anon_sym_nullptr] = ACTIONS(3086), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3223), - [anon_sym_decltype] = ACTIONS(3223), - [anon_sym_virtual] = ACTIONS(3223), - [anon_sym_alignas] = ACTIONS(3223), - [anon_sym_explicit] = ACTIONS(3223), - [anon_sym_typename] = ACTIONS(3223), - [anon_sym_template] = ACTIONS(3223), - [anon_sym_operator] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_static_assert] = ACTIONS(3223), - [anon_sym_concept] = ACTIONS(3223), - [anon_sym_co_return] = ACTIONS(3223), - [anon_sym_co_yield] = ACTIONS(3223), - [anon_sym_R_DQUOTE] = ACTIONS(3225), - [anon_sym_LR_DQUOTE] = ACTIONS(3225), - [anon_sym_uR_DQUOTE] = ACTIONS(3225), - [anon_sym_UR_DQUOTE] = ACTIONS(3225), - [anon_sym_u8R_DQUOTE] = ACTIONS(3225), - [anon_sym_co_await] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_requires] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), + [sym_auto] = ACTIONS(3086), + [anon_sym_decltype] = ACTIONS(3086), + [anon_sym_virtual] = ACTIONS(3086), + [anon_sym_alignas] = ACTIONS(3086), + [anon_sym_explicit] = ACTIONS(3086), + [anon_sym_typename] = ACTIONS(3086), + [anon_sym_template] = ACTIONS(3086), + [anon_sym_operator] = ACTIONS(3086), + [anon_sym_try] = ACTIONS(3086), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_throw] = ACTIONS(3086), + [anon_sym_namespace] = ACTIONS(3086), + [anon_sym_using] = ACTIONS(3086), + [anon_sym_static_assert] = ACTIONS(3086), + [anon_sym_concept] = ACTIONS(3086), + [anon_sym_co_return] = ACTIONS(3086), + [anon_sym_co_yield] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(3088), + [anon_sym_LR_DQUOTE] = ACTIONS(3088), + [anon_sym_uR_DQUOTE] = ACTIONS(3088), + [anon_sym_UR_DQUOTE] = ACTIONS(3088), + [anon_sym_u8R_DQUOTE] = ACTIONS(3088), + [anon_sym_co_await] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3086), + [sym_this] = ACTIONS(3086), }, - [1048] = { - [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(4054), - [sym__declaration_specifiers] = STATE(6147), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__field_declaration_list_item] = STATE(1036), - [sym_field_declaration] = STATE(1036), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1036), - [sym_operator_cast] = STATE(7172), - [sym_inline_method_definition] = STATE(1036), - [sym__constructor_specifiers] = STATE(2005), - [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(8781), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_using_declaration] = STATE(1036), - [sym_alias_declaration] = STATE(1036), - [sym_static_assert_declaration] = STATE(1036), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5988), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), - [aux_sym__declaration_specifiers_repeat1] = STATE(2329), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3000), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3694), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [992] = { + [ts_builtin_sym_end] = ACTIONS(3092), + [sym_identifier] = ACTIONS(3090), + [aux_sym_preproc_include_token1] = ACTIONS(3090), + [aux_sym_preproc_def_token1] = ACTIONS(3090), + [aux_sym_preproc_if_token1] = ACTIONS(3090), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), + [sym_preproc_directive] = ACTIONS(3090), + [anon_sym_LPAREN2] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym___extension__] = ACTIONS(3090), + [anon_sym_typedef] = ACTIONS(3090), + [anon_sym_extern] = ACTIONS(3090), + [anon_sym___attribute__] = ACTIONS(3090), + [anon_sym_COLON_COLON] = ACTIONS(3092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), + [anon_sym___declspec] = ACTIONS(3090), + [anon_sym___based] = ACTIONS(3090), + [anon_sym___cdecl] = ACTIONS(3090), + [anon_sym___clrcall] = ACTIONS(3090), + [anon_sym___stdcall] = ACTIONS(3090), + [anon_sym___fastcall] = ACTIONS(3090), + [anon_sym___thiscall] = ACTIONS(3090), + [anon_sym___vectorcall] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_signed] = ACTIONS(3090), + [anon_sym_unsigned] = ACTIONS(3090), + [anon_sym_long] = ACTIONS(3090), + [anon_sym_short] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_static] = ACTIONS(3090), + [anon_sym_register] = ACTIONS(3090), + [anon_sym_inline] = ACTIONS(3090), + [anon_sym___inline] = ACTIONS(3090), + [anon_sym___inline__] = ACTIONS(3090), + [anon_sym___forceinline] = ACTIONS(3090), + [anon_sym_thread_local] = ACTIONS(3090), + [anon_sym___thread] = ACTIONS(3090), + [anon_sym_const] = ACTIONS(3090), + [anon_sym_constexpr] = ACTIONS(3090), + [anon_sym_volatile] = ACTIONS(3090), + [anon_sym_restrict] = ACTIONS(3090), + [anon_sym___restrict__] = ACTIONS(3090), + [anon_sym__Atomic] = ACTIONS(3090), + [anon_sym__Noreturn] = ACTIONS(3090), + [anon_sym_noreturn] = ACTIONS(3090), + [anon_sym_mutable] = ACTIONS(3090), + [anon_sym_constinit] = ACTIONS(3090), + [anon_sym_consteval] = ACTIONS(3090), + [sym_primitive_type] = ACTIONS(3090), + [anon_sym_enum] = ACTIONS(3090), + [anon_sym_class] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3090), + [anon_sym_union] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_switch] = ACTIONS(3090), + [anon_sym_case] = ACTIONS(3090), + [anon_sym_default] = ACTIONS(3090), + [anon_sym_while] = ACTIONS(3090), + [anon_sym_do] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_goto] = ACTIONS(3090), + [anon_sym_not] = ACTIONS(3090), + [anon_sym_compl] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_sizeof] = ACTIONS(3090), + [anon_sym___alignof__] = ACTIONS(3090), + [anon_sym___alignof] = ACTIONS(3090), + [anon_sym__alignof] = ACTIONS(3090), + [anon_sym_alignof] = ACTIONS(3090), + [anon_sym__Alignof] = ACTIONS(3090), + [anon_sym_offsetof] = ACTIONS(3090), + [anon_sym__Generic] = ACTIONS(3090), + [anon_sym_asm] = ACTIONS(3090), + [anon_sym___asm__] = ACTIONS(3090), + [sym_number_literal] = ACTIONS(3092), + [anon_sym_L_SQUOTE] = ACTIONS(3092), + [anon_sym_u_SQUOTE] = ACTIONS(3092), + [anon_sym_U_SQUOTE] = ACTIONS(3092), + [anon_sym_u8_SQUOTE] = ACTIONS(3092), + [anon_sym_SQUOTE] = ACTIONS(3092), + [anon_sym_L_DQUOTE] = ACTIONS(3092), + [anon_sym_u_DQUOTE] = ACTIONS(3092), + [anon_sym_U_DQUOTE] = ACTIONS(3092), + [anon_sym_u8_DQUOTE] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(3092), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [anon_sym_NULL] = ACTIONS(3090), + [anon_sym_nullptr] = ACTIONS(3090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3090), + [anon_sym_decltype] = ACTIONS(3090), + [anon_sym_virtual] = ACTIONS(3090), + [anon_sym_alignas] = ACTIONS(3090), + [anon_sym_explicit] = ACTIONS(3090), + [anon_sym_typename] = ACTIONS(3090), + [anon_sym_template] = ACTIONS(3090), + [anon_sym_operator] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3090), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_throw] = ACTIONS(3090), + [anon_sym_namespace] = ACTIONS(3090), + [anon_sym_using] = ACTIONS(3090), + [anon_sym_static_assert] = ACTIONS(3090), + [anon_sym_concept] = ACTIONS(3090), + [anon_sym_co_return] = ACTIONS(3090), + [anon_sym_co_yield] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(3092), + [anon_sym_LR_DQUOTE] = ACTIONS(3092), + [anon_sym_uR_DQUOTE] = ACTIONS(3092), + [anon_sym_UR_DQUOTE] = ACTIONS(3092), + [anon_sym_u8R_DQUOTE] = ACTIONS(3092), + [anon_sym_co_await] = ACTIONS(3090), + [anon_sym_new] = ACTIONS(3090), + [anon_sym_requires] = ACTIONS(3090), + [sym_this] = ACTIONS(3090), + }, + [993] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(3862), + [anon_sym_RBRACE] = ACTIONS(3764), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -232610,987 +225841,632 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_using] = ACTIONS(3706), - [anon_sym_static_assert] = ACTIONS(3708), - }, - [1049] = { - [sym__expression] = STATE(4177), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_initializer_list] = STATE(4290), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(3866), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2098), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym___attribute__] = ACTIONS(2096), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2098), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1050] = { - [sym__expression] = STATE(4976), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_initializer_list] = STATE(5297), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2096), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2098), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(2098), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_GT2] = ACTIONS(2098), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1051] = { - [sym__expression] = STATE(4177), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_initializer_list] = STATE(4290), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(3894), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2098), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_RBRACK] = ACTIONS(2098), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1052] = { - [sym__expression] = STATE(5159), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_initializer_list] = STATE(4290), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(3910), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2098), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2098), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(2096), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_LT_EQ_GT] = ACTIONS(2098), - [anon_sym_or] = ACTIONS(2096), - [anon_sym_and] = ACTIONS(2096), - [anon_sym_bitor] = ACTIONS(2096), - [anon_sym_xor] = ACTIONS(2096), - [anon_sym_bitand] = ACTIONS(2096), - [anon_sym_not_eq] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_sizeof] = ACTIONS(3916), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(2096), - [anon_sym_DOT_STAR] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [994] = { + [ts_builtin_sym_end] = ACTIONS(3238), + [sym_identifier] = ACTIONS(3236), + [aux_sym_preproc_include_token1] = ACTIONS(3236), + [aux_sym_preproc_def_token1] = ACTIONS(3236), + [aux_sym_preproc_if_token1] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3236), + [sym_preproc_directive] = ACTIONS(3236), + [anon_sym_LPAREN2] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3236), + [anon_sym___extension__] = ACTIONS(3236), + [anon_sym_typedef] = ACTIONS(3236), + [anon_sym_extern] = ACTIONS(3236), + [anon_sym___attribute__] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3238), + [anon_sym___declspec] = ACTIONS(3236), + [anon_sym___based] = ACTIONS(3236), + [anon_sym___cdecl] = ACTIONS(3236), + [anon_sym___clrcall] = ACTIONS(3236), + [anon_sym___stdcall] = ACTIONS(3236), + [anon_sym___fastcall] = ACTIONS(3236), + [anon_sym___thiscall] = ACTIONS(3236), + [anon_sym___vectorcall] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_signed] = ACTIONS(3236), + [anon_sym_unsigned] = ACTIONS(3236), + [anon_sym_long] = ACTIONS(3236), + [anon_sym_short] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_register] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym___inline] = ACTIONS(3236), + [anon_sym___inline__] = ACTIONS(3236), + [anon_sym___forceinline] = ACTIONS(3236), + [anon_sym_thread_local] = ACTIONS(3236), + [anon_sym___thread] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_constexpr] = ACTIONS(3236), + [anon_sym_volatile] = ACTIONS(3236), + [anon_sym_restrict] = ACTIONS(3236), + [anon_sym___restrict__] = ACTIONS(3236), + [anon_sym__Atomic] = ACTIONS(3236), + [anon_sym__Noreturn] = ACTIONS(3236), + [anon_sym_noreturn] = ACTIONS(3236), + [anon_sym_mutable] = ACTIONS(3236), + [anon_sym_constinit] = ACTIONS(3236), + [anon_sym_consteval] = ACTIONS(3236), + [sym_primitive_type] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_case] = ACTIONS(3236), + [anon_sym_default] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_goto] = ACTIONS(3236), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_sizeof] = ACTIONS(3236), + [anon_sym___alignof__] = ACTIONS(3236), + [anon_sym___alignof] = ACTIONS(3236), + [anon_sym__alignof] = ACTIONS(3236), + [anon_sym_alignof] = ACTIONS(3236), + [anon_sym__Alignof] = ACTIONS(3236), + [anon_sym_offsetof] = ACTIONS(3236), + [anon_sym__Generic] = ACTIONS(3236), + [anon_sym_asm] = ACTIONS(3236), + [anon_sym___asm__] = ACTIONS(3236), + [sym_number_literal] = ACTIONS(3238), + [anon_sym_L_SQUOTE] = ACTIONS(3238), + [anon_sym_u_SQUOTE] = ACTIONS(3238), + [anon_sym_U_SQUOTE] = ACTIONS(3238), + [anon_sym_u8_SQUOTE] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_L_DQUOTE] = ACTIONS(3238), + [anon_sym_u_DQUOTE] = ACTIONS(3238), + [anon_sym_U_DQUOTE] = ACTIONS(3238), + [anon_sym_u8_DQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [anon_sym_NULL] = ACTIONS(3236), + [anon_sym_nullptr] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3236), + [anon_sym_virtual] = ACTIONS(3236), + [anon_sym_alignas] = ACTIONS(3236), + [anon_sym_explicit] = ACTIONS(3236), + [anon_sym_typename] = ACTIONS(3236), + [anon_sym_template] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_static_assert] = ACTIONS(3236), + [anon_sym_concept] = ACTIONS(3236), + [anon_sym_co_return] = ACTIONS(3236), + [anon_sym_co_yield] = ACTIONS(3236), + [anon_sym_R_DQUOTE] = ACTIONS(3238), + [anon_sym_LR_DQUOTE] = ACTIONS(3238), + [anon_sym_uR_DQUOTE] = ACTIONS(3238), + [anon_sym_UR_DQUOTE] = ACTIONS(3238), + [anon_sym_u8R_DQUOTE] = ACTIONS(3238), + [anon_sym_co_await] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_requires] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), }, - [1053] = { - [sym__expression] = STATE(5109), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3922), - [anon_sym_COMMA] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3894), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(3926), - [anon_sym_PERCENT] = ACTIONS(3922), - [anon_sym_PIPE_PIPE] = ACTIONS(3922), - [anon_sym_AMP_AMP] = ACTIONS(3922), - [anon_sym_PIPE] = ACTIONS(3926), - [anon_sym_CARET] = ACTIONS(3922), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(3922), - [anon_sym_BANG_EQ] = ACTIONS(3922), - [anon_sym_GT] = ACTIONS(3926), - [anon_sym_GT_EQ] = ACTIONS(3922), - [anon_sym_LT_EQ] = ACTIONS(3926), - [anon_sym_LT] = ACTIONS(3926), - [anon_sym_LT_LT] = ACTIONS(3922), - [anon_sym_GT_GT] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_QMARK] = ACTIONS(3922), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_LT_EQ_GT] = ACTIONS(3922), - [anon_sym_or] = ACTIONS(3926), - [anon_sym_and] = ACTIONS(3926), - [anon_sym_bitor] = ACTIONS(3926), - [anon_sym_xor] = ACTIONS(3926), - [anon_sym_bitand] = ACTIONS(3926), - [anon_sym_not_eq] = ACTIONS(3926), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(3926), - [anon_sym_DOT_STAR] = ACTIONS(3922), - [anon_sym_DASH_GT] = ACTIONS(3922), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [995] = { + [ts_builtin_sym_end] = ACTIONS(3177), + [sym_identifier] = ACTIONS(3175), + [aux_sym_preproc_include_token1] = ACTIONS(3175), + [aux_sym_preproc_def_token1] = ACTIONS(3175), + [aux_sym_preproc_if_token1] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3175), + [sym_preproc_directive] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym___extension__] = ACTIONS(3175), + [anon_sym_typedef] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym___attribute__] = ACTIONS(3175), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3177), + [anon_sym___declspec] = ACTIONS(3175), + [anon_sym___based] = ACTIONS(3175), + [anon_sym___cdecl] = ACTIONS(3175), + [anon_sym___clrcall] = ACTIONS(3175), + [anon_sym___stdcall] = ACTIONS(3175), + [anon_sym___fastcall] = ACTIONS(3175), + [anon_sym___thiscall] = ACTIONS(3175), + [anon_sym___vectorcall] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_signed] = ACTIONS(3175), + [anon_sym_unsigned] = ACTIONS(3175), + [anon_sym_long] = ACTIONS(3175), + [anon_sym_short] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_register] = ACTIONS(3175), + [anon_sym_inline] = ACTIONS(3175), + [anon_sym___inline] = ACTIONS(3175), + [anon_sym___inline__] = ACTIONS(3175), + [anon_sym___forceinline] = ACTIONS(3175), + [anon_sym_thread_local] = ACTIONS(3175), + [anon_sym___thread] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_constexpr] = ACTIONS(3175), + [anon_sym_volatile] = ACTIONS(3175), + [anon_sym_restrict] = ACTIONS(3175), + [anon_sym___restrict__] = ACTIONS(3175), + [anon_sym__Atomic] = ACTIONS(3175), + [anon_sym__Noreturn] = ACTIONS(3175), + [anon_sym_noreturn] = ACTIONS(3175), + [anon_sym_mutable] = ACTIONS(3175), + [anon_sym_constinit] = ACTIONS(3175), + [anon_sym_consteval] = ACTIONS(3175), + [sym_primitive_type] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_class] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_do] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym_not] = ACTIONS(3175), + [anon_sym_compl] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3175), + [anon_sym___alignof__] = ACTIONS(3175), + [anon_sym___alignof] = ACTIONS(3175), + [anon_sym__alignof] = ACTIONS(3175), + [anon_sym_alignof] = ACTIONS(3175), + [anon_sym__Alignof] = ACTIONS(3175), + [anon_sym_offsetof] = ACTIONS(3175), + [anon_sym__Generic] = ACTIONS(3175), + [anon_sym_asm] = ACTIONS(3175), + [anon_sym___asm__] = ACTIONS(3175), + [sym_number_literal] = ACTIONS(3177), + [anon_sym_L_SQUOTE] = ACTIONS(3177), + [anon_sym_u_SQUOTE] = ACTIONS(3177), + [anon_sym_U_SQUOTE] = ACTIONS(3177), + [anon_sym_u8_SQUOTE] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3177), + [anon_sym_L_DQUOTE] = ACTIONS(3177), + [anon_sym_u_DQUOTE] = ACTIONS(3177), + [anon_sym_U_DQUOTE] = ACTIONS(3177), + [anon_sym_u8_DQUOTE] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(3177), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [anon_sym_NULL] = ACTIONS(3175), + [anon_sym_nullptr] = ACTIONS(3175), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3175), + [anon_sym_decltype] = ACTIONS(3175), + [anon_sym_virtual] = ACTIONS(3175), + [anon_sym_alignas] = ACTIONS(3175), + [anon_sym_explicit] = ACTIONS(3175), + [anon_sym_typename] = ACTIONS(3175), + [anon_sym_template] = ACTIONS(3175), + [anon_sym_operator] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [anon_sym_delete] = ACTIONS(3175), + [anon_sym_throw] = ACTIONS(3175), + [anon_sym_namespace] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3175), + [anon_sym_static_assert] = ACTIONS(3175), + [anon_sym_concept] = ACTIONS(3175), + [anon_sym_co_return] = ACTIONS(3175), + [anon_sym_co_yield] = ACTIONS(3175), + [anon_sym_R_DQUOTE] = ACTIONS(3177), + [anon_sym_LR_DQUOTE] = ACTIONS(3177), + [anon_sym_uR_DQUOTE] = ACTIONS(3177), + [anon_sym_UR_DQUOTE] = ACTIONS(3177), + [anon_sym_u8R_DQUOTE] = ACTIONS(3177), + [anon_sym_co_await] = ACTIONS(3175), + [anon_sym_new] = ACTIONS(3175), + [anon_sym_requires] = ACTIONS(3175), + [sym_this] = ACTIONS(3175), }, - [1054] = { - [sym__declaration_modifiers] = STATE(2349), - [sym__declaration_specifiers] = STATE(6732), - [sym_attribute_specifier] = STATE(2349), - [sym_attribute_declaration] = STATE(2349), - [sym_ms_declspec_modifier] = STATE(2349), - [sym_storage_class_specifier] = STATE(2349), - [sym_type_qualifier] = STATE(2349), - [sym__type_specifier] = STATE(4572), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2349), - [sym_alignas_specifier] = STATE(2349), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7036), - [sym_qualified_type_identifier] = STATE(3383), - [aux_sym__declaration_specifiers_repeat1] = STATE(2349), - [aux_sym_sized_type_specifier_repeat1] = STATE(3663), - [sym_identifier] = ACTIONS(3930), - [anon_sym_COMMA] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3934), - [anon_sym_TILDE] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3934), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3934), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3932), - [anon_sym_PIPE] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3932), - [anon_sym_BANG_EQ] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3932), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3934), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3934), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(3938), - [anon_sym_unsigned] = ACTIONS(3938), - [anon_sym_long] = ACTIONS(3938), - [anon_sym_short] = ACTIONS(3938), - [anon_sym_EQ] = ACTIONS(3934), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3940), - [anon_sym_enum] = ACTIONS(3942), - [anon_sym_class] = ACTIONS(3944), - [anon_sym_struct] = ACTIONS(3946), - [anon_sym_union] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3932), - [anon_sym_SLASH_EQ] = ACTIONS(3932), - [anon_sym_PERCENT_EQ] = ACTIONS(3932), - [anon_sym_PLUS_EQ] = ACTIONS(3932), - [anon_sym_DASH_EQ] = ACTIONS(3932), - [anon_sym_LT_LT_EQ] = ACTIONS(3932), - [anon_sym_GT_GT_EQ] = ACTIONS(3932), - [anon_sym_AMP_EQ] = ACTIONS(3932), - [anon_sym_CARET_EQ] = ACTIONS(3932), - [anon_sym_PIPE_EQ] = ACTIONS(3932), - [anon_sym_and_eq] = ACTIONS(3934), - [anon_sym_or_eq] = ACTIONS(3934), - [anon_sym_xor_eq] = ACTIONS(3934), - [anon_sym_not] = ACTIONS(3934), - [anon_sym_compl] = ACTIONS(3934), - [anon_sym_LT_EQ_GT] = ACTIONS(3932), - [anon_sym_or] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3934), - [anon_sym_bitor] = ACTIONS(3934), - [anon_sym_xor] = ACTIONS(3934), - [anon_sym_bitand] = ACTIONS(3934), - [anon_sym_not_eq] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3932), - [anon_sym_DASH_GT] = ACTIONS(3934), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3952), - [anon_sym_co_await] = ACTIONS(3934), - [anon_sym_new] = ACTIONS(3952), - [anon_sym_DASH_GT_STAR] = ACTIONS(3932), - [anon_sym_LPAREN_RPAREN] = ACTIONS(3932), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3932), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3954), + [996] = { + [ts_builtin_sym_end] = ACTIONS(3006), + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym___alignof__] = ACTIONS(3004), + [anon_sym___alignof] = ACTIONS(3004), + [anon_sym__alignof] = ACTIONS(3004), + [anon_sym_alignof] = ACTIONS(3004), + [anon_sym__Alignof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), }, - [1055] = { - [sym__declaration_modifiers] = STATE(2349), - [sym__declaration_specifiers] = STATE(6732), - [sym_attribute_specifier] = STATE(2349), - [sym_attribute_declaration] = STATE(2349), - [sym_ms_declspec_modifier] = STATE(2349), - [sym_storage_class_specifier] = STATE(2349), - [sym_type_qualifier] = STATE(2349), - [sym__type_specifier] = STATE(4572), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2349), - [sym_alignas_specifier] = STATE(2349), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7036), - [sym_qualified_type_identifier] = STATE(3383), - [aux_sym__declaration_specifiers_repeat1] = STATE(2349), - [aux_sym_sized_type_specifier_repeat1] = STATE(3663), - [sym_identifier] = ACTIONS(3930), - [anon_sym_COMMA] = ACTIONS(3956), - [anon_sym_BANG] = ACTIONS(3958), - [anon_sym_TILDE] = ACTIONS(3956), - [anon_sym_DASH] = ACTIONS(3958), - [anon_sym_PLUS] = ACTIONS(3958), - [anon_sym_STAR] = ACTIONS(3958), - [anon_sym_SLASH] = ACTIONS(3958), - [anon_sym_PERCENT] = ACTIONS(3958), - [anon_sym_PIPE_PIPE] = ACTIONS(3956), - [anon_sym_AMP_AMP] = ACTIONS(3956), - [anon_sym_PIPE] = ACTIONS(3958), - [anon_sym_CARET] = ACTIONS(3958), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_EQ_EQ] = ACTIONS(3956), - [anon_sym_BANG_EQ] = ACTIONS(3956), - [anon_sym_GT] = ACTIONS(3958), - [anon_sym_GT_EQ] = ACTIONS(3956), - [anon_sym_LT_EQ] = ACTIONS(3958), - [anon_sym_LT] = ACTIONS(3958), - [anon_sym_LT_LT] = ACTIONS(3958), - [anon_sym_GT_GT] = ACTIONS(3958), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(3938), - [anon_sym_unsigned] = ACTIONS(3938), - [anon_sym_long] = ACTIONS(3938), - [anon_sym_short] = ACTIONS(3938), - [anon_sym_EQ] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3940), - [anon_sym_enum] = ACTIONS(3942), - [anon_sym_class] = ACTIONS(3944), - [anon_sym_struct] = ACTIONS(3946), - [anon_sym_union] = ACTIONS(3948), - [anon_sym_STAR_EQ] = ACTIONS(3956), - [anon_sym_SLASH_EQ] = ACTIONS(3956), - [anon_sym_PERCENT_EQ] = ACTIONS(3956), - [anon_sym_PLUS_EQ] = ACTIONS(3956), - [anon_sym_DASH_EQ] = ACTIONS(3956), - [anon_sym_LT_LT_EQ] = ACTIONS(3956), - [anon_sym_GT_GT_EQ] = ACTIONS(3956), - [anon_sym_AMP_EQ] = ACTIONS(3956), - [anon_sym_CARET_EQ] = ACTIONS(3956), - [anon_sym_PIPE_EQ] = ACTIONS(3956), - [anon_sym_and_eq] = ACTIONS(3958), - [anon_sym_or_eq] = ACTIONS(3958), - [anon_sym_xor_eq] = ACTIONS(3958), - [anon_sym_not] = ACTIONS(3958), - [anon_sym_compl] = ACTIONS(3958), - [anon_sym_LT_EQ_GT] = ACTIONS(3956), - [anon_sym_or] = ACTIONS(3958), - [anon_sym_and] = ACTIONS(3958), - [anon_sym_bitor] = ACTIONS(3958), - [anon_sym_xor] = ACTIONS(3958), - [anon_sym_bitand] = ACTIONS(3958), - [anon_sym_not_eq] = ACTIONS(3958), - [anon_sym_DASH_DASH] = ACTIONS(3956), - [anon_sym_PLUS_PLUS] = ACTIONS(3956), - [anon_sym_DASH_GT] = ACTIONS(3958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3960), - [anon_sym_co_await] = ACTIONS(3958), - [anon_sym_new] = ACTIONS(3960), - [anon_sym_DASH_GT_STAR] = ACTIONS(3956), - [anon_sym_LPAREN_RPAREN] = ACTIONS(3956), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3956), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3962), + [997] = { + [ts_builtin_sym_end] = ACTIONS(3189), + [sym_identifier] = ACTIONS(3187), + [aux_sym_preproc_include_token1] = ACTIONS(3187), + [aux_sym_preproc_def_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3187), + [sym_preproc_directive] = ACTIONS(3187), + [anon_sym_LPAREN2] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym___extension__] = ACTIONS(3187), + [anon_sym_typedef] = ACTIONS(3187), + [anon_sym_extern] = ACTIONS(3187), + [anon_sym___attribute__] = ACTIONS(3187), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3189), + [anon_sym___declspec] = ACTIONS(3187), + [anon_sym___based] = ACTIONS(3187), + [anon_sym___cdecl] = ACTIONS(3187), + [anon_sym___clrcall] = ACTIONS(3187), + [anon_sym___stdcall] = ACTIONS(3187), + [anon_sym___fastcall] = ACTIONS(3187), + [anon_sym___thiscall] = ACTIONS(3187), + [anon_sym___vectorcall] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3187), + [anon_sym_unsigned] = ACTIONS(3187), + [anon_sym_long] = ACTIONS(3187), + [anon_sym_short] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_register] = ACTIONS(3187), + [anon_sym_inline] = ACTIONS(3187), + [anon_sym___inline] = ACTIONS(3187), + [anon_sym___inline__] = ACTIONS(3187), + [anon_sym___forceinline] = ACTIONS(3187), + [anon_sym_thread_local] = ACTIONS(3187), + [anon_sym___thread] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_constexpr] = ACTIONS(3187), + [anon_sym_volatile] = ACTIONS(3187), + [anon_sym_restrict] = ACTIONS(3187), + [anon_sym___restrict__] = ACTIONS(3187), + [anon_sym__Atomic] = ACTIONS(3187), + [anon_sym__Noreturn] = ACTIONS(3187), + [anon_sym_noreturn] = ACTIONS(3187), + [anon_sym_mutable] = ACTIONS(3187), + [anon_sym_constinit] = ACTIONS(3187), + [anon_sym_consteval] = ACTIONS(3187), + [sym_primitive_type] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_goto] = ACTIONS(3187), + [anon_sym_not] = ACTIONS(3187), + [anon_sym_compl] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_sizeof] = ACTIONS(3187), + [anon_sym___alignof__] = ACTIONS(3187), + [anon_sym___alignof] = ACTIONS(3187), + [anon_sym__alignof] = ACTIONS(3187), + [anon_sym_alignof] = ACTIONS(3187), + [anon_sym__Alignof] = ACTIONS(3187), + [anon_sym_offsetof] = ACTIONS(3187), + [anon_sym__Generic] = ACTIONS(3187), + [anon_sym_asm] = ACTIONS(3187), + [anon_sym___asm__] = ACTIONS(3187), + [sym_number_literal] = ACTIONS(3189), + [anon_sym_L_SQUOTE] = ACTIONS(3189), + [anon_sym_u_SQUOTE] = ACTIONS(3189), + [anon_sym_U_SQUOTE] = ACTIONS(3189), + [anon_sym_u8_SQUOTE] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3189), + [anon_sym_L_DQUOTE] = ACTIONS(3189), + [anon_sym_u_DQUOTE] = ACTIONS(3189), + [anon_sym_U_DQUOTE] = ACTIONS(3189), + [anon_sym_u8_DQUOTE] = ACTIONS(3189), + [anon_sym_DQUOTE] = ACTIONS(3189), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [anon_sym_NULL] = ACTIONS(3187), + [anon_sym_nullptr] = ACTIONS(3187), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3187), + [anon_sym_decltype] = ACTIONS(3187), + [anon_sym_virtual] = ACTIONS(3187), + [anon_sym_alignas] = ACTIONS(3187), + [anon_sym_explicit] = ACTIONS(3187), + [anon_sym_typename] = ACTIONS(3187), + [anon_sym_template] = ACTIONS(3187), + [anon_sym_operator] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_static_assert] = ACTIONS(3187), + [anon_sym_concept] = ACTIONS(3187), + [anon_sym_co_return] = ACTIONS(3187), + [anon_sym_co_yield] = ACTIONS(3187), + [anon_sym_R_DQUOTE] = ACTIONS(3189), + [anon_sym_LR_DQUOTE] = ACTIONS(3189), + [anon_sym_uR_DQUOTE] = ACTIONS(3189), + [anon_sym_UR_DQUOTE] = ACTIONS(3189), + [anon_sym_u8R_DQUOTE] = ACTIONS(3189), + [anon_sym_co_await] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_requires] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), }, - [1056] = { - [sym_function_definition] = STATE(372), - [sym_declaration] = STATE(372), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6731), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(372), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2015), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(372), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2015), - [sym_operator_cast_definition] = STATE(372), - [sym_operator_cast_declaration] = STATE(372), - [sym_constructor_or_destructor_definition] = STATE(372), - [sym_constructor_or_destructor_declaration] = STATE(372), - [sym_friend_declaration] = STATE(372), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(372), - [sym_concept_definition] = STATE(372), - [sym_requires_clause] = STATE(1069), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2015), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [998] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(3766), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -233610,106 +226486,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3968), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3970), - [anon_sym_using] = ACTIONS(3972), - [anon_sym_concept] = ACTIONS(333), - [anon_sym_requires] = ACTIONS(3974), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1057] = { - [sym_function_definition] = STATE(1008), - [sym_declaration] = STATE(1008), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5530), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2244), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6734), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4009), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(1008), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2016), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1008), - [sym_operator_cast] = STATE(7203), - [sym__constructor_specifiers] = STATE(2016), - [sym_operator_cast_definition] = STATE(1008), - [sym_operator_cast_declaration] = STATE(1008), - [sym_constructor_or_destructor_definition] = STATE(1008), - [sym_constructor_or_destructor_declaration] = STATE(1008), - [sym_friend_declaration] = STATE(1008), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(1008), - [sym_concept_definition] = STATE(1008), - [sym_requires_clause] = STATE(1067), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7203), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2016), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [999] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(3768), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -233729,106 +226615,1148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3976), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3978), - [anon_sym_using] = ACTIONS(3980), - [anon_sym_concept] = ACTIONS(145), - [anon_sym_requires] = ACTIONS(3974), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1058] = { - [sym_function_definition] = STATE(2546), - [sym_declaration] = STATE(2546), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5508), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2254), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4032), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(2546), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(2546), - [sym_operator_cast] = STATE(7172), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(2546), - [sym_operator_cast_declaration] = STATE(2546), - [sym_constructor_or_destructor_definition] = STATE(2546), - [sym_constructor_or_destructor_declaration] = STATE(2546), - [sym_friend_declaration] = STATE(2546), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(2546), - [sym_concept_definition] = STATE(2546), - [sym_requires_clause] = STATE(1071), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [1000] = { + [ts_builtin_sym_end] = ACTIONS(3006), + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym___alignof__] = ACTIONS(3004), + [anon_sym___alignof] = ACTIONS(3004), + [anon_sym__alignof] = ACTIONS(3004), + [anon_sym_alignof] = ACTIONS(3004), + [anon_sym__Alignof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), + }, + [1001] = { + [ts_builtin_sym_end] = ACTIONS(3242), + [sym_identifier] = ACTIONS(3240), + [aux_sym_preproc_include_token1] = ACTIONS(3240), + [aux_sym_preproc_def_token1] = ACTIONS(3240), + [aux_sym_preproc_if_token1] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3240), + [sym_preproc_directive] = ACTIONS(3240), + [anon_sym_LPAREN2] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_typedef] = ACTIONS(3240), + [anon_sym_extern] = ACTIONS(3240), + [anon_sym___attribute__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3242), + [anon_sym___declspec] = ACTIONS(3240), + [anon_sym___based] = ACTIONS(3240), + [anon_sym___cdecl] = ACTIONS(3240), + [anon_sym___clrcall] = ACTIONS(3240), + [anon_sym___stdcall] = ACTIONS(3240), + [anon_sym___fastcall] = ACTIONS(3240), + [anon_sym___thiscall] = ACTIONS(3240), + [anon_sym___vectorcall] = ACTIONS(3240), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3240), + [anon_sym_unsigned] = ACTIONS(3240), + [anon_sym_long] = ACTIONS(3240), + [anon_sym_short] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_register] = ACTIONS(3240), + [anon_sym_inline] = ACTIONS(3240), + [anon_sym___inline] = ACTIONS(3240), + [anon_sym___inline__] = ACTIONS(3240), + [anon_sym___forceinline] = ACTIONS(3240), + [anon_sym_thread_local] = ACTIONS(3240), + [anon_sym___thread] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_constexpr] = ACTIONS(3240), + [anon_sym_volatile] = ACTIONS(3240), + [anon_sym_restrict] = ACTIONS(3240), + [anon_sym___restrict__] = ACTIONS(3240), + [anon_sym__Atomic] = ACTIONS(3240), + [anon_sym__Noreturn] = ACTIONS(3240), + [anon_sym_noreturn] = ACTIONS(3240), + [anon_sym_mutable] = ACTIONS(3240), + [anon_sym_constinit] = ACTIONS(3240), + [anon_sym_consteval] = ACTIONS(3240), + [sym_primitive_type] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_switch] = ACTIONS(3240), + [anon_sym_case] = ACTIONS(3240), + [anon_sym_default] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_do] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_goto] = ACTIONS(3240), + [anon_sym_not] = ACTIONS(3240), + [anon_sym_compl] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_sizeof] = ACTIONS(3240), + [anon_sym___alignof__] = ACTIONS(3240), + [anon_sym___alignof] = ACTIONS(3240), + [anon_sym__alignof] = ACTIONS(3240), + [anon_sym_alignof] = ACTIONS(3240), + [anon_sym__Alignof] = ACTIONS(3240), + [anon_sym_offsetof] = ACTIONS(3240), + [anon_sym__Generic] = ACTIONS(3240), + [anon_sym_asm] = ACTIONS(3240), + [anon_sym___asm__] = ACTIONS(3240), + [sym_number_literal] = ACTIONS(3242), + [anon_sym_L_SQUOTE] = ACTIONS(3242), + [anon_sym_u_SQUOTE] = ACTIONS(3242), + [anon_sym_U_SQUOTE] = ACTIONS(3242), + [anon_sym_u8_SQUOTE] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_L_DQUOTE] = ACTIONS(3242), + [anon_sym_u_DQUOTE] = ACTIONS(3242), + [anon_sym_U_DQUOTE] = ACTIONS(3242), + [anon_sym_u8_DQUOTE] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(3242), + [sym_true] = ACTIONS(3240), + [sym_false] = ACTIONS(3240), + [anon_sym_NULL] = ACTIONS(3240), + [anon_sym_nullptr] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3240), + [anon_sym_decltype] = ACTIONS(3240), + [anon_sym_virtual] = ACTIONS(3240), + [anon_sym_alignas] = ACTIONS(3240), + [anon_sym_explicit] = ACTIONS(3240), + [anon_sym_typename] = ACTIONS(3240), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_operator] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3240), + [anon_sym_throw] = ACTIONS(3240), + [anon_sym_namespace] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_static_assert] = ACTIONS(3240), + [anon_sym_concept] = ACTIONS(3240), + [anon_sym_co_return] = ACTIONS(3240), + [anon_sym_co_yield] = ACTIONS(3240), + [anon_sym_R_DQUOTE] = ACTIONS(3242), + [anon_sym_LR_DQUOTE] = ACTIONS(3242), + [anon_sym_uR_DQUOTE] = ACTIONS(3242), + [anon_sym_UR_DQUOTE] = ACTIONS(3242), + [anon_sym_u8R_DQUOTE] = ACTIONS(3242), + [anon_sym_co_await] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(3240), + [anon_sym_requires] = ACTIONS(3240), + [sym_this] = ACTIONS(3240), + }, + [1002] = { + [ts_builtin_sym_end] = ACTIONS(3308), + [sym_identifier] = ACTIONS(3306), + [aux_sym_preproc_include_token1] = ACTIONS(3306), + [aux_sym_preproc_def_token1] = ACTIONS(3306), + [aux_sym_preproc_if_token1] = ACTIONS(3306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3306), + [sym_preproc_directive] = ACTIONS(3306), + [anon_sym_LPAREN2] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym___extension__] = ACTIONS(3306), + [anon_sym_typedef] = ACTIONS(3306), + [anon_sym_extern] = ACTIONS(3306), + [anon_sym___attribute__] = ACTIONS(3306), + [anon_sym_COLON_COLON] = ACTIONS(3308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3308), + [anon_sym___declspec] = ACTIONS(3306), + [anon_sym___based] = ACTIONS(3306), + [anon_sym___cdecl] = ACTIONS(3306), + [anon_sym___clrcall] = ACTIONS(3306), + [anon_sym___stdcall] = ACTIONS(3306), + [anon_sym___fastcall] = ACTIONS(3306), + [anon_sym___thiscall] = ACTIONS(3306), + [anon_sym___vectorcall] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_signed] = ACTIONS(3306), + [anon_sym_unsigned] = ACTIONS(3306), + [anon_sym_long] = ACTIONS(3306), + [anon_sym_short] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_register] = ACTIONS(3306), + [anon_sym_inline] = ACTIONS(3306), + [anon_sym___inline] = ACTIONS(3306), + [anon_sym___inline__] = ACTIONS(3306), + [anon_sym___forceinline] = ACTIONS(3306), + [anon_sym_thread_local] = ACTIONS(3306), + [anon_sym___thread] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_constexpr] = ACTIONS(3306), + [anon_sym_volatile] = ACTIONS(3306), + [anon_sym_restrict] = ACTIONS(3306), + [anon_sym___restrict__] = ACTIONS(3306), + [anon_sym__Atomic] = ACTIONS(3306), + [anon_sym__Noreturn] = ACTIONS(3306), + [anon_sym_noreturn] = ACTIONS(3306), + [anon_sym_mutable] = ACTIONS(3306), + [anon_sym_constinit] = ACTIONS(3306), + [anon_sym_consteval] = ACTIONS(3306), + [sym_primitive_type] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_struct] = ACTIONS(3306), + [anon_sym_union] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_case] = ACTIONS(3306), + [anon_sym_default] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_goto] = ACTIONS(3306), + [anon_sym_not] = ACTIONS(3306), + [anon_sym_compl] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_sizeof] = ACTIONS(3306), + [anon_sym___alignof__] = ACTIONS(3306), + [anon_sym___alignof] = ACTIONS(3306), + [anon_sym__alignof] = ACTIONS(3306), + [anon_sym_alignof] = ACTIONS(3306), + [anon_sym__Alignof] = ACTIONS(3306), + [anon_sym_offsetof] = ACTIONS(3306), + [anon_sym__Generic] = ACTIONS(3306), + [anon_sym_asm] = ACTIONS(3306), + [anon_sym___asm__] = ACTIONS(3306), + [sym_number_literal] = ACTIONS(3308), + [anon_sym_L_SQUOTE] = ACTIONS(3308), + [anon_sym_u_SQUOTE] = ACTIONS(3308), + [anon_sym_U_SQUOTE] = ACTIONS(3308), + [anon_sym_u8_SQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_L_DQUOTE] = ACTIONS(3308), + [anon_sym_u_DQUOTE] = ACTIONS(3308), + [anon_sym_U_DQUOTE] = ACTIONS(3308), + [anon_sym_u8_DQUOTE] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [anon_sym_NULL] = ACTIONS(3306), + [anon_sym_nullptr] = ACTIONS(3306), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3306), + [anon_sym_decltype] = ACTIONS(3306), + [anon_sym_virtual] = ACTIONS(3306), + [anon_sym_alignas] = ACTIONS(3306), + [anon_sym_explicit] = ACTIONS(3306), + [anon_sym_typename] = ACTIONS(3306), + [anon_sym_template] = ACTIONS(3306), + [anon_sym_operator] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_static_assert] = ACTIONS(3306), + [anon_sym_concept] = ACTIONS(3306), + [anon_sym_co_return] = ACTIONS(3306), + [anon_sym_co_yield] = ACTIONS(3306), + [anon_sym_R_DQUOTE] = ACTIONS(3308), + [anon_sym_LR_DQUOTE] = ACTIONS(3308), + [anon_sym_uR_DQUOTE] = ACTIONS(3308), + [anon_sym_UR_DQUOTE] = ACTIONS(3308), + [anon_sym_u8R_DQUOTE] = ACTIONS(3308), + [anon_sym_co_await] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_requires] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), + }, + [1003] = { + [ts_builtin_sym_end] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3207), + [aux_sym_preproc_include_token1] = ACTIONS(3207), + [aux_sym_preproc_def_token1] = ACTIONS(3207), + [aux_sym_preproc_if_token1] = ACTIONS(3207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3207), + [sym_preproc_directive] = ACTIONS(3207), + [anon_sym_LPAREN2] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_AMP_AMP] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3207), + [anon_sym___extension__] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3207), + [anon_sym___attribute__] = ACTIONS(3207), + [anon_sym_COLON_COLON] = ACTIONS(3209), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3209), + [anon_sym___declspec] = ACTIONS(3207), + [anon_sym___based] = ACTIONS(3207), + [anon_sym___cdecl] = ACTIONS(3207), + [anon_sym___clrcall] = ACTIONS(3207), + [anon_sym___stdcall] = ACTIONS(3207), + [anon_sym___fastcall] = ACTIONS(3207), + [anon_sym___thiscall] = ACTIONS(3207), + [anon_sym___vectorcall] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_signed] = ACTIONS(3207), + [anon_sym_unsigned] = ACTIONS(3207), + [anon_sym_long] = ACTIONS(3207), + [anon_sym_short] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_register] = ACTIONS(3207), + [anon_sym_inline] = ACTIONS(3207), + [anon_sym___inline] = ACTIONS(3207), + [anon_sym___inline__] = ACTIONS(3207), + [anon_sym___forceinline] = ACTIONS(3207), + [anon_sym_thread_local] = ACTIONS(3207), + [anon_sym___thread] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_constexpr] = ACTIONS(3207), + [anon_sym_volatile] = ACTIONS(3207), + [anon_sym_restrict] = ACTIONS(3207), + [anon_sym___restrict__] = ACTIONS(3207), + [anon_sym__Atomic] = ACTIONS(3207), + [anon_sym__Noreturn] = ACTIONS(3207), + [anon_sym_noreturn] = ACTIONS(3207), + [anon_sym_mutable] = ACTIONS(3207), + [anon_sym_constinit] = ACTIONS(3207), + [anon_sym_consteval] = ACTIONS(3207), + [sym_primitive_type] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3207), + [anon_sym_union] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_case] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_goto] = ACTIONS(3207), + [anon_sym_not] = ACTIONS(3207), + [anon_sym_compl] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_sizeof] = ACTIONS(3207), + [anon_sym___alignof__] = ACTIONS(3207), + [anon_sym___alignof] = ACTIONS(3207), + [anon_sym__alignof] = ACTIONS(3207), + [anon_sym_alignof] = ACTIONS(3207), + [anon_sym__Alignof] = ACTIONS(3207), + [anon_sym_offsetof] = ACTIONS(3207), + [anon_sym__Generic] = ACTIONS(3207), + [anon_sym_asm] = ACTIONS(3207), + [anon_sym___asm__] = ACTIONS(3207), + [sym_number_literal] = ACTIONS(3209), + [anon_sym_L_SQUOTE] = ACTIONS(3209), + [anon_sym_u_SQUOTE] = ACTIONS(3209), + [anon_sym_U_SQUOTE] = ACTIONS(3209), + [anon_sym_u8_SQUOTE] = ACTIONS(3209), + [anon_sym_SQUOTE] = ACTIONS(3209), + [anon_sym_L_DQUOTE] = ACTIONS(3209), + [anon_sym_u_DQUOTE] = ACTIONS(3209), + [anon_sym_U_DQUOTE] = ACTIONS(3209), + [anon_sym_u8_DQUOTE] = ACTIONS(3209), + [anon_sym_DQUOTE] = ACTIONS(3209), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [anon_sym_NULL] = ACTIONS(3207), + [anon_sym_nullptr] = ACTIONS(3207), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3207), + [anon_sym_decltype] = ACTIONS(3207), + [anon_sym_virtual] = ACTIONS(3207), + [anon_sym_alignas] = ACTIONS(3207), + [anon_sym_explicit] = ACTIONS(3207), + [anon_sym_typename] = ACTIONS(3207), + [anon_sym_template] = ACTIONS(3207), + [anon_sym_operator] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_delete] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_static_assert] = ACTIONS(3207), + [anon_sym_concept] = ACTIONS(3207), + [anon_sym_co_return] = ACTIONS(3207), + [anon_sym_co_yield] = ACTIONS(3207), + [anon_sym_R_DQUOTE] = ACTIONS(3209), + [anon_sym_LR_DQUOTE] = ACTIONS(3209), + [anon_sym_uR_DQUOTE] = ACTIONS(3209), + [anon_sym_UR_DQUOTE] = ACTIONS(3209), + [anon_sym_u8R_DQUOTE] = ACTIONS(3209), + [anon_sym_co_await] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_requires] = ACTIONS(3207), + [sym_this] = ACTIONS(3207), + }, + [1004] = { + [ts_builtin_sym_end] = ACTIONS(3108), + [sym_identifier] = ACTIONS(3106), + [aux_sym_preproc_include_token1] = ACTIONS(3106), + [aux_sym_preproc_def_token1] = ACTIONS(3106), + [aux_sym_preproc_if_token1] = ACTIONS(3106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3106), + [sym_preproc_directive] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym___extension__] = ACTIONS(3106), + [anon_sym_typedef] = ACTIONS(3106), + [anon_sym_extern] = ACTIONS(3106), + [anon_sym___attribute__] = ACTIONS(3106), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3106), + [anon_sym___based] = ACTIONS(3106), + [anon_sym___cdecl] = ACTIONS(3106), + [anon_sym___clrcall] = ACTIONS(3106), + [anon_sym___stdcall] = ACTIONS(3106), + [anon_sym___fastcall] = ACTIONS(3106), + [anon_sym___thiscall] = ACTIONS(3106), + [anon_sym___vectorcall] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3106), + [anon_sym_unsigned] = ACTIONS(3106), + [anon_sym_long] = ACTIONS(3106), + [anon_sym_short] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3106), + [anon_sym_register] = ACTIONS(3106), + [anon_sym_inline] = ACTIONS(3106), + [anon_sym___inline] = ACTIONS(3106), + [anon_sym___inline__] = ACTIONS(3106), + [anon_sym___forceinline] = ACTIONS(3106), + [anon_sym_thread_local] = ACTIONS(3106), + [anon_sym___thread] = ACTIONS(3106), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_constexpr] = ACTIONS(3106), + [anon_sym_volatile] = ACTIONS(3106), + [anon_sym_restrict] = ACTIONS(3106), + [anon_sym___restrict__] = ACTIONS(3106), + [anon_sym__Atomic] = ACTIONS(3106), + [anon_sym__Noreturn] = ACTIONS(3106), + [anon_sym_noreturn] = ACTIONS(3106), + [anon_sym_mutable] = ACTIONS(3106), + [anon_sym_constinit] = ACTIONS(3106), + [anon_sym_consteval] = ACTIONS(3106), + [sym_primitive_type] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [anon_sym_class] = ACTIONS(3106), + [anon_sym_struct] = ACTIONS(3106), + [anon_sym_union] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_switch] = ACTIONS(3106), + [anon_sym_case] = ACTIONS(3106), + [anon_sym_default] = ACTIONS(3106), + [anon_sym_while] = ACTIONS(3106), + [anon_sym_do] = ACTIONS(3106), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_goto] = ACTIONS(3106), + [anon_sym_not] = ACTIONS(3106), + [anon_sym_compl] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_sizeof] = ACTIONS(3106), + [anon_sym___alignof__] = ACTIONS(3106), + [anon_sym___alignof] = ACTIONS(3106), + [anon_sym__alignof] = ACTIONS(3106), + [anon_sym_alignof] = ACTIONS(3106), + [anon_sym__Alignof] = ACTIONS(3106), + [anon_sym_offsetof] = ACTIONS(3106), + [anon_sym__Generic] = ACTIONS(3106), + [anon_sym_asm] = ACTIONS(3106), + [anon_sym___asm__] = ACTIONS(3106), + [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(3106), + [sym_false] = ACTIONS(3106), + [anon_sym_NULL] = ACTIONS(3106), + [anon_sym_nullptr] = ACTIONS(3106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3106), + [anon_sym_decltype] = ACTIONS(3106), + [anon_sym_virtual] = ACTIONS(3106), + [anon_sym_alignas] = ACTIONS(3106), + [anon_sym_explicit] = ACTIONS(3106), + [anon_sym_typename] = ACTIONS(3106), + [anon_sym_template] = ACTIONS(3106), + [anon_sym_operator] = ACTIONS(3106), + [anon_sym_try] = ACTIONS(3106), + [anon_sym_delete] = ACTIONS(3106), + [anon_sym_throw] = ACTIONS(3106), + [anon_sym_namespace] = ACTIONS(3106), + [anon_sym_using] = ACTIONS(3106), + [anon_sym_static_assert] = ACTIONS(3106), + [anon_sym_concept] = ACTIONS(3106), + [anon_sym_co_return] = ACTIONS(3106), + [anon_sym_co_yield] = ACTIONS(3106), + [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(3106), + [anon_sym_new] = ACTIONS(3106), + [anon_sym_requires] = ACTIONS(3106), + [sym_this] = ACTIONS(3106), + }, + [1005] = { + [ts_builtin_sym_end] = ACTIONS(3250), + [sym_identifier] = ACTIONS(3248), + [aux_sym_preproc_include_token1] = ACTIONS(3248), + [aux_sym_preproc_def_token1] = ACTIONS(3248), + [aux_sym_preproc_if_token1] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3248), + [sym_preproc_directive] = ACTIONS(3248), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_typedef] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym___cdecl] = ACTIONS(3248), + [anon_sym___clrcall] = ACTIONS(3248), + [anon_sym___stdcall] = ACTIONS(3248), + [anon_sym___fastcall] = ACTIONS(3248), + [anon_sym___thiscall] = ACTIONS(3248), + [anon_sym___vectorcall] = ACTIONS(3248), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_signed] = ACTIONS(3248), + [anon_sym_unsigned] = ACTIONS(3248), + [anon_sym_long] = ACTIONS(3248), + [anon_sym_short] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [sym_primitive_type] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3248), + [anon_sym_union] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3248), + [anon_sym_default] = ACTIONS(3248), + [anon_sym_while] = ACTIONS(3248), + [anon_sym_do] = ACTIONS(3248), + [anon_sym_for] = ACTIONS(3248), + [anon_sym_return] = ACTIONS(3248), + [anon_sym_break] = ACTIONS(3248), + [anon_sym_continue] = ACTIONS(3248), + [anon_sym_goto] = ACTIONS(3248), + [anon_sym_not] = ACTIONS(3248), + [anon_sym_compl] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_sizeof] = ACTIONS(3248), + [anon_sym___alignof__] = ACTIONS(3248), + [anon_sym___alignof] = ACTIONS(3248), + [anon_sym__alignof] = ACTIONS(3248), + [anon_sym_alignof] = ACTIONS(3248), + [anon_sym__Alignof] = ACTIONS(3248), + [anon_sym_offsetof] = ACTIONS(3248), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_asm] = ACTIONS(3248), + [anon_sym___asm__] = ACTIONS(3248), + [sym_number_literal] = ACTIONS(3250), + [anon_sym_L_SQUOTE] = ACTIONS(3250), + [anon_sym_u_SQUOTE] = ACTIONS(3250), + [anon_sym_U_SQUOTE] = ACTIONS(3250), + [anon_sym_u8_SQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_L_DQUOTE] = ACTIONS(3250), + [anon_sym_u_DQUOTE] = ACTIONS(3250), + [anon_sym_U_DQUOTE] = ACTIONS(3250), + [anon_sym_u8_DQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [anon_sym_NULL] = ACTIONS(3248), + [anon_sym_nullptr] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym_explicit] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_try] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_throw] = ACTIONS(3248), + [anon_sym_namespace] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_static_assert] = ACTIONS(3248), + [anon_sym_concept] = ACTIONS(3248), + [anon_sym_co_return] = ACTIONS(3248), + [anon_sym_co_yield] = ACTIONS(3248), + [anon_sym_R_DQUOTE] = ACTIONS(3250), + [anon_sym_LR_DQUOTE] = ACTIONS(3250), + [anon_sym_uR_DQUOTE] = ACTIONS(3250), + [anon_sym_UR_DQUOTE] = ACTIONS(3250), + [anon_sym_u8R_DQUOTE] = ACTIONS(3250), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_requires] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + }, + [1006] = { + [ts_builtin_sym_end] = ACTIONS(3213), + [sym_identifier] = ACTIONS(3211), + [aux_sym_preproc_include_token1] = ACTIONS(3211), + [aux_sym_preproc_def_token1] = ACTIONS(3211), + [aux_sym_preproc_if_token1] = ACTIONS(3211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), + [sym_preproc_directive] = ACTIONS(3211), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_AMP_AMP] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(3211), + [anon_sym_typedef] = ACTIONS(3211), + [anon_sym_extern] = ACTIONS(3211), + [anon_sym___attribute__] = ACTIONS(3211), + [anon_sym_COLON_COLON] = ACTIONS(3213), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), + [anon_sym___declspec] = ACTIONS(3211), + [anon_sym___based] = ACTIONS(3211), + [anon_sym___cdecl] = ACTIONS(3211), + [anon_sym___clrcall] = ACTIONS(3211), + [anon_sym___stdcall] = ACTIONS(3211), + [anon_sym___fastcall] = ACTIONS(3211), + [anon_sym___thiscall] = ACTIONS(3211), + [anon_sym___vectorcall] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_signed] = ACTIONS(3211), + [anon_sym_unsigned] = ACTIONS(3211), + [anon_sym_long] = ACTIONS(3211), + [anon_sym_short] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_register] = ACTIONS(3211), + [anon_sym_inline] = ACTIONS(3211), + [anon_sym___inline] = ACTIONS(3211), + [anon_sym___inline__] = ACTIONS(3211), + [anon_sym___forceinline] = ACTIONS(3211), + [anon_sym_thread_local] = ACTIONS(3211), + [anon_sym___thread] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_constexpr] = ACTIONS(3211), + [anon_sym_volatile] = ACTIONS(3211), + [anon_sym_restrict] = ACTIONS(3211), + [anon_sym___restrict__] = ACTIONS(3211), + [anon_sym__Atomic] = ACTIONS(3211), + [anon_sym__Noreturn] = ACTIONS(3211), + [anon_sym_noreturn] = ACTIONS(3211), + [anon_sym_mutable] = ACTIONS(3211), + [anon_sym_constinit] = ACTIONS(3211), + [anon_sym_consteval] = ACTIONS(3211), + [sym_primitive_type] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3211), + [anon_sym_union] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_case] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_goto] = ACTIONS(3211), + [anon_sym_not] = ACTIONS(3211), + [anon_sym_compl] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_sizeof] = ACTIONS(3211), + [anon_sym___alignof__] = ACTIONS(3211), + [anon_sym___alignof] = ACTIONS(3211), + [anon_sym__alignof] = ACTIONS(3211), + [anon_sym_alignof] = ACTIONS(3211), + [anon_sym__Alignof] = ACTIONS(3211), + [anon_sym_offsetof] = ACTIONS(3211), + [anon_sym__Generic] = ACTIONS(3211), + [anon_sym_asm] = ACTIONS(3211), + [anon_sym___asm__] = ACTIONS(3211), + [sym_number_literal] = ACTIONS(3213), + [anon_sym_L_SQUOTE] = ACTIONS(3213), + [anon_sym_u_SQUOTE] = ACTIONS(3213), + [anon_sym_U_SQUOTE] = ACTIONS(3213), + [anon_sym_u8_SQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_L_DQUOTE] = ACTIONS(3213), + [anon_sym_u_DQUOTE] = ACTIONS(3213), + [anon_sym_U_DQUOTE] = ACTIONS(3213), + [anon_sym_u8_DQUOTE] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [anon_sym_NULL] = ACTIONS(3211), + [anon_sym_nullptr] = ACTIONS(3211), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3211), + [anon_sym_decltype] = ACTIONS(3211), + [anon_sym_virtual] = ACTIONS(3211), + [anon_sym_alignas] = ACTIONS(3211), + [anon_sym_explicit] = ACTIONS(3211), + [anon_sym_typename] = ACTIONS(3211), + [anon_sym_template] = ACTIONS(3211), + [anon_sym_operator] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_delete] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_static_assert] = ACTIONS(3211), + [anon_sym_concept] = ACTIONS(3211), + [anon_sym_co_return] = ACTIONS(3211), + [anon_sym_co_yield] = ACTIONS(3211), + [anon_sym_R_DQUOTE] = ACTIONS(3213), + [anon_sym_LR_DQUOTE] = ACTIONS(3213), + [anon_sym_uR_DQUOTE] = ACTIONS(3213), + [anon_sym_UR_DQUOTE] = ACTIONS(3213), + [anon_sym_u8R_DQUOTE] = ACTIONS(3213), + [anon_sym_co_await] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_requires] = ACTIONS(3211), + [sym_this] = ACTIONS(3211), + }, + [1007] = { + [ts_builtin_sym_end] = ACTIONS(3312), + [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(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym___extension__] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3312), + [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(3312), + [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_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = 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_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_not] = ACTIONS(3310), + [anon_sym_compl] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [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_asm] = ACTIONS(3310), + [anon_sym___asm__] = ACTIONS(3310), + [sym_number_literal] = ACTIONS(3312), + [anon_sym_L_SQUOTE] = ACTIONS(3312), + [anon_sym_u_SQUOTE] = ACTIONS(3312), + [anon_sym_U_SQUOTE] = ACTIONS(3312), + [anon_sym_u8_SQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_L_DQUOTE] = ACTIONS(3312), + [anon_sym_u_DQUOTE] = ACTIONS(3312), + [anon_sym_U_DQUOTE] = ACTIONS(3312), + [anon_sym_u8_DQUOTE] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [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_virtual] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym_explicit] = ACTIONS(3310), + [anon_sym_typename] = 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_using] = 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(3312), + [anon_sym_LR_DQUOTE] = ACTIONS(3312), + [anon_sym_uR_DQUOTE] = ACTIONS(3312), + [anon_sym_UR_DQUOTE] = ACTIONS(3312), + [anon_sym_u8R_DQUOTE] = ACTIONS(3312), + [anon_sym_co_await] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_requires] = ACTIONS(3310), + [sym_this] = ACTIONS(3310), + }, + [1008] = { + [sym_preproc_def] = STATE(1013), + [sym_preproc_function_def] = STATE(1013), + [sym_preproc_call] = STATE(1013), + [sym_preproc_if_in_field_declaration_list] = STATE(1013), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1013), + [sym_type_definition] = STATE(1013), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(1013), + [sym_field_declaration] = STATE(1013), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(1013), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(1013), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(1013), + [sym_operator_cast_declaration] = STATE(1013), + [sym_constructor_or_destructor_definition] = STATE(1013), + [sym_constructor_or_destructor_declaration] = STATE(1013), + [sym_friend_declaration] = STATE(1013), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(1013), + [sym_alias_declaration] = STATE(1013), + [sym_static_assert_declaration] = STATE(1013), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1013), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(3770), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -233848,225 +227776,632 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3982), - [anon_sym_concept] = ACTIONS(3984), - [anon_sym_requires] = ACTIONS(3974), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1059] = { - [sym_function_definition] = STATE(595), - [sym_declaration] = STATE(595), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6714), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(595), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2012), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(595), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2012), - [sym_operator_cast_definition] = STATE(595), - [sym_operator_cast_declaration] = STATE(595), - [sym_constructor_or_destructor_definition] = STATE(595), - [sym_constructor_or_destructor_declaration] = STATE(595), - [sym_friend_declaration] = STATE(595), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(595), - [sym_concept_definition] = STATE(595), - [sym_requires_clause] = STATE(1070), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2012), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [1009] = { + [ts_builtin_sym_end] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3098), + [aux_sym_preproc_include_token1] = ACTIONS(3098), + [aux_sym_preproc_def_token1] = ACTIONS(3098), + [aux_sym_preproc_if_token1] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), + [sym_preproc_directive] = ACTIONS(3098), + [anon_sym_LPAREN2] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym___extension__] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3098), + [anon_sym_extern] = ACTIONS(3098), + [anon_sym___attribute__] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), + [anon_sym___declspec] = ACTIONS(3098), + [anon_sym___based] = ACTIONS(3098), + [anon_sym___cdecl] = ACTIONS(3098), + [anon_sym___clrcall] = ACTIONS(3098), + [anon_sym___stdcall] = ACTIONS(3098), + [anon_sym___fastcall] = ACTIONS(3098), + [anon_sym___thiscall] = ACTIONS(3098), + [anon_sym___vectorcall] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_signed] = ACTIONS(3098), + [anon_sym_unsigned] = ACTIONS(3098), + [anon_sym_long] = ACTIONS(3098), + [anon_sym_short] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_register] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym___inline] = ACTIONS(3098), + [anon_sym___inline__] = ACTIONS(3098), + [anon_sym___forceinline] = ACTIONS(3098), + [anon_sym_thread_local] = ACTIONS(3098), + [anon_sym___thread] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_constexpr] = ACTIONS(3098), + [anon_sym_volatile] = ACTIONS(3098), + [anon_sym_restrict] = ACTIONS(3098), + [anon_sym___restrict__] = ACTIONS(3098), + [anon_sym__Atomic] = ACTIONS(3098), + [anon_sym__Noreturn] = ACTIONS(3098), + [anon_sym_noreturn] = ACTIONS(3098), + [anon_sym_mutable] = ACTIONS(3098), + [anon_sym_constinit] = ACTIONS(3098), + [anon_sym_consteval] = ACTIONS(3098), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(3098), + [anon_sym_union] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_switch] = ACTIONS(3098), + [anon_sym_case] = ACTIONS(3098), + [anon_sym_default] = ACTIONS(3098), + [anon_sym_while] = ACTIONS(3098), + [anon_sym_do] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_goto] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(3098), + [anon_sym_compl] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_sizeof] = ACTIONS(3098), + [anon_sym___alignof__] = ACTIONS(3098), + [anon_sym___alignof] = ACTIONS(3098), + [anon_sym__alignof] = ACTIONS(3098), + [anon_sym_alignof] = ACTIONS(3098), + [anon_sym__Alignof] = ACTIONS(3098), + [anon_sym_offsetof] = ACTIONS(3098), + [anon_sym__Generic] = ACTIONS(3098), + [anon_sym_asm] = ACTIONS(3098), + [anon_sym___asm__] = ACTIONS(3098), + [sym_number_literal] = ACTIONS(3100), + [anon_sym_L_SQUOTE] = ACTIONS(3100), + [anon_sym_u_SQUOTE] = ACTIONS(3100), + [anon_sym_U_SQUOTE] = ACTIONS(3100), + [anon_sym_u8_SQUOTE] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3100), + [anon_sym_L_DQUOTE] = ACTIONS(3100), + [anon_sym_u_DQUOTE] = ACTIONS(3100), + [anon_sym_U_DQUOTE] = ACTIONS(3100), + [anon_sym_u8_DQUOTE] = ACTIONS(3100), + [anon_sym_DQUOTE] = ACTIONS(3100), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [anon_sym_NULL] = ACTIONS(3098), + [anon_sym_nullptr] = ACTIONS(3098), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3986), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3988), - [anon_sym_using] = ACTIONS(3990), - [anon_sym_concept] = ACTIONS(421), - [anon_sym_requires] = ACTIONS(3974), + [sym_auto] = ACTIONS(3098), + [anon_sym_decltype] = ACTIONS(3098), + [anon_sym_virtual] = ACTIONS(3098), + [anon_sym_alignas] = ACTIONS(3098), + [anon_sym_explicit] = ACTIONS(3098), + [anon_sym_typename] = ACTIONS(3098), + [anon_sym_template] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_try] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3098), + [anon_sym_throw] = ACTIONS(3098), + [anon_sym_namespace] = ACTIONS(3098), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_static_assert] = ACTIONS(3098), + [anon_sym_concept] = ACTIONS(3098), + [anon_sym_co_return] = ACTIONS(3098), + [anon_sym_co_yield] = ACTIONS(3098), + [anon_sym_R_DQUOTE] = ACTIONS(3100), + [anon_sym_LR_DQUOTE] = ACTIONS(3100), + [anon_sym_uR_DQUOTE] = ACTIONS(3100), + [anon_sym_UR_DQUOTE] = ACTIONS(3100), + [anon_sym_u8R_DQUOTE] = ACTIONS(3100), + [anon_sym_co_await] = ACTIONS(3098), + [anon_sym_new] = ACTIONS(3098), + [anon_sym_requires] = ACTIONS(3098), + [sym_this] = ACTIONS(3098), }, - [1060] = { - [sym_function_definition] = STATE(2091), - [sym_declaration] = STATE(2091), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5500), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2252), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6781), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3968), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(2091), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2007), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(2091), - [sym_operator_cast] = STATE(7163), - [sym__constructor_specifiers] = STATE(2007), - [sym_operator_cast_definition] = STATE(2091), - [sym_operator_cast_declaration] = STATE(2091), - [sym_constructor_or_destructor_definition] = STATE(2091), - [sym_constructor_or_destructor_declaration] = STATE(2091), - [sym_friend_declaration] = STATE(2091), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(2091), - [sym_concept_definition] = STATE(2091), - [sym_requires_clause] = STATE(1073), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7163), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2007), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), + [1010] = { + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3016), + [aux_sym_preproc_include_token1] = ACTIONS(3016), + [aux_sym_preproc_def_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3016), + [sym_preproc_directive] = ACTIONS(3016), + [anon_sym_LPAREN2] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_typedef] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym___attribute__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3018), + [anon_sym___declspec] = ACTIONS(3016), + [anon_sym___based] = ACTIONS(3016), + [anon_sym___cdecl] = ACTIONS(3016), + [anon_sym___clrcall] = ACTIONS(3016), + [anon_sym___stdcall] = ACTIONS(3016), + [anon_sym___fastcall] = ACTIONS(3016), + [anon_sym___thiscall] = ACTIONS(3016), + [anon_sym___vectorcall] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_signed] = ACTIONS(3016), + [anon_sym_unsigned] = ACTIONS(3016), + [anon_sym_long] = ACTIONS(3016), + [anon_sym_short] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_register] = ACTIONS(3016), + [anon_sym_inline] = ACTIONS(3016), + [anon_sym___inline] = ACTIONS(3016), + [anon_sym___inline__] = ACTIONS(3016), + [anon_sym___forceinline] = ACTIONS(3016), + [anon_sym_thread_local] = ACTIONS(3016), + [anon_sym___thread] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_constexpr] = ACTIONS(3016), + [anon_sym_volatile] = ACTIONS(3016), + [anon_sym_restrict] = ACTIONS(3016), + [anon_sym___restrict__] = ACTIONS(3016), + [anon_sym__Atomic] = ACTIONS(3016), + [anon_sym__Noreturn] = ACTIONS(3016), + [anon_sym_noreturn] = ACTIONS(3016), + [anon_sym_mutable] = ACTIONS(3016), + [anon_sym_constinit] = ACTIONS(3016), + [anon_sym_consteval] = ACTIONS(3016), + [sym_primitive_type] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_class] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym_not] = ACTIONS(3016), + [anon_sym_compl] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_sizeof] = ACTIONS(3016), + [anon_sym___alignof__] = ACTIONS(3016), + [anon_sym___alignof] = ACTIONS(3016), + [anon_sym__alignof] = ACTIONS(3016), + [anon_sym_alignof] = ACTIONS(3016), + [anon_sym__Alignof] = ACTIONS(3016), + [anon_sym_offsetof] = ACTIONS(3016), + [anon_sym__Generic] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym___asm__] = ACTIONS(3016), + [sym_number_literal] = ACTIONS(3018), + [anon_sym_L_SQUOTE] = ACTIONS(3018), + [anon_sym_u_SQUOTE] = ACTIONS(3018), + [anon_sym_U_SQUOTE] = ACTIONS(3018), + [anon_sym_u8_SQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_L_DQUOTE] = ACTIONS(3018), + [anon_sym_u_DQUOTE] = ACTIONS(3018), + [anon_sym_U_DQUOTE] = ACTIONS(3018), + [anon_sym_u8_DQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_nullptr] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3016), + [anon_sym_decltype] = ACTIONS(3016), + [anon_sym_virtual] = ACTIONS(3016), + [anon_sym_alignas] = ACTIONS(3016), + [anon_sym_explicit] = ACTIONS(3016), + [anon_sym_typename] = ACTIONS(3016), + [anon_sym_template] = ACTIONS(3016), + [anon_sym_operator] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_delete] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_using] = ACTIONS(3016), + [anon_sym_static_assert] = ACTIONS(3016), + [anon_sym_concept] = ACTIONS(3016), + [anon_sym_co_return] = ACTIONS(3016), + [anon_sym_co_yield] = ACTIONS(3016), + [anon_sym_R_DQUOTE] = ACTIONS(3018), + [anon_sym_LR_DQUOTE] = ACTIONS(3018), + [anon_sym_uR_DQUOTE] = ACTIONS(3018), + [anon_sym_UR_DQUOTE] = ACTIONS(3018), + [anon_sym_u8R_DQUOTE] = ACTIONS(3018), + [anon_sym_co_await] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3016), + [sym_this] = ACTIONS(3016), + }, + [1011] = { + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_include_token1] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3227), + [aux_sym_preproc_if_token1] = ACTIONS(3227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), + [sym_preproc_directive] = ACTIONS(3227), + [anon_sym_LPAREN2] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3227), + [anon_sym___extension__] = ACTIONS(3227), + [anon_sym_typedef] = ACTIONS(3227), + [anon_sym_extern] = ACTIONS(3227), + [anon_sym___attribute__] = ACTIONS(3227), + [anon_sym_COLON_COLON] = ACTIONS(3229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), + [anon_sym___declspec] = ACTIONS(3227), + [anon_sym___based] = ACTIONS(3227), + [anon_sym___cdecl] = ACTIONS(3227), + [anon_sym___clrcall] = ACTIONS(3227), + [anon_sym___stdcall] = ACTIONS(3227), + [anon_sym___fastcall] = ACTIONS(3227), + [anon_sym___thiscall] = ACTIONS(3227), + [anon_sym___vectorcall] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_signed] = ACTIONS(3227), + [anon_sym_unsigned] = ACTIONS(3227), + [anon_sym_long] = ACTIONS(3227), + [anon_sym_short] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_register] = ACTIONS(3227), + [anon_sym_inline] = ACTIONS(3227), + [anon_sym___inline] = ACTIONS(3227), + [anon_sym___inline__] = ACTIONS(3227), + [anon_sym___forceinline] = ACTIONS(3227), + [anon_sym_thread_local] = ACTIONS(3227), + [anon_sym___thread] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_constexpr] = ACTIONS(3227), + [anon_sym_volatile] = ACTIONS(3227), + [anon_sym_restrict] = ACTIONS(3227), + [anon_sym___restrict__] = ACTIONS(3227), + [anon_sym__Atomic] = ACTIONS(3227), + [anon_sym__Noreturn] = ACTIONS(3227), + [anon_sym_noreturn] = ACTIONS(3227), + [anon_sym_mutable] = ACTIONS(3227), + [anon_sym_constinit] = ACTIONS(3227), + [anon_sym_consteval] = ACTIONS(3227), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_struct] = ACTIONS(3227), + [anon_sym_union] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_case] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_goto] = ACTIONS(3227), + [anon_sym_not] = ACTIONS(3227), + [anon_sym_compl] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_sizeof] = ACTIONS(3227), + [anon_sym___alignof__] = ACTIONS(3227), + [anon_sym___alignof] = ACTIONS(3227), + [anon_sym__alignof] = ACTIONS(3227), + [anon_sym_alignof] = ACTIONS(3227), + [anon_sym__Alignof] = ACTIONS(3227), + [anon_sym_offsetof] = ACTIONS(3227), + [anon_sym__Generic] = ACTIONS(3227), + [anon_sym_asm] = ACTIONS(3227), + [anon_sym___asm__] = ACTIONS(3227), + [sym_number_literal] = ACTIONS(3229), + [anon_sym_L_SQUOTE] = ACTIONS(3229), + [anon_sym_u_SQUOTE] = ACTIONS(3229), + [anon_sym_U_SQUOTE] = ACTIONS(3229), + [anon_sym_u8_SQUOTE] = ACTIONS(3229), + [anon_sym_SQUOTE] = ACTIONS(3229), + [anon_sym_L_DQUOTE] = ACTIONS(3229), + [anon_sym_u_DQUOTE] = ACTIONS(3229), + [anon_sym_U_DQUOTE] = ACTIONS(3229), + [anon_sym_u8_DQUOTE] = ACTIONS(3229), + [anon_sym_DQUOTE] = ACTIONS(3229), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [anon_sym_NULL] = ACTIONS(3227), + [anon_sym_nullptr] = ACTIONS(3227), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3227), + [anon_sym_decltype] = ACTIONS(3227), + [anon_sym_virtual] = ACTIONS(3227), + [anon_sym_alignas] = ACTIONS(3227), + [anon_sym_explicit] = ACTIONS(3227), + [anon_sym_typename] = ACTIONS(3227), + [anon_sym_template] = ACTIONS(3227), + [anon_sym_operator] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_static_assert] = ACTIONS(3227), + [anon_sym_concept] = ACTIONS(3227), + [anon_sym_co_return] = ACTIONS(3227), + [anon_sym_co_yield] = ACTIONS(3227), + [anon_sym_R_DQUOTE] = ACTIONS(3229), + [anon_sym_LR_DQUOTE] = ACTIONS(3229), + [anon_sym_uR_DQUOTE] = ACTIONS(3229), + [anon_sym_UR_DQUOTE] = ACTIONS(3229), + [anon_sym_u8R_DQUOTE] = ACTIONS(3229), + [anon_sym_co_await] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_requires] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + }, + [1012] = { + [ts_builtin_sym_end] = ACTIONS(3014), + [sym_identifier] = ACTIONS(3012), + [aux_sym_preproc_include_token1] = ACTIONS(3012), + [aux_sym_preproc_def_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3012), + [sym_preproc_directive] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym___extension__] = ACTIONS(3012), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym___based] = ACTIONS(3012), + [anon_sym___cdecl] = ACTIONS(3012), + [anon_sym___clrcall] = ACTIONS(3012), + [anon_sym___stdcall] = ACTIONS(3012), + [anon_sym___fastcall] = ACTIONS(3012), + [anon_sym___thiscall] = ACTIONS(3012), + [anon_sym___vectorcall] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym___inline] = ACTIONS(3012), + [anon_sym___inline__] = ACTIONS(3012), + [anon_sym___forceinline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym___thread] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_sizeof] = ACTIONS(3012), + [anon_sym___alignof__] = ACTIONS(3012), + [anon_sym___alignof] = ACTIONS(3012), + [anon_sym__alignof] = ACTIONS(3012), + [anon_sym_alignof] = ACTIONS(3012), + [anon_sym__Alignof] = ACTIONS(3012), + [anon_sym_offsetof] = ACTIONS(3012), + [anon_sym__Generic] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym___asm__] = ACTIONS(3012), + [sym_number_literal] = ACTIONS(3014), + [anon_sym_L_SQUOTE] = ACTIONS(3014), + [anon_sym_u_SQUOTE] = ACTIONS(3014), + [anon_sym_U_SQUOTE] = ACTIONS(3014), + [anon_sym_u8_SQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_L_DQUOTE] = ACTIONS(3014), + [anon_sym_u_DQUOTE] = ACTIONS(3014), + [anon_sym_U_DQUOTE] = ACTIONS(3014), + [anon_sym_u8_DQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_nullptr] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_alignas] = ACTIONS(3012), + [anon_sym_explicit] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_operator] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_static_assert] = ACTIONS(3012), + [anon_sym_concept] = ACTIONS(3012), + [anon_sym_co_return] = ACTIONS(3012), + [anon_sym_co_yield] = ACTIONS(3012), + [anon_sym_R_DQUOTE] = ACTIONS(3014), + [anon_sym_LR_DQUOTE] = ACTIONS(3014), + [anon_sym_uR_DQUOTE] = ACTIONS(3014), + [anon_sym_UR_DQUOTE] = ACTIONS(3014), + [anon_sym_u8R_DQUOTE] = ACTIONS(3014), + [anon_sym_co_await] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_requires] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), + }, + [1013] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(3772), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -234086,106 +228421,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3046), - [anon_sym_using] = ACTIONS(3992), - [anon_sym_concept] = ACTIONS(3994), - [anon_sym_requires] = ACTIONS(3974), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1061] = { - [sym_function_definition] = STATE(947), - [sym_declaration] = STATE(947), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6739), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(947), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2021), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(947), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2021), - [sym_operator_cast_definition] = STATE(947), - [sym_operator_cast_declaration] = STATE(947), - [sym_constructor_or_destructor_definition] = STATE(947), - [sym_constructor_or_destructor_declaration] = STATE(947), - [sym_friend_declaration] = STATE(947), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(947), - [sym_concept_definition] = STATE(947), - [sym_requires_clause] = STATE(1068), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2021), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [1014] = { + [ts_builtin_sym_end] = ACTIONS(3225), + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_include_token1] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym___cdecl] = ACTIONS(3223), + [anon_sym___clrcall] = ACTIONS(3223), + [anon_sym___stdcall] = ACTIONS(3223), + [anon_sym___fastcall] = ACTIONS(3223), + [anon_sym___thiscall] = ACTIONS(3223), + [anon_sym___vectorcall] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_case] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_goto] = ACTIONS(3223), + [anon_sym_not] = ACTIONS(3223), + [anon_sym_compl] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_sizeof] = ACTIONS(3223), + [anon_sym___alignof__] = ACTIONS(3223), + [anon_sym___alignof] = ACTIONS(3223), + [anon_sym__alignof] = ACTIONS(3223), + [anon_sym_alignof] = ACTIONS(3223), + [anon_sym__Alignof] = ACTIONS(3223), + [anon_sym_offsetof] = ACTIONS(3223), + [anon_sym__Generic] = ACTIONS(3223), + [anon_sym_asm] = ACTIONS(3223), + [anon_sym___asm__] = ACTIONS(3223), + [sym_number_literal] = ACTIONS(3225), + [anon_sym_L_SQUOTE] = ACTIONS(3225), + [anon_sym_u_SQUOTE] = ACTIONS(3225), + [anon_sym_U_SQUOTE] = ACTIONS(3225), + [anon_sym_u8_SQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_L_DQUOTE] = ACTIONS(3225), + [anon_sym_u_DQUOTE] = ACTIONS(3225), + [anon_sym_U_DQUOTE] = ACTIONS(3225), + [anon_sym_u8_DQUOTE] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [anon_sym_NULL] = ACTIONS(3223), + [anon_sym_nullptr] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + [anon_sym_concept] = ACTIONS(3223), + [anon_sym_co_return] = ACTIONS(3223), + [anon_sym_co_yield] = ACTIONS(3223), + [anon_sym_R_DQUOTE] = ACTIONS(3225), + [anon_sym_LR_DQUOTE] = ACTIONS(3225), + [anon_sym_uR_DQUOTE] = ACTIONS(3225), + [anon_sym_UR_DQUOTE] = ACTIONS(3225), + [anon_sym_u8R_DQUOTE] = ACTIONS(3225), + [anon_sym_co_await] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_requires] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + }, + [1015] = { + [sym_preproc_def] = STATE(988), + [sym_preproc_function_def] = STATE(988), + [sym_preproc_call] = STATE(988), + [sym_preproc_if_in_field_declaration_list] = STATE(988), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(988), + [sym_type_definition] = STATE(988), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(988), + [sym_field_declaration] = STATE(988), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(988), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(988), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(988), + [sym_operator_cast_declaration] = STATE(988), + [sym_constructor_or_destructor_definition] = STATE(988), + [sym_constructor_or_destructor_declaration] = STATE(988), + [sym_friend_declaration] = STATE(988), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(988), + [sym_alias_declaration] = STATE(988), + [sym_static_assert_declaration] = STATE(988), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(988), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(3774), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -234205,106 +228679,632 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3996), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(4000), - [anon_sym_concept] = ACTIONS(231), - [anon_sym_requires] = ACTIONS(3974), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1062] = { - [sym_function_definition] = STATE(2649), - [sym_declaration] = STATE(2649), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5525), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2247), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6722), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4077), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(2649), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2011), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(2649), - [sym_operator_cast] = STATE(7212), - [sym__constructor_specifiers] = STATE(2011), - [sym_operator_cast_definition] = STATE(2649), - [sym_operator_cast_declaration] = STATE(2649), - [sym_constructor_or_destructor_definition] = STATE(2649), - [sym_constructor_or_destructor_declaration] = STATE(2649), - [sym_friend_declaration] = STATE(2649), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(2649), - [sym_concept_definition] = STATE(2649), - [sym_requires_clause] = STATE(1075), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7212), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2011), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [1016] = { + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3020), + [aux_sym_preproc_include_token1] = ACTIONS(3020), + [aux_sym_preproc_def_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3020), + [sym_preproc_directive] = ACTIONS(3020), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym___extension__] = ACTIONS(3020), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym___attribute__] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(3020), + [anon_sym___based] = ACTIONS(3020), + [anon_sym___cdecl] = ACTIONS(3020), + [anon_sym___clrcall] = ACTIONS(3020), + [anon_sym___stdcall] = ACTIONS(3020), + [anon_sym___fastcall] = ACTIONS(3020), + [anon_sym___thiscall] = ACTIONS(3020), + [anon_sym___vectorcall] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_signed] = ACTIONS(3020), + [anon_sym_unsigned] = ACTIONS(3020), + [anon_sym_long] = ACTIONS(3020), + [anon_sym_short] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_register] = ACTIONS(3020), + [anon_sym_inline] = ACTIONS(3020), + [anon_sym___inline] = ACTIONS(3020), + [anon_sym___inline__] = ACTIONS(3020), + [anon_sym___forceinline] = ACTIONS(3020), + [anon_sym_thread_local] = ACTIONS(3020), + [anon_sym___thread] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_constexpr] = ACTIONS(3020), + [anon_sym_volatile] = ACTIONS(3020), + [anon_sym_restrict] = ACTIONS(3020), + [anon_sym___restrict__] = ACTIONS(3020), + [anon_sym__Atomic] = ACTIONS(3020), + [anon_sym__Noreturn] = ACTIONS(3020), + [anon_sym_noreturn] = ACTIONS(3020), + [anon_sym_mutable] = ACTIONS(3020), + [anon_sym_constinit] = ACTIONS(3020), + [anon_sym_consteval] = ACTIONS(3020), + [sym_primitive_type] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_class] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_not] = ACTIONS(3020), + [anon_sym_compl] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_sizeof] = ACTIONS(3020), + [anon_sym___alignof__] = ACTIONS(3020), + [anon_sym___alignof] = ACTIONS(3020), + [anon_sym__alignof] = ACTIONS(3020), + [anon_sym_alignof] = ACTIONS(3020), + [anon_sym__Alignof] = ACTIONS(3020), + [anon_sym_offsetof] = ACTIONS(3020), + [anon_sym__Generic] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym___asm__] = ACTIONS(3020), + [sym_number_literal] = ACTIONS(3022), + [anon_sym_L_SQUOTE] = ACTIONS(3022), + [anon_sym_u_SQUOTE] = ACTIONS(3022), + [anon_sym_U_SQUOTE] = ACTIONS(3022), + [anon_sym_u8_SQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_L_DQUOTE] = ACTIONS(3022), + [anon_sym_u_DQUOTE] = ACTIONS(3022), + [anon_sym_U_DQUOTE] = ACTIONS(3022), + [anon_sym_u8_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_nullptr] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3020), + [anon_sym_decltype] = ACTIONS(3020), + [anon_sym_virtual] = ACTIONS(3020), + [anon_sym_alignas] = ACTIONS(3020), + [anon_sym_explicit] = ACTIONS(3020), + [anon_sym_typename] = ACTIONS(3020), + [anon_sym_template] = ACTIONS(3020), + [anon_sym_operator] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_using] = ACTIONS(3020), + [anon_sym_static_assert] = ACTIONS(3020), + [anon_sym_concept] = ACTIONS(3020), + [anon_sym_co_return] = ACTIONS(3020), + [anon_sym_co_yield] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(3022), + [anon_sym_LR_DQUOTE] = ACTIONS(3022), + [anon_sym_uR_DQUOTE] = ACTIONS(3022), + [anon_sym_UR_DQUOTE] = ACTIONS(3022), + [anon_sym_u8R_DQUOTE] = ACTIONS(3022), + [anon_sym_co_await] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_requires] = ACTIONS(3020), + [sym_this] = ACTIONS(3020), + }, + [1017] = { + [ts_builtin_sym_end] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_include_token1] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym___cdecl] = ACTIONS(3294), + [anon_sym___clrcall] = ACTIONS(3294), + [anon_sym___stdcall] = ACTIONS(3294), + [anon_sym___fastcall] = ACTIONS(3294), + [anon_sym___thiscall] = ACTIONS(3294), + [anon_sym___vectorcall] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_goto] = ACTIONS(3294), + [anon_sym_not] = ACTIONS(3294), + [anon_sym_compl] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_sizeof] = ACTIONS(3294), + [anon_sym___alignof__] = ACTIONS(3294), + [anon_sym___alignof] = ACTIONS(3294), + [anon_sym__alignof] = ACTIONS(3294), + [anon_sym_alignof] = ACTIONS(3294), + [anon_sym__Alignof] = ACTIONS(3294), + [anon_sym_offsetof] = ACTIONS(3294), + [anon_sym__Generic] = ACTIONS(3294), + [anon_sym_asm] = ACTIONS(3294), + [anon_sym___asm__] = ACTIONS(3294), + [sym_number_literal] = ACTIONS(3296), + [anon_sym_L_SQUOTE] = ACTIONS(3296), + [anon_sym_u_SQUOTE] = ACTIONS(3296), + [anon_sym_U_SQUOTE] = ACTIONS(3296), + [anon_sym_u8_SQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_L_DQUOTE] = ACTIONS(3296), + [anon_sym_u_DQUOTE] = ACTIONS(3296), + [anon_sym_U_DQUOTE] = ACTIONS(3296), + [anon_sym_u8_DQUOTE] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [anon_sym_NULL] = ACTIONS(3294), + [anon_sym_nullptr] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + [anon_sym_concept] = ACTIONS(3294), + [anon_sym_co_return] = ACTIONS(3294), + [anon_sym_co_yield] = ACTIONS(3294), + [anon_sym_R_DQUOTE] = ACTIONS(3296), + [anon_sym_LR_DQUOTE] = ACTIONS(3296), + [anon_sym_uR_DQUOTE] = ACTIONS(3296), + [anon_sym_UR_DQUOTE] = ACTIONS(3296), + [anon_sym_u8R_DQUOTE] = ACTIONS(3296), + [anon_sym_co_await] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), + }, + [1018] = { + [ts_builtin_sym_end] = ACTIONS(3136), + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_include_token1] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym___cdecl] = ACTIONS(3134), + [anon_sym___clrcall] = ACTIONS(3134), + [anon_sym___stdcall] = ACTIONS(3134), + [anon_sym___fastcall] = ACTIONS(3134), + [anon_sym___thiscall] = ACTIONS(3134), + [anon_sym___vectorcall] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_sizeof] = ACTIONS(3134), + [anon_sym___alignof__] = ACTIONS(3134), + [anon_sym___alignof] = ACTIONS(3134), + [anon_sym__alignof] = ACTIONS(3134), + [anon_sym_alignof] = ACTIONS(3134), + [anon_sym__Alignof] = ACTIONS(3134), + [anon_sym_offsetof] = ACTIONS(3134), + [anon_sym__Generic] = ACTIONS(3134), + [anon_sym_asm] = ACTIONS(3134), + [anon_sym___asm__] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3136), + [anon_sym_L_SQUOTE] = ACTIONS(3136), + [anon_sym_u_SQUOTE] = ACTIONS(3136), + [anon_sym_U_SQUOTE] = ACTIONS(3136), + [anon_sym_u8_SQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_L_DQUOTE] = ACTIONS(3136), + [anon_sym_u_DQUOTE] = ACTIONS(3136), + [anon_sym_U_DQUOTE] = ACTIONS(3136), + [anon_sym_u8_DQUOTE] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [anon_sym_NULL] = ACTIONS(3134), + [anon_sym_nullptr] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), + [anon_sym_concept] = ACTIONS(3134), + [anon_sym_co_return] = ACTIONS(3134), + [anon_sym_co_yield] = ACTIONS(3134), + [anon_sym_R_DQUOTE] = ACTIONS(3136), + [anon_sym_LR_DQUOTE] = ACTIONS(3136), + [anon_sym_uR_DQUOTE] = ACTIONS(3136), + [anon_sym_UR_DQUOTE] = ACTIONS(3136), + [anon_sym_u8R_DQUOTE] = ACTIONS(3136), + [anon_sym_co_await] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_requires] = ACTIONS(3134), + [sym_this] = ACTIONS(3134), + }, + [1019] = { + [ts_builtin_sym_end] = ACTIONS(3136), + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_include_token1] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym___cdecl] = ACTIONS(3134), + [anon_sym___clrcall] = ACTIONS(3134), + [anon_sym___stdcall] = ACTIONS(3134), + [anon_sym___fastcall] = ACTIONS(3134), + [anon_sym___thiscall] = ACTIONS(3134), + [anon_sym___vectorcall] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym_not] = ACTIONS(3134), + [anon_sym_compl] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_sizeof] = ACTIONS(3134), + [anon_sym___alignof__] = ACTIONS(3134), + [anon_sym___alignof] = ACTIONS(3134), + [anon_sym__alignof] = ACTIONS(3134), + [anon_sym_alignof] = ACTIONS(3134), + [anon_sym__Alignof] = ACTIONS(3134), + [anon_sym_offsetof] = ACTIONS(3134), + [anon_sym__Generic] = ACTIONS(3134), + [anon_sym_asm] = ACTIONS(3134), + [anon_sym___asm__] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3136), + [anon_sym_L_SQUOTE] = ACTIONS(3136), + [anon_sym_u_SQUOTE] = ACTIONS(3136), + [anon_sym_U_SQUOTE] = ACTIONS(3136), + [anon_sym_u8_SQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_L_DQUOTE] = ACTIONS(3136), + [anon_sym_u_DQUOTE] = ACTIONS(3136), + [anon_sym_U_DQUOTE] = ACTIONS(3136), + [anon_sym_u8_DQUOTE] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [anon_sym_NULL] = ACTIONS(3134), + [anon_sym_nullptr] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), + [anon_sym_concept] = ACTIONS(3134), + [anon_sym_co_return] = ACTIONS(3134), + [anon_sym_co_yield] = ACTIONS(3134), + [anon_sym_R_DQUOTE] = ACTIONS(3136), + [anon_sym_LR_DQUOTE] = ACTIONS(3136), + [anon_sym_uR_DQUOTE] = ACTIONS(3136), + [anon_sym_UR_DQUOTE] = ACTIONS(3136), + [anon_sym_u8R_DQUOTE] = ACTIONS(3136), + [anon_sym_co_await] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_requires] = ACTIONS(3134), + [sym_this] = ACTIONS(3134), + }, + [1020] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(3776), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -234324,106 +229324,1148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3680), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3682), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_concept] = ACTIONS(4004), - [anon_sym_requires] = ACTIONS(3974), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1063] = { - [sym_function_definition] = STATE(2307), - [sym_declaration] = STATE(2307), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5512), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2248), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4068), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(2307), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(2307), - [sym_operator_cast] = STATE(7176), - [sym__constructor_specifiers] = STATE(2018), - [sym_operator_cast_definition] = STATE(2307), - [sym_operator_cast_declaration] = STATE(2307), - [sym_constructor_or_destructor_definition] = STATE(2307), - [sym_constructor_or_destructor_declaration] = STATE(2307), - [sym_friend_declaration] = STATE(2307), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(2307), - [sym_concept_definition] = STATE(2307), - [sym_requires_clause] = STATE(1072), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [1021] = { + [ts_builtin_sym_end] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3078), + [aux_sym_preproc_include_token1] = ACTIONS(3078), + [aux_sym_preproc_def_token1] = ACTIONS(3078), + [aux_sym_preproc_if_token1] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), + [sym_preproc_directive] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym___extension__] = ACTIONS(3078), + [anon_sym_typedef] = ACTIONS(3078), + [anon_sym_extern] = ACTIONS(3078), + [anon_sym___attribute__] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), + [anon_sym___declspec] = ACTIONS(3078), + [anon_sym___based] = ACTIONS(3078), + [anon_sym___cdecl] = ACTIONS(3078), + [anon_sym___clrcall] = ACTIONS(3078), + [anon_sym___stdcall] = ACTIONS(3078), + [anon_sym___fastcall] = ACTIONS(3078), + [anon_sym___thiscall] = ACTIONS(3078), + [anon_sym___vectorcall] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_signed] = ACTIONS(3078), + [anon_sym_unsigned] = ACTIONS(3078), + [anon_sym_long] = ACTIONS(3078), + [anon_sym_short] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_static] = ACTIONS(3078), + [anon_sym_register] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym___inline] = ACTIONS(3078), + [anon_sym___inline__] = ACTIONS(3078), + [anon_sym___forceinline] = ACTIONS(3078), + [anon_sym_thread_local] = ACTIONS(3078), + [anon_sym___thread] = ACTIONS(3078), + [anon_sym_const] = ACTIONS(3078), + [anon_sym_constexpr] = ACTIONS(3078), + [anon_sym_volatile] = ACTIONS(3078), + [anon_sym_restrict] = ACTIONS(3078), + [anon_sym___restrict__] = ACTIONS(3078), + [anon_sym__Atomic] = ACTIONS(3078), + [anon_sym__Noreturn] = ACTIONS(3078), + [anon_sym_noreturn] = ACTIONS(3078), + [anon_sym_mutable] = ACTIONS(3078), + [anon_sym_constinit] = ACTIONS(3078), + [anon_sym_consteval] = ACTIONS(3078), + [sym_primitive_type] = ACTIONS(3078), + [anon_sym_enum] = ACTIONS(3078), + [anon_sym_class] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_switch] = ACTIONS(3078), + [anon_sym_case] = ACTIONS(3078), + [anon_sym_default] = ACTIONS(3078), + [anon_sym_while] = ACTIONS(3078), + [anon_sym_do] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_goto] = ACTIONS(3078), + [anon_sym_not] = ACTIONS(3078), + [anon_sym_compl] = ACTIONS(3078), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_sizeof] = ACTIONS(3078), + [anon_sym___alignof__] = ACTIONS(3078), + [anon_sym___alignof] = ACTIONS(3078), + [anon_sym__alignof] = ACTIONS(3078), + [anon_sym_alignof] = ACTIONS(3078), + [anon_sym__Alignof] = ACTIONS(3078), + [anon_sym_offsetof] = ACTIONS(3078), + [anon_sym__Generic] = ACTIONS(3078), + [anon_sym_asm] = ACTIONS(3078), + [anon_sym___asm__] = ACTIONS(3078), + [sym_number_literal] = ACTIONS(3080), + [anon_sym_L_SQUOTE] = ACTIONS(3080), + [anon_sym_u_SQUOTE] = ACTIONS(3080), + [anon_sym_U_SQUOTE] = ACTIONS(3080), + [anon_sym_u8_SQUOTE] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3080), + [anon_sym_L_DQUOTE] = ACTIONS(3080), + [anon_sym_u_DQUOTE] = ACTIONS(3080), + [anon_sym_U_DQUOTE] = ACTIONS(3080), + [anon_sym_u8_DQUOTE] = ACTIONS(3080), + [anon_sym_DQUOTE] = ACTIONS(3080), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [anon_sym_NULL] = ACTIONS(3078), + [anon_sym_nullptr] = ACTIONS(3078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3078), + [anon_sym_decltype] = ACTIONS(3078), + [anon_sym_virtual] = ACTIONS(3078), + [anon_sym_alignas] = ACTIONS(3078), + [anon_sym_explicit] = ACTIONS(3078), + [anon_sym_typename] = ACTIONS(3078), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_try] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3078), + [anon_sym_namespace] = ACTIONS(3078), + [anon_sym_using] = ACTIONS(3078), + [anon_sym_static_assert] = ACTIONS(3078), + [anon_sym_concept] = ACTIONS(3078), + [anon_sym_co_return] = ACTIONS(3078), + [anon_sym_co_yield] = ACTIONS(3078), + [anon_sym_R_DQUOTE] = ACTIONS(3080), + [anon_sym_LR_DQUOTE] = ACTIONS(3080), + [anon_sym_uR_DQUOTE] = ACTIONS(3080), + [anon_sym_UR_DQUOTE] = ACTIONS(3080), + [anon_sym_u8R_DQUOTE] = ACTIONS(3080), + [anon_sym_co_await] = ACTIONS(3078), + [anon_sym_new] = ACTIONS(3078), + [anon_sym_requires] = ACTIONS(3078), + [sym_this] = ACTIONS(3078), + }, + [1022] = { + [ts_builtin_sym_end] = ACTIONS(3116), + [sym_identifier] = ACTIONS(3114), + [aux_sym_preproc_include_token1] = ACTIONS(3114), + [aux_sym_preproc_def_token1] = ACTIONS(3114), + [aux_sym_preproc_if_token1] = ACTIONS(3114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3114), + [sym_preproc_directive] = ACTIONS(3114), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3114), + [anon_sym_PLUS] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym___extension__] = ACTIONS(3114), + [anon_sym_typedef] = ACTIONS(3114), + [anon_sym_extern] = ACTIONS(3114), + [anon_sym___attribute__] = ACTIONS(3114), + [anon_sym_COLON_COLON] = ACTIONS(3116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3114), + [anon_sym___based] = ACTIONS(3114), + [anon_sym___cdecl] = ACTIONS(3114), + [anon_sym___clrcall] = ACTIONS(3114), + [anon_sym___stdcall] = ACTIONS(3114), + [anon_sym___fastcall] = ACTIONS(3114), + [anon_sym___thiscall] = ACTIONS(3114), + [anon_sym___vectorcall] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3114), + [anon_sym_unsigned] = ACTIONS(3114), + [anon_sym_long] = ACTIONS(3114), + [anon_sym_short] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_static] = ACTIONS(3114), + [anon_sym_register] = ACTIONS(3114), + [anon_sym_inline] = ACTIONS(3114), + [anon_sym___inline] = ACTIONS(3114), + [anon_sym___inline__] = ACTIONS(3114), + [anon_sym___forceinline] = ACTIONS(3114), + [anon_sym_thread_local] = ACTIONS(3114), + [anon_sym___thread] = ACTIONS(3114), + [anon_sym_const] = ACTIONS(3114), + [anon_sym_constexpr] = ACTIONS(3114), + [anon_sym_volatile] = ACTIONS(3114), + [anon_sym_restrict] = ACTIONS(3114), + [anon_sym___restrict__] = ACTIONS(3114), + [anon_sym__Atomic] = ACTIONS(3114), + [anon_sym__Noreturn] = ACTIONS(3114), + [anon_sym_noreturn] = ACTIONS(3114), + [anon_sym_mutable] = ACTIONS(3114), + [anon_sym_constinit] = ACTIONS(3114), + [anon_sym_consteval] = ACTIONS(3114), + [sym_primitive_type] = ACTIONS(3114), + [anon_sym_enum] = ACTIONS(3114), + [anon_sym_class] = ACTIONS(3114), + [anon_sym_struct] = ACTIONS(3114), + [anon_sym_union] = ACTIONS(3114), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_switch] = ACTIONS(3114), + [anon_sym_case] = ACTIONS(3114), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_while] = ACTIONS(3114), + [anon_sym_do] = ACTIONS(3114), + [anon_sym_for] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_goto] = ACTIONS(3114), + [anon_sym_not] = ACTIONS(3114), + [anon_sym_compl] = ACTIONS(3114), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_sizeof] = ACTIONS(3114), + [anon_sym___alignof__] = ACTIONS(3114), + [anon_sym___alignof] = ACTIONS(3114), + [anon_sym__alignof] = ACTIONS(3114), + [anon_sym_alignof] = ACTIONS(3114), + [anon_sym__Alignof] = ACTIONS(3114), + [anon_sym_offsetof] = ACTIONS(3114), + [anon_sym__Generic] = ACTIONS(3114), + [anon_sym_asm] = ACTIONS(3114), + [anon_sym___asm__] = ACTIONS(3114), + [sym_number_literal] = ACTIONS(3116), + [anon_sym_L_SQUOTE] = ACTIONS(3116), + [anon_sym_u_SQUOTE] = ACTIONS(3116), + [anon_sym_U_SQUOTE] = ACTIONS(3116), + [anon_sym_u8_SQUOTE] = ACTIONS(3116), + [anon_sym_SQUOTE] = ACTIONS(3116), + [anon_sym_L_DQUOTE] = ACTIONS(3116), + [anon_sym_u_DQUOTE] = ACTIONS(3116), + [anon_sym_U_DQUOTE] = ACTIONS(3116), + [anon_sym_u8_DQUOTE] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3116), + [sym_true] = ACTIONS(3114), + [sym_false] = ACTIONS(3114), + [anon_sym_NULL] = ACTIONS(3114), + [anon_sym_nullptr] = ACTIONS(3114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3114), + [anon_sym_decltype] = ACTIONS(3114), + [anon_sym_virtual] = ACTIONS(3114), + [anon_sym_alignas] = ACTIONS(3114), + [anon_sym_explicit] = ACTIONS(3114), + [anon_sym_typename] = ACTIONS(3114), + [anon_sym_template] = ACTIONS(3114), + [anon_sym_operator] = ACTIONS(3114), + [anon_sym_try] = ACTIONS(3114), + [anon_sym_delete] = ACTIONS(3114), + [anon_sym_throw] = ACTIONS(3114), + [anon_sym_namespace] = ACTIONS(3114), + [anon_sym_using] = ACTIONS(3114), + [anon_sym_static_assert] = ACTIONS(3114), + [anon_sym_concept] = ACTIONS(3114), + [anon_sym_co_return] = ACTIONS(3114), + [anon_sym_co_yield] = ACTIONS(3114), + [anon_sym_R_DQUOTE] = ACTIONS(3116), + [anon_sym_LR_DQUOTE] = ACTIONS(3116), + [anon_sym_uR_DQUOTE] = ACTIONS(3116), + [anon_sym_UR_DQUOTE] = ACTIONS(3116), + [anon_sym_u8R_DQUOTE] = ACTIONS(3116), + [anon_sym_co_await] = ACTIONS(3114), + [anon_sym_new] = ACTIONS(3114), + [anon_sym_requires] = ACTIONS(3114), + [sym_this] = ACTIONS(3114), + }, + [1023] = { + [ts_builtin_sym_end] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3130), + [aux_sym_preproc_include_token1] = ACTIONS(3130), + [aux_sym_preproc_def_token1] = ACTIONS(3130), + [aux_sym_preproc_if_token1] = ACTIONS(3130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3130), + [sym_preproc_directive] = ACTIONS(3130), + [anon_sym_LPAREN2] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(3130), + [anon_sym___extension__] = ACTIONS(3130), + [anon_sym_typedef] = ACTIONS(3130), + [anon_sym_extern] = ACTIONS(3130), + [anon_sym___attribute__] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3132), + [anon_sym___declspec] = ACTIONS(3130), + [anon_sym___based] = ACTIONS(3130), + [anon_sym___cdecl] = ACTIONS(3130), + [anon_sym___clrcall] = ACTIONS(3130), + [anon_sym___stdcall] = ACTIONS(3130), + [anon_sym___fastcall] = ACTIONS(3130), + [anon_sym___thiscall] = ACTIONS(3130), + [anon_sym___vectorcall] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_signed] = ACTIONS(3130), + [anon_sym_unsigned] = ACTIONS(3130), + [anon_sym_long] = ACTIONS(3130), + [anon_sym_short] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_static] = ACTIONS(3130), + [anon_sym_register] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym___inline] = ACTIONS(3130), + [anon_sym___inline__] = ACTIONS(3130), + [anon_sym___forceinline] = ACTIONS(3130), + [anon_sym_thread_local] = ACTIONS(3130), + [anon_sym___thread] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(3130), + [anon_sym_constexpr] = ACTIONS(3130), + [anon_sym_volatile] = ACTIONS(3130), + [anon_sym_restrict] = ACTIONS(3130), + [anon_sym___restrict__] = ACTIONS(3130), + [anon_sym__Atomic] = ACTIONS(3130), + [anon_sym__Noreturn] = ACTIONS(3130), + [anon_sym_noreturn] = ACTIONS(3130), + [anon_sym_mutable] = ACTIONS(3130), + [anon_sym_constinit] = ACTIONS(3130), + [anon_sym_consteval] = ACTIONS(3130), + [sym_primitive_type] = ACTIONS(3130), + [anon_sym_enum] = ACTIONS(3130), + [anon_sym_class] = ACTIONS(3130), + [anon_sym_struct] = ACTIONS(3130), + [anon_sym_union] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_switch] = ACTIONS(3130), + [anon_sym_case] = ACTIONS(3130), + [anon_sym_default] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_goto] = ACTIONS(3130), + [anon_sym_not] = ACTIONS(3130), + [anon_sym_compl] = ACTIONS(3130), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_sizeof] = ACTIONS(3130), + [anon_sym___alignof__] = ACTIONS(3130), + [anon_sym___alignof] = ACTIONS(3130), + [anon_sym__alignof] = ACTIONS(3130), + [anon_sym_alignof] = ACTIONS(3130), + [anon_sym__Alignof] = ACTIONS(3130), + [anon_sym_offsetof] = ACTIONS(3130), + [anon_sym__Generic] = ACTIONS(3130), + [anon_sym_asm] = ACTIONS(3130), + [anon_sym___asm__] = ACTIONS(3130), + [sym_number_literal] = ACTIONS(3132), + [anon_sym_L_SQUOTE] = ACTIONS(3132), + [anon_sym_u_SQUOTE] = ACTIONS(3132), + [anon_sym_U_SQUOTE] = ACTIONS(3132), + [anon_sym_u8_SQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_L_DQUOTE] = ACTIONS(3132), + [anon_sym_u_DQUOTE] = ACTIONS(3132), + [anon_sym_U_DQUOTE] = ACTIONS(3132), + [anon_sym_u8_DQUOTE] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [sym_true] = ACTIONS(3130), + [sym_false] = ACTIONS(3130), + [anon_sym_NULL] = ACTIONS(3130), + [anon_sym_nullptr] = ACTIONS(3130), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3130), + [anon_sym_decltype] = ACTIONS(3130), + [anon_sym_virtual] = ACTIONS(3130), + [anon_sym_alignas] = ACTIONS(3130), + [anon_sym_explicit] = ACTIONS(3130), + [anon_sym_typename] = ACTIONS(3130), + [anon_sym_template] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_delete] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_namespace] = ACTIONS(3130), + [anon_sym_using] = ACTIONS(3130), + [anon_sym_static_assert] = ACTIONS(3130), + [anon_sym_concept] = ACTIONS(3130), + [anon_sym_co_return] = ACTIONS(3130), + [anon_sym_co_yield] = ACTIONS(3130), + [anon_sym_R_DQUOTE] = ACTIONS(3132), + [anon_sym_LR_DQUOTE] = ACTIONS(3132), + [anon_sym_uR_DQUOTE] = ACTIONS(3132), + [anon_sym_UR_DQUOTE] = ACTIONS(3132), + [anon_sym_u8R_DQUOTE] = ACTIONS(3132), + [anon_sym_co_await] = ACTIONS(3130), + [anon_sym_new] = ACTIONS(3130), + [anon_sym_requires] = ACTIONS(3130), + [sym_this] = ACTIONS(3130), + }, + [1024] = { + [ts_builtin_sym_end] = ACTIONS(3292), + [sym_identifier] = ACTIONS(3290), + [aux_sym_preproc_include_token1] = ACTIONS(3290), + [aux_sym_preproc_def_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), + [sym_preproc_directive] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3290), + [anon_sym___extension__] = ACTIONS(3290), + [anon_sym_typedef] = ACTIONS(3290), + [anon_sym_extern] = ACTIONS(3290), + [anon_sym___attribute__] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), + [anon_sym___declspec] = ACTIONS(3290), + [anon_sym___based] = ACTIONS(3290), + [anon_sym___cdecl] = ACTIONS(3290), + [anon_sym___clrcall] = ACTIONS(3290), + [anon_sym___stdcall] = ACTIONS(3290), + [anon_sym___fastcall] = ACTIONS(3290), + [anon_sym___thiscall] = ACTIONS(3290), + [anon_sym___vectorcall] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_signed] = ACTIONS(3290), + [anon_sym_unsigned] = ACTIONS(3290), + [anon_sym_long] = ACTIONS(3290), + [anon_sym_short] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_register] = ACTIONS(3290), + [anon_sym_inline] = ACTIONS(3290), + [anon_sym___inline] = ACTIONS(3290), + [anon_sym___inline__] = ACTIONS(3290), + [anon_sym___forceinline] = ACTIONS(3290), + [anon_sym_thread_local] = ACTIONS(3290), + [anon_sym___thread] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_constexpr] = ACTIONS(3290), + [anon_sym_volatile] = ACTIONS(3290), + [anon_sym_restrict] = ACTIONS(3290), + [anon_sym___restrict__] = ACTIONS(3290), + [anon_sym__Atomic] = ACTIONS(3290), + [anon_sym__Noreturn] = ACTIONS(3290), + [anon_sym_noreturn] = ACTIONS(3290), + [anon_sym_mutable] = ACTIONS(3290), + [anon_sym_constinit] = ACTIONS(3290), + [anon_sym_consteval] = ACTIONS(3290), + [sym_primitive_type] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_goto] = ACTIONS(3290), + [anon_sym_not] = ACTIONS(3290), + [anon_sym_compl] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_sizeof] = ACTIONS(3290), + [anon_sym___alignof__] = ACTIONS(3290), + [anon_sym___alignof] = ACTIONS(3290), + [anon_sym__alignof] = ACTIONS(3290), + [anon_sym_alignof] = ACTIONS(3290), + [anon_sym__Alignof] = ACTIONS(3290), + [anon_sym_offsetof] = ACTIONS(3290), + [anon_sym__Generic] = ACTIONS(3290), + [anon_sym_asm] = ACTIONS(3290), + [anon_sym___asm__] = ACTIONS(3290), + [sym_number_literal] = ACTIONS(3292), + [anon_sym_L_SQUOTE] = ACTIONS(3292), + [anon_sym_u_SQUOTE] = ACTIONS(3292), + [anon_sym_U_SQUOTE] = ACTIONS(3292), + [anon_sym_u8_SQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_L_DQUOTE] = ACTIONS(3292), + [anon_sym_u_DQUOTE] = ACTIONS(3292), + [anon_sym_U_DQUOTE] = ACTIONS(3292), + [anon_sym_u8_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [anon_sym_NULL] = ACTIONS(3290), + [anon_sym_nullptr] = ACTIONS(3290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3290), + [anon_sym_decltype] = ACTIONS(3290), + [anon_sym_virtual] = ACTIONS(3290), + [anon_sym_alignas] = ACTIONS(3290), + [anon_sym_explicit] = ACTIONS(3290), + [anon_sym_typename] = ACTIONS(3290), + [anon_sym_template] = ACTIONS(3290), + [anon_sym_operator] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_static_assert] = ACTIONS(3290), + [anon_sym_concept] = ACTIONS(3290), + [anon_sym_co_return] = ACTIONS(3290), + [anon_sym_co_yield] = ACTIONS(3290), + [anon_sym_R_DQUOTE] = ACTIONS(3292), + [anon_sym_LR_DQUOTE] = ACTIONS(3292), + [anon_sym_uR_DQUOTE] = ACTIONS(3292), + [anon_sym_UR_DQUOTE] = ACTIONS(3292), + [anon_sym_u8R_DQUOTE] = ACTIONS(3292), + [anon_sym_co_await] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_requires] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), + }, + [1025] = { + [ts_builtin_sym_end] = ACTIONS(3258), + [sym_identifier] = ACTIONS(3256), + [aux_sym_preproc_include_token1] = ACTIONS(3256), + [aux_sym_preproc_def_token1] = ACTIONS(3256), + [aux_sym_preproc_if_token1] = ACTIONS(3256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3256), + [sym_preproc_directive] = ACTIONS(3256), + [anon_sym_LPAREN2] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3256), + [anon_sym___extension__] = ACTIONS(3256), + [anon_sym_typedef] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym___attribute__] = ACTIONS(3256), + [anon_sym_COLON_COLON] = ACTIONS(3258), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3258), + [anon_sym___declspec] = ACTIONS(3256), + [anon_sym___based] = ACTIONS(3256), + [anon_sym___cdecl] = ACTIONS(3256), + [anon_sym___clrcall] = ACTIONS(3256), + [anon_sym___stdcall] = ACTIONS(3256), + [anon_sym___fastcall] = ACTIONS(3256), + [anon_sym___thiscall] = ACTIONS(3256), + [anon_sym___vectorcall] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_signed] = ACTIONS(3256), + [anon_sym_unsigned] = ACTIONS(3256), + [anon_sym_long] = ACTIONS(3256), + [anon_sym_short] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym___inline] = ACTIONS(3256), + [anon_sym___inline__] = ACTIONS(3256), + [anon_sym___forceinline] = ACTIONS(3256), + [anon_sym_thread_local] = ACTIONS(3256), + [anon_sym___thread] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_constexpr] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym___restrict__] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym__Noreturn] = ACTIONS(3256), + [anon_sym_noreturn] = ACTIONS(3256), + [anon_sym_mutable] = ACTIONS(3256), + [anon_sym_constinit] = ACTIONS(3256), + [anon_sym_consteval] = ACTIONS(3256), + [sym_primitive_type] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [anon_sym_class] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_union] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3256), + [anon_sym_case] = ACTIONS(3256), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_goto] = ACTIONS(3256), + [anon_sym_not] = ACTIONS(3256), + [anon_sym_compl] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_sizeof] = ACTIONS(3256), + [anon_sym___alignof__] = ACTIONS(3256), + [anon_sym___alignof] = ACTIONS(3256), + [anon_sym__alignof] = ACTIONS(3256), + [anon_sym_alignof] = ACTIONS(3256), + [anon_sym__Alignof] = ACTIONS(3256), + [anon_sym_offsetof] = ACTIONS(3256), + [anon_sym__Generic] = ACTIONS(3256), + [anon_sym_asm] = ACTIONS(3256), + [anon_sym___asm__] = ACTIONS(3256), + [sym_number_literal] = ACTIONS(3258), + [anon_sym_L_SQUOTE] = ACTIONS(3258), + [anon_sym_u_SQUOTE] = ACTIONS(3258), + [anon_sym_U_SQUOTE] = ACTIONS(3258), + [anon_sym_u8_SQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [anon_sym_NULL] = ACTIONS(3256), + [anon_sym_nullptr] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3256), + [anon_sym_decltype] = ACTIONS(3256), + [anon_sym_virtual] = ACTIONS(3256), + [anon_sym_alignas] = ACTIONS(3256), + [anon_sym_explicit] = ACTIONS(3256), + [anon_sym_typename] = ACTIONS(3256), + [anon_sym_template] = ACTIONS(3256), + [anon_sym_operator] = ACTIONS(3256), + [anon_sym_try] = ACTIONS(3256), + [anon_sym_delete] = ACTIONS(3256), + [anon_sym_throw] = ACTIONS(3256), + [anon_sym_namespace] = ACTIONS(3256), + [anon_sym_using] = ACTIONS(3256), + [anon_sym_static_assert] = ACTIONS(3256), + [anon_sym_concept] = ACTIONS(3256), + [anon_sym_co_return] = ACTIONS(3256), + [anon_sym_co_yield] = ACTIONS(3256), + [anon_sym_R_DQUOTE] = ACTIONS(3258), + [anon_sym_LR_DQUOTE] = ACTIONS(3258), + [anon_sym_uR_DQUOTE] = ACTIONS(3258), + [anon_sym_UR_DQUOTE] = ACTIONS(3258), + [anon_sym_u8R_DQUOTE] = ACTIONS(3258), + [anon_sym_co_await] = ACTIONS(3256), + [anon_sym_new] = ACTIONS(3256), + [anon_sym_requires] = ACTIONS(3256), + [sym_this] = ACTIONS(3256), + }, + [1026] = { + [ts_builtin_sym_end] = ACTIONS(3272), + [sym_identifier] = ACTIONS(3270), + [aux_sym_preproc_include_token1] = ACTIONS(3270), + [aux_sym_preproc_def_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token1] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), + [sym_preproc_directive] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym_typedef] = ACTIONS(3270), + [anon_sym_extern] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), + [anon_sym___declspec] = ACTIONS(3270), + [anon_sym___based] = ACTIONS(3270), + [anon_sym___cdecl] = ACTIONS(3270), + [anon_sym___clrcall] = ACTIONS(3270), + [anon_sym___stdcall] = ACTIONS(3270), + [anon_sym___fastcall] = ACTIONS(3270), + [anon_sym___thiscall] = ACTIONS(3270), + [anon_sym___vectorcall] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_signed] = ACTIONS(3270), + [anon_sym_unsigned] = ACTIONS(3270), + [anon_sym_long] = ACTIONS(3270), + [anon_sym_short] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_register] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym___inline] = ACTIONS(3270), + [anon_sym___inline__] = ACTIONS(3270), + [anon_sym___forceinline] = ACTIONS(3270), + [anon_sym_thread_local] = ACTIONS(3270), + [anon_sym___thread] = ACTIONS(3270), + [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_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [sym_primitive_type] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_not] = ACTIONS(3270), + [anon_sym_compl] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_sizeof] = ACTIONS(3270), + [anon_sym___alignof__] = ACTIONS(3270), + [anon_sym___alignof] = ACTIONS(3270), + [anon_sym__alignof] = ACTIONS(3270), + [anon_sym_alignof] = ACTIONS(3270), + [anon_sym__Alignof] = ACTIONS(3270), + [anon_sym_offsetof] = ACTIONS(3270), + [anon_sym__Generic] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym___asm__] = ACTIONS(3270), + [sym_number_literal] = ACTIONS(3272), + [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(3272), + [anon_sym_u_DQUOTE] = ACTIONS(3272), + [anon_sym_U_DQUOTE] = ACTIONS(3272), + [anon_sym_u8_DQUOTE] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [anon_sym_NULL] = ACTIONS(3270), + [anon_sym_nullptr] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3270), + [anon_sym_decltype] = ACTIONS(3270), + [anon_sym_virtual] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3270), + [anon_sym_explicit] = ACTIONS(3270), + [anon_sym_typename] = ACTIONS(3270), + [anon_sym_template] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_static_assert] = ACTIONS(3270), + [anon_sym_concept] = ACTIONS(3270), + [anon_sym_co_return] = ACTIONS(3270), + [anon_sym_co_yield] = ACTIONS(3270), + [anon_sym_R_DQUOTE] = ACTIONS(3272), + [anon_sym_LR_DQUOTE] = ACTIONS(3272), + [anon_sym_uR_DQUOTE] = ACTIONS(3272), + [anon_sym_UR_DQUOTE] = ACTIONS(3272), + [anon_sym_u8R_DQUOTE] = ACTIONS(3272), + [anon_sym_co_await] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_requires] = ACTIONS(3270), + [sym_this] = ACTIONS(3270), + }, + [1027] = { + [ts_builtin_sym_end] = ACTIONS(3140), + [sym_identifier] = ACTIONS(3138), + [aux_sym_preproc_include_token1] = ACTIONS(3138), + [aux_sym_preproc_def_token1] = ACTIONS(3138), + [aux_sym_preproc_if_token1] = ACTIONS(3138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3138), + [sym_preproc_directive] = ACTIONS(3138), + [anon_sym_LPAREN2] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym___extension__] = ACTIONS(3138), + [anon_sym_typedef] = ACTIONS(3138), + [anon_sym_extern] = ACTIONS(3138), + [anon_sym___attribute__] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(3140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3140), + [anon_sym___declspec] = ACTIONS(3138), + [anon_sym___based] = ACTIONS(3138), + [anon_sym___cdecl] = ACTIONS(3138), + [anon_sym___clrcall] = ACTIONS(3138), + [anon_sym___stdcall] = ACTIONS(3138), + [anon_sym___fastcall] = ACTIONS(3138), + [anon_sym___thiscall] = ACTIONS(3138), + [anon_sym___vectorcall] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_signed] = ACTIONS(3138), + [anon_sym_unsigned] = ACTIONS(3138), + [anon_sym_long] = ACTIONS(3138), + [anon_sym_short] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_register] = ACTIONS(3138), + [anon_sym_inline] = ACTIONS(3138), + [anon_sym___inline] = ACTIONS(3138), + [anon_sym___inline__] = ACTIONS(3138), + [anon_sym___forceinline] = ACTIONS(3138), + [anon_sym_thread_local] = ACTIONS(3138), + [anon_sym___thread] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_constexpr] = ACTIONS(3138), + [anon_sym_volatile] = ACTIONS(3138), + [anon_sym_restrict] = ACTIONS(3138), + [anon_sym___restrict__] = ACTIONS(3138), + [anon_sym__Atomic] = ACTIONS(3138), + [anon_sym__Noreturn] = ACTIONS(3138), + [anon_sym_noreturn] = ACTIONS(3138), + [anon_sym_mutable] = ACTIONS(3138), + [anon_sym_constinit] = ACTIONS(3138), + [anon_sym_consteval] = ACTIONS(3138), + [sym_primitive_type] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_struct] = ACTIONS(3138), + [anon_sym_union] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_case] = ACTIONS(3138), + [anon_sym_default] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_goto] = ACTIONS(3138), + [anon_sym_not] = ACTIONS(3138), + [anon_sym_compl] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_sizeof] = ACTIONS(3138), + [anon_sym___alignof__] = ACTIONS(3138), + [anon_sym___alignof] = ACTIONS(3138), + [anon_sym__alignof] = ACTIONS(3138), + [anon_sym_alignof] = ACTIONS(3138), + [anon_sym__Alignof] = ACTIONS(3138), + [anon_sym_offsetof] = ACTIONS(3138), + [anon_sym__Generic] = ACTIONS(3138), + [anon_sym_asm] = ACTIONS(3138), + [anon_sym___asm__] = ACTIONS(3138), + [sym_number_literal] = ACTIONS(3140), + [anon_sym_L_SQUOTE] = ACTIONS(3140), + [anon_sym_u_SQUOTE] = ACTIONS(3140), + [anon_sym_U_SQUOTE] = ACTIONS(3140), + [anon_sym_u8_SQUOTE] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3140), + [anon_sym_L_DQUOTE] = ACTIONS(3140), + [anon_sym_u_DQUOTE] = ACTIONS(3140), + [anon_sym_U_DQUOTE] = ACTIONS(3140), + [anon_sym_u8_DQUOTE] = ACTIONS(3140), + [anon_sym_DQUOTE] = ACTIONS(3140), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [anon_sym_NULL] = ACTIONS(3138), + [anon_sym_nullptr] = ACTIONS(3138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3138), + [anon_sym_decltype] = ACTIONS(3138), + [anon_sym_virtual] = ACTIONS(3138), + [anon_sym_alignas] = ACTIONS(3138), + [anon_sym_explicit] = ACTIONS(3138), + [anon_sym_typename] = ACTIONS(3138), + [anon_sym_template] = ACTIONS(3138), + [anon_sym_operator] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_static_assert] = ACTIONS(3138), + [anon_sym_concept] = ACTIONS(3138), + [anon_sym_co_return] = ACTIONS(3138), + [anon_sym_co_yield] = ACTIONS(3138), + [anon_sym_R_DQUOTE] = ACTIONS(3140), + [anon_sym_LR_DQUOTE] = ACTIONS(3140), + [anon_sym_uR_DQUOTE] = ACTIONS(3140), + [anon_sym_UR_DQUOTE] = ACTIONS(3140), + [anon_sym_u8R_DQUOTE] = ACTIONS(3140), + [anon_sym_co_await] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_requires] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + }, + [1028] = { + [ts_builtin_sym_end] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3147), + [aux_sym_preproc_include_token1] = ACTIONS(3147), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), + [sym_preproc_directive] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_AMP_AMP] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3147), + [anon_sym_typedef] = ACTIONS(3147), + [anon_sym_extern] = ACTIONS(3147), + [anon_sym___attribute__] = ACTIONS(3147), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), + [anon_sym___declspec] = ACTIONS(3147), + [anon_sym___based] = ACTIONS(3147), + [anon_sym___cdecl] = ACTIONS(3147), + [anon_sym___clrcall] = ACTIONS(3147), + [anon_sym___stdcall] = ACTIONS(3147), + [anon_sym___fastcall] = ACTIONS(3147), + [anon_sym___thiscall] = ACTIONS(3147), + [anon_sym___vectorcall] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_signed] = ACTIONS(3147), + [anon_sym_unsigned] = ACTIONS(3147), + [anon_sym_long] = ACTIONS(3147), + [anon_sym_short] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_register] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym___inline] = ACTIONS(3147), + [anon_sym___inline__] = ACTIONS(3147), + [anon_sym___forceinline] = ACTIONS(3147), + [anon_sym_thread_local] = ACTIONS(3147), + [anon_sym___thread] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_constexpr] = ACTIONS(3147), + [anon_sym_volatile] = ACTIONS(3147), + [anon_sym_restrict] = ACTIONS(3147), + [anon_sym___restrict__] = ACTIONS(3147), + [anon_sym__Atomic] = ACTIONS(3147), + [anon_sym__Noreturn] = ACTIONS(3147), + [anon_sym_noreturn] = ACTIONS(3147), + [anon_sym_mutable] = ACTIONS(3147), + [anon_sym_constinit] = ACTIONS(3147), + [anon_sym_consteval] = ACTIONS(3147), + [sym_primitive_type] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3147), + [anon_sym_case] = ACTIONS(3147), + [anon_sym_default] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_do] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_goto] = ACTIONS(3147), + [anon_sym_not] = ACTIONS(3147), + [anon_sym_compl] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_sizeof] = ACTIONS(3147), + [anon_sym___alignof__] = ACTIONS(3147), + [anon_sym___alignof] = ACTIONS(3147), + [anon_sym__alignof] = ACTIONS(3147), + [anon_sym_alignof] = ACTIONS(3147), + [anon_sym__Alignof] = ACTIONS(3147), + [anon_sym_offsetof] = ACTIONS(3147), + [anon_sym__Generic] = ACTIONS(3147), + [anon_sym_asm] = ACTIONS(3147), + [anon_sym___asm__] = ACTIONS(3147), + [sym_number_literal] = ACTIONS(3149), + [anon_sym_L_SQUOTE] = ACTIONS(3149), + [anon_sym_u_SQUOTE] = ACTIONS(3149), + [anon_sym_U_SQUOTE] = ACTIONS(3149), + [anon_sym_u8_SQUOTE] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3149), + [anon_sym_L_DQUOTE] = ACTIONS(3149), + [anon_sym_u_DQUOTE] = ACTIONS(3149), + [anon_sym_U_DQUOTE] = ACTIONS(3149), + [anon_sym_u8_DQUOTE] = ACTIONS(3149), + [anon_sym_DQUOTE] = ACTIONS(3149), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [anon_sym_NULL] = ACTIONS(3147), + [anon_sym_nullptr] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3147), + [anon_sym_decltype] = ACTIONS(3147), + [anon_sym_virtual] = ACTIONS(3147), + [anon_sym_alignas] = ACTIONS(3147), + [anon_sym_explicit] = ACTIONS(3147), + [anon_sym_typename] = ACTIONS(3147), + [anon_sym_template] = ACTIONS(3147), + [anon_sym_operator] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_delete] = ACTIONS(3147), + [anon_sym_throw] = ACTIONS(3147), + [anon_sym_namespace] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_static_assert] = ACTIONS(3147), + [anon_sym_concept] = ACTIONS(3147), + [anon_sym_co_return] = ACTIONS(3147), + [anon_sym_co_yield] = ACTIONS(3147), + [anon_sym_R_DQUOTE] = ACTIONS(3149), + [anon_sym_LR_DQUOTE] = ACTIONS(3149), + [anon_sym_uR_DQUOTE] = ACTIONS(3149), + [anon_sym_UR_DQUOTE] = ACTIONS(3149), + [anon_sym_u8R_DQUOTE] = ACTIONS(3149), + [anon_sym_co_await] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_requires] = ACTIONS(3147), + [sym_this] = ACTIONS(3147), + }, + [1029] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(3778), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -234443,106 +230485,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(4006), - [anon_sym_concept] = ACTIONS(4008), - [anon_sym_requires] = ACTIONS(3974), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1064] = { - [sym_function_definition] = STATE(948), - [sym_declaration] = STATE(948), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5509), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2171), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6763), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4088), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(948), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2019), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(948), - [sym_operator_cast] = STATE(7183), - [sym__constructor_specifiers] = STATE(2019), - [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_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(948), - [sym_concept_definition] = STATE(948), - [sym_requires_clause] = STATE(1074), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7183), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2019), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [1030] = { + [sym_preproc_def] = STATE(999), + [sym_preproc_function_def] = STATE(999), + [sym_preproc_call] = STATE(999), + [sym_preproc_if_in_field_declaration_list] = STATE(999), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(999), + [sym_type_definition] = STATE(999), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(999), + [sym_field_declaration] = STATE(999), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(999), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(999), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(999), + [sym_operator_cast_declaration] = STATE(999), + [sym_constructor_or_destructor_definition] = STATE(999), + [sym_constructor_or_destructor_declaration] = STATE(999), + [sym_friend_declaration] = STATE(999), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(999), + [sym_alias_declaration] = STATE(999), + [sym_static_assert_declaration] = STATE(999), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(999), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(3780), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -234562,341 +230614,632 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(4010), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(4012), - [anon_sym_using] = ACTIONS(4014), - [anon_sym_concept] = ACTIONS(1040), - [anon_sym_requires] = ACTIONS(3974), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1065] = { - [sym_identifier] = ACTIONS(4016), - [anon_sym_COMMA] = ACTIONS(4018), - [anon_sym_RPAREN] = ACTIONS(4018), - [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_extern] = ACTIONS(4016), - [anon_sym___attribute__] = 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_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_EQ] = ACTIONS(4018), - [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_mutable] = ACTIONS(4016), - [anon_sym_constinit] = ACTIONS(4016), - [anon_sym_consteval] = 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_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_virtual] = ACTIONS(4016), - [anon_sym_alignas] = ACTIONS(4016), - [anon_sym_explicit] = ACTIONS(4016), - [anon_sym_typename] = ACTIONS(4016), - [anon_sym_template] = ACTIONS(4016), - [anon_sym_GT2] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4016), - [anon_sym_try] = ACTIONS(4016), - [anon_sym_delete] = ACTIONS(4016), - [anon_sym_throw] = 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), - [sym_this] = ACTIONS(4016), + [1031] = { + [ts_builtin_sym_end] = ACTIONS(3161), + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_include_token1] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym___cdecl] = ACTIONS(3159), + [anon_sym___clrcall] = ACTIONS(3159), + [anon_sym___stdcall] = ACTIONS(3159), + [anon_sym___fastcall] = ACTIONS(3159), + [anon_sym___thiscall] = ACTIONS(3159), + [anon_sym___vectorcall] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_concept] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), + [sym_this] = ACTIONS(3159), }, - [1066] = { - [sym_identifier] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4022), - [anon_sym_RPAREN] = ACTIONS(4022), - [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_extern] = ACTIONS(4020), - [anon_sym___attribute__] = 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_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_EQ] = ACTIONS(4022), - [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_mutable] = ACTIONS(4020), - [anon_sym_constinit] = ACTIONS(4020), - [anon_sym_consteval] = 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_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_virtual] = ACTIONS(4020), - [anon_sym_alignas] = ACTIONS(4020), - [anon_sym_explicit] = ACTIONS(4020), - [anon_sym_typename] = ACTIONS(4020), - [anon_sym_template] = ACTIONS(4020), - [anon_sym_GT2] = ACTIONS(4022), - [anon_sym_operator] = ACTIONS(4020), - [anon_sym_try] = ACTIONS(4020), - [anon_sym_delete] = ACTIONS(4020), - [anon_sym_throw] = 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), - [sym_this] = ACTIONS(4020), + [1032] = { + [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___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_extern] = 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___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_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = 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(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_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_virtual] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_typename] = 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_using] = 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(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), + [sym_this] = ACTIONS(3163), }, - [1067] = { - [sym_function_definition] = STATE(1009), - [sym_declaration] = STATE(1009), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5530), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2244), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6734), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4009), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(1009), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2016), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(1009), - [sym_operator_cast] = STATE(7203), - [sym__constructor_specifiers] = STATE(2016), - [sym_operator_cast_definition] = STATE(1009), - [sym_operator_cast_declaration] = STATE(1009), - [sym_constructor_or_destructor_definition] = STATE(1009), - [sym_constructor_or_destructor_declaration] = STATE(1009), - [sym_friend_declaration] = STATE(1009), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(1009), - [sym_concept_definition] = STATE(1009), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7203), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2016), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [1033] = { + [ts_builtin_sym_end] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3179), + [aux_sym_preproc_include_token1] = ACTIONS(3179), + [aux_sym_preproc_def_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), + [sym_preproc_directive] = ACTIONS(3179), + [anon_sym_LPAREN2] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym___extension__] = ACTIONS(3179), + [anon_sym_typedef] = ACTIONS(3179), + [anon_sym_extern] = ACTIONS(3179), + [anon_sym___attribute__] = ACTIONS(3179), + [anon_sym_COLON_COLON] = ACTIONS(3181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), + [anon_sym___declspec] = ACTIONS(3179), + [anon_sym___based] = ACTIONS(3179), + [anon_sym___cdecl] = ACTIONS(3179), + [anon_sym___clrcall] = ACTIONS(3179), + [anon_sym___stdcall] = ACTIONS(3179), + [anon_sym___fastcall] = ACTIONS(3179), + [anon_sym___thiscall] = ACTIONS(3179), + [anon_sym___vectorcall] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_signed] = ACTIONS(3179), + [anon_sym_unsigned] = ACTIONS(3179), + [anon_sym_long] = ACTIONS(3179), + [anon_sym_short] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_register] = ACTIONS(3179), + [anon_sym_inline] = ACTIONS(3179), + [anon_sym___inline] = ACTIONS(3179), + [anon_sym___inline__] = ACTIONS(3179), + [anon_sym___forceinline] = ACTIONS(3179), + [anon_sym_thread_local] = ACTIONS(3179), + [anon_sym___thread] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_constexpr] = ACTIONS(3179), + [anon_sym_volatile] = ACTIONS(3179), + [anon_sym_restrict] = ACTIONS(3179), + [anon_sym___restrict__] = ACTIONS(3179), + [anon_sym__Atomic] = ACTIONS(3179), + [anon_sym__Noreturn] = ACTIONS(3179), + [anon_sym_noreturn] = ACTIONS(3179), + [anon_sym_mutable] = ACTIONS(3179), + [anon_sym_constinit] = ACTIONS(3179), + [anon_sym_consteval] = ACTIONS(3179), + [sym_primitive_type] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3179), + [anon_sym_case] = ACTIONS(3179), + [anon_sym_default] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_do] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_goto] = ACTIONS(3179), + [anon_sym_not] = ACTIONS(3179), + [anon_sym_compl] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3179), + [anon_sym___alignof__] = ACTIONS(3179), + [anon_sym___alignof] = ACTIONS(3179), + [anon_sym__alignof] = ACTIONS(3179), + [anon_sym_alignof] = ACTIONS(3179), + [anon_sym__Alignof] = ACTIONS(3179), + [anon_sym_offsetof] = ACTIONS(3179), + [anon_sym__Generic] = ACTIONS(3179), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym___asm__] = ACTIONS(3179), + [sym_number_literal] = ACTIONS(3181), + [anon_sym_L_SQUOTE] = ACTIONS(3181), + [anon_sym_u_SQUOTE] = ACTIONS(3181), + [anon_sym_U_SQUOTE] = ACTIONS(3181), + [anon_sym_u8_SQUOTE] = ACTIONS(3181), + [anon_sym_SQUOTE] = ACTIONS(3181), + [anon_sym_L_DQUOTE] = ACTIONS(3181), + [anon_sym_u_DQUOTE] = ACTIONS(3181), + [anon_sym_U_DQUOTE] = ACTIONS(3181), + [anon_sym_u8_DQUOTE] = ACTIONS(3181), + [anon_sym_DQUOTE] = ACTIONS(3181), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [anon_sym_NULL] = ACTIONS(3179), + [anon_sym_nullptr] = ACTIONS(3179), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3179), + [anon_sym_decltype] = ACTIONS(3179), + [anon_sym_virtual] = ACTIONS(3179), + [anon_sym_alignas] = ACTIONS(3179), + [anon_sym_explicit] = ACTIONS(3179), + [anon_sym_typename] = ACTIONS(3179), + [anon_sym_template] = ACTIONS(3179), + [anon_sym_operator] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3179), + [anon_sym_delete] = ACTIONS(3179), + [anon_sym_throw] = ACTIONS(3179), + [anon_sym_namespace] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3179), + [anon_sym_static_assert] = ACTIONS(3179), + [anon_sym_concept] = ACTIONS(3179), + [anon_sym_co_return] = ACTIONS(3179), + [anon_sym_co_yield] = ACTIONS(3179), + [anon_sym_R_DQUOTE] = ACTIONS(3181), + [anon_sym_LR_DQUOTE] = ACTIONS(3181), + [anon_sym_uR_DQUOTE] = ACTIONS(3181), + [anon_sym_UR_DQUOTE] = ACTIONS(3181), + [anon_sym_u8R_DQUOTE] = ACTIONS(3181), + [anon_sym_co_await] = ACTIONS(3179), + [anon_sym_new] = ACTIONS(3179), + [anon_sym_requires] = ACTIONS(3179), + [sym_this] = ACTIONS(3179), + }, + [1034] = { + [ts_builtin_sym_end] = ACTIONS(3185), + [sym_identifier] = ACTIONS(3183), + [aux_sym_preproc_include_token1] = ACTIONS(3183), + [aux_sym_preproc_def_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3183), + [anon_sym_LPAREN2] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_AMP_AMP] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym___extension__] = ACTIONS(3183), + [anon_sym_typedef] = ACTIONS(3183), + [anon_sym_extern] = ACTIONS(3183), + [anon_sym___attribute__] = ACTIONS(3183), + [anon_sym_COLON_COLON] = ACTIONS(3185), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), + [anon_sym___declspec] = ACTIONS(3183), + [anon_sym___based] = ACTIONS(3183), + [anon_sym___cdecl] = ACTIONS(3183), + [anon_sym___clrcall] = ACTIONS(3183), + [anon_sym___stdcall] = ACTIONS(3183), + [anon_sym___fastcall] = ACTIONS(3183), + [anon_sym___thiscall] = ACTIONS(3183), + [anon_sym___vectorcall] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_signed] = ACTIONS(3183), + [anon_sym_unsigned] = ACTIONS(3183), + [anon_sym_long] = ACTIONS(3183), + [anon_sym_short] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_register] = ACTIONS(3183), + [anon_sym_inline] = ACTIONS(3183), + [anon_sym___inline] = ACTIONS(3183), + [anon_sym___inline__] = ACTIONS(3183), + [anon_sym___forceinline] = ACTIONS(3183), + [anon_sym_thread_local] = ACTIONS(3183), + [anon_sym___thread] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_constexpr] = ACTIONS(3183), + [anon_sym_volatile] = ACTIONS(3183), + [anon_sym_restrict] = ACTIONS(3183), + [anon_sym___restrict__] = ACTIONS(3183), + [anon_sym__Atomic] = ACTIONS(3183), + [anon_sym__Noreturn] = ACTIONS(3183), + [anon_sym_noreturn] = ACTIONS(3183), + [anon_sym_mutable] = ACTIONS(3183), + [anon_sym_constinit] = ACTIONS(3183), + [anon_sym_consteval] = ACTIONS(3183), + [sym_primitive_type] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_goto] = ACTIONS(3183), + [anon_sym_not] = ACTIONS(3183), + [anon_sym_compl] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3183), + [anon_sym___alignof__] = ACTIONS(3183), + [anon_sym___alignof] = ACTIONS(3183), + [anon_sym__alignof] = ACTIONS(3183), + [anon_sym_alignof] = ACTIONS(3183), + [anon_sym__Alignof] = ACTIONS(3183), + [anon_sym_offsetof] = ACTIONS(3183), + [anon_sym__Generic] = ACTIONS(3183), + [anon_sym_asm] = ACTIONS(3183), + [anon_sym___asm__] = ACTIONS(3183), + [sym_number_literal] = ACTIONS(3185), + [anon_sym_L_SQUOTE] = ACTIONS(3185), + [anon_sym_u_SQUOTE] = ACTIONS(3185), + [anon_sym_U_SQUOTE] = ACTIONS(3185), + [anon_sym_u8_SQUOTE] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3185), + [anon_sym_L_DQUOTE] = ACTIONS(3185), + [anon_sym_u_DQUOTE] = ACTIONS(3185), + [anon_sym_U_DQUOTE] = ACTIONS(3185), + [anon_sym_u8_DQUOTE] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(3185), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [anon_sym_NULL] = ACTIONS(3183), + [anon_sym_nullptr] = ACTIONS(3183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3183), + [anon_sym_decltype] = ACTIONS(3183), + [anon_sym_virtual] = ACTIONS(3183), + [anon_sym_alignas] = ACTIONS(3183), + [anon_sym_explicit] = ACTIONS(3183), + [anon_sym_typename] = ACTIONS(3183), + [anon_sym_template] = ACTIONS(3183), + [anon_sym_operator] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_static_assert] = ACTIONS(3183), + [anon_sym_concept] = ACTIONS(3183), + [anon_sym_co_return] = ACTIONS(3183), + [anon_sym_co_yield] = ACTIONS(3183), + [anon_sym_R_DQUOTE] = ACTIONS(3185), + [anon_sym_LR_DQUOTE] = ACTIONS(3185), + [anon_sym_uR_DQUOTE] = ACTIONS(3185), + [anon_sym_UR_DQUOTE] = ACTIONS(3185), + [anon_sym_u8R_DQUOTE] = ACTIONS(3185), + [anon_sym_co_await] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_requires] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), + }, + [1035] = { + [sym_preproc_def] = STATE(1044), + [sym_preproc_function_def] = STATE(1044), + [sym_preproc_call] = STATE(1044), + [sym_preproc_if_in_field_declaration_list] = STATE(1044), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1044), + [sym_type_definition] = STATE(1044), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6173), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6766), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(1044), + [sym_field_declaration] = STATE(1044), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2043), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(1044), + [sym_operator_cast] = STATE(7229), + [sym_inline_method_definition] = STATE(1044), + [sym__constructor_specifiers] = STATE(2043), + [sym_operator_cast_definition] = STATE(1044), + [sym_operator_cast_declaration] = STATE(1044), + [sym_constructor_or_destructor_definition] = STATE(1044), + [sym_constructor_or_destructor_declaration] = STATE(1044), + [sym_friend_declaration] = STATE(1044), + [sym_access_specifier] = STATE(8696), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(1044), + [sym_alias_declaration] = STATE(1044), + [sym_static_assert_declaration] = STATE(1044), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7229), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1044), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2043), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3688), + [aux_sym_preproc_if_token2] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), + [sym_preproc_directive] = ACTIONS(3694), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3696), + [anon_sym_typedef] = ACTIONS(3698), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -234916,221 +231259,632 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3976), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3700), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3978), - [anon_sym_using] = ACTIONS(3980), - [anon_sym_concept] = ACTIONS(145), + [anon_sym_friend] = ACTIONS(3702), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3706), }, - [1068] = { - [sym_function_definition] = STATE(855), - [sym_declaration] = STATE(855), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5502), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2224), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6739), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4034), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(855), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2021), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(855), - [sym_operator_cast] = STATE(7182), - [sym__constructor_specifiers] = STATE(2021), - [sym_operator_cast_definition] = STATE(855), - [sym_operator_cast_declaration] = STATE(855), - [sym_constructor_or_destructor_definition] = STATE(855), - [sym_constructor_or_destructor_declaration] = STATE(855), - [sym_friend_declaration] = STATE(855), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(855), - [sym_concept_definition] = STATE(855), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7182), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2021), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [1036] = { + [ts_builtin_sym_end] = ACTIONS(3304), + [sym_identifier] = ACTIONS(3302), + [aux_sym_preproc_include_token1] = ACTIONS(3302), + [aux_sym_preproc_def_token1] = ACTIONS(3302), + [aux_sym_preproc_if_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), + [sym_preproc_directive] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym___extension__] = ACTIONS(3302), + [anon_sym_typedef] = ACTIONS(3302), + [anon_sym_extern] = ACTIONS(3302), + [anon_sym___attribute__] = ACTIONS(3302), + [anon_sym_COLON_COLON] = ACTIONS(3304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), + [anon_sym___declspec] = ACTIONS(3302), + [anon_sym___based] = ACTIONS(3302), + [anon_sym___cdecl] = ACTIONS(3302), + [anon_sym___clrcall] = ACTIONS(3302), + [anon_sym___stdcall] = ACTIONS(3302), + [anon_sym___fastcall] = ACTIONS(3302), + [anon_sym___thiscall] = ACTIONS(3302), + [anon_sym___vectorcall] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3302), + [anon_sym_unsigned] = ACTIONS(3302), + [anon_sym_long] = ACTIONS(3302), + [anon_sym_short] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_register] = ACTIONS(3302), + [anon_sym_inline] = ACTIONS(3302), + [anon_sym___inline] = ACTIONS(3302), + [anon_sym___inline__] = ACTIONS(3302), + [anon_sym___forceinline] = ACTIONS(3302), + [anon_sym_thread_local] = ACTIONS(3302), + [anon_sym___thread] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_constexpr] = ACTIONS(3302), + [anon_sym_volatile] = ACTIONS(3302), + [anon_sym_restrict] = ACTIONS(3302), + [anon_sym___restrict__] = ACTIONS(3302), + [anon_sym__Atomic] = ACTIONS(3302), + [anon_sym__Noreturn] = ACTIONS(3302), + [anon_sym_noreturn] = ACTIONS(3302), + [anon_sym_mutable] = ACTIONS(3302), + [anon_sym_constinit] = ACTIONS(3302), + [anon_sym_consteval] = ACTIONS(3302), + [sym_primitive_type] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_goto] = ACTIONS(3302), + [anon_sym_not] = ACTIONS(3302), + [anon_sym_compl] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_sizeof] = ACTIONS(3302), + [anon_sym___alignof__] = ACTIONS(3302), + [anon_sym___alignof] = ACTIONS(3302), + [anon_sym__alignof] = ACTIONS(3302), + [anon_sym_alignof] = ACTIONS(3302), + [anon_sym__Alignof] = ACTIONS(3302), + [anon_sym_offsetof] = ACTIONS(3302), + [anon_sym__Generic] = ACTIONS(3302), + [anon_sym_asm] = ACTIONS(3302), + [anon_sym___asm__] = ACTIONS(3302), + [sym_number_literal] = ACTIONS(3304), + [anon_sym_L_SQUOTE] = ACTIONS(3304), + [anon_sym_u_SQUOTE] = ACTIONS(3304), + [anon_sym_U_SQUOTE] = ACTIONS(3304), + [anon_sym_u8_SQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_L_DQUOTE] = ACTIONS(3304), + [anon_sym_u_DQUOTE] = ACTIONS(3304), + [anon_sym_U_DQUOTE] = ACTIONS(3304), + [anon_sym_u8_DQUOTE] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [anon_sym_NULL] = ACTIONS(3302), + [anon_sym_nullptr] = ACTIONS(3302), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3996), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(4000), - [anon_sym_concept] = ACTIONS(231), + [sym_auto] = ACTIONS(3302), + [anon_sym_decltype] = ACTIONS(3302), + [anon_sym_virtual] = ACTIONS(3302), + [anon_sym_alignas] = ACTIONS(3302), + [anon_sym_explicit] = ACTIONS(3302), + [anon_sym_typename] = ACTIONS(3302), + [anon_sym_template] = ACTIONS(3302), + [anon_sym_operator] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_static_assert] = ACTIONS(3302), + [anon_sym_concept] = ACTIONS(3302), + [anon_sym_co_return] = ACTIONS(3302), + [anon_sym_co_yield] = ACTIONS(3302), + [anon_sym_R_DQUOTE] = ACTIONS(3304), + [anon_sym_LR_DQUOTE] = ACTIONS(3304), + [anon_sym_uR_DQUOTE] = ACTIONS(3304), + [anon_sym_UR_DQUOTE] = ACTIONS(3304), + [anon_sym_u8R_DQUOTE] = ACTIONS(3304), + [anon_sym_co_await] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_requires] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), }, - [1069] = { - [sym_function_definition] = STATE(411), - [sym_declaration] = STATE(411), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5531), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2258), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6731), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4046), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(411), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2015), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(411), - [sym_operator_cast] = STATE(7204), - [sym__constructor_specifiers] = STATE(2015), - [sym_operator_cast_definition] = STATE(411), - [sym_operator_cast_declaration] = STATE(411), - [sym_constructor_or_destructor_definition] = STATE(411), - [sym_constructor_or_destructor_declaration] = STATE(411), - [sym_friend_declaration] = STATE(411), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(411), - [sym_concept_definition] = STATE(411), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7204), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2015), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [1037] = { + [ts_builtin_sym_end] = ACTIONS(3254), + [sym_identifier] = ACTIONS(3252), + [aux_sym_preproc_include_token1] = ACTIONS(3252), + [aux_sym_preproc_def_token1] = ACTIONS(3252), + [aux_sym_preproc_if_token1] = ACTIONS(3252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3252), + [sym_preproc_directive] = ACTIONS(3252), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym___extension__] = ACTIONS(3252), + [anon_sym_typedef] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(3252), + [anon_sym___attribute__] = ACTIONS(3252), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3254), + [anon_sym___declspec] = ACTIONS(3252), + [anon_sym___based] = ACTIONS(3252), + [anon_sym___cdecl] = ACTIONS(3252), + [anon_sym___clrcall] = ACTIONS(3252), + [anon_sym___stdcall] = ACTIONS(3252), + [anon_sym___fastcall] = ACTIONS(3252), + [anon_sym___thiscall] = ACTIONS(3252), + [anon_sym___vectorcall] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_signed] = ACTIONS(3252), + [anon_sym_unsigned] = ACTIONS(3252), + [anon_sym_long] = ACTIONS(3252), + [anon_sym_short] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_register] = ACTIONS(3252), + [anon_sym_inline] = ACTIONS(3252), + [anon_sym___inline] = ACTIONS(3252), + [anon_sym___inline__] = ACTIONS(3252), + [anon_sym___forceinline] = ACTIONS(3252), + [anon_sym_thread_local] = ACTIONS(3252), + [anon_sym___thread] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_constexpr] = ACTIONS(3252), + [anon_sym_volatile] = ACTIONS(3252), + [anon_sym_restrict] = ACTIONS(3252), + [anon_sym___restrict__] = ACTIONS(3252), + [anon_sym__Atomic] = ACTIONS(3252), + [anon_sym__Noreturn] = ACTIONS(3252), + [anon_sym_noreturn] = ACTIONS(3252), + [anon_sym_mutable] = ACTIONS(3252), + [anon_sym_constinit] = ACTIONS(3252), + [anon_sym_consteval] = ACTIONS(3252), + [sym_primitive_type] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_goto] = ACTIONS(3252), + [anon_sym_not] = ACTIONS(3252), + [anon_sym_compl] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_sizeof] = ACTIONS(3252), + [anon_sym___alignof__] = ACTIONS(3252), + [anon_sym___alignof] = ACTIONS(3252), + [anon_sym__alignof] = ACTIONS(3252), + [anon_sym_alignof] = ACTIONS(3252), + [anon_sym__Alignof] = ACTIONS(3252), + [anon_sym_offsetof] = ACTIONS(3252), + [anon_sym__Generic] = ACTIONS(3252), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3254), + [anon_sym_u_SQUOTE] = ACTIONS(3254), + [anon_sym_U_SQUOTE] = ACTIONS(3254), + [anon_sym_u8_SQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_L_DQUOTE] = ACTIONS(3254), + [anon_sym_u_DQUOTE] = ACTIONS(3254), + [anon_sym_U_DQUOTE] = ACTIONS(3254), + [anon_sym_u8_DQUOTE] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [anon_sym_NULL] = ACTIONS(3252), + [anon_sym_nullptr] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3252), + [anon_sym_decltype] = ACTIONS(3252), + [anon_sym_virtual] = ACTIONS(3252), + [anon_sym_alignas] = ACTIONS(3252), + [anon_sym_explicit] = ACTIONS(3252), + [anon_sym_typename] = ACTIONS(3252), + [anon_sym_template] = ACTIONS(3252), + [anon_sym_operator] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_static_assert] = ACTIONS(3252), + [anon_sym_concept] = ACTIONS(3252), + [anon_sym_co_return] = ACTIONS(3252), + [anon_sym_co_yield] = ACTIONS(3252), + [anon_sym_R_DQUOTE] = ACTIONS(3254), + [anon_sym_LR_DQUOTE] = ACTIONS(3254), + [anon_sym_uR_DQUOTE] = ACTIONS(3254), + [anon_sym_UR_DQUOTE] = ACTIONS(3254), + [anon_sym_u8R_DQUOTE] = ACTIONS(3254), + [anon_sym_co_await] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_requires] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + }, + [1038] = { + [ts_builtin_sym_end] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym___extension__] = ACTIONS(3286), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym___inline] = ACTIONS(3286), + [anon_sym___inline__] = ACTIONS(3286), + [anon_sym___forceinline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym___thread] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym___alignof__] = ACTIONS(3286), + [anon_sym___alignof] = ACTIONS(3286), + [anon_sym__alignof] = ACTIONS(3286), + [anon_sym_alignof] = ACTIONS(3286), + [anon_sym__Alignof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_alignas] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), + }, + [1039] = { + [ts_builtin_sym_end] = ACTIONS(3201), + [sym_identifier] = ACTIONS(3199), + [aux_sym_preproc_include_token1] = ACTIONS(3199), + [aux_sym_preproc_def_token1] = ACTIONS(3199), + [aux_sym_preproc_if_token1] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3199), + [sym_preproc_directive] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym___extension__] = ACTIONS(3199), + [anon_sym_typedef] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym___attribute__] = ACTIONS(3199), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3199), + [anon_sym___based] = ACTIONS(3199), + [anon_sym___cdecl] = ACTIONS(3199), + [anon_sym___clrcall] = ACTIONS(3199), + [anon_sym___stdcall] = ACTIONS(3199), + [anon_sym___fastcall] = ACTIONS(3199), + [anon_sym___thiscall] = ACTIONS(3199), + [anon_sym___vectorcall] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_signed] = ACTIONS(3199), + [anon_sym_unsigned] = ACTIONS(3199), + [anon_sym_long] = ACTIONS(3199), + [anon_sym_short] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_register] = ACTIONS(3199), + [anon_sym_inline] = ACTIONS(3199), + [anon_sym___inline] = ACTIONS(3199), + [anon_sym___inline__] = ACTIONS(3199), + [anon_sym___forceinline] = ACTIONS(3199), + [anon_sym_thread_local] = ACTIONS(3199), + [anon_sym___thread] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_constexpr] = ACTIONS(3199), + [anon_sym_volatile] = ACTIONS(3199), + [anon_sym_restrict] = ACTIONS(3199), + [anon_sym___restrict__] = ACTIONS(3199), + [anon_sym__Atomic] = ACTIONS(3199), + [anon_sym__Noreturn] = ACTIONS(3199), + [anon_sym_noreturn] = ACTIONS(3199), + [anon_sym_mutable] = ACTIONS(3199), + [anon_sym_constinit] = ACTIONS(3199), + [anon_sym_consteval] = ACTIONS(3199), + [sym_primitive_type] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_switch] = ACTIONS(3199), + [anon_sym_case] = ACTIONS(3199), + [anon_sym_default] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_do] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_goto] = ACTIONS(3199), + [anon_sym_not] = ACTIONS(3199), + [anon_sym_compl] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3199), + [anon_sym___alignof__] = ACTIONS(3199), + [anon_sym___alignof] = ACTIONS(3199), + [anon_sym__alignof] = ACTIONS(3199), + [anon_sym_alignof] = ACTIONS(3199), + [anon_sym__Alignof] = ACTIONS(3199), + [anon_sym_offsetof] = ACTIONS(3199), + [anon_sym__Generic] = ACTIONS(3199), + [anon_sym_asm] = ACTIONS(3199), + [anon_sym___asm__] = ACTIONS(3199), + [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(3199), + [sym_false] = ACTIONS(3199), + [anon_sym_NULL] = ACTIONS(3199), + [anon_sym_nullptr] = ACTIONS(3199), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3199), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3199), + [anon_sym_alignas] = ACTIONS(3199), + [anon_sym_explicit] = ACTIONS(3199), + [anon_sym_typename] = ACTIONS(3199), + [anon_sym_template] = ACTIONS(3199), + [anon_sym_operator] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_delete] = ACTIONS(3199), + [anon_sym_throw] = ACTIONS(3199), + [anon_sym_namespace] = ACTIONS(3199), + [anon_sym_using] = ACTIONS(3199), + [anon_sym_static_assert] = ACTIONS(3199), + [anon_sym_concept] = ACTIONS(3199), + [anon_sym_co_return] = ACTIONS(3199), + [anon_sym_co_yield] = ACTIONS(3199), + [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(3199), + [anon_sym_new] = ACTIONS(3199), + [anon_sym_requires] = ACTIONS(3199), + [sym_this] = ACTIONS(3199), + }, + [1040] = { + [sym_preproc_def] = STATE(1041), + [sym_preproc_function_def] = STATE(1041), + [sym_preproc_call] = STATE(1041), + [sym_preproc_if_in_field_declaration_list] = STATE(1041), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1041), + [sym_type_definition] = STATE(1041), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(1041), + [sym_field_declaration] = STATE(1041), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(1041), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(1041), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(1041), + [sym_operator_cast_declaration] = STATE(1041), + [sym_constructor_or_destructor_definition] = STATE(1041), + [sym_constructor_or_destructor_declaration] = STATE(1041), + [sym_friend_declaration] = STATE(1041), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(1041), + [sym_alias_declaration] = STATE(1041), + [sym_static_assert_declaration] = STATE(1041), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1041), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(3784), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -235150,104 +231904,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3968), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3970), - [anon_sym_using] = ACTIONS(3972), - [anon_sym_concept] = ACTIONS(333), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1070] = { - [sym_function_definition] = STATE(565), - [sym_declaration] = STATE(565), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5488), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2257), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6714), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3961), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(565), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2012), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(565), - [sym_operator_cast] = STATE(7190), - [sym__constructor_specifiers] = STATE(2012), - [sym_operator_cast_definition] = STATE(565), - [sym_operator_cast_declaration] = STATE(565), - [sym_constructor_or_destructor_definition] = STATE(565), - [sym_constructor_or_destructor_declaration] = STATE(565), - [sym_friend_declaration] = STATE(565), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(565), - [sym_concept_definition] = STATE(565), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7190), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2012), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [1041] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(3786), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -235267,104 +232033,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3986), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3988), - [anon_sym_using] = ACTIONS(3990), - [anon_sym_concept] = ACTIONS(421), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1071] = { - [sym_function_definition] = STATE(2502), - [sym_declaration] = STATE(2502), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5508), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2254), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6784), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4032), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(2502), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2005), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(2502), - [sym_operator_cast] = STATE(7172), - [sym__constructor_specifiers] = STATE(2005), - [sym_operator_cast_definition] = STATE(2502), - [sym_operator_cast_declaration] = STATE(2502), - [sym_constructor_or_destructor_definition] = STATE(2502), - [sym_constructor_or_destructor_declaration] = STATE(2502), - [sym_friend_declaration] = STATE(2502), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(2502), - [sym_concept_definition] = STATE(2502), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7172), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2005), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [1042] = { + [ts_builtin_sym_end] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3215), + [aux_sym_preproc_include_token1] = ACTIONS(3215), + [aux_sym_preproc_def_token1] = ACTIONS(3215), + [aux_sym_preproc_if_token1] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3215), + [sym_preproc_directive] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_AMP_AMP] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(3215), + [anon_sym_typedef] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym___attribute__] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), + [anon_sym___declspec] = ACTIONS(3215), + [anon_sym___based] = ACTIONS(3215), + [anon_sym___cdecl] = ACTIONS(3215), + [anon_sym___clrcall] = ACTIONS(3215), + [anon_sym___stdcall] = ACTIONS(3215), + [anon_sym___fastcall] = ACTIONS(3215), + [anon_sym___thiscall] = ACTIONS(3215), + [anon_sym___vectorcall] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_signed] = ACTIONS(3215), + [anon_sym_unsigned] = ACTIONS(3215), + [anon_sym_long] = ACTIONS(3215), + [anon_sym_short] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_register] = ACTIONS(3215), + [anon_sym_inline] = ACTIONS(3215), + [anon_sym___inline] = ACTIONS(3215), + [anon_sym___inline__] = ACTIONS(3215), + [anon_sym___forceinline] = ACTIONS(3215), + [anon_sym_thread_local] = ACTIONS(3215), + [anon_sym___thread] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_constexpr] = ACTIONS(3215), + [anon_sym_volatile] = ACTIONS(3215), + [anon_sym_restrict] = ACTIONS(3215), + [anon_sym___restrict__] = ACTIONS(3215), + [anon_sym__Atomic] = ACTIONS(3215), + [anon_sym__Noreturn] = ACTIONS(3215), + [anon_sym_noreturn] = ACTIONS(3215), + [anon_sym_mutable] = ACTIONS(3215), + [anon_sym_constinit] = ACTIONS(3215), + [anon_sym_consteval] = ACTIONS(3215), + [sym_primitive_type] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3215), + [anon_sym_union] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_case] = ACTIONS(3215), + [anon_sym_default] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_goto] = ACTIONS(3215), + [anon_sym_not] = ACTIONS(3215), + [anon_sym_compl] = ACTIONS(3215), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_sizeof] = ACTIONS(3215), + [anon_sym___alignof__] = ACTIONS(3215), + [anon_sym___alignof] = ACTIONS(3215), + [anon_sym__alignof] = ACTIONS(3215), + [anon_sym_alignof] = ACTIONS(3215), + [anon_sym__Alignof] = ACTIONS(3215), + [anon_sym_offsetof] = ACTIONS(3215), + [anon_sym__Generic] = ACTIONS(3215), + [anon_sym_asm] = ACTIONS(3215), + [anon_sym___asm__] = ACTIONS(3215), + [sym_number_literal] = ACTIONS(3217), + [anon_sym_L_SQUOTE] = ACTIONS(3217), + [anon_sym_u_SQUOTE] = ACTIONS(3217), + [anon_sym_U_SQUOTE] = ACTIONS(3217), + [anon_sym_u8_SQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_L_DQUOTE] = ACTIONS(3217), + [anon_sym_u_DQUOTE] = ACTIONS(3217), + [anon_sym_U_DQUOTE] = ACTIONS(3217), + [anon_sym_u8_DQUOTE] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [sym_true] = ACTIONS(3215), + [sym_false] = ACTIONS(3215), + [anon_sym_NULL] = ACTIONS(3215), + [anon_sym_nullptr] = ACTIONS(3215), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3215), + [anon_sym_decltype] = ACTIONS(3215), + [anon_sym_virtual] = ACTIONS(3215), + [anon_sym_alignas] = ACTIONS(3215), + [anon_sym_explicit] = ACTIONS(3215), + [anon_sym_typename] = ACTIONS(3215), + [anon_sym_template] = ACTIONS(3215), + [anon_sym_operator] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_delete] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_namespace] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_static_assert] = ACTIONS(3215), + [anon_sym_concept] = ACTIONS(3215), + [anon_sym_co_return] = ACTIONS(3215), + [anon_sym_co_yield] = ACTIONS(3215), + [anon_sym_R_DQUOTE] = ACTIONS(3217), + [anon_sym_LR_DQUOTE] = ACTIONS(3217), + [anon_sym_uR_DQUOTE] = ACTIONS(3217), + [anon_sym_UR_DQUOTE] = ACTIONS(3217), + [anon_sym_u8R_DQUOTE] = ACTIONS(3217), + [anon_sym_co_await] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_requires] = ACTIONS(3215), + [sym_this] = ACTIONS(3215), + }, + [1043] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(3788), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -235384,104 +232291,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3982), - [anon_sym_concept] = ACTIONS(3984), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1072] = { - [sym_function_definition] = STATE(2277), - [sym_declaration] = STATE(2277), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5512), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2248), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6782), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4068), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(2277), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2018), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(2277), - [sym_operator_cast] = STATE(7176), - [sym__constructor_specifiers] = STATE(2018), - [sym_operator_cast_definition] = STATE(2277), - [sym_operator_cast_declaration] = STATE(2277), - [sym_constructor_or_destructor_definition] = STATE(2277), - [sym_constructor_or_destructor_declaration] = STATE(2277), - [sym_friend_declaration] = STATE(2277), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(2277), - [sym_concept_definition] = STATE(2277), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7176), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2018), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), + [1044] = { + [sym_preproc_def] = STATE(1044), + [sym_preproc_function_def] = STATE(1044), + [sym_preproc_call] = STATE(1044), + [sym_preproc_if_in_field_declaration_list] = STATE(1044), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1044), + [sym_type_definition] = STATE(1044), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6173), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6766), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(1044), + [sym_field_declaration] = STATE(1044), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2043), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(1044), + [sym_operator_cast] = STATE(7229), + [sym_inline_method_definition] = STATE(1044), + [sym__constructor_specifiers] = STATE(2043), + [sym_operator_cast_definition] = STATE(1044), + [sym_operator_cast_declaration] = STATE(1044), + [sym_constructor_or_destructor_definition] = STATE(1044), + [sym_constructor_or_destructor_declaration] = STATE(1044), + [sym_friend_declaration] = STATE(1044), + [sym_access_specifier] = STATE(8696), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(1044), + [sym_alias_declaration] = STATE(1044), + [sym_static_assert_declaration] = STATE(1044), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7229), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1044), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2043), + [sym_identifier] = ACTIONS(3468), + [aux_sym_preproc_def_token1] = ACTIONS(3790), + [aux_sym_preproc_if_token1] = ACTIONS(3793), + [aux_sym_preproc_if_token2] = ACTIONS(3477), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3796), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3796), + [sym_preproc_directive] = ACTIONS(3799), + [anon_sym_LPAREN2] = ACTIONS(3485), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_AMP_AMP] = ACTIONS(3494), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym___extension__] = ACTIONS(3802), + [anon_sym_typedef] = ACTIONS(3805), + [anon_sym_extern] = ACTIONS(3506), + [anon_sym___attribute__] = ACTIONS(3509), + [anon_sym_COLON_COLON] = ACTIONS(3512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3515), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3521), + [anon_sym_signed] = ACTIONS(3524), + [anon_sym_unsigned] = ACTIONS(3524), + [anon_sym_long] = ACTIONS(3524), + [anon_sym_short] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_register] = ACTIONS(3506), + [anon_sym_inline] = ACTIONS(3506), + [anon_sym___inline] = ACTIONS(3506), + [anon_sym___inline__] = ACTIONS(3506), + [anon_sym___forceinline] = ACTIONS(3506), + [anon_sym_thread_local] = ACTIONS(3506), + [anon_sym___thread] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_constexpr] = ACTIONS(3530), + [anon_sym_volatile] = ACTIONS(3530), + [anon_sym_restrict] = ACTIONS(3530), + [anon_sym___restrict__] = ACTIONS(3530), + [anon_sym__Atomic] = ACTIONS(3530), + [anon_sym__Noreturn] = ACTIONS(3530), + [anon_sym_noreturn] = ACTIONS(3530), + [anon_sym_mutable] = ACTIONS(3530), + [anon_sym_constinit] = ACTIONS(3530), + [anon_sym_consteval] = ACTIONS(3530), + [sym_primitive_type] = ACTIONS(3533), + [anon_sym_enum] = ACTIONS(3536), + [anon_sym_class] = ACTIONS(3539), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3548), + [anon_sym_decltype] = ACTIONS(3551), + [anon_sym_virtual] = ACTIONS(3554), + [anon_sym_alignas] = ACTIONS(3557), + [anon_sym_explicit] = ACTIONS(3560), + [anon_sym_typename] = ACTIONS(3563), + [anon_sym_template] = ACTIONS(3808), + [anon_sym_operator] = ACTIONS(3569), + [anon_sym_friend] = ACTIONS(3811), + [anon_sym_public] = ACTIONS(3575), + [anon_sym_private] = ACTIONS(3575), + [anon_sym_protected] = ACTIONS(3575), + [anon_sym_using] = ACTIONS(3814), + [anon_sym_static_assert] = ACTIONS(3817), + }, + [1045] = { + [sym_preproc_def] = STATE(1043), + [sym_preproc_function_def] = STATE(1043), + [sym_preproc_call] = STATE(1043), + [sym_preproc_if_in_field_declaration_list] = STATE(1043), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1043), + [sym_type_definition] = STATE(1043), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(6188), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__field_declaration_list_item] = STATE(1043), + [sym_field_declaration] = STATE(1043), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(1043), + [sym_operator_cast] = STATE(7191), + [sym_inline_method_definition] = STATE(1043), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(1043), + [sym_operator_cast_declaration] = STATE(1043), + [sym_constructor_or_destructor_definition] = STATE(1043), + [sym_constructor_or_destructor_declaration] = STATE(1043), + [sym_friend_declaration] = STATE(1043), + [sym_access_specifier] = STATE(8933), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_using_declaration] = STATE(1043), + [sym_alias_declaration] = STATE(1043), + [sym_static_assert_declaration] = STATE(1043), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6030), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1043), + [aux_sym__declaration_specifiers_repeat1] = STATE(2395), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3674), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), + [anon_sym_COLON_COLON] = ACTIONS(3052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_RBRACE] = ACTIONS(3820), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3054), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -235501,901 +232549,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3442), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(4006), - [anon_sym_concept] = ACTIONS(4008), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3684), }, - [1073] = { - [sym_function_definition] = STATE(2139), - [sym_declaration] = STATE(2139), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5500), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2252), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6781), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(3968), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(2139), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2007), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(2139), - [sym_operator_cast] = STATE(7163), - [sym__constructor_specifiers] = STATE(2007), - [sym_operator_cast_definition] = STATE(2139), - [sym_operator_cast_declaration] = STATE(2139), - [sym_constructor_or_destructor_definition] = STATE(2139), - [sym_constructor_or_destructor_declaration] = STATE(2139), - [sym_friend_declaration] = STATE(2139), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(2139), - [sym_concept_definition] = STATE(2139), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7163), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2007), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3044), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3046), - [anon_sym_using] = ACTIONS(3992), - [anon_sym_concept] = ACTIONS(3994), - }, - [1074] = { - [sym_function_definition] = STATE(878), - [sym_declaration] = STATE(878), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5509), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2171), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6763), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4088), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(878), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2019), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(878), - [sym_operator_cast] = STATE(7183), - [sym__constructor_specifiers] = STATE(2019), - [sym_operator_cast_definition] = STATE(878), - [sym_operator_cast_declaration] = STATE(878), - [sym_constructor_or_destructor_definition] = STATE(878), - [sym_constructor_or_destructor_declaration] = STATE(878), - [sym_friend_declaration] = STATE(878), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(878), - [sym_concept_definition] = STATE(878), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7183), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2019), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(4012), - [anon_sym_using] = ACTIONS(4014), - [anon_sym_concept] = ACTIONS(1040), - }, - [1075] = { - [sym_function_definition] = STATE(2639), - [sym_declaration] = STATE(2639), - [sym__declaration_modifiers] = STATE(4054), - [sym__declaration_specifiers] = STATE(5525), - [sym_attribute_specifier] = STATE(4054), - [sym_attribute_declaration] = STATE(4054), - [sym_ms_declspec_modifier] = STATE(4054), - [sym_ms_based_modifier] = STATE(9206), - [sym_ms_call_modifier] = STATE(2247), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6722), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4054), - [sym_type_qualifier] = STATE(4054), - [sym__type_specifier] = STATE(4077), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym__empty_declaration] = STATE(2639), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(4054), - [sym_alignas_specifier] = STATE(4054), - [sym_explicit_function_specifier] = STATE(2011), - [sym_dependent_type] = STATE(3557), - [sym_template_declaration] = STATE(2639), - [sym_operator_cast] = STATE(7212), - [sym__constructor_specifiers] = STATE(2011), - [sym_operator_cast_definition] = STATE(2639), - [sym_operator_cast_declaration] = STATE(2639), - [sym_constructor_or_destructor_definition] = STATE(2639), - [sym_constructor_or_destructor_declaration] = STATE(2639), - [sym_friend_declaration] = STATE(2639), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_alias_declaration] = STATE(2639), - [sym_concept_definition] = STATE(2639), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(5957), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_qualified_operator_cast_identifier] = STATE(7212), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [aux_sym_operator_cast_definition_repeat1] = STATE(2011), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_explicit] = ACTIONS(125), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(3680), - [anon_sym_operator] = ACTIONS(131), - [anon_sym_friend] = ACTIONS(3682), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_concept] = ACTIONS(4004), - }, - [1076] = { - [sym_identifier] = ACTIONS(4024), - [anon_sym_LPAREN2] = ACTIONS(4027), - [anon_sym_BANG] = ACTIONS(4030), - [anon_sym_TILDE] = ACTIONS(4027), - [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4032), - [anon_sym_STAR] = ACTIONS(4027), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4024), - [anon_sym_SEMI] = ACTIONS(4030), - [anon_sym___extension__] = ACTIONS(4036), - [anon_sym_extern] = ACTIONS(4036), - [anon_sym___attribute__] = ACTIONS(4036), - [anon_sym_COLON_COLON] = ACTIONS(4027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4027), - [anon_sym___declspec] = ACTIONS(4036), - [anon_sym___based] = ACTIONS(4036), - [anon_sym_LBRACE] = ACTIONS(4030), - [anon_sym_signed] = ACTIONS(4036), - [anon_sym_unsigned] = ACTIONS(4036), - [anon_sym_long] = ACTIONS(4036), - [anon_sym_short] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4024), - [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_mutable] = ACTIONS(4036), - [anon_sym_constinit] = ACTIONS(4036), - [anon_sym_consteval] = ACTIONS(4036), - [sym_primitive_type] = ACTIONS(4024), - [anon_sym_enum] = ACTIONS(4036), - [anon_sym_class] = ACTIONS(4036), - [anon_sym_struct] = ACTIONS(4036), - [anon_sym_union] = ACTIONS(4036), - [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(4030), - [anon_sym_PLUS_PLUS] = ACTIONS(4030), - [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_asm] = ACTIONS(4032), - [anon_sym___asm__] = ACTIONS(4032), - [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(4032), - [sym_false] = ACTIONS(4032), - [anon_sym_NULL] = ACTIONS(4032), - [anon_sym_nullptr] = ACTIONS(4032), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4036), - [anon_sym_decltype] = ACTIONS(4024), - [anon_sym_virtual] = ACTIONS(4036), - [anon_sym_alignas] = ACTIONS(4036), - [anon_sym_explicit] = ACTIONS(4036), - [anon_sym_typename] = ACTIONS(4036), - [anon_sym_template] = ACTIONS(4024), - [anon_sym_operator] = ACTIONS(4036), - [anon_sym_try] = ACTIONS(4032), - [anon_sym_delete] = ACTIONS(4032), - [anon_sym_throw] = ACTIONS(4032), - [anon_sym_co_return] = ACTIONS(4032), - [anon_sym_co_yield] = ACTIONS(4032), - [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(4032), - [anon_sym_new] = ACTIONS(4032), - [anon_sym_requires] = ACTIONS(4032), - [sym_this] = ACTIONS(4032), - }, - [1077] = { - [sym_catch_clause] = STATE(1077), - [aux_sym_constructor_try_statement_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym___extension__] = ACTIONS(2813), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym___inline] = ACTIONS(2813), - [anon_sym___inline__] = ACTIONS(2813), - [anon_sym___forceinline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym___thread] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym___restrict__] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym__Noreturn] = ACTIONS(2813), - [anon_sym_noreturn] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_else] = ACTIONS(2813), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_do] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_goto] = ACTIONS(2813), - [anon_sym___try] = ACTIONS(2813), - [anon_sym___leave] = ACTIONS(2813), - [anon_sym_not] = ACTIONS(2813), - [anon_sym_compl] = ACTIONS(2813), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_sizeof] = ACTIONS(2813), - [anon_sym___alignof__] = ACTIONS(2813), - [anon_sym___alignof] = ACTIONS(2813), - [anon_sym__alignof] = ACTIONS(2813), - [anon_sym_alignof] = ACTIONS(2813), - [anon_sym__Alignof] = ACTIONS(2813), - [anon_sym_offsetof] = ACTIONS(2813), - [anon_sym__Generic] = ACTIONS(2813), - [anon_sym_asm] = ACTIONS(2813), - [anon_sym___asm__] = ACTIONS(2813), - [sym_number_literal] = ACTIONS(2815), - [anon_sym_L_SQUOTE] = ACTIONS(2815), - [anon_sym_u_SQUOTE] = ACTIONS(2815), - [anon_sym_U_SQUOTE] = ACTIONS(2815), - [anon_sym_u8_SQUOTE] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_L_DQUOTE] = ACTIONS(2815), - [anon_sym_u_DQUOTE] = ACTIONS(2815), - [anon_sym_U_DQUOTE] = ACTIONS(2815), - [anon_sym_u8_DQUOTE] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [anon_sym_NULL] = ACTIONS(2813), - [anon_sym_nullptr] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_alignas] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_delete] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_co_return] = ACTIONS(2813), - [anon_sym_co_yield] = ACTIONS(2813), - [anon_sym_catch] = ACTIONS(4038), - [anon_sym_R_DQUOTE] = ACTIONS(2815), - [anon_sym_LR_DQUOTE] = ACTIONS(2815), - [anon_sym_uR_DQUOTE] = ACTIONS(2815), - [anon_sym_UR_DQUOTE] = ACTIONS(2815), - [anon_sym_u8R_DQUOTE] = ACTIONS(2815), - [anon_sym_co_await] = ACTIONS(2813), - [anon_sym_new] = ACTIONS(2813), - [anon_sym_requires] = ACTIONS(2813), - [sym_this] = ACTIONS(2813), - }, - [1078] = { - [sym_catch_clause] = STATE(1077), - [aux_sym_constructor_try_statement_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(2820), - [anon_sym_LPAREN2] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym___extension__] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym___attribute__] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), - [anon_sym___declspec] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_signed] = ACTIONS(2820), - [anon_sym_unsigned] = ACTIONS(2820), - [anon_sym_long] = ACTIONS(2820), - [anon_sym_short] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_register] = ACTIONS(2820), - [anon_sym_inline] = ACTIONS(2820), - [anon_sym___inline] = ACTIONS(2820), - [anon_sym___inline__] = ACTIONS(2820), - [anon_sym___forceinline] = ACTIONS(2820), - [anon_sym_thread_local] = ACTIONS(2820), - [anon_sym___thread] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_constexpr] = ACTIONS(2820), - [anon_sym_volatile] = ACTIONS(2820), - [anon_sym_restrict] = ACTIONS(2820), - [anon_sym___restrict__] = ACTIONS(2820), - [anon_sym__Atomic] = ACTIONS(2820), - [anon_sym__Noreturn] = ACTIONS(2820), - [anon_sym_noreturn] = ACTIONS(2820), - [anon_sym_mutable] = ACTIONS(2820), - [anon_sym_constinit] = ACTIONS(2820), - [anon_sym_consteval] = ACTIONS(2820), - [sym_primitive_type] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2820), - [anon_sym_switch] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_do] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym___try] = ACTIONS(2820), - [anon_sym___leave] = ACTIONS(2820), - [anon_sym_not] = ACTIONS(2820), - [anon_sym_compl] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_sizeof] = ACTIONS(2820), - [anon_sym___alignof__] = ACTIONS(2820), - [anon_sym___alignof] = ACTIONS(2820), - [anon_sym__alignof] = ACTIONS(2820), - [anon_sym_alignof] = ACTIONS(2820), - [anon_sym__Alignof] = ACTIONS(2820), - [anon_sym_offsetof] = ACTIONS(2820), - [anon_sym__Generic] = ACTIONS(2820), - [anon_sym_asm] = ACTIONS(2820), - [anon_sym___asm__] = ACTIONS(2820), - [sym_number_literal] = ACTIONS(2822), - [anon_sym_L_SQUOTE] = ACTIONS(2822), - [anon_sym_u_SQUOTE] = ACTIONS(2822), - [anon_sym_U_SQUOTE] = ACTIONS(2822), - [anon_sym_u8_SQUOTE] = ACTIONS(2822), - [anon_sym_SQUOTE] = ACTIONS(2822), - [anon_sym_L_DQUOTE] = ACTIONS(2822), - [anon_sym_u_DQUOTE] = ACTIONS(2822), - [anon_sym_U_DQUOTE] = ACTIONS(2822), - [anon_sym_u8_DQUOTE] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2822), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [anon_sym_NULL] = ACTIONS(2820), - [anon_sym_nullptr] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2820), - [anon_sym_decltype] = ACTIONS(2820), - [anon_sym_virtual] = ACTIONS(2820), - [anon_sym_alignas] = ACTIONS(2820), - [anon_sym_typename] = ACTIONS(2820), - [anon_sym_template] = ACTIONS(2820), - [anon_sym_try] = ACTIONS(2820), - [anon_sym_delete] = ACTIONS(2820), - [anon_sym_throw] = ACTIONS(2820), - [anon_sym_co_return] = ACTIONS(2820), - [anon_sym_co_yield] = ACTIONS(2820), - [anon_sym_catch] = ACTIONS(4041), - [anon_sym_R_DQUOTE] = ACTIONS(2822), - [anon_sym_LR_DQUOTE] = ACTIONS(2822), - [anon_sym_uR_DQUOTE] = ACTIONS(2822), - [anon_sym_UR_DQUOTE] = ACTIONS(2822), - [anon_sym_u8R_DQUOTE] = ACTIONS(2822), - [anon_sym_co_await] = ACTIONS(2820), - [anon_sym_new] = ACTIONS(2820), - [anon_sym_requires] = ACTIONS(2820), - [sym_this] = ACTIONS(2820), + [1046] = { + [ts_builtin_sym_end] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3262), + [aux_sym_preproc_include_token1] = ACTIONS(3262), + [aux_sym_preproc_def_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym___extension__] = ACTIONS(3262), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3264), + [anon_sym___declspec] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3262), + [anon_sym___cdecl] = ACTIONS(3262), + [anon_sym___clrcall] = ACTIONS(3262), + [anon_sym___stdcall] = ACTIONS(3262), + [anon_sym___fastcall] = ACTIONS(3262), + [anon_sym___thiscall] = ACTIONS(3262), + [anon_sym___vectorcall] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_signed] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym___inline] = ACTIONS(3262), + [anon_sym___inline__] = ACTIONS(3262), + [anon_sym___forceinline] = ACTIONS(3262), + [anon_sym_thread_local] = ACTIONS(3262), + [anon_sym___thread] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_not] = ACTIONS(3262), + [anon_sym_compl] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [anon_sym___alignof__] = ACTIONS(3262), + [anon_sym___alignof] = ACTIONS(3262), + [anon_sym__alignof] = ACTIONS(3262), + [anon_sym_alignof] = ACTIONS(3262), + [anon_sym__Alignof] = ACTIONS(3262), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), + [anon_sym___asm__] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [anon_sym_L_SQUOTE] = ACTIONS(3264), + [anon_sym_u_SQUOTE] = ACTIONS(3264), + [anon_sym_U_SQUOTE] = ACTIONS(3264), + [anon_sym_u8_SQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_L_DQUOTE] = ACTIONS(3264), + [anon_sym_u_DQUOTE] = ACTIONS(3264), + [anon_sym_U_DQUOTE] = ACTIONS(3264), + [anon_sym_u8_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_virtual] = ACTIONS(3262), + [anon_sym_alignas] = ACTIONS(3262), + [anon_sym_explicit] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3262), + [anon_sym_template] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_static_assert] = ACTIONS(3262), + [anon_sym_concept] = ACTIONS(3262), + [anon_sym_co_return] = ACTIONS(3262), + [anon_sym_co_yield] = ACTIONS(3262), + [anon_sym_R_DQUOTE] = ACTIONS(3264), + [anon_sym_LR_DQUOTE] = ACTIONS(3264), + [anon_sym_uR_DQUOTE] = ACTIONS(3264), + [anon_sym_UR_DQUOTE] = ACTIONS(3264), + [anon_sym_u8R_DQUOTE] = ACTIONS(3264), + [anon_sym_co_await] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_requires] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), }, - [1079] = { - [sym_type_qualifier] = STATE(2124), - [sym__expression] = STATE(5145), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4047), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1047] = { + [sym__expression] = STATE(4692), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_initializer_list] = STATE(4852), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [aux_sym_preproc_if_token2] = ACTIONS(2140), + [aux_sym_preproc_else_token1] = ACTIONS(2140), + [aux_sym_preproc_elif_token1] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(3822), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2140), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACE] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(2140), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [1080] = { - [sym_type_qualifier] = STATE(1092), - [sym__expression] = STATE(5222), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(1092), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4049), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4051), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1048] = { + [sym__expression] = STATE(4185), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_initializer_list] = STATE(4333), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(3864), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym___attribute__] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2140), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -236405,221 +232924,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1081] = { - [sym_type_qualifier] = STATE(2124), - [sym__expression] = STATE(5099), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4053), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4055), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1049] = { + [sym__expression] = STATE(5032), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_initializer_list] = STATE(5330), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(2140), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [anon_sym_GT2] = ACTIONS(2140), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1082] = { - [sym_type_qualifier] = STATE(1085), - [sym__expression] = STATE(5107), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4057), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4059), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1050] = { + [sym__expression] = STATE(4185), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_initializer_list] = STATE(4333), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_COMMA] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(3892), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2140), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_RBRACK] = ACTIONS(2140), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -236629,6 +233178,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -236645,93 +233197,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1083] = { - [sym_type_qualifier] = STATE(1079), - [sym__expression] = STATE(5078), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(4061), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4063), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4065), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1051] = { + [sym__expression] = STATE(5182), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_initializer_list] = STATE(4333), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(3908), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2140), + [anon_sym_AMP_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_EQ_EQ] = ACTIONS(2140), + [anon_sym_BANG_EQ] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2140), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2140), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(2138), + [anon_sym_QMARK] = ACTIONS(2140), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_LT_EQ_GT] = ACTIONS(2140), + [anon_sym_or] = ACTIONS(2138), + [anon_sym_and] = ACTIONS(2138), + [anon_sym_bitor] = ACTIONS(2138), + [anon_sym_xor] = ACTIONS(2138), + [anon_sym_bitand] = ACTIONS(2138), + [anon_sym_not_eq] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2140), + [anon_sym_PLUS_PLUS] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -236741,6 +233304,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DOT_STAR] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(2140), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -236757,93 +233323,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1084] = { - [sym_type_qualifier] = STATE(1100), - [sym__expression] = STATE(5157), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(1100), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4067), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4069), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1052] = { + [sym__expression] = STATE(5231), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3920), + [anon_sym_COMMA] = ACTIONS(3920), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3892), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_SLASH] = ACTIONS(3924), + [anon_sym_PERCENT] = ACTIONS(3920), + [anon_sym_PIPE_PIPE] = ACTIONS(3920), + [anon_sym_AMP_AMP] = ACTIONS(3920), + [anon_sym_PIPE] = ACTIONS(3924), + [anon_sym_CARET] = ACTIONS(3920), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_EQ_EQ] = ACTIONS(3920), + [anon_sym_BANG_EQ] = ACTIONS(3920), + [anon_sym_GT] = ACTIONS(3924), + [anon_sym_GT_EQ] = ACTIONS(3920), + [anon_sym_LT_EQ] = ACTIONS(3924), + [anon_sym_LT] = ACTIONS(3924), + [anon_sym_LT_LT] = ACTIONS(3920), + [anon_sym_GT_GT] = ACTIONS(3920), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(3920), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_QMARK] = ACTIONS(3920), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_LT_EQ_GT] = ACTIONS(3920), + [anon_sym_or] = ACTIONS(3924), + [anon_sym_and] = ACTIONS(3924), + [anon_sym_bitor] = ACTIONS(3924), + [anon_sym_xor] = ACTIONS(3924), + [anon_sym_bitand] = ACTIONS(3924), + [anon_sym_not_eq] = ACTIONS(3924), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -236853,6 +233429,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(3924), + [anon_sym_DOT_STAR] = ACTIONS(3920), + [anon_sym_DASH_GT] = ACTIONS(3920), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -236869,1104 +233448,3042 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1085] = { - [sym_type_qualifier] = STATE(2124), - [sym__expression] = STATE(5090), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4071), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4073), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1053] = { + [sym__declaration_modifiers] = STATE(2327), + [sym__declaration_specifiers] = STATE(6812), + [sym_attribute_specifier] = STATE(2327), + [sym_attribute_declaration] = STATE(2327), + [sym_ms_declspec_modifier] = STATE(2327), + [sym_storage_class_specifier] = STATE(2327), + [sym_type_qualifier] = STATE(2327), + [sym__type_specifier] = STATE(4600), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2327), + [sym_alignas_specifier] = STATE(2327), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7038), + [sym_qualified_type_identifier] = STATE(3485), + [aux_sym__declaration_specifiers_repeat1] = STATE(2327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3701), + [sym_identifier] = ACTIONS(3928), + [anon_sym_COMMA] = ACTIONS(3930), + [anon_sym_BANG] = ACTIONS(3932), + [anon_sym_TILDE] = ACTIONS(3930), + [anon_sym_DASH] = ACTIONS(3932), + [anon_sym_PLUS] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [anon_sym_SLASH] = ACTIONS(3932), + [anon_sym_PERCENT] = ACTIONS(3932), + [anon_sym_PIPE_PIPE] = ACTIONS(3930), + [anon_sym_AMP_AMP] = ACTIONS(3930), + [anon_sym_PIPE] = ACTIONS(3932), + [anon_sym_CARET] = ACTIONS(3932), + [anon_sym_AMP] = ACTIONS(3932), + [anon_sym_EQ_EQ] = ACTIONS(3930), + [anon_sym_BANG_EQ] = ACTIONS(3930), + [anon_sym_GT] = ACTIONS(3932), + [anon_sym_GT_EQ] = ACTIONS(3930), + [anon_sym_LT_EQ] = ACTIONS(3932), + [anon_sym_LT] = ACTIONS(3932), + [anon_sym_LT_LT] = ACTIONS(3932), + [anon_sym_GT_GT] = ACTIONS(3932), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3936), + [anon_sym_unsigned] = ACTIONS(3936), + [anon_sym_long] = ACTIONS(3936), + [anon_sym_short] = ACTIONS(3936), + [anon_sym_EQ] = ACTIONS(3932), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3938), + [anon_sym_enum] = ACTIONS(3940), + [anon_sym_class] = ACTIONS(3942), + [anon_sym_struct] = ACTIONS(3944), + [anon_sym_union] = ACTIONS(3946), + [anon_sym_STAR_EQ] = ACTIONS(3930), + [anon_sym_SLASH_EQ] = ACTIONS(3930), + [anon_sym_PERCENT_EQ] = ACTIONS(3930), + [anon_sym_PLUS_EQ] = ACTIONS(3930), + [anon_sym_DASH_EQ] = ACTIONS(3930), + [anon_sym_LT_LT_EQ] = ACTIONS(3930), + [anon_sym_GT_GT_EQ] = ACTIONS(3930), + [anon_sym_AMP_EQ] = ACTIONS(3930), + [anon_sym_CARET_EQ] = ACTIONS(3930), + [anon_sym_PIPE_EQ] = ACTIONS(3930), + [anon_sym_and_eq] = ACTIONS(3932), + [anon_sym_or_eq] = ACTIONS(3932), + [anon_sym_xor_eq] = ACTIONS(3932), + [anon_sym_not] = ACTIONS(3932), + [anon_sym_compl] = ACTIONS(3932), + [anon_sym_LT_EQ_GT] = ACTIONS(3930), + [anon_sym_or] = ACTIONS(3932), + [anon_sym_and] = ACTIONS(3932), + [anon_sym_bitor] = ACTIONS(3932), + [anon_sym_xor] = ACTIONS(3932), + [anon_sym_bitand] = ACTIONS(3932), + [anon_sym_not_eq] = ACTIONS(3932), + [anon_sym_DASH_DASH] = ACTIONS(3930), + [anon_sym_PLUS_PLUS] = ACTIONS(3930), + [anon_sym_DASH_GT] = ACTIONS(3932), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(3948), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [anon_sym_delete] = ACTIONS(3950), + [anon_sym_co_await] = ACTIONS(3932), + [anon_sym_new] = ACTIONS(3950), + [anon_sym_DASH_GT_STAR] = ACTIONS(3930), + [anon_sym_LPAREN_RPAREN] = ACTIONS(3930), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3930), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3952), }, - [1086] = { - [sym_type_qualifier] = STATE(1095), - [sym__expression] = STATE(5150), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(1095), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4077), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1054] = { + [sym__declaration_modifiers] = STATE(2327), + [sym__declaration_specifiers] = STATE(6812), + [sym_attribute_specifier] = STATE(2327), + [sym_attribute_declaration] = STATE(2327), + [sym_ms_declspec_modifier] = STATE(2327), + [sym_storage_class_specifier] = STATE(2327), + [sym_type_qualifier] = STATE(2327), + [sym__type_specifier] = STATE(4600), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2327), + [sym_alignas_specifier] = STATE(2327), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7038), + [sym_qualified_type_identifier] = STATE(3485), + [aux_sym__declaration_specifiers_repeat1] = STATE(2327), + [aux_sym_sized_type_specifier_repeat1] = STATE(3701), + [sym_identifier] = ACTIONS(3928), + [anon_sym_COMMA] = ACTIONS(3954), + [anon_sym_BANG] = ACTIONS(3956), + [anon_sym_TILDE] = ACTIONS(3954), + [anon_sym_DASH] = ACTIONS(3956), + [anon_sym_PLUS] = ACTIONS(3956), + [anon_sym_STAR] = ACTIONS(3956), + [anon_sym_SLASH] = ACTIONS(3956), + [anon_sym_PERCENT] = ACTIONS(3956), + [anon_sym_PIPE_PIPE] = ACTIONS(3954), + [anon_sym_AMP_AMP] = ACTIONS(3954), + [anon_sym_PIPE] = ACTIONS(3956), + [anon_sym_CARET] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3956), + [anon_sym_EQ_EQ] = ACTIONS(3954), + [anon_sym_BANG_EQ] = ACTIONS(3954), + [anon_sym_GT] = ACTIONS(3956), + [anon_sym_GT_EQ] = ACTIONS(3954), + [anon_sym_LT_EQ] = ACTIONS(3956), + [anon_sym_LT] = ACTIONS(3956), + [anon_sym_LT_LT] = ACTIONS(3956), + [anon_sym_GT_GT] = ACTIONS(3956), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3936), + [anon_sym_unsigned] = ACTIONS(3936), + [anon_sym_long] = ACTIONS(3936), + [anon_sym_short] = ACTIONS(3936), + [anon_sym_EQ] = ACTIONS(3956), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3938), + [anon_sym_enum] = ACTIONS(3940), + [anon_sym_class] = ACTIONS(3942), + [anon_sym_struct] = ACTIONS(3944), + [anon_sym_union] = ACTIONS(3946), + [anon_sym_STAR_EQ] = ACTIONS(3954), + [anon_sym_SLASH_EQ] = ACTIONS(3954), + [anon_sym_PERCENT_EQ] = ACTIONS(3954), + [anon_sym_PLUS_EQ] = ACTIONS(3954), + [anon_sym_DASH_EQ] = ACTIONS(3954), + [anon_sym_LT_LT_EQ] = ACTIONS(3954), + [anon_sym_GT_GT_EQ] = ACTIONS(3954), + [anon_sym_AMP_EQ] = ACTIONS(3954), + [anon_sym_CARET_EQ] = ACTIONS(3954), + [anon_sym_PIPE_EQ] = ACTIONS(3954), + [anon_sym_and_eq] = ACTIONS(3956), + [anon_sym_or_eq] = ACTIONS(3956), + [anon_sym_xor_eq] = ACTIONS(3956), + [anon_sym_not] = ACTIONS(3956), + [anon_sym_compl] = ACTIONS(3956), + [anon_sym_LT_EQ_GT] = ACTIONS(3954), + [anon_sym_or] = ACTIONS(3956), + [anon_sym_and] = ACTIONS(3956), + [anon_sym_bitor] = ACTIONS(3956), + [anon_sym_xor] = ACTIONS(3956), + [anon_sym_bitand] = ACTIONS(3956), + [anon_sym_not_eq] = ACTIONS(3956), + [anon_sym_DASH_DASH] = ACTIONS(3954), + [anon_sym_PLUS_PLUS] = ACTIONS(3954), + [anon_sym_DASH_GT] = ACTIONS(3956), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(3948), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [anon_sym_delete] = ACTIONS(3958), + [anon_sym_co_await] = ACTIONS(3956), + [anon_sym_new] = ACTIONS(3958), + [anon_sym_DASH_GT_STAR] = ACTIONS(3954), + [anon_sym_LPAREN_RPAREN] = ACTIONS(3954), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3954), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3960), }, - [1087] = { - [sym_type_qualifier] = STATE(2124), - [sym__expression] = STATE(5092), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4079), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4081), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1055] = { + [sym_function_definition] = STATE(972), + [sym_declaration] = STATE(972), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5573), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2253), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6793), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3979), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(972), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2042), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(972), + [sym_operator_cast] = STATE(7216), + [sym__constructor_specifiers] = STATE(2042), + [sym_operator_cast_definition] = STATE(972), + [sym_operator_cast_declaration] = STATE(972), + [sym_constructor_or_destructor_definition] = STATE(972), + [sym_constructor_or_destructor_declaration] = STATE(972), + [sym_friend_declaration] = STATE(972), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(972), + [sym_concept_definition] = STATE(972), + [sym_requires_clause] = STATE(1068), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7216), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2042), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3966), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3968), + [anon_sym_using] = ACTIONS(3970), + [anon_sym_concept] = ACTIONS(145), + [anon_sym_requires] = ACTIONS(3972), }, - [1088] = { - [sym_type_qualifier] = STATE(2124), - [sym__expression] = STATE(5244), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4083), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4085), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1056] = { + [sym_function_definition] = STATE(907), + [sym_declaration] = STATE(907), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6753), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(907), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2056), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(907), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2056), + [sym_operator_cast_definition] = STATE(907), + [sym_operator_cast_declaration] = STATE(907), + [sym_constructor_or_destructor_definition] = STATE(907), + [sym_constructor_or_destructor_declaration] = STATE(907), + [sym_friend_declaration] = STATE(907), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(907), + [sym_concept_definition] = STATE(907), + [sym_requires_clause] = STATE(1066), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2056), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3974), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3976), + [anon_sym_using] = ACTIONS(3978), + [anon_sym_concept] = ACTIONS(231), + [anon_sym_requires] = ACTIONS(3972), }, - [1089] = { - [sym_type_qualifier] = STATE(2124), - [sym__expression] = STATE(5086), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4087), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4089), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1057] = { + [sym_function_definition] = STATE(2524), + [sym_declaration] = STATE(2524), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5529), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2218), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3984), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(2524), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(2524), + [sym_operator_cast] = STATE(7191), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(2524), + [sym_operator_cast_declaration] = STATE(2524), + [sym_constructor_or_destructor_definition] = STATE(2524), + [sym_constructor_or_destructor_declaration] = STATE(2524), + [sym_friend_declaration] = STATE(2524), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(2524), + [sym_concept_definition] = STATE(2524), + [sym_requires_clause] = STATE(1072), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3980), + [anon_sym_concept] = ACTIONS(3982), + [anon_sym_requires] = ACTIONS(3972), }, - [1090] = { - [sym_type_qualifier] = STATE(1079), - [sym__expression] = STATE(5078), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4063), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4065), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1058] = { + [sym_function_definition] = STATE(863), + [sym_declaration] = STATE(863), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5565), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2206), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6740), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4047), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(863), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2047), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(863), + [sym_operator_cast] = STATE(7201), + [sym__constructor_specifiers] = STATE(2047), + [sym_operator_cast_definition] = STATE(863), + [sym_operator_cast_declaration] = STATE(863), + [sym_constructor_or_destructor_definition] = STATE(863), + [sym_constructor_or_destructor_declaration] = STATE(863), + [sym_friend_declaration] = STATE(863), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(863), + [sym_concept_definition] = STATE(863), + [sym_requires_clause] = STATE(1074), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7201), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2047), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3984), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3986), + [anon_sym_using] = ACTIONS(3988), + [anon_sym_concept] = ACTIONS(1154), + [anon_sym_requires] = ACTIONS(3972), }, - [1091] = { - [sym_type_qualifier] = STATE(2124), - [sym__expression] = STATE(5091), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4091), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4093), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1059] = { + [sym_function_definition] = STATE(2294), + [sym_declaration] = STATE(2294), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5544), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2284), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4013), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(2294), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(2294), + [sym_operator_cast] = STATE(7192), + [sym__constructor_specifiers] = STATE(2057), + [sym_operator_cast_definition] = STATE(2294), + [sym_operator_cast_declaration] = STATE(2294), + [sym_constructor_or_destructor_definition] = STATE(2294), + [sym_constructor_or_destructor_declaration] = STATE(2294), + [sym_friend_declaration] = STATE(2294), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(2294), + [sym_concept_definition] = STATE(2294), + [sym_requires_clause] = STATE(1073), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3446), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3990), + [anon_sym_concept] = ACTIONS(3992), + [anon_sym_requires] = ACTIONS(3972), }, - [1092] = { - [sym_type_qualifier] = STATE(2124), - [sym__expression] = STATE(5208), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4095), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4097), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1060] = { + [sym_function_definition] = STATE(556), + [sym_declaration] = STATE(556), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6781), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(556), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2054), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(556), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2054), + [sym_operator_cast_definition] = STATE(556), + [sym_operator_cast_declaration] = STATE(556), + [sym_constructor_or_destructor_definition] = STATE(556), + [sym_constructor_or_destructor_declaration] = STATE(556), + [sym_friend_declaration] = STATE(556), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(556), + [sym_concept_definition] = STATE(556), + [sym_requires_clause] = STATE(1070), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2054), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3994), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3996), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_concept] = ACTIONS(421), + [anon_sym_requires] = ACTIONS(3972), }, - [1093] = { - [sym_type_qualifier] = STATE(1091), - [sym__expression] = STATE(5143), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(1091), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4099), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4101), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1061] = { + [sym_function_definition] = STATE(2146), + [sym_declaration] = STATE(2146), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5517), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2279), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6791), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4021), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(2146), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2046), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(2146), + [sym_operator_cast] = STATE(7208), + [sym__constructor_specifiers] = STATE(2046), + [sym_operator_cast_definition] = STATE(2146), + [sym_operator_cast_declaration] = STATE(2146), + [sym_constructor_or_destructor_definition] = STATE(2146), + [sym_constructor_or_destructor_declaration] = STATE(2146), + [sym_friend_declaration] = STATE(2146), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(2146), + [sym_concept_definition] = STATE(2146), + [sym_requires_clause] = STATE(1069), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7208), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3068), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3070), + [anon_sym_using] = ACTIONS(4000), + [anon_sym_concept] = ACTIONS(4002), + [anon_sym_requires] = ACTIONS(3972), }, - [1094] = { - [sym_type_qualifier] = STATE(1087), - [sym__expression] = STATE(5112), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(1087), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4103), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4105), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), + [1062] = { + [sym_function_definition] = STATE(2673), + [sym_declaration] = STATE(2673), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5566), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2261), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6766), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4039), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(2673), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2043), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(2673), + [sym_operator_cast] = STATE(7229), + [sym__constructor_specifiers] = STATE(2043), + [sym_operator_cast_definition] = STATE(2673), + [sym_operator_cast_declaration] = STATE(2673), + [sym_constructor_or_destructor_definition] = STATE(2673), + [sym_constructor_or_destructor_declaration] = STATE(2673), + [sym_friend_declaration] = STATE(2673), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(2673), + [sym_concept_definition] = STATE(2673), + [sym_requires_clause] = STATE(1071), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7229), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2043), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3700), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3702), + [anon_sym_using] = ACTIONS(4004), + [anon_sym_concept] = ACTIONS(4006), + [anon_sym_requires] = ACTIONS(3972), + }, + [1063] = { + [sym_function_definition] = STATE(347), + [sym_declaration] = STATE(347), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6775), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(347), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2045), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(347), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2045), + [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_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(347), + [sym_concept_definition] = STATE(347), + [sym_requires_clause] = STATE(1067), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2045), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(4008), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(4010), + [anon_sym_using] = ACTIONS(4012), + [anon_sym_concept] = ACTIONS(333), + [anon_sym_requires] = ACTIONS(3972), + }, + [1064] = { + [sym_identifier] = ACTIONS(4014), + [anon_sym_COMMA] = ACTIONS(4016), + [anon_sym_RPAREN] = ACTIONS(4016), + [anon_sym_LPAREN2] = ACTIONS(4016), + [anon_sym_BANG] = ACTIONS(4016), + [anon_sym_TILDE] = ACTIONS(4016), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_STAR] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4014), + [anon_sym_SEMI] = ACTIONS(4016), + [anon_sym___extension__] = ACTIONS(4014), + [anon_sym_extern] = ACTIONS(4014), + [anon_sym___attribute__] = ACTIONS(4014), + [anon_sym_COLON_COLON] = ACTIONS(4016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4016), + [anon_sym___declspec] = ACTIONS(4014), + [anon_sym___based] = ACTIONS(4014), + [anon_sym_LBRACE] = ACTIONS(4016), + [anon_sym_signed] = ACTIONS(4014), + [anon_sym_unsigned] = ACTIONS(4014), + [anon_sym_long] = ACTIONS(4014), + [anon_sym_short] = ACTIONS(4014), + [anon_sym_LBRACK] = ACTIONS(4014), + [anon_sym_EQ] = ACTIONS(4016), + [anon_sym_static] = ACTIONS(4014), + [anon_sym_register] = ACTIONS(4014), + [anon_sym_inline] = ACTIONS(4014), + [anon_sym___inline] = ACTIONS(4014), + [anon_sym___inline__] = ACTIONS(4014), + [anon_sym___forceinline] = ACTIONS(4014), + [anon_sym_thread_local] = ACTIONS(4014), + [anon_sym___thread] = ACTIONS(4014), + [anon_sym_const] = ACTIONS(4014), + [anon_sym_constexpr] = ACTIONS(4014), + [anon_sym_volatile] = ACTIONS(4014), + [anon_sym_restrict] = ACTIONS(4014), + [anon_sym___restrict__] = ACTIONS(4014), + [anon_sym__Atomic] = ACTIONS(4014), + [anon_sym__Noreturn] = ACTIONS(4014), + [anon_sym_noreturn] = ACTIONS(4014), + [anon_sym_mutable] = ACTIONS(4014), + [anon_sym_constinit] = ACTIONS(4014), + [anon_sym_consteval] = ACTIONS(4014), + [sym_primitive_type] = ACTIONS(4014), + [anon_sym_enum] = ACTIONS(4014), + [anon_sym_class] = ACTIONS(4014), + [anon_sym_struct] = ACTIONS(4014), + [anon_sym_union] = ACTIONS(4014), + [anon_sym_if] = ACTIONS(4014), + [anon_sym_switch] = ACTIONS(4014), + [anon_sym_case] = ACTIONS(4014), + [anon_sym_default] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(4014), + [anon_sym_do] = ACTIONS(4014), + [anon_sym_for] = ACTIONS(4014), + [anon_sym_return] = ACTIONS(4014), + [anon_sym_break] = ACTIONS(4014), + [anon_sym_continue] = ACTIONS(4014), + [anon_sym_goto] = ACTIONS(4014), + [anon_sym___try] = ACTIONS(4014), + [anon_sym___leave] = ACTIONS(4014), + [anon_sym_not] = ACTIONS(4014), + [anon_sym_compl] = ACTIONS(4014), + [anon_sym_DASH_DASH] = ACTIONS(4016), + [anon_sym_PLUS_PLUS] = ACTIONS(4016), + [anon_sym_sizeof] = ACTIONS(4014), + [anon_sym___alignof__] = ACTIONS(4014), + [anon_sym___alignof] = ACTIONS(4014), + [anon_sym__alignof] = ACTIONS(4014), + [anon_sym_alignof] = ACTIONS(4014), + [anon_sym__Alignof] = ACTIONS(4014), + [anon_sym_offsetof] = ACTIONS(4014), + [anon_sym__Generic] = ACTIONS(4014), + [anon_sym_asm] = ACTIONS(4014), + [anon_sym___asm__] = ACTIONS(4014), + [sym_number_literal] = ACTIONS(4016), + [anon_sym_L_SQUOTE] = ACTIONS(4016), + [anon_sym_u_SQUOTE] = ACTIONS(4016), + [anon_sym_U_SQUOTE] = ACTIONS(4016), + [anon_sym_u8_SQUOTE] = ACTIONS(4016), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_L_DQUOTE] = ACTIONS(4016), + [anon_sym_u_DQUOTE] = ACTIONS(4016), + [anon_sym_U_DQUOTE] = ACTIONS(4016), + [anon_sym_u8_DQUOTE] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(4016), + [sym_true] = ACTIONS(4014), + [sym_false] = ACTIONS(4014), + [anon_sym_NULL] = ACTIONS(4014), + [anon_sym_nullptr] = ACTIONS(4014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4014), + [anon_sym_decltype] = ACTIONS(4014), + [anon_sym_virtual] = ACTIONS(4014), + [anon_sym_alignas] = ACTIONS(4014), + [anon_sym_explicit] = ACTIONS(4014), + [anon_sym_typename] = ACTIONS(4014), + [anon_sym_template] = ACTIONS(4014), + [anon_sym_GT2] = ACTIONS(4016), + [anon_sym_operator] = ACTIONS(4014), + [anon_sym_try] = ACTIONS(4014), + [anon_sym_delete] = ACTIONS(4014), + [anon_sym_throw] = ACTIONS(4014), + [anon_sym_co_return] = ACTIONS(4014), + [anon_sym_co_yield] = ACTIONS(4014), + [anon_sym_R_DQUOTE] = ACTIONS(4016), + [anon_sym_LR_DQUOTE] = ACTIONS(4016), + [anon_sym_uR_DQUOTE] = ACTIONS(4016), + [anon_sym_UR_DQUOTE] = ACTIONS(4016), + [anon_sym_u8R_DQUOTE] = ACTIONS(4016), + [anon_sym_co_await] = ACTIONS(4014), + [anon_sym_new] = ACTIONS(4014), + [anon_sym_requires] = ACTIONS(4014), + [sym_this] = ACTIONS(4014), + }, + [1065] = { + [sym_identifier] = ACTIONS(4018), + [anon_sym_COMMA] = ACTIONS(4020), + [anon_sym_RPAREN] = ACTIONS(4020), + [anon_sym_LPAREN2] = ACTIONS(4020), + [anon_sym_BANG] = ACTIONS(4020), + [anon_sym_TILDE] = ACTIONS(4020), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_PLUS] = ACTIONS(4018), + [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4018), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym___extension__] = ACTIONS(4018), + [anon_sym_extern] = ACTIONS(4018), + [anon_sym___attribute__] = ACTIONS(4018), + [anon_sym_COLON_COLON] = ACTIONS(4020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4020), + [anon_sym___declspec] = ACTIONS(4018), + [anon_sym___based] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(4020), + [anon_sym_signed] = ACTIONS(4018), + [anon_sym_unsigned] = ACTIONS(4018), + [anon_sym_long] = ACTIONS(4018), + [anon_sym_short] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4018), + [anon_sym_EQ] = ACTIONS(4020), + [anon_sym_static] = ACTIONS(4018), + [anon_sym_register] = ACTIONS(4018), + [anon_sym_inline] = ACTIONS(4018), + [anon_sym___inline] = ACTIONS(4018), + [anon_sym___inline__] = ACTIONS(4018), + [anon_sym___forceinline] = ACTIONS(4018), + [anon_sym_thread_local] = ACTIONS(4018), + [anon_sym___thread] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4018), + [anon_sym_constexpr] = ACTIONS(4018), + [anon_sym_volatile] = ACTIONS(4018), + [anon_sym_restrict] = ACTIONS(4018), + [anon_sym___restrict__] = ACTIONS(4018), + [anon_sym__Atomic] = ACTIONS(4018), + [anon_sym__Noreturn] = ACTIONS(4018), + [anon_sym_noreturn] = ACTIONS(4018), + [anon_sym_mutable] = ACTIONS(4018), + [anon_sym_constinit] = ACTIONS(4018), + [anon_sym_consteval] = ACTIONS(4018), + [sym_primitive_type] = ACTIONS(4018), + [anon_sym_enum] = ACTIONS(4018), + [anon_sym_class] = ACTIONS(4018), + [anon_sym_struct] = ACTIONS(4018), + [anon_sym_union] = ACTIONS(4018), + [anon_sym_if] = ACTIONS(4018), + [anon_sym_switch] = ACTIONS(4018), + [anon_sym_case] = ACTIONS(4018), + [anon_sym_default] = ACTIONS(4018), + [anon_sym_while] = ACTIONS(4018), + [anon_sym_do] = ACTIONS(4018), + [anon_sym_for] = ACTIONS(4018), + [anon_sym_return] = ACTIONS(4018), + [anon_sym_break] = ACTIONS(4018), + [anon_sym_continue] = ACTIONS(4018), + [anon_sym_goto] = ACTIONS(4018), + [anon_sym___try] = ACTIONS(4018), + [anon_sym___leave] = ACTIONS(4018), + [anon_sym_not] = ACTIONS(4018), + [anon_sym_compl] = ACTIONS(4018), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_sizeof] = ACTIONS(4018), + [anon_sym___alignof__] = ACTIONS(4018), + [anon_sym___alignof] = ACTIONS(4018), + [anon_sym__alignof] = ACTIONS(4018), + [anon_sym_alignof] = ACTIONS(4018), + [anon_sym__Alignof] = ACTIONS(4018), + [anon_sym_offsetof] = ACTIONS(4018), + [anon_sym__Generic] = ACTIONS(4018), + [anon_sym_asm] = ACTIONS(4018), + [anon_sym___asm__] = ACTIONS(4018), + [sym_number_literal] = ACTIONS(4020), + [anon_sym_L_SQUOTE] = ACTIONS(4020), + [anon_sym_u_SQUOTE] = ACTIONS(4020), + [anon_sym_U_SQUOTE] = ACTIONS(4020), + [anon_sym_u8_SQUOTE] = ACTIONS(4020), + [anon_sym_SQUOTE] = ACTIONS(4020), + [anon_sym_L_DQUOTE] = ACTIONS(4020), + [anon_sym_u_DQUOTE] = ACTIONS(4020), + [anon_sym_U_DQUOTE] = ACTIONS(4020), + [anon_sym_u8_DQUOTE] = ACTIONS(4020), + [anon_sym_DQUOTE] = ACTIONS(4020), + [sym_true] = ACTIONS(4018), + [sym_false] = ACTIONS(4018), + [anon_sym_NULL] = ACTIONS(4018), + [anon_sym_nullptr] = ACTIONS(4018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4018), + [anon_sym_decltype] = ACTIONS(4018), + [anon_sym_virtual] = ACTIONS(4018), + [anon_sym_alignas] = ACTIONS(4018), + [anon_sym_explicit] = ACTIONS(4018), + [anon_sym_typename] = ACTIONS(4018), + [anon_sym_template] = ACTIONS(4018), + [anon_sym_GT2] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4018), + [anon_sym_try] = ACTIONS(4018), + [anon_sym_delete] = ACTIONS(4018), + [anon_sym_throw] = ACTIONS(4018), + [anon_sym_co_return] = ACTIONS(4018), + [anon_sym_co_yield] = ACTIONS(4018), + [anon_sym_R_DQUOTE] = ACTIONS(4020), + [anon_sym_LR_DQUOTE] = ACTIONS(4020), + [anon_sym_uR_DQUOTE] = ACTIONS(4020), + [anon_sym_UR_DQUOTE] = ACTIONS(4020), + [anon_sym_u8R_DQUOTE] = ACTIONS(4020), + [anon_sym_co_await] = ACTIONS(4018), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_requires] = ACTIONS(4018), + [sym_this] = ACTIONS(4018), + }, + [1066] = { + [sym_function_definition] = STATE(920), + [sym_declaration] = STATE(920), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5526), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2266), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6753), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4104), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(920), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2056), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(920), + [sym_operator_cast] = STATE(7231), + [sym__constructor_specifiers] = STATE(2056), + [sym_operator_cast_definition] = STATE(920), + [sym_operator_cast_declaration] = STATE(920), + [sym_constructor_or_destructor_definition] = STATE(920), + [sym_constructor_or_destructor_declaration] = STATE(920), + [sym_friend_declaration] = STATE(920), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(920), + [sym_concept_definition] = STATE(920), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7231), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2056), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3974), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3976), + [anon_sym_using] = ACTIONS(3978), + [anon_sym_concept] = ACTIONS(231), + }, + [1067] = { + [sym_function_definition] = STATE(353), + [sym_declaration] = STATE(353), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5520), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2269), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6775), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4098), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(353), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2045), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(353), + [sym_operator_cast] = STATE(7235), + [sym__constructor_specifiers] = STATE(2045), + [sym_operator_cast_definition] = STATE(353), + [sym_operator_cast_declaration] = STATE(353), + [sym_constructor_or_destructor_definition] = STATE(353), + [sym_constructor_or_destructor_declaration] = STATE(353), + [sym_friend_declaration] = STATE(353), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(353), + [sym_concept_definition] = STATE(353), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7235), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2045), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(4008), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(4010), + [anon_sym_using] = ACTIONS(4012), + [anon_sym_concept] = ACTIONS(333), + }, + [1068] = { + [sym_function_definition] = STATE(1012), + [sym_declaration] = STATE(1012), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5573), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2253), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6793), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3979), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(1012), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2042), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(1012), + [sym_operator_cast] = STATE(7216), + [sym__constructor_specifiers] = STATE(2042), + [sym_operator_cast_definition] = STATE(1012), + [sym_operator_cast_declaration] = STATE(1012), + [sym_constructor_or_destructor_definition] = STATE(1012), + [sym_constructor_or_destructor_declaration] = STATE(1012), + [sym_friend_declaration] = STATE(1012), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(1012), + [sym_concept_definition] = STATE(1012), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7216), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2042), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3966), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3968), + [anon_sym_using] = ACTIONS(3970), + [anon_sym_concept] = ACTIONS(145), + }, + [1069] = { + [sym_function_definition] = STATE(2108), + [sym_declaration] = STATE(2108), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5517), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2279), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6791), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4021), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(2108), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2046), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(2108), + [sym_operator_cast] = STATE(7208), + [sym__constructor_specifiers] = STATE(2046), + [sym_operator_cast_definition] = STATE(2108), + [sym_operator_cast_declaration] = STATE(2108), + [sym_constructor_or_destructor_definition] = STATE(2108), + [sym_constructor_or_destructor_declaration] = STATE(2108), + [sym_friend_declaration] = STATE(2108), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(2108), + [sym_concept_definition] = STATE(2108), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7208), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2046), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3068), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3070), + [anon_sym_using] = ACTIONS(4000), + [anon_sym_concept] = ACTIONS(4002), + }, + [1070] = { + [sym_function_definition] = STATE(596), + [sym_declaration] = STATE(596), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5567), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2260), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6781), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4123), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(596), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2054), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(596), + [sym_operator_cast] = STATE(7228), + [sym__constructor_specifiers] = STATE(2054), + [sym_operator_cast_definition] = STATE(596), + [sym_operator_cast_declaration] = STATE(596), + [sym_constructor_or_destructor_definition] = STATE(596), + [sym_constructor_or_destructor_declaration] = STATE(596), + [sym_friend_declaration] = STATE(596), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(596), + [sym_concept_definition] = STATE(596), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7228), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2054), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3994), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3996), + [anon_sym_using] = ACTIONS(3998), + [anon_sym_concept] = ACTIONS(421), + }, + [1071] = { + [sym_function_definition] = STATE(2637), + [sym_declaration] = STATE(2637), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5566), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2261), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6766), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4039), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(2637), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2043), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(2637), + [sym_operator_cast] = STATE(7229), + [sym__constructor_specifiers] = STATE(2043), + [sym_operator_cast_definition] = STATE(2637), + [sym_operator_cast_declaration] = STATE(2637), + [sym_constructor_or_destructor_definition] = STATE(2637), + [sym_constructor_or_destructor_declaration] = STATE(2637), + [sym_friend_declaration] = STATE(2637), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(2637), + [sym_concept_definition] = STATE(2637), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7229), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2043), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3700), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3702), + [anon_sym_using] = ACTIONS(4004), + [anon_sym_concept] = ACTIONS(4006), + }, + [1072] = { + [sym_function_definition] = STATE(2548), + [sym_declaration] = STATE(2548), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5529), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2218), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6768), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(3984), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(2548), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2044), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(2548), + [sym_operator_cast] = STATE(7191), + [sym__constructor_specifiers] = STATE(2044), + [sym_operator_cast_definition] = STATE(2548), + [sym_operator_cast_declaration] = STATE(2548), + [sym_constructor_or_destructor_definition] = STATE(2548), + [sym_constructor_or_destructor_declaration] = STATE(2548), + [sym_friend_declaration] = STATE(2548), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(2548), + [sym_concept_definition] = STATE(2548), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7191), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3980), + [anon_sym_concept] = ACTIONS(3982), + }, + [1073] = { + [sym_function_definition] = STATE(2392), + [sym_declaration] = STATE(2392), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5544), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2284), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6770), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4013), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(2392), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2057), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(2392), + [sym_operator_cast] = STATE(7192), + [sym__constructor_specifiers] = STATE(2057), + [sym_operator_cast_definition] = STATE(2392), + [sym_operator_cast_declaration] = STATE(2392), + [sym_constructor_or_destructor_definition] = STATE(2392), + [sym_constructor_or_destructor_declaration] = STATE(2392), + [sym_friend_declaration] = STATE(2392), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(2392), + [sym_concept_definition] = STATE(2392), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7192), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3446), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3990), + [anon_sym_concept] = ACTIONS(3992), + }, + [1074] = { + [sym_function_definition] = STATE(842), + [sym_declaration] = STATE(842), + [sym__declaration_modifiers] = STATE(4073), + [sym__declaration_specifiers] = STATE(5565), + [sym_attribute_specifier] = STATE(4073), + [sym_attribute_declaration] = STATE(4073), + [sym_ms_declspec_modifier] = STATE(4073), + [sym_ms_based_modifier] = STATE(9234), + [sym_ms_call_modifier] = STATE(2206), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6740), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(4073), + [sym_type_qualifier] = STATE(4073), + [sym__type_specifier] = STATE(4047), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym__empty_declaration] = STATE(842), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4073), + [sym_alignas_specifier] = STATE(4073), + [sym_explicit_function_specifier] = STATE(2047), + [sym_dependent_type] = STATE(3623), + [sym_template_declaration] = STATE(842), + [sym_operator_cast] = STATE(7201), + [sym__constructor_specifiers] = STATE(2047), + [sym_operator_cast_definition] = STATE(842), + [sym_operator_cast_declaration] = STATE(842), + [sym_constructor_or_destructor_definition] = STATE(842), + [sym_constructor_or_destructor_declaration] = STATE(842), + [sym_friend_declaration] = STATE(842), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_alias_declaration] = STATE(842), + [sym_concept_definition] = STATE(842), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(5990), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_qualified_operator_cast_identifier] = STATE(7201), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [aux_sym_operator_cast_definition_repeat1] = STATE(2047), + [sym_identifier] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(3984), + [anon_sym_operator] = ACTIONS(131), + [anon_sym_friend] = ACTIONS(3986), + [anon_sym_using] = ACTIONS(3988), + [anon_sym_concept] = ACTIONS(1154), + }, + [1075] = { + [sym_identifier] = ACTIONS(4022), + [anon_sym_LPAREN2] = ACTIONS(4025), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_TILDE] = ACTIONS(4025), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4025), + [anon_sym_AMP_AMP] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4022), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym___extension__] = ACTIONS(4034), + [anon_sym_extern] = ACTIONS(4034), + [anon_sym___attribute__] = ACTIONS(4034), + [anon_sym_COLON_COLON] = ACTIONS(4025), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4025), + [anon_sym___declspec] = ACTIONS(4034), + [anon_sym___based] = ACTIONS(4034), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_signed] = ACTIONS(4034), + [anon_sym_unsigned] = ACTIONS(4034), + [anon_sym_long] = ACTIONS(4034), + [anon_sym_short] = ACTIONS(4034), + [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_static] = ACTIONS(4034), + [anon_sym_register] = ACTIONS(4034), + [anon_sym_inline] = ACTIONS(4034), + [anon_sym___inline] = ACTIONS(4034), + [anon_sym___inline__] = ACTIONS(4034), + [anon_sym___forceinline] = ACTIONS(4034), + [anon_sym_thread_local] = ACTIONS(4034), + [anon_sym___thread] = ACTIONS(4034), + [anon_sym_const] = ACTIONS(4034), + [anon_sym_constexpr] = ACTIONS(4034), + [anon_sym_volatile] = ACTIONS(4034), + [anon_sym_restrict] = ACTIONS(4034), + [anon_sym___restrict__] = ACTIONS(4034), + [anon_sym__Atomic] = ACTIONS(4034), + [anon_sym__Noreturn] = ACTIONS(4034), + [anon_sym_noreturn] = ACTIONS(4034), + [anon_sym_mutable] = ACTIONS(4034), + [anon_sym_constinit] = ACTIONS(4034), + [anon_sym_consteval] = ACTIONS(4034), + [sym_primitive_type] = ACTIONS(4022), + [anon_sym_enum] = ACTIONS(4034), + [anon_sym_class] = ACTIONS(4034), + [anon_sym_struct] = ACTIONS(4034), + [anon_sym_union] = ACTIONS(4034), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_switch] = ACTIONS(4030), + [anon_sym_case] = ACTIONS(4030), + [anon_sym_default] = ACTIONS(4030), + [anon_sym_while] = ACTIONS(4030), + [anon_sym_do] = ACTIONS(4030), + [anon_sym_for] = ACTIONS(4030), + [anon_sym_return] = ACTIONS(4030), + [anon_sym_break] = ACTIONS(4030), + [anon_sym_continue] = ACTIONS(4030), + [anon_sym_goto] = ACTIONS(4030), + [anon_sym___try] = ACTIONS(4030), + [anon_sym___leave] = ACTIONS(4030), + [anon_sym_not] = ACTIONS(4030), + [anon_sym_compl] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_sizeof] = ACTIONS(4030), + [anon_sym___alignof__] = ACTIONS(4030), + [anon_sym___alignof] = ACTIONS(4030), + [anon_sym__alignof] = ACTIONS(4030), + [anon_sym_alignof] = ACTIONS(4030), + [anon_sym__Alignof] = ACTIONS(4030), + [anon_sym_offsetof] = ACTIONS(4030), + [anon_sym__Generic] = ACTIONS(4030), + [anon_sym_asm] = ACTIONS(4030), + [anon_sym___asm__] = ACTIONS(4030), + [sym_number_literal] = ACTIONS(4028), + [anon_sym_L_SQUOTE] = ACTIONS(4028), + [anon_sym_u_SQUOTE] = ACTIONS(4028), + [anon_sym_U_SQUOTE] = ACTIONS(4028), + [anon_sym_u8_SQUOTE] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4028), + [anon_sym_L_DQUOTE] = ACTIONS(4028), + [anon_sym_u_DQUOTE] = ACTIONS(4028), + [anon_sym_U_DQUOTE] = ACTIONS(4028), + [anon_sym_u8_DQUOTE] = ACTIONS(4028), + [anon_sym_DQUOTE] = ACTIONS(4028), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [anon_sym_NULL] = ACTIONS(4030), + [anon_sym_nullptr] = ACTIONS(4030), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4034), + [anon_sym_decltype] = ACTIONS(4022), + [anon_sym_virtual] = ACTIONS(4034), + [anon_sym_alignas] = ACTIONS(4034), + [anon_sym_explicit] = ACTIONS(4034), + [anon_sym_typename] = ACTIONS(4034), + [anon_sym_template] = ACTIONS(4022), + [anon_sym_operator] = ACTIONS(4034), + [anon_sym_try] = ACTIONS(4030), + [anon_sym_delete] = ACTIONS(4030), + [anon_sym_throw] = ACTIONS(4030), + [anon_sym_co_return] = ACTIONS(4030), + [anon_sym_co_yield] = ACTIONS(4030), + [anon_sym_R_DQUOTE] = ACTIONS(4028), + [anon_sym_LR_DQUOTE] = ACTIONS(4028), + [anon_sym_uR_DQUOTE] = ACTIONS(4028), + [anon_sym_UR_DQUOTE] = ACTIONS(4028), + [anon_sym_u8R_DQUOTE] = ACTIONS(4028), + [anon_sym_co_await] = ACTIONS(4030), + [anon_sym_new] = ACTIONS(4030), + [anon_sym_requires] = ACTIONS(4030), + [sym_this] = ACTIONS(4030), + }, + [1076] = { + [sym_catch_clause] = STATE(1076), + [aux_sym_constructor_try_statement_repeat1] = STATE(1076), + [sym_identifier] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym___inline] = ACTIONS(2815), + [anon_sym___inline__] = ACTIONS(2815), + [anon_sym___forceinline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym___thread] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym___restrict__] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym__Noreturn] = ACTIONS(2815), + [anon_sym_noreturn] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_goto] = ACTIONS(2815), + [anon_sym___try] = ACTIONS(2815), + [anon_sym___leave] = ACTIONS(2815), + [anon_sym_not] = ACTIONS(2815), + [anon_sym_compl] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_sizeof] = ACTIONS(2815), + [anon_sym___alignof__] = ACTIONS(2815), + [anon_sym___alignof] = ACTIONS(2815), + [anon_sym__alignof] = ACTIONS(2815), + [anon_sym_alignof] = ACTIONS(2815), + [anon_sym__Alignof] = ACTIONS(2815), + [anon_sym_offsetof] = ACTIONS(2815), + [anon_sym__Generic] = ACTIONS(2815), + [anon_sym_asm] = ACTIONS(2815), + [anon_sym___asm__] = ACTIONS(2815), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2817), + [anon_sym_u_SQUOTE] = ACTIONS(2817), + [anon_sym_U_SQUOTE] = ACTIONS(2817), + [anon_sym_u8_SQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_L_DQUOTE] = ACTIONS(2817), + [anon_sym_u_DQUOTE] = ACTIONS(2817), + [anon_sym_U_DQUOTE] = ACTIONS(2817), + [anon_sym_u8_DQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [anon_sym_NULL] = ACTIONS(2815), + [anon_sym_nullptr] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_alignas] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_co_return] = ACTIONS(2815), + [anon_sym_co_yield] = ACTIONS(2815), + [anon_sym_catch] = ACTIONS(4036), + [anon_sym_R_DQUOTE] = ACTIONS(2817), + [anon_sym_LR_DQUOTE] = ACTIONS(2817), + [anon_sym_uR_DQUOTE] = ACTIONS(2817), + [anon_sym_UR_DQUOTE] = ACTIONS(2817), + [anon_sym_u8R_DQUOTE] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_requires] = ACTIONS(2815), + [sym_this] = ACTIONS(2815), + }, + [1077] = { + [sym_catch_clause] = STATE(1076), + [aux_sym_constructor_try_statement_repeat1] = STATE(1076), + [sym_identifier] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym___extension__] = ACTIONS(2822), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), + [anon_sym___declspec] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym___inline] = ACTIONS(2822), + [anon_sym___inline__] = ACTIONS(2822), + [anon_sym___forceinline] = ACTIONS(2822), + [anon_sym_thread_local] = ACTIONS(2822), + [anon_sym___thread] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_constexpr] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym___restrict__] = ACTIONS(2822), + [anon_sym__Atomic] = ACTIONS(2822), + [anon_sym__Noreturn] = ACTIONS(2822), + [anon_sym_noreturn] = ACTIONS(2822), + [anon_sym_mutable] = ACTIONS(2822), + [anon_sym_constinit] = ACTIONS(2822), + [anon_sym_consteval] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_else] = ACTIONS(2822), + [anon_sym_switch] = ACTIONS(2822), + [anon_sym_while] = ACTIONS(2822), + [anon_sym_do] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_goto] = ACTIONS(2822), + [anon_sym___try] = ACTIONS(2822), + [anon_sym___leave] = ACTIONS(2822), + [anon_sym_not] = ACTIONS(2822), + [anon_sym_compl] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_sizeof] = ACTIONS(2822), + [anon_sym___alignof__] = ACTIONS(2822), + [anon_sym___alignof] = ACTIONS(2822), + [anon_sym__alignof] = ACTIONS(2822), + [anon_sym_alignof] = ACTIONS(2822), + [anon_sym__Alignof] = ACTIONS(2822), + [anon_sym_offsetof] = ACTIONS(2822), + [anon_sym__Generic] = ACTIONS(2822), + [anon_sym_asm] = ACTIONS(2822), + [anon_sym___asm__] = ACTIONS(2822), + [sym_number_literal] = ACTIONS(2824), + [anon_sym_L_SQUOTE] = ACTIONS(2824), + [anon_sym_u_SQUOTE] = ACTIONS(2824), + [anon_sym_U_SQUOTE] = ACTIONS(2824), + [anon_sym_u8_SQUOTE] = ACTIONS(2824), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_L_DQUOTE] = ACTIONS(2824), + [anon_sym_u_DQUOTE] = ACTIONS(2824), + [anon_sym_U_DQUOTE] = ACTIONS(2824), + [anon_sym_u8_DQUOTE] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2824), + [sym_true] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [anon_sym_NULL] = ACTIONS(2822), + [anon_sym_nullptr] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2822), + [anon_sym_decltype] = ACTIONS(2822), + [anon_sym_virtual] = ACTIONS(2822), + [anon_sym_alignas] = ACTIONS(2822), + [anon_sym_typename] = ACTIONS(2822), + [anon_sym_template] = ACTIONS(2822), + [anon_sym_try] = ACTIONS(2822), + [anon_sym_delete] = ACTIONS(2822), + [anon_sym_throw] = ACTIONS(2822), + [anon_sym_co_return] = ACTIONS(2822), + [anon_sym_co_yield] = ACTIONS(2822), + [anon_sym_catch] = ACTIONS(4039), + [anon_sym_R_DQUOTE] = ACTIONS(2824), + [anon_sym_LR_DQUOTE] = ACTIONS(2824), + [anon_sym_uR_DQUOTE] = ACTIONS(2824), + [anon_sym_UR_DQUOTE] = ACTIONS(2824), + [anon_sym_u8R_DQUOTE] = ACTIONS(2824), + [anon_sym_co_await] = ACTIONS(2822), + [anon_sym_new] = ACTIONS(2822), + [anon_sym_requires] = ACTIONS(2822), + [sym_this] = ACTIONS(2822), + }, + [1078] = { + [sym_type_qualifier] = STATE(1080), + [sym__expression] = STATE(5156), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4041), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4045), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), [anon_sym_alignof] = ACTIONS(99), [anon_sym__Alignof] = ACTIONS(99), [anon_sym_offsetof] = ACTIONS(101), @@ -237989,93 +236506,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1095] = { - [sym_type_qualifier] = STATE(2124), - [sym__expression] = STATE(5239), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4107), + [1079] = { + [sym_type_qualifier] = STATE(1100), + [sym__expression] = STATE(5137), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(1100), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4047), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4109), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4049), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -238101,93 +236618,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1096] = { - [sym_type_qualifier] = STATE(2124), - [sym__expression] = STATE(5232), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4111), + [1080] = { + [sym_type_qualifier] = STATE(2091), + [sym__expression] = STATE(5118), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4051), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4113), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4053), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -238213,93 +236730,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1097] = { - [sym_type_qualifier] = STATE(1088), - [sym__expression] = STATE(5185), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(1088), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4115), + [1081] = { + [sym_type_qualifier] = STATE(2091), + [sym__expression] = STATE(5124), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4055), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4117), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4057), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -238325,93 +236842,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1098] = { + [1082] = { + [sym_type_qualifier] = STATE(2091), + [sym__expression] = STATE(5148), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4059), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4061), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [1083] = { [sym_type_qualifier] = STATE(1089), - [sym__expression] = STATE(5158), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), + [sym__expression] = STATE(5140), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), [aux_sym__type_definition_type_repeat1] = STATE(1089), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4119), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4063), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4121), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4065), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -238437,93 +237066,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1099] = { + [1084] = { [sym_type_qualifier] = STATE(1081), - [sym__expression] = STATE(5088), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), + [sym__expression] = STATE(5181), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), [aux_sym__type_definition_type_repeat1] = STATE(1081), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4123), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4067), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4125), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4069), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -238549,93 +237178,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1100] = { - [sym_type_qualifier] = STATE(2124), - [sym__expression] = STATE(5114), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4127), + [1085] = { + [sym_type_qualifier] = STATE(1090), + [sym__expression] = STATE(5201), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4071), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4129), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4073), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -238661,93 +237290,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1101] = { - [sym_type_qualifier] = STATE(1096), - [sym__expression] = STATE(5219), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [aux_sym__type_definition_type_repeat1] = STATE(1096), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4131), + [1086] = { + [sym_type_qualifier] = STATE(2091), + [sym__expression] = STATE(5184), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4075), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4045), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4133), - [anon_sym_const] = ACTIONS(4045), - [anon_sym_constexpr] = ACTIONS(4045), - [anon_sym_volatile] = ACTIONS(4045), - [anon_sym_restrict] = ACTIONS(4045), - [anon_sym___restrict__] = ACTIONS(4045), - [anon_sym__Atomic] = ACTIONS(4045), - [anon_sym__Noreturn] = ACTIONS(4045), - [anon_sym_noreturn] = ACTIONS(4045), - [anon_sym_mutable] = ACTIONS(4045), - [anon_sym_constinit] = ACTIONS(4045), - [anon_sym_consteval] = ACTIONS(4045), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4077), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -238773,1787 +237402,2143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1102] = { - [sym_identifier] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_switch] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym___try] = ACTIONS(2144), - [anon_sym___leave] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2144), - [anon_sym_compl] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2144), - [anon_sym___alignof__] = ACTIONS(2144), - [anon_sym___alignof] = ACTIONS(2144), - [anon_sym__alignof] = ACTIONS(2144), - [anon_sym_alignof] = ACTIONS(2144), - [anon_sym__Alignof] = ACTIONS(2144), - [anon_sym_offsetof] = ACTIONS(2144), - [anon_sym__Generic] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym___asm__] = ACTIONS(2144), - [sym_number_literal] = ACTIONS(2142), - [anon_sym_L_SQUOTE] = ACTIONS(2142), - [anon_sym_u_SQUOTE] = ACTIONS(2142), - [anon_sym_U_SQUOTE] = ACTIONS(2142), - [anon_sym_u8_SQUOTE] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2142), - [anon_sym_L_DQUOTE] = ACTIONS(2142), - [anon_sym_u_DQUOTE] = ACTIONS(2142), - [anon_sym_U_DQUOTE] = ACTIONS(2142), - [anon_sym_u8_DQUOTE] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [anon_sym_NULL] = ACTIONS(2144), - [anon_sym_nullptr] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_delete] = ACTIONS(2144), - [anon_sym_throw] = ACTIONS(2144), - [anon_sym_co_return] = ACTIONS(2144), - [anon_sym_co_yield] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_R_DQUOTE] = ACTIONS(2142), - [anon_sym_LR_DQUOTE] = ACTIONS(2142), - [anon_sym_uR_DQUOTE] = ACTIONS(2142), - [anon_sym_UR_DQUOTE] = ACTIONS(2142), - [anon_sym_u8R_DQUOTE] = ACTIONS(2142), - [anon_sym_co_await] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2144), - [anon_sym_requires] = ACTIONS(2144), - [sym_this] = ACTIONS(2144), + [1087] = { + [sym_type_qualifier] = STATE(1082), + [sym__expression] = STATE(5159), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4079), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4081), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1103] = { - [sym_identifier] = ACTIONS(2849), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym___extension__] = ACTIONS(2849), - [anon_sym_typedef] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), - [anon_sym___declspec] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_signed] = ACTIONS(2849), - [anon_sym_unsigned] = ACTIONS(2849), - [anon_sym_long] = ACTIONS(2849), - [anon_sym_short] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_register] = ACTIONS(2849), - [anon_sym_inline] = ACTIONS(2849), - [anon_sym___inline] = ACTIONS(2849), - [anon_sym___inline__] = ACTIONS(2849), - [anon_sym___forceinline] = ACTIONS(2849), - [anon_sym_thread_local] = ACTIONS(2849), - [anon_sym___thread] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_constexpr] = ACTIONS(2849), - [anon_sym_volatile] = ACTIONS(2849), - [anon_sym_restrict] = ACTIONS(2849), - [anon_sym___restrict__] = ACTIONS(2849), - [anon_sym__Atomic] = ACTIONS(2849), - [anon_sym__Noreturn] = ACTIONS(2849), - [anon_sym_noreturn] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [sym_primitive_type] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_class] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_else] = ACTIONS(2849), - [anon_sym_switch] = ACTIONS(2849), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_do] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_goto] = ACTIONS(2849), - [anon_sym___try] = ACTIONS(2849), - [anon_sym___leave] = ACTIONS(2849), - [anon_sym_not] = ACTIONS(2849), - [anon_sym_compl] = ACTIONS(2849), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_sizeof] = ACTIONS(2849), - [anon_sym___alignof__] = ACTIONS(2849), - [anon_sym___alignof] = ACTIONS(2849), - [anon_sym__alignof] = ACTIONS(2849), - [anon_sym_alignof] = ACTIONS(2849), - [anon_sym__Alignof] = ACTIONS(2849), - [anon_sym_offsetof] = ACTIONS(2849), - [anon_sym__Generic] = ACTIONS(2849), - [anon_sym_asm] = ACTIONS(2849), - [anon_sym___asm__] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2851), - [anon_sym_u_SQUOTE] = ACTIONS(2851), - [anon_sym_U_SQUOTE] = ACTIONS(2851), - [anon_sym_u8_SQUOTE] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [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(2849), - [sym_false] = ACTIONS(2849), - [anon_sym_NULL] = ACTIONS(2849), - [anon_sym_nullptr] = ACTIONS(2849), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2849), - [anon_sym_decltype] = ACTIONS(2849), - [anon_sym_virtual] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym_typename] = ACTIONS(2849), - [anon_sym_template] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2849), - [anon_sym_delete] = ACTIONS(2849), - [anon_sym_throw] = ACTIONS(2849), - [anon_sym_co_return] = ACTIONS(2849), - [anon_sym_co_yield] = ACTIONS(2849), - [anon_sym_catch] = ACTIONS(2849), - [anon_sym_R_DQUOTE] = ACTIONS(2851), - [anon_sym_LR_DQUOTE] = ACTIONS(2851), - [anon_sym_uR_DQUOTE] = ACTIONS(2851), - [anon_sym_UR_DQUOTE] = ACTIONS(2851), - [anon_sym_u8R_DQUOTE] = ACTIONS(2851), - [anon_sym_co_await] = ACTIONS(2849), - [anon_sym_new] = ACTIONS(2849), - [anon_sym_requires] = ACTIONS(2849), - [sym_this] = ACTIONS(2849), + [1088] = { + [sym_type_qualifier] = STATE(2091), + [sym__expression] = STATE(5211), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4083), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4085), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1104] = { - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(6906), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym__expression] = STATE(3515), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3670), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6169), - [sym_qualified_identifier] = STATE(3664), - [sym_qualified_type_identifier] = STATE(8255), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(3464), - [anon_sym_LPAREN2] = ACTIONS(3466), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(3468), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2076), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1089] = { + [sym_type_qualifier] = STATE(2091), + [sym__expression] = STATE(5115), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4087), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4089), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1105] = { - [sym_else_clause] = STATE(1174), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LPAREN2] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_SEMI] = ACTIONS(2842), - [anon_sym___extension__] = ACTIONS(2840), - [anon_sym_typedef] = ACTIONS(2840), - [anon_sym_extern] = ACTIONS(2840), - [anon_sym___attribute__] = ACTIONS(2840), - [anon_sym_COLON_COLON] = ACTIONS(2842), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2842), - [anon_sym___declspec] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_signed] = ACTIONS(2840), - [anon_sym_unsigned] = ACTIONS(2840), - [anon_sym_long] = ACTIONS(2840), - [anon_sym_short] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_register] = ACTIONS(2840), - [anon_sym_inline] = ACTIONS(2840), - [anon_sym___inline] = ACTIONS(2840), - [anon_sym___inline__] = ACTIONS(2840), - [anon_sym___forceinline] = ACTIONS(2840), - [anon_sym_thread_local] = ACTIONS(2840), - [anon_sym___thread] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_constexpr] = ACTIONS(2840), - [anon_sym_volatile] = ACTIONS(2840), - [anon_sym_restrict] = ACTIONS(2840), - [anon_sym___restrict__] = ACTIONS(2840), - [anon_sym__Atomic] = ACTIONS(2840), - [anon_sym__Noreturn] = ACTIONS(2840), - [anon_sym_noreturn] = ACTIONS(2840), - [anon_sym_mutable] = ACTIONS(2840), - [anon_sym_constinit] = ACTIONS(2840), - [anon_sym_consteval] = ACTIONS(2840), - [sym_primitive_type] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_else] = ACTIONS(4135), - [anon_sym_switch] = ACTIONS(2840), - [anon_sym_while] = ACTIONS(2840), - [anon_sym_do] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym___try] = ACTIONS(2840), - [anon_sym___leave] = ACTIONS(2840), - [anon_sym_not] = ACTIONS(2840), - [anon_sym_compl] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_sizeof] = ACTIONS(2840), - [anon_sym___alignof__] = ACTIONS(2840), - [anon_sym___alignof] = ACTIONS(2840), - [anon_sym__alignof] = ACTIONS(2840), - [anon_sym_alignof] = ACTIONS(2840), - [anon_sym__Alignof] = ACTIONS(2840), - [anon_sym_offsetof] = ACTIONS(2840), - [anon_sym__Generic] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym___asm__] = ACTIONS(2840), - [sym_number_literal] = ACTIONS(2842), - [anon_sym_L_SQUOTE] = ACTIONS(2842), - [anon_sym_u_SQUOTE] = ACTIONS(2842), - [anon_sym_U_SQUOTE] = ACTIONS(2842), - [anon_sym_u8_SQUOTE] = ACTIONS(2842), - [anon_sym_SQUOTE] = ACTIONS(2842), - [anon_sym_L_DQUOTE] = ACTIONS(2842), - [anon_sym_u_DQUOTE] = ACTIONS(2842), - [anon_sym_U_DQUOTE] = ACTIONS(2842), - [anon_sym_u8_DQUOTE] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2842), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [anon_sym_NULL] = ACTIONS(2840), - [anon_sym_nullptr] = ACTIONS(2840), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2840), - [anon_sym_decltype] = ACTIONS(2840), - [anon_sym_virtual] = ACTIONS(2840), - [anon_sym_alignas] = ACTIONS(2840), - [anon_sym_typename] = ACTIONS(2840), - [anon_sym_template] = ACTIONS(2840), - [anon_sym_try] = ACTIONS(2840), - [anon_sym_delete] = ACTIONS(2840), - [anon_sym_throw] = ACTIONS(2840), - [anon_sym_co_return] = ACTIONS(2840), - [anon_sym_co_yield] = ACTIONS(2840), - [anon_sym_R_DQUOTE] = ACTIONS(2842), - [anon_sym_LR_DQUOTE] = ACTIONS(2842), - [anon_sym_uR_DQUOTE] = ACTIONS(2842), - [anon_sym_UR_DQUOTE] = ACTIONS(2842), - [anon_sym_u8R_DQUOTE] = ACTIONS(2842), - [anon_sym_co_await] = ACTIONS(2840), - [anon_sym_new] = ACTIONS(2840), - [anon_sym_requires] = ACTIONS(2840), - [sym_this] = ACTIONS(2840), + [1090] = { + [sym_type_qualifier] = STATE(2091), + [sym__expression] = STATE(5102), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4091), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4093), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1106] = { - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(6906), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3548), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6199), - [sym_qualified_identifier] = STATE(3554), - [sym_qualified_type_identifier] = STATE(8190), - [sym_operator_name] = STATE(6760), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(3450), - [anon_sym_LPAREN2] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(2076), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1091] = { + [sym_type_qualifier] = STATE(1092), + [sym__expression] = STATE(5215), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(1092), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4095), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4097), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1107] = { - [sym_else_clause] = STATE(1125), - [sym_identifier] = ACTIONS(2853), - [anon_sym_LPAREN2] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym___extension__] = ACTIONS(2853), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym___attribute__] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2855), - [anon_sym___declspec] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_signed] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym___inline] = ACTIONS(2853), - [anon_sym___inline__] = ACTIONS(2853), - [anon_sym___forceinline] = ACTIONS(2853), - [anon_sym_thread_local] = ACTIONS(2853), - [anon_sym___thread] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_constexpr] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym___restrict__] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym__Noreturn] = ACTIONS(2853), - [anon_sym_noreturn] = ACTIONS(2853), - [anon_sym_mutable] = ACTIONS(2853), - [anon_sym_constinit] = ACTIONS(2853), - [anon_sym_consteval] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(4135), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym___try] = ACTIONS(2853), - [anon_sym___leave] = ACTIONS(2853), - [anon_sym_not] = ACTIONS(2853), - [anon_sym_compl] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_sizeof] = ACTIONS(2853), - [anon_sym___alignof__] = ACTIONS(2853), - [anon_sym___alignof] = ACTIONS(2853), - [anon_sym__alignof] = ACTIONS(2853), - [anon_sym_alignof] = ACTIONS(2853), - [anon_sym__Alignof] = ACTIONS(2853), - [anon_sym_offsetof] = ACTIONS(2853), - [anon_sym__Generic] = ACTIONS(2853), - [anon_sym_asm] = ACTIONS(2853), - [anon_sym___asm__] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2855), - [anon_sym_L_SQUOTE] = ACTIONS(2855), - [anon_sym_u_SQUOTE] = ACTIONS(2855), - [anon_sym_U_SQUOTE] = ACTIONS(2855), - [anon_sym_u8_SQUOTE] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2853), - [anon_sym_decltype] = ACTIONS(2853), - [anon_sym_virtual] = ACTIONS(2853), - [anon_sym_alignas] = ACTIONS(2853), - [anon_sym_typename] = ACTIONS(2853), - [anon_sym_template] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_co_return] = ACTIONS(2853), - [anon_sym_co_yield] = 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(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_requires] = ACTIONS(2853), - [sym_this] = ACTIONS(2853), + [1092] = { + [sym_type_qualifier] = STATE(2091), + [sym__expression] = STATE(5151), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4099), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4101), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1108] = { - [sym_identifier] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_BANG] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym___extension__] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym___attribute__] = ACTIONS(2148), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2148), - [anon_sym_unsigned] = ACTIONS(2148), - [anon_sym_long] = ACTIONS(2148), - [anon_sym_short] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym___inline] = ACTIONS(2148), - [anon_sym___inline__] = ACTIONS(2148), - [anon_sym___forceinline] = ACTIONS(2148), - [anon_sym_thread_local] = ACTIONS(2148), - [anon_sym___thread] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_constexpr] = ACTIONS(2148), - [anon_sym_volatile] = ACTIONS(2148), - [anon_sym_restrict] = ACTIONS(2148), - [anon_sym___restrict__] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(2148), - [anon_sym__Noreturn] = ACTIONS(2148), - [anon_sym_noreturn] = ACTIONS(2148), - [anon_sym_mutable] = ACTIONS(2148), - [anon_sym_constinit] = ACTIONS(2148), - [anon_sym_consteval] = ACTIONS(2148), - [sym_primitive_type] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_class] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_else] = ACTIONS(2148), - [anon_sym_switch] = ACTIONS(2148), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_do] = ACTIONS(2148), - [anon_sym_for] = ACTIONS(2148), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_goto] = ACTIONS(2148), - [anon_sym___try] = ACTIONS(2148), - [anon_sym___leave] = ACTIONS(2148), - [anon_sym_not] = ACTIONS(2148), - [anon_sym_compl] = ACTIONS(2148), - [anon_sym_DASH_DASH] = ACTIONS(2146), - [anon_sym_PLUS_PLUS] = ACTIONS(2146), - [anon_sym_sizeof] = ACTIONS(2148), - [anon_sym___alignof__] = ACTIONS(2148), - [anon_sym___alignof] = ACTIONS(2148), - [anon_sym__alignof] = ACTIONS(2148), - [anon_sym_alignof] = ACTIONS(2148), - [anon_sym__Alignof] = ACTIONS(2148), - [anon_sym_offsetof] = ACTIONS(2148), - [anon_sym__Generic] = ACTIONS(2148), - [anon_sym_asm] = ACTIONS(2148), - [anon_sym___asm__] = ACTIONS(2148), - [sym_number_literal] = ACTIONS(2146), - [anon_sym_L_SQUOTE] = ACTIONS(2146), - [anon_sym_u_SQUOTE] = ACTIONS(2146), - [anon_sym_U_SQUOTE] = ACTIONS(2146), - [anon_sym_u8_SQUOTE] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2146), - [anon_sym_L_DQUOTE] = ACTIONS(2146), - [anon_sym_u_DQUOTE] = ACTIONS(2146), - [anon_sym_U_DQUOTE] = ACTIONS(2146), - [anon_sym_u8_DQUOTE] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym_true] = ACTIONS(2148), - [sym_false] = ACTIONS(2148), - [anon_sym_NULL] = ACTIONS(2148), - [anon_sym_nullptr] = ACTIONS(2148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2148), - [anon_sym_decltype] = ACTIONS(2148), - [anon_sym_virtual] = ACTIONS(2148), - [anon_sym_alignas] = ACTIONS(2148), - [anon_sym_typename] = ACTIONS(2148), - [anon_sym_template] = ACTIONS(2148), - [anon_sym_try] = ACTIONS(2148), - [anon_sym_delete] = ACTIONS(2148), - [anon_sym_throw] = ACTIONS(2148), - [anon_sym_co_return] = ACTIONS(2148), - [anon_sym_co_yield] = ACTIONS(2148), - [anon_sym_catch] = ACTIONS(2148), - [anon_sym_R_DQUOTE] = ACTIONS(2146), - [anon_sym_LR_DQUOTE] = ACTIONS(2146), - [anon_sym_uR_DQUOTE] = ACTIONS(2146), - [anon_sym_UR_DQUOTE] = ACTIONS(2146), - [anon_sym_u8R_DQUOTE] = ACTIONS(2146), - [anon_sym_co_await] = ACTIONS(2148), - [anon_sym_new] = ACTIONS(2148), - [anon_sym_requires] = ACTIONS(2148), - [sym_this] = ACTIONS(2148), + [1093] = { + [sym_type_qualifier] = STATE(1097), + [sym__expression] = STATE(5131), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(1097), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4105), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1109] = { - [sym_identifier] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym___try] = ACTIONS(2905), - [anon_sym___leave] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [sym_number_literal] = ACTIONS(2907), - [anon_sym_L_SQUOTE] = ACTIONS(2907), - [anon_sym_u_SQUOTE] = ACTIONS(2907), - [anon_sym_U_SQUOTE] = ACTIONS(2907), - [anon_sym_u8_SQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_L_DQUOTE] = ACTIONS(2907), - [anon_sym_u_DQUOTE] = ACTIONS(2907), - [anon_sym_U_DQUOTE] = ACTIONS(2907), - [anon_sym_u8_DQUOTE] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), + [1094] = { + [sym_type_qualifier] = STATE(1088), + [sym__expression] = STATE(5217), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4109), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [anon_sym_R_DQUOTE] = ACTIONS(2907), - [anon_sym_LR_DQUOTE] = ACTIONS(2907), - [anon_sym_uR_DQUOTE] = ACTIONS(2907), - [anon_sym_UR_DQUOTE] = ACTIONS(2907), - [anon_sym_u8R_DQUOTE] = ACTIONS(2907), - [anon_sym_co_await] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [sym_this] = ACTIONS(2905), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1110] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [1095] = { + [sym_type_qualifier] = STATE(1088), + [sym__expression] = STATE(5217), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(4111), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4109), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1111] = { - [sym_identifier] = ACTIONS(2909), - [anon_sym_LPAREN2] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym___extension__] = ACTIONS(2909), - [anon_sym_typedef] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym___attribute__] = ACTIONS(2909), - [anon_sym_COLON_COLON] = ACTIONS(2911), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2911), - [anon_sym___declspec] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_signed] = ACTIONS(2909), - [anon_sym_unsigned] = ACTIONS(2909), - [anon_sym_long] = ACTIONS(2909), - [anon_sym_short] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_register] = ACTIONS(2909), - [anon_sym_inline] = ACTIONS(2909), - [anon_sym___inline] = ACTIONS(2909), - [anon_sym___inline__] = ACTIONS(2909), - [anon_sym___forceinline] = ACTIONS(2909), - [anon_sym_thread_local] = ACTIONS(2909), - [anon_sym___thread] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_constexpr] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_restrict] = ACTIONS(2909), - [anon_sym___restrict__] = ACTIONS(2909), - [anon_sym__Atomic] = ACTIONS(2909), - [anon_sym__Noreturn] = ACTIONS(2909), - [anon_sym_noreturn] = ACTIONS(2909), - [anon_sym_mutable] = ACTIONS(2909), - [anon_sym_constinit] = ACTIONS(2909), - [anon_sym_consteval] = ACTIONS(2909), - [sym_primitive_type] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_class] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym___try] = ACTIONS(2909), - [anon_sym___leave] = ACTIONS(2909), - [anon_sym_not] = ACTIONS(2909), - [anon_sym_compl] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_sizeof] = ACTIONS(2909), - [anon_sym___alignof__] = ACTIONS(2909), - [anon_sym___alignof] = ACTIONS(2909), - [anon_sym__alignof] = ACTIONS(2909), - [anon_sym_alignof] = ACTIONS(2909), - [anon_sym__Alignof] = ACTIONS(2909), - [anon_sym_offsetof] = ACTIONS(2909), - [anon_sym__Generic] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym___asm__] = ACTIONS(2909), - [sym_number_literal] = ACTIONS(2911), - [anon_sym_L_SQUOTE] = ACTIONS(2911), - [anon_sym_u_SQUOTE] = ACTIONS(2911), - [anon_sym_U_SQUOTE] = ACTIONS(2911), - [anon_sym_u8_SQUOTE] = ACTIONS(2911), - [anon_sym_SQUOTE] = ACTIONS(2911), - [anon_sym_L_DQUOTE] = ACTIONS(2911), - [anon_sym_u_DQUOTE] = ACTIONS(2911), - [anon_sym_U_DQUOTE] = ACTIONS(2911), - [anon_sym_u8_DQUOTE] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [anon_sym_NULL] = ACTIONS(2909), - [anon_sym_nullptr] = ACTIONS(2909), + [1096] = { + [sym_type_qualifier] = STATE(1086), + [sym__expression] = STATE(5259), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2909), - [anon_sym_decltype] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_alignas] = ACTIONS(2909), - [anon_sym_typename] = ACTIONS(2909), - [anon_sym_template] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_delete] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_co_return] = ACTIONS(2909), - [anon_sym_co_yield] = ACTIONS(2909), - [anon_sym_R_DQUOTE] = ACTIONS(2911), - [anon_sym_LR_DQUOTE] = ACTIONS(2911), - [anon_sym_uR_DQUOTE] = ACTIONS(2911), - [anon_sym_UR_DQUOTE] = ACTIONS(2911), - [anon_sym_u8R_DQUOTE] = ACTIONS(2911), - [anon_sym_co_await] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2909), - [sym_this] = ACTIONS(2909), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1112] = { - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN2] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym___extension__] = ACTIONS(2961), - [anon_sym_typedef] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym___attribute__] = ACTIONS(2961), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), - [anon_sym___declspec] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_signed] = ACTIONS(2961), - [anon_sym_unsigned] = ACTIONS(2961), - [anon_sym_long] = ACTIONS(2961), - [anon_sym_short] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_register] = ACTIONS(2961), - [anon_sym_inline] = ACTIONS(2961), - [anon_sym___inline] = ACTIONS(2961), - [anon_sym___inline__] = ACTIONS(2961), - [anon_sym___forceinline] = ACTIONS(2961), - [anon_sym_thread_local] = ACTIONS(2961), - [anon_sym___thread] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_constexpr] = ACTIONS(2961), - [anon_sym_volatile] = ACTIONS(2961), - [anon_sym_restrict] = ACTIONS(2961), - [anon_sym___restrict__] = ACTIONS(2961), - [anon_sym__Atomic] = ACTIONS(2961), - [anon_sym__Noreturn] = ACTIONS(2961), - [anon_sym_noreturn] = ACTIONS(2961), - [anon_sym_mutable] = ACTIONS(2961), - [anon_sym_constinit] = ACTIONS(2961), - [anon_sym_consteval] = ACTIONS(2961), - [sym_primitive_type] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2961), - [anon_sym_switch] = ACTIONS(2961), - [anon_sym_while] = ACTIONS(2961), - [anon_sym_do] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym___try] = ACTIONS(2961), - [anon_sym___leave] = ACTIONS(2961), - [anon_sym_not] = ACTIONS(2961), - [anon_sym_compl] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_sizeof] = ACTIONS(2961), - [anon_sym___alignof__] = ACTIONS(2961), - [anon_sym___alignof] = ACTIONS(2961), - [anon_sym__alignof] = ACTIONS(2961), - [anon_sym_alignof] = ACTIONS(2961), - [anon_sym__Alignof] = ACTIONS(2961), - [anon_sym_offsetof] = ACTIONS(2961), - [anon_sym__Generic] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym___asm__] = ACTIONS(2961), - [sym_number_literal] = ACTIONS(2963), - [anon_sym_L_SQUOTE] = ACTIONS(2963), - [anon_sym_u_SQUOTE] = ACTIONS(2963), - [anon_sym_U_SQUOTE] = ACTIONS(2963), - [anon_sym_u8_SQUOTE] = ACTIONS(2963), - [anon_sym_SQUOTE] = ACTIONS(2963), - [anon_sym_L_DQUOTE] = ACTIONS(2963), - [anon_sym_u_DQUOTE] = ACTIONS(2963), - [anon_sym_U_DQUOTE] = ACTIONS(2963), - [anon_sym_u8_DQUOTE] = ACTIONS(2963), - [anon_sym_DQUOTE] = ACTIONS(2963), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [anon_sym_NULL] = ACTIONS(2961), - [anon_sym_nullptr] = ACTIONS(2961), + [1097] = { + [sym_type_qualifier] = STATE(2091), + [sym__expression] = STATE(5106), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4119), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2961), - [anon_sym_decltype] = ACTIONS(2961), - [anon_sym_virtual] = ACTIONS(2961), - [anon_sym_alignas] = ACTIONS(2961), - [anon_sym_typename] = ACTIONS(2961), - [anon_sym_template] = ACTIONS(2961), - [anon_sym_try] = ACTIONS(2961), - [anon_sym_delete] = ACTIONS(2961), - [anon_sym_throw] = ACTIONS(2961), - [anon_sym_co_return] = ACTIONS(2961), - [anon_sym_co_yield] = ACTIONS(2961), - [anon_sym_R_DQUOTE] = ACTIONS(2963), - [anon_sym_LR_DQUOTE] = ACTIONS(2963), - [anon_sym_uR_DQUOTE] = ACTIONS(2963), - [anon_sym_UR_DQUOTE] = ACTIONS(2963), - [anon_sym_u8R_DQUOTE] = ACTIONS(2963), - [anon_sym_co_await] = ACTIONS(2961), - [anon_sym_new] = ACTIONS(2961), - [anon_sym_requires] = ACTIONS(2961), - [sym_this] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1113] = { - [sym_identifier] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym___extension__] = ACTIONS(2985), - [anon_sym_typedef] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym___attribute__] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), - [anon_sym___declspec] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_signed] = ACTIONS(2985), - [anon_sym_unsigned] = ACTIONS(2985), - [anon_sym_long] = ACTIONS(2985), - [anon_sym_short] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_register] = ACTIONS(2985), - [anon_sym_inline] = ACTIONS(2985), - [anon_sym___inline] = ACTIONS(2985), - [anon_sym___inline__] = ACTIONS(2985), - [anon_sym___forceinline] = ACTIONS(2985), - [anon_sym_thread_local] = ACTIONS(2985), - [anon_sym___thread] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_constexpr] = ACTIONS(2985), - [anon_sym_volatile] = ACTIONS(2985), - [anon_sym_restrict] = ACTIONS(2985), - [anon_sym___restrict__] = ACTIONS(2985), - [anon_sym__Atomic] = ACTIONS(2985), - [anon_sym__Noreturn] = ACTIONS(2985), - [anon_sym_noreturn] = ACTIONS(2985), - [anon_sym_mutable] = ACTIONS(2985), - [anon_sym_constinit] = ACTIONS(2985), - [anon_sym_consteval] = ACTIONS(2985), - [sym_primitive_type] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_switch] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym___try] = ACTIONS(2985), - [anon_sym___leave] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2985), - [anon_sym_compl] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2985), - [anon_sym___alignof__] = ACTIONS(2985), - [anon_sym___alignof] = ACTIONS(2985), - [anon_sym__alignof] = ACTIONS(2985), - [anon_sym_alignof] = ACTIONS(2985), - [anon_sym__Alignof] = ACTIONS(2985), - [anon_sym_offsetof] = ACTIONS(2985), - [anon_sym__Generic] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym___asm__] = ACTIONS(2985), - [sym_number_literal] = ACTIONS(2987), - [anon_sym_L_SQUOTE] = ACTIONS(2987), - [anon_sym_u_SQUOTE] = ACTIONS(2987), - [anon_sym_U_SQUOTE] = ACTIONS(2987), - [anon_sym_u8_SQUOTE] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_L_DQUOTE] = ACTIONS(2987), - [anon_sym_u_DQUOTE] = ACTIONS(2987), - [anon_sym_U_DQUOTE] = ACTIONS(2987), - [anon_sym_u8_DQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [anon_sym_NULL] = ACTIONS(2985), - [anon_sym_nullptr] = ACTIONS(2985), + [1098] = { + [sym_type_qualifier] = STATE(1099), + [sym__expression] = STATE(5122), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(1099), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4121), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4123), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2985), - [anon_sym_decltype] = ACTIONS(2985), - [anon_sym_virtual] = ACTIONS(2985), - [anon_sym_alignas] = ACTIONS(2985), - [anon_sym_typename] = ACTIONS(2985), - [anon_sym_template] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [anon_sym_delete] = ACTIONS(2985), - [anon_sym_throw] = ACTIONS(2985), - [anon_sym_co_return] = ACTIONS(2985), - [anon_sym_co_yield] = ACTIONS(2985), - [anon_sym_R_DQUOTE] = ACTIONS(2987), - [anon_sym_LR_DQUOTE] = ACTIONS(2987), - [anon_sym_uR_DQUOTE] = ACTIONS(2987), - [anon_sym_UR_DQUOTE] = ACTIONS(2987), - [anon_sym_u8R_DQUOTE] = ACTIONS(2987), - [anon_sym_co_await] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_requires] = ACTIONS(2985), - [sym_this] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1114] = { - [sym_identifier] = ACTIONS(2953), - [anon_sym_LPAREN2] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym___extension__] = ACTIONS(2953), - [anon_sym_typedef] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym___attribute__] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), - [anon_sym___declspec] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_signed] = ACTIONS(2953), - [anon_sym_unsigned] = ACTIONS(2953), - [anon_sym_long] = ACTIONS(2953), - [anon_sym_short] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_register] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym___inline] = ACTIONS(2953), - [anon_sym___inline__] = ACTIONS(2953), - [anon_sym___forceinline] = ACTIONS(2953), - [anon_sym_thread_local] = ACTIONS(2953), - [anon_sym___thread] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_constexpr] = ACTIONS(2953), - [anon_sym_volatile] = ACTIONS(2953), - [anon_sym_restrict] = ACTIONS(2953), - [anon_sym___restrict__] = ACTIONS(2953), - [anon_sym__Atomic] = ACTIONS(2953), - [anon_sym__Noreturn] = ACTIONS(2953), - [anon_sym_noreturn] = ACTIONS(2953), - [anon_sym_mutable] = ACTIONS(2953), - [anon_sym_constinit] = ACTIONS(2953), - [anon_sym_consteval] = ACTIONS(2953), - [sym_primitive_type] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2953), - [anon_sym_switch] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_do] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_goto] = ACTIONS(2953), - [anon_sym___try] = ACTIONS(2953), - [anon_sym___leave] = ACTIONS(2953), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_compl] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym___alignof__] = ACTIONS(2953), - [anon_sym___alignof] = ACTIONS(2953), - [anon_sym__alignof] = ACTIONS(2953), - [anon_sym_alignof] = ACTIONS(2953), - [anon_sym__Alignof] = ACTIONS(2953), - [anon_sym_offsetof] = ACTIONS(2953), - [anon_sym__Generic] = ACTIONS(2953), - [anon_sym_asm] = ACTIONS(2953), - [anon_sym___asm__] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2955), - [anon_sym_L_SQUOTE] = ACTIONS(2955), - [anon_sym_u_SQUOTE] = ACTIONS(2955), - [anon_sym_U_SQUOTE] = ACTIONS(2955), - [anon_sym_u8_SQUOTE] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_L_DQUOTE] = ACTIONS(2955), - [anon_sym_u_DQUOTE] = ACTIONS(2955), - [anon_sym_U_DQUOTE] = ACTIONS(2955), - [anon_sym_u8_DQUOTE] = ACTIONS(2955), - [anon_sym_DQUOTE] = ACTIONS(2955), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [anon_sym_NULL] = ACTIONS(2953), - [anon_sym_nullptr] = ACTIONS(2953), + [1099] = { + [sym_type_qualifier] = STATE(2091), + [sym__expression] = STATE(5141), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4125), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4127), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2953), - [anon_sym_decltype] = ACTIONS(2953), - [anon_sym_virtual] = ACTIONS(2953), - [anon_sym_alignas] = ACTIONS(2953), - [anon_sym_typename] = ACTIONS(2953), - [anon_sym_template] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_delete] = ACTIONS(2953), - [anon_sym_throw] = ACTIONS(2953), - [anon_sym_co_return] = ACTIONS(2953), - [anon_sym_co_yield] = ACTIONS(2953), - [anon_sym_R_DQUOTE] = ACTIONS(2955), - [anon_sym_LR_DQUOTE] = ACTIONS(2955), - [anon_sym_uR_DQUOTE] = ACTIONS(2955), - [anon_sym_UR_DQUOTE] = ACTIONS(2955), - [anon_sym_u8R_DQUOTE] = ACTIONS(2955), - [anon_sym_co_await] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_requires] = ACTIONS(2953), - [sym_this] = ACTIONS(2953), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1115] = { - [sym_identifier] = ACTIONS(2977), - [anon_sym_LPAREN2] = ACTIONS(2979), - [anon_sym_BANG] = ACTIONS(2979), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym___extension__] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym___attribute__] = ACTIONS(2977), - [anon_sym_COLON_COLON] = ACTIONS(2979), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), - [anon_sym___declspec] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_signed] = ACTIONS(2977), - [anon_sym_unsigned] = ACTIONS(2977), - [anon_sym_long] = ACTIONS(2977), - [anon_sym_short] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_register] = ACTIONS(2977), - [anon_sym_inline] = ACTIONS(2977), - [anon_sym___inline] = ACTIONS(2977), - [anon_sym___inline__] = ACTIONS(2977), - [anon_sym___forceinline] = ACTIONS(2977), - [anon_sym_thread_local] = ACTIONS(2977), - [anon_sym___thread] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_constexpr] = ACTIONS(2977), - [anon_sym_volatile] = ACTIONS(2977), - [anon_sym_restrict] = ACTIONS(2977), - [anon_sym___restrict__] = ACTIONS(2977), - [anon_sym__Atomic] = ACTIONS(2977), - [anon_sym__Noreturn] = ACTIONS(2977), - [anon_sym_noreturn] = ACTIONS(2977), - [anon_sym_mutable] = ACTIONS(2977), - [anon_sym_constinit] = ACTIONS(2977), - [anon_sym_consteval] = ACTIONS(2977), - [sym_primitive_type] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2977), - [anon_sym_switch] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym___try] = ACTIONS(2977), - [anon_sym___leave] = ACTIONS(2977), - [anon_sym_not] = ACTIONS(2977), - [anon_sym_compl] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_sizeof] = ACTIONS(2977), - [anon_sym___alignof__] = ACTIONS(2977), - [anon_sym___alignof] = ACTIONS(2977), - [anon_sym__alignof] = ACTIONS(2977), - [anon_sym_alignof] = ACTIONS(2977), - [anon_sym__Alignof] = ACTIONS(2977), - [anon_sym_offsetof] = ACTIONS(2977), - [anon_sym__Generic] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), - [anon_sym___asm__] = ACTIONS(2977), - [sym_number_literal] = ACTIONS(2979), - [anon_sym_L_SQUOTE] = ACTIONS(2979), - [anon_sym_u_SQUOTE] = ACTIONS(2979), - [anon_sym_U_SQUOTE] = ACTIONS(2979), - [anon_sym_u8_SQUOTE] = ACTIONS(2979), - [anon_sym_SQUOTE] = ACTIONS(2979), - [anon_sym_L_DQUOTE] = ACTIONS(2979), - [anon_sym_u_DQUOTE] = ACTIONS(2979), - [anon_sym_U_DQUOTE] = ACTIONS(2979), - [anon_sym_u8_DQUOTE] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [anon_sym_NULL] = ACTIONS(2977), - [anon_sym_nullptr] = ACTIONS(2977), + [1100] = { + [sym_type_qualifier] = STATE(2091), + [sym__expression] = STATE(5099), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4043), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_constexpr] = ACTIONS(4043), + [anon_sym_volatile] = ACTIONS(4043), + [anon_sym_restrict] = ACTIONS(4043), + [anon_sym___restrict__] = ACTIONS(4043), + [anon_sym__Atomic] = ACTIONS(4043), + [anon_sym__Noreturn] = ACTIONS(4043), + [anon_sym_noreturn] = ACTIONS(4043), + [anon_sym_mutable] = ACTIONS(4043), + [anon_sym_constinit] = ACTIONS(4043), + [anon_sym_consteval] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2977), - [anon_sym_decltype] = ACTIONS(2977), - [anon_sym_virtual] = ACTIONS(2977), - [anon_sym_alignas] = ACTIONS(2977), - [anon_sym_typename] = ACTIONS(2977), - [anon_sym_template] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_delete] = ACTIONS(2977), - [anon_sym_throw] = ACTIONS(2977), - [anon_sym_co_return] = ACTIONS(2977), - [anon_sym_co_yield] = ACTIONS(2977), - [anon_sym_R_DQUOTE] = ACTIONS(2979), - [anon_sym_LR_DQUOTE] = ACTIONS(2979), - [anon_sym_uR_DQUOTE] = ACTIONS(2979), - [anon_sym_UR_DQUOTE] = ACTIONS(2979), - [anon_sym_u8R_DQUOTE] = ACTIONS(2979), - [anon_sym_co_await] = ACTIONS(2977), - [anon_sym_new] = ACTIONS(2977), - [anon_sym_requires] = ACTIONS(2977), - [sym_this] = ACTIONS(2977), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1116] = { - [sym_identifier] = ACTIONS(2881), - [anon_sym_LPAREN2] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym___extension__] = ACTIONS(2881), - [anon_sym_typedef] = ACTIONS(2881), - [anon_sym_extern] = ACTIONS(2881), - [anon_sym___attribute__] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2883), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2883), - [anon_sym___declspec] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_signed] = ACTIONS(2881), - [anon_sym_unsigned] = ACTIONS(2881), - [anon_sym_long] = ACTIONS(2881), - [anon_sym_short] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_register] = ACTIONS(2881), - [anon_sym_inline] = ACTIONS(2881), - [anon_sym___inline] = ACTIONS(2881), - [anon_sym___inline__] = ACTIONS(2881), - [anon_sym___forceinline] = ACTIONS(2881), - [anon_sym_thread_local] = ACTIONS(2881), - [anon_sym___thread] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_constexpr] = ACTIONS(2881), - [anon_sym_volatile] = ACTIONS(2881), - [anon_sym_restrict] = ACTIONS(2881), - [anon_sym___restrict__] = ACTIONS(2881), - [anon_sym__Atomic] = ACTIONS(2881), - [anon_sym__Noreturn] = ACTIONS(2881), - [anon_sym_noreturn] = ACTIONS(2881), - [anon_sym_mutable] = ACTIONS(2881), - [anon_sym_constinit] = ACTIONS(2881), - [anon_sym_consteval] = ACTIONS(2881), - [sym_primitive_type] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_union] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_goto] = ACTIONS(2881), - [anon_sym___try] = ACTIONS(2881), - [anon_sym___leave] = ACTIONS(2881), - [anon_sym_not] = ACTIONS(2881), - [anon_sym_compl] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_sizeof] = ACTIONS(2881), - [anon_sym___alignof__] = ACTIONS(2881), - [anon_sym___alignof] = ACTIONS(2881), - [anon_sym__alignof] = ACTIONS(2881), - [anon_sym_alignof] = ACTIONS(2881), - [anon_sym__Alignof] = ACTIONS(2881), - [anon_sym_offsetof] = ACTIONS(2881), - [anon_sym__Generic] = ACTIONS(2881), - [anon_sym_asm] = ACTIONS(2881), - [anon_sym___asm__] = ACTIONS(2881), - [sym_number_literal] = ACTIONS(2883), - [anon_sym_L_SQUOTE] = ACTIONS(2883), - [anon_sym_u_SQUOTE] = ACTIONS(2883), - [anon_sym_U_SQUOTE] = ACTIONS(2883), - [anon_sym_u8_SQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_L_DQUOTE] = ACTIONS(2883), - [anon_sym_u_DQUOTE] = ACTIONS(2883), - [anon_sym_U_DQUOTE] = ACTIONS(2883), - [anon_sym_u8_DQUOTE] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [anon_sym_NULL] = ACTIONS(2881), - [anon_sym_nullptr] = ACTIONS(2881), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2881), - [anon_sym_decltype] = ACTIONS(2881), - [anon_sym_virtual] = ACTIONS(2881), - [anon_sym_alignas] = ACTIONS(2881), - [anon_sym_typename] = ACTIONS(2881), - [anon_sym_template] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_co_return] = ACTIONS(2881), - [anon_sym_co_yield] = ACTIONS(2881), - [anon_sym_R_DQUOTE] = ACTIONS(2883), - [anon_sym_LR_DQUOTE] = ACTIONS(2883), - [anon_sym_uR_DQUOTE] = ACTIONS(2883), - [anon_sym_UR_DQUOTE] = ACTIONS(2883), - [anon_sym_u8R_DQUOTE] = ACTIONS(2883), - [anon_sym_co_await] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_requires] = ACTIONS(2881), - [sym_this] = ACTIONS(2881), + [1101] = { + [sym_identifier] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_PLUS] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_switch] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym___try] = ACTIONS(2186), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2186), + [anon_sym_compl] = ACTIONS(2186), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2184), + [anon_sym_sizeof] = ACTIONS(2186), + [anon_sym___alignof__] = ACTIONS(2186), + [anon_sym___alignof] = ACTIONS(2186), + [anon_sym__alignof] = ACTIONS(2186), + [anon_sym_alignof] = ACTIONS(2186), + [anon_sym__Alignof] = ACTIONS(2186), + [anon_sym_offsetof] = ACTIONS(2186), + [anon_sym__Generic] = ACTIONS(2186), + [anon_sym_asm] = ACTIONS(2186), + [anon_sym___asm__] = ACTIONS(2186), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_L_SQUOTE] = ACTIONS(2184), + [anon_sym_u_SQUOTE] = ACTIONS(2184), + [anon_sym_U_SQUOTE] = ACTIONS(2184), + [anon_sym_u8_SQUOTE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_L_DQUOTE] = ACTIONS(2184), + [anon_sym_u_DQUOTE] = ACTIONS(2184), + [anon_sym_U_DQUOTE] = ACTIONS(2184), + [anon_sym_u8_DQUOTE] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [anon_sym_NULL] = ACTIONS(2186), + [anon_sym_nullptr] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_delete] = ACTIONS(2186), + [anon_sym_throw] = ACTIONS(2186), + [anon_sym_co_return] = ACTIONS(2186), + [anon_sym_co_yield] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + [anon_sym_R_DQUOTE] = ACTIONS(2184), + [anon_sym_LR_DQUOTE] = ACTIONS(2184), + [anon_sym_uR_DQUOTE] = ACTIONS(2184), + [anon_sym_UR_DQUOTE] = ACTIONS(2184), + [anon_sym_u8R_DQUOTE] = ACTIONS(2184), + [anon_sym_co_await] = ACTIONS(2186), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_requires] = ACTIONS(2186), + [sym_this] = ACTIONS(2186), }, - [1117] = { - [sym_identifier] = 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] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym___extension__] = ACTIONS(4016), - [anon_sym_extern] = ACTIONS(4016), - [anon_sym___attribute__] = ACTIONS(4016), - [anon_sym_COLON_COLON] = ACTIONS(4018), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4018), - [anon_sym___declspec] = 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_mutable] = ACTIONS(4016), - [anon_sym_constinit] = ACTIONS(4016), - [anon_sym_consteval] = 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_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_virtual] = ACTIONS(4016), - [anon_sym_alignas] = ACTIONS(4016), - [anon_sym_typename] = ACTIONS(4016), - [anon_sym_template] = ACTIONS(4016), - [anon_sym_try] = ACTIONS(4016), - [anon_sym_delete] = ACTIONS(4016), - [anon_sym_throw] = 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), - [sym_this] = ACTIONS(4016), + [1102] = { + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(6941), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6752), + [sym_array_declarator] = STATE(6752), + [sym__expression] = STATE(3491), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3653), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6232), + [sym_qualified_identifier] = STATE(3640), + [sym_qualified_type_identifier] = STATE(8066), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(2066), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2082), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1118] = { + [1103] = { + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(6941), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6752), + [sym_array_declarator] = STATE(6752), + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3595), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6184), + [sym_qualified_identifier] = STATE(3592), + [sym_qualified_type_identifier] = STATE(8386), + [sym_operator_name] = STATE(6752), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(3454), + [anon_sym_LPAREN2] = ACTIONS(3456), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2082), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(2122), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1104] = { + [sym_else_clause] = STATE(1162), + [sym_identifier] = ACTIONS(2851), + [anon_sym_LPAREN2] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym___extension__] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2851), + [anon_sym_extern] = ACTIONS(2851), + [anon_sym___attribute__] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2853), + [anon_sym___declspec] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2851), + [anon_sym_unsigned] = ACTIONS(2851), + [anon_sym_long] = ACTIONS(2851), + [anon_sym_short] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2851), + [anon_sym_register] = ACTIONS(2851), + [anon_sym_inline] = ACTIONS(2851), + [anon_sym___inline] = ACTIONS(2851), + [anon_sym___inline__] = ACTIONS(2851), + [anon_sym___forceinline] = ACTIONS(2851), + [anon_sym_thread_local] = ACTIONS(2851), + [anon_sym___thread] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_constexpr] = ACTIONS(2851), + [anon_sym_volatile] = ACTIONS(2851), + [anon_sym_restrict] = ACTIONS(2851), + [anon_sym___restrict__] = ACTIONS(2851), + [anon_sym__Atomic] = ACTIONS(2851), + [anon_sym__Noreturn] = ACTIONS(2851), + [anon_sym_noreturn] = ACTIONS(2851), + [anon_sym_mutable] = ACTIONS(2851), + [anon_sym_constinit] = ACTIONS(2851), + [anon_sym_consteval] = ACTIONS(2851), + [sym_primitive_type] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), + [anon_sym_class] = ACTIONS(2851), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_union] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_else] = ACTIONS(4133), + [anon_sym_switch] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_do] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_goto] = ACTIONS(2851), + [anon_sym___try] = ACTIONS(2851), + [anon_sym___leave] = ACTIONS(2851), + [anon_sym_not] = ACTIONS(2851), + [anon_sym_compl] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_sizeof] = ACTIONS(2851), + [anon_sym___alignof__] = ACTIONS(2851), + [anon_sym___alignof] = ACTIONS(2851), + [anon_sym__alignof] = ACTIONS(2851), + [anon_sym_alignof] = ACTIONS(2851), + [anon_sym__Alignof] = ACTIONS(2851), + [anon_sym_offsetof] = ACTIONS(2851), + [anon_sym__Generic] = ACTIONS(2851), + [anon_sym_asm] = ACTIONS(2851), + [anon_sym___asm__] = ACTIONS(2851), + [sym_number_literal] = ACTIONS(2853), + [anon_sym_L_SQUOTE] = ACTIONS(2853), + [anon_sym_u_SQUOTE] = ACTIONS(2853), + [anon_sym_U_SQUOTE] = ACTIONS(2853), + [anon_sym_u8_SQUOTE] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2853), + [anon_sym_L_DQUOTE] = ACTIONS(2853), + [anon_sym_u_DQUOTE] = ACTIONS(2853), + [anon_sym_U_DQUOTE] = ACTIONS(2853), + [anon_sym_u8_DQUOTE] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2853), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [anon_sym_NULL] = ACTIONS(2851), + [anon_sym_nullptr] = ACTIONS(2851), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2851), + [anon_sym_decltype] = ACTIONS(2851), + [anon_sym_virtual] = ACTIONS(2851), + [anon_sym_alignas] = ACTIONS(2851), + [anon_sym_typename] = ACTIONS(2851), + [anon_sym_template] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [anon_sym_delete] = ACTIONS(2851), + [anon_sym_throw] = ACTIONS(2851), + [anon_sym_co_return] = ACTIONS(2851), + [anon_sym_co_yield] = ACTIONS(2851), + [anon_sym_R_DQUOTE] = ACTIONS(2853), + [anon_sym_LR_DQUOTE] = ACTIONS(2853), + [anon_sym_uR_DQUOTE] = ACTIONS(2853), + [anon_sym_UR_DQUOTE] = ACTIONS(2853), + [anon_sym_u8R_DQUOTE] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(2851), + [anon_sym_requires] = ACTIONS(2851), + [sym_this] = ACTIONS(2851), + }, + [1105] = { + [sym_else_clause] = STATE(1158), + [sym_identifier] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym___extension__] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym___inline] = ACTIONS(2857), + [anon_sym___inline__] = ACTIONS(2857), + [anon_sym___forceinline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym___thread] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym___restrict__] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym__Noreturn] = ACTIONS(2857), + [anon_sym_noreturn] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_else] = ACTIONS(4133), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym___try] = ACTIONS(2857), + [anon_sym___leave] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [anon_sym___alignof__] = ACTIONS(2857), + [anon_sym___alignof] = ACTIONS(2857), + [anon_sym__alignof] = ACTIONS(2857), + [anon_sym_alignof] = ACTIONS(2857), + [anon_sym__Alignof] = ACTIONS(2857), + [anon_sym_offsetof] = ACTIONS(2857), + [anon_sym__Generic] = ACTIONS(2857), + [anon_sym_asm] = ACTIONS(2857), + [anon_sym___asm__] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [anon_sym_NULL] = ACTIONS(2857), + [anon_sym_nullptr] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_alignas] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_R_DQUOTE] = ACTIONS(2859), + [anon_sym_LR_DQUOTE] = ACTIONS(2859), + [anon_sym_uR_DQUOTE] = ACTIONS(2859), + [anon_sym_UR_DQUOTE] = ACTIONS(2859), + [anon_sym_u8R_DQUOTE] = ACTIONS(2859), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), + }, + [1106] = { [sym_identifier] = ACTIONS(2863), [anon_sym_LPAREN2] = ACTIONS(2865), [anon_sym_BANG] = ACTIONS(2865), @@ -240653,6 +239638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2863), [anon_sym_co_return] = ACTIONS(2863), [anon_sym_co_yield] = ACTIONS(2863), + [anon_sym_catch] = ACTIONS(2863), [anon_sym_R_DQUOTE] = ACTIONS(2865), [anon_sym_LR_DQUOTE] = ACTIONS(2865), [anon_sym_uR_DQUOTE] = ACTIONS(2865), @@ -240663,2427 +239649,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2863), [sym_this] = ACTIONS(2863), }, - [1119] = { - [sym_identifier] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym___try] = ACTIONS(2949), - [anon_sym___leave] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [sym_number_literal] = ACTIONS(2951), - [anon_sym_L_SQUOTE] = ACTIONS(2951), - [anon_sym_u_SQUOTE] = ACTIONS(2951), - [anon_sym_U_SQUOTE] = ACTIONS(2951), - [anon_sym_u8_SQUOTE] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_L_DQUOTE] = ACTIONS(2951), - [anon_sym_u_DQUOTE] = ACTIONS(2951), - [anon_sym_U_DQUOTE] = ACTIONS(2951), - [anon_sym_u8_DQUOTE] = ACTIONS(2951), - [anon_sym_DQUOTE] = ACTIONS(2951), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [anon_sym_R_DQUOTE] = ACTIONS(2951), - [anon_sym_LR_DQUOTE] = ACTIONS(2951), - [anon_sym_uR_DQUOTE] = ACTIONS(2951), - [anon_sym_UR_DQUOTE] = ACTIONS(2951), - [anon_sym_u8R_DQUOTE] = ACTIONS(2951), - [anon_sym_co_await] = ACTIONS(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [sym_this] = ACTIONS(2949), + [1107] = { + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_PLUS] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym___extension__] = ACTIONS(2136), + [anon_sym_typedef] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym___attribute__] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2134), + [anon_sym___declspec] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_signed] = ACTIONS(2136), + [anon_sym_unsigned] = ACTIONS(2136), + [anon_sym_long] = ACTIONS(2136), + [anon_sym_short] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_register] = ACTIONS(2136), + [anon_sym_inline] = ACTIONS(2136), + [anon_sym___inline] = ACTIONS(2136), + [anon_sym___inline__] = ACTIONS(2136), + [anon_sym___forceinline] = ACTIONS(2136), + [anon_sym_thread_local] = ACTIONS(2136), + [anon_sym___thread] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_constexpr] = ACTIONS(2136), + [anon_sym_volatile] = ACTIONS(2136), + [anon_sym_restrict] = ACTIONS(2136), + [anon_sym___restrict__] = ACTIONS(2136), + [anon_sym__Atomic] = ACTIONS(2136), + [anon_sym__Noreturn] = ACTIONS(2136), + [anon_sym_noreturn] = ACTIONS(2136), + [anon_sym_mutable] = ACTIONS(2136), + [anon_sym_constinit] = ACTIONS(2136), + [anon_sym_consteval] = ACTIONS(2136), + [sym_primitive_type] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_class] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_else] = ACTIONS(2136), + [anon_sym_switch] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_do] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_return] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_goto] = ACTIONS(2136), + [anon_sym___try] = ACTIONS(2136), + [anon_sym___leave] = ACTIONS(2136), + [anon_sym_not] = ACTIONS(2136), + [anon_sym_compl] = ACTIONS(2136), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2136), + [anon_sym___alignof__] = ACTIONS(2136), + [anon_sym___alignof] = ACTIONS(2136), + [anon_sym__alignof] = ACTIONS(2136), + [anon_sym_alignof] = ACTIONS(2136), + [anon_sym__Alignof] = ACTIONS(2136), + [anon_sym_offsetof] = ACTIONS(2136), + [anon_sym__Generic] = ACTIONS(2136), + [anon_sym_asm] = ACTIONS(2136), + [anon_sym___asm__] = ACTIONS(2136), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2136), + [sym_false] = ACTIONS(2136), + [anon_sym_NULL] = ACTIONS(2136), + [anon_sym_nullptr] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2136), + [anon_sym_decltype] = ACTIONS(2136), + [anon_sym_virtual] = ACTIONS(2136), + [anon_sym_alignas] = ACTIONS(2136), + [anon_sym_typename] = ACTIONS(2136), + [anon_sym_template] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2136), + [anon_sym_delete] = ACTIONS(2136), + [anon_sym_throw] = ACTIONS(2136), + [anon_sym_co_return] = ACTIONS(2136), + [anon_sym_co_yield] = ACTIONS(2136), + [anon_sym_catch] = ACTIONS(2136), + [anon_sym_R_DQUOTE] = ACTIONS(2134), + [anon_sym_LR_DQUOTE] = ACTIONS(2134), + [anon_sym_uR_DQUOTE] = ACTIONS(2134), + [anon_sym_UR_DQUOTE] = ACTIONS(2134), + [anon_sym_u8R_DQUOTE] = ACTIONS(2134), + [anon_sym_co_await] = ACTIONS(2136), + [anon_sym_new] = ACTIONS(2136), + [anon_sym_requires] = ACTIONS(2136), + [sym_this] = ACTIONS(2136), }, - [1120] = { - [sym_identifier] = ACTIONS(2901), - [anon_sym_LPAREN2] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym___extension__] = ACTIONS(2901), - [anon_sym_typedef] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym___attribute__] = ACTIONS(2901), - [anon_sym_COLON_COLON] = ACTIONS(2903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), - [anon_sym___declspec] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_signed] = ACTIONS(2901), - [anon_sym_unsigned] = ACTIONS(2901), - [anon_sym_long] = ACTIONS(2901), - [anon_sym_short] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_register] = ACTIONS(2901), - [anon_sym_inline] = ACTIONS(2901), - [anon_sym___inline] = ACTIONS(2901), - [anon_sym___inline__] = ACTIONS(2901), - [anon_sym___forceinline] = ACTIONS(2901), - [anon_sym_thread_local] = ACTIONS(2901), - [anon_sym___thread] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_constexpr] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_restrict] = ACTIONS(2901), - [anon_sym___restrict__] = ACTIONS(2901), - [anon_sym__Atomic] = ACTIONS(2901), - [anon_sym__Noreturn] = ACTIONS(2901), - [anon_sym_noreturn] = ACTIONS(2901), - [anon_sym_mutable] = ACTIONS(2901), - [anon_sym_constinit] = ACTIONS(2901), - [anon_sym_consteval] = ACTIONS(2901), - [sym_primitive_type] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_union] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym___try] = ACTIONS(2901), - [anon_sym___leave] = ACTIONS(2901), - [anon_sym_not] = ACTIONS(2901), - [anon_sym_compl] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym___alignof__] = ACTIONS(2901), - [anon_sym___alignof] = ACTIONS(2901), - [anon_sym__alignof] = ACTIONS(2901), - [anon_sym_alignof] = ACTIONS(2901), - [anon_sym__Alignof] = ACTIONS(2901), - [anon_sym_offsetof] = ACTIONS(2901), - [anon_sym__Generic] = ACTIONS(2901), - [anon_sym_asm] = ACTIONS(2901), - [anon_sym___asm__] = ACTIONS(2901), - [sym_number_literal] = ACTIONS(2903), - [anon_sym_L_SQUOTE] = ACTIONS(2903), - [anon_sym_u_SQUOTE] = ACTIONS(2903), - [anon_sym_U_SQUOTE] = ACTIONS(2903), - [anon_sym_u8_SQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_L_DQUOTE] = ACTIONS(2903), - [anon_sym_u_DQUOTE] = ACTIONS(2903), - [anon_sym_U_DQUOTE] = ACTIONS(2903), - [anon_sym_u8_DQUOTE] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [anon_sym_NULL] = ACTIONS(2901), - [anon_sym_nullptr] = ACTIONS(2901), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2901), - [anon_sym_decltype] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_alignas] = ACTIONS(2901), - [anon_sym_typename] = ACTIONS(2901), - [anon_sym_template] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_co_return] = ACTIONS(2901), - [anon_sym_co_yield] = ACTIONS(2901), - [anon_sym_R_DQUOTE] = ACTIONS(2903), - [anon_sym_LR_DQUOTE] = ACTIONS(2903), - [anon_sym_uR_DQUOTE] = ACTIONS(2903), - [anon_sym_UR_DQUOTE] = ACTIONS(2903), - [anon_sym_u8R_DQUOTE] = ACTIONS(2903), - [anon_sym_co_await] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_requires] = ACTIONS(2901), - [sym_this] = ACTIONS(2901), - }, - [1121] = { - [sym_identifier] = ACTIONS(2945), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym___extension__] = ACTIONS(2945), - [anon_sym_typedef] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2945), - [anon_sym___attribute__] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), - [anon_sym___declspec] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_signed] = ACTIONS(2945), - [anon_sym_unsigned] = ACTIONS(2945), - [anon_sym_long] = ACTIONS(2945), - [anon_sym_short] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_static] = ACTIONS(2945), - [anon_sym_register] = ACTIONS(2945), - [anon_sym_inline] = ACTIONS(2945), - [anon_sym___inline] = ACTIONS(2945), - [anon_sym___inline__] = ACTIONS(2945), - [anon_sym___forceinline] = ACTIONS(2945), - [anon_sym_thread_local] = ACTIONS(2945), - [anon_sym___thread] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2945), - [anon_sym_constexpr] = ACTIONS(2945), - [anon_sym_volatile] = ACTIONS(2945), - [anon_sym_restrict] = ACTIONS(2945), - [anon_sym___restrict__] = ACTIONS(2945), - [anon_sym__Atomic] = ACTIONS(2945), - [anon_sym__Noreturn] = ACTIONS(2945), - [anon_sym_noreturn] = ACTIONS(2945), - [anon_sym_mutable] = ACTIONS(2945), - [anon_sym_constinit] = ACTIONS(2945), - [anon_sym_consteval] = ACTIONS(2945), - [sym_primitive_type] = ACTIONS(2945), - [anon_sym_enum] = ACTIONS(2945), - [anon_sym_class] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_switch] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_break] = ACTIONS(2945), - [anon_sym_continue] = ACTIONS(2945), - [anon_sym_goto] = ACTIONS(2945), - [anon_sym___try] = ACTIONS(2945), - [anon_sym___leave] = ACTIONS(2945), - [anon_sym_not] = ACTIONS(2945), - [anon_sym_compl] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_sizeof] = ACTIONS(2945), - [anon_sym___alignof__] = ACTIONS(2945), - [anon_sym___alignof] = ACTIONS(2945), - [anon_sym__alignof] = ACTIONS(2945), - [anon_sym_alignof] = ACTIONS(2945), - [anon_sym__Alignof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2945), - [anon_sym__Generic] = ACTIONS(2945), - [anon_sym_asm] = ACTIONS(2945), - [anon_sym___asm__] = ACTIONS(2945), - [sym_number_literal] = ACTIONS(2947), - [anon_sym_L_SQUOTE] = ACTIONS(2947), - [anon_sym_u_SQUOTE] = ACTIONS(2947), - [anon_sym_U_SQUOTE] = ACTIONS(2947), - [anon_sym_u8_SQUOTE] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_L_DQUOTE] = ACTIONS(2947), - [anon_sym_u_DQUOTE] = ACTIONS(2947), - [anon_sym_U_DQUOTE] = ACTIONS(2947), - [anon_sym_u8_DQUOTE] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(2947), - [sym_true] = ACTIONS(2945), - [sym_false] = ACTIONS(2945), - [anon_sym_NULL] = ACTIONS(2945), - [anon_sym_nullptr] = ACTIONS(2945), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2945), - [anon_sym_decltype] = ACTIONS(2945), - [anon_sym_virtual] = ACTIONS(2945), - [anon_sym_alignas] = ACTIONS(2945), - [anon_sym_typename] = ACTIONS(2945), - [anon_sym_template] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [anon_sym_delete] = ACTIONS(2945), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_co_return] = ACTIONS(2945), - [anon_sym_co_yield] = ACTIONS(2945), - [anon_sym_R_DQUOTE] = ACTIONS(2947), - [anon_sym_LR_DQUOTE] = ACTIONS(2947), - [anon_sym_uR_DQUOTE] = ACTIONS(2947), - [anon_sym_UR_DQUOTE] = ACTIONS(2947), - [anon_sym_u8R_DQUOTE] = ACTIONS(2947), - [anon_sym_co_await] = ACTIONS(2945), - [anon_sym_new] = ACTIONS(2945), - [anon_sym_requires] = ACTIONS(2945), - [sym_this] = ACTIONS(2945), - }, - [1122] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1123] = { - [sym_identifier] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym___extension__] = ACTIONS(2941), - [anon_sym_typedef] = ACTIONS(2941), - [anon_sym_extern] = ACTIONS(2941), - [anon_sym___attribute__] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), - [anon_sym___declspec] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_signed] = ACTIONS(2941), - [anon_sym_unsigned] = ACTIONS(2941), - [anon_sym_long] = ACTIONS(2941), - [anon_sym_short] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_register] = ACTIONS(2941), - [anon_sym_inline] = ACTIONS(2941), - [anon_sym___inline] = ACTIONS(2941), - [anon_sym___inline__] = ACTIONS(2941), - [anon_sym___forceinline] = ACTIONS(2941), - [anon_sym_thread_local] = ACTIONS(2941), - [anon_sym___thread] = ACTIONS(2941), - [anon_sym_const] = ACTIONS(2941), - [anon_sym_constexpr] = ACTIONS(2941), - [anon_sym_volatile] = ACTIONS(2941), - [anon_sym_restrict] = ACTIONS(2941), - [anon_sym___restrict__] = ACTIONS(2941), - [anon_sym__Atomic] = ACTIONS(2941), - [anon_sym__Noreturn] = ACTIONS(2941), - [anon_sym_noreturn] = ACTIONS(2941), - [anon_sym_mutable] = ACTIONS(2941), - [anon_sym_constinit] = ACTIONS(2941), - [anon_sym_consteval] = ACTIONS(2941), - [sym_primitive_type] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2941), - [anon_sym_class] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2941), - [anon_sym_switch] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_do] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_goto] = ACTIONS(2941), - [anon_sym___try] = ACTIONS(2941), - [anon_sym___leave] = ACTIONS(2941), - [anon_sym_not] = ACTIONS(2941), - [anon_sym_compl] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_sizeof] = ACTIONS(2941), - [anon_sym___alignof__] = ACTIONS(2941), - [anon_sym___alignof] = ACTIONS(2941), - [anon_sym__alignof] = ACTIONS(2941), - [anon_sym_alignof] = ACTIONS(2941), - [anon_sym__Alignof] = ACTIONS(2941), - [anon_sym_offsetof] = ACTIONS(2941), - [anon_sym__Generic] = ACTIONS(2941), - [anon_sym_asm] = ACTIONS(2941), - [anon_sym___asm__] = ACTIONS(2941), - [sym_number_literal] = ACTIONS(2943), - [anon_sym_L_SQUOTE] = ACTIONS(2943), - [anon_sym_u_SQUOTE] = ACTIONS(2943), - [anon_sym_U_SQUOTE] = ACTIONS(2943), - [anon_sym_u8_SQUOTE] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2943), - [anon_sym_L_DQUOTE] = ACTIONS(2943), - [anon_sym_u_DQUOTE] = ACTIONS(2943), - [anon_sym_U_DQUOTE] = ACTIONS(2943), - [anon_sym_u8_DQUOTE] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(2943), - [sym_true] = ACTIONS(2941), - [sym_false] = ACTIONS(2941), - [anon_sym_NULL] = ACTIONS(2941), - [anon_sym_nullptr] = ACTIONS(2941), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2941), - [anon_sym_decltype] = ACTIONS(2941), - [anon_sym_virtual] = ACTIONS(2941), - [anon_sym_alignas] = ACTIONS(2941), - [anon_sym_typename] = ACTIONS(2941), - [anon_sym_template] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [anon_sym_delete] = ACTIONS(2941), - [anon_sym_throw] = ACTIONS(2941), - [anon_sym_co_return] = ACTIONS(2941), - [anon_sym_co_yield] = ACTIONS(2941), - [anon_sym_R_DQUOTE] = ACTIONS(2943), - [anon_sym_LR_DQUOTE] = ACTIONS(2943), - [anon_sym_uR_DQUOTE] = ACTIONS(2943), - [anon_sym_UR_DQUOTE] = ACTIONS(2943), - [anon_sym_u8R_DQUOTE] = ACTIONS(2943), - [anon_sym_co_await] = ACTIONS(2941), - [anon_sym_new] = ACTIONS(2941), - [anon_sym_requires] = ACTIONS(2941), - [sym_this] = ACTIONS(2941), - }, - [1124] = { - [sym_identifier] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym___extension__] = ACTIONS(2981), - [anon_sym_typedef] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym___attribute__] = ACTIONS(2981), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), - [anon_sym___declspec] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_signed] = ACTIONS(2981), - [anon_sym_unsigned] = ACTIONS(2981), - [anon_sym_long] = ACTIONS(2981), - [anon_sym_short] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_register] = ACTIONS(2981), - [anon_sym_inline] = ACTIONS(2981), - [anon_sym___inline] = ACTIONS(2981), - [anon_sym___inline__] = ACTIONS(2981), - [anon_sym___forceinline] = ACTIONS(2981), - [anon_sym_thread_local] = ACTIONS(2981), - [anon_sym___thread] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_constexpr] = ACTIONS(2981), - [anon_sym_volatile] = ACTIONS(2981), - [anon_sym_restrict] = ACTIONS(2981), - [anon_sym___restrict__] = ACTIONS(2981), - [anon_sym__Atomic] = ACTIONS(2981), - [anon_sym__Noreturn] = ACTIONS(2981), - [anon_sym_noreturn] = ACTIONS(2981), - [anon_sym_mutable] = ACTIONS(2981), - [anon_sym_constinit] = ACTIONS(2981), - [anon_sym_consteval] = ACTIONS(2981), - [sym_primitive_type] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_class] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2981), - [anon_sym_switch] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_do] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym___try] = ACTIONS(2981), - [anon_sym___leave] = ACTIONS(2981), - [anon_sym_not] = ACTIONS(2981), - [anon_sym_compl] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_sizeof] = ACTIONS(2981), - [anon_sym___alignof__] = ACTIONS(2981), - [anon_sym___alignof] = ACTIONS(2981), - [anon_sym__alignof] = ACTIONS(2981), - [anon_sym_alignof] = ACTIONS(2981), - [anon_sym__Alignof] = ACTIONS(2981), - [anon_sym_offsetof] = ACTIONS(2981), - [anon_sym__Generic] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym___asm__] = ACTIONS(2981), - [sym_number_literal] = ACTIONS(2983), - [anon_sym_L_SQUOTE] = ACTIONS(2983), - [anon_sym_u_SQUOTE] = ACTIONS(2983), - [anon_sym_U_SQUOTE] = ACTIONS(2983), - [anon_sym_u8_SQUOTE] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2983), - [anon_sym_L_DQUOTE] = ACTIONS(2983), - [anon_sym_u_DQUOTE] = ACTIONS(2983), - [anon_sym_U_DQUOTE] = ACTIONS(2983), - [anon_sym_u8_DQUOTE] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [anon_sym_NULL] = ACTIONS(2981), - [anon_sym_nullptr] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2981), - [anon_sym_decltype] = ACTIONS(2981), - [anon_sym_virtual] = ACTIONS(2981), - [anon_sym_alignas] = ACTIONS(2981), - [anon_sym_typename] = ACTIONS(2981), - [anon_sym_template] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_delete] = ACTIONS(2981), - [anon_sym_throw] = ACTIONS(2981), - [anon_sym_co_return] = ACTIONS(2981), - [anon_sym_co_yield] = ACTIONS(2981), - [anon_sym_R_DQUOTE] = ACTIONS(2983), - [anon_sym_LR_DQUOTE] = ACTIONS(2983), - [anon_sym_uR_DQUOTE] = ACTIONS(2983), - [anon_sym_UR_DQUOTE] = ACTIONS(2983), - [anon_sym_u8R_DQUOTE] = ACTIONS(2983), - [anon_sym_co_await] = ACTIONS(2981), - [anon_sym_new] = ACTIONS(2981), - [anon_sym_requires] = ACTIONS(2981), - [sym_this] = ACTIONS(2981), - }, - [1125] = { - [sym_identifier] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym___extension__] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2897), - [anon_sym_extern] = ACTIONS(2897), - [anon_sym___attribute__] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2899), - [anon_sym___declspec] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_signed] = ACTIONS(2897), - [anon_sym_unsigned] = ACTIONS(2897), - [anon_sym_long] = ACTIONS(2897), - [anon_sym_short] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_register] = ACTIONS(2897), - [anon_sym_inline] = ACTIONS(2897), - [anon_sym___inline] = ACTIONS(2897), - [anon_sym___inline__] = ACTIONS(2897), - [anon_sym___forceinline] = ACTIONS(2897), - [anon_sym_thread_local] = ACTIONS(2897), - [anon_sym___thread] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_constexpr] = ACTIONS(2897), - [anon_sym_volatile] = ACTIONS(2897), - [anon_sym_restrict] = ACTIONS(2897), - [anon_sym___restrict__] = ACTIONS(2897), - [anon_sym__Atomic] = ACTIONS(2897), - [anon_sym__Noreturn] = ACTIONS(2897), - [anon_sym_noreturn] = ACTIONS(2897), - [anon_sym_mutable] = ACTIONS(2897), - [anon_sym_constinit] = ACTIONS(2897), - [anon_sym_consteval] = ACTIONS(2897), - [sym_primitive_type] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_union] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_goto] = ACTIONS(2897), - [anon_sym___try] = ACTIONS(2897), - [anon_sym___leave] = ACTIONS(2897), - [anon_sym_not] = ACTIONS(2897), - [anon_sym_compl] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_sizeof] = ACTIONS(2897), - [anon_sym___alignof__] = ACTIONS(2897), - [anon_sym___alignof] = ACTIONS(2897), - [anon_sym__alignof] = ACTIONS(2897), - [anon_sym_alignof] = ACTIONS(2897), - [anon_sym__Alignof] = ACTIONS(2897), - [anon_sym_offsetof] = ACTIONS(2897), - [anon_sym__Generic] = ACTIONS(2897), - [anon_sym_asm] = ACTIONS(2897), - [anon_sym___asm__] = ACTIONS(2897), - [sym_number_literal] = ACTIONS(2899), - [anon_sym_L_SQUOTE] = ACTIONS(2899), - [anon_sym_u_SQUOTE] = ACTIONS(2899), - [anon_sym_U_SQUOTE] = ACTIONS(2899), - [anon_sym_u8_SQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_L_DQUOTE] = ACTIONS(2899), - [anon_sym_u_DQUOTE] = ACTIONS(2899), - [anon_sym_U_DQUOTE] = ACTIONS(2899), - [anon_sym_u8_DQUOTE] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [anon_sym_NULL] = ACTIONS(2897), - [anon_sym_nullptr] = ACTIONS(2897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2897), - [anon_sym_decltype] = ACTIONS(2897), - [anon_sym_virtual] = ACTIONS(2897), - [anon_sym_alignas] = ACTIONS(2897), - [anon_sym_typename] = ACTIONS(2897), - [anon_sym_template] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_co_return] = ACTIONS(2897), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2899), - [anon_sym_LR_DQUOTE] = ACTIONS(2899), - [anon_sym_uR_DQUOTE] = ACTIONS(2899), - [anon_sym_UR_DQUOTE] = ACTIONS(2899), - [anon_sym_u8R_DQUOTE] = ACTIONS(2899), - [anon_sym_co_await] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_requires] = ACTIONS(2897), - [sym_this] = ACTIONS(2897), - }, - [1126] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1127] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1128] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1129] = { - [sym_identifier] = ACTIONS(2937), - [anon_sym_LPAREN2] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_typedef] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), - [anon_sym___declspec] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_signed] = ACTIONS(2937), - [anon_sym_unsigned] = ACTIONS(2937), - [anon_sym_long] = ACTIONS(2937), - [anon_sym_short] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_register] = ACTIONS(2937), - [anon_sym_inline] = ACTIONS(2937), - [anon_sym___inline] = ACTIONS(2937), - [anon_sym___inline__] = ACTIONS(2937), - [anon_sym___forceinline] = ACTIONS(2937), - [anon_sym_thread_local] = ACTIONS(2937), - [anon_sym___thread] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_class] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2937), - [anon_sym_switch] = ACTIONS(2937), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_do] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [anon_sym_goto] = ACTIONS(2937), - [anon_sym___try] = ACTIONS(2937), - [anon_sym___leave] = ACTIONS(2937), - [anon_sym_not] = ACTIONS(2937), - [anon_sym_compl] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_sizeof] = ACTIONS(2937), - [anon_sym___alignof__] = ACTIONS(2937), - [anon_sym___alignof] = ACTIONS(2937), - [anon_sym__alignof] = ACTIONS(2937), - [anon_sym_alignof] = ACTIONS(2937), - [anon_sym__Alignof] = ACTIONS(2937), - [anon_sym_offsetof] = ACTIONS(2937), - [anon_sym__Generic] = ACTIONS(2937), - [anon_sym_asm] = ACTIONS(2937), - [anon_sym___asm__] = ACTIONS(2937), - [sym_number_literal] = ACTIONS(2939), - [anon_sym_L_SQUOTE] = ACTIONS(2939), - [anon_sym_u_SQUOTE] = ACTIONS(2939), - [anon_sym_U_SQUOTE] = ACTIONS(2939), - [anon_sym_u8_SQUOTE] = ACTIONS(2939), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_L_DQUOTE] = ACTIONS(2939), - [anon_sym_u_DQUOTE] = ACTIONS(2939), - [anon_sym_U_DQUOTE] = ACTIONS(2939), - [anon_sym_u8_DQUOTE] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym_true] = ACTIONS(2937), - [sym_false] = ACTIONS(2937), - [anon_sym_NULL] = ACTIONS(2937), - [anon_sym_nullptr] = ACTIONS(2937), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2937), - [anon_sym_decltype] = ACTIONS(2937), - [anon_sym_virtual] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2937), - [anon_sym_typename] = ACTIONS(2937), - [anon_sym_template] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [anon_sym_delete] = ACTIONS(2937), - [anon_sym_throw] = ACTIONS(2937), - [anon_sym_co_return] = ACTIONS(2937), - [anon_sym_co_yield] = ACTIONS(2937), - [anon_sym_R_DQUOTE] = ACTIONS(2939), - [anon_sym_LR_DQUOTE] = ACTIONS(2939), - [anon_sym_uR_DQUOTE] = ACTIONS(2939), - [anon_sym_UR_DQUOTE] = ACTIONS(2939), - [anon_sym_u8R_DQUOTE] = ACTIONS(2939), - [anon_sym_co_await] = ACTIONS(2937), - [anon_sym_new] = ACTIONS(2937), - [anon_sym_requires] = ACTIONS(2937), - [sym_this] = ACTIONS(2937), - }, - [1130] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1131] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1132] = { - [sym_identifier] = ACTIONS(2877), - [anon_sym_LPAREN2] = ACTIONS(2879), - [anon_sym_BANG] = ACTIONS(2879), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2879), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym___extension__] = ACTIONS(2877), - [anon_sym_typedef] = ACTIONS(2877), - [anon_sym_extern] = ACTIONS(2877), - [anon_sym___attribute__] = ACTIONS(2877), - [anon_sym_COLON_COLON] = ACTIONS(2879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2879), - [anon_sym___declspec] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_signed] = ACTIONS(2877), - [anon_sym_unsigned] = ACTIONS(2877), - [anon_sym_long] = ACTIONS(2877), - [anon_sym_short] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_register] = ACTIONS(2877), - [anon_sym_inline] = ACTIONS(2877), - [anon_sym___inline] = ACTIONS(2877), - [anon_sym___inline__] = ACTIONS(2877), - [anon_sym___forceinline] = ACTIONS(2877), - [anon_sym_thread_local] = ACTIONS(2877), - [anon_sym___thread] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_constexpr] = ACTIONS(2877), - [anon_sym_volatile] = ACTIONS(2877), - [anon_sym_restrict] = ACTIONS(2877), - [anon_sym___restrict__] = ACTIONS(2877), - [anon_sym__Atomic] = ACTIONS(2877), - [anon_sym__Noreturn] = ACTIONS(2877), - [anon_sym_noreturn] = ACTIONS(2877), - [anon_sym_mutable] = ACTIONS(2877), - [anon_sym_constinit] = ACTIONS(2877), - [anon_sym_consteval] = ACTIONS(2877), - [sym_primitive_type] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_else] = ACTIONS(2877), - [anon_sym_switch] = ACTIONS(2877), - [anon_sym_while] = ACTIONS(2877), - [anon_sym_do] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_goto] = ACTIONS(2877), - [anon_sym___try] = ACTIONS(2877), - [anon_sym___leave] = ACTIONS(2877), - [anon_sym_not] = ACTIONS(2877), - [anon_sym_compl] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_sizeof] = ACTIONS(2877), - [anon_sym___alignof__] = ACTIONS(2877), - [anon_sym___alignof] = ACTIONS(2877), - [anon_sym__alignof] = ACTIONS(2877), - [anon_sym_alignof] = ACTIONS(2877), - [anon_sym__Alignof] = ACTIONS(2877), - [anon_sym_offsetof] = ACTIONS(2877), - [anon_sym__Generic] = ACTIONS(2877), - [anon_sym_asm] = ACTIONS(2877), - [anon_sym___asm__] = ACTIONS(2877), - [sym_number_literal] = ACTIONS(2879), - [anon_sym_L_SQUOTE] = ACTIONS(2879), - [anon_sym_u_SQUOTE] = ACTIONS(2879), - [anon_sym_U_SQUOTE] = ACTIONS(2879), - [anon_sym_u8_SQUOTE] = ACTIONS(2879), - [anon_sym_SQUOTE] = ACTIONS(2879), - [anon_sym_L_DQUOTE] = ACTIONS(2879), - [anon_sym_u_DQUOTE] = ACTIONS(2879), - [anon_sym_U_DQUOTE] = ACTIONS(2879), - [anon_sym_u8_DQUOTE] = ACTIONS(2879), - [anon_sym_DQUOTE] = ACTIONS(2879), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [anon_sym_NULL] = ACTIONS(2877), - [anon_sym_nullptr] = ACTIONS(2877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2877), - [anon_sym_decltype] = ACTIONS(2877), - [anon_sym_virtual] = ACTIONS(2877), - [anon_sym_alignas] = ACTIONS(2877), - [anon_sym_typename] = ACTIONS(2877), - [anon_sym_template] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2877), - [anon_sym_delete] = ACTIONS(2877), - [anon_sym_throw] = ACTIONS(2877), - [anon_sym_co_return] = ACTIONS(2877), - [anon_sym_co_yield] = ACTIONS(2877), - [anon_sym_R_DQUOTE] = ACTIONS(2879), - [anon_sym_LR_DQUOTE] = ACTIONS(2879), - [anon_sym_uR_DQUOTE] = ACTIONS(2879), - [anon_sym_UR_DQUOTE] = ACTIONS(2879), - [anon_sym_u8R_DQUOTE] = ACTIONS(2879), - [anon_sym_co_await] = ACTIONS(2877), - [anon_sym_new] = ACTIONS(2877), - [anon_sym_requires] = ACTIONS(2877), - [sym_this] = ACTIONS(2877), - }, - [1133] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1134] = { - [sym_identifier] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym___try] = ACTIONS(2917), - [anon_sym___leave] = ACTIONS(2917), - [anon_sym_not] = ACTIONS(2917), - [anon_sym_compl] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_sizeof] = ACTIONS(2917), - [anon_sym___alignof__] = ACTIONS(2917), - [anon_sym___alignof] = ACTIONS(2917), - [anon_sym__alignof] = ACTIONS(2917), - [anon_sym_alignof] = ACTIONS(2917), - [anon_sym__Alignof] = ACTIONS(2917), - [anon_sym_offsetof] = ACTIONS(2917), - [anon_sym__Generic] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym___asm__] = ACTIONS(2917), - [sym_number_literal] = ACTIONS(2919), - [anon_sym_L_SQUOTE] = ACTIONS(2919), - [anon_sym_u_SQUOTE] = ACTIONS(2919), - [anon_sym_U_SQUOTE] = ACTIONS(2919), - [anon_sym_u8_SQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_L_DQUOTE] = ACTIONS(2919), - [anon_sym_u_DQUOTE] = ACTIONS(2919), - [anon_sym_U_DQUOTE] = ACTIONS(2919), - [anon_sym_u8_DQUOTE] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [anon_sym_NULL] = ACTIONS(2917), - [anon_sym_nullptr] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_co_return] = ACTIONS(2917), - [anon_sym_co_yield] = ACTIONS(2917), - [anon_sym_R_DQUOTE] = ACTIONS(2919), - [anon_sym_LR_DQUOTE] = ACTIONS(2919), - [anon_sym_uR_DQUOTE] = ACTIONS(2919), - [anon_sym_UR_DQUOTE] = ACTIONS(2919), - [anon_sym_u8R_DQUOTE] = ACTIONS(2919), - [anon_sym_co_await] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_requires] = ACTIONS(2917), - [sym_this] = ACTIONS(2917), - }, - [1135] = { - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_goto] = ACTIONS(2925), - [anon_sym___try] = ACTIONS(2925), - [anon_sym___leave] = ACTIONS(2925), - [anon_sym_not] = ACTIONS(2925), - [anon_sym_compl] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_sizeof] = ACTIONS(2925), - [anon_sym___alignof__] = ACTIONS(2925), - [anon_sym___alignof] = ACTIONS(2925), - [anon_sym__alignof] = ACTIONS(2925), - [anon_sym_alignof] = ACTIONS(2925), - [anon_sym__Alignof] = ACTIONS(2925), - [anon_sym_offsetof] = ACTIONS(2925), - [anon_sym__Generic] = ACTIONS(2925), - [anon_sym_asm] = ACTIONS(2925), - [anon_sym___asm__] = ACTIONS(2925), - [sym_number_literal] = ACTIONS(2927), - [anon_sym_L_SQUOTE] = ACTIONS(2927), - [anon_sym_u_SQUOTE] = ACTIONS(2927), - [anon_sym_U_SQUOTE] = ACTIONS(2927), - [anon_sym_u8_SQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_L_DQUOTE] = ACTIONS(2927), - [anon_sym_u_DQUOTE] = ACTIONS(2927), - [anon_sym_U_DQUOTE] = ACTIONS(2927), - [anon_sym_u8_DQUOTE] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [anon_sym_NULL] = ACTIONS(2925), - [anon_sym_nullptr] = ACTIONS(2925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_co_return] = ACTIONS(2925), - [anon_sym_co_yield] = ACTIONS(2925), - [anon_sym_R_DQUOTE] = ACTIONS(2927), - [anon_sym_LR_DQUOTE] = ACTIONS(2927), - [anon_sym_uR_DQUOTE] = ACTIONS(2927), - [anon_sym_UR_DQUOTE] = ACTIONS(2927), - [anon_sym_u8R_DQUOTE] = ACTIONS(2927), - [anon_sym_co_await] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_requires] = ACTIONS(2925), - [sym_this] = ACTIONS(2925), - }, - [1136] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1137] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1138] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1139] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1140] = { - [sym_identifier] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(2975), - [anon_sym_BANG] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2975), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym___extension__] = ACTIONS(2973), - [anon_sym_typedef] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym___attribute__] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), - [anon_sym___declspec] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_signed] = ACTIONS(2973), - [anon_sym_unsigned] = ACTIONS(2973), - [anon_sym_long] = ACTIONS(2973), - [anon_sym_short] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_register] = ACTIONS(2973), - [anon_sym_inline] = ACTIONS(2973), - [anon_sym___inline] = ACTIONS(2973), - [anon_sym___inline__] = ACTIONS(2973), - [anon_sym___forceinline] = ACTIONS(2973), - [anon_sym_thread_local] = ACTIONS(2973), - [anon_sym___thread] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_constexpr] = ACTIONS(2973), - [anon_sym_volatile] = ACTIONS(2973), - [anon_sym_restrict] = ACTIONS(2973), - [anon_sym___restrict__] = ACTIONS(2973), - [anon_sym__Atomic] = ACTIONS(2973), - [anon_sym__Noreturn] = ACTIONS(2973), - [anon_sym_noreturn] = ACTIONS(2973), - [anon_sym_mutable] = ACTIONS(2973), - [anon_sym_constinit] = ACTIONS(2973), - [anon_sym_consteval] = ACTIONS(2973), - [sym_primitive_type] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2973), - [anon_sym_switch] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_do] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym___try] = ACTIONS(2973), - [anon_sym___leave] = ACTIONS(2973), - [anon_sym_not] = ACTIONS(2973), - [anon_sym_compl] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_sizeof] = ACTIONS(2973), - [anon_sym___alignof__] = ACTIONS(2973), - [anon_sym___alignof] = ACTIONS(2973), - [anon_sym__alignof] = ACTIONS(2973), - [anon_sym_alignof] = ACTIONS(2973), - [anon_sym__Alignof] = ACTIONS(2973), - [anon_sym_offsetof] = ACTIONS(2973), - [anon_sym__Generic] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym___asm__] = ACTIONS(2973), - [sym_number_literal] = ACTIONS(2975), - [anon_sym_L_SQUOTE] = ACTIONS(2975), - [anon_sym_u_SQUOTE] = ACTIONS(2975), - [anon_sym_U_SQUOTE] = ACTIONS(2975), - [anon_sym_u8_SQUOTE] = ACTIONS(2975), - [anon_sym_SQUOTE] = ACTIONS(2975), - [anon_sym_L_DQUOTE] = ACTIONS(2975), - [anon_sym_u_DQUOTE] = ACTIONS(2975), - [anon_sym_U_DQUOTE] = ACTIONS(2975), - [anon_sym_u8_DQUOTE] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2975), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [anon_sym_NULL] = ACTIONS(2973), - [anon_sym_nullptr] = ACTIONS(2973), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2973), - [anon_sym_decltype] = ACTIONS(2973), - [anon_sym_virtual] = ACTIONS(2973), - [anon_sym_alignas] = ACTIONS(2973), - [anon_sym_typename] = ACTIONS(2973), - [anon_sym_template] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [anon_sym_delete] = ACTIONS(2973), - [anon_sym_throw] = ACTIONS(2973), - [anon_sym_co_return] = ACTIONS(2973), - [anon_sym_co_yield] = ACTIONS(2973), - [anon_sym_R_DQUOTE] = ACTIONS(2975), - [anon_sym_LR_DQUOTE] = ACTIONS(2975), - [anon_sym_uR_DQUOTE] = ACTIONS(2975), - [anon_sym_UR_DQUOTE] = ACTIONS(2975), - [anon_sym_u8R_DQUOTE] = ACTIONS(2975), - [anon_sym_co_await] = ACTIONS(2973), - [anon_sym_new] = ACTIONS(2973), - [anon_sym_requires] = ACTIONS(2973), - [sym_this] = ACTIONS(2973), - }, - [1141] = { + [1108] = { [sym_identifier] = ACTIONS(2929), [anon_sym_LPAREN2] = ACTIONS(2931), [anon_sym_BANG] = ACTIONS(2931), @@ -243193,3967 +239870,1767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2929), [sym_this] = ACTIONS(2929), }, - [1142] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1143] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1144] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [1109] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1145] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [1110] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1146] = { - [sym_identifier] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym___try] = ACTIONS(2921), - [anon_sym___leave] = ACTIONS(2921), - [anon_sym_not] = ACTIONS(2921), - [anon_sym_compl] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_sizeof] = ACTIONS(2921), - [anon_sym___alignof__] = ACTIONS(2921), - [anon_sym___alignof] = ACTIONS(2921), - [anon_sym__alignof] = ACTIONS(2921), - [anon_sym_alignof] = ACTIONS(2921), - [anon_sym__Alignof] = ACTIONS(2921), - [anon_sym_offsetof] = ACTIONS(2921), - [anon_sym__Generic] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym___asm__] = ACTIONS(2921), - [sym_number_literal] = ACTIONS(2923), - [anon_sym_L_SQUOTE] = ACTIONS(2923), - [anon_sym_u_SQUOTE] = ACTIONS(2923), - [anon_sym_U_SQUOTE] = ACTIONS(2923), - [anon_sym_u8_SQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_L_DQUOTE] = ACTIONS(2923), - [anon_sym_u_DQUOTE] = ACTIONS(2923), - [anon_sym_U_DQUOTE] = ACTIONS(2923), - [anon_sym_u8_DQUOTE] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [anon_sym_NULL] = ACTIONS(2921), - [anon_sym_nullptr] = ACTIONS(2921), + [1111] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_co_return] = ACTIONS(2921), - [anon_sym_co_yield] = ACTIONS(2921), - [anon_sym_R_DQUOTE] = ACTIONS(2923), - [anon_sym_LR_DQUOTE] = ACTIONS(2923), - [anon_sym_uR_DQUOTE] = ACTIONS(2923), - [anon_sym_UR_DQUOTE] = ACTIONS(2923), - [anon_sym_u8R_DQUOTE] = ACTIONS(2923), - [anon_sym_co_await] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_requires] = ACTIONS(2921), - [sym_this] = ACTIONS(2921), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1147] = { - [sym_identifier] = ACTIONS(2913), - [anon_sym_LPAREN2] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym___extension__] = ACTIONS(2913), - [anon_sym_typedef] = ACTIONS(2913), - [anon_sym_extern] = ACTIONS(2913), - [anon_sym___attribute__] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), - [anon_sym___declspec] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_signed] = ACTIONS(2913), - [anon_sym_unsigned] = ACTIONS(2913), - [anon_sym_long] = ACTIONS(2913), - [anon_sym_short] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_register] = ACTIONS(2913), - [anon_sym_inline] = ACTIONS(2913), - [anon_sym___inline] = ACTIONS(2913), - [anon_sym___inline__] = ACTIONS(2913), - [anon_sym___forceinline] = ACTIONS(2913), - [anon_sym_thread_local] = ACTIONS(2913), - [anon_sym___thread] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_constexpr] = ACTIONS(2913), - [anon_sym_volatile] = ACTIONS(2913), - [anon_sym_restrict] = ACTIONS(2913), - [anon_sym___restrict__] = ACTIONS(2913), - [anon_sym__Atomic] = ACTIONS(2913), - [anon_sym__Noreturn] = ACTIONS(2913), - [anon_sym_noreturn] = ACTIONS(2913), - [anon_sym_mutable] = ACTIONS(2913), - [anon_sym_constinit] = ACTIONS(2913), - [anon_sym_consteval] = ACTIONS(2913), - [sym_primitive_type] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym___try] = ACTIONS(2913), - [anon_sym___leave] = ACTIONS(2913), - [anon_sym_not] = ACTIONS(2913), - [anon_sym_compl] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_sizeof] = ACTIONS(2913), - [anon_sym___alignof__] = ACTIONS(2913), - [anon_sym___alignof] = ACTIONS(2913), - [anon_sym__alignof] = ACTIONS(2913), - [anon_sym_alignof] = ACTIONS(2913), - [anon_sym__Alignof] = ACTIONS(2913), - [anon_sym_offsetof] = ACTIONS(2913), - [anon_sym__Generic] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym___asm__] = ACTIONS(2913), - [sym_number_literal] = ACTIONS(2915), - [anon_sym_L_SQUOTE] = ACTIONS(2915), - [anon_sym_u_SQUOTE] = ACTIONS(2915), - [anon_sym_U_SQUOTE] = ACTIONS(2915), - [anon_sym_u8_SQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_L_DQUOTE] = ACTIONS(2915), - [anon_sym_u_DQUOTE] = ACTIONS(2915), - [anon_sym_U_DQUOTE] = ACTIONS(2915), - [anon_sym_u8_DQUOTE] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [anon_sym_NULL] = ACTIONS(2913), - [anon_sym_nullptr] = ACTIONS(2913), + [1112] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2913), - [anon_sym_decltype] = ACTIONS(2913), - [anon_sym_virtual] = ACTIONS(2913), - [anon_sym_alignas] = ACTIONS(2913), - [anon_sym_typename] = ACTIONS(2913), - [anon_sym_template] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_co_return] = ACTIONS(2913), - [anon_sym_co_yield] = ACTIONS(2913), - [anon_sym_R_DQUOTE] = ACTIONS(2915), - [anon_sym_LR_DQUOTE] = ACTIONS(2915), - [anon_sym_uR_DQUOTE] = ACTIONS(2915), - [anon_sym_UR_DQUOTE] = ACTIONS(2915), - [anon_sym_u8R_DQUOTE] = ACTIONS(2915), - [anon_sym_co_await] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_requires] = ACTIONS(2913), - [sym_this] = ACTIONS(2913), - }, - [1148] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1149] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1150] = { - [sym_identifier] = ACTIONS(2889), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym___extension__] = ACTIONS(2889), - [anon_sym_typedef] = ACTIONS(2889), - [anon_sym_extern] = ACTIONS(2889), - [anon_sym___attribute__] = ACTIONS(2889), - [anon_sym_COLON_COLON] = ACTIONS(2891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2891), - [anon_sym___declspec] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_signed] = ACTIONS(2889), - [anon_sym_unsigned] = ACTIONS(2889), - [anon_sym_long] = ACTIONS(2889), - [anon_sym_short] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_register] = ACTIONS(2889), - [anon_sym_inline] = ACTIONS(2889), - [anon_sym___inline] = ACTIONS(2889), - [anon_sym___inline__] = ACTIONS(2889), - [anon_sym___forceinline] = ACTIONS(2889), - [anon_sym_thread_local] = ACTIONS(2889), - [anon_sym___thread] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_constexpr] = ACTIONS(2889), - [anon_sym_volatile] = ACTIONS(2889), - [anon_sym_restrict] = ACTIONS(2889), - [anon_sym___restrict__] = ACTIONS(2889), - [anon_sym__Atomic] = ACTIONS(2889), - [anon_sym__Noreturn] = ACTIONS(2889), - [anon_sym_noreturn] = ACTIONS(2889), - [anon_sym_mutable] = ACTIONS(2889), - [anon_sym_constinit] = ACTIONS(2889), - [anon_sym_consteval] = ACTIONS(2889), - [sym_primitive_type] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_union] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_do] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_goto] = ACTIONS(2889), - [anon_sym___try] = ACTIONS(2889), - [anon_sym___leave] = ACTIONS(2889), - [anon_sym_not] = ACTIONS(2889), - [anon_sym_compl] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_sizeof] = ACTIONS(2889), - [anon_sym___alignof__] = ACTIONS(2889), - [anon_sym___alignof] = ACTIONS(2889), - [anon_sym__alignof] = ACTIONS(2889), - [anon_sym_alignof] = ACTIONS(2889), - [anon_sym__Alignof] = ACTIONS(2889), - [anon_sym_offsetof] = ACTIONS(2889), - [anon_sym__Generic] = ACTIONS(2889), - [anon_sym_asm] = ACTIONS(2889), - [anon_sym___asm__] = ACTIONS(2889), - [sym_number_literal] = ACTIONS(2891), - [anon_sym_L_SQUOTE] = ACTIONS(2891), - [anon_sym_u_SQUOTE] = ACTIONS(2891), - [anon_sym_U_SQUOTE] = ACTIONS(2891), - [anon_sym_u8_SQUOTE] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2891), - [anon_sym_L_DQUOTE] = ACTIONS(2891), - [anon_sym_u_DQUOTE] = ACTIONS(2891), - [anon_sym_U_DQUOTE] = ACTIONS(2891), - [anon_sym_u8_DQUOTE] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2891), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [anon_sym_NULL] = ACTIONS(2889), - [anon_sym_nullptr] = ACTIONS(2889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2889), - [anon_sym_decltype] = ACTIONS(2889), - [anon_sym_virtual] = ACTIONS(2889), - [anon_sym_alignas] = ACTIONS(2889), - [anon_sym_typename] = ACTIONS(2889), - [anon_sym_template] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_co_return] = ACTIONS(2889), - [anon_sym_co_yield] = ACTIONS(2889), - [anon_sym_R_DQUOTE] = ACTIONS(2891), - [anon_sym_LR_DQUOTE] = ACTIONS(2891), - [anon_sym_uR_DQUOTE] = ACTIONS(2891), - [anon_sym_UR_DQUOTE] = ACTIONS(2891), - [anon_sym_u8R_DQUOTE] = ACTIONS(2891), - [anon_sym_co_await] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_requires] = ACTIONS(2889), - [sym_this] = ACTIONS(2889), - }, - [1151] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1152] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), - }, - [1153] = { - [sym_identifier] = ACTIONS(2859), - [anon_sym_LPAREN2] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym___extension__] = ACTIONS(2859), - [anon_sym_typedef] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym___attribute__] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2861), - [anon_sym___declspec] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_signed] = ACTIONS(2859), - [anon_sym_unsigned] = ACTIONS(2859), - [anon_sym_long] = ACTIONS(2859), - [anon_sym_short] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_register] = ACTIONS(2859), - [anon_sym_inline] = ACTIONS(2859), - [anon_sym___inline] = ACTIONS(2859), - [anon_sym___inline__] = ACTIONS(2859), - [anon_sym___forceinline] = ACTIONS(2859), - [anon_sym_thread_local] = ACTIONS(2859), - [anon_sym___thread] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_constexpr] = ACTIONS(2859), - [anon_sym_volatile] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2859), - [anon_sym___restrict__] = ACTIONS(2859), - [anon_sym__Atomic] = ACTIONS(2859), - [anon_sym__Noreturn] = ACTIONS(2859), - [anon_sym_noreturn] = ACTIONS(2859), - [anon_sym_mutable] = ACTIONS(2859), - [anon_sym_constinit] = ACTIONS(2859), - [anon_sym_consteval] = ACTIONS(2859), - [sym_primitive_type] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_switch] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_do] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_goto] = ACTIONS(2859), - [anon_sym___try] = ACTIONS(2859), - [anon_sym___leave] = ACTIONS(2859), - [anon_sym_not] = ACTIONS(2859), - [anon_sym_compl] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_sizeof] = ACTIONS(2859), - [anon_sym___alignof__] = ACTIONS(2859), - [anon_sym___alignof] = ACTIONS(2859), - [anon_sym__alignof] = ACTIONS(2859), - [anon_sym_alignof] = ACTIONS(2859), - [anon_sym__Alignof] = ACTIONS(2859), - [anon_sym_offsetof] = ACTIONS(2859), - [anon_sym__Generic] = ACTIONS(2859), - [anon_sym_asm] = ACTIONS(2859), - [anon_sym___asm__] = ACTIONS(2859), - [sym_number_literal] = ACTIONS(2861), - [anon_sym_L_SQUOTE] = ACTIONS(2861), - [anon_sym_u_SQUOTE] = ACTIONS(2861), - [anon_sym_U_SQUOTE] = ACTIONS(2861), - [anon_sym_u8_SQUOTE] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_L_DQUOTE] = ACTIONS(2861), - [anon_sym_u_DQUOTE] = ACTIONS(2861), - [anon_sym_U_DQUOTE] = ACTIONS(2861), - [anon_sym_u8_DQUOTE] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_true] = ACTIONS(2859), - [sym_false] = ACTIONS(2859), - [anon_sym_NULL] = ACTIONS(2859), - [anon_sym_nullptr] = ACTIONS(2859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2859), - [anon_sym_decltype] = ACTIONS(2859), - [anon_sym_virtual] = ACTIONS(2859), - [anon_sym_alignas] = ACTIONS(2859), - [anon_sym_typename] = ACTIONS(2859), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_throw] = ACTIONS(2859), - [anon_sym_co_return] = ACTIONS(2859), - [anon_sym_co_yield] = ACTIONS(2859), - [anon_sym_R_DQUOTE] = ACTIONS(2861), - [anon_sym_LR_DQUOTE] = ACTIONS(2861), - [anon_sym_uR_DQUOTE] = ACTIONS(2861), - [anon_sym_UR_DQUOTE] = ACTIONS(2861), - [anon_sym_u8R_DQUOTE] = ACTIONS(2861), - [anon_sym_co_await] = ACTIONS(2859), - [anon_sym_new] = ACTIONS(2859), - [anon_sym_requires] = ACTIONS(2859), - [sym_this] = ACTIONS(2859), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1154] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1113] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1155] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1114] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1156] = { - [sym_identifier] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_goto] = ACTIONS(2885), - [anon_sym___try] = ACTIONS(2885), - [anon_sym___leave] = ACTIONS(2885), - [anon_sym_not] = ACTIONS(2885), - [anon_sym_compl] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_sizeof] = ACTIONS(2885), - [anon_sym___alignof__] = ACTIONS(2885), - [anon_sym___alignof] = ACTIONS(2885), - [anon_sym__alignof] = ACTIONS(2885), - [anon_sym_alignof] = ACTIONS(2885), - [anon_sym__Alignof] = ACTIONS(2885), - [anon_sym_offsetof] = ACTIONS(2885), - [anon_sym__Generic] = ACTIONS(2885), - [anon_sym_asm] = ACTIONS(2885), - [anon_sym___asm__] = ACTIONS(2885), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_L_SQUOTE] = ACTIONS(2887), - [anon_sym_u_SQUOTE] = ACTIONS(2887), - [anon_sym_U_SQUOTE] = ACTIONS(2887), - [anon_sym_u8_SQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_L_DQUOTE] = ACTIONS(2887), - [anon_sym_u_DQUOTE] = ACTIONS(2887), - [anon_sym_U_DQUOTE] = ACTIONS(2887), - [anon_sym_u8_DQUOTE] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [anon_sym_NULL] = ACTIONS(2885), - [anon_sym_nullptr] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_co_return] = ACTIONS(2885), - [anon_sym_co_yield] = ACTIONS(2885), - [anon_sym_R_DQUOTE] = ACTIONS(2887), - [anon_sym_LR_DQUOTE] = ACTIONS(2887), - [anon_sym_uR_DQUOTE] = ACTIONS(2887), - [anon_sym_UR_DQUOTE] = ACTIONS(2887), - [anon_sym_u8R_DQUOTE] = ACTIONS(2887), - [anon_sym_co_await] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_requires] = ACTIONS(2885), - [sym_this] = ACTIONS(2885), + [1115] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1157] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1116] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1158] = { - [sym_identifier] = ACTIONS(2933), - [anon_sym_LPAREN2] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym___extension__] = ACTIONS(2933), - [anon_sym_typedef] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym___attribute__] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_signed] = ACTIONS(2933), - [anon_sym_unsigned] = ACTIONS(2933), - [anon_sym_long] = ACTIONS(2933), - [anon_sym_short] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_register] = ACTIONS(2933), - [anon_sym_inline] = ACTIONS(2933), - [anon_sym___inline] = ACTIONS(2933), - [anon_sym___inline__] = ACTIONS(2933), - [anon_sym___forceinline] = ACTIONS(2933), - [anon_sym_thread_local] = ACTIONS(2933), - [anon_sym___thread] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_constexpr] = ACTIONS(2933), - [anon_sym_volatile] = ACTIONS(2933), - [anon_sym_restrict] = ACTIONS(2933), - [anon_sym___restrict__] = ACTIONS(2933), - [anon_sym__Atomic] = ACTIONS(2933), - [anon_sym__Noreturn] = ACTIONS(2933), - [anon_sym_noreturn] = ACTIONS(2933), - [anon_sym_mutable] = ACTIONS(2933), - [anon_sym_constinit] = ACTIONS(2933), - [anon_sym_consteval] = ACTIONS(2933), - [sym_primitive_type] = ACTIONS(2933), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2933), - [anon_sym_switch] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_do] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_goto] = ACTIONS(2933), - [anon_sym___try] = ACTIONS(2933), - [anon_sym___leave] = ACTIONS(2933), - [anon_sym_not] = ACTIONS(2933), - [anon_sym_compl] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(2933), - [anon_sym___alignof__] = ACTIONS(2933), - [anon_sym___alignof] = ACTIONS(2933), - [anon_sym__alignof] = ACTIONS(2933), - [anon_sym_alignof] = ACTIONS(2933), - [anon_sym__Alignof] = ACTIONS(2933), - [anon_sym_offsetof] = ACTIONS(2933), - [anon_sym__Generic] = ACTIONS(2933), - [anon_sym_asm] = ACTIONS(2933), - [anon_sym___asm__] = ACTIONS(2933), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_L_SQUOTE] = ACTIONS(2935), - [anon_sym_u_SQUOTE] = ACTIONS(2935), - [anon_sym_U_SQUOTE] = ACTIONS(2935), - [anon_sym_u8_SQUOTE] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_L_DQUOTE] = ACTIONS(2935), - [anon_sym_u_DQUOTE] = ACTIONS(2935), - [anon_sym_U_DQUOTE] = ACTIONS(2935), - [anon_sym_u8_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_true] = ACTIONS(2933), - [sym_false] = ACTIONS(2933), - [anon_sym_NULL] = ACTIONS(2933), - [anon_sym_nullptr] = ACTIONS(2933), + [1117] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2933), - [anon_sym_decltype] = ACTIONS(2933), - [anon_sym_virtual] = ACTIONS(2933), - [anon_sym_alignas] = ACTIONS(2933), - [anon_sym_typename] = ACTIONS(2933), - [anon_sym_template] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2933), - [anon_sym_delete] = ACTIONS(2933), - [anon_sym_throw] = ACTIONS(2933), - [anon_sym_co_return] = ACTIONS(2933), - [anon_sym_co_yield] = ACTIONS(2933), - [anon_sym_R_DQUOTE] = ACTIONS(2935), - [anon_sym_LR_DQUOTE] = ACTIONS(2935), - [anon_sym_uR_DQUOTE] = ACTIONS(2935), - [anon_sym_UR_DQUOTE] = ACTIONS(2935), - [anon_sym_u8R_DQUOTE] = ACTIONS(2935), - [anon_sym_co_await] = ACTIONS(2933), - [anon_sym_new] = ACTIONS(2933), - [anon_sym_requires] = ACTIONS(2933), - [sym_this] = ACTIONS(2933), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1159] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1118] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1160] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1119] = { + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN2] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_SEMI] = ACTIONS(2943), + [anon_sym___extension__] = ACTIONS(2941), + [anon_sym_typedef] = ACTIONS(2941), + [anon_sym_extern] = ACTIONS(2941), + [anon_sym___attribute__] = ACTIONS(2941), + [anon_sym_COLON_COLON] = ACTIONS(2943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2943), + [anon_sym___declspec] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_signed] = ACTIONS(2941), + [anon_sym_unsigned] = ACTIONS(2941), + [anon_sym_long] = ACTIONS(2941), + [anon_sym_short] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_static] = ACTIONS(2941), + [anon_sym_register] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2941), + [anon_sym___inline] = ACTIONS(2941), + [anon_sym___inline__] = ACTIONS(2941), + [anon_sym___forceinline] = ACTIONS(2941), + [anon_sym_thread_local] = ACTIONS(2941), + [anon_sym___thread] = ACTIONS(2941), + [anon_sym_const] = ACTIONS(2941), + [anon_sym_constexpr] = ACTIONS(2941), + [anon_sym_volatile] = ACTIONS(2941), + [anon_sym_restrict] = ACTIONS(2941), + [anon_sym___restrict__] = ACTIONS(2941), + [anon_sym__Atomic] = ACTIONS(2941), + [anon_sym__Noreturn] = ACTIONS(2941), + [anon_sym_noreturn] = ACTIONS(2941), + [anon_sym_mutable] = ACTIONS(2941), + [anon_sym_constinit] = ACTIONS(2941), + [anon_sym_consteval] = ACTIONS(2941), + [sym_primitive_type] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2941), + [anon_sym_class] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_else] = ACTIONS(2941), + [anon_sym_switch] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_goto] = ACTIONS(2941), + [anon_sym___try] = ACTIONS(2941), + [anon_sym___leave] = ACTIONS(2941), + [anon_sym_not] = ACTIONS(2941), + [anon_sym_compl] = ACTIONS(2941), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_sizeof] = ACTIONS(2941), + [anon_sym___alignof__] = ACTIONS(2941), + [anon_sym___alignof] = ACTIONS(2941), + [anon_sym__alignof] = ACTIONS(2941), + [anon_sym_alignof] = ACTIONS(2941), + [anon_sym__Alignof] = ACTIONS(2941), + [anon_sym_offsetof] = ACTIONS(2941), + [anon_sym__Generic] = ACTIONS(2941), + [anon_sym_asm] = ACTIONS(2941), + [anon_sym___asm__] = ACTIONS(2941), + [sym_number_literal] = ACTIONS(2943), + [anon_sym_L_SQUOTE] = ACTIONS(2943), + [anon_sym_u_SQUOTE] = ACTIONS(2943), + [anon_sym_U_SQUOTE] = ACTIONS(2943), + [anon_sym_u8_SQUOTE] = ACTIONS(2943), + [anon_sym_SQUOTE] = ACTIONS(2943), + [anon_sym_L_DQUOTE] = ACTIONS(2943), + [anon_sym_u_DQUOTE] = ACTIONS(2943), + [anon_sym_U_DQUOTE] = ACTIONS(2943), + [anon_sym_u8_DQUOTE] = ACTIONS(2943), + [anon_sym_DQUOTE] = ACTIONS(2943), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [anon_sym_NULL] = ACTIONS(2941), + [anon_sym_nullptr] = ACTIONS(2941), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2941), + [anon_sym_decltype] = ACTIONS(2941), + [anon_sym_virtual] = ACTIONS(2941), + [anon_sym_alignas] = ACTIONS(2941), + [anon_sym_typename] = ACTIONS(2941), + [anon_sym_template] = ACTIONS(2941), + [anon_sym_try] = ACTIONS(2941), + [anon_sym_delete] = ACTIONS(2941), + [anon_sym_throw] = ACTIONS(2941), + [anon_sym_co_return] = ACTIONS(2941), + [anon_sym_co_yield] = ACTIONS(2941), + [anon_sym_R_DQUOTE] = ACTIONS(2943), + [anon_sym_LR_DQUOTE] = ACTIONS(2943), + [anon_sym_uR_DQUOTE] = ACTIONS(2943), + [anon_sym_UR_DQUOTE] = ACTIONS(2943), + [anon_sym_u8R_DQUOTE] = ACTIONS(2943), + [anon_sym_co_await] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_requires] = ACTIONS(2941), + [sym_this] = ACTIONS(2941), }, - [1161] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1120] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [1162] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1163] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1121] = { + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN2] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2963), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2963), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym___extension__] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym___attribute__] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), + [anon_sym___declspec] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_signed] = ACTIONS(2961), + [anon_sym_unsigned] = ACTIONS(2961), + [anon_sym_long] = ACTIONS(2961), + [anon_sym_short] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_register] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym___inline] = ACTIONS(2961), + [anon_sym___inline__] = ACTIONS(2961), + [anon_sym___forceinline] = ACTIONS(2961), + [anon_sym_thread_local] = ACTIONS(2961), + [anon_sym___thread] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_constexpr] = ACTIONS(2961), + [anon_sym_volatile] = ACTIONS(2961), + [anon_sym_restrict] = ACTIONS(2961), + [anon_sym___restrict__] = ACTIONS(2961), + [anon_sym__Atomic] = ACTIONS(2961), + [anon_sym__Noreturn] = ACTIONS(2961), + [anon_sym_noreturn] = ACTIONS(2961), + [anon_sym_mutable] = ACTIONS(2961), + [anon_sym_constinit] = ACTIONS(2961), + [anon_sym_consteval] = ACTIONS(2961), + [sym_primitive_type] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_else] = ACTIONS(2961), + [anon_sym_switch] = ACTIONS(2961), + [anon_sym_while] = ACTIONS(2961), + [anon_sym_do] = ACTIONS(2961), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_goto] = ACTIONS(2961), + [anon_sym___try] = ACTIONS(2961), + [anon_sym___leave] = ACTIONS(2961), + [anon_sym_not] = ACTIONS(2961), + [anon_sym_compl] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2963), + [anon_sym_PLUS_PLUS] = ACTIONS(2963), + [anon_sym_sizeof] = ACTIONS(2961), + [anon_sym___alignof__] = ACTIONS(2961), + [anon_sym___alignof] = ACTIONS(2961), + [anon_sym__alignof] = ACTIONS(2961), + [anon_sym_alignof] = ACTIONS(2961), + [anon_sym__Alignof] = ACTIONS(2961), + [anon_sym_offsetof] = ACTIONS(2961), + [anon_sym__Generic] = ACTIONS(2961), + [anon_sym_asm] = ACTIONS(2961), + [anon_sym___asm__] = ACTIONS(2961), + [sym_number_literal] = ACTIONS(2963), + [anon_sym_L_SQUOTE] = ACTIONS(2963), + [anon_sym_u_SQUOTE] = ACTIONS(2963), + [anon_sym_U_SQUOTE] = ACTIONS(2963), + [anon_sym_u8_SQUOTE] = ACTIONS(2963), + [anon_sym_SQUOTE] = ACTIONS(2963), + [anon_sym_L_DQUOTE] = ACTIONS(2963), + [anon_sym_u_DQUOTE] = ACTIONS(2963), + [anon_sym_U_DQUOTE] = ACTIONS(2963), + [anon_sym_u8_DQUOTE] = ACTIONS(2963), + [anon_sym_DQUOTE] = ACTIONS(2963), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [anon_sym_NULL] = ACTIONS(2961), + [anon_sym_nullptr] = ACTIONS(2961), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2961), + [anon_sym_virtual] = ACTIONS(2961), + [anon_sym_alignas] = ACTIONS(2961), + [anon_sym_typename] = ACTIONS(2961), + [anon_sym_template] = ACTIONS(2961), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2961), + [anon_sym_throw] = ACTIONS(2961), + [anon_sym_co_return] = ACTIONS(2961), + [anon_sym_co_yield] = ACTIONS(2961), + [anon_sym_R_DQUOTE] = ACTIONS(2963), + [anon_sym_LR_DQUOTE] = ACTIONS(2963), + [anon_sym_uR_DQUOTE] = ACTIONS(2963), + [anon_sym_UR_DQUOTE] = ACTIONS(2963), + [anon_sym_u8R_DQUOTE] = ACTIONS(2963), + [anon_sym_co_await] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_requires] = ACTIONS(2961), + [sym_this] = ACTIONS(2961), }, - [1164] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1122] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1165] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1123] = { + [sym_identifier] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_else] = ACTIONS(2965), + [anon_sym_switch] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2965), + [anon_sym_do] = ACTIONS(2965), + [anon_sym_for] = ACTIONS(2965), + [anon_sym_return] = ACTIONS(2965), + [anon_sym_break] = ACTIONS(2965), + [anon_sym_continue] = ACTIONS(2965), + [anon_sym_goto] = ACTIONS(2965), + [anon_sym___try] = ACTIONS(2965), + [anon_sym___leave] = ACTIONS(2965), + [anon_sym_not] = ACTIONS(2965), + [anon_sym_compl] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_sizeof] = ACTIONS(2965), + [anon_sym___alignof__] = ACTIONS(2965), + [anon_sym___alignof] = ACTIONS(2965), + [anon_sym__alignof] = ACTIONS(2965), + [anon_sym_alignof] = ACTIONS(2965), + [anon_sym__Alignof] = ACTIONS(2965), + [anon_sym_offsetof] = ACTIONS(2965), + [anon_sym__Generic] = ACTIONS(2965), + [anon_sym_asm] = ACTIONS(2965), + [anon_sym___asm__] = ACTIONS(2965), + [sym_number_literal] = ACTIONS(2967), + [anon_sym_L_SQUOTE] = ACTIONS(2967), + [anon_sym_u_SQUOTE] = ACTIONS(2967), + [anon_sym_U_SQUOTE] = ACTIONS(2967), + [anon_sym_u8_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_L_DQUOTE] = ACTIONS(2967), + [anon_sym_u_DQUOTE] = ACTIONS(2967), + [anon_sym_U_DQUOTE] = ACTIONS(2967), + [anon_sym_u8_DQUOTE] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2967), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [anon_sym_NULL] = ACTIONS(2965), + [anon_sym_nullptr] = ACTIONS(2965), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_try] = ACTIONS(2965), + [anon_sym_delete] = ACTIONS(2965), + [anon_sym_throw] = ACTIONS(2965), + [anon_sym_co_return] = ACTIONS(2965), + [anon_sym_co_yield] = ACTIONS(2965), + [anon_sym_R_DQUOTE] = ACTIONS(2967), + [anon_sym_LR_DQUOTE] = ACTIONS(2967), + [anon_sym_uR_DQUOTE] = ACTIONS(2967), + [anon_sym_UR_DQUOTE] = ACTIONS(2967), + [anon_sym_u8R_DQUOTE] = ACTIONS(2967), + [anon_sym_co_await] = ACTIONS(2965), + [anon_sym_new] = ACTIONS(2965), + [anon_sym_requires] = ACTIONS(2965), + [sym_this] = ACTIONS(2965), }, - [1166] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1124] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1167] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [1168] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [1169] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [1170] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [1171] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [1172] = { - [sym_identifier] = 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] = ACTIONS(4022), - [anon_sym_SEMI] = ACTIONS(4022), - [anon_sym___extension__] = ACTIONS(4020), - [anon_sym_extern] = ACTIONS(4020), - [anon_sym___attribute__] = ACTIONS(4020), - [anon_sym_COLON_COLON] = ACTIONS(4022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), - [anon_sym___declspec] = 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_mutable] = ACTIONS(4020), - [anon_sym_constinit] = ACTIONS(4020), - [anon_sym_consteval] = 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_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_virtual] = ACTIONS(4020), - [anon_sym_alignas] = ACTIONS(4020), - [anon_sym_typename] = ACTIONS(4020), - [anon_sym_template] = ACTIONS(4020), - [anon_sym_try] = ACTIONS(4020), - [anon_sym_delete] = ACTIONS(4020), - [anon_sym_throw] = 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), - [sym_this] = ACTIONS(4020), - }, - [1173] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [1174] = { - [sym_identifier] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym___extension__] = ACTIONS(2957), - [anon_sym_typedef] = ACTIONS(2957), - [anon_sym_extern] = ACTIONS(2957), - [anon_sym___attribute__] = ACTIONS(2957), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), - [anon_sym___declspec] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_signed] = ACTIONS(2957), - [anon_sym_unsigned] = ACTIONS(2957), - [anon_sym_long] = ACTIONS(2957), - [anon_sym_short] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_register] = ACTIONS(2957), - [anon_sym_inline] = ACTIONS(2957), - [anon_sym___inline] = ACTIONS(2957), - [anon_sym___inline__] = ACTIONS(2957), - [anon_sym___forceinline] = ACTIONS(2957), - [anon_sym_thread_local] = ACTIONS(2957), - [anon_sym___thread] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_constexpr] = ACTIONS(2957), - [anon_sym_volatile] = ACTIONS(2957), - [anon_sym_restrict] = ACTIONS(2957), - [anon_sym___restrict__] = ACTIONS(2957), - [anon_sym__Atomic] = ACTIONS(2957), - [anon_sym__Noreturn] = ACTIONS(2957), - [anon_sym_noreturn] = ACTIONS(2957), - [anon_sym_mutable] = ACTIONS(2957), - [anon_sym_constinit] = ACTIONS(2957), - [anon_sym_consteval] = ACTIONS(2957), - [sym_primitive_type] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2957), - [anon_sym_switch] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_do] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_goto] = ACTIONS(2957), - [anon_sym___try] = ACTIONS(2957), - [anon_sym___leave] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2957), - [anon_sym_compl] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2957), - [anon_sym___alignof__] = ACTIONS(2957), - [anon_sym___alignof] = ACTIONS(2957), - [anon_sym__alignof] = ACTIONS(2957), - [anon_sym_alignof] = ACTIONS(2957), - [anon_sym__Alignof] = ACTIONS(2957), - [anon_sym_offsetof] = ACTIONS(2957), - [anon_sym__Generic] = ACTIONS(2957), - [anon_sym_asm] = ACTIONS(2957), - [anon_sym___asm__] = ACTIONS(2957), - [sym_number_literal] = ACTIONS(2959), - [anon_sym_L_SQUOTE] = ACTIONS(2959), - [anon_sym_u_SQUOTE] = ACTIONS(2959), - [anon_sym_U_SQUOTE] = ACTIONS(2959), - [anon_sym_u8_SQUOTE] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_L_DQUOTE] = ACTIONS(2959), - [anon_sym_u_DQUOTE] = ACTIONS(2959), - [anon_sym_U_DQUOTE] = ACTIONS(2959), - [anon_sym_u8_DQUOTE] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [anon_sym_NULL] = ACTIONS(2957), - [anon_sym_nullptr] = ACTIONS(2957), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2957), - [anon_sym_decltype] = ACTIONS(2957), - [anon_sym_virtual] = ACTIONS(2957), - [anon_sym_alignas] = ACTIONS(2957), - [anon_sym_typename] = ACTIONS(2957), - [anon_sym_template] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [anon_sym_delete] = ACTIONS(2957), - [anon_sym_throw] = ACTIONS(2957), - [anon_sym_co_return] = ACTIONS(2957), - [anon_sym_co_yield] = ACTIONS(2957), - [anon_sym_R_DQUOTE] = ACTIONS(2959), - [anon_sym_LR_DQUOTE] = ACTIONS(2959), - [anon_sym_uR_DQUOTE] = ACTIONS(2959), - [anon_sym_UR_DQUOTE] = ACTIONS(2959), - [anon_sym_u8R_DQUOTE] = ACTIONS(2959), - [anon_sym_co_await] = ACTIONS(2957), - [anon_sym_new] = ACTIONS(2957), - [anon_sym_requires] = ACTIONS(2957), - [sym_this] = ACTIONS(2957), - }, - [1175] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [1176] = { - [sym_identifier] = ACTIONS(4024), - [anon_sym_LPAREN2] = ACTIONS(4030), - [anon_sym_BANG] = ACTIONS(4030), - [anon_sym_TILDE] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4032), - [anon_sym_STAR] = ACTIONS(4030), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4030), - [anon_sym___extension__] = ACTIONS(4036), - [anon_sym_extern] = ACTIONS(4036), - [anon_sym___attribute__] = ACTIONS(4036), - [anon_sym_COLON_COLON] = ACTIONS(4027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4027), - [anon_sym___declspec] = ACTIONS(4036), - [anon_sym_LBRACE] = ACTIONS(4030), - [anon_sym_signed] = ACTIONS(4036), - [anon_sym_unsigned] = ACTIONS(4036), - [anon_sym_long] = ACTIONS(4036), - [anon_sym_short] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4032), - [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_mutable] = ACTIONS(4036), - [anon_sym_constinit] = ACTIONS(4036), - [anon_sym_consteval] = ACTIONS(4036), - [sym_primitive_type] = ACTIONS(4024), - [anon_sym_enum] = ACTIONS(4036), - [anon_sym_class] = ACTIONS(4036), - [anon_sym_struct] = ACTIONS(4036), - [anon_sym_union] = ACTIONS(4036), - [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(4030), - [anon_sym_PLUS_PLUS] = ACTIONS(4030), - [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_asm] = ACTIONS(4032), - [anon_sym___asm__] = ACTIONS(4032), - [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(4032), - [sym_false] = ACTIONS(4032), - [anon_sym_NULL] = ACTIONS(4032), - [anon_sym_nullptr] = ACTIONS(4032), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4036), - [anon_sym_decltype] = ACTIONS(4024), - [anon_sym_virtual] = ACTIONS(4036), - [anon_sym_alignas] = ACTIONS(4036), - [anon_sym_typename] = ACTIONS(4036), - [anon_sym_template] = ACTIONS(4024), - [anon_sym_try] = ACTIONS(4032), - [anon_sym_delete] = ACTIONS(4032), - [anon_sym_throw] = ACTIONS(4032), - [anon_sym_co_return] = ACTIONS(4032), - [anon_sym_co_yield] = ACTIONS(4032), - [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(4032), - [anon_sym_new] = ACTIONS(4032), - [anon_sym_requires] = ACTIONS(4032), - [sym_this] = ACTIONS(4032), - }, - [1177] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [1178] = { + [1125] = { [sym_identifier] = ACTIONS(2867), [anon_sym_LPAREN2] = ACTIONS(2869), [anon_sym_BANG] = ACTIONS(2869), @@ -247263,5736 +241740,6324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2867), [sym_this] = ACTIONS(2867), }, - [1179] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1126] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - }, - [1180] = { - [sym_identifier] = ACTIONS(2893), - [anon_sym_LPAREN2] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym___extension__] = ACTIONS(2893), - [anon_sym_typedef] = ACTIONS(2893), - [anon_sym_extern] = ACTIONS(2893), - [anon_sym___attribute__] = ACTIONS(2893), - [anon_sym_COLON_COLON] = ACTIONS(2895), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2895), - [anon_sym___declspec] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_signed] = ACTIONS(2893), - [anon_sym_unsigned] = ACTIONS(2893), - [anon_sym_long] = ACTIONS(2893), - [anon_sym_short] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_register] = ACTIONS(2893), - [anon_sym_inline] = ACTIONS(2893), - [anon_sym___inline] = ACTIONS(2893), - [anon_sym___inline__] = ACTIONS(2893), - [anon_sym___forceinline] = ACTIONS(2893), - [anon_sym_thread_local] = ACTIONS(2893), - [anon_sym___thread] = ACTIONS(2893), - [anon_sym_const] = ACTIONS(2893), - [anon_sym_constexpr] = ACTIONS(2893), - [anon_sym_volatile] = ACTIONS(2893), - [anon_sym_restrict] = ACTIONS(2893), - [anon_sym___restrict__] = ACTIONS(2893), - [anon_sym__Atomic] = ACTIONS(2893), - [anon_sym__Noreturn] = ACTIONS(2893), - [anon_sym_noreturn] = ACTIONS(2893), - [anon_sym_mutable] = ACTIONS(2893), - [anon_sym_constinit] = ACTIONS(2893), - [anon_sym_consteval] = ACTIONS(2893), - [sym_primitive_type] = ACTIONS(2893), - [anon_sym_enum] = ACTIONS(2893), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2893), - [anon_sym_union] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_else] = ACTIONS(2893), - [anon_sym_switch] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_do] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2893), - [anon_sym_continue] = ACTIONS(2893), - [anon_sym_goto] = ACTIONS(2893), - [anon_sym___try] = ACTIONS(2893), - [anon_sym___leave] = ACTIONS(2893), - [anon_sym_not] = ACTIONS(2893), - [anon_sym_compl] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_sizeof] = ACTIONS(2893), - [anon_sym___alignof__] = ACTIONS(2893), - [anon_sym___alignof] = ACTIONS(2893), - [anon_sym__alignof] = ACTIONS(2893), - [anon_sym_alignof] = ACTIONS(2893), - [anon_sym__Alignof] = ACTIONS(2893), - [anon_sym_offsetof] = ACTIONS(2893), - [anon_sym__Generic] = ACTIONS(2893), - [anon_sym_asm] = ACTIONS(2893), - [anon_sym___asm__] = ACTIONS(2893), - [sym_number_literal] = ACTIONS(2895), - [anon_sym_L_SQUOTE] = ACTIONS(2895), - [anon_sym_u_SQUOTE] = ACTIONS(2895), - [anon_sym_U_SQUOTE] = ACTIONS(2895), - [anon_sym_u8_SQUOTE] = ACTIONS(2895), - [anon_sym_SQUOTE] = ACTIONS(2895), - [anon_sym_L_DQUOTE] = ACTIONS(2895), - [anon_sym_u_DQUOTE] = ACTIONS(2895), - [anon_sym_U_DQUOTE] = ACTIONS(2895), - [anon_sym_u8_DQUOTE] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [sym_true] = ACTIONS(2893), - [sym_false] = ACTIONS(2893), - [anon_sym_NULL] = ACTIONS(2893), - [anon_sym_nullptr] = ACTIONS(2893), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2893), - [anon_sym_decltype] = ACTIONS(2893), - [anon_sym_virtual] = ACTIONS(2893), - [anon_sym_alignas] = ACTIONS(2893), - [anon_sym_typename] = ACTIONS(2893), - [anon_sym_template] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [anon_sym_delete] = ACTIONS(2893), - [anon_sym_throw] = ACTIONS(2893), - [anon_sym_co_return] = ACTIONS(2893), - [anon_sym_co_yield] = ACTIONS(2893), - [anon_sym_R_DQUOTE] = ACTIONS(2895), - [anon_sym_LR_DQUOTE] = ACTIONS(2895), - [anon_sym_uR_DQUOTE] = ACTIONS(2895), - [anon_sym_UR_DQUOTE] = ACTIONS(2895), - [anon_sym_u8R_DQUOTE] = ACTIONS(2895), - [anon_sym_co_await] = ACTIONS(2893), - [anon_sym_new] = ACTIONS(2893), - [anon_sym_requires] = ACTIONS(2893), - [sym_this] = ACTIONS(2893), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1181] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym___extension__] = ACTIONS(2969), - [anon_sym_typedef] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym___inline] = ACTIONS(2969), - [anon_sym___inline__] = ACTIONS(2969), - [anon_sym___forceinline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym___thread] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym___restrict__] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym__Noreturn] = ACTIONS(2969), - [anon_sym_noreturn] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2969), - [anon_sym_switch] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_do] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_goto] = ACTIONS(2969), - [anon_sym___try] = ACTIONS(2969), - [anon_sym___leave] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_sizeof] = ACTIONS(2969), - [anon_sym___alignof__] = ACTIONS(2969), - [anon_sym___alignof] = ACTIONS(2969), - [anon_sym__alignof] = ACTIONS(2969), - [anon_sym_alignof] = ACTIONS(2969), - [anon_sym__Alignof] = ACTIONS(2969), - [anon_sym_offsetof] = ACTIONS(2969), - [anon_sym__Generic] = ACTIONS(2969), - [anon_sym_asm] = ACTIONS(2969), - [anon_sym___asm__] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2971), - [anon_sym_L_SQUOTE] = ACTIONS(2971), - [anon_sym_u_SQUOTE] = ACTIONS(2971), - [anon_sym_U_SQUOTE] = ACTIONS(2971), - [anon_sym_u8_SQUOTE] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2971), - [anon_sym_L_DQUOTE] = ACTIONS(2971), - [anon_sym_u_DQUOTE] = ACTIONS(2971), - [anon_sym_U_DQUOTE] = ACTIONS(2971), - [anon_sym_u8_DQUOTE] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [anon_sym_NULL] = ACTIONS(2969), - [anon_sym_nullptr] = ACTIONS(2969), + [1127] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_alignas] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_throw] = ACTIONS(2969), - [anon_sym_co_return] = ACTIONS(2969), - [anon_sym_co_yield] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2971), - [anon_sym_LR_DQUOTE] = ACTIONS(2971), - [anon_sym_uR_DQUOTE] = ACTIONS(2971), - [anon_sym_UR_DQUOTE] = ACTIONS(2971), - [anon_sym_u8R_DQUOTE] = ACTIONS(2971), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1182] = { - [sym_identifier] = ACTIONS(2965), - [anon_sym_LPAREN2] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym___extension__] = ACTIONS(2965), - [anon_sym_typedef] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym___attribute__] = ACTIONS(2965), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), - [anon_sym___declspec] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_signed] = ACTIONS(2965), - [anon_sym_unsigned] = ACTIONS(2965), - [anon_sym_long] = ACTIONS(2965), - [anon_sym_short] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_register] = ACTIONS(2965), - [anon_sym_inline] = ACTIONS(2965), - [anon_sym___inline] = ACTIONS(2965), - [anon_sym___inline__] = ACTIONS(2965), - [anon_sym___forceinline] = ACTIONS(2965), - [anon_sym_thread_local] = ACTIONS(2965), - [anon_sym___thread] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_constexpr] = ACTIONS(2965), - [anon_sym_volatile] = ACTIONS(2965), - [anon_sym_restrict] = ACTIONS(2965), - [anon_sym___restrict__] = ACTIONS(2965), - [anon_sym__Atomic] = ACTIONS(2965), - [anon_sym__Noreturn] = ACTIONS(2965), - [anon_sym_noreturn] = ACTIONS(2965), - [anon_sym_mutable] = ACTIONS(2965), - [anon_sym_constinit] = ACTIONS(2965), - [anon_sym_consteval] = ACTIONS(2965), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2965), - [anon_sym_switch] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_do] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym___try] = ACTIONS(2965), - [anon_sym___leave] = ACTIONS(2965), - [anon_sym_not] = ACTIONS(2965), - [anon_sym_compl] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_sizeof] = ACTIONS(2965), - [anon_sym___alignof__] = ACTIONS(2965), - [anon_sym___alignof] = ACTIONS(2965), - [anon_sym__alignof] = ACTIONS(2965), - [anon_sym_alignof] = ACTIONS(2965), - [anon_sym__Alignof] = ACTIONS(2965), - [anon_sym_offsetof] = ACTIONS(2965), - [anon_sym__Generic] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym___asm__] = ACTIONS(2965), - [sym_number_literal] = ACTIONS(2967), - [anon_sym_L_SQUOTE] = ACTIONS(2967), - [anon_sym_u_SQUOTE] = ACTIONS(2967), - [anon_sym_U_SQUOTE] = ACTIONS(2967), - [anon_sym_u8_SQUOTE] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(2967), - [anon_sym_L_DQUOTE] = ACTIONS(2967), - [anon_sym_u_DQUOTE] = ACTIONS(2967), - [anon_sym_U_DQUOTE] = ACTIONS(2967), - [anon_sym_u8_DQUOTE] = ACTIONS(2967), - [anon_sym_DQUOTE] = ACTIONS(2967), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [anon_sym_NULL] = ACTIONS(2965), - [anon_sym_nullptr] = ACTIONS(2965), + [1128] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2965), - [anon_sym_decltype] = ACTIONS(2965), - [anon_sym_virtual] = ACTIONS(2965), - [anon_sym_alignas] = ACTIONS(2965), - [anon_sym_typename] = ACTIONS(2965), - [anon_sym_template] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2965), - [anon_sym_delete] = ACTIONS(2965), - [anon_sym_throw] = ACTIONS(2965), - [anon_sym_co_return] = ACTIONS(2965), - [anon_sym_co_yield] = ACTIONS(2965), - [anon_sym_R_DQUOTE] = ACTIONS(2967), - [anon_sym_LR_DQUOTE] = ACTIONS(2967), - [anon_sym_uR_DQUOTE] = ACTIONS(2967), - [anon_sym_UR_DQUOTE] = ACTIONS(2967), - [anon_sym_u8R_DQUOTE] = ACTIONS(2967), - [anon_sym_co_await] = ACTIONS(2965), - [anon_sym_new] = ACTIONS(2965), - [anon_sym_requires] = ACTIONS(2965), - [sym_this] = ACTIONS(2965), - }, - [1183] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1967), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4141), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4152), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4160), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4139), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4173), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1184] = { - [sym__expression] = STATE(4867), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7863), - [sym_initializer_pair] = STATE(7863), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4179), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4181), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1129] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1185] = { - [sym__expression] = STATE(4773), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7981), - [sym_initializer_pair] = STATE(7981), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4185), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1130] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1186] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4193), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1131] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1187] = { - [sym__expression] = STATE(4846), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7800), - [sym_initializer_pair] = STATE(7800), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4197), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4199), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1132] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1188] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1194), - [sym_compound_requirement] = STATE(1194), - [sym__requirement] = STATE(1194), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1194), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4201), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1133] = { + [sym_identifier] = ACTIONS(4014), + [anon_sym_LPAREN2] = ACTIONS(4016), + [anon_sym_BANG] = ACTIONS(4016), + [anon_sym_TILDE] = ACTIONS(4016), + [anon_sym_DASH] = ACTIONS(4014), + [anon_sym_PLUS] = ACTIONS(4014), + [anon_sym_STAR] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4016), + [anon_sym_SEMI] = ACTIONS(4016), + [anon_sym___extension__] = ACTIONS(4014), + [anon_sym_extern] = ACTIONS(4014), + [anon_sym___attribute__] = ACTIONS(4014), + [anon_sym_COLON_COLON] = ACTIONS(4016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4016), + [anon_sym___declspec] = ACTIONS(4014), + [anon_sym_LBRACE] = ACTIONS(4016), + [anon_sym_signed] = ACTIONS(4014), + [anon_sym_unsigned] = ACTIONS(4014), + [anon_sym_long] = ACTIONS(4014), + [anon_sym_short] = ACTIONS(4014), + [anon_sym_LBRACK] = ACTIONS(4014), + [anon_sym_static] = ACTIONS(4014), + [anon_sym_register] = ACTIONS(4014), + [anon_sym_inline] = ACTIONS(4014), + [anon_sym___inline] = ACTIONS(4014), + [anon_sym___inline__] = ACTIONS(4014), + [anon_sym___forceinline] = ACTIONS(4014), + [anon_sym_thread_local] = ACTIONS(4014), + [anon_sym___thread] = ACTIONS(4014), + [anon_sym_const] = ACTIONS(4014), + [anon_sym_constexpr] = ACTIONS(4014), + [anon_sym_volatile] = ACTIONS(4014), + [anon_sym_restrict] = ACTIONS(4014), + [anon_sym___restrict__] = ACTIONS(4014), + [anon_sym__Atomic] = ACTIONS(4014), + [anon_sym__Noreturn] = ACTIONS(4014), + [anon_sym_noreturn] = ACTIONS(4014), + [anon_sym_mutable] = ACTIONS(4014), + [anon_sym_constinit] = ACTIONS(4014), + [anon_sym_consteval] = ACTIONS(4014), + [sym_primitive_type] = ACTIONS(4014), + [anon_sym_enum] = ACTIONS(4014), + [anon_sym_class] = ACTIONS(4014), + [anon_sym_struct] = ACTIONS(4014), + [anon_sym_union] = ACTIONS(4014), + [anon_sym_if] = ACTIONS(4014), + [anon_sym_switch] = ACTIONS(4014), + [anon_sym_case] = ACTIONS(4014), + [anon_sym_default] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(4014), + [anon_sym_do] = ACTIONS(4014), + [anon_sym_for] = ACTIONS(4014), + [anon_sym_return] = ACTIONS(4014), + [anon_sym_break] = ACTIONS(4014), + [anon_sym_continue] = ACTIONS(4014), + [anon_sym_goto] = ACTIONS(4014), + [anon_sym___try] = ACTIONS(4014), + [anon_sym___leave] = ACTIONS(4014), + [anon_sym_not] = ACTIONS(4014), + [anon_sym_compl] = ACTIONS(4014), + [anon_sym_DASH_DASH] = ACTIONS(4016), + [anon_sym_PLUS_PLUS] = ACTIONS(4016), + [anon_sym_sizeof] = ACTIONS(4014), + [anon_sym___alignof__] = ACTIONS(4014), + [anon_sym___alignof] = ACTIONS(4014), + [anon_sym__alignof] = ACTIONS(4014), + [anon_sym_alignof] = ACTIONS(4014), + [anon_sym__Alignof] = ACTIONS(4014), + [anon_sym_offsetof] = ACTIONS(4014), + [anon_sym__Generic] = ACTIONS(4014), + [anon_sym_asm] = ACTIONS(4014), + [anon_sym___asm__] = ACTIONS(4014), + [sym_number_literal] = ACTIONS(4016), + [anon_sym_L_SQUOTE] = ACTIONS(4016), + [anon_sym_u_SQUOTE] = ACTIONS(4016), + [anon_sym_U_SQUOTE] = ACTIONS(4016), + [anon_sym_u8_SQUOTE] = ACTIONS(4016), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_L_DQUOTE] = ACTIONS(4016), + [anon_sym_u_DQUOTE] = ACTIONS(4016), + [anon_sym_U_DQUOTE] = ACTIONS(4016), + [anon_sym_u8_DQUOTE] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(4016), + [sym_true] = ACTIONS(4014), + [sym_false] = ACTIONS(4014), + [anon_sym_NULL] = ACTIONS(4014), + [anon_sym_nullptr] = ACTIONS(4014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4014), + [anon_sym_decltype] = ACTIONS(4014), + [anon_sym_virtual] = ACTIONS(4014), + [anon_sym_alignas] = ACTIONS(4014), + [anon_sym_typename] = ACTIONS(4014), + [anon_sym_template] = ACTIONS(4014), + [anon_sym_try] = ACTIONS(4014), + [anon_sym_delete] = ACTIONS(4014), + [anon_sym_throw] = ACTIONS(4014), + [anon_sym_co_return] = ACTIONS(4014), + [anon_sym_co_yield] = ACTIONS(4014), + [anon_sym_R_DQUOTE] = ACTIONS(4016), + [anon_sym_LR_DQUOTE] = ACTIONS(4016), + [anon_sym_uR_DQUOTE] = ACTIONS(4016), + [anon_sym_UR_DQUOTE] = ACTIONS(4016), + [anon_sym_u8R_DQUOTE] = ACTIONS(4016), + [anon_sym_co_await] = ACTIONS(4014), + [anon_sym_new] = ACTIONS(4014), + [anon_sym_requires] = ACTIONS(4014), + [sym_this] = ACTIONS(4014), }, - [1189] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4203), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1134] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1190] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1197), - [sym_compound_requirement] = STATE(1197), - [sym__requirement] = STATE(1197), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1197), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4205), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1135] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [1136] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), + }, + [1137] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1191] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1967), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4141), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4152), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4160), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), + [1138] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1192] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(1918), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4152), - [anon_sym_COMMA] = ACTIONS(4152), - [anon_sym_RPAREN] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4145), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_EQ] = ACTIONS(4149), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4212), - [anon_sym_or_eq] = ACTIONS(4212), - [anon_sym_xor_eq] = ACTIONS(4212), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4147), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [anon_sym_R_DQUOTE] = ACTIONS(4216), - [anon_sym_LR_DQUOTE] = ACTIONS(4216), - [anon_sym_uR_DQUOTE] = ACTIONS(4216), - [anon_sym_UR_DQUOTE] = ACTIONS(4216), - [anon_sym_u8R_DQUOTE] = ACTIONS(4216), - [anon_sym_DASH_GT_STAR] = ACTIONS(4139), + [1139] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1193] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4218), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1140] = { + [sym_identifier] = ACTIONS(2909), + [anon_sym_LPAREN2] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2911), + [anon_sym___extension__] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2909), + [anon_sym_extern] = ACTIONS(2909), + [anon_sym___attribute__] = ACTIONS(2909), + [anon_sym_COLON_COLON] = ACTIONS(2911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2911), + [anon_sym___declspec] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(2909), + [anon_sym_unsigned] = ACTIONS(2909), + [anon_sym_long] = ACTIONS(2909), + [anon_sym_short] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2909), + [anon_sym_register] = ACTIONS(2909), + [anon_sym_inline] = ACTIONS(2909), + [anon_sym___inline] = ACTIONS(2909), + [anon_sym___inline__] = ACTIONS(2909), + [anon_sym___forceinline] = ACTIONS(2909), + [anon_sym_thread_local] = ACTIONS(2909), + [anon_sym___thread] = ACTIONS(2909), + [anon_sym_const] = ACTIONS(2909), + [anon_sym_constexpr] = ACTIONS(2909), + [anon_sym_volatile] = ACTIONS(2909), + [anon_sym_restrict] = ACTIONS(2909), + [anon_sym___restrict__] = ACTIONS(2909), + [anon_sym__Atomic] = ACTIONS(2909), + [anon_sym__Noreturn] = ACTIONS(2909), + [anon_sym_noreturn] = ACTIONS(2909), + [anon_sym_mutable] = ACTIONS(2909), + [anon_sym_constinit] = ACTIONS(2909), + [anon_sym_consteval] = ACTIONS(2909), + [sym_primitive_type] = ACTIONS(2909), + [anon_sym_enum] = ACTIONS(2909), + [anon_sym_class] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2909), + [anon_sym_union] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2909), + [anon_sym_switch] = ACTIONS(2909), + [anon_sym_while] = ACTIONS(2909), + [anon_sym_do] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_goto] = ACTIONS(2909), + [anon_sym___try] = ACTIONS(2909), + [anon_sym___leave] = ACTIONS(2909), + [anon_sym_not] = ACTIONS(2909), + [anon_sym_compl] = ACTIONS(2909), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_sizeof] = ACTIONS(2909), + [anon_sym___alignof__] = ACTIONS(2909), + [anon_sym___alignof] = ACTIONS(2909), + [anon_sym__alignof] = ACTIONS(2909), + [anon_sym_alignof] = ACTIONS(2909), + [anon_sym__Alignof] = ACTIONS(2909), + [anon_sym_offsetof] = ACTIONS(2909), + [anon_sym__Generic] = ACTIONS(2909), + [anon_sym_asm] = ACTIONS(2909), + [anon_sym___asm__] = ACTIONS(2909), + [sym_number_literal] = ACTIONS(2911), + [anon_sym_L_SQUOTE] = ACTIONS(2911), + [anon_sym_u_SQUOTE] = ACTIONS(2911), + [anon_sym_U_SQUOTE] = ACTIONS(2911), + [anon_sym_u8_SQUOTE] = ACTIONS(2911), + [anon_sym_SQUOTE] = ACTIONS(2911), + [anon_sym_L_DQUOTE] = ACTIONS(2911), + [anon_sym_u_DQUOTE] = ACTIONS(2911), + [anon_sym_U_DQUOTE] = ACTIONS(2911), + [anon_sym_u8_DQUOTE] = ACTIONS(2911), + [anon_sym_DQUOTE] = ACTIONS(2911), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [anon_sym_NULL] = ACTIONS(2909), + [anon_sym_nullptr] = ACTIONS(2909), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2909), + [anon_sym_decltype] = ACTIONS(2909), + [anon_sym_virtual] = ACTIONS(2909), + [anon_sym_alignas] = ACTIONS(2909), + [anon_sym_typename] = ACTIONS(2909), + [anon_sym_template] = ACTIONS(2909), + [anon_sym_try] = ACTIONS(2909), + [anon_sym_delete] = ACTIONS(2909), + [anon_sym_throw] = ACTIONS(2909), + [anon_sym_co_return] = ACTIONS(2909), + [anon_sym_co_yield] = ACTIONS(2909), + [anon_sym_R_DQUOTE] = ACTIONS(2911), + [anon_sym_LR_DQUOTE] = ACTIONS(2911), + [anon_sym_uR_DQUOTE] = ACTIONS(2911), + [anon_sym_UR_DQUOTE] = ACTIONS(2911), + [anon_sym_u8R_DQUOTE] = ACTIONS(2911), + [anon_sym_co_await] = ACTIONS(2909), + [anon_sym_new] = ACTIONS(2909), + [anon_sym_requires] = ACTIONS(2909), + [sym_this] = ACTIONS(2909), }, - [1194] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4220), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1141] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1195] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4222), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1142] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1196] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1967), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4141), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4152), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4160), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), + [1143] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1197] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1144] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1198] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1195), - [sym_compound_requirement] = STATE(1195), - [sym__requirement] = STATE(1195), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1145] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1199] = { - [sym__expression] = STATE(4822), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7656), - [sym_initializer_pair] = STATE(7656), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4230), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4232), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1146] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1200] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1186), - [sym_compound_requirement] = STATE(1186), - [sym__requirement] = STATE(1186), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1186), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4234), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1147] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1201] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4236), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1148] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1202] = { - [sym__expression] = STATE(4836), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8306), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4238), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1149] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1203] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1968), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4145), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4240), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), + [1150] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1204] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1968), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4145), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), + [1151] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1205] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1967), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4141), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4152), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4160), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4240), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), + [1152] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1206] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1226), - [sym_compound_requirement] = STATE(1226), - [sym__requirement] = STATE(1226), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1226), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1207] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1208), - [sym_compound_requirement] = STATE(1208), - [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4246), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1208] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4248), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1209] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1201), - [sym_compound_requirement] = STATE(1201), - [sym__requirement] = STATE(1201), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1201), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1153] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1210] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(4252), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_TILDE] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_AMP] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4267), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4273), - [anon_sym_RBRACE] = ACTIONS(4276), - [anon_sym_LBRACK] = ACTIONS(4278), - [sym_primitive_type] = ACTIONS(4281), - [anon_sym_not] = ACTIONS(4261), - [anon_sym_compl] = ACTIONS(4261), - [anon_sym_DASH_DASH] = ACTIONS(4284), - [anon_sym_PLUS_PLUS] = ACTIONS(4284), - [anon_sym_sizeof] = ACTIONS(4287), - [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(4293), - [anon_sym__Generic] = ACTIONS(4296), - [anon_sym_asm] = ACTIONS(4299), - [anon_sym___asm__] = ACTIONS(4299), - [sym_number_literal] = ACTIONS(4302), - [anon_sym_L_SQUOTE] = ACTIONS(4305), - [anon_sym_u_SQUOTE] = ACTIONS(4305), - [anon_sym_U_SQUOTE] = ACTIONS(4305), - [anon_sym_u8_SQUOTE] = ACTIONS(4305), - [anon_sym_SQUOTE] = ACTIONS(4305), - [anon_sym_L_DQUOTE] = ACTIONS(4308), - [anon_sym_u_DQUOTE] = ACTIONS(4308), - [anon_sym_U_DQUOTE] = ACTIONS(4308), - [anon_sym_u8_DQUOTE] = ACTIONS(4308), - [anon_sym_DQUOTE] = ACTIONS(4308), - [sym_true] = ACTIONS(4311), - [sym_false] = ACTIONS(4311), - [anon_sym_NULL] = ACTIONS(4314), - [anon_sym_nullptr] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(4317), - [anon_sym_typename] = ACTIONS(4320), - [anon_sym_template] = ACTIONS(4323), - [anon_sym_delete] = ACTIONS(4326), - [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(4332), - [anon_sym_new] = ACTIONS(4335), - [anon_sym_requires] = ACTIONS(4338), - [sym_this] = ACTIONS(4311), + [1154] = { + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN2] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym___extension__] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym___attribute__] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2873), + [anon_sym___declspec] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_signed] = ACTIONS(2871), + [anon_sym_unsigned] = ACTIONS(2871), + [anon_sym_long] = ACTIONS(2871), + [anon_sym_short] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_register] = ACTIONS(2871), + [anon_sym_inline] = ACTIONS(2871), + [anon_sym___inline] = ACTIONS(2871), + [anon_sym___inline__] = ACTIONS(2871), + [anon_sym___forceinline] = ACTIONS(2871), + [anon_sym_thread_local] = ACTIONS(2871), + [anon_sym___thread] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_goto] = ACTIONS(2871), + [anon_sym___try] = ACTIONS(2871), + [anon_sym___leave] = ACTIONS(2871), + [anon_sym_not] = ACTIONS(2871), + [anon_sym_compl] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_sizeof] = ACTIONS(2871), + [anon_sym___alignof__] = ACTIONS(2871), + [anon_sym___alignof] = ACTIONS(2871), + [anon_sym__alignof] = ACTIONS(2871), + [anon_sym_alignof] = ACTIONS(2871), + [anon_sym__Alignof] = ACTIONS(2871), + [anon_sym_offsetof] = ACTIONS(2871), + [anon_sym__Generic] = ACTIONS(2871), + [anon_sym_asm] = ACTIONS(2871), + [anon_sym___asm__] = ACTIONS(2871), + [sym_number_literal] = ACTIONS(2873), + [anon_sym_L_SQUOTE] = ACTIONS(2873), + [anon_sym_u_SQUOTE] = ACTIONS(2873), + [anon_sym_U_SQUOTE] = ACTIONS(2873), + [anon_sym_u8_SQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_L_DQUOTE] = ACTIONS(2873), + [anon_sym_u_DQUOTE] = ACTIONS(2873), + [anon_sym_U_DQUOTE] = ACTIONS(2873), + [anon_sym_u8_DQUOTE] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [anon_sym_NULL] = ACTIONS(2871), + [anon_sym_nullptr] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2871), + [anon_sym_decltype] = ACTIONS(2871), + [anon_sym_virtual] = ACTIONS(2871), + [anon_sym_alignas] = ACTIONS(2871), + [anon_sym_typename] = ACTIONS(2871), + [anon_sym_template] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_co_return] = ACTIONS(2871), + [anon_sym_co_yield] = ACTIONS(2871), + [anon_sym_R_DQUOTE] = ACTIONS(2873), + [anon_sym_LR_DQUOTE] = ACTIONS(2873), + [anon_sym_uR_DQUOTE] = ACTIONS(2873), + [anon_sym_UR_DQUOTE] = ACTIONS(2873), + [anon_sym_u8R_DQUOTE] = ACTIONS(2873), + [anon_sym_co_await] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_requires] = ACTIONS(2871), + [sym_this] = ACTIONS(2871), }, - [1211] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1968), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_RPAREN] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4145), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), + [1155] = { + [sym_identifier] = ACTIONS(4022), + [anon_sym_LPAREN2] = ACTIONS(4028), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_TILDE] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym___extension__] = ACTIONS(4034), + [anon_sym_extern] = ACTIONS(4034), + [anon_sym___attribute__] = ACTIONS(4034), + [anon_sym_COLON_COLON] = ACTIONS(4025), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4025), + [anon_sym___declspec] = ACTIONS(4034), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_signed] = ACTIONS(4034), + [anon_sym_unsigned] = ACTIONS(4034), + [anon_sym_long] = ACTIONS(4034), + [anon_sym_short] = ACTIONS(4034), + [anon_sym_LBRACK] = ACTIONS(4030), + [anon_sym_static] = ACTIONS(4034), + [anon_sym_register] = ACTIONS(4034), + [anon_sym_inline] = ACTIONS(4034), + [anon_sym___inline] = ACTIONS(4034), + [anon_sym___inline__] = ACTIONS(4034), + [anon_sym___forceinline] = ACTIONS(4034), + [anon_sym_thread_local] = ACTIONS(4034), + [anon_sym___thread] = ACTIONS(4034), + [anon_sym_const] = ACTIONS(4034), + [anon_sym_constexpr] = ACTIONS(4034), + [anon_sym_volatile] = ACTIONS(4034), + [anon_sym_restrict] = ACTIONS(4034), + [anon_sym___restrict__] = ACTIONS(4034), + [anon_sym__Atomic] = ACTIONS(4034), + [anon_sym__Noreturn] = ACTIONS(4034), + [anon_sym_noreturn] = ACTIONS(4034), + [anon_sym_mutable] = ACTIONS(4034), + [anon_sym_constinit] = ACTIONS(4034), + [anon_sym_consteval] = ACTIONS(4034), + [sym_primitive_type] = ACTIONS(4022), + [anon_sym_enum] = ACTIONS(4034), + [anon_sym_class] = ACTIONS(4034), + [anon_sym_struct] = ACTIONS(4034), + [anon_sym_union] = ACTIONS(4034), + [anon_sym_if] = ACTIONS(4030), + [anon_sym_switch] = ACTIONS(4030), + [anon_sym_case] = ACTIONS(4030), + [anon_sym_default] = ACTIONS(4030), + [anon_sym_while] = ACTIONS(4030), + [anon_sym_do] = ACTIONS(4030), + [anon_sym_for] = ACTIONS(4030), + [anon_sym_return] = ACTIONS(4030), + [anon_sym_break] = ACTIONS(4030), + [anon_sym_continue] = ACTIONS(4030), + [anon_sym_goto] = ACTIONS(4030), + [anon_sym___try] = ACTIONS(4030), + [anon_sym___leave] = ACTIONS(4030), + [anon_sym_not] = ACTIONS(4030), + [anon_sym_compl] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4028), + [anon_sym_PLUS_PLUS] = ACTIONS(4028), + [anon_sym_sizeof] = ACTIONS(4030), + [anon_sym___alignof__] = ACTIONS(4030), + [anon_sym___alignof] = ACTIONS(4030), + [anon_sym__alignof] = ACTIONS(4030), + [anon_sym_alignof] = ACTIONS(4030), + [anon_sym__Alignof] = ACTIONS(4030), + [anon_sym_offsetof] = ACTIONS(4030), + [anon_sym__Generic] = ACTIONS(4030), + [anon_sym_asm] = ACTIONS(4030), + [anon_sym___asm__] = ACTIONS(4030), + [sym_number_literal] = ACTIONS(4028), + [anon_sym_L_SQUOTE] = ACTIONS(4028), + [anon_sym_u_SQUOTE] = ACTIONS(4028), + [anon_sym_U_SQUOTE] = ACTIONS(4028), + [anon_sym_u8_SQUOTE] = ACTIONS(4028), + [anon_sym_SQUOTE] = ACTIONS(4028), + [anon_sym_L_DQUOTE] = ACTIONS(4028), + [anon_sym_u_DQUOTE] = ACTIONS(4028), + [anon_sym_U_DQUOTE] = ACTIONS(4028), + [anon_sym_u8_DQUOTE] = ACTIONS(4028), + [anon_sym_DQUOTE] = ACTIONS(4028), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [anon_sym_NULL] = ACTIONS(4030), + [anon_sym_nullptr] = ACTIONS(4030), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4034), + [anon_sym_decltype] = ACTIONS(4022), + [anon_sym_virtual] = ACTIONS(4034), + [anon_sym_alignas] = ACTIONS(4034), + [anon_sym_typename] = ACTIONS(4034), + [anon_sym_template] = ACTIONS(4022), + [anon_sym_try] = ACTIONS(4030), + [anon_sym_delete] = ACTIONS(4030), + [anon_sym_throw] = ACTIONS(4030), + [anon_sym_co_return] = ACTIONS(4030), + [anon_sym_co_yield] = ACTIONS(4030), + [anon_sym_R_DQUOTE] = ACTIONS(4028), + [anon_sym_LR_DQUOTE] = ACTIONS(4028), + [anon_sym_uR_DQUOTE] = ACTIONS(4028), + [anon_sym_UR_DQUOTE] = ACTIONS(4028), + [anon_sym_u8R_DQUOTE] = ACTIONS(4028), + [anon_sym_co_await] = ACTIONS(4030), + [anon_sym_new] = ACTIONS(4030), + [anon_sym_requires] = ACTIONS(4030), + [sym_this] = ACTIONS(4030), }, - [1212] = { - [sym__expression] = STATE(4745), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7799), - [sym_initializer_pair] = STATE(7799), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4341), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4343), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1156] = { + [sym_identifier] = ACTIONS(2925), + [anon_sym_LPAREN2] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym___extension__] = ACTIONS(2925), + [anon_sym_typedef] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2925), + [anon_sym___attribute__] = ACTIONS(2925), + [anon_sym_COLON_COLON] = ACTIONS(2927), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), + [anon_sym___declspec] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_signed] = ACTIONS(2925), + [anon_sym_unsigned] = ACTIONS(2925), + [anon_sym_long] = ACTIONS(2925), + [anon_sym_short] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_register] = ACTIONS(2925), + [anon_sym_inline] = ACTIONS(2925), + [anon_sym___inline] = ACTIONS(2925), + [anon_sym___inline__] = ACTIONS(2925), + [anon_sym___forceinline] = ACTIONS(2925), + [anon_sym_thread_local] = ACTIONS(2925), + [anon_sym___thread] = ACTIONS(2925), + [anon_sym_const] = ACTIONS(2925), + [anon_sym_constexpr] = ACTIONS(2925), + [anon_sym_volatile] = ACTIONS(2925), + [anon_sym_restrict] = ACTIONS(2925), + [anon_sym___restrict__] = ACTIONS(2925), + [anon_sym__Atomic] = ACTIONS(2925), + [anon_sym__Noreturn] = ACTIONS(2925), + [anon_sym_noreturn] = ACTIONS(2925), + [anon_sym_mutable] = ACTIONS(2925), + [anon_sym_constinit] = ACTIONS(2925), + [anon_sym_consteval] = ACTIONS(2925), + [sym_primitive_type] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_class] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2925), + [anon_sym_union] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2925), + [anon_sym_switch] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_do] = ACTIONS(2925), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym___try] = ACTIONS(2925), + [anon_sym___leave] = ACTIONS(2925), + [anon_sym_not] = ACTIONS(2925), + [anon_sym_compl] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_sizeof] = ACTIONS(2925), + [anon_sym___alignof__] = ACTIONS(2925), + [anon_sym___alignof] = ACTIONS(2925), + [anon_sym__alignof] = ACTIONS(2925), + [anon_sym_alignof] = ACTIONS(2925), + [anon_sym__Alignof] = ACTIONS(2925), + [anon_sym_offsetof] = ACTIONS(2925), + [anon_sym__Generic] = ACTIONS(2925), + [anon_sym_asm] = ACTIONS(2925), + [anon_sym___asm__] = ACTIONS(2925), + [sym_number_literal] = ACTIONS(2927), + [anon_sym_L_SQUOTE] = ACTIONS(2927), + [anon_sym_u_SQUOTE] = ACTIONS(2927), + [anon_sym_U_SQUOTE] = ACTIONS(2927), + [anon_sym_u8_SQUOTE] = ACTIONS(2927), + [anon_sym_SQUOTE] = ACTIONS(2927), + [anon_sym_L_DQUOTE] = ACTIONS(2927), + [anon_sym_u_DQUOTE] = ACTIONS(2927), + [anon_sym_U_DQUOTE] = ACTIONS(2927), + [anon_sym_u8_DQUOTE] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2927), + [sym_true] = ACTIONS(2925), + [sym_false] = ACTIONS(2925), + [anon_sym_NULL] = ACTIONS(2925), + [anon_sym_nullptr] = ACTIONS(2925), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2925), + [anon_sym_decltype] = ACTIONS(2925), + [anon_sym_virtual] = ACTIONS(2925), + [anon_sym_alignas] = ACTIONS(2925), + [anon_sym_typename] = ACTIONS(2925), + [anon_sym_template] = ACTIONS(2925), + [anon_sym_try] = ACTIONS(2925), + [anon_sym_delete] = ACTIONS(2925), + [anon_sym_throw] = ACTIONS(2925), + [anon_sym_co_return] = ACTIONS(2925), + [anon_sym_co_yield] = ACTIONS(2925), + [anon_sym_R_DQUOTE] = ACTIONS(2927), + [anon_sym_LR_DQUOTE] = ACTIONS(2927), + [anon_sym_uR_DQUOTE] = ACTIONS(2927), + [anon_sym_UR_DQUOTE] = ACTIONS(2927), + [anon_sym_u8R_DQUOTE] = ACTIONS(2927), + [anon_sym_co_await] = ACTIONS(2925), + [anon_sym_new] = ACTIONS(2925), + [anon_sym_requires] = ACTIONS(2925), + [sym_this] = ACTIONS(2925), }, - [1213] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1193), - [sym_compound_requirement] = STATE(1193), - [sym__requirement] = STATE(1193), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1193), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4345), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1157] = { + [sym_identifier] = ACTIONS(2985), + [anon_sym_LPAREN2] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym___extension__] = ACTIONS(2985), + [anon_sym_typedef] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym___attribute__] = ACTIONS(2985), + [anon_sym_COLON_COLON] = ACTIONS(2987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2987), + [anon_sym___declspec] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_signed] = ACTIONS(2985), + [anon_sym_unsigned] = ACTIONS(2985), + [anon_sym_long] = ACTIONS(2985), + [anon_sym_short] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_register] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym___inline] = ACTIONS(2985), + [anon_sym___inline__] = ACTIONS(2985), + [anon_sym___forceinline] = ACTIONS(2985), + [anon_sym_thread_local] = ACTIONS(2985), + [anon_sym___thread] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_constexpr] = ACTIONS(2985), + [anon_sym_volatile] = ACTIONS(2985), + [anon_sym_restrict] = ACTIONS(2985), + [anon_sym___restrict__] = ACTIONS(2985), + [anon_sym__Atomic] = ACTIONS(2985), + [anon_sym__Noreturn] = ACTIONS(2985), + [anon_sym_noreturn] = ACTIONS(2985), + [anon_sym_mutable] = ACTIONS(2985), + [anon_sym_constinit] = ACTIONS(2985), + [anon_sym_consteval] = ACTIONS(2985), + [sym_primitive_type] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym___try] = ACTIONS(2985), + [anon_sym___leave] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2985), + [anon_sym_compl] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_sizeof] = ACTIONS(2985), + [anon_sym___alignof__] = ACTIONS(2985), + [anon_sym___alignof] = ACTIONS(2985), + [anon_sym__alignof] = ACTIONS(2985), + [anon_sym_alignof] = ACTIONS(2985), + [anon_sym__Alignof] = ACTIONS(2985), + [anon_sym_offsetof] = ACTIONS(2985), + [anon_sym__Generic] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym___asm__] = ACTIONS(2985), + [sym_number_literal] = ACTIONS(2987), + [anon_sym_L_SQUOTE] = ACTIONS(2987), + [anon_sym_u_SQUOTE] = ACTIONS(2987), + [anon_sym_U_SQUOTE] = ACTIONS(2987), + [anon_sym_u8_SQUOTE] = ACTIONS(2987), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_L_DQUOTE] = ACTIONS(2987), + [anon_sym_u_DQUOTE] = ACTIONS(2987), + [anon_sym_U_DQUOTE] = ACTIONS(2987), + [anon_sym_u8_DQUOTE] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2987), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [anon_sym_NULL] = ACTIONS(2985), + [anon_sym_nullptr] = ACTIONS(2985), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2985), + [anon_sym_decltype] = ACTIONS(2985), + [anon_sym_virtual] = ACTIONS(2985), + [anon_sym_alignas] = ACTIONS(2985), + [anon_sym_typename] = ACTIONS(2985), + [anon_sym_template] = ACTIONS(2985), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_delete] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_co_return] = ACTIONS(2985), + [anon_sym_co_yield] = ACTIONS(2985), + [anon_sym_R_DQUOTE] = ACTIONS(2987), + [anon_sym_LR_DQUOTE] = ACTIONS(2987), + [anon_sym_uR_DQUOTE] = ACTIONS(2987), + [anon_sym_UR_DQUOTE] = ACTIONS(2987), + [anon_sym_u8R_DQUOTE] = ACTIONS(2987), + [anon_sym_co_await] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_requires] = ACTIONS(2985), + [sym_this] = ACTIONS(2985), }, - [1214] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1189), - [sym_compound_requirement] = STATE(1189), - [sym__requirement] = STATE(1189), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1189), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4347), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1158] = { + [sym_identifier] = ACTIONS(2981), + [anon_sym_LPAREN2] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym___extension__] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym___attribute__] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2983), + [anon_sym___declspec] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_signed] = ACTIONS(2981), + [anon_sym_unsigned] = ACTIONS(2981), + [anon_sym_long] = ACTIONS(2981), + [anon_sym_short] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_register] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym___inline] = ACTIONS(2981), + [anon_sym___inline__] = ACTIONS(2981), + [anon_sym___forceinline] = ACTIONS(2981), + [anon_sym_thread_local] = ACTIONS(2981), + [anon_sym___thread] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_constexpr] = ACTIONS(2981), + [anon_sym_volatile] = ACTIONS(2981), + [anon_sym_restrict] = ACTIONS(2981), + [anon_sym___restrict__] = ACTIONS(2981), + [anon_sym__Atomic] = ACTIONS(2981), + [anon_sym__Noreturn] = ACTIONS(2981), + [anon_sym_noreturn] = ACTIONS(2981), + [anon_sym_mutable] = ACTIONS(2981), + [anon_sym_constinit] = ACTIONS(2981), + [anon_sym_consteval] = ACTIONS(2981), + [sym_primitive_type] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_else] = ACTIONS(2981), + [anon_sym_switch] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_do] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_goto] = ACTIONS(2981), + [anon_sym___try] = ACTIONS(2981), + [anon_sym___leave] = ACTIONS(2981), + [anon_sym_not] = ACTIONS(2981), + [anon_sym_compl] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_sizeof] = ACTIONS(2981), + [anon_sym___alignof__] = ACTIONS(2981), + [anon_sym___alignof] = ACTIONS(2981), + [anon_sym__alignof] = ACTIONS(2981), + [anon_sym_alignof] = ACTIONS(2981), + [anon_sym__Alignof] = ACTIONS(2981), + [anon_sym_offsetof] = ACTIONS(2981), + [anon_sym__Generic] = ACTIONS(2981), + [anon_sym_asm] = ACTIONS(2981), + [anon_sym___asm__] = ACTIONS(2981), + [sym_number_literal] = ACTIONS(2983), + [anon_sym_L_SQUOTE] = ACTIONS(2983), + [anon_sym_u_SQUOTE] = ACTIONS(2983), + [anon_sym_U_SQUOTE] = ACTIONS(2983), + [anon_sym_u8_SQUOTE] = ACTIONS(2983), + [anon_sym_SQUOTE] = ACTIONS(2983), + [anon_sym_L_DQUOTE] = ACTIONS(2983), + [anon_sym_u_DQUOTE] = ACTIONS(2983), + [anon_sym_U_DQUOTE] = ACTIONS(2983), + [anon_sym_u8_DQUOTE] = ACTIONS(2983), + [anon_sym_DQUOTE] = ACTIONS(2983), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [anon_sym_NULL] = ACTIONS(2981), + [anon_sym_nullptr] = ACTIONS(2981), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2981), + [anon_sym_decltype] = ACTIONS(2981), + [anon_sym_virtual] = ACTIONS(2981), + [anon_sym_alignas] = ACTIONS(2981), + [anon_sym_typename] = ACTIONS(2981), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_delete] = ACTIONS(2981), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_co_return] = ACTIONS(2981), + [anon_sym_co_yield] = ACTIONS(2981), + [anon_sym_R_DQUOTE] = ACTIONS(2983), + [anon_sym_LR_DQUOTE] = ACTIONS(2983), + [anon_sym_uR_DQUOTE] = ACTIONS(2983), + [anon_sym_UR_DQUOTE] = ACTIONS(2983), + [anon_sym_u8R_DQUOTE] = ACTIONS(2983), + [anon_sym_co_await] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_requires] = ACTIONS(2981), + [sym_this] = ACTIONS(2981), }, - [1215] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4349), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1159] = { + [sym_identifier] = ACTIONS(2945), + [anon_sym_LPAREN2] = ACTIONS(2947), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2947), + [anon_sym___extension__] = ACTIONS(2945), + [anon_sym_typedef] = ACTIONS(2945), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym___attribute__] = ACTIONS(2945), + [anon_sym_COLON_COLON] = ACTIONS(2947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2947), + [anon_sym___declspec] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_signed] = ACTIONS(2945), + [anon_sym_unsigned] = ACTIONS(2945), + [anon_sym_long] = ACTIONS(2945), + [anon_sym_short] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_register] = ACTIONS(2945), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym___inline] = ACTIONS(2945), + [anon_sym___inline__] = ACTIONS(2945), + [anon_sym___forceinline] = ACTIONS(2945), + [anon_sym_thread_local] = ACTIONS(2945), + [anon_sym___thread] = ACTIONS(2945), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_constexpr] = ACTIONS(2945), + [anon_sym_volatile] = ACTIONS(2945), + [anon_sym_restrict] = ACTIONS(2945), + [anon_sym___restrict__] = ACTIONS(2945), + [anon_sym__Atomic] = ACTIONS(2945), + [anon_sym__Noreturn] = ACTIONS(2945), + [anon_sym_noreturn] = ACTIONS(2945), + [anon_sym_mutable] = ACTIONS(2945), + [anon_sym_constinit] = ACTIONS(2945), + [anon_sym_consteval] = ACTIONS(2945), + [sym_primitive_type] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(2945), + [anon_sym_union] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_else] = ACTIONS(2945), + [anon_sym_switch] = ACTIONS(2945), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_do] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [anon_sym_goto] = ACTIONS(2945), + [anon_sym___try] = ACTIONS(2945), + [anon_sym___leave] = ACTIONS(2945), + [anon_sym_not] = ACTIONS(2945), + [anon_sym_compl] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_sizeof] = ACTIONS(2945), + [anon_sym___alignof__] = ACTIONS(2945), + [anon_sym___alignof] = ACTIONS(2945), + [anon_sym__alignof] = ACTIONS(2945), + [anon_sym_alignof] = ACTIONS(2945), + [anon_sym__Alignof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2945), + [anon_sym__Generic] = ACTIONS(2945), + [anon_sym_asm] = ACTIONS(2945), + [anon_sym___asm__] = ACTIONS(2945), + [sym_number_literal] = ACTIONS(2947), + [anon_sym_L_SQUOTE] = ACTIONS(2947), + [anon_sym_u_SQUOTE] = ACTIONS(2947), + [anon_sym_U_SQUOTE] = ACTIONS(2947), + [anon_sym_u8_SQUOTE] = ACTIONS(2947), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_L_DQUOTE] = ACTIONS(2947), + [anon_sym_u_DQUOTE] = ACTIONS(2947), + [anon_sym_U_DQUOTE] = ACTIONS(2947), + [anon_sym_u8_DQUOTE] = ACTIONS(2947), + [anon_sym_DQUOTE] = ACTIONS(2947), + [sym_true] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [anon_sym_NULL] = ACTIONS(2945), + [anon_sym_nullptr] = ACTIONS(2945), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1216] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1968), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4145), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), + [sym_auto] = ACTIONS(2945), + [anon_sym_decltype] = ACTIONS(2945), + [anon_sym_virtual] = ACTIONS(2945), + [anon_sym_alignas] = ACTIONS(2945), + [anon_sym_typename] = ACTIONS(2945), + [anon_sym_template] = ACTIONS(2945), + [anon_sym_try] = ACTIONS(2945), + [anon_sym_delete] = ACTIONS(2945), + [anon_sym_throw] = ACTIONS(2945), + [anon_sym_co_return] = ACTIONS(2945), + [anon_sym_co_yield] = ACTIONS(2945), + [anon_sym_R_DQUOTE] = ACTIONS(2947), + [anon_sym_LR_DQUOTE] = ACTIONS(2947), + [anon_sym_uR_DQUOTE] = ACTIONS(2947), + [anon_sym_UR_DQUOTE] = ACTIONS(2947), + [anon_sym_u8R_DQUOTE] = ACTIONS(2947), + [anon_sym_co_await] = ACTIONS(2945), + [anon_sym_new] = ACTIONS(2945), + [anon_sym_requires] = ACTIONS(2945), + [sym_this] = ACTIONS(2945), }, - [1217] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1220), - [sym_compound_requirement] = STATE(1220), - [sym__requirement] = STATE(1220), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1220), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4351), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1160] = { + [sym_identifier] = ACTIONS(2969), + [anon_sym_LPAREN2] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym___extension__] = ACTIONS(2969), + [anon_sym_typedef] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2969), + [anon_sym___attribute__] = ACTIONS(2969), + [anon_sym_COLON_COLON] = ACTIONS(2971), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2971), + [anon_sym___declspec] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_signed] = ACTIONS(2969), + [anon_sym_unsigned] = ACTIONS(2969), + [anon_sym_long] = ACTIONS(2969), + [anon_sym_short] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2969), + [anon_sym_register] = ACTIONS(2969), + [anon_sym_inline] = ACTIONS(2969), + [anon_sym___inline] = ACTIONS(2969), + [anon_sym___inline__] = ACTIONS(2969), + [anon_sym___forceinline] = ACTIONS(2969), + [anon_sym_thread_local] = ACTIONS(2969), + [anon_sym___thread] = ACTIONS(2969), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_constexpr] = ACTIONS(2969), + [anon_sym_volatile] = ACTIONS(2969), + [anon_sym_restrict] = ACTIONS(2969), + [anon_sym___restrict__] = ACTIONS(2969), + [anon_sym__Atomic] = ACTIONS(2969), + [anon_sym__Noreturn] = ACTIONS(2969), + [anon_sym_noreturn] = ACTIONS(2969), + [anon_sym_mutable] = ACTIONS(2969), + [anon_sym_constinit] = ACTIONS(2969), + [anon_sym_consteval] = ACTIONS(2969), + [sym_primitive_type] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2969), + [anon_sym_union] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_else] = ACTIONS(2969), + [anon_sym_switch] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_break] = ACTIONS(2969), + [anon_sym_continue] = ACTIONS(2969), + [anon_sym_goto] = ACTIONS(2969), + [anon_sym___try] = ACTIONS(2969), + [anon_sym___leave] = ACTIONS(2969), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_compl] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_sizeof] = ACTIONS(2969), + [anon_sym___alignof__] = ACTIONS(2969), + [anon_sym___alignof] = ACTIONS(2969), + [anon_sym__alignof] = ACTIONS(2969), + [anon_sym_alignof] = ACTIONS(2969), + [anon_sym__Alignof] = ACTIONS(2969), + [anon_sym_offsetof] = ACTIONS(2969), + [anon_sym__Generic] = ACTIONS(2969), + [anon_sym_asm] = ACTIONS(2969), + [anon_sym___asm__] = ACTIONS(2969), + [sym_number_literal] = ACTIONS(2971), + [anon_sym_L_SQUOTE] = ACTIONS(2971), + [anon_sym_u_SQUOTE] = ACTIONS(2971), + [anon_sym_U_SQUOTE] = ACTIONS(2971), + [anon_sym_u8_SQUOTE] = ACTIONS(2971), + [anon_sym_SQUOTE] = ACTIONS(2971), + [anon_sym_L_DQUOTE] = ACTIONS(2971), + [anon_sym_u_DQUOTE] = ACTIONS(2971), + [anon_sym_U_DQUOTE] = ACTIONS(2971), + [anon_sym_u8_DQUOTE] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2971), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [anon_sym_NULL] = ACTIONS(2969), + [anon_sym_nullptr] = ACTIONS(2969), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2969), + [anon_sym_decltype] = ACTIONS(2969), + [anon_sym_virtual] = ACTIONS(2969), + [anon_sym_alignas] = ACTIONS(2969), + [anon_sym_typename] = ACTIONS(2969), + [anon_sym_template] = ACTIONS(2969), + [anon_sym_try] = ACTIONS(2969), + [anon_sym_delete] = ACTIONS(2969), + [anon_sym_throw] = ACTIONS(2969), + [anon_sym_co_return] = ACTIONS(2969), + [anon_sym_co_yield] = ACTIONS(2969), + [anon_sym_R_DQUOTE] = ACTIONS(2971), + [anon_sym_LR_DQUOTE] = ACTIONS(2971), + [anon_sym_uR_DQUOTE] = ACTIONS(2971), + [anon_sym_UR_DQUOTE] = ACTIONS(2971), + [anon_sym_u8R_DQUOTE] = ACTIONS(2971), + [anon_sym_co_await] = ACTIONS(2969), + [anon_sym_new] = ACTIONS(2969), + [anon_sym_requires] = ACTIONS(2969), + [sym_this] = ACTIONS(2969), }, - [1218] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1968), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4145), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), + [1161] = { + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_else] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym___try] = ACTIONS(2895), + [anon_sym___leave] = ACTIONS(2895), + [anon_sym_not] = ACTIONS(2895), + [anon_sym_compl] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_sizeof] = ACTIONS(2895), + [anon_sym___alignof__] = ACTIONS(2895), + [anon_sym___alignof] = ACTIONS(2895), + [anon_sym__alignof] = ACTIONS(2895), + [anon_sym_alignof] = ACTIONS(2895), + [anon_sym__Alignof] = ACTIONS(2895), + [anon_sym_offsetof] = ACTIONS(2895), + [anon_sym__Generic] = ACTIONS(2895), + [anon_sym_asm] = ACTIONS(2895), + [anon_sym___asm__] = ACTIONS(2895), + [sym_number_literal] = ACTIONS(2897), + [anon_sym_L_SQUOTE] = ACTIONS(2897), + [anon_sym_u_SQUOTE] = ACTIONS(2897), + [anon_sym_U_SQUOTE] = ACTIONS(2897), + [anon_sym_u8_SQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_L_DQUOTE] = ACTIONS(2897), + [anon_sym_u_DQUOTE] = ACTIONS(2897), + [anon_sym_U_DQUOTE] = ACTIONS(2897), + [anon_sym_u8_DQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [anon_sym_NULL] = ACTIONS(2895), + [anon_sym_nullptr] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_co_return] = ACTIONS(2895), + [anon_sym_co_yield] = ACTIONS(2895), + [anon_sym_R_DQUOTE] = ACTIONS(2897), + [anon_sym_LR_DQUOTE] = ACTIONS(2897), + [anon_sym_uR_DQUOTE] = ACTIONS(2897), + [anon_sym_UR_DQUOTE] = ACTIONS(2897), + [anon_sym_u8R_DQUOTE] = ACTIONS(2897), + [anon_sym_co_await] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_requires] = ACTIONS(2895), + [sym_this] = ACTIONS(2895), }, - [1219] = { - [sym__expression] = STATE(4744), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7653), - [sym_initializer_pair] = STATE(7653), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1220] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4355), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1162] = { + [sym_identifier] = ACTIONS(2933), + [anon_sym_LPAREN2] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_SEMI] = ACTIONS(2935), + [anon_sym___extension__] = ACTIONS(2933), + [anon_sym_typedef] = ACTIONS(2933), + [anon_sym_extern] = ACTIONS(2933), + [anon_sym___attribute__] = ACTIONS(2933), + [anon_sym_COLON_COLON] = ACTIONS(2935), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), + [anon_sym___declspec] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_signed] = ACTIONS(2933), + [anon_sym_unsigned] = ACTIONS(2933), + [anon_sym_long] = ACTIONS(2933), + [anon_sym_short] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_static] = ACTIONS(2933), + [anon_sym_register] = ACTIONS(2933), + [anon_sym_inline] = ACTIONS(2933), + [anon_sym___inline] = ACTIONS(2933), + [anon_sym___inline__] = ACTIONS(2933), + [anon_sym___forceinline] = ACTIONS(2933), + [anon_sym_thread_local] = ACTIONS(2933), + [anon_sym___thread] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2933), + [anon_sym_constexpr] = ACTIONS(2933), + [anon_sym_volatile] = ACTIONS(2933), + [anon_sym_restrict] = ACTIONS(2933), + [anon_sym___restrict__] = ACTIONS(2933), + [anon_sym__Atomic] = ACTIONS(2933), + [anon_sym__Noreturn] = ACTIONS(2933), + [anon_sym_noreturn] = ACTIONS(2933), + [anon_sym_mutable] = ACTIONS(2933), + [anon_sym_constinit] = ACTIONS(2933), + [anon_sym_consteval] = ACTIONS(2933), + [sym_primitive_type] = ACTIONS(2933), + [anon_sym_enum] = ACTIONS(2933), + [anon_sym_class] = ACTIONS(2933), + [anon_sym_struct] = ACTIONS(2933), + [anon_sym_union] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_else] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2933), + [anon_sym_while] = ACTIONS(2933), + [anon_sym_do] = ACTIONS(2933), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_goto] = ACTIONS(2933), + [anon_sym___try] = ACTIONS(2933), + [anon_sym___leave] = ACTIONS(2933), + [anon_sym_not] = ACTIONS(2933), + [anon_sym_compl] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_sizeof] = ACTIONS(2933), + [anon_sym___alignof__] = ACTIONS(2933), + [anon_sym___alignof] = ACTIONS(2933), + [anon_sym__alignof] = ACTIONS(2933), + [anon_sym_alignof] = ACTIONS(2933), + [anon_sym__Alignof] = ACTIONS(2933), + [anon_sym_offsetof] = ACTIONS(2933), + [anon_sym__Generic] = ACTIONS(2933), + [anon_sym_asm] = ACTIONS(2933), + [anon_sym___asm__] = ACTIONS(2933), + [sym_number_literal] = ACTIONS(2935), + [anon_sym_L_SQUOTE] = ACTIONS(2935), + [anon_sym_u_SQUOTE] = ACTIONS(2935), + [anon_sym_U_SQUOTE] = ACTIONS(2935), + [anon_sym_u8_SQUOTE] = ACTIONS(2935), + [anon_sym_SQUOTE] = ACTIONS(2935), + [anon_sym_L_DQUOTE] = ACTIONS(2935), + [anon_sym_u_DQUOTE] = ACTIONS(2935), + [anon_sym_U_DQUOTE] = ACTIONS(2935), + [anon_sym_u8_DQUOTE] = ACTIONS(2935), + [anon_sym_DQUOTE] = ACTIONS(2935), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), + [anon_sym_NULL] = ACTIONS(2933), + [anon_sym_nullptr] = ACTIONS(2933), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2933), + [anon_sym_decltype] = ACTIONS(2933), + [anon_sym_virtual] = ACTIONS(2933), + [anon_sym_alignas] = ACTIONS(2933), + [anon_sym_typename] = ACTIONS(2933), + [anon_sym_template] = ACTIONS(2933), + [anon_sym_try] = ACTIONS(2933), + [anon_sym_delete] = ACTIONS(2933), + [anon_sym_throw] = ACTIONS(2933), + [anon_sym_co_return] = ACTIONS(2933), + [anon_sym_co_yield] = ACTIONS(2933), + [anon_sym_R_DQUOTE] = ACTIONS(2935), + [anon_sym_LR_DQUOTE] = ACTIONS(2935), + [anon_sym_uR_DQUOTE] = ACTIONS(2935), + [anon_sym_UR_DQUOTE] = ACTIONS(2935), + [anon_sym_u8R_DQUOTE] = ACTIONS(2935), + [anon_sym_co_await] = ACTIONS(2933), + [anon_sym_new] = ACTIONS(2933), + [anon_sym_requires] = ACTIONS(2933), + [sym_this] = ACTIONS(2933), }, - [1221] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1215), - [sym_compound_requirement] = STATE(1215), - [sym__requirement] = STATE(1215), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1163] = { + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym___extension__] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(2913), + [anon_sym_extern] = ACTIONS(2913), + [anon_sym___attribute__] = ACTIONS(2913), + [anon_sym_COLON_COLON] = ACTIONS(2915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2915), + [anon_sym___declspec] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(2913), + [anon_sym_unsigned] = ACTIONS(2913), + [anon_sym_long] = ACTIONS(2913), + [anon_sym_short] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_register] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym___inline] = ACTIONS(2913), + [anon_sym___inline__] = ACTIONS(2913), + [anon_sym___forceinline] = ACTIONS(2913), + [anon_sym_thread_local] = ACTIONS(2913), + [anon_sym___thread] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_constexpr] = ACTIONS(2913), + [anon_sym_volatile] = ACTIONS(2913), + [anon_sym_restrict] = ACTIONS(2913), + [anon_sym___restrict__] = ACTIONS(2913), + [anon_sym__Atomic] = ACTIONS(2913), + [anon_sym__Noreturn] = ACTIONS(2913), + [anon_sym_noreturn] = ACTIONS(2913), + [anon_sym_mutable] = ACTIONS(2913), + [anon_sym_constinit] = ACTIONS(2913), + [anon_sym_consteval] = ACTIONS(2913), + [sym_primitive_type] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_union] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_else] = ACTIONS(2913), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_goto] = ACTIONS(2913), + [anon_sym___try] = ACTIONS(2913), + [anon_sym___leave] = ACTIONS(2913), + [anon_sym_not] = ACTIONS(2913), + [anon_sym_compl] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_sizeof] = ACTIONS(2913), + [anon_sym___alignof__] = ACTIONS(2913), + [anon_sym___alignof] = ACTIONS(2913), + [anon_sym__alignof] = ACTIONS(2913), + [anon_sym_alignof] = ACTIONS(2913), + [anon_sym__Alignof] = ACTIONS(2913), + [anon_sym_offsetof] = ACTIONS(2913), + [anon_sym__Generic] = ACTIONS(2913), + [anon_sym_asm] = ACTIONS(2913), + [anon_sym___asm__] = ACTIONS(2913), + [sym_number_literal] = ACTIONS(2915), + [anon_sym_L_SQUOTE] = ACTIONS(2915), + [anon_sym_u_SQUOTE] = ACTIONS(2915), + [anon_sym_U_SQUOTE] = ACTIONS(2915), + [anon_sym_u8_SQUOTE] = ACTIONS(2915), + [anon_sym_SQUOTE] = ACTIONS(2915), + [anon_sym_L_DQUOTE] = ACTIONS(2915), + [anon_sym_u_DQUOTE] = ACTIONS(2915), + [anon_sym_U_DQUOTE] = ACTIONS(2915), + [anon_sym_u8_DQUOTE] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(2915), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [anon_sym_NULL] = ACTIONS(2913), + [anon_sym_nullptr] = ACTIONS(2913), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2913), + [anon_sym_decltype] = ACTIONS(2913), + [anon_sym_virtual] = ACTIONS(2913), + [anon_sym_alignas] = ACTIONS(2913), + [anon_sym_typename] = ACTIONS(2913), + [anon_sym_template] = ACTIONS(2913), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_delete] = ACTIONS(2913), + [anon_sym_throw] = ACTIONS(2913), + [anon_sym_co_return] = ACTIONS(2913), + [anon_sym_co_yield] = ACTIONS(2913), + [anon_sym_R_DQUOTE] = ACTIONS(2915), + [anon_sym_LR_DQUOTE] = ACTIONS(2915), + [anon_sym_uR_DQUOTE] = ACTIONS(2915), + [anon_sym_UR_DQUOTE] = ACTIONS(2915), + [anon_sym_u8R_DQUOTE] = ACTIONS(2915), + [anon_sym_co_await] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_requires] = ACTIONS(2913), + [sym_this] = ACTIONS(2913), }, - [1222] = { - [sym__expression] = STATE(4755), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7806), - [sym_initializer_pair] = STATE(7806), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4361), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1164] = { + [sym_identifier] = ACTIONS(2949), + [anon_sym_LPAREN2] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2951), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym___extension__] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym___attribute__] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), + [anon_sym___declspec] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_signed] = ACTIONS(2949), + [anon_sym_unsigned] = ACTIONS(2949), + [anon_sym_long] = ACTIONS(2949), + [anon_sym_short] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_register] = ACTIONS(2949), + [anon_sym_inline] = ACTIONS(2949), + [anon_sym___inline] = ACTIONS(2949), + [anon_sym___inline__] = ACTIONS(2949), + [anon_sym___forceinline] = ACTIONS(2949), + [anon_sym_thread_local] = ACTIONS(2949), + [anon_sym___thread] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_constexpr] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_restrict] = ACTIONS(2949), + [anon_sym___restrict__] = ACTIONS(2949), + [anon_sym__Atomic] = ACTIONS(2949), + [anon_sym__Noreturn] = ACTIONS(2949), + [anon_sym_noreturn] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [anon_sym_constinit] = ACTIONS(2949), + [anon_sym_consteval] = ACTIONS(2949), + [sym_primitive_type] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_union] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_goto] = ACTIONS(2949), + [anon_sym___try] = ACTIONS(2949), + [anon_sym___leave] = ACTIONS(2949), + [anon_sym_not] = ACTIONS(2949), + [anon_sym_compl] = ACTIONS(2949), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_sizeof] = ACTIONS(2949), + [anon_sym___alignof__] = ACTIONS(2949), + [anon_sym___alignof] = ACTIONS(2949), + [anon_sym__alignof] = ACTIONS(2949), + [anon_sym_alignof] = ACTIONS(2949), + [anon_sym__Alignof] = ACTIONS(2949), + [anon_sym_offsetof] = ACTIONS(2949), + [anon_sym__Generic] = ACTIONS(2949), + [anon_sym_asm] = ACTIONS(2949), + [anon_sym___asm__] = ACTIONS(2949), + [sym_number_literal] = ACTIONS(2951), + [anon_sym_L_SQUOTE] = ACTIONS(2951), + [anon_sym_u_SQUOTE] = ACTIONS(2951), + [anon_sym_U_SQUOTE] = ACTIONS(2951), + [anon_sym_u8_SQUOTE] = ACTIONS(2951), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_L_DQUOTE] = ACTIONS(2951), + [anon_sym_u_DQUOTE] = ACTIONS(2951), + [anon_sym_U_DQUOTE] = ACTIONS(2951), + [anon_sym_u8_DQUOTE] = ACTIONS(2951), + [anon_sym_DQUOTE] = ACTIONS(2951), + [sym_true] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [anon_sym_NULL] = ACTIONS(2949), + [anon_sym_nullptr] = ACTIONS(2949), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1223] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1968), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4145), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), - }, - [1224] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1967), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4141), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4152), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4160), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4365), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), + [sym_auto] = ACTIONS(2949), + [anon_sym_decltype] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_alignas] = ACTIONS(2949), + [anon_sym_typename] = ACTIONS(2949), + [anon_sym_template] = ACTIONS(2949), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_delete] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_co_return] = ACTIONS(2949), + [anon_sym_co_yield] = ACTIONS(2949), + [anon_sym_R_DQUOTE] = ACTIONS(2951), + [anon_sym_LR_DQUOTE] = ACTIONS(2951), + [anon_sym_uR_DQUOTE] = ACTIONS(2951), + [anon_sym_UR_DQUOTE] = ACTIONS(2951), + [anon_sym_u8R_DQUOTE] = ACTIONS(2951), + [anon_sym_co_await] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_requires] = ACTIONS(2949), + [sym_this] = ACTIONS(2949), }, - [1225] = { - [sym__expression] = STATE(4837), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7757), - [sym_initializer_pair] = STATE(7757), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4367), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4369), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1165] = { + [sym_identifier] = ACTIONS(2883), + [anon_sym_LPAREN2] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2885), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym___extension__] = ACTIONS(2883), + [anon_sym_typedef] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym___attribute__] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), + [anon_sym___declspec] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_signed] = ACTIONS(2883), + [anon_sym_unsigned] = ACTIONS(2883), + [anon_sym_long] = ACTIONS(2883), + [anon_sym_short] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_register] = ACTIONS(2883), + [anon_sym_inline] = ACTIONS(2883), + [anon_sym___inline] = ACTIONS(2883), + [anon_sym___inline__] = ACTIONS(2883), + [anon_sym___forceinline] = ACTIONS(2883), + [anon_sym_thread_local] = ACTIONS(2883), + [anon_sym___thread] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_constexpr] = ACTIONS(2883), + [anon_sym_volatile] = ACTIONS(2883), + [anon_sym_restrict] = ACTIONS(2883), + [anon_sym___restrict__] = ACTIONS(2883), + [anon_sym__Atomic] = ACTIONS(2883), + [anon_sym__Noreturn] = ACTIONS(2883), + [anon_sym_noreturn] = ACTIONS(2883), + [anon_sym_mutable] = ACTIONS(2883), + [anon_sym_constinit] = ACTIONS(2883), + [anon_sym_consteval] = ACTIONS(2883), + [sym_primitive_type] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_else] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym___try] = ACTIONS(2883), + [anon_sym___leave] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2883), + [anon_sym_compl] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_sizeof] = ACTIONS(2883), + [anon_sym___alignof__] = ACTIONS(2883), + [anon_sym___alignof] = ACTIONS(2883), + [anon_sym__alignof] = ACTIONS(2883), + [anon_sym_alignof] = ACTIONS(2883), + [anon_sym__Alignof] = ACTIONS(2883), + [anon_sym_offsetof] = ACTIONS(2883), + [anon_sym__Generic] = ACTIONS(2883), + [anon_sym_asm] = ACTIONS(2883), + [anon_sym___asm__] = ACTIONS(2883), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_L_SQUOTE] = ACTIONS(2885), + [anon_sym_u_SQUOTE] = ACTIONS(2885), + [anon_sym_U_SQUOTE] = ACTIONS(2885), + [anon_sym_u8_SQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_L_DQUOTE] = ACTIONS(2885), + [anon_sym_u_DQUOTE] = ACTIONS(2885), + [anon_sym_U_DQUOTE] = ACTIONS(2885), + [anon_sym_u8_DQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [anon_sym_NULL] = ACTIONS(2883), + [anon_sym_nullptr] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2883), + [anon_sym_decltype] = ACTIONS(2883), + [anon_sym_virtual] = ACTIONS(2883), + [anon_sym_alignas] = ACTIONS(2883), + [anon_sym_typename] = ACTIONS(2883), + [anon_sym_template] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_co_return] = ACTIONS(2883), + [anon_sym_co_yield] = ACTIONS(2883), + [anon_sym_R_DQUOTE] = ACTIONS(2885), + [anon_sym_LR_DQUOTE] = ACTIONS(2885), + [anon_sym_uR_DQUOTE] = ACTIONS(2885), + [anon_sym_UR_DQUOTE] = ACTIONS(2885), + [anon_sym_u8R_DQUOTE] = ACTIONS(2885), + [anon_sym_co_await] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_requires] = ACTIONS(2883), + [sym_this] = ACTIONS(2883), }, - [1226] = { - [sym_expression_statement] = STATE(3121), - [sym__expression] = STATE(4948), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8696), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_type_requirement] = STATE(1210), - [sym_compound_requirement] = STATE(1210), - [sym__requirement] = STATE(1210), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_requirement_seq_repeat1] = STATE(1210), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4191), - [anon_sym_RBRACE] = ACTIONS(4371), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_typename] = ACTIONS(4195), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1166] = { + [sym_identifier] = ACTIONS(4018), + [anon_sym_LPAREN2] = ACTIONS(4020), + [anon_sym_BANG] = ACTIONS(4020), + [anon_sym_TILDE] = ACTIONS(4020), + [anon_sym_DASH] = ACTIONS(4018), + [anon_sym_PLUS] = ACTIONS(4018), + [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4020), + [anon_sym___extension__] = ACTIONS(4018), + [anon_sym_extern] = ACTIONS(4018), + [anon_sym___attribute__] = ACTIONS(4018), + [anon_sym_COLON_COLON] = ACTIONS(4020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4020), + [anon_sym___declspec] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(4020), + [anon_sym_signed] = ACTIONS(4018), + [anon_sym_unsigned] = ACTIONS(4018), + [anon_sym_long] = ACTIONS(4018), + [anon_sym_short] = ACTIONS(4018), + [anon_sym_LBRACK] = ACTIONS(4018), + [anon_sym_static] = ACTIONS(4018), + [anon_sym_register] = ACTIONS(4018), + [anon_sym_inline] = ACTIONS(4018), + [anon_sym___inline] = ACTIONS(4018), + [anon_sym___inline__] = ACTIONS(4018), + [anon_sym___forceinline] = ACTIONS(4018), + [anon_sym_thread_local] = ACTIONS(4018), + [anon_sym___thread] = ACTIONS(4018), + [anon_sym_const] = ACTIONS(4018), + [anon_sym_constexpr] = ACTIONS(4018), + [anon_sym_volatile] = ACTIONS(4018), + [anon_sym_restrict] = ACTIONS(4018), + [anon_sym___restrict__] = ACTIONS(4018), + [anon_sym__Atomic] = ACTIONS(4018), + [anon_sym__Noreturn] = ACTIONS(4018), + [anon_sym_noreturn] = ACTIONS(4018), + [anon_sym_mutable] = ACTIONS(4018), + [anon_sym_constinit] = ACTIONS(4018), + [anon_sym_consteval] = ACTIONS(4018), + [sym_primitive_type] = ACTIONS(4018), + [anon_sym_enum] = ACTIONS(4018), + [anon_sym_class] = ACTIONS(4018), + [anon_sym_struct] = ACTIONS(4018), + [anon_sym_union] = ACTIONS(4018), + [anon_sym_if] = ACTIONS(4018), + [anon_sym_switch] = ACTIONS(4018), + [anon_sym_case] = ACTIONS(4018), + [anon_sym_default] = ACTIONS(4018), + [anon_sym_while] = ACTIONS(4018), + [anon_sym_do] = ACTIONS(4018), + [anon_sym_for] = ACTIONS(4018), + [anon_sym_return] = ACTIONS(4018), + [anon_sym_break] = ACTIONS(4018), + [anon_sym_continue] = ACTIONS(4018), + [anon_sym_goto] = ACTIONS(4018), + [anon_sym___try] = ACTIONS(4018), + [anon_sym___leave] = ACTIONS(4018), + [anon_sym_not] = ACTIONS(4018), + [anon_sym_compl] = ACTIONS(4018), + [anon_sym_DASH_DASH] = ACTIONS(4020), + [anon_sym_PLUS_PLUS] = ACTIONS(4020), + [anon_sym_sizeof] = ACTIONS(4018), + [anon_sym___alignof__] = ACTIONS(4018), + [anon_sym___alignof] = ACTIONS(4018), + [anon_sym__alignof] = ACTIONS(4018), + [anon_sym_alignof] = ACTIONS(4018), + [anon_sym__Alignof] = ACTIONS(4018), + [anon_sym_offsetof] = ACTIONS(4018), + [anon_sym__Generic] = ACTIONS(4018), + [anon_sym_asm] = ACTIONS(4018), + [anon_sym___asm__] = ACTIONS(4018), + [sym_number_literal] = ACTIONS(4020), + [anon_sym_L_SQUOTE] = ACTIONS(4020), + [anon_sym_u_SQUOTE] = ACTIONS(4020), + [anon_sym_U_SQUOTE] = ACTIONS(4020), + [anon_sym_u8_SQUOTE] = ACTIONS(4020), + [anon_sym_SQUOTE] = ACTIONS(4020), + [anon_sym_L_DQUOTE] = ACTIONS(4020), + [anon_sym_u_DQUOTE] = ACTIONS(4020), + [anon_sym_U_DQUOTE] = ACTIONS(4020), + [anon_sym_u8_DQUOTE] = ACTIONS(4020), + [anon_sym_DQUOTE] = ACTIONS(4020), + [sym_true] = ACTIONS(4018), + [sym_false] = ACTIONS(4018), + [anon_sym_NULL] = ACTIONS(4018), + [anon_sym_nullptr] = ACTIONS(4018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4018), + [anon_sym_decltype] = ACTIONS(4018), + [anon_sym_virtual] = ACTIONS(4018), + [anon_sym_alignas] = ACTIONS(4018), + [anon_sym_typename] = ACTIONS(4018), + [anon_sym_template] = ACTIONS(4018), + [anon_sym_try] = ACTIONS(4018), + [anon_sym_delete] = ACTIONS(4018), + [anon_sym_throw] = ACTIONS(4018), + [anon_sym_co_return] = ACTIONS(4018), + [anon_sym_co_yield] = ACTIONS(4018), + [anon_sym_R_DQUOTE] = ACTIONS(4020), + [anon_sym_LR_DQUOTE] = ACTIONS(4020), + [anon_sym_uR_DQUOTE] = ACTIONS(4020), + [anon_sym_UR_DQUOTE] = ACTIONS(4020), + [anon_sym_u8R_DQUOTE] = ACTIONS(4020), + [anon_sym_co_await] = ACTIONS(4018), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_requires] = ACTIONS(4018), + [sym_this] = ACTIONS(4018), }, - [1227] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1968), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4145), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4365), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), + [1167] = { + [sym_identifier] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym___extension__] = ACTIONS(2887), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym___inline] = ACTIONS(2887), + [anon_sym___inline__] = ACTIONS(2887), + [anon_sym___forceinline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym___thread] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym___restrict__] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym__Noreturn] = ACTIONS(2887), + [anon_sym_noreturn] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_else] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym___try] = ACTIONS(2887), + [anon_sym___leave] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [anon_sym___alignof__] = ACTIONS(2887), + [anon_sym___alignof] = ACTIONS(2887), + [anon_sym__alignof] = ACTIONS(2887), + [anon_sym_alignof] = ACTIONS(2887), + [anon_sym__Alignof] = ACTIONS(2887), + [anon_sym_offsetof] = ACTIONS(2887), + [anon_sym__Generic] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym___asm__] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [anon_sym_NULL] = ACTIONS(2887), + [anon_sym_nullptr] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_alignas] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_R_DQUOTE] = ACTIONS(2889), + [anon_sym_LR_DQUOTE] = ACTIONS(2889), + [anon_sym_uR_DQUOTE] = ACTIONS(2889), + [anon_sym_UR_DQUOTE] = ACTIONS(2889), + [anon_sym_u8R_DQUOTE] = ACTIONS(2889), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), }, - [1228] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4373), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1168] = { + [sym_identifier] = ACTIONS(2891), + [anon_sym_LPAREN2] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym___extension__] = ACTIONS(2891), + [anon_sym_typedef] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym___attribute__] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), + [anon_sym___declspec] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_signed] = ACTIONS(2891), + [anon_sym_unsigned] = ACTIONS(2891), + [anon_sym_long] = ACTIONS(2891), + [anon_sym_short] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_register] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym___inline] = ACTIONS(2891), + [anon_sym___inline__] = ACTIONS(2891), + [anon_sym___forceinline] = ACTIONS(2891), + [anon_sym_thread_local] = ACTIONS(2891), + [anon_sym___thread] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_constexpr] = ACTIONS(2891), + [anon_sym_volatile] = ACTIONS(2891), + [anon_sym_restrict] = ACTIONS(2891), + [anon_sym___restrict__] = ACTIONS(2891), + [anon_sym__Atomic] = ACTIONS(2891), + [anon_sym__Noreturn] = ACTIONS(2891), + [anon_sym_noreturn] = ACTIONS(2891), + [anon_sym_mutable] = ACTIONS(2891), + [anon_sym_constinit] = ACTIONS(2891), + [anon_sym_consteval] = ACTIONS(2891), + [sym_primitive_type] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_else] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym___try] = ACTIONS(2891), + [anon_sym___leave] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_compl] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2891), + [anon_sym___alignof__] = ACTIONS(2891), + [anon_sym___alignof] = ACTIONS(2891), + [anon_sym__alignof] = ACTIONS(2891), + [anon_sym_alignof] = ACTIONS(2891), + [anon_sym__Alignof] = ACTIONS(2891), + [anon_sym_offsetof] = ACTIONS(2891), + [anon_sym__Generic] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym___asm__] = ACTIONS(2891), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_L_SQUOTE] = ACTIONS(2893), + [anon_sym_u_SQUOTE] = ACTIONS(2893), + [anon_sym_U_SQUOTE] = ACTIONS(2893), + [anon_sym_u8_SQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_L_DQUOTE] = ACTIONS(2893), + [anon_sym_u_DQUOTE] = ACTIONS(2893), + [anon_sym_U_DQUOTE] = ACTIONS(2893), + [anon_sym_u8_DQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [anon_sym_NULL] = ACTIONS(2891), + [anon_sym_nullptr] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2891), + [anon_sym_virtual] = ACTIONS(2891), + [anon_sym_alignas] = ACTIONS(2891), + [anon_sym_typename] = ACTIONS(2891), + [anon_sym_template] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2891), + [anon_sym_co_yield] = ACTIONS(2891), + [anon_sym_R_DQUOTE] = ACTIONS(2893), + [anon_sym_LR_DQUOTE] = ACTIONS(2893), + [anon_sym_uR_DQUOTE] = ACTIONS(2893), + [anon_sym_UR_DQUOTE] = ACTIONS(2893), + [anon_sym_u8R_DQUOTE] = ACTIONS(2893), + [anon_sym_co_await] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_requires] = ACTIONS(2891), + [sym_this] = ACTIONS(2891), }, - [1229] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1169] = { + [sym_identifier] = ACTIONS(2867), + [anon_sym_LPAREN2] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym___extension__] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym___attribute__] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2869), + [anon_sym___declspec] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_register] = ACTIONS(2867), + [anon_sym_inline] = ACTIONS(2867), + [anon_sym___inline] = ACTIONS(2867), + [anon_sym___inline__] = ACTIONS(2867), + [anon_sym___forceinline] = ACTIONS(2867), + [anon_sym_thread_local] = ACTIONS(2867), + [anon_sym___thread] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_constexpr] = ACTIONS(2867), + [anon_sym_volatile] = ACTIONS(2867), + [anon_sym_restrict] = ACTIONS(2867), + [anon_sym___restrict__] = ACTIONS(2867), + [anon_sym__Atomic] = ACTIONS(2867), + [anon_sym__Noreturn] = ACTIONS(2867), + [anon_sym_noreturn] = ACTIONS(2867), + [anon_sym_mutable] = ACTIONS(2867), + [anon_sym_constinit] = ACTIONS(2867), + [anon_sym_consteval] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym___try] = ACTIONS(2867), + [anon_sym___leave] = ACTIONS(2867), + [anon_sym_not] = ACTIONS(2867), + [anon_sym_compl] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_sizeof] = ACTIONS(2867), + [anon_sym___alignof__] = ACTIONS(2867), + [anon_sym___alignof] = ACTIONS(2867), + [anon_sym__alignof] = ACTIONS(2867), + [anon_sym_alignof] = ACTIONS(2867), + [anon_sym__Alignof] = ACTIONS(2867), + [anon_sym_offsetof] = ACTIONS(2867), + [anon_sym__Generic] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym___asm__] = ACTIONS(2867), + [sym_number_literal] = ACTIONS(2869), + [anon_sym_L_SQUOTE] = ACTIONS(2869), + [anon_sym_u_SQUOTE] = ACTIONS(2869), + [anon_sym_U_SQUOTE] = ACTIONS(2869), + [anon_sym_u8_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_L_DQUOTE] = ACTIONS(2869), + [anon_sym_u_DQUOTE] = ACTIONS(2869), + [anon_sym_U_DQUOTE] = ACTIONS(2869), + [anon_sym_u8_DQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [anon_sym_NULL] = ACTIONS(2867), + [anon_sym_nullptr] = ACTIONS(2867), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2867), + [anon_sym_decltype] = ACTIONS(2867), + [anon_sym_virtual] = ACTIONS(2867), + [anon_sym_alignas] = ACTIONS(2867), + [anon_sym_typename] = ACTIONS(2867), + [anon_sym_template] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_co_return] = ACTIONS(2867), + [anon_sym_co_yield] = ACTIONS(2867), + [anon_sym_R_DQUOTE] = ACTIONS(2869), + [anon_sym_LR_DQUOTE] = ACTIONS(2869), + [anon_sym_uR_DQUOTE] = ACTIONS(2869), + [anon_sym_UR_DQUOTE] = ACTIONS(2869), + [anon_sym_u8R_DQUOTE] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_requires] = ACTIONS(2867), + [sym_this] = ACTIONS(2867), }, - [1230] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4377), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1170] = { + [sym_identifier] = ACTIONS(2937), + [anon_sym_LPAREN2] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_SEMI] = ACTIONS(2939), + [anon_sym___extension__] = ACTIONS(2937), + [anon_sym_typedef] = ACTIONS(2937), + [anon_sym_extern] = ACTIONS(2937), + [anon_sym___attribute__] = ACTIONS(2937), + [anon_sym_COLON_COLON] = ACTIONS(2939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2939), + [anon_sym___declspec] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_signed] = ACTIONS(2937), + [anon_sym_unsigned] = ACTIONS(2937), + [anon_sym_long] = ACTIONS(2937), + [anon_sym_short] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_static] = ACTIONS(2937), + [anon_sym_register] = ACTIONS(2937), + [anon_sym_inline] = ACTIONS(2937), + [anon_sym___inline] = ACTIONS(2937), + [anon_sym___inline__] = ACTIONS(2937), + [anon_sym___forceinline] = ACTIONS(2937), + [anon_sym_thread_local] = ACTIONS(2937), + [anon_sym___thread] = ACTIONS(2937), + [anon_sym_const] = ACTIONS(2937), + [anon_sym_constexpr] = ACTIONS(2937), + [anon_sym_volatile] = ACTIONS(2937), + [anon_sym_restrict] = ACTIONS(2937), + [anon_sym___restrict__] = ACTIONS(2937), + [anon_sym__Atomic] = ACTIONS(2937), + [anon_sym__Noreturn] = ACTIONS(2937), + [anon_sym_noreturn] = ACTIONS(2937), + [anon_sym_mutable] = ACTIONS(2937), + [anon_sym_constinit] = ACTIONS(2937), + [anon_sym_consteval] = ACTIONS(2937), + [sym_primitive_type] = ACTIONS(2937), + [anon_sym_enum] = ACTIONS(2937), + [anon_sym_class] = ACTIONS(2937), + [anon_sym_struct] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_else] = ACTIONS(2937), + [anon_sym_switch] = ACTIONS(2937), + [anon_sym_while] = ACTIONS(2937), + [anon_sym_do] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_goto] = ACTIONS(2937), + [anon_sym___try] = ACTIONS(2937), + [anon_sym___leave] = ACTIONS(2937), + [anon_sym_not] = ACTIONS(2937), + [anon_sym_compl] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2939), + [anon_sym_sizeof] = ACTIONS(2937), + [anon_sym___alignof__] = ACTIONS(2937), + [anon_sym___alignof] = ACTIONS(2937), + [anon_sym__alignof] = ACTIONS(2937), + [anon_sym_alignof] = ACTIONS(2937), + [anon_sym__Alignof] = ACTIONS(2937), + [anon_sym_offsetof] = ACTIONS(2937), + [anon_sym__Generic] = ACTIONS(2937), + [anon_sym_asm] = ACTIONS(2937), + [anon_sym___asm__] = ACTIONS(2937), + [sym_number_literal] = ACTIONS(2939), + [anon_sym_L_SQUOTE] = ACTIONS(2939), + [anon_sym_u_SQUOTE] = ACTIONS(2939), + [anon_sym_U_SQUOTE] = ACTIONS(2939), + [anon_sym_u8_SQUOTE] = ACTIONS(2939), + [anon_sym_SQUOTE] = ACTIONS(2939), + [anon_sym_L_DQUOTE] = ACTIONS(2939), + [anon_sym_u_DQUOTE] = ACTIONS(2939), + [anon_sym_U_DQUOTE] = ACTIONS(2939), + [anon_sym_u8_DQUOTE] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(2939), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [anon_sym_NULL] = ACTIONS(2937), + [anon_sym_nullptr] = ACTIONS(2937), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [sym_auto] = ACTIONS(2937), + [anon_sym_decltype] = ACTIONS(2937), + [anon_sym_virtual] = ACTIONS(2937), + [anon_sym_alignas] = ACTIONS(2937), + [anon_sym_typename] = ACTIONS(2937), + [anon_sym_template] = ACTIONS(2937), + [anon_sym_try] = ACTIONS(2937), + [anon_sym_delete] = ACTIONS(2937), + [anon_sym_throw] = ACTIONS(2937), + [anon_sym_co_return] = ACTIONS(2937), + [anon_sym_co_yield] = ACTIONS(2937), + [anon_sym_R_DQUOTE] = ACTIONS(2939), + [anon_sym_LR_DQUOTE] = ACTIONS(2939), + [anon_sym_uR_DQUOTE] = ACTIONS(2939), + [anon_sym_UR_DQUOTE] = ACTIONS(2939), + [anon_sym_u8R_DQUOTE] = ACTIONS(2939), + [anon_sym_co_await] = ACTIONS(2937), + [anon_sym_new] = ACTIONS(2937), + [anon_sym_requires] = ACTIONS(2937), + [sym_this] = ACTIONS(2937), }, - [1231] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1171] = { + [sym_identifier] = ACTIONS(2977), + [anon_sym_LPAREN2] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym___extension__] = ACTIONS(2977), + [anon_sym_typedef] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym___attribute__] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(2979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2979), + [anon_sym___declspec] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_signed] = ACTIONS(2977), + [anon_sym_unsigned] = ACTIONS(2977), + [anon_sym_long] = ACTIONS(2977), + [anon_sym_short] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_register] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym___inline] = ACTIONS(2977), + [anon_sym___inline__] = ACTIONS(2977), + [anon_sym___forceinline] = ACTIONS(2977), + [anon_sym_thread_local] = ACTIONS(2977), + [anon_sym___thread] = ACTIONS(2977), + [anon_sym_const] = ACTIONS(2977), + [anon_sym_constexpr] = ACTIONS(2977), + [anon_sym_volatile] = ACTIONS(2977), + [anon_sym_restrict] = ACTIONS(2977), + [anon_sym___restrict__] = ACTIONS(2977), + [anon_sym__Atomic] = ACTIONS(2977), + [anon_sym__Noreturn] = ACTIONS(2977), + [anon_sym_noreturn] = ACTIONS(2977), + [anon_sym_mutable] = ACTIONS(2977), + [anon_sym_constinit] = ACTIONS(2977), + [anon_sym_consteval] = ACTIONS(2977), + [sym_primitive_type] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_struct] = ACTIONS(2977), + [anon_sym_union] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_switch] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_do] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_goto] = ACTIONS(2977), + [anon_sym___try] = ACTIONS(2977), + [anon_sym___leave] = ACTIONS(2977), + [anon_sym_not] = ACTIONS(2977), + [anon_sym_compl] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_sizeof] = ACTIONS(2977), + [anon_sym___alignof__] = ACTIONS(2977), + [anon_sym___alignof] = ACTIONS(2977), + [anon_sym__alignof] = ACTIONS(2977), + [anon_sym_alignof] = ACTIONS(2977), + [anon_sym__Alignof] = ACTIONS(2977), + [anon_sym_offsetof] = ACTIONS(2977), + [anon_sym__Generic] = ACTIONS(2977), + [anon_sym_asm] = ACTIONS(2977), + [anon_sym___asm__] = ACTIONS(2977), + [sym_number_literal] = ACTIONS(2979), + [anon_sym_L_SQUOTE] = ACTIONS(2979), + [anon_sym_u_SQUOTE] = ACTIONS(2979), + [anon_sym_U_SQUOTE] = ACTIONS(2979), + [anon_sym_u8_SQUOTE] = ACTIONS(2979), + [anon_sym_SQUOTE] = ACTIONS(2979), + [anon_sym_L_DQUOTE] = ACTIONS(2979), + [anon_sym_u_DQUOTE] = ACTIONS(2979), + [anon_sym_U_DQUOTE] = ACTIONS(2979), + [anon_sym_u8_DQUOTE] = ACTIONS(2979), + [anon_sym_DQUOTE] = ACTIONS(2979), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [anon_sym_NULL] = ACTIONS(2977), + [anon_sym_nullptr] = ACTIONS(2977), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2977), + [anon_sym_decltype] = ACTIONS(2977), + [anon_sym_virtual] = ACTIONS(2977), + [anon_sym_alignas] = ACTIONS(2977), + [anon_sym_typename] = ACTIONS(2977), + [anon_sym_template] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_delete] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_co_return] = ACTIONS(2977), + [anon_sym_co_yield] = ACTIONS(2977), + [anon_sym_R_DQUOTE] = ACTIONS(2979), + [anon_sym_LR_DQUOTE] = ACTIONS(2979), + [anon_sym_uR_DQUOTE] = ACTIONS(2979), + [anon_sym_UR_DQUOTE] = ACTIONS(2979), + [anon_sym_u8R_DQUOTE] = ACTIONS(2979), + [anon_sym_co_await] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_requires] = ACTIONS(2977), + [sym_this] = ACTIONS(2977), }, - [1232] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1172] = { + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN2] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2975), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2975), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym___extension__] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym___attribute__] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2975), + [anon_sym___declspec] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_signed] = ACTIONS(2973), + [anon_sym_unsigned] = ACTIONS(2973), + [anon_sym_long] = ACTIONS(2973), + [anon_sym_short] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_register] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym___inline] = ACTIONS(2973), + [anon_sym___inline__] = ACTIONS(2973), + [anon_sym___forceinline] = ACTIONS(2973), + [anon_sym_thread_local] = ACTIONS(2973), + [anon_sym___thread] = ACTIONS(2973), + [anon_sym_const] = ACTIONS(2973), + [anon_sym_constexpr] = ACTIONS(2973), + [anon_sym_volatile] = ACTIONS(2973), + [anon_sym_restrict] = ACTIONS(2973), + [anon_sym___restrict__] = ACTIONS(2973), + [anon_sym__Atomic] = ACTIONS(2973), + [anon_sym__Noreturn] = ACTIONS(2973), + [anon_sym_noreturn] = ACTIONS(2973), + [anon_sym_mutable] = ACTIONS(2973), + [anon_sym_constinit] = ACTIONS(2973), + [anon_sym_consteval] = ACTIONS(2973), + [sym_primitive_type] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2973), + [anon_sym_union] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_else] = ACTIONS(2973), + [anon_sym_switch] = ACTIONS(2973), + [anon_sym_while] = ACTIONS(2973), + [anon_sym_do] = ACTIONS(2973), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_goto] = ACTIONS(2973), + [anon_sym___try] = ACTIONS(2973), + [anon_sym___leave] = ACTIONS(2973), + [anon_sym_not] = ACTIONS(2973), + [anon_sym_compl] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2975), + [anon_sym_sizeof] = ACTIONS(2973), + [anon_sym___alignof__] = ACTIONS(2973), + [anon_sym___alignof] = ACTIONS(2973), + [anon_sym__alignof] = ACTIONS(2973), + [anon_sym_alignof] = ACTIONS(2973), + [anon_sym__Alignof] = ACTIONS(2973), + [anon_sym_offsetof] = ACTIONS(2973), + [anon_sym__Generic] = ACTIONS(2973), + [anon_sym_asm] = ACTIONS(2973), + [anon_sym___asm__] = ACTIONS(2973), + [sym_number_literal] = ACTIONS(2975), + [anon_sym_L_SQUOTE] = ACTIONS(2975), + [anon_sym_u_SQUOTE] = ACTIONS(2975), + [anon_sym_U_SQUOTE] = ACTIONS(2975), + [anon_sym_u8_SQUOTE] = ACTIONS(2975), + [anon_sym_SQUOTE] = ACTIONS(2975), + [anon_sym_L_DQUOTE] = ACTIONS(2975), + [anon_sym_u_DQUOTE] = ACTIONS(2975), + [anon_sym_U_DQUOTE] = ACTIONS(2975), + [anon_sym_u8_DQUOTE] = ACTIONS(2975), + [anon_sym_DQUOTE] = ACTIONS(2975), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [anon_sym_NULL] = ACTIONS(2973), + [anon_sym_nullptr] = ACTIONS(2973), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2973), + [anon_sym_decltype] = ACTIONS(2973), + [anon_sym_virtual] = ACTIONS(2973), + [anon_sym_alignas] = ACTIONS(2973), + [anon_sym_typename] = ACTIONS(2973), + [anon_sym_template] = ACTIONS(2973), + [anon_sym_try] = ACTIONS(2973), + [anon_sym_delete] = ACTIONS(2973), + [anon_sym_throw] = ACTIONS(2973), + [anon_sym_co_return] = ACTIONS(2973), + [anon_sym_co_yield] = ACTIONS(2973), + [anon_sym_R_DQUOTE] = ACTIONS(2975), + [anon_sym_LR_DQUOTE] = ACTIONS(2975), + [anon_sym_uR_DQUOTE] = ACTIONS(2975), + [anon_sym_UR_DQUOTE] = ACTIONS(2975), + [anon_sym_u8R_DQUOTE] = ACTIONS(2975), + [anon_sym_co_await] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2973), + [anon_sym_requires] = ACTIONS(2973), + [sym_this] = ACTIONS(2973), + }, + [1173] = { + [sym_identifier] = ACTIONS(2901), + [anon_sym_LPAREN2] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2903), + [anon_sym___extension__] = ACTIONS(2901), + [anon_sym_typedef] = ACTIONS(2901), + [anon_sym_extern] = ACTIONS(2901), + [anon_sym___attribute__] = ACTIONS(2901), + [anon_sym_COLON_COLON] = ACTIONS(2903), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2903), + [anon_sym___declspec] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_signed] = ACTIONS(2901), + [anon_sym_unsigned] = ACTIONS(2901), + [anon_sym_long] = ACTIONS(2901), + [anon_sym_short] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_static] = ACTIONS(2901), + [anon_sym_register] = ACTIONS(2901), + [anon_sym_inline] = ACTIONS(2901), + [anon_sym___inline] = ACTIONS(2901), + [anon_sym___inline__] = ACTIONS(2901), + [anon_sym___forceinline] = ACTIONS(2901), + [anon_sym_thread_local] = ACTIONS(2901), + [anon_sym___thread] = ACTIONS(2901), + [anon_sym_const] = ACTIONS(2901), + [anon_sym_constexpr] = ACTIONS(2901), + [anon_sym_volatile] = ACTIONS(2901), + [anon_sym_restrict] = ACTIONS(2901), + [anon_sym___restrict__] = ACTIONS(2901), + [anon_sym__Atomic] = ACTIONS(2901), + [anon_sym__Noreturn] = ACTIONS(2901), + [anon_sym_noreturn] = ACTIONS(2901), + [anon_sym_mutable] = ACTIONS(2901), + [anon_sym_constinit] = ACTIONS(2901), + [anon_sym_consteval] = ACTIONS(2901), + [sym_primitive_type] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_class] = ACTIONS(2901), + [anon_sym_struct] = ACTIONS(2901), + [anon_sym_union] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_else] = ACTIONS(2901), + [anon_sym_switch] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_do] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_goto] = ACTIONS(2901), + [anon_sym___try] = ACTIONS(2901), + [anon_sym___leave] = ACTIONS(2901), + [anon_sym_not] = ACTIONS(2901), + [anon_sym_compl] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_sizeof] = ACTIONS(2901), + [anon_sym___alignof__] = ACTIONS(2901), + [anon_sym___alignof] = ACTIONS(2901), + [anon_sym__alignof] = ACTIONS(2901), + [anon_sym_alignof] = ACTIONS(2901), + [anon_sym__Alignof] = ACTIONS(2901), + [anon_sym_offsetof] = ACTIONS(2901), + [anon_sym__Generic] = ACTIONS(2901), + [anon_sym_asm] = ACTIONS(2901), + [anon_sym___asm__] = ACTIONS(2901), + [sym_number_literal] = ACTIONS(2903), + [anon_sym_L_SQUOTE] = ACTIONS(2903), + [anon_sym_u_SQUOTE] = ACTIONS(2903), + [anon_sym_U_SQUOTE] = ACTIONS(2903), + [anon_sym_u8_SQUOTE] = ACTIONS(2903), + [anon_sym_SQUOTE] = ACTIONS(2903), + [anon_sym_L_DQUOTE] = ACTIONS(2903), + [anon_sym_u_DQUOTE] = ACTIONS(2903), + [anon_sym_U_DQUOTE] = ACTIONS(2903), + [anon_sym_u8_DQUOTE] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2903), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [anon_sym_NULL] = ACTIONS(2901), + [anon_sym_nullptr] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2901), + [anon_sym_decltype] = ACTIONS(2901), + [anon_sym_virtual] = ACTIONS(2901), + [anon_sym_alignas] = ACTIONS(2901), + [anon_sym_typename] = ACTIONS(2901), + [anon_sym_template] = ACTIONS(2901), + [anon_sym_try] = ACTIONS(2901), + [anon_sym_delete] = ACTIONS(2901), + [anon_sym_throw] = ACTIONS(2901), + [anon_sym_co_return] = ACTIONS(2901), + [anon_sym_co_yield] = ACTIONS(2901), + [anon_sym_R_DQUOTE] = ACTIONS(2903), + [anon_sym_LR_DQUOTE] = ACTIONS(2903), + [anon_sym_uR_DQUOTE] = ACTIONS(2903), + [anon_sym_UR_DQUOTE] = ACTIONS(2903), + [anon_sym_u8R_DQUOTE] = ACTIONS(2903), + [anon_sym_co_await] = ACTIONS(2901), + [anon_sym_new] = ACTIONS(2901), + [anon_sym_requires] = ACTIONS(2901), + [sym_this] = ACTIONS(2901), + }, + [1174] = { + [sym_identifier] = ACTIONS(2957), + [anon_sym_LPAREN2] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym___extension__] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym___attribute__] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2959), + [anon_sym___declspec] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_signed] = ACTIONS(2957), + [anon_sym_unsigned] = ACTIONS(2957), + [anon_sym_long] = ACTIONS(2957), + [anon_sym_short] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_register] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym___inline] = ACTIONS(2957), + [anon_sym___inline__] = ACTIONS(2957), + [anon_sym___forceinline] = ACTIONS(2957), + [anon_sym_thread_local] = ACTIONS(2957), + [anon_sym___thread] = ACTIONS(2957), + [anon_sym_const] = ACTIONS(2957), + [anon_sym_constexpr] = ACTIONS(2957), + [anon_sym_volatile] = ACTIONS(2957), + [anon_sym_restrict] = ACTIONS(2957), + [anon_sym___restrict__] = ACTIONS(2957), + [anon_sym__Atomic] = ACTIONS(2957), + [anon_sym__Noreturn] = ACTIONS(2957), + [anon_sym_noreturn] = ACTIONS(2957), + [anon_sym_mutable] = ACTIONS(2957), + [anon_sym_constinit] = ACTIONS(2957), + [anon_sym_consteval] = ACTIONS(2957), + [sym_primitive_type] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_struct] = ACTIONS(2957), + [anon_sym_union] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_goto] = ACTIONS(2957), + [anon_sym___try] = ACTIONS(2957), + [anon_sym___leave] = ACTIONS(2957), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_compl] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_sizeof] = ACTIONS(2957), + [anon_sym___alignof__] = ACTIONS(2957), + [anon_sym___alignof] = ACTIONS(2957), + [anon_sym__alignof] = ACTIONS(2957), + [anon_sym_alignof] = ACTIONS(2957), + [anon_sym__Alignof] = ACTIONS(2957), + [anon_sym_offsetof] = ACTIONS(2957), + [anon_sym__Generic] = ACTIONS(2957), + [anon_sym_asm] = ACTIONS(2957), + [anon_sym___asm__] = ACTIONS(2957), + [sym_number_literal] = ACTIONS(2959), + [anon_sym_L_SQUOTE] = ACTIONS(2959), + [anon_sym_u_SQUOTE] = ACTIONS(2959), + [anon_sym_U_SQUOTE] = ACTIONS(2959), + [anon_sym_u8_SQUOTE] = ACTIONS(2959), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_L_DQUOTE] = ACTIONS(2959), + [anon_sym_u_DQUOTE] = ACTIONS(2959), + [anon_sym_U_DQUOTE] = ACTIONS(2959), + [anon_sym_u8_DQUOTE] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [anon_sym_NULL] = ACTIONS(2957), + [anon_sym_nullptr] = ACTIONS(2957), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2957), + [anon_sym_decltype] = ACTIONS(2957), + [anon_sym_virtual] = ACTIONS(2957), + [anon_sym_alignas] = ACTIONS(2957), + [anon_sym_typename] = ACTIONS(2957), + [anon_sym_template] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_delete] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_co_return] = ACTIONS(2957), + [anon_sym_co_yield] = ACTIONS(2957), + [anon_sym_R_DQUOTE] = ACTIONS(2959), + [anon_sym_LR_DQUOTE] = ACTIONS(2959), + [anon_sym_uR_DQUOTE] = ACTIONS(2959), + [anon_sym_UR_DQUOTE] = ACTIONS(2959), + [anon_sym_u8R_DQUOTE] = ACTIONS(2959), + [anon_sym_co_await] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_requires] = ACTIONS(2957), + [sym_this] = ACTIONS(2957), + }, + [1175] = { + [sym_identifier] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_else] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym___try] = ACTIONS(2875), + [anon_sym___leave] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [anon_sym___alignof__] = ACTIONS(2875), + [anon_sym___alignof] = ACTIONS(2875), + [anon_sym__alignof] = ACTIONS(2875), + [anon_sym_alignof] = ACTIONS(2875), + [anon_sym__Alignof] = ACTIONS(2875), + [anon_sym_offsetof] = ACTIONS(2875), + [anon_sym__Generic] = ACTIONS(2875), + [anon_sym_asm] = ACTIONS(2875), + [anon_sym___asm__] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [anon_sym_NULL] = ACTIONS(2875), + [anon_sym_nullptr] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_R_DQUOTE] = ACTIONS(2877), + [anon_sym_LR_DQUOTE] = ACTIONS(2877), + [anon_sym_uR_DQUOTE] = ACTIONS(2877), + [anon_sym_UR_DQUOTE] = ACTIONS(2877), + [anon_sym_u8R_DQUOTE] = ACTIONS(2877), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), + }, + [1176] = { + [sym_identifier] = ACTIONS(2989), + [anon_sym_LPAREN2] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym___extension__] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym___attribute__] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), + [anon_sym___declspec] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_signed] = ACTIONS(2989), + [anon_sym_unsigned] = ACTIONS(2989), + [anon_sym_long] = ACTIONS(2989), + [anon_sym_short] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_register] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym___inline] = ACTIONS(2989), + [anon_sym___inline__] = ACTIONS(2989), + [anon_sym___forceinline] = ACTIONS(2989), + [anon_sym_thread_local] = ACTIONS(2989), + [anon_sym___thread] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_constexpr] = ACTIONS(2989), + [anon_sym_volatile] = ACTIONS(2989), + [anon_sym_restrict] = ACTIONS(2989), + [anon_sym___restrict__] = ACTIONS(2989), + [anon_sym__Atomic] = ACTIONS(2989), + [anon_sym__Noreturn] = ACTIONS(2989), + [anon_sym_noreturn] = ACTIONS(2989), + [anon_sym_mutable] = ACTIONS(2989), + [anon_sym_constinit] = ACTIONS(2989), + [anon_sym_consteval] = ACTIONS(2989), + [sym_primitive_type] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_else] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym___try] = ACTIONS(2989), + [anon_sym___leave] = ACTIONS(2989), + [anon_sym_not] = ACTIONS(2989), + [anon_sym_compl] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_sizeof] = ACTIONS(2989), + [anon_sym___alignof__] = ACTIONS(2989), + [anon_sym___alignof] = ACTIONS(2989), + [anon_sym__alignof] = ACTIONS(2989), + [anon_sym_alignof] = ACTIONS(2989), + [anon_sym__Alignof] = ACTIONS(2989), + [anon_sym_offsetof] = ACTIONS(2989), + [anon_sym__Generic] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym___asm__] = ACTIONS(2989), + [sym_number_literal] = ACTIONS(2991), + [anon_sym_L_SQUOTE] = ACTIONS(2991), + [anon_sym_u_SQUOTE] = ACTIONS(2991), + [anon_sym_U_SQUOTE] = ACTIONS(2991), + [anon_sym_u8_SQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_L_DQUOTE] = ACTIONS(2991), + [anon_sym_u_DQUOTE] = ACTIONS(2991), + [anon_sym_U_DQUOTE] = ACTIONS(2991), + [anon_sym_u8_DQUOTE] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [anon_sym_NULL] = ACTIONS(2989), + [anon_sym_nullptr] = ACTIONS(2989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2989), + [anon_sym_decltype] = ACTIONS(2989), + [anon_sym_virtual] = ACTIONS(2989), + [anon_sym_alignas] = ACTIONS(2989), + [anon_sym_typename] = ACTIONS(2989), + [anon_sym_template] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_co_return] = ACTIONS(2989), + [anon_sym_co_yield] = ACTIONS(2989), + [anon_sym_R_DQUOTE] = ACTIONS(2991), + [anon_sym_LR_DQUOTE] = ACTIONS(2991), + [anon_sym_uR_DQUOTE] = ACTIONS(2991), + [anon_sym_UR_DQUOTE] = ACTIONS(2991), + [anon_sym_u8R_DQUOTE] = ACTIONS(2991), + [anon_sym_co_await] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_requires] = ACTIONS(2989), + [sym_this] = ACTIONS(2989), + }, + [1177] = { + [sym_identifier] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2881), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym___extension__] = ACTIONS(2879), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym___inline] = ACTIONS(2879), + [anon_sym___inline__] = ACTIONS(2879), + [anon_sym___forceinline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym___thread] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym___restrict__] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym__Noreturn] = ACTIONS(2879), + [anon_sym_noreturn] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_else] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym___try] = ACTIONS(2879), + [anon_sym___leave] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [anon_sym___alignof__] = ACTIONS(2879), + [anon_sym___alignof] = ACTIONS(2879), + [anon_sym__alignof] = ACTIONS(2879), + [anon_sym_alignof] = ACTIONS(2879), + [anon_sym__Alignof] = ACTIONS(2879), + [anon_sym_offsetof] = ACTIONS(2879), + [anon_sym__Generic] = ACTIONS(2879), + [anon_sym_asm] = ACTIONS(2879), + [anon_sym___asm__] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [anon_sym_NULL] = ACTIONS(2879), + [anon_sym_nullptr] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_alignas] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_R_DQUOTE] = ACTIONS(2881), + [anon_sym_LR_DQUOTE] = ACTIONS(2881), + [anon_sym_uR_DQUOTE] = ACTIONS(2881), + [anon_sym_UR_DQUOTE] = ACTIONS(2881), + [anon_sym_u8R_DQUOTE] = ACTIONS(2881), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), + }, + [1178] = { + [sym_identifier] = ACTIONS(2905), + [anon_sym_LPAREN2] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym___extension__] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym___attribute__] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2907), + [anon_sym___declspec] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2905), + [anon_sym_unsigned] = ACTIONS(2905), + [anon_sym_long] = ACTIONS(2905), + [anon_sym_short] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_static] = ACTIONS(2905), + [anon_sym_register] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym___inline] = ACTIONS(2905), + [anon_sym___inline__] = ACTIONS(2905), + [anon_sym___forceinline] = ACTIONS(2905), + [anon_sym_thread_local] = ACTIONS(2905), + [anon_sym___thread] = ACTIONS(2905), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_constexpr] = ACTIONS(2905), + [anon_sym_volatile] = ACTIONS(2905), + [anon_sym_restrict] = ACTIONS(2905), + [anon_sym___restrict__] = ACTIONS(2905), + [anon_sym__Atomic] = ACTIONS(2905), + [anon_sym__Noreturn] = ACTIONS(2905), + [anon_sym_noreturn] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_union] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_else] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_goto] = ACTIONS(2905), + [anon_sym___try] = ACTIONS(2905), + [anon_sym___leave] = ACTIONS(2905), + [anon_sym_not] = ACTIONS(2905), + [anon_sym_compl] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_sizeof] = ACTIONS(2905), + [anon_sym___alignof__] = ACTIONS(2905), + [anon_sym___alignof] = ACTIONS(2905), + [anon_sym__alignof] = ACTIONS(2905), + [anon_sym_alignof] = ACTIONS(2905), + [anon_sym__Alignof] = ACTIONS(2905), + [anon_sym_offsetof] = ACTIONS(2905), + [anon_sym__Generic] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym___asm__] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2907), + [anon_sym_L_SQUOTE] = ACTIONS(2907), + [anon_sym_u_SQUOTE] = ACTIONS(2907), + [anon_sym_U_SQUOTE] = ACTIONS(2907), + [anon_sym_u8_SQUOTE] = ACTIONS(2907), + [anon_sym_SQUOTE] = ACTIONS(2907), + [anon_sym_L_DQUOTE] = ACTIONS(2907), + [anon_sym_u_DQUOTE] = ACTIONS(2907), + [anon_sym_U_DQUOTE] = ACTIONS(2907), + [anon_sym_u8_DQUOTE] = ACTIONS(2907), + [anon_sym_DQUOTE] = ACTIONS(2907), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [anon_sym_NULL] = ACTIONS(2905), + [anon_sym_nullptr] = ACTIONS(2905), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2905), + [anon_sym_decltype] = ACTIONS(2905), + [anon_sym_virtual] = ACTIONS(2905), + [anon_sym_alignas] = ACTIONS(2905), + [anon_sym_typename] = ACTIONS(2905), + [anon_sym_template] = ACTIONS(2905), + [anon_sym_try] = ACTIONS(2905), + [anon_sym_delete] = ACTIONS(2905), + [anon_sym_throw] = ACTIONS(2905), + [anon_sym_co_return] = ACTIONS(2905), + [anon_sym_co_yield] = ACTIONS(2905), + [anon_sym_R_DQUOTE] = ACTIONS(2907), + [anon_sym_LR_DQUOTE] = ACTIONS(2907), + [anon_sym_uR_DQUOTE] = ACTIONS(2907), + [anon_sym_UR_DQUOTE] = ACTIONS(2907), + [anon_sym_u8R_DQUOTE] = ACTIONS(2907), + [anon_sym_co_await] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_requires] = ACTIONS(2905), + [sym_this] = ACTIONS(2905), + }, + [1179] = { + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN2] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2919), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym___extension__] = ACTIONS(2917), + [anon_sym_typedef] = ACTIONS(2917), + [anon_sym_extern] = ACTIONS(2917), + [anon_sym___attribute__] = ACTIONS(2917), + [anon_sym_COLON_COLON] = ACTIONS(2919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), + [anon_sym___declspec] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_signed] = ACTIONS(2917), + [anon_sym_unsigned] = ACTIONS(2917), + [anon_sym_long] = ACTIONS(2917), + [anon_sym_short] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2917), + [anon_sym_static] = ACTIONS(2917), + [anon_sym_register] = ACTIONS(2917), + [anon_sym_inline] = ACTIONS(2917), + [anon_sym___inline] = ACTIONS(2917), + [anon_sym___inline__] = ACTIONS(2917), + [anon_sym___forceinline] = ACTIONS(2917), + [anon_sym_thread_local] = ACTIONS(2917), + [anon_sym___thread] = ACTIONS(2917), + [anon_sym_const] = ACTIONS(2917), + [anon_sym_constexpr] = ACTIONS(2917), + [anon_sym_volatile] = ACTIONS(2917), + [anon_sym_restrict] = ACTIONS(2917), + [anon_sym___restrict__] = ACTIONS(2917), + [anon_sym__Atomic] = ACTIONS(2917), + [anon_sym__Noreturn] = ACTIONS(2917), + [anon_sym_noreturn] = ACTIONS(2917), + [anon_sym_mutable] = ACTIONS(2917), + [anon_sym_constinit] = ACTIONS(2917), + [anon_sym_consteval] = ACTIONS(2917), + [sym_primitive_type] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), + [anon_sym_class] = ACTIONS(2917), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_union] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_else] = ACTIONS(2917), + [anon_sym_switch] = ACTIONS(2917), + [anon_sym_while] = ACTIONS(2917), + [anon_sym_do] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_goto] = ACTIONS(2917), + [anon_sym___try] = ACTIONS(2917), + [anon_sym___leave] = ACTIONS(2917), + [anon_sym_not] = ACTIONS(2917), + [anon_sym_compl] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_sizeof] = ACTIONS(2917), + [anon_sym___alignof__] = ACTIONS(2917), + [anon_sym___alignof] = ACTIONS(2917), + [anon_sym__alignof] = ACTIONS(2917), + [anon_sym_alignof] = ACTIONS(2917), + [anon_sym__Alignof] = ACTIONS(2917), + [anon_sym_offsetof] = ACTIONS(2917), + [anon_sym__Generic] = ACTIONS(2917), + [anon_sym_asm] = ACTIONS(2917), + [anon_sym___asm__] = ACTIONS(2917), + [sym_number_literal] = ACTIONS(2919), + [anon_sym_L_SQUOTE] = ACTIONS(2919), + [anon_sym_u_SQUOTE] = ACTIONS(2919), + [anon_sym_U_SQUOTE] = ACTIONS(2919), + [anon_sym_u8_SQUOTE] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2919), + [anon_sym_L_DQUOTE] = ACTIONS(2919), + [anon_sym_u_DQUOTE] = ACTIONS(2919), + [anon_sym_U_DQUOTE] = ACTIONS(2919), + [anon_sym_u8_DQUOTE] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2919), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [anon_sym_NULL] = ACTIONS(2917), + [anon_sym_nullptr] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2917), + [anon_sym_decltype] = ACTIONS(2917), + [anon_sym_virtual] = ACTIONS(2917), + [anon_sym_alignas] = ACTIONS(2917), + [anon_sym_typename] = ACTIONS(2917), + [anon_sym_template] = ACTIONS(2917), + [anon_sym_try] = ACTIONS(2917), + [anon_sym_delete] = ACTIONS(2917), + [anon_sym_throw] = ACTIONS(2917), + [anon_sym_co_return] = ACTIONS(2917), + [anon_sym_co_yield] = ACTIONS(2917), + [anon_sym_R_DQUOTE] = ACTIONS(2919), + [anon_sym_LR_DQUOTE] = ACTIONS(2919), + [anon_sym_uR_DQUOTE] = ACTIONS(2919), + [anon_sym_UR_DQUOTE] = ACTIONS(2919), + [anon_sym_u8R_DQUOTE] = ACTIONS(2919), + [anon_sym_co_await] = ACTIONS(2917), + [anon_sym_new] = ACTIONS(2917), + [anon_sym_requires] = ACTIONS(2917), + [sym_this] = ACTIONS(2917), + }, + [1180] = { + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN2] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym___extension__] = ACTIONS(2953), + [anon_sym_typedef] = ACTIONS(2953), + [anon_sym_extern] = ACTIONS(2953), + [anon_sym___attribute__] = ACTIONS(2953), + [anon_sym_COLON_COLON] = ACTIONS(2955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2955), + [anon_sym___declspec] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_signed] = ACTIONS(2953), + [anon_sym_unsigned] = ACTIONS(2953), + [anon_sym_long] = ACTIONS(2953), + [anon_sym_short] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(2953), + [anon_sym_static] = ACTIONS(2953), + [anon_sym_register] = ACTIONS(2953), + [anon_sym_inline] = ACTIONS(2953), + [anon_sym___inline] = ACTIONS(2953), + [anon_sym___inline__] = ACTIONS(2953), + [anon_sym___forceinline] = ACTIONS(2953), + [anon_sym_thread_local] = ACTIONS(2953), + [anon_sym___thread] = ACTIONS(2953), + [anon_sym_const] = ACTIONS(2953), + [anon_sym_constexpr] = ACTIONS(2953), + [anon_sym_volatile] = ACTIONS(2953), + [anon_sym_restrict] = ACTIONS(2953), + [anon_sym___restrict__] = ACTIONS(2953), + [anon_sym__Atomic] = ACTIONS(2953), + [anon_sym__Noreturn] = ACTIONS(2953), + [anon_sym_noreturn] = ACTIONS(2953), + [anon_sym_mutable] = ACTIONS(2953), + [anon_sym_constinit] = ACTIONS(2953), + [anon_sym_consteval] = ACTIONS(2953), + [sym_primitive_type] = ACTIONS(2953), + [anon_sym_enum] = ACTIONS(2953), + [anon_sym_class] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(2953), + [anon_sym_union] = ACTIONS(2953), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_else] = ACTIONS(2953), + [anon_sym_switch] = ACTIONS(2953), + [anon_sym_while] = ACTIONS(2953), + [anon_sym_do] = ACTIONS(2953), + [anon_sym_for] = ACTIONS(2953), + [anon_sym_return] = ACTIONS(2953), + [anon_sym_break] = ACTIONS(2953), + [anon_sym_continue] = ACTIONS(2953), + [anon_sym_goto] = ACTIONS(2953), + [anon_sym___try] = ACTIONS(2953), + [anon_sym___leave] = ACTIONS(2953), + [anon_sym_not] = ACTIONS(2953), + [anon_sym_compl] = ACTIONS(2953), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_sizeof] = ACTIONS(2953), + [anon_sym___alignof__] = ACTIONS(2953), + [anon_sym___alignof] = ACTIONS(2953), + [anon_sym__alignof] = ACTIONS(2953), + [anon_sym_alignof] = ACTIONS(2953), + [anon_sym__Alignof] = ACTIONS(2953), + [anon_sym_offsetof] = ACTIONS(2953), + [anon_sym__Generic] = ACTIONS(2953), + [anon_sym_asm] = ACTIONS(2953), + [anon_sym___asm__] = ACTIONS(2953), + [sym_number_literal] = ACTIONS(2955), + [anon_sym_L_SQUOTE] = ACTIONS(2955), + [anon_sym_u_SQUOTE] = ACTIONS(2955), + [anon_sym_U_SQUOTE] = ACTIONS(2955), + [anon_sym_u8_SQUOTE] = ACTIONS(2955), + [anon_sym_SQUOTE] = ACTIONS(2955), + [anon_sym_L_DQUOTE] = ACTIONS(2955), + [anon_sym_u_DQUOTE] = ACTIONS(2955), + [anon_sym_U_DQUOTE] = ACTIONS(2955), + [anon_sym_u8_DQUOTE] = ACTIONS(2955), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_true] = ACTIONS(2953), + [sym_false] = ACTIONS(2953), + [anon_sym_NULL] = ACTIONS(2953), + [anon_sym_nullptr] = ACTIONS(2953), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2953), + [anon_sym_decltype] = ACTIONS(2953), + [anon_sym_virtual] = ACTIONS(2953), + [anon_sym_alignas] = ACTIONS(2953), + [anon_sym_typename] = ACTIONS(2953), + [anon_sym_template] = ACTIONS(2953), + [anon_sym_try] = ACTIONS(2953), + [anon_sym_delete] = ACTIONS(2953), + [anon_sym_throw] = ACTIONS(2953), + [anon_sym_co_return] = ACTIONS(2953), + [anon_sym_co_yield] = ACTIONS(2953), + [anon_sym_R_DQUOTE] = ACTIONS(2955), + [anon_sym_LR_DQUOTE] = ACTIONS(2955), + [anon_sym_uR_DQUOTE] = ACTIONS(2955), + [anon_sym_UR_DQUOTE] = ACTIONS(2955), + [anon_sym_u8R_DQUOTE] = ACTIONS(2955), + [anon_sym_co_await] = ACTIONS(2953), + [anon_sym_new] = ACTIONS(2953), + [anon_sym_requires] = ACTIONS(2953), + [sym_this] = ACTIONS(2953), + }, + [1181] = { + [sym_identifier] = ACTIONS(2921), + [anon_sym_LPAREN2] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym___extension__] = ACTIONS(2921), + [anon_sym_typedef] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym___attribute__] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(2923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), + [anon_sym___declspec] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2921), + [anon_sym_unsigned] = ACTIONS(2921), + [anon_sym_long] = ACTIONS(2921), + [anon_sym_short] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_register] = ACTIONS(2921), + [anon_sym_inline] = ACTIONS(2921), + [anon_sym___inline] = ACTIONS(2921), + [anon_sym___inline__] = ACTIONS(2921), + [anon_sym___forceinline] = ACTIONS(2921), + [anon_sym_thread_local] = ACTIONS(2921), + [anon_sym___thread] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_constexpr] = ACTIONS(2921), + [anon_sym_volatile] = ACTIONS(2921), + [anon_sym_restrict] = ACTIONS(2921), + [anon_sym___restrict__] = ACTIONS(2921), + [anon_sym__Atomic] = ACTIONS(2921), + [anon_sym__Noreturn] = ACTIONS(2921), + [anon_sym_noreturn] = ACTIONS(2921), + [anon_sym_mutable] = ACTIONS(2921), + [anon_sym_constinit] = ACTIONS(2921), + [anon_sym_consteval] = ACTIONS(2921), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), + [anon_sym_class] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_union] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_else] = ACTIONS(2921), + [anon_sym_switch] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_do] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_goto] = ACTIONS(2921), + [anon_sym___try] = ACTIONS(2921), + [anon_sym___leave] = ACTIONS(2921), + [anon_sym_not] = ACTIONS(2921), + [anon_sym_compl] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_sizeof] = ACTIONS(2921), + [anon_sym___alignof__] = ACTIONS(2921), + [anon_sym___alignof] = ACTIONS(2921), + [anon_sym__alignof] = ACTIONS(2921), + [anon_sym_alignof] = ACTIONS(2921), + [anon_sym__Alignof] = ACTIONS(2921), + [anon_sym_offsetof] = ACTIONS(2921), + [anon_sym__Generic] = ACTIONS(2921), + [anon_sym_asm] = ACTIONS(2921), + [anon_sym___asm__] = ACTIONS(2921), + [sym_number_literal] = ACTIONS(2923), + [anon_sym_L_SQUOTE] = ACTIONS(2923), + [anon_sym_u_SQUOTE] = ACTIONS(2923), + [anon_sym_U_SQUOTE] = ACTIONS(2923), + [anon_sym_u8_SQUOTE] = ACTIONS(2923), + [anon_sym_SQUOTE] = ACTIONS(2923), + [anon_sym_L_DQUOTE] = ACTIONS(2923), + [anon_sym_u_DQUOTE] = ACTIONS(2923), + [anon_sym_U_DQUOTE] = ACTIONS(2923), + [anon_sym_u8_DQUOTE] = ACTIONS(2923), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [anon_sym_NULL] = ACTIONS(2921), + [anon_sym_nullptr] = ACTIONS(2921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2921), + [anon_sym_decltype] = ACTIONS(2921), + [anon_sym_virtual] = ACTIONS(2921), + [anon_sym_alignas] = ACTIONS(2921), + [anon_sym_typename] = ACTIONS(2921), + [anon_sym_template] = ACTIONS(2921), + [anon_sym_try] = ACTIONS(2921), + [anon_sym_delete] = ACTIONS(2921), + [anon_sym_throw] = ACTIONS(2921), + [anon_sym_co_return] = ACTIONS(2921), + [anon_sym_co_yield] = ACTIONS(2921), + [anon_sym_R_DQUOTE] = ACTIONS(2923), + [anon_sym_LR_DQUOTE] = ACTIONS(2923), + [anon_sym_uR_DQUOTE] = ACTIONS(2923), + [anon_sym_UR_DQUOTE] = ACTIONS(2923), + [anon_sym_u8R_DQUOTE] = ACTIONS(2923), + [anon_sym_co_await] = ACTIONS(2921), + [anon_sym_new] = ACTIONS(2921), + [anon_sym_requires] = ACTIONS(2921), + [sym_this] = ACTIONS(2921), + }, + [1182] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2002), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4139), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4137), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4171), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [1183] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1197), + [sym_compound_requirement] = STATE(1197), + [sym__requirement] = STATE(1197), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1197), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -253000,11 +248065,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -253019,7 +248085,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -253036,7 +248101,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -253049,56 +248115,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1233] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1184] = { + [sym__expression] = STATE(4887), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8357), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -253107,10 +248174,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -253142,7 +248209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -253155,56 +248222,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1234] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1185] = { + [sym_string_literal] = STATE(2518), + [sym_template_argument_list] = STATE(1951), + [sym_raw_string_literal] = STATE(2518), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4150), + [anon_sym_COMMA] = ACTIONS(4150), + [anon_sym_RPAREN] = ACTIONS(4150), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4143), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4147), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4192), + [anon_sym_or_eq] = ACTIONS(4192), + [anon_sym_xor_eq] = ACTIONS(4192), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4145), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(4196), + [anon_sym_LR_DQUOTE] = ACTIONS(4196), + [anon_sym_uR_DQUOTE] = ACTIONS(4196), + [anon_sym_UR_DQUOTE] = ACTIONS(4196), + [anon_sym_u8R_DQUOTE] = ACTIONS(4196), + [anon_sym_DASH_GT_STAR] = ACTIONS(4137), + }, + [1186] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -253212,11 +248386,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4385), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -253231,7 +248406,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -253248,7 +248422,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -253261,56 +248436,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1235] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1187] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -253318,11 +248493,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -253337,7 +248513,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -253354,7 +248529,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -253367,56 +248543,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1236] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1188] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2004), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4143), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4202), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [1189] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2002), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4139), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4204), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [1190] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -253424,11 +248814,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -253443,7 +248834,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -253460,7 +248850,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -253473,162 +248864,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1237] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1967), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4141), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4152), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4160), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), + [1191] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2004), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4143), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4208), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), }, - [1238] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1192] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1217), + [sym_compound_requirement] = STATE(1217), + [sym__requirement] = STATE(1217), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1217), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -253636,11 +249028,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4391), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -253655,7 +249048,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -253672,7 +249064,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -253685,162 +249078,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1239] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(1971), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_sized_type_specifier_repeat1] = STATE(3750), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4152), - [anon_sym_COMMA] = ACTIONS(4152), - [anon_sym_RPAREN] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_TILDE] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4155), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym___extension__] = ACTIONS(4137), - [anon_sym_extern] = ACTIONS(4137), - [anon_sym___attribute__] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4145), - [anon_sym___declspec] = ACTIONS(4137), - [anon_sym___based] = ACTIONS(4137), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(4165), - [anon_sym_unsigned] = ACTIONS(4165), - [anon_sym_long] = ACTIONS(4165), - [anon_sym_short] = ACTIONS(4165), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_EQ] = ACTIONS(4137), - [anon_sym_static] = ACTIONS(4137), - [anon_sym_register] = ACTIONS(4137), - [anon_sym_inline] = ACTIONS(4137), - [anon_sym___inline] = ACTIONS(4137), - [anon_sym___inline__] = ACTIONS(4137), - [anon_sym___forceinline] = ACTIONS(4137), - [anon_sym_thread_local] = ACTIONS(4137), - [anon_sym___thread] = ACTIONS(4137), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4137), - [anon_sym_volatile] = ACTIONS(4137), - [anon_sym_restrict] = ACTIONS(4137), - [anon_sym___restrict__] = ACTIONS(4137), - [anon_sym__Atomic] = ACTIONS(4137), - [anon_sym__Noreturn] = ACTIONS(4137), - [anon_sym_noreturn] = ACTIONS(4137), - [anon_sym_mutable] = ACTIONS(4137), - [anon_sym_constinit] = ACTIONS(4137), - [anon_sym_consteval] = ACTIONS(4137), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4171), - [anon_sym_or_eq] = ACTIONS(4171), - [anon_sym_xor_eq] = ACTIONS(4171), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - [anon_sym_virtual] = ACTIONS(4137), - [anon_sym_alignas] = ACTIONS(4137), - [anon_sym_template] = ACTIONS(4137), - [anon_sym_operator] = ACTIONS(4137), - [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), - }, - [1240] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1193] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1200), + [sym_compound_requirement] = STATE(1200), + [sym__requirement] = STATE(1200), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1200), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -253848,11 +249135,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4238), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -253867,7 +249155,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -253884,7 +249171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -253897,56 +249185,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1241] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1194] = { + [sym__expression] = STATE(4883), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7683), + [sym_initializer_pair] = STATE(7683), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4214), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -253955,10 +249244,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4216), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -253990,7 +249279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -254003,56 +249292,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1242] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1195] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2002), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4139), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [1196] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2004), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4143), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [1197] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -254060,11 +249563,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4222), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -254079,7 +249583,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -254096,7 +249599,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -254109,56 +249613,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1243] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1198] = { + [sym__expression] = STATE(4819), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7898), + [sym_initializer_pair] = STATE(7898), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4224), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -254167,10 +249672,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -254202,7 +249707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -254215,56 +249720,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1244] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1199] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2002), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4139), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4228), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [1200] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -254272,11 +249884,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4399), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -254291,7 +249904,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -254308,7 +249920,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -254321,56 +249934,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1245] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1201] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -254378,11 +249991,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -254397,7 +250011,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -254414,7 +250027,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -254427,56 +250041,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1246] = { - [sym__expression] = STATE(5056), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8105), - [sym_initializer_pair] = STATE(8105), - [sym_subscript_designator] = STATE(7121), - [sym_subscript_range_designator] = STATE(7121), - [sym_field_designator] = STATE(7121), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [aux_sym_initializer_pair_repeat1] = STATE(7121), - [sym_identifier] = ACTIONS(4177), + [1202] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2004), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4143), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [1203] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1190), + [sym_compound_requirement] = STATE(1190), + [sym__requirement] = STATE(1190), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1190), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -254484,10 +250205,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(4183), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4234), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -254502,7 +250225,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -254519,7 +250241,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -254532,156 +250255,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1247] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7053), - [sym__abstract_declarator] = STATE(7246), - [sym_parenthesized_declarator] = STATE(6760), - [sym_abstract_parenthesized_declarator] = STATE(6616), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_abstract_pointer_declarator] = STATE(6616), - [sym_function_declarator] = STATE(6760), - [sym_abstract_function_declarator] = STATE(6616), - [sym_array_declarator] = STATE(6760), - [sym_abstract_array_declarator] = STATE(6616), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_list] = STATE(4159), - [sym_parameter_declaration] = STATE(7870), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7870), - [sym_variadic_parameter_declaration] = STATE(7870), - [sym_reference_declarator] = STATE(6760), - [sym_abstract_reference_declarator] = STATE(6616), - [sym_structured_binding_declarator] = STATE(6760), - [sym__function_declarator_seq] = STATE(6625), - [sym_template_type] = STATE(3357), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6139), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(4403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), - [anon_sym_RPAREN] = ACTIONS(4405), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4411), - [anon_sym_AMP] = ACTIONS(4413), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), - }, - [1248] = { - [sym_compound_statement] = STATE(7867), - [sym__expression] = STATE(4922), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7867), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4419), + [1204] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -254689,11 +250312,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4421), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -254724,7 +250348,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -254737,53 +250362,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1249] = { - [sym_compound_statement] = STATE(7971), - [sym__expression] = STATE(4781), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7971), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4423), + [1205] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1226), + [sym_compound_requirement] = STATE(1226), + [sym__requirement] = STATE(1226), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1226), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -254791,11 +250419,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4425), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4238), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -254826,7 +250455,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -254839,53 +250469,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1250] = { - [sym_compound_statement] = STATE(7654), - [sym__expression] = STATE(4850), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7654), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4427), + [1206] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2004), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_RPAREN] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4143), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [1207] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1201), + [sym_compound_requirement] = STATE(1201), + [sym__requirement] = STATE(1201), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1201), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -254893,11 +250633,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4429), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -254928,7 +250669,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -254941,53 +250683,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1251] = { - [sym_compound_statement] = STATE(7677), - [sym__expression] = STATE(4833), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7677), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4431), + [1208] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2004), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4143), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4204), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [1209] = { + [sym__expression] = STATE(4874), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7664), + [sym_initializer_pair] = STATE(7664), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4242), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -254995,11 +250848,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4433), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4244), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -255014,6 +250867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -255030,7 +250884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -255043,53 +250897,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1252] = { - [sym_compound_statement] = STATE(7758), - [sym__expression] = STATE(4872), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7758), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4435), + [1210] = { + [sym__expression] = STATE(4815), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7668), + [sym_initializer_pair] = STATE(7668), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4246), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -255097,11 +250955,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4437), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -255116,6 +250974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -255132,7 +250991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -255145,53 +251004,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1253] = { - [sym_compound_statement] = STATE(7793), - [sym__expression] = STATE(4751), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7793), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4439), + [1211] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1187), + [sym_compound_requirement] = STATE(1187), + [sym__requirement] = STATE(1187), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1187), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -255199,11 +251061,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -255234,7 +251097,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -255247,53 +251111,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1254] = { - [sym_compound_statement] = STATE(7643), - [sym__expression] = STATE(4796), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7643), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4443), + [1212] = { + [sym__expression] = STATE(4789), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7829), + [sym_initializer_pair] = STATE(7829), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4252), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -255301,11 +251169,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4445), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4254), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -255320,6 +251188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -255336,7 +251205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -255349,53 +251218,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1255] = { - [sym_compound_statement] = STATE(7791), - [sym__expression] = STATE(4843), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7791), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4447), + [1213] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1186), + [sym_compound_requirement] = STATE(1186), + [sym__requirement] = STATE(1186), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -255403,11 +251275,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4449), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4256), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -255438,7 +251311,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -255451,53 +251325,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1256] = { - [sym_compound_statement] = STATE(7816), - [sym__expression] = STATE(4761), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(7816), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4451), + [1214] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1220), + [sym_compound_requirement] = STATE(1220), + [sym__requirement] = STATE(1220), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1220), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -255505,11 +251382,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4453), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -255540,7 +251418,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -255553,52 +251432,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1257] = { - [sym__expression] = STATE(5057), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8677), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8677), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1215] = { + [sym__expression] = STATE(4859), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7972), + [sym_initializer_pair] = STATE(7972), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4260), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -255606,11 +251490,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4455), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -255625,6 +251509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -255641,7 +251526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -255654,153 +251539,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1258] = { - [sym__expression] = STATE(3662), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9026), - [sym__unary_right_fold] = STATE(9134), - [sym__binary_fold] = STATE(9135), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1259] = { - [sym_compound_statement] = STATE(8109), - [sym__expression] = STATE(5036), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8109), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1216] = { + [sym__expression] = STATE(4770), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7680), + [sym_initializer_pair] = STATE(7680), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4264), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -255808,11 +251597,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(4457), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -255827,6 +251616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -255843,7 +251633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -255856,153 +251646,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1260] = { - [sym__expression] = STATE(3581), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8714), - [sym__unary_right_fold] = STATE(8713), - [sym__binary_fold] = STATE(8711), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1261] = { - [sym__expression] = STATE(5033), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8885), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8885), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1217] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -256010,11 +251703,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4459), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -256045,7 +251739,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -256058,153 +251753,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1262] = { - [sym__expression] = STATE(3568), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8886), - [sym__unary_right_fold] = STATE(8887), - [sym__binary_fold] = STATE(8888), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1263] = { - [sym__expression] = STATE(4944), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9023), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(9023), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1218] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -256212,11 +251810,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4461), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -256247,7 +251846,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -256260,153 +251860,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1264] = { - [sym__expression] = STATE(3576), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8897), - [sym__unary_right_fold] = STATE(8896), - [sym__binary_fold] = STATE(8895), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [1219] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(4272), + [anon_sym_LPAREN2] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4278), + [anon_sym_TILDE] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4284), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym_COLON_COLON] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4298), + [sym_primitive_type] = ACTIONS(4301), + [anon_sym_not] = ACTIONS(4281), + [anon_sym_compl] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4304), + [anon_sym_sizeof] = ACTIONS(4307), + [anon_sym___alignof__] = ACTIONS(4310), + [anon_sym___alignof] = ACTIONS(4310), + [anon_sym__alignof] = ACTIONS(4310), + [anon_sym_alignof] = ACTIONS(4310), + [anon_sym__Alignof] = ACTIONS(4310), + [anon_sym_offsetof] = ACTIONS(4313), + [anon_sym__Generic] = ACTIONS(4316), + [anon_sym_asm] = ACTIONS(4319), + [anon_sym___asm__] = ACTIONS(4319), + [sym_number_literal] = ACTIONS(4322), + [anon_sym_L_SQUOTE] = ACTIONS(4325), + [anon_sym_u_SQUOTE] = ACTIONS(4325), + [anon_sym_U_SQUOTE] = ACTIONS(4325), + [anon_sym_u8_SQUOTE] = ACTIONS(4325), + [anon_sym_SQUOTE] = ACTIONS(4325), + [anon_sym_L_DQUOTE] = ACTIONS(4328), + [anon_sym_u_DQUOTE] = ACTIONS(4328), + [anon_sym_U_DQUOTE] = ACTIONS(4328), + [anon_sym_u8_DQUOTE] = ACTIONS(4328), + [anon_sym_DQUOTE] = ACTIONS(4328), + [sym_true] = ACTIONS(4331), + [sym_false] = ACTIONS(4331), + [anon_sym_NULL] = ACTIONS(4334), + [anon_sym_nullptr] = ACTIONS(4334), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4337), + [anon_sym_typename] = ACTIONS(4340), + [anon_sym_template] = ACTIONS(4343), + [anon_sym_delete] = ACTIONS(4346), + [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(4352), + [anon_sym_new] = ACTIONS(4355), + [anon_sym_requires] = ACTIONS(4358), + [sym_this] = ACTIONS(4331), }, - [1265] = { - [sym__expression] = STATE(4960), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8530), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8530), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1220] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -256414,11 +252024,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -256449,7 +252060,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -256462,456 +252074,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1266] = { - [sym__expression] = STATE(3603), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8506), - [sym__unary_right_fold] = STATE(8504), - [sym__binary_fold] = STATE(8503), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1267] = { - [sym__expression] = STATE(3666), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9046), - [sym__unary_right_fold] = STATE(9042), - [sym__binary_fold] = STATE(9040), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1268] = { - [sym__expression] = STATE(3583), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8745), - [sym__unary_right_fold] = STATE(8747), - [sym__binary_fold] = STATE(8749), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1269] = { - [sym__expression] = STATE(3605), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8602), - [sym__unary_right_fold] = STATE(8605), - [sym__binary_fold] = STATE(8483), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1270] = { - [sym__expression] = STATE(5024), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8469), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8469), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1221] = { + [sym__expression] = STATE(4831), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7796), + [sym_initializer_pair] = STATE(7796), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -256919,11 +252132,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4465), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4363), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -256938,6 +252151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -256954,7 +252168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -256967,254 +252181,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1271] = { - [sym__expression] = STATE(3601), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(9012), - [sym__unary_right_fold] = STATE(9013), - [sym__binary_fold] = STATE(9015), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1272] = { - [sym__expression] = STATE(3692), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8437), - [sym__unary_right_fold] = STATE(8436), - [sym__binary_fold] = STATE(8428), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [1222] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2002), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4139), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), }, - [1273] = { - [sym__expression] = STATE(5042), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8495), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8495), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1223] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1218), + [sym_compound_requirement] = STATE(1218), + [sym__requirement] = STATE(1218), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1218), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -257222,11 +252345,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4467), + [anon_sym_SEMI] = ACTIONS(4175), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -257257,7 +252381,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -257270,169 +252395,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1274] = { - [sym__expression] = STATE(3668), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym__unary_left_fold] = STATE(8854), - [sym__unary_right_fold] = STATE(8863), - [sym__binary_fold] = STATE(8859), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1275] = { - [sym__expression] = STATE(4693), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_initializer_list] = STATE(7270), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(4473), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1224] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1204), + [sym_compound_requirement] = STATE(1204), + [sym__requirement] = STATE(1204), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1204), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -257442,97 +252472,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(4477), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1276] = { - [sym__expression] = STATE(4695), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_initializer_list] = STATE(7275), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(4479), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1225] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2004), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4143), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4228), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [1226] = { + [sym_expression_statement] = STATE(3139), + [sym__expression] = STATE(4993), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8668), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4175), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_RBRACE] = ACTIONS(4369), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -257542,92 +252686,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_typename] = ACTIONS(4181), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(4481), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1277] = { - [sym__expression] = STATE(4739), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(4483), + [1227] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -257642,6 +252792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -257658,7 +252809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -257671,168 +252822,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1278] = { - [sym__expression] = STATE(4696), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1279] = { - [sym__expression] = STATE(4749), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(4491), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1228] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -257842,6 +252898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -257858,81 +252915,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1280] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1229] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4499), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -257942,6 +253004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -257958,181 +253021,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1281] = { - [sym__expression] = STATE(4056), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [1230] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2002), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4139), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4208), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), }, - [1282] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1231] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -258142,6 +253216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -258158,181 +253233,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1283] = { - [sym__expression] = STATE(3193), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1284] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1232] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4503), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -258342,6 +253322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -258358,381 +253339,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1285] = { - [sym__expression] = STATE(2965), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1286] = { - [sym__expression] = STATE(4932), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1287] = { - [sym__expression] = STATE(4660), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1288] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1233] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -258742,6 +253428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -258758,81 +253445,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1289] = { - [sym__expression] = STATE(4986), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1234] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -258842,6 +253534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -258858,81 +253551,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1290] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1235] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4383), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -258942,6 +253640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -258958,81 +253657,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1291] = { - [sym__expression] = STATE(5199), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1236] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259042,6 +253746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -259058,181 +253763,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1292] = { - [sym__expression] = STATE(3181), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1293] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1237] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4517), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259242,6 +253852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -259258,81 +253869,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1294] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1238] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4519), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259342,6 +253958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -259358,81 +253975,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1295] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1239] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4521), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259442,6 +254064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -259458,81 +254081,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1296] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1240] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4523), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259542,6 +254170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -259558,81 +254187,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1297] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1241] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(2001), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_sized_type_specifier_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4150), + [anon_sym_COMMA] = ACTIONS(4150), + [anon_sym_RPAREN] = ACTIONS(4150), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4153), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym___extension__] = ACTIONS(4135), + [anon_sym_extern] = ACTIONS(4135), + [anon_sym___attribute__] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4143), + [anon_sym___declspec] = ACTIONS(4135), + [anon_sym___based] = ACTIONS(4135), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_static] = ACTIONS(4135), + [anon_sym_register] = ACTIONS(4135), + [anon_sym_inline] = ACTIONS(4135), + [anon_sym___inline] = ACTIONS(4135), + [anon_sym___inline__] = ACTIONS(4135), + [anon_sym___forceinline] = ACTIONS(4135), + [anon_sym_thread_local] = ACTIONS(4135), + [anon_sym___thread] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4135), + [anon_sym_volatile] = ACTIONS(4135), + [anon_sym_restrict] = ACTIONS(4135), + [anon_sym___restrict__] = ACTIONS(4135), + [anon_sym__Atomic] = ACTIONS(4135), + [anon_sym__Noreturn] = ACTIONS(4135), + [anon_sym_noreturn] = ACTIONS(4135), + [anon_sym_mutable] = ACTIONS(4135), + [anon_sym_constinit] = ACTIONS(4135), + [anon_sym_consteval] = ACTIONS(4135), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4169), + [anon_sym_or_eq] = ACTIONS(4169), + [anon_sym_xor_eq] = ACTIONS(4169), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + [anon_sym_virtual] = ACTIONS(4135), + [anon_sym_alignas] = ACTIONS(4135), + [anon_sym_template] = ACTIONS(4135), + [anon_sym_operator] = ACTIONS(4135), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [1242] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4525), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259642,6 +254382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -259658,81 +254399,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1298] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1243] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4527), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -259742,6 +254488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -259758,281 +254505,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1299] = { - [sym__expression] = STATE(2969), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1300] = { - [sym__expression] = STATE(3785), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1301] = { - [sym__expression] = STATE(5039), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1244] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260042,6 +254594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -260058,81 +254611,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1302] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1245] = { + [sym__expression] = STATE(4967), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8109), + [sym_initializer_pair] = STATE(8109), + [sym_subscript_designator] = STATE(7157), + [sym_subscript_range_designator] = STATE(7157), + [sym_field_designator] = STATE(7157), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [aux_sym_initializer_pair_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(4187), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260142,6 +254699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(215), [sym_number_literal] = ACTIONS(107), [anon_sym_L_SQUOTE] = ACTIONS(109), [anon_sym_u_SQUOTE] = ACTIONS(109), @@ -260158,181 +254716,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1303] = { - [sym__expression] = STATE(4603), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1246] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7085), + [sym__abstract_declarator] = STATE(7247), + [sym_parenthesized_declarator] = STATE(6752), + [sym_abstract_parenthesized_declarator] = STATE(6663), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_abstract_pointer_declarator] = STATE(6663), + [sym_function_declarator] = STATE(6752), + [sym_abstract_function_declarator] = STATE(6663), + [sym_array_declarator] = STATE(6752), + [sym_abstract_array_declarator] = STATE(6663), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_list] = STATE(4175), + [sym_parameter_declaration] = STATE(7970), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(7970), + [sym_variadic_parameter_declaration] = STATE(7970), + [sym_reference_declarator] = STATE(6752), + [sym_abstract_reference_declarator] = STATE(6663), + [sym_structured_binding_declarator] = STATE(6752), + [sym__function_declarator_seq] = STATE(6627), + [sym_template_type] = STATE(3389), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6214), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(4401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(4405), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(4407), + [anon_sym_AMP_AMP] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(4415), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(2042), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), - [sym_this] = ACTIONS(217), + [anon_sym_operator] = ACTIONS(2122), }, - [1304] = { - [sym__expression] = STATE(4809), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_initializer_list] = STATE(7768), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1247] = { + [sym_compound_statement] = STATE(7825), + [sym__expression] = STATE(4817), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7825), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4417), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4537), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260358,81 +254921,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1305] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1248] = { + [sym_compound_statement] = STATE(7646), + [sym__expression] = STATE(4791), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7646), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4421), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4539), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260458,81 +255023,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1306] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1249] = { + [sym_compound_statement] = STATE(7659), + [sym__expression] = STATE(4920), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7659), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4425), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4427), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260558,181 +255125,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1307] = { - [sym__expression] = STATE(3485), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1308] = { - [sym__expression] = STATE(4790), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_initializer_list] = STATE(7770), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1250] = { + [sym_compound_statement] = STATE(7736), + [sym__expression] = STATE(4839), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7736), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4429), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4545), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym___extension__] = ACTIONS(4431), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260758,81 +255227,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1309] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1251] = { + [sym_compound_statement] = STATE(7987), + [sym__expression] = STATE(4892), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7987), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4433), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4547), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4435), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260858,81 +255329,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1310] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1252] = { + [sym_compound_statement] = STATE(7928), + [sym__expression] = STATE(4896), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7928), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4437), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4439), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -260958,81 +255431,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1311] = { - [sym__expression] = STATE(4749), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1253] = { + [sym_compound_statement] = STATE(7804), + [sym__expression] = STATE(4806), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7804), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4441), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -261058,81 +255533,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1312] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1254] = { + [sym_compound_statement] = STATE(7685), + [sym__expression] = STATE(4884), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7685), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -261158,81 +255635,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1313] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1255] = { + [sym_compound_statement] = STATE(7906), + [sym__expression] = STATE(4833), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(7906), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4553), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -261258,181 +255737,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1314] = { - [sym__expression] = STATE(3162), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1256] = { + [sym__expression] = STATE(3630), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8883), + [sym__unary_right_fold] = STATE(8882), + [sym__binary_fold] = STATE(8881), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1315] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(4491), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1257] = { + [sym__expression] = STATE(3686), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(9185), + [sym__unary_right_fold] = STATE(9219), + [sym__binary_fold] = STATE(9224), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1258] = { + [sym__expression] = STATE(5078), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9272), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(9272), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -261458,181 +256040,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1316] = { - [sym__expression] = STATE(3580), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1259] = { + [sym__expression] = STATE(3707), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8660), + [sym__unary_right_fold] = STATE(8661), + [sym__binary_fold] = STATE(8662), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1317] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1260] = { + [sym__expression] = STATE(5038), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8670), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8670), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4557), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -261658,181 +256242,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1318] = { - [sym__expression] = STATE(4585), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1261] = { + [sym__expression] = STATE(3711), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8445), + [sym__unary_right_fold] = STATE(8893), + [sym__binary_fold] = STATE(8768), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), - [sym_this] = ACTIONS(217), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1319] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1262] = { + [sym__expression] = STATE(5086), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8477), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8477), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4559), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -261858,276 +256444,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1320] = { - [sym__expression] = STATE(4788), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [1263] = { + [sym__expression] = STATE(3725), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8988), + [sym__unary_right_fold] = STATE(8991), + [sym__binary_fold] = STATE(8994), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1321] = { - [sym__expression] = STATE(3749), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1264] = { + [sym__expression] = STATE(3626), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8909), + [sym__unary_right_fold] = STATE(8902), + [sym__binary_fold] = STATE(8767), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1322] = { - [sym__expression] = STATE(4705), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(4483), + [1265] = { + [sym__expression] = STATE(3607), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8952), + [sym__unary_right_fold] = STATE(8951), + [sym__binary_fold] = STATE(8948), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1266] = { + [sym__expression] = STATE(4955), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8857), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8857), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4459), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -262158,7 +256848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -262171,168 +256861,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1323] = { - [sym__expression] = STATE(3531), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1267] = { + [sym__expression] = STATE(3597), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(9333), + [sym__unary_right_fold] = STATE(9329), + [sym__binary_fold] = STATE(9328), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1324] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1268] = { + [sym_compound_statement] = STATE(8094), + [sym__expression] = STATE(4975), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8094), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4561), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(4461), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -262358,281 +257050,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1325] = { - [sym__expression] = STATE(4940), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1326] = { - [sym__expression] = STATE(3484), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1327] = { - [sym__expression] = STATE(4804), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_initializer_list] = STATE(7861), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1269] = { + [sym__expression] = STATE(5063), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8504), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8504), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4563), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_SEMI] = ACTIONS(4463), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -262658,181 +257151,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1328] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4565), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), + [1270] = { + [sym__expression] = STATE(3721), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(9215), + [sym__unary_right_fold] = STATE(9212), + [sym__binary_fold] = STATE(9207), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1271] = { + [sym__expression] = STATE(3632), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8806), + [sym__unary_right_fold] = STATE(8802), + [sym__binary_fold] = STATE(8799), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1272] = { + [sym__expression] = STATE(5070), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8914), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8914), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1329] = { - [sym__expression] = STATE(4759), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_initializer_list] = STATE(7676), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4567), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1273] = { + [sym__expression] = STATE(3642), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym__unary_left_fold] = STATE(8513), + [sym__unary_right_fold] = STATE(8467), + [sym__binary_fold] = STATE(8510), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1274] = { + [sym__expression] = STATE(5237), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -262858,81 +257655,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1330] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1275] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4569), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4475), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -262958,81 +257755,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1331] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1276] = { + [sym__expression] = STATE(5154), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8470), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4479), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4571), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -263058,81 +257855,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1332] = { - [sym__expression] = STATE(4851), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1277] = { + [sym__expression] = STATE(5154), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8470), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4482), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -263142,97 +257939,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1333] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1278] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4573), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -263258,181 +258055,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1334] = { - [sym__expression] = STATE(3179), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1279] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4487), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1335] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1280] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -263458,181 +258255,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1336] = { - [sym__expression] = STATE(3987), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [1281] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1337] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1282] = { + [sym__expression] = STATE(5154), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8470), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4493), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4495), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -263658,181 +258455,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1338] = { - [sym__expression] = STATE(3450), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1283] = { + [sym__expression] = STATE(3443), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1339] = { - [sym__expression] = STATE(4681), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_initializer_list] = STATE(7222), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(4577), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1284] = { + [sym__expression] = STATE(5154), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8470), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4498), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -263842,97 +258639,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(4579), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1340] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1285] = { + [sym__expression] = STATE(3629), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), + }, + [1286] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4581), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -263958,81 +258855,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1341] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1287] = { + [sym__expression] = STATE(3930), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1288] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4583), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -264058,81 +259055,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1342] = { - [sym__expression] = STATE(5194), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1289] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -264158,181 +259155,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1343] = { - [sym__expression] = STATE(3595), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_AMP_AMP] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4485), - [anon_sym_LT] = ACTIONS(4483), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4483), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1344] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1290] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4585), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -264358,81 +259255,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1345] = { - [sym__expression] = STATE(4806), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_lambda_default_capture] = STATE(8282), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1291] = { + [sym__expression] = STATE(4921), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(4513), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4497), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -264458,81 +259355,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1346] = { - [sym__expression] = STATE(4675), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_initializer_list] = STATE(7249), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(4589), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1292] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(4513), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -264542,96 +259439,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(4591), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1347] = { - [sym__expression] = STATE(4177), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_initializer_list] = STATE(4290), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1293] = { + [sym__expression] = STATE(4618), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -264641,91 +259539,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), [sym_this] = ACTIONS(217), }, - [1348] = { - [sym__expression] = STATE(4725), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(4298), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), + [1294] = { + [sym__expression] = STATE(4760), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(4467), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -264756,7 +259655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -264769,166 +259668,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1349] = { - [sym__expression] = STATE(4976), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_initializer_list] = STATE(5297), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1350] = { - [sym__expression] = STATE(5174), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_initializer_list] = STATE(4298), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1295] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -264954,65 +259755,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1351] = { - [sym__expression] = STATE(4946), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9231), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4597), + [1296] = { + [sym__expression] = STATE(5154), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8470), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4521), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -265021,8 +259822,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -265053,7 +259855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -265066,62 +259868,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1352] = { - [sym__expression] = STATE(5051), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9247), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4599), - [anon_sym_LPAREN2] = ACTIONS(1416), + [1297] = { + [sym__expression] = STATE(4756), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(4467), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -265152,7 +259955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -265165,67 +259968,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1353] = { - [sym__expression] = STATE(5029), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_initializer_list] = STATE(8083), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1298] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -265251,80 +260055,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1354] = { - [sym__expression] = STATE(4953), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9207), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4601), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1299] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4526), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -265350,278 +260155,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1355] = { - [sym__expression] = STATE(2710), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_initializer_list] = STATE(2773), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1300] = { + [sym__expression] = STATE(3433), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1356] = { - [sym__expression] = STATE(5054), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_initializer_list] = STATE(5304), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1301] = { + [sym__expression] = STATE(4604), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [1357] = { - [sym__expression] = STATE(5159), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_initializer_list] = STATE(4290), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1302] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4528), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -265647,278 +260455,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1358] = { - [sym__expression] = STATE(3985), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_initializer_list] = STATE(4191), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1359] = { - [sym__expression] = STATE(3746), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_initializer_list] = STATE(2773), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1360] = { - [sym__expression] = STATE(4906), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8131), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1303] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4530), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -265944,64 +260555,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1361] = { - [sym__expression] = STATE(4985), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8131), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1304] = { + [sym__expression] = STATE(5154), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8470), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4532), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -266010,9 +260622,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -266043,7 +260655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -266056,51 +260668,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1362] = { - [sym__expression] = STATE(4177), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(4290), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1305] = { + [sym__expression] = STATE(5154), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8470), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4535), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -266109,9 +260722,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -266142,7 +260755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -266155,67 +260768,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1363] = { - [sym__expression] = STATE(4926), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9117), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4609), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1306] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -266241,65 +260855,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1364] = { - [sym__expression] = STATE(4929), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9119), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4611), + [1307] = { + [sym__expression] = STATE(5154), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8470), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4540), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -266308,8 +260922,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -266340,7 +260955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -266353,67 +260968,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1365] = { - [sym__expression] = STATE(4782), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_initializer_list] = STATE(8008), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1308] = { + [sym__expression] = STATE(4807), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_initializer_list] = STATE(7635), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4543), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -266423,190 +261039,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1366] = { - [sym__expression] = STATE(3621), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_initializer_list] = STATE(3983), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1367] = { - [sym__expression] = STATE(4085), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_initializer_list] = STATE(4212), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), + [1309] = { + [sym__expression] = STATE(4102), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(4467), [anon_sym_BANG] = ACTIONS(2002), [anon_sym_TILDE] = ACTIONS(2002), [anon_sym_DASH] = ACTIONS(2004), [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2832), [anon_sym_not] = ACTIONS(2004), [anon_sym_compl] = ACTIONS(2004), [anon_sym_DASH_DASH] = ACTIONS(2020), @@ -266637,7 +261155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(2040), [anon_sym_nullptr] = ACTIONS(2040), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(2044), [anon_sym_R_DQUOTE] = ACTIONS(2046), @@ -266650,151 +261168,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2052), [sym_this] = ACTIONS(2038), }, - [1368] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_COMMA] = ACTIONS(4615), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), + [1310] = { + [sym__expression] = STATE(4922), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_initializer_list] = STATE(7799), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4615), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4545), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1369] = { - [sym__expression] = STATE(4786), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8306), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4619), + [1311] = { + [sym__expression] = STATE(5154), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8470), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4547), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -266803,8 +261322,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -266835,7 +261355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -266848,166 +261368,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1370] = { - [sym__expression] = STATE(3166), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_initializer_list] = STATE(3415), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1371] = { - [sym__expression] = STATE(5187), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(9208), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1312] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -267033,278 +261455,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1372] = { - [sym__expression] = STATE(3543), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_initializer_list] = STATE(3925), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1373] = { - [sym__expression] = STATE(2710), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_initializer_list] = STATE(2773), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1374] = { - [sym__expression] = STATE(5059), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8104), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1313] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -267330,80 +261555,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1375] = { - [sym__expression] = STATE(5070), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(9248), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1314] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4554), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -267429,80 +261655,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1376] = { - [sym__expression] = STATE(5052), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_initializer_list] = STATE(8107), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1315] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -267528,80 +261755,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1377] = { - [sym__expression] = STATE(4819), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_initializer_list] = STATE(4298), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1316] = { + [sym__expression] = STATE(3637), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), + }, + [1317] = { + [sym__expression] = STATE(4732), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_initializer_list] = STATE(7318), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(4562), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -267611,195 +261939,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(4566), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1378] = { - [sym__expression] = STATE(4665), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_initializer_list] = STATE(4919), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1379] = { - [sym__expression] = STATE(4177), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_initializer_list] = STATE(4290), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1318] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -267809,81 +262039,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1380] = { - [sym__expression] = STATE(4956), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(9210), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4634), + [1319] = { + [sym__expression] = STATE(5154), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8470), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4570), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -267892,8 +262122,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -267924,7 +262155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -267937,67 +262168,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1381] = { - [sym__expression] = STATE(4177), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_initializer_list] = STATE(4290), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1320] = { + [sym__expression] = STATE(5154), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8470), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4573), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -268023,278 +262255,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1382] = { - [sym__expression] = STATE(4661), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_initializer_list] = STATE(4817), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1383] = { - [sym__expression] = STATE(4563), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_initializer_list] = STATE(4298), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), - [sym_this] = ACTIONS(217), - }, - [1384] = { - [sym__expression] = STATE(5061), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_initializer_list] = STATE(4298), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1321] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -268320,276 +262355,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1385] = { - [sym__expression] = STATE(2710), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_initializer_list] = STATE(2773), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1386] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), + [1322] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4636), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1387] = { - [sym__expression] = STATE(5118), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4638), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -268615,177 +262455,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1388] = { - [sym__expression] = STATE(3970), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4640), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1389] = { - [sym__expression] = STATE(5242), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1323] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4643), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4580), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -268811,79 +262555,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1390] = { - [sym__expression] = STATE(5197), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4645), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1324] = { + [sym__expression] = STATE(4693), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), + }, + [1325] = { + [sym__expression] = STATE(4949), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -268893,683 +262739,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1391] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4647), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1392] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4649), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1393] = { - [sym__expression] = STATE(3967), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4651), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1394] = { - [sym__expression] = STATE(3967), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4654), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1326] = { + [sym__expression] = STATE(3484), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1395] = { - [sym__expression] = STATE(3966), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1327] = { + [sym__expression] = STATE(3938), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1396] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), + [1328] = { + [sym__expression] = STATE(4921), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4660), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1397] = { - [sym__expression] = STATE(4870), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_SEMI] = ACTIONS(4662), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(4664), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -269579,95 +263039,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1398] = { - [sym__expression] = STATE(4148), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4666), - [anon_sym_LPAREN2] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1329] = { + [sym__expression] = STATE(4713), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_initializer_list] = STATE(7304), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(4586), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -269677,192 +263139,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(4588), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1399] = { - [sym__expression] = STATE(3970), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4670), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1330] = { + [sym__expression] = STATE(4688), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [1400] = { - [sym__expression] = STATE(5074), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1331] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4590), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -269888,1060 +263355,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4673), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1401] = { - [sym__expression] = STATE(4048), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4675), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1402] = { - [sym__expression] = STATE(3963), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1403] = { - [sym__expression] = STATE(3970), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1404] = { - [sym__expression] = STATE(3964), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4684), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1405] = { - [sym__expression] = STATE(3970), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4687), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1406] = { - [sym__expression] = STATE(4048), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4690), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1407] = { - [sym__expression] = STATE(3963), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1408] = { - [sym__expression] = STATE(3958), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4696), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1409] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4699), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1332] = { + [sym__expression] = STATE(3215), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1410] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), + [1333] = { + [sym__expression] = STATE(4849), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_initializer_list] = STATE(7855), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4701), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1411] = { - [sym__expression] = STATE(5142), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4703), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4592), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -270967,176 +263555,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1412] = { - [sym__expression] = STATE(3975), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4705), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1413] = { - [sym__expression] = STATE(5147), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1334] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4594), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -271162,80 +263655,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4708), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1414] = { - [sym__expression] = STATE(5226), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4710), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1335] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4596), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -271261,79 +263755,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1415] = { - [sym__expression] = STATE(5167), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1336] = { + [sym__expression] = STATE(2997), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1337] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -271359,79 +263955,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1416] = { - [sym__expression] = STATE(5163), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1338] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4602), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -271457,177 +264055,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1417] = { - [sym__expression] = STATE(2681), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4716), - [anon_sym_LPAREN2] = ACTIONS(4718), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), + [1339] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1418] = { - [sym__expression] = STATE(5116), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4666), - [anon_sym_LPAREN2] = ACTIONS(4720), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4604), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -271653,274 +264155,681 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1419] = { - [sym__expression] = STATE(3373), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_LPAREN2] = ACTIONS(4724), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1340] = { + [sym__expression] = STATE(2991), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1420] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4726), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1341] = { + [sym__expression] = STATE(3235), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1421] = { - [sym__expression] = STATE(5115), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1342] = { + [sym__expression] = STATE(4954), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [1343] = { + [sym__expression] = STATE(4010), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1344] = { + [sym__expression] = STATE(3497), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1345] = { + [sym__expression] = STATE(4708), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_initializer_list] = STATE(7271), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(4606), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(4608), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [1346] = { + [sym__expression] = STATE(5235), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -271946,80 +264855,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4728), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1422] = { - [sym__expression] = STATE(5135), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1347] = { + [sym__expression] = STATE(3230), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [1348] = { + [sym__expression] = STATE(3232), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [1349] = { + [sym__expression] = STATE(5073), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -272045,79 +265155,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1423] = { - [sym__expression] = STATE(4148), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4666), - [anon_sym_LPAREN2] = ACTIONS(4732), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1350] = { + [sym__expression] = STATE(4709), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_initializer_list] = STATE(7267), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(4614), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -272127,290 +265239,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(4616), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1424] = { - [sym__expression] = STATE(3956), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4734), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1425] = { - [sym__expression] = STATE(3956), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4737), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1426] = { - [sym__expression] = STATE(5113), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1351] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -272436,80 +265355,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4740), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1427] = { - [sym__expression] = STATE(5155), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1352] = { + [sym__expression] = STATE(5091), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -272535,79 +265455,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1428] = { - [sym__expression] = STATE(5235), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1353] = { + [sym__expression] = STATE(4779), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_lambda_default_capture] = STATE(8332), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4744), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(4473), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(4477), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -272633,79 +265555,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1429] = { - [sym__expression] = STATE(5148), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1354] = { + [sym__expression] = STATE(5077), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [1355] = { + [sym__expression] = STATE(4858), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_initializer_list] = STATE(7845), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4746), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4622), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -272731,79 +265755,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1430] = { - [sym__expression] = STATE(5231), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4748), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1356] = { + [sym__expression] = STATE(4904), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4469), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_LBRACK] = ACTIONS(4467), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -272813,177 +265839,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1431] = { - [sym__expression] = STATE(3678), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4750), - [anon_sym_LPAREN2] = ACTIONS(4752), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1357] = { + [sym__expression] = STATE(2702), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_initializer_list] = STATE(2788), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1432] = { - [sym__expression] = STATE(5108), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1358] = { + [sym__expression] = STATE(4185), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(4333), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -272992,8 +266020,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -273024,8 +266053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4754), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -273038,262 +266066,661 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1433] = { - [sym__expression] = STATE(3956), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4756), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [1359] = { + [sym__expression] = STATE(4185), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_initializer_list] = STATE(4333), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1434] = { - [sym__expression] = STATE(3955), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4759), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), + [1360] = { + [sym__expression] = STATE(3206), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_initializer_list] = STATE(3552), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [1361] = { + [sym__expression] = STATE(2702), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_initializer_list] = STATE(2788), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1362] = { + [sym__expression] = STATE(3404), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_initializer_list] = STATE(3924), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), [anon_sym_STAR] = ACTIONS(2006), [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1435] = { - [sym__expression] = STATE(5140), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4762), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1363] = { + [sym__expression] = STATE(3927), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_initializer_list] = STATE(2788), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1364] = { + [sym__expression] = STATE(3582), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_initializer_list] = STATE(4067), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), + }, + [1365] = { + [sym__expression] = STATE(4758), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(4321), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -273319,79 +266746,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1436] = { - [sym__expression] = STATE(5234), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1366] = { + [sym__expression] = STATE(5085), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_initializer_list] = STATE(8229), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -273417,64 +266845,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1437] = { - [sym__expression] = STATE(3955), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4766), + [1367] = { + [sym__expression] = STATE(2702), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_initializer_list] = STATE(2788), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1368] = { + [sym__expression] = STATE(4064), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_initializer_list] = STATE(4269), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), [anon_sym_LPAREN2] = ACTIONS(2000), [anon_sym_BANG] = ACTIONS(2002), [anon_sym_TILDE] = ACTIONS(2002), @@ -273483,8 +267010,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(2006), [anon_sym_AMP] = ACTIONS(2006), [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), [anon_sym_not] = ACTIONS(2004), [anon_sym_compl] = ACTIONS(2004), [anon_sym_DASH_DASH] = ACTIONS(2020), @@ -273515,7 +267043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(2040), [anon_sym_nullptr] = ACTIONS(2040), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(2044), [anon_sym_R_DQUOTE] = ACTIONS(2046), @@ -273528,164 +267056,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2052), [sym_this] = ACTIONS(2038), }, - [1438] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4769), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1439] = { - [sym__expression] = STATE(4924), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8899), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1369] = { + [sym__expression] = STATE(4995), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_initializer_list] = STATE(4321), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -273711,79 +267142,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [1370] = { + [sym__expression] = STATE(4947), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_initializer_list] = STATE(4321), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1440] = { - [sym__expression] = STATE(5151), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4771), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1371] = { + [sym__expression] = STATE(5182), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_initializer_list] = STATE(4333), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -273809,176 +267340,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1441] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4773), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1442] = { - [sym__expression] = STATE(5074), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1372] = { + [sym__expression] = STATE(5272), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_initializer_list] = STATE(4321), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -274004,260 +267439,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4775), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1443] = { - [sym__expression] = STATE(3958), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4777), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1444] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4780), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1445] = { - [sym__expression] = STATE(5181), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1373] = { + [sym__expression] = STATE(4809), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8042), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -274266,8 +267505,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -274298,8 +267538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4782), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -274312,149 +267551,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1446] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4784), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1374] = { + [sym__expression] = STATE(4722), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_initializer_list] = STATE(4948), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACE] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [1447] = { - [sym__expression] = STATE(3975), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4786), + [1375] = { + [sym__expression] = STATE(4114), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_initializer_list] = STATE(4246), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), [anon_sym_LPAREN2] = ACTIONS(2000), [anon_sym_BANG] = ACTIONS(2002), [anon_sym_TILDE] = ACTIONS(2002), @@ -274463,8 +267703,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(2006), [anon_sym_AMP] = ACTIONS(2006), [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), [anon_sym_not] = ACTIONS(2004), [anon_sym_compl] = ACTIONS(2004), [anon_sym_DASH_DASH] = ACTIONS(2020), @@ -274495,7 +267736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(2040), [anon_sym_nullptr] = ACTIONS(2040), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(2044), [anon_sym_R_DQUOTE] = ACTIONS(2046), @@ -274508,50 +267749,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2052), [sym_this] = ACTIONS(2038), }, - [1448] = { - [sym__expression] = STATE(5233), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1376] = { + [sym__expression] = STATE(5054), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8042), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -274560,8 +267802,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -274592,8 +267835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4789), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -274606,66 +267848,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1449] = { - [sym__expression] = STATE(5144), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4791), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1377] = { + [sym__expression] = STATE(5009), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9124), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -274691,569 +267934,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1450] = { - [sym__expression] = STATE(4870), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_SEMI] = ACTIONS(4793), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(4664), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1451] = { - [sym__expression] = STATE(2681), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4716), - [anon_sym_LPAREN2] = ACTIONS(4795), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1452] = { - [sym__expression] = STATE(4870), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(4664), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_co_await] = ACTIONS(153), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1453] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4799), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1454] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), + [1378] = { + [sym__expression] = STATE(5001), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9251), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4648), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4801), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1455] = { - [sym__expression] = STATE(5227), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -275279,259 +268033,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1456] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4805), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1457] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4807), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1458] = { - [sym__expression] = STATE(5229), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1379] = { + [sym__expression] = STATE(5007), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9160), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4650), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -275540,8 +268100,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -275572,8 +268132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4809), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -275586,148 +268145,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1459] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4811), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1460] = { - [sym__expression] = STATE(5079), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1380] = { + [sym__expression] = STATE(5154), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8470), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -275735,10 +268197,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4813), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -275769,7 +268231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -275782,51 +268244,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1461] = { - [sym__expression] = STATE(4786), - [sym__expression_not_binary] = STATE(4258), - [sym_comma_expression] = STATE(8306), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1381] = { + [sym__expression] = STATE(5190), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(9162), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -275835,8 +268297,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -275867,7 +268330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -275880,50 +268343,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1462] = { - [sym__expression] = STATE(5083), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1382] = { + [sym__expression] = STATE(5192), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(9253), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -275931,10 +268395,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4815), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -275965,7 +268429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -275978,164 +268442,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1463] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4817), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1464] = { - [sym__expression] = STATE(4870), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_SEMI] = ACTIONS(4819), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(4664), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1383] = { + [sym__expression] = STATE(4616), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_initializer_list] = STATE(4321), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -276145,291 +268512,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), [sym_this] = ACTIONS(217), }, - [1465] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4821), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1466] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4823), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1467] = { - [sym__expression] = STATE(5165), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4825), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1384] = { + [sym__expression] = STATE(4185), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_initializer_list] = STATE(4333), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -276439,193 +268611,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), [sym_this] = ACTIONS(217), }, - [1468] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), + [1385] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4827), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4654), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1386] = { + [sym__expression] = STATE(4956), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_initializer_list] = STATE(5334), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1469] = { - [sym__expression] = STATE(5119), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4829), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1387] = { + [sym__expression] = STATE(4786), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8357), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -276651,177 +268924,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1470] = { - [sym__expression] = STATE(4657), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4831), - [anon_sym_LPAREN2] = ACTIONS(4833), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1388] = { + [sym__expression] = STATE(3606), + [sym__expression_not_binary] = STATE(2848), + [sym_comma_expression] = STATE(8821), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_assignment_expression_lhs_expression] = STATE(8821), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1471] = { - [sym__expression] = STATE(5084), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1389] = { + [sym__expression] = STATE(4185), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_initializer_list] = STATE(4333), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -276847,177 +269122,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1472] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4837), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1390] = { + [sym__expression] = STATE(5032), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_initializer_list] = STATE(5330), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1473] = { - [sym__expression] = STATE(5176), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4839), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1391] = { + [sym__expression] = STATE(4863), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_initializer_list] = STATE(7722), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -277027,291 +269304,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1474] = { - [sym__expression] = STATE(5161), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4841), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1475] = { - [sym__expression] = STATE(2681), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4716), - [anon_sym_LPAREN2] = ACTIONS(4843), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1476] = { - [sym__expression] = STATE(5164), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_COLON] = ACTIONS(4845), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1392] = { + [sym__expression] = STATE(4997), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9164), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4659), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -277337,162 +269419,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1477] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_RBRACK] = ACTIONS(4847), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1478] = { - [sym__expression] = STATE(5076), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_RPAREN] = ACTIONS(4849), + [1393] = { + [sym__expression] = STATE(4965), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8112), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -277501,8 +269485,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -277533,7 +269518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -277546,50 +269531,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1479] = { - [sym__expression] = STATE(5202), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1394] = { + [sym__expression] = STATE(4692), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_initializer_list] = STATE(4852), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACE] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), + }, + [1395] = { + [sym__expression] = STATE(5039), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9003), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4661), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -277597,10 +269683,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4851), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -277631,7 +269716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -277644,66 +269729,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1480] = { - [sym__expression] = STATE(4148), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4666), - [anon_sym_LPAREN2] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1396] = { + [sym__expression] = STATE(4969), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_initializer_list] = STATE(8107), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -277729,63 +269815,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1481] = { - [sym__expression] = STATE(5205), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1397] = { + [sym__expression] = STATE(5041), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(9004), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4663), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -277793,10 +269881,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(4855), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -277827,7 +269914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -277840,52 +269927,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1482] = { - [sym__expression] = STATE(4069), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4857), - [anon_sym_LPAREN2] = ACTIONS(4859), + [1398] = { + [sym__expression] = STATE(3567), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1399] = { + [sym__expression] = STATE(4103), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(2000), [anon_sym_BANG] = ACTIONS(2002), [anon_sym_TILDE] = ACTIONS(2002), [anon_sym_DASH] = ACTIONS(2004), @@ -277893,8 +270078,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(2006), [anon_sym_AMP] = ACTIONS(2006), [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), [anon_sym_not] = ACTIONS(2004), [anon_sym_compl] = ACTIONS(2004), [anon_sym_DASH_DASH] = ACTIONS(2020), @@ -277925,7 +270110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(2040), [anon_sym_nullptr] = ACTIONS(2040), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(2044), [anon_sym_R_DQUOTE] = ACTIONS(2046), @@ -277938,61 +270123,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2052), [sym_this] = ACTIONS(2038), }, - [1483] = { - [sym__expression] = STATE(4148), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4666), - [anon_sym_LPAREN2] = ACTIONS(4861), + [1400] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4671), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1401] = { + [sym__expression] = STATE(5142), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4673), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -278023,7 +270306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -278036,442 +270319,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1484] = { - [sym__expression] = STATE(3201), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4863), - [anon_sym_LPAREN2] = ACTIONS(4865), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1485] = { - [sym__expression] = STATE(3967), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4867), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1486] = { - [sym__expression] = STATE(3966), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4870), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), + [1402] = { + [sym__expression] = STATE(3532), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4675), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), [anon_sym_STAR] = ACTIONS(2006), [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1487] = { - [sym__expression] = STATE(3929), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4716), - [anon_sym_LPAREN2] = ACTIONS(4873), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1488] = { - [sym__expression] = STATE(5168), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1403] = { + [sym__expression] = STATE(5209), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -278480,8 +270469,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -278512,8 +270501,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4875), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(4678), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -278526,148 +270515,638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1489] = { - [sym__expression] = STATE(3964), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4877), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), + [1404] = { + [sym__expression] = STATE(3534), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), [anon_sym_STAR] = ACTIONS(2006), [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1405] = { + [sym__expression] = STATE(4685), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4683), + [anon_sym_LPAREN2] = ACTIONS(4685), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), + }, + [1406] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4687), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1407] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4689), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1408] = { + [sym__expression] = STATE(5169), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1490] = { - [sym__expression] = STATE(5171), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1409] = { + [sym__expression] = STATE(3391), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1410] = { + [sym__expression] = STATE(5113), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -278675,9 +271154,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4696), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -278708,8 +271188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4880), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -278722,50 +271201,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1491] = { - [sym__expression] = STATE(5179), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1411] = { + [sym__expression] = STATE(5186), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -278773,9 +271252,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4698), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -278806,8 +271286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4882), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -278820,260 +271299,556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1492] = { - [sym__expression] = STATE(4982), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4884), - [anon_sym_LPAREN2] = ACTIONS(4886), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1412] = { + [sym__expression] = STATE(3541), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1493] = { - [sym__expression] = STATE(4668), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1413] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4703), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1414] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4705), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1415] = { + [sym__expression] = STATE(3551), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4707), + [anon_sym_LPAREN2] = ACTIONS(4709), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1494] = { - [sym__expression] = STATE(4582), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1416] = { + [sym__expression] = STATE(3391), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4668), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1417] = { + [sym__expression] = STATE(4902), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SEMI] = ACTIONS(4711), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(4713), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -279083,273 +271858,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1495] = { - [sym__expression] = STATE(3821), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1418] = { + [sym__expression] = STATE(3572), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4715), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1496] = { - [sym__expression] = STATE(3741), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1419] = { + [sym__expression] = STATE(3571), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4718), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1497] = { - [sym__expression] = STATE(5023), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1420] = { + [sym__expression] = STATE(5220), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -279358,8 +272135,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -279390,7 +272167,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(4721), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -279403,535 +272181,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1498] = { - [sym__expression] = STATE(3639), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1499] = { - [sym__expression] = STATE(3638), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1500] = { - [sym__expression] = STATE(3637), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1501] = { - [sym__expression] = STATE(3636), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1502] = { - [sym__expression] = STATE(3185), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(4888), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1503] = { - [sym__expression] = STATE(5126), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1421] = { + [sym__expression] = STATE(5165), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -279940,8 +272233,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -279972,7 +272265,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(4723), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -279985,51 +272279,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1504] = { - [sym__expression] = STATE(4965), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), + [1422] = { + [sym__expression] = STATE(3572), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4725), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1423] = { + [sym__expression] = STATE(3572), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1424] = { + [sym__expression] = STATE(4245), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4731), + [anon_sym_LPAREN2] = ACTIONS(4733), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), @@ -280037,8 +272528,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -280069,7 +272560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -280082,162 +272573,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1505] = { - [sym__expression] = STATE(3549), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1425] = { + [sym__expression] = STATE(3174), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4735), + [anon_sym_LPAREN2] = ACTIONS(4737), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), }, - [1506] = { - [sym__expression] = STATE(5218), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1426] = { + [sym__expression] = STATE(5264), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4739), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -280263,63 +272756,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1507] = { - [sym__expression] = STATE(4927), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1427] = { + [sym__expression] = STATE(4091), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1428] = { + [sym__expression] = STATE(4091), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4744), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1429] = { + [sym__expression] = STATE(5146), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -280327,9 +273016,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4747), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -280360,7 +273050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -280373,147 +273063,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1508] = { - [sym__expression] = STATE(4651), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1430] = { + [sym__expression] = STATE(4092), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4749), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1431] = { + [sym__expression] = STATE(2746), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4752), + [anon_sym_LPAREN2] = ACTIONS(4754), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1509] = { - [sym__expression] = STATE(5031), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1432] = { + [sym__expression] = STATE(4092), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4756), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1433] = { + [sym__expression] = STATE(5207), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -280522,8 +273409,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -280554,7 +273441,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(4759), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -280567,259 +273455,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1510] = { - [sym__expression] = STATE(3635), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1511] = { - [sym__expression] = STATE(3634), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1512] = { - [sym__expression] = STATE(4988), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1434] = { + [sym__expression] = STATE(5165), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -280845,63 +273539,554 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(4761), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1513] = { - [sym__expression] = STATE(5047), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1435] = { + [sym__expression] = STATE(4092), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4763), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1436] = { + [sym__expression] = STATE(4093), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4766), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1437] = { + [sym__expression] = STATE(4094), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4769), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1438] = { + [sym__expression] = STATE(3572), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4772), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1439] = { + [sym__expression] = STATE(5026), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4775), + [anon_sym_LPAREN2] = ACTIONS(4777), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [1440] = { + [sym__expression] = STATE(5198), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -280909,9 +274094,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4779), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -280942,7 +274128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -280955,50 +274141,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1514] = { - [sym__expression] = STATE(5006), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1441] = { + [sym__expression] = STATE(5160), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -281006,9 +274192,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4781), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -281039,7 +274226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -281052,244 +274239,638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1515] = { - [sym__expression] = STATE(3633), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1516] = { - [sym__expression] = STATE(4870), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(4664), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), + [1442] = { + [sym__expression] = STATE(4095), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4783), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1517] = { - [sym__expression] = STATE(4774), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1443] = { + [sym__expression] = STATE(4096), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4786), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1444] = { + [sym__expression] = STATE(4097), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4789), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1445] = { + [sym__expression] = STATE(3571), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1446] = { + [sym__expression] = STATE(3571), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4795), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1447] = { + [sym__expression] = STATE(3541), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4789), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1448] = { + [sym__expression] = STATE(5275), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -281298,8 +274879,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -281330,7 +274911,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(4798), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -281343,1326 +274925,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1518] = { - [sym__expression] = STATE(3631), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1519] = { - [sym__expression] = STATE(4237), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1520] = { - [sym__expression] = STATE(3533), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1521] = { - [sym__expression] = STATE(4767), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1522] = { - [sym__expression] = STATE(4769), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1523] = { - [sym__expression] = STATE(4772), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1524] = { - [sym__expression] = STATE(4777), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1525] = { - [sym__expression] = STATE(4778), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1526] = { - [sym__expression] = STATE(4779), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1527] = { - [sym__expression] = STATE(4780), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1528] = { - [sym__expression] = STATE(4792), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1529] = { - [sym__expression] = STATE(4243), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1530] = { - [sym__expression] = STATE(4793), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1531] = { - [sym__expression] = STATE(4989), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1449] = { + [sym__expression] = STATE(5100), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4731), + [anon_sym_LPAREN2] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -282688,272 +275010,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1532] = { - [sym__expression] = STATE(3629), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1450] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4802), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1533] = { - [sym__expression] = STATE(4978), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1451] = { + [sym__expression] = STATE(4100), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4795), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1534] = { - [sym__expression] = STATE(4980), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1452] = { + [sym__expression] = STATE(4100), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4792), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1453] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4804), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1454] = { + [sym__expression] = STATE(5216), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4806), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -282979,563 +275500,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1535] = { - [sym__expression] = STATE(2702), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1536] = { - [sym__expression] = STATE(3176), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(4890), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1537] = { - [sym__expression] = STATE(4981), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1538] = { - [sym__expression] = STATE(4659), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1455] = { + [sym__expression] = STATE(4101), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4772), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1539] = { - [sym__expression] = STATE(3686), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(4892), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1456] = { + [sym__expression] = STATE(3534), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4786), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1540] = { - [sym__expression] = STATE(5166), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1457] = { + [sym__expression] = STATE(4902), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SEMI] = ACTIONS(4808), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(4713), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -283545,191 +275778,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1541] = { - [sym__expression] = STATE(3689), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1458] = { + [sym__expression] = STATE(4101), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4728), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1542] = { - [sym__expression] = STATE(4990), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1459] = { + [sym__expression] = STATE(4101), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4725), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1460] = { + [sym__expression] = STATE(5197), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4810), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -283755,175 +276088,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1543] = { - [sym__expression] = STATE(4844), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(4894), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1544] = { - [sym__expression] = STATE(5203), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1461] = { + [sym__expression] = STATE(5226), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4812), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -283949,272 +276186,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1545] = { - [sym__expression] = STATE(3860), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1546] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1462] = { + [sym__expression] = STATE(4101), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4715), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1547] = { - [sym__expression] = STATE(4991), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1463] = { + [sym__expression] = STATE(5222), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4814), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -284240,63 +276382,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1548] = { - [sym__expression] = STATE(5058), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1464] = { + [sym__expression] = STATE(4786), + [sym__expression_not_binary] = STATE(4287), + [sym_comma_expression] = STATE(8357), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -284305,8 +276448,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -284337,7 +276480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -284350,65 +276493,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1549] = { - [sym__expression] = STATE(4992), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1465] = { + [sym__expression] = STATE(3775), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4752), + [anon_sym_LPAREN2] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1466] = { + [sym__expression] = STATE(4245), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4731), + [anon_sym_LPAREN2] = ACTIONS(4818), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -284418,370 +276660,863 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), [sym_this] = ACTIONS(217), }, - [1550] = { - [sym__expression] = STATE(3454), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(4896), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1467] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4820), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1551] = { - [sym__expression] = STATE(3694), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(4898), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1468] = { + [sym__expression] = STATE(4103), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1552] = { - [sym__expression] = STATE(4993), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1469] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4822), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1470] = { + [sym__expression] = STATE(4093), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1471] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4827), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1472] = { + [sym__expression] = STATE(4902), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(4713), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1553] = { - [sym__expression] = STATE(4728), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1473] = { + [sym__expression] = STATE(4094), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1474] = { + [sym__expression] = STATE(4095), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4675), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1475] = { + [sym__expression] = STATE(5164), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -284789,9 +277524,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4831), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -284822,7 +277558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -284835,162 +277571,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1554] = { - [sym__expression] = STATE(3861), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1476] = { + [sym__expression] = STATE(4096), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1555] = { - [sym__expression] = STATE(4243), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1477] = { + [sym__expression] = STATE(5171), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4833), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -285016,369 +277754,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1556] = { - [sym__expression] = STATE(4700), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1557] = { - [sym__expression] = STATE(3393), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1558] = { - [sym__expression] = STATE(3388), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(4900), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1559] = { - [sym__expression] = STATE(4998), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1478] = { + [sym__expression] = STATE(5161), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_SEMI] = ACTIONS(4835), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -285404,160 +277852,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1560] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1561] = { - [sym__expression] = STATE(5170), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1479] = { + [sym__expression] = STATE(5138), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -285566,8 +277917,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -285598,7 +277949,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(4837), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -285611,65 +277963,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1562] = { - [sym__expression] = STATE(4237), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1480] = { + [sym__expression] = STATE(4097), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1481] = { + [sym__expression] = STATE(3975), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4839), + [anon_sym_LPAREN2] = ACTIONS(4841), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1482] = { + [sym__expression] = STATE(5150), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_SEMI] = ACTIONS(4843), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -285695,160 +278244,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1563] = { - [sym__expression] = STATE(4760), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_co_await] = ACTIONS(153), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1564] = { - [sym__expression] = STATE(5206), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1483] = { + [sym__expression] = STATE(5119), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -285856,9 +278308,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4845), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -285889,7 +278342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -285902,65 +278355,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1565] = { - [sym__expression] = STATE(5066), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1484] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(4904), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4847), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1485] = { + [sym__expression] = STATE(4100), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4718), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1486] = { + [sym__expression] = STATE(5258), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4849), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -285986,78 +278636,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1566] = { - [sym__expression] = STATE(4229), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1487] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4851), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1488] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4853), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1489] = { + [sym__expression] = STATE(3532), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4783), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1490] = { + [sym__expression] = STATE(5152), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4855), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -286083,78 +279028,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1567] = { - [sym__expression] = STATE(4192), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1491] = { + [sym__expression] = STATE(5199), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4857), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -286180,78 +279126,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1568] = { - [sym__expression] = STATE(4970), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1492] = { + [sym__expression] = STATE(4245), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4731), + [anon_sym_LPAREN2] = ACTIONS(4859), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -286277,160 +279224,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1569] = { - [sym__expression] = STATE(4672), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(4906), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1570] = { - [sym__expression] = STATE(5207), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1493] = { + [sym__expression] = STATE(5210), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(4861), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -286439,8 +279290,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -286471,7 +279322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -286484,341 +279335,540 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1571] = { - [sym__expression] = STATE(3767), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1494] = { + [sym__expression] = STATE(2746), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4752), + [anon_sym_LPAREN2] = ACTIONS(4863), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1572] = { - [sym__expression] = STATE(3799), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1495] = { + [sym__expression] = STATE(3567), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4769), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1573] = { - [sym__expression] = STATE(4996), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1496] = { + [sym__expression] = STATE(4245), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4731), + [anon_sym_LPAREN2] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [1497] = { + [sym__expression] = STATE(3452), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4766), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1574] = { - [sym__expression] = STATE(5214), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1498] = { + [sym__expression] = STATE(3518), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4763), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1499] = { + [sym__expression] = STATE(5244), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -286827,8 +279877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -286859,7 +279909,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(4867), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -286872,65 +279923,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1575] = { - [sym__expression] = STATE(4808), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1500] = { + [sym__expression] = STATE(5208), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4869), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -286940,176 +279992,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(155), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1576] = { - [sym__expression] = STATE(4664), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(4908), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1577] = { - [sym__expression] = STATE(5209), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1501] = { + [sym__expression] = STATE(5167), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -287118,8 +280073,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -287150,7 +280105,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(4871), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -287163,244 +280119,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1578] = { - [sym__expression] = STATE(3587), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1579] = { - [sym__expression] = STATE(3795), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1580] = { - [sym__expression] = STATE(5215), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1502] = { + [sym__expression] = STATE(5180), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -287409,8 +280171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -287441,7 +280203,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(4873), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -287454,50 +280217,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1581] = { - [sym__expression] = STATE(5071), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1503] = { + [sym__expression] = STATE(3518), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4756), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1504] = { + [sym__expression] = STATE(5212), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -287506,8 +280367,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -287538,7 +280399,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(4875), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -287551,65 +280413,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1582] = { - [sym__expression] = STATE(5067), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(4910), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1505] = { + [sym__expression] = STATE(3518), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4749), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1506] = { + [sym__expression] = STATE(3397), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4744), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1507] = { + [sym__expression] = STATE(3397), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1508] = { + [sym__expression] = STATE(5229), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4877), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -287635,78 +280792,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1583] = { - [sym__expression] = STATE(4857), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1509] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4879), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1510] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4881), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1511] = { + [sym__expression] = STATE(3452), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4824), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1512] = { + [sym__expression] = STATE(5219), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4883), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -287732,160 +281184,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1584] = { - [sym__expression] = STATE(3630), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1513] = { + [sym__expression] = STATE(2746), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4752), + [anon_sym_LPAREN2] = ACTIONS(4885), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1585] = { - [sym__expression] = STATE(5223), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1514] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4887), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1515] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4889), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1516] = { + [sym__expression] = STATE(5232), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -287894,8 +281543,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -287926,7 +281575,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [sym_auto] = ACTIONS(4891), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -287939,147 +281589,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1586] = { - [sym__expression] = STATE(3792), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1517] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4893), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1587] = { - [sym__expression] = STATE(4764), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1518] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4895), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1519] = { + [sym__expression] = STATE(3689), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4897), + [anon_sym_LPAREN2] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), + }, + [1520] = { + [sym__expression] = STATE(5213), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -288087,9 +281934,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4901), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -288120,7 +281968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -288133,147 +281981,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1588] = { - [sym__expression] = STATE(3789), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1589] = { - [sym__expression] = STATE(4192), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1521] = { + [sym__expression] = STATE(5158), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -288281,9 +282032,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(4903), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -288314,7 +282066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -288327,65 +282079,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1590] = { - [sym__expression] = STATE(5243), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1522] = { + [sym__expression] = STATE(5098), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4905), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -288411,78 +282164,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [1523] = { + [sym__expression] = STATE(4902), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_SEMI] = ACTIONS(4907), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(4713), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1591] = { - [sym__expression] = STATE(5245), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1524] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4909), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1525] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4911), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1526] = { + [sym__expression] = STATE(5250), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_COLON] = ACTIONS(4913), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -288508,63 +282556,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1592] = { - [sym__expression] = STATE(5246), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1527] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(4915), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1528] = { + [sym__expression] = STATE(4683), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), + }, + [1529] = { + [sym__expression] = STATE(4811), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -288573,8 +282816,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -288605,7 +282848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -288618,147 +282861,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1593] = { - [sym__expression] = STATE(2975), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(4912), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1594] = { - [sym__expression] = STATE(4934), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1530] = { + [sym__expression] = STATE(5121), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -288767,8 +282913,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -288799,7 +282945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -288812,50 +282958,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1595] = { - [sym__expression] = STATE(4935), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1531] = { + [sym__expression] = STATE(5125), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -288864,8 +283010,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -288896,7 +283042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -288909,65 +283055,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1596] = { - [sym__expression] = STATE(4966), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1532] = { + [sym__expression] = STATE(3700), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), + }, + [1533] = { + [sym__expression] = STATE(3697), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(4917), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), + }, + [1534] = { + [sym__expression] = STATE(5128), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -288993,160 +283333,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1597] = { - [sym__expression] = STATE(2702), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1598] = { - [sym__expression] = STATE(5201), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1535] = { + [sym__expression] = STATE(4774), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -289155,8 +283398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -289187,7 +283430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -289200,50 +283443,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1599] = { - [sym__expression] = STATE(5080), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1536] = { + [sym__expression] = STATE(3716), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(4919), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), + }, + [1537] = { + [sym__expression] = STATE(5129), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -289252,8 +283592,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -289284,7 +283624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -289297,1408 +283637,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1600] = { - [sym__expression] = STATE(3507), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), + [1538] = { + [sym__expression] = STATE(4071), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), [anon_sym_STAR] = ACTIONS(2006), [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1601] = { - [sym__expression] = STATE(3467), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1602] = { - [sym__expression] = STATE(2705), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1603] = { - [sym__expression] = STATE(3432), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1604] = { - [sym__expression] = STATE(4930), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1605] = { - [sym__expression] = STATE(3542), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1606] = { - [sym__expression] = STATE(3628), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1607] = { - [sym__expression] = STATE(3544), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1608] = { - [sym__expression] = STATE(3545), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1609] = { - [sym__expression] = STATE(2961), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(4914), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1610] = { - [sym__expression] = STATE(3539), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1611] = { - [sym__expression] = STATE(3538), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1612] = { - [sym__expression] = STATE(3177), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1613] = { - [sym__expression] = STATE(3498), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1614] = { - [sym__expression] = STATE(4783), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1539] = { + [sym__expression] = STATE(4223), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -290707,8 +283786,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -290739,7 +283818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -290752,341 +283831,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1615] = { - [sym__expression] = STATE(3496), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1616] = { - [sym__expression] = STATE(3468), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1617] = { - [sym__expression] = STATE(3654), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1618] = { - [sym__expression] = STATE(5190), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1540] = { + [sym__expression] = STATE(4223), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(4921), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -291095,8 +283883,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -291127,7 +283915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -291140,244 +283928,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1619] = { - [sym__expression] = STATE(3742), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1620] = { - [sym__expression] = STATE(3677), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1621] = { - [sym__expression] = STATE(4722), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1541] = { + [sym__expression] = STATE(5132), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -291386,8 +283980,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(4916), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -291418,7 +284012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -291431,50 +284025,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1622] = { - [sym__expression] = STATE(5236), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1542] = { + [sym__expression] = STATE(5133), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -291483,8 +284077,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -291515,7 +284109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -291528,162 +284122,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1623] = { - [sym__expression] = STATE(3708), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1624] = { - [sym__expression] = STATE(4811), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1543] = { + [sym__expression] = STATE(5110), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -291709,63 +284206,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1625] = { - [sym__expression] = STATE(5160), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1544] = { + [sym__expression] = STATE(5177), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -291774,8 +284271,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -291806,7 +284303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -291819,453 +284316,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1626] = { - [sym__expression] = STATE(2724), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1627] = { - [sym__expression] = STATE(3710), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1628] = { - [sym__expression] = STATE(3912), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(4918), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1629] = { - [sym__expression] = STATE(3862), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1630] = { - [sym__expression] = STATE(4237), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1545] = { + [sym__expression] = STATE(5187), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(4923), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -292291,175 +284400,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1631] = { - [sym__expression] = STATE(3839), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(4920), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1632] = { - [sym__expression] = STATE(5134), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1546] = { + [sym__expression] = STATE(5103), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -292485,160 +284497,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1633] = { - [sym__expression] = STATE(4939), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1547] = { + [sym__expression] = STATE(3631), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [1634] = { - [sym__expression] = STATE(5137), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1548] = { + [sym__expression] = STATE(5083), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -292647,8 +284659,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -292679,7 +284691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -292692,50 +284704,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1635] = { - [sym__expression] = STATE(5212), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1549] = { + [sym__expression] = STATE(5084), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -292744,8 +284756,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -292776,7 +284788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -292789,356 +284801,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1636] = { - [sym__expression] = STATE(3172), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1637] = { - [sym__expression] = STATE(2956), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1638] = { - [sym__expression] = STATE(3716), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1639] = { - [sym__expression] = STATE(5228), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1550] = { + [sym__expression] = STATE(5114), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -293164,78 +284885,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1640] = { - [sym__expression] = STATE(5136), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1551] = { + [sym__expression] = STATE(3609), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), + }, + [1552] = { + [sym__expression] = STATE(4987), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [1553] = { + [sym__expression] = STATE(4989), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [1554] = { + [sym__expression] = STATE(5233), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -293261,660 +285273,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1641] = { - [sym__expression] = STATE(3372), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1642] = { - [sym__expression] = STATE(3368), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(4922), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1643] = { - [sym__expression] = STATE(3452), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1644] = { - [sym__expression] = STATE(3368), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1645] = { - [sym__expression] = STATE(4999), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1646] = { - [sym__expression] = STATE(5000), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1647] = { - [sym__expression] = STATE(4192), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(4924), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1555] = { + [sym__expression] = STATE(5236), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -293940,78 +285370,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1648] = { - [sym__expression] = STATE(5220), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1556] = { + [sym__expression] = STATE(5249), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -294037,78 +285467,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1649] = { - [sym__expression] = STATE(4729), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1557] = { + [sym__expression] = STATE(5206), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -294134,175 +285564,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1650] = { - [sym__expression] = STATE(5001), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1651] = { - [sym__expression] = STATE(5133), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1558] = { + [sym__expression] = STATE(5252), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -294328,272 +285661,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1652] = { - [sym__expression] = STATE(5002), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1653] = { - [sym__expression] = STATE(5005), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1654] = { - [sym__expression] = STATE(4907), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1559] = { + [sym__expression] = STATE(5253), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -294619,369 +285758,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1655] = { - [sym__expression] = STATE(4682), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1656] = { - [sym__expression] = STATE(5007), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1657] = { - [sym__expression] = STATE(4687), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1560] = { + [sym__expression] = STATE(4112), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1658] = { - [sym__expression] = STATE(4971), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1561] = { + [sym__expression] = STATE(5254), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -295007,78 +285952,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1659] = { - [sym__expression] = STATE(5124), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1562] = { + [sym__expression] = STATE(5255), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -295104,78 +286049,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1660] = { - [sym__expression] = STATE(5100), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1563] = { + [sym__expression] = STATE(5256), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -295201,951 +286146,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1661] = { - [sym__expression] = STATE(4674), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1662] = { - [sym__expression] = STATE(4652), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1663] = { - [sym__expression] = STATE(4688), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1664] = { - [sym__expression] = STATE(4697), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1665] = { - [sym__expression] = STATE(5008), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1666] = { - [sym__expression] = STATE(4699), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1667] = { - [sym__expression] = STATE(4702), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1668] = { - [sym__expression] = STATE(4663), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1669] = { - [sym__expression] = STATE(4701), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1670] = { - [sym__expression] = STATE(4192), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1564] = { + [sym__expression] = STATE(4902), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(4713), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -296155,288 +286227,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1671] = { - [sym__expression] = STATE(3469), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1672] = { - [sym__expression] = STATE(5009), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1673] = { - [sym__expression] = STATE(4229), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1565] = { + [sym__expression] = STATE(4219), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -296446,385 +286324,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1674] = { - [sym__expression] = STATE(5010), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1675] = { - [sym__expression] = STATE(4031), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(4926), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1676] = { - [sym__expression] = STATE(4024), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1677] = { - [sym__expression] = STATE(5210), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1566] = { + [sym__expression] = STATE(5260), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -296850,63 +286437,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1678] = { - [sym__expression] = STATE(4795), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1567] = { + [sym__expression] = STATE(4243), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -296915,8 +286502,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -296947,7 +286534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -296960,453 +286547,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1679] = { - [sym__expression] = STATE(5011), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1680] = { - [sym__expression] = STATE(3780), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1681] = { - [sym__expression] = STATE(4958), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(4928), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1682] = { - [sym__expression] = STATE(4066), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [1568] = { + [sym__expression] = STATE(4898), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(4925), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1683] = { - [sym__expression] = STATE(5103), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1569] = { + [sym__expression] = STATE(5263), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -297432,78 +286728,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1684] = { - [sym__expression] = STATE(5132), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1570] = { + [sym__expression] = STATE(5266), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -297529,78 +286825,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1685] = { - [sym__expression] = STATE(4736), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(4930), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1571] = { + [sym__expression] = STATE(5271), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -297626,175 +286922,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1686] = { - [sym__expression] = STATE(2966), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1687] = { - [sym__expression] = STATE(5105), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1572] = { + [sym__expression] = STATE(5273), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(4927), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -297820,175 +287019,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1688] = { - [sym__expression] = STATE(3535), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(4932), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1573] = { + [sym__expression] = STATE(3939), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1689] = { - [sym__expression] = STATE(4562), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(4934), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1574] = { + [sym__expression] = STATE(4772), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -297998,79 +287197,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1690] = { - [sym__expression] = STATE(5117), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1575] = { + [sym__expression] = STATE(3937), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1576] = { + [sym__expression] = STATE(4745), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -298079,8 +287375,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(4929), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -298111,7 +287407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -298124,50 +287420,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1691] = { - [sym__expression] = STATE(5055), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1577] = { + [sym__expression] = STATE(3902), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1578] = { + [sym__expression] = STATE(3760), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(4931), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1579] = { + [sym__expression] = STATE(3766), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1580] = { + [sym__expression] = STATE(3772), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(4933), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1581] = { + [sym__expression] = STATE(5135), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -298176,8 +287860,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -298208,7 +287892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -298221,50 +287905,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1692] = { - [sym__expression] = STATE(4768), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1582] = { + [sym__expression] = STATE(4923), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [1583] = { + [sym__expression] = STATE(3900), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1584] = { + [sym__expression] = STATE(4219), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -298273,8 +288151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -298305,7 +288183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -298318,65 +288196,938 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1693] = { - [sym__expression] = STATE(4237), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1585] = { + [sym__expression] = STATE(3873), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1586] = { + [sym__expression] = STATE(3851), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1587] = { + [sym__expression] = STATE(3849), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1588] = { + [sym__expression] = STATE(3726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1589] = { + [sym__expression] = STATE(3807), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1590] = { + [sym__expression] = STATE(3773), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1591] = { + [sym__expression] = STATE(3739), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1592] = { + [sym__expression] = STATE(3738), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1593] = { + [sym__expression] = STATE(3753), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1594] = { + [sym__expression] = STATE(4889), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -298386,79 +289137,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1694] = { - [sym__expression] = STATE(5141), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1595] = { + [sym__expression] = STATE(5173), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -298467,8 +289218,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -298499,7 +289250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -298512,341 +289263,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1695] = { - [sym__expression] = STATE(3823), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1696] = { - [sym__expression] = STATE(3553), - [sym__expression_not_binary] = STATE(4041), - [sym_conditional_expression] = STATE(4041), - [sym_assignment_expression] = STATE(4041), - [sym_pointer_expression] = STATE(4041), - [sym_unary_expression] = STATE(4041), - [sym_binary_expression] = STATE(4041), - [sym_update_expression] = STATE(4041), - [sym_cast_expression] = STATE(4041), - [sym_sizeof_expression] = STATE(4041), - [sym_alignof_expression] = STATE(4041), - [sym_offsetof_expression] = STATE(4041), - [sym_generic_expression] = STATE(4041), - [sym_subscript_expression] = STATE(4041), - [sym_call_expression] = STATE(4041), - [sym_gnu_asm_expression] = STATE(4041), - [sym_field_expression] = STATE(4041), - [sym_compound_literal_expression] = STATE(4041), - [sym_parenthesized_expression] = STATE(4041), - [sym_char_literal] = STATE(3791), - [sym_concatenated_string] = STATE(3791), - [sym_string_literal] = STATE(2579), - [sym_null] = STATE(4041), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8400), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4041), - [sym_raw_string_literal] = STATE(2579), - [sym_co_await_expression] = STATE(4041), - [sym_new_expression] = STATE(4041), - [sym_delete_expression] = STATE(4041), - [sym_requires_clause] = STATE(4041), - [sym_requires_expression] = STATE(4041), - [sym_lambda_expression] = STATE(4041), - [sym_lambda_capture_specifier] = STATE(6418), - [sym_fold_expression] = STATE(4041), - [sym_parameter_pack_expansion] = STATE(4041), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4041), - [sym_qualified_type_identifier] = STATE(8400), - [sym_user_defined_literal] = STATE(4041), - [sym_identifier] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(4613), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_not] = ACTIONS(2292), - [anon_sym_compl] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(4555), - [anon_sym_PLUS_PLUS] = ACTIONS(4555), - [anon_sym_sizeof] = ACTIONS(2302), - [anon_sym___alignof__] = ACTIONS(2304), - [anon_sym___alignof] = ACTIONS(2304), - [anon_sym__alignof] = ACTIONS(2304), - [anon_sym_alignof] = ACTIONS(2304), - [anon_sym__Alignof] = ACTIONS(2304), - [anon_sym_offsetof] = ACTIONS(2306), - [anon_sym__Generic] = ACTIONS(2308), - [anon_sym_asm] = ACTIONS(2310), - [anon_sym___asm__] = ACTIONS(2310), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_L_SQUOTE] = ACTIONS(2314), - [anon_sym_u_SQUOTE] = ACTIONS(2314), - [anon_sym_U_SQUOTE] = ACTIONS(2314), - [anon_sym_u8_SQUOTE] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_L_DQUOTE] = ACTIONS(2316), - [anon_sym_u_DQUOTE] = ACTIONS(2316), - [anon_sym_U_DQUOTE] = ACTIONS(2316), - [anon_sym_u8_DQUOTE] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [anon_sym_NULL] = ACTIONS(2320), - [anon_sym_nullptr] = ACTIONS(2320), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2322), - [anon_sym_R_DQUOTE] = ACTIONS(2324), - [anon_sym_LR_DQUOTE] = ACTIONS(2324), - [anon_sym_uR_DQUOTE] = ACTIONS(2324), - [anon_sym_UR_DQUOTE] = ACTIONS(2324), - [anon_sym_u8R_DQUOTE] = ACTIONS(2324), - [anon_sym_co_await] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_requires] = ACTIONS(2330), - [sym_this] = ACTIONS(2318), - }, - [1697] = { - [sym__expression] = STATE(2960), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), + [1596] = { + [sym__expression] = STATE(3746), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), [anon_sym_DASH_DASH] = ACTIONS(4505), [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1698] = { - [sym__expression] = STATE(5238), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1597] = { + [sym__expression] = STATE(4972), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -298855,8 +289412,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -298887,7 +289444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -298900,259 +289457,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1699] = { - [sym__expression] = STATE(2702), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1700] = { - [sym__expression] = STATE(3434), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(4936), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1701] = { - [sym__expression] = STATE(5225), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1598] = { + [sym__expression] = STATE(4999), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -299178,160 +289541,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1702] = { - [sym__expression] = STATE(2705), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1599] = { + [sym__expression] = STATE(5034), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1703] = { - [sym__expression] = STATE(4049), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), + [1600] = { + [sym__expression] = STATE(4107), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), [anon_sym_LPAREN2] = ACTIONS(2000), [anon_sym_BANG] = ACTIONS(2002), [anon_sym_TILDE] = ACTIONS(2002), @@ -299340,8 +289703,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(2006), [anon_sym_AMP] = ACTIONS(2006), [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(4938), - [sym_primitive_type] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), [anon_sym_not] = ACTIONS(2004), [anon_sym_compl] = ACTIONS(2004), [anon_sym_DASH_DASH] = ACTIONS(2020), @@ -299372,7 +289735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(2040), [anon_sym_nullptr] = ACTIONS(2040), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(2044), [anon_sym_R_DQUOTE] = ACTIONS(2046), @@ -299385,244 +289748,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2052), [sym_this] = ACTIONS(2038), }, - [1704] = { - [sym__expression] = STATE(3199), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1705] = { - [sym__expression] = STATE(2963), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1706] = { - [sym__expression] = STATE(4909), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1601] = { + [sym__expression] = STATE(5061), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -299631,8 +289800,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -299663,7 +289832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -299676,244 +289845,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1707] = { - [sym__expression] = STATE(2976), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1708] = { - [sym__expression] = STATE(2683), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1709] = { - [sym__expression] = STATE(5156), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1602] = { + [sym__expression] = STATE(5075), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -299922,8 +289897,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -299954,7 +289929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -299967,259 +289942,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1710] = { - [sym__expression] = STATE(2945), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1711] = { - [sym__expression] = STATE(2943), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1712] = { - [sym__expression] = STATE(5154), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1603] = { + [sym__expression] = STATE(5066), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -300245,63 +290026,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1713] = { - [sym__expression] = STATE(5149), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1604] = { + [sym__expression] = STATE(5064), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -300310,8 +290091,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -300342,7 +290123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -300355,65 +290136,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1714] = { - [sym__expression] = STATE(4721), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1605] = { + [sym__expression] = STATE(5168), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -300439,63 +290220,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1715] = { - [sym__expression] = STATE(4891), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1606] = { + [sym__expression] = STATE(3787), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1607] = { + [sym__expression] = STATE(3789), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2803), + [anon_sym_compl] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(2809), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1608] = { + [sym__expression] = STATE(5008), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -300504,8 +290479,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -300536,7 +290511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -300549,65 +290524,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1716] = { - [sym__expression] = STATE(5121), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1609] = { + [sym__expression] = STATE(4219), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -300633,175 +290608,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1717] = { - [sym__expression] = STATE(2698), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(4940), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1718] = { - [sym__expression] = STATE(5077), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1610] = { + [sym__expression] = STATE(4978), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(4935), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -300827,78 +290705,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1719] = { - [sym__expression] = STATE(5221), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1611] = { + [sym__expression] = STATE(4243), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -300924,78 +290802,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1720] = { - [sym__expression] = STATE(5082), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1612] = { + [sym__expression] = STATE(4223), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -301021,63 +290899,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1721] = { - [sym__expression] = STATE(4880), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1613] = { + [sym__expression] = STATE(5267), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -301086,8 +290964,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -301118,7 +290996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -301131,923 +291009,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1722] = { - [sym__expression] = STATE(2698), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1723] = { - [sym__expression] = STATE(2947), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1724] = { - [sym__expression] = STATE(2948), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1725] = { - [sym__expression] = STATE(2949), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1726] = { - [sym__expression] = STATE(2957), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1727] = { - [sym__expression] = STATE(4192), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), - [sym_this] = ACTIONS(217), - }, - [1728] = { - [sym__expression] = STATE(4229), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), - [sym_this] = ACTIONS(217), - }, - [1729] = { - [sym__expression] = STATE(4561), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), - [sym_this] = ACTIONS(217), - }, - [1730] = { - [sym__expression] = STATE(3811), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2801), - [anon_sym_compl] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4529), - [anon_sym_sizeof] = ACTIONS(2807), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1731] = { - [sym__expression] = STATE(5224), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1614] = { + [sym__expression] = STATE(5261), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -302056,8 +291061,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -302088,7 +291093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -302101,65 +291106,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1732] = { - [sym__expression] = STATE(5237), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1615] = { + [sym__expression] = STATE(4027), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(4937), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1616] = { + [sym__expression] = STATE(4824), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -302185,175 +291287,466 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1733] = { - [sym__expression] = STATE(2995), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1617] = { + [sym__expression] = STATE(3983), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [1734] = { - [sym__expression] = STATE(4588), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1618] = { + [sym__expression] = STATE(3981), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(4939), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), + }, + [1619] = { + [sym__expression] = STATE(3196), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(4941), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1620] = { + [sym__expression] = STATE(2751), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1621] = { + [sym__expression] = STATE(4914), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -302363,79 +291756,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1735] = { - [sym__expression] = STATE(5240), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1622] = { + [sym__expression] = STATE(5245), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -302444,8 +291837,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -302476,7 +291869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -302489,50 +291882,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1736] = { - [sym__expression] = STATE(4787), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1623] = { + [sym__expression] = STATE(3201), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(4943), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1624] = { + [sym__expression] = STATE(5230), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -302541,8 +292031,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -302573,7 +292063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -302586,50 +292076,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1737] = { - [sym__expression] = STATE(5152), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1625] = { + [sym__expression] = STATE(4929), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -302638,8 +292128,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -302670,7 +292160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -302683,65 +292173,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1738] = { - [sym__expression] = STATE(4589), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1626] = { + [sym__expression] = STATE(5274), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -302751,79 +292241,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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(217), - [sym_false] = ACTIONS(217), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1739] = { - [sym__expression] = STATE(5130), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1627] = { + [sym__expression] = STATE(5276), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [1628] = { + [sym__expression] = STATE(3396), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1629] = { + [sym__expression] = STATE(5247), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -302832,8 +292516,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -302864,7 +292548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -302877,50 +292561,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1740] = { - [sym__expression] = STATE(5146), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1630] = { + [sym__expression] = STATE(5042), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -302929,8 +292613,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -302961,7 +292645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -302974,65 +292658,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1741] = { - [sym__expression] = STATE(4565), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1631] = { + [sym__expression] = STATE(4933), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -303042,94 +292726,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1742] = { - [sym__expression] = STATE(5120), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1632] = { + [sym__expression] = STATE(5225), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -303155,78 +292839,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1743] = { - [sym__expression] = STATE(4590), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1633] = { + [sym__expression] = STATE(4951), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -303236,94 +292920,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1744] = { - [sym__expression] = STATE(4591), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1634] = { + [sym__expression] = STATE(5101), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -303333,94 +293017,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1745] = { - [sym__expression] = STATE(4598), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1635] = { + [sym__expression] = STATE(4702), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), + }, + [1636] = { + [sym__expression] = STATE(5109), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -303430,94 +293211,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1746] = { - [sym__expression] = STATE(4602), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1637] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1638] = { + [sym__expression] = STATE(3397), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1639] = { + [sym__expression] = STATE(3518), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1640] = { + [sym__expression] = STATE(4586), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(4945), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -303527,94 +293599,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), [sym_this] = ACTIONS(217), }, - [1747] = { - [sym__expression] = STATE(4243), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1641] = { + [sym__expression] = STATE(4219), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -303624,94 +293696,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), [sym_this] = ACTIONS(217), }, - [1748] = { - [sym__expression] = STATE(5162), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1642] = { + [sym__expression] = STATE(3452), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1643] = { + [sym__expression] = STATE(4626), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(4947), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), + }, + [1644] = { + [sym__expression] = STATE(3567), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1645] = { + [sym__expression] = STATE(4599), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), + }, + [1646] = { + [sym__expression] = STATE(4905), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -303737,78 +294197,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1749] = { - [sym__expression] = STATE(4558), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1647] = { + [sym__expression] = STATE(3532), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1648] = { + [sym__expression] = STATE(3534), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1649] = { + [sym__expression] = STATE(3541), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1650] = { + [sym__expression] = STATE(4617), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -303818,94 +294569,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), [sym_this] = ACTIONS(217), }, - [1750] = { - [sym__expression] = STATE(5173), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(4942), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1651] = { + [sym__expression] = STATE(3571), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1652] = { + [sym__expression] = STATE(3572), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1653] = { + [sym__expression] = STATE(4630), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), + }, + [1654] = { + [sym__expression] = STATE(3391), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1655] = { + [sym__expression] = STATE(4759), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -303931,175 +295070,563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1751] = { - [sym__expression] = STATE(3527), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1656] = { + [sym__expression] = STATE(3234), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1657] = { + [sym__expression] = STATE(3416), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(4949), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1752] = { - [sym__expression] = STATE(5216), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(4944), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1658] = { + [sym__expression] = STATE(2751), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1659] = { + [sym__expression] = STATE(3419), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(4951), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1660] = { + [sym__expression] = STATE(3395), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1661] = { + [sym__expression] = STATE(5257), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -304125,63 +295652,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1753] = { - [sym__expression] = STATE(4994), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1662] = { + [sym__expression] = STATE(4804), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -304190,8 +295717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -304222,7 +295749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -304235,356 +295762,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1754] = { - [sym__expression] = STATE(3525), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1755] = { - [sym__expression] = STATE(3524), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1756] = { - [sym__expression] = STATE(3523), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1663] = { + [sym__expression] = STATE(3437), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1757] = { - [sym__expression] = STATE(4557), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(4946), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1664] = { + [sym__expression] = STATE(5120), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -304594,1161 +295927,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1758] = { - [sym__expression] = STATE(3144), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1759] = { - [sym__expression] = STATE(2705), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1760] = { - [sym__expression] = STATE(3142), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1761] = { - [sym__expression] = STATE(3140), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1762] = { - [sym__expression] = STATE(3139), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1763] = { - [sym__expression] = STATE(3137), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1764] = { - [sym__expression] = STATE(3143), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1765] = { - [sym__expression] = STATE(3146), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1766] = { - [sym__expression] = STATE(3147), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), + [1665] = { + [sym__expression] = STATE(5127), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1767] = { - [sym__expression] = STATE(3148), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), + [1666] = { + [sym__expression] = STATE(5130), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1768] = { - [sym__expression] = STATE(3982), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1769] = { - [sym__expression] = STATE(4560), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -305758,79 +296121,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1770] = { - [sym__expression] = STATE(5186), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1667] = { + [sym__expression] = STATE(4816), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -305839,8 +296202,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -305871,7 +296234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -305884,65 +296247,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1771] = { - [sym__expression] = STATE(5110), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1668] = { + [sym__expression] = STATE(5088), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -305968,257 +296331,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1772] = { - [sym__expression] = STATE(3519), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1773] = { - [sym__expression] = STATE(3518), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1774] = { - [sym__expression] = STATE(5073), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1669] = { + [sym__expression] = STATE(5248), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -306227,8 +296396,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -306259,7 +296428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -306272,65 +296441,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1775] = { - [sym__expression] = STATE(5175), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1670] = { + [sym__expression] = STATE(3486), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1671] = { + [sym__expression] = STATE(4734), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(4953), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -306356,78 +296622,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1776] = { - [sym__expression] = STATE(4915), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1672] = { + [sym__expression] = STATE(5092), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -306437,191 +296703,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1777] = { - [sym__expression] = STATE(3178), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1778] = { - [sym__expression] = STATE(4743), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3727), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3727), - [sym_call_expression] = STATE(3727), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3727), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3727), - [sym_char_literal] = STATE(4941), - [sym_concatenated_string] = STATE(4941), - [sym_string_literal] = STATE(4007), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(4007), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3727), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3727), - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3866), - [anon_sym_compl] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(4475), - [anon_sym_PLUS_PLUS] = ACTIONS(4475), - [anon_sym_sizeof] = ACTIONS(3872), + [1673] = { + [sym__expression] = STATE(5155), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -306631,94 +296800,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3876), - [anon_sym_u_SQUOTE] = ACTIONS(3876), - [anon_sym_U_SQUOTE] = ACTIONS(3876), - [anon_sym_u8_SQUOTE] = ACTIONS(3876), - [anon_sym_SQUOTE] = ACTIONS(3876), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3884), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1779] = { - [sym__expression] = STATE(5095), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1674] = { + [sym__expression] = STATE(5123), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -306744,78 +296913,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1780] = { - [sym__expression] = STATE(5200), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1675] = { + [sym__expression] = STATE(5172), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -306841,63 +297010,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1781] = { - [sym__expression] = STATE(4747), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1676] = { + [sym__expression] = STATE(4897), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -306906,8 +297075,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -306938,7 +297107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -306951,244 +297120,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1782] = { - [sym__expression] = STATE(4968), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1783] = { - [sym__expression] = STATE(4967), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1784] = { - [sym__expression] = STATE(5217), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1677] = { + [sym__expression] = STATE(5112), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -307197,8 +297172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -307229,7 +297204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -307242,162 +297217,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1785] = { - [sym__expression] = STATE(4074), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1786] = { - [sym__expression] = STATE(5213), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1678] = { + [sym__expression] = STATE(5117), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -307423,63 +297301,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1787] = { - [sym__expression] = STATE(5211), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1679] = { + [sym__expression] = STATE(5145), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -307488,8 +297366,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -307520,7 +297398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -307533,147 +297411,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1788] = { - [sym__expression] = STATE(3168), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1680] = { + [sym__expression] = STATE(3658), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [1789] = { - [sym__expression] = STATE(4848), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1681] = { + [sym__expression] = STATE(4700), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(4955), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), + }, + [1682] = { + [sym__expression] = STATE(5205), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -307682,8 +297657,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -307714,7 +297689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -307727,50 +297702,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1790] = { - [sym__expression] = STATE(5198), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1683] = { + [sym__expression] = STATE(5052), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [1684] = { + [sym__expression] = STATE(4712), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(4957), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), + }, + [1685] = { + [sym__expression] = STATE(5116), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -307779,8 +297948,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -307811,7 +297980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -307824,1811 +297993,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1791] = { - [sym__expression] = STATE(3206), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1792] = { - [sym__expression] = STATE(3205), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1793] = { - [sym__expression] = STATE(3517), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1794] = { - [sym__expression] = STATE(3204), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1795] = { - [sym__expression] = STATE(3512), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1796] = { - [sym__expression] = STATE(3202), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1797] = { - [sym__expression] = STATE(3198), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1798] = { - [sym__expression] = STATE(3195), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1799] = { - [sym__expression] = STATE(3499), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1800] = { - [sym__expression] = STATE(3188), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1801] = { - [sym__expression] = STATE(3136), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1802] = { - [sym__expression] = STATE(3955), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1803] = { - [sym__expression] = STATE(2698), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1804] = { - [sym__expression] = STATE(2683), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3563), - [sym_concatenated_string] = STATE(3563), - [sym_string_literal] = STATE(2388), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2388), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2260), - [anon_sym_LPAREN2] = ACTIONS(4628), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2262), - [anon_sym_compl] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(4543), - [anon_sym_PLUS_PLUS] = ACTIONS(4543), - [anon_sym_sizeof] = ACTIONS(2268), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [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(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2276), - [anon_sym_R_DQUOTE] = ACTIONS(2278), - [anon_sym_LR_DQUOTE] = ACTIONS(2278), - [anon_sym_uR_DQUOTE] = ACTIONS(2278), - [anon_sym_UR_DQUOTE] = ACTIONS(2278), - [anon_sym_u8R_DQUOTE] = ACTIONS(2278), - [anon_sym_co_await] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1805] = { - [sym__expression] = STATE(3956), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1806] = { - [sym__expression] = STATE(5169), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1807] = { - [sym__expression] = STATE(3465), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1808] = { - [sym__expression] = STATE(3958), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1809] = { - [sym__expression] = STATE(5153), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1686] = { + [sym__expression] = STATE(5221), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -309654,354 +298077,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1810] = { - [sym__expression] = STATE(3963), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1811] = { - [sym__expression] = STATE(3200), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(4950), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1812] = { - [sym__expression] = STATE(3220), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1687] = { + [sym__expression] = STATE(4716), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [1813] = { - [sym__expression] = STATE(5026), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1688] = { + [sym__expression] = STATE(4805), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -310010,8 +298239,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -310042,7 +298271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -310055,50 +298284,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1814] = { - [sym__expression] = STATE(4723), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1689] = { + [sym__expression] = STATE(3581), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(4959), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1690] = { + [sym__expression] = STATE(3487), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1691] = { + [sym__expression] = STATE(4691), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), + }, + [1692] = { + [sym__expression] = STATE(5170), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -310107,8 +298627,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -310139,7 +298659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -310152,550 +298672,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1815] = { - [sym__expression] = STATE(4048), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1816] = { - [sym__expression] = STATE(4593), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), - [sym_this] = ACTIONS(217), - }, - [1817] = { - [sym__expression] = STATE(4670), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1818] = { - [sym__expression] = STATE(4957), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1819] = { - [sym__expression] = STATE(3964), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1820] = { - [sym__expression] = STATE(5196), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1693] = { + [sym__expression] = STATE(5194), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -310721,63 +298756,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1821] = { - [sym__expression] = STATE(4771), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1694] = { + [sym__expression] = STATE(5196), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -310786,8 +298821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -310818,7 +298853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -310831,632 +298866,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1822] = { - [sym__expression] = STATE(3209), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(4952), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1823] = { - [sym__expression] = STATE(3493), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), - }, - [1824] = { - [sym__expression] = STATE(3141), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1825] = { - [sym__expression] = STATE(3966), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1826] = { - [sym__expression] = STATE(3967), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1827] = { - [sym__expression] = STATE(5063), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), - [anon_sym___alignof__] = ACTIONS(99), - [anon_sym___alignof] = ACTIONS(99), - [anon_sym__alignof] = ACTIONS(99), - [anon_sym_alignof] = ACTIONS(99), - [anon_sym__Alignof] = ACTIONS(99), - [anon_sym_offsetof] = ACTIONS(101), - [anon_sym__Generic] = ACTIONS(103), - [anon_sym_asm] = ACTIONS(105), - [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(107), - [anon_sym_L_SQUOTE] = ACTIONS(109), - [anon_sym_u_SQUOTE] = ACTIONS(109), - [anon_sym_U_SQUOTE] = ACTIONS(109), - [anon_sym_u8_SQUOTE] = ACTIONS(109), - [anon_sym_SQUOTE] = ACTIONS(109), - [anon_sym_L_DQUOTE] = ACTIONS(111), - [anon_sym_u_DQUOTE] = ACTIONS(111), - [anon_sym_U_DQUOTE] = ACTIONS(111), - [anon_sym_u8_DQUOTE] = ACTIONS(111), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [anon_sym_NULL] = ACTIONS(115), - [anon_sym_nullptr] = ACTIONS(115), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(151), - [anon_sym_LR_DQUOTE] = ACTIONS(151), - [anon_sym_uR_DQUOTE] = ACTIONS(151), - [anon_sym_UR_DQUOTE] = ACTIONS(151), - [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(157), - [sym_this] = ACTIONS(217), - }, - [1828] = { - [sym__expression] = STATE(5204), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1695] = { + [sym__expression] = STATE(4935), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -311465,8 +298918,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -311497,7 +298950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -311510,50 +298963,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1829] = { - [sym__expression] = STATE(4718), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1696] = { + [sym__expression] = STATE(5228), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -311562,8 +299015,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -311594,7 +299047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -311607,50 +299060,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1830] = { - [sym__expression] = STATE(4716), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1697] = { + [sym__expression] = STATE(4687), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), + }, + [1698] = { + [sym__expression] = STATE(3026), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(4961), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1699] = { + [sym__expression] = STATE(2751), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1700] = { + [sym__expression] = STATE(5104), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -311659,8 +299403,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -311691,7 +299435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -311704,65 +299448,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1831] = { - [sym__expression] = STATE(5015), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [1701] = { + [sym__expression] = STATE(3032), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(4963), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1702] = { + [sym__expression] = STATE(5227), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -311788,78 +299629,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1832] = { - [sym__expression] = STATE(4746), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1703] = { + [sym__expression] = STATE(3007), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1704] = { + [sym__expression] = STATE(4794), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -311885,63 +299823,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1833] = { - [sym__expression] = STATE(4713), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1705] = { + [sym__expression] = STATE(5147), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -311950,8 +299888,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -311982,7 +299920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -311995,65 +299933,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1834] = { - [sym__expression] = STATE(5043), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1706] = { + [sym__expression] = STATE(3031), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1707] = { + [sym__expression] = STATE(5149), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -312079,78 +300114,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1835] = { - [sym__expression] = STATE(4574), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3211), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3211), - [sym_call_expression] = STATE(3211), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3211), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3211), - [sym_char_literal] = STATE(4640), - [sym_concatenated_string] = STATE(4640), - [sym_string_literal] = STATE(3239), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3239), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3211), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3211), - [sym_identifier] = ACTIONS(4533), - [anon_sym_LPAREN2] = ACTIONS(4632), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(4535), - [anon_sym_PLUS_PLUS] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(3648), + [1708] = { + [sym__expression] = STATE(4603), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -312160,273 +300195,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(103), [anon_sym_asm] = ACTIONS(105), [anon_sym___asm__] = ACTIONS(105), - [sym_number_literal] = ACTIONS(3650), - [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(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_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), [sym_true] = ACTIONS(217), [sym_false] = ACTIONS(217), [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3660), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), [sym_this] = ACTIONS(217), }, - [1836] = { - [sym__expression] = STATE(3156), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1837] = { - [sym__expression] = STATE(4691), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1838] = { - [sym__expression] = STATE(4712), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1709] = { + [sym__expression] = STATE(5157), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -312435,8 +300276,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -312467,7 +300308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -312480,244 +300321,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1839] = { - [sym__expression] = STATE(4654), - [sym__expression_not_binary] = STATE(4878), - [sym_conditional_expression] = STATE(4878), - [sym_assignment_expression] = STATE(4878), - [sym_pointer_expression] = STATE(3529), - [sym_unary_expression] = STATE(4878), - [sym_binary_expression] = STATE(4878), - [sym_update_expression] = STATE(4878), - [sym_cast_expression] = STATE(4878), - [sym_sizeof_expression] = STATE(4878), - [sym_alignof_expression] = STATE(4878), - [sym_offsetof_expression] = STATE(4878), - [sym_generic_expression] = STATE(4878), - [sym_subscript_expression] = STATE(3529), - [sym_call_expression] = STATE(3529), - [sym_gnu_asm_expression] = STATE(4878), - [sym_field_expression] = STATE(3529), - [sym_compound_literal_expression] = STATE(4878), - [sym_parenthesized_expression] = STATE(3529), - [sym_char_literal] = STATE(4719), - [sym_concatenated_string] = STATE(4719), - [sym_string_literal] = STATE(3617), - [sym_null] = STATE(4878), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8319), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4878), - [sym_raw_string_literal] = STATE(3617), - [sym_co_await_expression] = STATE(4878), - [sym_new_expression] = STATE(4878), - [sym_delete_expression] = STATE(4878), - [sym_requires_clause] = STATE(4878), - [sym_requires_expression] = STATE(4878), - [sym_lambda_expression] = STATE(4878), - [sym_lambda_capture_specifier] = STATE(6408), - [sym_fold_expression] = STATE(4878), - [sym_parameter_pack_expansion] = STATE(4878), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3529), - [sym_qualified_type_identifier] = STATE(8319), - [sym_user_defined_literal] = STATE(3529), - [sym_identifier] = ACTIONS(4487), + [1710] = { + [sym__expression] = STATE(2984), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), [anon_sym_LPAREN2] = ACTIONS(4630), - [anon_sym_BANG] = ACTIONS(3712), - [anon_sym_TILDE] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3718), - [anon_sym_not] = ACTIONS(3710), - [anon_sym_compl] = ACTIONS(3710), - [anon_sym_DASH_DASH] = ACTIONS(4489), - [anon_sym_PLUS_PLUS] = ACTIONS(4489), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3722), - [anon_sym___alignof] = ACTIONS(3722), - [anon_sym__alignof] = ACTIONS(3722), - [anon_sym_alignof] = ACTIONS(3722), - [anon_sym__Alignof] = ACTIONS(3722), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3726), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3732), - [anon_sym_u_SQUOTE] = ACTIONS(3732), - [anon_sym_U_SQUOTE] = ACTIONS(3732), - [anon_sym_u8_SQUOTE] = ACTIONS(3732), - [anon_sym_SQUOTE] = ACTIONS(3732), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3736), - [sym_false] = ACTIONS(3736), - [anon_sym_NULL] = ACTIONS(3738), - [anon_sym_nullptr] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - [anon_sym_co_await] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3746), - [anon_sym_requires] = ACTIONS(3748), - [sym_this] = ACTIONS(3736), - }, - [1840] = { - [sym__expression] = STATE(5017), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1841] = { - [sym__expression] = STATE(4766), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1711] = { + [sym__expression] = STATE(4871), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -312726,8 +300470,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -312758,7 +300502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -312771,244 +300515,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1842] = { - [sym__expression] = STATE(5016), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(4954), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1843] = { - [sym__expression] = STATE(5065), - [sym__expression_not_binary] = STATE(5298), - [sym_conditional_expression] = STATE(5298), - [sym_assignment_expression] = STATE(5298), - [sym_pointer_expression] = STATE(4040), - [sym_unary_expression] = STATE(5298), - [sym_binary_expression] = STATE(5298), - [sym_update_expression] = STATE(5298), - [sym_cast_expression] = STATE(5298), - [sym_sizeof_expression] = STATE(5298), - [sym_alignof_expression] = STATE(5298), - [sym_offsetof_expression] = STATE(5298), - [sym_generic_expression] = STATE(5298), - [sym_subscript_expression] = STATE(4040), - [sym_call_expression] = STATE(4040), - [sym_gnu_asm_expression] = STATE(5298), - [sym_field_expression] = STATE(4040), - [sym_compound_literal_expression] = STATE(5298), - [sym_parenthesized_expression] = STATE(4040), - [sym_char_literal] = STATE(5089), - [sym_concatenated_string] = STATE(5089), - [sym_string_literal] = STATE(4100), - [sym_null] = STATE(5298), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8351), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(5298), - [sym_raw_string_literal] = STATE(4100), - [sym_co_await_expression] = STATE(5298), - [sym_new_expression] = STATE(5298), - [sym_delete_expression] = STATE(5298), - [sym_requires_clause] = STATE(5298), - [sym_requires_expression] = STATE(5298), - [sym_lambda_expression] = STATE(5298), - [sym_lambda_capture_specifier] = STATE(6361), - [sym_fold_expression] = STATE(5298), - [sym_parameter_pack_expansion] = STATE(5298), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6170), - [sym_qualified_identifier] = STATE(4040), - [sym_qualified_type_identifier] = STATE(8351), - [sym_user_defined_literal] = STATE(4040), - [sym_identifier] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3332), - [anon_sym_COLON_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3330), - [anon_sym_compl] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_sizeof] = ACTIONS(3350), - [anon_sym___alignof__] = ACTIONS(3352), - [anon_sym___alignof] = ACTIONS(3352), - [anon_sym__alignof] = ACTIONS(3352), - [anon_sym_alignof] = ACTIONS(3352), - [anon_sym__Alignof] = ACTIONS(3352), - [anon_sym_offsetof] = ACTIONS(3354), - [anon_sym__Generic] = ACTIONS(3356), - [anon_sym_asm] = ACTIONS(3358), - [anon_sym___asm__] = ACTIONS(3358), - [sym_number_literal] = ACTIONS(3360), - [anon_sym_L_SQUOTE] = ACTIONS(3362), - [anon_sym_u_SQUOTE] = ACTIONS(3362), - [anon_sym_U_SQUOTE] = ACTIONS(3362), - [anon_sym_u8_SQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [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(3366), - [sym_false] = ACTIONS(3366), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = 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(3382), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3386), - [sym_this] = ACTIONS(3366), - }, - [1844] = { - [sym__expression] = STATE(5111), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1712] = { + [sym__expression] = STATE(5218), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -313017,8 +300567,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -313049,7 +300599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -313062,64 +300612,549 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1845] = { - [sym__expression] = STATE(4710), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), + [1713] = { + [sym__expression] = STATE(3173), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(4965), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [1714] = { + [sym__expression] = STATE(3172), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [1715] = { + [sym__expression] = STATE(3217), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(4967), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [1716] = { + [sym__expression] = STATE(3495), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(4969), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1717] = { + [sym__expression] = STATE(3179), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [1718] = { + [sym__expression] = STATE(5178), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), @@ -313146,7 +301181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -313159,162 +301194,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1846] = { - [sym__expression] = STATE(3970), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1719] = { + [sym__expression] = STATE(5096), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1847] = { - [sym__expression] = STATE(5195), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1720] = { + [sym__expression] = STATE(3231), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [1721] = { + [sym__expression] = STATE(5270), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -313340,78 +301472,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1848] = { - [sym__expression] = STATE(5018), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [1722] = { + [sym__expression] = STATE(5144), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -313437,160 +301569,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(3916), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1849] = { - [sym__expression] = STATE(3167), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1850] = { - [sym__expression] = STATE(4720), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1723] = { + [sym__expression] = STATE(4835), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -313599,8 +301634,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -313631,7 +301666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -313644,65 +301679,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1851] = { - [sym__expression] = STATE(5193), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1724] = { + [sym__expression] = STATE(5097), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -313728,175 +301763,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1852] = { - [sym__expression] = STATE(2698), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1725] = { + [sym__expression] = STATE(3233), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), }, - [1853] = { - [sym__expression] = STATE(5192), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1726] = { + [sym__expression] = STATE(5162), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -313922,175 +301957,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1854] = { - [sym__expression] = STATE(3975), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), - }, - [1855] = { - [sym__expression] = STATE(5127), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3984), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3984), - [sym_call_expression] = STATE(3984), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3984), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3984), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3984), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3984), - [sym_identifier] = ACTIONS(3892), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), + [1727] = { + [sym__expression] = STATE(5136), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -314116,257 +302054,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3902), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3904), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1856] = { - [sym__expression] = STATE(2683), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3097), - [sym_concatenated_string] = STATE(3097), - [sym_string_literal] = STATE(2046), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2046), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2100), - [anon_sym_compl] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(4505), - [anon_sym_PLUS_PLUS] = ACTIONS(4505), - [anon_sym_sizeof] = ACTIONS(2110), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2122), - [anon_sym_u_SQUOTE] = ACTIONS(2122), - [anon_sym_U_SQUOTE] = ACTIONS(2122), - [anon_sym_u8_SQUOTE] = ACTIONS(2122), - [anon_sym_SQUOTE] = ACTIONS(2122), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2132), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [anon_sym_co_await] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), - }, - [1857] = { - [sym__expression] = STATE(3180), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1858] = { - [sym__expression] = STATE(5129), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1728] = { + [sym__expression] = STATE(5175), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -314375,8 +302119,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -314407,7 +302151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -314420,65 +302164,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1859] = { - [sym__expression] = STATE(5189), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1729] = { + [sym__expression] = STATE(5089), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -314504,160 +302248,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1860] = { - [sym__expression] = STATE(3151), - [sym__expression_not_binary] = STATE(2770), - [sym_conditional_expression] = STATE(2770), - [sym_assignment_expression] = STATE(2770), - [sym_pointer_expression] = STATE(2770), - [sym_unary_expression] = STATE(2770), - [sym_binary_expression] = STATE(2770), - [sym_update_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_sizeof_expression] = STATE(2770), - [sym_alignof_expression] = STATE(2770), - [sym_offsetof_expression] = STATE(2770), - [sym_generic_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_call_expression] = STATE(2770), - [sym_gnu_asm_expression] = STATE(2770), - [sym_field_expression] = STATE(2770), - [sym_compound_literal_expression] = STATE(2770), - [sym_parenthesized_expression] = STATE(2770), - [sym_char_literal] = STATE(3158), - [sym_concatenated_string] = STATE(3158), - [sym_string_literal] = STATE(2078), - [sym_null] = STATE(2770), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8190), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(2770), - [sym_raw_string_literal] = STATE(2078), - [sym_co_await_expression] = STATE(2770), - [sym_new_expression] = STATE(2770), - [sym_delete_expression] = STATE(2770), - [sym_requires_clause] = STATE(2770), - [sym_requires_expression] = STATE(2770), - [sym_lambda_expression] = STATE(2770), - [sym_lambda_capture_specifier] = STATE(6396), - [sym_fold_expression] = STATE(2770), - [sym_parameter_pack_expansion] = STATE(2770), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(2770), - [sym_qualified_type_identifier] = STATE(8190), - [sym_user_defined_literal] = STATE(2770), - [sym_identifier] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), + [1730] = { + [sym__expression] = STATE(5188), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2108), - [anon_sym_not] = ACTIONS(2152), - [anon_sym_compl] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(2158), - [anon_sym___alignof__] = ACTIONS(2112), - [anon_sym___alignof] = ACTIONS(2112), - [anon_sym__alignof] = ACTIONS(2112), - [anon_sym_alignof] = ACTIONS(2112), - [anon_sym__Alignof] = ACTIONS(2112), - [anon_sym_offsetof] = ACTIONS(2114), - [anon_sym__Generic] = ACTIONS(2116), - [anon_sym_asm] = ACTIONS(2118), - [anon_sym___asm__] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2162), - [anon_sym_u_SQUOTE] = ACTIONS(2162), - [anon_sym_U_SQUOTE] = ACTIONS(2162), - [anon_sym_u8_SQUOTE] = ACTIONS(2162), - [anon_sym_SQUOTE] = ACTIONS(2162), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [anon_sym_NULL] = ACTIONS(2128), - [anon_sym_nullptr] = ACTIONS(2128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2166), - [anon_sym_R_DQUOTE] = ACTIONS(2168), - [anon_sym_LR_DQUOTE] = ACTIONS(2168), - [anon_sym_uR_DQUOTE] = ACTIONS(2168), - [anon_sym_UR_DQUOTE] = ACTIONS(2168), - [anon_sym_u8R_DQUOTE] = ACTIONS(2168), - [anon_sym_co_await] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_requires] = ACTIONS(2140), - [sym_this] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1861] = { - [sym__expression] = STATE(4864), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1731] = { + [sym__expression] = STATE(5189), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -314666,8 +302410,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -314698,7 +302442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -314711,65 +302455,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1862] = { - [sym__expression] = STATE(5188), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1732] = { + [sym__expression] = STATE(5143), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -314795,63 +302539,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1863] = { - [sym__expression] = STATE(4706), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1733] = { + [sym__expression] = STATE(5262), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -314860,8 +302604,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -314892,7 +302636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -314905,65 +302649,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1864] = { - [sym__expression] = STATE(4243), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1734] = { + [sym__expression] = STATE(5033), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -314989,78 +302733,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1865] = { - [sym__expression] = STATE(4708), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), + [1735] = { + [sym__expression] = STATE(3229), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), + }, + [1736] = { + [sym__expression] = STATE(5030), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -315086,78 +302927,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(135), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(153), - [anon_sym_new] = ACTIONS(155), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1866] = { - [sym__expression] = STATE(5177), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1737] = { + [sym__expression] = STATE(5055), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), + }, + [1738] = { + [sym__expression] = STATE(5045), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -315183,175 +303121,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1867] = { - [sym__expression] = STATE(3939), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [1739] = { + [sym__expression] = STATE(5025), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1868] = { - [sym__expression] = STATE(5178), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1740] = { + [sym__expression] = STATE(5024), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -315377,78 +303315,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1869] = { - [sym__expression] = STATE(5180), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1741] = { + [sym__expression] = STATE(5023), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -315474,160 +303412,645 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1870] = { - [sym__expression] = STATE(3515), - [sym__expression_not_binary] = STATE(3753), - [sym_conditional_expression] = STATE(3753), - [sym_assignment_expression] = STATE(3753), - [sym_pointer_expression] = STATE(3753), - [sym_unary_expression] = STATE(3753), - [sym_binary_expression] = STATE(3753), - [sym_update_expression] = STATE(3753), - [sym_cast_expression] = STATE(3753), - [sym_sizeof_expression] = STATE(3753), - [sym_alignof_expression] = STATE(3753), - [sym_offsetof_expression] = STATE(3753), - [sym_generic_expression] = STATE(3753), - [sym_subscript_expression] = STATE(3753), - [sym_call_expression] = STATE(3753), - [sym_gnu_asm_expression] = STATE(3753), - [sym_field_expression] = STATE(3753), - [sym_compound_literal_expression] = STATE(3753), - [sym_parenthesized_expression] = STATE(3753), - [sym_char_literal] = STATE(3676), - [sym_concatenated_string] = STATE(3676), - [sym_string_literal] = STATE(2405), - [sym_null] = STATE(3753), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8255), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3753), - [sym_raw_string_literal] = STATE(2405), - [sym_co_await_expression] = STATE(3753), - [sym_new_expression] = STATE(3753), - [sym_delete_expression] = STATE(3753), - [sym_requires_clause] = STATE(3753), - [sym_requires_expression] = STATE(3753), - [sym_lambda_expression] = STATE(3753), - [sym_lambda_capture_specifier] = STATE(6351), - [sym_fold_expression] = STATE(3753), - [sym_parameter_pack_expansion] = STATE(3753), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3753), - [sym_qualified_type_identifier] = STATE(8255), - [sym_user_defined_literal] = STATE(3753), - [sym_identifier] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(4626), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), + [1742] = { + [sym__expression] = STATE(5022), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [1743] = { + [sym__expression] = STATE(3509), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), [anon_sym_STAR] = ACTIONS(2006), [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2228), - [anon_sym_not] = ACTIONS(2220), - [anon_sym_compl] = ACTIONS(2220), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(2230), - [anon_sym___alignof__] = ACTIONS(2232), - [anon_sym___alignof] = ACTIONS(2232), - [anon_sym__alignof] = ACTIONS(2232), - [anon_sym_alignof] = ACTIONS(2232), - [anon_sym__Alignof] = ACTIONS(2232), - [anon_sym_offsetof] = ACTIONS(2234), - [anon_sym__Generic] = ACTIONS(2236), - [anon_sym_asm] = ACTIONS(2238), - [anon_sym___asm__] = ACTIONS(2238), - [sym_number_literal] = ACTIONS(2240), - [anon_sym_L_SQUOTE] = ACTIONS(2242), - [anon_sym_u_SQUOTE] = ACTIONS(2242), - [anon_sym_U_SQUOTE] = ACTIONS(2242), - [anon_sym_u8_SQUOTE] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_L_DQUOTE] = ACTIONS(2244), - [anon_sym_u_DQUOTE] = ACTIONS(2244), - [anon_sym_U_DQUOTE] = ACTIONS(2244), - [anon_sym_u8_DQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [anon_sym_NULL] = ACTIONS(2248), - [anon_sym_nullptr] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2250), - [anon_sym_R_DQUOTE] = ACTIONS(2252), - [anon_sym_LR_DQUOTE] = ACTIONS(2252), - [anon_sym_uR_DQUOTE] = ACTIONS(2252), - [anon_sym_UR_DQUOTE] = ACTIONS(2252), - [anon_sym_u8R_DQUOTE] = ACTIONS(2252), - [anon_sym_co_await] = ACTIONS(2254), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_requires] = ACTIONS(2258), - [sym_this] = ACTIONS(2246), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1871] = { - [sym__expression] = STATE(5074), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1744] = { + [sym__expression] = STATE(3509), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(4973), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1745] = { + [sym__expression] = STATE(3549), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1746] = { + [sym__expression] = STATE(5018), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [1747] = { + [sym__expression] = STATE(5015), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [1748] = { + [sym__expression] = STATE(5081), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -315636,8 +304059,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -315668,7 +304091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -315681,162 +304104,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1872] = { - [sym__expression] = STATE(3939), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(4956), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), + [1749] = { + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1873] = { - [sym__expression] = STATE(5182), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1750] = { + [sym__expression] = STATE(5013), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -315862,63 +304285,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1874] = { - [sym__expression] = STATE(5128), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1751] = { + [sym__expression] = STATE(3491), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), + }, + [1752] = { + [sym__expression] = STATE(5224), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -315927,8 +304447,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(4975), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -315959,7 +304479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -315972,162 +304492,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1875] = { - [sym__expression] = STATE(3208), - [sym__expression_not_binary] = STATE(3365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3365), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_alignof_expression] = STATE(3365), - [sym_offsetof_expression] = STATE(3365), - [sym_generic_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3365), - [sym_call_expression] = STATE(3365), - [sym_gnu_asm_expression] = STATE(3365), - [sym_field_expression] = STATE(3365), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3365), - [sym_char_literal] = STATE(3242), - [sym_concatenated_string] = STATE(3242), - [sym_string_literal] = STATE(2206), - [sym_null] = STATE(3365), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8252), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2206), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(6349), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6195), - [sym_qualified_identifier] = STATE(3365), - [sym_qualified_type_identifier] = STATE(8252), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(4513), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(4624), - [anon_sym_AMP] = ACTIONS(4624), - [anon_sym_COLON_COLON] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_not] = ACTIONS(2174), - [anon_sym_compl] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(4515), - [anon_sym_PLUS_PLUS] = ACTIONS(4515), - [anon_sym_sizeof] = ACTIONS(2184), - [anon_sym___alignof__] = ACTIONS(2186), - [anon_sym___alignof] = ACTIONS(2186), - [anon_sym__alignof] = ACTIONS(2186), - [anon_sym_alignof] = ACTIONS(2186), - [anon_sym__Alignof] = ACTIONS(2186), - [anon_sym_offsetof] = ACTIONS(2188), - [anon_sym__Generic] = ACTIONS(2190), - [anon_sym_asm] = ACTIONS(2192), - [anon_sym___asm__] = ACTIONS(2192), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_L_SQUOTE] = ACTIONS(2196), - [anon_sym_u_SQUOTE] = ACTIONS(2196), - [anon_sym_U_SQUOTE] = ACTIONS(2196), - [anon_sym_u8_SQUOTE] = ACTIONS(2196), - [anon_sym_SQUOTE] = ACTIONS(2196), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [anon_sym_NULL] = ACTIONS(2202), - [anon_sym_nullptr] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [anon_sym_co_await] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_requires] = ACTIONS(2212), - [sym_this] = ACTIONS(2200), - }, - [1876] = { - [sym__expression] = STATE(5184), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(4130), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(4130), - [sym_call_expression] = STATE(4130), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(4130), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(4130), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(4130), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(4130), - [sym_identifier] = ACTIONS(3908), - [anon_sym_LPAREN2] = ACTIONS(4593), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_AMP] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(4511), - [anon_sym_PLUS_PLUS] = ACTIONS(4511), - [anon_sym_sizeof] = ACTIONS(3916), + [1753] = { + [sym__expression] = STATE(4990), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(4977), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), [anon_sym___alignof__] = ACTIONS(99), [anon_sym___alignof] = ACTIONS(99), [anon_sym__alignof] = ACTIONS(99), @@ -316153,63 +304576,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(3918), + [anon_sym_delete] = ACTIONS(3900), [anon_sym_R_DQUOTE] = ACTIONS(151), [anon_sym_LR_DQUOTE] = ACTIONS(151), [anon_sym_uR_DQUOTE] = ACTIONS(151), [anon_sym_UR_DQUOTE] = ACTIONS(151), [anon_sym_u8R_DQUOTE] = ACTIONS(151), - [anon_sym_co_await] = ACTIONS(3920), - [anon_sym_new] = ACTIONS(3906), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1877] = { - [sym__expression] = STATE(4229), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1754] = { + [sym__expression] = STATE(5108), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -316218,8 +304641,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -316250,7 +304673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -316263,50 +304686,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1878] = { - [sym__expression] = STATE(5241), - [sym__expression_not_binary] = STATE(4258), - [sym_conditional_expression] = STATE(4258), - [sym_assignment_expression] = STATE(4258), - [sym_pointer_expression] = STATE(3606), - [sym_unary_expression] = STATE(4258), - [sym_binary_expression] = STATE(4258), - [sym_update_expression] = STATE(4258), - [sym_cast_expression] = STATE(4258), - [sym_sizeof_expression] = STATE(4258), - [sym_alignof_expression] = STATE(4258), - [sym_offsetof_expression] = STATE(4258), - [sym_generic_expression] = STATE(4258), - [sym_subscript_expression] = STATE(3606), - [sym_call_expression] = STATE(3606), - [sym_gnu_asm_expression] = STATE(4258), - [sym_field_expression] = STATE(3606), - [sym_compound_literal_expression] = STATE(4258), - [sym_parenthesized_expression] = STATE(3606), - [sym_char_literal] = STATE(4677), - [sym_concatenated_string] = STATE(4677), - [sym_string_literal] = STATE(3396), - [sym_null] = STATE(4258), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8148), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4258), - [sym_raw_string_literal] = STATE(3396), - [sym_co_await_expression] = STATE(4258), - [sym_new_expression] = STATE(4258), - [sym_delete_expression] = STATE(4258), - [sym_requires_clause] = STATE(4258), - [sym_requires_expression] = STATE(4258), - [sym_lambda_expression] = STATE(4258), - [sym_lambda_capture_specifier] = STATE(6417), - [sym_fold_expression] = STATE(4258), - [sym_parameter_pack_expansion] = STATE(4258), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6150), - [sym_qualified_identifier] = STATE(3606), - [sym_qualified_type_identifier] = STATE(8148), - [sym_user_defined_literal] = STATE(3606), - [sym_identifier] = ACTIONS(3310), + [1755] = { + [sym__expression] = STATE(5105), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4156), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4156), + [sym_call_expression] = STATE(4156), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4156), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4156), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4156), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4156), + [sym_identifier] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_TILDE] = ACTIONS(3910), + [anon_sym_DASH] = ACTIONS(3908), + [anon_sym_PLUS] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(3912), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3908), + [anon_sym_compl] = ACTIONS(3908), + [anon_sym_DASH_DASH] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(4471), + [anon_sym_sizeof] = ACTIONS(3914), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3918), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), + }, + [1756] = { + [sym__expression] = STATE(4749), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), [anon_sym_LPAREN2] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -316315,8 +304835,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1418), [anon_sym_AMP] = ACTIONS(1418), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(95), @@ -316347,7 +304867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(115), [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), [anon_sym_delete] = ACTIONS(135), [anon_sym_R_DQUOTE] = ACTIONS(151), @@ -316360,21902 +304880,19839 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(157), [sym_this] = ACTIONS(217), }, - [1879] = { - [sym__expression] = STATE(4094), - [sym__expression_not_binary] = STATE(4219), - [sym_conditional_expression] = STATE(4219), - [sym_assignment_expression] = STATE(4219), - [sym_pointer_expression] = STATE(3885), - [sym_unary_expression] = STATE(4219), - [sym_binary_expression] = STATE(4219), - [sym_update_expression] = STATE(4219), - [sym_cast_expression] = STATE(4219), - [sym_sizeof_expression] = STATE(4219), - [sym_alignof_expression] = STATE(4219), - [sym_offsetof_expression] = STATE(4219), - [sym_generic_expression] = STATE(4219), - [sym_subscript_expression] = STATE(3885), - [sym_call_expression] = STATE(3885), - [sym_gnu_asm_expression] = STATE(4219), - [sym_field_expression] = STATE(3885), - [sym_compound_literal_expression] = STATE(4219), - [sym_parenthesized_expression] = STATE(3885), - [sym_char_literal] = STATE(4127), - [sym_concatenated_string] = STATE(4127), - [sym_string_literal] = STATE(2795), - [sym_null] = STATE(4219), - [sym_decltype] = STATE(9084), - [sym__class_name] = STATE(8122), - [sym_template_type] = STATE(3104), - [sym_template_function] = STATE(4219), - [sym_raw_string_literal] = STATE(2795), - [sym_co_await_expression] = STATE(4219), - [sym_new_expression] = STATE(4219), - [sym_delete_expression] = STATE(4219), - [sym_requires_clause] = STATE(4219), - [sym_requires_expression] = STATE(4219), - [sym_lambda_expression] = STATE(4219), - [sym_lambda_capture_specifier] = STATE(6355), - [sym_fold_expression] = STATE(4219), - [sym_parameter_pack_expansion] = STATE(4219), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6146), - [sym_qualified_identifier] = STATE(3885), - [sym_qualified_type_identifier] = STATE(8122), - [sym_user_defined_literal] = STATE(3885), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_compl] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2022), - [anon_sym___alignof__] = ACTIONS(2024), - [anon_sym___alignof] = ACTIONS(2024), - [anon_sym__alignof] = ACTIONS(2024), - [anon_sym_alignof] = ACTIONS(2024), - [anon_sym__Alignof] = ACTIONS(2024), - [anon_sym_offsetof] = ACTIONS(2026), - [anon_sym__Generic] = ACTIONS(2028), - [anon_sym_asm] = ACTIONS(2030), - [anon_sym___asm__] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2034), - [anon_sym_u_SQUOTE] = ACTIONS(2034), - [anon_sym_U_SQUOTE] = ACTIONS(2034), - [anon_sym_u8_SQUOTE] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [anon_sym_NULL] = ACTIONS(2040), - [anon_sym_nullptr] = ACTIONS(2040), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), + [1757] = { + [sym__expression] = STATE(2733), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(4979), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_delete] = ACTIONS(2044), - [anon_sym_R_DQUOTE] = ACTIONS(2046), - [anon_sym_LR_DQUOTE] = ACTIONS(2046), - [anon_sym_uR_DQUOTE] = ACTIONS(2046), - [anon_sym_UR_DQUOTE] = ACTIONS(2046), - [anon_sym_u8R_DQUOTE] = ACTIONS(2046), - [anon_sym_co_await] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2050), - [anon_sym_requires] = ACTIONS(2052), - [sym_this] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1880] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5798), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7063), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_parameter_list] = STATE(1059), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4911), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6124), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(4958), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [1758] = { + [sym__expression] = STATE(4962), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1881] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5735), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7092), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_parameter_list] = STATE(1064), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4911), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6124), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(4958), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [1759] = { + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1882] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5715), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7103), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_parameter_list] = STATE(1057), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4911), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6124), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(4958), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [1760] = { + [sym__expression] = STATE(5111), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1883] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5661), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7087), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_parameter_list] = STATE(1061), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4911), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6124), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(4958), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [1761] = { + [sym__expression] = STATE(4992), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1884] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5719), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7106), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6760), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_parameter_list] = STATE(1056), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(4911), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6124), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_type_identifier] = STATE(4475), - [sym_operator_name] = STATE(6760), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(4958), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(4962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [1762] = { + [sym__expression] = STATE(4754), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(2094), - }, - [1885] = { - [sym_identifier] = ACTIONS(3172), - [anon_sym_LPAREN2] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_STAR] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3174), - [anon_sym___extension__] = ACTIONS(3172), - [anon_sym_extern] = ACTIONS(3172), - [anon_sym___attribute__] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), - [anon_sym___declspec] = ACTIONS(3172), - [anon_sym_signed] = ACTIONS(3172), - [anon_sym_unsigned] = ACTIONS(3172), - [anon_sym_long] = ACTIONS(3172), - [anon_sym_short] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_register] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym___inline] = ACTIONS(3172), - [anon_sym___inline__] = ACTIONS(3172), - [anon_sym___forceinline] = ACTIONS(3172), - [anon_sym_thread_local] = ACTIONS(3172), - [anon_sym___thread] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_constexpr] = ACTIONS(3172), - [anon_sym_volatile] = ACTIONS(3172), - [anon_sym_restrict] = ACTIONS(3172), - [anon_sym___restrict__] = ACTIONS(3172), - [anon_sym__Atomic] = ACTIONS(3172), - [anon_sym__Noreturn] = ACTIONS(3172), - [anon_sym_noreturn] = ACTIONS(3172), - [anon_sym_mutable] = ACTIONS(3172), - [anon_sym_constinit] = ACTIONS(3172), - [anon_sym_consteval] = ACTIONS(3172), - [sym_primitive_type] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_struct] = ACTIONS(3172), - [anon_sym_union] = ACTIONS(3172), - [anon_sym_not] = ACTIONS(3172), - [anon_sym_compl] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_sizeof] = ACTIONS(3172), - [anon_sym___alignof__] = ACTIONS(3172), - [anon_sym___alignof] = ACTIONS(3172), - [anon_sym__alignof] = ACTIONS(3172), - [anon_sym_alignof] = ACTIONS(3172), - [anon_sym__Alignof] = ACTIONS(3172), - [anon_sym_offsetof] = ACTIONS(3172), - [anon_sym__Generic] = ACTIONS(3172), - [anon_sym_asm] = ACTIONS(3172), - [anon_sym___asm__] = ACTIONS(3172), - [sym_number_literal] = ACTIONS(3174), - [anon_sym_L_SQUOTE] = ACTIONS(3174), - [anon_sym_u_SQUOTE] = ACTIONS(3174), - [anon_sym_U_SQUOTE] = ACTIONS(3174), - [anon_sym_u8_SQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_L_DQUOTE] = ACTIONS(3174), - [anon_sym_u_DQUOTE] = ACTIONS(3174), - [anon_sym_U_DQUOTE] = ACTIONS(3174), - [anon_sym_u8_DQUOTE] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [anon_sym_NULL] = ACTIONS(3172), - [anon_sym_nullptr] = ACTIONS(3172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3172), - [anon_sym_decltype] = ACTIONS(3172), - [anon_sym_virtual] = ACTIONS(3172), - [anon_sym_alignas] = ACTIONS(3172), - [anon_sym_typename] = ACTIONS(3172), - [anon_sym_template] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_R_DQUOTE] = ACTIONS(3174), - [anon_sym_LR_DQUOTE] = ACTIONS(3174), - [anon_sym_uR_DQUOTE] = ACTIONS(3174), - [anon_sym_UR_DQUOTE] = ACTIONS(3174), - [anon_sym_u8R_DQUOTE] = ACTIONS(3174), - [anon_sym_co_await] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_requires] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - }, - [1886] = { - [sym_identifier] = ACTIONS(3318), - [anon_sym_LPAREN2] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3320), - [anon_sym_AMP] = ACTIONS(3320), - [anon_sym___extension__] = ACTIONS(3318), - [anon_sym_extern] = ACTIONS(3318), - [anon_sym___attribute__] = ACTIONS(3318), - [anon_sym_COLON_COLON] = ACTIONS(3320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), - [anon_sym___declspec] = ACTIONS(3318), - [anon_sym_signed] = ACTIONS(3318), - [anon_sym_unsigned] = ACTIONS(3318), - [anon_sym_long] = ACTIONS(3318), - [anon_sym_short] = ACTIONS(3318), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3318), - [anon_sym_register] = ACTIONS(3318), - [anon_sym_inline] = ACTIONS(3318), - [anon_sym___inline] = ACTIONS(3318), - [anon_sym___inline__] = ACTIONS(3318), - [anon_sym___forceinline] = ACTIONS(3318), - [anon_sym_thread_local] = ACTIONS(3318), - [anon_sym___thread] = ACTIONS(3318), - [anon_sym_const] = ACTIONS(3318), - [anon_sym_constexpr] = ACTIONS(3318), - [anon_sym_volatile] = ACTIONS(3318), - [anon_sym_restrict] = ACTIONS(3318), - [anon_sym___restrict__] = ACTIONS(3318), - [anon_sym__Atomic] = ACTIONS(3318), - [anon_sym__Noreturn] = ACTIONS(3318), - [anon_sym_noreturn] = ACTIONS(3318), - [anon_sym_mutable] = ACTIONS(3318), - [anon_sym_constinit] = ACTIONS(3318), - [anon_sym_consteval] = ACTIONS(3318), - [sym_primitive_type] = ACTIONS(3318), - [anon_sym_enum] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3318), - [anon_sym_struct] = ACTIONS(3318), - [anon_sym_union] = ACTIONS(3318), - [anon_sym_not] = ACTIONS(3318), - [anon_sym_compl] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3320), - [anon_sym_sizeof] = ACTIONS(3318), - [anon_sym___alignof__] = ACTIONS(3318), - [anon_sym___alignof] = ACTIONS(3318), - [anon_sym__alignof] = ACTIONS(3318), - [anon_sym_alignof] = ACTIONS(3318), - [anon_sym__Alignof] = ACTIONS(3318), - [anon_sym_offsetof] = ACTIONS(3318), - [anon_sym__Generic] = ACTIONS(3318), - [anon_sym_asm] = ACTIONS(3318), - [anon_sym___asm__] = ACTIONS(3318), - [sym_number_literal] = ACTIONS(3320), - [anon_sym_L_SQUOTE] = ACTIONS(3320), - [anon_sym_u_SQUOTE] = ACTIONS(3320), - [anon_sym_U_SQUOTE] = ACTIONS(3320), - [anon_sym_u8_SQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_L_DQUOTE] = ACTIONS(3320), - [anon_sym_u_DQUOTE] = ACTIONS(3320), - [anon_sym_U_DQUOTE] = ACTIONS(3320), - [anon_sym_u8_DQUOTE] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [sym_true] = ACTIONS(3318), - [sym_false] = ACTIONS(3318), - [anon_sym_NULL] = ACTIONS(3318), - [anon_sym_nullptr] = ACTIONS(3318), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3318), - [anon_sym_decltype] = ACTIONS(3318), - [anon_sym_virtual] = ACTIONS(3318), - [anon_sym_alignas] = ACTIONS(3318), - [anon_sym_typename] = ACTIONS(3318), - [anon_sym_template] = ACTIONS(3318), - [anon_sym_delete] = ACTIONS(3318), - [anon_sym_R_DQUOTE] = ACTIONS(3320), - [anon_sym_LR_DQUOTE] = ACTIONS(3320), - [anon_sym_uR_DQUOTE] = ACTIONS(3320), - [anon_sym_UR_DQUOTE] = ACTIONS(3320), - [anon_sym_u8R_DQUOTE] = ACTIONS(3320), - [anon_sym_co_await] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3318), - [anon_sym_requires] = ACTIONS(3318), - [sym_this] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1887] = { - [sym_identifier] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - [anon_sym___extension__] = ACTIONS(3116), - [anon_sym_extern] = ACTIONS(3116), - [anon_sym___attribute__] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = ACTIONS(3116), - [anon_sym_signed] = ACTIONS(3116), - [anon_sym_unsigned] = ACTIONS(3116), - [anon_sym_long] = ACTIONS(3116), - [anon_sym_short] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_register] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym___inline] = ACTIONS(3116), - [anon_sym___inline__] = ACTIONS(3116), - [anon_sym___forceinline] = ACTIONS(3116), - [anon_sym_thread_local] = ACTIONS(3116), - [anon_sym___thread] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_constexpr] = ACTIONS(3116), - [anon_sym_volatile] = ACTIONS(3116), - [anon_sym_restrict] = ACTIONS(3116), - [anon_sym___restrict__] = ACTIONS(3116), - [anon_sym__Atomic] = ACTIONS(3116), - [anon_sym__Noreturn] = ACTIONS(3116), - [anon_sym_noreturn] = ACTIONS(3116), - [anon_sym_mutable] = ACTIONS(3116), - [anon_sym_constinit] = ACTIONS(3116), - [anon_sym_consteval] = ACTIONS(3116), - [sym_primitive_type] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3116), - [anon_sym_union] = ACTIONS(3116), - [anon_sym_not] = ACTIONS(3116), - [anon_sym_compl] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_sizeof] = ACTIONS(3116), - [anon_sym___alignof__] = ACTIONS(3116), - [anon_sym___alignof] = ACTIONS(3116), - [anon_sym__alignof] = ACTIONS(3116), - [anon_sym_alignof] = ACTIONS(3116), - [anon_sym__Alignof] = ACTIONS(3116), - [anon_sym_offsetof] = ACTIONS(3116), - [anon_sym__Generic] = ACTIONS(3116), - [anon_sym_asm] = ACTIONS(3116), - [anon_sym___asm__] = ACTIONS(3116), - [sym_number_literal] = ACTIONS(3118), - [anon_sym_L_SQUOTE] = ACTIONS(3118), - [anon_sym_u_SQUOTE] = ACTIONS(3118), - [anon_sym_U_SQUOTE] = ACTIONS(3118), - [anon_sym_u8_SQUOTE] = ACTIONS(3118), - [anon_sym_SQUOTE] = ACTIONS(3118), - [anon_sym_L_DQUOTE] = ACTIONS(3118), - [anon_sym_u_DQUOTE] = ACTIONS(3118), - [anon_sym_U_DQUOTE] = ACTIONS(3118), - [anon_sym_u8_DQUOTE] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym_true] = ACTIONS(3116), - [sym_false] = ACTIONS(3116), - [anon_sym_NULL] = ACTIONS(3116), - [anon_sym_nullptr] = ACTIONS(3116), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3116), - [anon_sym_decltype] = ACTIONS(3116), - [anon_sym_virtual] = ACTIONS(3116), - [anon_sym_alignas] = ACTIONS(3116), - [anon_sym_typename] = ACTIONS(3116), - [anon_sym_template] = ACTIONS(3116), - [anon_sym_delete] = ACTIONS(3116), - [anon_sym_R_DQUOTE] = ACTIONS(3118), - [anon_sym_LR_DQUOTE] = ACTIONS(3118), - [anon_sym_uR_DQUOTE] = ACTIONS(3118), - [anon_sym_UR_DQUOTE] = ACTIONS(3118), - [anon_sym_u8R_DQUOTE] = ACTIONS(3118), - [anon_sym_co_await] = ACTIONS(3116), - [anon_sym_new] = ACTIONS(3116), - [anon_sym_requires] = ACTIONS(3116), - [sym_this] = ACTIONS(3116), + [1763] = { + [sym__expression] = STATE(4994), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1888] = { - [sym_identifier] = ACTIONS(4964), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_LPAREN2] = ACTIONS(4966), - [anon_sym_TILDE] = ACTIONS(4966), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4964), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_CARET] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4964), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4964), - [anon_sym_GT_GT] = ACTIONS(4964), - [anon_sym_SEMI] = ACTIONS(4966), - [anon_sym___extension__] = ACTIONS(4964), - [anon_sym_extern] = ACTIONS(4964), - [anon_sym___attribute__] = ACTIONS(4964), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4966), - [anon_sym___declspec] = ACTIONS(4964), - [anon_sym___based] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4964), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_static] = ACTIONS(4964), - [anon_sym_register] = ACTIONS(4964), - [anon_sym_inline] = ACTIONS(4964), - [anon_sym___inline] = ACTIONS(4964), - [anon_sym___inline__] = ACTIONS(4964), - [anon_sym___forceinline] = ACTIONS(4964), - [anon_sym_thread_local] = ACTIONS(4964), - [anon_sym___thread] = ACTIONS(4964), - [anon_sym_const] = ACTIONS(4964), - [anon_sym_constexpr] = ACTIONS(4964), - [anon_sym_volatile] = ACTIONS(4964), - [anon_sym_restrict] = ACTIONS(4964), - [anon_sym___restrict__] = ACTIONS(4964), - [anon_sym__Atomic] = ACTIONS(4964), - [anon_sym__Noreturn] = ACTIONS(4964), - [anon_sym_noreturn] = ACTIONS(4964), - [anon_sym_mutable] = ACTIONS(4964), - [anon_sym_constinit] = ACTIONS(4964), - [anon_sym_consteval] = ACTIONS(4964), - [anon_sym_QMARK] = ACTIONS(4966), - [anon_sym_STAR_EQ] = ACTIONS(4966), - [anon_sym_SLASH_EQ] = ACTIONS(4966), - [anon_sym_PERCENT_EQ] = ACTIONS(4966), - [anon_sym_PLUS_EQ] = ACTIONS(4966), - [anon_sym_DASH_EQ] = ACTIONS(4966), - [anon_sym_LT_LT_EQ] = ACTIONS(4966), - [anon_sym_GT_GT_EQ] = ACTIONS(4966), - [anon_sym_AMP_EQ] = ACTIONS(4966), - [anon_sym_CARET_EQ] = ACTIONS(4966), - [anon_sym_PIPE_EQ] = ACTIONS(4966), - [anon_sym_and_eq] = ACTIONS(4964), - [anon_sym_or_eq] = ACTIONS(4964), - [anon_sym_xor_eq] = ACTIONS(4964), - [anon_sym_LT_EQ_GT] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4964), - [anon_sym_and] = ACTIONS(4964), - [anon_sym_bitor] = ACTIONS(4964), - [anon_sym_xor] = ACTIONS(4964), - [anon_sym_bitand] = ACTIONS(4964), - [anon_sym_not_eq] = ACTIONS(4964), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_DOT_STAR] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4966), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4964), - [anon_sym_decltype] = ACTIONS(4964), - [anon_sym_virtual] = ACTIONS(4964), - [anon_sym_alignas] = ACTIONS(4964), - [anon_sym_template] = ACTIONS(4964), - [anon_sym_operator] = ACTIONS(4964), + [1764] = { + [sym__expression] = STATE(4996), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1889] = { - [sym_template_argument_list] = STATE(1898), - [sym_identifier] = ACTIONS(4968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_LPAREN2] = ACTIONS(4972), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4977), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_SLASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4979), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4982), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4977), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym___extension__] = ACTIONS(4968), - [anon_sym_extern] = ACTIONS(4968), - [anon_sym___attribute__] = ACTIONS(4968), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4975), - [anon_sym___declspec] = ACTIONS(4968), - [anon_sym___based] = ACTIONS(4968), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4977), - [anon_sym_static] = ACTIONS(4968), - [anon_sym_register] = ACTIONS(4968), - [anon_sym_inline] = ACTIONS(4968), - [anon_sym___inline] = ACTIONS(4968), - [anon_sym___inline__] = ACTIONS(4968), - [anon_sym___forceinline] = ACTIONS(4968), - [anon_sym_thread_local] = ACTIONS(4968), - [anon_sym___thread] = ACTIONS(4968), - [anon_sym_const] = ACTIONS(4968), - [anon_sym_constexpr] = ACTIONS(4968), - [anon_sym_volatile] = ACTIONS(4968), - [anon_sym_restrict] = ACTIONS(4968), - [anon_sym___restrict__] = ACTIONS(4968), - [anon_sym__Atomic] = ACTIONS(4968), - [anon_sym__Noreturn] = ACTIONS(4968), - [anon_sym_noreturn] = ACTIONS(4968), - [anon_sym_mutable] = ACTIONS(4968), - [anon_sym_constinit] = ACTIONS(4968), - [anon_sym_consteval] = ACTIONS(4968), - [anon_sym_QMARK] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_LT_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_GT_EQ] = ACTIONS(4970), - [anon_sym_AMP_EQ] = ACTIONS(4970), - [anon_sym_CARET_EQ] = ACTIONS(4970), - [anon_sym_PIPE_EQ] = ACTIONS(4970), - [anon_sym_and_eq] = ACTIONS(4977), - [anon_sym_or_eq] = ACTIONS(4977), - [anon_sym_xor_eq] = ACTIONS(4977), - [anon_sym_LT_EQ_GT] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4977), - [anon_sym_and] = ACTIONS(4977), - [anon_sym_bitor] = ACTIONS(4977), - [anon_sym_xor] = ACTIONS(4977), - [anon_sym_bitand] = ACTIONS(4977), - [anon_sym_not_eq] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_DOT_STAR] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4968), - [anon_sym_decltype] = ACTIONS(4968), - [anon_sym_virtual] = ACTIONS(4968), - [anon_sym_alignas] = ACTIONS(4968), - [anon_sym_template] = ACTIONS(4968), - [anon_sym_operator] = ACTIONS(4968), + [1765] = { + [sym__expression] = STATE(4998), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1890] = { - [sym_template_argument_list] = STATE(1906), - [sym_identifier] = ACTIONS(4968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_COMMA] = ACTIONS(4972), - [anon_sym_RPAREN] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(4972), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4977), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_SLASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4979), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4977), - [anon_sym___extension__] = ACTIONS(4968), - [anon_sym_extern] = ACTIONS(4968), - [anon_sym___attribute__] = ACTIONS(4968), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4975), - [anon_sym___declspec] = ACTIONS(4968), - [anon_sym___based] = ACTIONS(4968), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_static] = ACTIONS(4968), - [anon_sym_register] = ACTIONS(4968), - [anon_sym_inline] = ACTIONS(4968), - [anon_sym___inline] = ACTIONS(4968), - [anon_sym___inline__] = ACTIONS(4968), - [anon_sym___forceinline] = ACTIONS(4968), - [anon_sym_thread_local] = ACTIONS(4968), - [anon_sym___thread] = ACTIONS(4968), - [anon_sym_const] = ACTIONS(4968), - [anon_sym_constexpr] = ACTIONS(4968), - [anon_sym_volatile] = ACTIONS(4968), - [anon_sym_restrict] = ACTIONS(4968), - [anon_sym___restrict__] = ACTIONS(4968), - [anon_sym__Atomic] = ACTIONS(4968), - [anon_sym__Noreturn] = ACTIONS(4968), - [anon_sym_noreturn] = ACTIONS(4968), - [anon_sym_mutable] = ACTIONS(4968), - [anon_sym_constinit] = ACTIONS(4968), - [anon_sym_consteval] = ACTIONS(4968), - [anon_sym_QMARK] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_LT_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_GT_EQ] = ACTIONS(4970), - [anon_sym_AMP_EQ] = ACTIONS(4970), - [anon_sym_CARET_EQ] = ACTIONS(4970), - [anon_sym_PIPE_EQ] = ACTIONS(4970), - [anon_sym_and_eq] = ACTIONS(4977), - [anon_sym_or_eq] = ACTIONS(4977), - [anon_sym_xor_eq] = ACTIONS(4977), - [anon_sym_LT_EQ_GT] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4977), - [anon_sym_and] = ACTIONS(4977), - [anon_sym_bitor] = ACTIONS(4977), - [anon_sym_xor] = ACTIONS(4977), - [anon_sym_bitand] = ACTIONS(4977), - [anon_sym_not_eq] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_DOT_STAR] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4977), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4968), - [anon_sym_decltype] = ACTIONS(4968), - [anon_sym_virtual] = ACTIONS(4968), - [anon_sym_alignas] = ACTIONS(4968), - [anon_sym_template] = ACTIONS(4968), - [anon_sym_operator] = ACTIONS(4968), - [anon_sym_DASH_GT_STAR] = ACTIONS(4970), + [1766] = { + [sym__expression] = STATE(5000), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1891] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_TILDE] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym___extension__] = ACTIONS(4988), - [anon_sym_extern] = ACTIONS(4988), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4990), - [anon_sym___declspec] = ACTIONS(4988), - [anon_sym___based] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_static] = ACTIONS(4988), - [anon_sym_register] = ACTIONS(4988), - [anon_sym_inline] = ACTIONS(4988), - [anon_sym___inline] = ACTIONS(4988), - [anon_sym___inline__] = ACTIONS(4988), - [anon_sym___forceinline] = ACTIONS(4988), - [anon_sym_thread_local] = ACTIONS(4988), - [anon_sym___thread] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4988), - [anon_sym_volatile] = ACTIONS(4988), - [anon_sym_restrict] = ACTIONS(4988), - [anon_sym___restrict__] = ACTIONS(4988), - [anon_sym__Atomic] = ACTIONS(4988), - [anon_sym__Noreturn] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym_mutable] = ACTIONS(4988), - [anon_sym_constinit] = ACTIONS(4988), - [anon_sym_consteval] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4990), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_and_eq] = ACTIONS(4988), - [anon_sym_or_eq] = ACTIONS(4988), - [anon_sym_xor_eq] = ACTIONS(4988), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4988), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4988), - [anon_sym_not_eq] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_virtual] = ACTIONS(4988), - [anon_sym_alignas] = ACTIONS(4988), - [anon_sym_template] = ACTIONS(4988), - [anon_sym_operator] = ACTIONS(4988), + [1767] = { + [sym__expression] = STATE(5002), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1892] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_TILDE] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym___extension__] = ACTIONS(4992), - [anon_sym_extern] = ACTIONS(4992), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4994), - [anon_sym___declspec] = ACTIONS(4992), - [anon_sym___based] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_static] = ACTIONS(4992), - [anon_sym_register] = ACTIONS(4992), - [anon_sym_inline] = ACTIONS(4992), - [anon_sym___inline] = ACTIONS(4992), - [anon_sym___inline__] = ACTIONS(4992), - [anon_sym___forceinline] = ACTIONS(4992), - [anon_sym_thread_local] = ACTIONS(4992), - [anon_sym___thread] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4992), - [anon_sym_volatile] = ACTIONS(4992), - [anon_sym_restrict] = ACTIONS(4992), - [anon_sym___restrict__] = ACTIONS(4992), - [anon_sym__Atomic] = ACTIONS(4992), - [anon_sym__Noreturn] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym_mutable] = ACTIONS(4992), - [anon_sym_constinit] = ACTIONS(4992), - [anon_sym_consteval] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4994), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_and_eq] = ACTIONS(4992), - [anon_sym_or_eq] = ACTIONS(4992), - [anon_sym_xor_eq] = ACTIONS(4992), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4992), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4992), - [anon_sym_not_eq] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_virtual] = ACTIONS(4992), - [anon_sym_alignas] = ACTIONS(4992), - [anon_sym_template] = ACTIONS(4992), - [anon_sym_operator] = ACTIONS(4992), + [1768] = { + [sym__expression] = STATE(5003), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1893] = { - [sym_template_argument_list] = STATE(1907), - [sym_identifier] = ACTIONS(4968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_LPAREN2] = ACTIONS(4972), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4977), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_SLASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4979), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4982), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4977), - [anon_sym_SEMI] = ACTIONS(4972), - [anon_sym___extension__] = ACTIONS(4968), - [anon_sym_extern] = ACTIONS(4968), - [anon_sym___attribute__] = ACTIONS(4968), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4972), - [anon_sym___declspec] = ACTIONS(4968), - [anon_sym___based] = ACTIONS(4968), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4977), - [anon_sym_static] = ACTIONS(4968), - [anon_sym_register] = ACTIONS(4968), - [anon_sym_inline] = ACTIONS(4968), - [anon_sym___inline] = ACTIONS(4968), - [anon_sym___inline__] = ACTIONS(4968), - [anon_sym___forceinline] = ACTIONS(4968), - [anon_sym_thread_local] = ACTIONS(4968), - [anon_sym___thread] = ACTIONS(4968), - [anon_sym_const] = ACTIONS(4968), - [anon_sym_constexpr] = ACTIONS(4968), - [anon_sym_volatile] = ACTIONS(4968), - [anon_sym_restrict] = ACTIONS(4968), - [anon_sym___restrict__] = ACTIONS(4968), - [anon_sym__Atomic] = ACTIONS(4968), - [anon_sym__Noreturn] = ACTIONS(4968), - [anon_sym_noreturn] = ACTIONS(4968), - [anon_sym_mutable] = ACTIONS(4968), - [anon_sym_constinit] = ACTIONS(4968), - [anon_sym_consteval] = ACTIONS(4968), - [anon_sym_QMARK] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_LT_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_GT_EQ] = ACTIONS(4970), - [anon_sym_AMP_EQ] = ACTIONS(4970), - [anon_sym_CARET_EQ] = ACTIONS(4970), - [anon_sym_PIPE_EQ] = ACTIONS(4970), - [anon_sym_and_eq] = ACTIONS(4977), - [anon_sym_or_eq] = ACTIONS(4977), - [anon_sym_xor_eq] = ACTIONS(4977), - [anon_sym_LT_EQ_GT] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4977), - [anon_sym_and] = ACTIONS(4977), - [anon_sym_bitor] = ACTIONS(4977), - [anon_sym_xor] = ACTIONS(4977), - [anon_sym_bitand] = ACTIONS(4977), - [anon_sym_not_eq] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_DOT_STAR] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4968), - [anon_sym_decltype] = ACTIONS(4968), - [anon_sym_virtual] = ACTIONS(4968), - [anon_sym_alignas] = ACTIONS(4968), - [anon_sym_template] = ACTIONS(4968), - [anon_sym_operator] = ACTIONS(4968), + [1769] = { + [sym__expression] = STATE(4737), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1894] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_TILDE] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4996), - [anon_sym_or_eq] = ACTIONS(4996), - [anon_sym_xor_eq] = ACTIONS(4996), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), + [1770] = { + [sym__expression] = STATE(3175), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1895] = { - [sym_identifier] = ACTIONS(5000), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_RPAREN] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_TILDE] = ACTIONS(5002), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5000), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_CARET] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_EQ_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5002), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_GT_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ] = ACTIONS(5000), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(5000), - [anon_sym_GT_GT] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5002), - [anon_sym___extension__] = ACTIONS(5000), - [anon_sym_extern] = ACTIONS(5000), - [anon_sym___attribute__] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5002), - [anon_sym___declspec] = ACTIONS(5000), - [anon_sym___based] = ACTIONS(5000), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_static] = ACTIONS(5000), - [anon_sym_register] = ACTIONS(5000), - [anon_sym_inline] = ACTIONS(5000), - [anon_sym___inline] = ACTIONS(5000), - [anon_sym___inline__] = ACTIONS(5000), - [anon_sym___forceinline] = ACTIONS(5000), - [anon_sym_thread_local] = ACTIONS(5000), - [anon_sym___thread] = ACTIONS(5000), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5000), - [anon_sym_volatile] = ACTIONS(5000), - [anon_sym_restrict] = ACTIONS(5000), - [anon_sym___restrict__] = ACTIONS(5000), - [anon_sym__Atomic] = ACTIONS(5000), - [anon_sym__Noreturn] = ACTIONS(5000), - [anon_sym_noreturn] = ACTIONS(5000), - [anon_sym_mutable] = ACTIONS(5000), - [anon_sym_constinit] = ACTIONS(5000), - [anon_sym_consteval] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_STAR_EQ] = ACTIONS(5002), - [anon_sym_SLASH_EQ] = ACTIONS(5002), - [anon_sym_PERCENT_EQ] = ACTIONS(5002), - [anon_sym_PLUS_EQ] = ACTIONS(5002), - [anon_sym_DASH_EQ] = ACTIONS(5002), - [anon_sym_LT_LT_EQ] = ACTIONS(5002), - [anon_sym_GT_GT_EQ] = ACTIONS(5002), - [anon_sym_AMP_EQ] = ACTIONS(5002), - [anon_sym_CARET_EQ] = ACTIONS(5002), - [anon_sym_PIPE_EQ] = ACTIONS(5002), - [anon_sym_and_eq] = ACTIONS(5000), - [anon_sym_or_eq] = ACTIONS(5000), - [anon_sym_xor_eq] = ACTIONS(5000), - [anon_sym_LT_EQ_GT] = ACTIONS(5002), - [anon_sym_or] = ACTIONS(5000), - [anon_sym_and] = ACTIONS(5000), - [anon_sym_bitor] = ACTIONS(5000), - [anon_sym_xor] = ACTIONS(5000), - [anon_sym_bitand] = ACTIONS(5000), - [anon_sym_not_eq] = ACTIONS(5000), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_DOT_STAR] = ACTIONS(5002), - [anon_sym_DASH_GT] = ACTIONS(5002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5000), - [anon_sym_decltype] = ACTIONS(5000), - [anon_sym_virtual] = ACTIONS(5000), - [anon_sym_alignas] = ACTIONS(5000), - [anon_sym_template] = ACTIONS(5000), - [anon_sym_operator] = ACTIONS(5000), + [1771] = { + [sym__expression] = STATE(2706), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1896] = { - [sym_identifier] = ACTIONS(5004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_LPAREN2] = ACTIONS(5006), - [anon_sym_TILDE] = ACTIONS(5006), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5004), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5004), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5004), - [anon_sym_CARET] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(5004), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5004), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_LT_LT] = ACTIONS(5004), - [anon_sym_GT_GT] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym___extension__] = ACTIONS(5004), - [anon_sym_extern] = ACTIONS(5004), - [anon_sym___attribute__] = ACTIONS(5004), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5006), - [anon_sym___declspec] = ACTIONS(5004), - [anon_sym___based] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5004), - [anon_sym_EQ] = ACTIONS(5004), - [anon_sym_static] = ACTIONS(5004), - [anon_sym_register] = ACTIONS(5004), - [anon_sym_inline] = ACTIONS(5004), - [anon_sym___inline] = ACTIONS(5004), - [anon_sym___inline__] = ACTIONS(5004), - [anon_sym___forceinline] = ACTIONS(5004), - [anon_sym_thread_local] = ACTIONS(5004), - [anon_sym___thread] = ACTIONS(5004), - [anon_sym_const] = ACTIONS(5004), - [anon_sym_constexpr] = ACTIONS(5004), - [anon_sym_volatile] = ACTIONS(5004), - [anon_sym_restrict] = ACTIONS(5004), - [anon_sym___restrict__] = ACTIONS(5004), - [anon_sym__Atomic] = ACTIONS(5004), - [anon_sym__Noreturn] = ACTIONS(5004), - [anon_sym_noreturn] = ACTIONS(5004), - [anon_sym_mutable] = ACTIONS(5004), - [anon_sym_constinit] = ACTIONS(5004), - [anon_sym_consteval] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(5006), - [anon_sym_STAR_EQ] = ACTIONS(5006), - [anon_sym_SLASH_EQ] = ACTIONS(5006), - [anon_sym_PERCENT_EQ] = ACTIONS(5006), - [anon_sym_PLUS_EQ] = ACTIONS(5006), - [anon_sym_DASH_EQ] = ACTIONS(5006), - [anon_sym_LT_LT_EQ] = ACTIONS(5006), - [anon_sym_GT_GT_EQ] = ACTIONS(5006), - [anon_sym_AMP_EQ] = ACTIONS(5006), - [anon_sym_CARET_EQ] = ACTIONS(5006), - [anon_sym_PIPE_EQ] = ACTIONS(5006), - [anon_sym_and_eq] = ACTIONS(5004), - [anon_sym_or_eq] = ACTIONS(5004), - [anon_sym_xor_eq] = ACTIONS(5004), - [anon_sym_LT_EQ_GT] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5004), - [anon_sym_and] = ACTIONS(5004), - [anon_sym_bitor] = ACTIONS(5004), - [anon_sym_xor] = ACTIONS(5004), - [anon_sym_bitand] = ACTIONS(5004), - [anon_sym_not_eq] = ACTIONS(5004), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_DOT_STAR] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5004), - [anon_sym_decltype] = ACTIONS(5004), - [anon_sym_virtual] = ACTIONS(5004), - [anon_sym_alignas] = ACTIONS(5004), - [anon_sym_template] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), + [1772] = { + [sym__expression] = STATE(3176), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1897] = { - [sym_identifier] = ACTIONS(5008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(5010), - [anon_sym_LPAREN2] = ACTIONS(5010), - [anon_sym_TILDE] = ACTIONS(5010), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5010), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_GT_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ] = ACTIONS(5008), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5008), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym_SEMI] = ACTIONS(5010), - [anon_sym___extension__] = ACTIONS(5008), - [anon_sym_extern] = ACTIONS(5008), - [anon_sym___attribute__] = ACTIONS(5008), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5010), - [anon_sym___declspec] = ACTIONS(5008), - [anon_sym___based] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5008), - [anon_sym_EQ] = ACTIONS(5008), - [anon_sym_static] = ACTIONS(5008), - [anon_sym_register] = ACTIONS(5008), - [anon_sym_inline] = ACTIONS(5008), - [anon_sym___inline] = ACTIONS(5008), - [anon_sym___inline__] = ACTIONS(5008), - [anon_sym___forceinline] = ACTIONS(5008), - [anon_sym_thread_local] = ACTIONS(5008), - [anon_sym___thread] = ACTIONS(5008), - [anon_sym_const] = ACTIONS(5008), - [anon_sym_constexpr] = ACTIONS(5008), - [anon_sym_volatile] = ACTIONS(5008), - [anon_sym_restrict] = ACTIONS(5008), - [anon_sym___restrict__] = ACTIONS(5008), - [anon_sym__Atomic] = ACTIONS(5008), - [anon_sym__Noreturn] = ACTIONS(5008), - [anon_sym_noreturn] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(5010), - [anon_sym_STAR_EQ] = ACTIONS(5010), - [anon_sym_SLASH_EQ] = ACTIONS(5010), - [anon_sym_PERCENT_EQ] = ACTIONS(5010), - [anon_sym_PLUS_EQ] = ACTIONS(5010), - [anon_sym_DASH_EQ] = ACTIONS(5010), - [anon_sym_LT_LT_EQ] = ACTIONS(5010), - [anon_sym_GT_GT_EQ] = ACTIONS(5010), - [anon_sym_AMP_EQ] = ACTIONS(5010), - [anon_sym_CARET_EQ] = ACTIONS(5010), - [anon_sym_PIPE_EQ] = ACTIONS(5010), - [anon_sym_and_eq] = ACTIONS(5008), - [anon_sym_or_eq] = ACTIONS(5008), - [anon_sym_xor_eq] = ACTIONS(5008), - [anon_sym_LT_EQ_GT] = ACTIONS(5010), - [anon_sym_or] = ACTIONS(5008), - [anon_sym_and] = ACTIONS(5008), - [anon_sym_bitor] = ACTIONS(5008), - [anon_sym_xor] = ACTIONS(5008), - [anon_sym_bitand] = ACTIONS(5008), - [anon_sym_not_eq] = ACTIONS(5008), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_DOT_STAR] = ACTIONS(5010), - [anon_sym_DASH_GT] = ACTIONS(5010), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5008), - [anon_sym_decltype] = ACTIONS(5008), - [anon_sym_virtual] = ACTIONS(5008), - [anon_sym_alignas] = ACTIONS(5008), - [anon_sym_template] = ACTIONS(5008), - [anon_sym_operator] = ACTIONS(5008), + [1773] = { + [sym__expression] = STATE(3182), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1898] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_RPAREN] = ACTIONS(5014), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5021), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5014), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5019), - [anon_sym___declspec] = ACTIONS(5012), - [anon_sym___based] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_register] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym___inline] = ACTIONS(5012), - [anon_sym___inline__] = ACTIONS(5012), - [anon_sym___forceinline] = ACTIONS(5012), - [anon_sym_thread_local] = ACTIONS(5012), - [anon_sym___thread] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5012), - [anon_sym_volatile] = ACTIONS(5012), - [anon_sym_restrict] = ACTIONS(5012), - [anon_sym___restrict__] = ACTIONS(5012), - [anon_sym__Atomic] = ACTIONS(5012), - [anon_sym__Noreturn] = ACTIONS(5012), - [anon_sym_noreturn] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_LT_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_GT_EQ] = ACTIONS(5014), - [anon_sym_AMP_EQ] = ACTIONS(5014), - [anon_sym_CARET_EQ] = ACTIONS(5014), - [anon_sym_PIPE_EQ] = ACTIONS(5014), - [anon_sym_and_eq] = ACTIONS(5021), - [anon_sym_or_eq] = ACTIONS(5021), - [anon_sym_xor_eq] = ACTIONS(5021), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_and] = ACTIONS(5021), - [anon_sym_bitor] = ACTIONS(5021), - [anon_sym_xor] = ACTIONS(5021), - [anon_sym_bitand] = ACTIONS(5021), - [anon_sym_not_eq] = ACTIONS(5021), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5014), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), + [1774] = { + [sym__expression] = STATE(3211), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1899] = { - [sym_identifier] = ACTIONS(4964), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_LPAREN2] = ACTIONS(4966), - [anon_sym_TILDE] = ACTIONS(4966), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4964), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_CARET] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4964), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4964), - [anon_sym_GT_GT] = ACTIONS(4964), - [anon_sym___extension__] = ACTIONS(4964), - [anon_sym_extern] = ACTIONS(4964), - [anon_sym___attribute__] = ACTIONS(4964), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4966), - [anon_sym___declspec] = ACTIONS(4964), - [anon_sym___based] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4964), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_static] = ACTIONS(4964), - [anon_sym_register] = ACTIONS(4964), - [anon_sym_inline] = ACTIONS(4964), - [anon_sym___inline] = ACTIONS(4964), - [anon_sym___inline__] = ACTIONS(4964), - [anon_sym___forceinline] = ACTIONS(4964), - [anon_sym_thread_local] = ACTIONS(4964), - [anon_sym___thread] = ACTIONS(4964), - [anon_sym_const] = ACTIONS(4964), - [anon_sym_constexpr] = ACTIONS(4964), - [anon_sym_volatile] = ACTIONS(4964), - [anon_sym_restrict] = ACTIONS(4964), - [anon_sym___restrict__] = ACTIONS(4964), - [anon_sym__Atomic] = ACTIONS(4964), - [anon_sym__Noreturn] = ACTIONS(4964), - [anon_sym_noreturn] = ACTIONS(4964), - [anon_sym_mutable] = ACTIONS(4964), - [anon_sym_constinit] = ACTIONS(4964), - [anon_sym_consteval] = ACTIONS(4964), - [anon_sym_QMARK] = ACTIONS(4966), - [anon_sym_STAR_EQ] = ACTIONS(4966), - [anon_sym_SLASH_EQ] = ACTIONS(4966), - [anon_sym_PERCENT_EQ] = ACTIONS(4966), - [anon_sym_PLUS_EQ] = ACTIONS(4966), - [anon_sym_DASH_EQ] = ACTIONS(4966), - [anon_sym_LT_LT_EQ] = ACTIONS(4966), - [anon_sym_GT_GT_EQ] = ACTIONS(4966), - [anon_sym_AMP_EQ] = ACTIONS(4966), - [anon_sym_CARET_EQ] = ACTIONS(4966), - [anon_sym_PIPE_EQ] = ACTIONS(4966), - [anon_sym_and_eq] = ACTIONS(4964), - [anon_sym_or_eq] = ACTIONS(4964), - [anon_sym_xor_eq] = ACTIONS(4964), - [anon_sym_LT_EQ_GT] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4964), - [anon_sym_and] = ACTIONS(4964), - [anon_sym_bitor] = ACTIONS(4964), - [anon_sym_xor] = ACTIONS(4964), - [anon_sym_bitand] = ACTIONS(4964), - [anon_sym_not_eq] = ACTIONS(4964), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_DOT_STAR] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4964), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4964), - [anon_sym_decltype] = ACTIONS(4964), - [anon_sym_virtual] = ACTIONS(4964), - [anon_sym_alignas] = ACTIONS(4964), - [anon_sym_template] = ACTIONS(4964), - [anon_sym_operator] = ACTIONS(4964), - [anon_sym_DASH_GT_STAR] = ACTIONS(4966), + [1775] = { + [sym__expression] = STATE(3185), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1900] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_TILDE] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4996), - [anon_sym_or_eq] = ACTIONS(4996), - [anon_sym_xor_eq] = ACTIONS(4996), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_DASH_GT_STAR] = ACTIONS(4998), + [1776] = { + [sym__expression] = STATE(3187), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1901] = { - [sym_identifier] = ACTIONS(5000), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_RPAREN] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_TILDE] = ACTIONS(5002), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5000), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_CARET] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_EQ_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5002), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_GT_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ] = ACTIONS(5000), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(5000), - [anon_sym_GT_GT] = ACTIONS(5000), - [anon_sym___extension__] = ACTIONS(5000), - [anon_sym_extern] = ACTIONS(5000), - [anon_sym___attribute__] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5002), - [anon_sym___declspec] = ACTIONS(5000), - [anon_sym___based] = ACTIONS(5000), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_static] = ACTIONS(5000), - [anon_sym_register] = ACTIONS(5000), - [anon_sym_inline] = ACTIONS(5000), - [anon_sym___inline] = ACTIONS(5000), - [anon_sym___inline__] = ACTIONS(5000), - [anon_sym___forceinline] = ACTIONS(5000), - [anon_sym_thread_local] = ACTIONS(5000), - [anon_sym___thread] = ACTIONS(5000), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5000), - [anon_sym_volatile] = ACTIONS(5000), - [anon_sym_restrict] = ACTIONS(5000), - [anon_sym___restrict__] = ACTIONS(5000), - [anon_sym__Atomic] = ACTIONS(5000), - [anon_sym__Noreturn] = ACTIONS(5000), - [anon_sym_noreturn] = ACTIONS(5000), - [anon_sym_mutable] = ACTIONS(5000), - [anon_sym_constinit] = ACTIONS(5000), - [anon_sym_consteval] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_STAR_EQ] = ACTIONS(5002), - [anon_sym_SLASH_EQ] = ACTIONS(5002), - [anon_sym_PERCENT_EQ] = ACTIONS(5002), - [anon_sym_PLUS_EQ] = ACTIONS(5002), - [anon_sym_DASH_EQ] = ACTIONS(5002), - [anon_sym_LT_LT_EQ] = ACTIONS(5002), - [anon_sym_GT_GT_EQ] = ACTIONS(5002), - [anon_sym_AMP_EQ] = ACTIONS(5002), - [anon_sym_CARET_EQ] = ACTIONS(5002), - [anon_sym_PIPE_EQ] = ACTIONS(5002), - [anon_sym_and_eq] = ACTIONS(5000), - [anon_sym_or_eq] = ACTIONS(5000), - [anon_sym_xor_eq] = ACTIONS(5000), - [anon_sym_LT_EQ_GT] = ACTIONS(5002), - [anon_sym_or] = ACTIONS(5000), - [anon_sym_and] = ACTIONS(5000), - [anon_sym_bitor] = ACTIONS(5000), - [anon_sym_xor] = ACTIONS(5000), - [anon_sym_bitand] = ACTIONS(5000), - [anon_sym_not_eq] = ACTIONS(5000), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_DOT_STAR] = ACTIONS(5002), - [anon_sym_DASH_GT] = ACTIONS(5000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5000), - [anon_sym_decltype] = ACTIONS(5000), - [anon_sym_virtual] = ACTIONS(5000), - [anon_sym_alignas] = ACTIONS(5000), - [anon_sym_template] = ACTIONS(5000), - [anon_sym_operator] = ACTIONS(5000), - [anon_sym_DASH_GT_STAR] = ACTIONS(5002), + [1777] = { + [sym__expression] = STATE(3189), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1902] = { - [sym_identifier] = ACTIONS(5004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_LPAREN2] = ACTIONS(5006), - [anon_sym_TILDE] = ACTIONS(5006), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5004), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5004), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5004), - [anon_sym_CARET] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(5004), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5004), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_LT_LT] = ACTIONS(5004), - [anon_sym_GT_GT] = ACTIONS(5004), - [anon_sym___extension__] = ACTIONS(5004), - [anon_sym_extern] = ACTIONS(5004), - [anon_sym___attribute__] = ACTIONS(5004), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5006), - [anon_sym___declspec] = ACTIONS(5004), - [anon_sym___based] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5004), - [anon_sym_EQ] = ACTIONS(5004), - [anon_sym_static] = ACTIONS(5004), - [anon_sym_register] = ACTIONS(5004), - [anon_sym_inline] = ACTIONS(5004), - [anon_sym___inline] = ACTIONS(5004), - [anon_sym___inline__] = ACTIONS(5004), - [anon_sym___forceinline] = ACTIONS(5004), - [anon_sym_thread_local] = ACTIONS(5004), - [anon_sym___thread] = ACTIONS(5004), - [anon_sym_const] = ACTIONS(5004), - [anon_sym_constexpr] = ACTIONS(5004), - [anon_sym_volatile] = ACTIONS(5004), - [anon_sym_restrict] = ACTIONS(5004), - [anon_sym___restrict__] = ACTIONS(5004), - [anon_sym__Atomic] = ACTIONS(5004), - [anon_sym__Noreturn] = ACTIONS(5004), - [anon_sym_noreturn] = ACTIONS(5004), - [anon_sym_mutable] = ACTIONS(5004), - [anon_sym_constinit] = ACTIONS(5004), - [anon_sym_consteval] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(5006), - [anon_sym_STAR_EQ] = ACTIONS(5006), - [anon_sym_SLASH_EQ] = ACTIONS(5006), - [anon_sym_PERCENT_EQ] = ACTIONS(5006), - [anon_sym_PLUS_EQ] = ACTIONS(5006), - [anon_sym_DASH_EQ] = ACTIONS(5006), - [anon_sym_LT_LT_EQ] = ACTIONS(5006), - [anon_sym_GT_GT_EQ] = ACTIONS(5006), - [anon_sym_AMP_EQ] = ACTIONS(5006), - [anon_sym_CARET_EQ] = ACTIONS(5006), - [anon_sym_PIPE_EQ] = ACTIONS(5006), - [anon_sym_and_eq] = ACTIONS(5004), - [anon_sym_or_eq] = ACTIONS(5004), - [anon_sym_xor_eq] = ACTIONS(5004), - [anon_sym_LT_EQ_GT] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5004), - [anon_sym_and] = ACTIONS(5004), - [anon_sym_bitor] = ACTIONS(5004), - [anon_sym_xor] = ACTIONS(5004), - [anon_sym_bitand] = ACTIONS(5004), - [anon_sym_not_eq] = ACTIONS(5004), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_DOT_STAR] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5004), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5004), - [anon_sym_decltype] = ACTIONS(5004), - [anon_sym_virtual] = ACTIONS(5004), - [anon_sym_alignas] = ACTIONS(5004), - [anon_sym_template] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), - [anon_sym_DASH_GT_STAR] = ACTIONS(5006), + [1778] = { + [sym__expression] = STATE(3191), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1903] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(2220), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_RPAREN] = ACTIONS(4141), - [anon_sym_LPAREN2] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4209), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym___extension__] = ACTIONS(4145), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5026), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(5028), - [anon_sym_unsigned] = ACTIONS(5028), - [anon_sym_long] = ACTIONS(5028), - [anon_sym_short] = ACTIONS(5028), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4145), - [anon_sym_volatile] = ACTIONS(4145), - [anon_sym_restrict] = ACTIONS(4145), - [anon_sym___restrict__] = ACTIONS(4145), - [anon_sym__Atomic] = ACTIONS(4145), - [anon_sym__Noreturn] = ACTIONS(4145), - [anon_sym_noreturn] = ACTIONS(4145), - [anon_sym_mutable] = ACTIONS(4145), - [anon_sym_constinit] = ACTIONS(4145), - [anon_sym_consteval] = ACTIONS(4145), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(5030), - [anon_sym_or_eq] = ACTIONS(5030), - [anon_sym_xor_eq] = ACTIONS(5030), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4147), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4145), - [anon_sym_decltype] = ACTIONS(4145), - [anon_sym_R_DQUOTE] = ACTIONS(4216), - [anon_sym_LR_DQUOTE] = ACTIONS(4216), - [anon_sym_uR_DQUOTE] = ACTIONS(4216), - [anon_sym_UR_DQUOTE] = ACTIONS(4216), - [anon_sym_u8R_DQUOTE] = ACTIONS(4216), - [anon_sym_DASH_GT_STAR] = ACTIONS(4139), + [1779] = { + [sym__expression] = STATE(3193), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1904] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_TILDE] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym___extension__] = ACTIONS(4988), - [anon_sym_extern] = ACTIONS(4988), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4990), - [anon_sym___declspec] = ACTIONS(4988), - [anon_sym___based] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_static] = ACTIONS(4988), - [anon_sym_register] = ACTIONS(4988), - [anon_sym_inline] = ACTIONS(4988), - [anon_sym___inline] = ACTIONS(4988), - [anon_sym___inline__] = ACTIONS(4988), - [anon_sym___forceinline] = ACTIONS(4988), - [anon_sym_thread_local] = ACTIONS(4988), - [anon_sym___thread] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4988), - [anon_sym_volatile] = ACTIONS(4988), - [anon_sym_restrict] = ACTIONS(4988), - [anon_sym___restrict__] = ACTIONS(4988), - [anon_sym__Atomic] = ACTIONS(4988), - [anon_sym__Noreturn] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym_mutable] = ACTIONS(4988), - [anon_sym_constinit] = ACTIONS(4988), - [anon_sym_consteval] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4990), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_and_eq] = ACTIONS(4988), - [anon_sym_or_eq] = ACTIONS(4988), - [anon_sym_xor_eq] = ACTIONS(4988), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4988), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4988), - [anon_sym_not_eq] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_virtual] = ACTIONS(4988), - [anon_sym_alignas] = ACTIONS(4988), - [anon_sym_template] = ACTIONS(4988), - [anon_sym_operator] = ACTIONS(4988), - [anon_sym_DASH_GT_STAR] = ACTIONS(4990), + [1780] = { + [sym__expression] = STATE(3409), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1905] = { - [sym_template_argument_list] = STATE(1910), - [sym_identifier] = ACTIONS(4968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_COMMA] = ACTIONS(4972), - [anon_sym_RPAREN] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(4972), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4977), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_SLASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4979), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4982), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4977), - [anon_sym___extension__] = ACTIONS(4968), - [anon_sym_extern] = ACTIONS(4968), - [anon_sym___attribute__] = ACTIONS(4968), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4975), - [anon_sym___declspec] = ACTIONS(4968), - [anon_sym___based] = ACTIONS(4968), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_static] = ACTIONS(4968), - [anon_sym_register] = ACTIONS(4968), - [anon_sym_inline] = ACTIONS(4968), - [anon_sym___inline] = ACTIONS(4968), - [anon_sym___inline__] = ACTIONS(4968), - [anon_sym___forceinline] = ACTIONS(4968), - [anon_sym_thread_local] = ACTIONS(4968), - [anon_sym___thread] = ACTIONS(4968), - [anon_sym_const] = ACTIONS(4968), - [anon_sym_constexpr] = ACTIONS(4968), - [anon_sym_volatile] = ACTIONS(4968), - [anon_sym_restrict] = ACTIONS(4968), - [anon_sym___restrict__] = ACTIONS(4968), - [anon_sym__Atomic] = ACTIONS(4968), - [anon_sym__Noreturn] = ACTIONS(4968), - [anon_sym_noreturn] = ACTIONS(4968), - [anon_sym_mutable] = ACTIONS(4968), - [anon_sym_constinit] = ACTIONS(4968), - [anon_sym_consteval] = ACTIONS(4968), - [anon_sym_QMARK] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_LT_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_GT_EQ] = ACTIONS(4970), - [anon_sym_AMP_EQ] = ACTIONS(4970), - [anon_sym_CARET_EQ] = ACTIONS(4970), - [anon_sym_PIPE_EQ] = ACTIONS(4970), - [anon_sym_and_eq] = ACTIONS(4977), - [anon_sym_or_eq] = ACTIONS(4977), - [anon_sym_xor_eq] = ACTIONS(4977), - [anon_sym_LT_EQ_GT] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4977), - [anon_sym_and] = ACTIONS(4977), - [anon_sym_bitor] = ACTIONS(4977), - [anon_sym_xor] = ACTIONS(4977), - [anon_sym_bitand] = ACTIONS(4977), - [anon_sym_not_eq] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_DOT_STAR] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4968), - [anon_sym_decltype] = ACTIONS(4968), - [anon_sym_virtual] = ACTIONS(4968), - [anon_sym_alignas] = ACTIONS(4968), - [anon_sym_template] = ACTIONS(4968), - [anon_sym_operator] = ACTIONS(4968), + [1781] = { + [sym__expression] = STATE(4715), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [1906] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), - [anon_sym_COMMA] = ACTIONS(5016), - [anon_sym_RPAREN] = ACTIONS(5016), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5021), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5019), - [anon_sym___declspec] = ACTIONS(5012), - [anon_sym___based] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_register] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym___inline] = ACTIONS(5012), - [anon_sym___inline__] = ACTIONS(5012), - [anon_sym___forceinline] = ACTIONS(5012), - [anon_sym_thread_local] = ACTIONS(5012), - [anon_sym___thread] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5012), - [anon_sym_volatile] = ACTIONS(5012), - [anon_sym_restrict] = ACTIONS(5012), - [anon_sym___restrict__] = ACTIONS(5012), - [anon_sym__Atomic] = ACTIONS(5012), - [anon_sym__Noreturn] = ACTIONS(5012), - [anon_sym_noreturn] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_LT_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_GT_EQ] = ACTIONS(5014), - [anon_sym_AMP_EQ] = ACTIONS(5014), - [anon_sym_CARET_EQ] = ACTIONS(5014), - [anon_sym_PIPE_EQ] = ACTIONS(5014), - [anon_sym_and_eq] = ACTIONS(5021), - [anon_sym_or_eq] = ACTIONS(5021), - [anon_sym_xor_eq] = ACTIONS(5021), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_and] = ACTIONS(5021), - [anon_sym_bitor] = ACTIONS(5021), - [anon_sym_xor] = ACTIONS(5021), - [anon_sym_bitand] = ACTIONS(5021), - [anon_sym_not_eq] = ACTIONS(5021), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5021), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - [anon_sym_DASH_GT_STAR] = ACTIONS(5014), + [1782] = { + [sym__expression] = STATE(5010), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1907] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5021), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5016), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5016), - [anon_sym___declspec] = ACTIONS(5012), - [anon_sym___based] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_register] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym___inline] = ACTIONS(5012), - [anon_sym___inline__] = ACTIONS(5012), - [anon_sym___forceinline] = ACTIONS(5012), - [anon_sym_thread_local] = ACTIONS(5012), - [anon_sym___thread] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5012), - [anon_sym_volatile] = ACTIONS(5012), - [anon_sym_restrict] = ACTIONS(5012), - [anon_sym___restrict__] = ACTIONS(5012), - [anon_sym__Atomic] = ACTIONS(5012), - [anon_sym__Noreturn] = ACTIONS(5012), - [anon_sym_noreturn] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_LT_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_GT_EQ] = ACTIONS(5014), - [anon_sym_AMP_EQ] = ACTIONS(5014), - [anon_sym_CARET_EQ] = ACTIONS(5014), - [anon_sym_PIPE_EQ] = ACTIONS(5014), - [anon_sym_and_eq] = ACTIONS(5021), - [anon_sym_or_eq] = ACTIONS(5021), - [anon_sym_xor_eq] = ACTIONS(5021), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_and] = ACTIONS(5021), - [anon_sym_bitor] = ACTIONS(5021), - [anon_sym_xor] = ACTIONS(5021), - [anon_sym_bitand] = ACTIONS(5021), - [anon_sym_not_eq] = ACTIONS(5021), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5014), + [1783] = { + [sym__expression] = STATE(4925), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1908] = { - [sym_identifier] = ACTIONS(5008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(5010), - [anon_sym_LPAREN2] = ACTIONS(5010), - [anon_sym_TILDE] = ACTIONS(5010), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5010), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_GT_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ] = ACTIONS(5008), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5008), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym___extension__] = ACTIONS(5008), - [anon_sym_extern] = ACTIONS(5008), - [anon_sym___attribute__] = ACTIONS(5008), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5010), - [anon_sym___declspec] = ACTIONS(5008), - [anon_sym___based] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5008), - [anon_sym_EQ] = ACTIONS(5008), - [anon_sym_static] = ACTIONS(5008), - [anon_sym_register] = ACTIONS(5008), - [anon_sym_inline] = ACTIONS(5008), - [anon_sym___inline] = ACTIONS(5008), - [anon_sym___inline__] = ACTIONS(5008), - [anon_sym___forceinline] = ACTIONS(5008), - [anon_sym_thread_local] = ACTIONS(5008), - [anon_sym___thread] = ACTIONS(5008), - [anon_sym_const] = ACTIONS(5008), - [anon_sym_constexpr] = ACTIONS(5008), - [anon_sym_volatile] = ACTIONS(5008), - [anon_sym_restrict] = ACTIONS(5008), - [anon_sym___restrict__] = ACTIONS(5008), - [anon_sym__Atomic] = ACTIONS(5008), - [anon_sym__Noreturn] = ACTIONS(5008), - [anon_sym_noreturn] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(5010), - [anon_sym_STAR_EQ] = ACTIONS(5010), - [anon_sym_SLASH_EQ] = ACTIONS(5010), - [anon_sym_PERCENT_EQ] = ACTIONS(5010), - [anon_sym_PLUS_EQ] = ACTIONS(5010), - [anon_sym_DASH_EQ] = ACTIONS(5010), - [anon_sym_LT_LT_EQ] = ACTIONS(5010), - [anon_sym_GT_GT_EQ] = ACTIONS(5010), - [anon_sym_AMP_EQ] = ACTIONS(5010), - [anon_sym_CARET_EQ] = ACTIONS(5010), - [anon_sym_PIPE_EQ] = ACTIONS(5010), - [anon_sym_and_eq] = ACTIONS(5008), - [anon_sym_or_eq] = ACTIONS(5008), - [anon_sym_xor_eq] = ACTIONS(5008), - [anon_sym_LT_EQ_GT] = ACTIONS(5010), - [anon_sym_or] = ACTIONS(5008), - [anon_sym_and] = ACTIONS(5008), - [anon_sym_bitor] = ACTIONS(5008), - [anon_sym_xor] = ACTIONS(5008), - [anon_sym_bitand] = ACTIONS(5008), - [anon_sym_not_eq] = ACTIONS(5008), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_DOT_STAR] = ACTIONS(5010), - [anon_sym_DASH_GT] = ACTIONS(5008), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5008), - [anon_sym_decltype] = ACTIONS(5008), - [anon_sym_virtual] = ACTIONS(5008), - [anon_sym_alignas] = ACTIONS(5008), - [anon_sym_template] = ACTIONS(5008), - [anon_sym_operator] = ACTIONS(5008), - [anon_sym_DASH_GT_STAR] = ACTIONS(5010), + [1784] = { + [sym__expression] = STATE(5004), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1909] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_TILDE] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym___extension__] = ACTIONS(4992), - [anon_sym_extern] = ACTIONS(4992), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4994), - [anon_sym___declspec] = ACTIONS(4992), - [anon_sym___based] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_static] = ACTIONS(4992), - [anon_sym_register] = ACTIONS(4992), - [anon_sym_inline] = ACTIONS(4992), - [anon_sym___inline] = ACTIONS(4992), - [anon_sym___inline__] = ACTIONS(4992), - [anon_sym___forceinline] = ACTIONS(4992), - [anon_sym_thread_local] = ACTIONS(4992), - [anon_sym___thread] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4992), - [anon_sym_volatile] = ACTIONS(4992), - [anon_sym_restrict] = ACTIONS(4992), - [anon_sym___restrict__] = ACTIONS(4992), - [anon_sym__Atomic] = ACTIONS(4992), - [anon_sym__Noreturn] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym_mutable] = ACTIONS(4992), - [anon_sym_constinit] = ACTIONS(4992), - [anon_sym_consteval] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4994), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_and_eq] = ACTIONS(4992), - [anon_sym_or_eq] = ACTIONS(4992), - [anon_sym_xor_eq] = ACTIONS(4992), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4992), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4992), - [anon_sym_not_eq] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_virtual] = ACTIONS(4992), - [anon_sym_alignas] = ACTIONS(4992), - [anon_sym_template] = ACTIONS(4992), - [anon_sym_operator] = ACTIONS(4992), - [anon_sym_DASH_GT_STAR] = ACTIONS(4994), + [1785] = { + [sym__expression] = STATE(4988), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1910] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), - [anon_sym_COMMA] = ACTIONS(5016), - [anon_sym_RPAREN] = ACTIONS(5016), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5021), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5019), - [anon_sym___declspec] = ACTIONS(5012), - [anon_sym___based] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_register] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym___inline] = ACTIONS(5012), - [anon_sym___inline__] = ACTIONS(5012), - [anon_sym___forceinline] = ACTIONS(5012), - [anon_sym_thread_local] = ACTIONS(5012), - [anon_sym___thread] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5012), - [anon_sym_volatile] = ACTIONS(5012), - [anon_sym_restrict] = ACTIONS(5012), - [anon_sym___restrict__] = ACTIONS(5012), - [anon_sym__Atomic] = ACTIONS(5012), - [anon_sym__Noreturn] = ACTIONS(5012), - [anon_sym_noreturn] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_LT_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_GT_EQ] = ACTIONS(5014), - [anon_sym_AMP_EQ] = ACTIONS(5014), - [anon_sym_CARET_EQ] = ACTIONS(5014), - [anon_sym_PIPE_EQ] = ACTIONS(5014), - [anon_sym_and_eq] = ACTIONS(5021), - [anon_sym_or_eq] = ACTIONS(5021), - [anon_sym_xor_eq] = ACTIONS(5021), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_and] = ACTIONS(5021), - [anon_sym_bitor] = ACTIONS(5021), - [anon_sym_xor] = ACTIONS(5021), - [anon_sym_bitand] = ACTIONS(5021), - [anon_sym_not_eq] = ACTIONS(5021), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5014), + [1786] = { + [sym__expression] = STATE(4822), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - }, - [1911] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(2429), - [sym_raw_string_literal] = STATE(2624), - [aux_sym_sized_type_specifier_repeat1] = STATE(2391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_RPAREN] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym___extension__] = ACTIONS(4145), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(5028), - [anon_sym_unsigned] = ACTIONS(5028), - [anon_sym_long] = ACTIONS(5028), - [anon_sym_short] = ACTIONS(5028), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4145), - [anon_sym_volatile] = ACTIONS(4145), - [anon_sym_restrict] = ACTIONS(4145), - [anon_sym___restrict__] = ACTIONS(4145), - [anon_sym__Atomic] = ACTIONS(4145), - [anon_sym__Noreturn] = ACTIONS(4145), - [anon_sym_noreturn] = ACTIONS(4145), - [anon_sym_mutable] = ACTIONS(4145), - [anon_sym_constinit] = ACTIONS(4145), - [anon_sym_consteval] = ACTIONS(4145), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(5030), - [anon_sym_or_eq] = ACTIONS(5030), - [anon_sym_xor_eq] = ACTIONS(5030), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4147), - [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4145), - [anon_sym_decltype] = ACTIONS(4145), - [anon_sym_R_DQUOTE] = ACTIONS(4216), - [anon_sym_LR_DQUOTE] = ACTIONS(4216), - [anon_sym_uR_DQUOTE] = ACTIONS(4216), - [anon_sym_UR_DQUOTE] = ACTIONS(4216), - [anon_sym_u8R_DQUOTE] = ACTIONS(4216), - [anon_sym_DASH_GT_STAR] = ACTIONS(4139), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1912] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym__abstract_declarator] = STATE(7246), - [sym_abstract_parenthesized_declarator] = STATE(6616), - [sym_abstract_pointer_declarator] = STATE(6616), - [sym_abstract_function_declarator] = STATE(6616), - [sym_abstract_array_declarator] = STATE(6616), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_list] = STATE(4159), - [sym_parameter_declaration] = STATE(7870), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7870), - [sym_variadic_parameter_declaration] = STATE(7870), - [sym_abstract_reference_declarator] = STATE(6616), - [sym__function_declarator_seq] = STATE(6625), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), - [anon_sym_RPAREN] = ACTIONS(4405), - [anon_sym_LPAREN2] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_AMP_AMP] = ACTIONS(5041), - [anon_sym_AMP] = ACTIONS(5043), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), + [1787] = { + [sym__expression] = STATE(4823), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1913] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym__abstract_declarator] = STATE(7223), - [sym_abstract_parenthesized_declarator] = STATE(6616), - [sym_abstract_pointer_declarator] = STATE(6616), - [sym_abstract_function_declarator] = STATE(6616), - [sym_abstract_array_declarator] = STATE(6616), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_list] = STATE(4159), - [sym_parameter_declaration] = STATE(7870), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7870), - [sym_variadic_parameter_declaration] = STATE(7870), - [sym_abstract_reference_declarator] = STATE(6616), - [sym__function_declarator_seq] = STATE(6625), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), - [anon_sym_RPAREN] = ACTIONS(4405), - [anon_sym_LPAREN2] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_AMP_AMP] = ACTIONS(5041), - [anon_sym_AMP] = ACTIONS(5043), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), + [1788] = { + [sym__expression] = STATE(4841), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1914] = { - [sym_string_literal] = STATE(3748), - [sym_template_argument_list] = STATE(3572), - [sym_raw_string_literal] = STATE(3748), - [aux_sym_sized_type_specifier_repeat1] = STATE(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4152), - [anon_sym_COMMA] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4149), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4152), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4149), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4147), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym___extension__] = ACTIONS(4145), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_signed] = ACTIONS(5052), - [anon_sym_unsigned] = ACTIONS(5052), - [anon_sym_long] = ACTIONS(5052), - [anon_sym_short] = ACTIONS(5052), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_EQ] = ACTIONS(5054), - [anon_sym_const] = ACTIONS(4137), - [anon_sym_constexpr] = ACTIONS(4145), - [anon_sym_volatile] = ACTIONS(4145), - [anon_sym_restrict] = ACTIONS(4145), - [anon_sym___restrict__] = ACTIONS(4145), - [anon_sym__Atomic] = ACTIONS(4145), - [anon_sym__Noreturn] = ACTIONS(4145), - [anon_sym_noreturn] = ACTIONS(4145), - [anon_sym_mutable] = ACTIONS(4145), - [anon_sym_constinit] = ACTIONS(4145), - [anon_sym_consteval] = ACTIONS(4145), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(5056), - [anon_sym_SLASH_EQ] = ACTIONS(5056), - [anon_sym_PERCENT_EQ] = ACTIONS(5056), - [anon_sym_PLUS_EQ] = ACTIONS(5056), - [anon_sym_DASH_EQ] = ACTIONS(5056), - [anon_sym_LT_LT_EQ] = ACTIONS(5056), - [anon_sym_GT_GT_EQ] = ACTIONS(5054), - [anon_sym_AMP_EQ] = ACTIONS(5056), - [anon_sym_CARET_EQ] = ACTIONS(5056), - [anon_sym_PIPE_EQ] = ACTIONS(5056), - [anon_sym_and_eq] = ACTIONS(5056), - [anon_sym_or_eq] = ACTIONS(5056), - [anon_sym_xor_eq] = ACTIONS(5056), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(5058), - [anon_sym_u_DQUOTE] = ACTIONS(5058), - [anon_sym_U_DQUOTE] = ACTIONS(5058), - [anon_sym_u8_DQUOTE] = ACTIONS(5058), - [anon_sym_DQUOTE] = ACTIONS(5058), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4145), - [anon_sym_decltype] = ACTIONS(4145), - [anon_sym_GT2] = ACTIONS(4152), - [anon_sym_R_DQUOTE] = ACTIONS(5060), - [anon_sym_LR_DQUOTE] = ACTIONS(5060), - [anon_sym_uR_DQUOTE] = ACTIONS(5060), - [anon_sym_UR_DQUOTE] = ACTIONS(5060), - [anon_sym_u8R_DQUOTE] = ACTIONS(5060), - }, - [1915] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_TILDE] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym___extension__] = ACTIONS(4988), - [anon_sym_extern] = ACTIONS(4988), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4990), - [anon_sym___declspec] = ACTIONS(4988), - [anon_sym___based] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_static] = ACTIONS(4988), - [anon_sym_register] = ACTIONS(4988), - [anon_sym_inline] = ACTIONS(4988), - [anon_sym___inline] = ACTIONS(4988), - [anon_sym___inline__] = ACTIONS(4988), - [anon_sym___forceinline] = ACTIONS(4988), - [anon_sym_thread_local] = ACTIONS(4988), - [anon_sym___thread] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4988), - [anon_sym_volatile] = ACTIONS(4988), - [anon_sym_restrict] = ACTIONS(4988), - [anon_sym___restrict__] = ACTIONS(4988), - [anon_sym__Atomic] = ACTIONS(4988), - [anon_sym__Noreturn] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym_mutable] = ACTIONS(4988), - [anon_sym_constinit] = ACTIONS(4988), - [anon_sym_consteval] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4990), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4988), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4988), - [anon_sym_not_eq] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_virtual] = ACTIONS(4988), - [anon_sym_alignas] = ACTIONS(4988), - [anon_sym_template] = ACTIONS(4988), - [anon_sym_operator] = ACTIONS(4988), - [anon_sym_DASH_GT_STAR] = ACTIONS(4990), - }, - [1916] = { - [sym_identifier] = ACTIONS(5008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(5010), - [anon_sym_LPAREN2] = ACTIONS(5010), - [anon_sym_TILDE] = ACTIONS(5010), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5010), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_GT_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ] = ACTIONS(5008), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5008), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym___extension__] = ACTIONS(5008), - [anon_sym_extern] = ACTIONS(5008), - [anon_sym___attribute__] = ACTIONS(5008), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5010), - [anon_sym___declspec] = ACTIONS(5008), - [anon_sym___based] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5008), - [anon_sym_EQ] = ACTIONS(5008), - [anon_sym_static] = ACTIONS(5008), - [anon_sym_register] = ACTIONS(5008), - [anon_sym_inline] = ACTIONS(5008), - [anon_sym___inline] = ACTIONS(5008), - [anon_sym___inline__] = ACTIONS(5008), - [anon_sym___forceinline] = ACTIONS(5008), - [anon_sym_thread_local] = ACTIONS(5008), - [anon_sym___thread] = ACTIONS(5008), - [anon_sym_const] = ACTIONS(5008), - [anon_sym_constexpr] = ACTIONS(5008), - [anon_sym_volatile] = ACTIONS(5008), - [anon_sym_restrict] = ACTIONS(5008), - [anon_sym___restrict__] = ACTIONS(5008), - [anon_sym__Atomic] = ACTIONS(5008), - [anon_sym__Noreturn] = ACTIONS(5008), - [anon_sym_noreturn] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(5010), - [anon_sym_STAR_EQ] = ACTIONS(5010), - [anon_sym_SLASH_EQ] = ACTIONS(5010), - [anon_sym_PERCENT_EQ] = ACTIONS(5010), - [anon_sym_PLUS_EQ] = ACTIONS(5010), - [anon_sym_DASH_EQ] = ACTIONS(5010), - [anon_sym_LT_LT_EQ] = ACTIONS(5010), - [anon_sym_GT_GT_EQ] = ACTIONS(5010), - [anon_sym_AMP_EQ] = ACTIONS(5010), - [anon_sym_CARET_EQ] = ACTIONS(5010), - [anon_sym_PIPE_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ_GT] = ACTIONS(5010), - [anon_sym_or] = ACTIONS(5008), - [anon_sym_and] = ACTIONS(5008), - [anon_sym_bitor] = ACTIONS(5008), - [anon_sym_xor] = ACTIONS(5008), - [anon_sym_bitand] = ACTIONS(5008), - [anon_sym_not_eq] = ACTIONS(5008), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_DOT_STAR] = ACTIONS(5010), - [anon_sym_DASH_GT] = ACTIONS(5008), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5008), - [anon_sym_decltype] = ACTIONS(5008), - [anon_sym_virtual] = ACTIONS(5008), - [anon_sym_alignas] = ACTIONS(5008), - [anon_sym_template] = ACTIONS(5008), - [anon_sym_operator] = ACTIONS(5008), - [anon_sym_DASH_GT_STAR] = ACTIONS(5010), - }, - [1917] = { - [sym_identifier] = ACTIONS(4964), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_LPAREN2] = ACTIONS(4966), - [anon_sym_TILDE] = ACTIONS(4966), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4964), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_CARET] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4964), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4964), - [anon_sym_GT_GT] = ACTIONS(4964), - [anon_sym___extension__] = ACTIONS(4964), - [anon_sym_extern] = ACTIONS(4964), - [anon_sym___attribute__] = ACTIONS(4964), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4966), - [anon_sym___declspec] = ACTIONS(4964), - [anon_sym___based] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4964), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_static] = ACTIONS(4964), - [anon_sym_register] = ACTIONS(4964), - [anon_sym_inline] = ACTIONS(4964), - [anon_sym___inline] = ACTIONS(4964), - [anon_sym___inline__] = ACTIONS(4964), - [anon_sym___forceinline] = ACTIONS(4964), - [anon_sym_thread_local] = ACTIONS(4964), - [anon_sym___thread] = ACTIONS(4964), - [anon_sym_const] = ACTIONS(4964), - [anon_sym_constexpr] = ACTIONS(4964), - [anon_sym_volatile] = ACTIONS(4964), - [anon_sym_restrict] = ACTIONS(4964), - [anon_sym___restrict__] = ACTIONS(4964), - [anon_sym__Atomic] = ACTIONS(4964), - [anon_sym__Noreturn] = ACTIONS(4964), - [anon_sym_noreturn] = ACTIONS(4964), - [anon_sym_mutable] = ACTIONS(4964), - [anon_sym_constinit] = ACTIONS(4964), - [anon_sym_consteval] = ACTIONS(4964), - [anon_sym_QMARK] = ACTIONS(4966), - [anon_sym_STAR_EQ] = ACTIONS(4966), - [anon_sym_SLASH_EQ] = ACTIONS(4966), - [anon_sym_PERCENT_EQ] = ACTIONS(4966), - [anon_sym_PLUS_EQ] = ACTIONS(4966), - [anon_sym_DASH_EQ] = ACTIONS(4966), - [anon_sym_LT_LT_EQ] = ACTIONS(4966), - [anon_sym_GT_GT_EQ] = ACTIONS(4966), - [anon_sym_AMP_EQ] = ACTIONS(4966), - [anon_sym_CARET_EQ] = ACTIONS(4966), - [anon_sym_PIPE_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ_GT] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4964), - [anon_sym_and] = ACTIONS(4964), - [anon_sym_bitor] = ACTIONS(4964), - [anon_sym_xor] = ACTIONS(4964), - [anon_sym_bitand] = ACTIONS(4964), - [anon_sym_not_eq] = ACTIONS(4964), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_DOT_STAR] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4964), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4964), - [anon_sym_decltype] = ACTIONS(4964), - [anon_sym_virtual] = ACTIONS(4964), - [anon_sym_alignas] = ACTIONS(4964), - [anon_sym_template] = ACTIONS(4964), - [anon_sym_operator] = ACTIONS(4964), - [anon_sym_DASH_GT_STAR] = ACTIONS(4966), - }, - [1918] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), - [anon_sym_COMMA] = ACTIONS(5016), - [anon_sym_RPAREN] = ACTIONS(5016), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5021), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5019), - [anon_sym___declspec] = ACTIONS(5012), - [anon_sym___based] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_register] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym___inline] = ACTIONS(5012), - [anon_sym___inline__] = ACTIONS(5012), - [anon_sym___forceinline] = ACTIONS(5012), - [anon_sym_thread_local] = ACTIONS(5012), - [anon_sym___thread] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5012), - [anon_sym_volatile] = ACTIONS(5012), - [anon_sym_restrict] = ACTIONS(5012), - [anon_sym___restrict__] = ACTIONS(5012), - [anon_sym__Atomic] = ACTIONS(5012), - [anon_sym__Noreturn] = ACTIONS(5012), - [anon_sym_noreturn] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_LT_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_GT_EQ] = ACTIONS(5014), - [anon_sym_AMP_EQ] = ACTIONS(5014), - [anon_sym_CARET_EQ] = ACTIONS(5014), - [anon_sym_PIPE_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_and] = ACTIONS(5021), - [anon_sym_bitor] = ACTIONS(5021), - [anon_sym_xor] = ACTIONS(5021), - [anon_sym_bitand] = ACTIONS(5021), - [anon_sym_not_eq] = ACTIONS(5021), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5021), + [1789] = { + [sym__expression] = STATE(4771), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - [anon_sym_DASH_GT_STAR] = ACTIONS(5014), - }, - [1919] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_TILDE] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym___extension__] = ACTIONS(4992), - [anon_sym_extern] = ACTIONS(4992), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4994), - [anon_sym___declspec] = ACTIONS(4992), - [anon_sym___based] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_static] = ACTIONS(4992), - [anon_sym_register] = ACTIONS(4992), - [anon_sym_inline] = ACTIONS(4992), - [anon_sym___inline] = ACTIONS(4992), - [anon_sym___inline__] = ACTIONS(4992), - [anon_sym___forceinline] = ACTIONS(4992), - [anon_sym_thread_local] = ACTIONS(4992), - [anon_sym___thread] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4992), - [anon_sym_volatile] = ACTIONS(4992), - [anon_sym_restrict] = ACTIONS(4992), - [anon_sym___restrict__] = ACTIONS(4992), - [anon_sym__Atomic] = ACTIONS(4992), - [anon_sym__Noreturn] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym_mutable] = ACTIONS(4992), - [anon_sym_constinit] = ACTIONS(4992), - [anon_sym_consteval] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4994), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4992), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4992), - [anon_sym_not_eq] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_virtual] = ACTIONS(4992), - [anon_sym_alignas] = ACTIONS(4992), - [anon_sym_template] = ACTIONS(4992), - [anon_sym_operator] = ACTIONS(4992), - [anon_sym_DASH_GT_STAR] = ACTIONS(4994), - }, - [1920] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_TILDE] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_DASH_GT_STAR] = ACTIONS(4998), - }, - [1921] = { - [sym_identifier] = ACTIONS(5000), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_RPAREN] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_TILDE] = ACTIONS(5002), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5000), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_CARET] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_EQ_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5002), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_GT_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ] = ACTIONS(5000), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(5000), - [anon_sym_GT_GT] = ACTIONS(5000), - [anon_sym___extension__] = ACTIONS(5000), - [anon_sym_extern] = ACTIONS(5000), - [anon_sym___attribute__] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5002), - [anon_sym___declspec] = ACTIONS(5000), - [anon_sym___based] = ACTIONS(5000), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_static] = ACTIONS(5000), - [anon_sym_register] = ACTIONS(5000), - [anon_sym_inline] = ACTIONS(5000), - [anon_sym___inline] = ACTIONS(5000), - [anon_sym___inline__] = ACTIONS(5000), - [anon_sym___forceinline] = ACTIONS(5000), - [anon_sym_thread_local] = ACTIONS(5000), - [anon_sym___thread] = ACTIONS(5000), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5000), - [anon_sym_volatile] = ACTIONS(5000), - [anon_sym_restrict] = ACTIONS(5000), - [anon_sym___restrict__] = ACTIONS(5000), - [anon_sym__Atomic] = ACTIONS(5000), - [anon_sym__Noreturn] = ACTIONS(5000), - [anon_sym_noreturn] = ACTIONS(5000), - [anon_sym_mutable] = ACTIONS(5000), - [anon_sym_constinit] = ACTIONS(5000), - [anon_sym_consteval] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_STAR_EQ] = ACTIONS(5002), - [anon_sym_SLASH_EQ] = ACTIONS(5002), - [anon_sym_PERCENT_EQ] = ACTIONS(5002), - [anon_sym_PLUS_EQ] = ACTIONS(5002), - [anon_sym_DASH_EQ] = ACTIONS(5002), - [anon_sym_LT_LT_EQ] = ACTIONS(5002), - [anon_sym_GT_GT_EQ] = ACTIONS(5002), - [anon_sym_AMP_EQ] = ACTIONS(5002), - [anon_sym_CARET_EQ] = ACTIONS(5002), - [anon_sym_PIPE_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ_GT] = ACTIONS(5002), - [anon_sym_or] = ACTIONS(5000), - [anon_sym_and] = ACTIONS(5000), - [anon_sym_bitor] = ACTIONS(5000), - [anon_sym_xor] = ACTIONS(5000), - [anon_sym_bitand] = ACTIONS(5000), - [anon_sym_not_eq] = ACTIONS(5000), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_DOT_STAR] = ACTIONS(5002), - [anon_sym_DASH_GT] = ACTIONS(5000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5000), - [anon_sym_decltype] = ACTIONS(5000), - [anon_sym_virtual] = ACTIONS(5000), - [anon_sym_alignas] = ACTIONS(5000), - [anon_sym_template] = ACTIONS(5000), - [anon_sym_operator] = ACTIONS(5000), - [anon_sym_DASH_GT_STAR] = ACTIONS(5002), - }, - [1922] = { - [sym_identifier] = ACTIONS(5004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_LPAREN2] = ACTIONS(5006), - [anon_sym_TILDE] = ACTIONS(5006), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5004), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5004), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5004), - [anon_sym_CARET] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(5004), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5004), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_LT_LT] = ACTIONS(5004), - [anon_sym_GT_GT] = ACTIONS(5004), - [anon_sym___extension__] = ACTIONS(5004), - [anon_sym_extern] = ACTIONS(5004), - [anon_sym___attribute__] = ACTIONS(5004), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5006), - [anon_sym___declspec] = ACTIONS(5004), - [anon_sym___based] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5004), - [anon_sym_EQ] = ACTIONS(5004), - [anon_sym_static] = ACTIONS(5004), - [anon_sym_register] = ACTIONS(5004), - [anon_sym_inline] = ACTIONS(5004), - [anon_sym___inline] = ACTIONS(5004), - [anon_sym___inline__] = ACTIONS(5004), - [anon_sym___forceinline] = ACTIONS(5004), - [anon_sym_thread_local] = ACTIONS(5004), - [anon_sym___thread] = ACTIONS(5004), - [anon_sym_const] = ACTIONS(5004), - [anon_sym_constexpr] = ACTIONS(5004), - [anon_sym_volatile] = ACTIONS(5004), - [anon_sym_restrict] = ACTIONS(5004), - [anon_sym___restrict__] = ACTIONS(5004), - [anon_sym__Atomic] = ACTIONS(5004), - [anon_sym__Noreturn] = ACTIONS(5004), - [anon_sym_noreturn] = ACTIONS(5004), - [anon_sym_mutable] = ACTIONS(5004), - [anon_sym_constinit] = ACTIONS(5004), - [anon_sym_consteval] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(5006), - [anon_sym_STAR_EQ] = ACTIONS(5006), - [anon_sym_SLASH_EQ] = ACTIONS(5006), - [anon_sym_PERCENT_EQ] = ACTIONS(5006), - [anon_sym_PLUS_EQ] = ACTIONS(5006), - [anon_sym_DASH_EQ] = ACTIONS(5006), - [anon_sym_LT_LT_EQ] = ACTIONS(5006), - [anon_sym_GT_GT_EQ] = ACTIONS(5006), - [anon_sym_AMP_EQ] = ACTIONS(5006), - [anon_sym_CARET_EQ] = ACTIONS(5006), - [anon_sym_PIPE_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ_GT] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5004), - [anon_sym_and] = ACTIONS(5004), - [anon_sym_bitor] = ACTIONS(5004), - [anon_sym_xor] = ACTIONS(5004), - [anon_sym_bitand] = ACTIONS(5004), - [anon_sym_not_eq] = ACTIONS(5004), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_DOT_STAR] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5004), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5004), - [anon_sym_decltype] = ACTIONS(5004), - [anon_sym_virtual] = ACTIONS(5004), - [anon_sym_alignas] = ACTIONS(5004), - [anon_sym_template] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), - [anon_sym_DASH_GT_STAR] = ACTIONS(5006), - }, - [1923] = { - [sym_identifier] = ACTIONS(5008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(5010), - [anon_sym_LPAREN2] = ACTIONS(5010), - [anon_sym_TILDE] = ACTIONS(5010), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5010), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5010), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5010), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5010), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_GT_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ] = ACTIONS(5008), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5010), - [anon_sym_GT_GT] = ACTIONS(5010), - [anon_sym_SEMI] = ACTIONS(5010), - [anon_sym___extension__] = ACTIONS(5008), - [anon_sym_extern] = ACTIONS(5008), - [anon_sym___attribute__] = ACTIONS(5008), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5010), - [anon_sym___declspec] = ACTIONS(5008), - [anon_sym___based] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5008), - [anon_sym_EQ] = ACTIONS(5008), - [anon_sym_static] = ACTIONS(5008), - [anon_sym_register] = ACTIONS(5008), - [anon_sym_inline] = ACTIONS(5008), - [anon_sym___inline] = ACTIONS(5008), - [anon_sym___inline__] = ACTIONS(5008), - [anon_sym___forceinline] = ACTIONS(5008), - [anon_sym_thread_local] = ACTIONS(5008), - [anon_sym___thread] = ACTIONS(5008), - [anon_sym_const] = ACTIONS(5008), - [anon_sym_constexpr] = ACTIONS(5008), - [anon_sym_volatile] = ACTIONS(5008), - [anon_sym_restrict] = ACTIONS(5008), - [anon_sym___restrict__] = ACTIONS(5008), - [anon_sym__Atomic] = ACTIONS(5008), - [anon_sym__Noreturn] = ACTIONS(5008), - [anon_sym_noreturn] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [anon_sym_COLON] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(5010), - [anon_sym_LT_EQ_GT] = ACTIONS(5010), - [anon_sym_or] = ACTIONS(5008), - [anon_sym_and] = ACTIONS(5008), - [anon_sym_bitor] = ACTIONS(5008), - [anon_sym_xor] = ACTIONS(5008), - [anon_sym_bitand] = ACTIONS(5008), - [anon_sym_not_eq] = ACTIONS(5008), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_DOT_STAR] = ACTIONS(5010), - [anon_sym_DASH_GT] = ACTIONS(5010), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5008), - [anon_sym_decltype] = ACTIONS(5008), - [anon_sym_final] = ACTIONS(5008), - [anon_sym_override] = ACTIONS(5008), - [anon_sym_virtual] = ACTIONS(5008), - [anon_sym_alignas] = ACTIONS(5008), - [anon_sym_template] = ACTIONS(5008), - [anon_sym_operator] = ACTIONS(5008), - [anon_sym_try] = ACTIONS(5008), - [anon_sym_requires] = ACTIONS(5008), - }, - [1924] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_TILDE] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4994), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4994), - [anon_sym_GT_GT] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym___extension__] = ACTIONS(4992), - [anon_sym_extern] = ACTIONS(4992), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4994), - [anon_sym___declspec] = ACTIONS(4992), - [anon_sym___based] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_static] = ACTIONS(4992), - [anon_sym_register] = ACTIONS(4992), - [anon_sym_inline] = ACTIONS(4992), - [anon_sym___inline] = ACTIONS(4992), - [anon_sym___inline__] = ACTIONS(4992), - [anon_sym___forceinline] = ACTIONS(4992), - [anon_sym_thread_local] = ACTIONS(4992), - [anon_sym___thread] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4992), - [anon_sym_volatile] = ACTIONS(4992), - [anon_sym_restrict] = ACTIONS(4992), - [anon_sym___restrict__] = ACTIONS(4992), - [anon_sym__Atomic] = ACTIONS(4992), - [anon_sym__Noreturn] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym_mutable] = ACTIONS(4992), - [anon_sym_constinit] = ACTIONS(4992), - [anon_sym_consteval] = ACTIONS(4992), - [anon_sym_COLON] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4992), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4992), - [anon_sym_not_eq] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_final] = ACTIONS(4992), - [anon_sym_override] = ACTIONS(4992), - [anon_sym_virtual] = ACTIONS(4992), - [anon_sym_alignas] = ACTIONS(4992), - [anon_sym_template] = ACTIONS(4992), - [anon_sym_operator] = ACTIONS(4992), - [anon_sym_try] = ACTIONS(4992), - [anon_sym_requires] = ACTIONS(4992), - }, - [1925] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_TILDE] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4998), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4998), - [anon_sym_GT_GT] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym_extern] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), - [anon_sym___declspec] = ACTIONS(4996), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_static] = ACTIONS(4996), - [anon_sym_register] = ACTIONS(4996), - [anon_sym_inline] = ACTIONS(4996), - [anon_sym___inline] = ACTIONS(4996), - [anon_sym___inline__] = ACTIONS(4996), - [anon_sym___forceinline] = ACTIONS(4996), - [anon_sym_thread_local] = ACTIONS(4996), - [anon_sym___thread] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_final] = ACTIONS(4996), - [anon_sym_override] = ACTIONS(4996), - [anon_sym_virtual] = ACTIONS(4996), - [anon_sym_alignas] = ACTIONS(4996), - [anon_sym_template] = ACTIONS(4996), - [anon_sym_operator] = ACTIONS(4996), - [anon_sym_try] = ACTIONS(4996), - [anon_sym_requires] = ACTIONS(4996), - }, - [1926] = { - [sym_identifier] = ACTIONS(5000), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_RPAREN] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_TILDE] = ACTIONS(5002), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5002), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5002), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_CARET] = ACTIONS(5002), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_EQ_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5002), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_GT_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ] = ACTIONS(5000), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(5002), - [anon_sym_GT_GT] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5002), - [anon_sym___extension__] = ACTIONS(5000), - [anon_sym_extern] = ACTIONS(5000), - [anon_sym___attribute__] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5002), - [anon_sym___declspec] = ACTIONS(5000), - [anon_sym___based] = ACTIONS(5000), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_static] = ACTIONS(5000), - [anon_sym_register] = ACTIONS(5000), - [anon_sym_inline] = ACTIONS(5000), - [anon_sym___inline] = ACTIONS(5000), - [anon_sym___inline__] = ACTIONS(5000), - [anon_sym___forceinline] = ACTIONS(5000), - [anon_sym_thread_local] = ACTIONS(5000), - [anon_sym___thread] = ACTIONS(5000), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5000), - [anon_sym_volatile] = ACTIONS(5000), - [anon_sym_restrict] = ACTIONS(5000), - [anon_sym___restrict__] = ACTIONS(5000), - [anon_sym__Atomic] = ACTIONS(5000), - [anon_sym__Noreturn] = ACTIONS(5000), - [anon_sym_noreturn] = ACTIONS(5000), - [anon_sym_mutable] = ACTIONS(5000), - [anon_sym_constinit] = ACTIONS(5000), - [anon_sym_consteval] = ACTIONS(5000), - [anon_sym_COLON] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_LT_EQ_GT] = ACTIONS(5002), - [anon_sym_or] = ACTIONS(5000), - [anon_sym_and] = ACTIONS(5000), - [anon_sym_bitor] = ACTIONS(5000), - [anon_sym_xor] = ACTIONS(5000), - [anon_sym_bitand] = ACTIONS(5000), - [anon_sym_not_eq] = ACTIONS(5000), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_DOT_STAR] = ACTIONS(5002), - [anon_sym_DASH_GT] = ACTIONS(5002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5000), - [anon_sym_decltype] = ACTIONS(5000), - [anon_sym_final] = ACTIONS(5000), - [anon_sym_override] = ACTIONS(5000), - [anon_sym_virtual] = ACTIONS(5000), - [anon_sym_alignas] = ACTIONS(5000), - [anon_sym_template] = ACTIONS(5000), - [anon_sym_operator] = ACTIONS(5000), - [anon_sym_try] = ACTIONS(5000), - [anon_sym_requires] = ACTIONS(5000), - }, - [1927] = { - [sym_identifier] = ACTIONS(5004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_LPAREN2] = ACTIONS(5006), - [anon_sym_TILDE] = ACTIONS(5006), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5006), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5004), - [anon_sym_CARET] = ACTIONS(5006), - [anon_sym_AMP] = ACTIONS(5004), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5004), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_LT_LT] = ACTIONS(5006), - [anon_sym_GT_GT] = ACTIONS(5006), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym___extension__] = ACTIONS(5004), - [anon_sym_extern] = ACTIONS(5004), - [anon_sym___attribute__] = ACTIONS(5004), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5006), - [anon_sym___declspec] = ACTIONS(5004), - [anon_sym___based] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5004), - [anon_sym_EQ] = ACTIONS(5004), - [anon_sym_static] = ACTIONS(5004), - [anon_sym_register] = ACTIONS(5004), - [anon_sym_inline] = ACTIONS(5004), - [anon_sym___inline] = ACTIONS(5004), - [anon_sym___inline__] = ACTIONS(5004), - [anon_sym___forceinline] = ACTIONS(5004), - [anon_sym_thread_local] = ACTIONS(5004), - [anon_sym___thread] = ACTIONS(5004), - [anon_sym_const] = ACTIONS(5004), - [anon_sym_constexpr] = ACTIONS(5004), - [anon_sym_volatile] = ACTIONS(5004), - [anon_sym_restrict] = ACTIONS(5004), - [anon_sym___restrict__] = ACTIONS(5004), - [anon_sym__Atomic] = ACTIONS(5004), - [anon_sym__Noreturn] = ACTIONS(5004), - [anon_sym_noreturn] = ACTIONS(5004), - [anon_sym_mutable] = ACTIONS(5004), - [anon_sym_constinit] = ACTIONS(5004), - [anon_sym_consteval] = ACTIONS(5004), - [anon_sym_COLON] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(5006), - [anon_sym_LT_EQ_GT] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5004), - [anon_sym_and] = ACTIONS(5004), - [anon_sym_bitor] = ACTIONS(5004), - [anon_sym_xor] = ACTIONS(5004), - [anon_sym_bitand] = ACTIONS(5004), - [anon_sym_not_eq] = ACTIONS(5004), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_DOT_STAR] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5004), - [anon_sym_decltype] = ACTIONS(5004), - [anon_sym_final] = ACTIONS(5004), - [anon_sym_override] = ACTIONS(5004), - [anon_sym_virtual] = ACTIONS(5004), - [anon_sym_alignas] = ACTIONS(5004), - [anon_sym_template] = ACTIONS(5004), - [anon_sym_operator] = ACTIONS(5004), - [anon_sym_try] = ACTIONS(5004), - [anon_sym_requires] = ACTIONS(5004), - }, - [1928] = { - [sym_identifier] = ACTIONS(4964), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_LPAREN2] = ACTIONS(4966), - [anon_sym_TILDE] = ACTIONS(4966), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4966), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4966), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_CARET] = ACTIONS(4966), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4964), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4966), - [anon_sym_GT_GT] = ACTIONS(4966), - [anon_sym_SEMI] = ACTIONS(4966), - [anon_sym___extension__] = ACTIONS(4964), - [anon_sym_extern] = ACTIONS(4964), - [anon_sym___attribute__] = ACTIONS(4964), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4966), - [anon_sym___declspec] = ACTIONS(4964), - [anon_sym___based] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4964), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_static] = ACTIONS(4964), - [anon_sym_register] = ACTIONS(4964), - [anon_sym_inline] = ACTIONS(4964), - [anon_sym___inline] = ACTIONS(4964), - [anon_sym___inline__] = ACTIONS(4964), - [anon_sym___forceinline] = ACTIONS(4964), - [anon_sym_thread_local] = ACTIONS(4964), - [anon_sym___thread] = ACTIONS(4964), - [anon_sym_const] = ACTIONS(4964), - [anon_sym_constexpr] = ACTIONS(4964), - [anon_sym_volatile] = ACTIONS(4964), - [anon_sym_restrict] = ACTIONS(4964), - [anon_sym___restrict__] = ACTIONS(4964), - [anon_sym__Atomic] = ACTIONS(4964), - [anon_sym__Noreturn] = ACTIONS(4964), - [anon_sym_noreturn] = ACTIONS(4964), - [anon_sym_mutable] = ACTIONS(4964), - [anon_sym_constinit] = ACTIONS(4964), - [anon_sym_consteval] = ACTIONS(4964), - [anon_sym_COLON] = ACTIONS(4964), - [anon_sym_QMARK] = ACTIONS(4966), - [anon_sym_LT_EQ_GT] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4964), - [anon_sym_and] = ACTIONS(4964), - [anon_sym_bitor] = ACTIONS(4964), - [anon_sym_xor] = ACTIONS(4964), - [anon_sym_bitand] = ACTIONS(4964), - [anon_sym_not_eq] = ACTIONS(4964), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_DOT_STAR] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4966), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4964), - [anon_sym_decltype] = ACTIONS(4964), - [anon_sym_final] = ACTIONS(4964), - [anon_sym_override] = ACTIONS(4964), - [anon_sym_virtual] = ACTIONS(4964), - [anon_sym_alignas] = ACTIONS(4964), - [anon_sym_template] = ACTIONS(4964), - [anon_sym_operator] = ACTIONS(4964), - [anon_sym_try] = ACTIONS(4964), - [anon_sym_requires] = ACTIONS(4964), - }, - [1929] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_TILDE] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4990), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4990), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4990), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4990), - [anon_sym_GT_GT] = ACTIONS(4990), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym___extension__] = ACTIONS(4988), - [anon_sym_extern] = ACTIONS(4988), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4990), - [anon_sym___declspec] = ACTIONS(4988), - [anon_sym___based] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_static] = ACTIONS(4988), - [anon_sym_register] = ACTIONS(4988), - [anon_sym_inline] = ACTIONS(4988), - [anon_sym___inline] = ACTIONS(4988), - [anon_sym___inline__] = ACTIONS(4988), - [anon_sym___forceinline] = ACTIONS(4988), - [anon_sym_thread_local] = ACTIONS(4988), - [anon_sym___thread] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4988), - [anon_sym_volatile] = ACTIONS(4988), - [anon_sym_restrict] = ACTIONS(4988), - [anon_sym___restrict__] = ACTIONS(4988), - [anon_sym__Atomic] = ACTIONS(4988), - [anon_sym__Noreturn] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym_mutable] = ACTIONS(4988), - [anon_sym_constinit] = ACTIONS(4988), - [anon_sym_consteval] = ACTIONS(4988), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4988), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4988), - [anon_sym_not_eq] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_final] = ACTIONS(4988), - [anon_sym_override] = ACTIONS(4988), - [anon_sym_virtual] = ACTIONS(4988), - [anon_sym_alignas] = ACTIONS(4988), - [anon_sym_template] = ACTIONS(4988), - [anon_sym_operator] = ACTIONS(4988), - [anon_sym_try] = ACTIONS(4988), - [anon_sym_requires] = ACTIONS(4988), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1930] = { - [sym_function_definition] = STATE(933), - [sym_declaration] = STATE(933), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5502), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2224), - [sym_declaration_list] = STATE(933), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(5066), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [1790] = { + [sym__expression] = STATE(4864), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1931] = { - [sym_function_definition] = STATE(863), - [sym_declaration] = STATE(863), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5509), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2171), - [sym_declaration_list] = STATE(863), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(5068), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [1791] = { + [sym__expression] = STATE(4757), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1932] = { - [sym_function_definition] = STATE(373), - [sym_declaration] = STATE(373), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5531), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2258), - [sym_declaration_list] = STATE(373), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(5070), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [1792] = { + [sym__expression] = STATE(4927), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1933] = { - [sym_function_definition] = STATE(562), - [sym_declaration] = STATE(562), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5488), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2257), - [sym_declaration_list] = STATE(562), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [1793] = { + [sym__expression] = STATE(4761), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1934] = { - [sym_function_definition] = STATE(999), - [sym_declaration] = STATE(999), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5530), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2244), - [sym_declaration_list] = STATE(999), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(5074), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [1794] = { + [sym__expression] = STATE(4934), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1935] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LPAREN2] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PIPE_PIPE] = ACTIONS(5019), - [anon_sym_AMP_AMP] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5019), - [anon_sym___declspec] = ACTIONS(5012), - [anon_sym___based] = ACTIONS(5012), - [anon_sym___cdecl] = ACTIONS(5012), - [anon_sym___clrcall] = ACTIONS(5012), - [anon_sym___stdcall] = ACTIONS(5012), - [anon_sym___fastcall] = ACTIONS(5012), - [anon_sym___thiscall] = ACTIONS(5012), - [anon_sym___vectorcall] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_signed] = ACTIONS(5012), - [anon_sym_unsigned] = ACTIONS(5012), - [anon_sym_long] = ACTIONS(5012), - [anon_sym_short] = ACTIONS(5012), - [anon_sym_LBRACK] = ACTIONS(5012), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_register] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym___inline] = ACTIONS(5012), - [anon_sym___inline__] = ACTIONS(5012), - [anon_sym___forceinline] = ACTIONS(5012), - [anon_sym_thread_local] = ACTIONS(5012), - [anon_sym___thread] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5012), - [anon_sym_volatile] = ACTIONS(5012), - [anon_sym_restrict] = ACTIONS(5012), - [anon_sym___restrict__] = ACTIONS(5012), - [anon_sym__Atomic] = ACTIONS(5012), - [anon_sym__Noreturn] = ACTIONS(5012), - [anon_sym_noreturn] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [sym_primitive_type] = ACTIONS(5012), - [anon_sym_enum] = ACTIONS(5012), - [anon_sym_class] = ACTIONS(5012), - [anon_sym_struct] = ACTIONS(5012), - [anon_sym_union] = ACTIONS(5012), - [anon_sym_COLON] = ACTIONS(5012), - [anon_sym_or] = ACTIONS(5012), - [anon_sym_and] = ACTIONS(5012), - [anon_sym_asm] = ACTIONS(5012), - [anon_sym___asm__] = ACTIONS(5012), + [1795] = { + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_final] = ACTIONS(5012), - [anon_sym_override] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym_explicit] = ACTIONS(5012), - [anon_sym_typename] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_GT2] = ACTIONS(5019), - [anon_sym_operator] = ACTIONS(5012), - [anon_sym_try] = ACTIONS(5012), - [anon_sym_friend] = ACTIONS(5012), - [anon_sym_using] = ACTIONS(5012), - [anon_sym_concept] = ACTIONS(5012), - [anon_sym_requires] = ACTIONS(5012), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1936] = { - [sym_function_definition] = STATE(546), - [sym_declaration] = STATE(546), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5488), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2257), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8558), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4727), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4733), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5076), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(5078), - [anon_sym_struct] = ACTIONS(5080), - [anon_sym_union] = ACTIONS(5082), + [1796] = { + [sym__expression] = STATE(4939), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1937] = { - [sym_function_definition] = STATE(2662), - [sym_declaration] = STATE(2662), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5525), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2247), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8980), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4727), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4733), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5076), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(5084), - [anon_sym_struct] = ACTIONS(5086), - [anon_sym_union] = ACTIONS(5088), + [1797] = { + [sym__expression] = STATE(4763), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1938] = { - [sym_function_definition] = STATE(961), - [sym_declaration] = STATE(961), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5530), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2244), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8954), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4727), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4733), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5076), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(5090), - [anon_sym_struct] = ACTIONS(5092), - [anon_sym_union] = ACTIONS(5094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [1798] = { + [sym__expression] = STATE(5095), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1939] = { - [sym_function_definition] = STATE(2281), - [sym_declaration] = STATE(2281), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5512), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2248), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8827), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4727), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4733), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5076), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(5096), - [anon_sym_struct] = ACTIONS(5098), - [anon_sym_union] = ACTIONS(5100), + [1799] = { + [sym__expression] = STATE(4594), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [1940] = { - [sym_function_definition] = STATE(886), - [sym_declaration] = STATE(886), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5502), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2224), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8805), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4727), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4733), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5076), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(5102), - [anon_sym_struct] = ACTIONS(5104), - [anon_sym_union] = ACTIONS(5106), + [1800] = { + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [1941] = { - [sym_function_definition] = STATE(879), - [sym_declaration] = STATE(879), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5509), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2171), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8682), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4727), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4733), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5076), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(5108), - [anon_sym_struct] = ACTIONS(5110), - [anon_sym_union] = ACTIONS(5112), + [1801] = { + [sym__expression] = STATE(4578), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [1942] = { - [sym_function_definition] = STATE(2089), - [sym_declaration] = STATE(2089), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5500), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2252), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8441), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4727), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4733), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5076), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(5114), - [anon_sym_struct] = ACTIONS(5116), - [anon_sym_union] = ACTIONS(5118), + [1802] = { + [sym__expression] = STATE(4579), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [1943] = { - [sym_function_definition] = STATE(407), - [sym_declaration] = STATE(407), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5531), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2258), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8590), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4727), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4733), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5076), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(5120), - [anon_sym_struct] = ACTIONS(5122), - [anon_sym_union] = ACTIONS(5124), + [1803] = { + [sym__expression] = STATE(4580), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [1944] = { - [sym_function_definition] = STATE(2617), - [sym_declaration] = STATE(2617), - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5508), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_ms_call_modifier] = STATE(2254), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym__class_name] = STATE(8894), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(4727), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4733), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5076), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(5126), - [anon_sym_struct] = ACTIONS(5128), - [anon_sym_union] = ACTIONS(5130), + [1804] = { + [sym__expression] = STATE(4577), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [1945] = { - [sym_string_literal] = STATE(1964), - [sym_template_argument_list] = STATE(2507), - [sym_raw_string_literal] = STATE(1964), - [sym_identifier] = ACTIONS(4147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_RPAREN] = ACTIONS(4139), - [aux_sym_preproc_if_token2] = ACTIONS(4139), - [aux_sym_preproc_else_token1] = ACTIONS(4139), - [aux_sym_preproc_elif_token1] = ACTIONS(4147), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4139), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5132), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4139), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_RBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_COLON] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4147), - [anon_sym_or_eq] = ACTIONS(4147), - [anon_sym_xor_eq] = ACTIONS(4147), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), + [1805] = { + [sym__expression] = STATE(4582), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [1946] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4548), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7931), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_type_parameter_declaration] = STATE(7931), - [sym_variadic_type_parameter_declaration] = STATE(7931), - [sym_optional_type_parameter_declaration] = STATE(7931), - [sym_template_template_parameter_declaration] = STATE(7931), - [sym_optional_parameter_declaration] = STATE(7931), - [sym_variadic_parameter_declaration] = STATE(7931), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(5135), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), + [1806] = { + [sym__expression] = STATE(4583), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(5137), - [anon_sym_template] = ACTIONS(5139), - [anon_sym_GT2] = ACTIONS(5141), - }, - [1947] = { - [sym_identifier] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5145), - [anon_sym_RPAREN] = ACTIONS(5145), - [anon_sym_LPAREN2] = ACTIONS(5145), - [anon_sym_TILDE] = ACTIONS(5145), - [anon_sym_STAR] = ACTIONS(5145), - [anon_sym_PIPE_PIPE] = ACTIONS(5145), - [anon_sym_AMP_AMP] = ACTIONS(5145), - [anon_sym_AMP] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5145), - [anon_sym___extension__] = ACTIONS(5143), - [anon_sym_extern] = ACTIONS(5143), - [anon_sym___attribute__] = ACTIONS(5143), - [anon_sym_COLON_COLON] = ACTIONS(5145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5145), - [anon_sym___declspec] = ACTIONS(5143), - [anon_sym___based] = ACTIONS(5143), - [anon_sym___cdecl] = ACTIONS(5143), - [anon_sym___clrcall] = ACTIONS(5143), - [anon_sym___stdcall] = ACTIONS(5143), - [anon_sym___fastcall] = ACTIONS(5143), - [anon_sym___thiscall] = ACTIONS(5143), - [anon_sym___vectorcall] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5145), - [anon_sym_signed] = ACTIONS(5143), - [anon_sym_unsigned] = ACTIONS(5143), - [anon_sym_long] = ACTIONS(5143), - [anon_sym_short] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5145), - [anon_sym_static] = ACTIONS(5143), - [anon_sym_register] = ACTIONS(5143), - [anon_sym_inline] = ACTIONS(5143), - [anon_sym___inline] = ACTIONS(5143), - [anon_sym___inline__] = ACTIONS(5143), - [anon_sym___forceinline] = ACTIONS(5143), - [anon_sym_thread_local] = ACTIONS(5143), - [anon_sym___thread] = ACTIONS(5143), - [anon_sym_const] = ACTIONS(5143), - [anon_sym_constexpr] = ACTIONS(5143), - [anon_sym_volatile] = ACTIONS(5143), - [anon_sym_restrict] = ACTIONS(5143), - [anon_sym___restrict__] = ACTIONS(5143), - [anon_sym__Atomic] = ACTIONS(5143), - [anon_sym__Noreturn] = ACTIONS(5143), - [anon_sym_noreturn] = ACTIONS(5143), - [anon_sym_mutable] = ACTIONS(5143), - [anon_sym_constinit] = ACTIONS(5143), - [anon_sym_consteval] = ACTIONS(5143), - [sym_primitive_type] = ACTIONS(5143), - [anon_sym_enum] = ACTIONS(5143), - [anon_sym_class] = ACTIONS(5143), - [anon_sym_struct] = ACTIONS(5143), - [anon_sym_union] = ACTIONS(5143), - [anon_sym_or] = ACTIONS(5143), - [anon_sym_and] = ACTIONS(5143), - [anon_sym_asm] = ACTIONS(5143), - [anon_sym___asm__] = ACTIONS(5143), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5143), - [anon_sym_decltype] = ACTIONS(5143), - [anon_sym_final] = ACTIONS(5143), - [anon_sym_override] = ACTIONS(5143), - [anon_sym_virtual] = ACTIONS(5143), - [anon_sym_alignas] = ACTIONS(5143), - [anon_sym_explicit] = ACTIONS(5143), - [anon_sym_typename] = ACTIONS(5143), - [anon_sym_template] = ACTIONS(5143), - [anon_sym_GT2] = ACTIONS(5145), - [anon_sym_operator] = ACTIONS(5143), - [anon_sym_try] = ACTIONS(5143), - [anon_sym_friend] = ACTIONS(5143), - [anon_sym_using] = ACTIONS(5143), - [anon_sym_concept] = ACTIONS(5143), - [anon_sym_requires] = ACTIONS(5143), - }, - [1948] = { - [sym_identifier] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5149), - [anon_sym_RPAREN] = ACTIONS(5149), - [anon_sym_LPAREN2] = ACTIONS(5149), - [anon_sym_TILDE] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [anon_sym_PIPE_PIPE] = ACTIONS(5149), - [anon_sym_AMP_AMP] = ACTIONS(5149), - [anon_sym_AMP] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5149), - [anon_sym___extension__] = ACTIONS(5147), - [anon_sym_extern] = ACTIONS(5147), - [anon_sym___attribute__] = ACTIONS(5147), - [anon_sym_COLON_COLON] = ACTIONS(5149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5149), - [anon_sym___declspec] = ACTIONS(5147), - [anon_sym___based] = ACTIONS(5147), - [anon_sym___cdecl] = ACTIONS(5147), - [anon_sym___clrcall] = ACTIONS(5147), - [anon_sym___stdcall] = ACTIONS(5147), - [anon_sym___fastcall] = ACTIONS(5147), - [anon_sym___thiscall] = ACTIONS(5147), - [anon_sym___vectorcall] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5149), - [anon_sym_signed] = ACTIONS(5147), - [anon_sym_unsigned] = ACTIONS(5147), - [anon_sym_long] = ACTIONS(5147), - [anon_sym_short] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_static] = ACTIONS(5147), - [anon_sym_register] = ACTIONS(5147), - [anon_sym_inline] = ACTIONS(5147), - [anon_sym___inline] = ACTIONS(5147), - [anon_sym___inline__] = ACTIONS(5147), - [anon_sym___forceinline] = ACTIONS(5147), - [anon_sym_thread_local] = ACTIONS(5147), - [anon_sym___thread] = ACTIONS(5147), - [anon_sym_const] = ACTIONS(5147), - [anon_sym_constexpr] = ACTIONS(5147), - [anon_sym_volatile] = ACTIONS(5147), - [anon_sym_restrict] = ACTIONS(5147), - [anon_sym___restrict__] = ACTIONS(5147), - [anon_sym__Atomic] = ACTIONS(5147), - [anon_sym__Noreturn] = ACTIONS(5147), - [anon_sym_noreturn] = ACTIONS(5147), - [anon_sym_mutable] = ACTIONS(5147), - [anon_sym_constinit] = ACTIONS(5147), - [anon_sym_consteval] = ACTIONS(5147), - [sym_primitive_type] = ACTIONS(5147), - [anon_sym_enum] = ACTIONS(5147), - [anon_sym_class] = ACTIONS(5147), - [anon_sym_struct] = ACTIONS(5147), - [anon_sym_union] = ACTIONS(5147), - [anon_sym_or] = ACTIONS(5147), - [anon_sym_and] = ACTIONS(5147), - [anon_sym_asm] = ACTIONS(5147), - [anon_sym___asm__] = ACTIONS(5147), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5147), - [anon_sym_decltype] = ACTIONS(5147), - [anon_sym_final] = ACTIONS(5147), - [anon_sym_override] = ACTIONS(5147), - [anon_sym_virtual] = ACTIONS(5147), - [anon_sym_alignas] = ACTIONS(5147), - [anon_sym_explicit] = ACTIONS(5147), - [anon_sym_typename] = ACTIONS(5147), - [anon_sym_template] = ACTIONS(5147), - [anon_sym_GT2] = ACTIONS(5149), - [anon_sym_operator] = ACTIONS(5147), - [anon_sym_try] = ACTIONS(5147), - [anon_sym_friend] = ACTIONS(5147), - [anon_sym_using] = ACTIONS(5147), - [anon_sym_concept] = ACTIONS(5147), - [anon_sym_requires] = ACTIONS(5147), - }, - [1949] = { - [sym_identifier] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LPAREN2] = ACTIONS(5153), - [anon_sym_TILDE] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [anon_sym_PIPE_PIPE] = ACTIONS(5153), - [anon_sym_AMP_AMP] = ACTIONS(5153), - [anon_sym_AMP] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5153), - [anon_sym___extension__] = ACTIONS(5151), - [anon_sym_extern] = ACTIONS(5151), - [anon_sym___attribute__] = ACTIONS(5151), - [anon_sym_COLON_COLON] = ACTIONS(5153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5153), - [anon_sym___declspec] = ACTIONS(5151), - [anon_sym___based] = ACTIONS(5151), - [anon_sym___cdecl] = ACTIONS(5151), - [anon_sym___clrcall] = ACTIONS(5151), - [anon_sym___stdcall] = ACTIONS(5151), - [anon_sym___fastcall] = ACTIONS(5151), - [anon_sym___thiscall] = ACTIONS(5151), - [anon_sym___vectorcall] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5153), - [anon_sym_signed] = ACTIONS(5151), - [anon_sym_unsigned] = ACTIONS(5151), - [anon_sym_long] = ACTIONS(5151), - [anon_sym_short] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_static] = ACTIONS(5151), - [anon_sym_register] = ACTIONS(5151), - [anon_sym_inline] = ACTIONS(5151), - [anon_sym___inline] = ACTIONS(5151), - [anon_sym___inline__] = ACTIONS(5151), - [anon_sym___forceinline] = ACTIONS(5151), - [anon_sym_thread_local] = ACTIONS(5151), - [anon_sym___thread] = ACTIONS(5151), - [anon_sym_const] = ACTIONS(5151), - [anon_sym_constexpr] = ACTIONS(5151), - [anon_sym_volatile] = ACTIONS(5151), - [anon_sym_restrict] = ACTIONS(5151), - [anon_sym___restrict__] = ACTIONS(5151), - [anon_sym__Atomic] = ACTIONS(5151), - [anon_sym__Noreturn] = ACTIONS(5151), - [anon_sym_noreturn] = ACTIONS(5151), - [anon_sym_mutable] = ACTIONS(5151), - [anon_sym_constinit] = ACTIONS(5151), - [anon_sym_consteval] = ACTIONS(5151), - [sym_primitive_type] = ACTIONS(5151), - [anon_sym_enum] = ACTIONS(5151), - [anon_sym_class] = ACTIONS(5151), - [anon_sym_struct] = ACTIONS(5151), - [anon_sym_union] = ACTIONS(5151), - [anon_sym_or] = ACTIONS(5151), - [anon_sym_and] = ACTIONS(5151), - [anon_sym_asm] = ACTIONS(5151), - [anon_sym___asm__] = ACTIONS(5151), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5151), - [anon_sym_decltype] = ACTIONS(5151), - [anon_sym_final] = ACTIONS(5151), - [anon_sym_override] = ACTIONS(5151), - [anon_sym_virtual] = ACTIONS(5151), - [anon_sym_alignas] = ACTIONS(5151), - [anon_sym_explicit] = ACTIONS(5151), - [anon_sym_typename] = ACTIONS(5151), - [anon_sym_template] = ACTIONS(5151), - [anon_sym_GT2] = ACTIONS(5153), - [anon_sym_operator] = ACTIONS(5151), - [anon_sym_try] = ACTIONS(5151), - [anon_sym_friend] = ACTIONS(5151), - [anon_sym_using] = ACTIONS(5151), - [anon_sym_concept] = ACTIONS(5151), - [anon_sym_requires] = ACTIONS(5151), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [1950] = { - [sym_identifier] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LPAREN2] = ACTIONS(5153), - [anon_sym_TILDE] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [anon_sym_PIPE_PIPE] = ACTIONS(5153), - [anon_sym_AMP_AMP] = ACTIONS(5153), - [anon_sym_AMP] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5153), - [anon_sym___extension__] = ACTIONS(5151), - [anon_sym_extern] = ACTIONS(5151), - [anon_sym___attribute__] = ACTIONS(5151), - [anon_sym_COLON_COLON] = ACTIONS(5153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5153), - [anon_sym___declspec] = ACTIONS(5151), - [anon_sym___based] = ACTIONS(5151), - [anon_sym___cdecl] = ACTIONS(5151), - [anon_sym___clrcall] = ACTIONS(5151), - [anon_sym___stdcall] = ACTIONS(5151), - [anon_sym___fastcall] = ACTIONS(5151), - [anon_sym___thiscall] = ACTIONS(5151), - [anon_sym___vectorcall] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5153), - [anon_sym_signed] = ACTIONS(5151), - [anon_sym_unsigned] = ACTIONS(5151), - [anon_sym_long] = ACTIONS(5151), - [anon_sym_short] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_static] = ACTIONS(5151), - [anon_sym_register] = ACTIONS(5151), - [anon_sym_inline] = ACTIONS(5151), - [anon_sym___inline] = ACTIONS(5151), - [anon_sym___inline__] = ACTIONS(5151), - [anon_sym___forceinline] = ACTIONS(5151), - [anon_sym_thread_local] = ACTIONS(5151), - [anon_sym___thread] = ACTIONS(5151), - [anon_sym_const] = ACTIONS(5151), - [anon_sym_constexpr] = ACTIONS(5151), - [anon_sym_volatile] = ACTIONS(5151), - [anon_sym_restrict] = ACTIONS(5151), - [anon_sym___restrict__] = ACTIONS(5151), - [anon_sym__Atomic] = ACTIONS(5151), - [anon_sym__Noreturn] = ACTIONS(5151), - [anon_sym_noreturn] = ACTIONS(5151), - [anon_sym_mutable] = ACTIONS(5151), - [anon_sym_constinit] = ACTIONS(5151), - [anon_sym_consteval] = ACTIONS(5151), - [sym_primitive_type] = ACTIONS(5151), - [anon_sym_enum] = ACTIONS(5151), - [anon_sym_class] = ACTIONS(5151), - [anon_sym_struct] = ACTIONS(5151), - [anon_sym_union] = ACTIONS(5151), - [anon_sym_or] = ACTIONS(5151), - [anon_sym_and] = ACTIONS(5151), - [anon_sym_asm] = ACTIONS(5151), - [anon_sym___asm__] = ACTIONS(5151), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5151), - [anon_sym_decltype] = ACTIONS(5151), - [anon_sym_final] = ACTIONS(5151), - [anon_sym_override] = ACTIONS(5151), - [anon_sym_virtual] = ACTIONS(5151), - [anon_sym_alignas] = ACTIONS(5151), - [anon_sym_explicit] = ACTIONS(5151), - [anon_sym_typename] = ACTIONS(5151), - [anon_sym_template] = ACTIONS(5151), - [anon_sym_GT2] = ACTIONS(5153), - [anon_sym_operator] = ACTIONS(5151), - [anon_sym_try] = ACTIONS(5151), - [anon_sym_friend] = ACTIONS(5151), - [anon_sym_using] = ACTIONS(5151), - [anon_sym_concept] = ACTIONS(5151), - [anon_sym_requires] = ACTIONS(5151), + [1807] = { + [sym__expression] = STATE(4584), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [1951] = { - [sym_identifier] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LPAREN2] = ACTIONS(5153), - [anon_sym_TILDE] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [anon_sym_PIPE_PIPE] = ACTIONS(5153), - [anon_sym_AMP_AMP] = ACTIONS(5153), - [anon_sym_AMP] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5153), - [anon_sym___extension__] = ACTIONS(5151), - [anon_sym_extern] = ACTIONS(5151), - [anon_sym___attribute__] = ACTIONS(5151), - [anon_sym_COLON_COLON] = ACTIONS(5153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5153), - [anon_sym___declspec] = ACTIONS(5151), - [anon_sym___based] = ACTIONS(5151), - [anon_sym___cdecl] = ACTIONS(5151), - [anon_sym___clrcall] = ACTIONS(5151), - [anon_sym___stdcall] = ACTIONS(5151), - [anon_sym___fastcall] = ACTIONS(5151), - [anon_sym___thiscall] = ACTIONS(5151), - [anon_sym___vectorcall] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5153), - [anon_sym_signed] = ACTIONS(5151), - [anon_sym_unsigned] = ACTIONS(5151), - [anon_sym_long] = ACTIONS(5151), - [anon_sym_short] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_static] = ACTIONS(5151), - [anon_sym_register] = ACTIONS(5151), - [anon_sym_inline] = ACTIONS(5151), - [anon_sym___inline] = ACTIONS(5151), - [anon_sym___inline__] = ACTIONS(5151), - [anon_sym___forceinline] = ACTIONS(5151), - [anon_sym_thread_local] = ACTIONS(5151), - [anon_sym___thread] = ACTIONS(5151), - [anon_sym_const] = ACTIONS(5151), - [anon_sym_constexpr] = ACTIONS(5151), - [anon_sym_volatile] = ACTIONS(5151), - [anon_sym_restrict] = ACTIONS(5151), - [anon_sym___restrict__] = ACTIONS(5151), - [anon_sym__Atomic] = ACTIONS(5151), - [anon_sym__Noreturn] = ACTIONS(5151), - [anon_sym_noreturn] = ACTIONS(5151), - [anon_sym_mutable] = ACTIONS(5151), - [anon_sym_constinit] = ACTIONS(5151), - [anon_sym_consteval] = ACTIONS(5151), - [sym_primitive_type] = ACTIONS(5151), - [anon_sym_enum] = ACTIONS(5151), - [anon_sym_class] = ACTIONS(5151), - [anon_sym_struct] = ACTIONS(5151), - [anon_sym_union] = ACTIONS(5151), - [anon_sym_or] = ACTIONS(5151), - [anon_sym_and] = ACTIONS(5151), - [anon_sym_asm] = ACTIONS(5151), - [anon_sym___asm__] = ACTIONS(5151), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5151), - [anon_sym_decltype] = ACTIONS(5151), - [anon_sym_final] = ACTIONS(5151), - [anon_sym_override] = ACTIONS(5151), - [anon_sym_virtual] = ACTIONS(5151), - [anon_sym_alignas] = ACTIONS(5151), - [anon_sym_explicit] = ACTIONS(5151), - [anon_sym_typename] = ACTIONS(5151), - [anon_sym_template] = ACTIONS(5151), - [anon_sym_GT2] = ACTIONS(5153), - [anon_sym_operator] = ACTIONS(5151), - [anon_sym_try] = ACTIONS(5151), - [anon_sym_friend] = ACTIONS(5151), - [anon_sym_using] = ACTIONS(5151), - [anon_sym_concept] = ACTIONS(5151), - [anon_sym_requires] = ACTIONS(5151), + [1808] = { + [sym__expression] = STATE(4598), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [1952] = { - [sym_string_literal] = STATE(1952), - [sym_raw_string_literal] = STATE(1952), - [aux_sym_concatenated_string_repeat1] = STATE(1952), - [sym_identifier] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5158), - [anon_sym_COMMA] = ACTIONS(5158), - [anon_sym_RPAREN] = ACTIONS(5158), - [aux_sym_preproc_if_token2] = ACTIONS(5158), - [aux_sym_preproc_else_token1] = ACTIONS(5158), - [aux_sym_preproc_elif_token1] = ACTIONS(5160), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5158), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5158), - [anon_sym_LPAREN2] = ACTIONS(5158), - [anon_sym_DASH] = ACTIONS(5160), - [anon_sym_PLUS] = ACTIONS(5160), - [anon_sym_STAR] = ACTIONS(5160), - [anon_sym_SLASH] = ACTIONS(5160), - [anon_sym_PERCENT] = ACTIONS(5160), - [anon_sym_PIPE_PIPE] = ACTIONS(5158), - [anon_sym_AMP_AMP] = ACTIONS(5158), - [anon_sym_PIPE] = ACTIONS(5160), - [anon_sym_CARET] = ACTIONS(5160), - [anon_sym_AMP] = ACTIONS(5160), - [anon_sym_EQ_EQ] = ACTIONS(5158), - [anon_sym_BANG_EQ] = ACTIONS(5158), - [anon_sym_GT] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_LT] = ACTIONS(5160), - [anon_sym_LT_LT] = ACTIONS(5160), - [anon_sym_GT_GT] = ACTIONS(5160), - [anon_sym_SEMI] = ACTIONS(5158), - [anon_sym_RBRACE] = ACTIONS(5158), - [anon_sym_LBRACK] = ACTIONS(5158), - [anon_sym_RBRACK] = ACTIONS(5158), - [anon_sym_EQ] = ACTIONS(5160), - [anon_sym_COLON] = ACTIONS(5158), - [anon_sym_QMARK] = ACTIONS(5158), - [anon_sym_STAR_EQ] = ACTIONS(5158), - [anon_sym_SLASH_EQ] = ACTIONS(5158), - [anon_sym_PERCENT_EQ] = ACTIONS(5158), - [anon_sym_PLUS_EQ] = ACTIONS(5158), - [anon_sym_DASH_EQ] = ACTIONS(5158), - [anon_sym_LT_LT_EQ] = ACTIONS(5158), - [anon_sym_GT_GT_EQ] = ACTIONS(5158), - [anon_sym_AMP_EQ] = ACTIONS(5158), - [anon_sym_CARET_EQ] = ACTIONS(5158), - [anon_sym_PIPE_EQ] = ACTIONS(5158), - [anon_sym_and_eq] = ACTIONS(5160), - [anon_sym_or_eq] = ACTIONS(5160), - [anon_sym_xor_eq] = ACTIONS(5160), - [anon_sym_LT_EQ_GT] = ACTIONS(5158), - [anon_sym_or] = ACTIONS(5160), - [anon_sym_and] = ACTIONS(5160), - [anon_sym_bitor] = ACTIONS(5160), - [anon_sym_xor] = ACTIONS(5160), - [anon_sym_bitand] = ACTIONS(5160), - [anon_sym_not_eq] = ACTIONS(5160), - [anon_sym_DASH_DASH] = ACTIONS(5158), - [anon_sym_PLUS_PLUS] = ACTIONS(5158), - [anon_sym_DOT] = ACTIONS(5160), - [anon_sym_DOT_STAR] = ACTIONS(5158), - [anon_sym_DASH_GT] = ACTIONS(5158), - [anon_sym_L_DQUOTE] = ACTIONS(5162), - [anon_sym_u_DQUOTE] = ACTIONS(5162), - [anon_sym_U_DQUOTE] = ACTIONS(5162), - [anon_sym_u8_DQUOTE] = ACTIONS(5162), - [anon_sym_DQUOTE] = ACTIONS(5162), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5165), - [anon_sym_LR_DQUOTE] = ACTIONS(5165), - [anon_sym_uR_DQUOTE] = ACTIONS(5165), - [anon_sym_UR_DQUOTE] = ACTIONS(5165), - [anon_sym_u8R_DQUOTE] = ACTIONS(5165), - [sym_literal_suffix] = ACTIONS(5160), + [1809] = { + [sym__expression] = STATE(2733), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1953] = { - [sym_identifier] = ACTIONS(5168), - [anon_sym_COMMA] = ACTIONS(5170), - [anon_sym_RPAREN] = ACTIONS(5170), - [anon_sym_LPAREN2] = ACTIONS(5170), - [anon_sym_TILDE] = ACTIONS(5170), - [anon_sym_STAR] = ACTIONS(5170), - [anon_sym_PIPE_PIPE] = ACTIONS(5170), - [anon_sym_AMP_AMP] = ACTIONS(5170), - [anon_sym_AMP] = ACTIONS(5168), - [anon_sym_SEMI] = ACTIONS(5170), - [anon_sym___extension__] = ACTIONS(5168), - [anon_sym_extern] = ACTIONS(5168), - [anon_sym___attribute__] = ACTIONS(5168), - [anon_sym_COLON_COLON] = ACTIONS(5170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5170), - [anon_sym___declspec] = ACTIONS(5168), - [anon_sym___based] = ACTIONS(5168), - [anon_sym___cdecl] = ACTIONS(5168), - [anon_sym___clrcall] = ACTIONS(5168), - [anon_sym___stdcall] = ACTIONS(5168), - [anon_sym___fastcall] = ACTIONS(5168), - [anon_sym___thiscall] = ACTIONS(5168), - [anon_sym___vectorcall] = ACTIONS(5168), - [anon_sym_LBRACE] = ACTIONS(5170), - [anon_sym_signed] = ACTIONS(5168), - [anon_sym_unsigned] = ACTIONS(5168), - [anon_sym_long] = ACTIONS(5168), - [anon_sym_short] = ACTIONS(5168), - [anon_sym_LBRACK] = ACTIONS(5168), - [anon_sym_EQ] = ACTIONS(5170), - [anon_sym_static] = ACTIONS(5168), - [anon_sym_register] = ACTIONS(5168), - [anon_sym_inline] = ACTIONS(5168), - [anon_sym___inline] = ACTIONS(5168), - [anon_sym___inline__] = ACTIONS(5168), - [anon_sym___forceinline] = ACTIONS(5168), - [anon_sym_thread_local] = ACTIONS(5168), - [anon_sym___thread] = ACTIONS(5168), - [anon_sym_const] = ACTIONS(5168), - [anon_sym_constexpr] = ACTIONS(5168), - [anon_sym_volatile] = ACTIONS(5168), - [anon_sym_restrict] = ACTIONS(5168), - [anon_sym___restrict__] = ACTIONS(5168), - [anon_sym__Atomic] = ACTIONS(5168), - [anon_sym__Noreturn] = ACTIONS(5168), - [anon_sym_noreturn] = ACTIONS(5168), - [anon_sym_mutable] = ACTIONS(5168), - [anon_sym_constinit] = ACTIONS(5168), - [anon_sym_consteval] = ACTIONS(5168), - [sym_primitive_type] = ACTIONS(5168), - [anon_sym_enum] = ACTIONS(5168), - [anon_sym_class] = ACTIONS(5168), - [anon_sym_struct] = ACTIONS(5168), - [anon_sym_union] = ACTIONS(5168), - [anon_sym_or] = ACTIONS(5168), - [anon_sym_and] = ACTIONS(5168), - [anon_sym_asm] = ACTIONS(5168), - [anon_sym___asm__] = ACTIONS(5168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5168), - [anon_sym_decltype] = ACTIONS(5168), - [anon_sym_final] = ACTIONS(5168), - [anon_sym_override] = ACTIONS(5168), - [anon_sym_virtual] = ACTIONS(5168), - [anon_sym_alignas] = ACTIONS(5168), - [anon_sym_explicit] = ACTIONS(5168), - [anon_sym_typename] = ACTIONS(5168), - [anon_sym_template] = ACTIONS(5168), - [anon_sym_GT2] = ACTIONS(5170), - [anon_sym_operator] = ACTIONS(5168), - [anon_sym_try] = ACTIONS(5168), - [anon_sym_friend] = ACTIONS(5168), - [anon_sym_using] = ACTIONS(5168), - [anon_sym_concept] = ACTIONS(5168), - [anon_sym_requires] = ACTIONS(5168), + [1810] = { + [sym__expression] = STATE(3679), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [1954] = { - [sym_identifier] = ACTIONS(5172), - [anon_sym_COMMA] = ACTIONS(5174), - [anon_sym_RPAREN] = ACTIONS(5174), - [anon_sym_LPAREN2] = ACTIONS(5174), - [anon_sym_TILDE] = ACTIONS(5174), - [anon_sym_STAR] = ACTIONS(5174), - [anon_sym_PIPE_PIPE] = ACTIONS(5174), - [anon_sym_AMP_AMP] = ACTIONS(5174), - [anon_sym_AMP] = ACTIONS(5172), - [anon_sym_SEMI] = ACTIONS(5174), - [anon_sym___extension__] = ACTIONS(5172), - [anon_sym_extern] = ACTIONS(5172), - [anon_sym___attribute__] = ACTIONS(5172), - [anon_sym_COLON_COLON] = ACTIONS(5174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5174), - [anon_sym___declspec] = ACTIONS(5172), - [anon_sym___based] = ACTIONS(5172), - [anon_sym___cdecl] = ACTIONS(5172), - [anon_sym___clrcall] = ACTIONS(5172), - [anon_sym___stdcall] = ACTIONS(5172), - [anon_sym___fastcall] = ACTIONS(5172), - [anon_sym___thiscall] = ACTIONS(5172), - [anon_sym___vectorcall] = ACTIONS(5172), - [anon_sym_LBRACE] = ACTIONS(5174), - [anon_sym_signed] = ACTIONS(5172), - [anon_sym_unsigned] = ACTIONS(5172), - [anon_sym_long] = ACTIONS(5172), - [anon_sym_short] = ACTIONS(5172), - [anon_sym_LBRACK] = ACTIONS(5172), - [anon_sym_EQ] = ACTIONS(5174), - [anon_sym_static] = ACTIONS(5172), - [anon_sym_register] = ACTIONS(5172), - [anon_sym_inline] = ACTIONS(5172), - [anon_sym___inline] = ACTIONS(5172), - [anon_sym___inline__] = ACTIONS(5172), - [anon_sym___forceinline] = ACTIONS(5172), - [anon_sym_thread_local] = ACTIONS(5172), - [anon_sym___thread] = ACTIONS(5172), - [anon_sym_const] = ACTIONS(5172), - [anon_sym_constexpr] = ACTIONS(5172), - [anon_sym_volatile] = ACTIONS(5172), - [anon_sym_restrict] = ACTIONS(5172), - [anon_sym___restrict__] = ACTIONS(5172), - [anon_sym__Atomic] = ACTIONS(5172), - [anon_sym__Noreturn] = ACTIONS(5172), - [anon_sym_noreturn] = ACTIONS(5172), - [anon_sym_mutable] = ACTIONS(5172), - [anon_sym_constinit] = ACTIONS(5172), - [anon_sym_consteval] = ACTIONS(5172), - [sym_primitive_type] = ACTIONS(5172), - [anon_sym_enum] = ACTIONS(5172), - [anon_sym_class] = ACTIONS(5172), - [anon_sym_struct] = ACTIONS(5172), - [anon_sym_union] = ACTIONS(5172), - [anon_sym_or] = ACTIONS(5172), - [anon_sym_and] = ACTIONS(5172), - [anon_sym_asm] = ACTIONS(5172), - [anon_sym___asm__] = ACTIONS(5172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5172), - [anon_sym_decltype] = ACTIONS(5172), - [anon_sym_final] = ACTIONS(5172), - [anon_sym_override] = ACTIONS(5172), - [anon_sym_virtual] = ACTIONS(5172), - [anon_sym_alignas] = ACTIONS(5172), - [anon_sym_explicit] = ACTIONS(5172), - [anon_sym_typename] = ACTIONS(5172), - [anon_sym_template] = ACTIONS(5172), - [anon_sym_GT2] = ACTIONS(5174), - [anon_sym_operator] = ACTIONS(5172), - [anon_sym_try] = ACTIONS(5172), - [anon_sym_friend] = ACTIONS(5172), - [anon_sym_using] = ACTIONS(5172), - [anon_sym_concept] = ACTIONS(5172), - [anon_sym_requires] = ACTIONS(5172), - }, - [1955] = { - [sym_identifier] = ACTIONS(5176), - [anon_sym_COMMA] = ACTIONS(5178), - [anon_sym_RPAREN] = ACTIONS(5178), - [anon_sym_LPAREN2] = ACTIONS(5178), - [anon_sym_TILDE] = ACTIONS(5178), - [anon_sym_STAR] = ACTIONS(5178), - [anon_sym_PIPE_PIPE] = ACTIONS(5178), - [anon_sym_AMP_AMP] = ACTIONS(5178), - [anon_sym_AMP] = ACTIONS(5176), - [anon_sym_SEMI] = ACTIONS(5178), - [anon_sym___extension__] = ACTIONS(5176), - [anon_sym_extern] = ACTIONS(5176), - [anon_sym___attribute__] = ACTIONS(5176), - [anon_sym_COLON_COLON] = ACTIONS(5178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5178), - [anon_sym___declspec] = ACTIONS(5176), - [anon_sym___based] = ACTIONS(5176), - [anon_sym___cdecl] = ACTIONS(5176), - [anon_sym___clrcall] = ACTIONS(5176), - [anon_sym___stdcall] = ACTIONS(5176), - [anon_sym___fastcall] = ACTIONS(5176), - [anon_sym___thiscall] = ACTIONS(5176), - [anon_sym___vectorcall] = ACTIONS(5176), - [anon_sym_LBRACE] = ACTIONS(5178), - [anon_sym_signed] = ACTIONS(5176), - [anon_sym_unsigned] = ACTIONS(5176), - [anon_sym_long] = ACTIONS(5176), - [anon_sym_short] = ACTIONS(5176), - [anon_sym_LBRACK] = ACTIONS(5176), - [anon_sym_EQ] = ACTIONS(5178), - [anon_sym_static] = ACTIONS(5176), - [anon_sym_register] = ACTIONS(5176), - [anon_sym_inline] = ACTIONS(5176), - [anon_sym___inline] = ACTIONS(5176), - [anon_sym___inline__] = ACTIONS(5176), - [anon_sym___forceinline] = ACTIONS(5176), - [anon_sym_thread_local] = ACTIONS(5176), - [anon_sym___thread] = ACTIONS(5176), - [anon_sym_const] = ACTIONS(5176), - [anon_sym_constexpr] = ACTIONS(5176), - [anon_sym_volatile] = ACTIONS(5176), - [anon_sym_restrict] = ACTIONS(5176), - [anon_sym___restrict__] = ACTIONS(5176), - [anon_sym__Atomic] = ACTIONS(5176), - [anon_sym__Noreturn] = ACTIONS(5176), - [anon_sym_noreturn] = ACTIONS(5176), - [anon_sym_mutable] = ACTIONS(5176), - [anon_sym_constinit] = ACTIONS(5176), - [anon_sym_consteval] = ACTIONS(5176), - [sym_primitive_type] = ACTIONS(5176), - [anon_sym_enum] = ACTIONS(5176), - [anon_sym_class] = ACTIONS(5176), - [anon_sym_struct] = ACTIONS(5176), - [anon_sym_union] = ACTIONS(5176), - [anon_sym_or] = ACTIONS(5176), - [anon_sym_and] = ACTIONS(5176), - [anon_sym_asm] = ACTIONS(5176), - [anon_sym___asm__] = ACTIONS(5176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5176), - [anon_sym_decltype] = ACTIONS(5176), - [anon_sym_final] = ACTIONS(5176), - [anon_sym_override] = ACTIONS(5176), - [anon_sym_virtual] = ACTIONS(5176), - [anon_sym_alignas] = ACTIONS(5176), - [anon_sym_explicit] = ACTIONS(5176), - [anon_sym_typename] = ACTIONS(5176), - [anon_sym_template] = ACTIONS(5176), - [anon_sym_GT2] = ACTIONS(5178), - [anon_sym_operator] = ACTIONS(5176), - [anon_sym_try] = ACTIONS(5176), - [anon_sym_friend] = ACTIONS(5176), - [anon_sym_using] = ACTIONS(5176), - [anon_sym_concept] = ACTIONS(5176), - [anon_sym_requires] = ACTIONS(5176), - }, - [1956] = { - [sym_identifier] = ACTIONS(5180), - [anon_sym_COMMA] = ACTIONS(5182), - [anon_sym_RPAREN] = ACTIONS(5182), - [anon_sym_LPAREN2] = ACTIONS(5182), - [anon_sym_TILDE] = ACTIONS(5182), - [anon_sym_STAR] = ACTIONS(5182), - [anon_sym_PIPE_PIPE] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5182), - [anon_sym_AMP] = ACTIONS(5180), - [anon_sym_SEMI] = ACTIONS(5182), - [anon_sym___extension__] = ACTIONS(5180), - [anon_sym_extern] = ACTIONS(5180), - [anon_sym___attribute__] = ACTIONS(5180), - [anon_sym_COLON_COLON] = ACTIONS(5182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5182), - [anon_sym___declspec] = ACTIONS(5180), - [anon_sym___based] = ACTIONS(5180), - [anon_sym___cdecl] = ACTIONS(5180), - [anon_sym___clrcall] = ACTIONS(5180), - [anon_sym___stdcall] = ACTIONS(5180), - [anon_sym___fastcall] = ACTIONS(5180), - [anon_sym___thiscall] = ACTIONS(5180), - [anon_sym___vectorcall] = ACTIONS(5180), - [anon_sym_LBRACE] = ACTIONS(5182), - [anon_sym_signed] = ACTIONS(5180), - [anon_sym_unsigned] = ACTIONS(5180), - [anon_sym_long] = ACTIONS(5180), - [anon_sym_short] = ACTIONS(5180), - [anon_sym_LBRACK] = ACTIONS(5180), - [anon_sym_EQ] = ACTIONS(5182), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_register] = ACTIONS(5180), - [anon_sym_inline] = ACTIONS(5180), - [anon_sym___inline] = ACTIONS(5180), - [anon_sym___inline__] = ACTIONS(5180), - [anon_sym___forceinline] = ACTIONS(5180), - [anon_sym_thread_local] = ACTIONS(5180), - [anon_sym___thread] = ACTIONS(5180), - [anon_sym_const] = ACTIONS(5180), - [anon_sym_constexpr] = ACTIONS(5180), - [anon_sym_volatile] = ACTIONS(5180), - [anon_sym_restrict] = ACTIONS(5180), - [anon_sym___restrict__] = ACTIONS(5180), - [anon_sym__Atomic] = ACTIONS(5180), - [anon_sym__Noreturn] = ACTIONS(5180), - [anon_sym_noreturn] = ACTIONS(5180), - [anon_sym_mutable] = ACTIONS(5180), - [anon_sym_constinit] = ACTIONS(5180), - [anon_sym_consteval] = ACTIONS(5180), - [sym_primitive_type] = ACTIONS(5180), - [anon_sym_enum] = ACTIONS(5180), - [anon_sym_class] = ACTIONS(5180), - [anon_sym_struct] = ACTIONS(5180), - [anon_sym_union] = ACTIONS(5180), - [anon_sym_or] = ACTIONS(5180), - [anon_sym_and] = ACTIONS(5180), - [anon_sym_asm] = ACTIONS(5180), - [anon_sym___asm__] = ACTIONS(5180), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5180), - [anon_sym_decltype] = ACTIONS(5180), - [anon_sym_final] = ACTIONS(5180), - [anon_sym_override] = ACTIONS(5180), - [anon_sym_virtual] = ACTIONS(5180), - [anon_sym_alignas] = ACTIONS(5180), - [anon_sym_explicit] = ACTIONS(5180), - [anon_sym_typename] = ACTIONS(5180), - [anon_sym_template] = ACTIONS(5180), - [anon_sym_GT2] = ACTIONS(5182), - [anon_sym_operator] = ACTIONS(5180), - [anon_sym_try] = ACTIONS(5180), - [anon_sym_friend] = ACTIONS(5180), - [anon_sym_using] = ACTIONS(5180), - [anon_sym_concept] = ACTIONS(5180), - [anon_sym_requires] = ACTIONS(5180), - }, - [1957] = { - [sym_identifier] = ACTIONS(5184), - [anon_sym_COMMA] = ACTIONS(5186), - [anon_sym_RPAREN] = ACTIONS(5186), - [anon_sym_LPAREN2] = ACTIONS(5186), - [anon_sym_TILDE] = ACTIONS(5186), - [anon_sym_STAR] = ACTIONS(5186), - [anon_sym_PIPE_PIPE] = ACTIONS(5186), - [anon_sym_AMP_AMP] = ACTIONS(5186), - [anon_sym_AMP] = ACTIONS(5184), - [anon_sym_SEMI] = ACTIONS(5186), - [anon_sym___extension__] = ACTIONS(5184), - [anon_sym_extern] = ACTIONS(5184), - [anon_sym___attribute__] = ACTIONS(5184), - [anon_sym_COLON_COLON] = ACTIONS(5186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5186), - [anon_sym___declspec] = ACTIONS(5184), - [anon_sym___based] = ACTIONS(5184), - [anon_sym___cdecl] = ACTIONS(5184), - [anon_sym___clrcall] = ACTIONS(5184), - [anon_sym___stdcall] = ACTIONS(5184), - [anon_sym___fastcall] = ACTIONS(5184), - [anon_sym___thiscall] = ACTIONS(5184), - [anon_sym___vectorcall] = ACTIONS(5184), - [anon_sym_LBRACE] = ACTIONS(5186), - [anon_sym_signed] = ACTIONS(5184), - [anon_sym_unsigned] = ACTIONS(5184), - [anon_sym_long] = ACTIONS(5184), - [anon_sym_short] = ACTIONS(5184), - [anon_sym_LBRACK] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(5186), - [anon_sym_static] = ACTIONS(5184), - [anon_sym_register] = ACTIONS(5184), - [anon_sym_inline] = ACTIONS(5184), - [anon_sym___inline] = ACTIONS(5184), - [anon_sym___inline__] = ACTIONS(5184), - [anon_sym___forceinline] = ACTIONS(5184), - [anon_sym_thread_local] = ACTIONS(5184), - [anon_sym___thread] = ACTIONS(5184), - [anon_sym_const] = ACTIONS(5184), - [anon_sym_constexpr] = ACTIONS(5184), - [anon_sym_volatile] = ACTIONS(5184), - [anon_sym_restrict] = ACTIONS(5184), - [anon_sym___restrict__] = ACTIONS(5184), - [anon_sym__Atomic] = ACTIONS(5184), - [anon_sym__Noreturn] = ACTIONS(5184), - [anon_sym_noreturn] = ACTIONS(5184), - [anon_sym_mutable] = ACTIONS(5184), - [anon_sym_constinit] = ACTIONS(5184), - [anon_sym_consteval] = ACTIONS(5184), - [sym_primitive_type] = ACTIONS(5184), - [anon_sym_enum] = ACTIONS(5184), - [anon_sym_class] = ACTIONS(5184), - [anon_sym_struct] = ACTIONS(5184), - [anon_sym_union] = ACTIONS(5184), - [anon_sym_or] = ACTIONS(5184), - [anon_sym_and] = ACTIONS(5184), - [anon_sym_asm] = ACTIONS(5184), - [anon_sym___asm__] = ACTIONS(5184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5184), - [anon_sym_decltype] = ACTIONS(5184), - [anon_sym_final] = ACTIONS(5184), - [anon_sym_override] = ACTIONS(5184), - [anon_sym_virtual] = ACTIONS(5184), - [anon_sym_alignas] = ACTIONS(5184), - [anon_sym_explicit] = ACTIONS(5184), - [anon_sym_typename] = ACTIONS(5184), - [anon_sym_template] = ACTIONS(5184), - [anon_sym_GT2] = ACTIONS(5186), - [anon_sym_operator] = ACTIONS(5184), - [anon_sym_try] = ACTIONS(5184), - [anon_sym_friend] = ACTIONS(5184), - [anon_sym_using] = ACTIONS(5184), - [anon_sym_concept] = ACTIONS(5184), - [anon_sym_requires] = ACTIONS(5184), - }, - [1958] = { - [sym_identifier] = ACTIONS(5188), - [anon_sym_COMMA] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(5190), - [anon_sym_LPAREN2] = ACTIONS(5190), - [anon_sym_TILDE] = ACTIONS(5190), - [anon_sym_STAR] = ACTIONS(5190), - [anon_sym_PIPE_PIPE] = ACTIONS(5190), - [anon_sym_AMP_AMP] = ACTIONS(5190), - [anon_sym_AMP] = ACTIONS(5188), - [anon_sym_SEMI] = ACTIONS(5190), - [anon_sym___extension__] = ACTIONS(5188), - [anon_sym_extern] = ACTIONS(5188), - [anon_sym___attribute__] = ACTIONS(5188), - [anon_sym_COLON_COLON] = ACTIONS(5190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5190), - [anon_sym___declspec] = ACTIONS(5188), - [anon_sym___based] = ACTIONS(5188), - [anon_sym___cdecl] = ACTIONS(5188), - [anon_sym___clrcall] = ACTIONS(5188), - [anon_sym___stdcall] = ACTIONS(5188), - [anon_sym___fastcall] = ACTIONS(5188), - [anon_sym___thiscall] = ACTIONS(5188), - [anon_sym___vectorcall] = ACTIONS(5188), - [anon_sym_LBRACE] = ACTIONS(5190), - [anon_sym_signed] = ACTIONS(5188), - [anon_sym_unsigned] = ACTIONS(5188), - [anon_sym_long] = ACTIONS(5188), - [anon_sym_short] = ACTIONS(5188), - [anon_sym_LBRACK] = ACTIONS(5188), - [anon_sym_EQ] = ACTIONS(5190), - [anon_sym_static] = ACTIONS(5188), - [anon_sym_register] = ACTIONS(5188), - [anon_sym_inline] = ACTIONS(5188), - [anon_sym___inline] = ACTIONS(5188), - [anon_sym___inline__] = ACTIONS(5188), - [anon_sym___forceinline] = ACTIONS(5188), - [anon_sym_thread_local] = ACTIONS(5188), - [anon_sym___thread] = ACTIONS(5188), - [anon_sym_const] = ACTIONS(5188), - [anon_sym_constexpr] = ACTIONS(5188), - [anon_sym_volatile] = ACTIONS(5188), - [anon_sym_restrict] = ACTIONS(5188), - [anon_sym___restrict__] = ACTIONS(5188), - [anon_sym__Atomic] = ACTIONS(5188), - [anon_sym__Noreturn] = ACTIONS(5188), - [anon_sym_noreturn] = ACTIONS(5188), - [anon_sym_mutable] = ACTIONS(5188), - [anon_sym_constinit] = ACTIONS(5188), - [anon_sym_consteval] = ACTIONS(5188), - [sym_primitive_type] = ACTIONS(5188), - [anon_sym_enum] = ACTIONS(5188), - [anon_sym_class] = ACTIONS(5188), - [anon_sym_struct] = ACTIONS(5188), - [anon_sym_union] = ACTIONS(5188), - [anon_sym_or] = ACTIONS(5188), - [anon_sym_and] = ACTIONS(5188), - [anon_sym_asm] = ACTIONS(5188), - [anon_sym___asm__] = ACTIONS(5188), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5188), - [anon_sym_decltype] = ACTIONS(5188), - [anon_sym_final] = ACTIONS(5188), - [anon_sym_override] = ACTIONS(5188), - [anon_sym_virtual] = ACTIONS(5188), - [anon_sym_alignas] = ACTIONS(5188), - [anon_sym_explicit] = ACTIONS(5188), - [anon_sym_typename] = ACTIONS(5188), - [anon_sym_template] = ACTIONS(5188), - [anon_sym_GT2] = ACTIONS(5190), - [anon_sym_operator] = ACTIONS(5188), - [anon_sym_try] = ACTIONS(5188), - [anon_sym_friend] = ACTIONS(5188), - [anon_sym_using] = ACTIONS(5188), - [anon_sym_concept] = ACTIONS(5188), - [anon_sym_requires] = ACTIONS(5188), - }, - [1959] = { - [sym_identifier] = ACTIONS(5192), - [anon_sym_COMMA] = ACTIONS(5194), - [anon_sym_RPAREN] = ACTIONS(5194), - [anon_sym_LPAREN2] = ACTIONS(5194), - [anon_sym_TILDE] = ACTIONS(5194), - [anon_sym_STAR] = ACTIONS(5194), - [anon_sym_PIPE_PIPE] = ACTIONS(5194), - [anon_sym_AMP_AMP] = ACTIONS(5194), - [anon_sym_AMP] = ACTIONS(5192), - [anon_sym_SEMI] = ACTIONS(5194), - [anon_sym___extension__] = ACTIONS(5192), - [anon_sym_extern] = ACTIONS(5192), - [anon_sym___attribute__] = ACTIONS(5192), - [anon_sym_COLON_COLON] = ACTIONS(5194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5194), - [anon_sym___declspec] = ACTIONS(5192), - [anon_sym___based] = ACTIONS(5192), - [anon_sym___cdecl] = ACTIONS(5192), - [anon_sym___clrcall] = ACTIONS(5192), - [anon_sym___stdcall] = ACTIONS(5192), - [anon_sym___fastcall] = ACTIONS(5192), - [anon_sym___thiscall] = ACTIONS(5192), - [anon_sym___vectorcall] = ACTIONS(5192), - [anon_sym_LBRACE] = ACTIONS(5194), - [anon_sym_signed] = ACTIONS(5192), - [anon_sym_unsigned] = ACTIONS(5192), - [anon_sym_long] = ACTIONS(5192), - [anon_sym_short] = ACTIONS(5192), - [anon_sym_LBRACK] = ACTIONS(5192), - [anon_sym_EQ] = ACTIONS(5194), - [anon_sym_static] = ACTIONS(5192), - [anon_sym_register] = ACTIONS(5192), - [anon_sym_inline] = ACTIONS(5192), - [anon_sym___inline] = ACTIONS(5192), - [anon_sym___inline__] = ACTIONS(5192), - [anon_sym___forceinline] = ACTIONS(5192), - [anon_sym_thread_local] = ACTIONS(5192), - [anon_sym___thread] = ACTIONS(5192), - [anon_sym_const] = ACTIONS(5192), - [anon_sym_constexpr] = ACTIONS(5192), - [anon_sym_volatile] = ACTIONS(5192), - [anon_sym_restrict] = ACTIONS(5192), - [anon_sym___restrict__] = ACTIONS(5192), - [anon_sym__Atomic] = ACTIONS(5192), - [anon_sym__Noreturn] = ACTIONS(5192), - [anon_sym_noreturn] = ACTIONS(5192), - [anon_sym_mutable] = ACTIONS(5192), - [anon_sym_constinit] = ACTIONS(5192), - [anon_sym_consteval] = ACTIONS(5192), - [sym_primitive_type] = ACTIONS(5192), - [anon_sym_enum] = ACTIONS(5192), - [anon_sym_class] = ACTIONS(5192), - [anon_sym_struct] = ACTIONS(5192), - [anon_sym_union] = ACTIONS(5192), - [anon_sym_or] = ACTIONS(5192), - [anon_sym_and] = ACTIONS(5192), - [anon_sym_asm] = ACTIONS(5192), - [anon_sym___asm__] = ACTIONS(5192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5192), - [anon_sym_decltype] = ACTIONS(5192), - [anon_sym_final] = ACTIONS(5192), - [anon_sym_override] = ACTIONS(5192), - [anon_sym_virtual] = ACTIONS(5192), - [anon_sym_alignas] = ACTIONS(5192), - [anon_sym_explicit] = ACTIONS(5192), - [anon_sym_typename] = ACTIONS(5192), - [anon_sym_template] = ACTIONS(5192), - [anon_sym_GT2] = ACTIONS(5194), - [anon_sym_operator] = ACTIONS(5192), - [anon_sym_try] = ACTIONS(5192), - [anon_sym_friend] = ACTIONS(5192), - [anon_sym_using] = ACTIONS(5192), - [anon_sym_concept] = ACTIONS(5192), - [anon_sym_requires] = ACTIONS(5192), - }, - [1960] = { - [sym_string_literal] = STATE(1952), - [sym_raw_string_literal] = STATE(1952), - [aux_sym_concatenated_string_repeat1] = STATE(1952), - [sym_identifier] = ACTIONS(5196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5198), - [anon_sym_COMMA] = ACTIONS(5198), - [anon_sym_RPAREN] = ACTIONS(5198), - [aux_sym_preproc_if_token2] = ACTIONS(5198), - [aux_sym_preproc_else_token1] = ACTIONS(5198), - [aux_sym_preproc_elif_token1] = ACTIONS(5200), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5198), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5198), - [anon_sym_LPAREN2] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5200), - [anon_sym_PLUS] = ACTIONS(5200), - [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_SLASH] = ACTIONS(5200), - [anon_sym_PERCENT] = ACTIONS(5200), - [anon_sym_PIPE_PIPE] = ACTIONS(5198), - [anon_sym_AMP_AMP] = ACTIONS(5198), - [anon_sym_PIPE] = ACTIONS(5200), - [anon_sym_CARET] = ACTIONS(5200), - [anon_sym_AMP] = ACTIONS(5200), - [anon_sym_EQ_EQ] = ACTIONS(5198), - [anon_sym_BANG_EQ] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5200), - [anon_sym_GT_EQ] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5200), - [anon_sym_LT] = ACTIONS(5200), - [anon_sym_LT_LT] = ACTIONS(5200), - [anon_sym_GT_GT] = ACTIONS(5200), - [anon_sym_SEMI] = ACTIONS(5198), - [anon_sym_RBRACE] = ACTIONS(5198), - [anon_sym_LBRACK] = ACTIONS(5198), - [anon_sym_RBRACK] = ACTIONS(5198), - [anon_sym_EQ] = ACTIONS(5200), - [anon_sym_COLON] = ACTIONS(5198), - [anon_sym_QMARK] = ACTIONS(5198), - [anon_sym_STAR_EQ] = ACTIONS(5198), - [anon_sym_SLASH_EQ] = ACTIONS(5198), - [anon_sym_PERCENT_EQ] = ACTIONS(5198), - [anon_sym_PLUS_EQ] = ACTIONS(5198), - [anon_sym_DASH_EQ] = ACTIONS(5198), - [anon_sym_LT_LT_EQ] = ACTIONS(5198), - [anon_sym_GT_GT_EQ] = ACTIONS(5198), - [anon_sym_AMP_EQ] = ACTIONS(5198), - [anon_sym_CARET_EQ] = ACTIONS(5198), - [anon_sym_PIPE_EQ] = ACTIONS(5198), - [anon_sym_and_eq] = ACTIONS(5200), - [anon_sym_or_eq] = ACTIONS(5200), - [anon_sym_xor_eq] = ACTIONS(5200), - [anon_sym_LT_EQ_GT] = ACTIONS(5198), - [anon_sym_or] = ACTIONS(5200), - [anon_sym_and] = ACTIONS(5200), - [anon_sym_bitor] = ACTIONS(5200), - [anon_sym_xor] = ACTIONS(5200), - [anon_sym_bitand] = ACTIONS(5200), - [anon_sym_not_eq] = ACTIONS(5200), - [anon_sym_DASH_DASH] = ACTIONS(5198), - [anon_sym_PLUS_PLUS] = ACTIONS(5198), - [anon_sym_DOT] = ACTIONS(5200), - [anon_sym_DOT_STAR] = ACTIONS(5198), - [anon_sym_DASH_GT] = ACTIONS(5198), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [sym_literal_suffix] = ACTIONS(5200), - }, - [1961] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4548), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7840), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_type_parameter_declaration] = STATE(7840), - [sym_variadic_type_parameter_declaration] = STATE(7840), - [sym_optional_type_parameter_declaration] = STATE(7840), - [sym_template_template_parameter_declaration] = STATE(7840), - [sym_optional_parameter_declaration] = STATE(7840), - [sym_variadic_parameter_declaration] = STATE(7840), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(5135), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(5137), - [anon_sym_template] = ACTIONS(5139), - [anon_sym_GT2] = ACTIONS(5202), - }, - [1962] = { - [sym_identifier] = ACTIONS(5204), - [anon_sym_COMMA] = ACTIONS(5206), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_LPAREN2] = ACTIONS(5206), - [anon_sym_TILDE] = ACTIONS(5206), - [anon_sym_STAR] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5204), - [anon_sym_SEMI] = ACTIONS(5206), - [anon_sym___extension__] = ACTIONS(5204), - [anon_sym_extern] = ACTIONS(5204), - [anon_sym___attribute__] = ACTIONS(5204), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5206), - [anon_sym___declspec] = ACTIONS(5204), - [anon_sym___based] = ACTIONS(5204), - [anon_sym___cdecl] = ACTIONS(5204), - [anon_sym___clrcall] = ACTIONS(5204), - [anon_sym___stdcall] = ACTIONS(5204), - [anon_sym___fastcall] = ACTIONS(5204), - [anon_sym___thiscall] = ACTIONS(5204), - [anon_sym___vectorcall] = ACTIONS(5204), - [anon_sym_LBRACE] = ACTIONS(5206), - [anon_sym_signed] = ACTIONS(5204), - [anon_sym_unsigned] = ACTIONS(5204), - [anon_sym_long] = ACTIONS(5204), - [anon_sym_short] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(5204), - [anon_sym_EQ] = ACTIONS(5206), - [anon_sym_static] = ACTIONS(5204), - [anon_sym_register] = ACTIONS(5204), - [anon_sym_inline] = ACTIONS(5204), - [anon_sym___inline] = ACTIONS(5204), - [anon_sym___inline__] = ACTIONS(5204), - [anon_sym___forceinline] = ACTIONS(5204), - [anon_sym_thread_local] = ACTIONS(5204), - [anon_sym___thread] = ACTIONS(5204), - [anon_sym_const] = ACTIONS(5204), - [anon_sym_constexpr] = ACTIONS(5204), - [anon_sym_volatile] = ACTIONS(5204), - [anon_sym_restrict] = ACTIONS(5204), - [anon_sym___restrict__] = ACTIONS(5204), - [anon_sym__Atomic] = ACTIONS(5204), - [anon_sym__Noreturn] = ACTIONS(5204), - [anon_sym_noreturn] = ACTIONS(5204), - [anon_sym_mutable] = ACTIONS(5204), - [anon_sym_constinit] = ACTIONS(5204), - [anon_sym_consteval] = ACTIONS(5204), - [sym_primitive_type] = ACTIONS(5204), - [anon_sym_enum] = ACTIONS(5204), - [anon_sym_class] = ACTIONS(5204), - [anon_sym_struct] = ACTIONS(5204), - [anon_sym_union] = ACTIONS(5204), - [anon_sym_or] = ACTIONS(5204), - [anon_sym_and] = ACTIONS(5204), - [anon_sym_asm] = ACTIONS(5204), - [anon_sym___asm__] = ACTIONS(5204), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5204), - [anon_sym_decltype] = ACTIONS(5204), - [anon_sym_final] = ACTIONS(5204), - [anon_sym_override] = ACTIONS(5204), - [anon_sym_virtual] = ACTIONS(5204), - [anon_sym_alignas] = ACTIONS(5204), - [anon_sym_explicit] = ACTIONS(5204), - [anon_sym_typename] = ACTIONS(5204), - [anon_sym_template] = ACTIONS(5204), - [anon_sym_GT2] = ACTIONS(5206), - [anon_sym_operator] = ACTIONS(5204), - [anon_sym_try] = ACTIONS(5204), - [anon_sym_friend] = ACTIONS(5204), - [anon_sym_using] = ACTIONS(5204), - [anon_sym_concept] = ACTIONS(5204), - [anon_sym_requires] = ACTIONS(5204), - }, - [1963] = { - [sym_identifier] = ACTIONS(5208), - [anon_sym_COMMA] = ACTIONS(5210), - [anon_sym_RPAREN] = ACTIONS(5210), - [anon_sym_LPAREN2] = ACTIONS(5210), - [anon_sym_TILDE] = ACTIONS(5210), - [anon_sym_STAR] = ACTIONS(5210), - [anon_sym_PIPE_PIPE] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5208), - [anon_sym_SEMI] = ACTIONS(5210), - [anon_sym___extension__] = ACTIONS(5208), - [anon_sym_extern] = ACTIONS(5208), - [anon_sym___attribute__] = ACTIONS(5208), - [anon_sym_COLON_COLON] = ACTIONS(5210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5210), - [anon_sym___declspec] = ACTIONS(5208), - [anon_sym___based] = ACTIONS(5208), - [anon_sym___cdecl] = ACTIONS(5208), - [anon_sym___clrcall] = ACTIONS(5208), - [anon_sym___stdcall] = ACTIONS(5208), - [anon_sym___fastcall] = ACTIONS(5208), - [anon_sym___thiscall] = ACTIONS(5208), - [anon_sym___vectorcall] = ACTIONS(5208), - [anon_sym_LBRACE] = ACTIONS(5210), - [anon_sym_signed] = ACTIONS(5208), - [anon_sym_unsigned] = ACTIONS(5208), - [anon_sym_long] = ACTIONS(5208), - [anon_sym_short] = ACTIONS(5208), - [anon_sym_LBRACK] = ACTIONS(5208), - [anon_sym_EQ] = ACTIONS(5210), - [anon_sym_static] = ACTIONS(5208), - [anon_sym_register] = ACTIONS(5208), - [anon_sym_inline] = ACTIONS(5208), - [anon_sym___inline] = ACTIONS(5208), - [anon_sym___inline__] = ACTIONS(5208), - [anon_sym___forceinline] = ACTIONS(5208), - [anon_sym_thread_local] = ACTIONS(5208), - [anon_sym___thread] = ACTIONS(5208), - [anon_sym_const] = ACTIONS(5208), - [anon_sym_constexpr] = ACTIONS(5208), - [anon_sym_volatile] = ACTIONS(5208), - [anon_sym_restrict] = ACTIONS(5208), - [anon_sym___restrict__] = ACTIONS(5208), - [anon_sym__Atomic] = ACTIONS(5208), - [anon_sym__Noreturn] = ACTIONS(5208), - [anon_sym_noreturn] = ACTIONS(5208), - [anon_sym_mutable] = ACTIONS(5208), - [anon_sym_constinit] = ACTIONS(5208), - [anon_sym_consteval] = ACTIONS(5208), - [sym_primitive_type] = ACTIONS(5208), - [anon_sym_enum] = ACTIONS(5208), - [anon_sym_class] = ACTIONS(5208), - [anon_sym_struct] = ACTIONS(5208), - [anon_sym_union] = ACTIONS(5208), - [anon_sym_or] = ACTIONS(5208), - [anon_sym_and] = ACTIONS(5208), - [anon_sym_asm] = ACTIONS(5208), - [anon_sym___asm__] = ACTIONS(5208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5208), - [anon_sym_decltype] = ACTIONS(5208), - [anon_sym_final] = ACTIONS(5208), - [anon_sym_override] = ACTIONS(5208), - [anon_sym_virtual] = ACTIONS(5208), - [anon_sym_alignas] = ACTIONS(5208), - [anon_sym_explicit] = ACTIONS(5208), - [anon_sym_typename] = ACTIONS(5208), - [anon_sym_template] = ACTIONS(5208), - [anon_sym_GT2] = ACTIONS(5210), - [anon_sym_operator] = ACTIONS(5208), - [anon_sym_try] = ACTIONS(5208), - [anon_sym_friend] = ACTIONS(5208), - [anon_sym_using] = ACTIONS(5208), - [anon_sym_concept] = ACTIONS(5208), - [anon_sym_requires] = ACTIONS(5208), - }, - [1964] = { - [sym_string_literal] = STATE(1960), - [sym_raw_string_literal] = STATE(1960), - [aux_sym_concatenated_string_repeat1] = STATE(1960), - [sym_identifier] = ACTIONS(5212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5214), - [anon_sym_COMMA] = ACTIONS(5214), - [anon_sym_RPAREN] = ACTIONS(5214), - [aux_sym_preproc_if_token2] = ACTIONS(5214), - [aux_sym_preproc_else_token1] = ACTIONS(5214), - [aux_sym_preproc_elif_token1] = ACTIONS(5216), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5214), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5214), - [anon_sym_LPAREN2] = ACTIONS(5214), - [anon_sym_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5216), - [anon_sym_STAR] = ACTIONS(5216), - [anon_sym_SLASH] = ACTIONS(5216), - [anon_sym_PERCENT] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_CARET] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5214), - [anon_sym_BANG_EQ] = ACTIONS(5214), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5214), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5214), - [anon_sym_RBRACE] = ACTIONS(5214), - [anon_sym_LBRACK] = ACTIONS(5214), - [anon_sym_RBRACK] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(5216), - [anon_sym_COLON] = ACTIONS(5214), - [anon_sym_QMARK] = ACTIONS(5214), - [anon_sym_STAR_EQ] = ACTIONS(5214), - [anon_sym_SLASH_EQ] = ACTIONS(5214), - [anon_sym_PERCENT_EQ] = ACTIONS(5214), - [anon_sym_PLUS_EQ] = ACTIONS(5214), - [anon_sym_DASH_EQ] = ACTIONS(5214), - [anon_sym_LT_LT_EQ] = ACTIONS(5214), - [anon_sym_GT_GT_EQ] = ACTIONS(5214), - [anon_sym_AMP_EQ] = ACTIONS(5214), - [anon_sym_CARET_EQ] = ACTIONS(5214), - [anon_sym_PIPE_EQ] = ACTIONS(5214), - [anon_sym_and_eq] = ACTIONS(5216), - [anon_sym_or_eq] = ACTIONS(5216), - [anon_sym_xor_eq] = ACTIONS(5216), - [anon_sym_LT_EQ_GT] = ACTIONS(5214), - [anon_sym_or] = ACTIONS(5216), - [anon_sym_and] = ACTIONS(5216), - [anon_sym_bitor] = ACTIONS(5216), - [anon_sym_xor] = ACTIONS(5216), - [anon_sym_bitand] = ACTIONS(5216), - [anon_sym_not_eq] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5214), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_DOT_STAR] = ACTIONS(5214), - [anon_sym_DASH_GT] = ACTIONS(5214), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [sym_literal_suffix] = ACTIONS(5216), - }, - [1965] = { - [sym_identifier] = ACTIONS(5218), - [anon_sym_COMMA] = ACTIONS(5220), - [anon_sym_RPAREN] = ACTIONS(5220), - [anon_sym_LPAREN2] = ACTIONS(5220), - [anon_sym_TILDE] = ACTIONS(5220), - [anon_sym_STAR] = ACTIONS(5220), - [anon_sym_PIPE_PIPE] = ACTIONS(5220), - [anon_sym_AMP_AMP] = ACTIONS(5220), - [anon_sym_AMP] = ACTIONS(5218), - [anon_sym_SEMI] = ACTIONS(5220), - [anon_sym___extension__] = ACTIONS(5218), - [anon_sym_extern] = ACTIONS(5218), - [anon_sym___attribute__] = ACTIONS(5218), - [anon_sym_COLON_COLON] = ACTIONS(5220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5220), - [anon_sym___declspec] = ACTIONS(5218), - [anon_sym___based] = ACTIONS(5218), - [anon_sym___cdecl] = ACTIONS(5218), - [anon_sym___clrcall] = ACTIONS(5218), - [anon_sym___stdcall] = ACTIONS(5218), - [anon_sym___fastcall] = ACTIONS(5218), - [anon_sym___thiscall] = ACTIONS(5218), - [anon_sym___vectorcall] = ACTIONS(5218), - [anon_sym_LBRACE] = ACTIONS(5220), - [anon_sym_signed] = ACTIONS(5218), - [anon_sym_unsigned] = ACTIONS(5218), - [anon_sym_long] = ACTIONS(5218), - [anon_sym_short] = ACTIONS(5218), - [anon_sym_LBRACK] = ACTIONS(5218), - [anon_sym_EQ] = ACTIONS(5220), - [anon_sym_static] = ACTIONS(5218), - [anon_sym_register] = ACTIONS(5218), - [anon_sym_inline] = ACTIONS(5218), - [anon_sym___inline] = ACTIONS(5218), - [anon_sym___inline__] = ACTIONS(5218), - [anon_sym___forceinline] = ACTIONS(5218), - [anon_sym_thread_local] = ACTIONS(5218), - [anon_sym___thread] = ACTIONS(5218), - [anon_sym_const] = ACTIONS(5218), - [anon_sym_constexpr] = ACTIONS(5218), - [anon_sym_volatile] = ACTIONS(5218), - [anon_sym_restrict] = ACTIONS(5218), - [anon_sym___restrict__] = ACTIONS(5218), - [anon_sym__Atomic] = ACTIONS(5218), - [anon_sym__Noreturn] = ACTIONS(5218), - [anon_sym_noreturn] = ACTIONS(5218), - [anon_sym_mutable] = ACTIONS(5218), - [anon_sym_constinit] = ACTIONS(5218), - [anon_sym_consteval] = ACTIONS(5218), - [sym_primitive_type] = ACTIONS(5218), - [anon_sym_enum] = ACTIONS(5218), - [anon_sym_class] = ACTIONS(5218), - [anon_sym_struct] = ACTIONS(5218), - [anon_sym_union] = ACTIONS(5218), - [anon_sym_or] = ACTIONS(5218), - [anon_sym_and] = ACTIONS(5218), - [anon_sym_asm] = ACTIONS(5218), - [anon_sym___asm__] = ACTIONS(5218), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5218), - [anon_sym_decltype] = ACTIONS(5218), - [anon_sym_final] = ACTIONS(5218), - [anon_sym_override] = ACTIONS(5218), - [anon_sym_virtual] = ACTIONS(5218), - [anon_sym_alignas] = ACTIONS(5218), - [anon_sym_explicit] = ACTIONS(5218), - [anon_sym_typename] = ACTIONS(5218), - [anon_sym_template] = ACTIONS(5218), - [anon_sym_GT2] = ACTIONS(5220), - [anon_sym_operator] = ACTIONS(5218), - [anon_sym_try] = ACTIONS(5218), - [anon_sym_friend] = ACTIONS(5218), - [anon_sym_using] = ACTIONS(5218), - [anon_sym_concept] = ACTIONS(5218), - [anon_sym_requires] = ACTIONS(5218), - }, - [1966] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4548), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(8097), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_type_parameter_declaration] = STATE(8097), - [sym_variadic_type_parameter_declaration] = STATE(8097), - [sym_optional_type_parameter_declaration] = STATE(8097), - [sym_template_template_parameter_declaration] = STATE(8097), - [sym_optional_parameter_declaration] = STATE(8097), - [sym_variadic_parameter_declaration] = STATE(8097), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(5135), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(5137), - [anon_sym_template] = ACTIONS(5139), - }, - [1967] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5014), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5014), - [anon_sym_GT_GT] = ACTIONS(5014), - [anon_sym_SEMI] = ACTIONS(5016), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5016), - [anon_sym___declspec] = ACTIONS(5012), - [anon_sym___based] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_register] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym___inline] = ACTIONS(5012), - [anon_sym___inline__] = ACTIONS(5012), - [anon_sym___forceinline] = ACTIONS(5012), - [anon_sym_thread_local] = ACTIONS(5012), - [anon_sym___thread] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5012), - [anon_sym_volatile] = ACTIONS(5012), - [anon_sym_restrict] = ACTIONS(5012), - [anon_sym___restrict__] = ACTIONS(5012), - [anon_sym__Atomic] = ACTIONS(5012), - [anon_sym__Noreturn] = ACTIONS(5012), - [anon_sym_noreturn] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_and] = ACTIONS(5021), - [anon_sym_bitor] = ACTIONS(5021), - [anon_sym_xor] = ACTIONS(5021), - [anon_sym_bitand] = ACTIONS(5021), - [anon_sym_not_eq] = ACTIONS(5021), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5014), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - }, - [1968] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_RPAREN] = ACTIONS(5014), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5014), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5014), - [anon_sym_GT_GT] = ACTIONS(5014), - [anon_sym_SEMI] = ACTIONS(5014), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5019), - [anon_sym___declspec] = ACTIONS(5012), - [anon_sym___based] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_register] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym___inline] = ACTIONS(5012), - [anon_sym___inline__] = ACTIONS(5012), - [anon_sym___forceinline] = ACTIONS(5012), - [anon_sym_thread_local] = ACTIONS(5012), - [anon_sym___thread] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5012), - [anon_sym_volatile] = ACTIONS(5012), - [anon_sym_restrict] = ACTIONS(5012), - [anon_sym___restrict__] = ACTIONS(5012), - [anon_sym__Atomic] = ACTIONS(5012), - [anon_sym__Noreturn] = ACTIONS(5012), - [anon_sym_noreturn] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_and] = ACTIONS(5021), - [anon_sym_bitor] = ACTIONS(5021), - [anon_sym_xor] = ACTIONS(5021), - [anon_sym_bitand] = ACTIONS(5021), - [anon_sym_not_eq] = ACTIONS(5021), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5014), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - }, - [1969] = { - [sym_identifier] = ACTIONS(5222), - [anon_sym_LPAREN2] = ACTIONS(5224), - [anon_sym_BANG] = ACTIONS(5224), - [anon_sym_TILDE] = ACTIONS(5224), - [anon_sym_DASH] = ACTIONS(5222), - [anon_sym_PLUS] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(5224), - [anon_sym_AMP] = ACTIONS(5224), - [anon_sym_SEMI] = ACTIONS(5224), - [anon_sym_COLON_COLON] = ACTIONS(5224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5224), - [anon_sym_LBRACE] = ACTIONS(5224), - [anon_sym_LBRACK] = ACTIONS(5222), - [sym_primitive_type] = ACTIONS(5222), - [anon_sym_if] = ACTIONS(5222), - [anon_sym_switch] = ACTIONS(5222), - [anon_sym_case] = ACTIONS(5222), - [anon_sym_default] = ACTIONS(5222), - [anon_sym_while] = ACTIONS(5222), - [anon_sym_do] = ACTIONS(5222), - [anon_sym_for] = ACTIONS(5222), - [anon_sym_return] = ACTIONS(5222), - [anon_sym_break] = ACTIONS(5222), - [anon_sym_continue] = ACTIONS(5222), - [anon_sym_goto] = ACTIONS(5222), - [anon_sym___try] = ACTIONS(5222), - [anon_sym___leave] = ACTIONS(5222), - [anon_sym_not] = ACTIONS(5222), - [anon_sym_compl] = ACTIONS(5222), - [anon_sym_DASH_DASH] = ACTIONS(5224), - [anon_sym_PLUS_PLUS] = ACTIONS(5224), - [anon_sym_sizeof] = ACTIONS(5222), - [anon_sym___alignof__] = ACTIONS(5222), - [anon_sym___alignof] = ACTIONS(5222), - [anon_sym__alignof] = ACTIONS(5222), - [anon_sym_alignof] = ACTIONS(5222), - [anon_sym__Alignof] = ACTIONS(5222), - [anon_sym_offsetof] = ACTIONS(5222), - [anon_sym__Generic] = ACTIONS(5222), - [anon_sym_asm] = ACTIONS(5222), - [anon_sym___asm__] = ACTIONS(5222), - [sym_number_literal] = ACTIONS(5224), - [anon_sym_L_SQUOTE] = ACTIONS(5224), - [anon_sym_u_SQUOTE] = ACTIONS(5224), - [anon_sym_U_SQUOTE] = ACTIONS(5224), - [anon_sym_u8_SQUOTE] = ACTIONS(5224), - [anon_sym_SQUOTE] = ACTIONS(5224), - [anon_sym_L_DQUOTE] = ACTIONS(5224), - [anon_sym_u_DQUOTE] = ACTIONS(5224), - [anon_sym_U_DQUOTE] = ACTIONS(5224), - [anon_sym_u8_DQUOTE] = ACTIONS(5224), - [anon_sym_DQUOTE] = ACTIONS(5224), - [sym_true] = ACTIONS(5222), - [sym_false] = ACTIONS(5222), - [anon_sym_NULL] = ACTIONS(5222), - [anon_sym_nullptr] = ACTIONS(5222), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5222), - [anon_sym_template] = ACTIONS(5222), - [anon_sym_try] = ACTIONS(5222), - [anon_sym_delete] = ACTIONS(5222), - [anon_sym_throw] = ACTIONS(5222), - [anon_sym_co_return] = ACTIONS(5222), - [anon_sym_co_yield] = ACTIONS(5222), - [anon_sym_R_DQUOTE] = ACTIONS(5224), - [anon_sym_LR_DQUOTE] = ACTIONS(5224), - [anon_sym_uR_DQUOTE] = ACTIONS(5224), - [anon_sym_UR_DQUOTE] = ACTIONS(5224), - [anon_sym_u8R_DQUOTE] = ACTIONS(5224), - [anon_sym_co_await] = ACTIONS(5222), - [anon_sym_new] = ACTIONS(5222), - [anon_sym_requires] = ACTIONS(5222), - [sym_this] = ACTIONS(5222), - }, - [1970] = { - [sym_identifier] = ACTIONS(5226), - [anon_sym_LPAREN2] = ACTIONS(5228), - [anon_sym_BANG] = ACTIONS(5228), - [anon_sym_TILDE] = ACTIONS(5228), - [anon_sym_DASH] = ACTIONS(5226), - [anon_sym_PLUS] = ACTIONS(5226), - [anon_sym_STAR] = ACTIONS(5228), - [anon_sym_AMP] = ACTIONS(5228), - [anon_sym_SEMI] = ACTIONS(5228), - [anon_sym_COLON_COLON] = ACTIONS(5228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5228), - [anon_sym_LBRACE] = ACTIONS(5228), - [anon_sym_LBRACK] = ACTIONS(5226), - [sym_primitive_type] = ACTIONS(5226), - [anon_sym_if] = ACTIONS(5226), - [anon_sym_switch] = ACTIONS(5226), - [anon_sym_case] = ACTIONS(5226), - [anon_sym_default] = ACTIONS(5226), - [anon_sym_while] = ACTIONS(5226), - [anon_sym_do] = ACTIONS(5226), - [anon_sym_for] = ACTIONS(5226), - [anon_sym_return] = ACTIONS(5226), - [anon_sym_break] = ACTIONS(5226), - [anon_sym_continue] = ACTIONS(5226), - [anon_sym_goto] = ACTIONS(5226), - [anon_sym___try] = ACTIONS(5226), - [anon_sym___leave] = ACTIONS(5226), - [anon_sym_not] = ACTIONS(5226), - [anon_sym_compl] = ACTIONS(5226), - [anon_sym_DASH_DASH] = ACTIONS(5228), - [anon_sym_PLUS_PLUS] = ACTIONS(5228), - [anon_sym_sizeof] = ACTIONS(5226), - [anon_sym___alignof__] = ACTIONS(5226), - [anon_sym___alignof] = ACTIONS(5226), - [anon_sym__alignof] = ACTIONS(5226), - [anon_sym_alignof] = ACTIONS(5226), - [anon_sym__Alignof] = ACTIONS(5226), - [anon_sym_offsetof] = ACTIONS(5226), - [anon_sym__Generic] = ACTIONS(5226), - [anon_sym_asm] = ACTIONS(5226), - [anon_sym___asm__] = ACTIONS(5226), - [sym_number_literal] = ACTIONS(5228), - [anon_sym_L_SQUOTE] = ACTIONS(5228), - [anon_sym_u_SQUOTE] = ACTIONS(5228), - [anon_sym_U_SQUOTE] = ACTIONS(5228), - [anon_sym_u8_SQUOTE] = ACTIONS(5228), - [anon_sym_SQUOTE] = ACTIONS(5228), - [anon_sym_L_DQUOTE] = ACTIONS(5228), - [anon_sym_u_DQUOTE] = ACTIONS(5228), - [anon_sym_U_DQUOTE] = ACTIONS(5228), - [anon_sym_u8_DQUOTE] = ACTIONS(5228), - [anon_sym_DQUOTE] = ACTIONS(5228), - [sym_true] = ACTIONS(5226), - [sym_false] = ACTIONS(5226), - [anon_sym_NULL] = ACTIONS(5226), - [anon_sym_nullptr] = ACTIONS(5226), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5226), - [anon_sym_template] = ACTIONS(5226), - [anon_sym_try] = ACTIONS(5226), - [anon_sym_delete] = ACTIONS(5226), - [anon_sym_throw] = ACTIONS(5226), - [anon_sym_co_return] = ACTIONS(5226), - [anon_sym_co_yield] = ACTIONS(5226), - [anon_sym_R_DQUOTE] = ACTIONS(5228), - [anon_sym_LR_DQUOTE] = ACTIONS(5228), - [anon_sym_uR_DQUOTE] = ACTIONS(5228), - [anon_sym_UR_DQUOTE] = ACTIONS(5228), - [anon_sym_u8R_DQUOTE] = ACTIONS(5228), - [anon_sym_co_await] = ACTIONS(5226), - [anon_sym_new] = ACTIONS(5226), - [anon_sym_requires] = ACTIONS(5226), - [sym_this] = ACTIONS(5226), - }, - [1971] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), - [anon_sym_COMMA] = ACTIONS(5016), - [anon_sym_RPAREN] = ACTIONS(5016), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5016), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5014), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5014), - [anon_sym_GT_GT] = ACTIONS(5014), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym_extern] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5019), - [anon_sym___declspec] = ACTIONS(5012), - [anon_sym___based] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5012), - [anon_sym_static] = ACTIONS(5012), - [anon_sym_register] = ACTIONS(5012), - [anon_sym_inline] = ACTIONS(5012), - [anon_sym___inline] = ACTIONS(5012), - [anon_sym___inline__] = ACTIONS(5012), - [anon_sym___forceinline] = ACTIONS(5012), - [anon_sym_thread_local] = ACTIONS(5012), - [anon_sym___thread] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5012), - [anon_sym_volatile] = ACTIONS(5012), - [anon_sym_restrict] = ACTIONS(5012), - [anon_sym___restrict__] = ACTIONS(5012), - [anon_sym__Atomic] = ACTIONS(5012), - [anon_sym__Noreturn] = ACTIONS(5012), - [anon_sym_noreturn] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_and] = ACTIONS(5021), - [anon_sym_bitor] = ACTIONS(5021), - [anon_sym_xor] = ACTIONS(5021), - [anon_sym_bitand] = ACTIONS(5021), - [anon_sym_not_eq] = ACTIONS(5021), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5014), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_virtual] = ACTIONS(5012), - [anon_sym_alignas] = ACTIONS(5012), - [anon_sym_template] = ACTIONS(5012), - [anon_sym_operator] = ACTIONS(5012), - }, - [1972] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym___extension__] = ACTIONS(4990), - [anon_sym___attribute__] = ACTIONS(4990), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4990), - [anon_sym_volatile] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4990), - [anon_sym___restrict__] = ACTIONS(4990), - [anon_sym__Atomic] = ACTIONS(4990), - [anon_sym__Noreturn] = ACTIONS(4990), - [anon_sym_noreturn] = ACTIONS(4990), - [anon_sym_mutable] = ACTIONS(4990), - [anon_sym_constinit] = ACTIONS(4990), - [anon_sym_consteval] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4990), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_and_eq] = ACTIONS(4990), - [anon_sym_or_eq] = ACTIONS(4990), - [anon_sym_xor_eq] = ACTIONS(4990), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4990), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4990), - [anon_sym_not_eq] = ACTIONS(4990), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4990), - [anon_sym_decltype] = ACTIONS(4990), - [anon_sym_final] = ACTIONS(4990), - [anon_sym_override] = ACTIONS(4990), - [anon_sym_DASH_GT_STAR] = ACTIONS(4990), - }, - [1973] = { - [sym_identifier] = ACTIONS(5230), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5232), - [anon_sym_COMMA] = ACTIONS(5232), - [anon_sym_RPAREN] = ACTIONS(5232), - [aux_sym_preproc_if_token2] = ACTIONS(5232), - [aux_sym_preproc_else_token1] = ACTIONS(5232), - [aux_sym_preproc_elif_token1] = ACTIONS(5230), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5232), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5232), - [anon_sym_LPAREN2] = ACTIONS(5232), - [anon_sym_DASH] = ACTIONS(5230), - [anon_sym_PLUS] = ACTIONS(5230), - [anon_sym_STAR] = ACTIONS(5230), - [anon_sym_SLASH] = ACTIONS(5230), - [anon_sym_PERCENT] = ACTIONS(5230), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5230), - [anon_sym_CARET] = ACTIONS(5230), - [anon_sym_AMP] = ACTIONS(5230), - [anon_sym_EQ_EQ] = ACTIONS(5232), - [anon_sym_BANG_EQ] = ACTIONS(5232), - [anon_sym_GT] = ACTIONS(5230), - [anon_sym_GT_EQ] = ACTIONS(5232), - [anon_sym_LT_EQ] = ACTIONS(5230), - [anon_sym_LT] = ACTIONS(5230), - [anon_sym_LT_LT] = ACTIONS(5230), - [anon_sym_GT_GT] = ACTIONS(5230), - [anon_sym_SEMI] = ACTIONS(5232), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_LBRACK] = ACTIONS(5232), - [anon_sym_RBRACK] = ACTIONS(5232), - [anon_sym_EQ] = ACTIONS(5230), - [anon_sym_COLON] = ACTIONS(5232), - [anon_sym_QMARK] = ACTIONS(5232), - [anon_sym_STAR_EQ] = ACTIONS(5232), - [anon_sym_SLASH_EQ] = ACTIONS(5232), - [anon_sym_PERCENT_EQ] = ACTIONS(5232), - [anon_sym_PLUS_EQ] = ACTIONS(5232), - [anon_sym_DASH_EQ] = ACTIONS(5232), - [anon_sym_LT_LT_EQ] = ACTIONS(5232), - [anon_sym_GT_GT_EQ] = ACTIONS(5232), - [anon_sym_AMP_EQ] = ACTIONS(5232), - [anon_sym_CARET_EQ] = ACTIONS(5232), - [anon_sym_PIPE_EQ] = ACTIONS(5232), - [anon_sym_and_eq] = ACTIONS(5230), - [anon_sym_or_eq] = ACTIONS(5230), - [anon_sym_xor_eq] = ACTIONS(5230), - [anon_sym_LT_EQ_GT] = ACTIONS(5232), - [anon_sym_or] = ACTIONS(5230), - [anon_sym_and] = ACTIONS(5230), - [anon_sym_bitor] = ACTIONS(5230), - [anon_sym_xor] = ACTIONS(5230), - [anon_sym_bitand] = ACTIONS(5230), - [anon_sym_not_eq] = ACTIONS(5230), - [anon_sym_DASH_DASH] = ACTIONS(5232), - [anon_sym_PLUS_PLUS] = ACTIONS(5232), - [anon_sym_DOT] = ACTIONS(5230), - [anon_sym_DOT_STAR] = ACTIONS(5232), - [anon_sym_DASH_GT] = ACTIONS(5232), - [anon_sym_L_DQUOTE] = ACTIONS(5232), - [anon_sym_u_DQUOTE] = ACTIONS(5232), - [anon_sym_U_DQUOTE] = ACTIONS(5232), - [anon_sym_u8_DQUOTE] = ACTIONS(5232), - [anon_sym_DQUOTE] = ACTIONS(5232), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5232), - [anon_sym_LR_DQUOTE] = ACTIONS(5232), - [anon_sym_uR_DQUOTE] = ACTIONS(5232), - [anon_sym_UR_DQUOTE] = ACTIONS(5232), - [anon_sym_u8R_DQUOTE] = ACTIONS(5232), - [sym_literal_suffix] = ACTIONS(5230), - }, - [1974] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym___extension__] = ACTIONS(4998), - [anon_sym___attribute__] = ACTIONS(4998), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4998), - [anon_sym_volatile] = ACTIONS(4998), - [anon_sym_restrict] = ACTIONS(4998), - [anon_sym___restrict__] = ACTIONS(4998), - [anon_sym__Atomic] = ACTIONS(4998), - [anon_sym__Noreturn] = ACTIONS(4998), - [anon_sym_noreturn] = ACTIONS(4998), - [anon_sym_mutable] = ACTIONS(4998), - [anon_sym_constinit] = ACTIONS(4998), - [anon_sym_consteval] = ACTIONS(4998), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4998), - [anon_sym_or_eq] = ACTIONS(4998), - [anon_sym_xor_eq] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4998), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4998), - [anon_sym_not_eq] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4998), - [anon_sym_decltype] = ACTIONS(4998), - [anon_sym_final] = ACTIONS(4998), - [anon_sym_override] = ACTIONS(4998), - [anon_sym_DASH_GT_STAR] = ACTIONS(4998), - }, - [1975] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_RPAREN] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5000), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_CARET] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_EQ_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5002), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_GT_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ] = ACTIONS(5000), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(5000), - [anon_sym_GT_GT] = ACTIONS(5000), - [anon_sym___extension__] = ACTIONS(5002), - [anon_sym___attribute__] = ACTIONS(5002), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5002), - [anon_sym_volatile] = ACTIONS(5002), - [anon_sym_restrict] = ACTIONS(5002), - [anon_sym___restrict__] = ACTIONS(5002), - [anon_sym__Atomic] = ACTIONS(5002), - [anon_sym__Noreturn] = ACTIONS(5002), - [anon_sym_noreturn] = ACTIONS(5002), - [anon_sym_mutable] = ACTIONS(5002), - [anon_sym_constinit] = ACTIONS(5002), - [anon_sym_consteval] = ACTIONS(5002), - [anon_sym_COLON] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_STAR_EQ] = ACTIONS(5002), - [anon_sym_SLASH_EQ] = ACTIONS(5002), - [anon_sym_PERCENT_EQ] = ACTIONS(5002), - [anon_sym_PLUS_EQ] = ACTIONS(5002), - [anon_sym_DASH_EQ] = ACTIONS(5002), - [anon_sym_LT_LT_EQ] = ACTIONS(5002), - [anon_sym_GT_GT_EQ] = ACTIONS(5002), - [anon_sym_AMP_EQ] = ACTIONS(5002), - [anon_sym_CARET_EQ] = ACTIONS(5002), - [anon_sym_PIPE_EQ] = ACTIONS(5002), - [anon_sym_and_eq] = ACTIONS(5002), - [anon_sym_or_eq] = ACTIONS(5002), - [anon_sym_xor_eq] = ACTIONS(5002), - [anon_sym_LT_EQ_GT] = ACTIONS(5002), - [anon_sym_or] = ACTIONS(5000), - [anon_sym_and] = ACTIONS(5000), - [anon_sym_bitor] = ACTIONS(5002), - [anon_sym_xor] = ACTIONS(5000), - [anon_sym_bitand] = ACTIONS(5002), - [anon_sym_not_eq] = ACTIONS(5002), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_DOT_STAR] = ACTIONS(5002), - [anon_sym_DASH_GT] = ACTIONS(5000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5002), - [anon_sym_decltype] = ACTIONS(5002), - [anon_sym_final] = ACTIONS(5002), - [anon_sym_override] = ACTIONS(5002), - [anon_sym_DASH_GT_STAR] = ACTIONS(5002), + [1811] = { + [sym__expression] = STATE(2749), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [1976] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_LPAREN2] = ACTIONS(5006), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5004), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5004), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5004), - [anon_sym_CARET] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(5004), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5004), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_LT_LT] = ACTIONS(5004), - [anon_sym_GT_GT] = ACTIONS(5004), - [anon_sym___extension__] = ACTIONS(5006), - [anon_sym___attribute__] = ACTIONS(5006), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_EQ] = ACTIONS(5004), - [anon_sym_const] = ACTIONS(5004), - [anon_sym_constexpr] = ACTIONS(5006), - [anon_sym_volatile] = ACTIONS(5006), - [anon_sym_restrict] = ACTIONS(5006), - [anon_sym___restrict__] = ACTIONS(5006), - [anon_sym__Atomic] = ACTIONS(5006), - [anon_sym__Noreturn] = ACTIONS(5006), - [anon_sym_noreturn] = ACTIONS(5006), - [anon_sym_mutable] = ACTIONS(5006), - [anon_sym_constinit] = ACTIONS(5006), - [anon_sym_consteval] = ACTIONS(5006), - [anon_sym_COLON] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(5006), - [anon_sym_STAR_EQ] = ACTIONS(5006), - [anon_sym_SLASH_EQ] = ACTIONS(5006), - [anon_sym_PERCENT_EQ] = ACTIONS(5006), - [anon_sym_PLUS_EQ] = ACTIONS(5006), - [anon_sym_DASH_EQ] = ACTIONS(5006), - [anon_sym_LT_LT_EQ] = ACTIONS(5006), - [anon_sym_GT_GT_EQ] = ACTIONS(5006), - [anon_sym_AMP_EQ] = ACTIONS(5006), - [anon_sym_CARET_EQ] = ACTIONS(5006), - [anon_sym_PIPE_EQ] = ACTIONS(5006), - [anon_sym_and_eq] = ACTIONS(5006), - [anon_sym_or_eq] = ACTIONS(5006), - [anon_sym_xor_eq] = ACTIONS(5006), - [anon_sym_LT_EQ_GT] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5004), - [anon_sym_and] = ACTIONS(5004), - [anon_sym_bitor] = ACTIONS(5006), - [anon_sym_xor] = ACTIONS(5004), - [anon_sym_bitand] = ACTIONS(5006), - [anon_sym_not_eq] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_DOT_STAR] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5004), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5006), - [anon_sym_decltype] = ACTIONS(5006), - [anon_sym_final] = ACTIONS(5006), - [anon_sym_override] = ACTIONS(5006), - [anon_sym_DASH_GT_STAR] = ACTIONS(5006), + [1812] = { + [sym__expression] = STATE(3585), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [1977] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_LPAREN2] = ACTIONS(4966), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4964), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_CARET] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4964), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4964), - [anon_sym_GT_GT] = ACTIONS(4964), - [anon_sym___extension__] = ACTIONS(4966), - [anon_sym___attribute__] = ACTIONS(4966), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_const] = ACTIONS(4964), - [anon_sym_constexpr] = ACTIONS(4966), - [anon_sym_volatile] = ACTIONS(4966), - [anon_sym_restrict] = ACTIONS(4966), - [anon_sym___restrict__] = ACTIONS(4966), - [anon_sym__Atomic] = ACTIONS(4966), - [anon_sym__Noreturn] = ACTIONS(4966), - [anon_sym_noreturn] = ACTIONS(4966), - [anon_sym_mutable] = ACTIONS(4966), - [anon_sym_constinit] = ACTIONS(4966), - [anon_sym_consteval] = ACTIONS(4966), - [anon_sym_COLON] = ACTIONS(4964), - [anon_sym_QMARK] = ACTIONS(4966), - [anon_sym_STAR_EQ] = ACTIONS(4966), - [anon_sym_SLASH_EQ] = ACTIONS(4966), - [anon_sym_PERCENT_EQ] = ACTIONS(4966), - [anon_sym_PLUS_EQ] = ACTIONS(4966), - [anon_sym_DASH_EQ] = ACTIONS(4966), - [anon_sym_LT_LT_EQ] = ACTIONS(4966), - [anon_sym_GT_GT_EQ] = ACTIONS(4966), - [anon_sym_AMP_EQ] = ACTIONS(4966), - [anon_sym_CARET_EQ] = ACTIONS(4966), - [anon_sym_PIPE_EQ] = ACTIONS(4966), - [anon_sym_and_eq] = ACTIONS(4966), - [anon_sym_or_eq] = ACTIONS(4966), - [anon_sym_xor_eq] = ACTIONS(4966), - [anon_sym_LT_EQ_GT] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4964), - [anon_sym_and] = ACTIONS(4964), - [anon_sym_bitor] = ACTIONS(4966), - [anon_sym_xor] = ACTIONS(4964), - [anon_sym_bitand] = ACTIONS(4966), - [anon_sym_not_eq] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_DOT_STAR] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4964), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4966), - [anon_sym_decltype] = ACTIONS(4966), - [anon_sym_final] = ACTIONS(4966), - [anon_sym_override] = ACTIONS(4966), - [anon_sym_DASH_GT_STAR] = ACTIONS(4966), + [1813] = { + [sym__expression] = STATE(4958), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(4981), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1978] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7870), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7870), - [sym_variadic_parameter_declaration] = STATE(7870), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), - [anon_sym_RPAREN] = ACTIONS(4405), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), + [1814] = { + [sym__expression] = STATE(4755), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1979] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7851), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7851), - [sym_variadic_parameter_declaration] = STATE(7851), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5234), - [anon_sym_RPAREN] = ACTIONS(5236), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), + [1815] = { + [sym__expression] = STATE(5016), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1980] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7671), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7671), - [sym_variadic_parameter_declaration] = STATE(7671), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5238), - [anon_sym_RPAREN] = ACTIONS(5240), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), + [1816] = { + [sym__expression] = STATE(5021), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(4983), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [1981] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7821), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7821), - [sym_variadic_parameter_declaration] = STATE(7821), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5242), - [anon_sym_RPAREN] = ACTIONS(5244), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), + [1817] = { + [sym__expression] = STATE(4743), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1982] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1982), - [sym_identifier] = ACTIONS(5246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5248), - [anon_sym_COMMA] = ACTIONS(5248), - [anon_sym_RPAREN] = ACTIONS(5248), - [aux_sym_preproc_if_token2] = ACTIONS(5248), - [aux_sym_preproc_else_token1] = ACTIONS(5248), - [aux_sym_preproc_elif_token1] = ACTIONS(5246), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5248), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5248), - [anon_sym_LPAREN2] = ACTIONS(5248), - [anon_sym_DASH] = ACTIONS(5246), - [anon_sym_PLUS] = ACTIONS(5246), - [anon_sym_STAR] = ACTIONS(5248), - [anon_sym_SLASH] = ACTIONS(5246), - [anon_sym_PERCENT] = ACTIONS(5248), - [anon_sym_PIPE_PIPE] = ACTIONS(5248), - [anon_sym_AMP_AMP] = ACTIONS(5248), - [anon_sym_PIPE] = ACTIONS(5246), - [anon_sym_CARET] = ACTIONS(5248), - [anon_sym_AMP] = ACTIONS(5246), - [anon_sym_EQ_EQ] = ACTIONS(5248), - [anon_sym_BANG_EQ] = ACTIONS(5248), - [anon_sym_GT] = ACTIONS(5246), - [anon_sym_GT_EQ] = ACTIONS(5248), - [anon_sym_LT_EQ] = ACTIONS(5246), - [anon_sym_LT] = ACTIONS(5246), - [anon_sym_LT_LT] = ACTIONS(5248), - [anon_sym_GT_GT] = ACTIONS(5248), - [anon_sym_SEMI] = ACTIONS(5248), - [anon_sym___extension__] = ACTIONS(5246), - [anon_sym___attribute__] = ACTIONS(5246), - [anon_sym_LBRACE] = ACTIONS(5248), - [anon_sym_RBRACE] = ACTIONS(5248), - [anon_sym_signed] = ACTIONS(5250), - [anon_sym_unsigned] = ACTIONS(5250), - [anon_sym_long] = ACTIONS(5250), - [anon_sym_short] = ACTIONS(5250), - [anon_sym_LBRACK] = ACTIONS(5248), - [anon_sym_RBRACK] = ACTIONS(5248), - [anon_sym_const] = ACTIONS(5246), - [anon_sym_constexpr] = ACTIONS(5246), - [anon_sym_volatile] = ACTIONS(5246), - [anon_sym_restrict] = ACTIONS(5246), - [anon_sym___restrict__] = ACTIONS(5246), - [anon_sym__Atomic] = ACTIONS(5246), - [anon_sym__Noreturn] = ACTIONS(5246), - [anon_sym_noreturn] = ACTIONS(5246), - [anon_sym_mutable] = ACTIONS(5246), - [anon_sym_constinit] = ACTIONS(5246), - [anon_sym_consteval] = ACTIONS(5246), - [sym_primitive_type] = ACTIONS(5246), - [anon_sym_COLON] = ACTIONS(5248), - [anon_sym_QMARK] = ACTIONS(5248), - [anon_sym_LT_EQ_GT] = ACTIONS(5248), - [anon_sym_or] = ACTIONS(5246), - [anon_sym_and] = ACTIONS(5246), - [anon_sym_bitor] = ACTIONS(5246), - [anon_sym_xor] = ACTIONS(5246), - [anon_sym_bitand] = ACTIONS(5246), - [anon_sym_not_eq] = ACTIONS(5246), - [anon_sym_DASH_DASH] = ACTIONS(5248), - [anon_sym_PLUS_PLUS] = ACTIONS(5248), - [anon_sym_DOT] = ACTIONS(5246), - [anon_sym_DOT_STAR] = ACTIONS(5248), - [anon_sym_DASH_GT] = ACTIONS(5248), + [1818] = { + [sym__expression] = STATE(4747), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5246), - [anon_sym_decltype] = ACTIONS(5246), - [anon_sym_final] = ACTIONS(5246), - [anon_sym_override] = ACTIONS(5246), - [anon_sym_requires] = ACTIONS(5246), - }, - [1983] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(5010), - [anon_sym_LPAREN2] = ACTIONS(5010), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5010), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_GT_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ] = ACTIONS(5008), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5008), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym___extension__] = ACTIONS(5010), - [anon_sym___attribute__] = ACTIONS(5010), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_EQ] = ACTIONS(5008), - [anon_sym_const] = ACTIONS(5008), - [anon_sym_constexpr] = ACTIONS(5010), - [anon_sym_volatile] = ACTIONS(5010), - [anon_sym_restrict] = ACTIONS(5010), - [anon_sym___restrict__] = ACTIONS(5010), - [anon_sym__Atomic] = ACTIONS(5010), - [anon_sym__Noreturn] = ACTIONS(5010), - [anon_sym_noreturn] = ACTIONS(5010), - [anon_sym_mutable] = ACTIONS(5010), - [anon_sym_constinit] = ACTIONS(5010), - [anon_sym_consteval] = ACTIONS(5010), - [anon_sym_COLON] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(5010), - [anon_sym_STAR_EQ] = ACTIONS(5010), - [anon_sym_SLASH_EQ] = ACTIONS(5010), - [anon_sym_PERCENT_EQ] = ACTIONS(5010), - [anon_sym_PLUS_EQ] = ACTIONS(5010), - [anon_sym_DASH_EQ] = ACTIONS(5010), - [anon_sym_LT_LT_EQ] = ACTIONS(5010), - [anon_sym_GT_GT_EQ] = ACTIONS(5010), - [anon_sym_AMP_EQ] = ACTIONS(5010), - [anon_sym_CARET_EQ] = ACTIONS(5010), - [anon_sym_PIPE_EQ] = ACTIONS(5010), - [anon_sym_and_eq] = ACTIONS(5010), - [anon_sym_or_eq] = ACTIONS(5010), - [anon_sym_xor_eq] = ACTIONS(5010), - [anon_sym_LT_EQ_GT] = ACTIONS(5010), - [anon_sym_or] = ACTIONS(5008), - [anon_sym_and] = ACTIONS(5008), - [anon_sym_bitor] = ACTIONS(5010), - [anon_sym_xor] = ACTIONS(5008), - [anon_sym_bitand] = ACTIONS(5010), - [anon_sym_not_eq] = ACTIONS(5010), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_DOT_STAR] = ACTIONS(5010), - [anon_sym_DASH_GT] = ACTIONS(5008), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5010), - [anon_sym_decltype] = ACTIONS(5010), - [anon_sym_final] = ACTIONS(5010), - [anon_sym_override] = ACTIONS(5010), - [anon_sym_DASH_GT_STAR] = ACTIONS(5010), - }, - [1984] = { - [sym_identifier] = ACTIONS(5253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [aux_sym_preproc_if_token2] = ACTIONS(5255), - [aux_sym_preproc_else_token1] = ACTIONS(5255), - [aux_sym_preproc_elif_token1] = ACTIONS(5253), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5255), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5253), - [anon_sym_STAR] = ACTIONS(5253), - [anon_sym_SLASH] = ACTIONS(5253), - [anon_sym_PERCENT] = ACTIONS(5253), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5253), - [anon_sym_CARET] = ACTIONS(5253), - [anon_sym_AMP] = ACTIONS(5253), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5253), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5253), - [anon_sym_LT] = ACTIONS(5253), - [anon_sym_LT_LT] = ACTIONS(5253), - [anon_sym_GT_GT] = ACTIONS(5253), - [anon_sym_SEMI] = ACTIONS(5255), - [anon_sym_RBRACE] = ACTIONS(5255), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_RBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5255), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(5255), - [anon_sym_SLASH_EQ] = ACTIONS(5255), - [anon_sym_PERCENT_EQ] = ACTIONS(5255), - [anon_sym_PLUS_EQ] = ACTIONS(5255), - [anon_sym_DASH_EQ] = ACTIONS(5255), - [anon_sym_LT_LT_EQ] = ACTIONS(5255), - [anon_sym_GT_GT_EQ] = ACTIONS(5255), - [anon_sym_AMP_EQ] = ACTIONS(5255), - [anon_sym_CARET_EQ] = ACTIONS(5255), - [anon_sym_PIPE_EQ] = ACTIONS(5255), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5253), - [anon_sym_and] = ACTIONS(5253), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5253), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5253), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(5255), - [anon_sym_u_DQUOTE] = ACTIONS(5255), - [anon_sym_U_DQUOTE] = ACTIONS(5255), - [anon_sym_u8_DQUOTE] = ACTIONS(5255), - [anon_sym_DQUOTE] = ACTIONS(5255), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5255), - [anon_sym_LR_DQUOTE] = ACTIONS(5255), - [anon_sym_uR_DQUOTE] = ACTIONS(5255), - [anon_sym_UR_DQUOTE] = ACTIONS(5255), - [anon_sym_u8R_DQUOTE] = ACTIONS(5255), - [sym_literal_suffix] = ACTIONS(5253), - }, - [1985] = { - [sym_identifier] = ACTIONS(5257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5259), - [anon_sym_COMMA] = ACTIONS(5259), - [anon_sym_RPAREN] = ACTIONS(5259), - [aux_sym_preproc_if_token2] = ACTIONS(5259), - [aux_sym_preproc_else_token1] = ACTIONS(5259), - [aux_sym_preproc_elif_token1] = ACTIONS(5257), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5259), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5259), - [anon_sym_LPAREN2] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5257), - [anon_sym_STAR] = ACTIONS(5257), - [anon_sym_SLASH] = ACTIONS(5257), - [anon_sym_PERCENT] = ACTIONS(5257), - [anon_sym_PIPE_PIPE] = ACTIONS(5259), - [anon_sym_AMP_AMP] = ACTIONS(5259), - [anon_sym_PIPE] = ACTIONS(5257), - [anon_sym_CARET] = ACTIONS(5257), - [anon_sym_AMP] = ACTIONS(5257), - [anon_sym_EQ_EQ] = ACTIONS(5259), - [anon_sym_BANG_EQ] = ACTIONS(5259), - [anon_sym_GT] = ACTIONS(5257), - [anon_sym_GT_EQ] = ACTIONS(5259), - [anon_sym_LT_EQ] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5257), - [anon_sym_LT_LT] = ACTIONS(5257), - [anon_sym_GT_GT] = ACTIONS(5257), - [anon_sym_SEMI] = ACTIONS(5259), - [anon_sym_RBRACE] = ACTIONS(5259), - [anon_sym_LBRACK] = ACTIONS(5259), - [anon_sym_RBRACK] = ACTIONS(5259), - [anon_sym_EQ] = ACTIONS(5257), - [anon_sym_COLON] = ACTIONS(5259), - [anon_sym_QMARK] = ACTIONS(5259), - [anon_sym_STAR_EQ] = ACTIONS(5259), - [anon_sym_SLASH_EQ] = ACTIONS(5259), - [anon_sym_PERCENT_EQ] = ACTIONS(5259), - [anon_sym_PLUS_EQ] = ACTIONS(5259), - [anon_sym_DASH_EQ] = ACTIONS(5259), - [anon_sym_LT_LT_EQ] = ACTIONS(5259), - [anon_sym_GT_GT_EQ] = ACTIONS(5259), - [anon_sym_AMP_EQ] = ACTIONS(5259), - [anon_sym_CARET_EQ] = ACTIONS(5259), - [anon_sym_PIPE_EQ] = ACTIONS(5259), - [anon_sym_and_eq] = ACTIONS(5257), - [anon_sym_or_eq] = ACTIONS(5257), - [anon_sym_xor_eq] = ACTIONS(5257), - [anon_sym_LT_EQ_GT] = ACTIONS(5259), - [anon_sym_or] = ACTIONS(5257), - [anon_sym_and] = ACTIONS(5257), - [anon_sym_bitor] = ACTIONS(5257), - [anon_sym_xor] = ACTIONS(5257), - [anon_sym_bitand] = ACTIONS(5257), - [anon_sym_not_eq] = ACTIONS(5257), - [anon_sym_DASH_DASH] = ACTIONS(5259), - [anon_sym_PLUS_PLUS] = ACTIONS(5259), - [anon_sym_DOT] = ACTIONS(5257), - [anon_sym_DOT_STAR] = ACTIONS(5259), - [anon_sym_DASH_GT] = ACTIONS(5259), - [anon_sym_L_DQUOTE] = ACTIONS(5259), - [anon_sym_u_DQUOTE] = ACTIONS(5259), - [anon_sym_U_DQUOTE] = ACTIONS(5259), - [anon_sym_u8_DQUOTE] = ACTIONS(5259), - [anon_sym_DQUOTE] = ACTIONS(5259), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5259), - [anon_sym_LR_DQUOTE] = ACTIONS(5259), - [anon_sym_uR_DQUOTE] = ACTIONS(5259), - [anon_sym_UR_DQUOTE] = ACTIONS(5259), - [anon_sym_u8R_DQUOTE] = ACTIONS(5259), - [sym_literal_suffix] = ACTIONS(5257), - }, - [1986] = { - [sym_identifier] = ACTIONS(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5263), - [anon_sym_COMMA] = ACTIONS(5263), - [anon_sym_RPAREN] = ACTIONS(5263), - [aux_sym_preproc_if_token2] = ACTIONS(5263), - [aux_sym_preproc_else_token1] = ACTIONS(5263), - [aux_sym_preproc_elif_token1] = ACTIONS(5261), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5263), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5263), - [anon_sym_LPAREN2] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5261), - [anon_sym_STAR] = ACTIONS(5261), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_PIPE_PIPE] = ACTIONS(5263), - [anon_sym_AMP_AMP] = ACTIONS(5263), - [anon_sym_PIPE] = ACTIONS(5261), - [anon_sym_CARET] = ACTIONS(5261), - [anon_sym_AMP] = ACTIONS(5261), - [anon_sym_EQ_EQ] = ACTIONS(5263), - [anon_sym_BANG_EQ] = ACTIONS(5263), - [anon_sym_GT] = ACTIONS(5261), - [anon_sym_GT_EQ] = ACTIONS(5263), - [anon_sym_LT_EQ] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(5261), - [anon_sym_LT_LT] = ACTIONS(5261), - [anon_sym_GT_GT] = ACTIONS(5261), - [anon_sym_SEMI] = ACTIONS(5263), - [anon_sym_RBRACE] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_RBRACK] = ACTIONS(5263), - [anon_sym_EQ] = ACTIONS(5261), - [anon_sym_COLON] = ACTIONS(5263), - [anon_sym_QMARK] = ACTIONS(5263), - [anon_sym_STAR_EQ] = ACTIONS(5263), - [anon_sym_SLASH_EQ] = ACTIONS(5263), - [anon_sym_PERCENT_EQ] = ACTIONS(5263), - [anon_sym_PLUS_EQ] = ACTIONS(5263), - [anon_sym_DASH_EQ] = ACTIONS(5263), - [anon_sym_LT_LT_EQ] = ACTIONS(5263), - [anon_sym_GT_GT_EQ] = ACTIONS(5263), - [anon_sym_AMP_EQ] = ACTIONS(5263), - [anon_sym_CARET_EQ] = ACTIONS(5263), - [anon_sym_PIPE_EQ] = ACTIONS(5263), - [anon_sym_and_eq] = ACTIONS(5261), - [anon_sym_or_eq] = ACTIONS(5261), - [anon_sym_xor_eq] = ACTIONS(5261), - [anon_sym_LT_EQ_GT] = ACTIONS(5263), - [anon_sym_or] = ACTIONS(5261), - [anon_sym_and] = ACTIONS(5261), - [anon_sym_bitor] = ACTIONS(5261), - [anon_sym_xor] = ACTIONS(5261), - [anon_sym_bitand] = ACTIONS(5261), - [anon_sym_not_eq] = ACTIONS(5261), - [anon_sym_DASH_DASH] = ACTIONS(5263), - [anon_sym_PLUS_PLUS] = ACTIONS(5263), - [anon_sym_DOT] = ACTIONS(5261), - [anon_sym_DOT_STAR] = ACTIONS(5263), - [anon_sym_DASH_GT] = ACTIONS(5263), - [anon_sym_L_DQUOTE] = ACTIONS(5263), - [anon_sym_u_DQUOTE] = ACTIONS(5263), - [anon_sym_U_DQUOTE] = ACTIONS(5263), - [anon_sym_u8_DQUOTE] = ACTIONS(5263), - [anon_sym_DQUOTE] = ACTIONS(5263), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5263), - [anon_sym_LR_DQUOTE] = ACTIONS(5263), - [anon_sym_uR_DQUOTE] = ACTIONS(5263), - [anon_sym_UR_DQUOTE] = ACTIONS(5263), - [anon_sym_u8R_DQUOTE] = ACTIONS(5263), - [sym_literal_suffix] = ACTIONS(5261), - }, - [1987] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym___extension__] = ACTIONS(4994), - [anon_sym___attribute__] = ACTIONS(4994), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4994), - [anon_sym_volatile] = ACTIONS(4994), - [anon_sym_restrict] = ACTIONS(4994), - [anon_sym___restrict__] = ACTIONS(4994), - [anon_sym__Atomic] = ACTIONS(4994), - [anon_sym__Noreturn] = ACTIONS(4994), - [anon_sym_noreturn] = ACTIONS(4994), - [anon_sym_mutable] = ACTIONS(4994), - [anon_sym_constinit] = ACTIONS(4994), - [anon_sym_consteval] = ACTIONS(4994), - [anon_sym_COLON] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4994), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_and_eq] = ACTIONS(4994), - [anon_sym_or_eq] = ACTIONS(4994), - [anon_sym_xor_eq] = ACTIONS(4994), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4994), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4994), - [anon_sym_not_eq] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4994), - [anon_sym_decltype] = ACTIONS(4994), - [anon_sym_final] = ACTIONS(4994), - [anon_sym_override] = ACTIONS(4994), - [anon_sym_DASH_GT_STAR] = ACTIONS(4994), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1988] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7774), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7774), - [sym_variadic_parameter_declaration] = STATE(7774), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5265), - [anon_sym_RPAREN] = ACTIONS(5267), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), + [1819] = { + [sym__expression] = STATE(4750), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1989] = { - [sym_catch_clause] = STATE(2000), - [aux_sym_constructor_try_statement_repeat1] = STATE(2000), - [sym_identifier] = ACTIONS(2820), - [aux_sym_preproc_def_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token2] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), - [aux_sym_preproc_else_token1] = ACTIONS(2820), - [aux_sym_preproc_elif_token1] = ACTIONS(2820), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2820), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2820), - [sym_preproc_directive] = ACTIONS(2820), - [anon_sym_LPAREN2] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym___extension__] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym___attribute__] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), - [anon_sym___declspec] = ACTIONS(2820), - [anon_sym___based] = ACTIONS(2820), - [anon_sym_signed] = ACTIONS(2820), - [anon_sym_unsigned] = ACTIONS(2820), - [anon_sym_long] = ACTIONS(2820), - [anon_sym_short] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_register] = ACTIONS(2820), - [anon_sym_inline] = ACTIONS(2820), - [anon_sym___inline] = ACTIONS(2820), - [anon_sym___inline__] = ACTIONS(2820), - [anon_sym___forceinline] = ACTIONS(2820), - [anon_sym_thread_local] = ACTIONS(2820), - [anon_sym___thread] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_constexpr] = ACTIONS(2820), - [anon_sym_volatile] = ACTIONS(2820), - [anon_sym_restrict] = ACTIONS(2820), - [anon_sym___restrict__] = ACTIONS(2820), - [anon_sym__Atomic] = ACTIONS(2820), - [anon_sym__Noreturn] = ACTIONS(2820), - [anon_sym_noreturn] = ACTIONS(2820), - [anon_sym_mutable] = ACTIONS(2820), - [anon_sym_constinit] = ACTIONS(2820), - [anon_sym_consteval] = ACTIONS(2820), - [sym_primitive_type] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2820), - [anon_sym_decltype] = ACTIONS(2820), - [anon_sym_virtual] = ACTIONS(2820), - [anon_sym_alignas] = ACTIONS(2820), - [anon_sym_explicit] = ACTIONS(2820), - [anon_sym_typename] = ACTIONS(2820), - [anon_sym_template] = ACTIONS(2820), - [anon_sym_operator] = ACTIONS(2820), - [anon_sym_friend] = ACTIONS(2820), - [anon_sym_public] = ACTIONS(2820), - [anon_sym_private] = ACTIONS(2820), - [anon_sym_protected] = ACTIONS(2820), - [anon_sym_using] = ACTIONS(2820), - [anon_sym_static_assert] = ACTIONS(2820), - [anon_sym_catch] = ACTIONS(5269), - }, - [1990] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4992), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym___extension__] = ACTIONS(4994), - [anon_sym___attribute__] = ACTIONS(4994), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4994), - [anon_sym_volatile] = ACTIONS(4994), - [anon_sym_restrict] = ACTIONS(4994), - [anon_sym___restrict__] = ACTIONS(4994), - [anon_sym__Atomic] = ACTIONS(4994), - [anon_sym__Noreturn] = ACTIONS(4994), - [anon_sym_noreturn] = ACTIONS(4994), - [anon_sym_mutable] = ACTIONS(4994), - [anon_sym_constinit] = ACTIONS(4994), - [anon_sym_consteval] = ACTIONS(4994), - [anon_sym_COLON] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4992), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_and_eq] = ACTIONS(4994), - [anon_sym_or_eq] = ACTIONS(4994), - [anon_sym_xor_eq] = ACTIONS(4994), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4994), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4994), - [anon_sym_not_eq] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4994), - [anon_sym_decltype] = ACTIONS(4994), - [anon_sym_final] = ACTIONS(4994), - [anon_sym_override] = ACTIONS(4994), - [anon_sym_GT2] = ACTIONS(4994), - }, - [1991] = { - [sym_catch_clause] = STATE(2000), - [aux_sym_constructor_try_statement_repeat1] = STATE(2000), - [sym_identifier] = ACTIONS(2836), - [aux_sym_preproc_def_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token2] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), - [aux_sym_preproc_else_token1] = ACTIONS(2836), - [aux_sym_preproc_elif_token1] = ACTIONS(2836), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2836), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2836), - [sym_preproc_directive] = ACTIONS(2836), - [anon_sym_LPAREN2] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym___extension__] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym___attribute__] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2838), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), - [anon_sym___declspec] = ACTIONS(2836), - [anon_sym___based] = ACTIONS(2836), - [anon_sym_signed] = ACTIONS(2836), - [anon_sym_unsigned] = ACTIONS(2836), - [anon_sym_long] = ACTIONS(2836), - [anon_sym_short] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_register] = ACTIONS(2836), - [anon_sym_inline] = ACTIONS(2836), - [anon_sym___inline] = ACTIONS(2836), - [anon_sym___inline__] = ACTIONS(2836), - [anon_sym___forceinline] = ACTIONS(2836), - [anon_sym_thread_local] = ACTIONS(2836), - [anon_sym___thread] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_constexpr] = ACTIONS(2836), - [anon_sym_volatile] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(2836), - [anon_sym___restrict__] = ACTIONS(2836), - [anon_sym__Atomic] = ACTIONS(2836), - [anon_sym__Noreturn] = ACTIONS(2836), - [anon_sym_noreturn] = ACTIONS(2836), - [anon_sym_mutable] = ACTIONS(2836), - [anon_sym_constinit] = ACTIONS(2836), - [anon_sym_consteval] = ACTIONS(2836), - [sym_primitive_type] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2836), - [anon_sym_decltype] = ACTIONS(2836), - [anon_sym_virtual] = ACTIONS(2836), - [anon_sym_alignas] = ACTIONS(2836), - [anon_sym_explicit] = ACTIONS(2836), - [anon_sym_typename] = ACTIONS(2836), - [anon_sym_template] = ACTIONS(2836), - [anon_sym_operator] = ACTIONS(2836), - [anon_sym_friend] = ACTIONS(2836), - [anon_sym_public] = ACTIONS(2836), - [anon_sym_private] = ACTIONS(2836), - [anon_sym_protected] = ACTIONS(2836), - [anon_sym_using] = ACTIONS(2836), - [anon_sym_static_assert] = ACTIONS(2836), - [anon_sym_catch] = ACTIONS(5269), - }, - [1992] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5000), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_CARET] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_EQ_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5002), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_GT_EQ] = ACTIONS(5000), - [anon_sym_LT_EQ] = ACTIONS(5000), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(5000), - [anon_sym_GT_GT] = ACTIONS(5000), - [anon_sym___extension__] = ACTIONS(5002), - [anon_sym___attribute__] = ACTIONS(5002), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5002), - [anon_sym_volatile] = ACTIONS(5002), - [anon_sym_restrict] = ACTIONS(5002), - [anon_sym___restrict__] = ACTIONS(5002), - [anon_sym__Atomic] = ACTIONS(5002), - [anon_sym__Noreturn] = ACTIONS(5002), - [anon_sym_noreturn] = ACTIONS(5002), - [anon_sym_mutable] = ACTIONS(5002), - [anon_sym_constinit] = ACTIONS(5002), - [anon_sym_consteval] = ACTIONS(5002), - [anon_sym_COLON] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_STAR_EQ] = ACTIONS(5002), - [anon_sym_SLASH_EQ] = ACTIONS(5002), - [anon_sym_PERCENT_EQ] = ACTIONS(5002), - [anon_sym_PLUS_EQ] = ACTIONS(5002), - [anon_sym_DASH_EQ] = ACTIONS(5002), - [anon_sym_LT_LT_EQ] = ACTIONS(5002), - [anon_sym_GT_GT_EQ] = ACTIONS(5000), - [anon_sym_AMP_EQ] = ACTIONS(5002), - [anon_sym_CARET_EQ] = ACTIONS(5002), - [anon_sym_PIPE_EQ] = ACTIONS(5002), - [anon_sym_and_eq] = ACTIONS(5002), - [anon_sym_or_eq] = ACTIONS(5002), - [anon_sym_xor_eq] = ACTIONS(5002), - [anon_sym_LT_EQ_GT] = ACTIONS(5002), - [anon_sym_or] = ACTIONS(5000), - [anon_sym_and] = ACTIONS(5000), - [anon_sym_bitor] = ACTIONS(5002), - [anon_sym_xor] = ACTIONS(5000), - [anon_sym_bitand] = ACTIONS(5002), - [anon_sym_not_eq] = ACTIONS(5002), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_DOT_STAR] = ACTIONS(5002), - [anon_sym_DASH_GT] = ACTIONS(5002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5002), - [anon_sym_decltype] = ACTIONS(5002), - [anon_sym_final] = ACTIONS(5002), - [anon_sym_override] = ACTIONS(5002), - [anon_sym_GT2] = ACTIONS(5002), - }, - [1993] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1993), - [sym_identifier] = ACTIONS(5246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5248), - [anon_sym_COMMA] = ACTIONS(5248), - [anon_sym_RPAREN] = ACTIONS(5248), - [aux_sym_preproc_if_token2] = ACTIONS(5248), - [aux_sym_preproc_else_token1] = ACTIONS(5248), - [aux_sym_preproc_elif_token1] = ACTIONS(5246), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5248), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5248), - [anon_sym_LPAREN2] = ACTIONS(5248), - [anon_sym_DASH] = ACTIONS(5246), - [anon_sym_PLUS] = ACTIONS(5246), - [anon_sym_STAR] = ACTIONS(5246), - [anon_sym_SLASH] = ACTIONS(5246), - [anon_sym_PERCENT] = ACTIONS(5246), - [anon_sym_PIPE_PIPE] = ACTIONS(5248), - [anon_sym_AMP_AMP] = ACTIONS(5248), - [anon_sym_PIPE] = ACTIONS(5246), - [anon_sym_CARET] = ACTIONS(5246), - [anon_sym_AMP] = ACTIONS(5246), - [anon_sym_EQ_EQ] = ACTIONS(5248), - [anon_sym_BANG_EQ] = ACTIONS(5248), - [anon_sym_GT] = ACTIONS(5246), - [anon_sym_GT_EQ] = ACTIONS(5248), - [anon_sym_LT_EQ] = ACTIONS(5246), - [anon_sym_LT] = ACTIONS(5246), - [anon_sym_LT_LT] = ACTIONS(5246), - [anon_sym_GT_GT] = ACTIONS(5246), - [anon_sym_SEMI] = ACTIONS(5248), - [anon_sym___attribute__] = ACTIONS(5246), - [anon_sym_LBRACE] = ACTIONS(5248), - [anon_sym_RBRACE] = ACTIONS(5248), - [anon_sym_signed] = ACTIONS(5271), - [anon_sym_unsigned] = ACTIONS(5271), - [anon_sym_long] = ACTIONS(5271), - [anon_sym_short] = ACTIONS(5271), - [anon_sym_LBRACK] = ACTIONS(5248), - [anon_sym_RBRACK] = ACTIONS(5248), - [anon_sym_EQ] = ACTIONS(5246), - [sym_primitive_type] = ACTIONS(5246), - [anon_sym_COLON] = ACTIONS(5248), - [anon_sym_QMARK] = ACTIONS(5248), - [anon_sym_STAR_EQ] = ACTIONS(5248), - [anon_sym_SLASH_EQ] = ACTIONS(5248), - [anon_sym_PERCENT_EQ] = ACTIONS(5248), - [anon_sym_PLUS_EQ] = ACTIONS(5248), - [anon_sym_DASH_EQ] = ACTIONS(5248), - [anon_sym_LT_LT_EQ] = ACTIONS(5248), - [anon_sym_GT_GT_EQ] = ACTIONS(5248), - [anon_sym_AMP_EQ] = ACTIONS(5248), - [anon_sym_CARET_EQ] = ACTIONS(5248), - [anon_sym_PIPE_EQ] = ACTIONS(5248), - [anon_sym_and_eq] = ACTIONS(5246), - [anon_sym_or_eq] = ACTIONS(5246), - [anon_sym_xor_eq] = ACTIONS(5246), - [anon_sym_LT_EQ_GT] = ACTIONS(5248), - [anon_sym_or] = ACTIONS(5246), - [anon_sym_and] = ACTIONS(5246), - [anon_sym_bitor] = ACTIONS(5246), - [anon_sym_xor] = ACTIONS(5246), - [anon_sym_bitand] = ACTIONS(5246), - [anon_sym_not_eq] = ACTIONS(5246), - [anon_sym_DASH_DASH] = ACTIONS(5248), - [anon_sym_PLUS_PLUS] = ACTIONS(5248), - [anon_sym_DOT] = ACTIONS(5246), - [anon_sym_DOT_STAR] = ACTIONS(5248), - [anon_sym_DASH_GT] = ACTIONS(5248), + [1820] = { + [sym__expression] = STATE(4950), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5246), - [anon_sym_decltype] = ACTIONS(5246), - }, - [1994] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4996), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym___extension__] = ACTIONS(4998), - [anon_sym___attribute__] = ACTIONS(4998), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4998), - [anon_sym_volatile] = ACTIONS(4998), - [anon_sym_restrict] = ACTIONS(4998), - [anon_sym___restrict__] = ACTIONS(4998), - [anon_sym__Atomic] = ACTIONS(4998), - [anon_sym__Noreturn] = ACTIONS(4998), - [anon_sym_noreturn] = ACTIONS(4998), - [anon_sym_mutable] = ACTIONS(4998), - [anon_sym_constinit] = ACTIONS(4998), - [anon_sym_consteval] = ACTIONS(4998), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4996), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4998), - [anon_sym_or_eq] = ACTIONS(4998), - [anon_sym_xor_eq] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4998), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4998), - [anon_sym_not_eq] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4998), - [anon_sym_decltype] = ACTIONS(4998), - [anon_sym_final] = ACTIONS(4998), - [anon_sym_override] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(4998), - }, - [1995] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4988), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym___extension__] = ACTIONS(4990), - [anon_sym___attribute__] = ACTIONS(4990), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4990), - [anon_sym_volatile] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4990), - [anon_sym___restrict__] = ACTIONS(4990), - [anon_sym__Atomic] = ACTIONS(4990), - [anon_sym__Noreturn] = ACTIONS(4990), - [anon_sym_noreturn] = ACTIONS(4990), - [anon_sym_mutable] = ACTIONS(4990), - [anon_sym_constinit] = ACTIONS(4990), - [anon_sym_consteval] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4988), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_and_eq] = ACTIONS(4990), - [anon_sym_or_eq] = ACTIONS(4990), - [anon_sym_xor_eq] = ACTIONS(4990), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4990), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4990), - [anon_sym_not_eq] = ACTIONS(4990), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4990), - [anon_sym_decltype] = ACTIONS(4990), - [anon_sym_final] = ACTIONS(4990), - [anon_sym_override] = ACTIONS(4990), - [anon_sym_GT2] = ACTIONS(4990), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [1996] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [sym_identifier] = ACTIONS(4147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [aux_sym_preproc_if_token2] = ACTIONS(4139), - [aux_sym_preproc_else_token1] = ACTIONS(4139), - [aux_sym_preproc_elif_token1] = ACTIONS(4147), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4139), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5274), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(5277), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(5279), - [anon_sym_SLASH_EQ] = ACTIONS(5279), - [anon_sym_PERCENT_EQ] = ACTIONS(5279), - [anon_sym_PLUS_EQ] = ACTIONS(5279), - [anon_sym_DASH_EQ] = ACTIONS(5279), - [anon_sym_LT_LT_EQ] = ACTIONS(5279), - [anon_sym_GT_GT_EQ] = ACTIONS(5279), - [anon_sym_AMP_EQ] = ACTIONS(5279), - [anon_sym_CARET_EQ] = ACTIONS(5279), - [anon_sym_PIPE_EQ] = ACTIONS(5279), - [anon_sym_and_eq] = ACTIONS(5277), - [anon_sym_or_eq] = ACTIONS(5277), - [anon_sym_xor_eq] = ACTIONS(5277), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), + [1821] = { + [sym__expression] = STATE(3680), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [1997] = { - [sym_catch_clause] = STATE(2000), - [aux_sym_constructor_try_statement_repeat1] = STATE(2000), - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token2] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [aux_sym_preproc_else_token1] = ACTIONS(2826), - [aux_sym_preproc_elif_token1] = ACTIONS(2826), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym___extension__] = ACTIONS(2826), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym___inline] = ACTIONS(2826), - [anon_sym___inline__] = ACTIONS(2826), - [anon_sym___forceinline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym___thread] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym___restrict__] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym__Noreturn] = ACTIONS(2826), - [anon_sym_noreturn] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_alignas] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_friend] = ACTIONS(2826), - [anon_sym_public] = ACTIONS(2826), - [anon_sym_private] = ACTIONS(2826), - [anon_sym_protected] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_catch] = ACTIONS(5269), + [1822] = { + [sym__expression] = STATE(3499), + [sym__expression_not_binary] = STATE(3833), + [sym_conditional_expression] = STATE(3833), + [sym_assignment_expression] = STATE(3833), + [sym_pointer_expression] = STATE(3833), + [sym_unary_expression] = STATE(3833), + [sym_binary_expression] = STATE(3833), + [sym_update_expression] = STATE(3833), + [sym_cast_expression] = STATE(3833), + [sym_sizeof_expression] = STATE(3833), + [sym_alignof_expression] = STATE(3833), + [sym_offsetof_expression] = STATE(3833), + [sym_generic_expression] = STATE(3833), + [sym_subscript_expression] = STATE(3833), + [sym_call_expression] = STATE(3833), + [sym_gnu_asm_expression] = STATE(3833), + [sym_field_expression] = STATE(3833), + [sym_compound_literal_expression] = STATE(3833), + [sym_parenthesized_expression] = STATE(3833), + [sym_char_literal] = STATE(3625), + [sym_concatenated_string] = STATE(3625), + [sym_string_literal] = STATE(2457), + [sym_null] = STATE(3833), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8066), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3833), + [sym_raw_string_literal] = STATE(2457), + [sym_co_await_expression] = STATE(3833), + [sym_new_expression] = STATE(3833), + [sym_delete_expression] = STATE(3833), + [sym_requires_clause] = STATE(3833), + [sym_requires_expression] = STATE(3833), + [sym_lambda_expression] = STATE(3833), + [sym_lambda_capture_specifier] = STATE(6380), + [sym_fold_expression] = STATE(3833), + [sym_parameter_pack_expansion] = STATE(3833), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3833), + [sym_qualified_type_identifier] = STATE(8066), + [sym_user_defined_literal] = STATE(3833), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_TILDE] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_compl] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2096), + [anon_sym___alignof__] = ACTIONS(2098), + [anon_sym___alignof] = ACTIONS(2098), + [anon_sym__alignof] = ACTIONS(2098), + [anon_sym_alignof] = ACTIONS(2098), + [anon_sym__Alignof] = ACTIONS(2098), + [anon_sym_offsetof] = ACTIONS(2100), + [anon_sym__Generic] = ACTIONS(2102), + [anon_sym_asm] = ACTIONS(2104), + [anon_sym___asm__] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2108), + [anon_sym_u_SQUOTE] = ACTIONS(2108), + [anon_sym_U_SQUOTE] = ACTIONS(2108), + [anon_sym_u8_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [anon_sym_NULL] = ACTIONS(2114), + [anon_sym_nullptr] = ACTIONS(2114), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2124), + [anon_sym_R_DQUOTE] = ACTIONS(2126), + [anon_sym_LR_DQUOTE] = ACTIONS(2126), + [anon_sym_uR_DQUOTE] = ACTIONS(2126), + [anon_sym_UR_DQUOTE] = ACTIONS(2126), + [anon_sym_u8R_DQUOTE] = ACTIONS(2126), + [anon_sym_co_await] = ACTIONS(2128), + [anon_sym_new] = ACTIONS(2130), + [anon_sym_requires] = ACTIONS(2132), + [sym_this] = ACTIONS(2112), }, - [1998] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_LPAREN2] = ACTIONS(4966), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4964), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_CARET] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_GT_EQ] = ACTIONS(4964), - [anon_sym_LT_EQ] = ACTIONS(4964), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4964), - [anon_sym_GT_GT] = ACTIONS(4964), - [anon_sym___extension__] = ACTIONS(4966), - [anon_sym___attribute__] = ACTIONS(4966), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_const] = ACTIONS(4964), - [anon_sym_constexpr] = ACTIONS(4966), - [anon_sym_volatile] = ACTIONS(4966), - [anon_sym_restrict] = ACTIONS(4966), - [anon_sym___restrict__] = ACTIONS(4966), - [anon_sym__Atomic] = ACTIONS(4966), - [anon_sym__Noreturn] = ACTIONS(4966), - [anon_sym_noreturn] = ACTIONS(4966), - [anon_sym_mutable] = ACTIONS(4966), - [anon_sym_constinit] = ACTIONS(4966), - [anon_sym_consteval] = ACTIONS(4966), - [anon_sym_COLON] = ACTIONS(4964), - [anon_sym_QMARK] = ACTIONS(4966), - [anon_sym_STAR_EQ] = ACTIONS(4966), - [anon_sym_SLASH_EQ] = ACTIONS(4966), - [anon_sym_PERCENT_EQ] = ACTIONS(4966), - [anon_sym_PLUS_EQ] = ACTIONS(4966), - [anon_sym_DASH_EQ] = ACTIONS(4966), - [anon_sym_LT_LT_EQ] = ACTIONS(4966), - [anon_sym_GT_GT_EQ] = ACTIONS(4964), - [anon_sym_AMP_EQ] = ACTIONS(4966), - [anon_sym_CARET_EQ] = ACTIONS(4966), - [anon_sym_PIPE_EQ] = ACTIONS(4966), - [anon_sym_and_eq] = ACTIONS(4966), - [anon_sym_or_eq] = ACTIONS(4966), - [anon_sym_xor_eq] = ACTIONS(4966), - [anon_sym_LT_EQ_GT] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4964), - [anon_sym_and] = ACTIONS(4964), - [anon_sym_bitor] = ACTIONS(4966), - [anon_sym_xor] = ACTIONS(4964), - [anon_sym_bitand] = ACTIONS(4966), - [anon_sym_not_eq] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_DOT_STAR] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4966), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4966), - [anon_sym_decltype] = ACTIONS(4966), - [anon_sym_final] = ACTIONS(4966), - [anon_sym_override] = ACTIONS(4966), - [anon_sym_GT2] = ACTIONS(4966), + [1823] = { + [sym__expression] = STATE(3678), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [1999] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_LPAREN2] = ACTIONS(5010), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5010), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_GT_EQ] = ACTIONS(5008), - [anon_sym_LT_EQ] = ACTIONS(5008), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5008), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym___extension__] = ACTIONS(5010), - [anon_sym___attribute__] = ACTIONS(5010), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_EQ] = ACTIONS(5008), - [anon_sym_const] = ACTIONS(5008), - [anon_sym_constexpr] = ACTIONS(5010), - [anon_sym_volatile] = ACTIONS(5010), - [anon_sym_restrict] = ACTIONS(5010), - [anon_sym___restrict__] = ACTIONS(5010), - [anon_sym__Atomic] = ACTIONS(5010), - [anon_sym__Noreturn] = ACTIONS(5010), - [anon_sym_noreturn] = ACTIONS(5010), - [anon_sym_mutable] = ACTIONS(5010), - [anon_sym_constinit] = ACTIONS(5010), - [anon_sym_consteval] = ACTIONS(5010), - [anon_sym_COLON] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(5010), - [anon_sym_STAR_EQ] = ACTIONS(5010), - [anon_sym_SLASH_EQ] = ACTIONS(5010), - [anon_sym_PERCENT_EQ] = ACTIONS(5010), - [anon_sym_PLUS_EQ] = ACTIONS(5010), - [anon_sym_DASH_EQ] = ACTIONS(5010), - [anon_sym_LT_LT_EQ] = ACTIONS(5010), - [anon_sym_GT_GT_EQ] = ACTIONS(5008), - [anon_sym_AMP_EQ] = ACTIONS(5010), - [anon_sym_CARET_EQ] = ACTIONS(5010), - [anon_sym_PIPE_EQ] = ACTIONS(5010), - [anon_sym_and_eq] = ACTIONS(5010), - [anon_sym_or_eq] = ACTIONS(5010), - [anon_sym_xor_eq] = ACTIONS(5010), - [anon_sym_LT_EQ_GT] = ACTIONS(5010), - [anon_sym_or] = ACTIONS(5008), - [anon_sym_and] = ACTIONS(5008), - [anon_sym_bitor] = ACTIONS(5010), - [anon_sym_xor] = ACTIONS(5008), - [anon_sym_bitand] = ACTIONS(5010), - [anon_sym_not_eq] = ACTIONS(5010), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_DOT_STAR] = ACTIONS(5010), - [anon_sym_DASH_GT] = ACTIONS(5010), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5010), - [anon_sym_decltype] = ACTIONS(5010), - [anon_sym_final] = ACTIONS(5010), - [anon_sym_override] = ACTIONS(5010), - [anon_sym_GT2] = ACTIONS(5010), + [1824] = { + [sym__expression] = STATE(3677), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [2000] = { - [sym_catch_clause] = STATE(2000), - [aux_sym_constructor_try_statement_repeat1] = STATE(2000), - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token2] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [aux_sym_preproc_else_token1] = ACTIONS(2813), - [aux_sym_preproc_elif_token1] = ACTIONS(2813), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2813), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym___inline] = ACTIONS(2813), - [anon_sym___inline__] = ACTIONS(2813), - [anon_sym___forceinline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym___thread] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym___restrict__] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym__Noreturn] = ACTIONS(2813), - [anon_sym_noreturn] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_alignas] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_friend] = ACTIONS(2813), - [anon_sym_public] = ACTIONS(2813), - [anon_sym_private] = ACTIONS(2813), - [anon_sym_protected] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_catch] = ACTIONS(5281), + [1825] = { + [sym__expression] = STATE(3177), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), }, - [2001] = { - [sym_attribute_specifier] = STATE(2428), - [sym_field_declaration_list] = STATE(2314), - [sym_virtual_specifier] = STATE(7522), - [sym_base_class_clause] = STATE(8308), - [sym_identifier] = ACTIONS(5284), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5286), - [anon_sym_COMMA] = ACTIONS(5286), - [anon_sym_RPAREN] = ACTIONS(5286), - [aux_sym_preproc_if_token2] = ACTIONS(5286), - [aux_sym_preproc_else_token1] = ACTIONS(5286), - [aux_sym_preproc_elif_token1] = ACTIONS(5284), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5286), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5286), - [anon_sym_LPAREN2] = ACTIONS(5286), - [anon_sym_DASH] = ACTIONS(5284), - [anon_sym_PLUS] = ACTIONS(5284), - [anon_sym_STAR] = ACTIONS(5284), - [anon_sym_SLASH] = ACTIONS(5284), - [anon_sym_PERCENT] = ACTIONS(5284), - [anon_sym_PIPE_PIPE] = ACTIONS(5286), - [anon_sym_AMP_AMP] = ACTIONS(5286), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_CARET] = ACTIONS(5284), - [anon_sym_AMP] = ACTIONS(5284), - [anon_sym_EQ_EQ] = ACTIONS(5286), - [anon_sym_BANG_EQ] = ACTIONS(5286), - [anon_sym_GT] = ACTIONS(5284), - [anon_sym_GT_EQ] = ACTIONS(5286), - [anon_sym_LT_EQ] = ACTIONS(5284), - [anon_sym_LT] = ACTIONS(5284), - [anon_sym_LT_LT] = ACTIONS(5284), - [anon_sym_GT_GT] = ACTIONS(5284), - [anon_sym_SEMI] = ACTIONS(5286), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5290), - [anon_sym_RBRACE] = ACTIONS(5286), - [anon_sym_LBRACK] = ACTIONS(5286), - [anon_sym_RBRACK] = ACTIONS(5286), - [anon_sym_EQ] = ACTIONS(5284), - [anon_sym_COLON] = ACTIONS(5292), - [anon_sym_QMARK] = ACTIONS(5286), - [anon_sym_STAR_EQ] = ACTIONS(5286), - [anon_sym_SLASH_EQ] = ACTIONS(5286), - [anon_sym_PERCENT_EQ] = ACTIONS(5286), - [anon_sym_PLUS_EQ] = ACTIONS(5286), - [anon_sym_DASH_EQ] = ACTIONS(5286), - [anon_sym_LT_LT_EQ] = ACTIONS(5286), - [anon_sym_GT_GT_EQ] = ACTIONS(5286), - [anon_sym_AMP_EQ] = ACTIONS(5286), - [anon_sym_CARET_EQ] = ACTIONS(5286), - [anon_sym_PIPE_EQ] = ACTIONS(5286), - [anon_sym_and_eq] = ACTIONS(5284), - [anon_sym_or_eq] = ACTIONS(5284), - [anon_sym_xor_eq] = ACTIONS(5284), - [anon_sym_LT_EQ_GT] = ACTIONS(5286), - [anon_sym_or] = ACTIONS(5284), - [anon_sym_and] = ACTIONS(5284), - [anon_sym_bitor] = ACTIONS(5284), - [anon_sym_xor] = ACTIONS(5284), - [anon_sym_bitand] = ACTIONS(5284), - [anon_sym_not_eq] = ACTIONS(5284), - [anon_sym_DASH_DASH] = ACTIONS(5286), - [anon_sym_PLUS_PLUS] = ACTIONS(5286), - [anon_sym_DOT] = ACTIONS(5284), - [anon_sym_DOT_STAR] = ACTIONS(5286), - [anon_sym_DASH_GT] = ACTIONS(5286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5284), - [anon_sym_decltype] = ACTIONS(5284), - [anon_sym_final] = ACTIONS(5294), - [anon_sym_override] = ACTIONS(5294), + [1826] = { + [sym__expression] = STATE(3676), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [2002] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(8091), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(8091), - [sym_variadic_parameter_declaration] = STATE(8091), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5296), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), + [1827] = { + [sym__expression] = STATE(3675), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [2003] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_LPAREN2] = ACTIONS(5006), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5004), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5004), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5004), - [anon_sym_CARET] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(5004), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_GT_EQ] = ACTIONS(5004), - [anon_sym_LT_EQ] = ACTIONS(5004), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_LT_LT] = ACTIONS(5004), - [anon_sym_GT_GT] = ACTIONS(5004), - [anon_sym___extension__] = ACTIONS(5006), - [anon_sym___attribute__] = ACTIONS(5006), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_EQ] = ACTIONS(5004), - [anon_sym_const] = ACTIONS(5004), - [anon_sym_constexpr] = ACTIONS(5006), - [anon_sym_volatile] = ACTIONS(5006), - [anon_sym_restrict] = ACTIONS(5006), - [anon_sym___restrict__] = ACTIONS(5006), - [anon_sym__Atomic] = ACTIONS(5006), - [anon_sym__Noreturn] = ACTIONS(5006), - [anon_sym_noreturn] = ACTIONS(5006), - [anon_sym_mutable] = ACTIONS(5006), - [anon_sym_constinit] = ACTIONS(5006), - [anon_sym_consteval] = ACTIONS(5006), - [anon_sym_COLON] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(5006), - [anon_sym_STAR_EQ] = ACTIONS(5006), - [anon_sym_SLASH_EQ] = ACTIONS(5006), - [anon_sym_PERCENT_EQ] = ACTIONS(5006), - [anon_sym_PLUS_EQ] = ACTIONS(5006), - [anon_sym_DASH_EQ] = ACTIONS(5006), - [anon_sym_LT_LT_EQ] = ACTIONS(5006), - [anon_sym_GT_GT_EQ] = ACTIONS(5004), - [anon_sym_AMP_EQ] = ACTIONS(5006), - [anon_sym_CARET_EQ] = ACTIONS(5006), - [anon_sym_PIPE_EQ] = ACTIONS(5006), - [anon_sym_and_eq] = ACTIONS(5006), - [anon_sym_or_eq] = ACTIONS(5006), - [anon_sym_xor_eq] = ACTIONS(5006), - [anon_sym_LT_EQ_GT] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5004), - [anon_sym_and] = ACTIONS(5004), - [anon_sym_bitor] = ACTIONS(5006), - [anon_sym_xor] = ACTIONS(5004), - [anon_sym_bitand] = ACTIONS(5006), - [anon_sym_not_eq] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_DOT_STAR] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5006), - [anon_sym_decltype] = ACTIONS(5006), - [anon_sym_final] = ACTIONS(5006), - [anon_sym_override] = ACTIONS(5006), - [anon_sym_GT2] = ACTIONS(5006), + [1828] = { + [sym__expression] = STATE(3673), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [2004] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(7910), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(7910), - [sym_variadic_parameter_declaration] = STATE(7910), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(1998), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), + [1829] = { + [sym__expression] = STATE(3671), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [2005] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6710), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7185), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7185), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1830] = { + [sym__expression] = STATE(3663), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [2006] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6846), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7200), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7200), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1831] = { + [sym__expression] = STATE(3659), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [2007] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6773), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7211), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7211), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1832] = { + [sym__expression] = STATE(5185), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2008] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6843), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7173), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7173), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1833] = { + [sym__expression] = STATE(5040), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [2009] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [aux_sym_preproc_else_token1] = ACTIONS(2144), - [aux_sym_preproc_elif_token1] = ACTIONS(2144), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(5316), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_friend] = ACTIONS(2144), - [anon_sym_public] = ACTIONS(2144), - [anon_sym_private] = ACTIONS(2144), - [anon_sym_protected] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), + [1834] = { + [sym__expression] = STATE(5028), + [sym__expression_not_binary] = STATE(5304), + [sym_conditional_expression] = STATE(5304), + [sym_assignment_expression] = STATE(5304), + [sym_pointer_expression] = STATE(4083), + [sym_unary_expression] = STATE(5304), + [sym_binary_expression] = STATE(5304), + [sym_update_expression] = STATE(5304), + [sym_cast_expression] = STATE(5304), + [sym_sizeof_expression] = STATE(5304), + [sym_alignof_expression] = STATE(5304), + [sym_offsetof_expression] = STATE(5304), + [sym_generic_expression] = STATE(5304), + [sym_subscript_expression] = STATE(4083), + [sym_call_expression] = STATE(4083), + [sym_gnu_asm_expression] = STATE(5304), + [sym_field_expression] = STATE(4083), + [sym_compound_literal_expression] = STATE(5304), + [sym_parenthesized_expression] = STATE(4083), + [sym_char_literal] = STATE(5265), + [sym_concatenated_string] = STATE(5265), + [sym_string_literal] = STATE(4134), + [sym_null] = STATE(5304), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8280), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(5304), + [sym_raw_string_literal] = STATE(4134), + [sym_co_await_expression] = STATE(5304), + [sym_new_expression] = STATE(5304), + [sym_delete_expression] = STATE(5304), + [sym_requires_clause] = STATE(5304), + [sym_requires_expression] = STATE(5304), + [sym_lambda_expression] = STATE(5304), + [sym_lambda_capture_specifier] = STATE(6406), + [sym_fold_expression] = STATE(5304), + [sym_parameter_pack_expansion] = STATE(5304), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4083), + [sym_qualified_type_identifier] = STATE(8280), + [sym_user_defined_literal] = STATE(4083), + [sym_identifier] = ACTIONS(3884), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3888), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_sizeof] = ACTIONS(3352), + [anon_sym___alignof__] = ACTIONS(3354), + [anon_sym___alignof] = ACTIONS(3354), + [anon_sym__alignof] = ACTIONS(3354), + [anon_sym_alignof] = ACTIONS(3354), + [anon_sym__Alignof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3356), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3360), + [anon_sym___asm__] = ACTIONS(3360), + [sym_number_literal] = ACTIONS(3362), + [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(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3370), + [anon_sym_nullptr] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_requires] = ACTIONS(3388), + [sym_this] = ACTIONS(3368), }, - [2010] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [aux_sym_preproc_else_token1] = ACTIONS(2144), - [aux_sym_preproc_elif_token1] = ACTIONS(2144), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_friend] = ACTIONS(2144), - [anon_sym_public] = ACTIONS(2144), - [anon_sym_private] = ACTIONS(2144), - [anon_sym_protected] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), + [1835] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2011] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6717), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7188), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7188), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1836] = { + [sym__expression] = STATE(3180), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), }, - [2012] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6716), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7173), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7173), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1837] = { + [sym__expression] = STATE(2749), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2013] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6820), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7180), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7180), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1838] = { + [sym__expression] = STATE(2733), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2014] = { - [sym__declaration_modifiers] = STATE(2381), - [sym__declaration_specifiers] = STATE(4576), - [sym_attribute_specifier] = STATE(2381), - [sym_attribute_declaration] = STATE(2381), - [sym_ms_declspec_modifier] = STATE(2381), - [sym_storage_class_specifier] = STATE(2381), - [sym_type_qualifier] = STATE(2381), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_parameter_declaration] = STATE(8096), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2381), - [sym_alignas_specifier] = STATE(2381), - [sym_dependent_type] = STATE(3557), - [sym_optional_parameter_declaration] = STATE(8096), - [sym_variadic_parameter_declaration] = STATE(8096), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2381), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), + [1839] = { + [sym__expression] = STATE(5251), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2015] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6757), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7180), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7180), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1840] = { + [sym__expression] = STATE(4682), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [2016] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6786), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7200), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7200), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1841] = { + [sym__expression] = STATE(4751), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2017] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6825), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7178), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7178), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1842] = { + [sym__expression] = STATE(5204), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2018] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6771), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7189), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7189), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1843] = { + [sym__expression] = STATE(4091), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [2019] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6794), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7195), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7195), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1844] = { + [sym__expression] = STATE(4092), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [2020] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6822), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7195), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7195), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1845] = { + [sym__expression] = STATE(4093), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [2021] = { - [sym__declaration_modifiers] = STATE(4050), - [sym_attribute_specifier] = STATE(4050), - [sym_attribute_declaration] = STATE(4050), - [sym_ms_declspec_modifier] = STATE(4050), - [sym_ms_based_modifier] = STATE(9206), - [sym__declarator] = STATE(7134), - [sym_parenthesized_declarator] = STATE(6760), - [sym_attributed_declarator] = STATE(6760), - [sym_pointer_declarator] = STATE(6760), - [sym_function_declarator] = STATE(6764), - [sym_array_declarator] = STATE(6760), - [sym_storage_class_specifier] = STATE(4050), - [sym_type_qualifier] = STATE(4050), - [sym_decltype] = STATE(9084), - [sym_virtual] = STATE(4050), - [sym_alignas_specifier] = STATE(4050), - [sym_explicit_function_specifier] = STATE(4050), - [sym_operator_cast] = STATE(7178), - [sym__constructor_specifiers] = STATE(4050), - [sym_reference_declarator] = STATE(6760), - [sym_structured_binding_declarator] = STATE(6760), - [sym_template_type] = STATE(9084), - [sym_template_function] = STATE(6760), - [sym_destructor_name] = STATE(6760), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(6030), - [sym_qualified_identifier] = STATE(6760), - [sym_qualified_operator_cast_identifier] = STATE(7178), - [sym_operator_name] = STATE(6760), - [aux_sym_operator_cast_definition_repeat1] = STATE(4050), - [sym_identifier] = ACTIONS(5298), - [anon_sym_LPAREN2] = ACTIONS(3016), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym___extension__] = ACTIONS(5300), - [anon_sym_extern] = ACTIONS(5302), - [anon_sym___attribute__] = ACTIONS(5304), - [anon_sym_COLON_COLON] = ACTIONS(5306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5308), - [anon_sym___declspec] = ACTIONS(5310), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_static] = ACTIONS(5302), - [anon_sym_register] = ACTIONS(5302), - [anon_sym_inline] = ACTIONS(5302), - [anon_sym___inline] = ACTIONS(5302), - [anon_sym___inline__] = ACTIONS(5302), - [anon_sym___forceinline] = ACTIONS(5302), - [anon_sym_thread_local] = ACTIONS(5302), - [anon_sym___thread] = ACTIONS(5302), - [anon_sym_const] = ACTIONS(5300), - [anon_sym_constexpr] = ACTIONS(5300), - [anon_sym_volatile] = ACTIONS(5300), - [anon_sym_restrict] = ACTIONS(5300), - [anon_sym___restrict__] = ACTIONS(5300), - [anon_sym__Atomic] = ACTIONS(5300), - [anon_sym__Noreturn] = ACTIONS(5300), - [anon_sym_noreturn] = ACTIONS(5300), - [anon_sym_mutable] = ACTIONS(5300), - [anon_sym_constinit] = ACTIONS(5300), - [anon_sym_consteval] = ACTIONS(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2130), - [anon_sym_virtual] = ACTIONS(5312), - [anon_sym_alignas] = ACTIONS(5314), - [anon_sym_explicit] = ACTIONS(125), + [1846] = { + [sym__expression] = STATE(4094), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), [anon_sym_template] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(131), - }, - [2022] = { - [sym_template_argument_list] = STATE(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4977), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_SLASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4979), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4977), - [anon_sym___extension__] = ACTIONS(4975), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4970), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4977), - [anon_sym_const] = ACTIONS(4968), - [anon_sym_constexpr] = ACTIONS(4975), - [anon_sym_volatile] = ACTIONS(4975), - [anon_sym_restrict] = ACTIONS(4975), - [anon_sym___restrict__] = ACTIONS(4975), - [anon_sym__Atomic] = ACTIONS(4975), - [anon_sym__Noreturn] = ACTIONS(4975), - [anon_sym_noreturn] = ACTIONS(4975), - [anon_sym_mutable] = ACTIONS(4975), - [anon_sym_constinit] = ACTIONS(4975), - [anon_sym_consteval] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_LT_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_GT_EQ] = ACTIONS(4970), - [anon_sym_AMP_EQ] = ACTIONS(4970), - [anon_sym_CARET_EQ] = ACTIONS(4970), - [anon_sym_PIPE_EQ] = ACTIONS(4970), - [anon_sym_and_eq] = ACTIONS(4970), - [anon_sym_or_eq] = ACTIONS(4970), - [anon_sym_xor_eq] = ACTIONS(4970), - [anon_sym_LT_EQ_GT] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4977), - [anon_sym_and] = ACTIONS(4977), - [anon_sym_bitor] = ACTIONS(4970), - [anon_sym_xor] = ACTIONS(4977), - [anon_sym_bitand] = ACTIONS(4970), - [anon_sym_not_eq] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_DOT_STAR] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4977), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4975), - [anon_sym_decltype] = ACTIONS(4975), - [anon_sym_DASH_GT_STAR] = ACTIONS(4970), - }, - [2023] = { - [sym_catch_clause] = STATE(2036), - [aux_sym_constructor_try_statement_repeat1] = STATE(2036), - [sym_identifier] = ACTIONS(2820), - [aux_sym_preproc_def_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token2] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), - [aux_sym_preproc_else_token1] = ACTIONS(2820), - [aux_sym_preproc_elif_token1] = ACTIONS(2820), - [sym_preproc_directive] = ACTIONS(2820), - [anon_sym_LPAREN2] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym___extension__] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym___attribute__] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), - [anon_sym___declspec] = ACTIONS(2820), - [anon_sym___based] = ACTIONS(2820), - [anon_sym_signed] = ACTIONS(2820), - [anon_sym_unsigned] = ACTIONS(2820), - [anon_sym_long] = ACTIONS(2820), - [anon_sym_short] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_register] = ACTIONS(2820), - [anon_sym_inline] = ACTIONS(2820), - [anon_sym___inline] = ACTIONS(2820), - [anon_sym___inline__] = ACTIONS(2820), - [anon_sym___forceinline] = ACTIONS(2820), - [anon_sym_thread_local] = ACTIONS(2820), - [anon_sym___thread] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_constexpr] = ACTIONS(2820), - [anon_sym_volatile] = ACTIONS(2820), - [anon_sym_restrict] = ACTIONS(2820), - [anon_sym___restrict__] = ACTIONS(2820), - [anon_sym__Atomic] = ACTIONS(2820), - [anon_sym__Noreturn] = ACTIONS(2820), - [anon_sym_noreturn] = ACTIONS(2820), - [anon_sym_mutable] = ACTIONS(2820), - [anon_sym_constinit] = ACTIONS(2820), - [anon_sym_consteval] = ACTIONS(2820), - [sym_primitive_type] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2820), - [anon_sym_decltype] = ACTIONS(2820), - [anon_sym_virtual] = ACTIONS(2820), - [anon_sym_alignas] = ACTIONS(2820), - [anon_sym_explicit] = ACTIONS(2820), - [anon_sym_typename] = ACTIONS(2820), - [anon_sym_template] = ACTIONS(2820), - [anon_sym_operator] = ACTIONS(2820), - [anon_sym_friend] = ACTIONS(2820), - [anon_sym_public] = ACTIONS(2820), - [anon_sym_private] = ACTIONS(2820), - [anon_sym_protected] = ACTIONS(2820), - [anon_sym_using] = ACTIONS(2820), - [anon_sym_static_assert] = ACTIONS(2820), - [anon_sym_catch] = ACTIONS(5318), - }, - [2024] = { - [sym_argument_list] = STATE(2836), - [sym_initializer_list] = STATE(2836), - [sym_decltype_auto] = STATE(2416), - [sym_new_declarator] = STATE(2419), - [sym_identifier] = ACTIONS(5320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5322), - [anon_sym_COMMA] = ACTIONS(5322), - [anon_sym_RPAREN] = ACTIONS(5322), - [aux_sym_preproc_if_token2] = ACTIONS(5322), - [aux_sym_preproc_else_token1] = ACTIONS(5322), - [aux_sym_preproc_elif_token1] = ACTIONS(5320), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5322), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5322), - [anon_sym_LPAREN2] = ACTIONS(5324), - [anon_sym_DASH] = ACTIONS(5320), - [anon_sym_PLUS] = ACTIONS(5320), - [anon_sym_STAR] = ACTIONS(5320), - [anon_sym_SLASH] = ACTIONS(5320), - [anon_sym_PERCENT] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5322), - [anon_sym_PIPE] = ACTIONS(5320), - [anon_sym_CARET] = ACTIONS(5320), - [anon_sym_AMP] = ACTIONS(5320), - [anon_sym_EQ_EQ] = ACTIONS(5322), - [anon_sym_BANG_EQ] = ACTIONS(5322), - [anon_sym_GT] = ACTIONS(5320), - [anon_sym_GT_EQ] = ACTIONS(5322), - [anon_sym_LT_EQ] = ACTIONS(5320), - [anon_sym_LT] = ACTIONS(5320), - [anon_sym_LT_LT] = ACTIONS(5320), - [anon_sym_GT_GT] = ACTIONS(5320), - [anon_sym_SEMI] = ACTIONS(5322), - [anon_sym___attribute__] = ACTIONS(5320), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(5322), - [anon_sym_LBRACK] = ACTIONS(5326), - [anon_sym_RBRACK] = ACTIONS(5322), - [anon_sym_EQ] = ACTIONS(5320), - [anon_sym_COLON] = ACTIONS(5322), - [anon_sym_QMARK] = ACTIONS(5322), - [anon_sym_STAR_EQ] = ACTIONS(5322), - [anon_sym_SLASH_EQ] = ACTIONS(5322), - [anon_sym_PERCENT_EQ] = ACTIONS(5322), - [anon_sym_PLUS_EQ] = ACTIONS(5322), - [anon_sym_DASH_EQ] = ACTIONS(5322), - [anon_sym_LT_LT_EQ] = ACTIONS(5322), - [anon_sym_GT_GT_EQ] = ACTIONS(5322), - [anon_sym_AMP_EQ] = ACTIONS(5322), - [anon_sym_CARET_EQ] = ACTIONS(5322), - [anon_sym_PIPE_EQ] = ACTIONS(5322), - [anon_sym_and_eq] = ACTIONS(5320), - [anon_sym_or_eq] = ACTIONS(5320), - [anon_sym_xor_eq] = ACTIONS(5320), - [anon_sym_LT_EQ_GT] = ACTIONS(5322), - [anon_sym_or] = ACTIONS(5320), - [anon_sym_and] = ACTIONS(5320), - [anon_sym_bitor] = ACTIONS(5320), - [anon_sym_xor] = ACTIONS(5320), - [anon_sym_bitand] = ACTIONS(5320), - [anon_sym_not_eq] = ACTIONS(5320), - [anon_sym_DASH_DASH] = ACTIONS(5322), - [anon_sym_PLUS_PLUS] = ACTIONS(5322), - [anon_sym_DOT] = ACTIONS(5320), - [anon_sym_DOT_STAR] = ACTIONS(5322), - [anon_sym_DASH_GT] = ACTIONS(5322), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5328), - [anon_sym_decltype] = ACTIONS(5330), - }, - [2025] = { - [sym_template_argument_list] = STATE(2051), - [sym_identifier] = ACTIONS(4968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [aux_sym_preproc_if_token2] = ACTIONS(4975), - [aux_sym_preproc_else_token1] = ACTIONS(4975), - [aux_sym_preproc_elif_token1] = ACTIONS(4968), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4975), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4975), - [anon_sym_LPAREN2] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4968), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4968), - [anon_sym_PIPE_PIPE] = ACTIONS(4975), - [anon_sym_AMP_AMP] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_CARET] = ACTIONS(4968), - [anon_sym_AMP] = ACTIONS(4968), - [anon_sym_EQ_EQ] = ACTIONS(4975), - [anon_sym_BANG_EQ] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_GT_EQ] = ACTIONS(4975), - [anon_sym_LT_EQ] = ACTIONS(4968), - [anon_sym_LT] = ACTIONS(5332), - [anon_sym_LT_LT] = ACTIONS(4968), - [anon_sym_GT_GT] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym___attribute__] = ACTIONS(4968), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_RBRACE] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4975), - [anon_sym_RBRACK] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4968), - [anon_sym_COLON] = ACTIONS(4968), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_STAR_EQ] = ACTIONS(4975), - [anon_sym_SLASH_EQ] = ACTIONS(4975), - [anon_sym_PERCENT_EQ] = ACTIONS(4975), - [anon_sym_PLUS_EQ] = ACTIONS(4975), - [anon_sym_DASH_EQ] = ACTIONS(4975), - [anon_sym_LT_LT_EQ] = ACTIONS(4975), - [anon_sym_GT_GT_EQ] = ACTIONS(4975), - [anon_sym_AMP_EQ] = ACTIONS(4975), - [anon_sym_CARET_EQ] = ACTIONS(4975), - [anon_sym_PIPE_EQ] = ACTIONS(4975), - [anon_sym_and_eq] = ACTIONS(4968), - [anon_sym_or_eq] = ACTIONS(4968), - [anon_sym_xor_eq] = ACTIONS(4968), - [anon_sym_LT_EQ_GT] = ACTIONS(4975), - [anon_sym_or] = ACTIONS(4968), - [anon_sym_and] = ACTIONS(4968), - [anon_sym_bitor] = ACTIONS(4968), - [anon_sym_xor] = ACTIONS(4968), - [anon_sym_bitand] = ACTIONS(4968), - [anon_sym_not_eq] = ACTIONS(4968), - [anon_sym_DASH_DASH] = ACTIONS(4975), - [anon_sym_PLUS_PLUS] = ACTIONS(4975), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_DOT_STAR] = ACTIONS(4975), - [anon_sym_DASH_GT] = ACTIONS(4975), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4968), - [anon_sym_decltype] = ACTIONS(4968), - [anon_sym_final] = ACTIONS(4968), - [anon_sym_override] = ACTIONS(4968), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [2026] = { - [sym_string_literal] = STATE(2080), - [sym_template_argument_list] = STATE(3223), - [sym_raw_string_literal] = STATE(2080), - [sym_identifier] = ACTIONS(4147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [aux_sym_preproc_if_token2] = ACTIONS(4139), - [aux_sym_preproc_else_token1] = ACTIONS(4139), - [aux_sym_preproc_elif_token1] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5335), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4147), - [anon_sym_or_eq] = ACTIONS(4147), - [anon_sym_xor_eq] = ACTIONS(4147), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), + [1847] = { + [sym__expression] = STATE(4095), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - }, - [2027] = { - [sym_catch_clause] = STATE(2036), - [aux_sym_constructor_try_statement_repeat1] = STATE(2036), - [sym_identifier] = ACTIONS(2836), - [aux_sym_preproc_def_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token2] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), - [aux_sym_preproc_else_token1] = ACTIONS(2836), - [aux_sym_preproc_elif_token1] = ACTIONS(2836), - [sym_preproc_directive] = ACTIONS(2836), - [anon_sym_LPAREN2] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym___extension__] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym___attribute__] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2838), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), - [anon_sym___declspec] = ACTIONS(2836), - [anon_sym___based] = ACTIONS(2836), - [anon_sym_signed] = ACTIONS(2836), - [anon_sym_unsigned] = ACTIONS(2836), - [anon_sym_long] = ACTIONS(2836), - [anon_sym_short] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_register] = ACTIONS(2836), - [anon_sym_inline] = ACTIONS(2836), - [anon_sym___inline] = ACTIONS(2836), - [anon_sym___inline__] = ACTIONS(2836), - [anon_sym___forceinline] = ACTIONS(2836), - [anon_sym_thread_local] = ACTIONS(2836), - [anon_sym___thread] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_constexpr] = ACTIONS(2836), - [anon_sym_volatile] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(2836), - [anon_sym___restrict__] = ACTIONS(2836), - [anon_sym__Atomic] = ACTIONS(2836), - [anon_sym__Noreturn] = ACTIONS(2836), - [anon_sym_noreturn] = ACTIONS(2836), - [anon_sym_mutable] = ACTIONS(2836), - [anon_sym_constinit] = ACTIONS(2836), - [anon_sym_consteval] = ACTIONS(2836), - [sym_primitive_type] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2836), - [anon_sym_decltype] = ACTIONS(2836), - [anon_sym_virtual] = ACTIONS(2836), - [anon_sym_alignas] = ACTIONS(2836), - [anon_sym_explicit] = ACTIONS(2836), - [anon_sym_typename] = ACTIONS(2836), - [anon_sym_template] = ACTIONS(2836), - [anon_sym_operator] = ACTIONS(2836), - [anon_sym_friend] = ACTIONS(2836), - [anon_sym_public] = ACTIONS(2836), - [anon_sym_private] = ACTIONS(2836), - [anon_sym_protected] = ACTIONS(2836), - [anon_sym_using] = ACTIONS(2836), - [anon_sym_static_assert] = ACTIONS(2836), - [anon_sym_catch] = ACTIONS(5318), - }, - [2028] = { - [sym_template_argument_list] = STATE(2051), - [sym_identifier] = ACTIONS(5338), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4163), - [anon_sym_COMMA] = ACTIONS(4163), - [anon_sym_RPAREN] = ACTIONS(4163), - [aux_sym_preproc_if_token2] = ACTIONS(4163), - [aux_sym_preproc_else_token1] = ACTIONS(4163), - [aux_sym_preproc_elif_token1] = ACTIONS(5338), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4163), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4163), - [anon_sym_LPAREN2] = ACTIONS(4163), - [anon_sym_DASH] = ACTIONS(5338), - [anon_sym_PLUS] = ACTIONS(5338), - [anon_sym_STAR] = ACTIONS(5338), - [anon_sym_SLASH] = ACTIONS(5338), - [anon_sym_PERCENT] = ACTIONS(5338), - [anon_sym_PIPE_PIPE] = ACTIONS(4163), - [anon_sym_AMP_AMP] = ACTIONS(4163), - [anon_sym_PIPE] = ACTIONS(5338), - [anon_sym_CARET] = ACTIONS(5338), - [anon_sym_AMP] = ACTIONS(5338), - [anon_sym_EQ_EQ] = ACTIONS(4163), - [anon_sym_BANG_EQ] = ACTIONS(4163), - [anon_sym_GT] = ACTIONS(5338), - [anon_sym_GT_EQ] = ACTIONS(4163), - [anon_sym_LT_EQ] = ACTIONS(5338), - [anon_sym_LT] = ACTIONS(5340), - [anon_sym_LT_LT] = ACTIONS(5338), - [anon_sym_GT_GT] = ACTIONS(5338), - [anon_sym_SEMI] = ACTIONS(4163), - [anon_sym___attribute__] = ACTIONS(5338), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_RBRACK] = ACTIONS(4163), - [anon_sym_EQ] = ACTIONS(5338), - [anon_sym_COLON] = ACTIONS(5338), - [anon_sym_QMARK] = ACTIONS(4163), - [anon_sym_STAR_EQ] = ACTIONS(4163), - [anon_sym_SLASH_EQ] = ACTIONS(4163), - [anon_sym_PERCENT_EQ] = ACTIONS(4163), - [anon_sym_PLUS_EQ] = ACTIONS(4163), - [anon_sym_DASH_EQ] = ACTIONS(4163), - [anon_sym_LT_LT_EQ] = ACTIONS(4163), - [anon_sym_GT_GT_EQ] = ACTIONS(4163), - [anon_sym_AMP_EQ] = ACTIONS(4163), - [anon_sym_CARET_EQ] = ACTIONS(4163), - [anon_sym_PIPE_EQ] = ACTIONS(4163), - [anon_sym_and_eq] = ACTIONS(5338), - [anon_sym_or_eq] = ACTIONS(5338), - [anon_sym_xor_eq] = ACTIONS(5338), - [anon_sym_LT_EQ_GT] = ACTIONS(4163), - [anon_sym_or] = ACTIONS(5338), - [anon_sym_and] = ACTIONS(5338), - [anon_sym_bitor] = ACTIONS(5338), - [anon_sym_xor] = ACTIONS(5338), - [anon_sym_bitand] = ACTIONS(5338), - [anon_sym_not_eq] = ACTIONS(5338), - [anon_sym_DASH_DASH] = ACTIONS(4163), - [anon_sym_PLUS_PLUS] = ACTIONS(4163), - [anon_sym_DOT] = ACTIONS(5338), - [anon_sym_DOT_STAR] = ACTIONS(4163), - [anon_sym_DASH_GT] = ACTIONS(4163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5338), - [anon_sym_decltype] = ACTIONS(5338), - [anon_sym_final] = ACTIONS(5338), - [anon_sym_override] = ACTIONS(5338), - }, - [2029] = { - [sym_string_literal] = STATE(3362), - [sym_template_argument_list] = STATE(4669), - [sym_raw_string_literal] = STATE(3362), - [sym_identifier] = ACTIONS(4147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [aux_sym_preproc_if_token2] = ACTIONS(4139), - [aux_sym_preproc_else_token1] = ACTIONS(4139), - [aux_sym_preproc_elif_token1] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5342), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(5345), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(5347), - [anon_sym_SLASH_EQ] = ACTIONS(5347), - [anon_sym_PERCENT_EQ] = ACTIONS(5347), - [anon_sym_PLUS_EQ] = ACTIONS(5347), - [anon_sym_DASH_EQ] = ACTIONS(5347), - [anon_sym_LT_LT_EQ] = ACTIONS(5347), - [anon_sym_GT_GT_EQ] = ACTIONS(5347), - [anon_sym_AMP_EQ] = ACTIONS(5347), - [anon_sym_CARET_EQ] = ACTIONS(5347), - [anon_sym_PIPE_EQ] = ACTIONS(5347), - [anon_sym_and_eq] = ACTIONS(5345), - [anon_sym_or_eq] = ACTIONS(5345), - [anon_sym_xor_eq] = ACTIONS(5345), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3742), - [anon_sym_LR_DQUOTE] = ACTIONS(3742), - [anon_sym_uR_DQUOTE] = ACTIONS(3742), - [anon_sym_UR_DQUOTE] = ACTIONS(3742), - [anon_sym_u8R_DQUOTE] = ACTIONS(3742), - }, - [2030] = { - [sym_catch_clause] = STATE(2036), - [aux_sym_constructor_try_statement_repeat1] = STATE(2036), - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token2] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [aux_sym_preproc_else_token1] = ACTIONS(2826), - [aux_sym_preproc_elif_token1] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym___extension__] = ACTIONS(2826), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym___inline] = ACTIONS(2826), - [anon_sym___inline__] = ACTIONS(2826), - [anon_sym___forceinline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym___thread] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym___restrict__] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym__Noreturn] = ACTIONS(2826), - [anon_sym_noreturn] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_alignas] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_friend] = ACTIONS(2826), - [anon_sym_public] = ACTIONS(2826), - [anon_sym_private] = ACTIONS(2826), - [anon_sym_protected] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_catch] = ACTIONS(5318), - }, - [2031] = { - [sym_argument_list] = STATE(2788), - [sym_initializer_list] = STATE(2788), - [sym_decltype_auto] = STATE(2416), - [sym_new_declarator] = STATE(2448), - [sym_identifier] = ACTIONS(5349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [aux_sym_preproc_if_token2] = ACTIONS(5351), - [aux_sym_preproc_else_token1] = ACTIONS(5351), - [aux_sym_preproc_elif_token1] = ACTIONS(5349), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5351), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5351), - [anon_sym_LPAREN2] = ACTIONS(5324), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5349), - [anon_sym_PIPE_PIPE] = ACTIONS(5351), - [anon_sym_AMP_AMP] = ACTIONS(5351), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5349), - [anon_sym_EQ_EQ] = ACTIONS(5351), - [anon_sym_BANG_EQ] = ACTIONS(5351), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_GT_EQ] = ACTIONS(5351), - [anon_sym_LT_EQ] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5349), - [anon_sym_GT_GT] = ACTIONS(5349), - [anon_sym_SEMI] = ACTIONS(5351), - [anon_sym___attribute__] = ACTIONS(5349), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5326), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5351), - [anon_sym_QMARK] = ACTIONS(5351), - [anon_sym_STAR_EQ] = ACTIONS(5351), - [anon_sym_SLASH_EQ] = ACTIONS(5351), - [anon_sym_PERCENT_EQ] = ACTIONS(5351), - [anon_sym_PLUS_EQ] = ACTIONS(5351), - [anon_sym_DASH_EQ] = ACTIONS(5351), - [anon_sym_LT_LT_EQ] = ACTIONS(5351), - [anon_sym_GT_GT_EQ] = ACTIONS(5351), - [anon_sym_AMP_EQ] = ACTIONS(5351), - [anon_sym_CARET_EQ] = ACTIONS(5351), - [anon_sym_PIPE_EQ] = ACTIONS(5351), - [anon_sym_and_eq] = ACTIONS(5349), - [anon_sym_or_eq] = ACTIONS(5349), - [anon_sym_xor_eq] = ACTIONS(5349), - [anon_sym_LT_EQ_GT] = ACTIONS(5351), - [anon_sym_or] = ACTIONS(5349), - [anon_sym_and] = ACTIONS(5349), - [anon_sym_bitor] = ACTIONS(5349), - [anon_sym_xor] = ACTIONS(5349), - [anon_sym_bitand] = ACTIONS(5349), - [anon_sym_not_eq] = ACTIONS(5349), - [anon_sym_DASH_DASH] = ACTIONS(5351), - [anon_sym_PLUS_PLUS] = ACTIONS(5351), - [anon_sym_DOT] = ACTIONS(5349), - [anon_sym_DOT_STAR] = ACTIONS(5351), - [anon_sym_DASH_GT] = ACTIONS(5351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5328), - [anon_sym_decltype] = ACTIONS(5330), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [2032] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [aux_sym_preproc_else_token1] = ACTIONS(2144), - [aux_sym_preproc_elif_token1] = ACTIONS(2144), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_friend] = ACTIONS(2144), - [anon_sym_public] = ACTIONS(2144), - [anon_sym_private] = ACTIONS(2144), - [anon_sym_protected] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), + [1848] = { + [sym__expression] = STATE(4096), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [2033] = { - [sym_template_argument_list] = STATE(2106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4977), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_SLASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4979), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4977), - [anon_sym___extension__] = ACTIONS(4975), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4972), - [anon_sym_EQ] = ACTIONS(4977), - [anon_sym_const] = ACTIONS(4968), - [anon_sym_constexpr] = ACTIONS(4975), - [anon_sym_volatile] = ACTIONS(4975), - [anon_sym_restrict] = ACTIONS(4975), - [anon_sym___restrict__] = ACTIONS(4975), - [anon_sym__Atomic] = ACTIONS(4975), - [anon_sym__Noreturn] = ACTIONS(4975), - [anon_sym_noreturn] = ACTIONS(4975), - [anon_sym_mutable] = ACTIONS(4975), - [anon_sym_constinit] = ACTIONS(4975), - [anon_sym_consteval] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_LT_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_GT_EQ] = ACTIONS(4970), - [anon_sym_AMP_EQ] = ACTIONS(4970), - [anon_sym_CARET_EQ] = ACTIONS(4970), - [anon_sym_PIPE_EQ] = ACTIONS(4970), - [anon_sym_and_eq] = ACTIONS(4970), - [anon_sym_or_eq] = ACTIONS(4970), - [anon_sym_xor_eq] = ACTIONS(4970), - [anon_sym_LT_EQ_GT] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4977), - [anon_sym_and] = ACTIONS(4977), - [anon_sym_bitor] = ACTIONS(4970), - [anon_sym_xor] = ACTIONS(4977), - [anon_sym_bitand] = ACTIONS(4970), - [anon_sym_not_eq] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_DOT_STAR] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4977), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4975), - [anon_sym_decltype] = ACTIONS(4975), - [anon_sym_DASH_GT_STAR] = ACTIONS(4970), + [1849] = { + [sym__expression] = STATE(4097), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [2034] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_LPAREN2] = ACTIONS(5006), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5004), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5004), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5004), - [anon_sym_CARET] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(5004), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5004), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_LT_LT] = ACTIONS(5004), - [anon_sym_GT_GT] = ACTIONS(5004), - [anon_sym___extension__] = ACTIONS(5006), - [anon_sym___attribute__] = ACTIONS(5006), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_EQ] = ACTIONS(5004), - [anon_sym_const] = ACTIONS(5004), - [anon_sym_constexpr] = ACTIONS(5006), - [anon_sym_volatile] = ACTIONS(5006), - [anon_sym_restrict] = ACTIONS(5006), - [anon_sym___restrict__] = ACTIONS(5006), - [anon_sym__Atomic] = ACTIONS(5006), - [anon_sym__Noreturn] = ACTIONS(5006), - [anon_sym_noreturn] = ACTIONS(5006), - [anon_sym_mutable] = ACTIONS(5006), - [anon_sym_constinit] = ACTIONS(5006), - [anon_sym_consteval] = ACTIONS(5006), - [anon_sym_COLON] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(5006), - [anon_sym_STAR_EQ] = ACTIONS(5006), - [anon_sym_SLASH_EQ] = ACTIONS(5006), - [anon_sym_PERCENT_EQ] = ACTIONS(5006), - [anon_sym_PLUS_EQ] = ACTIONS(5006), - [anon_sym_DASH_EQ] = ACTIONS(5006), - [anon_sym_LT_LT_EQ] = ACTIONS(5006), - [anon_sym_GT_GT_EQ] = ACTIONS(5006), - [anon_sym_AMP_EQ] = ACTIONS(5006), - [anon_sym_CARET_EQ] = ACTIONS(5006), - [anon_sym_PIPE_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ_GT] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5006), - [anon_sym_and] = ACTIONS(5006), - [anon_sym_bitor] = ACTIONS(5006), - [anon_sym_xor] = ACTIONS(5006), - [anon_sym_bitand] = ACTIONS(5006), - [anon_sym_not_eq] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_DOT_STAR] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5004), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5006), - [anon_sym_decltype] = ACTIONS(5006), - [anon_sym_final] = ACTIONS(5006), - [anon_sym_override] = ACTIONS(5006), - [anon_sym_DASH_GT_STAR] = ACTIONS(5006), + [1850] = { + [sym__expression] = STATE(4100), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [2035] = { - [sym_argument_list] = STATE(2830), - [sym_initializer_list] = STATE(2830), - [sym_decltype_auto] = STATE(2416), - [sym_new_declarator] = STATE(2452), - [sym_identifier] = ACTIONS(5356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5358), - [anon_sym_COMMA] = ACTIONS(5358), - [anon_sym_RPAREN] = ACTIONS(5358), - [aux_sym_preproc_if_token2] = ACTIONS(5358), - [aux_sym_preproc_else_token1] = ACTIONS(5358), - [aux_sym_preproc_elif_token1] = ACTIONS(5356), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5358), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5358), - [anon_sym_LPAREN2] = ACTIONS(5324), - [anon_sym_DASH] = ACTIONS(5356), - [anon_sym_PLUS] = ACTIONS(5356), - [anon_sym_STAR] = ACTIONS(5356), - [anon_sym_SLASH] = ACTIONS(5356), - [anon_sym_PERCENT] = ACTIONS(5356), - [anon_sym_PIPE_PIPE] = ACTIONS(5358), - [anon_sym_AMP_AMP] = ACTIONS(5358), - [anon_sym_PIPE] = ACTIONS(5356), - [anon_sym_CARET] = ACTIONS(5356), - [anon_sym_AMP] = ACTIONS(5356), - [anon_sym_EQ_EQ] = ACTIONS(5358), - [anon_sym_BANG_EQ] = ACTIONS(5358), - [anon_sym_GT] = ACTIONS(5356), - [anon_sym_GT_EQ] = ACTIONS(5358), - [anon_sym_LT_EQ] = ACTIONS(5356), - [anon_sym_LT] = ACTIONS(5356), - [anon_sym_LT_LT] = ACTIONS(5356), - [anon_sym_GT_GT] = ACTIONS(5356), - [anon_sym_SEMI] = ACTIONS(5358), - [anon_sym___attribute__] = ACTIONS(5356), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(5326), - [anon_sym_RBRACK] = ACTIONS(5358), - [anon_sym_EQ] = ACTIONS(5356), - [anon_sym_COLON] = ACTIONS(5358), - [anon_sym_QMARK] = ACTIONS(5358), - [anon_sym_STAR_EQ] = ACTIONS(5358), - [anon_sym_SLASH_EQ] = ACTIONS(5358), - [anon_sym_PERCENT_EQ] = ACTIONS(5358), - [anon_sym_PLUS_EQ] = ACTIONS(5358), - [anon_sym_DASH_EQ] = ACTIONS(5358), - [anon_sym_LT_LT_EQ] = ACTIONS(5358), - [anon_sym_GT_GT_EQ] = ACTIONS(5358), - [anon_sym_AMP_EQ] = ACTIONS(5358), - [anon_sym_CARET_EQ] = ACTIONS(5358), - [anon_sym_PIPE_EQ] = ACTIONS(5358), - [anon_sym_and_eq] = ACTIONS(5356), - [anon_sym_or_eq] = ACTIONS(5356), - [anon_sym_xor_eq] = ACTIONS(5356), - [anon_sym_LT_EQ_GT] = ACTIONS(5358), - [anon_sym_or] = ACTIONS(5356), - [anon_sym_and] = ACTIONS(5356), - [anon_sym_bitor] = ACTIONS(5356), - [anon_sym_xor] = ACTIONS(5356), - [anon_sym_bitand] = ACTIONS(5356), - [anon_sym_not_eq] = ACTIONS(5356), - [anon_sym_DASH_DASH] = ACTIONS(5358), - [anon_sym_PLUS_PLUS] = ACTIONS(5358), - [anon_sym_DOT] = ACTIONS(5356), - [anon_sym_DOT_STAR] = ACTIONS(5358), - [anon_sym_DASH_GT] = ACTIONS(5358), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5328), - [anon_sym_decltype] = ACTIONS(5330), + [1851] = { + [sym__expression] = STATE(4101), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [2036] = { - [sym_catch_clause] = STATE(2036), - [aux_sym_constructor_try_statement_repeat1] = STATE(2036), - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token2] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [aux_sym_preproc_else_token1] = ACTIONS(2813), - [aux_sym_preproc_elif_token1] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2813), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym___inline] = ACTIONS(2813), - [anon_sym___inline__] = ACTIONS(2813), - [anon_sym___forceinline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym___thread] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym___restrict__] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym__Noreturn] = ACTIONS(2813), - [anon_sym_noreturn] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_alignas] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_friend] = ACTIONS(2813), - [anon_sym_public] = ACTIONS(2813), - [anon_sym_private] = ACTIONS(2813), - [anon_sym_protected] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_catch] = ACTIONS(5360), + [1852] = { + [sym__expression] = STATE(4103), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [2037] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym___extension__] = ACTIONS(4994), - [anon_sym___attribute__] = ACTIONS(4994), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4994), - [anon_sym_volatile] = ACTIONS(4994), - [anon_sym_restrict] = ACTIONS(4994), - [anon_sym___restrict__] = ACTIONS(4994), - [anon_sym__Atomic] = ACTIONS(4994), - [anon_sym__Noreturn] = ACTIONS(4994), - [anon_sym_noreturn] = ACTIONS(4994), - [anon_sym_mutable] = ACTIONS(4994), - [anon_sym_constinit] = ACTIONS(4994), - [anon_sym_consteval] = ACTIONS(4994), - [anon_sym_COLON] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4994), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4994), - [anon_sym_and] = ACTIONS(4994), - [anon_sym_bitor] = ACTIONS(4994), - [anon_sym_xor] = ACTIONS(4994), - [anon_sym_bitand] = ACTIONS(4994), - [anon_sym_not_eq] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4994), - [anon_sym_decltype] = ACTIONS(4994), - [anon_sym_final] = ACTIONS(4994), - [anon_sym_override] = ACTIONS(4994), - [anon_sym_DASH_GT_STAR] = ACTIONS(4994), + [1853] = { + [sym__expression] = STATE(3978), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [2038] = { - [sym_argument_list] = STATE(2735), - [sym_initializer_list] = STATE(2735), - [sym_decltype_auto] = STATE(2416), - [sym_new_declarator] = STATE(2401), - [sym_identifier] = ACTIONS(5363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5365), - [anon_sym_COMMA] = ACTIONS(5365), - [anon_sym_RPAREN] = ACTIONS(5365), - [aux_sym_preproc_if_token2] = ACTIONS(5365), - [aux_sym_preproc_else_token1] = ACTIONS(5365), - [aux_sym_preproc_elif_token1] = ACTIONS(5363), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5365), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5365), - [anon_sym_LPAREN2] = ACTIONS(5324), - [anon_sym_DASH] = ACTIONS(5363), - [anon_sym_PLUS] = ACTIONS(5363), - [anon_sym_STAR] = ACTIONS(5363), - [anon_sym_SLASH] = ACTIONS(5363), - [anon_sym_PERCENT] = ACTIONS(5363), - [anon_sym_PIPE_PIPE] = ACTIONS(5365), - [anon_sym_AMP_AMP] = ACTIONS(5365), - [anon_sym_PIPE] = ACTIONS(5363), - [anon_sym_CARET] = ACTIONS(5363), - [anon_sym_AMP] = ACTIONS(5363), - [anon_sym_EQ_EQ] = ACTIONS(5365), - [anon_sym_BANG_EQ] = ACTIONS(5365), - [anon_sym_GT] = ACTIONS(5363), - [anon_sym_GT_EQ] = ACTIONS(5365), - [anon_sym_LT_EQ] = ACTIONS(5363), - [anon_sym_LT] = ACTIONS(5363), - [anon_sym_LT_LT] = ACTIONS(5363), - [anon_sym_GT_GT] = ACTIONS(5363), - [anon_sym_SEMI] = ACTIONS(5365), - [anon_sym___attribute__] = ACTIONS(5363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(5365), - [anon_sym_LBRACK] = ACTIONS(5326), - [anon_sym_RBRACK] = ACTIONS(5365), - [anon_sym_EQ] = ACTIONS(5363), - [anon_sym_COLON] = ACTIONS(5365), - [anon_sym_QMARK] = ACTIONS(5365), - [anon_sym_STAR_EQ] = ACTIONS(5365), - [anon_sym_SLASH_EQ] = ACTIONS(5365), - [anon_sym_PERCENT_EQ] = ACTIONS(5365), - [anon_sym_PLUS_EQ] = ACTIONS(5365), - [anon_sym_DASH_EQ] = ACTIONS(5365), - [anon_sym_LT_LT_EQ] = ACTIONS(5365), - [anon_sym_GT_GT_EQ] = ACTIONS(5365), - [anon_sym_AMP_EQ] = ACTIONS(5365), - [anon_sym_CARET_EQ] = ACTIONS(5365), - [anon_sym_PIPE_EQ] = ACTIONS(5365), - [anon_sym_and_eq] = ACTIONS(5363), - [anon_sym_or_eq] = ACTIONS(5363), - [anon_sym_xor_eq] = ACTIONS(5363), - [anon_sym_LT_EQ_GT] = ACTIONS(5365), - [anon_sym_or] = ACTIONS(5363), - [anon_sym_and] = ACTIONS(5363), - [anon_sym_bitor] = ACTIONS(5363), - [anon_sym_xor] = ACTIONS(5363), - [anon_sym_bitand] = ACTIONS(5363), - [anon_sym_not_eq] = ACTIONS(5363), - [anon_sym_DASH_DASH] = ACTIONS(5365), - [anon_sym_PLUS_PLUS] = ACTIONS(5365), - [anon_sym_DOT] = ACTIONS(5363), - [anon_sym_DOT_STAR] = ACTIONS(5365), - [anon_sym_DASH_GT] = ACTIONS(5365), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5328), - [anon_sym_decltype] = ACTIONS(5330), + [1854] = { + [sym__expression] = STATE(3973), + [sym__expression_not_binary] = STATE(4247), + [sym_conditional_expression] = STATE(4247), + [sym_assignment_expression] = STATE(4247), + [sym_pointer_expression] = STATE(3951), + [sym_unary_expression] = STATE(4247), + [sym_binary_expression] = STATE(4247), + [sym_update_expression] = STATE(4247), + [sym_cast_expression] = STATE(4247), + [sym_sizeof_expression] = STATE(4247), + [sym_alignof_expression] = STATE(4247), + [sym_offsetof_expression] = STATE(4247), + [sym_generic_expression] = STATE(4247), + [sym_subscript_expression] = STATE(3951), + [sym_call_expression] = STATE(3951), + [sym_gnu_asm_expression] = STATE(4247), + [sym_field_expression] = STATE(3951), + [sym_compound_literal_expression] = STATE(4247), + [sym_parenthesized_expression] = STATE(3951), + [sym_char_literal] = STATE(4163), + [sym_concatenated_string] = STATE(4163), + [sym_string_literal] = STATE(2837), + [sym_null] = STATE(4247), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8092), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4247), + [sym_raw_string_literal] = STATE(2837), + [sym_co_await_expression] = STATE(4247), + [sym_new_expression] = STATE(4247), + [sym_delete_expression] = STATE(4247), + [sym_requires_clause] = STATE(4247), + [sym_requires_expression] = STATE(4247), + [sym_lambda_expression] = STATE(4247), + [sym_lambda_capture_specifier] = STATE(6460), + [sym_fold_expression] = STATE(4247), + [sym_parameter_pack_expansion] = STATE(4247), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6179), + [sym_qualified_identifier] = STATE(3951), + [sym_qualified_type_identifier] = STATE(8092), + [sym_user_defined_literal] = STATE(3951), + [sym_identifier] = ACTIONS(2828), + [anon_sym_LPAREN2] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2832), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_compl] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_sizeof] = ACTIONS(2022), + [anon_sym___alignof__] = ACTIONS(2024), + [anon_sym___alignof] = ACTIONS(2024), + [anon_sym__alignof] = ACTIONS(2024), + [anon_sym_alignof] = ACTIONS(2024), + [anon_sym__Alignof] = ACTIONS(2024), + [anon_sym_offsetof] = ACTIONS(2026), + [anon_sym__Generic] = ACTIONS(2028), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2032), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2036), + [anon_sym_u_DQUOTE] = ACTIONS(2036), + [anon_sym_U_DQUOTE] = ACTIONS(2036), + [anon_sym_u8_DQUOTE] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [anon_sym_NULL] = ACTIONS(2040), + [anon_sym_nullptr] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2044), + [anon_sym_R_DQUOTE] = ACTIONS(2046), + [anon_sym_LR_DQUOTE] = ACTIONS(2046), + [anon_sym_uR_DQUOTE] = ACTIONS(2046), + [anon_sym_UR_DQUOTE] = ACTIONS(2046), + [anon_sym_u8R_DQUOTE] = ACTIONS(2046), + [anon_sym_co_await] = ACTIONS(2048), + [anon_sym_new] = ACTIONS(2050), + [anon_sym_requires] = ACTIONS(2052), + [sym_this] = ACTIONS(2038), }, - [2039] = { - [sym_identifier] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token2] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), - [aux_sym_preproc_else_token1] = ACTIONS(2148), - [aux_sym_preproc_elif_token1] = ACTIONS(2148), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2148), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2148), - [sym_preproc_directive] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_AMP_AMP] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym___extension__] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym___attribute__] = ACTIONS(2148), + [1855] = { + [sym__expression] = STATE(2726), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2148), - [anon_sym___based] = ACTIONS(2148), - [anon_sym_signed] = ACTIONS(2148), - [anon_sym_unsigned] = ACTIONS(2148), - [anon_sym_long] = ACTIONS(2148), - [anon_sym_short] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym___inline] = ACTIONS(2148), - [anon_sym___inline__] = ACTIONS(2148), - [anon_sym___forceinline] = ACTIONS(2148), - [anon_sym_thread_local] = ACTIONS(2148), - [anon_sym___thread] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_constexpr] = ACTIONS(2148), - [anon_sym_volatile] = ACTIONS(2148), - [anon_sym_restrict] = ACTIONS(2148), - [anon_sym___restrict__] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(2148), - [anon_sym__Noreturn] = ACTIONS(2148), - [anon_sym_noreturn] = ACTIONS(2148), - [anon_sym_mutable] = ACTIONS(2148), - [anon_sym_constinit] = ACTIONS(2148), - [anon_sym_consteval] = ACTIONS(2148), - [sym_primitive_type] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_class] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2148), - [anon_sym_decltype] = ACTIONS(2148), - [anon_sym_virtual] = ACTIONS(2148), - [anon_sym_alignas] = ACTIONS(2148), - [anon_sym_explicit] = ACTIONS(2148), - [anon_sym_typename] = ACTIONS(2148), - [anon_sym_template] = ACTIONS(2148), - [anon_sym_operator] = ACTIONS(2148), - [anon_sym_friend] = ACTIONS(2148), - [anon_sym_public] = ACTIONS(2148), - [anon_sym_private] = ACTIONS(2148), - [anon_sym_protected] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2148), - [anon_sym_static_assert] = ACTIONS(2148), - [anon_sym_catch] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2040] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_RPAREN] = ACTIONS(5016), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5021), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym___extension__] = ACTIONS(5019), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5014), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5019), - [anon_sym_volatile] = ACTIONS(5019), - [anon_sym_restrict] = ACTIONS(5019), - [anon_sym___restrict__] = ACTIONS(5019), - [anon_sym__Atomic] = ACTIONS(5019), - [anon_sym__Noreturn] = ACTIONS(5019), - [anon_sym_noreturn] = ACTIONS(5019), - [anon_sym_mutable] = ACTIONS(5019), - [anon_sym_constinit] = ACTIONS(5019), - [anon_sym_consteval] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_LT_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_GT_EQ] = ACTIONS(5014), - [anon_sym_AMP_EQ] = ACTIONS(5014), - [anon_sym_CARET_EQ] = ACTIONS(5014), - [anon_sym_PIPE_EQ] = ACTIONS(5014), - [anon_sym_and_eq] = ACTIONS(5014), - [anon_sym_or_eq] = ACTIONS(5014), - [anon_sym_xor_eq] = ACTIONS(5014), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_and] = ACTIONS(5021), - [anon_sym_bitor] = ACTIONS(5014), - [anon_sym_xor] = ACTIONS(5021), - [anon_sym_bitand] = ACTIONS(5014), - [anon_sym_not_eq] = ACTIONS(5014), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5021), + [1856] = { + [sym__expression] = STATE(5195), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5019), - [anon_sym_decltype] = ACTIONS(5019), - [anon_sym_DASH_GT_STAR] = ACTIONS(5014), - }, - [2041] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_LPAREN2] = ACTIONS(4966), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4964), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_CARET] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4964), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4964), - [anon_sym_GT_GT] = ACTIONS(4964), - [anon_sym___extension__] = ACTIONS(4966), - [anon_sym___attribute__] = ACTIONS(4966), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_const] = ACTIONS(4964), - [anon_sym_constexpr] = ACTIONS(4966), - [anon_sym_volatile] = ACTIONS(4966), - [anon_sym_restrict] = ACTIONS(4966), - [anon_sym___restrict__] = ACTIONS(4966), - [anon_sym__Atomic] = ACTIONS(4966), - [anon_sym__Noreturn] = ACTIONS(4966), - [anon_sym_noreturn] = ACTIONS(4966), - [anon_sym_mutable] = ACTIONS(4966), - [anon_sym_constinit] = ACTIONS(4966), - [anon_sym_consteval] = ACTIONS(4966), - [anon_sym_COLON] = ACTIONS(4964), - [anon_sym_QMARK] = ACTIONS(4966), - [anon_sym_STAR_EQ] = ACTIONS(4966), - [anon_sym_SLASH_EQ] = ACTIONS(4966), - [anon_sym_PERCENT_EQ] = ACTIONS(4966), - [anon_sym_PLUS_EQ] = ACTIONS(4966), - [anon_sym_DASH_EQ] = ACTIONS(4966), - [anon_sym_LT_LT_EQ] = ACTIONS(4966), - [anon_sym_GT_GT_EQ] = ACTIONS(4966), - [anon_sym_AMP_EQ] = ACTIONS(4966), - [anon_sym_CARET_EQ] = ACTIONS(4966), - [anon_sym_PIPE_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ_GT] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4966), - [anon_sym_and] = ACTIONS(4966), - [anon_sym_bitor] = ACTIONS(4966), - [anon_sym_xor] = ACTIONS(4966), - [anon_sym_bitand] = ACTIONS(4966), - [anon_sym_not_eq] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_DOT_STAR] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4964), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4966), - [anon_sym_decltype] = ACTIONS(4966), - [anon_sym_final] = ACTIONS(4966), - [anon_sym_override] = ACTIONS(4966), - [anon_sym_DASH_GT_STAR] = ACTIONS(4966), - }, - [2042] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(5010), - [anon_sym_LPAREN2] = ACTIONS(5010), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5010), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_GT_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ] = ACTIONS(5008), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5008), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym___extension__] = ACTIONS(5010), - [anon_sym___attribute__] = ACTIONS(5010), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_EQ] = ACTIONS(5008), - [anon_sym_const] = ACTIONS(5008), - [anon_sym_constexpr] = ACTIONS(5010), - [anon_sym_volatile] = ACTIONS(5010), - [anon_sym_restrict] = ACTIONS(5010), - [anon_sym___restrict__] = ACTIONS(5010), - [anon_sym__Atomic] = ACTIONS(5010), - [anon_sym__Noreturn] = ACTIONS(5010), - [anon_sym_noreturn] = ACTIONS(5010), - [anon_sym_mutable] = ACTIONS(5010), - [anon_sym_constinit] = ACTIONS(5010), - [anon_sym_consteval] = ACTIONS(5010), - [anon_sym_COLON] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(5010), - [anon_sym_STAR_EQ] = ACTIONS(5010), - [anon_sym_SLASH_EQ] = ACTIONS(5010), - [anon_sym_PERCENT_EQ] = ACTIONS(5010), - [anon_sym_PLUS_EQ] = ACTIONS(5010), - [anon_sym_DASH_EQ] = ACTIONS(5010), - [anon_sym_LT_LT_EQ] = ACTIONS(5010), - [anon_sym_GT_GT_EQ] = ACTIONS(5010), - [anon_sym_AMP_EQ] = ACTIONS(5010), - [anon_sym_CARET_EQ] = ACTIONS(5010), - [anon_sym_PIPE_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ_GT] = ACTIONS(5010), - [anon_sym_or] = ACTIONS(5010), - [anon_sym_and] = ACTIONS(5010), - [anon_sym_bitor] = ACTIONS(5010), - [anon_sym_xor] = ACTIONS(5010), - [anon_sym_bitand] = ACTIONS(5010), - [anon_sym_not_eq] = ACTIONS(5010), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_DOT_STAR] = ACTIONS(5010), - [anon_sym_DASH_GT] = ACTIONS(5008), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5010), - [anon_sym_decltype] = ACTIONS(5010), - [anon_sym_final] = ACTIONS(5010), - [anon_sym_override] = ACTIONS(5010), - [anon_sym_DASH_GT_STAR] = ACTIONS(5010), - }, - [2043] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym___extension__] = ACTIONS(4990), - [anon_sym___attribute__] = ACTIONS(4990), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4990), - [anon_sym_volatile] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4990), - [anon_sym___restrict__] = ACTIONS(4990), - [anon_sym__Atomic] = ACTIONS(4990), - [anon_sym__Noreturn] = ACTIONS(4990), - [anon_sym_noreturn] = ACTIONS(4990), - [anon_sym_mutable] = ACTIONS(4990), - [anon_sym_constinit] = ACTIONS(4990), - [anon_sym_consteval] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4990), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4990), - [anon_sym_and] = ACTIONS(4990), - [anon_sym_bitor] = ACTIONS(4990), - [anon_sym_xor] = ACTIONS(4990), - [anon_sym_bitand] = ACTIONS(4990), - [anon_sym_not_eq] = ACTIONS(4990), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4990), - [anon_sym_decltype] = ACTIONS(4990), - [anon_sym_final] = ACTIONS(4990), - [anon_sym_override] = ACTIONS(4990), - [anon_sym_DASH_GT_STAR] = ACTIONS(4990), - }, - [2044] = { - [sym_identifier] = ACTIONS(2849), - [aux_sym_preproc_def_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token2] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), - [aux_sym_preproc_else_token1] = ACTIONS(2849), - [aux_sym_preproc_elif_token1] = ACTIONS(2849), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2849), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2849), - [sym_preproc_directive] = ACTIONS(2849), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2849), - [anon_sym___extension__] = ACTIONS(2849), - [anon_sym_typedef] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), - [anon_sym___declspec] = ACTIONS(2849), - [anon_sym___based] = ACTIONS(2849), - [anon_sym_signed] = ACTIONS(2849), - [anon_sym_unsigned] = ACTIONS(2849), - [anon_sym_long] = ACTIONS(2849), - [anon_sym_short] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_register] = ACTIONS(2849), - [anon_sym_inline] = ACTIONS(2849), - [anon_sym___inline] = ACTIONS(2849), - [anon_sym___inline__] = ACTIONS(2849), - [anon_sym___forceinline] = ACTIONS(2849), - [anon_sym_thread_local] = ACTIONS(2849), - [anon_sym___thread] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_constexpr] = ACTIONS(2849), - [anon_sym_volatile] = ACTIONS(2849), - [anon_sym_restrict] = ACTIONS(2849), - [anon_sym___restrict__] = ACTIONS(2849), - [anon_sym__Atomic] = ACTIONS(2849), - [anon_sym__Noreturn] = ACTIONS(2849), - [anon_sym_noreturn] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [sym_primitive_type] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_class] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2849), - [anon_sym_decltype] = ACTIONS(2849), - [anon_sym_virtual] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym_explicit] = ACTIONS(2849), - [anon_sym_typename] = ACTIONS(2849), - [anon_sym_template] = ACTIONS(2849), - [anon_sym_operator] = ACTIONS(2849), - [anon_sym_friend] = ACTIONS(2849), - [anon_sym_public] = ACTIONS(2849), - [anon_sym_private] = ACTIONS(2849), - [anon_sym_protected] = ACTIONS(2849), - [anon_sym_using] = ACTIONS(2849), - [anon_sym_static_assert] = ACTIONS(2849), - [anon_sym_catch] = ACTIONS(2849), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2045] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym___extension__] = ACTIONS(4998), - [anon_sym___attribute__] = ACTIONS(4998), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4998), - [anon_sym_volatile] = ACTIONS(4998), - [anon_sym_restrict] = ACTIONS(4998), - [anon_sym___restrict__] = ACTIONS(4998), - [anon_sym__Atomic] = ACTIONS(4998), - [anon_sym__Noreturn] = ACTIONS(4998), - [anon_sym_noreturn] = ACTIONS(4998), - [anon_sym_mutable] = ACTIONS(4998), - [anon_sym_constinit] = ACTIONS(4998), - [anon_sym_consteval] = ACTIONS(4998), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4998), - [anon_sym_and] = ACTIONS(4998), - [anon_sym_bitor] = ACTIONS(4998), - [anon_sym_xor] = ACTIONS(4998), - [anon_sym_bitand] = ACTIONS(4998), - [anon_sym_not_eq] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4998), - [anon_sym_decltype] = ACTIONS(4998), - [anon_sym_final] = ACTIONS(4998), - [anon_sym_override] = ACTIONS(4998), - [anon_sym_DASH_GT_STAR] = ACTIONS(4998), + [1857] = { + [sym__expression] = STATE(3167), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3199), + [sym_concatenated_string] = STATE(3199), + [sym_string_literal] = STATE(2090), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2090), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4624), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_TILDE] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2190), + [anon_sym_compl] = ACTIONS(2190), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(2196), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2198), + [anon_sym_L_SQUOTE] = ACTIONS(2200), + [anon_sym_u_SQUOTE] = ACTIONS(2200), + [anon_sym_U_SQUOTE] = ACTIONS(2200), + [anon_sym_u8_SQUOTE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_L_DQUOTE] = ACTIONS(2202), + [anon_sym_u_DQUOTE] = ACTIONS(2202), + [anon_sym_U_DQUOTE] = ACTIONS(2202), + [anon_sym_u8_DQUOTE] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_R_DQUOTE] = ACTIONS(2206), + [anon_sym_LR_DQUOTE] = ACTIONS(2206), + [anon_sym_uR_DQUOTE] = ACTIONS(2206), + [anon_sym_UR_DQUOTE] = ACTIONS(2206), + [anon_sym_u8R_DQUOTE] = ACTIONS(2206), + [anon_sym_co_await] = ACTIONS(2208), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2046] = { - [sym_string_literal] = STATE(1964), - [sym_raw_string_literal] = STATE(1964), - [sym_identifier] = ACTIONS(4147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [aux_sym_preproc_if_token2] = ACTIONS(4139), - [aux_sym_preproc_else_token1] = ACTIONS(4139), - [aux_sym_preproc_elif_token1] = ACTIONS(4147), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4139), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4147), - [anon_sym_or_eq] = ACTIONS(4147), - [anon_sym_xor_eq] = ACTIONS(4147), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), + [1858] = { + [sym__expression] = STATE(5183), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [sym_literal_suffix] = ACTIONS(5367), - }, - [2047] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_RPAREN] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5000), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_CARET] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_EQ_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5002), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_GT_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ] = ACTIONS(5000), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(5000), - [anon_sym_GT_GT] = ACTIONS(5000), - [anon_sym___extension__] = ACTIONS(5002), - [anon_sym___attribute__] = ACTIONS(5002), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5002), - [anon_sym_volatile] = ACTIONS(5002), - [anon_sym_restrict] = ACTIONS(5002), - [anon_sym___restrict__] = ACTIONS(5002), - [anon_sym__Atomic] = ACTIONS(5002), - [anon_sym__Noreturn] = ACTIONS(5002), - [anon_sym_noreturn] = ACTIONS(5002), - [anon_sym_mutable] = ACTIONS(5002), - [anon_sym_constinit] = ACTIONS(5002), - [anon_sym_consteval] = ACTIONS(5002), - [anon_sym_COLON] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_STAR_EQ] = ACTIONS(5002), - [anon_sym_SLASH_EQ] = ACTIONS(5002), - [anon_sym_PERCENT_EQ] = ACTIONS(5002), - [anon_sym_PLUS_EQ] = ACTIONS(5002), - [anon_sym_DASH_EQ] = ACTIONS(5002), - [anon_sym_LT_LT_EQ] = ACTIONS(5002), - [anon_sym_GT_GT_EQ] = ACTIONS(5002), - [anon_sym_AMP_EQ] = ACTIONS(5002), - [anon_sym_CARET_EQ] = ACTIONS(5002), - [anon_sym_PIPE_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ_GT] = ACTIONS(5002), - [anon_sym_or] = ACTIONS(5002), - [anon_sym_and] = ACTIONS(5002), - [anon_sym_bitor] = ACTIONS(5002), - [anon_sym_xor] = ACTIONS(5002), - [anon_sym_bitand] = ACTIONS(5002), - [anon_sym_not_eq] = ACTIONS(5002), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_DOT_STAR] = ACTIONS(5002), - [anon_sym_DASH_GT] = ACTIONS(5000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5002), - [anon_sym_decltype] = ACTIONS(5002), - [anon_sym_final] = ACTIONS(5002), - [anon_sym_override] = ACTIONS(5002), - [anon_sym_DASH_GT_STAR] = ACTIONS(5002), - }, - [2048] = { - [sym_identifier] = ACTIONS(5008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(5010), - [aux_sym_preproc_if_token2] = ACTIONS(5010), - [aux_sym_preproc_else_token1] = ACTIONS(5010), - [aux_sym_preproc_elif_token1] = ACTIONS(5008), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5010), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5010), - [anon_sym_LPAREN2] = ACTIONS(5010), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5010), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_GT_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ] = ACTIONS(5008), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5008), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym_SEMI] = ACTIONS(5010), - [anon_sym___attribute__] = ACTIONS(5008), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_RBRACK] = ACTIONS(5010), - [anon_sym_EQ] = ACTIONS(5008), - [anon_sym_COLON] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(5010), - [anon_sym_STAR_EQ] = ACTIONS(5010), - [anon_sym_SLASH_EQ] = ACTIONS(5010), - [anon_sym_PERCENT_EQ] = ACTIONS(5010), - [anon_sym_PLUS_EQ] = ACTIONS(5010), - [anon_sym_DASH_EQ] = ACTIONS(5010), - [anon_sym_LT_LT_EQ] = ACTIONS(5010), - [anon_sym_GT_GT_EQ] = ACTIONS(5010), - [anon_sym_AMP_EQ] = ACTIONS(5010), - [anon_sym_CARET_EQ] = ACTIONS(5010), - [anon_sym_PIPE_EQ] = ACTIONS(5010), - [anon_sym_and_eq] = ACTIONS(5008), - [anon_sym_or_eq] = ACTIONS(5008), - [anon_sym_xor_eq] = ACTIONS(5008), - [anon_sym_LT_EQ_GT] = ACTIONS(5010), - [anon_sym_or] = ACTIONS(5008), - [anon_sym_and] = ACTIONS(5008), - [anon_sym_bitor] = ACTIONS(5008), - [anon_sym_xor] = ACTIONS(5008), - [anon_sym_bitand] = ACTIONS(5008), - [anon_sym_not_eq] = ACTIONS(5008), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_DOT_STAR] = ACTIONS(5010), - [anon_sym_DASH_GT] = ACTIONS(5010), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5008), - [anon_sym_decltype] = ACTIONS(5008), - [anon_sym_final] = ACTIONS(5008), - [anon_sym_override] = ACTIONS(5008), - }, - [2049] = { - [sym_identifier] = ACTIONS(5369), - [aux_sym_preproc_def_token1] = ACTIONS(5369), - [aux_sym_preproc_if_token1] = ACTIONS(5369), - [aux_sym_preproc_if_token2] = ACTIONS(5369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5369), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5369), - [aux_sym_preproc_else_token1] = ACTIONS(5369), - [aux_sym_preproc_elif_token1] = ACTIONS(5369), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5369), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5369), - [sym_preproc_directive] = ACTIONS(5369), - [anon_sym_LPAREN2] = ACTIONS(5371), - [anon_sym_TILDE] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_AMP_AMP] = ACTIONS(5371), - [anon_sym_AMP] = ACTIONS(5369), - [anon_sym___extension__] = ACTIONS(5369), - [anon_sym_typedef] = ACTIONS(5369), - [anon_sym_extern] = ACTIONS(5369), - [anon_sym___attribute__] = ACTIONS(5369), - [anon_sym_COLON_COLON] = ACTIONS(5371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5371), - [anon_sym___declspec] = ACTIONS(5369), - [anon_sym___based] = ACTIONS(5369), - [anon_sym_signed] = ACTIONS(5369), - [anon_sym_unsigned] = ACTIONS(5369), - [anon_sym_long] = ACTIONS(5369), - [anon_sym_short] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_static] = ACTIONS(5369), - [anon_sym_register] = ACTIONS(5369), - [anon_sym_inline] = ACTIONS(5369), - [anon_sym___inline] = ACTIONS(5369), - [anon_sym___inline__] = ACTIONS(5369), - [anon_sym___forceinline] = ACTIONS(5369), - [anon_sym_thread_local] = ACTIONS(5369), - [anon_sym___thread] = ACTIONS(5369), - [anon_sym_const] = ACTIONS(5369), - [anon_sym_constexpr] = ACTIONS(5369), - [anon_sym_volatile] = ACTIONS(5369), - [anon_sym_restrict] = ACTIONS(5369), - [anon_sym___restrict__] = ACTIONS(5369), - [anon_sym__Atomic] = ACTIONS(5369), - [anon_sym__Noreturn] = ACTIONS(5369), - [anon_sym_noreturn] = ACTIONS(5369), - [anon_sym_mutable] = ACTIONS(5369), - [anon_sym_constinit] = ACTIONS(5369), - [anon_sym_consteval] = ACTIONS(5369), - [sym_primitive_type] = ACTIONS(5369), - [anon_sym_enum] = ACTIONS(5369), - [anon_sym_class] = ACTIONS(5369), - [anon_sym_struct] = ACTIONS(5369), - [anon_sym_union] = ACTIONS(5369), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5369), - [anon_sym_decltype] = ACTIONS(5369), - [anon_sym_virtual] = ACTIONS(5369), - [anon_sym_alignas] = ACTIONS(5369), - [anon_sym_explicit] = ACTIONS(5369), - [anon_sym_typename] = ACTIONS(5369), - [anon_sym_template] = ACTIONS(5369), - [anon_sym_operator] = ACTIONS(5369), - [anon_sym_friend] = ACTIONS(5369), - [anon_sym_public] = ACTIONS(5369), - [anon_sym_private] = ACTIONS(5369), - [anon_sym_protected] = ACTIONS(5369), - [anon_sym_using] = ACTIONS(5369), - [anon_sym_static_assert] = ACTIONS(5369), - }, - [2050] = { - [sym_identifier] = ACTIONS(3054), - [aux_sym_preproc_def_token1] = ACTIONS(3054), - [aux_sym_preproc_if_token1] = ACTIONS(3054), - [aux_sym_preproc_if_token2] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3054), - [aux_sym_preproc_else_token1] = ACTIONS(3054), - [aux_sym_preproc_elif_token1] = ACTIONS(3054), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3054), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3054), - [sym_preproc_directive] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym___extension__] = ACTIONS(3054), - [anon_sym_typedef] = ACTIONS(3054), - [anon_sym_extern] = ACTIONS(3054), - [anon_sym___attribute__] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3056), - [anon_sym___declspec] = ACTIONS(3054), - [anon_sym___based] = ACTIONS(3054), - [anon_sym_signed] = ACTIONS(3054), - [anon_sym_unsigned] = ACTIONS(3054), - [anon_sym_long] = ACTIONS(3054), - [anon_sym_short] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_register] = ACTIONS(3054), - [anon_sym_inline] = ACTIONS(3054), - [anon_sym___inline] = ACTIONS(3054), - [anon_sym___inline__] = ACTIONS(3054), - [anon_sym___forceinline] = ACTIONS(3054), - [anon_sym_thread_local] = ACTIONS(3054), - [anon_sym___thread] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_constexpr] = ACTIONS(3054), - [anon_sym_volatile] = ACTIONS(3054), - [anon_sym_restrict] = ACTIONS(3054), - [anon_sym___restrict__] = ACTIONS(3054), - [anon_sym__Atomic] = ACTIONS(3054), - [anon_sym__Noreturn] = ACTIONS(3054), - [anon_sym_noreturn] = ACTIONS(3054), - [anon_sym_mutable] = ACTIONS(3054), - [anon_sym_constinit] = ACTIONS(3054), - [anon_sym_consteval] = ACTIONS(3054), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_class] = ACTIONS(3054), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_union] = ACTIONS(3054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3054), - [anon_sym_decltype] = ACTIONS(3054), - [anon_sym_virtual] = ACTIONS(3054), - [anon_sym_alignas] = ACTIONS(3054), - [anon_sym_explicit] = ACTIONS(3054), - [anon_sym_typename] = ACTIONS(3054), - [anon_sym_template] = ACTIONS(3054), - [anon_sym_operator] = ACTIONS(3054), - [anon_sym_friend] = ACTIONS(3054), - [anon_sym_public] = ACTIONS(3054), - [anon_sym_private] = ACTIONS(3054), - [anon_sym_protected] = ACTIONS(3054), - [anon_sym_using] = ACTIONS(3054), - [anon_sym_static_assert] = ACTIONS(3054), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2051] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [aux_sym_preproc_if_token2] = ACTIONS(5019), - [aux_sym_preproc_else_token1] = ACTIONS(5019), - [aux_sym_preproc_elif_token1] = ACTIONS(5012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5019), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5019), - [anon_sym_LPAREN2] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5012), - [anon_sym_PLUS] = ACTIONS(5012), - [anon_sym_STAR] = ACTIONS(5012), - [anon_sym_SLASH] = ACTIONS(5012), - [anon_sym_PERCENT] = ACTIONS(5012), - [anon_sym_PIPE_PIPE] = ACTIONS(5019), - [anon_sym_AMP_AMP] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5012), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ] = ACTIONS(5019), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5019), - [anon_sym_LT_EQ] = ACTIONS(5012), - [anon_sym_LT] = ACTIONS(5012), - [anon_sym_LT_LT] = ACTIONS(5012), - [anon_sym_GT_GT] = ACTIONS(5012), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5012), - [anon_sym_COLON] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_STAR_EQ] = ACTIONS(5019), - [anon_sym_SLASH_EQ] = ACTIONS(5019), - [anon_sym_PERCENT_EQ] = ACTIONS(5019), - [anon_sym_PLUS_EQ] = ACTIONS(5019), - [anon_sym_DASH_EQ] = ACTIONS(5019), - [anon_sym_LT_LT_EQ] = ACTIONS(5019), - [anon_sym_GT_GT_EQ] = ACTIONS(5019), - [anon_sym_AMP_EQ] = ACTIONS(5019), - [anon_sym_CARET_EQ] = ACTIONS(5019), - [anon_sym_PIPE_EQ] = ACTIONS(5019), - [anon_sym_and_eq] = ACTIONS(5012), - [anon_sym_or_eq] = ACTIONS(5012), - [anon_sym_xor_eq] = ACTIONS(5012), - [anon_sym_LT_EQ_GT] = ACTIONS(5019), - [anon_sym_or] = ACTIONS(5012), - [anon_sym_and] = ACTIONS(5012), - [anon_sym_bitor] = ACTIONS(5012), - [anon_sym_xor] = ACTIONS(5012), - [anon_sym_bitand] = ACTIONS(5012), - [anon_sym_not_eq] = ACTIONS(5012), - [anon_sym_DASH_DASH] = ACTIONS(5019), - [anon_sym_PLUS_PLUS] = ACTIONS(5019), - [anon_sym_DOT] = ACTIONS(5012), - [anon_sym_DOT_STAR] = ACTIONS(5019), - [anon_sym_DASH_GT] = ACTIONS(5019), + [1859] = { + [sym__expression] = STATE(5134), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_final] = ACTIONS(5012), - [anon_sym_override] = ACTIONS(5012), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2052] = { - [sym_identifier] = ACTIONS(2877), - [aux_sym_preproc_def_token1] = ACTIONS(2877), - [aux_sym_preproc_if_token1] = ACTIONS(2877), - [aux_sym_preproc_if_token2] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2877), - [aux_sym_preproc_else_token1] = ACTIONS(2877), - [aux_sym_preproc_elif_token1] = ACTIONS(2877), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2877), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2877), - [sym_preproc_directive] = ACTIONS(2877), - [anon_sym_LPAREN2] = ACTIONS(2879), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_STAR] = ACTIONS(2879), - [anon_sym_AMP_AMP] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym___extension__] = ACTIONS(2877), - [anon_sym_typedef] = ACTIONS(2877), - [anon_sym_extern] = ACTIONS(2877), - [anon_sym___attribute__] = ACTIONS(2877), - [anon_sym_COLON_COLON] = ACTIONS(2879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2879), - [anon_sym___declspec] = ACTIONS(2877), - [anon_sym___based] = ACTIONS(2877), - [anon_sym_signed] = ACTIONS(2877), - [anon_sym_unsigned] = ACTIONS(2877), - [anon_sym_long] = ACTIONS(2877), - [anon_sym_short] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_register] = ACTIONS(2877), - [anon_sym_inline] = ACTIONS(2877), - [anon_sym___inline] = ACTIONS(2877), - [anon_sym___inline__] = ACTIONS(2877), - [anon_sym___forceinline] = ACTIONS(2877), - [anon_sym_thread_local] = ACTIONS(2877), - [anon_sym___thread] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_constexpr] = ACTIONS(2877), - [anon_sym_volatile] = ACTIONS(2877), - [anon_sym_restrict] = ACTIONS(2877), - [anon_sym___restrict__] = ACTIONS(2877), - [anon_sym__Atomic] = ACTIONS(2877), - [anon_sym__Noreturn] = ACTIONS(2877), - [anon_sym_noreturn] = ACTIONS(2877), - [anon_sym_mutable] = ACTIONS(2877), - [anon_sym_constinit] = ACTIONS(2877), - [anon_sym_consteval] = ACTIONS(2877), - [sym_primitive_type] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2877), - [anon_sym_decltype] = ACTIONS(2877), - [anon_sym_virtual] = ACTIONS(2877), - [anon_sym_alignas] = ACTIONS(2877), - [anon_sym_explicit] = ACTIONS(2877), - [anon_sym_typename] = ACTIONS(2877), - [anon_sym_template] = ACTIONS(2877), - [anon_sym_operator] = ACTIONS(2877), - [anon_sym_friend] = ACTIONS(2877), - [anon_sym_public] = ACTIONS(2877), - [anon_sym_private] = ACTIONS(2877), - [anon_sym_protected] = ACTIONS(2877), - [anon_sym_using] = ACTIONS(2877), - [anon_sym_static_assert] = ACTIONS(2877), + [1860] = { + [sym__expression] = STATE(5242), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2053] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4139), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_COLON] = ACTIONS(5376), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4175), - [anon_sym_or_eq] = ACTIONS(4175), - [anon_sym_xor_eq] = ACTIONS(4175), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), + [1861] = { + [sym__expression] = STATE(3020), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2054] = { - [sym_identifier] = ACTIONS(5378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5380), - [anon_sym_COMMA] = ACTIONS(5380), - [anon_sym_RPAREN] = ACTIONS(5380), - [anon_sym_LPAREN2] = ACTIONS(5380), - [anon_sym_DASH] = ACTIONS(5378), - [anon_sym_PLUS] = ACTIONS(5378), - [anon_sym_STAR] = ACTIONS(5380), - [anon_sym_SLASH] = ACTIONS(5378), - [anon_sym_PERCENT] = ACTIONS(5380), - [anon_sym_PIPE_PIPE] = ACTIONS(5380), - [anon_sym_AMP_AMP] = ACTIONS(5380), - [anon_sym_PIPE] = ACTIONS(5378), - [anon_sym_CARET] = ACTIONS(5380), - [anon_sym_AMP] = ACTIONS(5378), - [anon_sym_EQ_EQ] = ACTIONS(5380), - [anon_sym_BANG_EQ] = ACTIONS(5380), - [anon_sym_GT] = ACTIONS(5378), - [anon_sym_GT_EQ] = ACTIONS(5380), - [anon_sym_LT_EQ] = ACTIONS(5378), - [anon_sym_LT] = ACTIONS(5378), - [anon_sym_LT_LT] = ACTIONS(5380), - [anon_sym_GT_GT] = ACTIONS(5380), - [anon_sym_SEMI] = ACTIONS(5380), - [anon_sym___extension__] = ACTIONS(5378), - [anon_sym___attribute__] = ACTIONS(5378), - [anon_sym_COLON_COLON] = ACTIONS(5380), - [anon_sym___based] = ACTIONS(5378), - [anon_sym_LBRACE] = ACTIONS(5380), - [anon_sym_RBRACE] = ACTIONS(5380), - [anon_sym_signed] = ACTIONS(5378), - [anon_sym_unsigned] = ACTIONS(5378), - [anon_sym_long] = ACTIONS(5378), - [anon_sym_short] = ACTIONS(5378), - [anon_sym_LBRACK] = ACTIONS(5380), - [anon_sym_RBRACK] = ACTIONS(5380), - [anon_sym_const] = ACTIONS(5378), - [anon_sym_constexpr] = ACTIONS(5378), - [anon_sym_volatile] = ACTIONS(5378), - [anon_sym_restrict] = ACTIONS(5378), - [anon_sym___restrict__] = ACTIONS(5378), - [anon_sym__Atomic] = ACTIONS(5378), - [anon_sym__Noreturn] = ACTIONS(5378), - [anon_sym_noreturn] = ACTIONS(5378), - [anon_sym_mutable] = ACTIONS(5378), - [anon_sym_constinit] = ACTIONS(5378), - [anon_sym_consteval] = ACTIONS(5378), - [sym_primitive_type] = ACTIONS(5378), - [anon_sym_COLON] = ACTIONS(5378), - [anon_sym_QMARK] = ACTIONS(5380), - [anon_sym_LT_EQ_GT] = ACTIONS(5380), - [anon_sym_or] = ACTIONS(5378), - [anon_sym_and] = ACTIONS(5378), - [anon_sym_bitor] = ACTIONS(5378), - [anon_sym_xor] = ACTIONS(5378), - [anon_sym_bitand] = ACTIONS(5378), - [anon_sym_not_eq] = ACTIONS(5378), - [anon_sym_DASH_DASH] = ACTIONS(5380), - [anon_sym_PLUS_PLUS] = ACTIONS(5380), - [anon_sym_DOT] = ACTIONS(5378), - [anon_sym_DOT_STAR] = ACTIONS(5380), - [anon_sym_DASH_GT] = ACTIONS(5380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5378), - [anon_sym_decltype] = ACTIONS(5378), - [anon_sym_final] = ACTIONS(5378), - [anon_sym_override] = ACTIONS(5378), - [anon_sym_requires] = ACTIONS(5378), + [1862] = { + [sym__expression] = STATE(5165), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2055] = { - [sym_identifier] = ACTIONS(5378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5380), - [anon_sym_COMMA] = ACTIONS(5380), - [anon_sym_RPAREN] = ACTIONS(5380), - [aux_sym_preproc_if_token2] = ACTIONS(5380), - [aux_sym_preproc_else_token1] = ACTIONS(5380), - [aux_sym_preproc_elif_token1] = ACTIONS(5378), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5380), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5380), - [anon_sym_LPAREN2] = ACTIONS(5380), - [anon_sym_DASH] = ACTIONS(5378), - [anon_sym_PLUS] = ACTIONS(5378), - [anon_sym_STAR] = ACTIONS(5378), - [anon_sym_SLASH] = ACTIONS(5378), - [anon_sym_PERCENT] = ACTIONS(5378), - [anon_sym_PIPE_PIPE] = ACTIONS(5380), - [anon_sym_AMP_AMP] = ACTIONS(5380), - [anon_sym_PIPE] = ACTIONS(5378), - [anon_sym_CARET] = ACTIONS(5378), - [anon_sym_AMP] = ACTIONS(5378), - [anon_sym_EQ_EQ] = ACTIONS(5380), - [anon_sym_BANG_EQ] = ACTIONS(5380), - [anon_sym_GT] = ACTIONS(5378), - [anon_sym_GT_EQ] = ACTIONS(5380), - [anon_sym_LT_EQ] = ACTIONS(5378), - [anon_sym_LT] = ACTIONS(5378), - [anon_sym_LT_LT] = ACTIONS(5378), - [anon_sym_GT_GT] = ACTIONS(5378), - [anon_sym_SEMI] = ACTIONS(5380), - [anon_sym___attribute__] = ACTIONS(5378), - [anon_sym_COLON_COLON] = ACTIONS(5380), - [anon_sym_LBRACE] = ACTIONS(5380), - [anon_sym_RBRACE] = ACTIONS(5380), - [anon_sym_LBRACK] = ACTIONS(5380), - [anon_sym_RBRACK] = ACTIONS(5380), - [anon_sym_EQ] = ACTIONS(5378), - [anon_sym_COLON] = ACTIONS(5378), - [anon_sym_QMARK] = ACTIONS(5380), - [anon_sym_STAR_EQ] = ACTIONS(5380), - [anon_sym_SLASH_EQ] = ACTIONS(5380), - [anon_sym_PERCENT_EQ] = ACTIONS(5380), - [anon_sym_PLUS_EQ] = ACTIONS(5380), - [anon_sym_DASH_EQ] = ACTIONS(5380), - [anon_sym_LT_LT_EQ] = ACTIONS(5380), - [anon_sym_GT_GT_EQ] = ACTIONS(5380), - [anon_sym_AMP_EQ] = ACTIONS(5380), - [anon_sym_CARET_EQ] = ACTIONS(5380), - [anon_sym_PIPE_EQ] = ACTIONS(5380), - [anon_sym_and_eq] = ACTIONS(5378), - [anon_sym_or_eq] = ACTIONS(5378), - [anon_sym_xor_eq] = ACTIONS(5378), - [anon_sym_LT_EQ_GT] = ACTIONS(5380), - [anon_sym_or] = ACTIONS(5378), - [anon_sym_and] = ACTIONS(5378), - [anon_sym_bitor] = ACTIONS(5378), - [anon_sym_xor] = ACTIONS(5378), - [anon_sym_bitand] = ACTIONS(5378), - [anon_sym_not_eq] = ACTIONS(5378), - [anon_sym_DASH_DASH] = ACTIONS(5380), - [anon_sym_PLUS_PLUS] = ACTIONS(5380), - [anon_sym_DOT] = ACTIONS(5378), - [anon_sym_DOT_STAR] = ACTIONS(5380), - [anon_sym_DASH_GT] = ACTIONS(5380), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5378), - [anon_sym_decltype] = ACTIONS(5378), - [anon_sym_final] = ACTIONS(5378), - [anon_sym_override] = ACTIONS(5378), + [1863] = { + [sym__expression] = STATE(3414), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2056] = { - [sym_identifier] = ACTIONS(5382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5384), - [anon_sym_COMMA] = ACTIONS(5384), - [anon_sym_RPAREN] = ACTIONS(5384), - [aux_sym_preproc_if_token2] = ACTIONS(5384), - [aux_sym_preproc_else_token1] = ACTIONS(5384), - [aux_sym_preproc_elif_token1] = ACTIONS(5382), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5384), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5384), - [anon_sym_LPAREN2] = ACTIONS(5384), - [anon_sym_DASH] = ACTIONS(5382), - [anon_sym_PLUS] = ACTIONS(5382), - [anon_sym_STAR] = ACTIONS(5382), - [anon_sym_SLASH] = ACTIONS(5382), - [anon_sym_PERCENT] = ACTIONS(5382), - [anon_sym_PIPE_PIPE] = ACTIONS(5384), - [anon_sym_AMP_AMP] = ACTIONS(5384), - [anon_sym_PIPE] = ACTIONS(5382), - [anon_sym_CARET] = ACTIONS(5382), - [anon_sym_AMP] = ACTIONS(5382), - [anon_sym_EQ_EQ] = ACTIONS(5384), - [anon_sym_BANG_EQ] = ACTIONS(5384), - [anon_sym_GT] = ACTIONS(5382), - [anon_sym_GT_EQ] = ACTIONS(5384), - [anon_sym_LT_EQ] = ACTIONS(5382), - [anon_sym_LT] = ACTIONS(5382), - [anon_sym_LT_LT] = ACTIONS(5382), - [anon_sym_GT_GT] = ACTIONS(5382), - [anon_sym_SEMI] = ACTIONS(5384), - [anon_sym___attribute__] = ACTIONS(5382), - [anon_sym_COLON_COLON] = ACTIONS(5386), - [anon_sym_LBRACE] = ACTIONS(5384), - [anon_sym_RBRACE] = ACTIONS(5384), - [anon_sym_LBRACK] = ACTIONS(5384), - [anon_sym_RBRACK] = ACTIONS(5384), - [anon_sym_EQ] = ACTIONS(5382), - [anon_sym_COLON] = ACTIONS(5382), - [anon_sym_QMARK] = ACTIONS(5384), - [anon_sym_STAR_EQ] = ACTIONS(5384), - [anon_sym_SLASH_EQ] = ACTIONS(5384), - [anon_sym_PERCENT_EQ] = ACTIONS(5384), - [anon_sym_PLUS_EQ] = ACTIONS(5384), - [anon_sym_DASH_EQ] = ACTIONS(5384), - [anon_sym_LT_LT_EQ] = ACTIONS(5384), - [anon_sym_GT_GT_EQ] = ACTIONS(5384), - [anon_sym_AMP_EQ] = ACTIONS(5384), - [anon_sym_CARET_EQ] = ACTIONS(5384), - [anon_sym_PIPE_EQ] = ACTIONS(5384), - [anon_sym_and_eq] = ACTIONS(5382), - [anon_sym_or_eq] = ACTIONS(5382), - [anon_sym_xor_eq] = ACTIONS(5382), - [anon_sym_LT_EQ_GT] = ACTIONS(5384), - [anon_sym_or] = ACTIONS(5382), - [anon_sym_and] = ACTIONS(5382), - [anon_sym_bitor] = ACTIONS(5382), - [anon_sym_xor] = ACTIONS(5382), - [anon_sym_bitand] = ACTIONS(5382), - [anon_sym_not_eq] = ACTIONS(5382), - [anon_sym_DASH_DASH] = ACTIONS(5384), - [anon_sym_PLUS_PLUS] = ACTIONS(5384), - [anon_sym_DOT] = ACTIONS(5382), - [anon_sym_DOT_STAR] = ACTIONS(5384), - [anon_sym_DASH_GT] = ACTIONS(5384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5382), - [anon_sym_decltype] = ACTIONS(5382), - [anon_sym_final] = ACTIONS(5382), - [anon_sym_override] = ACTIONS(5382), + [1864] = { + [sym__expression] = STATE(2706), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2057] = { - [sym_string_literal] = STATE(1964), - [sym_template_argument_list] = STATE(2507), - [sym_raw_string_literal] = STATE(1964), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(5388), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5132), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5388), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4139), - [anon_sym_LBRACK] = ACTIONS(5390), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4139), - [anon_sym_or_eq] = ACTIONS(4139), - [anon_sym_xor_eq] = ACTIONS(4139), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), + [1865] = { + [sym__expression] = STATE(3401), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2058] = { - [sym_identifier] = ACTIONS(3090), - [aux_sym_preproc_def_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token2] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), - [aux_sym_preproc_else_token1] = ACTIONS(3090), - [aux_sym_preproc_elif_token1] = ACTIONS(3090), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3090), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3090), - [sym_preproc_directive] = ACTIONS(3090), - [anon_sym_LPAREN2] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym___extension__] = ACTIONS(3090), - [anon_sym_typedef] = ACTIONS(3090), - [anon_sym_extern] = ACTIONS(3090), - [anon_sym___attribute__] = ACTIONS(3090), - [anon_sym_COLON_COLON] = ACTIONS(3092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), - [anon_sym___declspec] = ACTIONS(3090), - [anon_sym___based] = ACTIONS(3090), - [anon_sym_signed] = ACTIONS(3090), - [anon_sym_unsigned] = ACTIONS(3090), - [anon_sym_long] = ACTIONS(3090), - [anon_sym_short] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3090), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_register] = ACTIONS(3090), - [anon_sym_inline] = ACTIONS(3090), - [anon_sym___inline] = ACTIONS(3090), - [anon_sym___inline__] = ACTIONS(3090), - [anon_sym___forceinline] = ACTIONS(3090), - [anon_sym_thread_local] = ACTIONS(3090), - [anon_sym___thread] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_constexpr] = ACTIONS(3090), - [anon_sym_volatile] = ACTIONS(3090), - [anon_sym_restrict] = ACTIONS(3090), - [anon_sym___restrict__] = ACTIONS(3090), - [anon_sym__Atomic] = ACTIONS(3090), - [anon_sym__Noreturn] = ACTIONS(3090), - [anon_sym_noreturn] = ACTIONS(3090), - [anon_sym_mutable] = ACTIONS(3090), - [anon_sym_constinit] = ACTIONS(3090), - [anon_sym_consteval] = ACTIONS(3090), - [sym_primitive_type] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_class] = ACTIONS(3090), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3090), - [anon_sym_decltype] = ACTIONS(3090), - [anon_sym_virtual] = ACTIONS(3090), - [anon_sym_alignas] = ACTIONS(3090), - [anon_sym_explicit] = ACTIONS(3090), - [anon_sym_typename] = ACTIONS(3090), - [anon_sym_template] = ACTIONS(3090), - [anon_sym_operator] = ACTIONS(3090), - [anon_sym_friend] = ACTIONS(3090), - [anon_sym_public] = ACTIONS(3090), - [anon_sym_private] = ACTIONS(3090), - [anon_sym_protected] = ACTIONS(3090), - [anon_sym_using] = ACTIONS(3090), - [anon_sym_static_assert] = ACTIONS(3090), + [1866] = { + [sym__expression] = STATE(3405), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2059] = { - [sym_identifier] = ACTIONS(3259), - [aux_sym_preproc_def_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token2] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3259), - [aux_sym_preproc_else_token1] = ACTIONS(3259), - [aux_sym_preproc_elif_token1] = ACTIONS(3259), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3259), - [sym_preproc_directive] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym___extension__] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3259), - [anon_sym_extern] = ACTIONS(3259), - [anon_sym___attribute__] = ACTIONS(3259), - [anon_sym_COLON_COLON] = ACTIONS(3261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3261), - [anon_sym___declspec] = ACTIONS(3259), - [anon_sym___based] = ACTIONS(3259), - [anon_sym_signed] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_register] = ACTIONS(3259), - [anon_sym_inline] = ACTIONS(3259), - [anon_sym___inline] = ACTIONS(3259), - [anon_sym___inline__] = ACTIONS(3259), - [anon_sym___forceinline] = ACTIONS(3259), - [anon_sym_thread_local] = ACTIONS(3259), - [anon_sym___thread] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_constexpr] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym___restrict__] = ACTIONS(3259), - [anon_sym__Atomic] = ACTIONS(3259), - [anon_sym__Noreturn] = ACTIONS(3259), - [anon_sym_noreturn] = ACTIONS(3259), - [anon_sym_mutable] = ACTIONS(3259), - [anon_sym_constinit] = ACTIONS(3259), - [anon_sym_consteval] = ACTIONS(3259), - [sym_primitive_type] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3259), - [anon_sym_decltype] = ACTIONS(3259), - [anon_sym_virtual] = ACTIONS(3259), - [anon_sym_alignas] = ACTIONS(3259), - [anon_sym_explicit] = ACTIONS(3259), - [anon_sym_typename] = ACTIONS(3259), - [anon_sym_template] = ACTIONS(3259), - [anon_sym_operator] = ACTIONS(3259), - [anon_sym_friend] = ACTIONS(3259), - [anon_sym_public] = ACTIONS(3259), - [anon_sym_private] = ACTIONS(3259), - [anon_sym_protected] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_static_assert] = ACTIONS(3259), + [1867] = { + [sym__expression] = STATE(3406), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2060] = { - [sym_identifier] = ACTIONS(3284), - [aux_sym_preproc_def_token1] = ACTIONS(3284), - [aux_sym_preproc_if_token1] = ACTIONS(3284), - [aux_sym_preproc_if_token2] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3284), - [aux_sym_preproc_else_token1] = ACTIONS(3284), - [aux_sym_preproc_elif_token1] = ACTIONS(3284), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3284), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3284), - [sym_preproc_directive] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym___extension__] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym___attribute__] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3286), - [anon_sym___declspec] = ACTIONS(3284), - [anon_sym___based] = ACTIONS(3284), - [anon_sym_signed] = ACTIONS(3284), - [anon_sym_unsigned] = ACTIONS(3284), - [anon_sym_long] = ACTIONS(3284), - [anon_sym_short] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_register] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym___inline] = ACTIONS(3284), - [anon_sym___inline__] = ACTIONS(3284), - [anon_sym___forceinline] = ACTIONS(3284), - [anon_sym_thread_local] = ACTIONS(3284), - [anon_sym___thread] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_constexpr] = ACTIONS(3284), - [anon_sym_volatile] = ACTIONS(3284), - [anon_sym_restrict] = ACTIONS(3284), - [anon_sym___restrict__] = ACTIONS(3284), - [anon_sym__Atomic] = ACTIONS(3284), - [anon_sym__Noreturn] = ACTIONS(3284), - [anon_sym_noreturn] = ACTIONS(3284), - [anon_sym_mutable] = ACTIONS(3284), - [anon_sym_constinit] = ACTIONS(3284), - [anon_sym_consteval] = ACTIONS(3284), - [sym_primitive_type] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3284), - [anon_sym_union] = ACTIONS(3284), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3284), - [anon_sym_decltype] = ACTIONS(3284), - [anon_sym_virtual] = ACTIONS(3284), - [anon_sym_alignas] = ACTIONS(3284), - [anon_sym_explicit] = ACTIONS(3284), - [anon_sym_typename] = ACTIONS(3284), - [anon_sym_template] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_friend] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_static_assert] = ACTIONS(3284), + [1868] = { + [sym__expression] = STATE(3407), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2061] = { - [sym_identifier] = ACTIONS(5382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5384), - [anon_sym_COMMA] = ACTIONS(5384), - [anon_sym_RPAREN] = ACTIONS(5384), - [aux_sym_preproc_if_token2] = ACTIONS(5384), - [aux_sym_preproc_else_token1] = ACTIONS(5384), - [aux_sym_preproc_elif_token1] = ACTIONS(5382), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5384), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5384), - [anon_sym_LPAREN2] = ACTIONS(5384), - [anon_sym_DASH] = ACTIONS(5382), - [anon_sym_PLUS] = ACTIONS(5382), - [anon_sym_STAR] = ACTIONS(5382), - [anon_sym_SLASH] = ACTIONS(5382), - [anon_sym_PERCENT] = ACTIONS(5382), - [anon_sym_PIPE_PIPE] = ACTIONS(5384), - [anon_sym_AMP_AMP] = ACTIONS(5384), - [anon_sym_PIPE] = ACTIONS(5382), - [anon_sym_CARET] = ACTIONS(5382), - [anon_sym_AMP] = ACTIONS(5382), - [anon_sym_EQ_EQ] = ACTIONS(5384), - [anon_sym_BANG_EQ] = ACTIONS(5384), - [anon_sym_GT] = ACTIONS(5382), - [anon_sym_GT_EQ] = ACTIONS(5384), - [anon_sym_LT_EQ] = ACTIONS(5382), - [anon_sym_LT] = ACTIONS(5382), - [anon_sym_LT_LT] = ACTIONS(5382), - [anon_sym_GT_GT] = ACTIONS(5382), - [anon_sym_SEMI] = ACTIONS(5384), - [anon_sym___attribute__] = ACTIONS(5382), - [anon_sym_COLON_COLON] = ACTIONS(5386), - [anon_sym_LBRACE] = ACTIONS(5384), - [anon_sym_RBRACE] = ACTIONS(5384), - [anon_sym_LBRACK] = ACTIONS(5384), - [anon_sym_RBRACK] = ACTIONS(5384), - [anon_sym_EQ] = ACTIONS(5382), - [anon_sym_COLON] = ACTIONS(5382), - [anon_sym_QMARK] = ACTIONS(5384), - [anon_sym_STAR_EQ] = ACTIONS(5384), - [anon_sym_SLASH_EQ] = ACTIONS(5384), - [anon_sym_PERCENT_EQ] = ACTIONS(5384), - [anon_sym_PLUS_EQ] = ACTIONS(5384), - [anon_sym_DASH_EQ] = ACTIONS(5384), - [anon_sym_LT_LT_EQ] = ACTIONS(5384), - [anon_sym_GT_GT_EQ] = ACTIONS(5384), - [anon_sym_AMP_EQ] = ACTIONS(5384), - [anon_sym_CARET_EQ] = ACTIONS(5384), - [anon_sym_PIPE_EQ] = ACTIONS(5384), - [anon_sym_and_eq] = ACTIONS(5382), - [anon_sym_or_eq] = ACTIONS(5382), - [anon_sym_xor_eq] = ACTIONS(5382), - [anon_sym_LT_EQ_GT] = ACTIONS(5384), - [anon_sym_or] = ACTIONS(5382), - [anon_sym_and] = ACTIONS(5382), - [anon_sym_bitor] = ACTIONS(5382), - [anon_sym_xor] = ACTIONS(5382), - [anon_sym_bitand] = ACTIONS(5382), - [anon_sym_not_eq] = ACTIONS(5382), - [anon_sym_DASH_DASH] = ACTIONS(5384), - [anon_sym_PLUS_PLUS] = ACTIONS(5384), - [anon_sym_DOT] = ACTIONS(5382), - [anon_sym_DOT_STAR] = ACTIONS(5384), - [anon_sym_DASH_GT] = ACTIONS(5384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5382), - [anon_sym_decltype] = ACTIONS(5382), - [anon_sym_final] = ACTIONS(5382), - [anon_sym_override] = ACTIONS(5382), + [1869] = { + [sym__expression] = STATE(3410), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2062] = { - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token2] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [aux_sym_preproc_else_token1] = ACTIONS(3298), - [aux_sym_preproc_elif_token1] = ACTIONS(3298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_friend] = ACTIONS(3298), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), + [1870] = { + [sym__expression] = STATE(3411), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2063] = { - [sym_identifier] = ACTIONS(3302), - [aux_sym_preproc_def_token1] = ACTIONS(3302), - [aux_sym_preproc_if_token1] = ACTIONS(3302), - [aux_sym_preproc_if_token2] = ACTIONS(3302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), - [aux_sym_preproc_else_token1] = ACTIONS(3302), - [aux_sym_preproc_elif_token1] = ACTIONS(3302), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3302), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3302), - [sym_preproc_directive] = ACTIONS(3302), - [anon_sym_LPAREN2] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_AMP_AMP] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym___extension__] = ACTIONS(3302), - [anon_sym_typedef] = ACTIONS(3302), - [anon_sym_extern] = ACTIONS(3302), - [anon_sym___attribute__] = ACTIONS(3302), - [anon_sym_COLON_COLON] = ACTIONS(3304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), - [anon_sym___declspec] = ACTIONS(3302), - [anon_sym___based] = ACTIONS(3302), - [anon_sym_signed] = ACTIONS(3302), - [anon_sym_unsigned] = ACTIONS(3302), - [anon_sym_long] = ACTIONS(3302), - [anon_sym_short] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym___inline] = ACTIONS(3302), - [anon_sym___inline__] = ACTIONS(3302), - [anon_sym___forceinline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym___thread] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym___restrict__] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym__Noreturn] = ACTIONS(3302), - [anon_sym_noreturn] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constinit] = ACTIONS(3302), - [anon_sym_consteval] = ACTIONS(3302), - [sym_primitive_type] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_struct] = ACTIONS(3302), - [anon_sym_union] = ACTIONS(3302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3302), - [anon_sym_decltype] = ACTIONS(3302), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_alignas] = ACTIONS(3302), - [anon_sym_explicit] = ACTIONS(3302), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_template] = ACTIONS(3302), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_friend] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_static_assert] = ACTIONS(3302), + [1871] = { + [sym__expression] = STATE(3413), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2064] = { - [sym_identifier] = ACTIONS(3306), - [aux_sym_preproc_def_token1] = ACTIONS(3306), - [aux_sym_preproc_if_token1] = ACTIONS(3306), - [aux_sym_preproc_if_token2] = ACTIONS(3306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3306), - [aux_sym_preproc_else_token1] = ACTIONS(3306), - [aux_sym_preproc_elif_token1] = ACTIONS(3306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3306), - [sym_preproc_directive] = ACTIONS(3306), - [anon_sym_LPAREN2] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3308), - [anon_sym_AMP_AMP] = ACTIONS(3308), - [anon_sym_AMP] = ACTIONS(3306), - [anon_sym___extension__] = ACTIONS(3306), - [anon_sym_typedef] = ACTIONS(3306), - [anon_sym_extern] = ACTIONS(3306), - [anon_sym___attribute__] = ACTIONS(3306), - [anon_sym_COLON_COLON] = ACTIONS(3308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3308), - [anon_sym___declspec] = ACTIONS(3306), - [anon_sym___based] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(3306), - [anon_sym_unsigned] = ACTIONS(3306), - [anon_sym_long] = ACTIONS(3306), - [anon_sym_short] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_register] = ACTIONS(3306), - [anon_sym_inline] = ACTIONS(3306), - [anon_sym___inline] = ACTIONS(3306), - [anon_sym___inline__] = ACTIONS(3306), - [anon_sym___forceinline] = ACTIONS(3306), - [anon_sym_thread_local] = ACTIONS(3306), - [anon_sym___thread] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_constexpr] = ACTIONS(3306), - [anon_sym_volatile] = ACTIONS(3306), - [anon_sym_restrict] = ACTIONS(3306), - [anon_sym___restrict__] = ACTIONS(3306), - [anon_sym__Atomic] = ACTIONS(3306), - [anon_sym__Noreturn] = ACTIONS(3306), - [anon_sym_noreturn] = ACTIONS(3306), - [anon_sym_mutable] = ACTIONS(3306), - [anon_sym_constinit] = ACTIONS(3306), - [anon_sym_consteval] = ACTIONS(3306), - [sym_primitive_type] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), - [anon_sym_class] = ACTIONS(3306), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_union] = ACTIONS(3306), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3306), - [anon_sym_decltype] = ACTIONS(3306), - [anon_sym_virtual] = ACTIONS(3306), - [anon_sym_alignas] = ACTIONS(3306), - [anon_sym_explicit] = ACTIONS(3306), - [anon_sym_typename] = ACTIONS(3306), - [anon_sym_template] = ACTIONS(3306), - [anon_sym_operator] = ACTIONS(3306), - [anon_sym_friend] = ACTIONS(3306), - [anon_sym_public] = ACTIONS(3306), - [anon_sym_private] = ACTIONS(3306), - [anon_sym_protected] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3306), - [anon_sym_static_assert] = ACTIONS(3306), + [1872] = { + [sym__expression] = STATE(2749), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2065] = { - [sym_identifier] = ACTIONS(4964), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [aux_sym_preproc_if_token2] = ACTIONS(4966), - [aux_sym_preproc_else_token1] = ACTIONS(4966), - [aux_sym_preproc_elif_token1] = ACTIONS(4964), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4966), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4966), - [anon_sym_LPAREN2] = ACTIONS(4966), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4964), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4964), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_CARET] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4964), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4964), - [anon_sym_GT_GT] = ACTIONS(4964), - [anon_sym_SEMI] = ACTIONS(4966), - [anon_sym___attribute__] = ACTIONS(4964), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_RBRACK] = ACTIONS(4966), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_COLON] = ACTIONS(4964), - [anon_sym_QMARK] = ACTIONS(4966), - [anon_sym_STAR_EQ] = ACTIONS(4966), - [anon_sym_SLASH_EQ] = ACTIONS(4966), - [anon_sym_PERCENT_EQ] = ACTIONS(4966), - [anon_sym_PLUS_EQ] = ACTIONS(4966), - [anon_sym_DASH_EQ] = ACTIONS(4966), - [anon_sym_LT_LT_EQ] = ACTIONS(4966), - [anon_sym_GT_GT_EQ] = ACTIONS(4966), - [anon_sym_AMP_EQ] = ACTIONS(4966), - [anon_sym_CARET_EQ] = ACTIONS(4966), - [anon_sym_PIPE_EQ] = ACTIONS(4966), - [anon_sym_and_eq] = ACTIONS(4964), - [anon_sym_or_eq] = ACTIONS(4964), - [anon_sym_xor_eq] = ACTIONS(4964), - [anon_sym_LT_EQ_GT] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4964), - [anon_sym_and] = ACTIONS(4964), - [anon_sym_bitor] = ACTIONS(4964), - [anon_sym_xor] = ACTIONS(4964), - [anon_sym_bitand] = ACTIONS(4964), - [anon_sym_not_eq] = ACTIONS(4964), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_DOT_STAR] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4966), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4964), - [anon_sym_decltype] = ACTIONS(4964), - [anon_sym_final] = ACTIONS(4964), - [anon_sym_override] = ACTIONS(4964), + [1873] = { + [sym__expression] = STATE(3402), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2066] = { - [sym_identifier] = ACTIONS(3274), - [aux_sym_preproc_def_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token2] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [aux_sym_preproc_else_token1] = ACTIONS(3274), - [aux_sym_preproc_elif_token1] = ACTIONS(3274), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym___extension__] = ACTIONS(3274), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym___attribute__] = ACTIONS(3274), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), - [anon_sym___declspec] = ACTIONS(3274), - [anon_sym___based] = ACTIONS(3274), - [anon_sym_signed] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym___inline] = ACTIONS(3274), - [anon_sym___inline__] = ACTIONS(3274), - [anon_sym___forceinline] = ACTIONS(3274), - [anon_sym_thread_local] = ACTIONS(3274), - [anon_sym___thread] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_constexpr] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym___restrict__] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym__Noreturn] = ACTIONS(3274), - [anon_sym_noreturn] = ACTIONS(3274), - [anon_sym_mutable] = ACTIONS(3274), - [anon_sym_constinit] = ACTIONS(3274), - [anon_sym_consteval] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3274), - [anon_sym_decltype] = ACTIONS(3274), - [anon_sym_virtual] = ACTIONS(3274), - [anon_sym_alignas] = ACTIONS(3274), - [anon_sym_explicit] = ACTIONS(3274), - [anon_sym_typename] = ACTIONS(3274), - [anon_sym_template] = ACTIONS(3274), - [anon_sym_operator] = ACTIONS(3274), - [anon_sym_friend] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_static_assert] = ACTIONS(3274), + [1874] = { + [sym__expression] = STATE(3665), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [2067] = { - [sym_identifier] = ACTIONS(5382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5384), - [anon_sym_COMMA] = ACTIONS(5384), - [anon_sym_RPAREN] = ACTIONS(5384), - [anon_sym_LPAREN2] = ACTIONS(5384), - [anon_sym_DASH] = ACTIONS(5382), - [anon_sym_PLUS] = ACTIONS(5382), - [anon_sym_STAR] = ACTIONS(5384), - [anon_sym_SLASH] = ACTIONS(5382), - [anon_sym_PERCENT] = ACTIONS(5384), - [anon_sym_PIPE_PIPE] = ACTIONS(5384), - [anon_sym_AMP_AMP] = ACTIONS(5384), - [anon_sym_PIPE] = ACTIONS(5382), - [anon_sym_CARET] = ACTIONS(5384), - [anon_sym_AMP] = ACTIONS(5382), - [anon_sym_EQ_EQ] = ACTIONS(5384), - [anon_sym_BANG_EQ] = ACTIONS(5384), - [anon_sym_GT] = ACTIONS(5382), - [anon_sym_GT_EQ] = ACTIONS(5384), - [anon_sym_LT_EQ] = ACTIONS(5382), - [anon_sym_LT] = ACTIONS(5382), - [anon_sym_LT_LT] = ACTIONS(5384), - [anon_sym_GT_GT] = ACTIONS(5384), - [anon_sym_SEMI] = ACTIONS(5384), - [anon_sym___extension__] = ACTIONS(5382), - [anon_sym___attribute__] = ACTIONS(5382), - [anon_sym_COLON_COLON] = ACTIONS(5386), - [anon_sym___based] = ACTIONS(5382), - [anon_sym_LBRACE] = ACTIONS(5384), - [anon_sym_RBRACE] = ACTIONS(5384), - [anon_sym_signed] = ACTIONS(5382), - [anon_sym_unsigned] = ACTIONS(5382), - [anon_sym_long] = ACTIONS(5382), - [anon_sym_short] = ACTIONS(5382), - [anon_sym_LBRACK] = ACTIONS(5384), - [anon_sym_RBRACK] = ACTIONS(5384), - [anon_sym_const] = ACTIONS(5382), - [anon_sym_constexpr] = ACTIONS(5382), - [anon_sym_volatile] = ACTIONS(5382), - [anon_sym_restrict] = ACTIONS(5382), - [anon_sym___restrict__] = ACTIONS(5382), - [anon_sym__Atomic] = ACTIONS(5382), - [anon_sym__Noreturn] = ACTIONS(5382), - [anon_sym_noreturn] = ACTIONS(5382), - [anon_sym_mutable] = ACTIONS(5382), - [anon_sym_constinit] = ACTIONS(5382), - [anon_sym_consteval] = ACTIONS(5382), - [sym_primitive_type] = ACTIONS(5382), - [anon_sym_COLON] = ACTIONS(5382), - [anon_sym_QMARK] = ACTIONS(5384), - [anon_sym_LT_EQ_GT] = ACTIONS(5384), - [anon_sym_or] = ACTIONS(5382), - [anon_sym_and] = ACTIONS(5382), - [anon_sym_bitor] = ACTIONS(5382), - [anon_sym_xor] = ACTIONS(5382), - [anon_sym_bitand] = ACTIONS(5382), - [anon_sym_not_eq] = ACTIONS(5382), - [anon_sym_DASH_DASH] = ACTIONS(5384), - [anon_sym_PLUS_PLUS] = ACTIONS(5384), - [anon_sym_DOT] = ACTIONS(5382), - [anon_sym_DOT_STAR] = ACTIONS(5384), - [anon_sym_DASH_GT] = ACTIONS(5384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5382), - [anon_sym_decltype] = ACTIONS(5382), - [anon_sym_final] = ACTIONS(5382), - [anon_sym_override] = ACTIONS(5382), - [anon_sym_requires] = ACTIONS(5382), + [1875] = { + [sym__expression] = STATE(3688), + [sym__expression_not_binary] = STATE(4082), + [sym_conditional_expression] = STATE(4082), + [sym_assignment_expression] = STATE(4082), + [sym_pointer_expression] = STATE(4082), + [sym_unary_expression] = STATE(4082), + [sym_binary_expression] = STATE(4082), + [sym_update_expression] = STATE(4082), + [sym_cast_expression] = STATE(4082), + [sym_sizeof_expression] = STATE(4082), + [sym_alignof_expression] = STATE(4082), + [sym_offsetof_expression] = STATE(4082), + [sym_generic_expression] = STATE(4082), + [sym_subscript_expression] = STATE(4082), + [sym_call_expression] = STATE(4082), + [sym_gnu_asm_expression] = STATE(4082), + [sym_field_expression] = STATE(4082), + [sym_compound_literal_expression] = STATE(4082), + [sym_parenthesized_expression] = STATE(4082), + [sym_char_literal] = STATE(3832), + [sym_concatenated_string] = STATE(3832), + [sym_string_literal] = STATE(2526), + [sym_null] = STATE(4082), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8270), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4082), + [sym_raw_string_literal] = STATE(2526), + [sym_co_await_expression] = STATE(4082), + [sym_new_expression] = STATE(4082), + [sym_delete_expression] = STATE(4082), + [sym_requires_clause] = STATE(4082), + [sym_requires_expression] = STATE(4082), + [sym_lambda_expression] = STATE(4082), + [sym_lambda_capture_specifier] = STATE(6413), + [sym_fold_expression] = STATE(4082), + [sym_parameter_pack_expansion] = STATE(4082), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6233), + [sym_qualified_identifier] = STATE(4082), + [sym_qualified_type_identifier] = STATE(8270), + [sym_user_defined_literal] = STATE(4082), + [sym_identifier] = ACTIONS(2620), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_sizeof] = ACTIONS(2632), + [anon_sym___alignof__] = ACTIONS(2634), + [anon_sym___alignof] = ACTIONS(2634), + [anon_sym__alignof] = ACTIONS(2634), + [anon_sym_alignof] = ACTIONS(2634), + [anon_sym__Alignof] = ACTIONS(2634), + [anon_sym_offsetof] = ACTIONS(2636), + [anon_sym__Generic] = ACTIONS(2638), + [anon_sym_asm] = ACTIONS(2640), + [anon_sym___asm__] = ACTIONS(2640), + [sym_number_literal] = ACTIONS(2642), + [anon_sym_L_SQUOTE] = ACTIONS(2644), + [anon_sym_u_SQUOTE] = ACTIONS(2644), + [anon_sym_U_SQUOTE] = ACTIONS(2644), + [anon_sym_u8_SQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_L_DQUOTE] = ACTIONS(2646), + [anon_sym_u_DQUOTE] = ACTIONS(2646), + [anon_sym_U_DQUOTE] = ACTIONS(2646), + [anon_sym_u8_DQUOTE] = ACTIONS(2646), + [anon_sym_DQUOTE] = ACTIONS(2646), + [sym_true] = ACTIONS(2648), + [sym_false] = ACTIONS(2648), + [anon_sym_NULL] = ACTIONS(2650), + [anon_sym_nullptr] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2652), + [anon_sym_R_DQUOTE] = ACTIONS(2654), + [anon_sym_LR_DQUOTE] = ACTIONS(2654), + [anon_sym_uR_DQUOTE] = ACTIONS(2654), + [anon_sym_UR_DQUOTE] = ACTIONS(2654), + [anon_sym_u8R_DQUOTE] = ACTIONS(2654), + [anon_sym_co_await] = ACTIONS(2656), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_requires] = ACTIONS(2660), + [sym_this] = ACTIONS(2648), }, - [2068] = { - [sym_identifier] = ACTIONS(5392), - [aux_sym_preproc_def_token1] = ACTIONS(5392), - [aux_sym_preproc_if_token1] = ACTIONS(5392), - [aux_sym_preproc_if_token2] = ACTIONS(5392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5392), - [aux_sym_preproc_else_token1] = ACTIONS(5392), - [aux_sym_preproc_elif_token1] = ACTIONS(5392), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5392), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5392), - [sym_preproc_directive] = ACTIONS(5392), - [anon_sym_LPAREN2] = ACTIONS(5394), - [anon_sym_TILDE] = ACTIONS(5394), - [anon_sym_STAR] = ACTIONS(5394), - [anon_sym_AMP_AMP] = ACTIONS(5394), - [anon_sym_AMP] = ACTIONS(5392), - [anon_sym___extension__] = ACTIONS(5392), - [anon_sym_typedef] = ACTIONS(5392), - [anon_sym_extern] = ACTIONS(5392), - [anon_sym___attribute__] = ACTIONS(5392), - [anon_sym_COLON_COLON] = ACTIONS(5394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5394), - [anon_sym___declspec] = ACTIONS(5392), - [anon_sym___based] = ACTIONS(5392), - [anon_sym_signed] = ACTIONS(5392), - [anon_sym_unsigned] = ACTIONS(5392), - [anon_sym_long] = ACTIONS(5392), - [anon_sym_short] = ACTIONS(5392), - [anon_sym_LBRACK] = ACTIONS(5392), - [anon_sym_static] = ACTIONS(5392), - [anon_sym_register] = ACTIONS(5392), - [anon_sym_inline] = ACTIONS(5392), - [anon_sym___inline] = ACTIONS(5392), - [anon_sym___inline__] = ACTIONS(5392), - [anon_sym___forceinline] = ACTIONS(5392), - [anon_sym_thread_local] = ACTIONS(5392), - [anon_sym___thread] = ACTIONS(5392), - [anon_sym_const] = ACTIONS(5392), - [anon_sym_constexpr] = ACTIONS(5392), - [anon_sym_volatile] = ACTIONS(5392), - [anon_sym_restrict] = ACTIONS(5392), - [anon_sym___restrict__] = ACTIONS(5392), - [anon_sym__Atomic] = ACTIONS(5392), - [anon_sym__Noreturn] = ACTIONS(5392), - [anon_sym_noreturn] = ACTIONS(5392), - [anon_sym_mutable] = ACTIONS(5392), - [anon_sym_constinit] = ACTIONS(5392), - [anon_sym_consteval] = ACTIONS(5392), - [sym_primitive_type] = ACTIONS(5392), - [anon_sym_enum] = ACTIONS(5392), - [anon_sym_class] = ACTIONS(5392), - [anon_sym_struct] = ACTIONS(5392), - [anon_sym_union] = ACTIONS(5392), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5392), - [anon_sym_decltype] = ACTIONS(5392), - [anon_sym_virtual] = ACTIONS(5392), - [anon_sym_alignas] = ACTIONS(5392), - [anon_sym_explicit] = ACTIONS(5392), - [anon_sym_typename] = ACTIONS(5392), - [anon_sym_template] = ACTIONS(5392), - [anon_sym_operator] = ACTIONS(5392), - [anon_sym_friend] = ACTIONS(5392), - [anon_sym_public] = ACTIONS(5392), - [anon_sym_private] = ACTIONS(5392), - [anon_sym_protected] = ACTIONS(5392), - [anon_sym_using] = ACTIONS(5392), - [anon_sym_static_assert] = ACTIONS(5392), + [1876] = { + [sym__expression] = STATE(3192), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), }, - [2069] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [aux_sym_preproc_if_token2] = ACTIONS(4990), - [aux_sym_preproc_else_token1] = ACTIONS(4990), - [aux_sym_preproc_elif_token1] = ACTIONS(4988), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4990), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4988), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4988), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_RBRACK] = ACTIONS(4990), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_STAR_EQ] = ACTIONS(4990), - [anon_sym_SLASH_EQ] = ACTIONS(4990), - [anon_sym_PERCENT_EQ] = ACTIONS(4990), - [anon_sym_PLUS_EQ] = ACTIONS(4990), - [anon_sym_DASH_EQ] = ACTIONS(4990), - [anon_sym_LT_LT_EQ] = ACTIONS(4990), - [anon_sym_GT_GT_EQ] = ACTIONS(4990), - [anon_sym_AMP_EQ] = ACTIONS(4990), - [anon_sym_CARET_EQ] = ACTIONS(4990), - [anon_sym_PIPE_EQ] = ACTIONS(4990), - [anon_sym_and_eq] = ACTIONS(4988), - [anon_sym_or_eq] = ACTIONS(4988), - [anon_sym_xor_eq] = ACTIONS(4988), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4988), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4988), - [anon_sym_not_eq] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_final] = ACTIONS(4988), - [anon_sym_override] = ACTIONS(4988), + [1877] = { + [sym__expression] = STATE(2733), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3616), + [sym_concatenated_string] = STATE(3616), + [sym_string_literal] = STATE(2424), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2424), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2264), + [anon_sym_compl] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(4496), + [anon_sym_PLUS_PLUS] = ACTIONS(4496), + [anon_sym_sizeof] = ACTIONS(2270), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2272), + [anon_sym_L_SQUOTE] = ACTIONS(2274), + [anon_sym_u_SQUOTE] = ACTIONS(2274), + [anon_sym_U_SQUOTE] = ACTIONS(2274), + [anon_sym_u8_SQUOTE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_L_DQUOTE] = ACTIONS(2276), + [anon_sym_u_DQUOTE] = ACTIONS(2276), + [anon_sym_U_DQUOTE] = ACTIONS(2276), + [anon_sym_u8_DQUOTE] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2278), + [anon_sym_R_DQUOTE] = ACTIONS(2280), + [anon_sym_LR_DQUOTE] = ACTIONS(2280), + [anon_sym_uR_DQUOTE] = ACTIONS(2280), + [anon_sym_UR_DQUOTE] = ACTIONS(2280), + [anon_sym_u8R_DQUOTE] = ACTIONS(2280), + [anon_sym_co_await] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2210), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2070] = { - [sym_identifier] = ACTIONS(3164), - [aux_sym_preproc_def_token1] = ACTIONS(3164), - [aux_sym_preproc_if_token1] = ACTIONS(3164), - [aux_sym_preproc_if_token2] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), - [aux_sym_preproc_else_token1] = ACTIONS(3164), - [aux_sym_preproc_elif_token1] = ACTIONS(3164), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3164), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3164), - [sym_preproc_directive] = ACTIONS(3164), - [anon_sym_LPAREN2] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3166), - [anon_sym_AMP_AMP] = ACTIONS(3166), - [anon_sym_AMP] = ACTIONS(3164), - [anon_sym___extension__] = ACTIONS(3164), - [anon_sym_typedef] = ACTIONS(3164), - [anon_sym_extern] = ACTIONS(3164), - [anon_sym___attribute__] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), - [anon_sym___declspec] = ACTIONS(3164), - [anon_sym___based] = ACTIONS(3164), - [anon_sym_signed] = ACTIONS(3164), - [anon_sym_unsigned] = ACTIONS(3164), - [anon_sym_long] = ACTIONS(3164), - [anon_sym_short] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_register] = ACTIONS(3164), - [anon_sym_inline] = ACTIONS(3164), - [anon_sym___inline] = ACTIONS(3164), - [anon_sym___inline__] = ACTIONS(3164), - [anon_sym___forceinline] = ACTIONS(3164), - [anon_sym_thread_local] = ACTIONS(3164), - [anon_sym___thread] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_constexpr] = ACTIONS(3164), - [anon_sym_volatile] = ACTIONS(3164), - [anon_sym_restrict] = ACTIONS(3164), - [anon_sym___restrict__] = ACTIONS(3164), - [anon_sym__Atomic] = ACTIONS(3164), - [anon_sym__Noreturn] = ACTIONS(3164), - [anon_sym_noreturn] = ACTIONS(3164), - [anon_sym_mutable] = ACTIONS(3164), - [anon_sym_constinit] = ACTIONS(3164), - [anon_sym_consteval] = ACTIONS(3164), - [sym_primitive_type] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_struct] = ACTIONS(3164), - [anon_sym_union] = ACTIONS(3164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3164), - [anon_sym_virtual] = ACTIONS(3164), - [anon_sym_alignas] = ACTIONS(3164), - [anon_sym_explicit] = ACTIONS(3164), - [anon_sym_typename] = ACTIONS(3164), - [anon_sym_template] = ACTIONS(3164), - [anon_sym_operator] = ACTIONS(3164), - [anon_sym_friend] = ACTIONS(3164), - [anon_sym_public] = ACTIONS(3164), - [anon_sym_private] = ACTIONS(3164), - [anon_sym_protected] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_static_assert] = ACTIONS(3164), + [1878] = { + [sym__expression] = STATE(3178), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), }, - [2071] = { - [sym_identifier] = ACTIONS(5382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5384), - [anon_sym_COMMA] = ACTIONS(5384), - [anon_sym_RPAREN] = ACTIONS(5384), - [anon_sym_LPAREN2] = ACTIONS(5384), - [anon_sym_DASH] = ACTIONS(5382), - [anon_sym_PLUS] = ACTIONS(5382), - [anon_sym_STAR] = ACTIONS(5384), - [anon_sym_SLASH] = ACTIONS(5382), - [anon_sym_PERCENT] = ACTIONS(5384), - [anon_sym_PIPE_PIPE] = ACTIONS(5384), - [anon_sym_AMP_AMP] = ACTIONS(5384), - [anon_sym_PIPE] = ACTIONS(5382), - [anon_sym_CARET] = ACTIONS(5384), - [anon_sym_AMP] = ACTIONS(5382), - [anon_sym_EQ_EQ] = ACTIONS(5384), - [anon_sym_BANG_EQ] = ACTIONS(5384), - [anon_sym_GT] = ACTIONS(5382), - [anon_sym_GT_EQ] = ACTIONS(5384), - [anon_sym_LT_EQ] = ACTIONS(5382), - [anon_sym_LT] = ACTIONS(5382), - [anon_sym_LT_LT] = ACTIONS(5384), - [anon_sym_GT_GT] = ACTIONS(5384), - [anon_sym_SEMI] = ACTIONS(5384), - [anon_sym___extension__] = ACTIONS(5382), - [anon_sym___attribute__] = ACTIONS(5382), - [anon_sym_COLON_COLON] = ACTIONS(5386), - [anon_sym___based] = ACTIONS(5382), - [anon_sym_LBRACE] = ACTIONS(5384), - [anon_sym_RBRACE] = ACTIONS(5384), - [anon_sym_signed] = ACTIONS(5382), - [anon_sym_unsigned] = ACTIONS(5382), - [anon_sym_long] = ACTIONS(5382), - [anon_sym_short] = ACTIONS(5382), - [anon_sym_LBRACK] = ACTIONS(5384), - [anon_sym_RBRACK] = ACTIONS(5384), - [anon_sym_const] = ACTIONS(5382), - [anon_sym_constexpr] = ACTIONS(5382), - [anon_sym_volatile] = ACTIONS(5382), - [anon_sym_restrict] = ACTIONS(5382), - [anon_sym___restrict__] = ACTIONS(5382), - [anon_sym__Atomic] = ACTIONS(5382), - [anon_sym__Noreturn] = ACTIONS(5382), - [anon_sym_noreturn] = ACTIONS(5382), - [anon_sym_mutable] = ACTIONS(5382), - [anon_sym_constinit] = ACTIONS(5382), - [anon_sym_consteval] = ACTIONS(5382), - [sym_primitive_type] = ACTIONS(5382), - [anon_sym_COLON] = ACTIONS(5382), - [anon_sym_QMARK] = ACTIONS(5384), - [anon_sym_LT_EQ_GT] = ACTIONS(5384), - [anon_sym_or] = ACTIONS(5382), - [anon_sym_and] = ACTIONS(5382), - [anon_sym_bitor] = ACTIONS(5382), - [anon_sym_xor] = ACTIONS(5382), - [anon_sym_bitand] = ACTIONS(5382), - [anon_sym_not_eq] = ACTIONS(5382), - [anon_sym_DASH_DASH] = ACTIONS(5384), - [anon_sym_PLUS_PLUS] = ACTIONS(5384), - [anon_sym_DOT] = ACTIONS(5382), - [anon_sym_DOT_STAR] = ACTIONS(5384), - [anon_sym_DASH_GT] = ACTIONS(5384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5382), - [anon_sym_decltype] = ACTIONS(5382), - [anon_sym_final] = ACTIONS(5382), - [anon_sym_override] = ACTIONS(5382), - [anon_sym_requires] = ACTIONS(5382), + [1879] = { + [sym__expression] = STATE(4733), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [2072] = { - [sym_identifier] = ACTIONS(3094), - [aux_sym_preproc_def_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token2] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3094), - [aux_sym_preproc_else_token1] = ACTIONS(3094), - [aux_sym_preproc_elif_token1] = ACTIONS(3094), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3094), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3094), - [sym_preproc_directive] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym___extension__] = ACTIONS(3094), - [anon_sym_typedef] = ACTIONS(3094), - [anon_sym_extern] = ACTIONS(3094), - [anon_sym___attribute__] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3096), - [anon_sym___declspec] = ACTIONS(3094), - [anon_sym___based] = ACTIONS(3094), - [anon_sym_signed] = ACTIONS(3094), - [anon_sym_unsigned] = ACTIONS(3094), - [anon_sym_long] = ACTIONS(3094), - [anon_sym_short] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_register] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym___inline] = ACTIONS(3094), - [anon_sym___inline__] = ACTIONS(3094), - [anon_sym___forceinline] = ACTIONS(3094), - [anon_sym_thread_local] = ACTIONS(3094), - [anon_sym___thread] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_constexpr] = ACTIONS(3094), - [anon_sym_volatile] = ACTIONS(3094), - [anon_sym_restrict] = ACTIONS(3094), - [anon_sym___restrict__] = ACTIONS(3094), - [anon_sym__Atomic] = ACTIONS(3094), - [anon_sym__Noreturn] = ACTIONS(3094), - [anon_sym_noreturn] = ACTIONS(3094), - [anon_sym_mutable] = ACTIONS(3094), - [anon_sym_constinit] = ACTIONS(3094), - [anon_sym_consteval] = ACTIONS(3094), - [sym_primitive_type] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_union] = ACTIONS(3094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3094), - [anon_sym_decltype] = ACTIONS(3094), - [anon_sym_virtual] = ACTIONS(3094), - [anon_sym_alignas] = ACTIONS(3094), - [anon_sym_explicit] = ACTIONS(3094), - [anon_sym_typename] = ACTIONS(3094), - [anon_sym_template] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_friend] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_static_assert] = ACTIONS(3094), + [1880] = { + [sym__expression] = STATE(4703), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [2073] = { - [sym_identifier] = ACTIONS(5396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5398), - [anon_sym_COMMA] = ACTIONS(5398), - [anon_sym_RPAREN] = ACTIONS(5398), - [anon_sym_LPAREN2] = ACTIONS(5398), - [anon_sym_DASH] = ACTIONS(5396), - [anon_sym_PLUS] = ACTIONS(5396), - [anon_sym_STAR] = ACTIONS(5398), - [anon_sym_SLASH] = ACTIONS(5396), - [anon_sym_PERCENT] = ACTIONS(5398), - [anon_sym_PIPE_PIPE] = ACTIONS(5398), - [anon_sym_AMP_AMP] = ACTIONS(5398), - [anon_sym_PIPE] = ACTIONS(5396), - [anon_sym_CARET] = ACTIONS(5398), - [anon_sym_AMP] = ACTIONS(5396), - [anon_sym_EQ_EQ] = ACTIONS(5398), - [anon_sym_BANG_EQ] = ACTIONS(5398), - [anon_sym_GT] = ACTIONS(5396), - [anon_sym_GT_EQ] = ACTIONS(5398), - [anon_sym_LT_EQ] = ACTIONS(5396), - [anon_sym_LT] = ACTIONS(5396), - [anon_sym_LT_LT] = ACTIONS(5398), - [anon_sym_GT_GT] = ACTIONS(5398), - [anon_sym_SEMI] = ACTIONS(5398), - [anon_sym___extension__] = ACTIONS(5396), - [anon_sym___attribute__] = ACTIONS(5396), - [anon_sym_COLON_COLON] = ACTIONS(5398), - [anon_sym___based] = ACTIONS(5396), - [anon_sym_LBRACE] = ACTIONS(5398), - [anon_sym_RBRACE] = ACTIONS(5398), - [anon_sym_signed] = ACTIONS(5396), - [anon_sym_unsigned] = ACTIONS(5396), - [anon_sym_long] = ACTIONS(5396), - [anon_sym_short] = ACTIONS(5396), - [anon_sym_LBRACK] = ACTIONS(5398), - [anon_sym_RBRACK] = ACTIONS(5398), - [anon_sym_const] = ACTIONS(5396), - [anon_sym_constexpr] = ACTIONS(5396), - [anon_sym_volatile] = ACTIONS(5396), - [anon_sym_restrict] = ACTIONS(5396), - [anon_sym___restrict__] = ACTIONS(5396), - [anon_sym__Atomic] = ACTIONS(5396), - [anon_sym__Noreturn] = ACTIONS(5396), - [anon_sym_noreturn] = ACTIONS(5396), - [anon_sym_mutable] = ACTIONS(5396), - [anon_sym_constinit] = ACTIONS(5396), - [anon_sym_consteval] = ACTIONS(5396), - [sym_primitive_type] = ACTIONS(5396), - [anon_sym_COLON] = ACTIONS(5396), - [anon_sym_QMARK] = ACTIONS(5398), - [anon_sym_LT_EQ_GT] = ACTIONS(5398), - [anon_sym_or] = ACTIONS(5396), - [anon_sym_and] = ACTIONS(5396), - [anon_sym_bitor] = ACTIONS(5396), - [anon_sym_xor] = ACTIONS(5396), - [anon_sym_bitand] = ACTIONS(5396), - [anon_sym_not_eq] = ACTIONS(5396), - [anon_sym_DASH_DASH] = ACTIONS(5398), - [anon_sym_PLUS_PLUS] = ACTIONS(5398), - [anon_sym_DOT] = ACTIONS(5396), - [anon_sym_DOT_STAR] = ACTIONS(5398), - [anon_sym_DASH_GT] = ACTIONS(5398), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5396), - [anon_sym_decltype] = ACTIONS(5396), - [anon_sym_final] = ACTIONS(5396), - [anon_sym_override] = ACTIONS(5396), - [anon_sym_requires] = ACTIONS(5396), + [1881] = { + [sym__expression] = STATE(4725), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [2074] = { - [sym_identifier] = ACTIONS(3203), - [aux_sym_preproc_def_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token2] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), - [aux_sym_preproc_else_token1] = ACTIONS(3203), - [aux_sym_preproc_elif_token1] = ACTIONS(3203), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3203), - [sym_preproc_directive] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym___extension__] = ACTIONS(3203), - [anon_sym_typedef] = ACTIONS(3203), - [anon_sym_extern] = ACTIONS(3203), - [anon_sym___attribute__] = ACTIONS(3203), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), - [anon_sym___declspec] = ACTIONS(3203), - [anon_sym___based] = ACTIONS(3203), - [anon_sym_signed] = ACTIONS(3203), - [anon_sym_unsigned] = ACTIONS(3203), - [anon_sym_long] = ACTIONS(3203), - [anon_sym_short] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_register] = ACTIONS(3203), - [anon_sym_inline] = ACTIONS(3203), - [anon_sym___inline] = ACTIONS(3203), - [anon_sym___inline__] = ACTIONS(3203), - [anon_sym___forceinline] = ACTIONS(3203), - [anon_sym_thread_local] = ACTIONS(3203), - [anon_sym___thread] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_constexpr] = ACTIONS(3203), - [anon_sym_volatile] = ACTIONS(3203), - [anon_sym_restrict] = ACTIONS(3203), - [anon_sym___restrict__] = ACTIONS(3203), - [anon_sym__Atomic] = ACTIONS(3203), - [anon_sym__Noreturn] = ACTIONS(3203), - [anon_sym_noreturn] = ACTIONS(3203), - [anon_sym_mutable] = ACTIONS(3203), - [anon_sym_constinit] = ACTIONS(3203), - [anon_sym_consteval] = ACTIONS(3203), - [sym_primitive_type] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3203), - [anon_sym_decltype] = ACTIONS(3203), - [anon_sym_virtual] = ACTIONS(3203), - [anon_sym_alignas] = ACTIONS(3203), - [anon_sym_explicit] = ACTIONS(3203), - [anon_sym_typename] = ACTIONS(3203), - [anon_sym_template] = ACTIONS(3203), - [anon_sym_operator] = ACTIONS(3203), - [anon_sym_friend] = ACTIONS(3203), - [anon_sym_public] = ACTIONS(3203), - [anon_sym_private] = ACTIONS(3203), - [anon_sym_protected] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_static_assert] = ACTIONS(3203), + [1882] = { + [sym__expression] = STATE(4727), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [2075] = { - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token2] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [aux_sym_preproc_else_token1] = ACTIONS(3160), - [aux_sym_preproc_elif_token1] = ACTIONS(3160), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_friend] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), + [1883] = { + [sym__expression] = STATE(4728), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [2076] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [aux_sym_preproc_else_token1] = ACTIONS(2144), - [aux_sym_preproc_elif_token1] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(5316), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_friend] = ACTIONS(2144), - [anon_sym_public] = ACTIONS(2144), - [anon_sym_private] = ACTIONS(2144), - [anon_sym_protected] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), + [1884] = { + [sym__expression] = STATE(4730), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [2077] = { - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token2] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [aux_sym_preproc_else_token1] = ACTIONS(3160), - [aux_sym_preproc_elif_token1] = ACTIONS(3160), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_friend] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), + [1885] = { + [sym__expression] = STATE(4729), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [2078] = { - [sym_string_literal] = STATE(1964), - [sym_raw_string_literal] = STATE(1964), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_RPAREN] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_RBRACE] = ACTIONS(4139), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_RBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_COLON] = ACTIONS(4139), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4147), - [anon_sym_or_eq] = ACTIONS(4147), - [anon_sym_xor_eq] = ACTIONS(4147), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - [sym_literal_suffix] = ACTIONS(5367), + [1886] = { + [sym__expression] = STATE(4724), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [2079] = { - [sym_identifier] = ACTIONS(2996), - [aux_sym_preproc_def_token1] = ACTIONS(2996), - [aux_sym_preproc_if_token1] = ACTIONS(2996), - [aux_sym_preproc_if_token2] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2996), - [aux_sym_preproc_else_token1] = ACTIONS(2996), - [aux_sym_preproc_elif_token1] = ACTIONS(2996), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2996), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2996), - [sym_preproc_directive] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym___extension__] = ACTIONS(2996), - [anon_sym_typedef] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym___attribute__] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), - [anon_sym___declspec] = ACTIONS(2996), - [anon_sym___based] = ACTIONS(2996), - [anon_sym_signed] = ACTIONS(2996), - [anon_sym_unsigned] = ACTIONS(2996), - [anon_sym_long] = ACTIONS(2996), - [anon_sym_short] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_inline] = ACTIONS(2996), - [anon_sym___inline] = ACTIONS(2996), - [anon_sym___inline__] = ACTIONS(2996), - [anon_sym___forceinline] = ACTIONS(2996), - [anon_sym_thread_local] = ACTIONS(2996), - [anon_sym___thread] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_constexpr] = ACTIONS(2996), - [anon_sym_volatile] = ACTIONS(2996), - [anon_sym_restrict] = ACTIONS(2996), - [anon_sym___restrict__] = ACTIONS(2996), - [anon_sym__Atomic] = ACTIONS(2996), - [anon_sym__Noreturn] = ACTIONS(2996), - [anon_sym_noreturn] = ACTIONS(2996), - [anon_sym_mutable] = ACTIONS(2996), - [anon_sym_constinit] = ACTIONS(2996), - [anon_sym_consteval] = ACTIONS(2996), - [sym_primitive_type] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), - [anon_sym_class] = ACTIONS(2996), - [anon_sym_struct] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(2996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2996), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2996), - [anon_sym_alignas] = ACTIONS(2996), - [anon_sym_explicit] = ACTIONS(2996), - [anon_sym_typename] = ACTIONS(2996), - [anon_sym_template] = ACTIONS(2996), - [anon_sym_operator] = ACTIONS(2996), - [anon_sym_friend] = ACTIONS(2996), - [anon_sym_public] = ACTIONS(2996), - [anon_sym_private] = ACTIONS(2996), - [anon_sym_protected] = ACTIONS(2996), - [anon_sym_using] = ACTIONS(2996), - [anon_sym_static_assert] = ACTIONS(2996), + [1887] = { + [sym__expression] = STATE(4721), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [2080] = { - [sym_string_literal] = STATE(2082), - [sym_raw_string_literal] = STATE(2082), - [aux_sym_concatenated_string_repeat1] = STATE(2082), - [sym_identifier] = ACTIONS(5400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5214), - [anon_sym_COMMA] = ACTIONS(5214), - [aux_sym_preproc_if_token2] = ACTIONS(5214), - [aux_sym_preproc_else_token1] = ACTIONS(5214), - [aux_sym_preproc_elif_token1] = ACTIONS(5214), - [anon_sym_LPAREN2] = ACTIONS(5214), - [anon_sym_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5216), - [anon_sym_STAR] = ACTIONS(5216), - [anon_sym_SLASH] = ACTIONS(5216), - [anon_sym_PERCENT] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_CARET] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5214), - [anon_sym_BANG_EQ] = ACTIONS(5214), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5214), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(5214), - [anon_sym_STAR_EQ] = ACTIONS(5214), - [anon_sym_SLASH_EQ] = ACTIONS(5214), - [anon_sym_PERCENT_EQ] = ACTIONS(5214), - [anon_sym_PLUS_EQ] = ACTIONS(5214), - [anon_sym_DASH_EQ] = ACTIONS(5214), - [anon_sym_LT_LT_EQ] = ACTIONS(5214), - [anon_sym_GT_GT_EQ] = ACTIONS(5214), - [anon_sym_AMP_EQ] = ACTIONS(5214), - [anon_sym_CARET_EQ] = ACTIONS(5214), - [anon_sym_PIPE_EQ] = ACTIONS(5214), - [anon_sym_and_eq] = ACTIONS(5216), - [anon_sym_or_eq] = ACTIONS(5216), - [anon_sym_xor_eq] = ACTIONS(5216), - [anon_sym_LT_EQ_GT] = ACTIONS(5214), - [anon_sym_or] = ACTIONS(5216), - [anon_sym_and] = ACTIONS(5216), - [anon_sym_bitor] = ACTIONS(5216), - [anon_sym_xor] = ACTIONS(5216), - [anon_sym_bitand] = ACTIONS(5216), - [anon_sym_not_eq] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5214), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_DOT_STAR] = ACTIONS(5214), - [anon_sym_DASH_GT] = ACTIONS(5214), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), + [1888] = { + [sym__expression] = STATE(4223), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [sym_literal_suffix] = ACTIONS(5216), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2081] = { - [sym_template_argument_list] = STATE(2186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4972), - [anon_sym_COMMA] = ACTIONS(4972), - [anon_sym_LPAREN2] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4977), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_SLASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4972), - [anon_sym_PIPE] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4979), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4977), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(5402), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4977), - [anon_sym___extension__] = ACTIONS(4975), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4972), - [anon_sym_EQ] = ACTIONS(4977), - [anon_sym_const] = ACTIONS(4968), - [anon_sym_constexpr] = ACTIONS(4975), - [anon_sym_volatile] = ACTIONS(4975), - [anon_sym_restrict] = ACTIONS(4975), - [anon_sym___restrict__] = ACTIONS(4975), - [anon_sym__Atomic] = ACTIONS(4975), - [anon_sym__Noreturn] = ACTIONS(4975), - [anon_sym_noreturn] = ACTIONS(4975), - [anon_sym_mutable] = ACTIONS(4975), - [anon_sym_constinit] = ACTIONS(4975), - [anon_sym_consteval] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_LT_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_GT_EQ] = ACTIONS(4977), - [anon_sym_AMP_EQ] = ACTIONS(4970), - [anon_sym_CARET_EQ] = ACTIONS(4970), - [anon_sym_PIPE_EQ] = ACTIONS(4970), - [anon_sym_and_eq] = ACTIONS(4970), - [anon_sym_or_eq] = ACTIONS(4970), - [anon_sym_xor_eq] = ACTIONS(4970), - [anon_sym_LT_EQ_GT] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4977), - [anon_sym_and] = ACTIONS(4977), - [anon_sym_bitor] = ACTIONS(4970), - [anon_sym_xor] = ACTIONS(4977), - [anon_sym_bitand] = ACTIONS(4970), - [anon_sym_not_eq] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_DOT_STAR] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4975), - [anon_sym_decltype] = ACTIONS(4975), - [anon_sym_GT2] = ACTIONS(4972), + [1889] = { + [sym__expression] = STATE(3228), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), }, - [2082] = { - [sym_string_literal] = STATE(2084), - [sym_raw_string_literal] = STATE(2084), - [aux_sym_concatenated_string_repeat1] = STATE(2084), - [sym_identifier] = ACTIONS(5405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5198), - [anon_sym_COMMA] = ACTIONS(5198), - [aux_sym_preproc_if_token2] = ACTIONS(5198), - [aux_sym_preproc_else_token1] = ACTIONS(5198), - [aux_sym_preproc_elif_token1] = ACTIONS(5198), - [anon_sym_LPAREN2] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5200), - [anon_sym_PLUS] = ACTIONS(5200), - [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_SLASH] = ACTIONS(5200), - [anon_sym_PERCENT] = ACTIONS(5200), - [anon_sym_PIPE_PIPE] = ACTIONS(5198), - [anon_sym_AMP_AMP] = ACTIONS(5198), - [anon_sym_PIPE] = ACTIONS(5200), - [anon_sym_CARET] = ACTIONS(5200), - [anon_sym_AMP] = ACTIONS(5200), - [anon_sym_EQ_EQ] = ACTIONS(5198), - [anon_sym_BANG_EQ] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5200), - [anon_sym_GT_EQ] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5200), - [anon_sym_LT] = ACTIONS(5200), - [anon_sym_LT_LT] = ACTIONS(5200), - [anon_sym_GT_GT] = ACTIONS(5200), - [anon_sym_LBRACK] = ACTIONS(5198), - [anon_sym_EQ] = ACTIONS(5200), - [anon_sym_QMARK] = ACTIONS(5198), - [anon_sym_STAR_EQ] = ACTIONS(5198), - [anon_sym_SLASH_EQ] = ACTIONS(5198), - [anon_sym_PERCENT_EQ] = ACTIONS(5198), - [anon_sym_PLUS_EQ] = ACTIONS(5198), - [anon_sym_DASH_EQ] = ACTIONS(5198), - [anon_sym_LT_LT_EQ] = ACTIONS(5198), - [anon_sym_GT_GT_EQ] = ACTIONS(5198), - [anon_sym_AMP_EQ] = ACTIONS(5198), - [anon_sym_CARET_EQ] = ACTIONS(5198), - [anon_sym_PIPE_EQ] = ACTIONS(5198), - [anon_sym_and_eq] = ACTIONS(5200), - [anon_sym_or_eq] = ACTIONS(5200), - [anon_sym_xor_eq] = ACTIONS(5200), - [anon_sym_LT_EQ_GT] = ACTIONS(5198), - [anon_sym_or] = ACTIONS(5200), - [anon_sym_and] = ACTIONS(5200), - [anon_sym_bitor] = ACTIONS(5200), - [anon_sym_xor] = ACTIONS(5200), - [anon_sym_bitand] = ACTIONS(5200), - [anon_sym_not_eq] = ACTIONS(5200), - [anon_sym_DASH_DASH] = ACTIONS(5198), - [anon_sym_PLUS_PLUS] = ACTIONS(5198), - [anon_sym_DOT] = ACTIONS(5200), - [anon_sym_DOT_STAR] = ACTIONS(5198), - [anon_sym_DASH_GT] = ACTIONS(5198), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), + [1890] = { + [sym__expression] = STATE(4243), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3796), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3796), + [sym_call_expression] = STATE(3796), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3796), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3796), + [sym_char_literal] = STATE(5037), + [sym_concatenated_string] = STATE(5037), + [sym_string_literal] = STATE(4018), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(4018), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3796), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3796), + [sym_identifier] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(4558), + [anon_sym_BANG] = ACTIONS(3866), + [anon_sym_TILDE] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(4560), + [anon_sym_AMP] = ACTIONS(4560), + [anon_sym_COLON_COLON] = ACTIONS(3868), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3864), + [anon_sym_compl] = ACTIONS(3864), + [anon_sym_DASH_DASH] = ACTIONS(4564), + [anon_sym_PLUS_PLUS] = ACTIONS(4564), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_L_SQUOTE] = ACTIONS(3874), + [anon_sym_u_SQUOTE] = ACTIONS(3874), + [anon_sym_U_SQUOTE] = ACTIONS(3874), + [anon_sym_u8_SQUOTE] = ACTIONS(3874), + [anon_sym_SQUOTE] = ACTIONS(3874), + [anon_sym_L_DQUOTE] = ACTIONS(3876), + [anon_sym_u_DQUOTE] = ACTIONS(3876), + [anon_sym_U_DQUOTE] = ACTIONS(3876), + [anon_sym_u8_DQUOTE] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [sym_literal_suffix] = ACTIONS(5200), - }, - [2083] = { - [sym_identifier] = ACTIONS(5407), - [aux_sym_preproc_def_token1] = ACTIONS(5407), - [aux_sym_preproc_if_token1] = ACTIONS(5407), - [aux_sym_preproc_if_token2] = ACTIONS(5407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5407), - [aux_sym_preproc_else_token1] = ACTIONS(5407), - [aux_sym_preproc_elif_token1] = ACTIONS(5407), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5407), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5407), - [sym_preproc_directive] = ACTIONS(5407), - [anon_sym_LPAREN2] = ACTIONS(5409), - [anon_sym_TILDE] = ACTIONS(5409), - [anon_sym_STAR] = ACTIONS(5409), - [anon_sym_AMP_AMP] = ACTIONS(5409), - [anon_sym_AMP] = ACTIONS(5407), - [anon_sym___extension__] = ACTIONS(5407), - [anon_sym_typedef] = ACTIONS(5407), - [anon_sym_extern] = ACTIONS(5407), - [anon_sym___attribute__] = ACTIONS(5407), - [anon_sym_COLON_COLON] = ACTIONS(5409), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5409), - [anon_sym___declspec] = ACTIONS(5407), - [anon_sym___based] = ACTIONS(5407), - [anon_sym_signed] = ACTIONS(5407), - [anon_sym_unsigned] = ACTIONS(5407), - [anon_sym_long] = ACTIONS(5407), - [anon_sym_short] = ACTIONS(5407), - [anon_sym_LBRACK] = ACTIONS(5407), - [anon_sym_static] = ACTIONS(5407), - [anon_sym_register] = ACTIONS(5407), - [anon_sym_inline] = ACTIONS(5407), - [anon_sym___inline] = ACTIONS(5407), - [anon_sym___inline__] = ACTIONS(5407), - [anon_sym___forceinline] = ACTIONS(5407), - [anon_sym_thread_local] = ACTIONS(5407), - [anon_sym___thread] = ACTIONS(5407), - [anon_sym_const] = ACTIONS(5407), - [anon_sym_constexpr] = ACTIONS(5407), - [anon_sym_volatile] = ACTIONS(5407), - [anon_sym_restrict] = ACTIONS(5407), - [anon_sym___restrict__] = ACTIONS(5407), - [anon_sym__Atomic] = ACTIONS(5407), - [anon_sym__Noreturn] = ACTIONS(5407), - [anon_sym_noreturn] = ACTIONS(5407), - [anon_sym_mutable] = ACTIONS(5407), - [anon_sym_constinit] = ACTIONS(5407), - [anon_sym_consteval] = ACTIONS(5407), - [sym_primitive_type] = ACTIONS(5407), - [anon_sym_enum] = ACTIONS(5407), - [anon_sym_class] = ACTIONS(5407), - [anon_sym_struct] = ACTIONS(5407), - [anon_sym_union] = ACTIONS(5407), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5407), - [anon_sym_decltype] = ACTIONS(5407), - [anon_sym_virtual] = ACTIONS(5407), - [anon_sym_alignas] = ACTIONS(5407), - [anon_sym_explicit] = ACTIONS(5407), - [anon_sym_typename] = ACTIONS(5407), - [anon_sym_template] = ACTIONS(5407), - [anon_sym_operator] = ACTIONS(5407), - [anon_sym_friend] = ACTIONS(5407), - [anon_sym_public] = ACTIONS(5407), - [anon_sym_private] = ACTIONS(5407), - [anon_sym_protected] = ACTIONS(5407), - [anon_sym_using] = ACTIONS(5407), - [anon_sym_static_assert] = ACTIONS(5407), - }, - [2084] = { - [sym_string_literal] = STATE(2084), - [sym_raw_string_literal] = STATE(2084), - [aux_sym_concatenated_string_repeat1] = STATE(2084), - [sym_identifier] = ACTIONS(5411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5158), - [anon_sym_COMMA] = ACTIONS(5158), - [aux_sym_preproc_if_token2] = ACTIONS(5158), - [aux_sym_preproc_else_token1] = ACTIONS(5158), - [aux_sym_preproc_elif_token1] = ACTIONS(5158), - [anon_sym_LPAREN2] = ACTIONS(5158), - [anon_sym_DASH] = ACTIONS(5160), - [anon_sym_PLUS] = ACTIONS(5160), - [anon_sym_STAR] = ACTIONS(5160), - [anon_sym_SLASH] = ACTIONS(5160), - [anon_sym_PERCENT] = ACTIONS(5160), - [anon_sym_PIPE_PIPE] = ACTIONS(5158), - [anon_sym_AMP_AMP] = ACTIONS(5158), - [anon_sym_PIPE] = ACTIONS(5160), - [anon_sym_CARET] = ACTIONS(5160), - [anon_sym_AMP] = ACTIONS(5160), - [anon_sym_EQ_EQ] = ACTIONS(5158), - [anon_sym_BANG_EQ] = ACTIONS(5158), - [anon_sym_GT] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_LT] = ACTIONS(5160), - [anon_sym_LT_LT] = ACTIONS(5160), - [anon_sym_GT_GT] = ACTIONS(5160), - [anon_sym_LBRACK] = ACTIONS(5158), - [anon_sym_EQ] = ACTIONS(5160), - [anon_sym_QMARK] = ACTIONS(5158), - [anon_sym_STAR_EQ] = ACTIONS(5158), - [anon_sym_SLASH_EQ] = ACTIONS(5158), - [anon_sym_PERCENT_EQ] = ACTIONS(5158), - [anon_sym_PLUS_EQ] = ACTIONS(5158), - [anon_sym_DASH_EQ] = ACTIONS(5158), - [anon_sym_LT_LT_EQ] = ACTIONS(5158), - [anon_sym_GT_GT_EQ] = ACTIONS(5158), - [anon_sym_AMP_EQ] = ACTIONS(5158), - [anon_sym_CARET_EQ] = ACTIONS(5158), - [anon_sym_PIPE_EQ] = ACTIONS(5158), - [anon_sym_and_eq] = ACTIONS(5160), - [anon_sym_or_eq] = ACTIONS(5160), - [anon_sym_xor_eq] = ACTIONS(5160), - [anon_sym_LT_EQ_GT] = ACTIONS(5158), - [anon_sym_or] = ACTIONS(5160), - [anon_sym_and] = ACTIONS(5160), - [anon_sym_bitor] = ACTIONS(5160), - [anon_sym_xor] = ACTIONS(5160), - [anon_sym_bitand] = ACTIONS(5160), - [anon_sym_not_eq] = ACTIONS(5160), - [anon_sym_DASH_DASH] = ACTIONS(5158), - [anon_sym_PLUS_PLUS] = ACTIONS(5158), - [anon_sym_DOT] = ACTIONS(5160), - [anon_sym_DOT_STAR] = ACTIONS(5158), - [anon_sym_DASH_GT] = ACTIONS(5158), - [anon_sym_L_DQUOTE] = ACTIONS(5414), - [anon_sym_u_DQUOTE] = ACTIONS(5414), - [anon_sym_U_DQUOTE] = ACTIONS(5414), - [anon_sym_u8_DQUOTE] = ACTIONS(5414), - [anon_sym_DQUOTE] = ACTIONS(5414), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5417), - [anon_sym_LR_DQUOTE] = ACTIONS(5417), - [anon_sym_uR_DQUOTE] = ACTIONS(5417), - [anon_sym_UR_DQUOTE] = ACTIONS(5417), - [anon_sym_u8R_DQUOTE] = ACTIONS(5417), - [sym_literal_suffix] = ACTIONS(5160), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3878), + [anon_sym_R_DQUOTE] = ACTIONS(3880), + [anon_sym_LR_DQUOTE] = ACTIONS(3880), + [anon_sym_uR_DQUOTE] = ACTIONS(3880), + [anon_sym_UR_DQUOTE] = ACTIONS(3880), + [anon_sym_u8R_DQUOTE] = ACTIONS(3880), + [anon_sym_co_await] = ACTIONS(3882), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2085] = { - [sym_identifier] = ACTIONS(5407), - [aux_sym_preproc_def_token1] = ACTIONS(5407), - [aux_sym_preproc_if_token1] = ACTIONS(5407), - [aux_sym_preproc_if_token2] = ACTIONS(5407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5407), - [aux_sym_preproc_else_token1] = ACTIONS(5407), - [aux_sym_preproc_elif_token1] = ACTIONS(5407), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5407), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5407), - [sym_preproc_directive] = ACTIONS(5407), - [anon_sym_LPAREN2] = ACTIONS(5409), - [anon_sym_TILDE] = ACTIONS(5409), - [anon_sym_STAR] = ACTIONS(5409), - [anon_sym_AMP_AMP] = ACTIONS(5409), - [anon_sym_AMP] = ACTIONS(5407), - [anon_sym___extension__] = ACTIONS(5407), - [anon_sym_typedef] = ACTIONS(5407), - [anon_sym_extern] = ACTIONS(5407), - [anon_sym___attribute__] = ACTIONS(5407), - [anon_sym_COLON_COLON] = ACTIONS(5409), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5409), - [anon_sym___declspec] = ACTIONS(5407), - [anon_sym___based] = ACTIONS(5407), - [anon_sym_signed] = ACTIONS(5407), - [anon_sym_unsigned] = ACTIONS(5407), - [anon_sym_long] = ACTIONS(5407), - [anon_sym_short] = ACTIONS(5407), - [anon_sym_LBRACK] = ACTIONS(5407), - [anon_sym_static] = ACTIONS(5407), - [anon_sym_register] = ACTIONS(5407), - [anon_sym_inline] = ACTIONS(5407), - [anon_sym___inline] = ACTIONS(5407), - [anon_sym___inline__] = ACTIONS(5407), - [anon_sym___forceinline] = ACTIONS(5407), - [anon_sym_thread_local] = ACTIONS(5407), - [anon_sym___thread] = ACTIONS(5407), - [anon_sym_const] = ACTIONS(5407), - [anon_sym_constexpr] = ACTIONS(5407), - [anon_sym_volatile] = ACTIONS(5407), - [anon_sym_restrict] = ACTIONS(5407), - [anon_sym___restrict__] = ACTIONS(5407), - [anon_sym__Atomic] = ACTIONS(5407), - [anon_sym__Noreturn] = ACTIONS(5407), - [anon_sym_noreturn] = ACTIONS(5407), - [anon_sym_mutable] = ACTIONS(5407), - [anon_sym_constinit] = ACTIONS(5407), - [anon_sym_consteval] = ACTIONS(5407), - [sym_primitive_type] = ACTIONS(5407), - [anon_sym_enum] = ACTIONS(5407), - [anon_sym_class] = ACTIONS(5407), - [anon_sym_struct] = ACTIONS(5407), - [anon_sym_union] = ACTIONS(5407), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5407), - [anon_sym_decltype] = ACTIONS(5407), - [anon_sym_virtual] = ACTIONS(5407), - [anon_sym_alignas] = ACTIONS(5407), - [anon_sym_explicit] = ACTIONS(5407), - [anon_sym_typename] = ACTIONS(5407), - [anon_sym_template] = ACTIONS(5407), - [anon_sym_operator] = ACTIONS(5407), - [anon_sym_friend] = ACTIONS(5407), - [anon_sym_public] = ACTIONS(5407), - [anon_sym_private] = ACTIONS(5407), - [anon_sym_protected] = ACTIONS(5407), - [anon_sym_using] = ACTIONS(5407), - [anon_sym_static_assert] = ACTIONS(5407), + [1891] = { + [sym__expression] = STATE(3227), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), }, - [2086] = { - [sym_identifier] = ACTIONS(3152), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token2] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [aux_sym_preproc_else_token1] = ACTIONS(3152), - [aux_sym_preproc_elif_token1] = ACTIONS(3152), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3152), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym___extension__] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym___attribute__] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym___declspec] = ACTIONS(3152), - [anon_sym___based] = ACTIONS(3152), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym___inline] = ACTIONS(3152), - [anon_sym___inline__] = ACTIONS(3152), - [anon_sym___forceinline] = ACTIONS(3152), - [anon_sym_thread_local] = ACTIONS(3152), - [anon_sym___thread] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_restrict] = ACTIONS(3152), - [anon_sym___restrict__] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [anon_sym__Noreturn] = ACTIONS(3152), - [anon_sym_noreturn] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [anon_sym_constinit] = ACTIONS(3152), - [anon_sym_consteval] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(3152), - [anon_sym_union] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3152), - [anon_sym_decltype] = ACTIONS(3152), - [anon_sym_virtual] = ACTIONS(3152), - [anon_sym_alignas] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_friend] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_static_assert] = ACTIONS(3152), + [1892] = { + [sym__expression] = STATE(3226), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), }, - [2087] = { - [sym_identifier] = ACTIONS(3066), - [aux_sym_preproc_def_token1] = ACTIONS(3066), - [aux_sym_preproc_if_token1] = ACTIONS(3066), - [aux_sym_preproc_if_token2] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3066), - [aux_sym_preproc_else_token1] = ACTIONS(3066), - [aux_sym_preproc_elif_token1] = ACTIONS(3066), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3066), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3066), - [sym_preproc_directive] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym___extension__] = ACTIONS(3066), - [anon_sym_typedef] = ACTIONS(3066), - [anon_sym_extern] = ACTIONS(3066), - [anon_sym___attribute__] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3068), - [anon_sym___declspec] = ACTIONS(3066), - [anon_sym___based] = ACTIONS(3066), - [anon_sym_signed] = ACTIONS(3066), - [anon_sym_unsigned] = ACTIONS(3066), - [anon_sym_long] = ACTIONS(3066), - [anon_sym_short] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_register] = ACTIONS(3066), - [anon_sym_inline] = ACTIONS(3066), - [anon_sym___inline] = ACTIONS(3066), - [anon_sym___inline__] = ACTIONS(3066), - [anon_sym___forceinline] = ACTIONS(3066), - [anon_sym_thread_local] = ACTIONS(3066), - [anon_sym___thread] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_constexpr] = ACTIONS(3066), - [anon_sym_volatile] = ACTIONS(3066), - [anon_sym_restrict] = ACTIONS(3066), - [anon_sym___restrict__] = ACTIONS(3066), - [anon_sym__Atomic] = ACTIONS(3066), - [anon_sym__Noreturn] = ACTIONS(3066), - [anon_sym_noreturn] = ACTIONS(3066), - [anon_sym_mutable] = ACTIONS(3066), - [anon_sym_constinit] = ACTIONS(3066), - [anon_sym_consteval] = ACTIONS(3066), - [sym_primitive_type] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_union] = ACTIONS(3066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3066), - [anon_sym_decltype] = ACTIONS(3066), - [anon_sym_virtual] = ACTIONS(3066), - [anon_sym_alignas] = ACTIONS(3066), - [anon_sym_explicit] = ACTIONS(3066), - [anon_sym_typename] = ACTIONS(3066), - [anon_sym_template] = ACTIONS(3066), - [anon_sym_operator] = ACTIONS(3066), - [anon_sym_friend] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_static_assert] = ACTIONS(3066), + [1893] = { + [sym__expression] = STATE(3224), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), }, - [2088] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4994), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4994), - [anon_sym_GT_GT] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym___extension__] = ACTIONS(4992), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym___based] = ACTIONS(4992), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_signed] = ACTIONS(4992), - [anon_sym_unsigned] = ACTIONS(4992), - [anon_sym_long] = ACTIONS(4992), - [anon_sym_short] = ACTIONS(4992), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_const] = ACTIONS(4992), - [anon_sym_constexpr] = ACTIONS(4992), - [anon_sym_volatile] = ACTIONS(4992), - [anon_sym_restrict] = ACTIONS(4992), - [anon_sym___restrict__] = ACTIONS(4992), - [anon_sym__Atomic] = ACTIONS(4992), - [anon_sym__Noreturn] = ACTIONS(4992), - [anon_sym_noreturn] = ACTIONS(4992), - [anon_sym_mutable] = ACTIONS(4992), - [anon_sym_constinit] = ACTIONS(4992), - [anon_sym_consteval] = ACTIONS(4992), - [sym_primitive_type] = ACTIONS(4992), - [anon_sym_COLON] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4992), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4992), - [anon_sym_not_eq] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_final] = ACTIONS(4992), - [anon_sym_override] = ACTIONS(4992), - [anon_sym_requires] = ACTIONS(4992), + [1894] = { + [sym__expression] = STATE(3013), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2089] = { - [sym_identifier] = ACTIONS(3239), - [aux_sym_preproc_def_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token2] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), - [aux_sym_preproc_else_token1] = ACTIONS(3239), - [aux_sym_preproc_elif_token1] = ACTIONS(3239), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3239), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3239), - [sym_preproc_directive] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_AMP_AMP] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym___extension__] = ACTIONS(3239), - [anon_sym_typedef] = ACTIONS(3239), - [anon_sym_extern] = ACTIONS(3239), - [anon_sym___attribute__] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3241), - [anon_sym___declspec] = ACTIONS(3239), - [anon_sym___based] = ACTIONS(3239), - [anon_sym_signed] = ACTIONS(3239), - [anon_sym_unsigned] = ACTIONS(3239), - [anon_sym_long] = ACTIONS(3239), - [anon_sym_short] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_register] = ACTIONS(3239), - [anon_sym_inline] = ACTIONS(3239), - [anon_sym___inline] = ACTIONS(3239), - [anon_sym___inline__] = ACTIONS(3239), - [anon_sym___forceinline] = ACTIONS(3239), - [anon_sym_thread_local] = ACTIONS(3239), - [anon_sym___thread] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_constexpr] = ACTIONS(3239), - [anon_sym_volatile] = ACTIONS(3239), - [anon_sym_restrict] = ACTIONS(3239), - [anon_sym___restrict__] = ACTIONS(3239), - [anon_sym__Atomic] = ACTIONS(3239), - [anon_sym__Noreturn] = ACTIONS(3239), - [anon_sym_noreturn] = ACTIONS(3239), - [anon_sym_mutable] = ACTIONS(3239), - [anon_sym_constinit] = ACTIONS(3239), - [anon_sym_consteval] = ACTIONS(3239), - [sym_primitive_type] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3239), - [anon_sym_decltype] = ACTIONS(3239), - [anon_sym_virtual] = ACTIONS(3239), - [anon_sym_alignas] = ACTIONS(3239), - [anon_sym_explicit] = ACTIONS(3239), - [anon_sym_typename] = ACTIONS(3239), - [anon_sym_template] = ACTIONS(3239), - [anon_sym_operator] = ACTIONS(3239), - [anon_sym_friend] = ACTIONS(3239), - [anon_sym_public] = ACTIONS(3239), - [anon_sym_private] = ACTIONS(3239), - [anon_sym_protected] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_static_assert] = ACTIONS(3239), + [1895] = { + [sym__expression] = STATE(2706), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2090] = { - [sym_identifier] = ACTIONS(5420), - [aux_sym_preproc_def_token1] = ACTIONS(5420), - [aux_sym_preproc_if_token1] = ACTIONS(5420), - [aux_sym_preproc_if_token2] = ACTIONS(5420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5420), - [aux_sym_preproc_else_token1] = ACTIONS(5420), - [aux_sym_preproc_elif_token1] = ACTIONS(5420), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5420), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5420), - [sym_preproc_directive] = ACTIONS(5420), - [anon_sym_LPAREN2] = ACTIONS(5422), - [anon_sym_TILDE] = ACTIONS(5422), - [anon_sym_STAR] = ACTIONS(5422), - [anon_sym_AMP_AMP] = ACTIONS(5422), - [anon_sym_AMP] = ACTIONS(5420), - [anon_sym___extension__] = ACTIONS(5420), - [anon_sym_typedef] = ACTIONS(5420), - [anon_sym_extern] = ACTIONS(5420), - [anon_sym___attribute__] = ACTIONS(5420), - [anon_sym_COLON_COLON] = ACTIONS(5422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5422), - [anon_sym___declspec] = ACTIONS(5420), - [anon_sym___based] = ACTIONS(5420), - [anon_sym_signed] = ACTIONS(5420), - [anon_sym_unsigned] = ACTIONS(5420), - [anon_sym_long] = ACTIONS(5420), - [anon_sym_short] = ACTIONS(5420), - [anon_sym_LBRACK] = ACTIONS(5420), - [anon_sym_static] = ACTIONS(5420), - [anon_sym_register] = ACTIONS(5420), - [anon_sym_inline] = ACTIONS(5420), - [anon_sym___inline] = ACTIONS(5420), - [anon_sym___inline__] = ACTIONS(5420), - [anon_sym___forceinline] = ACTIONS(5420), - [anon_sym_thread_local] = ACTIONS(5420), - [anon_sym___thread] = ACTIONS(5420), - [anon_sym_const] = ACTIONS(5420), - [anon_sym_constexpr] = ACTIONS(5420), - [anon_sym_volatile] = ACTIONS(5420), - [anon_sym_restrict] = ACTIONS(5420), - [anon_sym___restrict__] = ACTIONS(5420), - [anon_sym__Atomic] = ACTIONS(5420), - [anon_sym__Noreturn] = ACTIONS(5420), - [anon_sym_noreturn] = ACTIONS(5420), - [anon_sym_mutable] = ACTIONS(5420), - [anon_sym_constinit] = ACTIONS(5420), - [anon_sym_consteval] = ACTIONS(5420), - [sym_primitive_type] = ACTIONS(5420), - [anon_sym_enum] = ACTIONS(5420), - [anon_sym_class] = ACTIONS(5420), - [anon_sym_struct] = ACTIONS(5420), - [anon_sym_union] = ACTIONS(5420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5420), - [anon_sym_decltype] = ACTIONS(5420), - [anon_sym_virtual] = ACTIONS(5420), - [anon_sym_alignas] = ACTIONS(5420), - [anon_sym_explicit] = ACTIONS(5420), - [anon_sym_typename] = ACTIONS(5420), - [anon_sym_template] = ACTIONS(5420), - [anon_sym_operator] = ACTIONS(5420), - [anon_sym_friend] = ACTIONS(5420), - [anon_sym_public] = ACTIONS(5420), - [anon_sym_private] = ACTIONS(5420), - [anon_sym_protected] = ACTIONS(5420), - [anon_sym_using] = ACTIONS(5420), - [anon_sym_static_assert] = ACTIONS(5420), + [1896] = { + [sym__expression] = STATE(3021), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2091] = { - [sym_identifier] = ACTIONS(3120), - [aux_sym_preproc_def_token1] = ACTIONS(3120), - [aux_sym_preproc_if_token1] = ACTIONS(3120), - [aux_sym_preproc_if_token2] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), - [aux_sym_preproc_else_token1] = ACTIONS(3120), - [aux_sym_preproc_elif_token1] = ACTIONS(3120), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3120), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3120), - [sym_preproc_directive] = ACTIONS(3120), - [anon_sym_LPAREN2] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_AMP_AMP] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3120), - [anon_sym___extension__] = ACTIONS(3120), - [anon_sym_typedef] = ACTIONS(3120), - [anon_sym_extern] = ACTIONS(3120), - [anon_sym___attribute__] = ACTIONS(3120), - [anon_sym_COLON_COLON] = ACTIONS(3122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), - [anon_sym___declspec] = ACTIONS(3120), - [anon_sym___based] = ACTIONS(3120), - [anon_sym_signed] = ACTIONS(3120), - [anon_sym_unsigned] = ACTIONS(3120), - [anon_sym_long] = ACTIONS(3120), - [anon_sym_short] = ACTIONS(3120), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_static] = ACTIONS(3120), - [anon_sym_register] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym___inline] = ACTIONS(3120), - [anon_sym___inline__] = ACTIONS(3120), - [anon_sym___forceinline] = ACTIONS(3120), - [anon_sym_thread_local] = ACTIONS(3120), - [anon_sym___thread] = ACTIONS(3120), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_constexpr] = ACTIONS(3120), - [anon_sym_volatile] = ACTIONS(3120), - [anon_sym_restrict] = ACTIONS(3120), - [anon_sym___restrict__] = ACTIONS(3120), - [anon_sym__Atomic] = ACTIONS(3120), - [anon_sym__Noreturn] = ACTIONS(3120), - [anon_sym_noreturn] = ACTIONS(3120), - [anon_sym_mutable] = ACTIONS(3120), - [anon_sym_constinit] = ACTIONS(3120), - [anon_sym_consteval] = ACTIONS(3120), - [sym_primitive_type] = ACTIONS(3120), - [anon_sym_enum] = ACTIONS(3120), - [anon_sym_class] = ACTIONS(3120), - [anon_sym_struct] = ACTIONS(3120), - [anon_sym_union] = ACTIONS(3120), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3120), - [anon_sym_decltype] = ACTIONS(3120), - [anon_sym_virtual] = ACTIONS(3120), - [anon_sym_alignas] = ACTIONS(3120), - [anon_sym_explicit] = ACTIONS(3120), - [anon_sym_typename] = ACTIONS(3120), - [anon_sym_template] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_friend] = ACTIONS(3120), - [anon_sym_public] = ACTIONS(3120), - [anon_sym_private] = ACTIONS(3120), - [anon_sym_protected] = ACTIONS(3120), - [anon_sym_using] = ACTIONS(3120), - [anon_sym_static_assert] = ACTIONS(3120), + [1897] = { + [sym__expression] = STATE(4684), + [sym__expression_not_binary] = STATE(4790), + [sym_conditional_expression] = STATE(4790), + [sym_assignment_expression] = STATE(4790), + [sym_pointer_expression] = STATE(3569), + [sym_unary_expression] = STATE(4790), + [sym_binary_expression] = STATE(4790), + [sym_update_expression] = STATE(4790), + [sym_cast_expression] = STATE(4790), + [sym_sizeof_expression] = STATE(4790), + [sym_alignof_expression] = STATE(4790), + [sym_offsetof_expression] = STATE(4790), + [sym_generic_expression] = STATE(4790), + [sym_subscript_expression] = STATE(3569), + [sym_call_expression] = STATE(3569), + [sym_gnu_asm_expression] = STATE(4790), + [sym_field_expression] = STATE(3569), + [sym_compound_literal_expression] = STATE(4790), + [sym_parenthesized_expression] = STATE(3569), + [sym_char_literal] = STATE(4767), + [sym_concatenated_string] = STATE(4767), + [sym_string_literal] = STATE(3621), + [sym_null] = STATE(4790), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8172), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4790), + [sym_raw_string_literal] = STATE(3621), + [sym_co_await_expression] = STATE(4790), + [sym_new_expression] = STATE(4790), + [sym_delete_expression] = STATE(4790), + [sym_requires_clause] = STATE(4790), + [sym_requires_expression] = STATE(4790), + [sym_lambda_expression] = STATE(4790), + [sym_lambda_capture_specifier] = STATE(6411), + [sym_fold_expression] = STATE(4790), + [sym_parameter_pack_expansion] = STATE(4790), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3569), + [sym_qualified_type_identifier] = STATE(8172), + [sym_user_defined_literal] = STATE(3569), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN2] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(3830), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(4584), + [anon_sym_PLUS_PLUS] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(3832), + [anon_sym___alignof__] = ACTIONS(3834), + [anon_sym___alignof] = ACTIONS(3834), + [anon_sym__alignof] = ACTIONS(3834), + [anon_sym_alignof] = ACTIONS(3834), + [anon_sym__Alignof] = ACTIONS(3834), + [anon_sym_offsetof] = ACTIONS(3836), + [anon_sym__Generic] = ACTIONS(3838), + [anon_sym_asm] = ACTIONS(3840), + [anon_sym___asm__] = ACTIONS(3840), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_true] = ACTIONS(3848), + [sym_false] = ACTIONS(3848), + [anon_sym_NULL] = ACTIONS(3850), + [anon_sym_nullptr] = ACTIONS(3850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [anon_sym_co_await] = ACTIONS(3856), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3860), + [sym_this] = ACTIONS(3848), }, - [2092] = { - [sym_identifier] = ACTIONS(5424), - [aux_sym_preproc_def_token1] = ACTIONS(5424), - [aux_sym_preproc_if_token1] = ACTIONS(5424), - [aux_sym_preproc_if_token2] = ACTIONS(5424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5424), - [aux_sym_preproc_else_token1] = ACTIONS(5424), - [aux_sym_preproc_elif_token1] = ACTIONS(5424), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5424), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5424), - [sym_preproc_directive] = ACTIONS(5424), - [anon_sym_LPAREN2] = ACTIONS(5426), - [anon_sym_TILDE] = ACTIONS(5426), - [anon_sym_STAR] = ACTIONS(5426), - [anon_sym_AMP_AMP] = ACTIONS(5426), - [anon_sym_AMP] = ACTIONS(5424), - [anon_sym___extension__] = ACTIONS(5424), - [anon_sym_typedef] = ACTIONS(5424), - [anon_sym_extern] = ACTIONS(5424), - [anon_sym___attribute__] = ACTIONS(5424), - [anon_sym_COLON_COLON] = ACTIONS(5426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5426), - [anon_sym___declspec] = ACTIONS(5424), - [anon_sym___based] = ACTIONS(5424), - [anon_sym_signed] = ACTIONS(5424), - [anon_sym_unsigned] = ACTIONS(5424), - [anon_sym_long] = ACTIONS(5424), - [anon_sym_short] = ACTIONS(5424), - [anon_sym_LBRACK] = ACTIONS(5424), - [anon_sym_static] = ACTIONS(5424), - [anon_sym_register] = ACTIONS(5424), - [anon_sym_inline] = ACTIONS(5424), - [anon_sym___inline] = ACTIONS(5424), - [anon_sym___inline__] = ACTIONS(5424), - [anon_sym___forceinline] = ACTIONS(5424), - [anon_sym_thread_local] = ACTIONS(5424), - [anon_sym___thread] = ACTIONS(5424), - [anon_sym_const] = ACTIONS(5424), - [anon_sym_constexpr] = ACTIONS(5424), - [anon_sym_volatile] = ACTIONS(5424), - [anon_sym_restrict] = ACTIONS(5424), - [anon_sym___restrict__] = ACTIONS(5424), - [anon_sym__Atomic] = ACTIONS(5424), - [anon_sym__Noreturn] = ACTIONS(5424), - [anon_sym_noreturn] = ACTIONS(5424), - [anon_sym_mutable] = ACTIONS(5424), - [anon_sym_constinit] = ACTIONS(5424), - [anon_sym_consteval] = ACTIONS(5424), - [sym_primitive_type] = ACTIONS(5424), - [anon_sym_enum] = ACTIONS(5424), - [anon_sym_class] = ACTIONS(5424), - [anon_sym_struct] = ACTIONS(5424), - [anon_sym_union] = ACTIONS(5424), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5424), - [anon_sym_decltype] = ACTIONS(5424), - [anon_sym_virtual] = ACTIONS(5424), - [anon_sym_alignas] = ACTIONS(5424), - [anon_sym_explicit] = ACTIONS(5424), - [anon_sym_typename] = ACTIONS(5424), - [anon_sym_template] = ACTIONS(5424), - [anon_sym_operator] = ACTIONS(5424), - [anon_sym_friend] = ACTIONS(5424), - [anon_sym_public] = ACTIONS(5424), - [anon_sym_private] = ACTIONS(5424), - [anon_sym_protected] = ACTIONS(5424), - [anon_sym_using] = ACTIONS(5424), - [anon_sym_static_assert] = ACTIONS(5424), + [1898] = { + [sym__expression] = STATE(3019), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2093] = { - [sym_identifier] = ACTIONS(5428), - [aux_sym_preproc_def_token1] = ACTIONS(5428), - [aux_sym_preproc_if_token1] = ACTIONS(5428), - [aux_sym_preproc_if_token2] = ACTIONS(5428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5428), - [aux_sym_preproc_else_token1] = ACTIONS(5428), - [aux_sym_preproc_elif_token1] = ACTIONS(5428), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5428), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5428), - [sym_preproc_directive] = ACTIONS(5428), - [anon_sym_LPAREN2] = ACTIONS(5430), - [anon_sym_TILDE] = ACTIONS(5430), - [anon_sym_STAR] = ACTIONS(5430), - [anon_sym_AMP_AMP] = ACTIONS(5430), - [anon_sym_AMP] = ACTIONS(5428), - [anon_sym___extension__] = ACTIONS(5428), - [anon_sym_typedef] = ACTIONS(5428), - [anon_sym_extern] = ACTIONS(5428), - [anon_sym___attribute__] = ACTIONS(5428), - [anon_sym_COLON_COLON] = ACTIONS(5430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5430), - [anon_sym___declspec] = ACTIONS(5428), - [anon_sym___based] = ACTIONS(5428), - [anon_sym_signed] = ACTIONS(5428), - [anon_sym_unsigned] = ACTIONS(5428), - [anon_sym_long] = ACTIONS(5428), - [anon_sym_short] = ACTIONS(5428), - [anon_sym_LBRACK] = ACTIONS(5428), - [anon_sym_static] = ACTIONS(5428), - [anon_sym_register] = ACTIONS(5428), - [anon_sym_inline] = ACTIONS(5428), - [anon_sym___inline] = ACTIONS(5428), - [anon_sym___inline__] = ACTIONS(5428), - [anon_sym___forceinline] = ACTIONS(5428), - [anon_sym_thread_local] = ACTIONS(5428), - [anon_sym___thread] = ACTIONS(5428), - [anon_sym_const] = ACTIONS(5428), - [anon_sym_constexpr] = ACTIONS(5428), - [anon_sym_volatile] = ACTIONS(5428), - [anon_sym_restrict] = ACTIONS(5428), - [anon_sym___restrict__] = ACTIONS(5428), - [anon_sym__Atomic] = ACTIONS(5428), - [anon_sym__Noreturn] = ACTIONS(5428), - [anon_sym_noreturn] = ACTIONS(5428), - [anon_sym_mutable] = ACTIONS(5428), - [anon_sym_constinit] = ACTIONS(5428), - [anon_sym_consteval] = ACTIONS(5428), - [sym_primitive_type] = ACTIONS(5428), - [anon_sym_enum] = ACTIONS(5428), - [anon_sym_class] = ACTIONS(5428), - [anon_sym_struct] = ACTIONS(5428), - [anon_sym_union] = ACTIONS(5428), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5428), - [anon_sym_decltype] = ACTIONS(5428), - [anon_sym_virtual] = ACTIONS(5428), - [anon_sym_alignas] = ACTIONS(5428), - [anon_sym_explicit] = ACTIONS(5428), - [anon_sym_typename] = ACTIONS(5428), - [anon_sym_template] = ACTIONS(5428), - [anon_sym_operator] = ACTIONS(5428), - [anon_sym_friend] = ACTIONS(5428), - [anon_sym_public] = ACTIONS(5428), - [anon_sym_private] = ACTIONS(5428), - [anon_sym_protected] = ACTIONS(5428), - [anon_sym_using] = ACTIONS(5428), - [anon_sym_static_assert] = ACTIONS(5428), + [1899] = { + [sym__expression] = STATE(3018), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2094] = { - [sym_identifier] = ACTIONS(5432), - [aux_sym_preproc_def_token1] = ACTIONS(5432), - [aux_sym_preproc_if_token1] = ACTIONS(5432), - [aux_sym_preproc_if_token2] = ACTIONS(5432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5432), - [aux_sym_preproc_else_token1] = ACTIONS(5432), - [aux_sym_preproc_elif_token1] = ACTIONS(5432), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5432), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5432), - [sym_preproc_directive] = ACTIONS(5432), - [anon_sym_LPAREN2] = ACTIONS(5434), - [anon_sym_TILDE] = ACTIONS(5434), - [anon_sym_STAR] = ACTIONS(5434), - [anon_sym_AMP_AMP] = ACTIONS(5434), - [anon_sym_AMP] = ACTIONS(5432), - [anon_sym___extension__] = ACTIONS(5432), - [anon_sym_typedef] = ACTIONS(5432), - [anon_sym_extern] = ACTIONS(5432), - [anon_sym___attribute__] = ACTIONS(5432), - [anon_sym_COLON_COLON] = ACTIONS(5434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5434), - [anon_sym___declspec] = ACTIONS(5432), - [anon_sym___based] = ACTIONS(5432), - [anon_sym_signed] = ACTIONS(5432), - [anon_sym_unsigned] = ACTIONS(5432), - [anon_sym_long] = ACTIONS(5432), - [anon_sym_short] = ACTIONS(5432), - [anon_sym_LBRACK] = ACTIONS(5432), - [anon_sym_static] = ACTIONS(5432), - [anon_sym_register] = ACTIONS(5432), - [anon_sym_inline] = ACTIONS(5432), - [anon_sym___inline] = ACTIONS(5432), - [anon_sym___inline__] = ACTIONS(5432), - [anon_sym___forceinline] = ACTIONS(5432), - [anon_sym_thread_local] = ACTIONS(5432), - [anon_sym___thread] = ACTIONS(5432), - [anon_sym_const] = ACTIONS(5432), - [anon_sym_constexpr] = ACTIONS(5432), - [anon_sym_volatile] = ACTIONS(5432), - [anon_sym_restrict] = ACTIONS(5432), - [anon_sym___restrict__] = ACTIONS(5432), - [anon_sym__Atomic] = ACTIONS(5432), - [anon_sym__Noreturn] = ACTIONS(5432), - [anon_sym_noreturn] = ACTIONS(5432), - [anon_sym_mutable] = ACTIONS(5432), - [anon_sym_constinit] = ACTIONS(5432), - [anon_sym_consteval] = ACTIONS(5432), - [sym_primitive_type] = ACTIONS(5432), - [anon_sym_enum] = ACTIONS(5432), - [anon_sym_class] = ACTIONS(5432), - [anon_sym_struct] = ACTIONS(5432), - [anon_sym_union] = ACTIONS(5432), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5432), - [anon_sym_decltype] = ACTIONS(5432), - [anon_sym_virtual] = ACTIONS(5432), - [anon_sym_alignas] = ACTIONS(5432), - [anon_sym_explicit] = ACTIONS(5432), - [anon_sym_typename] = ACTIONS(5432), - [anon_sym_template] = ACTIONS(5432), - [anon_sym_operator] = ACTIONS(5432), - [anon_sym_friend] = ACTIONS(5432), - [anon_sym_public] = ACTIONS(5432), - [anon_sym_private] = ACTIONS(5432), - [anon_sym_protected] = ACTIONS(5432), - [anon_sym_using] = ACTIONS(5432), - [anon_sym_static_assert] = ACTIONS(5432), + [1900] = { + [sym__expression] = STATE(3222), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), }, - [2095] = { - [sym_identifier] = ACTIONS(5428), - [aux_sym_preproc_def_token1] = ACTIONS(5428), - [aux_sym_preproc_if_token1] = ACTIONS(5428), - [aux_sym_preproc_if_token2] = ACTIONS(5428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5428), - [aux_sym_preproc_else_token1] = ACTIONS(5428), - [aux_sym_preproc_elif_token1] = ACTIONS(5428), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5428), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5428), - [sym_preproc_directive] = ACTIONS(5428), - [anon_sym_LPAREN2] = ACTIONS(5430), - [anon_sym_TILDE] = ACTIONS(5430), - [anon_sym_STAR] = ACTIONS(5430), - [anon_sym_AMP_AMP] = ACTIONS(5430), - [anon_sym_AMP] = ACTIONS(5428), - [anon_sym___extension__] = ACTIONS(5428), - [anon_sym_typedef] = ACTIONS(5428), - [anon_sym_extern] = ACTIONS(5428), - [anon_sym___attribute__] = ACTIONS(5428), - [anon_sym_COLON_COLON] = ACTIONS(5430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5430), - [anon_sym___declspec] = ACTIONS(5428), - [anon_sym___based] = ACTIONS(5428), - [anon_sym_signed] = ACTIONS(5428), - [anon_sym_unsigned] = ACTIONS(5428), - [anon_sym_long] = ACTIONS(5428), - [anon_sym_short] = ACTIONS(5428), - [anon_sym_LBRACK] = ACTIONS(5428), - [anon_sym_static] = ACTIONS(5428), - [anon_sym_register] = ACTIONS(5428), - [anon_sym_inline] = ACTIONS(5428), - [anon_sym___inline] = ACTIONS(5428), - [anon_sym___inline__] = ACTIONS(5428), - [anon_sym___forceinline] = ACTIONS(5428), - [anon_sym_thread_local] = ACTIONS(5428), - [anon_sym___thread] = ACTIONS(5428), - [anon_sym_const] = ACTIONS(5428), - [anon_sym_constexpr] = ACTIONS(5428), - [anon_sym_volatile] = ACTIONS(5428), - [anon_sym_restrict] = ACTIONS(5428), - [anon_sym___restrict__] = ACTIONS(5428), - [anon_sym__Atomic] = ACTIONS(5428), - [anon_sym__Noreturn] = ACTIONS(5428), - [anon_sym_noreturn] = ACTIONS(5428), - [anon_sym_mutable] = ACTIONS(5428), - [anon_sym_constinit] = ACTIONS(5428), - [anon_sym_consteval] = ACTIONS(5428), - [sym_primitive_type] = ACTIONS(5428), - [anon_sym_enum] = ACTIONS(5428), - [anon_sym_class] = ACTIONS(5428), - [anon_sym_struct] = ACTIONS(5428), - [anon_sym_union] = ACTIONS(5428), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5428), - [anon_sym_decltype] = ACTIONS(5428), - [anon_sym_virtual] = ACTIONS(5428), - [anon_sym_alignas] = ACTIONS(5428), - [anon_sym_explicit] = ACTIONS(5428), - [anon_sym_typename] = ACTIONS(5428), - [anon_sym_template] = ACTIONS(5428), - [anon_sym_operator] = ACTIONS(5428), - [anon_sym_friend] = ACTIONS(5428), - [anon_sym_public] = ACTIONS(5428), - [anon_sym_private] = ACTIONS(5428), - [anon_sym_protected] = ACTIONS(5428), - [anon_sym_using] = ACTIONS(5428), - [anon_sym_static_assert] = ACTIONS(5428), + [1901] = { + [sym__expression] = STATE(3017), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2096] = { - [sym_identifier] = ACTIONS(3235), - [aux_sym_preproc_def_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token2] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3235), - [aux_sym_preproc_else_token1] = ACTIONS(3235), - [aux_sym_preproc_elif_token1] = ACTIONS(3235), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3235), - [sym_preproc_directive] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym___based] = ACTIONS(3235), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_operator] = ACTIONS(3235), - [anon_sym_friend] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_protected] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_static_assert] = ACTIONS(3235), + [1902] = { + [sym__expression] = STATE(3016), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2097] = { - [sym_identifier] = ACTIONS(5432), - [aux_sym_preproc_def_token1] = ACTIONS(5432), - [aux_sym_preproc_if_token1] = ACTIONS(5432), - [aux_sym_preproc_if_token2] = ACTIONS(5432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5432), - [aux_sym_preproc_else_token1] = ACTIONS(5432), - [aux_sym_preproc_elif_token1] = ACTIONS(5432), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5432), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5432), - [sym_preproc_directive] = ACTIONS(5432), - [anon_sym_LPAREN2] = ACTIONS(5434), - [anon_sym_TILDE] = ACTIONS(5434), - [anon_sym_STAR] = ACTIONS(5434), - [anon_sym_AMP_AMP] = ACTIONS(5434), - [anon_sym_AMP] = ACTIONS(5432), - [anon_sym___extension__] = ACTIONS(5432), - [anon_sym_typedef] = ACTIONS(5432), - [anon_sym_extern] = ACTIONS(5432), - [anon_sym___attribute__] = ACTIONS(5432), - [anon_sym_COLON_COLON] = ACTIONS(5434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5434), - [anon_sym___declspec] = ACTIONS(5432), - [anon_sym___based] = ACTIONS(5432), - [anon_sym_signed] = ACTIONS(5432), - [anon_sym_unsigned] = ACTIONS(5432), - [anon_sym_long] = ACTIONS(5432), - [anon_sym_short] = ACTIONS(5432), - [anon_sym_LBRACK] = ACTIONS(5432), - [anon_sym_static] = ACTIONS(5432), - [anon_sym_register] = ACTIONS(5432), - [anon_sym_inline] = ACTIONS(5432), - [anon_sym___inline] = ACTIONS(5432), - [anon_sym___inline__] = ACTIONS(5432), - [anon_sym___forceinline] = ACTIONS(5432), - [anon_sym_thread_local] = ACTIONS(5432), - [anon_sym___thread] = ACTIONS(5432), - [anon_sym_const] = ACTIONS(5432), - [anon_sym_constexpr] = ACTIONS(5432), - [anon_sym_volatile] = ACTIONS(5432), - [anon_sym_restrict] = ACTIONS(5432), - [anon_sym___restrict__] = ACTIONS(5432), - [anon_sym__Atomic] = ACTIONS(5432), - [anon_sym__Noreturn] = ACTIONS(5432), - [anon_sym_noreturn] = ACTIONS(5432), - [anon_sym_mutable] = ACTIONS(5432), - [anon_sym_constinit] = ACTIONS(5432), - [anon_sym_consteval] = ACTIONS(5432), - [sym_primitive_type] = ACTIONS(5432), - [anon_sym_enum] = ACTIONS(5432), - [anon_sym_class] = ACTIONS(5432), - [anon_sym_struct] = ACTIONS(5432), - [anon_sym_union] = ACTIONS(5432), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5432), - [anon_sym_decltype] = ACTIONS(5432), - [anon_sym_virtual] = ACTIONS(5432), - [anon_sym_alignas] = ACTIONS(5432), - [anon_sym_explicit] = ACTIONS(5432), - [anon_sym_typename] = ACTIONS(5432), - [anon_sym_template] = ACTIONS(5432), - [anon_sym_operator] = ACTIONS(5432), - [anon_sym_friend] = ACTIONS(5432), - [anon_sym_public] = ACTIONS(5432), - [anon_sym_private] = ACTIONS(5432), - [anon_sym_protected] = ACTIONS(5432), - [anon_sym_using] = ACTIONS(5432), - [anon_sym_static_assert] = ACTIONS(5432), + [1903] = { + [sym__expression] = STATE(3014), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2098] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [aux_sym_preproc_if_token2] = ACTIONS(4998), - [aux_sym_preproc_else_token1] = ACTIONS(4998), - [aux_sym_preproc_elif_token1] = ACTIONS(4996), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4998), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4996), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4996), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_EQ] = ACTIONS(4996), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_STAR_EQ] = ACTIONS(4998), - [anon_sym_SLASH_EQ] = ACTIONS(4998), - [anon_sym_PERCENT_EQ] = ACTIONS(4998), - [anon_sym_PLUS_EQ] = ACTIONS(4998), - [anon_sym_DASH_EQ] = ACTIONS(4998), - [anon_sym_LT_LT_EQ] = ACTIONS(4998), - [anon_sym_GT_GT_EQ] = ACTIONS(4998), - [anon_sym_AMP_EQ] = ACTIONS(4998), - [anon_sym_CARET_EQ] = ACTIONS(4998), - [anon_sym_PIPE_EQ] = ACTIONS(4998), - [anon_sym_and_eq] = ACTIONS(4996), - [anon_sym_or_eq] = ACTIONS(4996), - [anon_sym_xor_eq] = ACTIONS(4996), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_final] = ACTIONS(4996), - [anon_sym_override] = ACTIONS(4996), + [1904] = { + [sym__expression] = STATE(3009), + [sym__expression_not_binary] = STATE(2848), + [sym_conditional_expression] = STATE(2848), + [sym_assignment_expression] = STATE(2848), + [sym_pointer_expression] = STATE(2848), + [sym_unary_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_update_expression] = STATE(2848), + [sym_cast_expression] = STATE(2848), + [sym_sizeof_expression] = STATE(2848), + [sym_alignof_expression] = STATE(2848), + [sym_offsetof_expression] = STATE(2848), + [sym_generic_expression] = STATE(2848), + [sym_subscript_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_gnu_asm_expression] = STATE(2848), + [sym_field_expression] = STATE(2848), + [sym_compound_literal_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_char_literal] = STATE(3041), + [sym_concatenated_string] = STATE(3041), + [sym_string_literal] = STATE(2071), + [sym_null] = STATE(2848), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8386), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(2848), + [sym_raw_string_literal] = STATE(2071), + [sym_co_await_expression] = STATE(2848), + [sym_new_expression] = STATE(2848), + [sym_delete_expression] = STATE(2848), + [sym_requires_clause] = STATE(2848), + [sym_requires_expression] = STATE(2848), + [sym_lambda_expression] = STATE(2848), + [sym_lambda_capture_specifier] = STATE(6459), + [sym_fold_expression] = STATE(2848), + [sym_parameter_pack_expansion] = STATE(2848), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(2848), + [sym_qualified_type_identifier] = STATE(8386), + [sym_user_defined_literal] = STATE(2848), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2150), + [anon_sym_not] = ACTIONS(2142), + [anon_sym_compl] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(4598), + [anon_sym_PLUS_PLUS] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(2152), + [anon_sym___alignof__] = ACTIONS(2154), + [anon_sym___alignof] = ACTIONS(2154), + [anon_sym__alignof] = ACTIONS(2154), + [anon_sym_alignof] = ACTIONS(2154), + [anon_sym__Alignof] = ACTIONS(2154), + [anon_sym_offsetof] = ACTIONS(2156), + [anon_sym__Generic] = ACTIONS(2158), + [anon_sym_asm] = ACTIONS(2160), + [anon_sym___asm__] = ACTIONS(2160), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_L_SQUOTE] = ACTIONS(2164), + [anon_sym_u_SQUOTE] = ACTIONS(2164), + [anon_sym_U_SQUOTE] = ACTIONS(2164), + [anon_sym_u8_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [anon_sym_NULL] = ACTIONS(2170), + [anon_sym_nullptr] = ACTIONS(2170), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2174), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [anon_sym_co_await] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_requires] = ACTIONS(2182), + [sym_this] = ACTIONS(2168), }, - [2099] = { - [sym_decltype_auto] = STATE(2172), - [sym_identifier] = ACTIONS(5436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5438), - [anon_sym_COMMA] = ACTIONS(5438), - [anon_sym_RPAREN] = ACTIONS(5438), - [anon_sym_LPAREN2] = ACTIONS(5438), - [anon_sym_DASH] = ACTIONS(5436), - [anon_sym_PLUS] = ACTIONS(5436), - [anon_sym_STAR] = ACTIONS(5438), - [anon_sym_SLASH] = ACTIONS(5436), - [anon_sym_PERCENT] = ACTIONS(5438), - [anon_sym_PIPE_PIPE] = ACTIONS(5438), - [anon_sym_AMP_AMP] = ACTIONS(5438), - [anon_sym_PIPE] = ACTIONS(5436), - [anon_sym_CARET] = ACTIONS(5438), - [anon_sym_AMP] = ACTIONS(5436), - [anon_sym_EQ_EQ] = ACTIONS(5438), - [anon_sym_BANG_EQ] = ACTIONS(5438), - [anon_sym_GT] = ACTIONS(5436), - [anon_sym_GT_EQ] = ACTIONS(5438), - [anon_sym_LT_EQ] = ACTIONS(5436), - [anon_sym_LT] = ACTIONS(5436), - [anon_sym_LT_LT] = ACTIONS(5438), - [anon_sym_GT_GT] = ACTIONS(5438), - [anon_sym_SEMI] = ACTIONS(5438), - [anon_sym___extension__] = ACTIONS(5436), - [anon_sym___attribute__] = ACTIONS(5436), - [anon_sym___based] = ACTIONS(5436), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_RBRACE] = ACTIONS(5438), - [anon_sym_signed] = ACTIONS(5436), - [anon_sym_unsigned] = ACTIONS(5436), - [anon_sym_long] = ACTIONS(5436), - [anon_sym_short] = ACTIONS(5436), - [anon_sym_LBRACK] = ACTIONS(5438), - [anon_sym_RBRACK] = ACTIONS(5438), - [anon_sym_const] = ACTIONS(5436), - [anon_sym_constexpr] = ACTIONS(5436), - [anon_sym_volatile] = ACTIONS(5436), - [anon_sym_restrict] = ACTIONS(5436), - [anon_sym___restrict__] = ACTIONS(5436), - [anon_sym__Atomic] = ACTIONS(5436), - [anon_sym__Noreturn] = ACTIONS(5436), - [anon_sym_noreturn] = ACTIONS(5436), - [anon_sym_mutable] = ACTIONS(5436), - [anon_sym_constinit] = ACTIONS(5436), - [anon_sym_consteval] = ACTIONS(5436), - [sym_primitive_type] = ACTIONS(5436), - [anon_sym_COLON] = ACTIONS(5438), - [anon_sym_QMARK] = ACTIONS(5438), - [anon_sym_LT_EQ_GT] = ACTIONS(5438), - [anon_sym_or] = ACTIONS(5436), - [anon_sym_and] = ACTIONS(5436), - [anon_sym_bitor] = ACTIONS(5436), - [anon_sym_xor] = ACTIONS(5436), - [anon_sym_bitand] = ACTIONS(5436), - [anon_sym_not_eq] = ACTIONS(5436), - [anon_sym_DASH_DASH] = ACTIONS(5438), - [anon_sym_PLUS_PLUS] = ACTIONS(5438), - [anon_sym_DOT] = ACTIONS(5436), - [anon_sym_DOT_STAR] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(5438), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5440), - [anon_sym_decltype] = ACTIONS(5442), - [anon_sym_final] = ACTIONS(5436), - [anon_sym_override] = ACTIONS(5436), - [anon_sym_requires] = ACTIONS(5436), + [1905] = { + [sym__expression] = STATE(4223), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [2100] = { - [sym_identifier] = ACTIONS(5444), - [aux_sym_preproc_def_token1] = ACTIONS(5444), - [aux_sym_preproc_if_token1] = ACTIONS(5444), - [aux_sym_preproc_if_token2] = ACTIONS(5444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5444), - [aux_sym_preproc_else_token1] = ACTIONS(5444), - [aux_sym_preproc_elif_token1] = ACTIONS(5444), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5444), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5444), - [sym_preproc_directive] = ACTIONS(5444), - [anon_sym_LPAREN2] = ACTIONS(5446), - [anon_sym_TILDE] = ACTIONS(5446), - [anon_sym_STAR] = ACTIONS(5446), - [anon_sym_AMP_AMP] = ACTIONS(5446), - [anon_sym_AMP] = ACTIONS(5444), - [anon_sym___extension__] = ACTIONS(5444), - [anon_sym_typedef] = ACTIONS(5444), - [anon_sym_extern] = ACTIONS(5444), - [anon_sym___attribute__] = ACTIONS(5444), - [anon_sym_COLON_COLON] = ACTIONS(5446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5446), - [anon_sym___declspec] = ACTIONS(5444), - [anon_sym___based] = ACTIONS(5444), - [anon_sym_signed] = ACTIONS(5444), - [anon_sym_unsigned] = ACTIONS(5444), - [anon_sym_long] = ACTIONS(5444), - [anon_sym_short] = ACTIONS(5444), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_static] = ACTIONS(5444), - [anon_sym_register] = ACTIONS(5444), - [anon_sym_inline] = ACTIONS(5444), - [anon_sym___inline] = ACTIONS(5444), - [anon_sym___inline__] = ACTIONS(5444), - [anon_sym___forceinline] = ACTIONS(5444), - [anon_sym_thread_local] = ACTIONS(5444), - [anon_sym___thread] = ACTIONS(5444), - [anon_sym_const] = ACTIONS(5444), - [anon_sym_constexpr] = ACTIONS(5444), - [anon_sym_volatile] = ACTIONS(5444), - [anon_sym_restrict] = ACTIONS(5444), - [anon_sym___restrict__] = ACTIONS(5444), - [anon_sym__Atomic] = ACTIONS(5444), - [anon_sym__Noreturn] = ACTIONS(5444), - [anon_sym_noreturn] = ACTIONS(5444), - [anon_sym_mutable] = ACTIONS(5444), - [anon_sym_constinit] = ACTIONS(5444), - [anon_sym_consteval] = ACTIONS(5444), - [sym_primitive_type] = ACTIONS(5444), - [anon_sym_enum] = ACTIONS(5444), - [anon_sym_class] = ACTIONS(5444), - [anon_sym_struct] = ACTIONS(5444), - [anon_sym_union] = ACTIONS(5444), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5444), - [anon_sym_decltype] = ACTIONS(5444), - [anon_sym_virtual] = ACTIONS(5444), - [anon_sym_alignas] = ACTIONS(5444), - [anon_sym_explicit] = ACTIONS(5444), - [anon_sym_typename] = ACTIONS(5444), - [anon_sym_template] = ACTIONS(5444), - [anon_sym_operator] = ACTIONS(5444), - [anon_sym_friend] = ACTIONS(5444), - [anon_sym_public] = ACTIONS(5444), - [anon_sym_private] = ACTIONS(5444), - [anon_sym_protected] = ACTIONS(5444), - [anon_sym_using] = ACTIONS(5444), - [anon_sym_static_assert] = ACTIONS(5444), + [1906] = { + [sym__expression] = STATE(4787), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2101] = { - [sym_string_literal] = STATE(2259), - [sym_template_argument_list] = STATE(3457), - [sym_raw_string_literal] = STATE(2259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_RPAREN] = ACTIONS(5388), - [anon_sym_LPAREN2] = ACTIONS(5388), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5448), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5388), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(5390), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4139), - [anon_sym_or_eq] = ACTIONS(4139), - [anon_sym_xor_eq] = ACTIONS(4139), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4147), - [anon_sym_L_DQUOTE] = ACTIONS(5451), - [anon_sym_u_DQUOTE] = ACTIONS(5451), - [anon_sym_U_DQUOTE] = ACTIONS(5451), - [anon_sym_u8_DQUOTE] = ACTIONS(5451), - [anon_sym_DQUOTE] = ACTIONS(5451), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5453), - [anon_sym_LR_DQUOTE] = ACTIONS(5453), - [anon_sym_uR_DQUOTE] = ACTIONS(5453), - [anon_sym_UR_DQUOTE] = ACTIONS(5453), - [anon_sym_u8R_DQUOTE] = ACTIONS(5453), - [anon_sym_DASH_GT_STAR] = ACTIONS(4139), + [1907] = { + [sym__expression] = STATE(4243), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3183), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3183), + [sym_call_expression] = STATE(3183), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3183), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3183), + [sym_char_literal] = STATE(4652), + [sym_concatenated_string] = STATE(4652), + [sym_string_literal] = STATE(3368), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3368), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3183), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3183), + [sym_identifier] = ACTIONS(4515), + [anon_sym_LPAREN2] = ACTIONS(4652), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(4632), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_PLUS_PLUS] = ACTIONS(4517), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(3618), + [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(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3632), + [sym_this] = ACTIONS(217), }, - [2102] = { - [sym_identifier] = ACTIONS(5455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5457), - [anon_sym_COMMA] = ACTIONS(5457), - [anon_sym_RPAREN] = ACTIONS(5457), - [aux_sym_preproc_if_token2] = ACTIONS(5457), - [aux_sym_preproc_else_token1] = ACTIONS(5457), - [aux_sym_preproc_elif_token1] = ACTIONS(5455), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5457), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5457), - [anon_sym_LPAREN2] = ACTIONS(5457), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_PLUS] = ACTIONS(5455), - [anon_sym_STAR] = ACTIONS(5455), - [anon_sym_SLASH] = ACTIONS(5455), - [anon_sym_PERCENT] = ACTIONS(5455), - [anon_sym_PIPE_PIPE] = ACTIONS(5457), - [anon_sym_AMP_AMP] = ACTIONS(5457), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5455), - [anon_sym_AMP] = ACTIONS(5455), - [anon_sym_EQ_EQ] = ACTIONS(5457), - [anon_sym_BANG_EQ] = ACTIONS(5457), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_GT_EQ] = ACTIONS(5457), - [anon_sym_LT_EQ] = ACTIONS(5455), - [anon_sym_LT] = ACTIONS(5455), - [anon_sym_LT_LT] = ACTIONS(5455), - [anon_sym_GT_GT] = ACTIONS(5455), - [anon_sym_SEMI] = ACTIONS(5457), - [anon_sym___attribute__] = ACTIONS(5455), - [anon_sym_COLON_COLON] = ACTIONS(5386), - [anon_sym_LBRACE] = ACTIONS(5457), - [anon_sym_RBRACE] = ACTIONS(5457), - [anon_sym_LBRACK] = ACTIONS(5457), - [anon_sym_RBRACK] = ACTIONS(5457), - [anon_sym_EQ] = ACTIONS(5455), - [anon_sym_COLON] = ACTIONS(5455), - [anon_sym_QMARK] = ACTIONS(5457), - [anon_sym_STAR_EQ] = ACTIONS(5457), - [anon_sym_SLASH_EQ] = ACTIONS(5457), - [anon_sym_PERCENT_EQ] = ACTIONS(5457), - [anon_sym_PLUS_EQ] = ACTIONS(5457), - [anon_sym_DASH_EQ] = ACTIONS(5457), - [anon_sym_LT_LT_EQ] = ACTIONS(5457), - [anon_sym_GT_GT_EQ] = ACTIONS(5457), - [anon_sym_AMP_EQ] = ACTIONS(5457), - [anon_sym_CARET_EQ] = ACTIONS(5457), - [anon_sym_PIPE_EQ] = ACTIONS(5457), - [anon_sym_and_eq] = ACTIONS(5455), - [anon_sym_or_eq] = ACTIONS(5455), - [anon_sym_xor_eq] = ACTIONS(5455), - [anon_sym_LT_EQ_GT] = ACTIONS(5457), - [anon_sym_or] = ACTIONS(5455), - [anon_sym_and] = ACTIONS(5455), - [anon_sym_bitor] = ACTIONS(5455), - [anon_sym_xor] = ACTIONS(5455), - [anon_sym_bitand] = ACTIONS(5455), - [anon_sym_not_eq] = ACTIONS(5455), - [anon_sym_DASH_DASH] = ACTIONS(5457), - [anon_sym_PLUS_PLUS] = ACTIONS(5457), - [anon_sym_DOT] = ACTIONS(5455), - [anon_sym_DOT_STAR] = ACTIONS(5457), - [anon_sym_DASH_GT] = ACTIONS(5457), + [1908] = { + [sym__expression] = STATE(5057), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(4053), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(4053), + [sym_call_expression] = STATE(4053), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(4053), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(4053), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(4053), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(4053), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(3896), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(3892), + [anon_sym_compl] = ACTIONS(3892), + [anon_sym_DASH_DASH] = ACTIONS(3926), + [anon_sym_PLUS_PLUS] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3898), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5455), - [anon_sym_decltype] = ACTIONS(5455), - [anon_sym_final] = ACTIONS(5455), - [anon_sym_override] = ACTIONS(5455), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(3900), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(3902), + [anon_sym_new] = ACTIONS(3904), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2103] = { - [sym_identifier] = ACTIONS(5459), - [aux_sym_preproc_def_token1] = ACTIONS(5459), - [aux_sym_preproc_if_token1] = ACTIONS(5459), - [aux_sym_preproc_if_token2] = ACTIONS(5459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5459), - [aux_sym_preproc_else_token1] = ACTIONS(5459), - [aux_sym_preproc_elif_token1] = ACTIONS(5459), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5459), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5459), - [sym_preproc_directive] = ACTIONS(5459), - [anon_sym_LPAREN2] = ACTIONS(5461), - [anon_sym_TILDE] = ACTIONS(5461), - [anon_sym_STAR] = ACTIONS(5461), - [anon_sym_AMP_AMP] = ACTIONS(5461), - [anon_sym_AMP] = ACTIONS(5459), - [anon_sym___extension__] = ACTIONS(5459), - [anon_sym_typedef] = ACTIONS(5459), - [anon_sym_extern] = ACTIONS(5459), - [anon_sym___attribute__] = ACTIONS(5459), - [anon_sym_COLON_COLON] = ACTIONS(5461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5461), - [anon_sym___declspec] = ACTIONS(5459), - [anon_sym___based] = ACTIONS(5459), - [anon_sym_signed] = ACTIONS(5459), - [anon_sym_unsigned] = ACTIONS(5459), - [anon_sym_long] = ACTIONS(5459), - [anon_sym_short] = ACTIONS(5459), - [anon_sym_LBRACK] = ACTIONS(5459), - [anon_sym_static] = ACTIONS(5459), - [anon_sym_register] = ACTIONS(5459), - [anon_sym_inline] = ACTIONS(5459), - [anon_sym___inline] = ACTIONS(5459), - [anon_sym___inline__] = ACTIONS(5459), - [anon_sym___forceinline] = ACTIONS(5459), - [anon_sym_thread_local] = ACTIONS(5459), - [anon_sym___thread] = ACTIONS(5459), - [anon_sym_const] = ACTIONS(5459), - [anon_sym_constexpr] = ACTIONS(5459), - [anon_sym_volatile] = ACTIONS(5459), - [anon_sym_restrict] = ACTIONS(5459), - [anon_sym___restrict__] = ACTIONS(5459), - [anon_sym__Atomic] = ACTIONS(5459), - [anon_sym__Noreturn] = ACTIONS(5459), - [anon_sym_noreturn] = ACTIONS(5459), - [anon_sym_mutable] = ACTIONS(5459), - [anon_sym_constinit] = ACTIONS(5459), - [anon_sym_consteval] = ACTIONS(5459), - [sym_primitive_type] = ACTIONS(5459), - [anon_sym_enum] = ACTIONS(5459), - [anon_sym_class] = ACTIONS(5459), - [anon_sym_struct] = ACTIONS(5459), - [anon_sym_union] = ACTIONS(5459), + [1909] = { + [sym__expression] = STATE(4857), + [sym__expression_not_binary] = STATE(4287), + [sym_conditional_expression] = STATE(4287), + [sym_assignment_expression] = STATE(4287), + [sym_pointer_expression] = STATE(3596), + [sym_unary_expression] = STATE(4287), + [sym_binary_expression] = STATE(4287), + [sym_update_expression] = STATE(4287), + [sym_cast_expression] = STATE(4287), + [sym_sizeof_expression] = STATE(4287), + [sym_alignof_expression] = STATE(4287), + [sym_offsetof_expression] = STATE(4287), + [sym_generic_expression] = STATE(4287), + [sym_subscript_expression] = STATE(3596), + [sym_call_expression] = STATE(3596), + [sym_gnu_asm_expression] = STATE(4287), + [sym_field_expression] = STATE(3596), + [sym_compound_literal_expression] = STATE(4287), + [sym_parenthesized_expression] = STATE(3596), + [sym_char_literal] = STATE(4711), + [sym_concatenated_string] = STATE(4711), + [sym_string_literal] = STATE(3472), + [sym_null] = STATE(4287), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8240), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(4287), + [sym_raw_string_literal] = STATE(3472), + [sym_co_await_expression] = STATE(4287), + [sym_new_expression] = STATE(4287), + [sym_delete_expression] = STATE(4287), + [sym_requires_clause] = STATE(4287), + [sym_requires_expression] = STATE(4287), + [sym_lambda_expression] = STATE(4287), + [sym_lambda_capture_specifier] = STATE(6458), + [sym_fold_expression] = STATE(4287), + [sym_parameter_pack_expansion] = STATE(4287), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6221), + [sym_qualified_identifier] = STATE(3596), + [sym_qualified_type_identifier] = STATE(8240), + [sym_user_defined_literal] = STATE(3596), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2260), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_sizeof] = ACTIONS(97), + [anon_sym___alignof__] = ACTIONS(99), + [anon_sym___alignof] = ACTIONS(99), + [anon_sym__alignof] = ACTIONS(99), + [anon_sym_alignof] = ACTIONS(99), + [anon_sym__Alignof] = ACTIONS(99), + [anon_sym_offsetof] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5459), - [anon_sym_decltype] = ACTIONS(5459), - [anon_sym_virtual] = ACTIONS(5459), - [anon_sym_alignas] = ACTIONS(5459), - [anon_sym_explicit] = ACTIONS(5459), - [anon_sym_typename] = ACTIONS(5459), - [anon_sym_template] = ACTIONS(5459), - [anon_sym_operator] = ACTIONS(5459), - [anon_sym_friend] = ACTIONS(5459), - [anon_sym_public] = ACTIONS(5459), - [anon_sym_private] = ACTIONS(5459), - [anon_sym_protected] = ACTIONS(5459), - [anon_sym_using] = ACTIONS(5459), - [anon_sym_static_assert] = ACTIONS(5459), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(151), + [anon_sym_LR_DQUOTE] = ACTIONS(151), + [anon_sym_uR_DQUOTE] = ACTIONS(151), + [anon_sym_UR_DQUOTE] = ACTIONS(151), + [anon_sym_u8R_DQUOTE] = ACTIONS(151), + [anon_sym_co_await] = ACTIONS(153), + [anon_sym_new] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(157), + [sym_this] = ACTIONS(217), }, - [2104] = { - [sym_identifier] = ACTIONS(5463), - [aux_sym_preproc_def_token1] = ACTIONS(5463), - [aux_sym_preproc_if_token1] = ACTIONS(5463), - [aux_sym_preproc_if_token2] = ACTIONS(5463), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5463), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5463), - [aux_sym_preproc_else_token1] = ACTIONS(5463), - [aux_sym_preproc_elif_token1] = ACTIONS(5463), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5463), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5463), - [sym_preproc_directive] = ACTIONS(5463), - [anon_sym_LPAREN2] = ACTIONS(5465), - [anon_sym_TILDE] = ACTIONS(5465), - [anon_sym_STAR] = ACTIONS(5465), - [anon_sym_AMP_AMP] = ACTIONS(5465), - [anon_sym_AMP] = ACTIONS(5463), - [anon_sym___extension__] = ACTIONS(5463), - [anon_sym_typedef] = ACTIONS(5463), - [anon_sym_extern] = ACTIONS(5463), - [anon_sym___attribute__] = ACTIONS(5463), - [anon_sym_COLON_COLON] = ACTIONS(5465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5465), - [anon_sym___declspec] = ACTIONS(5463), - [anon_sym___based] = ACTIONS(5463), - [anon_sym_signed] = ACTIONS(5463), - [anon_sym_unsigned] = ACTIONS(5463), - [anon_sym_long] = ACTIONS(5463), - [anon_sym_short] = ACTIONS(5463), - [anon_sym_LBRACK] = ACTIONS(5463), - [anon_sym_static] = ACTIONS(5463), - [anon_sym_register] = ACTIONS(5463), - [anon_sym_inline] = ACTIONS(5463), - [anon_sym___inline] = ACTIONS(5463), - [anon_sym___inline__] = ACTIONS(5463), - [anon_sym___forceinline] = ACTIONS(5463), - [anon_sym_thread_local] = ACTIONS(5463), - [anon_sym___thread] = ACTIONS(5463), - [anon_sym_const] = ACTIONS(5463), - [anon_sym_constexpr] = ACTIONS(5463), - [anon_sym_volatile] = ACTIONS(5463), - [anon_sym_restrict] = ACTIONS(5463), - [anon_sym___restrict__] = ACTIONS(5463), - [anon_sym__Atomic] = ACTIONS(5463), - [anon_sym__Noreturn] = ACTIONS(5463), - [anon_sym_noreturn] = ACTIONS(5463), - [anon_sym_mutable] = ACTIONS(5463), - [anon_sym_constinit] = ACTIONS(5463), - [anon_sym_consteval] = ACTIONS(5463), - [sym_primitive_type] = ACTIONS(5463), - [anon_sym_enum] = ACTIONS(5463), - [anon_sym_class] = ACTIONS(5463), - [anon_sym_struct] = ACTIONS(5463), - [anon_sym_union] = ACTIONS(5463), + [1910] = { + [sym__expression] = STATE(3221), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [1911] = { + [sym__expression] = STATE(3170), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [1912] = { + [sym__expression] = STATE(3195), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [1913] = { + [sym__expression] = STATE(3220), + [sym__expression_not_binary] = STATE(3422), + [sym_conditional_expression] = STATE(3422), + [sym_assignment_expression] = STATE(3422), + [sym_pointer_expression] = STATE(3422), + [sym_unary_expression] = STATE(3422), + [sym_binary_expression] = STATE(3422), + [sym_update_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_sizeof_expression] = STATE(3422), + [sym_alignof_expression] = STATE(3422), + [sym_offsetof_expression] = STATE(3422), + [sym_generic_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_call_expression] = STATE(3422), + [sym_gnu_asm_expression] = STATE(3422), + [sym_field_expression] = STATE(3422), + [sym_compound_literal_expression] = STATE(3422), + [sym_parenthesized_expression] = STATE(3422), + [sym_char_literal] = STATE(3312), + [sym_concatenated_string] = STATE(3312), + [sym_string_literal] = STATE(2205), + [sym_null] = STATE(3422), + [sym_decltype] = STATE(9043), + [sym__class_name] = STATE(8086), + [sym_template_type] = STATE(3113), + [sym_template_function] = STATE(3422), + [sym_raw_string_literal] = STATE(2205), + [sym_co_await_expression] = STATE(3422), + [sym_new_expression] = STATE(3422), + [sym_delete_expression] = STATE(3422), + [sym_requires_clause] = STATE(3422), + [sym_requires_expression] = STATE(3422), + [sym_lambda_expression] = STATE(3422), + [sym_lambda_capture_specifier] = STATE(6378), + [sym_fold_expression] = STATE(3422), + [sym_parameter_pack_expansion] = STATE(3422), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6210), + [sym_qualified_identifier] = STATE(3422), + [sym_qualified_type_identifier] = STATE(8086), + [sym_user_defined_literal] = STATE(3422), + [sym_identifier] = ACTIONS(4610), + [anon_sym_LPAREN2] = ACTIONS(4626), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2846), + [sym_primitive_type] = ACTIONS(2220), + [anon_sym_not] = ACTIONS(2212), + [anon_sym_compl] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(4612), + [anon_sym_PLUS_PLUS] = ACTIONS(4612), + [anon_sym_sizeof] = ACTIONS(2222), + [anon_sym___alignof__] = ACTIONS(2224), + [anon_sym___alignof] = ACTIONS(2224), + [anon_sym__alignof] = ACTIONS(2224), + [anon_sym_alignof] = ACTIONS(2224), + [anon_sym__Alignof] = ACTIONS(2224), + [anon_sym_offsetof] = ACTIONS(2226), + [anon_sym__Generic] = ACTIONS(2228), + [anon_sym_asm] = ACTIONS(2230), + [anon_sym___asm__] = ACTIONS(2230), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_L_SQUOTE] = ACTIONS(2234), + [anon_sym_u_SQUOTE] = ACTIONS(2234), + [anon_sym_U_SQUOTE] = ACTIONS(2234), + [anon_sym_u8_SQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [anon_sym_NULL] = ACTIONS(2240), + [anon_sym_nullptr] = ACTIONS(2240), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [anon_sym_co_await] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2248), + [anon_sym_requires] = ACTIONS(2250), + [sym_this] = ACTIONS(2238), + }, + [1914] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5690), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7092), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6752), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_parameter_list] = STATE(1055), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4843), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6215), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(4985), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4989), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5463), - [anon_sym_decltype] = ACTIONS(5463), - [anon_sym_virtual] = ACTIONS(5463), - [anon_sym_alignas] = ACTIONS(5463), - [anon_sym_explicit] = ACTIONS(5463), - [anon_sym_typename] = ACTIONS(5463), - [anon_sym_template] = ACTIONS(5463), - [anon_sym_operator] = ACTIONS(5463), - [anon_sym_friend] = ACTIONS(5463), - [anon_sym_public] = ACTIONS(5463), - [anon_sym_private] = ACTIONS(5463), - [anon_sym_protected] = ACTIONS(5463), - [anon_sym_using] = ACTIONS(5463), - [anon_sym_static_assert] = ACTIONS(5463), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(2122), }, - [2105] = { - [sym_identifier] = ACTIONS(5467), - [aux_sym_preproc_def_token1] = ACTIONS(5467), - [aux_sym_preproc_if_token1] = ACTIONS(5467), - [aux_sym_preproc_if_token2] = ACTIONS(5467), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5467), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5467), - [aux_sym_preproc_else_token1] = ACTIONS(5467), - [aux_sym_preproc_elif_token1] = ACTIONS(5467), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5467), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5467), - [sym_preproc_directive] = ACTIONS(5467), - [anon_sym_LPAREN2] = ACTIONS(5469), - [anon_sym_TILDE] = ACTIONS(5469), - [anon_sym_STAR] = ACTIONS(5469), - [anon_sym_AMP_AMP] = ACTIONS(5469), - [anon_sym_AMP] = ACTIONS(5467), - [anon_sym___extension__] = ACTIONS(5467), - [anon_sym_typedef] = ACTIONS(5467), - [anon_sym_extern] = ACTIONS(5467), - [anon_sym___attribute__] = ACTIONS(5467), - [anon_sym_COLON_COLON] = ACTIONS(5469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5469), - [anon_sym___declspec] = ACTIONS(5467), - [anon_sym___based] = ACTIONS(5467), - [anon_sym_signed] = ACTIONS(5467), - [anon_sym_unsigned] = ACTIONS(5467), - [anon_sym_long] = ACTIONS(5467), - [anon_sym_short] = ACTIONS(5467), - [anon_sym_LBRACK] = ACTIONS(5467), - [anon_sym_static] = ACTIONS(5467), - [anon_sym_register] = ACTIONS(5467), - [anon_sym_inline] = ACTIONS(5467), - [anon_sym___inline] = ACTIONS(5467), - [anon_sym___inline__] = ACTIONS(5467), - [anon_sym___forceinline] = ACTIONS(5467), - [anon_sym_thread_local] = ACTIONS(5467), - [anon_sym___thread] = ACTIONS(5467), - [anon_sym_const] = ACTIONS(5467), - [anon_sym_constexpr] = ACTIONS(5467), - [anon_sym_volatile] = ACTIONS(5467), - [anon_sym_restrict] = ACTIONS(5467), - [anon_sym___restrict__] = ACTIONS(5467), - [anon_sym__Atomic] = ACTIONS(5467), - [anon_sym__Noreturn] = ACTIONS(5467), - [anon_sym_noreturn] = ACTIONS(5467), - [anon_sym_mutable] = ACTIONS(5467), - [anon_sym_constinit] = ACTIONS(5467), - [anon_sym_consteval] = ACTIONS(5467), - [sym_primitive_type] = ACTIONS(5467), - [anon_sym_enum] = ACTIONS(5467), - [anon_sym_class] = ACTIONS(5467), - [anon_sym_struct] = ACTIONS(5467), - [anon_sym_union] = ACTIONS(5467), + [1915] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5789), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7084), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6752), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_parameter_list] = STATE(1056), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4843), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6215), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(4985), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4989), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5467), - [anon_sym_decltype] = ACTIONS(5467), - [anon_sym_virtual] = ACTIONS(5467), - [anon_sym_alignas] = ACTIONS(5467), - [anon_sym_explicit] = ACTIONS(5467), - [anon_sym_typename] = ACTIONS(5467), - [anon_sym_template] = ACTIONS(5467), - [anon_sym_operator] = ACTIONS(5467), - [anon_sym_friend] = ACTIONS(5467), - [anon_sym_public] = ACTIONS(5467), - [anon_sym_private] = ACTIONS(5467), - [anon_sym_protected] = ACTIONS(5467), - [anon_sym_using] = ACTIONS(5467), - [anon_sym_static_assert] = ACTIONS(5467), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(2122), }, - [2106] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_RPAREN] = ACTIONS(5016), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5021), + [1916] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5695), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7088), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6752), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_parameter_list] = STATE(1063), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4843), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6215), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(4985), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4989), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(2122), + }, + [1917] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5811), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7106), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6752), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_parameter_list] = STATE(1060), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4843), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6215), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(4985), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4989), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(2122), + }, + [1918] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5793), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7143), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6752), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_parameter_list] = STATE(1058), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(4843), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6215), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_type_identifier] = STATE(4467), + [sym_operator_name] = STATE(6752), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(4985), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(4989), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(2122), + }, + [1919] = { + [sym_identifier] = ACTIONS(3195), + [anon_sym_LPAREN2] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym___extension__] = ACTIONS(3195), + [anon_sym_extern] = ACTIONS(3195), + [anon_sym___attribute__] = ACTIONS(3195), + [anon_sym_COLON_COLON] = ACTIONS(3197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), + [anon_sym___declspec] = ACTIONS(3195), + [anon_sym_signed] = ACTIONS(3195), + [anon_sym_unsigned] = ACTIONS(3195), + [anon_sym_long] = ACTIONS(3195), + [anon_sym_short] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_register] = ACTIONS(3195), + [anon_sym_inline] = ACTIONS(3195), + [anon_sym___inline] = ACTIONS(3195), + [anon_sym___inline__] = ACTIONS(3195), + [anon_sym___forceinline] = ACTIONS(3195), + [anon_sym_thread_local] = ACTIONS(3195), + [anon_sym___thread] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_constexpr] = ACTIONS(3195), + [anon_sym_volatile] = ACTIONS(3195), + [anon_sym_restrict] = ACTIONS(3195), + [anon_sym___restrict__] = ACTIONS(3195), + [anon_sym__Atomic] = ACTIONS(3195), + [anon_sym__Noreturn] = ACTIONS(3195), + [anon_sym_noreturn] = ACTIONS(3195), + [anon_sym_mutable] = ACTIONS(3195), + [anon_sym_constinit] = ACTIONS(3195), + [anon_sym_consteval] = ACTIONS(3195), + [sym_primitive_type] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3195), + [anon_sym_not] = ACTIONS(3195), + [anon_sym_compl] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_sizeof] = ACTIONS(3195), + [anon_sym___alignof__] = ACTIONS(3195), + [anon_sym___alignof] = ACTIONS(3195), + [anon_sym__alignof] = ACTIONS(3195), + [anon_sym_alignof] = ACTIONS(3195), + [anon_sym__Alignof] = ACTIONS(3195), + [anon_sym_offsetof] = ACTIONS(3195), + [anon_sym__Generic] = ACTIONS(3195), + [anon_sym_asm] = ACTIONS(3195), + [anon_sym___asm__] = ACTIONS(3195), + [sym_number_literal] = ACTIONS(3197), + [anon_sym_L_SQUOTE] = ACTIONS(3197), + [anon_sym_u_SQUOTE] = ACTIONS(3197), + [anon_sym_U_SQUOTE] = ACTIONS(3197), + [anon_sym_u8_SQUOTE] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3197), + [anon_sym_L_DQUOTE] = ACTIONS(3197), + [anon_sym_u_DQUOTE] = ACTIONS(3197), + [anon_sym_U_DQUOTE] = ACTIONS(3197), + [anon_sym_u8_DQUOTE] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(3197), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [anon_sym_NULL] = ACTIONS(3195), + [anon_sym_nullptr] = ACTIONS(3195), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3195), + [anon_sym_decltype] = ACTIONS(3195), + [anon_sym_virtual] = ACTIONS(3195), + [anon_sym_alignas] = ACTIONS(3195), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(3195), + [anon_sym_delete] = ACTIONS(3195), + [anon_sym_R_DQUOTE] = ACTIONS(3197), + [anon_sym_LR_DQUOTE] = ACTIONS(3197), + [anon_sym_uR_DQUOTE] = ACTIONS(3197), + [anon_sym_UR_DQUOTE] = ACTIONS(3197), + [anon_sym_u8R_DQUOTE] = ACTIONS(3197), + [anon_sym_co_await] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_requires] = ACTIONS(3195), + [sym_this] = ACTIONS(3195), + }, + [1920] = { + [sym_identifier] = ACTIONS(3248), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3248), + [anon_sym_PLUS] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym_signed] = ACTIONS(3248), + [anon_sym_unsigned] = ACTIONS(3248), + [anon_sym_long] = ACTIONS(3248), + [anon_sym_short] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [sym_primitive_type] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3248), + [anon_sym_union] = ACTIONS(3248), + [anon_sym_not] = ACTIONS(3248), + [anon_sym_compl] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_sizeof] = ACTIONS(3248), + [anon_sym___alignof__] = ACTIONS(3248), + [anon_sym___alignof] = ACTIONS(3248), + [anon_sym__alignof] = ACTIONS(3248), + [anon_sym_alignof] = ACTIONS(3248), + [anon_sym__Alignof] = ACTIONS(3248), + [anon_sym_offsetof] = ACTIONS(3248), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_asm] = ACTIONS(3248), + [anon_sym___asm__] = ACTIONS(3248), + [sym_number_literal] = ACTIONS(3250), + [anon_sym_L_SQUOTE] = ACTIONS(3250), + [anon_sym_u_SQUOTE] = ACTIONS(3250), + [anon_sym_U_SQUOTE] = ACTIONS(3250), + [anon_sym_u8_SQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_L_DQUOTE] = ACTIONS(3250), + [anon_sym_u_DQUOTE] = ACTIONS(3250), + [anon_sym_U_DQUOTE] = ACTIONS(3250), + [anon_sym_u8_DQUOTE] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [sym_true] = ACTIONS(3248), + [sym_false] = ACTIONS(3248), + [anon_sym_NULL] = ACTIONS(3248), + [anon_sym_nullptr] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_delete] = ACTIONS(3248), + [anon_sym_R_DQUOTE] = ACTIONS(3250), + [anon_sym_LR_DQUOTE] = ACTIONS(3250), + [anon_sym_uR_DQUOTE] = ACTIONS(3250), + [anon_sym_UR_DQUOTE] = ACTIONS(3250), + [anon_sym_u8R_DQUOTE] = ACTIONS(3250), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3248), + [anon_sym_requires] = ACTIONS(3248), + [sym_this] = ACTIONS(3248), + }, + [1921] = { + [sym_identifier] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3320), + [anon_sym___extension__] = ACTIONS(3318), + [anon_sym_extern] = ACTIONS(3318), + [anon_sym___attribute__] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3320), + [anon_sym___declspec] = ACTIONS(3318), + [anon_sym_signed] = ACTIONS(3318), + [anon_sym_unsigned] = ACTIONS(3318), + [anon_sym_long] = ACTIONS(3318), + [anon_sym_short] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_register] = ACTIONS(3318), + [anon_sym_inline] = ACTIONS(3318), + [anon_sym___inline] = ACTIONS(3318), + [anon_sym___inline__] = ACTIONS(3318), + [anon_sym___forceinline] = ACTIONS(3318), + [anon_sym_thread_local] = ACTIONS(3318), + [anon_sym___thread] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_constexpr] = ACTIONS(3318), + [anon_sym_volatile] = ACTIONS(3318), + [anon_sym_restrict] = ACTIONS(3318), + [anon_sym___restrict__] = ACTIONS(3318), + [anon_sym__Atomic] = ACTIONS(3318), + [anon_sym__Noreturn] = ACTIONS(3318), + [anon_sym_noreturn] = ACTIONS(3318), + [anon_sym_mutable] = ACTIONS(3318), + [anon_sym_constinit] = ACTIONS(3318), + [anon_sym_consteval] = ACTIONS(3318), + [sym_primitive_type] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_union] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_compl] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_sizeof] = ACTIONS(3318), + [anon_sym___alignof__] = ACTIONS(3318), + [anon_sym___alignof] = ACTIONS(3318), + [anon_sym__alignof] = ACTIONS(3318), + [anon_sym_alignof] = ACTIONS(3318), + [anon_sym__Alignof] = ACTIONS(3318), + [anon_sym_offsetof] = ACTIONS(3318), + [anon_sym__Generic] = ACTIONS(3318), + [anon_sym_asm] = ACTIONS(3318), + [anon_sym___asm__] = ACTIONS(3318), + [sym_number_literal] = ACTIONS(3320), + [anon_sym_L_SQUOTE] = ACTIONS(3320), + [anon_sym_u_SQUOTE] = ACTIONS(3320), + [anon_sym_U_SQUOTE] = ACTIONS(3320), + [anon_sym_u8_SQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_L_DQUOTE] = ACTIONS(3320), + [anon_sym_u_DQUOTE] = ACTIONS(3320), + [anon_sym_U_DQUOTE] = ACTIONS(3320), + [anon_sym_u8_DQUOTE] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [anon_sym_NULL] = ACTIONS(3318), + [anon_sym_nullptr] = ACTIONS(3318), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3318), + [anon_sym_decltype] = ACTIONS(3318), + [anon_sym_virtual] = ACTIONS(3318), + [anon_sym_alignas] = ACTIONS(3318), + [anon_sym_typename] = ACTIONS(3318), + [anon_sym_template] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_R_DQUOTE] = ACTIONS(3320), + [anon_sym_LR_DQUOTE] = ACTIONS(3320), + [anon_sym_uR_DQUOTE] = ACTIONS(3320), + [anon_sym_UR_DQUOTE] = ACTIONS(3320), + [anon_sym_u8R_DQUOTE] = ACTIONS(3320), + [anon_sym_co_await] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_requires] = ACTIONS(3318), + [sym_this] = ACTIONS(3318), + }, + [1922] = { + [sym_identifier] = ACTIONS(4991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4993), + [anon_sym_LPAREN2] = ACTIONS(4993), + [anon_sym_TILDE] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_PERCENT] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4993), + [anon_sym_AMP_AMP] = ACTIONS(4993), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym_AMP] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4993), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_LT_LT] = ACTIONS(4991), + [anon_sym_GT_GT] = ACTIONS(4991), + [anon_sym_SEMI] = ACTIONS(4993), + [anon_sym___extension__] = ACTIONS(4991), + [anon_sym_extern] = ACTIONS(4991), + [anon_sym___attribute__] = ACTIONS(4991), + [anon_sym_COLON_COLON] = ACTIONS(4993), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4993), + [anon_sym___declspec] = ACTIONS(4991), + [anon_sym___based] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4993), + [anon_sym_RBRACE] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_EQ] = ACTIONS(4991), + [anon_sym_static] = ACTIONS(4991), + [anon_sym_register] = ACTIONS(4991), + [anon_sym_inline] = ACTIONS(4991), + [anon_sym___inline] = ACTIONS(4991), + [anon_sym___inline__] = ACTIONS(4991), + [anon_sym___forceinline] = ACTIONS(4991), + [anon_sym_thread_local] = ACTIONS(4991), + [anon_sym___thread] = ACTIONS(4991), + [anon_sym_const] = ACTIONS(4991), + [anon_sym_constexpr] = ACTIONS(4991), + [anon_sym_volatile] = ACTIONS(4991), + [anon_sym_restrict] = ACTIONS(4991), + [anon_sym___restrict__] = ACTIONS(4991), + [anon_sym__Atomic] = ACTIONS(4991), + [anon_sym__Noreturn] = ACTIONS(4991), + [anon_sym_noreturn] = ACTIONS(4991), + [anon_sym_mutable] = ACTIONS(4991), + [anon_sym_constinit] = ACTIONS(4991), + [anon_sym_consteval] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_STAR_EQ] = ACTIONS(4993), + [anon_sym_SLASH_EQ] = ACTIONS(4993), + [anon_sym_PERCENT_EQ] = ACTIONS(4993), + [anon_sym_PLUS_EQ] = ACTIONS(4993), + [anon_sym_DASH_EQ] = ACTIONS(4993), + [anon_sym_LT_LT_EQ] = ACTIONS(4993), + [anon_sym_GT_GT_EQ] = ACTIONS(4993), + [anon_sym_AMP_EQ] = ACTIONS(4993), + [anon_sym_CARET_EQ] = ACTIONS(4993), + [anon_sym_PIPE_EQ] = ACTIONS(4993), + [anon_sym_and_eq] = ACTIONS(4991), + [anon_sym_or_eq] = ACTIONS(4991), + [anon_sym_xor_eq] = ACTIONS(4991), + [anon_sym_LT_EQ_GT] = ACTIONS(4993), + [anon_sym_or] = ACTIONS(4991), + [anon_sym_and] = ACTIONS(4991), + [anon_sym_bitor] = ACTIONS(4991), + [anon_sym_xor] = ACTIONS(4991), + [anon_sym_bitand] = ACTIONS(4991), + [anon_sym_not_eq] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4993), + [anon_sym_DOT] = ACTIONS(4991), + [anon_sym_DOT_STAR] = ACTIONS(4993), + [anon_sym_DASH_GT] = ACTIONS(4993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4991), + [anon_sym_decltype] = ACTIONS(4991), + [anon_sym_virtual] = ACTIONS(4991), + [anon_sym_alignas] = ACTIONS(4991), + [anon_sym_template] = ACTIONS(4991), + [anon_sym_operator] = ACTIONS(4991), + }, + [1923] = { + [sym_identifier] = ACTIONS(4995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LPAREN2] = ACTIONS(4997), + [anon_sym_TILDE] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_PERCENT] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4997), + [anon_sym_AMP_AMP] = ACTIONS(4997), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4997), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_LT_LT] = ACTIONS(4995), + [anon_sym_GT_GT] = ACTIONS(4995), + [anon_sym_SEMI] = ACTIONS(4997), + [anon_sym___extension__] = ACTIONS(4995), + [anon_sym_extern] = ACTIONS(4995), + [anon_sym___attribute__] = ACTIONS(4995), + [anon_sym_COLON_COLON] = ACTIONS(4997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4997), + [anon_sym___declspec] = ACTIONS(4995), + [anon_sym___based] = ACTIONS(4995), + [anon_sym_LBRACE] = ACTIONS(4997), + [anon_sym_RBRACE] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_EQ] = ACTIONS(4995), + [anon_sym_static] = ACTIONS(4995), + [anon_sym_register] = ACTIONS(4995), + [anon_sym_inline] = ACTIONS(4995), + [anon_sym___inline] = ACTIONS(4995), + [anon_sym___inline__] = ACTIONS(4995), + [anon_sym___forceinline] = ACTIONS(4995), + [anon_sym_thread_local] = ACTIONS(4995), + [anon_sym___thread] = ACTIONS(4995), + [anon_sym_const] = ACTIONS(4995), + [anon_sym_constexpr] = ACTIONS(4995), + [anon_sym_volatile] = ACTIONS(4995), + [anon_sym_restrict] = ACTIONS(4995), + [anon_sym___restrict__] = ACTIONS(4995), + [anon_sym__Atomic] = ACTIONS(4995), + [anon_sym__Noreturn] = ACTIONS(4995), + [anon_sym_noreturn] = ACTIONS(4995), + [anon_sym_mutable] = ACTIONS(4995), + [anon_sym_constinit] = ACTIONS(4995), + [anon_sym_consteval] = ACTIONS(4995), + [anon_sym_QMARK] = ACTIONS(4997), + [anon_sym_STAR_EQ] = ACTIONS(4997), + [anon_sym_SLASH_EQ] = ACTIONS(4997), + [anon_sym_PERCENT_EQ] = ACTIONS(4997), + [anon_sym_PLUS_EQ] = ACTIONS(4997), + [anon_sym_DASH_EQ] = ACTIONS(4997), + [anon_sym_LT_LT_EQ] = ACTIONS(4997), + [anon_sym_GT_GT_EQ] = ACTIONS(4997), + [anon_sym_AMP_EQ] = ACTIONS(4997), + [anon_sym_CARET_EQ] = ACTIONS(4997), + [anon_sym_PIPE_EQ] = ACTIONS(4997), + [anon_sym_and_eq] = ACTIONS(4995), + [anon_sym_or_eq] = ACTIONS(4995), + [anon_sym_xor_eq] = ACTIONS(4995), + [anon_sym_LT_EQ_GT] = ACTIONS(4997), + [anon_sym_or] = ACTIONS(4995), + [anon_sym_and] = ACTIONS(4995), + [anon_sym_bitor] = ACTIONS(4995), + [anon_sym_xor] = ACTIONS(4995), + [anon_sym_bitand] = ACTIONS(4995), + [anon_sym_not_eq] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4997), + [anon_sym_DOT] = ACTIONS(4995), + [anon_sym_DOT_STAR] = ACTIONS(4997), + [anon_sym_DASH_GT] = ACTIONS(4997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4995), + [anon_sym_decltype] = ACTIONS(4995), + [anon_sym_virtual] = ACTIONS(4995), + [anon_sym_alignas] = ACTIONS(4995), + [anon_sym_template] = ACTIONS(4995), + [anon_sym_operator] = ACTIONS(4995), + }, + [1924] = { + [sym_identifier] = ACTIONS(4999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_LPAREN2] = ACTIONS(5001), + [anon_sym_TILDE] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_PERCENT] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(5001), + [anon_sym_AMP_AMP] = ACTIONS(5001), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym_AMP] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(5001), + [anon_sym_BANG_EQ] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(5001), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_LT_LT] = ACTIONS(4999), + [anon_sym_GT_GT] = ACTIONS(4999), + [anon_sym_SEMI] = ACTIONS(5001), + [anon_sym___extension__] = ACTIONS(4999), + [anon_sym_extern] = ACTIONS(4999), + [anon_sym___attribute__] = ACTIONS(4999), + [anon_sym_COLON_COLON] = ACTIONS(5001), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5001), + [anon_sym___declspec] = ACTIONS(4999), + [anon_sym___based] = ACTIONS(4999), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_RBRACE] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(4999), + [anon_sym_EQ] = ACTIONS(4999), + [anon_sym_static] = ACTIONS(4999), + [anon_sym_register] = ACTIONS(4999), + [anon_sym_inline] = ACTIONS(4999), + [anon_sym___inline] = ACTIONS(4999), + [anon_sym___inline__] = ACTIONS(4999), + [anon_sym___forceinline] = ACTIONS(4999), + [anon_sym_thread_local] = ACTIONS(4999), + [anon_sym___thread] = ACTIONS(4999), + [anon_sym_const] = ACTIONS(4999), + [anon_sym_constexpr] = ACTIONS(4999), + [anon_sym_volatile] = ACTIONS(4999), + [anon_sym_restrict] = ACTIONS(4999), + [anon_sym___restrict__] = ACTIONS(4999), + [anon_sym__Atomic] = ACTIONS(4999), + [anon_sym__Noreturn] = ACTIONS(4999), + [anon_sym_noreturn] = ACTIONS(4999), + [anon_sym_mutable] = ACTIONS(4999), + [anon_sym_constinit] = ACTIONS(4999), + [anon_sym_consteval] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_STAR_EQ] = ACTIONS(5001), + [anon_sym_SLASH_EQ] = ACTIONS(5001), + [anon_sym_PERCENT_EQ] = ACTIONS(5001), + [anon_sym_PLUS_EQ] = ACTIONS(5001), + [anon_sym_DASH_EQ] = ACTIONS(5001), + [anon_sym_LT_LT_EQ] = ACTIONS(5001), + [anon_sym_GT_GT_EQ] = ACTIONS(5001), + [anon_sym_AMP_EQ] = ACTIONS(5001), + [anon_sym_CARET_EQ] = ACTIONS(5001), + [anon_sym_PIPE_EQ] = ACTIONS(5001), + [anon_sym_and_eq] = ACTIONS(4999), + [anon_sym_or_eq] = ACTIONS(4999), + [anon_sym_xor_eq] = ACTIONS(4999), + [anon_sym_LT_EQ_GT] = ACTIONS(5001), + [anon_sym_or] = ACTIONS(4999), + [anon_sym_and] = ACTIONS(4999), + [anon_sym_bitor] = ACTIONS(4999), + [anon_sym_xor] = ACTIONS(4999), + [anon_sym_bitand] = ACTIONS(4999), + [anon_sym_not_eq] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(5001), + [anon_sym_PLUS_PLUS] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(4999), + [anon_sym_DOT_STAR] = ACTIONS(5001), + [anon_sym_DASH_GT] = ACTIONS(5001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4999), + [anon_sym_decltype] = ACTIONS(4999), + [anon_sym_virtual] = ACTIONS(4999), + [anon_sym_alignas] = ACTIONS(4999), + [anon_sym_template] = ACTIONS(4999), + [anon_sym_operator] = ACTIONS(4999), + }, + [1925] = { + [sym_identifier] = ACTIONS(5003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LPAREN2] = ACTIONS(5005), + [anon_sym_TILDE] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_PERCENT] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5005), + [anon_sym_AMP_AMP] = ACTIONS(5005), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym_AMP] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5005), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_LT_LT] = ACTIONS(5003), + [anon_sym_GT_GT] = ACTIONS(5003), + [anon_sym_SEMI] = ACTIONS(5005), + [anon_sym___extension__] = ACTIONS(5003), + [anon_sym_extern] = ACTIONS(5003), + [anon_sym___attribute__] = ACTIONS(5003), + [anon_sym_COLON_COLON] = ACTIONS(5005), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5005), + [anon_sym___declspec] = ACTIONS(5003), + [anon_sym___based] = ACTIONS(5003), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_RBRACE] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_EQ] = ACTIONS(5003), + [anon_sym_static] = ACTIONS(5003), + [anon_sym_register] = ACTIONS(5003), + [anon_sym_inline] = ACTIONS(5003), + [anon_sym___inline] = ACTIONS(5003), + [anon_sym___inline__] = ACTIONS(5003), + [anon_sym___forceinline] = ACTIONS(5003), + [anon_sym_thread_local] = ACTIONS(5003), + [anon_sym___thread] = ACTIONS(5003), + [anon_sym_const] = ACTIONS(5003), + [anon_sym_constexpr] = ACTIONS(5003), + [anon_sym_volatile] = ACTIONS(5003), + [anon_sym_restrict] = ACTIONS(5003), + [anon_sym___restrict__] = ACTIONS(5003), + [anon_sym__Atomic] = ACTIONS(5003), + [anon_sym__Noreturn] = ACTIONS(5003), + [anon_sym_noreturn] = ACTIONS(5003), + [anon_sym_mutable] = ACTIONS(5003), + [anon_sym_constinit] = ACTIONS(5003), + [anon_sym_consteval] = ACTIONS(5003), + [anon_sym_QMARK] = ACTIONS(5005), + [anon_sym_STAR_EQ] = ACTIONS(5005), + [anon_sym_SLASH_EQ] = ACTIONS(5005), + [anon_sym_PERCENT_EQ] = ACTIONS(5005), + [anon_sym_PLUS_EQ] = ACTIONS(5005), + [anon_sym_DASH_EQ] = ACTIONS(5005), + [anon_sym_LT_LT_EQ] = ACTIONS(5005), + [anon_sym_GT_GT_EQ] = ACTIONS(5005), + [anon_sym_AMP_EQ] = ACTIONS(5005), + [anon_sym_CARET_EQ] = ACTIONS(5005), + [anon_sym_PIPE_EQ] = ACTIONS(5005), + [anon_sym_and_eq] = ACTIONS(5003), + [anon_sym_or_eq] = ACTIONS(5003), + [anon_sym_xor_eq] = ACTIONS(5003), + [anon_sym_LT_EQ_GT] = ACTIONS(5005), + [anon_sym_or] = ACTIONS(5003), + [anon_sym_and] = ACTIONS(5003), + [anon_sym_bitor] = ACTIONS(5003), + [anon_sym_xor] = ACTIONS(5003), + [anon_sym_bitand] = ACTIONS(5003), + [anon_sym_not_eq] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5005), + [anon_sym_PLUS_PLUS] = ACTIONS(5005), + [anon_sym_DOT] = ACTIONS(5003), + [anon_sym_DOT_STAR] = ACTIONS(5005), + [anon_sym_DASH_GT] = ACTIONS(5005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5003), + [anon_sym_decltype] = ACTIONS(5003), + [anon_sym_virtual] = ACTIONS(5003), + [anon_sym_alignas] = ACTIONS(5003), + [anon_sym_template] = ACTIONS(5003), + [anon_sym_operator] = ACTIONS(5003), + }, + [1926] = { + [sym_template_argument_list] = STATE(1935), + [sym_identifier] = ACTIONS(5007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5009), + [anon_sym_COMMA] = ACTIONS(5009), + [anon_sym_RPAREN] = ACTIONS(5009), + [anon_sym_LPAREN2] = ACTIONS(5009), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5009), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5014), [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5021), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym___extension__] = ACTIONS(5019), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5007), + [anon_sym_extern] = ACTIONS(5007), + [anon_sym___attribute__] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5012), + [anon_sym___declspec] = ACTIONS(5007), + [anon_sym___based] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5012), [anon_sym_LBRACK] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5019), - [anon_sym_volatile] = ACTIONS(5019), - [anon_sym_restrict] = ACTIONS(5019), - [anon_sym___restrict__] = ACTIONS(5019), - [anon_sym__Atomic] = ACTIONS(5019), - [anon_sym__Noreturn] = ACTIONS(5019), - [anon_sym_noreturn] = ACTIONS(5019), - [anon_sym_mutable] = ACTIONS(5019), - [anon_sym_constinit] = ACTIONS(5019), - [anon_sym_consteval] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_LT_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_GT_EQ] = ACTIONS(5014), - [anon_sym_AMP_EQ] = ACTIONS(5014), - [anon_sym_CARET_EQ] = ACTIONS(5014), - [anon_sym_PIPE_EQ] = ACTIONS(5014), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_static] = ACTIONS(5007), + [anon_sym_register] = ACTIONS(5007), + [anon_sym_inline] = ACTIONS(5007), + [anon_sym___inline] = ACTIONS(5007), + [anon_sym___inline__] = ACTIONS(5007), + [anon_sym___forceinline] = ACTIONS(5007), + [anon_sym_thread_local] = ACTIONS(5007), + [anon_sym___thread] = ACTIONS(5007), + [anon_sym_const] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym___restrict__] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym__Noreturn] = ACTIONS(5007), + [anon_sym_noreturn] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_constinit] = ACTIONS(5007), + [anon_sym_consteval] = ACTIONS(5007), + [anon_sym_QMARK] = ACTIONS(5019), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_LT_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_GT_EQ] = ACTIONS(5019), + [anon_sym_AMP_EQ] = ACTIONS(5019), + [anon_sym_CARET_EQ] = ACTIONS(5019), + [anon_sym_PIPE_EQ] = ACTIONS(5019), [anon_sym_and_eq] = ACTIONS(5014), [anon_sym_or_eq] = ACTIONS(5014), [anon_sym_xor_eq] = ACTIONS(5014), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_and] = ACTIONS(5021), + [anon_sym_LT_EQ_GT] = ACTIONS(5019), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), [anon_sym_bitor] = ACTIONS(5014), - [anon_sym_xor] = ACTIONS(5021), + [anon_sym_xor] = ACTIONS(5014), [anon_sym_bitand] = ACTIONS(5014), [anon_sym_not_eq] = ACTIONS(5014), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5021), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5014), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5019), - [anon_sym_decltype] = ACTIONS(5019), - [anon_sym_DASH_GT_STAR] = ACTIONS(5014), + [sym_auto] = ACTIONS(5007), + [anon_sym_decltype] = ACTIONS(5007), + [anon_sym_virtual] = ACTIONS(5007), + [anon_sym_alignas] = ACTIONS(5007), + [anon_sym_template] = ACTIONS(5007), + [anon_sym_operator] = ACTIONS(5007), + [anon_sym_DASH_GT_STAR] = ACTIONS(5019), }, - [2107] = { - [sym_identifier] = ACTIONS(5471), - [aux_sym_preproc_def_token1] = ACTIONS(5471), - [aux_sym_preproc_if_token1] = ACTIONS(5471), - [aux_sym_preproc_if_token2] = ACTIONS(5471), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5471), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5471), - [aux_sym_preproc_else_token1] = ACTIONS(5471), - [aux_sym_preproc_elif_token1] = ACTIONS(5471), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5471), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5471), - [sym_preproc_directive] = ACTIONS(5471), - [anon_sym_LPAREN2] = ACTIONS(5473), - [anon_sym_TILDE] = ACTIONS(5473), - [anon_sym_STAR] = ACTIONS(5473), - [anon_sym_AMP_AMP] = ACTIONS(5473), - [anon_sym_AMP] = ACTIONS(5471), - [anon_sym___extension__] = ACTIONS(5471), - [anon_sym_typedef] = ACTIONS(5471), - [anon_sym_extern] = ACTIONS(5471), - [anon_sym___attribute__] = ACTIONS(5471), - [anon_sym_COLON_COLON] = ACTIONS(5473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5473), - [anon_sym___declspec] = ACTIONS(5471), - [anon_sym___based] = ACTIONS(5471), - [anon_sym_signed] = ACTIONS(5471), - [anon_sym_unsigned] = ACTIONS(5471), - [anon_sym_long] = ACTIONS(5471), - [anon_sym_short] = ACTIONS(5471), - [anon_sym_LBRACK] = ACTIONS(5471), - [anon_sym_static] = ACTIONS(5471), - [anon_sym_register] = ACTIONS(5471), - [anon_sym_inline] = ACTIONS(5471), - [anon_sym___inline] = ACTIONS(5471), - [anon_sym___inline__] = ACTIONS(5471), - [anon_sym___forceinline] = ACTIONS(5471), - [anon_sym_thread_local] = ACTIONS(5471), - [anon_sym___thread] = ACTIONS(5471), - [anon_sym_const] = ACTIONS(5471), - [anon_sym_constexpr] = ACTIONS(5471), - [anon_sym_volatile] = ACTIONS(5471), - [anon_sym_restrict] = ACTIONS(5471), - [anon_sym___restrict__] = ACTIONS(5471), - [anon_sym__Atomic] = ACTIONS(5471), - [anon_sym__Noreturn] = ACTIONS(5471), - [anon_sym_noreturn] = ACTIONS(5471), - [anon_sym_mutable] = ACTIONS(5471), - [anon_sym_constinit] = ACTIONS(5471), - [anon_sym_consteval] = ACTIONS(5471), - [sym_primitive_type] = ACTIONS(5471), - [anon_sym_enum] = ACTIONS(5471), - [anon_sym_class] = ACTIONS(5471), - [anon_sym_struct] = ACTIONS(5471), - [anon_sym_union] = ACTIONS(5471), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5471), - [anon_sym_decltype] = ACTIONS(5471), - [anon_sym_virtual] = ACTIONS(5471), - [anon_sym_alignas] = ACTIONS(5471), - [anon_sym_explicit] = ACTIONS(5471), - [anon_sym_typename] = ACTIONS(5471), - [anon_sym_template] = ACTIONS(5471), - [anon_sym_operator] = ACTIONS(5471), - [anon_sym_friend] = ACTIONS(5471), - [anon_sym_public] = ACTIONS(5471), - [anon_sym_private] = ACTIONS(5471), - [anon_sym_protected] = ACTIONS(5471), - [anon_sym_using] = ACTIONS(5471), - [anon_sym_static_assert] = ACTIONS(5471), + [1927] = { + [sym_identifier] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_TILDE] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym___extension__] = ACTIONS(5024), + [anon_sym_extern] = ACTIONS(5024), + [anon_sym___attribute__] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(5026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5026), + [anon_sym___declspec] = ACTIONS(5024), + [anon_sym___based] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_static] = ACTIONS(5024), + [anon_sym_register] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym___inline] = ACTIONS(5024), + [anon_sym___inline__] = ACTIONS(5024), + [anon_sym___forceinline] = ACTIONS(5024), + [anon_sym_thread_local] = ACTIONS(5024), + [anon_sym___thread] = ACTIONS(5024), + [anon_sym_const] = ACTIONS(5024), + [anon_sym_constexpr] = ACTIONS(5024), + [anon_sym_volatile] = ACTIONS(5024), + [anon_sym_restrict] = ACTIONS(5024), + [anon_sym___restrict__] = ACTIONS(5024), + [anon_sym__Atomic] = ACTIONS(5024), + [anon_sym__Noreturn] = ACTIONS(5024), + [anon_sym_noreturn] = ACTIONS(5024), + [anon_sym_mutable] = ACTIONS(5024), + [anon_sym_constinit] = ACTIONS(5024), + [anon_sym_consteval] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_LT_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_GT_EQ] = ACTIONS(5026), + [anon_sym_AMP_EQ] = ACTIONS(5026), + [anon_sym_CARET_EQ] = ACTIONS(5026), + [anon_sym_PIPE_EQ] = ACTIONS(5026), + [anon_sym_and_eq] = ACTIONS(5024), + [anon_sym_or_eq] = ACTIONS(5024), + [anon_sym_xor_eq] = ACTIONS(5024), + [anon_sym_LT_EQ_GT] = ACTIONS(5026), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_bitor] = ACTIONS(5024), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_bitand] = ACTIONS(5024), + [anon_sym_not_eq] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_DOT_STAR] = ACTIONS(5026), + [anon_sym_DASH_GT] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5024), + [anon_sym_decltype] = ACTIONS(5024), + [anon_sym_virtual] = ACTIONS(5024), + [anon_sym_alignas] = ACTIONS(5024), + [anon_sym_template] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), }, - [2108] = { - [sym_identifier] = ACTIONS(5475), - [aux_sym_preproc_def_token1] = ACTIONS(5475), - [aux_sym_preproc_if_token1] = ACTIONS(5475), - [aux_sym_preproc_if_token2] = ACTIONS(5475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5475), - [aux_sym_preproc_else_token1] = ACTIONS(5475), - [aux_sym_preproc_elif_token1] = ACTIONS(5475), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5475), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5475), - [sym_preproc_directive] = ACTIONS(5475), - [anon_sym_LPAREN2] = ACTIONS(5477), - [anon_sym_TILDE] = ACTIONS(5477), - [anon_sym_STAR] = ACTIONS(5477), - [anon_sym_AMP_AMP] = ACTIONS(5477), - [anon_sym_AMP] = ACTIONS(5475), - [anon_sym___extension__] = ACTIONS(5475), - [anon_sym_typedef] = ACTIONS(5475), - [anon_sym_extern] = ACTIONS(5475), - [anon_sym___attribute__] = ACTIONS(5475), - [anon_sym_COLON_COLON] = ACTIONS(5477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5477), - [anon_sym___declspec] = ACTIONS(5475), - [anon_sym___based] = ACTIONS(5475), - [anon_sym_signed] = ACTIONS(5475), - [anon_sym_unsigned] = ACTIONS(5475), - [anon_sym_long] = ACTIONS(5475), - [anon_sym_short] = ACTIONS(5475), - [anon_sym_LBRACK] = ACTIONS(5475), - [anon_sym_static] = ACTIONS(5475), - [anon_sym_register] = ACTIONS(5475), - [anon_sym_inline] = ACTIONS(5475), - [anon_sym___inline] = ACTIONS(5475), - [anon_sym___inline__] = ACTIONS(5475), - [anon_sym___forceinline] = ACTIONS(5475), - [anon_sym_thread_local] = ACTIONS(5475), - [anon_sym___thread] = ACTIONS(5475), - [anon_sym_const] = ACTIONS(5475), - [anon_sym_constexpr] = ACTIONS(5475), - [anon_sym_volatile] = ACTIONS(5475), - [anon_sym_restrict] = ACTIONS(5475), - [anon_sym___restrict__] = ACTIONS(5475), - [anon_sym__Atomic] = ACTIONS(5475), - [anon_sym__Noreturn] = ACTIONS(5475), - [anon_sym_noreturn] = ACTIONS(5475), - [anon_sym_mutable] = ACTIONS(5475), - [anon_sym_constinit] = ACTIONS(5475), - [anon_sym_consteval] = ACTIONS(5475), - [sym_primitive_type] = ACTIONS(5475), - [anon_sym_enum] = ACTIONS(5475), - [anon_sym_class] = ACTIONS(5475), - [anon_sym_struct] = ACTIONS(5475), - [anon_sym_union] = ACTIONS(5475), + [1928] = { + [sym_identifier] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5030), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_TILDE] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5030), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym_extern] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym_COLON_COLON] = ACTIONS(5030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5030), + [anon_sym___declspec] = ACTIONS(5028), + [anon_sym___based] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_static] = ACTIONS(5028), + [anon_sym_register] = ACTIONS(5028), + [anon_sym_inline] = ACTIONS(5028), + [anon_sym___inline] = ACTIONS(5028), + [anon_sym___inline__] = ACTIONS(5028), + [anon_sym___forceinline] = ACTIONS(5028), + [anon_sym_thread_local] = ACTIONS(5028), + [anon_sym___thread] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_restrict] = ACTIONS(5028), + [anon_sym___restrict__] = ACTIONS(5028), + [anon_sym__Atomic] = ACTIONS(5028), + [anon_sym__Noreturn] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_mutable] = ACTIONS(5028), + [anon_sym_constinit] = ACTIONS(5028), + [anon_sym_consteval] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_STAR_EQ] = ACTIONS(5030), + [anon_sym_SLASH_EQ] = ACTIONS(5030), + [anon_sym_PERCENT_EQ] = ACTIONS(5030), + [anon_sym_PLUS_EQ] = ACTIONS(5030), + [anon_sym_DASH_EQ] = ACTIONS(5030), + [anon_sym_LT_LT_EQ] = ACTIONS(5030), + [anon_sym_GT_GT_EQ] = ACTIONS(5030), + [anon_sym_AMP_EQ] = ACTIONS(5030), + [anon_sym_CARET_EQ] = ACTIONS(5030), + [anon_sym_PIPE_EQ] = ACTIONS(5030), + [anon_sym_and_eq] = ACTIONS(5028), + [anon_sym_or_eq] = ACTIONS(5028), + [anon_sym_xor_eq] = ACTIONS(5028), + [anon_sym_LT_EQ_GT] = ACTIONS(5030), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_bitor] = ACTIONS(5028), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_bitand] = ACTIONS(5028), + [anon_sym_not_eq] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_DOT_STAR] = ACTIONS(5030), + [anon_sym_DASH_GT] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5028), + [anon_sym_decltype] = ACTIONS(5028), + [anon_sym_virtual] = ACTIONS(5028), + [anon_sym_alignas] = ACTIONS(5028), + [anon_sym_template] = ACTIONS(5028), + [anon_sym_operator] = ACTIONS(5028), + }, + [1929] = { + [sym_template_argument_list] = STATE(1933), + [sym_identifier] = ACTIONS(5007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_LPAREN2] = ACTIONS(5009), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5009), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5032), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5019), + [anon_sym___extension__] = ACTIONS(5007), + [anon_sym_extern] = ACTIONS(5007), + [anon_sym___attribute__] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5012), + [anon_sym___declspec] = ACTIONS(5007), + [anon_sym___based] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5007), + [anon_sym_register] = ACTIONS(5007), + [anon_sym_inline] = ACTIONS(5007), + [anon_sym___inline] = ACTIONS(5007), + [anon_sym___inline__] = ACTIONS(5007), + [anon_sym___forceinline] = ACTIONS(5007), + [anon_sym_thread_local] = ACTIONS(5007), + [anon_sym___thread] = ACTIONS(5007), + [anon_sym_const] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym___restrict__] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym__Noreturn] = ACTIONS(5007), + [anon_sym_noreturn] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_constinit] = ACTIONS(5007), + [anon_sym_consteval] = ACTIONS(5007), + [anon_sym_QMARK] = ACTIONS(5019), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_LT_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_GT_EQ] = ACTIONS(5019), + [anon_sym_AMP_EQ] = ACTIONS(5019), + [anon_sym_CARET_EQ] = ACTIONS(5019), + [anon_sym_PIPE_EQ] = ACTIONS(5019), + [anon_sym_and_eq] = ACTIONS(5014), + [anon_sym_or_eq] = ACTIONS(5014), + [anon_sym_xor_eq] = ACTIONS(5014), + [anon_sym_LT_EQ_GT] = ACTIONS(5019), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5014), + [anon_sym_not_eq] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5019), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5475), - [anon_sym_decltype] = ACTIONS(5475), - [anon_sym_virtual] = ACTIONS(5475), - [anon_sym_alignas] = ACTIONS(5475), - [anon_sym_explicit] = ACTIONS(5475), - [anon_sym_typename] = ACTIONS(5475), - [anon_sym_template] = ACTIONS(5475), - [anon_sym_operator] = ACTIONS(5475), - [anon_sym_friend] = ACTIONS(5475), - [anon_sym_public] = ACTIONS(5475), - [anon_sym_private] = ACTIONS(5475), - [anon_sym_protected] = ACTIONS(5475), - [anon_sym_using] = ACTIONS(5475), - [anon_sym_static_assert] = ACTIONS(5475), + [sym_auto] = ACTIONS(5007), + [anon_sym_decltype] = ACTIONS(5007), + [anon_sym_virtual] = ACTIONS(5007), + [anon_sym_alignas] = ACTIONS(5007), + [anon_sym_template] = ACTIONS(5007), + [anon_sym_operator] = ACTIONS(5007), }, - [2109] = { - [sym_identifier] = ACTIONS(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [aux_sym_preproc_if_token2] = ACTIONS(4994), - [aux_sym_preproc_else_token1] = ACTIONS(4994), - [aux_sym_preproc_elif_token1] = ACTIONS(4992), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4994), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4994), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4992), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4992), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4992), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4992), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym___attribute__] = ACTIONS(4992), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_EQ] = ACTIONS(4992), - [anon_sym_COLON] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4994), - [anon_sym_STAR_EQ] = ACTIONS(4994), - [anon_sym_SLASH_EQ] = ACTIONS(4994), - [anon_sym_PERCENT_EQ] = ACTIONS(4994), - [anon_sym_PLUS_EQ] = ACTIONS(4994), - [anon_sym_DASH_EQ] = ACTIONS(4994), - [anon_sym_LT_LT_EQ] = ACTIONS(4994), - [anon_sym_GT_GT_EQ] = ACTIONS(4994), - [anon_sym_AMP_EQ] = ACTIONS(4994), - [anon_sym_CARET_EQ] = ACTIONS(4994), - [anon_sym_PIPE_EQ] = ACTIONS(4994), - [anon_sym_and_eq] = ACTIONS(4992), - [anon_sym_or_eq] = ACTIONS(4992), - [anon_sym_xor_eq] = ACTIONS(4992), - [anon_sym_LT_EQ_GT] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_and] = ACTIONS(4992), - [anon_sym_bitor] = ACTIONS(4992), - [anon_sym_xor] = ACTIONS(4992), - [anon_sym_bitand] = ACTIONS(4992), - [anon_sym_not_eq] = ACTIONS(4992), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_DOT_STAR] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4992), - [anon_sym_decltype] = ACTIONS(4992), - [anon_sym_final] = ACTIONS(4992), - [anon_sym_override] = ACTIONS(4992), + [1930] = { + [sym_identifier] = ACTIONS(5035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_RPAREN] = ACTIONS(5037), + [anon_sym_LPAREN2] = ACTIONS(5037), + [anon_sym_TILDE] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5035), + [anon_sym_CARET] = ACTIONS(5035), + [anon_sym_AMP] = ACTIONS(5035), + [anon_sym_EQ_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5035), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_LT_LT] = ACTIONS(5035), + [anon_sym_GT_GT] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym___extension__] = ACTIONS(5035), + [anon_sym_extern] = ACTIONS(5035), + [anon_sym___attribute__] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5037), + [anon_sym___declspec] = ACTIONS(5035), + [anon_sym___based] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_static] = ACTIONS(5035), + [anon_sym_register] = ACTIONS(5035), + [anon_sym_inline] = ACTIONS(5035), + [anon_sym___inline] = ACTIONS(5035), + [anon_sym___inline__] = ACTIONS(5035), + [anon_sym___forceinline] = ACTIONS(5035), + [anon_sym_thread_local] = ACTIONS(5035), + [anon_sym___thread] = ACTIONS(5035), + [anon_sym_const] = ACTIONS(5035), + [anon_sym_constexpr] = ACTIONS(5035), + [anon_sym_volatile] = ACTIONS(5035), + [anon_sym_restrict] = ACTIONS(5035), + [anon_sym___restrict__] = ACTIONS(5035), + [anon_sym__Atomic] = ACTIONS(5035), + [anon_sym__Noreturn] = ACTIONS(5035), + [anon_sym_noreturn] = ACTIONS(5035), + [anon_sym_mutable] = ACTIONS(5035), + [anon_sym_constinit] = ACTIONS(5035), + [anon_sym_consteval] = ACTIONS(5035), + [anon_sym_QMARK] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_LT_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_GT_EQ] = ACTIONS(5037), + [anon_sym_AMP_EQ] = ACTIONS(5037), + [anon_sym_CARET_EQ] = ACTIONS(5037), + [anon_sym_PIPE_EQ] = ACTIONS(5037), + [anon_sym_and_eq] = ACTIONS(5035), + [anon_sym_or_eq] = ACTIONS(5035), + [anon_sym_xor_eq] = ACTIONS(5035), + [anon_sym_LT_EQ_GT] = ACTIONS(5037), + [anon_sym_or] = ACTIONS(5035), + [anon_sym_and] = ACTIONS(5035), + [anon_sym_bitor] = ACTIONS(5035), + [anon_sym_xor] = ACTIONS(5035), + [anon_sym_bitand] = ACTIONS(5035), + [anon_sym_not_eq] = ACTIONS(5035), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_DOT_STAR] = ACTIONS(5037), + [anon_sym_DASH_GT] = ACTIONS(5037), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5035), + [anon_sym_decltype] = ACTIONS(5035), + [anon_sym_virtual] = ACTIONS(5035), + [anon_sym_alignas] = ACTIONS(5035), + [anon_sym_template] = ACTIONS(5035), + [anon_sym_operator] = ACTIONS(5035), }, - [2110] = { - [sym_identifier] = ACTIONS(5479), - [aux_sym_preproc_def_token1] = ACTIONS(5479), - [aux_sym_preproc_if_token1] = ACTIONS(5479), - [aux_sym_preproc_if_token2] = ACTIONS(5479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5479), - [aux_sym_preproc_else_token1] = ACTIONS(5479), - [aux_sym_preproc_elif_token1] = ACTIONS(5479), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5479), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5479), - [sym_preproc_directive] = ACTIONS(5479), - [anon_sym_LPAREN2] = ACTIONS(5481), - [anon_sym_TILDE] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5481), - [anon_sym_AMP_AMP] = ACTIONS(5481), - [anon_sym_AMP] = ACTIONS(5479), - [anon_sym___extension__] = ACTIONS(5479), - [anon_sym_typedef] = ACTIONS(5479), - [anon_sym_extern] = ACTIONS(5479), - [anon_sym___attribute__] = ACTIONS(5479), - [anon_sym_COLON_COLON] = ACTIONS(5481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5481), - [anon_sym___declspec] = ACTIONS(5479), - [anon_sym___based] = ACTIONS(5479), - [anon_sym_signed] = ACTIONS(5479), - [anon_sym_unsigned] = ACTIONS(5479), - [anon_sym_long] = ACTIONS(5479), - [anon_sym_short] = ACTIONS(5479), - [anon_sym_LBRACK] = ACTIONS(5479), - [anon_sym_static] = ACTIONS(5479), - [anon_sym_register] = ACTIONS(5479), - [anon_sym_inline] = ACTIONS(5479), - [anon_sym___inline] = ACTIONS(5479), - [anon_sym___inline__] = ACTIONS(5479), - [anon_sym___forceinline] = ACTIONS(5479), - [anon_sym_thread_local] = ACTIONS(5479), - [anon_sym___thread] = ACTIONS(5479), - [anon_sym_const] = ACTIONS(5479), - [anon_sym_constexpr] = ACTIONS(5479), - [anon_sym_volatile] = ACTIONS(5479), - [anon_sym_restrict] = ACTIONS(5479), - [anon_sym___restrict__] = ACTIONS(5479), - [anon_sym__Atomic] = ACTIONS(5479), - [anon_sym__Noreturn] = ACTIONS(5479), - [anon_sym_noreturn] = ACTIONS(5479), - [anon_sym_mutable] = ACTIONS(5479), - [anon_sym_constinit] = ACTIONS(5479), - [anon_sym_consteval] = ACTIONS(5479), - [sym_primitive_type] = ACTIONS(5479), - [anon_sym_enum] = ACTIONS(5479), - [anon_sym_class] = ACTIONS(5479), - [anon_sym_struct] = ACTIONS(5479), - [anon_sym_union] = ACTIONS(5479), + [1931] = { + [sym_template_argument_list] = STATE(1941), + [sym_identifier] = ACTIONS(5007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_LPAREN2] = ACTIONS(5009), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5009), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5032), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym___extension__] = ACTIONS(5007), + [anon_sym_extern] = ACTIONS(5007), + [anon_sym___attribute__] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5009), + [anon_sym___declspec] = ACTIONS(5007), + [anon_sym___based] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5007), + [anon_sym_register] = ACTIONS(5007), + [anon_sym_inline] = ACTIONS(5007), + [anon_sym___inline] = ACTIONS(5007), + [anon_sym___inline__] = ACTIONS(5007), + [anon_sym___forceinline] = ACTIONS(5007), + [anon_sym_thread_local] = ACTIONS(5007), + [anon_sym___thread] = ACTIONS(5007), + [anon_sym_const] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym___restrict__] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym__Noreturn] = ACTIONS(5007), + [anon_sym_noreturn] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_constinit] = ACTIONS(5007), + [anon_sym_consteval] = ACTIONS(5007), + [anon_sym_QMARK] = ACTIONS(5019), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_LT_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_GT_EQ] = ACTIONS(5019), + [anon_sym_AMP_EQ] = ACTIONS(5019), + [anon_sym_CARET_EQ] = ACTIONS(5019), + [anon_sym_PIPE_EQ] = ACTIONS(5019), + [anon_sym_and_eq] = ACTIONS(5014), + [anon_sym_or_eq] = ACTIONS(5014), + [anon_sym_xor_eq] = ACTIONS(5014), + [anon_sym_LT_EQ_GT] = ACTIONS(5019), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5014), + [anon_sym_not_eq] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5019), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5479), - [anon_sym_decltype] = ACTIONS(5479), - [anon_sym_virtual] = ACTIONS(5479), - [anon_sym_alignas] = ACTIONS(5479), - [anon_sym_explicit] = ACTIONS(5479), - [anon_sym_typename] = ACTIONS(5479), - [anon_sym_template] = ACTIONS(5479), - [anon_sym_operator] = ACTIONS(5479), - [anon_sym_friend] = ACTIONS(5479), - [anon_sym_public] = ACTIONS(5479), - [anon_sym_private] = ACTIONS(5479), - [anon_sym_protected] = ACTIONS(5479), - [anon_sym_using] = ACTIONS(5479), - [anon_sym_static_assert] = ACTIONS(5479), + [sym_auto] = ACTIONS(5007), + [anon_sym_decltype] = ACTIONS(5007), + [anon_sym_virtual] = ACTIONS(5007), + [anon_sym_alignas] = ACTIONS(5007), + [anon_sym_template] = ACTIONS(5007), + [anon_sym_operator] = ACTIONS(5007), }, - [2111] = { - [sym_identifier] = ACTIONS(5479), - [aux_sym_preproc_def_token1] = ACTIONS(5479), - [aux_sym_preproc_if_token1] = ACTIONS(5479), - [aux_sym_preproc_if_token2] = ACTIONS(5479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5479), - [aux_sym_preproc_else_token1] = ACTIONS(5479), - [aux_sym_preproc_elif_token1] = ACTIONS(5479), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5479), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5479), - [sym_preproc_directive] = ACTIONS(5479), - [anon_sym_LPAREN2] = ACTIONS(5481), - [anon_sym_TILDE] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5481), - [anon_sym_AMP_AMP] = ACTIONS(5481), - [anon_sym_AMP] = ACTIONS(5479), - [anon_sym___extension__] = ACTIONS(5479), - [anon_sym_typedef] = ACTIONS(5479), - [anon_sym_extern] = ACTIONS(5479), - [anon_sym___attribute__] = ACTIONS(5479), - [anon_sym_COLON_COLON] = ACTIONS(5481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5481), - [anon_sym___declspec] = ACTIONS(5479), - [anon_sym___based] = ACTIONS(5479), - [anon_sym_signed] = ACTIONS(5479), - [anon_sym_unsigned] = ACTIONS(5479), - [anon_sym_long] = ACTIONS(5479), - [anon_sym_short] = ACTIONS(5479), - [anon_sym_LBRACK] = ACTIONS(5479), - [anon_sym_static] = ACTIONS(5479), - [anon_sym_register] = ACTIONS(5479), - [anon_sym_inline] = ACTIONS(5479), - [anon_sym___inline] = ACTIONS(5479), - [anon_sym___inline__] = ACTIONS(5479), - [anon_sym___forceinline] = ACTIONS(5479), - [anon_sym_thread_local] = ACTIONS(5479), - [anon_sym___thread] = ACTIONS(5479), - [anon_sym_const] = ACTIONS(5479), - [anon_sym_constexpr] = ACTIONS(5479), - [anon_sym_volatile] = ACTIONS(5479), - [anon_sym_restrict] = ACTIONS(5479), - [anon_sym___restrict__] = ACTIONS(5479), - [anon_sym__Atomic] = ACTIONS(5479), - [anon_sym__Noreturn] = ACTIONS(5479), - [anon_sym_noreturn] = ACTIONS(5479), - [anon_sym_mutable] = ACTIONS(5479), - [anon_sym_constinit] = ACTIONS(5479), - [anon_sym_consteval] = ACTIONS(5479), - [sym_primitive_type] = ACTIONS(5479), - [anon_sym_enum] = ACTIONS(5479), - [anon_sym_class] = ACTIONS(5479), - [anon_sym_struct] = ACTIONS(5479), - [anon_sym_union] = ACTIONS(5479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5479), - [anon_sym_decltype] = ACTIONS(5479), - [anon_sym_virtual] = ACTIONS(5479), - [anon_sym_alignas] = ACTIONS(5479), - [anon_sym_explicit] = ACTIONS(5479), - [anon_sym_typename] = ACTIONS(5479), - [anon_sym_template] = ACTIONS(5479), - [anon_sym_operator] = ACTIONS(5479), - [anon_sym_friend] = ACTIONS(5479), - [anon_sym_public] = ACTIONS(5479), - [anon_sym_private] = ACTIONS(5479), - [anon_sym_protected] = ACTIONS(5479), - [anon_sym_using] = ACTIONS(5479), - [anon_sym_static_assert] = ACTIONS(5479), + [1932] = { + [sym_identifier] = ACTIONS(4995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LPAREN2] = ACTIONS(4997), + [anon_sym_TILDE] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_PERCENT] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4997), + [anon_sym_AMP_AMP] = ACTIONS(4997), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4997), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_LT_LT] = ACTIONS(4995), + [anon_sym_GT_GT] = ACTIONS(4995), + [anon_sym___extension__] = ACTIONS(4995), + [anon_sym_extern] = ACTIONS(4995), + [anon_sym___attribute__] = ACTIONS(4995), + [anon_sym_COLON_COLON] = ACTIONS(4997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4997), + [anon_sym___declspec] = ACTIONS(4995), + [anon_sym___based] = ACTIONS(4995), + [anon_sym_LBRACE] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_EQ] = ACTIONS(4995), + [anon_sym_static] = ACTIONS(4995), + [anon_sym_register] = ACTIONS(4995), + [anon_sym_inline] = ACTIONS(4995), + [anon_sym___inline] = ACTIONS(4995), + [anon_sym___inline__] = ACTIONS(4995), + [anon_sym___forceinline] = ACTIONS(4995), + [anon_sym_thread_local] = ACTIONS(4995), + [anon_sym___thread] = ACTIONS(4995), + [anon_sym_const] = ACTIONS(4995), + [anon_sym_constexpr] = ACTIONS(4995), + [anon_sym_volatile] = ACTIONS(4995), + [anon_sym_restrict] = ACTIONS(4995), + [anon_sym___restrict__] = ACTIONS(4995), + [anon_sym__Atomic] = ACTIONS(4995), + [anon_sym__Noreturn] = ACTIONS(4995), + [anon_sym_noreturn] = ACTIONS(4995), + [anon_sym_mutable] = ACTIONS(4995), + [anon_sym_constinit] = ACTIONS(4995), + [anon_sym_consteval] = ACTIONS(4995), + [anon_sym_QMARK] = ACTIONS(4997), + [anon_sym_STAR_EQ] = ACTIONS(4997), + [anon_sym_SLASH_EQ] = ACTIONS(4997), + [anon_sym_PERCENT_EQ] = ACTIONS(4997), + [anon_sym_PLUS_EQ] = ACTIONS(4997), + [anon_sym_DASH_EQ] = ACTIONS(4997), + [anon_sym_LT_LT_EQ] = ACTIONS(4997), + [anon_sym_GT_GT_EQ] = ACTIONS(4997), + [anon_sym_AMP_EQ] = ACTIONS(4997), + [anon_sym_CARET_EQ] = ACTIONS(4997), + [anon_sym_PIPE_EQ] = ACTIONS(4997), + [anon_sym_and_eq] = ACTIONS(4995), + [anon_sym_or_eq] = ACTIONS(4995), + [anon_sym_xor_eq] = ACTIONS(4995), + [anon_sym_LT_EQ_GT] = ACTIONS(4997), + [anon_sym_or] = ACTIONS(4995), + [anon_sym_and] = ACTIONS(4995), + [anon_sym_bitor] = ACTIONS(4995), + [anon_sym_xor] = ACTIONS(4995), + [anon_sym_bitand] = ACTIONS(4995), + [anon_sym_not_eq] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4997), + [anon_sym_DOT] = ACTIONS(4995), + [anon_sym_DOT_STAR] = ACTIONS(4997), + [anon_sym_DASH_GT] = ACTIONS(4995), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4995), + [anon_sym_decltype] = ACTIONS(4995), + [anon_sym_virtual] = ACTIONS(4995), + [anon_sym_alignas] = ACTIONS(4995), + [anon_sym_template] = ACTIONS(4995), + [anon_sym_operator] = ACTIONS(4995), + [anon_sym_DASH_GT_STAR] = ACTIONS(4997), }, - [2112] = { - [sym_identifier] = ACTIONS(5369), - [aux_sym_preproc_def_token1] = ACTIONS(5369), - [aux_sym_preproc_if_token1] = ACTIONS(5369), - [aux_sym_preproc_if_token2] = ACTIONS(5369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5369), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5369), - [aux_sym_preproc_else_token1] = ACTIONS(5369), - [aux_sym_preproc_elif_token1] = ACTIONS(5369), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5369), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5369), - [sym_preproc_directive] = ACTIONS(5369), - [anon_sym_LPAREN2] = ACTIONS(5371), - [anon_sym_TILDE] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_AMP_AMP] = ACTIONS(5371), - [anon_sym_AMP] = ACTIONS(5369), - [anon_sym___extension__] = ACTIONS(5369), - [anon_sym_typedef] = ACTIONS(5369), - [anon_sym_extern] = ACTIONS(5369), - [anon_sym___attribute__] = ACTIONS(5369), - [anon_sym_COLON_COLON] = ACTIONS(5371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5371), - [anon_sym___declspec] = ACTIONS(5369), - [anon_sym___based] = ACTIONS(5369), - [anon_sym_signed] = ACTIONS(5369), - [anon_sym_unsigned] = ACTIONS(5369), - [anon_sym_long] = ACTIONS(5369), - [anon_sym_short] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_static] = ACTIONS(5369), - [anon_sym_register] = ACTIONS(5369), - [anon_sym_inline] = ACTIONS(5369), - [anon_sym___inline] = ACTIONS(5369), - [anon_sym___inline__] = ACTIONS(5369), - [anon_sym___forceinline] = ACTIONS(5369), - [anon_sym_thread_local] = ACTIONS(5369), - [anon_sym___thread] = ACTIONS(5369), - [anon_sym_const] = ACTIONS(5369), - [anon_sym_constexpr] = ACTIONS(5369), - [anon_sym_volatile] = ACTIONS(5369), - [anon_sym_restrict] = ACTIONS(5369), - [anon_sym___restrict__] = ACTIONS(5369), - [anon_sym__Atomic] = ACTIONS(5369), - [anon_sym__Noreturn] = ACTIONS(5369), - [anon_sym_noreturn] = ACTIONS(5369), - [anon_sym_mutable] = ACTIONS(5369), - [anon_sym_constinit] = ACTIONS(5369), - [anon_sym_consteval] = ACTIONS(5369), - [sym_primitive_type] = ACTIONS(5369), - [anon_sym_enum] = ACTIONS(5369), - [anon_sym_class] = ACTIONS(5369), - [anon_sym_struct] = ACTIONS(5369), - [anon_sym_union] = ACTIONS(5369), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5369), - [anon_sym_decltype] = ACTIONS(5369), - [anon_sym_virtual] = ACTIONS(5369), - [anon_sym_alignas] = ACTIONS(5369), - [anon_sym_explicit] = ACTIONS(5369), - [anon_sym_typename] = ACTIONS(5369), - [anon_sym_template] = ACTIONS(5369), - [anon_sym_operator] = ACTIONS(5369), - [anon_sym_friend] = ACTIONS(5369), - [anon_sym_public] = ACTIONS(5369), - [anon_sym_private] = ACTIONS(5369), - [anon_sym_protected] = ACTIONS(5369), - [anon_sym_using] = ACTIONS(5369), - [anon_sym_static_assert] = ACTIONS(5369), + [1933] = { + [sym_identifier] = ACTIONS(5039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_RPAREN] = ACTIONS(5041), + [anon_sym_LPAREN2] = ACTIONS(5043), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym___extension__] = ACTIONS(5039), + [anon_sym_extern] = ACTIONS(5039), + [anon_sym___attribute__] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5046), + [anon_sym___declspec] = ACTIONS(5039), + [anon_sym___based] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_static] = ACTIONS(5039), + [anon_sym_register] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym___inline] = ACTIONS(5039), + [anon_sym___inline__] = ACTIONS(5039), + [anon_sym___forceinline] = ACTIONS(5039), + [anon_sym_thread_local] = ACTIONS(5039), + [anon_sym___thread] = ACTIONS(5039), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5039), + [anon_sym_volatile] = ACTIONS(5039), + [anon_sym_restrict] = ACTIONS(5039), + [anon_sym___restrict__] = ACTIONS(5039), + [anon_sym__Atomic] = ACTIONS(5039), + [anon_sym__Noreturn] = ACTIONS(5039), + [anon_sym_noreturn] = ACTIONS(5039), + [anon_sym_mutable] = ACTIONS(5039), + [anon_sym_constinit] = ACTIONS(5039), + [anon_sym_consteval] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_LT_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_GT_EQ] = ACTIONS(5041), + [anon_sym_AMP_EQ] = ACTIONS(5041), + [anon_sym_CARET_EQ] = ACTIONS(5041), + [anon_sym_PIPE_EQ] = ACTIONS(5041), + [anon_sym_and_eq] = ACTIONS(5048), + [anon_sym_or_eq] = ACTIONS(5048), + [anon_sym_xor_eq] = ACTIONS(5048), + [anon_sym_LT_EQ_GT] = ACTIONS(5041), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_bitor] = ACTIONS(5048), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_bitand] = ACTIONS(5048), + [anon_sym_not_eq] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_DOT_STAR] = ACTIONS(5041), + [anon_sym_DASH_GT] = ACTIONS(5041), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5039), + [anon_sym_decltype] = ACTIONS(5039), + [anon_sym_virtual] = ACTIONS(5039), + [anon_sym_alignas] = ACTIONS(5039), + [anon_sym_template] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), }, - [2113] = { - [sym_identifier] = ACTIONS(5483), - [aux_sym_preproc_def_token1] = ACTIONS(5483), - [aux_sym_preproc_if_token1] = ACTIONS(5483), - [aux_sym_preproc_if_token2] = ACTIONS(5483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5483), - [aux_sym_preproc_else_token1] = ACTIONS(5483), - [aux_sym_preproc_elif_token1] = ACTIONS(5483), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5483), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5483), - [sym_preproc_directive] = ACTIONS(5483), - [anon_sym_LPAREN2] = ACTIONS(5485), - [anon_sym_TILDE] = ACTIONS(5485), - [anon_sym_STAR] = ACTIONS(5485), - [anon_sym_AMP_AMP] = ACTIONS(5485), - [anon_sym_AMP] = ACTIONS(5483), - [anon_sym___extension__] = ACTIONS(5483), - [anon_sym_typedef] = ACTIONS(5483), - [anon_sym_extern] = ACTIONS(5483), - [anon_sym___attribute__] = ACTIONS(5483), - [anon_sym_COLON_COLON] = ACTIONS(5485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5485), - [anon_sym___declspec] = ACTIONS(5483), - [anon_sym___based] = ACTIONS(5483), - [anon_sym_signed] = ACTIONS(5483), - [anon_sym_unsigned] = ACTIONS(5483), - [anon_sym_long] = ACTIONS(5483), - [anon_sym_short] = ACTIONS(5483), - [anon_sym_LBRACK] = ACTIONS(5483), - [anon_sym_static] = ACTIONS(5483), - [anon_sym_register] = ACTIONS(5483), - [anon_sym_inline] = ACTIONS(5483), - [anon_sym___inline] = ACTIONS(5483), - [anon_sym___inline__] = ACTIONS(5483), - [anon_sym___forceinline] = ACTIONS(5483), - [anon_sym_thread_local] = ACTIONS(5483), - [anon_sym___thread] = ACTIONS(5483), - [anon_sym_const] = ACTIONS(5483), - [anon_sym_constexpr] = ACTIONS(5483), - [anon_sym_volatile] = ACTIONS(5483), - [anon_sym_restrict] = ACTIONS(5483), - [anon_sym___restrict__] = ACTIONS(5483), - [anon_sym__Atomic] = ACTIONS(5483), - [anon_sym__Noreturn] = ACTIONS(5483), - [anon_sym_noreturn] = ACTIONS(5483), - [anon_sym_mutable] = ACTIONS(5483), - [anon_sym_constinit] = ACTIONS(5483), - [anon_sym_consteval] = ACTIONS(5483), - [sym_primitive_type] = ACTIONS(5483), - [anon_sym_enum] = ACTIONS(5483), - [anon_sym_class] = ACTIONS(5483), - [anon_sym_struct] = ACTIONS(5483), - [anon_sym_union] = ACTIONS(5483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5483), - [anon_sym_decltype] = ACTIONS(5483), - [anon_sym_virtual] = ACTIONS(5483), - [anon_sym_alignas] = ACTIONS(5483), - [anon_sym_explicit] = ACTIONS(5483), - [anon_sym_typename] = ACTIONS(5483), - [anon_sym_template] = ACTIONS(5483), - [anon_sym_operator] = ACTIONS(5483), - [anon_sym_friend] = ACTIONS(5483), - [anon_sym_public] = ACTIONS(5483), - [anon_sym_private] = ACTIONS(5483), - [anon_sym_protected] = ACTIONS(5483), - [anon_sym_using] = ACTIONS(5483), - [anon_sym_static_assert] = ACTIONS(5483), - }, - [2114] = { - [sym_identifier] = ACTIONS(5487), - [aux_sym_preproc_def_token1] = ACTIONS(5487), - [aux_sym_preproc_if_token1] = ACTIONS(5487), - [aux_sym_preproc_if_token2] = ACTIONS(5487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5487), - [aux_sym_preproc_else_token1] = ACTIONS(5487), - [aux_sym_preproc_elif_token1] = ACTIONS(5487), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5487), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5487), - [sym_preproc_directive] = ACTIONS(5487), - [anon_sym_LPAREN2] = ACTIONS(5489), - [anon_sym_TILDE] = ACTIONS(5489), - [anon_sym_STAR] = ACTIONS(5489), - [anon_sym_AMP_AMP] = ACTIONS(5489), - [anon_sym_AMP] = ACTIONS(5487), - [anon_sym___extension__] = ACTIONS(5487), - [anon_sym_typedef] = ACTIONS(5487), - [anon_sym_extern] = ACTIONS(5487), - [anon_sym___attribute__] = ACTIONS(5487), - [anon_sym_COLON_COLON] = ACTIONS(5489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5489), - [anon_sym___declspec] = ACTIONS(5487), - [anon_sym___based] = ACTIONS(5487), - [anon_sym_signed] = ACTIONS(5487), - [anon_sym_unsigned] = ACTIONS(5487), - [anon_sym_long] = ACTIONS(5487), - [anon_sym_short] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(5487), - [anon_sym_static] = ACTIONS(5487), - [anon_sym_register] = ACTIONS(5487), - [anon_sym_inline] = ACTIONS(5487), - [anon_sym___inline] = ACTIONS(5487), - [anon_sym___inline__] = ACTIONS(5487), - [anon_sym___forceinline] = ACTIONS(5487), - [anon_sym_thread_local] = ACTIONS(5487), - [anon_sym___thread] = ACTIONS(5487), - [anon_sym_const] = ACTIONS(5487), - [anon_sym_constexpr] = ACTIONS(5487), - [anon_sym_volatile] = ACTIONS(5487), - [anon_sym_restrict] = ACTIONS(5487), - [anon_sym___restrict__] = ACTIONS(5487), - [anon_sym__Atomic] = ACTIONS(5487), - [anon_sym__Noreturn] = ACTIONS(5487), - [anon_sym_noreturn] = ACTIONS(5487), - [anon_sym_mutable] = ACTIONS(5487), - [anon_sym_constinit] = ACTIONS(5487), - [anon_sym_consteval] = ACTIONS(5487), - [sym_primitive_type] = ACTIONS(5487), - [anon_sym_enum] = ACTIONS(5487), - [anon_sym_class] = ACTIONS(5487), - [anon_sym_struct] = ACTIONS(5487), - [anon_sym_union] = ACTIONS(5487), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5487), - [anon_sym_decltype] = ACTIONS(5487), - [anon_sym_virtual] = ACTIONS(5487), - [anon_sym_alignas] = ACTIONS(5487), - [anon_sym_explicit] = ACTIONS(5487), - [anon_sym_typename] = ACTIONS(5487), - [anon_sym_template] = ACTIONS(5487), - [anon_sym_operator] = ACTIONS(5487), - [anon_sym_friend] = ACTIONS(5487), - [anon_sym_public] = ACTIONS(5487), - [anon_sym_private] = ACTIONS(5487), - [anon_sym_protected] = ACTIONS(5487), - [anon_sym_using] = ACTIONS(5487), - [anon_sym_static_assert] = ACTIONS(5487), + [1934] = { + [sym_string_literal] = STATE(2243), + [sym_template_argument_list] = STATE(2039), + [sym_raw_string_literal] = STATE(2243), + [aux_sym_sized_type_specifier_repeat1] = STATE(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LPAREN2] = ACTIONS(4139), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4147), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym___extension__] = ACTIONS(4143), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(5058), + [anon_sym_unsigned] = ACTIONS(5058), + [anon_sym_long] = ACTIONS(5058), + [anon_sym_short] = ACTIONS(5058), + [anon_sym_LBRACK] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4143), + [anon_sym_volatile] = ACTIONS(4143), + [anon_sym_restrict] = ACTIONS(4143), + [anon_sym___restrict__] = ACTIONS(4143), + [anon_sym__Atomic] = ACTIONS(4143), + [anon_sym__Noreturn] = ACTIONS(4143), + [anon_sym_noreturn] = ACTIONS(4143), + [anon_sym_mutable] = ACTIONS(4143), + [anon_sym_constinit] = ACTIONS(4143), + [anon_sym_consteval] = ACTIONS(4143), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4137), + [anon_sym_or_eq] = ACTIONS(4137), + [anon_sym_xor_eq] = ACTIONS(4137), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4145), + [anon_sym_L_DQUOTE] = ACTIONS(5060), + [anon_sym_u_DQUOTE] = ACTIONS(5060), + [anon_sym_U_DQUOTE] = ACTIONS(5060), + [anon_sym_u8_DQUOTE] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4143), + [anon_sym_decltype] = ACTIONS(4143), + [anon_sym_R_DQUOTE] = ACTIONS(5062), + [anon_sym_LR_DQUOTE] = ACTIONS(5062), + [anon_sym_uR_DQUOTE] = ACTIONS(5062), + [anon_sym_UR_DQUOTE] = ACTIONS(5062), + [anon_sym_u8R_DQUOTE] = ACTIONS(5062), + [anon_sym_DASH_GT_STAR] = ACTIONS(4137), }, - [2115] = { - [sym_identifier] = ACTIONS(5491), - [aux_sym_preproc_def_token1] = ACTIONS(5491), - [aux_sym_preproc_if_token1] = ACTIONS(5491), - [aux_sym_preproc_if_token2] = ACTIONS(5491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5491), - [aux_sym_preproc_else_token1] = ACTIONS(5491), - [aux_sym_preproc_elif_token1] = ACTIONS(5491), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5491), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5491), - [sym_preproc_directive] = ACTIONS(5491), - [anon_sym_LPAREN2] = ACTIONS(5493), - [anon_sym_TILDE] = ACTIONS(5493), - [anon_sym_STAR] = ACTIONS(5493), - [anon_sym_AMP_AMP] = ACTIONS(5493), - [anon_sym_AMP] = ACTIONS(5491), - [anon_sym___extension__] = ACTIONS(5491), - [anon_sym_typedef] = ACTIONS(5491), - [anon_sym_extern] = ACTIONS(5491), - [anon_sym___attribute__] = ACTIONS(5491), - [anon_sym_COLON_COLON] = ACTIONS(5493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), - [anon_sym___declspec] = ACTIONS(5491), - [anon_sym___based] = ACTIONS(5491), - [anon_sym_signed] = ACTIONS(5491), - [anon_sym_unsigned] = ACTIONS(5491), - [anon_sym_long] = ACTIONS(5491), - [anon_sym_short] = ACTIONS(5491), - [anon_sym_LBRACK] = ACTIONS(5491), - [anon_sym_static] = ACTIONS(5491), - [anon_sym_register] = ACTIONS(5491), - [anon_sym_inline] = ACTIONS(5491), - [anon_sym___inline] = ACTIONS(5491), - [anon_sym___inline__] = ACTIONS(5491), - [anon_sym___forceinline] = ACTIONS(5491), - [anon_sym_thread_local] = ACTIONS(5491), - [anon_sym___thread] = ACTIONS(5491), - [anon_sym_const] = ACTIONS(5491), - [anon_sym_constexpr] = ACTIONS(5491), - [anon_sym_volatile] = ACTIONS(5491), - [anon_sym_restrict] = ACTIONS(5491), - [anon_sym___restrict__] = ACTIONS(5491), - [anon_sym__Atomic] = ACTIONS(5491), - [anon_sym__Noreturn] = ACTIONS(5491), - [anon_sym_noreturn] = ACTIONS(5491), - [anon_sym_mutable] = ACTIONS(5491), - [anon_sym_constinit] = ACTIONS(5491), - [anon_sym_consteval] = ACTIONS(5491), - [sym_primitive_type] = ACTIONS(5491), - [anon_sym_enum] = ACTIONS(5491), - [anon_sym_class] = ACTIONS(5491), - [anon_sym_struct] = ACTIONS(5491), - [anon_sym_union] = ACTIONS(5491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5491), - [anon_sym_decltype] = ACTIONS(5491), - [anon_sym_virtual] = ACTIONS(5491), - [anon_sym_alignas] = ACTIONS(5491), - [anon_sym_explicit] = ACTIONS(5491), - [anon_sym_typename] = ACTIONS(5491), - [anon_sym_template] = ACTIONS(5491), - [anon_sym_operator] = ACTIONS(5491), - [anon_sym_friend] = ACTIONS(5491), - [anon_sym_public] = ACTIONS(5491), - [anon_sym_private] = ACTIONS(5491), - [anon_sym_protected] = ACTIONS(5491), - [anon_sym_using] = ACTIONS(5491), - [anon_sym_static_assert] = ACTIONS(5491), + [1935] = { + [sym_identifier] = ACTIONS(5039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LPAREN2] = ACTIONS(5043), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5048), + [anon_sym___extension__] = ACTIONS(5039), + [anon_sym_extern] = ACTIONS(5039), + [anon_sym___attribute__] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5046), + [anon_sym___declspec] = ACTIONS(5039), + [anon_sym___based] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_static] = ACTIONS(5039), + [anon_sym_register] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym___inline] = ACTIONS(5039), + [anon_sym___inline__] = ACTIONS(5039), + [anon_sym___forceinline] = ACTIONS(5039), + [anon_sym_thread_local] = ACTIONS(5039), + [anon_sym___thread] = ACTIONS(5039), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5039), + [anon_sym_volatile] = ACTIONS(5039), + [anon_sym_restrict] = ACTIONS(5039), + [anon_sym___restrict__] = ACTIONS(5039), + [anon_sym__Atomic] = ACTIONS(5039), + [anon_sym__Noreturn] = ACTIONS(5039), + [anon_sym_noreturn] = ACTIONS(5039), + [anon_sym_mutable] = ACTIONS(5039), + [anon_sym_constinit] = ACTIONS(5039), + [anon_sym_consteval] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_LT_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_GT_EQ] = ACTIONS(5041), + [anon_sym_AMP_EQ] = ACTIONS(5041), + [anon_sym_CARET_EQ] = ACTIONS(5041), + [anon_sym_PIPE_EQ] = ACTIONS(5041), + [anon_sym_and_eq] = ACTIONS(5048), + [anon_sym_or_eq] = ACTIONS(5048), + [anon_sym_xor_eq] = ACTIONS(5048), + [anon_sym_LT_EQ_GT] = ACTIONS(5041), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_bitor] = ACTIONS(5048), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_bitand] = ACTIONS(5048), + [anon_sym_not_eq] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_DOT_STAR] = ACTIONS(5041), + [anon_sym_DASH_GT] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5039), + [anon_sym_decltype] = ACTIONS(5039), + [anon_sym_virtual] = ACTIONS(5039), + [anon_sym_alignas] = ACTIONS(5039), + [anon_sym_template] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), + [anon_sym_DASH_GT_STAR] = ACTIONS(5041), }, - [2116] = { - [sym_identifier] = ACTIONS(5495), - [aux_sym_preproc_def_token1] = ACTIONS(5495), - [aux_sym_preproc_if_token1] = ACTIONS(5495), - [aux_sym_preproc_if_token2] = ACTIONS(5495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5495), - [aux_sym_preproc_else_token1] = ACTIONS(5495), - [aux_sym_preproc_elif_token1] = ACTIONS(5495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5495), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5495), - [sym_preproc_directive] = ACTIONS(5495), - [anon_sym_LPAREN2] = ACTIONS(5497), - [anon_sym_TILDE] = ACTIONS(5497), - [anon_sym_STAR] = ACTIONS(5497), - [anon_sym_AMP_AMP] = ACTIONS(5497), - [anon_sym_AMP] = ACTIONS(5495), - [anon_sym___extension__] = ACTIONS(5495), - [anon_sym_typedef] = ACTIONS(5495), - [anon_sym_extern] = ACTIONS(5495), - [anon_sym___attribute__] = ACTIONS(5495), - [anon_sym_COLON_COLON] = ACTIONS(5497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5497), - [anon_sym___declspec] = ACTIONS(5495), - [anon_sym___based] = ACTIONS(5495), - [anon_sym_signed] = ACTIONS(5495), - [anon_sym_unsigned] = ACTIONS(5495), - [anon_sym_long] = ACTIONS(5495), - [anon_sym_short] = ACTIONS(5495), - [anon_sym_LBRACK] = ACTIONS(5495), - [anon_sym_static] = ACTIONS(5495), - [anon_sym_register] = ACTIONS(5495), - [anon_sym_inline] = ACTIONS(5495), - [anon_sym___inline] = ACTIONS(5495), - [anon_sym___inline__] = ACTIONS(5495), - [anon_sym___forceinline] = ACTIONS(5495), - [anon_sym_thread_local] = ACTIONS(5495), - [anon_sym___thread] = ACTIONS(5495), - [anon_sym_const] = ACTIONS(5495), - [anon_sym_constexpr] = ACTIONS(5495), - [anon_sym_volatile] = ACTIONS(5495), - [anon_sym_restrict] = ACTIONS(5495), - [anon_sym___restrict__] = ACTIONS(5495), - [anon_sym__Atomic] = ACTIONS(5495), - [anon_sym__Noreturn] = ACTIONS(5495), - [anon_sym_noreturn] = ACTIONS(5495), - [anon_sym_mutable] = ACTIONS(5495), - [anon_sym_constinit] = ACTIONS(5495), - [anon_sym_consteval] = ACTIONS(5495), - [sym_primitive_type] = ACTIONS(5495), - [anon_sym_enum] = ACTIONS(5495), - [anon_sym_class] = ACTIONS(5495), - [anon_sym_struct] = ACTIONS(5495), - [anon_sym_union] = ACTIONS(5495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5495), - [anon_sym_decltype] = ACTIONS(5495), - [anon_sym_virtual] = ACTIONS(5495), - [anon_sym_alignas] = ACTIONS(5495), - [anon_sym_explicit] = ACTIONS(5495), - [anon_sym_typename] = ACTIONS(5495), - [anon_sym_template] = ACTIONS(5495), - [anon_sym_operator] = ACTIONS(5495), - [anon_sym_friend] = ACTIONS(5495), - [anon_sym_public] = ACTIONS(5495), - [anon_sym_private] = ACTIONS(5495), - [anon_sym_protected] = ACTIONS(5495), - [anon_sym_using] = ACTIONS(5495), - [anon_sym_static_assert] = ACTIONS(5495), + [1936] = { + [sym_identifier] = ACTIONS(4991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4993), + [anon_sym_LPAREN2] = ACTIONS(4993), + [anon_sym_TILDE] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_PERCENT] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4993), + [anon_sym_AMP_AMP] = ACTIONS(4993), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym_AMP] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4993), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_LT_LT] = ACTIONS(4991), + [anon_sym_GT_GT] = ACTIONS(4991), + [anon_sym___extension__] = ACTIONS(4991), + [anon_sym_extern] = ACTIONS(4991), + [anon_sym___attribute__] = ACTIONS(4991), + [anon_sym_COLON_COLON] = ACTIONS(4993), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4993), + [anon_sym___declspec] = ACTIONS(4991), + [anon_sym___based] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_EQ] = ACTIONS(4991), + [anon_sym_static] = ACTIONS(4991), + [anon_sym_register] = ACTIONS(4991), + [anon_sym_inline] = ACTIONS(4991), + [anon_sym___inline] = ACTIONS(4991), + [anon_sym___inline__] = ACTIONS(4991), + [anon_sym___forceinline] = ACTIONS(4991), + [anon_sym_thread_local] = ACTIONS(4991), + [anon_sym___thread] = ACTIONS(4991), + [anon_sym_const] = ACTIONS(4991), + [anon_sym_constexpr] = ACTIONS(4991), + [anon_sym_volatile] = ACTIONS(4991), + [anon_sym_restrict] = ACTIONS(4991), + [anon_sym___restrict__] = ACTIONS(4991), + [anon_sym__Atomic] = ACTIONS(4991), + [anon_sym__Noreturn] = ACTIONS(4991), + [anon_sym_noreturn] = ACTIONS(4991), + [anon_sym_mutable] = ACTIONS(4991), + [anon_sym_constinit] = ACTIONS(4991), + [anon_sym_consteval] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_STAR_EQ] = ACTIONS(4993), + [anon_sym_SLASH_EQ] = ACTIONS(4993), + [anon_sym_PERCENT_EQ] = ACTIONS(4993), + [anon_sym_PLUS_EQ] = ACTIONS(4993), + [anon_sym_DASH_EQ] = ACTIONS(4993), + [anon_sym_LT_LT_EQ] = ACTIONS(4993), + [anon_sym_GT_GT_EQ] = ACTIONS(4993), + [anon_sym_AMP_EQ] = ACTIONS(4993), + [anon_sym_CARET_EQ] = ACTIONS(4993), + [anon_sym_PIPE_EQ] = ACTIONS(4993), + [anon_sym_and_eq] = ACTIONS(4991), + [anon_sym_or_eq] = ACTIONS(4991), + [anon_sym_xor_eq] = ACTIONS(4991), + [anon_sym_LT_EQ_GT] = ACTIONS(4993), + [anon_sym_or] = ACTIONS(4991), + [anon_sym_and] = ACTIONS(4991), + [anon_sym_bitor] = ACTIONS(4991), + [anon_sym_xor] = ACTIONS(4991), + [anon_sym_bitand] = ACTIONS(4991), + [anon_sym_not_eq] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4993), + [anon_sym_DOT] = ACTIONS(4991), + [anon_sym_DOT_STAR] = ACTIONS(4993), + [anon_sym_DASH_GT] = ACTIONS(4991), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4991), + [anon_sym_decltype] = ACTIONS(4991), + [anon_sym_virtual] = ACTIONS(4991), + [anon_sym_alignas] = ACTIONS(4991), + [anon_sym_template] = ACTIONS(4991), + [anon_sym_operator] = ACTIONS(4991), + [anon_sym_DASH_GT_STAR] = ACTIONS(4993), }, - [2117] = { - [sym_identifier] = ACTIONS(5495), - [aux_sym_preproc_def_token1] = ACTIONS(5495), - [aux_sym_preproc_if_token1] = ACTIONS(5495), - [aux_sym_preproc_if_token2] = ACTIONS(5495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5495), - [aux_sym_preproc_else_token1] = ACTIONS(5495), - [aux_sym_preproc_elif_token1] = ACTIONS(5495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5495), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5495), - [sym_preproc_directive] = ACTIONS(5495), - [anon_sym_LPAREN2] = ACTIONS(5497), - [anon_sym_TILDE] = ACTIONS(5497), - [anon_sym_STAR] = ACTIONS(5497), - [anon_sym_AMP_AMP] = ACTIONS(5497), - [anon_sym_AMP] = ACTIONS(5495), - [anon_sym___extension__] = ACTIONS(5495), - [anon_sym_typedef] = ACTIONS(5495), - [anon_sym_extern] = ACTIONS(5495), - [anon_sym___attribute__] = ACTIONS(5495), - [anon_sym_COLON_COLON] = ACTIONS(5497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5497), - [anon_sym___declspec] = ACTIONS(5495), - [anon_sym___based] = ACTIONS(5495), - [anon_sym_signed] = ACTIONS(5495), - [anon_sym_unsigned] = ACTIONS(5495), - [anon_sym_long] = ACTIONS(5495), - [anon_sym_short] = ACTIONS(5495), - [anon_sym_LBRACK] = ACTIONS(5495), - [anon_sym_static] = ACTIONS(5495), - [anon_sym_register] = ACTIONS(5495), - [anon_sym_inline] = ACTIONS(5495), - [anon_sym___inline] = ACTIONS(5495), - [anon_sym___inline__] = ACTIONS(5495), - [anon_sym___forceinline] = ACTIONS(5495), - [anon_sym_thread_local] = ACTIONS(5495), - [anon_sym___thread] = ACTIONS(5495), - [anon_sym_const] = ACTIONS(5495), - [anon_sym_constexpr] = ACTIONS(5495), - [anon_sym_volatile] = ACTIONS(5495), - [anon_sym_restrict] = ACTIONS(5495), - [anon_sym___restrict__] = ACTIONS(5495), - [anon_sym__Atomic] = ACTIONS(5495), - [anon_sym__Noreturn] = ACTIONS(5495), - [anon_sym_noreturn] = ACTIONS(5495), - [anon_sym_mutable] = ACTIONS(5495), - [anon_sym_constinit] = ACTIONS(5495), - [anon_sym_consteval] = ACTIONS(5495), - [sym_primitive_type] = ACTIONS(5495), - [anon_sym_enum] = ACTIONS(5495), - [anon_sym_class] = ACTIONS(5495), - [anon_sym_struct] = ACTIONS(5495), - [anon_sym_union] = ACTIONS(5495), + [1937] = { + [sym_template_argument_list] = STATE(1944), + [sym_identifier] = ACTIONS(5007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5009), + [anon_sym_COMMA] = ACTIONS(5009), + [anon_sym_RPAREN] = ACTIONS(5009), + [anon_sym_LPAREN2] = ACTIONS(5009), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5009), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5032), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5007), + [anon_sym_extern] = ACTIONS(5007), + [anon_sym___attribute__] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5012), + [anon_sym___declspec] = ACTIONS(5007), + [anon_sym___based] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5016), + [anon_sym_static] = ACTIONS(5007), + [anon_sym_register] = ACTIONS(5007), + [anon_sym_inline] = ACTIONS(5007), + [anon_sym___inline] = ACTIONS(5007), + [anon_sym___inline__] = ACTIONS(5007), + [anon_sym___forceinline] = ACTIONS(5007), + [anon_sym_thread_local] = ACTIONS(5007), + [anon_sym___thread] = ACTIONS(5007), + [anon_sym_const] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym___restrict__] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym__Noreturn] = ACTIONS(5007), + [anon_sym_noreturn] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_constinit] = ACTIONS(5007), + [anon_sym_consteval] = ACTIONS(5007), + [anon_sym_QMARK] = ACTIONS(5019), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_LT_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_GT_EQ] = ACTIONS(5019), + [anon_sym_AMP_EQ] = ACTIONS(5019), + [anon_sym_CARET_EQ] = ACTIONS(5019), + [anon_sym_PIPE_EQ] = ACTIONS(5019), + [anon_sym_and_eq] = ACTIONS(5014), + [anon_sym_or_eq] = ACTIONS(5014), + [anon_sym_xor_eq] = ACTIONS(5014), + [anon_sym_LT_EQ_GT] = ACTIONS(5019), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5014), + [anon_sym_not_eq] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5019), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5495), - [anon_sym_decltype] = ACTIONS(5495), - [anon_sym_virtual] = ACTIONS(5495), - [anon_sym_alignas] = ACTIONS(5495), - [anon_sym_explicit] = ACTIONS(5495), - [anon_sym_typename] = ACTIONS(5495), - [anon_sym_template] = ACTIONS(5495), - [anon_sym_operator] = ACTIONS(5495), - [anon_sym_friend] = ACTIONS(5495), - [anon_sym_public] = ACTIONS(5495), - [anon_sym_private] = ACTIONS(5495), - [anon_sym_protected] = ACTIONS(5495), - [anon_sym_using] = ACTIONS(5495), - [anon_sym_static_assert] = ACTIONS(5495), + [sym_auto] = ACTIONS(5007), + [anon_sym_decltype] = ACTIONS(5007), + [anon_sym_virtual] = ACTIONS(5007), + [anon_sym_alignas] = ACTIONS(5007), + [anon_sym_template] = ACTIONS(5007), + [anon_sym_operator] = ACTIONS(5007), }, - [2118] = { - [sym_identifier] = ACTIONS(5000), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_RPAREN] = ACTIONS(5002), - [aux_sym_preproc_if_token2] = ACTIONS(5002), - [aux_sym_preproc_else_token1] = ACTIONS(5002), - [aux_sym_preproc_elif_token1] = ACTIONS(5000), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5002), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5000), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_CARET] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_EQ_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5002), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_GT_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ] = ACTIONS(5000), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(5000), - [anon_sym_GT_GT] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5002), - [anon_sym___attribute__] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_RBRACK] = ACTIONS(5002), - [anon_sym_EQ] = ACTIONS(5000), - [anon_sym_COLON] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_STAR_EQ] = ACTIONS(5002), - [anon_sym_SLASH_EQ] = ACTIONS(5002), - [anon_sym_PERCENT_EQ] = ACTIONS(5002), - [anon_sym_PLUS_EQ] = ACTIONS(5002), - [anon_sym_DASH_EQ] = ACTIONS(5002), - [anon_sym_LT_LT_EQ] = ACTIONS(5002), - [anon_sym_GT_GT_EQ] = ACTIONS(5002), - [anon_sym_AMP_EQ] = ACTIONS(5002), - [anon_sym_CARET_EQ] = ACTIONS(5002), - [anon_sym_PIPE_EQ] = ACTIONS(5002), - [anon_sym_and_eq] = ACTIONS(5000), - [anon_sym_or_eq] = ACTIONS(5000), - [anon_sym_xor_eq] = ACTIONS(5000), - [anon_sym_LT_EQ_GT] = ACTIONS(5002), - [anon_sym_or] = ACTIONS(5000), - [anon_sym_and] = ACTIONS(5000), - [anon_sym_bitor] = ACTIONS(5000), - [anon_sym_xor] = ACTIONS(5000), - [anon_sym_bitand] = ACTIONS(5000), - [anon_sym_not_eq] = ACTIONS(5000), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_DOT_STAR] = ACTIONS(5002), - [anon_sym_DASH_GT] = ACTIONS(5002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5000), - [anon_sym_decltype] = ACTIONS(5000), - [anon_sym_final] = ACTIONS(5000), - [anon_sym_override] = ACTIONS(5000), + [1938] = { + [sym_identifier] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_TILDE] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5024), + [anon_sym___extension__] = ACTIONS(5024), + [anon_sym_extern] = ACTIONS(5024), + [anon_sym___attribute__] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(5026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5026), + [anon_sym___declspec] = ACTIONS(5024), + [anon_sym___based] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_static] = ACTIONS(5024), + [anon_sym_register] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym___inline] = ACTIONS(5024), + [anon_sym___inline__] = ACTIONS(5024), + [anon_sym___forceinline] = ACTIONS(5024), + [anon_sym_thread_local] = ACTIONS(5024), + [anon_sym___thread] = ACTIONS(5024), + [anon_sym_const] = ACTIONS(5024), + [anon_sym_constexpr] = ACTIONS(5024), + [anon_sym_volatile] = ACTIONS(5024), + [anon_sym_restrict] = ACTIONS(5024), + [anon_sym___restrict__] = ACTIONS(5024), + [anon_sym__Atomic] = ACTIONS(5024), + [anon_sym__Noreturn] = ACTIONS(5024), + [anon_sym_noreturn] = ACTIONS(5024), + [anon_sym_mutable] = ACTIONS(5024), + [anon_sym_constinit] = ACTIONS(5024), + [anon_sym_consteval] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_LT_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_GT_EQ] = ACTIONS(5026), + [anon_sym_AMP_EQ] = ACTIONS(5026), + [anon_sym_CARET_EQ] = ACTIONS(5026), + [anon_sym_PIPE_EQ] = ACTIONS(5026), + [anon_sym_and_eq] = ACTIONS(5024), + [anon_sym_or_eq] = ACTIONS(5024), + [anon_sym_xor_eq] = ACTIONS(5024), + [anon_sym_LT_EQ_GT] = ACTIONS(5026), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_bitor] = ACTIONS(5024), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_bitand] = ACTIONS(5024), + [anon_sym_not_eq] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_DOT_STAR] = ACTIONS(5026), + [anon_sym_DASH_GT] = ACTIONS(5024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5024), + [anon_sym_decltype] = ACTIONS(5024), + [anon_sym_virtual] = ACTIONS(5024), + [anon_sym_alignas] = ACTIONS(5024), + [anon_sym_template] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_DASH_GT_STAR] = ACTIONS(5026), }, - [2119] = { - [sym_identifier] = ACTIONS(5004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [aux_sym_preproc_if_token2] = ACTIONS(5006), - [aux_sym_preproc_else_token1] = ACTIONS(5006), - [aux_sym_preproc_elif_token1] = ACTIONS(5004), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5006), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5006), - [anon_sym_LPAREN2] = ACTIONS(5006), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5004), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5004), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5004), - [anon_sym_CARET] = ACTIONS(5004), - [anon_sym_AMP] = ACTIONS(5004), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5004), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_LT_LT] = ACTIONS(5004), - [anon_sym_GT_GT] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym___attribute__] = ACTIONS(5004), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_RBRACK] = ACTIONS(5006), - [anon_sym_EQ] = ACTIONS(5004), - [anon_sym_COLON] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(5006), - [anon_sym_STAR_EQ] = ACTIONS(5006), - [anon_sym_SLASH_EQ] = ACTIONS(5006), - [anon_sym_PERCENT_EQ] = ACTIONS(5006), - [anon_sym_PLUS_EQ] = ACTIONS(5006), - [anon_sym_DASH_EQ] = ACTIONS(5006), - [anon_sym_LT_LT_EQ] = ACTIONS(5006), - [anon_sym_GT_GT_EQ] = ACTIONS(5006), - [anon_sym_AMP_EQ] = ACTIONS(5006), - [anon_sym_CARET_EQ] = ACTIONS(5006), - [anon_sym_PIPE_EQ] = ACTIONS(5006), - [anon_sym_and_eq] = ACTIONS(5004), - [anon_sym_or_eq] = ACTIONS(5004), - [anon_sym_xor_eq] = ACTIONS(5004), - [anon_sym_LT_EQ_GT] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5004), - [anon_sym_and] = ACTIONS(5004), - [anon_sym_bitor] = ACTIONS(5004), - [anon_sym_xor] = ACTIONS(5004), - [anon_sym_bitand] = ACTIONS(5004), - [anon_sym_not_eq] = ACTIONS(5004), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_DOT_STAR] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5004), - [anon_sym_decltype] = ACTIONS(5004), - [anon_sym_final] = ACTIONS(5004), - [anon_sym_override] = ACTIONS(5004), + [1939] = { + [sym_identifier] = ACTIONS(5003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LPAREN2] = ACTIONS(5005), + [anon_sym_TILDE] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_PERCENT] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5005), + [anon_sym_AMP_AMP] = ACTIONS(5005), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym_AMP] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5005), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_LT_LT] = ACTIONS(5003), + [anon_sym_GT_GT] = ACTIONS(5003), + [anon_sym___extension__] = ACTIONS(5003), + [anon_sym_extern] = ACTIONS(5003), + [anon_sym___attribute__] = ACTIONS(5003), + [anon_sym_COLON_COLON] = ACTIONS(5005), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5005), + [anon_sym___declspec] = ACTIONS(5003), + [anon_sym___based] = ACTIONS(5003), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_EQ] = ACTIONS(5003), + [anon_sym_static] = ACTIONS(5003), + [anon_sym_register] = ACTIONS(5003), + [anon_sym_inline] = ACTIONS(5003), + [anon_sym___inline] = ACTIONS(5003), + [anon_sym___inline__] = ACTIONS(5003), + [anon_sym___forceinline] = ACTIONS(5003), + [anon_sym_thread_local] = ACTIONS(5003), + [anon_sym___thread] = ACTIONS(5003), + [anon_sym_const] = ACTIONS(5003), + [anon_sym_constexpr] = ACTIONS(5003), + [anon_sym_volatile] = ACTIONS(5003), + [anon_sym_restrict] = ACTIONS(5003), + [anon_sym___restrict__] = ACTIONS(5003), + [anon_sym__Atomic] = ACTIONS(5003), + [anon_sym__Noreturn] = ACTIONS(5003), + [anon_sym_noreturn] = ACTIONS(5003), + [anon_sym_mutable] = ACTIONS(5003), + [anon_sym_constinit] = ACTIONS(5003), + [anon_sym_consteval] = ACTIONS(5003), + [anon_sym_QMARK] = ACTIONS(5005), + [anon_sym_STAR_EQ] = ACTIONS(5005), + [anon_sym_SLASH_EQ] = ACTIONS(5005), + [anon_sym_PERCENT_EQ] = ACTIONS(5005), + [anon_sym_PLUS_EQ] = ACTIONS(5005), + [anon_sym_DASH_EQ] = ACTIONS(5005), + [anon_sym_LT_LT_EQ] = ACTIONS(5005), + [anon_sym_GT_GT_EQ] = ACTIONS(5005), + [anon_sym_AMP_EQ] = ACTIONS(5005), + [anon_sym_CARET_EQ] = ACTIONS(5005), + [anon_sym_PIPE_EQ] = ACTIONS(5005), + [anon_sym_and_eq] = ACTIONS(5003), + [anon_sym_or_eq] = ACTIONS(5003), + [anon_sym_xor_eq] = ACTIONS(5003), + [anon_sym_LT_EQ_GT] = ACTIONS(5005), + [anon_sym_or] = ACTIONS(5003), + [anon_sym_and] = ACTIONS(5003), + [anon_sym_bitor] = ACTIONS(5003), + [anon_sym_xor] = ACTIONS(5003), + [anon_sym_bitand] = ACTIONS(5003), + [anon_sym_not_eq] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5005), + [anon_sym_PLUS_PLUS] = ACTIONS(5005), + [anon_sym_DOT] = ACTIONS(5003), + [anon_sym_DOT_STAR] = ACTIONS(5005), + [anon_sym_DASH_GT] = ACTIONS(5003), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5003), + [anon_sym_decltype] = ACTIONS(5003), + [anon_sym_virtual] = ACTIONS(5003), + [anon_sym_alignas] = ACTIONS(5003), + [anon_sym_template] = ACTIONS(5003), + [anon_sym_operator] = ACTIONS(5003), + [anon_sym_DASH_GT_STAR] = ACTIONS(5005), }, - [2120] = { - [sym_identifier] = ACTIONS(5499), - [aux_sym_preproc_def_token1] = ACTIONS(5499), - [aux_sym_preproc_if_token1] = ACTIONS(5499), - [aux_sym_preproc_if_token2] = ACTIONS(5499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5499), - [aux_sym_preproc_else_token1] = ACTIONS(5499), - [aux_sym_preproc_elif_token1] = ACTIONS(5499), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5499), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5499), - [sym_preproc_directive] = ACTIONS(5499), - [anon_sym_LPAREN2] = ACTIONS(5501), - [anon_sym_TILDE] = ACTIONS(5501), - [anon_sym_STAR] = ACTIONS(5501), - [anon_sym_AMP_AMP] = ACTIONS(5501), - [anon_sym_AMP] = ACTIONS(5499), - [anon_sym___extension__] = ACTIONS(5499), - [anon_sym_typedef] = ACTIONS(5499), - [anon_sym_extern] = ACTIONS(5499), - [anon_sym___attribute__] = ACTIONS(5499), - [anon_sym_COLON_COLON] = ACTIONS(5501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5501), - [anon_sym___declspec] = ACTIONS(5499), - [anon_sym___based] = ACTIONS(5499), - [anon_sym_signed] = ACTIONS(5499), - [anon_sym_unsigned] = ACTIONS(5499), - [anon_sym_long] = ACTIONS(5499), - [anon_sym_short] = ACTIONS(5499), - [anon_sym_LBRACK] = ACTIONS(5499), - [anon_sym_static] = ACTIONS(5499), - [anon_sym_register] = ACTIONS(5499), - [anon_sym_inline] = ACTIONS(5499), - [anon_sym___inline] = ACTIONS(5499), - [anon_sym___inline__] = ACTIONS(5499), - [anon_sym___forceinline] = ACTIONS(5499), - [anon_sym_thread_local] = ACTIONS(5499), - [anon_sym___thread] = ACTIONS(5499), - [anon_sym_const] = ACTIONS(5499), - [anon_sym_constexpr] = ACTIONS(5499), - [anon_sym_volatile] = ACTIONS(5499), - [anon_sym_restrict] = ACTIONS(5499), - [anon_sym___restrict__] = ACTIONS(5499), - [anon_sym__Atomic] = ACTIONS(5499), - [anon_sym__Noreturn] = ACTIONS(5499), - [anon_sym_noreturn] = ACTIONS(5499), - [anon_sym_mutable] = ACTIONS(5499), - [anon_sym_constinit] = ACTIONS(5499), - [anon_sym_consteval] = ACTIONS(5499), - [sym_primitive_type] = ACTIONS(5499), - [anon_sym_enum] = ACTIONS(5499), - [anon_sym_class] = ACTIONS(5499), - [anon_sym_struct] = ACTIONS(5499), - [anon_sym_union] = ACTIONS(5499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5499), - [anon_sym_decltype] = ACTIONS(5499), - [anon_sym_virtual] = ACTIONS(5499), - [anon_sym_alignas] = ACTIONS(5499), - [anon_sym_explicit] = ACTIONS(5499), - [anon_sym_typename] = ACTIONS(5499), - [anon_sym_template] = ACTIONS(5499), - [anon_sym_operator] = ACTIONS(5499), - [anon_sym_friend] = ACTIONS(5499), - [anon_sym_public] = ACTIONS(5499), - [anon_sym_private] = ACTIONS(5499), - [anon_sym_protected] = ACTIONS(5499), - [anon_sym_using] = ACTIONS(5499), - [anon_sym_static_assert] = ACTIONS(5499), + [1940] = { + [sym_identifier] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5030), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_TILDE] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5028), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym_extern] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym_COLON_COLON] = ACTIONS(5030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5030), + [anon_sym___declspec] = ACTIONS(5028), + [anon_sym___based] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_static] = ACTIONS(5028), + [anon_sym_register] = ACTIONS(5028), + [anon_sym_inline] = ACTIONS(5028), + [anon_sym___inline] = ACTIONS(5028), + [anon_sym___inline__] = ACTIONS(5028), + [anon_sym___forceinline] = ACTIONS(5028), + [anon_sym_thread_local] = ACTIONS(5028), + [anon_sym___thread] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_restrict] = ACTIONS(5028), + [anon_sym___restrict__] = ACTIONS(5028), + [anon_sym__Atomic] = ACTIONS(5028), + [anon_sym__Noreturn] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_mutable] = ACTIONS(5028), + [anon_sym_constinit] = ACTIONS(5028), + [anon_sym_consteval] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_STAR_EQ] = ACTIONS(5030), + [anon_sym_SLASH_EQ] = ACTIONS(5030), + [anon_sym_PERCENT_EQ] = ACTIONS(5030), + [anon_sym_PLUS_EQ] = ACTIONS(5030), + [anon_sym_DASH_EQ] = ACTIONS(5030), + [anon_sym_LT_LT_EQ] = ACTIONS(5030), + [anon_sym_GT_GT_EQ] = ACTIONS(5030), + [anon_sym_AMP_EQ] = ACTIONS(5030), + [anon_sym_CARET_EQ] = ACTIONS(5030), + [anon_sym_PIPE_EQ] = ACTIONS(5030), + [anon_sym_and_eq] = ACTIONS(5028), + [anon_sym_or_eq] = ACTIONS(5028), + [anon_sym_xor_eq] = ACTIONS(5028), + [anon_sym_LT_EQ_GT] = ACTIONS(5030), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_bitor] = ACTIONS(5028), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_bitand] = ACTIONS(5028), + [anon_sym_not_eq] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_DOT_STAR] = ACTIONS(5030), + [anon_sym_DASH_GT] = ACTIONS(5028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5028), + [anon_sym_decltype] = ACTIONS(5028), + [anon_sym_virtual] = ACTIONS(5028), + [anon_sym_alignas] = ACTIONS(5028), + [anon_sym_template] = ACTIONS(5028), + [anon_sym_operator] = ACTIONS(5028), + [anon_sym_DASH_GT_STAR] = ACTIONS(5030), }, - [2121] = { - [sym_identifier] = ACTIONS(5503), - [aux_sym_preproc_def_token1] = ACTIONS(5503), - [aux_sym_preproc_if_token1] = ACTIONS(5503), - [aux_sym_preproc_if_token2] = ACTIONS(5503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), - [aux_sym_preproc_else_token1] = ACTIONS(5503), - [aux_sym_preproc_elif_token1] = ACTIONS(5503), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5503), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5503), - [sym_preproc_directive] = ACTIONS(5503), - [anon_sym_LPAREN2] = ACTIONS(5505), - [anon_sym_TILDE] = ACTIONS(5505), - [anon_sym_STAR] = ACTIONS(5505), - [anon_sym_AMP_AMP] = ACTIONS(5505), - [anon_sym_AMP] = ACTIONS(5503), - [anon_sym___extension__] = ACTIONS(5503), - [anon_sym_typedef] = ACTIONS(5503), - [anon_sym_extern] = ACTIONS(5503), - [anon_sym___attribute__] = ACTIONS(5503), - [anon_sym_COLON_COLON] = ACTIONS(5505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), - [anon_sym___declspec] = ACTIONS(5503), - [anon_sym___based] = ACTIONS(5503), - [anon_sym_signed] = ACTIONS(5503), - [anon_sym_unsigned] = ACTIONS(5503), - [anon_sym_long] = ACTIONS(5503), - [anon_sym_short] = ACTIONS(5503), - [anon_sym_LBRACK] = ACTIONS(5503), - [anon_sym_static] = ACTIONS(5503), - [anon_sym_register] = ACTIONS(5503), - [anon_sym_inline] = ACTIONS(5503), - [anon_sym___inline] = ACTIONS(5503), - [anon_sym___inline__] = ACTIONS(5503), - [anon_sym___forceinline] = ACTIONS(5503), - [anon_sym_thread_local] = ACTIONS(5503), - [anon_sym___thread] = ACTIONS(5503), - [anon_sym_const] = ACTIONS(5503), - [anon_sym_constexpr] = ACTIONS(5503), - [anon_sym_volatile] = ACTIONS(5503), - [anon_sym_restrict] = ACTIONS(5503), - [anon_sym___restrict__] = ACTIONS(5503), - [anon_sym__Atomic] = ACTIONS(5503), - [anon_sym__Noreturn] = ACTIONS(5503), - [anon_sym_noreturn] = ACTIONS(5503), - [anon_sym_mutable] = ACTIONS(5503), - [anon_sym_constinit] = ACTIONS(5503), - [anon_sym_consteval] = ACTIONS(5503), - [sym_primitive_type] = ACTIONS(5503), - [anon_sym_enum] = ACTIONS(5503), - [anon_sym_class] = ACTIONS(5503), - [anon_sym_struct] = ACTIONS(5503), - [anon_sym_union] = ACTIONS(5503), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5503), - [anon_sym_decltype] = ACTIONS(5503), - [anon_sym_virtual] = ACTIONS(5503), - [anon_sym_alignas] = ACTIONS(5503), - [anon_sym_explicit] = ACTIONS(5503), - [anon_sym_typename] = ACTIONS(5503), - [anon_sym_template] = ACTIONS(5503), - [anon_sym_operator] = ACTIONS(5503), - [anon_sym_friend] = ACTIONS(5503), - [anon_sym_public] = ACTIONS(5503), - [anon_sym_private] = ACTIONS(5503), - [anon_sym_protected] = ACTIONS(5503), - [anon_sym_using] = ACTIONS(5503), - [anon_sym_static_assert] = ACTIONS(5503), + [1941] = { + [sym_identifier] = ACTIONS(5039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_LPAREN2] = ACTIONS(5043), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5043), + [anon_sym___extension__] = ACTIONS(5039), + [anon_sym_extern] = ACTIONS(5039), + [anon_sym___attribute__] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5043), + [anon_sym___declspec] = ACTIONS(5039), + [anon_sym___based] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_static] = ACTIONS(5039), + [anon_sym_register] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym___inline] = ACTIONS(5039), + [anon_sym___inline__] = ACTIONS(5039), + [anon_sym___forceinline] = ACTIONS(5039), + [anon_sym_thread_local] = ACTIONS(5039), + [anon_sym___thread] = ACTIONS(5039), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5039), + [anon_sym_volatile] = ACTIONS(5039), + [anon_sym_restrict] = ACTIONS(5039), + [anon_sym___restrict__] = ACTIONS(5039), + [anon_sym__Atomic] = ACTIONS(5039), + [anon_sym__Noreturn] = ACTIONS(5039), + [anon_sym_noreturn] = ACTIONS(5039), + [anon_sym_mutable] = ACTIONS(5039), + [anon_sym_constinit] = ACTIONS(5039), + [anon_sym_consteval] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_LT_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_GT_EQ] = ACTIONS(5041), + [anon_sym_AMP_EQ] = ACTIONS(5041), + [anon_sym_CARET_EQ] = ACTIONS(5041), + [anon_sym_PIPE_EQ] = ACTIONS(5041), + [anon_sym_and_eq] = ACTIONS(5048), + [anon_sym_or_eq] = ACTIONS(5048), + [anon_sym_xor_eq] = ACTIONS(5048), + [anon_sym_LT_EQ_GT] = ACTIONS(5041), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_bitor] = ACTIONS(5048), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_bitand] = ACTIONS(5048), + [anon_sym_not_eq] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_DOT_STAR] = ACTIONS(5041), + [anon_sym_DASH_GT] = ACTIONS(5041), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5039), + [anon_sym_decltype] = ACTIONS(5039), + [anon_sym_virtual] = ACTIONS(5039), + [anon_sym_alignas] = ACTIONS(5039), + [anon_sym_template] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), }, - [2122] = { - [sym_identifier] = ACTIONS(5507), - [aux_sym_preproc_def_token1] = ACTIONS(5507), - [aux_sym_preproc_if_token1] = ACTIONS(5507), - [aux_sym_preproc_if_token2] = ACTIONS(5507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5507), - [aux_sym_preproc_else_token1] = ACTIONS(5507), - [aux_sym_preproc_elif_token1] = ACTIONS(5507), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5507), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5507), - [sym_preproc_directive] = ACTIONS(5507), - [anon_sym_LPAREN2] = ACTIONS(5509), - [anon_sym_TILDE] = ACTIONS(5509), - [anon_sym_STAR] = ACTIONS(5509), - [anon_sym_AMP_AMP] = ACTIONS(5509), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_typedef] = ACTIONS(5507), - [anon_sym_extern] = ACTIONS(5507), - [anon_sym___attribute__] = ACTIONS(5507), - [anon_sym_COLON_COLON] = ACTIONS(5509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), - [anon_sym___declspec] = ACTIONS(5507), - [anon_sym___based] = ACTIONS(5507), - [anon_sym_signed] = ACTIONS(5507), - [anon_sym_unsigned] = ACTIONS(5507), - [anon_sym_long] = ACTIONS(5507), - [anon_sym_short] = ACTIONS(5507), - [anon_sym_LBRACK] = ACTIONS(5507), - [anon_sym_static] = ACTIONS(5507), - [anon_sym_register] = ACTIONS(5507), - [anon_sym_inline] = ACTIONS(5507), - [anon_sym___inline] = ACTIONS(5507), - [anon_sym___inline__] = ACTIONS(5507), - [anon_sym___forceinline] = ACTIONS(5507), - [anon_sym_thread_local] = ACTIONS(5507), - [anon_sym___thread] = ACTIONS(5507), - [anon_sym_const] = ACTIONS(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [sym_primitive_type] = ACTIONS(5507), - [anon_sym_enum] = ACTIONS(5507), - [anon_sym_class] = ACTIONS(5507), - [anon_sym_struct] = ACTIONS(5507), - [anon_sym_union] = ACTIONS(5507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5507), - [anon_sym_decltype] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5507), - [anon_sym_explicit] = ACTIONS(5507), - [anon_sym_typename] = ACTIONS(5507), - [anon_sym_template] = ACTIONS(5507), - [anon_sym_operator] = ACTIONS(5507), - [anon_sym_friend] = ACTIONS(5507), - [anon_sym_public] = ACTIONS(5507), - [anon_sym_private] = ACTIONS(5507), - [anon_sym_protected] = ACTIONS(5507), - [anon_sym_using] = ACTIONS(5507), - [anon_sym_static_assert] = ACTIONS(5507), + [1942] = { + [sym_identifier] = ACTIONS(5035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_RPAREN] = ACTIONS(5037), + [anon_sym_LPAREN2] = ACTIONS(5037), + [anon_sym_TILDE] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5035), + [anon_sym_CARET] = ACTIONS(5035), + [anon_sym_AMP] = ACTIONS(5035), + [anon_sym_EQ_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5035), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_LT_LT] = ACTIONS(5035), + [anon_sym_GT_GT] = ACTIONS(5035), + [anon_sym___extension__] = ACTIONS(5035), + [anon_sym_extern] = ACTIONS(5035), + [anon_sym___attribute__] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5037), + [anon_sym___declspec] = ACTIONS(5035), + [anon_sym___based] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_static] = ACTIONS(5035), + [anon_sym_register] = ACTIONS(5035), + [anon_sym_inline] = ACTIONS(5035), + [anon_sym___inline] = ACTIONS(5035), + [anon_sym___inline__] = ACTIONS(5035), + [anon_sym___forceinline] = ACTIONS(5035), + [anon_sym_thread_local] = ACTIONS(5035), + [anon_sym___thread] = ACTIONS(5035), + [anon_sym_const] = ACTIONS(5035), + [anon_sym_constexpr] = ACTIONS(5035), + [anon_sym_volatile] = ACTIONS(5035), + [anon_sym_restrict] = ACTIONS(5035), + [anon_sym___restrict__] = ACTIONS(5035), + [anon_sym__Atomic] = ACTIONS(5035), + [anon_sym__Noreturn] = ACTIONS(5035), + [anon_sym_noreturn] = ACTIONS(5035), + [anon_sym_mutable] = ACTIONS(5035), + [anon_sym_constinit] = ACTIONS(5035), + [anon_sym_consteval] = ACTIONS(5035), + [anon_sym_QMARK] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_LT_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_GT_EQ] = ACTIONS(5037), + [anon_sym_AMP_EQ] = ACTIONS(5037), + [anon_sym_CARET_EQ] = ACTIONS(5037), + [anon_sym_PIPE_EQ] = ACTIONS(5037), + [anon_sym_and_eq] = ACTIONS(5035), + [anon_sym_or_eq] = ACTIONS(5035), + [anon_sym_xor_eq] = ACTIONS(5035), + [anon_sym_LT_EQ_GT] = ACTIONS(5037), + [anon_sym_or] = ACTIONS(5035), + [anon_sym_and] = ACTIONS(5035), + [anon_sym_bitor] = ACTIONS(5035), + [anon_sym_xor] = ACTIONS(5035), + [anon_sym_bitand] = ACTIONS(5035), + [anon_sym_not_eq] = ACTIONS(5035), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_DOT_STAR] = ACTIONS(5037), + [anon_sym_DASH_GT] = ACTIONS(5035), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5035), + [anon_sym_decltype] = ACTIONS(5035), + [anon_sym_virtual] = ACTIONS(5035), + [anon_sym_alignas] = ACTIONS(5035), + [anon_sym_template] = ACTIONS(5035), + [anon_sym_operator] = ACTIONS(5035), + [anon_sym_DASH_GT_STAR] = ACTIONS(5037), }, - [2123] = { - [sym_identifier] = ACTIONS(5511), - [aux_sym_preproc_def_token1] = ACTIONS(5511), - [aux_sym_preproc_if_token1] = ACTIONS(5511), - [aux_sym_preproc_if_token2] = ACTIONS(5511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5511), - [aux_sym_preproc_else_token1] = ACTIONS(5511), - [aux_sym_preproc_elif_token1] = ACTIONS(5511), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5511), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5511), - [sym_preproc_directive] = ACTIONS(5511), - [anon_sym_LPAREN2] = ACTIONS(5513), - [anon_sym_TILDE] = ACTIONS(5513), - [anon_sym_STAR] = ACTIONS(5513), - [anon_sym_AMP_AMP] = ACTIONS(5513), - [anon_sym_AMP] = ACTIONS(5511), - [anon_sym___extension__] = ACTIONS(5511), - [anon_sym_typedef] = ACTIONS(5511), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5511), - [anon_sym_COLON_COLON] = ACTIONS(5513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), - [anon_sym___declspec] = ACTIONS(5511), - [anon_sym___based] = ACTIONS(5511), - [anon_sym_signed] = ACTIONS(5511), - [anon_sym_unsigned] = ACTIONS(5511), - [anon_sym_long] = ACTIONS(5511), - [anon_sym_short] = ACTIONS(5511), - [anon_sym_LBRACK] = ACTIONS(5511), - [anon_sym_static] = ACTIONS(5511), - [anon_sym_register] = ACTIONS(5511), - [anon_sym_inline] = ACTIONS(5511), - [anon_sym___inline] = ACTIONS(5511), - [anon_sym___inline__] = ACTIONS(5511), - [anon_sym___forceinline] = ACTIONS(5511), - [anon_sym_thread_local] = ACTIONS(5511), - [anon_sym___thread] = ACTIONS(5511), - [anon_sym_const] = ACTIONS(5511), - [anon_sym_constexpr] = ACTIONS(5511), - [anon_sym_volatile] = ACTIONS(5511), - [anon_sym_restrict] = ACTIONS(5511), - [anon_sym___restrict__] = ACTIONS(5511), - [anon_sym__Atomic] = ACTIONS(5511), - [anon_sym__Noreturn] = ACTIONS(5511), - [anon_sym_noreturn] = ACTIONS(5511), - [anon_sym_mutable] = ACTIONS(5511), - [anon_sym_constinit] = ACTIONS(5511), - [anon_sym_consteval] = ACTIONS(5511), - [sym_primitive_type] = ACTIONS(5511), - [anon_sym_enum] = ACTIONS(5511), - [anon_sym_class] = ACTIONS(5511), - [anon_sym_struct] = ACTIONS(5511), - [anon_sym_union] = ACTIONS(5511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5511), - [anon_sym_decltype] = ACTIONS(5511), - [anon_sym_virtual] = ACTIONS(5511), - [anon_sym_alignas] = ACTIONS(5511), - [anon_sym_explicit] = ACTIONS(5511), - [anon_sym_typename] = ACTIONS(5511), - [anon_sym_template] = ACTIONS(5511), - [anon_sym_operator] = ACTIONS(5511), - [anon_sym_friend] = ACTIONS(5511), - [anon_sym_public] = ACTIONS(5511), - [anon_sym_private] = ACTIONS(5511), - [anon_sym_protected] = ACTIONS(5511), - [anon_sym_using] = ACTIONS(5511), - [anon_sym_static_assert] = ACTIONS(5511), + [1943] = { + [sym_identifier] = ACTIONS(4999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_LPAREN2] = ACTIONS(5001), + [anon_sym_TILDE] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_PERCENT] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(5001), + [anon_sym_AMP_AMP] = ACTIONS(5001), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym_AMP] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(5001), + [anon_sym_BANG_EQ] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(5001), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_LT_LT] = ACTIONS(4999), + [anon_sym_GT_GT] = ACTIONS(4999), + [anon_sym___extension__] = ACTIONS(4999), + [anon_sym_extern] = ACTIONS(4999), + [anon_sym___attribute__] = ACTIONS(4999), + [anon_sym_COLON_COLON] = ACTIONS(5001), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5001), + [anon_sym___declspec] = ACTIONS(4999), + [anon_sym___based] = ACTIONS(4999), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(4999), + [anon_sym_EQ] = ACTIONS(4999), + [anon_sym_static] = ACTIONS(4999), + [anon_sym_register] = ACTIONS(4999), + [anon_sym_inline] = ACTIONS(4999), + [anon_sym___inline] = ACTIONS(4999), + [anon_sym___inline__] = ACTIONS(4999), + [anon_sym___forceinline] = ACTIONS(4999), + [anon_sym_thread_local] = ACTIONS(4999), + [anon_sym___thread] = ACTIONS(4999), + [anon_sym_const] = ACTIONS(4999), + [anon_sym_constexpr] = ACTIONS(4999), + [anon_sym_volatile] = ACTIONS(4999), + [anon_sym_restrict] = ACTIONS(4999), + [anon_sym___restrict__] = ACTIONS(4999), + [anon_sym__Atomic] = ACTIONS(4999), + [anon_sym__Noreturn] = ACTIONS(4999), + [anon_sym_noreturn] = ACTIONS(4999), + [anon_sym_mutable] = ACTIONS(4999), + [anon_sym_constinit] = ACTIONS(4999), + [anon_sym_consteval] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_STAR_EQ] = ACTIONS(5001), + [anon_sym_SLASH_EQ] = ACTIONS(5001), + [anon_sym_PERCENT_EQ] = ACTIONS(5001), + [anon_sym_PLUS_EQ] = ACTIONS(5001), + [anon_sym_DASH_EQ] = ACTIONS(5001), + [anon_sym_LT_LT_EQ] = ACTIONS(5001), + [anon_sym_GT_GT_EQ] = ACTIONS(5001), + [anon_sym_AMP_EQ] = ACTIONS(5001), + [anon_sym_CARET_EQ] = ACTIONS(5001), + [anon_sym_PIPE_EQ] = ACTIONS(5001), + [anon_sym_and_eq] = ACTIONS(4999), + [anon_sym_or_eq] = ACTIONS(4999), + [anon_sym_xor_eq] = ACTIONS(4999), + [anon_sym_LT_EQ_GT] = ACTIONS(5001), + [anon_sym_or] = ACTIONS(4999), + [anon_sym_and] = ACTIONS(4999), + [anon_sym_bitor] = ACTIONS(4999), + [anon_sym_xor] = ACTIONS(4999), + [anon_sym_bitand] = ACTIONS(4999), + [anon_sym_not_eq] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(5001), + [anon_sym_PLUS_PLUS] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(4999), + [anon_sym_DOT_STAR] = ACTIONS(5001), + [anon_sym_DASH_GT] = ACTIONS(4999), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4999), + [anon_sym_decltype] = ACTIONS(4999), + [anon_sym_virtual] = ACTIONS(4999), + [anon_sym_alignas] = ACTIONS(4999), + [anon_sym_template] = ACTIONS(4999), + [anon_sym_operator] = ACTIONS(4999), + [anon_sym_DASH_GT_STAR] = ACTIONS(5001), }, - [2124] = { - [sym_type_qualifier] = STATE(2124), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(5515), - [anon_sym_LPAREN2] = ACTIONS(5517), - [anon_sym_BANG] = ACTIONS(5517), - [anon_sym_TILDE] = ACTIONS(5517), - [anon_sym_DASH] = ACTIONS(5515), - [anon_sym_PLUS] = ACTIONS(5515), - [anon_sym_STAR] = ACTIONS(5517), - [anon_sym_AMP] = ACTIONS(5517), - [anon_sym___extension__] = ACTIONS(5519), - [anon_sym_COLON_COLON] = ACTIONS(5517), - [anon_sym_LBRACK] = ACTIONS(5517), - [anon_sym_RBRACK] = ACTIONS(5517), - [anon_sym_const] = ACTIONS(5519), - [anon_sym_constexpr] = ACTIONS(5519), - [anon_sym_volatile] = ACTIONS(5519), - [anon_sym_restrict] = ACTIONS(5519), - [anon_sym___restrict__] = ACTIONS(5519), - [anon_sym__Atomic] = ACTIONS(5519), - [anon_sym__Noreturn] = ACTIONS(5519), - [anon_sym_noreturn] = ACTIONS(5519), - [anon_sym_mutable] = ACTIONS(5519), - [anon_sym_constinit] = ACTIONS(5519), - [anon_sym_consteval] = ACTIONS(5519), - [sym_primitive_type] = ACTIONS(5515), - [anon_sym_not] = ACTIONS(5515), - [anon_sym_compl] = ACTIONS(5515), - [anon_sym_DASH_DASH] = ACTIONS(5517), - [anon_sym_PLUS_PLUS] = ACTIONS(5517), - [anon_sym_sizeof] = ACTIONS(5515), - [anon_sym___alignof__] = ACTIONS(5515), - [anon_sym___alignof] = ACTIONS(5515), - [anon_sym__alignof] = ACTIONS(5515), - [anon_sym_alignof] = ACTIONS(5515), - [anon_sym__Alignof] = ACTIONS(5515), - [anon_sym_offsetof] = ACTIONS(5515), - [anon_sym__Generic] = ACTIONS(5515), - [anon_sym_asm] = ACTIONS(5515), - [anon_sym___asm__] = ACTIONS(5515), - [sym_number_literal] = ACTIONS(5517), - [anon_sym_L_SQUOTE] = ACTIONS(5517), - [anon_sym_u_SQUOTE] = ACTIONS(5517), - [anon_sym_U_SQUOTE] = ACTIONS(5517), - [anon_sym_u8_SQUOTE] = ACTIONS(5517), - [anon_sym_SQUOTE] = ACTIONS(5517), - [anon_sym_L_DQUOTE] = ACTIONS(5517), - [anon_sym_u_DQUOTE] = ACTIONS(5517), - [anon_sym_U_DQUOTE] = ACTIONS(5517), - [anon_sym_u8_DQUOTE] = ACTIONS(5517), - [anon_sym_DQUOTE] = ACTIONS(5517), - [sym_true] = ACTIONS(5515), - [sym_false] = ACTIONS(5515), - [anon_sym_NULL] = ACTIONS(5515), - [anon_sym_nullptr] = ACTIONS(5515), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5515), - [anon_sym_template] = ACTIONS(5515), - [anon_sym_delete] = ACTIONS(5515), - [anon_sym_R_DQUOTE] = ACTIONS(5517), - [anon_sym_LR_DQUOTE] = ACTIONS(5517), - [anon_sym_uR_DQUOTE] = ACTIONS(5517), - [anon_sym_UR_DQUOTE] = ACTIONS(5517), - [anon_sym_u8R_DQUOTE] = ACTIONS(5517), - [anon_sym_co_await] = ACTIONS(5515), - [anon_sym_new] = ACTIONS(5515), - [anon_sym_requires] = ACTIONS(5515), - [sym_this] = ACTIONS(5515), + [1944] = { + [sym_identifier] = ACTIONS(5039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LPAREN2] = ACTIONS(5043), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5048), + [anon_sym___extension__] = ACTIONS(5039), + [anon_sym_extern] = ACTIONS(5039), + [anon_sym___attribute__] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5046), + [anon_sym___declspec] = ACTIONS(5039), + [anon_sym___based] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_static] = ACTIONS(5039), + [anon_sym_register] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym___inline] = ACTIONS(5039), + [anon_sym___inline__] = ACTIONS(5039), + [anon_sym___forceinline] = ACTIONS(5039), + [anon_sym_thread_local] = ACTIONS(5039), + [anon_sym___thread] = ACTIONS(5039), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5039), + [anon_sym_volatile] = ACTIONS(5039), + [anon_sym_restrict] = ACTIONS(5039), + [anon_sym___restrict__] = ACTIONS(5039), + [anon_sym__Atomic] = ACTIONS(5039), + [anon_sym__Noreturn] = ACTIONS(5039), + [anon_sym_noreturn] = ACTIONS(5039), + [anon_sym_mutable] = ACTIONS(5039), + [anon_sym_constinit] = ACTIONS(5039), + [anon_sym_consteval] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_LT_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_GT_EQ] = ACTIONS(5041), + [anon_sym_AMP_EQ] = ACTIONS(5041), + [anon_sym_CARET_EQ] = ACTIONS(5041), + [anon_sym_PIPE_EQ] = ACTIONS(5041), + [anon_sym_and_eq] = ACTIONS(5048), + [anon_sym_or_eq] = ACTIONS(5048), + [anon_sym_xor_eq] = ACTIONS(5048), + [anon_sym_LT_EQ_GT] = ACTIONS(5041), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_bitor] = ACTIONS(5048), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_bitand] = ACTIONS(5048), + [anon_sym_not_eq] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_DOT_STAR] = ACTIONS(5041), + [anon_sym_DASH_GT] = ACTIONS(5041), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5039), + [anon_sym_decltype] = ACTIONS(5039), + [anon_sym_virtual] = ACTIONS(5039), + [anon_sym_alignas] = ACTIONS(5039), + [anon_sym_template] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), }, - [2125] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_RPAREN] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), + [1945] = { + [sym_string_literal] = STATE(2243), + [sym_template_argument_list] = STATE(2099), + [sym_raw_string_literal] = STATE(2243), + [aux_sym_sized_type_specifier_repeat1] = STATE(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_RPAREN] = ACTIONS(4150), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4139), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4175), - [anon_sym_or_eq] = ACTIONS(4175), - [anon_sym_xor_eq] = ACTIONS(4175), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), - }, - [2126] = { - [sym_identifier] = ACTIONS(5522), - [aux_sym_preproc_def_token1] = ACTIONS(5522), - [aux_sym_preproc_if_token1] = ACTIONS(5522), - [aux_sym_preproc_if_token2] = ACTIONS(5522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), - [aux_sym_preproc_else_token1] = ACTIONS(5522), - [aux_sym_preproc_elif_token1] = ACTIONS(5522), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5522), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5522), - [sym_preproc_directive] = ACTIONS(5522), - [anon_sym_LPAREN2] = ACTIONS(5524), - [anon_sym_TILDE] = ACTIONS(5524), - [anon_sym_STAR] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(5522), - [anon_sym___extension__] = ACTIONS(5522), - [anon_sym_typedef] = ACTIONS(5522), - [anon_sym_extern] = ACTIONS(5522), - [anon_sym___attribute__] = ACTIONS(5522), - [anon_sym_COLON_COLON] = ACTIONS(5524), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5524), - [anon_sym___declspec] = ACTIONS(5522), - [anon_sym___based] = ACTIONS(5522), - [anon_sym_signed] = ACTIONS(5522), - [anon_sym_unsigned] = ACTIONS(5522), - [anon_sym_long] = ACTIONS(5522), - [anon_sym_short] = ACTIONS(5522), - [anon_sym_LBRACK] = ACTIONS(5522), - [anon_sym_static] = ACTIONS(5522), - [anon_sym_register] = ACTIONS(5522), - [anon_sym_inline] = ACTIONS(5522), - [anon_sym___inline] = ACTIONS(5522), - [anon_sym___inline__] = ACTIONS(5522), - [anon_sym___forceinline] = ACTIONS(5522), - [anon_sym_thread_local] = ACTIONS(5522), - [anon_sym___thread] = ACTIONS(5522), - [anon_sym_const] = ACTIONS(5522), - [anon_sym_constexpr] = ACTIONS(5522), - [anon_sym_volatile] = ACTIONS(5522), - [anon_sym_restrict] = ACTIONS(5522), - [anon_sym___restrict__] = ACTIONS(5522), - [anon_sym__Atomic] = ACTIONS(5522), - [anon_sym__Noreturn] = ACTIONS(5522), - [anon_sym_noreturn] = ACTIONS(5522), - [anon_sym_mutable] = ACTIONS(5522), - [anon_sym_constinit] = ACTIONS(5522), - [anon_sym_consteval] = ACTIONS(5522), - [sym_primitive_type] = ACTIONS(5522), - [anon_sym_enum] = ACTIONS(5522), - [anon_sym_class] = ACTIONS(5522), - [anon_sym_struct] = ACTIONS(5522), - [anon_sym_union] = ACTIONS(5522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5522), - [anon_sym_decltype] = ACTIONS(5522), - [anon_sym_virtual] = ACTIONS(5522), - [anon_sym_alignas] = ACTIONS(5522), - [anon_sym_explicit] = ACTIONS(5522), - [anon_sym_typename] = ACTIONS(5522), - [anon_sym_template] = ACTIONS(5522), - [anon_sym_operator] = ACTIONS(5522), - [anon_sym_friend] = ACTIONS(5522), - [anon_sym_public] = ACTIONS(5522), - [anon_sym_private] = ACTIONS(5522), - [anon_sym_protected] = ACTIONS(5522), - [anon_sym_using] = ACTIONS(5522), - [anon_sym_static_assert] = ACTIONS(5522), - }, - [2127] = { - [sym_identifier] = ACTIONS(3292), - [aux_sym_preproc_def_token1] = ACTIONS(3292), - [aux_sym_preproc_if_token1] = ACTIONS(3292), - [aux_sym_preproc_if_token2] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3292), - [aux_sym_preproc_else_token1] = ACTIONS(3292), - [aux_sym_preproc_elif_token1] = ACTIONS(3292), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3292), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3292), - [sym_preproc_directive] = ACTIONS(3292), - [anon_sym_LPAREN2] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_AMP_AMP] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3292), - [anon_sym___extension__] = ACTIONS(3292), - [anon_sym_typedef] = ACTIONS(3292), - [anon_sym_extern] = ACTIONS(3292), - [anon_sym___attribute__] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3294), - [anon_sym___declspec] = ACTIONS(3292), - [anon_sym___based] = ACTIONS(3292), - [anon_sym_signed] = ACTIONS(3292), - [anon_sym_unsigned] = ACTIONS(3292), - [anon_sym_long] = ACTIONS(3292), - [anon_sym_short] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_register] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym___inline] = ACTIONS(3292), - [anon_sym___inline__] = ACTIONS(3292), - [anon_sym___forceinline] = ACTIONS(3292), - [anon_sym_thread_local] = ACTIONS(3292), - [anon_sym___thread] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_constexpr] = ACTIONS(3292), - [anon_sym_volatile] = ACTIONS(3292), - [anon_sym_restrict] = ACTIONS(3292), - [anon_sym___restrict__] = ACTIONS(3292), - [anon_sym__Atomic] = ACTIONS(3292), - [anon_sym__Noreturn] = ACTIONS(3292), - [anon_sym_noreturn] = ACTIONS(3292), - [anon_sym_mutable] = ACTIONS(3292), - [anon_sym_constinit] = ACTIONS(3292), - [anon_sym_consteval] = ACTIONS(3292), - [sym_primitive_type] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3292), - [anon_sym_union] = ACTIONS(3292), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3292), - [anon_sym_decltype] = ACTIONS(3292), - [anon_sym_virtual] = ACTIONS(3292), - [anon_sym_alignas] = ACTIONS(3292), - [anon_sym_explicit] = ACTIONS(3292), - [anon_sym_typename] = ACTIONS(3292), - [anon_sym_template] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_friend] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_static_assert] = ACTIONS(3292), - }, - [2128] = { - [sym_identifier] = ACTIONS(3280), - [aux_sym_preproc_def_token1] = ACTIONS(3280), - [aux_sym_preproc_if_token1] = ACTIONS(3280), - [aux_sym_preproc_if_token2] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3280), - [aux_sym_preproc_else_token1] = ACTIONS(3280), - [aux_sym_preproc_elif_token1] = ACTIONS(3280), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3280), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3280), - [sym_preproc_directive] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_STAR] = ACTIONS(3282), - [anon_sym_AMP_AMP] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym___extension__] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3282), - [anon_sym___declspec] = ACTIONS(3280), - [anon_sym___based] = ACTIONS(3280), - [anon_sym_signed] = ACTIONS(3280), - [anon_sym_unsigned] = ACTIONS(3280), - [anon_sym_long] = ACTIONS(3280), - [anon_sym_short] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_register] = ACTIONS(3280), - [anon_sym_inline] = ACTIONS(3280), - [anon_sym___inline] = ACTIONS(3280), - [anon_sym___inline__] = ACTIONS(3280), - [anon_sym___forceinline] = ACTIONS(3280), - [anon_sym_thread_local] = ACTIONS(3280), - [anon_sym___thread] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_constexpr] = ACTIONS(3280), - [anon_sym_volatile] = ACTIONS(3280), - [anon_sym_restrict] = ACTIONS(3280), - [anon_sym___restrict__] = ACTIONS(3280), - [anon_sym__Atomic] = ACTIONS(3280), - [anon_sym__Noreturn] = ACTIONS(3280), - [anon_sym_noreturn] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [sym_primitive_type] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_struct] = ACTIONS(3280), - [anon_sym_union] = ACTIONS(3280), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3280), - [anon_sym_decltype] = ACTIONS(3280), - [anon_sym_virtual] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym_explicit] = ACTIONS(3280), - [anon_sym_typename] = ACTIONS(3280), - [anon_sym_template] = ACTIONS(3280), - [anon_sym_operator] = ACTIONS(3280), - [anon_sym_friend] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_protected] = ACTIONS(3280), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_static_assert] = ACTIONS(3280), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5064), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym___extension__] = ACTIONS(4143), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(5058), + [anon_sym_unsigned] = ACTIONS(5058), + [anon_sym_long] = ACTIONS(5058), + [anon_sym_short] = ACTIONS(5058), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4143), + [anon_sym_volatile] = ACTIONS(4143), + [anon_sym_restrict] = ACTIONS(4143), + [anon_sym___restrict__] = ACTIONS(4143), + [anon_sym__Atomic] = ACTIONS(4143), + [anon_sym__Noreturn] = ACTIONS(4143), + [anon_sym_noreturn] = ACTIONS(4143), + [anon_sym_mutable] = ACTIONS(4143), + [anon_sym_constinit] = ACTIONS(4143), + [anon_sym_consteval] = ACTIONS(4143), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4137), + [anon_sym_or_eq] = ACTIONS(4137), + [anon_sym_xor_eq] = ACTIONS(4137), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4145), + [anon_sym_L_DQUOTE] = ACTIONS(5060), + [anon_sym_u_DQUOTE] = ACTIONS(5060), + [anon_sym_U_DQUOTE] = ACTIONS(5060), + [anon_sym_u8_DQUOTE] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4143), + [anon_sym_decltype] = ACTIONS(4143), + [anon_sym_R_DQUOTE] = ACTIONS(5062), + [anon_sym_LR_DQUOTE] = ACTIONS(5062), + [anon_sym_uR_DQUOTE] = ACTIONS(5062), + [anon_sym_UR_DQUOTE] = ACTIONS(5062), + [anon_sym_u8R_DQUOTE] = ACTIONS(5062), + [anon_sym_DASH_GT_STAR] = ACTIONS(4137), }, - [2129] = { - [sym_identifier] = ACTIONS(3270), - [aux_sym_preproc_def_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token2] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), - [aux_sym_preproc_else_token1] = ACTIONS(3270), - [aux_sym_preproc_elif_token1] = ACTIONS(3270), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3270), - [sym_preproc_directive] = ACTIONS(3270), - [anon_sym_LPAREN2] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), - [anon_sym___declspec] = ACTIONS(3270), - [anon_sym___based] = ACTIONS(3270), - [anon_sym_signed] = ACTIONS(3270), - [anon_sym_unsigned] = ACTIONS(3270), - [anon_sym_long] = ACTIONS(3270), - [anon_sym_short] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_register] = ACTIONS(3270), - [anon_sym_inline] = ACTIONS(3270), - [anon_sym___inline] = ACTIONS(3270), - [anon_sym___inline__] = ACTIONS(3270), - [anon_sym___forceinline] = ACTIONS(3270), - [anon_sym_thread_local] = ACTIONS(3270), - [anon_sym___thread] = ACTIONS(3270), - [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_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [sym_primitive_type] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), + [1946] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym__abstract_declarator] = STATE(7247), + [sym_abstract_parenthesized_declarator] = STATE(6663), + [sym_abstract_pointer_declarator] = STATE(6663), + [sym_abstract_function_declarator] = STATE(6663), + [sym_abstract_array_declarator] = STATE(6663), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_list] = STATE(4175), + [sym_parameter_declaration] = STATE(7970), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(7970), + [sym_variadic_parameter_declaration] = STATE(7970), + [sym_abstract_reference_declarator] = STATE(6663), + [sym__function_declarator_seq] = STATE(6627), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(5069), + [anon_sym_STAR] = ACTIONS(5071), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_AMP] = ACTIONS(5075), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3270), - [anon_sym_decltype] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_friend] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(2042), + [anon_sym_template] = ACTIONS(1428), }, - [2130] = { - [sym_identifier] = ACTIONS(5008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5010), - [anon_sym_COMMA] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(5010), - [anon_sym_LPAREN2] = ACTIONS(5010), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5010), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5010), - [anon_sym_PIPE_PIPE] = ACTIONS(5010), - [anon_sym_AMP_AMP] = ACTIONS(5010), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5010), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5010), - [anon_sym_BANG_EQ] = ACTIONS(5010), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_GT_EQ] = ACTIONS(5010), - [anon_sym_LT_EQ] = ACTIONS(5008), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5010), - [anon_sym_GT_GT] = ACTIONS(5010), - [anon_sym_SEMI] = ACTIONS(5010), - [anon_sym___extension__] = ACTIONS(5008), - [anon_sym___attribute__] = ACTIONS(5008), - [anon_sym_COLON_COLON] = ACTIONS(5010), - [anon_sym___based] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_signed] = ACTIONS(5008), - [anon_sym_unsigned] = ACTIONS(5008), - [anon_sym_long] = ACTIONS(5008), - [anon_sym_short] = ACTIONS(5008), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_RBRACK] = ACTIONS(5010), - [anon_sym_const] = ACTIONS(5008), - [anon_sym_constexpr] = ACTIONS(5008), - [anon_sym_volatile] = ACTIONS(5008), - [anon_sym_restrict] = ACTIONS(5008), - [anon_sym___restrict__] = ACTIONS(5008), - [anon_sym__Atomic] = ACTIONS(5008), - [anon_sym__Noreturn] = ACTIONS(5008), - [anon_sym_noreturn] = ACTIONS(5008), - [anon_sym_mutable] = ACTIONS(5008), - [anon_sym_constinit] = ACTIONS(5008), - [anon_sym_consteval] = ACTIONS(5008), - [sym_primitive_type] = ACTIONS(5008), - [anon_sym_COLON] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(5010), - [anon_sym_LT_EQ_GT] = ACTIONS(5010), - [anon_sym_or] = ACTIONS(5008), - [anon_sym_and] = ACTIONS(5008), - [anon_sym_bitor] = ACTIONS(5008), - [anon_sym_xor] = ACTIONS(5008), - [anon_sym_bitand] = ACTIONS(5008), - [anon_sym_not_eq] = ACTIONS(5008), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_PLUS_PLUS] = ACTIONS(5010), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_DOT_STAR] = ACTIONS(5010), - [anon_sym_DASH_GT] = ACTIONS(5010), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5008), - [anon_sym_decltype] = ACTIONS(5008), - [anon_sym_final] = ACTIONS(5008), - [anon_sym_override] = ACTIONS(5008), - [anon_sym_requires] = ACTIONS(5008), + [1947] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym__abstract_declarator] = STATE(7259), + [sym_abstract_parenthesized_declarator] = STATE(6663), + [sym_abstract_pointer_declarator] = STATE(6663), + [sym_abstract_function_declarator] = STATE(6663), + [sym_abstract_array_declarator] = STATE(6663), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_list] = STATE(4175), + [sym_parameter_declaration] = STATE(7970), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(7970), + [sym_variadic_parameter_declaration] = STATE(7970), + [sym_abstract_reference_declarator] = STATE(6663), + [sym__function_declarator_seq] = STATE(6627), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), + [anon_sym_RPAREN] = ACTIONS(4403), + [anon_sym_LPAREN2] = ACTIONS(5069), + [anon_sym_STAR] = ACTIONS(5071), + [anon_sym_AMP_AMP] = ACTIONS(5073), + [anon_sym_AMP] = ACTIONS(5075), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(2042), + [anon_sym_template] = ACTIONS(1428), }, - [2131] = { - [sym_string_literal] = STATE(2259), - [sym_template_argument_list] = STATE(3335), - [sym_raw_string_literal] = STATE(2259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_RPAREN] = ACTIONS(5526), - [anon_sym_LPAREN2] = ACTIONS(5526), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), + [1948] = { + [sym_string_literal] = STATE(3955), + [sym_template_argument_list] = STATE(3608), + [sym_raw_string_literal] = STATE(3955), + [aux_sym_sized_type_specifier_repeat1] = STATE(2903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4150), + [anon_sym_COMMA] = ACTIONS(4150), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5529), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4145), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym___extension__] = ACTIONS(4143), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(5084), + [anon_sym_unsigned] = ACTIONS(5084), + [anon_sym_long] = ACTIONS(5084), + [anon_sym_short] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(5086), + [anon_sym_const] = ACTIONS(4135), + [anon_sym_constexpr] = ACTIONS(4143), + [anon_sym_volatile] = ACTIONS(4143), + [anon_sym_restrict] = ACTIONS(4143), + [anon_sym___restrict__] = ACTIONS(4143), + [anon_sym__Atomic] = ACTIONS(4143), + [anon_sym__Noreturn] = ACTIONS(4143), + [anon_sym_noreturn] = ACTIONS(4143), + [anon_sym_mutable] = ACTIONS(4143), + [anon_sym_constinit] = ACTIONS(4143), + [anon_sym_consteval] = ACTIONS(4143), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(5088), + [anon_sym_SLASH_EQ] = ACTIONS(5088), + [anon_sym_PERCENT_EQ] = ACTIONS(5088), + [anon_sym_PLUS_EQ] = ACTIONS(5088), + [anon_sym_DASH_EQ] = ACTIONS(5088), + [anon_sym_LT_LT_EQ] = ACTIONS(5088), + [anon_sym_GT_GT_EQ] = ACTIONS(5086), + [anon_sym_AMP_EQ] = ACTIONS(5088), + [anon_sym_CARET_EQ] = ACTIONS(5088), + [anon_sym_PIPE_EQ] = ACTIONS(5088), + [anon_sym_and_eq] = ACTIONS(5088), + [anon_sym_or_eq] = ACTIONS(5088), + [anon_sym_xor_eq] = ACTIONS(5088), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(5090), + [anon_sym_u_DQUOTE] = ACTIONS(5090), + [anon_sym_U_DQUOTE] = ACTIONS(5090), + [anon_sym_u8_DQUOTE] = ACTIONS(5090), + [anon_sym_DQUOTE] = ACTIONS(5090), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4143), + [anon_sym_decltype] = ACTIONS(4143), + [anon_sym_GT2] = ACTIONS(4150), + [anon_sym_R_DQUOTE] = ACTIONS(5092), + [anon_sym_LR_DQUOTE] = ACTIONS(5092), + [anon_sym_uR_DQUOTE] = ACTIONS(5092), + [anon_sym_UR_DQUOTE] = ACTIONS(5092), + [anon_sym_u8R_DQUOTE] = ACTIONS(5092), + }, + [1949] = { + [sym_identifier] = ACTIONS(5035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_RPAREN] = ACTIONS(5037), + [anon_sym_LPAREN2] = ACTIONS(5037), + [anon_sym_TILDE] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5035), + [anon_sym_CARET] = ACTIONS(5035), + [anon_sym_AMP] = ACTIONS(5035), + [anon_sym_EQ_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5035), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_LT_LT] = ACTIONS(5035), + [anon_sym_GT_GT] = ACTIONS(5035), + [anon_sym___extension__] = ACTIONS(5035), + [anon_sym_extern] = ACTIONS(5035), + [anon_sym___attribute__] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5037), + [anon_sym___declspec] = ACTIONS(5035), + [anon_sym___based] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_static] = ACTIONS(5035), + [anon_sym_register] = ACTIONS(5035), + [anon_sym_inline] = ACTIONS(5035), + [anon_sym___inline] = ACTIONS(5035), + [anon_sym___inline__] = ACTIONS(5035), + [anon_sym___forceinline] = ACTIONS(5035), + [anon_sym_thread_local] = ACTIONS(5035), + [anon_sym___thread] = ACTIONS(5035), + [anon_sym_const] = ACTIONS(5035), + [anon_sym_constexpr] = ACTIONS(5035), + [anon_sym_volatile] = ACTIONS(5035), + [anon_sym_restrict] = ACTIONS(5035), + [anon_sym___restrict__] = ACTIONS(5035), + [anon_sym__Atomic] = ACTIONS(5035), + [anon_sym__Noreturn] = ACTIONS(5035), + [anon_sym_noreturn] = ACTIONS(5035), + [anon_sym_mutable] = ACTIONS(5035), + [anon_sym_constinit] = ACTIONS(5035), + [anon_sym_consteval] = ACTIONS(5035), + [anon_sym_QMARK] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_LT_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_GT_EQ] = ACTIONS(5037), + [anon_sym_AMP_EQ] = ACTIONS(5037), + [anon_sym_CARET_EQ] = ACTIONS(5037), + [anon_sym_PIPE_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ_GT] = ACTIONS(5037), + [anon_sym_or] = ACTIONS(5035), + [anon_sym_and] = ACTIONS(5035), + [anon_sym_bitor] = ACTIONS(5035), + [anon_sym_xor] = ACTIONS(5035), + [anon_sym_bitand] = ACTIONS(5035), + [anon_sym_not_eq] = ACTIONS(5035), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_DOT_STAR] = ACTIONS(5037), + [anon_sym_DASH_GT] = ACTIONS(5035), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5035), + [anon_sym_decltype] = ACTIONS(5035), + [anon_sym_virtual] = ACTIONS(5035), + [anon_sym_alignas] = ACTIONS(5035), + [anon_sym_template] = ACTIONS(5035), + [anon_sym_operator] = ACTIONS(5035), + [anon_sym_DASH_GT_STAR] = ACTIONS(5037), + }, + [1950] = { + [sym_identifier] = ACTIONS(4995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LPAREN2] = ACTIONS(4997), + [anon_sym_TILDE] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_PERCENT] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4997), + [anon_sym_AMP_AMP] = ACTIONS(4997), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4997), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_LT_LT] = ACTIONS(4995), + [anon_sym_GT_GT] = ACTIONS(4995), + [anon_sym___extension__] = ACTIONS(4995), + [anon_sym_extern] = ACTIONS(4995), + [anon_sym___attribute__] = ACTIONS(4995), + [anon_sym_COLON_COLON] = ACTIONS(4997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4997), + [anon_sym___declspec] = ACTIONS(4995), + [anon_sym___based] = ACTIONS(4995), + [anon_sym_LBRACE] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_EQ] = ACTIONS(4995), + [anon_sym_static] = ACTIONS(4995), + [anon_sym_register] = ACTIONS(4995), + [anon_sym_inline] = ACTIONS(4995), + [anon_sym___inline] = ACTIONS(4995), + [anon_sym___inline__] = ACTIONS(4995), + [anon_sym___forceinline] = ACTIONS(4995), + [anon_sym_thread_local] = ACTIONS(4995), + [anon_sym___thread] = ACTIONS(4995), + [anon_sym_const] = ACTIONS(4995), + [anon_sym_constexpr] = ACTIONS(4995), + [anon_sym_volatile] = ACTIONS(4995), + [anon_sym_restrict] = ACTIONS(4995), + [anon_sym___restrict__] = ACTIONS(4995), + [anon_sym__Atomic] = ACTIONS(4995), + [anon_sym__Noreturn] = ACTIONS(4995), + [anon_sym_noreturn] = ACTIONS(4995), + [anon_sym_mutable] = ACTIONS(4995), + [anon_sym_constinit] = ACTIONS(4995), + [anon_sym_consteval] = ACTIONS(4995), + [anon_sym_QMARK] = ACTIONS(4997), + [anon_sym_STAR_EQ] = ACTIONS(4997), + [anon_sym_SLASH_EQ] = ACTIONS(4997), + [anon_sym_PERCENT_EQ] = ACTIONS(4997), + [anon_sym_PLUS_EQ] = ACTIONS(4997), + [anon_sym_DASH_EQ] = ACTIONS(4997), + [anon_sym_LT_LT_EQ] = ACTIONS(4997), + [anon_sym_GT_GT_EQ] = ACTIONS(4997), + [anon_sym_AMP_EQ] = ACTIONS(4997), + [anon_sym_CARET_EQ] = ACTIONS(4997), + [anon_sym_PIPE_EQ] = ACTIONS(4997), + [anon_sym_LT_EQ_GT] = ACTIONS(4997), + [anon_sym_or] = ACTIONS(4995), + [anon_sym_and] = ACTIONS(4995), + [anon_sym_bitor] = ACTIONS(4995), + [anon_sym_xor] = ACTIONS(4995), + [anon_sym_bitand] = ACTIONS(4995), + [anon_sym_not_eq] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4997), + [anon_sym_DOT] = ACTIONS(4995), + [anon_sym_DOT_STAR] = ACTIONS(4997), + [anon_sym_DASH_GT] = ACTIONS(4995), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4995), + [anon_sym_decltype] = ACTIONS(4995), + [anon_sym_virtual] = ACTIONS(4995), + [anon_sym_alignas] = ACTIONS(4995), + [anon_sym_template] = ACTIONS(4995), + [anon_sym_operator] = ACTIONS(4995), + [anon_sym_DASH_GT_STAR] = ACTIONS(4997), + }, + [1951] = { + [sym_identifier] = ACTIONS(5039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LPAREN2] = ACTIONS(5043), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5048), + [anon_sym___extension__] = ACTIONS(5039), + [anon_sym_extern] = ACTIONS(5039), + [anon_sym___attribute__] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5046), + [anon_sym___declspec] = ACTIONS(5039), + [anon_sym___based] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5050), + [anon_sym_static] = ACTIONS(5039), + [anon_sym_register] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym___inline] = ACTIONS(5039), + [anon_sym___inline__] = ACTIONS(5039), + [anon_sym___forceinline] = ACTIONS(5039), + [anon_sym_thread_local] = ACTIONS(5039), + [anon_sym___thread] = ACTIONS(5039), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5039), + [anon_sym_volatile] = ACTIONS(5039), + [anon_sym_restrict] = ACTIONS(5039), + [anon_sym___restrict__] = ACTIONS(5039), + [anon_sym__Atomic] = ACTIONS(5039), + [anon_sym__Noreturn] = ACTIONS(5039), + [anon_sym_noreturn] = ACTIONS(5039), + [anon_sym_mutable] = ACTIONS(5039), + [anon_sym_constinit] = ACTIONS(5039), + [anon_sym_consteval] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_LT_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_GT_EQ] = ACTIONS(5041), + [anon_sym_AMP_EQ] = ACTIONS(5041), + [anon_sym_CARET_EQ] = ACTIONS(5041), + [anon_sym_PIPE_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ_GT] = ACTIONS(5041), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_bitor] = ACTIONS(5048), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_bitand] = ACTIONS(5048), + [anon_sym_not_eq] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_DOT_STAR] = ACTIONS(5041), + [anon_sym_DASH_GT] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5039), + [anon_sym_decltype] = ACTIONS(5039), + [anon_sym_virtual] = ACTIONS(5039), + [anon_sym_alignas] = ACTIONS(5039), + [anon_sym_template] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), + [anon_sym_DASH_GT_STAR] = ACTIONS(5041), + }, + [1952] = { + [sym_identifier] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_TILDE] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5024), + [anon_sym___extension__] = ACTIONS(5024), + [anon_sym_extern] = ACTIONS(5024), + [anon_sym___attribute__] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(5026), [anon_sym_LBRACK_LBRACK] = ACTIONS(5026), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(5532), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4139), - [anon_sym_or_eq] = ACTIONS(4139), - [anon_sym_xor_eq] = ACTIONS(4139), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4147), - [anon_sym_L_DQUOTE] = ACTIONS(5451), - [anon_sym_u_DQUOTE] = ACTIONS(5451), - [anon_sym_U_DQUOTE] = ACTIONS(5451), - [anon_sym_u8_DQUOTE] = ACTIONS(5451), - [anon_sym_DQUOTE] = ACTIONS(5451), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5453), - [anon_sym_LR_DQUOTE] = ACTIONS(5453), - [anon_sym_uR_DQUOTE] = ACTIONS(5453), - [anon_sym_UR_DQUOTE] = ACTIONS(5453), - [anon_sym_u8R_DQUOTE] = ACTIONS(5453), - [anon_sym_DASH_GT_STAR] = ACTIONS(4139), + [anon_sym___declspec] = ACTIONS(5024), + [anon_sym___based] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_static] = ACTIONS(5024), + [anon_sym_register] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym___inline] = ACTIONS(5024), + [anon_sym___inline__] = ACTIONS(5024), + [anon_sym___forceinline] = ACTIONS(5024), + [anon_sym_thread_local] = ACTIONS(5024), + [anon_sym___thread] = ACTIONS(5024), + [anon_sym_const] = ACTIONS(5024), + [anon_sym_constexpr] = ACTIONS(5024), + [anon_sym_volatile] = ACTIONS(5024), + [anon_sym_restrict] = ACTIONS(5024), + [anon_sym___restrict__] = ACTIONS(5024), + [anon_sym__Atomic] = ACTIONS(5024), + [anon_sym__Noreturn] = ACTIONS(5024), + [anon_sym_noreturn] = ACTIONS(5024), + [anon_sym_mutable] = ACTIONS(5024), + [anon_sym_constinit] = ACTIONS(5024), + [anon_sym_consteval] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_LT_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_GT_EQ] = ACTIONS(5026), + [anon_sym_AMP_EQ] = ACTIONS(5026), + [anon_sym_CARET_EQ] = ACTIONS(5026), + [anon_sym_PIPE_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ_GT] = ACTIONS(5026), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_bitor] = ACTIONS(5024), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_bitand] = ACTIONS(5024), + [anon_sym_not_eq] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_DOT_STAR] = ACTIONS(5026), + [anon_sym_DASH_GT] = ACTIONS(5024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5024), + [anon_sym_decltype] = ACTIONS(5024), + [anon_sym_virtual] = ACTIONS(5024), + [anon_sym_alignas] = ACTIONS(5024), + [anon_sym_template] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_DASH_GT_STAR] = ACTIONS(5026), }, - [2132] = { - [sym_identifier] = ACTIONS(4964), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_LPAREN2] = ACTIONS(4966), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4966), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4966), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_CARET] = ACTIONS(4966), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4964), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4966), - [anon_sym_GT_GT] = ACTIONS(4966), - [anon_sym_SEMI] = ACTIONS(4966), - [anon_sym___extension__] = ACTIONS(4964), - [anon_sym___attribute__] = ACTIONS(4964), - [anon_sym_COLON_COLON] = ACTIONS(4966), - [anon_sym___based] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_signed] = ACTIONS(4964), - [anon_sym_unsigned] = ACTIONS(4964), - [anon_sym_long] = ACTIONS(4964), - [anon_sym_short] = ACTIONS(4964), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_RBRACK] = ACTIONS(4966), - [anon_sym_const] = ACTIONS(4964), - [anon_sym_constexpr] = ACTIONS(4964), - [anon_sym_volatile] = ACTIONS(4964), - [anon_sym_restrict] = ACTIONS(4964), - [anon_sym___restrict__] = ACTIONS(4964), - [anon_sym__Atomic] = ACTIONS(4964), - [anon_sym__Noreturn] = ACTIONS(4964), - [anon_sym_noreturn] = ACTIONS(4964), - [anon_sym_mutable] = ACTIONS(4964), - [anon_sym_constinit] = ACTIONS(4964), - [anon_sym_consteval] = ACTIONS(4964), - [sym_primitive_type] = ACTIONS(4964), - [anon_sym_COLON] = ACTIONS(4964), - [anon_sym_QMARK] = ACTIONS(4966), - [anon_sym_LT_EQ_GT] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4964), - [anon_sym_and] = ACTIONS(4964), - [anon_sym_bitor] = ACTIONS(4964), - [anon_sym_xor] = ACTIONS(4964), - [anon_sym_bitand] = ACTIONS(4964), - [anon_sym_not_eq] = ACTIONS(4964), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_DOT_STAR] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4966), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4964), - [anon_sym_decltype] = ACTIONS(4964), - [anon_sym_final] = ACTIONS(4964), - [anon_sym_override] = ACTIONS(4964), - [anon_sym_requires] = ACTIONS(4964), + [1953] = { + [sym_identifier] = ACTIONS(4999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_LPAREN2] = ACTIONS(5001), + [anon_sym_TILDE] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_PERCENT] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(5001), + [anon_sym_AMP_AMP] = ACTIONS(5001), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym_AMP] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(5001), + [anon_sym_BANG_EQ] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(5001), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_LT_LT] = ACTIONS(4999), + [anon_sym_GT_GT] = ACTIONS(4999), + [anon_sym___extension__] = ACTIONS(4999), + [anon_sym_extern] = ACTIONS(4999), + [anon_sym___attribute__] = ACTIONS(4999), + [anon_sym_COLON_COLON] = ACTIONS(5001), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5001), + [anon_sym___declspec] = ACTIONS(4999), + [anon_sym___based] = ACTIONS(4999), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(4999), + [anon_sym_EQ] = ACTIONS(4999), + [anon_sym_static] = ACTIONS(4999), + [anon_sym_register] = ACTIONS(4999), + [anon_sym_inline] = ACTIONS(4999), + [anon_sym___inline] = ACTIONS(4999), + [anon_sym___inline__] = ACTIONS(4999), + [anon_sym___forceinline] = ACTIONS(4999), + [anon_sym_thread_local] = ACTIONS(4999), + [anon_sym___thread] = ACTIONS(4999), + [anon_sym_const] = ACTIONS(4999), + [anon_sym_constexpr] = ACTIONS(4999), + [anon_sym_volatile] = ACTIONS(4999), + [anon_sym_restrict] = ACTIONS(4999), + [anon_sym___restrict__] = ACTIONS(4999), + [anon_sym__Atomic] = ACTIONS(4999), + [anon_sym__Noreturn] = ACTIONS(4999), + [anon_sym_noreturn] = ACTIONS(4999), + [anon_sym_mutable] = ACTIONS(4999), + [anon_sym_constinit] = ACTIONS(4999), + [anon_sym_consteval] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_STAR_EQ] = ACTIONS(5001), + [anon_sym_SLASH_EQ] = ACTIONS(5001), + [anon_sym_PERCENT_EQ] = ACTIONS(5001), + [anon_sym_PLUS_EQ] = ACTIONS(5001), + [anon_sym_DASH_EQ] = ACTIONS(5001), + [anon_sym_LT_LT_EQ] = ACTIONS(5001), + [anon_sym_GT_GT_EQ] = ACTIONS(5001), + [anon_sym_AMP_EQ] = ACTIONS(5001), + [anon_sym_CARET_EQ] = ACTIONS(5001), + [anon_sym_PIPE_EQ] = ACTIONS(5001), + [anon_sym_LT_EQ_GT] = ACTIONS(5001), + [anon_sym_or] = ACTIONS(4999), + [anon_sym_and] = ACTIONS(4999), + [anon_sym_bitor] = ACTIONS(4999), + [anon_sym_xor] = ACTIONS(4999), + [anon_sym_bitand] = ACTIONS(4999), + [anon_sym_not_eq] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(5001), + [anon_sym_PLUS_PLUS] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(4999), + [anon_sym_DOT_STAR] = ACTIONS(5001), + [anon_sym_DASH_GT] = ACTIONS(4999), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4999), + [anon_sym_decltype] = ACTIONS(4999), + [anon_sym_virtual] = ACTIONS(4999), + [anon_sym_alignas] = ACTIONS(4999), + [anon_sym_template] = ACTIONS(4999), + [anon_sym_operator] = ACTIONS(4999), + [anon_sym_DASH_GT_STAR] = ACTIONS(5001), }, - [2133] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3946), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_RPAREN] = ACTIONS(5388), - [anon_sym_LPAREN2] = ACTIONS(5388), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5388), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(5390), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(5030), - [anon_sym_or_eq] = ACTIONS(5030), - [anon_sym_xor_eq] = ACTIONS(5030), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4147), - [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_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(4216), - [anon_sym_LR_DQUOTE] = ACTIONS(4216), - [anon_sym_uR_DQUOTE] = ACTIONS(4216), - [anon_sym_UR_DQUOTE] = ACTIONS(4216), - [anon_sym_u8R_DQUOTE] = ACTIONS(4216), - [anon_sym_DASH_GT_STAR] = ACTIONS(4139), + [1954] = { + [sym_identifier] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5030), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_TILDE] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5028), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym_extern] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym_COLON_COLON] = ACTIONS(5030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5030), + [anon_sym___declspec] = ACTIONS(5028), + [anon_sym___based] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_static] = ACTIONS(5028), + [anon_sym_register] = ACTIONS(5028), + [anon_sym_inline] = ACTIONS(5028), + [anon_sym___inline] = ACTIONS(5028), + [anon_sym___inline__] = ACTIONS(5028), + [anon_sym___forceinline] = ACTIONS(5028), + [anon_sym_thread_local] = ACTIONS(5028), + [anon_sym___thread] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_restrict] = ACTIONS(5028), + [anon_sym___restrict__] = ACTIONS(5028), + [anon_sym__Atomic] = ACTIONS(5028), + [anon_sym__Noreturn] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_mutable] = ACTIONS(5028), + [anon_sym_constinit] = ACTIONS(5028), + [anon_sym_consteval] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_STAR_EQ] = ACTIONS(5030), + [anon_sym_SLASH_EQ] = ACTIONS(5030), + [anon_sym_PERCENT_EQ] = ACTIONS(5030), + [anon_sym_PLUS_EQ] = ACTIONS(5030), + [anon_sym_DASH_EQ] = ACTIONS(5030), + [anon_sym_LT_LT_EQ] = ACTIONS(5030), + [anon_sym_GT_GT_EQ] = ACTIONS(5030), + [anon_sym_AMP_EQ] = ACTIONS(5030), + [anon_sym_CARET_EQ] = ACTIONS(5030), + [anon_sym_PIPE_EQ] = ACTIONS(5030), + [anon_sym_LT_EQ_GT] = ACTIONS(5030), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_bitor] = ACTIONS(5028), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_bitand] = ACTIONS(5028), + [anon_sym_not_eq] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_DOT_STAR] = ACTIONS(5030), + [anon_sym_DASH_GT] = ACTIONS(5028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5028), + [anon_sym_decltype] = ACTIONS(5028), + [anon_sym_virtual] = ACTIONS(5028), + [anon_sym_alignas] = ACTIONS(5028), + [anon_sym_template] = ACTIONS(5028), + [anon_sym_operator] = ACTIONS(5028), + [anon_sym_DASH_GT_STAR] = ACTIONS(5030), }, - [2134] = { - [sym_identifier] = ACTIONS(5455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5457), - [anon_sym_COMMA] = ACTIONS(5457), - [anon_sym_RPAREN] = ACTIONS(5457), - [anon_sym_LPAREN2] = ACTIONS(5457), - [anon_sym_DASH] = ACTIONS(5455), - [anon_sym_PLUS] = ACTIONS(5455), - [anon_sym_STAR] = ACTIONS(5457), - [anon_sym_SLASH] = ACTIONS(5455), - [anon_sym_PERCENT] = ACTIONS(5457), - [anon_sym_PIPE_PIPE] = ACTIONS(5457), - [anon_sym_AMP_AMP] = ACTIONS(5457), - [anon_sym_PIPE] = ACTIONS(5455), - [anon_sym_CARET] = ACTIONS(5457), - [anon_sym_AMP] = ACTIONS(5455), - [anon_sym_EQ_EQ] = ACTIONS(5457), - [anon_sym_BANG_EQ] = ACTIONS(5457), - [anon_sym_GT] = ACTIONS(5455), - [anon_sym_GT_EQ] = ACTIONS(5457), - [anon_sym_LT_EQ] = ACTIONS(5455), - [anon_sym_LT] = ACTIONS(5455), - [anon_sym_LT_LT] = ACTIONS(5457), - [anon_sym_GT_GT] = ACTIONS(5457), - [anon_sym_SEMI] = ACTIONS(5457), - [anon_sym___extension__] = ACTIONS(5455), - [anon_sym___attribute__] = ACTIONS(5455), - [anon_sym_COLON_COLON] = ACTIONS(5386), - [anon_sym___based] = ACTIONS(5455), - [anon_sym_LBRACE] = ACTIONS(5457), - [anon_sym_RBRACE] = ACTIONS(5457), - [anon_sym_signed] = ACTIONS(5455), - [anon_sym_unsigned] = ACTIONS(5455), - [anon_sym_long] = ACTIONS(5455), - [anon_sym_short] = ACTIONS(5455), - [anon_sym_LBRACK] = ACTIONS(5457), - [anon_sym_RBRACK] = ACTIONS(5457), - [anon_sym_const] = ACTIONS(5455), - [anon_sym_constexpr] = ACTIONS(5455), - [anon_sym_volatile] = ACTIONS(5455), - [anon_sym_restrict] = ACTIONS(5455), - [anon_sym___restrict__] = ACTIONS(5455), - [anon_sym__Atomic] = ACTIONS(5455), - [anon_sym__Noreturn] = ACTIONS(5455), - [anon_sym_noreturn] = ACTIONS(5455), - [anon_sym_mutable] = ACTIONS(5455), - [anon_sym_constinit] = ACTIONS(5455), - [anon_sym_consteval] = ACTIONS(5455), - [sym_primitive_type] = ACTIONS(5455), - [anon_sym_COLON] = ACTIONS(5455), - [anon_sym_QMARK] = ACTIONS(5457), - [anon_sym_LT_EQ_GT] = ACTIONS(5457), - [anon_sym_or] = ACTIONS(5455), - [anon_sym_and] = ACTIONS(5455), - [anon_sym_bitor] = ACTIONS(5455), - [anon_sym_xor] = ACTIONS(5455), - [anon_sym_bitand] = ACTIONS(5455), - [anon_sym_not_eq] = ACTIONS(5455), - [anon_sym_DASH_DASH] = ACTIONS(5457), - [anon_sym_PLUS_PLUS] = ACTIONS(5457), - [anon_sym_DOT] = ACTIONS(5455), - [anon_sym_DOT_STAR] = ACTIONS(5457), - [anon_sym_DASH_GT] = ACTIONS(5457), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5455), - [anon_sym_decltype] = ACTIONS(5455), - [anon_sym_final] = ACTIONS(5455), - [anon_sym_override] = ACTIONS(5455), - [anon_sym_requires] = ACTIONS(5455), + [1955] = { + [sym_identifier] = ACTIONS(4991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4993), + [anon_sym_LPAREN2] = ACTIONS(4993), + [anon_sym_TILDE] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_PERCENT] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4993), + [anon_sym_AMP_AMP] = ACTIONS(4993), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym_AMP] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4993), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_LT_LT] = ACTIONS(4991), + [anon_sym_GT_GT] = ACTIONS(4991), + [anon_sym___extension__] = ACTIONS(4991), + [anon_sym_extern] = ACTIONS(4991), + [anon_sym___attribute__] = ACTIONS(4991), + [anon_sym_COLON_COLON] = ACTIONS(4993), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4993), + [anon_sym___declspec] = ACTIONS(4991), + [anon_sym___based] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_EQ] = ACTIONS(4991), + [anon_sym_static] = ACTIONS(4991), + [anon_sym_register] = ACTIONS(4991), + [anon_sym_inline] = ACTIONS(4991), + [anon_sym___inline] = ACTIONS(4991), + [anon_sym___inline__] = ACTIONS(4991), + [anon_sym___forceinline] = ACTIONS(4991), + [anon_sym_thread_local] = ACTIONS(4991), + [anon_sym___thread] = ACTIONS(4991), + [anon_sym_const] = ACTIONS(4991), + [anon_sym_constexpr] = ACTIONS(4991), + [anon_sym_volatile] = ACTIONS(4991), + [anon_sym_restrict] = ACTIONS(4991), + [anon_sym___restrict__] = ACTIONS(4991), + [anon_sym__Atomic] = ACTIONS(4991), + [anon_sym__Noreturn] = ACTIONS(4991), + [anon_sym_noreturn] = ACTIONS(4991), + [anon_sym_mutable] = ACTIONS(4991), + [anon_sym_constinit] = ACTIONS(4991), + [anon_sym_consteval] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_STAR_EQ] = ACTIONS(4993), + [anon_sym_SLASH_EQ] = ACTIONS(4993), + [anon_sym_PERCENT_EQ] = ACTIONS(4993), + [anon_sym_PLUS_EQ] = ACTIONS(4993), + [anon_sym_DASH_EQ] = ACTIONS(4993), + [anon_sym_LT_LT_EQ] = ACTIONS(4993), + [anon_sym_GT_GT_EQ] = ACTIONS(4993), + [anon_sym_AMP_EQ] = ACTIONS(4993), + [anon_sym_CARET_EQ] = ACTIONS(4993), + [anon_sym_PIPE_EQ] = ACTIONS(4993), + [anon_sym_LT_EQ_GT] = ACTIONS(4993), + [anon_sym_or] = ACTIONS(4991), + [anon_sym_and] = ACTIONS(4991), + [anon_sym_bitor] = ACTIONS(4991), + [anon_sym_xor] = ACTIONS(4991), + [anon_sym_bitand] = ACTIONS(4991), + [anon_sym_not_eq] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4993), + [anon_sym_DOT] = ACTIONS(4991), + [anon_sym_DOT_STAR] = ACTIONS(4993), + [anon_sym_DASH_GT] = ACTIONS(4991), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4991), + [anon_sym_decltype] = ACTIONS(4991), + [anon_sym_virtual] = ACTIONS(4991), + [anon_sym_alignas] = ACTIONS(4991), + [anon_sym_template] = ACTIONS(4991), + [anon_sym_operator] = ACTIONS(4991), + [anon_sym_DASH_GT_STAR] = ACTIONS(4993), }, - [2135] = { - [sym_identifier] = ACTIONS(3211), - [aux_sym_preproc_def_token1] = ACTIONS(3211), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_if_token2] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), - [aux_sym_preproc_else_token1] = ACTIONS(3211), - [aux_sym_preproc_elif_token1] = ACTIONS(3211), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3211), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3211), - [sym_preproc_directive] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym___extension__] = ACTIONS(3211), - [anon_sym_typedef] = ACTIONS(3211), - [anon_sym_extern] = ACTIONS(3211), - [anon_sym___attribute__] = ACTIONS(3211), - [anon_sym_COLON_COLON] = ACTIONS(3213), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), - [anon_sym___declspec] = ACTIONS(3211), - [anon_sym___based] = ACTIONS(3211), - [anon_sym_signed] = ACTIONS(3211), - [anon_sym_unsigned] = ACTIONS(3211), - [anon_sym_long] = ACTIONS(3211), - [anon_sym_short] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(3211), - [anon_sym_register] = ACTIONS(3211), - [anon_sym_inline] = ACTIONS(3211), - [anon_sym___inline] = ACTIONS(3211), - [anon_sym___inline__] = ACTIONS(3211), - [anon_sym___forceinline] = ACTIONS(3211), - [anon_sym_thread_local] = ACTIONS(3211), - [anon_sym___thread] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_constexpr] = ACTIONS(3211), - [anon_sym_volatile] = ACTIONS(3211), - [anon_sym_restrict] = ACTIONS(3211), - [anon_sym___restrict__] = ACTIONS(3211), - [anon_sym__Atomic] = ACTIONS(3211), - [anon_sym__Noreturn] = ACTIONS(3211), - [anon_sym_noreturn] = ACTIONS(3211), - [anon_sym_mutable] = ACTIONS(3211), - [anon_sym_constinit] = ACTIONS(3211), - [anon_sym_consteval] = ACTIONS(3211), - [sym_primitive_type] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_class] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3211), - [anon_sym_decltype] = ACTIONS(3211), - [anon_sym_virtual] = ACTIONS(3211), - [anon_sym_alignas] = ACTIONS(3211), - [anon_sym_explicit] = ACTIONS(3211), - [anon_sym_typename] = ACTIONS(3211), - [anon_sym_template] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(3211), - [anon_sym_friend] = ACTIONS(3211), - [anon_sym_public] = ACTIONS(3211), - [anon_sym_private] = ACTIONS(3211), - [anon_sym_protected] = ACTIONS(3211), - [anon_sym_using] = ACTIONS(3211), - [anon_sym_static_assert] = ACTIONS(3211), + [1956] = { + [sym_identifier] = ACTIONS(5003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LPAREN2] = ACTIONS(5005), + [anon_sym_TILDE] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_PERCENT] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5005), + [anon_sym_AMP_AMP] = ACTIONS(5005), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym_AMP] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5005), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_LT_LT] = ACTIONS(5003), + [anon_sym_GT_GT] = ACTIONS(5003), + [anon_sym___extension__] = ACTIONS(5003), + [anon_sym_extern] = ACTIONS(5003), + [anon_sym___attribute__] = ACTIONS(5003), + [anon_sym_COLON_COLON] = ACTIONS(5005), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5005), + [anon_sym___declspec] = ACTIONS(5003), + [anon_sym___based] = ACTIONS(5003), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_EQ] = ACTIONS(5003), + [anon_sym_static] = ACTIONS(5003), + [anon_sym_register] = ACTIONS(5003), + [anon_sym_inline] = ACTIONS(5003), + [anon_sym___inline] = ACTIONS(5003), + [anon_sym___inline__] = ACTIONS(5003), + [anon_sym___forceinline] = ACTIONS(5003), + [anon_sym_thread_local] = ACTIONS(5003), + [anon_sym___thread] = ACTIONS(5003), + [anon_sym_const] = ACTIONS(5003), + [anon_sym_constexpr] = ACTIONS(5003), + [anon_sym_volatile] = ACTIONS(5003), + [anon_sym_restrict] = ACTIONS(5003), + [anon_sym___restrict__] = ACTIONS(5003), + [anon_sym__Atomic] = ACTIONS(5003), + [anon_sym__Noreturn] = ACTIONS(5003), + [anon_sym_noreturn] = ACTIONS(5003), + [anon_sym_mutable] = ACTIONS(5003), + [anon_sym_constinit] = ACTIONS(5003), + [anon_sym_consteval] = ACTIONS(5003), + [anon_sym_QMARK] = ACTIONS(5005), + [anon_sym_STAR_EQ] = ACTIONS(5005), + [anon_sym_SLASH_EQ] = ACTIONS(5005), + [anon_sym_PERCENT_EQ] = ACTIONS(5005), + [anon_sym_PLUS_EQ] = ACTIONS(5005), + [anon_sym_DASH_EQ] = ACTIONS(5005), + [anon_sym_LT_LT_EQ] = ACTIONS(5005), + [anon_sym_GT_GT_EQ] = ACTIONS(5005), + [anon_sym_AMP_EQ] = ACTIONS(5005), + [anon_sym_CARET_EQ] = ACTIONS(5005), + [anon_sym_PIPE_EQ] = ACTIONS(5005), + [anon_sym_LT_EQ_GT] = ACTIONS(5005), + [anon_sym_or] = ACTIONS(5003), + [anon_sym_and] = ACTIONS(5003), + [anon_sym_bitor] = ACTIONS(5003), + [anon_sym_xor] = ACTIONS(5003), + [anon_sym_bitand] = ACTIONS(5003), + [anon_sym_not_eq] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5005), + [anon_sym_PLUS_PLUS] = ACTIONS(5005), + [anon_sym_DOT] = ACTIONS(5003), + [anon_sym_DOT_STAR] = ACTIONS(5005), + [anon_sym_DASH_GT] = ACTIONS(5003), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5003), + [anon_sym_decltype] = ACTIONS(5003), + [anon_sym_virtual] = ACTIONS(5003), + [anon_sym_alignas] = ACTIONS(5003), + [anon_sym_template] = ACTIONS(5003), + [anon_sym_operator] = ACTIONS(5003), + [anon_sym_DASH_GT_STAR] = ACTIONS(5005), }, - [2136] = { - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token2] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [aux_sym_preproc_else_token1] = ACTIONS(3148), - [aux_sym_preproc_elif_token1] = ACTIONS(3148), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_friend] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), + [1957] = { + [sym_identifier] = ACTIONS(5035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_RPAREN] = ACTIONS(5037), + [anon_sym_LPAREN2] = ACTIONS(5037), + [anon_sym_TILDE] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5037), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5037), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5035), + [anon_sym_CARET] = ACTIONS(5037), + [anon_sym_AMP] = ACTIONS(5035), + [anon_sym_EQ_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5035), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_LT_LT] = ACTIONS(5037), + [anon_sym_GT_GT] = ACTIONS(5037), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym___extension__] = ACTIONS(5035), + [anon_sym_extern] = ACTIONS(5035), + [anon_sym___attribute__] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5037), + [anon_sym___declspec] = ACTIONS(5035), + [anon_sym___based] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_static] = ACTIONS(5035), + [anon_sym_register] = ACTIONS(5035), + [anon_sym_inline] = ACTIONS(5035), + [anon_sym___inline] = ACTIONS(5035), + [anon_sym___inline__] = ACTIONS(5035), + [anon_sym___forceinline] = ACTIONS(5035), + [anon_sym_thread_local] = ACTIONS(5035), + [anon_sym___thread] = ACTIONS(5035), + [anon_sym_const] = ACTIONS(5035), + [anon_sym_constexpr] = ACTIONS(5035), + [anon_sym_volatile] = ACTIONS(5035), + [anon_sym_restrict] = ACTIONS(5035), + [anon_sym___restrict__] = ACTIONS(5035), + [anon_sym__Atomic] = ACTIONS(5035), + [anon_sym__Noreturn] = ACTIONS(5035), + [anon_sym_noreturn] = ACTIONS(5035), + [anon_sym_mutable] = ACTIONS(5035), + [anon_sym_constinit] = ACTIONS(5035), + [anon_sym_consteval] = ACTIONS(5035), + [anon_sym_COLON] = ACTIONS(5035), + [anon_sym_QMARK] = ACTIONS(5037), + [anon_sym_LT_EQ_GT] = ACTIONS(5037), + [anon_sym_or] = ACTIONS(5035), + [anon_sym_and] = ACTIONS(5035), + [anon_sym_bitor] = ACTIONS(5035), + [anon_sym_xor] = ACTIONS(5035), + [anon_sym_bitand] = ACTIONS(5035), + [anon_sym_not_eq] = ACTIONS(5035), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_DOT_STAR] = ACTIONS(5037), + [anon_sym_DASH_GT] = ACTIONS(5037), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5035), + [anon_sym_decltype] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_override] = ACTIONS(5035), + [anon_sym_virtual] = ACTIONS(5035), + [anon_sym_alignas] = ACTIONS(5035), + [anon_sym_template] = ACTIONS(5035), + [anon_sym_operator] = ACTIONS(5035), + [anon_sym_try] = ACTIONS(5035), + [anon_sym_requires] = ACTIONS(5035), }, - [2137] = { - [sym_identifier] = ACTIONS(5535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5537), - [anon_sym_COMMA] = ACTIONS(5537), - [anon_sym_RPAREN] = ACTIONS(5537), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_DASH] = ACTIONS(5535), - [anon_sym_PLUS] = ACTIONS(5535), - [anon_sym_STAR] = ACTIONS(5537), - [anon_sym_SLASH] = ACTIONS(5535), - [anon_sym_PERCENT] = ACTIONS(5537), - [anon_sym_PIPE_PIPE] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_PIPE] = ACTIONS(5535), - [anon_sym_CARET] = ACTIONS(5537), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_EQ_EQ] = ACTIONS(5537), - [anon_sym_BANG_EQ] = ACTIONS(5537), - [anon_sym_GT] = ACTIONS(5535), - [anon_sym_GT_EQ] = ACTIONS(5537), - [anon_sym_LT_EQ] = ACTIONS(5535), - [anon_sym_LT] = ACTIONS(5535), - [anon_sym_LT_LT] = ACTIONS(5537), - [anon_sym_GT_GT] = ACTIONS(5537), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___extension__] = ACTIONS(5535), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym_COLON_COLON] = ACTIONS(5386), - [anon_sym___based] = ACTIONS(5535), - [anon_sym_LBRACE] = ACTIONS(5537), - [anon_sym_RBRACE] = ACTIONS(5537), - [anon_sym_signed] = ACTIONS(5535), - [anon_sym_unsigned] = ACTIONS(5535), - [anon_sym_long] = ACTIONS(5535), - [anon_sym_short] = ACTIONS(5535), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_RBRACK] = ACTIONS(5537), - [anon_sym_const] = ACTIONS(5535), - [anon_sym_constexpr] = ACTIONS(5535), - [anon_sym_volatile] = ACTIONS(5535), - [anon_sym_restrict] = ACTIONS(5535), - [anon_sym___restrict__] = ACTIONS(5535), - [anon_sym__Atomic] = ACTIONS(5535), - [anon_sym__Noreturn] = ACTIONS(5535), - [anon_sym_noreturn] = ACTIONS(5535), - [anon_sym_mutable] = ACTIONS(5535), - [anon_sym_constinit] = ACTIONS(5535), - [anon_sym_consteval] = ACTIONS(5535), - [sym_primitive_type] = ACTIONS(5535), - [anon_sym_COLON] = ACTIONS(5535), - [anon_sym_QMARK] = ACTIONS(5537), - [anon_sym_LT_EQ_GT] = ACTIONS(5537), - [anon_sym_or] = ACTIONS(5535), - [anon_sym_and] = ACTIONS(5535), - [anon_sym_bitor] = ACTIONS(5535), - [anon_sym_xor] = ACTIONS(5535), - [anon_sym_bitand] = ACTIONS(5535), - [anon_sym_not_eq] = ACTIONS(5535), - [anon_sym_DASH_DASH] = ACTIONS(5537), - [anon_sym_PLUS_PLUS] = ACTIONS(5537), - [anon_sym_DOT] = ACTIONS(5535), - [anon_sym_DOT_STAR] = ACTIONS(5537), - [anon_sym_DASH_GT] = ACTIONS(5537), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), - [anon_sym_final] = ACTIONS(5535), - [anon_sym_override] = ACTIONS(5535), - [anon_sym_requires] = ACTIONS(5535), + [1958] = { + [sym_identifier] = ACTIONS(4999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_LPAREN2] = ACTIONS(5001), + [anon_sym_TILDE] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(5001), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_PERCENT] = ACTIONS(5001), + [anon_sym_PIPE_PIPE] = ACTIONS(5001), + [anon_sym_AMP_AMP] = ACTIONS(5001), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(5001), + [anon_sym_AMP] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(5001), + [anon_sym_BANG_EQ] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(5001), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_LT_LT] = ACTIONS(5001), + [anon_sym_GT_GT] = ACTIONS(5001), + [anon_sym_SEMI] = ACTIONS(5001), + [anon_sym___extension__] = ACTIONS(4999), + [anon_sym_extern] = ACTIONS(4999), + [anon_sym___attribute__] = ACTIONS(4999), + [anon_sym_COLON_COLON] = ACTIONS(5001), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5001), + [anon_sym___declspec] = ACTIONS(4999), + [anon_sym___based] = ACTIONS(4999), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_RBRACE] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(4999), + [anon_sym_EQ] = ACTIONS(4999), + [anon_sym_static] = ACTIONS(4999), + [anon_sym_register] = ACTIONS(4999), + [anon_sym_inline] = ACTIONS(4999), + [anon_sym___inline] = ACTIONS(4999), + [anon_sym___inline__] = ACTIONS(4999), + [anon_sym___forceinline] = ACTIONS(4999), + [anon_sym_thread_local] = ACTIONS(4999), + [anon_sym___thread] = ACTIONS(4999), + [anon_sym_const] = ACTIONS(4999), + [anon_sym_constexpr] = ACTIONS(4999), + [anon_sym_volatile] = ACTIONS(4999), + [anon_sym_restrict] = ACTIONS(4999), + [anon_sym___restrict__] = ACTIONS(4999), + [anon_sym__Atomic] = ACTIONS(4999), + [anon_sym__Noreturn] = ACTIONS(4999), + [anon_sym_noreturn] = ACTIONS(4999), + [anon_sym_mutable] = ACTIONS(4999), + [anon_sym_constinit] = ACTIONS(4999), + [anon_sym_consteval] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_LT_EQ_GT] = ACTIONS(5001), + [anon_sym_or] = ACTIONS(4999), + [anon_sym_and] = ACTIONS(4999), + [anon_sym_bitor] = ACTIONS(4999), + [anon_sym_xor] = ACTIONS(4999), + [anon_sym_bitand] = ACTIONS(4999), + [anon_sym_not_eq] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(5001), + [anon_sym_PLUS_PLUS] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(4999), + [anon_sym_DOT_STAR] = ACTIONS(5001), + [anon_sym_DASH_GT] = ACTIONS(5001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4999), + [anon_sym_decltype] = ACTIONS(4999), + [anon_sym_final] = ACTIONS(4999), + [anon_sym_override] = ACTIONS(4999), + [anon_sym_virtual] = ACTIONS(4999), + [anon_sym_alignas] = ACTIONS(4999), + [anon_sym_template] = ACTIONS(4999), + [anon_sym_operator] = ACTIONS(4999), + [anon_sym_try] = ACTIONS(4999), + [anon_sym_requires] = ACTIONS(4999), }, - [2138] = { - [sym_identifier] = ACTIONS(3140), - [aux_sym_preproc_def_token1] = ACTIONS(3140), - [aux_sym_preproc_if_token1] = ACTIONS(3140), - [aux_sym_preproc_if_token2] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), - [aux_sym_preproc_else_token1] = ACTIONS(3140), - [aux_sym_preproc_elif_token1] = ACTIONS(3140), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3140), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3140), - [sym_preproc_directive] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_AMP_AMP] = ACTIONS(3142), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym___extension__] = ACTIONS(3140), - [anon_sym_typedef] = ACTIONS(3140), - [anon_sym_extern] = ACTIONS(3140), - [anon_sym___attribute__] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3142), - [anon_sym___declspec] = ACTIONS(3140), - [anon_sym___based] = ACTIONS(3140), - [anon_sym_signed] = ACTIONS(3140), - [anon_sym_unsigned] = ACTIONS(3140), - [anon_sym_long] = ACTIONS(3140), - [anon_sym_short] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_register] = ACTIONS(3140), - [anon_sym_inline] = ACTIONS(3140), - [anon_sym___inline] = ACTIONS(3140), - [anon_sym___inline__] = ACTIONS(3140), - [anon_sym___forceinline] = ACTIONS(3140), - [anon_sym_thread_local] = ACTIONS(3140), - [anon_sym___thread] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_constexpr] = ACTIONS(3140), - [anon_sym_volatile] = ACTIONS(3140), - [anon_sym_restrict] = ACTIONS(3140), - [anon_sym___restrict__] = ACTIONS(3140), - [anon_sym__Atomic] = ACTIONS(3140), - [anon_sym__Noreturn] = ACTIONS(3140), - [anon_sym_noreturn] = ACTIONS(3140), - [anon_sym_mutable] = ACTIONS(3140), - [anon_sym_constinit] = ACTIONS(3140), - [anon_sym_consteval] = ACTIONS(3140), - [sym_primitive_type] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_struct] = ACTIONS(3140), - [anon_sym_union] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3140), - [anon_sym_decltype] = ACTIONS(3140), - [anon_sym_virtual] = ACTIONS(3140), - [anon_sym_alignas] = ACTIONS(3140), - [anon_sym_explicit] = ACTIONS(3140), - [anon_sym_typename] = ACTIONS(3140), - [anon_sym_template] = ACTIONS(3140), - [anon_sym_operator] = ACTIONS(3140), - [anon_sym_friend] = ACTIONS(3140), - [anon_sym_public] = ACTIONS(3140), - [anon_sym_private] = ACTIONS(3140), - [anon_sym_protected] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_static_assert] = ACTIONS(3140), + [1959] = { + [sym_identifier] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_TILDE] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5026), + [anon_sym_GT_GT] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym___extension__] = ACTIONS(5024), + [anon_sym_extern] = ACTIONS(5024), + [anon_sym___attribute__] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(5026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5026), + [anon_sym___declspec] = ACTIONS(5024), + [anon_sym___based] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_static] = ACTIONS(5024), + [anon_sym_register] = ACTIONS(5024), + [anon_sym_inline] = ACTIONS(5024), + [anon_sym___inline] = ACTIONS(5024), + [anon_sym___inline__] = ACTIONS(5024), + [anon_sym___forceinline] = ACTIONS(5024), + [anon_sym_thread_local] = ACTIONS(5024), + [anon_sym___thread] = ACTIONS(5024), + [anon_sym_const] = ACTIONS(5024), + [anon_sym_constexpr] = ACTIONS(5024), + [anon_sym_volatile] = ACTIONS(5024), + [anon_sym_restrict] = ACTIONS(5024), + [anon_sym___restrict__] = ACTIONS(5024), + [anon_sym__Atomic] = ACTIONS(5024), + [anon_sym__Noreturn] = ACTIONS(5024), + [anon_sym_noreturn] = ACTIONS(5024), + [anon_sym_mutable] = ACTIONS(5024), + [anon_sym_constinit] = ACTIONS(5024), + [anon_sym_consteval] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_LT_EQ_GT] = ACTIONS(5026), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_bitor] = ACTIONS(5024), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_bitand] = ACTIONS(5024), + [anon_sym_not_eq] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_DOT_STAR] = ACTIONS(5026), + [anon_sym_DASH_GT] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5024), + [anon_sym_decltype] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_virtual] = ACTIONS(5024), + [anon_sym_alignas] = ACTIONS(5024), + [anon_sym_template] = ACTIONS(5024), + [anon_sym_operator] = ACTIONS(5024), + [anon_sym_try] = ACTIONS(5024), + [anon_sym_requires] = ACTIONS(5024), }, - [2139] = { - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token2] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [aux_sym_preproc_else_token1] = ACTIONS(3251), - [aux_sym_preproc_elif_token1] = ACTIONS(3251), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_friend] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_protected] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), + [1960] = { + [sym_identifier] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5030), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_TILDE] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5030), + [anon_sym_PIPE_PIPE] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5030), + [anon_sym_GT_GT] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5030), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym_extern] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym_COLON_COLON] = ACTIONS(5030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5030), + [anon_sym___declspec] = ACTIONS(5028), + [anon_sym___based] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_LBRACK] = ACTIONS(5028), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_static] = ACTIONS(5028), + [anon_sym_register] = ACTIONS(5028), + [anon_sym_inline] = ACTIONS(5028), + [anon_sym___inline] = ACTIONS(5028), + [anon_sym___inline__] = ACTIONS(5028), + [anon_sym___forceinline] = ACTIONS(5028), + [anon_sym_thread_local] = ACTIONS(5028), + [anon_sym___thread] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_restrict] = ACTIONS(5028), + [anon_sym___restrict__] = ACTIONS(5028), + [anon_sym__Atomic] = ACTIONS(5028), + [anon_sym__Noreturn] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_mutable] = ACTIONS(5028), + [anon_sym_constinit] = ACTIONS(5028), + [anon_sym_consteval] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_LT_EQ_GT] = ACTIONS(5030), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_bitor] = ACTIONS(5028), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_bitand] = ACTIONS(5028), + [anon_sym_not_eq] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_DOT_STAR] = ACTIONS(5030), + [anon_sym_DASH_GT] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5028), + [anon_sym_decltype] = ACTIONS(5028), + [anon_sym_final] = ACTIONS(5028), + [anon_sym_override] = ACTIONS(5028), + [anon_sym_virtual] = ACTIONS(5028), + [anon_sym_alignas] = ACTIONS(5028), + [anon_sym_template] = ACTIONS(5028), + [anon_sym_operator] = ACTIONS(5028), + [anon_sym_try] = ACTIONS(5028), + [anon_sym_requires] = ACTIONS(5028), }, - [2140] = { - [sym_identifier] = ACTIONS(3132), - [aux_sym_preproc_def_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token2] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), - [aux_sym_preproc_else_token1] = ACTIONS(3132), - [aux_sym_preproc_elif_token1] = ACTIONS(3132), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3132), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3132), - [sym_preproc_directive] = ACTIONS(3132), - [anon_sym_LPAREN2] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_STAR] = ACTIONS(3134), - [anon_sym_AMP_AMP] = ACTIONS(3134), - [anon_sym_AMP] = ACTIONS(3132), - [anon_sym___extension__] = ACTIONS(3132), - [anon_sym_typedef] = ACTIONS(3132), - [anon_sym_extern] = ACTIONS(3132), - [anon_sym___attribute__] = ACTIONS(3132), - [anon_sym_COLON_COLON] = ACTIONS(3134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), - [anon_sym___declspec] = ACTIONS(3132), - [anon_sym___based] = ACTIONS(3132), - [anon_sym_signed] = ACTIONS(3132), - [anon_sym_unsigned] = ACTIONS(3132), - [anon_sym_long] = ACTIONS(3132), - [anon_sym_short] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_register] = ACTIONS(3132), - [anon_sym_inline] = ACTIONS(3132), - [anon_sym___inline] = ACTIONS(3132), - [anon_sym___inline__] = ACTIONS(3132), - [anon_sym___forceinline] = ACTIONS(3132), - [anon_sym_thread_local] = ACTIONS(3132), - [anon_sym___thread] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_constexpr] = ACTIONS(3132), - [anon_sym_volatile] = ACTIONS(3132), - [anon_sym_restrict] = ACTIONS(3132), - [anon_sym___restrict__] = ACTIONS(3132), - [anon_sym__Atomic] = ACTIONS(3132), - [anon_sym__Noreturn] = ACTIONS(3132), - [anon_sym_noreturn] = ACTIONS(3132), - [anon_sym_mutable] = ACTIONS(3132), - [anon_sym_constinit] = ACTIONS(3132), - [anon_sym_consteval] = ACTIONS(3132), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(3132), - [anon_sym_union] = ACTIONS(3132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3132), - [anon_sym_decltype] = ACTIONS(3132), - [anon_sym_virtual] = ACTIONS(3132), - [anon_sym_alignas] = ACTIONS(3132), - [anon_sym_explicit] = ACTIONS(3132), - [anon_sym_typename] = ACTIONS(3132), - [anon_sym_template] = ACTIONS(3132), - [anon_sym_operator] = ACTIONS(3132), - [anon_sym_friend] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_static_assert] = ACTIONS(3132), + [1961] = { + [sym_identifier] = ACTIONS(4991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4993), + [anon_sym_LPAREN2] = ACTIONS(4993), + [anon_sym_TILDE] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4993), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_PIPE_PIPE] = ACTIONS(4993), + [anon_sym_AMP_AMP] = ACTIONS(4993), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4993), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym_SEMI] = ACTIONS(4993), + [anon_sym___extension__] = ACTIONS(4991), + [anon_sym_extern] = ACTIONS(4991), + [anon_sym___attribute__] = ACTIONS(4991), + [anon_sym_COLON_COLON] = ACTIONS(4993), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4993), + [anon_sym___declspec] = ACTIONS(4991), + [anon_sym___based] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4993), + [anon_sym_RBRACE] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_EQ] = ACTIONS(4991), + [anon_sym_static] = ACTIONS(4991), + [anon_sym_register] = ACTIONS(4991), + [anon_sym_inline] = ACTIONS(4991), + [anon_sym___inline] = ACTIONS(4991), + [anon_sym___inline__] = ACTIONS(4991), + [anon_sym___forceinline] = ACTIONS(4991), + [anon_sym_thread_local] = ACTIONS(4991), + [anon_sym___thread] = ACTIONS(4991), + [anon_sym_const] = ACTIONS(4991), + [anon_sym_constexpr] = ACTIONS(4991), + [anon_sym_volatile] = ACTIONS(4991), + [anon_sym_restrict] = ACTIONS(4991), + [anon_sym___restrict__] = ACTIONS(4991), + [anon_sym__Atomic] = ACTIONS(4991), + [anon_sym__Noreturn] = ACTIONS(4991), + [anon_sym_noreturn] = ACTIONS(4991), + [anon_sym_mutable] = ACTIONS(4991), + [anon_sym_constinit] = ACTIONS(4991), + [anon_sym_consteval] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_LT_EQ_GT] = ACTIONS(4993), + [anon_sym_or] = ACTIONS(4991), + [anon_sym_and] = ACTIONS(4991), + [anon_sym_bitor] = ACTIONS(4991), + [anon_sym_xor] = ACTIONS(4991), + [anon_sym_bitand] = ACTIONS(4991), + [anon_sym_not_eq] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4993), + [anon_sym_DOT] = ACTIONS(4991), + [anon_sym_DOT_STAR] = ACTIONS(4993), + [anon_sym_DASH_GT] = ACTIONS(4993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4991), + [anon_sym_decltype] = ACTIONS(4991), + [anon_sym_final] = ACTIONS(4991), + [anon_sym_override] = ACTIONS(4991), + [anon_sym_virtual] = ACTIONS(4991), + [anon_sym_alignas] = ACTIONS(4991), + [anon_sym_template] = ACTIONS(4991), + [anon_sym_operator] = ACTIONS(4991), + [anon_sym_try] = ACTIONS(4991), + [anon_sym_requires] = ACTIONS(4991), }, - [2141] = { - [sym_identifier] = ACTIONS(2921), - [aux_sym_preproc_def_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token2] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), - [aux_sym_preproc_else_token1] = ACTIONS(2921), - [aux_sym_preproc_elif_token1] = ACTIONS(2921), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2921), - [sym_preproc_directive] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym___based] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_explicit] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(2921), - [anon_sym_friend] = ACTIONS(2921), - [anon_sym_public] = ACTIONS(2921), - [anon_sym_private] = ACTIONS(2921), - [anon_sym_protected] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_static_assert] = ACTIONS(2921), + [1962] = { + [sym_identifier] = ACTIONS(5003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LPAREN2] = ACTIONS(5005), + [anon_sym_TILDE] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5005), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_PERCENT] = ACTIONS(5005), + [anon_sym_PIPE_PIPE] = ACTIONS(5005), + [anon_sym_AMP_AMP] = ACTIONS(5005), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5005), + [anon_sym_AMP] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5005), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_LT_LT] = ACTIONS(5005), + [anon_sym_GT_GT] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5005), + [anon_sym___extension__] = ACTIONS(5003), + [anon_sym_extern] = ACTIONS(5003), + [anon_sym___attribute__] = ACTIONS(5003), + [anon_sym_COLON_COLON] = ACTIONS(5005), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5005), + [anon_sym___declspec] = ACTIONS(5003), + [anon_sym___based] = ACTIONS(5003), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_RBRACE] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_EQ] = ACTIONS(5003), + [anon_sym_static] = ACTIONS(5003), + [anon_sym_register] = ACTIONS(5003), + [anon_sym_inline] = ACTIONS(5003), + [anon_sym___inline] = ACTIONS(5003), + [anon_sym___inline__] = ACTIONS(5003), + [anon_sym___forceinline] = ACTIONS(5003), + [anon_sym_thread_local] = ACTIONS(5003), + [anon_sym___thread] = ACTIONS(5003), + [anon_sym_const] = ACTIONS(5003), + [anon_sym_constexpr] = ACTIONS(5003), + [anon_sym_volatile] = ACTIONS(5003), + [anon_sym_restrict] = ACTIONS(5003), + [anon_sym___restrict__] = ACTIONS(5003), + [anon_sym__Atomic] = ACTIONS(5003), + [anon_sym__Noreturn] = ACTIONS(5003), + [anon_sym_noreturn] = ACTIONS(5003), + [anon_sym_mutable] = ACTIONS(5003), + [anon_sym_constinit] = ACTIONS(5003), + [anon_sym_consteval] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_QMARK] = ACTIONS(5005), + [anon_sym_LT_EQ_GT] = ACTIONS(5005), + [anon_sym_or] = ACTIONS(5003), + [anon_sym_and] = ACTIONS(5003), + [anon_sym_bitor] = ACTIONS(5003), + [anon_sym_xor] = ACTIONS(5003), + [anon_sym_bitand] = ACTIONS(5003), + [anon_sym_not_eq] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5005), + [anon_sym_PLUS_PLUS] = ACTIONS(5005), + [anon_sym_DOT] = ACTIONS(5003), + [anon_sym_DOT_STAR] = ACTIONS(5005), + [anon_sym_DASH_GT] = ACTIONS(5005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5003), + [anon_sym_decltype] = ACTIONS(5003), + [anon_sym_final] = ACTIONS(5003), + [anon_sym_override] = ACTIONS(5003), + [anon_sym_virtual] = ACTIONS(5003), + [anon_sym_alignas] = ACTIONS(5003), + [anon_sym_template] = ACTIONS(5003), + [anon_sym_operator] = ACTIONS(5003), + [anon_sym_try] = ACTIONS(5003), + [anon_sym_requires] = ACTIONS(5003), }, - [2142] = { - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token2] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [aux_sym_preproc_else_token1] = ACTIONS(2989), - [aux_sym_preproc_elif_token1] = ACTIONS(2989), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_friend] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), - }, - [2143] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4139), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_COLON] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4175), - [anon_sym_or_eq] = ACTIONS(4175), - [anon_sym_xor_eq] = ACTIONS(4175), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), - }, - [2144] = { - [sym_identifier] = ACTIONS(4996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4998), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_CARET] = ACTIONS(4998), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4996), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4998), - [anon_sym_GT_GT] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym___extension__] = ACTIONS(4996), - [anon_sym___attribute__] = ACTIONS(4996), - [anon_sym_COLON_COLON] = ACTIONS(4998), - [anon_sym___based] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_signed] = ACTIONS(4996), - [anon_sym_unsigned] = ACTIONS(4996), - [anon_sym_long] = ACTIONS(4996), - [anon_sym_short] = ACTIONS(4996), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_const] = ACTIONS(4996), - [anon_sym_constexpr] = ACTIONS(4996), - [anon_sym_volatile] = ACTIONS(4996), - [anon_sym_restrict] = ACTIONS(4996), - [anon_sym___restrict__] = ACTIONS(4996), - [anon_sym__Atomic] = ACTIONS(4996), - [anon_sym__Noreturn] = ACTIONS(4996), - [anon_sym_noreturn] = ACTIONS(4996), - [anon_sym_mutable] = ACTIONS(4996), - [anon_sym_constinit] = ACTIONS(4996), - [anon_sym_consteval] = ACTIONS(4996), - [sym_primitive_type] = ACTIONS(4996), - [anon_sym_COLON] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4998), - [anon_sym_LT_EQ_GT] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_and] = ACTIONS(4996), - [anon_sym_bitor] = ACTIONS(4996), - [anon_sym_xor] = ACTIONS(4996), - [anon_sym_bitand] = ACTIONS(4996), - [anon_sym_not_eq] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_DOT_STAR] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4996), - [anon_sym_decltype] = ACTIONS(4996), - [anon_sym_final] = ACTIONS(4996), - [anon_sym_override] = ACTIONS(4996), - [anon_sym_requires] = ACTIONS(4996), - }, - [2145] = { - [sym_identifier] = ACTIONS(5000), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), - [anon_sym_COMMA] = ACTIONS(5002), - [anon_sym_RPAREN] = ACTIONS(5002), - [anon_sym_LPAREN2] = ACTIONS(5002), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(5002), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(5002), - [anon_sym_PIPE_PIPE] = ACTIONS(5002), - [anon_sym_AMP_AMP] = ACTIONS(5002), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_CARET] = ACTIONS(5002), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_EQ_EQ] = ACTIONS(5002), - [anon_sym_BANG_EQ] = ACTIONS(5002), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_GT_EQ] = ACTIONS(5002), - [anon_sym_LT_EQ] = ACTIONS(5000), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(5002), - [anon_sym_GT_GT] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5002), - [anon_sym___extension__] = ACTIONS(5000), - [anon_sym___attribute__] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5002), - [anon_sym___based] = ACTIONS(5000), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_signed] = ACTIONS(5000), - [anon_sym_unsigned] = ACTIONS(5000), - [anon_sym_long] = ACTIONS(5000), - [anon_sym_short] = ACTIONS(5000), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_RBRACK] = ACTIONS(5002), - [anon_sym_const] = ACTIONS(5000), - [anon_sym_constexpr] = ACTIONS(5000), - [anon_sym_volatile] = ACTIONS(5000), - [anon_sym_restrict] = ACTIONS(5000), - [anon_sym___restrict__] = ACTIONS(5000), - [anon_sym__Atomic] = ACTIONS(5000), - [anon_sym__Noreturn] = ACTIONS(5000), - [anon_sym_noreturn] = ACTIONS(5000), - [anon_sym_mutable] = ACTIONS(5000), - [anon_sym_constinit] = ACTIONS(5000), - [anon_sym_consteval] = ACTIONS(5000), - [sym_primitive_type] = ACTIONS(5000), - [anon_sym_COLON] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5002), - [anon_sym_LT_EQ_GT] = ACTIONS(5002), - [anon_sym_or] = ACTIONS(5000), - [anon_sym_and] = ACTIONS(5000), - [anon_sym_bitor] = ACTIONS(5000), - [anon_sym_xor] = ACTIONS(5000), - [anon_sym_bitand] = ACTIONS(5000), - [anon_sym_not_eq] = ACTIONS(5000), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_PLUS_PLUS] = ACTIONS(5002), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_DOT_STAR] = ACTIONS(5002), - [anon_sym_DASH_GT] = ACTIONS(5002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5000), - [anon_sym_decltype] = ACTIONS(5000), - [anon_sym_final] = ACTIONS(5000), - [anon_sym_override] = ACTIONS(5000), - [anon_sym_requires] = ACTIONS(5000), - }, - [2146] = { - [sym_identifier] = ACTIONS(5004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_LPAREN2] = ACTIONS(5006), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_PLUS] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_SLASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5006), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5004), - [anon_sym_CARET] = ACTIONS(5006), - [anon_sym_AMP] = ACTIONS(5004), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT] = ACTIONS(5004), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5004), - [anon_sym_LT] = ACTIONS(5004), - [anon_sym_LT_LT] = ACTIONS(5006), - [anon_sym_GT_GT] = ACTIONS(5006), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym___extension__] = ACTIONS(5004), - [anon_sym___attribute__] = ACTIONS(5004), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym___based] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_signed] = ACTIONS(5004), - [anon_sym_unsigned] = ACTIONS(5004), - [anon_sym_long] = ACTIONS(5004), - [anon_sym_short] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_RBRACK] = ACTIONS(5006), - [anon_sym_const] = ACTIONS(5004), - [anon_sym_constexpr] = ACTIONS(5004), - [anon_sym_volatile] = ACTIONS(5004), - [anon_sym_restrict] = ACTIONS(5004), - [anon_sym___restrict__] = ACTIONS(5004), - [anon_sym__Atomic] = ACTIONS(5004), - [anon_sym__Noreturn] = ACTIONS(5004), - [anon_sym_noreturn] = ACTIONS(5004), - [anon_sym_mutable] = ACTIONS(5004), - [anon_sym_constinit] = ACTIONS(5004), - [anon_sym_consteval] = ACTIONS(5004), - [sym_primitive_type] = ACTIONS(5004), - [anon_sym_COLON] = ACTIONS(5004), - [anon_sym_QMARK] = ACTIONS(5006), - [anon_sym_LT_EQ_GT] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5004), - [anon_sym_and] = ACTIONS(5004), - [anon_sym_bitor] = ACTIONS(5004), - [anon_sym_xor] = ACTIONS(5004), - [anon_sym_bitand] = ACTIONS(5004), - [anon_sym_not_eq] = ACTIONS(5004), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5004), - [anon_sym_DOT_STAR] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5004), - [anon_sym_decltype] = ACTIONS(5004), - [anon_sym_final] = ACTIONS(5004), - [anon_sym_override] = ACTIONS(5004), - [anon_sym_requires] = ACTIONS(5004), - }, - [2147] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [aux_sym_preproc_else_token1] = ACTIONS(2144), - [aux_sym_preproc_elif_token1] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_friend] = ACTIONS(2144), - [anon_sym_public] = ACTIONS(2144), - [anon_sym_private] = ACTIONS(2144), - [anon_sym_protected] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - }, - [2148] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [aux_sym_preproc_else_token1] = ACTIONS(2917), - [aux_sym_preproc_elif_token1] = ACTIONS(2917), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_friend] = ACTIONS(2917), - [anon_sym_public] = ACTIONS(2917), - [anon_sym_private] = ACTIONS(2917), - [anon_sym_protected] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - }, - [2149] = { - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token2] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [aux_sym_preproc_else_token1] = ACTIONS(2925), - [aux_sym_preproc_elif_token1] = ACTIONS(2925), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_friend] = ACTIONS(2925), - [anon_sym_public] = ACTIONS(2925), - [anon_sym_private] = ACTIONS(2925), - [anon_sym_protected] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - }, - [2150] = { - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token2] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [aux_sym_preproc_else_token1] = ACTIONS(3219), - [aux_sym_preproc_elif_token1] = ACTIONS(3219), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_explicit] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_operator] = ACTIONS(3219), - [anon_sym_friend] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_static_assert] = ACTIONS(3219), - }, - [2151] = { - [sym_identifier] = ACTIONS(4988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_LPAREN2] = ACTIONS(4990), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4990), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4990), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_CARET] = ACTIONS(4990), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4990), - [anon_sym_GT_GT] = ACTIONS(4990), - [anon_sym_SEMI] = ACTIONS(4990), - [anon_sym___extension__] = ACTIONS(4988), - [anon_sym___attribute__] = ACTIONS(4988), - [anon_sym_COLON_COLON] = ACTIONS(4990), - [anon_sym___based] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_signed] = ACTIONS(4988), - [anon_sym_unsigned] = ACTIONS(4988), - [anon_sym_long] = ACTIONS(4988), - [anon_sym_short] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_RBRACK] = ACTIONS(4990), - [anon_sym_const] = ACTIONS(4988), - [anon_sym_constexpr] = ACTIONS(4988), - [anon_sym_volatile] = ACTIONS(4988), - [anon_sym_restrict] = ACTIONS(4988), - [anon_sym___restrict__] = ACTIONS(4988), - [anon_sym__Atomic] = ACTIONS(4988), - [anon_sym__Noreturn] = ACTIONS(4988), - [anon_sym_noreturn] = ACTIONS(4988), - [anon_sym_mutable] = ACTIONS(4988), - [anon_sym_constinit] = ACTIONS(4988), - [anon_sym_consteval] = ACTIONS(4988), - [sym_primitive_type] = ACTIONS(4988), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4990), - [anon_sym_LT_EQ_GT] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_and] = ACTIONS(4988), - [anon_sym_bitor] = ACTIONS(4988), - [anon_sym_xor] = ACTIONS(4988), - [anon_sym_bitand] = ACTIONS(4988), - [anon_sym_not_eq] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_DOT_STAR] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4988), - [anon_sym_decltype] = ACTIONS(4988), - [anon_sym_final] = ACTIONS(4988), - [anon_sym_override] = ACTIONS(4988), - [anon_sym_requires] = ACTIONS(4988), - }, - [2152] = { - [sym_identifier] = ACTIONS(3116), - [aux_sym_preproc_def_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token2] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), - [aux_sym_preproc_else_token1] = ACTIONS(3116), - [aux_sym_preproc_elif_token1] = ACTIONS(3116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3116), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3116), - [sym_preproc_directive] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3116), - [anon_sym___extension__] = ACTIONS(3116), - [anon_sym_typedef] = ACTIONS(3116), - [anon_sym_extern] = ACTIONS(3116), - [anon_sym___attribute__] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = ACTIONS(3116), - [anon_sym___based] = ACTIONS(3116), - [anon_sym_signed] = ACTIONS(3116), - [anon_sym_unsigned] = ACTIONS(3116), - [anon_sym_long] = ACTIONS(3116), - [anon_sym_short] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_register] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym___inline] = ACTIONS(3116), - [anon_sym___inline__] = ACTIONS(3116), - [anon_sym___forceinline] = ACTIONS(3116), - [anon_sym_thread_local] = ACTIONS(3116), - [anon_sym___thread] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_constexpr] = ACTIONS(3116), - [anon_sym_volatile] = ACTIONS(3116), - [anon_sym_restrict] = ACTIONS(3116), - [anon_sym___restrict__] = ACTIONS(3116), - [anon_sym__Atomic] = ACTIONS(3116), - [anon_sym__Noreturn] = ACTIONS(3116), - [anon_sym_noreturn] = ACTIONS(3116), - [anon_sym_mutable] = ACTIONS(3116), - [anon_sym_constinit] = ACTIONS(3116), - [anon_sym_consteval] = ACTIONS(3116), - [sym_primitive_type] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3116), - [anon_sym_union] = ACTIONS(3116), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3116), - [anon_sym_decltype] = ACTIONS(3116), - [anon_sym_virtual] = ACTIONS(3116), - [anon_sym_alignas] = ACTIONS(3116), - [anon_sym_explicit] = ACTIONS(3116), - [anon_sym_typename] = ACTIONS(3116), - [anon_sym_template] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_friend] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3116), - [anon_sym_static_assert] = ACTIONS(3116), - }, - [2153] = { - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token2] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [aux_sym_preproc_else_token1] = ACTIONS(3219), - [aux_sym_preproc_elif_token1] = ACTIONS(3219), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_explicit] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_operator] = ACTIONS(3219), - [anon_sym_friend] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_static_assert] = ACTIONS(3219), - }, - [2154] = { - [sym_identifier] = ACTIONS(3194), - [aux_sym_preproc_def_token1] = ACTIONS(3194), - [aux_sym_preproc_if_token1] = ACTIONS(3194), - [aux_sym_preproc_if_token2] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3194), - [aux_sym_preproc_else_token1] = ACTIONS(3194), - [aux_sym_preproc_elif_token1] = ACTIONS(3194), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3194), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3194), - [sym_preproc_directive] = ACTIONS(3194), - [anon_sym_LPAREN2] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_AMP_AMP] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3194), - [anon_sym_typedef] = ACTIONS(3194), - [anon_sym_extern] = ACTIONS(3194), - [anon_sym___attribute__] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3196), - [anon_sym___declspec] = ACTIONS(3194), - [anon_sym___based] = ACTIONS(3194), - [anon_sym_signed] = ACTIONS(3194), - [anon_sym_unsigned] = ACTIONS(3194), - [anon_sym_long] = ACTIONS(3194), - [anon_sym_short] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_register] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym___inline] = ACTIONS(3194), - [anon_sym___inline__] = ACTIONS(3194), - [anon_sym___forceinline] = ACTIONS(3194), - [anon_sym_thread_local] = ACTIONS(3194), - [anon_sym___thread] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_constexpr] = ACTIONS(3194), - [anon_sym_volatile] = ACTIONS(3194), - [anon_sym_restrict] = ACTIONS(3194), - [anon_sym___restrict__] = ACTIONS(3194), - [anon_sym__Atomic] = ACTIONS(3194), - [anon_sym__Noreturn] = ACTIONS(3194), - [anon_sym_noreturn] = ACTIONS(3194), - [anon_sym_mutable] = ACTIONS(3194), - [anon_sym_constinit] = ACTIONS(3194), - [anon_sym_consteval] = ACTIONS(3194), - [sym_primitive_type] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_struct] = ACTIONS(3194), - [anon_sym_union] = ACTIONS(3194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3194), - [anon_sym_decltype] = ACTIONS(3194), - [anon_sym_virtual] = ACTIONS(3194), - [anon_sym_alignas] = ACTIONS(3194), - [anon_sym_explicit] = ACTIONS(3194), - [anon_sym_typename] = ACTIONS(3194), - [anon_sym_template] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_friend] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_static_assert] = ACTIONS(3194), - }, - [2155] = { - [sym_identifier] = ACTIONS(2885), - [aux_sym_preproc_def_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token2] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2885), - [aux_sym_preproc_else_token1] = ACTIONS(2885), - [aux_sym_preproc_elif_token1] = ACTIONS(2885), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2885), - [sym_preproc_directive] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym___based] = ACTIONS(2885), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_explicit] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_operator] = ACTIONS(2885), - [anon_sym_friend] = ACTIONS(2885), - [anon_sym_public] = ACTIONS(2885), - [anon_sym_private] = ACTIONS(2885), - [anon_sym_protected] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_static_assert] = ACTIONS(2885), - }, - [2156] = { - [sym_identifier] = ACTIONS(3172), - [aux_sym_preproc_def_token1] = ACTIONS(3172), - [aux_sym_preproc_if_token1] = ACTIONS(3172), - [aux_sym_preproc_if_token2] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), - [aux_sym_preproc_else_token1] = ACTIONS(3172), - [aux_sym_preproc_elif_token1] = ACTIONS(3172), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3172), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3172), - [sym_preproc_directive] = ACTIONS(3172), - [anon_sym_LPAREN2] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_STAR] = ACTIONS(3174), - [anon_sym_AMP_AMP] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym___extension__] = ACTIONS(3172), - [anon_sym_typedef] = ACTIONS(3172), - [anon_sym_extern] = ACTIONS(3172), - [anon_sym___attribute__] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), - [anon_sym___declspec] = ACTIONS(3172), - [anon_sym___based] = ACTIONS(3172), - [anon_sym_signed] = ACTIONS(3172), - [anon_sym_unsigned] = ACTIONS(3172), - [anon_sym_long] = ACTIONS(3172), - [anon_sym_short] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_register] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym___inline] = ACTIONS(3172), - [anon_sym___inline__] = ACTIONS(3172), - [anon_sym___forceinline] = ACTIONS(3172), - [anon_sym_thread_local] = ACTIONS(3172), - [anon_sym___thread] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_constexpr] = ACTIONS(3172), - [anon_sym_volatile] = ACTIONS(3172), - [anon_sym_restrict] = ACTIONS(3172), - [anon_sym___restrict__] = ACTIONS(3172), - [anon_sym__Atomic] = ACTIONS(3172), - [anon_sym__Noreturn] = ACTIONS(3172), - [anon_sym_noreturn] = ACTIONS(3172), - [anon_sym_mutable] = ACTIONS(3172), - [anon_sym_constinit] = ACTIONS(3172), - [anon_sym_consteval] = ACTIONS(3172), - [sym_primitive_type] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_struct] = ACTIONS(3172), - [anon_sym_union] = ACTIONS(3172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3172), - [anon_sym_decltype] = ACTIONS(3172), - [anon_sym_virtual] = ACTIONS(3172), - [anon_sym_alignas] = ACTIONS(3172), - [anon_sym_explicit] = ACTIONS(3172), - [anon_sym_typename] = ACTIONS(3172), - [anon_sym_template] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_friend] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_static_assert] = ACTIONS(3172), - }, - [2157] = { - [sym_identifier] = ACTIONS(3176), - [aux_sym_preproc_def_token1] = ACTIONS(3176), - [aux_sym_preproc_if_token1] = ACTIONS(3176), - [aux_sym_preproc_if_token2] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), - [aux_sym_preproc_else_token1] = ACTIONS(3176), - [aux_sym_preproc_elif_token1] = ACTIONS(3176), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3176), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3176), - [sym_preproc_directive] = ACTIONS(3176), - [anon_sym_LPAREN2] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym___extension__] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3176), - [anon_sym_extern] = ACTIONS(3176), - [anon_sym___attribute__] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(3178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), - [anon_sym___declspec] = ACTIONS(3176), - [anon_sym___based] = ACTIONS(3176), - [anon_sym_signed] = ACTIONS(3176), - [anon_sym_unsigned] = ACTIONS(3176), - [anon_sym_long] = ACTIONS(3176), - [anon_sym_short] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_register] = ACTIONS(3176), - [anon_sym_inline] = ACTIONS(3176), - [anon_sym___inline] = ACTIONS(3176), - [anon_sym___inline__] = ACTIONS(3176), - [anon_sym___forceinline] = ACTIONS(3176), - [anon_sym_thread_local] = ACTIONS(3176), - [anon_sym___thread] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_constexpr] = ACTIONS(3176), - [anon_sym_volatile] = ACTIONS(3176), - [anon_sym_restrict] = ACTIONS(3176), - [anon_sym___restrict__] = ACTIONS(3176), - [anon_sym__Atomic] = ACTIONS(3176), - [anon_sym__Noreturn] = ACTIONS(3176), - [anon_sym_noreturn] = ACTIONS(3176), - [anon_sym_mutable] = ACTIONS(3176), - [anon_sym_constinit] = ACTIONS(3176), - [anon_sym_consteval] = ACTIONS(3176), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_struct] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3176), - [anon_sym_decltype] = ACTIONS(3176), - [anon_sym_virtual] = ACTIONS(3176), - [anon_sym_alignas] = ACTIONS(3176), - [anon_sym_explicit] = ACTIONS(3176), - [anon_sym_typename] = ACTIONS(3176), - [anon_sym_template] = ACTIONS(3176), - [anon_sym_operator] = ACTIONS(3176), - [anon_sym_friend] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_protected] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_static_assert] = ACTIONS(3176), - }, - [2158] = { - [sym_identifier] = ACTIONS(3190), - [aux_sym_preproc_def_token1] = ACTIONS(3190), - [aux_sym_preproc_if_token1] = ACTIONS(3190), - [aux_sym_preproc_if_token2] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3190), - [aux_sym_preproc_else_token1] = ACTIONS(3190), - [aux_sym_preproc_elif_token1] = ACTIONS(3190), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3190), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3190), - [sym_preproc_directive] = ACTIONS(3190), - [anon_sym_LPAREN2] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3192), - [anon_sym_AMP_AMP] = ACTIONS(3192), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym___extension__] = ACTIONS(3190), - [anon_sym_typedef] = ACTIONS(3190), - [anon_sym_extern] = ACTIONS(3190), - [anon_sym___attribute__] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(3192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3192), - [anon_sym___declspec] = ACTIONS(3190), - [anon_sym___based] = ACTIONS(3190), - [anon_sym_signed] = ACTIONS(3190), - [anon_sym_unsigned] = ACTIONS(3190), - [anon_sym_long] = ACTIONS(3190), - [anon_sym_short] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_register] = ACTIONS(3190), - [anon_sym_inline] = ACTIONS(3190), - [anon_sym___inline] = ACTIONS(3190), - [anon_sym___inline__] = ACTIONS(3190), - [anon_sym___forceinline] = ACTIONS(3190), - [anon_sym_thread_local] = ACTIONS(3190), - [anon_sym___thread] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_constexpr] = ACTIONS(3190), - [anon_sym_volatile] = ACTIONS(3190), - [anon_sym_restrict] = ACTIONS(3190), - [anon_sym___restrict__] = ACTIONS(3190), - [anon_sym__Atomic] = ACTIONS(3190), - [anon_sym__Noreturn] = ACTIONS(3190), - [anon_sym_noreturn] = ACTIONS(3190), - [anon_sym_mutable] = ACTIONS(3190), - [anon_sym_constinit] = ACTIONS(3190), - [anon_sym_consteval] = ACTIONS(3190), - [sym_primitive_type] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_struct] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3190), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3190), - [anon_sym_decltype] = ACTIONS(3190), - [anon_sym_virtual] = ACTIONS(3190), - [anon_sym_alignas] = ACTIONS(3190), - [anon_sym_explicit] = ACTIONS(3190), - [anon_sym_typename] = ACTIONS(3190), - [anon_sym_template] = ACTIONS(3190), - [anon_sym_operator] = ACTIONS(3190), - [anon_sym_friend] = ACTIONS(3190), - [anon_sym_public] = ACTIONS(3190), - [anon_sym_private] = ACTIONS(3190), - [anon_sym_protected] = ACTIONS(3190), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_static_assert] = ACTIONS(3190), - }, - [2159] = { - [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___extension__] = ACTIONS(3180), - [anon_sym_typedef] = ACTIONS(3180), - [anon_sym_extern] = ACTIONS(3180), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3180), - [anon_sym_constinit] = ACTIONS(3180), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3180), - [anon_sym_decltype] = ACTIONS(3180), - [anon_sym_virtual] = ACTIONS(3180), - [anon_sym_alignas] = ACTIONS(3180), - [anon_sym_explicit] = ACTIONS(3180), - [anon_sym_typename] = ACTIONS(3180), - [anon_sym_template] = ACTIONS(3180), - [anon_sym_operator] = ACTIONS(3180), - [anon_sym_friend] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3180), - [anon_sym_static_assert] = ACTIONS(3180), - }, - [2160] = { - [sym_identifier] = ACTIONS(3112), - [aux_sym_preproc_def_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token2] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), - [aux_sym_preproc_else_token1] = ACTIONS(3112), - [aux_sym_preproc_elif_token1] = ACTIONS(3112), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3112), - [sym_preproc_directive] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym___extension__] = ACTIONS(3112), - [anon_sym_typedef] = ACTIONS(3112), - [anon_sym_extern] = ACTIONS(3112), - [anon_sym___attribute__] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), - [anon_sym___declspec] = ACTIONS(3112), - [anon_sym___based] = ACTIONS(3112), - [anon_sym_signed] = ACTIONS(3112), - [anon_sym_unsigned] = ACTIONS(3112), - [anon_sym_long] = ACTIONS(3112), - [anon_sym_short] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_register] = ACTIONS(3112), - [anon_sym_inline] = ACTIONS(3112), - [anon_sym___inline] = ACTIONS(3112), - [anon_sym___inline__] = ACTIONS(3112), - [anon_sym___forceinline] = ACTIONS(3112), - [anon_sym_thread_local] = ACTIONS(3112), - [anon_sym___thread] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_constexpr] = ACTIONS(3112), - [anon_sym_volatile] = ACTIONS(3112), - [anon_sym_restrict] = ACTIONS(3112), - [anon_sym___restrict__] = ACTIONS(3112), - [anon_sym__Atomic] = ACTIONS(3112), - [anon_sym__Noreturn] = ACTIONS(3112), - [anon_sym_noreturn] = ACTIONS(3112), - [anon_sym_mutable] = ACTIONS(3112), - [anon_sym_constinit] = ACTIONS(3112), - [anon_sym_consteval] = ACTIONS(3112), - [sym_primitive_type] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3112), - [anon_sym_union] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3112), - [anon_sym_decltype] = ACTIONS(3112), - [anon_sym_virtual] = ACTIONS(3112), - [anon_sym_alignas] = ACTIONS(3112), - [anon_sym_explicit] = ACTIONS(3112), - [anon_sym_typename] = ACTIONS(3112), - [anon_sym_template] = ACTIONS(3112), - [anon_sym_operator] = ACTIONS(3112), - [anon_sym_friend] = ACTIONS(3112), - [anon_sym_public] = ACTIONS(3112), - [anon_sym_private] = ACTIONS(3112), - [anon_sym_protected] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_static_assert] = ACTIONS(3112), + [1963] = { + [sym_identifier] = ACTIONS(4995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LPAREN2] = ACTIONS(4997), + [anon_sym_TILDE] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4997), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_PERCENT] = ACTIONS(4997), + [anon_sym_PIPE_PIPE] = ACTIONS(4997), + [anon_sym_AMP_AMP] = ACTIONS(4997), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4997), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4997), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_LT_LT] = ACTIONS(4997), + [anon_sym_GT_GT] = ACTIONS(4997), + [anon_sym_SEMI] = ACTIONS(4997), + [anon_sym___extension__] = ACTIONS(4995), + [anon_sym_extern] = ACTIONS(4995), + [anon_sym___attribute__] = ACTIONS(4995), + [anon_sym_COLON_COLON] = ACTIONS(4997), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4997), + [anon_sym___declspec] = ACTIONS(4995), + [anon_sym___based] = ACTIONS(4995), + [anon_sym_LBRACE] = ACTIONS(4997), + [anon_sym_RBRACE] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_EQ] = ACTIONS(4995), + [anon_sym_static] = ACTIONS(4995), + [anon_sym_register] = ACTIONS(4995), + [anon_sym_inline] = ACTIONS(4995), + [anon_sym___inline] = ACTIONS(4995), + [anon_sym___inline__] = ACTIONS(4995), + [anon_sym___forceinline] = ACTIONS(4995), + [anon_sym_thread_local] = ACTIONS(4995), + [anon_sym___thread] = ACTIONS(4995), + [anon_sym_const] = ACTIONS(4995), + [anon_sym_constexpr] = ACTIONS(4995), + [anon_sym_volatile] = ACTIONS(4995), + [anon_sym_restrict] = ACTIONS(4995), + [anon_sym___restrict__] = ACTIONS(4995), + [anon_sym__Atomic] = ACTIONS(4995), + [anon_sym__Noreturn] = ACTIONS(4995), + [anon_sym_noreturn] = ACTIONS(4995), + [anon_sym_mutable] = ACTIONS(4995), + [anon_sym_constinit] = ACTIONS(4995), + [anon_sym_consteval] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_QMARK] = ACTIONS(4997), + [anon_sym_LT_EQ_GT] = ACTIONS(4997), + [anon_sym_or] = ACTIONS(4995), + [anon_sym_and] = ACTIONS(4995), + [anon_sym_bitor] = ACTIONS(4995), + [anon_sym_xor] = ACTIONS(4995), + [anon_sym_bitand] = ACTIONS(4995), + [anon_sym_not_eq] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4997), + [anon_sym_DOT] = ACTIONS(4995), + [anon_sym_DOT_STAR] = ACTIONS(4997), + [anon_sym_DASH_GT] = ACTIONS(4997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4995), + [anon_sym_decltype] = ACTIONS(4995), + [anon_sym_final] = ACTIONS(4995), + [anon_sym_override] = ACTIONS(4995), + [anon_sym_virtual] = ACTIONS(4995), + [anon_sym_alignas] = ACTIONS(4995), + [anon_sym_template] = ACTIONS(4995), + [anon_sym_operator] = ACTIONS(4995), + [anon_sym_try] = ACTIONS(4995), + [anon_sym_requires] = ACTIONS(4995), }, - [2161] = { - [sym_string_literal] = STATE(1964), - [sym_template_argument_list] = STATE(3036), - [sym_raw_string_literal] = STATE(1964), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(5526), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5539), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5026), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4139), - [anon_sym_LBRACK] = ACTIONS(5532), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4139), - [anon_sym_or_eq] = ACTIONS(4139), - [anon_sym_xor_eq] = ACTIONS(4139), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), + [1964] = { + [sym_function_definition] = STATE(1036), + [sym_declaration] = STATE(1036), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5573), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2253), + [sym_declaration_list] = STATE(1036), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(5098), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2134), - [anon_sym_LR_DQUOTE] = ACTIONS(2134), - [anon_sym_uR_DQUOTE] = ACTIONS(2134), - [anon_sym_UR_DQUOTE] = ACTIONS(2134), - [anon_sym_u8R_DQUOTE] = ACTIONS(2134), - }, - [2162] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(5388), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5388), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4139), - [anon_sym_LBRACK] = ACTIONS(5390), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4175), - [anon_sym_or_eq] = ACTIONS(4175), - [anon_sym_xor_eq] = ACTIONS(4175), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2163] = { - [sym_identifier] = ACTIONS(3227), - [aux_sym_preproc_def_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_if_token2] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), - [aux_sym_preproc_else_token1] = ACTIONS(3227), - [aux_sym_preproc_elif_token1] = ACTIONS(3227), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3227), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3227), - [sym_preproc_directive] = ACTIONS(3227), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym___extension__] = ACTIONS(3227), - [anon_sym_typedef] = ACTIONS(3227), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym___attribute__] = ACTIONS(3227), - [anon_sym_COLON_COLON] = ACTIONS(3229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), - [anon_sym___declspec] = ACTIONS(3227), - [anon_sym___based] = ACTIONS(3227), - [anon_sym_signed] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym___inline] = ACTIONS(3227), - [anon_sym___inline__] = ACTIONS(3227), - [anon_sym___forceinline] = ACTIONS(3227), - [anon_sym_thread_local] = ACTIONS(3227), - [anon_sym___thread] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_constexpr] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym___restrict__] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym__Noreturn] = ACTIONS(3227), - [anon_sym_noreturn] = ACTIONS(3227), - [anon_sym_mutable] = ACTIONS(3227), - [anon_sym_constinit] = ACTIONS(3227), - [anon_sym_consteval] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), + [1965] = { + [sym_function_definition] = STATE(511), + [sym_declaration] = STATE(511), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5567), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2260), + [sym_declaration_list] = STATE(511), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(5100), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3227), - [anon_sym_decltype] = ACTIONS(3227), - [anon_sym_virtual] = ACTIONS(3227), - [anon_sym_alignas] = ACTIONS(3227), - [anon_sym_explicit] = ACTIONS(3227), - [anon_sym_typename] = ACTIONS(3227), - [anon_sym_template] = ACTIONS(3227), - [anon_sym_operator] = ACTIONS(3227), - [anon_sym_friend] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_protected] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_static_assert] = ACTIONS(3227), - }, - [2164] = { - [sym_identifier] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token2] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), - [aux_sym_preproc_else_token1] = ACTIONS(3231), - [aux_sym_preproc_elif_token1] = ACTIONS(3231), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3231), - [sym_preproc_directive] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym___based] = ACTIONS(3231), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_explicit] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_operator] = ACTIONS(3231), - [anon_sym_friend] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_static_assert] = ACTIONS(3231), - }, - [2165] = { - [sym_identifier] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token2] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [aux_sym_preproc_else_token1] = ACTIONS(5542), - [aux_sym_preproc_elif_token1] = ACTIONS(5542), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5544), - [anon_sym_TILDE] = ACTIONS(5544), - [anon_sym_STAR] = ACTIONS(5544), - [anon_sym_AMP_AMP] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5542), - [anon_sym___extension__] = ACTIONS(5542), - [anon_sym_typedef] = ACTIONS(5542), - [anon_sym_extern] = ACTIONS(5542), - [anon_sym___attribute__] = ACTIONS(5542), - [anon_sym_COLON_COLON] = ACTIONS(5544), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5544), - [anon_sym___declspec] = ACTIONS(5542), - [anon_sym___based] = ACTIONS(5542), - [anon_sym_signed] = ACTIONS(5542), - [anon_sym_unsigned] = ACTIONS(5542), - [anon_sym_long] = ACTIONS(5542), - [anon_sym_short] = ACTIONS(5542), - [anon_sym_LBRACK] = ACTIONS(5542), - [anon_sym_static] = ACTIONS(5542), - [anon_sym_register] = ACTIONS(5542), - [anon_sym_inline] = ACTIONS(5542), - [anon_sym___inline] = ACTIONS(5542), - [anon_sym___inline__] = ACTIONS(5542), - [anon_sym___forceinline] = ACTIONS(5542), - [anon_sym_thread_local] = ACTIONS(5542), - [anon_sym___thread] = ACTIONS(5542), - [anon_sym_const] = ACTIONS(5542), - [anon_sym_constexpr] = ACTIONS(5542), - [anon_sym_volatile] = ACTIONS(5542), - [anon_sym_restrict] = ACTIONS(5542), - [anon_sym___restrict__] = ACTIONS(5542), - [anon_sym__Atomic] = ACTIONS(5542), - [anon_sym__Noreturn] = ACTIONS(5542), - [anon_sym_noreturn] = ACTIONS(5542), - [anon_sym_mutable] = ACTIONS(5542), - [anon_sym_constinit] = ACTIONS(5542), - [anon_sym_consteval] = ACTIONS(5542), - [sym_primitive_type] = ACTIONS(5542), - [anon_sym_enum] = ACTIONS(5542), - [anon_sym_class] = ACTIONS(5542), - [anon_sym_struct] = ACTIONS(5542), - [anon_sym_union] = ACTIONS(5542), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5542), - [anon_sym_decltype] = ACTIONS(5542), - [anon_sym_virtual] = ACTIONS(5542), - [anon_sym_alignas] = ACTIONS(5542), - [anon_sym_explicit] = ACTIONS(5542), - [anon_sym_typename] = ACTIONS(5542), - [anon_sym_template] = ACTIONS(5542), - [anon_sym_operator] = ACTIONS(5542), - [anon_sym_friend] = ACTIONS(5542), - [anon_sym_public] = ACTIONS(5542), - [anon_sym_private] = ACTIONS(5542), - [anon_sym_protected] = ACTIONS(5542), - [anon_sym_using] = ACTIONS(5542), - [anon_sym_static_assert] = ACTIONS(5542), - }, - [2166] = { - [sym_identifier] = ACTIONS(5546), - [aux_sym_preproc_def_token1] = ACTIONS(5546), - [aux_sym_preproc_if_token1] = ACTIONS(5546), - [aux_sym_preproc_if_token2] = ACTIONS(5546), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5546), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5546), - [aux_sym_preproc_else_token1] = ACTIONS(5546), - [aux_sym_preproc_elif_token1] = ACTIONS(5546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5546), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5546), - [sym_preproc_directive] = ACTIONS(5546), - [anon_sym_LPAREN2] = ACTIONS(5548), - [anon_sym_TILDE] = ACTIONS(5548), - [anon_sym_STAR] = ACTIONS(5548), - [anon_sym_AMP_AMP] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5546), - [anon_sym___extension__] = ACTIONS(5546), - [anon_sym_typedef] = ACTIONS(5546), - [anon_sym_extern] = ACTIONS(5546), - [anon_sym___attribute__] = ACTIONS(5546), - [anon_sym_COLON_COLON] = ACTIONS(5548), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5548), - [anon_sym___declspec] = ACTIONS(5546), - [anon_sym___based] = ACTIONS(5546), - [anon_sym_signed] = ACTIONS(5546), - [anon_sym_unsigned] = ACTIONS(5546), - [anon_sym_long] = ACTIONS(5546), - [anon_sym_short] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [anon_sym_static] = ACTIONS(5546), - [anon_sym_register] = ACTIONS(5546), - [anon_sym_inline] = ACTIONS(5546), - [anon_sym___inline] = ACTIONS(5546), - [anon_sym___inline__] = ACTIONS(5546), - [anon_sym___forceinline] = ACTIONS(5546), - [anon_sym_thread_local] = ACTIONS(5546), - [anon_sym___thread] = ACTIONS(5546), - [anon_sym_const] = ACTIONS(5546), - [anon_sym_constexpr] = ACTIONS(5546), - [anon_sym_volatile] = ACTIONS(5546), - [anon_sym_restrict] = ACTIONS(5546), - [anon_sym___restrict__] = ACTIONS(5546), - [anon_sym__Atomic] = ACTIONS(5546), - [anon_sym__Noreturn] = ACTIONS(5546), - [anon_sym_noreturn] = ACTIONS(5546), - [anon_sym_mutable] = ACTIONS(5546), - [anon_sym_constinit] = ACTIONS(5546), - [anon_sym_consteval] = ACTIONS(5546), - [sym_primitive_type] = ACTIONS(5546), - [anon_sym_enum] = ACTIONS(5546), - [anon_sym_class] = ACTIONS(5546), - [anon_sym_struct] = ACTIONS(5546), - [anon_sym_union] = ACTIONS(5546), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5546), - [anon_sym_decltype] = ACTIONS(5546), - [anon_sym_virtual] = ACTIONS(5546), - [anon_sym_alignas] = ACTIONS(5546), - [anon_sym_explicit] = ACTIONS(5546), - [anon_sym_typename] = ACTIONS(5546), - [anon_sym_template] = ACTIONS(5546), - [anon_sym_operator] = ACTIONS(5546), - [anon_sym_friend] = ACTIONS(5546), - [anon_sym_public] = ACTIONS(5546), - [anon_sym_private] = ACTIONS(5546), - [anon_sym_protected] = ACTIONS(5546), - [anon_sym_using] = ACTIONS(5546), - [anon_sym_static_assert] = ACTIONS(5546), - }, - [2167] = { - [sym_identifier] = ACTIONS(5550), - [aux_sym_preproc_def_token1] = ACTIONS(5550), - [aux_sym_preproc_if_token1] = ACTIONS(5550), - [aux_sym_preproc_if_token2] = ACTIONS(5550), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), - [aux_sym_preproc_else_token1] = ACTIONS(5550), - [aux_sym_preproc_elif_token1] = ACTIONS(5550), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5550), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5550), - [sym_preproc_directive] = ACTIONS(5550), - [anon_sym_LPAREN2] = ACTIONS(5552), - [anon_sym_TILDE] = ACTIONS(5552), - [anon_sym_STAR] = ACTIONS(5552), - [anon_sym_AMP_AMP] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(5550), - [anon_sym___extension__] = ACTIONS(5550), - [anon_sym_typedef] = ACTIONS(5550), - [anon_sym_extern] = ACTIONS(5550), - [anon_sym___attribute__] = ACTIONS(5550), - [anon_sym_COLON_COLON] = ACTIONS(5552), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5552), - [anon_sym___declspec] = ACTIONS(5550), - [anon_sym___based] = ACTIONS(5550), - [anon_sym_signed] = ACTIONS(5550), - [anon_sym_unsigned] = ACTIONS(5550), - [anon_sym_long] = ACTIONS(5550), - [anon_sym_short] = ACTIONS(5550), - [anon_sym_LBRACK] = ACTIONS(5550), - [anon_sym_static] = ACTIONS(5550), - [anon_sym_register] = ACTIONS(5550), - [anon_sym_inline] = ACTIONS(5550), - [anon_sym___inline] = ACTIONS(5550), - [anon_sym___inline__] = ACTIONS(5550), - [anon_sym___forceinline] = ACTIONS(5550), - [anon_sym_thread_local] = ACTIONS(5550), - [anon_sym___thread] = ACTIONS(5550), - [anon_sym_const] = ACTIONS(5550), - [anon_sym_constexpr] = ACTIONS(5550), - [anon_sym_volatile] = ACTIONS(5550), - [anon_sym_restrict] = ACTIONS(5550), - [anon_sym___restrict__] = ACTIONS(5550), - [anon_sym__Atomic] = ACTIONS(5550), - [anon_sym__Noreturn] = ACTIONS(5550), - [anon_sym_noreturn] = ACTIONS(5550), - [anon_sym_mutable] = ACTIONS(5550), - [anon_sym_constinit] = ACTIONS(5550), - [anon_sym_consteval] = ACTIONS(5550), - [sym_primitive_type] = ACTIONS(5550), - [anon_sym_enum] = ACTIONS(5550), - [anon_sym_class] = ACTIONS(5550), - [anon_sym_struct] = ACTIONS(5550), - [anon_sym_union] = ACTIONS(5550), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5550), - [anon_sym_decltype] = ACTIONS(5550), - [anon_sym_virtual] = ACTIONS(5550), - [anon_sym_alignas] = ACTIONS(5550), - [anon_sym_explicit] = ACTIONS(5550), - [anon_sym_typename] = ACTIONS(5550), - [anon_sym_template] = ACTIONS(5550), - [anon_sym_operator] = ACTIONS(5550), - [anon_sym_friend] = ACTIONS(5550), - [anon_sym_public] = ACTIONS(5550), - [anon_sym_private] = ACTIONS(5550), - [anon_sym_protected] = ACTIONS(5550), - [anon_sym_using] = ACTIONS(5550), - [anon_sym_static_assert] = ACTIONS(5550), - }, - [2168] = { - [sym_identifier] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token2] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [aux_sym_preproc_else_token1] = ACTIONS(5554), - [aux_sym_preproc_elif_token1] = ACTIONS(5554), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5556), - [anon_sym_TILDE] = ACTIONS(5556), - [anon_sym_STAR] = ACTIONS(5556), - [anon_sym_AMP_AMP] = ACTIONS(5556), - [anon_sym_AMP] = ACTIONS(5554), - [anon_sym___extension__] = ACTIONS(5554), - [anon_sym_typedef] = ACTIONS(5554), - [anon_sym_extern] = ACTIONS(5554), - [anon_sym___attribute__] = ACTIONS(5554), - [anon_sym_COLON_COLON] = ACTIONS(5556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5556), - [anon_sym___declspec] = ACTIONS(5554), - [anon_sym___based] = ACTIONS(5554), - [anon_sym_signed] = ACTIONS(5554), - [anon_sym_unsigned] = ACTIONS(5554), - [anon_sym_long] = ACTIONS(5554), - [anon_sym_short] = ACTIONS(5554), - [anon_sym_LBRACK] = ACTIONS(5554), - [anon_sym_static] = ACTIONS(5554), - [anon_sym_register] = ACTIONS(5554), - [anon_sym_inline] = ACTIONS(5554), - [anon_sym___inline] = ACTIONS(5554), - [anon_sym___inline__] = ACTIONS(5554), - [anon_sym___forceinline] = ACTIONS(5554), - [anon_sym_thread_local] = ACTIONS(5554), - [anon_sym___thread] = ACTIONS(5554), - [anon_sym_const] = ACTIONS(5554), - [anon_sym_constexpr] = ACTIONS(5554), - [anon_sym_volatile] = ACTIONS(5554), - [anon_sym_restrict] = ACTIONS(5554), - [anon_sym___restrict__] = ACTIONS(5554), - [anon_sym__Atomic] = ACTIONS(5554), - [anon_sym__Noreturn] = ACTIONS(5554), - [anon_sym_noreturn] = ACTIONS(5554), - [anon_sym_mutable] = ACTIONS(5554), - [anon_sym_constinit] = ACTIONS(5554), - [anon_sym_consteval] = ACTIONS(5554), - [sym_primitive_type] = ACTIONS(5554), - [anon_sym_enum] = ACTIONS(5554), - [anon_sym_class] = ACTIONS(5554), - [anon_sym_struct] = ACTIONS(5554), - [anon_sym_union] = ACTIONS(5554), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5554), - [anon_sym_decltype] = ACTIONS(5554), - [anon_sym_virtual] = ACTIONS(5554), - [anon_sym_alignas] = ACTIONS(5554), - [anon_sym_explicit] = ACTIONS(5554), - [anon_sym_typename] = ACTIONS(5554), - [anon_sym_template] = ACTIONS(5554), - [anon_sym_operator] = ACTIONS(5554), - [anon_sym_friend] = ACTIONS(5554), - [anon_sym_public] = ACTIONS(5554), - [anon_sym_private] = ACTIONS(5554), - [anon_sym_protected] = ACTIONS(5554), - [anon_sym_using] = ACTIONS(5554), - [anon_sym_static_assert] = ACTIONS(5554), - }, - [2169] = { - [sym_identifier] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token2] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [aux_sym_preproc_else_token1] = ACTIONS(5554), - [aux_sym_preproc_elif_token1] = ACTIONS(5554), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5556), - [anon_sym_TILDE] = ACTIONS(5556), - [anon_sym_STAR] = ACTIONS(5556), - [anon_sym_AMP_AMP] = ACTIONS(5556), - [anon_sym_AMP] = ACTIONS(5554), - [anon_sym___extension__] = ACTIONS(5554), - [anon_sym_typedef] = ACTIONS(5554), - [anon_sym_extern] = ACTIONS(5554), - [anon_sym___attribute__] = ACTIONS(5554), - [anon_sym_COLON_COLON] = ACTIONS(5556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5556), - [anon_sym___declspec] = ACTIONS(5554), - [anon_sym___based] = ACTIONS(5554), - [anon_sym_signed] = ACTIONS(5554), - [anon_sym_unsigned] = ACTIONS(5554), - [anon_sym_long] = ACTIONS(5554), - [anon_sym_short] = ACTIONS(5554), - [anon_sym_LBRACK] = ACTIONS(5554), - [anon_sym_static] = ACTIONS(5554), - [anon_sym_register] = ACTIONS(5554), - [anon_sym_inline] = ACTIONS(5554), - [anon_sym___inline] = ACTIONS(5554), - [anon_sym___inline__] = ACTIONS(5554), - [anon_sym___forceinline] = ACTIONS(5554), - [anon_sym_thread_local] = ACTIONS(5554), - [anon_sym___thread] = ACTIONS(5554), - [anon_sym_const] = ACTIONS(5554), - [anon_sym_constexpr] = ACTIONS(5554), - [anon_sym_volatile] = ACTIONS(5554), - [anon_sym_restrict] = ACTIONS(5554), - [anon_sym___restrict__] = ACTIONS(5554), - [anon_sym__Atomic] = ACTIONS(5554), - [anon_sym__Noreturn] = ACTIONS(5554), - [anon_sym_noreturn] = ACTIONS(5554), - [anon_sym_mutable] = ACTIONS(5554), - [anon_sym_constinit] = ACTIONS(5554), - [anon_sym_consteval] = ACTIONS(5554), - [sym_primitive_type] = ACTIONS(5554), - [anon_sym_enum] = ACTIONS(5554), - [anon_sym_class] = ACTIONS(5554), - [anon_sym_struct] = ACTIONS(5554), - [anon_sym_union] = ACTIONS(5554), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5554), - [anon_sym_decltype] = ACTIONS(5554), - [anon_sym_virtual] = ACTIONS(5554), - [anon_sym_alignas] = ACTIONS(5554), - [anon_sym_explicit] = ACTIONS(5554), - [anon_sym_typename] = ACTIONS(5554), - [anon_sym_template] = ACTIONS(5554), - [anon_sym_operator] = ACTIONS(5554), - [anon_sym_friend] = ACTIONS(5554), - [anon_sym_public] = ACTIONS(5554), - [anon_sym_private] = ACTIONS(5554), - [anon_sym_protected] = ACTIONS(5554), - [anon_sym_using] = ACTIONS(5554), - [anon_sym_static_assert] = ACTIONS(5554), - }, - [2170] = { - [sym_identifier] = ACTIONS(5558), - [aux_sym_preproc_def_token1] = ACTIONS(5558), - [aux_sym_preproc_if_token1] = ACTIONS(5558), - [aux_sym_preproc_if_token2] = ACTIONS(5558), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5558), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5558), - [aux_sym_preproc_else_token1] = ACTIONS(5558), - [aux_sym_preproc_elif_token1] = ACTIONS(5558), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5558), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5558), - [sym_preproc_directive] = ACTIONS(5558), - [anon_sym_LPAREN2] = ACTIONS(5560), - [anon_sym_TILDE] = ACTIONS(5560), - [anon_sym_STAR] = ACTIONS(5560), - [anon_sym_AMP_AMP] = ACTIONS(5560), - [anon_sym_AMP] = ACTIONS(5558), - [anon_sym___extension__] = ACTIONS(5558), - [anon_sym_typedef] = ACTIONS(5558), - [anon_sym_extern] = ACTIONS(5558), - [anon_sym___attribute__] = ACTIONS(5558), - [anon_sym_COLON_COLON] = ACTIONS(5560), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5560), - [anon_sym___declspec] = ACTIONS(5558), - [anon_sym___based] = ACTIONS(5558), - [anon_sym_signed] = ACTIONS(5558), - [anon_sym_unsigned] = ACTIONS(5558), - [anon_sym_long] = ACTIONS(5558), - [anon_sym_short] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [anon_sym_static] = ACTIONS(5558), - [anon_sym_register] = ACTIONS(5558), - [anon_sym_inline] = ACTIONS(5558), - [anon_sym___inline] = ACTIONS(5558), - [anon_sym___inline__] = ACTIONS(5558), - [anon_sym___forceinline] = ACTIONS(5558), - [anon_sym_thread_local] = ACTIONS(5558), - [anon_sym___thread] = ACTIONS(5558), - [anon_sym_const] = ACTIONS(5558), - [anon_sym_constexpr] = ACTIONS(5558), - [anon_sym_volatile] = ACTIONS(5558), - [anon_sym_restrict] = ACTIONS(5558), - [anon_sym___restrict__] = ACTIONS(5558), - [anon_sym__Atomic] = ACTIONS(5558), - [anon_sym__Noreturn] = ACTIONS(5558), - [anon_sym_noreturn] = ACTIONS(5558), - [anon_sym_mutable] = ACTIONS(5558), - [anon_sym_constinit] = ACTIONS(5558), - [anon_sym_consteval] = ACTIONS(5558), - [sym_primitive_type] = ACTIONS(5558), - [anon_sym_enum] = ACTIONS(5558), - [anon_sym_class] = ACTIONS(5558), - [anon_sym_struct] = ACTIONS(5558), - [anon_sym_union] = ACTIONS(5558), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5558), - [anon_sym_decltype] = ACTIONS(5558), - [anon_sym_virtual] = ACTIONS(5558), - [anon_sym_alignas] = ACTIONS(5558), - [anon_sym_explicit] = ACTIONS(5558), - [anon_sym_typename] = ACTIONS(5558), - [anon_sym_template] = ACTIONS(5558), - [anon_sym_operator] = ACTIONS(5558), - [anon_sym_friend] = ACTIONS(5558), - [anon_sym_public] = ACTIONS(5558), - [anon_sym_private] = ACTIONS(5558), - [anon_sym_protected] = ACTIONS(5558), - [anon_sym_using] = ACTIONS(5558), - [anon_sym_static_assert] = ACTIONS(5558), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2171] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5720), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), + [1966] = { + [sym_function_definition] = STATE(423), + [sym_declaration] = STATE(423), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5520), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2269), + [sym_declaration_list] = STATE(423), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(5096), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(5102), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -338279,7 +324736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), + [sym_primitive_type] = ACTIONS(3056), [anon_sym_enum] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), @@ -338292,1902 +324749,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), }, - [2172] = { - [sym_identifier] = ACTIONS(5562), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5564), - [anon_sym_COMMA] = ACTIONS(5564), - [anon_sym_RPAREN] = ACTIONS(5564), - [anon_sym_LPAREN2] = ACTIONS(5564), - [anon_sym_DASH] = ACTIONS(5562), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_STAR] = ACTIONS(5564), - [anon_sym_SLASH] = ACTIONS(5562), - [anon_sym_PERCENT] = ACTIONS(5564), - [anon_sym_PIPE_PIPE] = ACTIONS(5564), - [anon_sym_AMP_AMP] = ACTIONS(5564), - [anon_sym_PIPE] = ACTIONS(5562), - [anon_sym_CARET] = ACTIONS(5564), - [anon_sym_AMP] = ACTIONS(5562), - [anon_sym_EQ_EQ] = ACTIONS(5564), - [anon_sym_BANG_EQ] = ACTIONS(5564), - [anon_sym_GT] = ACTIONS(5562), - [anon_sym_GT_EQ] = ACTIONS(5564), - [anon_sym_LT_EQ] = ACTIONS(5562), - [anon_sym_LT] = ACTIONS(5562), - [anon_sym_LT_LT] = ACTIONS(5564), - [anon_sym_GT_GT] = ACTIONS(5564), - [anon_sym_SEMI] = ACTIONS(5564), - [anon_sym___extension__] = ACTIONS(5562), - [anon_sym___attribute__] = ACTIONS(5562), - [anon_sym___based] = ACTIONS(5562), - [anon_sym_LBRACE] = ACTIONS(5564), - [anon_sym_RBRACE] = ACTIONS(5564), - [anon_sym_signed] = ACTIONS(5562), - [anon_sym_unsigned] = ACTIONS(5562), - [anon_sym_long] = ACTIONS(5562), - [anon_sym_short] = ACTIONS(5562), - [anon_sym_LBRACK] = ACTIONS(5564), - [anon_sym_RBRACK] = ACTIONS(5564), - [anon_sym_const] = ACTIONS(5562), - [anon_sym_constexpr] = ACTIONS(5562), - [anon_sym_volatile] = ACTIONS(5562), - [anon_sym_restrict] = ACTIONS(5562), - [anon_sym___restrict__] = ACTIONS(5562), - [anon_sym__Atomic] = ACTIONS(5562), - [anon_sym__Noreturn] = ACTIONS(5562), - [anon_sym_noreturn] = ACTIONS(5562), - [anon_sym_mutable] = ACTIONS(5562), - [anon_sym_constinit] = ACTIONS(5562), - [anon_sym_consteval] = ACTIONS(5562), - [sym_primitive_type] = ACTIONS(5562), - [anon_sym_COLON] = ACTIONS(5564), - [anon_sym_QMARK] = ACTIONS(5564), - [anon_sym_LT_EQ_GT] = ACTIONS(5564), - [anon_sym_or] = ACTIONS(5562), - [anon_sym_and] = ACTIONS(5562), - [anon_sym_bitor] = ACTIONS(5562), - [anon_sym_xor] = ACTIONS(5562), - [anon_sym_bitand] = ACTIONS(5562), - [anon_sym_not_eq] = ACTIONS(5562), - [anon_sym_DASH_DASH] = ACTIONS(5564), - [anon_sym_PLUS_PLUS] = ACTIONS(5564), - [anon_sym_DOT] = ACTIONS(5562), - [anon_sym_DOT_STAR] = ACTIONS(5564), - [anon_sym_DASH_GT] = ACTIONS(5564), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5562), - [anon_sym_decltype] = ACTIONS(5562), - [anon_sym_final] = ACTIONS(5562), - [anon_sym_override] = ACTIONS(5562), - [anon_sym_requires] = ACTIONS(5562), - }, - [2173] = { - [sym_template_argument_list] = STATE(1935), - [aux_sym_sized_type_specifier_repeat1] = STATE(2469), - [sym_identifier] = ACTIONS(5566), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5568), - [anon_sym_COMMA] = ACTIONS(5568), - [aux_sym_preproc_if_token2] = ACTIONS(5568), - [aux_sym_preproc_else_token1] = ACTIONS(5568), - [aux_sym_preproc_elif_token1] = ACTIONS(5566), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5568), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_STAR] = ACTIONS(5566), - [anon_sym_SLASH] = ACTIONS(5566), - [anon_sym_PERCENT] = ACTIONS(5566), - [anon_sym_PIPE_PIPE] = ACTIONS(5568), - [anon_sym_AMP_AMP] = ACTIONS(5568), - [anon_sym_PIPE] = ACTIONS(5566), - [anon_sym_CARET] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(5566), - [anon_sym_EQ_EQ] = ACTIONS(5568), - [anon_sym_BANG_EQ] = ACTIONS(5568), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_GT_EQ] = ACTIONS(5568), - [anon_sym_LT_EQ] = ACTIONS(5566), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_LT_LT] = ACTIONS(5566), - [anon_sym_GT_GT] = ACTIONS(5566), - [anon_sym___attribute__] = ACTIONS(5566), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(5568), - [anon_sym_signed] = ACTIONS(5570), - [anon_sym_unsigned] = ACTIONS(5570), - [anon_sym_long] = ACTIONS(5570), - [anon_sym_short] = ACTIONS(5570), - [anon_sym_LBRACK] = ACTIONS(5568), - [anon_sym_EQ] = ACTIONS(5566), - [anon_sym_QMARK] = ACTIONS(5568), - [anon_sym_STAR_EQ] = ACTIONS(5568), - [anon_sym_SLASH_EQ] = ACTIONS(5568), - [anon_sym_PERCENT_EQ] = ACTIONS(5568), - [anon_sym_PLUS_EQ] = ACTIONS(5568), - [anon_sym_DASH_EQ] = ACTIONS(5568), - [anon_sym_LT_LT_EQ] = ACTIONS(5568), - [anon_sym_GT_GT_EQ] = ACTIONS(5568), - [anon_sym_AMP_EQ] = ACTIONS(5568), - [anon_sym_CARET_EQ] = ACTIONS(5568), - [anon_sym_PIPE_EQ] = ACTIONS(5568), - [anon_sym_and_eq] = ACTIONS(5566), - [anon_sym_or_eq] = ACTIONS(5566), - [anon_sym_xor_eq] = ACTIONS(5566), - [anon_sym_LT_EQ_GT] = ACTIONS(5568), - [anon_sym_or] = ACTIONS(5566), - [anon_sym_and] = ACTIONS(5566), - [anon_sym_bitor] = ACTIONS(5566), - [anon_sym_xor] = ACTIONS(5566), - [anon_sym_bitand] = ACTIONS(5566), - [anon_sym_not_eq] = ACTIONS(5566), - [anon_sym_DASH_DASH] = ACTIONS(5568), - [anon_sym_PLUS_PLUS] = ACTIONS(5568), - [anon_sym_DOT] = ACTIONS(5566), - [anon_sym_DOT_STAR] = ACTIONS(5568), - [anon_sym_DASH_GT] = ACTIONS(5568), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5566), - [anon_sym_decltype] = ACTIONS(5566), - }, - [2174] = { - [sym_identifier] = ACTIONS(2849), - [aux_sym_preproc_def_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token2] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), - [aux_sym_preproc_else_token1] = ACTIONS(2849), - [aux_sym_preproc_elif_token1] = ACTIONS(2849), - [sym_preproc_directive] = ACTIONS(2849), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2849), - [anon_sym___extension__] = ACTIONS(2849), - [anon_sym_typedef] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), - [anon_sym___declspec] = ACTIONS(2849), - [anon_sym___based] = ACTIONS(2849), - [anon_sym_signed] = ACTIONS(2849), - [anon_sym_unsigned] = ACTIONS(2849), - [anon_sym_long] = ACTIONS(2849), - [anon_sym_short] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_register] = ACTIONS(2849), - [anon_sym_inline] = ACTIONS(2849), - [anon_sym___inline] = ACTIONS(2849), - [anon_sym___inline__] = ACTIONS(2849), - [anon_sym___forceinline] = ACTIONS(2849), - [anon_sym_thread_local] = ACTIONS(2849), - [anon_sym___thread] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_constexpr] = ACTIONS(2849), - [anon_sym_volatile] = ACTIONS(2849), - [anon_sym_restrict] = ACTIONS(2849), - [anon_sym___restrict__] = ACTIONS(2849), - [anon_sym__Atomic] = ACTIONS(2849), - [anon_sym__Noreturn] = ACTIONS(2849), - [anon_sym_noreturn] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [sym_primitive_type] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_class] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2849), - [anon_sym_decltype] = ACTIONS(2849), - [anon_sym_virtual] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym_explicit] = ACTIONS(2849), - [anon_sym_typename] = ACTIONS(2849), - [anon_sym_template] = ACTIONS(2849), - [anon_sym_operator] = ACTIONS(2849), - [anon_sym_friend] = ACTIONS(2849), - [anon_sym_public] = ACTIONS(2849), - [anon_sym_private] = ACTIONS(2849), - [anon_sym_protected] = ACTIONS(2849), - [anon_sym_using] = ACTIONS(2849), - [anon_sym_static_assert] = ACTIONS(2849), - [anon_sym_catch] = ACTIONS(2849), - }, - [2175] = { - [sym_string_literal] = STATE(2207), - [sym_raw_string_literal] = STATE(2207), - [aux_sym_concatenated_string_repeat1] = STATE(2207), - [sym_identifier] = ACTIONS(5572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5198), - [anon_sym_COMMA] = ACTIONS(5198), - [anon_sym_LPAREN2] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5200), - [anon_sym_PLUS] = ACTIONS(5200), - [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_SLASH] = ACTIONS(5200), - [anon_sym_PERCENT] = ACTIONS(5200), - [anon_sym_PIPE_PIPE] = ACTIONS(5198), - [anon_sym_AMP_AMP] = ACTIONS(5198), - [anon_sym_PIPE] = ACTIONS(5200), - [anon_sym_CARET] = ACTIONS(5200), - [anon_sym_AMP] = ACTIONS(5200), - [anon_sym_EQ_EQ] = ACTIONS(5198), - [anon_sym_BANG_EQ] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5200), - [anon_sym_GT_EQ] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5200), - [anon_sym_LT] = ACTIONS(5200), - [anon_sym_LT_LT] = ACTIONS(5200), - [anon_sym_GT_GT] = ACTIONS(5200), - [anon_sym_SEMI] = ACTIONS(5198), - [anon_sym___attribute__] = ACTIONS(5200), - [anon_sym_LBRACK] = ACTIONS(5198), - [anon_sym_EQ] = ACTIONS(5200), - [anon_sym_QMARK] = ACTIONS(5198), - [anon_sym_STAR_EQ] = ACTIONS(5198), - [anon_sym_SLASH_EQ] = ACTIONS(5198), - [anon_sym_PERCENT_EQ] = ACTIONS(5198), - [anon_sym_PLUS_EQ] = ACTIONS(5198), - [anon_sym_DASH_EQ] = ACTIONS(5198), - [anon_sym_LT_LT_EQ] = ACTIONS(5198), - [anon_sym_GT_GT_EQ] = ACTIONS(5198), - [anon_sym_AMP_EQ] = ACTIONS(5198), - [anon_sym_CARET_EQ] = ACTIONS(5198), - [anon_sym_PIPE_EQ] = ACTIONS(5198), - [anon_sym_and_eq] = ACTIONS(5200), - [anon_sym_or_eq] = ACTIONS(5200), - [anon_sym_xor_eq] = ACTIONS(5200), - [anon_sym_LT_EQ_GT] = ACTIONS(5198), - [anon_sym_or] = ACTIONS(5200), - [anon_sym_and] = ACTIONS(5200), - [anon_sym_bitor] = ACTIONS(5200), - [anon_sym_xor] = ACTIONS(5200), - [anon_sym_bitand] = ACTIONS(5200), - [anon_sym_not_eq] = ACTIONS(5200), - [anon_sym_DASH_DASH] = ACTIONS(5198), - [anon_sym_PLUS_PLUS] = ACTIONS(5198), - [anon_sym_DOT] = ACTIONS(5200), - [anon_sym_DOT_STAR] = ACTIONS(5198), - [anon_sym_DASH_GT] = ACTIONS(5198), - [anon_sym_L_DQUOTE] = ACTIONS(5574), - [anon_sym_u_DQUOTE] = ACTIONS(5574), - [anon_sym_U_DQUOTE] = ACTIONS(5574), - [anon_sym_u8_DQUOTE] = ACTIONS(5574), - [anon_sym_DQUOTE] = ACTIONS(5574), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5576), - [anon_sym_LR_DQUOTE] = ACTIONS(5576), - [anon_sym_uR_DQUOTE] = ACTIONS(5576), - [anon_sym_UR_DQUOTE] = ACTIONS(5576), - [anon_sym_u8R_DQUOTE] = ACTIONS(5576), - [sym_literal_suffix] = ACTIONS(5200), - }, - [2176] = { - [sym_identifier] = ACTIONS(5578), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5580), - [anon_sym_COMMA] = ACTIONS(5580), - [anon_sym_RPAREN] = ACTIONS(5580), - [anon_sym_LPAREN2] = ACTIONS(5580), - [anon_sym_DASH] = ACTIONS(5578), - [anon_sym_PLUS] = ACTIONS(5578), - [anon_sym_STAR] = ACTIONS(5580), - [anon_sym_SLASH] = ACTIONS(5578), - [anon_sym_PERCENT] = ACTIONS(5580), - [anon_sym_PIPE_PIPE] = ACTIONS(5580), - [anon_sym_AMP_AMP] = ACTIONS(5580), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_CARET] = ACTIONS(5580), - [anon_sym_AMP] = ACTIONS(5578), - [anon_sym_EQ_EQ] = ACTIONS(5580), - [anon_sym_BANG_EQ] = ACTIONS(5580), - [anon_sym_GT] = ACTIONS(5578), - [anon_sym_GT_EQ] = ACTIONS(5580), - [anon_sym_LT_EQ] = ACTIONS(5578), - [anon_sym_LT] = ACTIONS(5578), - [anon_sym_LT_LT] = ACTIONS(5580), - [anon_sym_GT_GT] = ACTIONS(5580), - [anon_sym_SEMI] = ACTIONS(5580), - [anon_sym___extension__] = ACTIONS(5578), - [anon_sym___attribute__] = ACTIONS(5578), - [anon_sym___based] = ACTIONS(5578), - [anon_sym_LBRACE] = ACTIONS(5580), - [anon_sym_RBRACE] = ACTIONS(5580), - [anon_sym_signed] = ACTIONS(5578), - [anon_sym_unsigned] = ACTIONS(5578), - [anon_sym_long] = ACTIONS(5578), - [anon_sym_short] = ACTIONS(5578), - [anon_sym_LBRACK] = ACTIONS(5580), - [anon_sym_RBRACK] = ACTIONS(5580), - [anon_sym_const] = ACTIONS(5578), - [anon_sym_constexpr] = ACTIONS(5578), - [anon_sym_volatile] = ACTIONS(5578), - [anon_sym_restrict] = ACTIONS(5578), - [anon_sym___restrict__] = ACTIONS(5578), - [anon_sym__Atomic] = ACTIONS(5578), - [anon_sym__Noreturn] = ACTIONS(5578), - [anon_sym_noreturn] = ACTIONS(5578), - [anon_sym_mutable] = ACTIONS(5578), - [anon_sym_constinit] = ACTIONS(5578), - [anon_sym_consteval] = ACTIONS(5578), - [sym_primitive_type] = ACTIONS(5578), - [anon_sym_COLON] = ACTIONS(5580), - [anon_sym_QMARK] = ACTIONS(5580), - [anon_sym_LT_EQ_GT] = ACTIONS(5580), - [anon_sym_or] = ACTIONS(5578), - [anon_sym_and] = ACTIONS(5578), - [anon_sym_bitor] = ACTIONS(5578), - [anon_sym_xor] = ACTIONS(5578), - [anon_sym_bitand] = ACTIONS(5578), - [anon_sym_not_eq] = ACTIONS(5578), - [anon_sym_DASH_DASH] = ACTIONS(5580), - [anon_sym_PLUS_PLUS] = ACTIONS(5580), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_DOT_STAR] = ACTIONS(5580), - [anon_sym_DASH_GT] = ACTIONS(5580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5578), - [anon_sym_decltype] = ACTIONS(5578), - [anon_sym_final] = ACTIONS(5578), - [anon_sym_override] = ACTIONS(5578), - [anon_sym_requires] = ACTIONS(5578), - }, - [2177] = { - [sym_identifier] = ACTIONS(5582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5584), - [anon_sym_COMMA] = ACTIONS(5584), - [anon_sym_RPAREN] = ACTIONS(5584), - [anon_sym_LPAREN2] = ACTIONS(5584), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_STAR] = ACTIONS(5584), - [anon_sym_SLASH] = ACTIONS(5582), - [anon_sym_PERCENT] = ACTIONS(5584), - [anon_sym_PIPE_PIPE] = ACTIONS(5584), - [anon_sym_AMP_AMP] = ACTIONS(5584), - [anon_sym_PIPE] = ACTIONS(5582), - [anon_sym_CARET] = ACTIONS(5584), - [anon_sym_AMP] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5584), - [anon_sym_BANG_EQ] = ACTIONS(5584), - [anon_sym_GT] = ACTIONS(5582), - [anon_sym_GT_EQ] = ACTIONS(5584), - [anon_sym_LT_EQ] = ACTIONS(5582), - [anon_sym_LT] = ACTIONS(5582), - [anon_sym_LT_LT] = ACTIONS(5584), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_SEMI] = ACTIONS(5584), - [anon_sym___extension__] = ACTIONS(5582), - [anon_sym___attribute__] = ACTIONS(5582), - [anon_sym___based] = ACTIONS(5582), - [anon_sym_LBRACE] = ACTIONS(5584), - [anon_sym_RBRACE] = ACTIONS(5584), - [anon_sym_signed] = ACTIONS(5582), - [anon_sym_unsigned] = ACTIONS(5582), - [anon_sym_long] = ACTIONS(5582), - [anon_sym_short] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5584), - [anon_sym_RBRACK] = ACTIONS(5584), - [anon_sym_const] = ACTIONS(5582), - [anon_sym_constexpr] = ACTIONS(5582), - [anon_sym_volatile] = ACTIONS(5582), - [anon_sym_restrict] = ACTIONS(5582), - [anon_sym___restrict__] = ACTIONS(5582), - [anon_sym__Atomic] = ACTIONS(5582), - [anon_sym__Noreturn] = ACTIONS(5582), - [anon_sym_noreturn] = ACTIONS(5582), - [anon_sym_mutable] = ACTIONS(5582), - [anon_sym_constinit] = ACTIONS(5582), - [anon_sym_consteval] = ACTIONS(5582), - [sym_primitive_type] = ACTIONS(5582), - [anon_sym_COLON] = ACTIONS(5584), - [anon_sym_QMARK] = ACTIONS(5584), - [anon_sym_LT_EQ_GT] = ACTIONS(5584), - [anon_sym_or] = ACTIONS(5582), - [anon_sym_and] = ACTIONS(5582), - [anon_sym_bitor] = ACTIONS(5582), - [anon_sym_xor] = ACTIONS(5582), - [anon_sym_bitand] = ACTIONS(5582), - [anon_sym_not_eq] = ACTIONS(5582), - [anon_sym_DASH_DASH] = ACTIONS(5584), - [anon_sym_PLUS_PLUS] = ACTIONS(5584), - [anon_sym_DOT] = ACTIONS(5582), - [anon_sym_DOT_STAR] = ACTIONS(5584), - [anon_sym_DASH_GT] = ACTIONS(5584), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5582), - [anon_sym_decltype] = ACTIONS(5582), - [anon_sym_final] = ACTIONS(5582), - [anon_sym_override] = ACTIONS(5582), - [anon_sym_requires] = ACTIONS(5582), - }, - [2178] = { - [sym_identifier] = ACTIONS(5586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5588), - [anon_sym_COMMA] = ACTIONS(5588), - [anon_sym_RPAREN] = ACTIONS(5588), - [anon_sym_LPAREN2] = ACTIONS(5588), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_STAR] = ACTIONS(5588), - [anon_sym_SLASH] = ACTIONS(5586), - [anon_sym_PERCENT] = ACTIONS(5588), - [anon_sym_PIPE_PIPE] = ACTIONS(5588), - [anon_sym_AMP_AMP] = ACTIONS(5588), - [anon_sym_PIPE] = ACTIONS(5586), - [anon_sym_CARET] = ACTIONS(5588), - [anon_sym_AMP] = ACTIONS(5586), - [anon_sym_EQ_EQ] = ACTIONS(5588), - [anon_sym_BANG_EQ] = ACTIONS(5588), - [anon_sym_GT] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5586), - [anon_sym_LT] = ACTIONS(5586), - [anon_sym_LT_LT] = ACTIONS(5588), - [anon_sym_GT_GT] = ACTIONS(5588), - [anon_sym_SEMI] = ACTIONS(5588), - [anon_sym___extension__] = ACTIONS(5586), - [anon_sym___attribute__] = ACTIONS(5586), - [anon_sym___based] = ACTIONS(5586), - [anon_sym_LBRACE] = ACTIONS(5588), - [anon_sym_RBRACE] = ACTIONS(5588), - [anon_sym_signed] = ACTIONS(5586), - [anon_sym_unsigned] = ACTIONS(5586), - [anon_sym_long] = ACTIONS(5586), - [anon_sym_short] = ACTIONS(5586), - [anon_sym_LBRACK] = ACTIONS(5588), - [anon_sym_RBRACK] = ACTIONS(5588), - [anon_sym_const] = ACTIONS(5586), - [anon_sym_constexpr] = ACTIONS(5586), - [anon_sym_volatile] = ACTIONS(5586), - [anon_sym_restrict] = ACTIONS(5586), - [anon_sym___restrict__] = ACTIONS(5586), - [anon_sym__Atomic] = ACTIONS(5586), - [anon_sym__Noreturn] = ACTIONS(5586), - [anon_sym_noreturn] = ACTIONS(5586), - [anon_sym_mutable] = ACTIONS(5586), - [anon_sym_constinit] = ACTIONS(5586), - [anon_sym_consteval] = ACTIONS(5586), - [sym_primitive_type] = ACTIONS(5586), - [anon_sym_COLON] = ACTIONS(5588), - [anon_sym_QMARK] = ACTIONS(5588), - [anon_sym_LT_EQ_GT] = ACTIONS(5588), - [anon_sym_or] = ACTIONS(5586), - [anon_sym_and] = ACTIONS(5586), - [anon_sym_bitor] = ACTIONS(5586), - [anon_sym_xor] = ACTIONS(5586), - [anon_sym_bitand] = ACTIONS(5586), - [anon_sym_not_eq] = ACTIONS(5586), - [anon_sym_DASH_DASH] = ACTIONS(5588), - [anon_sym_PLUS_PLUS] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(5586), - [anon_sym_DOT_STAR] = ACTIONS(5588), - [anon_sym_DASH_GT] = ACTIONS(5588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5586), - [anon_sym_decltype] = ACTIONS(5586), - [anon_sym_final] = ACTIONS(5586), - [anon_sym_override] = ACTIONS(5586), - [anon_sym_requires] = ACTIONS(5586), - }, - [2179] = { - [sym_identifier] = ACTIONS(5590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(5592), - [anon_sym_LPAREN2] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5590), - [anon_sym_STAR] = ACTIONS(5592), - [anon_sym_SLASH] = ACTIONS(5590), - [anon_sym_PERCENT] = ACTIONS(5592), - [anon_sym_PIPE_PIPE] = ACTIONS(5592), - [anon_sym_AMP_AMP] = ACTIONS(5592), - [anon_sym_PIPE] = ACTIONS(5590), - [anon_sym_CARET] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(5590), - [anon_sym_EQ_EQ] = ACTIONS(5592), - [anon_sym_BANG_EQ] = ACTIONS(5592), - [anon_sym_GT] = ACTIONS(5590), - [anon_sym_GT_EQ] = ACTIONS(5592), - [anon_sym_LT_EQ] = ACTIONS(5590), - [anon_sym_LT] = ACTIONS(5590), - [anon_sym_LT_LT] = ACTIONS(5592), - [anon_sym_GT_GT] = ACTIONS(5592), - [anon_sym_SEMI] = ACTIONS(5592), - [anon_sym___extension__] = ACTIONS(5590), - [anon_sym___attribute__] = ACTIONS(5590), - [anon_sym___based] = ACTIONS(5590), - [anon_sym_LBRACE] = ACTIONS(5592), - [anon_sym_RBRACE] = ACTIONS(5592), - [anon_sym_signed] = ACTIONS(5590), - [anon_sym_unsigned] = ACTIONS(5590), - [anon_sym_long] = ACTIONS(5590), - [anon_sym_short] = ACTIONS(5590), - [anon_sym_LBRACK] = ACTIONS(5592), - [anon_sym_RBRACK] = ACTIONS(5592), - [anon_sym_const] = ACTIONS(5590), - [anon_sym_constexpr] = ACTIONS(5590), - [anon_sym_volatile] = ACTIONS(5590), - [anon_sym_restrict] = ACTIONS(5590), - [anon_sym___restrict__] = ACTIONS(5590), - [anon_sym__Atomic] = ACTIONS(5590), - [anon_sym__Noreturn] = ACTIONS(5590), - [anon_sym_noreturn] = ACTIONS(5590), - [anon_sym_mutable] = ACTIONS(5590), - [anon_sym_constinit] = ACTIONS(5590), - [anon_sym_consteval] = ACTIONS(5590), - [sym_primitive_type] = ACTIONS(5590), - [anon_sym_COLON] = ACTIONS(5592), - [anon_sym_QMARK] = ACTIONS(5592), - [anon_sym_LT_EQ_GT] = ACTIONS(5592), - [anon_sym_or] = ACTIONS(5590), - [anon_sym_and] = ACTIONS(5590), - [anon_sym_bitor] = ACTIONS(5590), - [anon_sym_xor] = ACTIONS(5590), - [anon_sym_bitand] = ACTIONS(5590), - [anon_sym_not_eq] = ACTIONS(5590), - [anon_sym_DASH_DASH] = ACTIONS(5592), - [anon_sym_PLUS_PLUS] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_DOT_STAR] = ACTIONS(5592), - [anon_sym_DASH_GT] = ACTIONS(5592), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5590), - [anon_sym_decltype] = ACTIONS(5590), - [anon_sym_final] = ACTIONS(5590), - [anon_sym_override] = ACTIONS(5590), - [anon_sym_requires] = ACTIONS(5590), - }, - [2180] = { - [sym_identifier] = ACTIONS(5594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5596), - [anon_sym_COMMA] = ACTIONS(5596), - [anon_sym_RPAREN] = ACTIONS(5596), - [anon_sym_LPAREN2] = ACTIONS(5596), - [anon_sym_DASH] = ACTIONS(5594), - [anon_sym_PLUS] = ACTIONS(5594), - [anon_sym_STAR] = ACTIONS(5596), - [anon_sym_SLASH] = ACTIONS(5594), - [anon_sym_PERCENT] = ACTIONS(5596), - [anon_sym_PIPE_PIPE] = ACTIONS(5596), - [anon_sym_AMP_AMP] = ACTIONS(5596), - [anon_sym_PIPE] = ACTIONS(5594), - [anon_sym_CARET] = ACTIONS(5596), - [anon_sym_AMP] = ACTIONS(5594), - [anon_sym_EQ_EQ] = ACTIONS(5596), - [anon_sym_BANG_EQ] = ACTIONS(5596), - [anon_sym_GT] = ACTIONS(5594), - [anon_sym_GT_EQ] = ACTIONS(5596), - [anon_sym_LT_EQ] = ACTIONS(5594), - [anon_sym_LT] = ACTIONS(5594), - [anon_sym_LT_LT] = ACTIONS(5596), - [anon_sym_GT_GT] = ACTIONS(5596), - [anon_sym_SEMI] = ACTIONS(5596), - [anon_sym___extension__] = ACTIONS(5594), - [anon_sym___attribute__] = ACTIONS(5594), - [anon_sym___based] = ACTIONS(5594), - [anon_sym_LBRACE] = ACTIONS(5596), - [anon_sym_RBRACE] = ACTIONS(5596), - [anon_sym_signed] = ACTIONS(5594), - [anon_sym_unsigned] = ACTIONS(5594), - [anon_sym_long] = ACTIONS(5594), - [anon_sym_short] = ACTIONS(5594), - [anon_sym_LBRACK] = ACTIONS(5596), - [anon_sym_RBRACK] = ACTIONS(5596), - [anon_sym_const] = ACTIONS(5594), - [anon_sym_constexpr] = ACTIONS(5594), - [anon_sym_volatile] = ACTIONS(5594), - [anon_sym_restrict] = ACTIONS(5594), - [anon_sym___restrict__] = ACTIONS(5594), - [anon_sym__Atomic] = ACTIONS(5594), - [anon_sym__Noreturn] = ACTIONS(5594), - [anon_sym_noreturn] = ACTIONS(5594), - [anon_sym_mutable] = ACTIONS(5594), - [anon_sym_constinit] = ACTIONS(5594), - [anon_sym_consteval] = ACTIONS(5594), - [sym_primitive_type] = ACTIONS(5594), - [anon_sym_COLON] = ACTIONS(5596), - [anon_sym_QMARK] = ACTIONS(5596), - [anon_sym_LT_EQ_GT] = ACTIONS(5596), - [anon_sym_or] = ACTIONS(5594), - [anon_sym_and] = ACTIONS(5594), - [anon_sym_bitor] = ACTIONS(5594), - [anon_sym_xor] = ACTIONS(5594), - [anon_sym_bitand] = ACTIONS(5594), - [anon_sym_not_eq] = ACTIONS(5594), - [anon_sym_DASH_DASH] = ACTIONS(5596), - [anon_sym_PLUS_PLUS] = ACTIONS(5596), - [anon_sym_DOT] = ACTIONS(5594), - [anon_sym_DOT_STAR] = ACTIONS(5596), - [anon_sym_DASH_GT] = ACTIONS(5596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5594), - [anon_sym_decltype] = ACTIONS(5594), - [anon_sym_final] = ACTIONS(5594), - [anon_sym_override] = ACTIONS(5594), - [anon_sym_requires] = ACTIONS(5594), - }, - [2181] = { - [sym_identifier] = ACTIONS(5598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5600), - [anon_sym_COMMA] = ACTIONS(5600), - [anon_sym_RPAREN] = ACTIONS(5600), - [anon_sym_LPAREN2] = ACTIONS(5600), - [anon_sym_DASH] = ACTIONS(5598), - [anon_sym_PLUS] = ACTIONS(5598), - [anon_sym_STAR] = ACTIONS(5600), - [anon_sym_SLASH] = ACTIONS(5598), - [anon_sym_PERCENT] = ACTIONS(5600), - [anon_sym_PIPE_PIPE] = ACTIONS(5600), - [anon_sym_AMP_AMP] = ACTIONS(5600), - [anon_sym_PIPE] = ACTIONS(5598), - [anon_sym_CARET] = ACTIONS(5600), - [anon_sym_AMP] = ACTIONS(5598), - [anon_sym_EQ_EQ] = ACTIONS(5600), - [anon_sym_BANG_EQ] = ACTIONS(5600), - [anon_sym_GT] = ACTIONS(5598), - [anon_sym_GT_EQ] = ACTIONS(5600), - [anon_sym_LT_EQ] = ACTIONS(5598), - [anon_sym_LT] = ACTIONS(5598), - [anon_sym_LT_LT] = ACTIONS(5600), - [anon_sym_GT_GT] = ACTIONS(5600), - [anon_sym_SEMI] = ACTIONS(5600), - [anon_sym___extension__] = ACTIONS(5598), - [anon_sym___attribute__] = ACTIONS(5598), - [anon_sym___based] = ACTIONS(5598), - [anon_sym_LBRACE] = ACTIONS(5600), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_signed] = ACTIONS(5598), - [anon_sym_unsigned] = ACTIONS(5598), - [anon_sym_long] = ACTIONS(5598), - [anon_sym_short] = ACTIONS(5598), - [anon_sym_LBRACK] = ACTIONS(5600), - [anon_sym_RBRACK] = ACTIONS(5600), - [anon_sym_const] = ACTIONS(5598), - [anon_sym_constexpr] = ACTIONS(5598), - [anon_sym_volatile] = ACTIONS(5598), - [anon_sym_restrict] = ACTIONS(5598), - [anon_sym___restrict__] = ACTIONS(5598), - [anon_sym__Atomic] = ACTIONS(5598), - [anon_sym__Noreturn] = ACTIONS(5598), - [anon_sym_noreturn] = ACTIONS(5598), - [anon_sym_mutable] = ACTIONS(5598), - [anon_sym_constinit] = ACTIONS(5598), - [anon_sym_consteval] = ACTIONS(5598), - [sym_primitive_type] = ACTIONS(5598), - [anon_sym_COLON] = ACTIONS(5600), - [anon_sym_QMARK] = ACTIONS(5600), - [anon_sym_LT_EQ_GT] = ACTIONS(5600), - [anon_sym_or] = ACTIONS(5598), - [anon_sym_and] = ACTIONS(5598), - [anon_sym_bitor] = ACTIONS(5598), - [anon_sym_xor] = ACTIONS(5598), - [anon_sym_bitand] = ACTIONS(5598), - [anon_sym_not_eq] = ACTIONS(5598), - [anon_sym_DASH_DASH] = ACTIONS(5600), - [anon_sym_PLUS_PLUS] = ACTIONS(5600), - [anon_sym_DOT] = ACTIONS(5598), - [anon_sym_DOT_STAR] = ACTIONS(5600), - [anon_sym_DASH_GT] = ACTIONS(5600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5598), - [anon_sym_decltype] = ACTIONS(5598), - [anon_sym_final] = ACTIONS(5598), - [anon_sym_override] = ACTIONS(5598), - [anon_sym_requires] = ACTIONS(5598), - }, - [2182] = { - [sym_catch_clause] = STATE(2251), - [aux_sym_constructor_try_statement_repeat1] = STATE(2251), - [sym_identifier] = ACTIONS(2836), - [aux_sym_preproc_def_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token2] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), - [sym_preproc_directive] = ACTIONS(2836), - [anon_sym_LPAREN2] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym___extension__] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym___attribute__] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2838), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), - [anon_sym___declspec] = ACTIONS(2836), - [anon_sym___based] = ACTIONS(2836), - [anon_sym_signed] = ACTIONS(2836), - [anon_sym_unsigned] = ACTIONS(2836), - [anon_sym_long] = ACTIONS(2836), - [anon_sym_short] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_register] = ACTIONS(2836), - [anon_sym_inline] = ACTIONS(2836), - [anon_sym___inline] = ACTIONS(2836), - [anon_sym___inline__] = ACTIONS(2836), - [anon_sym___forceinline] = ACTIONS(2836), - [anon_sym_thread_local] = ACTIONS(2836), - [anon_sym___thread] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_constexpr] = ACTIONS(2836), - [anon_sym_volatile] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(2836), - [anon_sym___restrict__] = ACTIONS(2836), - [anon_sym__Atomic] = ACTIONS(2836), - [anon_sym__Noreturn] = ACTIONS(2836), - [anon_sym_noreturn] = ACTIONS(2836), - [anon_sym_mutable] = ACTIONS(2836), - [anon_sym_constinit] = ACTIONS(2836), - [anon_sym_consteval] = ACTIONS(2836), - [sym_primitive_type] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2836), - [anon_sym_decltype] = ACTIONS(2836), - [anon_sym_virtual] = ACTIONS(2836), - [anon_sym_alignas] = ACTIONS(2836), - [anon_sym_explicit] = ACTIONS(2836), - [anon_sym_typename] = ACTIONS(2836), - [anon_sym_template] = ACTIONS(2836), - [anon_sym_operator] = ACTIONS(2836), - [anon_sym_friend] = ACTIONS(2836), - [anon_sym_public] = ACTIONS(2836), - [anon_sym_private] = ACTIONS(2836), - [anon_sym_protected] = ACTIONS(2836), - [anon_sym_using] = ACTIONS(2836), - [anon_sym_static_assert] = ACTIONS(2836), - [anon_sym_catch] = ACTIONS(5602), - }, - [2183] = { - [sym_identifier] = ACTIONS(3472), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3474), - [anon_sym_COMMA] = ACTIONS(3474), - [anon_sym_RPAREN] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3474), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_AMP_AMP] = ACTIONS(3474), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_extern] = ACTIONS(3472), - [anon_sym___attribute__] = ACTIONS(3472), - [anon_sym_COLON_COLON] = ACTIONS(3474), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3474), - [anon_sym___declspec] = ACTIONS(3472), - [anon_sym___based] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_signed] = ACTIONS(3472), - [anon_sym_unsigned] = ACTIONS(3472), - [anon_sym_long] = ACTIONS(3472), - [anon_sym_short] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(3472), - [anon_sym_EQ] = ACTIONS(3474), - [anon_sym_static] = ACTIONS(3472), - [anon_sym_register] = ACTIONS(3472), - [anon_sym_inline] = ACTIONS(3472), - [anon_sym___inline] = ACTIONS(3472), - [anon_sym___inline__] = ACTIONS(3472), - [anon_sym___forceinline] = ACTIONS(3472), - [anon_sym_thread_local] = ACTIONS(3472), - [anon_sym___thread] = ACTIONS(3472), - [anon_sym_const] = ACTIONS(3472), - [anon_sym_constexpr] = ACTIONS(3472), - [anon_sym_volatile] = ACTIONS(3472), - [anon_sym_restrict] = ACTIONS(3472), - [anon_sym___restrict__] = ACTIONS(3472), - [anon_sym__Atomic] = ACTIONS(3472), - [anon_sym__Noreturn] = ACTIONS(3472), - [anon_sym_noreturn] = ACTIONS(3472), - [anon_sym_mutable] = ACTIONS(3472), - [anon_sym_constinit] = ACTIONS(3472), - [anon_sym_consteval] = ACTIONS(3472), - [sym_primitive_type] = ACTIONS(3472), - [anon_sym_enum] = ACTIONS(3472), - [anon_sym_class] = ACTIONS(3472), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3472), - [anon_sym_asm] = ACTIONS(3472), - [anon_sym___asm__] = ACTIONS(3472), - [anon_sym_DASH_GT] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3472), - [anon_sym_decltype] = ACTIONS(3472), - [anon_sym_final] = ACTIONS(3472), - [anon_sym_override] = ACTIONS(3472), - [anon_sym_virtual] = ACTIONS(3472), - [anon_sym_alignas] = ACTIONS(3472), - [anon_sym_explicit] = ACTIONS(3472), - [anon_sym_typename] = ACTIONS(3472), - [anon_sym_template] = ACTIONS(3472), - [anon_sym_GT2] = ACTIONS(3474), - [anon_sym_operator] = ACTIONS(3472), - [anon_sym_try] = ACTIONS(3472), - [anon_sym_noexcept] = ACTIONS(3472), - [anon_sym_throw] = ACTIONS(3472), - [anon_sym_requires] = ACTIONS(3472), - }, - [2184] = { - [sym_catch_clause] = STATE(2184), - [aux_sym_constructor_try_statement_repeat1] = STATE(2184), - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2813), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym___inline] = ACTIONS(2813), - [anon_sym___inline__] = ACTIONS(2813), - [anon_sym___forceinline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym___thread] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym___restrict__] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym__Noreturn] = ACTIONS(2813), - [anon_sym_noreturn] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_alignas] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_friend] = ACTIONS(2813), - [anon_sym_public] = ACTIONS(2813), - [anon_sym_private] = ACTIONS(2813), - [anon_sym_protected] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_catch] = ACTIONS(5604), - }, - [2185] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_COLON] = ACTIONS(4242), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4175), - [anon_sym_or_eq] = ACTIONS(4175), - [anon_sym_xor_eq] = ACTIONS(4175), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), - }, - [2186] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5016), - [anon_sym_COMMA] = ACTIONS(5016), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5021), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5021), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym___extension__] = ACTIONS(5019), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5019), - [anon_sym_volatile] = ACTIONS(5019), - [anon_sym_restrict] = ACTIONS(5019), - [anon_sym___restrict__] = ACTIONS(5019), - [anon_sym__Atomic] = ACTIONS(5019), - [anon_sym__Noreturn] = ACTIONS(5019), - [anon_sym_noreturn] = ACTIONS(5019), - [anon_sym_mutable] = ACTIONS(5019), - [anon_sym_constinit] = ACTIONS(5019), - [anon_sym_consteval] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_LT_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_GT_EQ] = ACTIONS(5021), - [anon_sym_AMP_EQ] = ACTIONS(5014), - [anon_sym_CARET_EQ] = ACTIONS(5014), - [anon_sym_PIPE_EQ] = ACTIONS(5014), - [anon_sym_and_eq] = ACTIONS(5014), - [anon_sym_or_eq] = ACTIONS(5014), - [anon_sym_xor_eq] = ACTIONS(5014), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5021), - [anon_sym_and] = ACTIONS(5021), - [anon_sym_bitor] = ACTIONS(5014), - [anon_sym_xor] = ACTIONS(5021), - [anon_sym_bitand] = ACTIONS(5014), - [anon_sym_not_eq] = ACTIONS(5014), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5014), + [1967] = { + [sym_function_definition] = STATE(945), + [sym_declaration] = STATE(945), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5565), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2206), + [sym_declaration_list] = STATE(945), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(5104), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5019), - [anon_sym_decltype] = ACTIONS(5019), - [anon_sym_GT2] = ACTIONS(5016), - }, - [2187] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [aux_sym_preproc_else_token1] = ACTIONS(2144), - [aux_sym_preproc_elif_token1] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_friend] = ACTIONS(2144), - [anon_sym_public] = ACTIONS(2144), - [anon_sym_private] = ACTIONS(2144), - [anon_sym_protected] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - }, - [2188] = { - [sym_identifier] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token2] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), - [aux_sym_preproc_else_token1] = ACTIONS(2148), - [aux_sym_preproc_elif_token1] = ACTIONS(2148), - [sym_preproc_directive] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_AMP_AMP] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym___extension__] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym___attribute__] = ACTIONS(2148), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2148), - [anon_sym___based] = ACTIONS(2148), - [anon_sym_signed] = ACTIONS(2148), - [anon_sym_unsigned] = ACTIONS(2148), - [anon_sym_long] = ACTIONS(2148), - [anon_sym_short] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym___inline] = ACTIONS(2148), - [anon_sym___inline__] = ACTIONS(2148), - [anon_sym___forceinline] = ACTIONS(2148), - [anon_sym_thread_local] = ACTIONS(2148), - [anon_sym___thread] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_constexpr] = ACTIONS(2148), - [anon_sym_volatile] = ACTIONS(2148), - [anon_sym_restrict] = ACTIONS(2148), - [anon_sym___restrict__] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(2148), - [anon_sym__Noreturn] = ACTIONS(2148), - [anon_sym_noreturn] = ACTIONS(2148), - [anon_sym_mutable] = ACTIONS(2148), - [anon_sym_constinit] = ACTIONS(2148), - [anon_sym_consteval] = ACTIONS(2148), - [sym_primitive_type] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_class] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2148), - [anon_sym_decltype] = ACTIONS(2148), - [anon_sym_virtual] = ACTIONS(2148), - [anon_sym_alignas] = ACTIONS(2148), - [anon_sym_explicit] = ACTIONS(2148), - [anon_sym_typename] = ACTIONS(2148), - [anon_sym_template] = ACTIONS(2148), - [anon_sym_operator] = ACTIONS(2148), - [anon_sym_friend] = ACTIONS(2148), - [anon_sym_public] = ACTIONS(2148), - [anon_sym_private] = ACTIONS(2148), - [anon_sym_protected] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2148), - [anon_sym_static_assert] = ACTIONS(2148), - [anon_sym_catch] = ACTIONS(2148), - }, - [2189] = { - [sym_identifier] = ACTIONS(5607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5609), - [anon_sym_COMMA] = ACTIONS(5609), - [anon_sym_RPAREN] = ACTIONS(5609), - [anon_sym_LPAREN2] = ACTIONS(5609), - [anon_sym_DASH] = ACTIONS(5607), - [anon_sym_PLUS] = ACTIONS(5607), - [anon_sym_STAR] = ACTIONS(5609), - [anon_sym_SLASH] = ACTIONS(5607), - [anon_sym_PERCENT] = ACTIONS(5609), - [anon_sym_PIPE_PIPE] = ACTIONS(5609), - [anon_sym_AMP_AMP] = ACTIONS(5609), - [anon_sym_PIPE] = ACTIONS(5607), - [anon_sym_CARET] = ACTIONS(5609), - [anon_sym_AMP] = ACTIONS(5607), - [anon_sym_EQ_EQ] = ACTIONS(5609), - [anon_sym_BANG_EQ] = ACTIONS(5609), - [anon_sym_GT] = ACTIONS(5607), - [anon_sym_GT_EQ] = ACTIONS(5609), - [anon_sym_LT_EQ] = ACTIONS(5607), - [anon_sym_LT] = ACTIONS(5607), - [anon_sym_LT_LT] = ACTIONS(5609), - [anon_sym_GT_GT] = ACTIONS(5609), - [anon_sym_SEMI] = ACTIONS(5609), - [anon_sym___extension__] = ACTIONS(5607), - [anon_sym___attribute__] = ACTIONS(5607), - [anon_sym___based] = ACTIONS(5607), - [anon_sym_LBRACE] = ACTIONS(5609), - [anon_sym_RBRACE] = ACTIONS(5609), - [anon_sym_signed] = ACTIONS(5607), - [anon_sym_unsigned] = ACTIONS(5607), - [anon_sym_long] = ACTIONS(5607), - [anon_sym_short] = ACTIONS(5607), - [anon_sym_LBRACK] = ACTIONS(5609), - [anon_sym_RBRACK] = ACTIONS(5609), - [anon_sym_const] = ACTIONS(5607), - [anon_sym_constexpr] = ACTIONS(5607), - [anon_sym_volatile] = ACTIONS(5607), - [anon_sym_restrict] = ACTIONS(5607), - [anon_sym___restrict__] = ACTIONS(5607), - [anon_sym__Atomic] = ACTIONS(5607), - [anon_sym__Noreturn] = ACTIONS(5607), - [anon_sym_noreturn] = ACTIONS(5607), - [anon_sym_mutable] = ACTIONS(5607), - [anon_sym_constinit] = ACTIONS(5607), - [anon_sym_consteval] = ACTIONS(5607), - [sym_primitive_type] = ACTIONS(5607), - [anon_sym_COLON] = ACTIONS(5609), - [anon_sym_QMARK] = ACTIONS(5609), - [anon_sym_LT_EQ_GT] = ACTIONS(5609), - [anon_sym_or] = ACTIONS(5607), - [anon_sym_and] = ACTIONS(5607), - [anon_sym_bitor] = ACTIONS(5607), - [anon_sym_xor] = ACTIONS(5607), - [anon_sym_bitand] = ACTIONS(5607), - [anon_sym_not_eq] = ACTIONS(5607), - [anon_sym_DASH_DASH] = ACTIONS(5609), - [anon_sym_PLUS_PLUS] = ACTIONS(5609), - [anon_sym_DOT] = ACTIONS(5607), - [anon_sym_DOT_STAR] = ACTIONS(5609), - [anon_sym_DASH_GT] = ACTIONS(5609), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5607), - [anon_sym_decltype] = ACTIONS(5607), - [anon_sym_final] = ACTIONS(5607), - [anon_sym_override] = ACTIONS(5607), - [anon_sym_requires] = ACTIONS(5607), - }, - [2190] = { - [sym_catch_clause] = STATE(2184), - [aux_sym_constructor_try_statement_repeat1] = STATE(2184), - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym___extension__] = ACTIONS(2826), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym___inline] = ACTIONS(2826), - [anon_sym___inline__] = ACTIONS(2826), - [anon_sym___forceinline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym___thread] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym___restrict__] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym__Noreturn] = ACTIONS(2826), - [anon_sym_noreturn] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_alignas] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_friend] = ACTIONS(2826), - [anon_sym_public] = ACTIONS(2826), - [anon_sym_private] = ACTIONS(2826), - [anon_sym_protected] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_catch] = ACTIONS(5611), - }, - [2191] = { - [sym_catch_clause] = STATE(2184), - [aux_sym_constructor_try_statement_repeat1] = STATE(2184), - [sym_identifier] = ACTIONS(2836), - [aux_sym_preproc_def_token1] = ACTIONS(2836), - [aux_sym_preproc_if_token1] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2836), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2836), - [sym_preproc_directive] = ACTIONS(2836), - [anon_sym_LPAREN2] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym___extension__] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym___attribute__] = ACTIONS(2836), - [anon_sym_COLON_COLON] = ACTIONS(2838), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2838), - [anon_sym___declspec] = ACTIONS(2836), - [anon_sym___based] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_signed] = ACTIONS(2836), - [anon_sym_unsigned] = ACTIONS(2836), - [anon_sym_long] = ACTIONS(2836), - [anon_sym_short] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_register] = ACTIONS(2836), - [anon_sym_inline] = ACTIONS(2836), - [anon_sym___inline] = ACTIONS(2836), - [anon_sym___inline__] = ACTIONS(2836), - [anon_sym___forceinline] = ACTIONS(2836), - [anon_sym_thread_local] = ACTIONS(2836), - [anon_sym___thread] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_constexpr] = ACTIONS(2836), - [anon_sym_volatile] = ACTIONS(2836), - [anon_sym_restrict] = ACTIONS(2836), - [anon_sym___restrict__] = ACTIONS(2836), - [anon_sym__Atomic] = ACTIONS(2836), - [anon_sym__Noreturn] = ACTIONS(2836), - [anon_sym_noreturn] = ACTIONS(2836), - [anon_sym_mutable] = ACTIONS(2836), - [anon_sym_constinit] = ACTIONS(2836), - [anon_sym_consteval] = ACTIONS(2836), - [sym_primitive_type] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2836), - [anon_sym_decltype] = ACTIONS(2836), - [anon_sym_virtual] = ACTIONS(2836), - [anon_sym_alignas] = ACTIONS(2836), - [anon_sym_explicit] = ACTIONS(2836), - [anon_sym_typename] = ACTIONS(2836), - [anon_sym_template] = ACTIONS(2836), - [anon_sym_operator] = ACTIONS(2836), - [anon_sym_friend] = ACTIONS(2836), - [anon_sym_public] = ACTIONS(2836), - [anon_sym_private] = ACTIONS(2836), - [anon_sym_protected] = ACTIONS(2836), - [anon_sym_using] = ACTIONS(2836), - [anon_sym_static_assert] = ACTIONS(2836), - [anon_sym_catch] = ACTIONS(5611), - }, - [2192] = { - [sym_string_literal] = STATE(2624), - [sym_template_argument_list] = STATE(3946), - [sym_raw_string_literal] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_RPAREN] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(5030), - [anon_sym_or_eq] = ACTIONS(5030), - [anon_sym_xor_eq] = ACTIONS(5030), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4147), - [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_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(4216), - [anon_sym_LR_DQUOTE] = ACTIONS(4216), - [anon_sym_uR_DQUOTE] = ACTIONS(4216), - [anon_sym_UR_DQUOTE] = ACTIONS(4216), - [anon_sym_u8R_DQUOTE] = ACTIONS(4216), - [anon_sym_DASH_GT_STAR] = ACTIONS(4139), - }, - [2193] = { - [sym_identifier] = ACTIONS(5613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(5615), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym_LPAREN2] = ACTIONS(5615), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_SLASH] = ACTIONS(5613), - [anon_sym_PERCENT] = ACTIONS(5615), - [anon_sym_PIPE_PIPE] = ACTIONS(5615), - [anon_sym_AMP_AMP] = ACTIONS(5615), - [anon_sym_PIPE] = ACTIONS(5613), - [anon_sym_CARET] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5613), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5613), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_LT_EQ] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5613), - [anon_sym_LT_LT] = ACTIONS(5615), - [anon_sym_GT_GT] = ACTIONS(5615), - [anon_sym_SEMI] = ACTIONS(5615), - [anon_sym___extension__] = ACTIONS(5613), - [anon_sym___attribute__] = ACTIONS(5613), - [anon_sym___based] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5615), - [anon_sym_RBRACE] = ACTIONS(5615), - [anon_sym_signed] = ACTIONS(5613), - [anon_sym_unsigned] = ACTIONS(5613), - [anon_sym_long] = ACTIONS(5613), - [anon_sym_short] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(5615), - [anon_sym_RBRACK] = ACTIONS(5615), - [anon_sym_const] = ACTIONS(5613), - [anon_sym_constexpr] = ACTIONS(5613), - [anon_sym_volatile] = ACTIONS(5613), - [anon_sym_restrict] = ACTIONS(5613), - [anon_sym___restrict__] = ACTIONS(5613), - [anon_sym__Atomic] = ACTIONS(5613), - [anon_sym__Noreturn] = ACTIONS(5613), - [anon_sym_noreturn] = ACTIONS(5613), - [anon_sym_mutable] = ACTIONS(5613), - [anon_sym_constinit] = ACTIONS(5613), - [anon_sym_consteval] = ACTIONS(5613), - [sym_primitive_type] = ACTIONS(5613), - [anon_sym_COLON] = ACTIONS(5615), - [anon_sym_QMARK] = ACTIONS(5615), - [anon_sym_LT_EQ_GT] = ACTIONS(5615), - [anon_sym_or] = ACTIONS(5613), - [anon_sym_and] = ACTIONS(5613), - [anon_sym_bitor] = ACTIONS(5613), - [anon_sym_xor] = ACTIONS(5613), - [anon_sym_bitand] = ACTIONS(5613), - [anon_sym_not_eq] = ACTIONS(5613), - [anon_sym_DASH_DASH] = ACTIONS(5615), - [anon_sym_PLUS_PLUS] = ACTIONS(5615), - [anon_sym_DOT] = ACTIONS(5613), - [anon_sym_DOT_STAR] = ACTIONS(5615), - [anon_sym_DASH_GT] = ACTIONS(5615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5613), - [anon_sym_decltype] = ACTIONS(5613), - [anon_sym_final] = ACTIONS(5613), - [anon_sym_override] = ACTIONS(5613), - [anon_sym_requires] = ACTIONS(5613), - }, - [2194] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_DASH] = ACTIONS(5617), - [anon_sym_PLUS] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_SLASH] = ACTIONS(5617), - [anon_sym_PERCENT] = ACTIONS(5619), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_PIPE] = ACTIONS(5617), - [anon_sym_CARET] = ACTIONS(5619), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym_EQ_EQ] = ACTIONS(5619), - [anon_sym_BANG_EQ] = ACTIONS(5619), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5617), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_LT] = ACTIONS(5619), - [anon_sym_GT_GT] = ACTIONS(5619), - [anon_sym_SEMI] = ACTIONS(5619), - [anon_sym___extension__] = ACTIONS(5617), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym___based] = ACTIONS(5617), - [anon_sym_LBRACE] = ACTIONS(5619), - [anon_sym_RBRACE] = ACTIONS(5619), - [anon_sym_signed] = ACTIONS(5617), - [anon_sym_unsigned] = ACTIONS(5617), - [anon_sym_long] = ACTIONS(5617), - [anon_sym_short] = ACTIONS(5617), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_RBRACK] = ACTIONS(5619), - [anon_sym_const] = ACTIONS(5617), - [anon_sym_constexpr] = ACTIONS(5617), - [anon_sym_volatile] = ACTIONS(5617), - [anon_sym_restrict] = ACTIONS(5617), - [anon_sym___restrict__] = ACTIONS(5617), - [anon_sym__Atomic] = ACTIONS(5617), - [anon_sym__Noreturn] = ACTIONS(5617), - [anon_sym_noreturn] = ACTIONS(5617), - [anon_sym_mutable] = ACTIONS(5617), - [anon_sym_constinit] = ACTIONS(5617), - [anon_sym_consteval] = ACTIONS(5617), - [sym_primitive_type] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5619), - [anon_sym_QMARK] = ACTIONS(5619), - [anon_sym_LT_EQ_GT] = ACTIONS(5619), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [anon_sym_bitor] = ACTIONS(5617), - [anon_sym_xor] = ACTIONS(5617), - [anon_sym_bitand] = ACTIONS(5617), - [anon_sym_not_eq] = ACTIONS(5617), - [anon_sym_DASH_DASH] = ACTIONS(5619), - [anon_sym_PLUS_PLUS] = ACTIONS(5619), - [anon_sym_DOT] = ACTIONS(5617), - [anon_sym_DOT_STAR] = ACTIONS(5619), - [anon_sym_DASH_GT] = ACTIONS(5619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), - [anon_sym_final] = ACTIONS(5617), - [anon_sym_override] = ACTIONS(5617), - [anon_sym_requires] = ACTIONS(5617), - }, - [2195] = { - [sym_identifier] = ACTIONS(5621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5623), - [anon_sym_COMMA] = ACTIONS(5623), - [anon_sym_RPAREN] = ACTIONS(5623), - [anon_sym_LPAREN2] = ACTIONS(5623), - [anon_sym_DASH] = ACTIONS(5621), - [anon_sym_PLUS] = ACTIONS(5621), - [anon_sym_STAR] = ACTIONS(5623), - [anon_sym_SLASH] = ACTIONS(5621), - [anon_sym_PERCENT] = ACTIONS(5623), - [anon_sym_PIPE_PIPE] = ACTIONS(5623), - [anon_sym_AMP_AMP] = ACTIONS(5623), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_CARET] = ACTIONS(5623), - [anon_sym_AMP] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_GT] = ACTIONS(5621), - [anon_sym_GT_EQ] = ACTIONS(5623), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_LT] = ACTIONS(5621), - [anon_sym_LT_LT] = ACTIONS(5623), - [anon_sym_GT_GT] = ACTIONS(5623), - [anon_sym_SEMI] = ACTIONS(5623), - [anon_sym___extension__] = ACTIONS(5621), - [anon_sym___attribute__] = ACTIONS(5621), - [anon_sym___based] = ACTIONS(5621), - [anon_sym_LBRACE] = ACTIONS(5623), - [anon_sym_RBRACE] = ACTIONS(5623), - [anon_sym_signed] = ACTIONS(5621), - [anon_sym_unsigned] = ACTIONS(5621), - [anon_sym_long] = ACTIONS(5621), - [anon_sym_short] = ACTIONS(5621), - [anon_sym_LBRACK] = ACTIONS(5623), - [anon_sym_RBRACK] = ACTIONS(5623), - [anon_sym_const] = ACTIONS(5621), - [anon_sym_constexpr] = ACTIONS(5621), - [anon_sym_volatile] = ACTIONS(5621), - [anon_sym_restrict] = ACTIONS(5621), - [anon_sym___restrict__] = ACTIONS(5621), - [anon_sym__Atomic] = ACTIONS(5621), - [anon_sym__Noreturn] = ACTIONS(5621), - [anon_sym_noreturn] = ACTIONS(5621), - [anon_sym_mutable] = ACTIONS(5621), - [anon_sym_constinit] = ACTIONS(5621), - [anon_sym_consteval] = ACTIONS(5621), - [sym_primitive_type] = ACTIONS(5621), - [anon_sym_COLON] = ACTIONS(5623), - [anon_sym_QMARK] = ACTIONS(5623), - [anon_sym_LT_EQ_GT] = ACTIONS(5623), - [anon_sym_or] = ACTIONS(5621), - [anon_sym_and] = ACTIONS(5621), - [anon_sym_bitor] = ACTIONS(5621), - [anon_sym_xor] = ACTIONS(5621), - [anon_sym_bitand] = ACTIONS(5621), - [anon_sym_not_eq] = ACTIONS(5621), - [anon_sym_DASH_DASH] = ACTIONS(5623), - [anon_sym_PLUS_PLUS] = ACTIONS(5623), - [anon_sym_DOT] = ACTIONS(5621), - [anon_sym_DOT_STAR] = ACTIONS(5623), - [anon_sym_DASH_GT] = ACTIONS(5623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5621), - [anon_sym_decltype] = ACTIONS(5621), - [anon_sym_final] = ACTIONS(5621), - [anon_sym_override] = ACTIONS(5621), - [anon_sym_requires] = ACTIONS(5621), - }, - [2196] = { - [sym_catch_clause] = STATE(2184), - [aux_sym_constructor_try_statement_repeat1] = STATE(2184), - [sym_identifier] = ACTIONS(2820), - [aux_sym_preproc_def_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token1] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), - [sym_preproc_directive] = ACTIONS(2820), - [anon_sym_LPAREN2] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym___extension__] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym___attribute__] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), - [anon_sym___declspec] = ACTIONS(2820), - [anon_sym___based] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2822), - [anon_sym_signed] = ACTIONS(2820), - [anon_sym_unsigned] = ACTIONS(2820), - [anon_sym_long] = ACTIONS(2820), - [anon_sym_short] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_register] = ACTIONS(2820), - [anon_sym_inline] = ACTIONS(2820), - [anon_sym___inline] = ACTIONS(2820), - [anon_sym___inline__] = ACTIONS(2820), - [anon_sym___forceinline] = ACTIONS(2820), - [anon_sym_thread_local] = ACTIONS(2820), - [anon_sym___thread] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_constexpr] = ACTIONS(2820), - [anon_sym_volatile] = ACTIONS(2820), - [anon_sym_restrict] = ACTIONS(2820), - [anon_sym___restrict__] = ACTIONS(2820), - [anon_sym__Atomic] = ACTIONS(2820), - [anon_sym__Noreturn] = ACTIONS(2820), - [anon_sym_noreturn] = ACTIONS(2820), - [anon_sym_mutable] = ACTIONS(2820), - [anon_sym_constinit] = ACTIONS(2820), - [anon_sym_consteval] = ACTIONS(2820), - [sym_primitive_type] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2820), - [anon_sym_decltype] = ACTIONS(2820), - [anon_sym_virtual] = ACTIONS(2820), - [anon_sym_alignas] = ACTIONS(2820), - [anon_sym_explicit] = ACTIONS(2820), - [anon_sym_typename] = ACTIONS(2820), - [anon_sym_template] = ACTIONS(2820), - [anon_sym_operator] = ACTIONS(2820), - [anon_sym_friend] = ACTIONS(2820), - [anon_sym_public] = ACTIONS(2820), - [anon_sym_private] = ACTIONS(2820), - [anon_sym_protected] = ACTIONS(2820), - [anon_sym_using] = ACTIONS(2820), - [anon_sym_static_assert] = ACTIONS(2820), - [anon_sym_catch] = ACTIONS(5611), - }, - [2197] = { - [sym_string_literal] = STATE(2197), - [sym_raw_string_literal] = STATE(2197), - [aux_sym_concatenated_string_repeat1] = STATE(2197), - [sym_identifier] = ACTIONS(5625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5158), - [anon_sym_COMMA] = ACTIONS(5158), - [anon_sym_RPAREN] = ACTIONS(5158), - [anon_sym_LPAREN2] = ACTIONS(5158), - [anon_sym_DASH] = ACTIONS(5160), - [anon_sym_PLUS] = ACTIONS(5160), - [anon_sym_STAR] = ACTIONS(5160), - [anon_sym_SLASH] = ACTIONS(5160), - [anon_sym_PERCENT] = ACTIONS(5160), - [anon_sym_PIPE_PIPE] = ACTIONS(5158), - [anon_sym_AMP_AMP] = ACTIONS(5158), - [anon_sym_PIPE] = ACTIONS(5160), - [anon_sym_CARET] = ACTIONS(5160), - [anon_sym_AMP] = ACTIONS(5160), - [anon_sym_EQ_EQ] = ACTIONS(5158), - [anon_sym_BANG_EQ] = ACTIONS(5158), - [anon_sym_GT] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_LT] = ACTIONS(5160), - [anon_sym_LT_LT] = ACTIONS(5160), - [anon_sym_GT_GT] = ACTIONS(5160), - [anon_sym_LBRACK] = ACTIONS(5158), - [anon_sym_EQ] = ACTIONS(5160), - [anon_sym_QMARK] = ACTIONS(5158), - [anon_sym_STAR_EQ] = ACTIONS(5158), - [anon_sym_SLASH_EQ] = ACTIONS(5158), - [anon_sym_PERCENT_EQ] = ACTIONS(5158), - [anon_sym_PLUS_EQ] = ACTIONS(5158), - [anon_sym_DASH_EQ] = ACTIONS(5158), - [anon_sym_LT_LT_EQ] = ACTIONS(5158), - [anon_sym_GT_GT_EQ] = ACTIONS(5158), - [anon_sym_AMP_EQ] = ACTIONS(5158), - [anon_sym_CARET_EQ] = ACTIONS(5158), - [anon_sym_PIPE_EQ] = ACTIONS(5158), - [anon_sym_and_eq] = ACTIONS(5160), - [anon_sym_or_eq] = ACTIONS(5160), - [anon_sym_xor_eq] = ACTIONS(5160), - [anon_sym_LT_EQ_GT] = ACTIONS(5158), - [anon_sym_or] = ACTIONS(5160), - [anon_sym_and] = ACTIONS(5160), - [anon_sym_bitor] = ACTIONS(5160), - [anon_sym_xor] = ACTIONS(5160), - [anon_sym_bitand] = ACTIONS(5160), - [anon_sym_not_eq] = ACTIONS(5160), - [anon_sym_DASH_DASH] = ACTIONS(5158), - [anon_sym_PLUS_PLUS] = ACTIONS(5158), - [anon_sym_DOT] = ACTIONS(5160), - [anon_sym_DOT_STAR] = ACTIONS(5158), - [anon_sym_DASH_GT] = ACTIONS(5160), - [anon_sym_L_DQUOTE] = ACTIONS(5628), - [anon_sym_u_DQUOTE] = ACTIONS(5628), - [anon_sym_U_DQUOTE] = ACTIONS(5628), - [anon_sym_u8_DQUOTE] = ACTIONS(5628), - [anon_sym_DQUOTE] = ACTIONS(5628), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5631), - [anon_sym_LR_DQUOTE] = ACTIONS(5631), - [anon_sym_uR_DQUOTE] = ACTIONS(5631), - [anon_sym_UR_DQUOTE] = ACTIONS(5631), - [anon_sym_u8R_DQUOTE] = ACTIONS(5631), - [anon_sym_DASH_GT_STAR] = ACTIONS(5158), - [sym_literal_suffix] = ACTIONS(5160), - }, - [2198] = { - [sym_identifier] = ACTIONS(5613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(5615), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym_LPAREN2] = ACTIONS(5615), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5615), - [anon_sym_SLASH] = ACTIONS(5613), - [anon_sym_PERCENT] = ACTIONS(5615), - [anon_sym_PIPE_PIPE] = ACTIONS(5615), - [anon_sym_AMP_AMP] = ACTIONS(5615), - [anon_sym_PIPE] = ACTIONS(5613), - [anon_sym_CARET] = ACTIONS(5615), - [anon_sym_AMP] = ACTIONS(5613), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5613), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_LT_EQ] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5613), - [anon_sym_LT_LT] = ACTIONS(5615), - [anon_sym_GT_GT] = ACTIONS(5615), - [anon_sym_SEMI] = ACTIONS(5615), - [anon_sym___extension__] = ACTIONS(5613), - [anon_sym___attribute__] = ACTIONS(5613), - [anon_sym___based] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5615), - [anon_sym_RBRACE] = ACTIONS(5615), - [anon_sym_signed] = ACTIONS(5613), - [anon_sym_unsigned] = ACTIONS(5613), - [anon_sym_long] = ACTIONS(5613), - [anon_sym_short] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(5615), - [anon_sym_RBRACK] = ACTIONS(5615), - [anon_sym_const] = ACTIONS(5613), - [anon_sym_constexpr] = ACTIONS(5613), - [anon_sym_volatile] = ACTIONS(5613), - [anon_sym_restrict] = ACTIONS(5613), - [anon_sym___restrict__] = ACTIONS(5613), - [anon_sym__Atomic] = ACTIONS(5613), - [anon_sym__Noreturn] = ACTIONS(5613), - [anon_sym_noreturn] = ACTIONS(5613), - [anon_sym_mutable] = ACTIONS(5613), - [anon_sym_constinit] = ACTIONS(5613), - [anon_sym_consteval] = ACTIONS(5613), - [sym_primitive_type] = ACTIONS(5613), - [anon_sym_COLON] = ACTIONS(5615), - [anon_sym_QMARK] = ACTIONS(5615), - [anon_sym_LT_EQ_GT] = ACTIONS(5615), - [anon_sym_or] = ACTIONS(5613), - [anon_sym_and] = ACTIONS(5613), - [anon_sym_bitor] = ACTIONS(5613), - [anon_sym_xor] = ACTIONS(5613), - [anon_sym_bitand] = ACTIONS(5613), - [anon_sym_not_eq] = ACTIONS(5613), - [anon_sym_DASH_DASH] = ACTIONS(5615), - [anon_sym_PLUS_PLUS] = ACTIONS(5615), - [anon_sym_DOT] = ACTIONS(5613), - [anon_sym_DOT_STAR] = ACTIONS(5615), - [anon_sym_DASH_GT] = ACTIONS(5615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5613), - [anon_sym_decltype] = ACTIONS(5613), - [anon_sym_final] = ACTIONS(5613), - [anon_sym_override] = ACTIONS(5613), - [anon_sym_requires] = ACTIONS(5613), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2199] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5797), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), + [1968] = { + [sym_function_definition] = STATE(905), + [sym_declaration] = STATE(905), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5526), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2266), + [sym_declaration_list] = STATE(905), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(5096), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(5106), [anon_sym_signed] = ACTIONS(53), [anon_sym_unsigned] = ACTIONS(53), [anon_sym_long] = ACTIONS(53), @@ -340211,7 +324896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), + [sym_primitive_type] = ACTIONS(3056), [anon_sym_enum] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), [anon_sym_struct] = ACTIONS(69), @@ -340224,1693 +324909,1451 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), }, - [2200] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2253), - [sym_identifier] = ACTIONS(5634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5636), - [anon_sym_COMMA] = ACTIONS(5636), - [anon_sym_RPAREN] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_STAR] = ACTIONS(5636), - [anon_sym_SLASH] = ACTIONS(5638), - [anon_sym_PERCENT] = ACTIONS(5636), - [anon_sym_PIPE_PIPE] = ACTIONS(5636), - [anon_sym_AMP_AMP] = ACTIONS(5636), - [anon_sym_PIPE] = ACTIONS(5638), - [anon_sym_CARET] = ACTIONS(5636), - [anon_sym_AMP] = ACTIONS(5638), - [anon_sym_EQ_EQ] = ACTIONS(5636), - [anon_sym_BANG_EQ] = ACTIONS(5636), - [anon_sym_GT] = ACTIONS(5638), - [anon_sym_GT_EQ] = ACTIONS(5636), - [anon_sym_LT_EQ] = ACTIONS(5638), - [anon_sym_LT] = ACTIONS(5638), - [anon_sym_LT_LT] = ACTIONS(5636), - [anon_sym_GT_GT] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5636), - [anon_sym___extension__] = ACTIONS(5638), - [anon_sym___attribute__] = ACTIONS(5638), - [anon_sym_LBRACE] = ACTIONS(5636), - [anon_sym_RBRACE] = ACTIONS(5636), - [anon_sym_signed] = ACTIONS(5640), - [anon_sym_unsigned] = ACTIONS(5640), - [anon_sym_long] = ACTIONS(5640), - [anon_sym_short] = ACTIONS(5640), - [anon_sym_LBRACK] = ACTIONS(5636), - [anon_sym_RBRACK] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5638), - [anon_sym_constexpr] = ACTIONS(5638), - [anon_sym_volatile] = ACTIONS(5638), - [anon_sym_restrict] = ACTIONS(5638), - [anon_sym___restrict__] = ACTIONS(5638), - [anon_sym__Atomic] = ACTIONS(5638), - [anon_sym__Noreturn] = ACTIONS(5638), - [anon_sym_noreturn] = ACTIONS(5638), - [anon_sym_mutable] = ACTIONS(5638), - [anon_sym_constinit] = ACTIONS(5638), - [anon_sym_consteval] = ACTIONS(5638), - [sym_primitive_type] = ACTIONS(5642), - [anon_sym_COLON] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5636), - [anon_sym_LT_EQ_GT] = ACTIONS(5636), - [anon_sym_or] = ACTIONS(5638), - [anon_sym_and] = ACTIONS(5638), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5638), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5636), - [anon_sym_PLUS_PLUS] = ACTIONS(5636), - [anon_sym_DOT] = ACTIONS(5638), - [anon_sym_DOT_STAR] = ACTIONS(5636), - [anon_sym_DASH_GT] = ACTIONS(5636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5638), - [anon_sym_decltype] = ACTIONS(5638), - [anon_sym_final] = ACTIONS(5638), - [anon_sym_override] = ACTIONS(5638), - [anon_sym_requires] = ACTIONS(5638), + [1969] = { + [sym_function_definition] = STATE(1014), + [sym_declaration] = STATE(1014), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5573), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2253), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8678), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4741), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4740), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5108), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(5110), + [anon_sym_struct] = ACTIONS(5112), + [anon_sym_union] = ACTIONS(5114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2201] = { - [sym_string_literal] = STATE(3685), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(3685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym___attribute__] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(5644), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(5646), - [anon_sym_SLASH_EQ] = ACTIONS(5646), - [anon_sym_PERCENT_EQ] = ACTIONS(5646), - [anon_sym_PLUS_EQ] = ACTIONS(5646), - [anon_sym_DASH_EQ] = ACTIONS(5646), - [anon_sym_LT_LT_EQ] = ACTIONS(5646), - [anon_sym_GT_GT_EQ] = ACTIONS(5646), - [anon_sym_AMP_EQ] = ACTIONS(5646), - [anon_sym_CARET_EQ] = ACTIONS(5646), - [anon_sym_PIPE_EQ] = ACTIONS(5646), - [anon_sym_and_eq] = ACTIONS(5646), - [anon_sym_or_eq] = ACTIONS(5646), - [anon_sym_xor_eq] = ACTIONS(5646), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(5648), - [anon_sym_u_DQUOTE] = ACTIONS(5648), - [anon_sym_U_DQUOTE] = ACTIONS(5648), - [anon_sym_u8_DQUOTE] = ACTIONS(5648), - [anon_sym_DQUOTE] = ACTIONS(5648), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5650), - [anon_sym_LR_DQUOTE] = ACTIONS(5650), - [anon_sym_uR_DQUOTE] = ACTIONS(5650), - [anon_sym_UR_DQUOTE] = ACTIONS(5650), - [anon_sym_u8R_DQUOTE] = ACTIONS(5650), + [1970] = { + [sym_function_definition] = STATE(579), + [sym_declaration] = STATE(579), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5567), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2260), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(9170), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4741), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4740), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5108), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(5116), + [anon_sym_struct] = ACTIONS(5118), + [anon_sym_union] = ACTIONS(5120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2202] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_structured_binding_declarator_repeat1] = STATE(7635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(5652), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_RBRACK] = ACTIONS(5654), - [anon_sym_EQ] = ACTIONS(5657), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(5659), - [anon_sym_SLASH_EQ] = ACTIONS(5659), - [anon_sym_PERCENT_EQ] = ACTIONS(5659), - [anon_sym_PLUS_EQ] = ACTIONS(5659), - [anon_sym_DASH_EQ] = ACTIONS(5659), - [anon_sym_LT_LT_EQ] = ACTIONS(5659), - [anon_sym_GT_GT_EQ] = ACTIONS(5659), - [anon_sym_AMP_EQ] = ACTIONS(5659), - [anon_sym_CARET_EQ] = ACTIONS(5659), - [anon_sym_PIPE_EQ] = ACTIONS(5659), - [anon_sym_and_eq] = ACTIONS(5659), - [anon_sym_or_eq] = ACTIONS(5659), - [anon_sym_xor_eq] = ACTIONS(5659), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), + [1971] = { + [sym_function_definition] = STATE(2185), + [sym_declaration] = STATE(2185), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5517), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2279), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8954), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4741), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4740), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5108), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(5122), + [anon_sym_struct] = ACTIONS(5124), + [anon_sym_union] = ACTIONS(5126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2203] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_COLON] = ACTIONS(4363), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4175), - [anon_sym_or_eq] = ACTIONS(4175), - [anon_sym_xor_eq] = ACTIONS(4175), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), + [1972] = { + [sym_function_definition] = STATE(942), + [sym_declaration] = STATE(942), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5526), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2266), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8583), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4741), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4740), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5108), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(5128), + [anon_sym_struct] = ACTIONS(5130), + [anon_sym_union] = ACTIONS(5132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2204] = { - [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(5663), - [anon_sym_DASH] = ACTIONS(5661), - [anon_sym_PLUS] = ACTIONS(5661), - [anon_sym_STAR] = ACTIONS(5663), - [anon_sym_SLASH] = ACTIONS(5661), - [anon_sym_PERCENT] = ACTIONS(5663), - [anon_sym_PIPE_PIPE] = ACTIONS(5663), - [anon_sym_AMP_AMP] = ACTIONS(5663), - [anon_sym_PIPE] = ACTIONS(5661), - [anon_sym_CARET] = ACTIONS(5663), - [anon_sym_AMP] = ACTIONS(5661), - [anon_sym_EQ_EQ] = ACTIONS(5663), - [anon_sym_BANG_EQ] = ACTIONS(5663), - [anon_sym_GT] = ACTIONS(5661), - [anon_sym_GT_EQ] = ACTIONS(5663), - [anon_sym_LT_EQ] = ACTIONS(5661), - [anon_sym_LT] = ACTIONS(5661), - [anon_sym_LT_LT] = ACTIONS(5663), - [anon_sym_GT_GT] = ACTIONS(5663), - [anon_sym_SEMI] = ACTIONS(5663), - [anon_sym___extension__] = ACTIONS(5661), - [anon_sym___attribute__] = ACTIONS(5661), - [anon_sym___based] = ACTIONS(5661), - [anon_sym_LBRACE] = ACTIONS(5663), - [anon_sym_RBRACE] = ACTIONS(5663), - [anon_sym_signed] = ACTIONS(5661), - [anon_sym_unsigned] = ACTIONS(5661), - [anon_sym_long] = ACTIONS(5661), - [anon_sym_short] = ACTIONS(5661), - [anon_sym_LBRACK] = ACTIONS(5663), - [anon_sym_RBRACK] = ACTIONS(5663), - [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_mutable] = ACTIONS(5661), - [anon_sym_constinit] = ACTIONS(5661), - [anon_sym_consteval] = ACTIONS(5661), - [sym_primitive_type] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5663), - [anon_sym_QMARK] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5663), - [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(5663), - [anon_sym_PLUS_PLUS] = ACTIONS(5663), - [anon_sym_DOT] = ACTIONS(5661), - [anon_sym_DOT_STAR] = ACTIONS(5663), - [anon_sym_DASH_GT] = ACTIONS(5663), + [1973] = { + [sym_function_definition] = STATE(2383), + [sym_declaration] = STATE(2383), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5544), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2284), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8674), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4741), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4740), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5108), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(5134), + [anon_sym_struct] = ACTIONS(5136), + [anon_sym_union] = ACTIONS(5138), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5661), - [anon_sym_decltype] = ACTIONS(5661), - [anon_sym_final] = ACTIONS(5661), - [anon_sym_override] = ACTIONS(5661), - [anon_sym_requires] = ACTIONS(5661), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2205] = { - [sym_string_literal] = STATE(2175), - [sym_raw_string_literal] = STATE(2175), - [aux_sym_concatenated_string_repeat1] = STATE(2175), - [sym_identifier] = ACTIONS(5665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5214), - [anon_sym_COMMA] = ACTIONS(5214), - [anon_sym_LPAREN2] = ACTIONS(5214), - [anon_sym_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5216), - [anon_sym_STAR] = ACTIONS(5216), - [anon_sym_SLASH] = ACTIONS(5216), - [anon_sym_PERCENT] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_CARET] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5214), - [anon_sym_BANG_EQ] = ACTIONS(5214), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5214), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_SEMI] = ACTIONS(5214), - [anon_sym___attribute__] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(5214), - [anon_sym_STAR_EQ] = ACTIONS(5214), - [anon_sym_SLASH_EQ] = ACTIONS(5214), - [anon_sym_PERCENT_EQ] = ACTIONS(5214), - [anon_sym_PLUS_EQ] = ACTIONS(5214), - [anon_sym_DASH_EQ] = ACTIONS(5214), - [anon_sym_LT_LT_EQ] = ACTIONS(5214), - [anon_sym_GT_GT_EQ] = ACTIONS(5214), - [anon_sym_AMP_EQ] = ACTIONS(5214), - [anon_sym_CARET_EQ] = ACTIONS(5214), - [anon_sym_PIPE_EQ] = ACTIONS(5214), - [anon_sym_and_eq] = ACTIONS(5216), - [anon_sym_or_eq] = ACTIONS(5216), - [anon_sym_xor_eq] = ACTIONS(5216), - [anon_sym_LT_EQ_GT] = ACTIONS(5214), - [anon_sym_or] = ACTIONS(5216), - [anon_sym_and] = ACTIONS(5216), - [anon_sym_bitor] = ACTIONS(5216), - [anon_sym_xor] = ACTIONS(5216), - [anon_sym_bitand] = ACTIONS(5216), - [anon_sym_not_eq] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5214), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_DOT_STAR] = ACTIONS(5214), - [anon_sym_DASH_GT] = ACTIONS(5214), - [anon_sym_L_DQUOTE] = ACTIONS(5574), - [anon_sym_u_DQUOTE] = ACTIONS(5574), - [anon_sym_U_DQUOTE] = ACTIONS(5574), - [anon_sym_u8_DQUOTE] = ACTIONS(5574), - [anon_sym_DQUOTE] = ACTIONS(5574), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5576), - [anon_sym_LR_DQUOTE] = ACTIONS(5576), - [anon_sym_uR_DQUOTE] = ACTIONS(5576), - [anon_sym_UR_DQUOTE] = ACTIONS(5576), - [anon_sym_u8R_DQUOTE] = ACTIONS(5576), - [sym_literal_suffix] = ACTIONS(5216), + [1974] = { + [sym_identifier] = ACTIONS(5039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [anon_sym_LPAREN2] = ACTIONS(5046), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_STAR] = ACTIONS(5046), + [anon_sym_PIPE_PIPE] = ACTIONS(5046), + [anon_sym_AMP_AMP] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(5046), + [anon_sym___extension__] = ACTIONS(5039), + [anon_sym_extern] = ACTIONS(5039), + [anon_sym___attribute__] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5046), + [anon_sym___declspec] = ACTIONS(5039), + [anon_sym___based] = ACTIONS(5039), + [anon_sym___cdecl] = ACTIONS(5039), + [anon_sym___clrcall] = ACTIONS(5039), + [anon_sym___stdcall] = ACTIONS(5039), + [anon_sym___fastcall] = ACTIONS(5039), + [anon_sym___thiscall] = ACTIONS(5039), + [anon_sym___vectorcall] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_signed] = ACTIONS(5039), + [anon_sym_unsigned] = ACTIONS(5039), + [anon_sym_long] = ACTIONS(5039), + [anon_sym_short] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5046), + [anon_sym_static] = ACTIONS(5039), + [anon_sym_register] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym___inline] = ACTIONS(5039), + [anon_sym___inline__] = ACTIONS(5039), + [anon_sym___forceinline] = ACTIONS(5039), + [anon_sym_thread_local] = ACTIONS(5039), + [anon_sym___thread] = ACTIONS(5039), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5039), + [anon_sym_volatile] = ACTIONS(5039), + [anon_sym_restrict] = ACTIONS(5039), + [anon_sym___restrict__] = ACTIONS(5039), + [anon_sym__Atomic] = ACTIONS(5039), + [anon_sym__Noreturn] = ACTIONS(5039), + [anon_sym_noreturn] = ACTIONS(5039), + [anon_sym_mutable] = ACTIONS(5039), + [anon_sym_constinit] = ACTIONS(5039), + [anon_sym_consteval] = ACTIONS(5039), + [sym_primitive_type] = ACTIONS(5039), + [anon_sym_enum] = ACTIONS(5039), + [anon_sym_class] = ACTIONS(5039), + [anon_sym_struct] = ACTIONS(5039), + [anon_sym_union] = ACTIONS(5039), + [anon_sym_COLON] = ACTIONS(5039), + [anon_sym_or] = ACTIONS(5039), + [anon_sym_and] = ACTIONS(5039), + [anon_sym_asm] = ACTIONS(5039), + [anon_sym___asm__] = ACTIONS(5039), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5039), + [anon_sym_decltype] = ACTIONS(5039), + [anon_sym_final] = ACTIONS(5039), + [anon_sym_override] = ACTIONS(5039), + [anon_sym_virtual] = ACTIONS(5039), + [anon_sym_alignas] = ACTIONS(5039), + [anon_sym_explicit] = ACTIONS(5039), + [anon_sym_typename] = ACTIONS(5039), + [anon_sym_template] = ACTIONS(5039), + [anon_sym_GT2] = ACTIONS(5046), + [anon_sym_operator] = ACTIONS(5039), + [anon_sym_try] = ACTIONS(5039), + [anon_sym_friend] = ACTIONS(5039), + [anon_sym_using] = ACTIONS(5039), + [anon_sym_concept] = ACTIONS(5039), + [anon_sym_requires] = ACTIONS(5039), }, - [2206] = { - [sym_string_literal] = STATE(2080), - [sym_raw_string_literal] = STATE(2080), - [sym_identifier] = ACTIONS(4147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [aux_sym_preproc_if_token2] = ACTIONS(4139), - [aux_sym_preproc_else_token1] = ACTIONS(4139), - [aux_sym_preproc_elif_token1] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4147), - [anon_sym_or_eq] = ACTIONS(4147), - [anon_sym_xor_eq] = ACTIONS(4147), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(2198), - [anon_sym_u_DQUOTE] = ACTIONS(2198), - [anon_sym_U_DQUOTE] = ACTIONS(2198), - [anon_sym_u8_DQUOTE] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2206), - [anon_sym_LR_DQUOTE] = ACTIONS(2206), - [anon_sym_uR_DQUOTE] = ACTIONS(2206), - [anon_sym_UR_DQUOTE] = ACTIONS(2206), - [anon_sym_u8R_DQUOTE] = ACTIONS(2206), - [sym_literal_suffix] = ACTIONS(5667), - }, - [2207] = { - [sym_string_literal] = STATE(2207), - [sym_raw_string_literal] = STATE(2207), - [aux_sym_concatenated_string_repeat1] = STATE(2207), - [sym_identifier] = ACTIONS(5669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5158), - [anon_sym_COMMA] = ACTIONS(5158), - [anon_sym_LPAREN2] = ACTIONS(5158), - [anon_sym_DASH] = ACTIONS(5160), - [anon_sym_PLUS] = ACTIONS(5160), - [anon_sym_STAR] = ACTIONS(5160), - [anon_sym_SLASH] = ACTIONS(5160), - [anon_sym_PERCENT] = ACTIONS(5160), - [anon_sym_PIPE_PIPE] = ACTIONS(5158), - [anon_sym_AMP_AMP] = ACTIONS(5158), - [anon_sym_PIPE] = ACTIONS(5160), - [anon_sym_CARET] = ACTIONS(5160), - [anon_sym_AMP] = ACTIONS(5160), - [anon_sym_EQ_EQ] = ACTIONS(5158), - [anon_sym_BANG_EQ] = ACTIONS(5158), - [anon_sym_GT] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5158), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_LT] = ACTIONS(5160), - [anon_sym_LT_LT] = ACTIONS(5160), - [anon_sym_GT_GT] = ACTIONS(5160), - [anon_sym_SEMI] = ACTIONS(5158), - [anon_sym___attribute__] = ACTIONS(5160), - [anon_sym_LBRACK] = ACTIONS(5158), - [anon_sym_EQ] = ACTIONS(5160), - [anon_sym_QMARK] = ACTIONS(5158), - [anon_sym_STAR_EQ] = ACTIONS(5158), - [anon_sym_SLASH_EQ] = ACTIONS(5158), - [anon_sym_PERCENT_EQ] = ACTIONS(5158), - [anon_sym_PLUS_EQ] = ACTIONS(5158), - [anon_sym_DASH_EQ] = ACTIONS(5158), - [anon_sym_LT_LT_EQ] = ACTIONS(5158), - [anon_sym_GT_GT_EQ] = ACTIONS(5158), - [anon_sym_AMP_EQ] = ACTIONS(5158), - [anon_sym_CARET_EQ] = ACTIONS(5158), - [anon_sym_PIPE_EQ] = ACTIONS(5158), - [anon_sym_and_eq] = ACTIONS(5160), - [anon_sym_or_eq] = ACTIONS(5160), - [anon_sym_xor_eq] = ACTIONS(5160), - [anon_sym_LT_EQ_GT] = ACTIONS(5158), - [anon_sym_or] = ACTIONS(5160), - [anon_sym_and] = ACTIONS(5160), - [anon_sym_bitor] = ACTIONS(5160), - [anon_sym_xor] = ACTIONS(5160), - [anon_sym_bitand] = ACTIONS(5160), - [anon_sym_not_eq] = ACTIONS(5160), - [anon_sym_DASH_DASH] = ACTIONS(5158), - [anon_sym_PLUS_PLUS] = ACTIONS(5158), - [anon_sym_DOT] = ACTIONS(5160), - [anon_sym_DOT_STAR] = ACTIONS(5158), - [anon_sym_DASH_GT] = ACTIONS(5158), - [anon_sym_L_DQUOTE] = ACTIONS(5672), - [anon_sym_u_DQUOTE] = ACTIONS(5672), - [anon_sym_U_DQUOTE] = ACTIONS(5672), - [anon_sym_u8_DQUOTE] = ACTIONS(5672), - [anon_sym_DQUOTE] = ACTIONS(5672), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5675), - [anon_sym_LR_DQUOTE] = ACTIONS(5675), - [anon_sym_uR_DQUOTE] = ACTIONS(5675), - [anon_sym_UR_DQUOTE] = ACTIONS(5675), - [anon_sym_u8R_DQUOTE] = ACTIONS(5675), - [sym_literal_suffix] = ACTIONS(5160), - }, - [2208] = { - [sym_attribute_specifier] = STATE(2474), - [sym_enumerator_list] = STATE(2378), - [sym_identifier] = ACTIONS(5678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5680), - [anon_sym_COMMA] = ACTIONS(5680), - [anon_sym_RPAREN] = ACTIONS(5680), - [aux_sym_preproc_if_token2] = ACTIONS(5680), - [aux_sym_preproc_else_token1] = ACTIONS(5680), - [aux_sym_preproc_elif_token1] = ACTIONS(5678), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5680), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5680), - [anon_sym_LPAREN2] = ACTIONS(5680), - [anon_sym_DASH] = ACTIONS(5678), - [anon_sym_PLUS] = ACTIONS(5678), - [anon_sym_STAR] = ACTIONS(5678), - [anon_sym_SLASH] = ACTIONS(5678), - [anon_sym_PERCENT] = ACTIONS(5678), - [anon_sym_PIPE_PIPE] = ACTIONS(5680), - [anon_sym_AMP_AMP] = ACTIONS(5680), - [anon_sym_PIPE] = ACTIONS(5678), - [anon_sym_CARET] = ACTIONS(5678), - [anon_sym_AMP] = ACTIONS(5678), - [anon_sym_EQ_EQ] = ACTIONS(5680), - [anon_sym_BANG_EQ] = ACTIONS(5680), - [anon_sym_GT] = ACTIONS(5678), - [anon_sym_GT_EQ] = ACTIONS(5680), - [anon_sym_LT_EQ] = ACTIONS(5678), - [anon_sym_LT] = ACTIONS(5678), - [anon_sym_LT_LT] = ACTIONS(5678), - [anon_sym_GT_GT] = ACTIONS(5678), - [anon_sym_SEMI] = ACTIONS(5680), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_RBRACE] = ACTIONS(5680), - [anon_sym_LBRACK] = ACTIONS(5680), - [anon_sym_RBRACK] = ACTIONS(5680), - [anon_sym_EQ] = ACTIONS(5678), - [anon_sym_COLON] = ACTIONS(5680), - [anon_sym_QMARK] = ACTIONS(5680), - [anon_sym_STAR_EQ] = ACTIONS(5680), - [anon_sym_SLASH_EQ] = ACTIONS(5680), - [anon_sym_PERCENT_EQ] = ACTIONS(5680), - [anon_sym_PLUS_EQ] = ACTIONS(5680), - [anon_sym_DASH_EQ] = ACTIONS(5680), - [anon_sym_LT_LT_EQ] = ACTIONS(5680), - [anon_sym_GT_GT_EQ] = ACTIONS(5680), - [anon_sym_AMP_EQ] = ACTIONS(5680), - [anon_sym_CARET_EQ] = ACTIONS(5680), - [anon_sym_PIPE_EQ] = ACTIONS(5680), - [anon_sym_and_eq] = ACTIONS(5678), - [anon_sym_or_eq] = ACTIONS(5678), - [anon_sym_xor_eq] = ACTIONS(5678), - [anon_sym_LT_EQ_GT] = ACTIONS(5680), - [anon_sym_or] = ACTIONS(5678), - [anon_sym_and] = ACTIONS(5678), - [anon_sym_bitor] = ACTIONS(5678), - [anon_sym_xor] = ACTIONS(5678), - [anon_sym_bitand] = ACTIONS(5678), - [anon_sym_not_eq] = ACTIONS(5678), - [anon_sym_DASH_DASH] = ACTIONS(5680), - [anon_sym_PLUS_PLUS] = ACTIONS(5680), - [anon_sym_DOT] = ACTIONS(5678), - [anon_sym_DOT_STAR] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(5680), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5678), - [anon_sym_decltype] = ACTIONS(5678), - }, - [2209] = { - [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(5663), - [anon_sym_DASH] = ACTIONS(5661), - [anon_sym_PLUS] = ACTIONS(5661), - [anon_sym_STAR] = ACTIONS(5663), - [anon_sym_SLASH] = ACTIONS(5661), - [anon_sym_PERCENT] = ACTIONS(5663), - [anon_sym_PIPE_PIPE] = ACTIONS(5663), - [anon_sym_AMP_AMP] = ACTIONS(5663), - [anon_sym_PIPE] = ACTIONS(5661), - [anon_sym_CARET] = ACTIONS(5663), - [anon_sym_AMP] = ACTIONS(5661), - [anon_sym_EQ_EQ] = ACTIONS(5663), - [anon_sym_BANG_EQ] = ACTIONS(5663), - [anon_sym_GT] = ACTIONS(5661), - [anon_sym_GT_EQ] = ACTIONS(5663), - [anon_sym_LT_EQ] = ACTIONS(5661), - [anon_sym_LT] = ACTIONS(5661), - [anon_sym_LT_LT] = ACTIONS(5663), - [anon_sym_GT_GT] = ACTIONS(5663), - [anon_sym_SEMI] = ACTIONS(5663), - [anon_sym___extension__] = ACTIONS(5661), - [anon_sym___attribute__] = ACTIONS(5661), - [anon_sym___based] = ACTIONS(5661), - [anon_sym_LBRACE] = ACTIONS(5663), - [anon_sym_RBRACE] = ACTIONS(5663), - [anon_sym_signed] = ACTIONS(5661), - [anon_sym_unsigned] = ACTIONS(5661), - [anon_sym_long] = ACTIONS(5661), - [anon_sym_short] = ACTIONS(5661), - [anon_sym_LBRACK] = ACTIONS(5663), - [anon_sym_RBRACK] = ACTIONS(5663), - [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_mutable] = ACTIONS(5661), - [anon_sym_constinit] = ACTIONS(5661), - [anon_sym_consteval] = ACTIONS(5661), - [sym_primitive_type] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5663), - [anon_sym_QMARK] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5663), - [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(5663), - [anon_sym_PLUS_PLUS] = ACTIONS(5663), - [anon_sym_DOT] = ACTIONS(5661), - [anon_sym_DOT_STAR] = ACTIONS(5663), - [anon_sym_DASH_GT] = ACTIONS(5663), + [1975] = { + [sym_function_definition] = STATE(2537), + [sym_declaration] = STATE(2537), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5529), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2218), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8761), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4741), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4740), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5108), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(5140), + [anon_sym_struct] = ACTIONS(5142), + [anon_sym_union] = ACTIONS(5144), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5661), - [anon_sym_decltype] = ACTIONS(5661), - [anon_sym_final] = ACTIONS(5661), - [anon_sym_override] = ACTIONS(5661), - [anon_sym_requires] = ACTIONS(5661), - }, - [2210] = { - [sym_identifier] = ACTIONS(5684), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5686), - [anon_sym_COMMA] = ACTIONS(5686), - [anon_sym_RPAREN] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5684), - [anon_sym_STAR] = ACTIONS(5686), - [anon_sym_SLASH] = ACTIONS(5684), - [anon_sym_PERCENT] = ACTIONS(5686), - [anon_sym_PIPE_PIPE] = ACTIONS(5686), - [anon_sym_AMP_AMP] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5684), - [anon_sym_CARET] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5684), - [anon_sym_EQ_EQ] = ACTIONS(5686), - [anon_sym_BANG_EQ] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5684), - [anon_sym_LT_LT] = ACTIONS(5686), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_SEMI] = ACTIONS(5686), - [anon_sym___extension__] = ACTIONS(5684), - [anon_sym___attribute__] = ACTIONS(5684), - [anon_sym___based] = ACTIONS(5684), - [anon_sym_LBRACE] = ACTIONS(5686), - [anon_sym_RBRACE] = ACTIONS(5686), - [anon_sym_signed] = ACTIONS(5684), - [anon_sym_unsigned] = ACTIONS(5684), - [anon_sym_long] = ACTIONS(5684), - [anon_sym_short] = ACTIONS(5684), - [anon_sym_LBRACK] = ACTIONS(5686), - [anon_sym_RBRACK] = ACTIONS(5686), - [anon_sym_const] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_volatile] = ACTIONS(5684), - [anon_sym_restrict] = ACTIONS(5684), - [anon_sym___restrict__] = ACTIONS(5684), - [anon_sym__Atomic] = ACTIONS(5684), - [anon_sym__Noreturn] = ACTIONS(5684), - [anon_sym_noreturn] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_constinit] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_LT_EQ_GT] = ACTIONS(5686), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_bitor] = ACTIONS(5684), - [anon_sym_xor] = ACTIONS(5684), - [anon_sym_bitand] = ACTIONS(5684), - [anon_sym_not_eq] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(5684), - [anon_sym_DOT_STAR] = ACTIONS(5686), - [anon_sym_DASH_GT] = ACTIONS(5686), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5684), - [anon_sym_decltype] = ACTIONS(5684), - [anon_sym_final] = ACTIONS(5684), - [anon_sym_override] = ACTIONS(5684), - [anon_sym_requires] = ACTIONS(5684), - }, - [2211] = { - [sym_string_literal] = STATE(2205), - [sym_template_argument_list] = STATE(2507), - [sym_raw_string_literal] = STATE(2205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5132), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym___attribute__] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4139), - [anon_sym_or_eq] = ACTIONS(4139), - [anon_sym_xor_eq] = ACTIONS(4139), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(5574), - [anon_sym_u_DQUOTE] = ACTIONS(5574), - [anon_sym_U_DQUOTE] = ACTIONS(5574), - [anon_sym_u8_DQUOTE] = ACTIONS(5574), - [anon_sym_DQUOTE] = ACTIONS(5574), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5576), - [anon_sym_LR_DQUOTE] = ACTIONS(5576), - [anon_sym_uR_DQUOTE] = ACTIONS(5576), - [anon_sym_UR_DQUOTE] = ACTIONS(5576), - [anon_sym_u8R_DQUOTE] = ACTIONS(5576), - }, - [2212] = { - [sym_catch_clause] = STATE(2251), - [aux_sym_constructor_try_statement_repeat1] = STATE(2251), - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token2] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym___extension__] = ACTIONS(2826), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym___inline] = ACTIONS(2826), - [anon_sym___inline__] = ACTIONS(2826), - [anon_sym___forceinline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym___thread] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym___restrict__] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym__Noreturn] = ACTIONS(2826), - [anon_sym_noreturn] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_alignas] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_friend] = ACTIONS(2826), - [anon_sym_public] = ACTIONS(2826), - [anon_sym_private] = ACTIONS(2826), - [anon_sym_protected] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_catch] = ACTIONS(5602), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2213] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [aux_sym_structured_binding_declarator_repeat1] = STATE(7635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_RBRACK] = ACTIONS(5654), - [anon_sym_EQ] = ACTIONS(5657), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(5659), - [anon_sym_SLASH_EQ] = ACTIONS(5659), - [anon_sym_PERCENT_EQ] = ACTIONS(5659), - [anon_sym_PLUS_EQ] = ACTIONS(5659), - [anon_sym_DASH_EQ] = ACTIONS(5659), - [anon_sym_LT_LT_EQ] = ACTIONS(5659), - [anon_sym_GT_GT_EQ] = ACTIONS(5659), - [anon_sym_AMP_EQ] = ACTIONS(5659), - [anon_sym_CARET_EQ] = ACTIONS(5659), - [anon_sym_PIPE_EQ] = ACTIONS(5659), - [anon_sym_and_eq] = ACTIONS(5659), - [anon_sym_or_eq] = ACTIONS(5659), - [anon_sym_xor_eq] = ACTIONS(5659), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), + [1976] = { + [sym_function_definition] = STATE(401), + [sym_declaration] = STATE(401), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5520), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2269), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(8739), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4741), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4740), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5108), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(5146), + [anon_sym_struct] = ACTIONS(5148), + [anon_sym_union] = ACTIONS(5150), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2214] = { - [sym_identifier] = ACTIONS(5691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5693), - [anon_sym_COMMA] = ACTIONS(5693), - [anon_sym_RPAREN] = ACTIONS(5693), - [anon_sym_LPAREN2] = ACTIONS(5693), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(5693), - [anon_sym_SLASH] = ACTIONS(5691), - [anon_sym_PERCENT] = ACTIONS(5693), - [anon_sym_PIPE_PIPE] = ACTIONS(5693), - [anon_sym_AMP_AMP] = ACTIONS(5693), - [anon_sym_PIPE] = ACTIONS(5691), - [anon_sym_CARET] = ACTIONS(5693), - [anon_sym_AMP] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_GT] = ACTIONS(5691), - [anon_sym_GT_EQ] = ACTIONS(5693), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_LT] = ACTIONS(5691), - [anon_sym_LT_LT] = ACTIONS(5693), - [anon_sym_GT_GT] = ACTIONS(5693), - [anon_sym_SEMI] = ACTIONS(5693), - [anon_sym___extension__] = ACTIONS(5691), - [anon_sym___attribute__] = ACTIONS(5691), - [anon_sym___based] = ACTIONS(5691), - [anon_sym_LBRACE] = ACTIONS(5693), - [anon_sym_RBRACE] = ACTIONS(5693), - [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_RBRACK] = ACTIONS(5693), - [anon_sym_const] = ACTIONS(5691), - [anon_sym_constexpr] = ACTIONS(5691), - [anon_sym_volatile] = ACTIONS(5691), - [anon_sym_restrict] = ACTIONS(5691), - [anon_sym___restrict__] = ACTIONS(5691), - [anon_sym__Atomic] = ACTIONS(5691), - [anon_sym__Noreturn] = ACTIONS(5691), - [anon_sym_noreturn] = ACTIONS(5691), - [anon_sym_mutable] = ACTIONS(5691), - [anon_sym_constinit] = ACTIONS(5691), - [anon_sym_consteval] = ACTIONS(5691), - [sym_primitive_type] = ACTIONS(5691), - [anon_sym_COLON] = ACTIONS(5693), - [anon_sym_QMARK] = ACTIONS(5693), - [anon_sym_LT_EQ_GT] = ACTIONS(5693), - [anon_sym_or] = ACTIONS(5691), - [anon_sym_and] = ACTIONS(5691), - [anon_sym_bitor] = ACTIONS(5691), - [anon_sym_xor] = ACTIONS(5691), - [anon_sym_bitand] = ACTIONS(5691), - [anon_sym_not_eq] = ACTIONS(5691), - [anon_sym_DASH_DASH] = ACTIONS(5693), - [anon_sym_PLUS_PLUS] = ACTIONS(5693), - [anon_sym_DOT] = ACTIONS(5691), - [anon_sym_DOT_STAR] = ACTIONS(5693), - [anon_sym_DASH_GT] = ACTIONS(5693), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5691), - [anon_sym_decltype] = ACTIONS(5691), - [anon_sym_final] = ACTIONS(5691), - [anon_sym_override] = ACTIONS(5691), - [anon_sym_requires] = ACTIONS(5691), + [1977] = { + [sym_function_definition] = STATE(903), + [sym_declaration] = STATE(903), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5565), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2206), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(9058), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4741), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4740), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5108), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(5152), + [anon_sym_struct] = ACTIONS(5154), + [anon_sym_union] = ACTIONS(5156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2215] = { - [sym_identifier] = ACTIONS(5535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5537), - [anon_sym_COMMA] = ACTIONS(5537), - [anon_sym_RPAREN] = ACTIONS(5537), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_DASH] = ACTIONS(5535), - [anon_sym_PLUS] = ACTIONS(5535), - [anon_sym_STAR] = ACTIONS(5537), - [anon_sym_SLASH] = ACTIONS(5535), - [anon_sym_PERCENT] = ACTIONS(5537), - [anon_sym_PIPE_PIPE] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_PIPE] = ACTIONS(5535), - [anon_sym_CARET] = ACTIONS(5537), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_EQ_EQ] = ACTIONS(5537), - [anon_sym_BANG_EQ] = ACTIONS(5537), - [anon_sym_GT] = ACTIONS(5535), - [anon_sym_GT_EQ] = ACTIONS(5537), - [anon_sym_LT_EQ] = ACTIONS(5535), - [anon_sym_LT] = ACTIONS(5535), - [anon_sym_LT_LT] = ACTIONS(5537), - [anon_sym_GT_GT] = ACTIONS(5537), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___extension__] = ACTIONS(5535), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym___based] = ACTIONS(5535), - [anon_sym_LBRACE] = ACTIONS(5537), - [anon_sym_RBRACE] = ACTIONS(5537), - [anon_sym_signed] = ACTIONS(5535), - [anon_sym_unsigned] = ACTIONS(5535), - [anon_sym_long] = ACTIONS(5535), - [anon_sym_short] = ACTIONS(5535), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_RBRACK] = ACTIONS(5537), - [anon_sym_const] = ACTIONS(5535), - [anon_sym_constexpr] = ACTIONS(5535), - [anon_sym_volatile] = ACTIONS(5535), - [anon_sym_restrict] = ACTIONS(5535), - [anon_sym___restrict__] = ACTIONS(5535), - [anon_sym__Atomic] = ACTIONS(5535), - [anon_sym__Noreturn] = ACTIONS(5535), - [anon_sym_noreturn] = ACTIONS(5535), - [anon_sym_mutable] = ACTIONS(5535), - [anon_sym_constinit] = ACTIONS(5535), - [anon_sym_consteval] = ACTIONS(5535), - [sym_primitive_type] = ACTIONS(5535), - [anon_sym_COLON] = ACTIONS(5537), - [anon_sym_QMARK] = ACTIONS(5537), - [anon_sym_LT_EQ_GT] = ACTIONS(5537), - [anon_sym_or] = ACTIONS(5535), - [anon_sym_and] = ACTIONS(5535), - [anon_sym_bitor] = ACTIONS(5535), - [anon_sym_xor] = ACTIONS(5535), - [anon_sym_bitand] = ACTIONS(5535), - [anon_sym_not_eq] = ACTIONS(5535), - [anon_sym_DASH_DASH] = ACTIONS(5537), - [anon_sym_PLUS_PLUS] = ACTIONS(5537), - [anon_sym_DOT] = ACTIONS(5535), - [anon_sym_DOT_STAR] = ACTIONS(5537), - [anon_sym_DASH_GT] = ACTIONS(5537), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), - [anon_sym_final] = ACTIONS(5535), - [anon_sym_override] = ACTIONS(5535), - [anon_sym_requires] = ACTIONS(5535), + [1978] = { + [sym_function_definition] = STATE(2640), + [sym_declaration] = STATE(2640), + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5566), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_ms_call_modifier] = STATE(2261), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym__class_name] = STATE(9390), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(4741), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4740), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5108), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(5158), + [anon_sym_struct] = ACTIONS(5160), + [anon_sym_union] = ACTIONS(5162), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2216] = { - [sym_identifier] = ACTIONS(5695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5697), - [anon_sym_COMMA] = ACTIONS(5697), - [anon_sym_RPAREN] = ACTIONS(5697), - [anon_sym_LPAREN2] = ACTIONS(5697), - [anon_sym_DASH] = ACTIONS(5695), - [anon_sym_PLUS] = ACTIONS(5695), - [anon_sym_STAR] = ACTIONS(5697), - [anon_sym_SLASH] = ACTIONS(5695), - [anon_sym_PERCENT] = ACTIONS(5697), - [anon_sym_PIPE_PIPE] = ACTIONS(5697), - [anon_sym_AMP_AMP] = ACTIONS(5697), - [anon_sym_PIPE] = ACTIONS(5695), - [anon_sym_CARET] = ACTIONS(5697), - [anon_sym_AMP] = ACTIONS(5695), - [anon_sym_EQ_EQ] = ACTIONS(5697), - [anon_sym_BANG_EQ] = ACTIONS(5697), - [anon_sym_GT] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5697), - [anon_sym_LT_EQ] = ACTIONS(5695), - [anon_sym_LT] = ACTIONS(5695), - [anon_sym_LT_LT] = ACTIONS(5697), - [anon_sym_GT_GT] = ACTIONS(5697), - [anon_sym_SEMI] = ACTIONS(5697), - [anon_sym___extension__] = ACTIONS(5695), - [anon_sym___attribute__] = ACTIONS(5695), - [anon_sym___based] = ACTIONS(5695), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_RBRACE] = ACTIONS(5697), - [anon_sym_signed] = ACTIONS(5695), - [anon_sym_unsigned] = ACTIONS(5695), - [anon_sym_long] = ACTIONS(5695), - [anon_sym_short] = ACTIONS(5695), - [anon_sym_LBRACK] = ACTIONS(5697), - [anon_sym_RBRACK] = ACTIONS(5697), - [anon_sym_const] = ACTIONS(5695), - [anon_sym_constexpr] = ACTIONS(5695), - [anon_sym_volatile] = ACTIONS(5695), - [anon_sym_restrict] = ACTIONS(5695), - [anon_sym___restrict__] = ACTIONS(5695), - [anon_sym__Atomic] = ACTIONS(5695), - [anon_sym__Noreturn] = ACTIONS(5695), - [anon_sym_noreturn] = ACTIONS(5695), - [anon_sym_mutable] = ACTIONS(5695), - [anon_sym_constinit] = ACTIONS(5695), - [anon_sym_consteval] = ACTIONS(5695), - [sym_primitive_type] = ACTIONS(5695), - [anon_sym_COLON] = ACTIONS(5697), - [anon_sym_QMARK] = ACTIONS(5697), - [anon_sym_LT_EQ_GT] = ACTIONS(5697), - [anon_sym_or] = ACTIONS(5695), - [anon_sym_and] = ACTIONS(5695), - [anon_sym_bitor] = ACTIONS(5695), - [anon_sym_xor] = ACTIONS(5695), - [anon_sym_bitand] = ACTIONS(5695), - [anon_sym_not_eq] = ACTIONS(5695), - [anon_sym_DASH_DASH] = ACTIONS(5697), - [anon_sym_PLUS_PLUS] = ACTIONS(5697), - [anon_sym_DOT] = ACTIONS(5695), - [anon_sym_DOT_STAR] = ACTIONS(5697), - [anon_sym_DASH_GT] = ACTIONS(5697), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5695), - [anon_sym_decltype] = ACTIONS(5695), - [anon_sym_final] = ACTIONS(5695), - [anon_sym_override] = ACTIONS(5695), - [anon_sym_requires] = ACTIONS(5695), + [1979] = { + [sym_string_literal] = STATE(1993), + [sym_template_argument_list] = STATE(2546), + [sym_raw_string_literal] = STATE(1993), + [sym_identifier] = ACTIONS(4145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_RPAREN] = ACTIONS(4137), + [aux_sym_preproc_if_token2] = ACTIONS(4137), + [aux_sym_preproc_else_token1] = ACTIONS(4137), + [aux_sym_preproc_elif_token1] = ACTIONS(4145), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4137), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_RBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_COLON] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4145), + [anon_sym_or_eq] = ACTIONS(4145), + [anon_sym_xor_eq] = ACTIONS(4145), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), }, - [2217] = { - [sym_identifier] = ACTIONS(5699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5701), - [anon_sym_COMMA] = ACTIONS(5701), - [anon_sym_RPAREN] = ACTIONS(5701), - [anon_sym_LPAREN2] = ACTIONS(5701), - [anon_sym_DASH] = ACTIONS(5699), - [anon_sym_PLUS] = ACTIONS(5699), - [anon_sym_STAR] = ACTIONS(5701), - [anon_sym_SLASH] = ACTIONS(5699), - [anon_sym_PERCENT] = ACTIONS(5701), - [anon_sym_PIPE_PIPE] = ACTIONS(5701), - [anon_sym_AMP_AMP] = ACTIONS(5701), - [anon_sym_PIPE] = ACTIONS(5699), - [anon_sym_CARET] = ACTIONS(5701), - [anon_sym_AMP] = ACTIONS(5699), - [anon_sym_EQ_EQ] = ACTIONS(5701), - [anon_sym_BANG_EQ] = ACTIONS(5701), - [anon_sym_GT] = ACTIONS(5699), - [anon_sym_GT_EQ] = ACTIONS(5701), - [anon_sym_LT_EQ] = ACTIONS(5699), - [anon_sym_LT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5701), - [anon_sym_GT_GT] = ACTIONS(5701), - [anon_sym_SEMI] = ACTIONS(5701), - [anon_sym___extension__] = ACTIONS(5699), - [anon_sym___attribute__] = ACTIONS(5699), - [anon_sym___based] = ACTIONS(5699), - [anon_sym_LBRACE] = ACTIONS(5701), - [anon_sym_RBRACE] = ACTIONS(5701), - [anon_sym_signed] = ACTIONS(5699), - [anon_sym_unsigned] = ACTIONS(5699), - [anon_sym_long] = ACTIONS(5699), - [anon_sym_short] = ACTIONS(5699), - [anon_sym_LBRACK] = ACTIONS(5701), - [anon_sym_RBRACK] = ACTIONS(5701), - [anon_sym_const] = ACTIONS(5699), - [anon_sym_constexpr] = ACTIONS(5699), - [anon_sym_volatile] = ACTIONS(5699), - [anon_sym_restrict] = ACTIONS(5699), - [anon_sym___restrict__] = ACTIONS(5699), - [anon_sym__Atomic] = ACTIONS(5699), - [anon_sym__Noreturn] = ACTIONS(5699), - [anon_sym_noreturn] = ACTIONS(5699), - [anon_sym_mutable] = ACTIONS(5699), - [anon_sym_constinit] = ACTIONS(5699), - [anon_sym_consteval] = ACTIONS(5699), - [sym_primitive_type] = ACTIONS(5699), - [anon_sym_COLON] = ACTIONS(5701), - [anon_sym_QMARK] = ACTIONS(5701), - [anon_sym_LT_EQ_GT] = ACTIONS(5701), - [anon_sym_or] = ACTIONS(5699), - [anon_sym_and] = ACTIONS(5699), - [anon_sym_bitor] = ACTIONS(5699), - [anon_sym_xor] = ACTIONS(5699), - [anon_sym_bitand] = ACTIONS(5699), - [anon_sym_not_eq] = ACTIONS(5699), - [anon_sym_DASH_DASH] = ACTIONS(5701), - [anon_sym_PLUS_PLUS] = ACTIONS(5701), - [anon_sym_DOT] = ACTIONS(5699), - [anon_sym_DOT_STAR] = ACTIONS(5701), - [anon_sym_DASH_GT] = ACTIONS(5701), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5699), - [anon_sym_decltype] = ACTIONS(5699), - [anon_sym_final] = ACTIONS(5699), - [anon_sym_override] = ACTIONS(5699), - [anon_sym_requires] = ACTIONS(5699), + [1980] = { + [sym_identifier] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5169), + [anon_sym_RPAREN] = ACTIONS(5169), + [anon_sym_LPAREN2] = ACTIONS(5169), + [anon_sym_TILDE] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [anon_sym_PIPE_PIPE] = ACTIONS(5169), + [anon_sym_AMP_AMP] = ACTIONS(5169), + [anon_sym_AMP] = ACTIONS(5167), + [anon_sym_SEMI] = ACTIONS(5169), + [anon_sym___extension__] = ACTIONS(5167), + [anon_sym_extern] = ACTIONS(5167), + [anon_sym___attribute__] = ACTIONS(5167), + [anon_sym_COLON_COLON] = ACTIONS(5169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5169), + [anon_sym___declspec] = ACTIONS(5167), + [anon_sym___based] = ACTIONS(5167), + [anon_sym___cdecl] = ACTIONS(5167), + [anon_sym___clrcall] = ACTIONS(5167), + [anon_sym___stdcall] = ACTIONS(5167), + [anon_sym___fastcall] = ACTIONS(5167), + [anon_sym___thiscall] = ACTIONS(5167), + [anon_sym___vectorcall] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5169), + [anon_sym_signed] = ACTIONS(5167), + [anon_sym_unsigned] = ACTIONS(5167), + [anon_sym_long] = ACTIONS(5167), + [anon_sym_short] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5169), + [anon_sym_static] = ACTIONS(5167), + [anon_sym_register] = ACTIONS(5167), + [anon_sym_inline] = ACTIONS(5167), + [anon_sym___inline] = ACTIONS(5167), + [anon_sym___inline__] = ACTIONS(5167), + [anon_sym___forceinline] = ACTIONS(5167), + [anon_sym_thread_local] = ACTIONS(5167), + [anon_sym___thread] = ACTIONS(5167), + [anon_sym_const] = ACTIONS(5167), + [anon_sym_constexpr] = ACTIONS(5167), + [anon_sym_volatile] = ACTIONS(5167), + [anon_sym_restrict] = ACTIONS(5167), + [anon_sym___restrict__] = ACTIONS(5167), + [anon_sym__Atomic] = ACTIONS(5167), + [anon_sym__Noreturn] = ACTIONS(5167), + [anon_sym_noreturn] = ACTIONS(5167), + [anon_sym_mutable] = ACTIONS(5167), + [anon_sym_constinit] = ACTIONS(5167), + [anon_sym_consteval] = ACTIONS(5167), + [sym_primitive_type] = ACTIONS(5167), + [anon_sym_enum] = ACTIONS(5167), + [anon_sym_class] = ACTIONS(5167), + [anon_sym_struct] = ACTIONS(5167), + [anon_sym_union] = ACTIONS(5167), + [anon_sym_or] = ACTIONS(5167), + [anon_sym_and] = ACTIONS(5167), + [anon_sym_asm] = ACTIONS(5167), + [anon_sym___asm__] = ACTIONS(5167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5167), + [anon_sym_decltype] = ACTIONS(5167), + [anon_sym_final] = ACTIONS(5167), + [anon_sym_override] = ACTIONS(5167), + [anon_sym_virtual] = ACTIONS(5167), + [anon_sym_alignas] = ACTIONS(5167), + [anon_sym_explicit] = ACTIONS(5167), + [anon_sym_typename] = ACTIONS(5167), + [anon_sym_template] = ACTIONS(5167), + [anon_sym_GT2] = ACTIONS(5169), + [anon_sym_operator] = ACTIONS(5167), + [anon_sym_try] = ACTIONS(5167), + [anon_sym_friend] = ACTIONS(5167), + [anon_sym_using] = ACTIONS(5167), + [anon_sym_concept] = ACTIONS(5167), + [anon_sym_requires] = ACTIONS(5167), }, - [2218] = { - [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(5663), - [anon_sym_DASH] = ACTIONS(5661), - [anon_sym_PLUS] = ACTIONS(5661), - [anon_sym_STAR] = ACTIONS(5663), - [anon_sym_SLASH] = ACTIONS(5661), - [anon_sym_PERCENT] = ACTIONS(5663), - [anon_sym_PIPE_PIPE] = ACTIONS(5663), - [anon_sym_AMP_AMP] = ACTIONS(5663), - [anon_sym_PIPE] = ACTIONS(5661), - [anon_sym_CARET] = ACTIONS(5663), - [anon_sym_AMP] = ACTIONS(5661), - [anon_sym_EQ_EQ] = ACTIONS(5663), - [anon_sym_BANG_EQ] = ACTIONS(5663), - [anon_sym_GT] = ACTIONS(5661), - [anon_sym_GT_EQ] = ACTIONS(5663), - [anon_sym_LT_EQ] = ACTIONS(5661), - [anon_sym_LT] = ACTIONS(5661), - [anon_sym_LT_LT] = ACTIONS(5663), - [anon_sym_GT_GT] = ACTIONS(5663), - [anon_sym_SEMI] = ACTIONS(5663), - [anon_sym___extension__] = ACTIONS(5661), - [anon_sym___attribute__] = ACTIONS(5661), - [anon_sym___based] = ACTIONS(5661), - [anon_sym_LBRACE] = ACTIONS(5663), - [anon_sym_RBRACE] = ACTIONS(5663), - [anon_sym_signed] = ACTIONS(5661), - [anon_sym_unsigned] = ACTIONS(5661), - [anon_sym_long] = ACTIONS(5661), - [anon_sym_short] = ACTIONS(5661), - [anon_sym_LBRACK] = ACTIONS(5663), - [anon_sym_RBRACK] = ACTIONS(5663), - [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_mutable] = ACTIONS(5661), - [anon_sym_constinit] = ACTIONS(5661), - [anon_sym_consteval] = ACTIONS(5661), - [sym_primitive_type] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5663), - [anon_sym_QMARK] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5663), - [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(5663), - [anon_sym_PLUS_PLUS] = ACTIONS(5663), - [anon_sym_DOT] = ACTIONS(5661), - [anon_sym_DOT_STAR] = ACTIONS(5663), - [anon_sym_DASH_GT] = ACTIONS(5663), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5661), - [anon_sym_decltype] = ACTIONS(5661), - [anon_sym_final] = ACTIONS(5661), - [anon_sym_override] = ACTIONS(5661), - [anon_sym_requires] = ACTIONS(5661), + [1981] = { + [sym_identifier] = ACTIONS(5171), + [anon_sym_COMMA] = ACTIONS(5173), + [anon_sym_RPAREN] = ACTIONS(5173), + [anon_sym_LPAREN2] = ACTIONS(5173), + [anon_sym_TILDE] = ACTIONS(5173), + [anon_sym_STAR] = ACTIONS(5173), + [anon_sym_PIPE_PIPE] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5173), + [anon_sym_AMP] = ACTIONS(5171), + [anon_sym_SEMI] = ACTIONS(5173), + [anon_sym___extension__] = ACTIONS(5171), + [anon_sym_extern] = ACTIONS(5171), + [anon_sym___attribute__] = ACTIONS(5171), + [anon_sym_COLON_COLON] = ACTIONS(5173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5173), + [anon_sym___declspec] = ACTIONS(5171), + [anon_sym___based] = ACTIONS(5171), + [anon_sym___cdecl] = ACTIONS(5171), + [anon_sym___clrcall] = ACTIONS(5171), + [anon_sym___stdcall] = ACTIONS(5171), + [anon_sym___fastcall] = ACTIONS(5171), + [anon_sym___thiscall] = ACTIONS(5171), + [anon_sym___vectorcall] = ACTIONS(5171), + [anon_sym_LBRACE] = ACTIONS(5173), + [anon_sym_signed] = ACTIONS(5171), + [anon_sym_unsigned] = ACTIONS(5171), + [anon_sym_long] = ACTIONS(5171), + [anon_sym_short] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_EQ] = ACTIONS(5173), + [anon_sym_static] = ACTIONS(5171), + [anon_sym_register] = ACTIONS(5171), + [anon_sym_inline] = ACTIONS(5171), + [anon_sym___inline] = ACTIONS(5171), + [anon_sym___inline__] = ACTIONS(5171), + [anon_sym___forceinline] = ACTIONS(5171), + [anon_sym_thread_local] = ACTIONS(5171), + [anon_sym___thread] = ACTIONS(5171), + [anon_sym_const] = ACTIONS(5171), + [anon_sym_constexpr] = ACTIONS(5171), + [anon_sym_volatile] = ACTIONS(5171), + [anon_sym_restrict] = ACTIONS(5171), + [anon_sym___restrict__] = ACTIONS(5171), + [anon_sym__Atomic] = ACTIONS(5171), + [anon_sym__Noreturn] = ACTIONS(5171), + [anon_sym_noreturn] = ACTIONS(5171), + [anon_sym_mutable] = ACTIONS(5171), + [anon_sym_constinit] = ACTIONS(5171), + [anon_sym_consteval] = ACTIONS(5171), + [sym_primitive_type] = ACTIONS(5171), + [anon_sym_enum] = ACTIONS(5171), + [anon_sym_class] = ACTIONS(5171), + [anon_sym_struct] = ACTIONS(5171), + [anon_sym_union] = ACTIONS(5171), + [anon_sym_or] = ACTIONS(5171), + [anon_sym_and] = ACTIONS(5171), + [anon_sym_asm] = ACTIONS(5171), + [anon_sym___asm__] = ACTIONS(5171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5171), + [anon_sym_decltype] = ACTIONS(5171), + [anon_sym_final] = ACTIONS(5171), + [anon_sym_override] = ACTIONS(5171), + [anon_sym_virtual] = ACTIONS(5171), + [anon_sym_alignas] = ACTIONS(5171), + [anon_sym_explicit] = ACTIONS(5171), + [anon_sym_typename] = ACTIONS(5171), + [anon_sym_template] = ACTIONS(5171), + [anon_sym_GT2] = ACTIONS(5173), + [anon_sym_operator] = ACTIONS(5171), + [anon_sym_try] = ACTIONS(5171), + [anon_sym_friend] = ACTIONS(5171), + [anon_sym_using] = ACTIONS(5171), + [anon_sym_concept] = ACTIONS(5171), + [anon_sym_requires] = ACTIONS(5171), }, - [2219] = { - [sym_identifier] = ACTIONS(5703), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5705), - [anon_sym_COMMA] = ACTIONS(5705), - [anon_sym_RPAREN] = ACTIONS(5705), - [anon_sym_LPAREN2] = ACTIONS(5705), - [anon_sym_DASH] = ACTIONS(5703), - [anon_sym_PLUS] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(5705), - [anon_sym_SLASH] = ACTIONS(5703), - [anon_sym_PERCENT] = ACTIONS(5705), - [anon_sym_PIPE_PIPE] = ACTIONS(5705), - [anon_sym_AMP_AMP] = ACTIONS(5705), - [anon_sym_PIPE] = ACTIONS(5703), - [anon_sym_CARET] = ACTIONS(5705), - [anon_sym_AMP] = ACTIONS(5703), - [anon_sym_EQ_EQ] = ACTIONS(5705), - [anon_sym_BANG_EQ] = ACTIONS(5705), - [anon_sym_GT] = ACTIONS(5703), - [anon_sym_GT_EQ] = ACTIONS(5705), - [anon_sym_LT_EQ] = ACTIONS(5703), - [anon_sym_LT] = ACTIONS(5703), - [anon_sym_LT_LT] = ACTIONS(5705), - [anon_sym_GT_GT] = ACTIONS(5705), - [anon_sym_SEMI] = ACTIONS(5705), - [anon_sym___extension__] = ACTIONS(5703), - [anon_sym___attribute__] = ACTIONS(5703), - [anon_sym___based] = ACTIONS(5703), - [anon_sym_LBRACE] = ACTIONS(5705), - [anon_sym_RBRACE] = ACTIONS(5705), - [anon_sym_signed] = ACTIONS(5703), - [anon_sym_unsigned] = ACTIONS(5703), - [anon_sym_long] = ACTIONS(5703), - [anon_sym_short] = ACTIONS(5703), - [anon_sym_LBRACK] = ACTIONS(5705), - [anon_sym_RBRACK] = ACTIONS(5705), - [anon_sym_const] = ACTIONS(5703), - [anon_sym_constexpr] = ACTIONS(5703), - [anon_sym_volatile] = ACTIONS(5703), - [anon_sym_restrict] = ACTIONS(5703), - [anon_sym___restrict__] = ACTIONS(5703), - [anon_sym__Atomic] = ACTIONS(5703), - [anon_sym__Noreturn] = ACTIONS(5703), - [anon_sym_noreturn] = ACTIONS(5703), - [anon_sym_mutable] = ACTIONS(5703), - [anon_sym_constinit] = ACTIONS(5703), - [anon_sym_consteval] = ACTIONS(5703), - [sym_primitive_type] = ACTIONS(5703), - [anon_sym_COLON] = ACTIONS(5705), - [anon_sym_QMARK] = ACTIONS(5705), - [anon_sym_LT_EQ_GT] = ACTIONS(5705), - [anon_sym_or] = ACTIONS(5703), - [anon_sym_and] = ACTIONS(5703), - [anon_sym_bitor] = ACTIONS(5703), - [anon_sym_xor] = ACTIONS(5703), - [anon_sym_bitand] = ACTIONS(5703), - [anon_sym_not_eq] = ACTIONS(5703), - [anon_sym_DASH_DASH] = ACTIONS(5705), - [anon_sym_PLUS_PLUS] = ACTIONS(5705), - [anon_sym_DOT] = ACTIONS(5703), - [anon_sym_DOT_STAR] = ACTIONS(5705), - [anon_sym_DASH_GT] = ACTIONS(5705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5703), - [anon_sym_decltype] = ACTIONS(5703), - [anon_sym_final] = ACTIONS(5703), - [anon_sym_override] = ACTIONS(5703), - [anon_sym_requires] = ACTIONS(5703), + [1982] = { + [sym_identifier] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5177), + [anon_sym_RPAREN] = ACTIONS(5177), + [anon_sym_LPAREN2] = ACTIONS(5177), + [anon_sym_TILDE] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5177), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_AMP_AMP] = ACTIONS(5177), + [anon_sym_AMP] = ACTIONS(5175), + [anon_sym_SEMI] = ACTIONS(5177), + [anon_sym___extension__] = ACTIONS(5175), + [anon_sym_extern] = ACTIONS(5175), + [anon_sym___attribute__] = ACTIONS(5175), + [anon_sym_COLON_COLON] = ACTIONS(5177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5177), + [anon_sym___declspec] = ACTIONS(5175), + [anon_sym___based] = ACTIONS(5175), + [anon_sym___cdecl] = ACTIONS(5175), + [anon_sym___clrcall] = ACTIONS(5175), + [anon_sym___stdcall] = ACTIONS(5175), + [anon_sym___fastcall] = ACTIONS(5175), + [anon_sym___thiscall] = ACTIONS(5175), + [anon_sym___vectorcall] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5177), + [anon_sym_signed] = ACTIONS(5175), + [anon_sym_unsigned] = ACTIONS(5175), + [anon_sym_long] = ACTIONS(5175), + [anon_sym_short] = ACTIONS(5175), + [anon_sym_LBRACK] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5177), + [anon_sym_static] = ACTIONS(5175), + [anon_sym_register] = ACTIONS(5175), + [anon_sym_inline] = ACTIONS(5175), + [anon_sym___inline] = ACTIONS(5175), + [anon_sym___inline__] = ACTIONS(5175), + [anon_sym___forceinline] = ACTIONS(5175), + [anon_sym_thread_local] = ACTIONS(5175), + [anon_sym___thread] = ACTIONS(5175), + [anon_sym_const] = ACTIONS(5175), + [anon_sym_constexpr] = ACTIONS(5175), + [anon_sym_volatile] = ACTIONS(5175), + [anon_sym_restrict] = ACTIONS(5175), + [anon_sym___restrict__] = ACTIONS(5175), + [anon_sym__Atomic] = ACTIONS(5175), + [anon_sym__Noreturn] = ACTIONS(5175), + [anon_sym_noreturn] = ACTIONS(5175), + [anon_sym_mutable] = ACTIONS(5175), + [anon_sym_constinit] = ACTIONS(5175), + [anon_sym_consteval] = ACTIONS(5175), + [sym_primitive_type] = ACTIONS(5175), + [anon_sym_enum] = ACTIONS(5175), + [anon_sym_class] = ACTIONS(5175), + [anon_sym_struct] = ACTIONS(5175), + [anon_sym_union] = ACTIONS(5175), + [anon_sym_or] = ACTIONS(5175), + [anon_sym_and] = ACTIONS(5175), + [anon_sym_asm] = ACTIONS(5175), + [anon_sym___asm__] = ACTIONS(5175), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5175), + [anon_sym_decltype] = ACTIONS(5175), + [anon_sym_final] = ACTIONS(5175), + [anon_sym_override] = ACTIONS(5175), + [anon_sym_virtual] = ACTIONS(5175), + [anon_sym_alignas] = ACTIONS(5175), + [anon_sym_explicit] = ACTIONS(5175), + [anon_sym_typename] = ACTIONS(5175), + [anon_sym_template] = ACTIONS(5175), + [anon_sym_GT2] = ACTIONS(5177), + [anon_sym_operator] = ACTIONS(5175), + [anon_sym_try] = ACTIONS(5175), + [anon_sym_friend] = ACTIONS(5175), + [anon_sym_using] = ACTIONS(5175), + [anon_sym_concept] = ACTIONS(5175), + [anon_sym_requires] = ACTIONS(5175), }, - [2220] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_RPAREN] = ACTIONS(5016), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5021), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5014), - [anon_sym___extension__] = ACTIONS(5019), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5014), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5019), - [anon_sym_volatile] = ACTIONS(5019), - [anon_sym_restrict] = ACTIONS(5019), - [anon_sym___restrict__] = ACTIONS(5019), - [anon_sym__Atomic] = ACTIONS(5019), - [anon_sym__Noreturn] = ACTIONS(5019), - [anon_sym_noreturn] = ACTIONS(5019), - [anon_sym_mutable] = ACTIONS(5019), - [anon_sym_constinit] = ACTIONS(5019), - [anon_sym_consteval] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_LT_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_GT_EQ] = ACTIONS(5014), - [anon_sym_AMP_EQ] = ACTIONS(5014), - [anon_sym_CARET_EQ] = ACTIONS(5014), - [anon_sym_PIPE_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5014), - [anon_sym_and] = ACTIONS(5014), - [anon_sym_bitor] = ACTIONS(5014), - [anon_sym_xor] = ACTIONS(5014), - [anon_sym_bitand] = ACTIONS(5014), - [anon_sym_not_eq] = ACTIONS(5014), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5021), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5019), - [anon_sym_decltype] = ACTIONS(5019), - [anon_sym_DASH_GT_STAR] = ACTIONS(5014), + [1983] = { + [sym_identifier] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5181), + [anon_sym_RPAREN] = ACTIONS(5181), + [anon_sym_LPAREN2] = ACTIONS(5181), + [anon_sym_TILDE] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5181), + [anon_sym_PIPE_PIPE] = ACTIONS(5181), + [anon_sym_AMP_AMP] = ACTIONS(5181), + [anon_sym_AMP] = ACTIONS(5179), + [anon_sym_SEMI] = ACTIONS(5181), + [anon_sym___extension__] = ACTIONS(5179), + [anon_sym_extern] = ACTIONS(5179), + [anon_sym___attribute__] = ACTIONS(5179), + [anon_sym_COLON_COLON] = ACTIONS(5181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5181), + [anon_sym___declspec] = ACTIONS(5179), + [anon_sym___based] = ACTIONS(5179), + [anon_sym___cdecl] = ACTIONS(5179), + [anon_sym___clrcall] = ACTIONS(5179), + [anon_sym___stdcall] = ACTIONS(5179), + [anon_sym___fastcall] = ACTIONS(5179), + [anon_sym___thiscall] = ACTIONS(5179), + [anon_sym___vectorcall] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5181), + [anon_sym_signed] = ACTIONS(5179), + [anon_sym_unsigned] = ACTIONS(5179), + [anon_sym_long] = ACTIONS(5179), + [anon_sym_short] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5181), + [anon_sym_static] = ACTIONS(5179), + [anon_sym_register] = ACTIONS(5179), + [anon_sym_inline] = ACTIONS(5179), + [anon_sym___inline] = ACTIONS(5179), + [anon_sym___inline__] = ACTIONS(5179), + [anon_sym___forceinline] = ACTIONS(5179), + [anon_sym_thread_local] = ACTIONS(5179), + [anon_sym___thread] = ACTIONS(5179), + [anon_sym_const] = ACTIONS(5179), + [anon_sym_constexpr] = ACTIONS(5179), + [anon_sym_volatile] = ACTIONS(5179), + [anon_sym_restrict] = ACTIONS(5179), + [anon_sym___restrict__] = ACTIONS(5179), + [anon_sym__Atomic] = ACTIONS(5179), + [anon_sym__Noreturn] = ACTIONS(5179), + [anon_sym_noreturn] = ACTIONS(5179), + [anon_sym_mutable] = ACTIONS(5179), + [anon_sym_constinit] = ACTIONS(5179), + [anon_sym_consteval] = ACTIONS(5179), + [sym_primitive_type] = ACTIONS(5179), + [anon_sym_enum] = ACTIONS(5179), + [anon_sym_class] = ACTIONS(5179), + [anon_sym_struct] = ACTIONS(5179), + [anon_sym_union] = ACTIONS(5179), + [anon_sym_or] = ACTIONS(5179), + [anon_sym_and] = ACTIONS(5179), + [anon_sym_asm] = ACTIONS(5179), + [anon_sym___asm__] = ACTIONS(5179), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5179), + [anon_sym_decltype] = ACTIONS(5179), + [anon_sym_final] = ACTIONS(5179), + [anon_sym_override] = ACTIONS(5179), + [anon_sym_virtual] = ACTIONS(5179), + [anon_sym_alignas] = ACTIONS(5179), + [anon_sym_explicit] = ACTIONS(5179), + [anon_sym_typename] = ACTIONS(5179), + [anon_sym_template] = ACTIONS(5179), + [anon_sym_GT2] = ACTIONS(5181), + [anon_sym_operator] = ACTIONS(5179), + [anon_sym_try] = ACTIONS(5179), + [anon_sym_friend] = ACTIONS(5179), + [anon_sym_using] = ACTIONS(5179), + [anon_sym_concept] = ACTIONS(5179), + [anon_sym_requires] = ACTIONS(5179), }, - [2221] = { - [sym_identifier] = ACTIONS(5707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5709), - [anon_sym_COMMA] = ACTIONS(5709), - [anon_sym_RPAREN] = ACTIONS(5709), - [anon_sym_LPAREN2] = ACTIONS(5709), - [anon_sym_DASH] = ACTIONS(5707), - [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_STAR] = ACTIONS(5709), - [anon_sym_SLASH] = ACTIONS(5707), - [anon_sym_PERCENT] = ACTIONS(5709), - [anon_sym_PIPE_PIPE] = ACTIONS(5709), - [anon_sym_AMP_AMP] = ACTIONS(5709), - [anon_sym_PIPE] = ACTIONS(5707), - [anon_sym_CARET] = ACTIONS(5709), - [anon_sym_AMP] = ACTIONS(5707), - [anon_sym_EQ_EQ] = ACTIONS(5709), - [anon_sym_BANG_EQ] = ACTIONS(5709), - [anon_sym_GT] = ACTIONS(5707), - [anon_sym_GT_EQ] = ACTIONS(5709), - [anon_sym_LT_EQ] = ACTIONS(5707), - [anon_sym_LT] = ACTIONS(5707), - [anon_sym_LT_LT] = ACTIONS(5709), - [anon_sym_GT_GT] = ACTIONS(5709), - [anon_sym_SEMI] = ACTIONS(5709), - [anon_sym___extension__] = ACTIONS(5707), - [anon_sym___attribute__] = ACTIONS(5707), - [anon_sym___based] = ACTIONS(5707), - [anon_sym_LBRACE] = ACTIONS(5709), - [anon_sym_RBRACE] = ACTIONS(5709), - [anon_sym_signed] = ACTIONS(5707), - [anon_sym_unsigned] = ACTIONS(5707), - [anon_sym_long] = ACTIONS(5707), - [anon_sym_short] = ACTIONS(5707), - [anon_sym_LBRACK] = ACTIONS(5709), - [anon_sym_RBRACK] = ACTIONS(5709), - [anon_sym_const] = ACTIONS(5707), - [anon_sym_constexpr] = ACTIONS(5707), - [anon_sym_volatile] = ACTIONS(5707), - [anon_sym_restrict] = ACTIONS(5707), - [anon_sym___restrict__] = ACTIONS(5707), - [anon_sym__Atomic] = ACTIONS(5707), - [anon_sym__Noreturn] = ACTIONS(5707), - [anon_sym_noreturn] = ACTIONS(5707), - [anon_sym_mutable] = ACTIONS(5707), - [anon_sym_constinit] = ACTIONS(5707), - [anon_sym_consteval] = ACTIONS(5707), - [sym_primitive_type] = ACTIONS(5707), - [anon_sym_COLON] = ACTIONS(5709), - [anon_sym_QMARK] = ACTIONS(5709), - [anon_sym_LT_EQ_GT] = ACTIONS(5709), - [anon_sym_or] = ACTIONS(5707), - [anon_sym_and] = ACTIONS(5707), - [anon_sym_bitor] = ACTIONS(5707), - [anon_sym_xor] = ACTIONS(5707), - [anon_sym_bitand] = ACTIONS(5707), - [anon_sym_not_eq] = ACTIONS(5707), - [anon_sym_DASH_DASH] = ACTIONS(5709), - [anon_sym_PLUS_PLUS] = ACTIONS(5709), - [anon_sym_DOT] = ACTIONS(5707), - [anon_sym_DOT_STAR] = ACTIONS(5709), - [anon_sym_DASH_GT] = ACTIONS(5709), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5707), - [anon_sym_decltype] = ACTIONS(5707), - [anon_sym_final] = ACTIONS(5707), - [anon_sym_override] = ACTIONS(5707), - [anon_sym_requires] = ACTIONS(5707), + [1984] = { + [sym_identifier] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5185), + [anon_sym_RPAREN] = ACTIONS(5185), + [anon_sym_LPAREN2] = ACTIONS(5185), + [anon_sym_TILDE] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [anon_sym_PIPE_PIPE] = ACTIONS(5185), + [anon_sym_AMP_AMP] = ACTIONS(5185), + [anon_sym_AMP] = ACTIONS(5183), + [anon_sym_SEMI] = ACTIONS(5185), + [anon_sym___extension__] = ACTIONS(5183), + [anon_sym_extern] = ACTIONS(5183), + [anon_sym___attribute__] = ACTIONS(5183), + [anon_sym_COLON_COLON] = ACTIONS(5185), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5185), + [anon_sym___declspec] = ACTIONS(5183), + [anon_sym___based] = ACTIONS(5183), + [anon_sym___cdecl] = ACTIONS(5183), + [anon_sym___clrcall] = ACTIONS(5183), + [anon_sym___stdcall] = ACTIONS(5183), + [anon_sym___fastcall] = ACTIONS(5183), + [anon_sym___thiscall] = ACTIONS(5183), + [anon_sym___vectorcall] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5185), + [anon_sym_signed] = ACTIONS(5183), + [anon_sym_unsigned] = ACTIONS(5183), + [anon_sym_long] = ACTIONS(5183), + [anon_sym_short] = ACTIONS(5183), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5185), + [anon_sym_static] = ACTIONS(5183), + [anon_sym_register] = ACTIONS(5183), + [anon_sym_inline] = ACTIONS(5183), + [anon_sym___inline] = ACTIONS(5183), + [anon_sym___inline__] = ACTIONS(5183), + [anon_sym___forceinline] = ACTIONS(5183), + [anon_sym_thread_local] = ACTIONS(5183), + [anon_sym___thread] = ACTIONS(5183), + [anon_sym_const] = ACTIONS(5183), + [anon_sym_constexpr] = ACTIONS(5183), + [anon_sym_volatile] = ACTIONS(5183), + [anon_sym_restrict] = ACTIONS(5183), + [anon_sym___restrict__] = ACTIONS(5183), + [anon_sym__Atomic] = ACTIONS(5183), + [anon_sym__Noreturn] = ACTIONS(5183), + [anon_sym_noreturn] = ACTIONS(5183), + [anon_sym_mutable] = ACTIONS(5183), + [anon_sym_constinit] = ACTIONS(5183), + [anon_sym_consteval] = ACTIONS(5183), + [sym_primitive_type] = ACTIONS(5183), + [anon_sym_enum] = ACTIONS(5183), + [anon_sym_class] = ACTIONS(5183), + [anon_sym_struct] = ACTIONS(5183), + [anon_sym_union] = ACTIONS(5183), + [anon_sym_or] = ACTIONS(5183), + [anon_sym_and] = ACTIONS(5183), + [anon_sym_asm] = ACTIONS(5183), + [anon_sym___asm__] = ACTIONS(5183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5183), + [anon_sym_decltype] = ACTIONS(5183), + [anon_sym_final] = ACTIONS(5183), + [anon_sym_override] = ACTIONS(5183), + [anon_sym_virtual] = ACTIONS(5183), + [anon_sym_alignas] = ACTIONS(5183), + [anon_sym_explicit] = ACTIONS(5183), + [anon_sym_typename] = ACTIONS(5183), + [anon_sym_template] = ACTIONS(5183), + [anon_sym_GT2] = ACTIONS(5185), + [anon_sym_operator] = ACTIONS(5183), + [anon_sym_try] = ACTIONS(5183), + [anon_sym_friend] = ACTIONS(5183), + [anon_sym_using] = ACTIONS(5183), + [anon_sym_concept] = ACTIONS(5183), + [anon_sym_requires] = ACTIONS(5183), }, - [2222] = { - [sym_identifier] = ACTIONS(5711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5713), - [anon_sym_COMMA] = ACTIONS(5713), - [anon_sym_RPAREN] = ACTIONS(5713), - [anon_sym_LPAREN2] = ACTIONS(5713), - [anon_sym_DASH] = ACTIONS(5711), - [anon_sym_PLUS] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(5713), - [anon_sym_SLASH] = ACTIONS(5711), - [anon_sym_PERCENT] = ACTIONS(5713), - [anon_sym_PIPE_PIPE] = ACTIONS(5713), - [anon_sym_AMP_AMP] = ACTIONS(5713), - [anon_sym_PIPE] = ACTIONS(5711), - [anon_sym_CARET] = ACTIONS(5713), - [anon_sym_AMP] = ACTIONS(5711), - [anon_sym_EQ_EQ] = ACTIONS(5713), - [anon_sym_BANG_EQ] = ACTIONS(5713), - [anon_sym_GT] = ACTIONS(5711), - [anon_sym_GT_EQ] = ACTIONS(5713), - [anon_sym_LT_EQ] = ACTIONS(5711), - [anon_sym_LT] = ACTIONS(5711), - [anon_sym_LT_LT] = ACTIONS(5713), - [anon_sym_GT_GT] = ACTIONS(5713), - [anon_sym_SEMI] = ACTIONS(5713), - [anon_sym___extension__] = ACTIONS(5711), - [anon_sym___attribute__] = ACTIONS(5711), - [anon_sym___based] = ACTIONS(5711), - [anon_sym_LBRACE] = ACTIONS(5713), - [anon_sym_RBRACE] = ACTIONS(5713), - [anon_sym_signed] = ACTIONS(5711), - [anon_sym_unsigned] = ACTIONS(5711), - [anon_sym_long] = ACTIONS(5711), - [anon_sym_short] = ACTIONS(5711), - [anon_sym_LBRACK] = ACTIONS(5713), - [anon_sym_RBRACK] = ACTIONS(5713), - [anon_sym_const] = ACTIONS(5711), - [anon_sym_constexpr] = ACTIONS(5711), - [anon_sym_volatile] = ACTIONS(5711), - [anon_sym_restrict] = ACTIONS(5711), - [anon_sym___restrict__] = ACTIONS(5711), - [anon_sym__Atomic] = ACTIONS(5711), - [anon_sym__Noreturn] = ACTIONS(5711), - [anon_sym_noreturn] = ACTIONS(5711), - [anon_sym_mutable] = ACTIONS(5711), - [anon_sym_constinit] = ACTIONS(5711), - [anon_sym_consteval] = ACTIONS(5711), - [sym_primitive_type] = ACTIONS(5711), - [anon_sym_COLON] = ACTIONS(5713), - [anon_sym_QMARK] = ACTIONS(5713), - [anon_sym_LT_EQ_GT] = ACTIONS(5713), - [anon_sym_or] = ACTIONS(5711), - [anon_sym_and] = ACTIONS(5711), - [anon_sym_bitor] = ACTIONS(5711), - [anon_sym_xor] = ACTIONS(5711), - [anon_sym_bitand] = ACTIONS(5711), - [anon_sym_not_eq] = ACTIONS(5711), - [anon_sym_DASH_DASH] = ACTIONS(5713), - [anon_sym_PLUS_PLUS] = ACTIONS(5713), - [anon_sym_DOT] = ACTIONS(5711), - [anon_sym_DOT_STAR] = ACTIONS(5713), - [anon_sym_DASH_GT] = ACTIONS(5713), + [1985] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4612), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(7857), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_type_parameter_declaration] = STATE(7857), + [sym_variadic_type_parameter_declaration] = STATE(7857), + [sym_optional_type_parameter_declaration] = STATE(7857), + [sym_template_template_parameter_declaration] = STATE(7857), + [sym_optional_parameter_declaration] = STATE(7857), + [sym_variadic_parameter_declaration] = STATE(7857), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(5187), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5711), - [anon_sym_decltype] = ACTIONS(5711), - [anon_sym_final] = ACTIONS(5711), - [anon_sym_override] = ACTIONS(5711), - [anon_sym_requires] = ACTIONS(5711), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(5189), + [anon_sym_template] = ACTIONS(5191), + [anon_sym_GT2] = ACTIONS(5193), }, - [2223] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_COLON] = ACTIONS(4207), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4175), - [anon_sym_or_eq] = ACTIONS(4175), - [anon_sym_xor_eq] = ACTIONS(4175), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), + [1986] = { + [sym_identifier] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5197), + [anon_sym_RPAREN] = ACTIONS(5197), + [anon_sym_LPAREN2] = ACTIONS(5197), + [anon_sym_TILDE] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [anon_sym_PIPE_PIPE] = ACTIONS(5197), + [anon_sym_AMP_AMP] = ACTIONS(5197), + [anon_sym_AMP] = ACTIONS(5195), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym___extension__] = ACTIONS(5195), + [anon_sym_extern] = ACTIONS(5195), + [anon_sym___attribute__] = ACTIONS(5195), + [anon_sym_COLON_COLON] = ACTIONS(5197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5197), + [anon_sym___declspec] = ACTIONS(5195), + [anon_sym___based] = ACTIONS(5195), + [anon_sym___cdecl] = ACTIONS(5195), + [anon_sym___clrcall] = ACTIONS(5195), + [anon_sym___stdcall] = ACTIONS(5195), + [anon_sym___fastcall] = ACTIONS(5195), + [anon_sym___thiscall] = ACTIONS(5195), + [anon_sym___vectorcall] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5197), + [anon_sym_signed] = ACTIONS(5195), + [anon_sym_unsigned] = ACTIONS(5195), + [anon_sym_long] = ACTIONS(5195), + [anon_sym_short] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5197), + [anon_sym_static] = ACTIONS(5195), + [anon_sym_register] = ACTIONS(5195), + [anon_sym_inline] = ACTIONS(5195), + [anon_sym___inline] = ACTIONS(5195), + [anon_sym___inline__] = ACTIONS(5195), + [anon_sym___forceinline] = ACTIONS(5195), + [anon_sym_thread_local] = ACTIONS(5195), + [anon_sym___thread] = ACTIONS(5195), + [anon_sym_const] = ACTIONS(5195), + [anon_sym_constexpr] = ACTIONS(5195), + [anon_sym_volatile] = ACTIONS(5195), + [anon_sym_restrict] = ACTIONS(5195), + [anon_sym___restrict__] = ACTIONS(5195), + [anon_sym__Atomic] = ACTIONS(5195), + [anon_sym__Noreturn] = ACTIONS(5195), + [anon_sym_noreturn] = ACTIONS(5195), + [anon_sym_mutable] = ACTIONS(5195), + [anon_sym_constinit] = ACTIONS(5195), + [anon_sym_consteval] = ACTIONS(5195), + [sym_primitive_type] = ACTIONS(5195), + [anon_sym_enum] = ACTIONS(5195), + [anon_sym_class] = ACTIONS(5195), + [anon_sym_struct] = ACTIONS(5195), + [anon_sym_union] = ACTIONS(5195), + [anon_sym_or] = ACTIONS(5195), + [anon_sym_and] = ACTIONS(5195), + [anon_sym_asm] = ACTIONS(5195), + [anon_sym___asm__] = ACTIONS(5195), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5195), + [anon_sym_decltype] = ACTIONS(5195), + [anon_sym_final] = ACTIONS(5195), + [anon_sym_override] = ACTIONS(5195), + [anon_sym_virtual] = ACTIONS(5195), + [anon_sym_alignas] = ACTIONS(5195), + [anon_sym_explicit] = ACTIONS(5195), + [anon_sym_typename] = ACTIONS(5195), + [anon_sym_template] = ACTIONS(5195), + [anon_sym_GT2] = ACTIONS(5197), + [anon_sym_operator] = ACTIONS(5195), + [anon_sym_try] = ACTIONS(5195), + [anon_sym_friend] = ACTIONS(5195), + [anon_sym_using] = ACTIONS(5195), + [anon_sym_concept] = ACTIONS(5195), + [anon_sym_requires] = ACTIONS(5195), }, - [2224] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5677), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), + [1987] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4612), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(7884), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_type_parameter_declaration] = STATE(7884), + [sym_variadic_type_parameter_declaration] = STATE(7884), + [sym_optional_type_parameter_declaration] = STATE(7884), + [sym_template_template_parameter_declaration] = STATE(7884), + [sym_optional_parameter_declaration] = STATE(7884), + [sym_variadic_parameter_declaration] = STATE(7884), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(5077), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), @@ -341936,1361 +326379,1727 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(5187), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1428), + [anon_sym_typename] = ACTIONS(5189), + [anon_sym_template] = ACTIONS(5191), + [anon_sym_GT2] = ACTIONS(5199), }, - [2225] = { - [sym_identifier] = ACTIONS(5715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5717), - [anon_sym_COMMA] = ACTIONS(5717), - [anon_sym_RPAREN] = ACTIONS(5717), - [anon_sym_LPAREN2] = ACTIONS(5717), - [anon_sym_DASH] = ACTIONS(5715), - [anon_sym_PLUS] = ACTIONS(5715), - [anon_sym_STAR] = ACTIONS(5717), - [anon_sym_SLASH] = ACTIONS(5715), - [anon_sym_PERCENT] = ACTIONS(5717), - [anon_sym_PIPE_PIPE] = ACTIONS(5717), - [anon_sym_AMP_AMP] = ACTIONS(5717), - [anon_sym_PIPE] = ACTIONS(5715), - [anon_sym_CARET] = ACTIONS(5717), - [anon_sym_AMP] = ACTIONS(5715), - [anon_sym_EQ_EQ] = ACTIONS(5717), - [anon_sym_BANG_EQ] = ACTIONS(5717), - [anon_sym_GT] = ACTIONS(5715), - [anon_sym_GT_EQ] = ACTIONS(5717), - [anon_sym_LT_EQ] = ACTIONS(5715), - [anon_sym_LT] = ACTIONS(5715), - [anon_sym_LT_LT] = ACTIONS(5717), - [anon_sym_GT_GT] = ACTIONS(5717), - [anon_sym_SEMI] = ACTIONS(5717), - [anon_sym___extension__] = ACTIONS(5715), - [anon_sym___attribute__] = ACTIONS(5715), - [anon_sym___based] = ACTIONS(5715), - [anon_sym_LBRACE] = ACTIONS(5717), - [anon_sym_RBRACE] = ACTIONS(5717), - [anon_sym_signed] = ACTIONS(5715), - [anon_sym_unsigned] = ACTIONS(5715), - [anon_sym_long] = ACTIONS(5715), - [anon_sym_short] = ACTIONS(5715), - [anon_sym_LBRACK] = ACTIONS(5717), - [anon_sym_RBRACK] = ACTIONS(5717), - [anon_sym_const] = ACTIONS(5715), - [anon_sym_constexpr] = ACTIONS(5715), - [anon_sym_volatile] = ACTIONS(5715), - [anon_sym_restrict] = ACTIONS(5715), - [anon_sym___restrict__] = ACTIONS(5715), - [anon_sym__Atomic] = ACTIONS(5715), - [anon_sym__Noreturn] = ACTIONS(5715), - [anon_sym_noreturn] = ACTIONS(5715), - [anon_sym_mutable] = ACTIONS(5715), - [anon_sym_constinit] = ACTIONS(5715), - [anon_sym_consteval] = ACTIONS(5715), - [sym_primitive_type] = ACTIONS(5715), - [anon_sym_COLON] = ACTIONS(5717), - [anon_sym_QMARK] = ACTIONS(5717), - [anon_sym_LT_EQ_GT] = ACTIONS(5717), - [anon_sym_or] = ACTIONS(5715), - [anon_sym_and] = ACTIONS(5715), - [anon_sym_bitor] = ACTIONS(5715), - [anon_sym_xor] = ACTIONS(5715), - [anon_sym_bitand] = ACTIONS(5715), - [anon_sym_not_eq] = ACTIONS(5715), - [anon_sym_DASH_DASH] = ACTIONS(5717), - [anon_sym_PLUS_PLUS] = ACTIONS(5717), - [anon_sym_DOT] = ACTIONS(5715), - [anon_sym_DOT_STAR] = ACTIONS(5717), - [anon_sym_DASH_GT] = ACTIONS(5717), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5715), - [anon_sym_decltype] = ACTIONS(5715), - [anon_sym_final] = ACTIONS(5715), - [anon_sym_override] = ACTIONS(5715), - [anon_sym_requires] = ACTIONS(5715), + [1988] = { + [sym_identifier] = ACTIONS(5201), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_RPAREN] = ACTIONS(5203), + [anon_sym_LPAREN2] = ACTIONS(5203), + [anon_sym_TILDE] = ACTIONS(5203), + [anon_sym_STAR] = ACTIONS(5203), + [anon_sym_PIPE_PIPE] = ACTIONS(5203), + [anon_sym_AMP_AMP] = ACTIONS(5203), + [anon_sym_AMP] = ACTIONS(5201), + [anon_sym_SEMI] = ACTIONS(5203), + [anon_sym___extension__] = ACTIONS(5201), + [anon_sym_extern] = ACTIONS(5201), + [anon_sym___attribute__] = ACTIONS(5201), + [anon_sym_COLON_COLON] = ACTIONS(5203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5203), + [anon_sym___declspec] = ACTIONS(5201), + [anon_sym___based] = ACTIONS(5201), + [anon_sym___cdecl] = ACTIONS(5201), + [anon_sym___clrcall] = ACTIONS(5201), + [anon_sym___stdcall] = ACTIONS(5201), + [anon_sym___fastcall] = ACTIONS(5201), + [anon_sym___thiscall] = ACTIONS(5201), + [anon_sym___vectorcall] = ACTIONS(5201), + [anon_sym_LBRACE] = ACTIONS(5203), + [anon_sym_signed] = ACTIONS(5201), + [anon_sym_unsigned] = ACTIONS(5201), + [anon_sym_long] = ACTIONS(5201), + [anon_sym_short] = ACTIONS(5201), + [anon_sym_LBRACK] = ACTIONS(5201), + [anon_sym_EQ] = ACTIONS(5203), + [anon_sym_static] = ACTIONS(5201), + [anon_sym_register] = ACTIONS(5201), + [anon_sym_inline] = ACTIONS(5201), + [anon_sym___inline] = ACTIONS(5201), + [anon_sym___inline__] = ACTIONS(5201), + [anon_sym___forceinline] = ACTIONS(5201), + [anon_sym_thread_local] = ACTIONS(5201), + [anon_sym___thread] = ACTIONS(5201), + [anon_sym_const] = ACTIONS(5201), + [anon_sym_constexpr] = ACTIONS(5201), + [anon_sym_volatile] = ACTIONS(5201), + [anon_sym_restrict] = ACTIONS(5201), + [anon_sym___restrict__] = ACTIONS(5201), + [anon_sym__Atomic] = ACTIONS(5201), + [anon_sym__Noreturn] = ACTIONS(5201), + [anon_sym_noreturn] = ACTIONS(5201), + [anon_sym_mutable] = ACTIONS(5201), + [anon_sym_constinit] = ACTIONS(5201), + [anon_sym_consteval] = ACTIONS(5201), + [sym_primitive_type] = ACTIONS(5201), + [anon_sym_enum] = ACTIONS(5201), + [anon_sym_class] = ACTIONS(5201), + [anon_sym_struct] = ACTIONS(5201), + [anon_sym_union] = ACTIONS(5201), + [anon_sym_or] = ACTIONS(5201), + [anon_sym_and] = ACTIONS(5201), + [anon_sym_asm] = ACTIONS(5201), + [anon_sym___asm__] = ACTIONS(5201), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5201), + [anon_sym_decltype] = ACTIONS(5201), + [anon_sym_final] = ACTIONS(5201), + [anon_sym_override] = ACTIONS(5201), + [anon_sym_virtual] = ACTIONS(5201), + [anon_sym_alignas] = ACTIONS(5201), + [anon_sym_explicit] = ACTIONS(5201), + [anon_sym_typename] = ACTIONS(5201), + [anon_sym_template] = ACTIONS(5201), + [anon_sym_GT2] = ACTIONS(5203), + [anon_sym_operator] = ACTIONS(5201), + [anon_sym_try] = ACTIONS(5201), + [anon_sym_friend] = ACTIONS(5201), + [anon_sym_using] = ACTIONS(5201), + [anon_sym_concept] = ACTIONS(5201), + [anon_sym_requires] = ACTIONS(5201), }, - [2226] = { - [sym_identifier] = ACTIONS(5719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5721), - [anon_sym_COMMA] = ACTIONS(5721), - [anon_sym_RPAREN] = ACTIONS(5721), - [anon_sym_LPAREN2] = ACTIONS(5721), - [anon_sym_DASH] = ACTIONS(5719), - [anon_sym_PLUS] = ACTIONS(5719), - [anon_sym_STAR] = ACTIONS(5721), - [anon_sym_SLASH] = ACTIONS(5719), - [anon_sym_PERCENT] = ACTIONS(5721), - [anon_sym_PIPE_PIPE] = ACTIONS(5721), - [anon_sym_AMP_AMP] = ACTIONS(5721), - [anon_sym_PIPE] = ACTIONS(5719), - [anon_sym_CARET] = ACTIONS(5721), - [anon_sym_AMP] = ACTIONS(5719), - [anon_sym_EQ_EQ] = ACTIONS(5721), - [anon_sym_BANG_EQ] = ACTIONS(5721), - [anon_sym_GT] = ACTIONS(5719), - [anon_sym_GT_EQ] = ACTIONS(5721), - [anon_sym_LT_EQ] = ACTIONS(5719), - [anon_sym_LT] = ACTIONS(5719), - [anon_sym_LT_LT] = ACTIONS(5721), - [anon_sym_GT_GT] = ACTIONS(5721), - [anon_sym_SEMI] = ACTIONS(5721), - [anon_sym___extension__] = ACTIONS(5719), - [anon_sym___attribute__] = ACTIONS(5719), - [anon_sym___based] = ACTIONS(5719), - [anon_sym_LBRACE] = ACTIONS(5721), - [anon_sym_RBRACE] = ACTIONS(5721), - [anon_sym_signed] = ACTIONS(5719), - [anon_sym_unsigned] = ACTIONS(5719), - [anon_sym_long] = ACTIONS(5719), - [anon_sym_short] = ACTIONS(5719), - [anon_sym_LBRACK] = ACTIONS(5721), - [anon_sym_RBRACK] = ACTIONS(5721), - [anon_sym_const] = ACTIONS(5719), - [anon_sym_constexpr] = ACTIONS(5719), - [anon_sym_volatile] = ACTIONS(5719), - [anon_sym_restrict] = ACTIONS(5719), - [anon_sym___restrict__] = ACTIONS(5719), - [anon_sym__Atomic] = ACTIONS(5719), - [anon_sym__Noreturn] = ACTIONS(5719), - [anon_sym_noreturn] = ACTIONS(5719), - [anon_sym_mutable] = ACTIONS(5719), - [anon_sym_constinit] = ACTIONS(5719), - [anon_sym_consteval] = ACTIONS(5719), - [sym_primitive_type] = ACTIONS(5719), - [anon_sym_COLON] = ACTIONS(5721), - [anon_sym_QMARK] = ACTIONS(5721), - [anon_sym_LT_EQ_GT] = ACTIONS(5721), - [anon_sym_or] = ACTIONS(5719), - [anon_sym_and] = ACTIONS(5719), - [anon_sym_bitor] = ACTIONS(5719), - [anon_sym_xor] = ACTIONS(5719), - [anon_sym_bitand] = ACTIONS(5719), - [anon_sym_not_eq] = ACTIONS(5719), - [anon_sym_DASH_DASH] = ACTIONS(5721), - [anon_sym_PLUS_PLUS] = ACTIONS(5721), - [anon_sym_DOT] = ACTIONS(5719), - [anon_sym_DOT_STAR] = ACTIONS(5721), - [anon_sym_DASH_GT] = ACTIONS(5721), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5719), - [anon_sym_decltype] = ACTIONS(5719), - [anon_sym_final] = ACTIONS(5719), - [anon_sym_override] = ACTIONS(5719), - [anon_sym_requires] = ACTIONS(5719), + [1989] = { + [sym_string_literal] = STATE(1989), + [sym_raw_string_literal] = STATE(1989), + [aux_sym_concatenated_string_repeat1] = STATE(1989), + [sym_identifier] = ACTIONS(5205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5208), + [anon_sym_COMMA] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [aux_sym_preproc_if_token2] = ACTIONS(5208), + [aux_sym_preproc_else_token1] = ACTIONS(5208), + [aux_sym_preproc_elif_token1] = ACTIONS(5210), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5208), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5208), + [anon_sym_LPAREN2] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_PERCENT] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5210), + [anon_sym_EQ_EQ] = ACTIONS(5208), + [anon_sym_BANG_EQ] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5208), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5210), + [anon_sym_GT_GT] = ACTIONS(5210), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_RBRACE] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(5208), + [anon_sym_RBRACK] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5210), + [anon_sym_COLON] = ACTIONS(5208), + [anon_sym_QMARK] = ACTIONS(5208), + [anon_sym_STAR_EQ] = ACTIONS(5208), + [anon_sym_SLASH_EQ] = ACTIONS(5208), + [anon_sym_PERCENT_EQ] = ACTIONS(5208), + [anon_sym_PLUS_EQ] = ACTIONS(5208), + [anon_sym_DASH_EQ] = ACTIONS(5208), + [anon_sym_LT_LT_EQ] = ACTIONS(5208), + [anon_sym_GT_GT_EQ] = ACTIONS(5208), + [anon_sym_AMP_EQ] = ACTIONS(5208), + [anon_sym_CARET_EQ] = ACTIONS(5208), + [anon_sym_PIPE_EQ] = ACTIONS(5208), + [anon_sym_and_eq] = ACTIONS(5210), + [anon_sym_or_eq] = ACTIONS(5210), + [anon_sym_xor_eq] = ACTIONS(5210), + [anon_sym_LT_EQ_GT] = ACTIONS(5208), + [anon_sym_or] = ACTIONS(5210), + [anon_sym_and] = ACTIONS(5210), + [anon_sym_bitor] = ACTIONS(5210), + [anon_sym_xor] = ACTIONS(5210), + [anon_sym_bitand] = ACTIONS(5210), + [anon_sym_not_eq] = ACTIONS(5210), + [anon_sym_DASH_DASH] = ACTIONS(5208), + [anon_sym_PLUS_PLUS] = ACTIONS(5208), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DOT_STAR] = ACTIONS(5208), + [anon_sym_DASH_GT] = ACTIONS(5208), + [anon_sym_L_DQUOTE] = ACTIONS(5212), + [anon_sym_u_DQUOTE] = ACTIONS(5212), + [anon_sym_U_DQUOTE] = ACTIONS(5212), + [anon_sym_u8_DQUOTE] = ACTIONS(5212), + [anon_sym_DQUOTE] = ACTIONS(5212), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5215), + [anon_sym_LR_DQUOTE] = ACTIONS(5215), + [anon_sym_uR_DQUOTE] = ACTIONS(5215), + [anon_sym_UR_DQUOTE] = ACTIONS(5215), + [anon_sym_u8R_DQUOTE] = ACTIONS(5215), + [sym_literal_suffix] = ACTIONS(5210), }, - [2227] = { - [sym_identifier] = ACTIONS(5723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), - [anon_sym_COMMA] = ACTIONS(5725), - [anon_sym_RPAREN] = ACTIONS(5725), - [anon_sym_LPAREN2] = ACTIONS(5725), - [anon_sym_TILDE] = ACTIONS(5725), - [anon_sym_STAR] = ACTIONS(5725), - [anon_sym_AMP_AMP] = ACTIONS(5725), - [anon_sym_AMP] = ACTIONS(5723), - [anon_sym_SEMI] = ACTIONS(5725), - [anon_sym___extension__] = ACTIONS(5723), - [anon_sym_extern] = ACTIONS(5723), - [anon_sym___attribute__] = ACTIONS(5723), - [anon_sym_COLON_COLON] = ACTIONS(5725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5725), - [anon_sym___declspec] = ACTIONS(5723), - [anon_sym___based] = ACTIONS(5723), - [anon_sym_LBRACE] = ACTIONS(5725), - [anon_sym_signed] = ACTIONS(5723), - [anon_sym_unsigned] = ACTIONS(5723), - [anon_sym_long] = ACTIONS(5723), - [anon_sym_short] = ACTIONS(5723), - [anon_sym_LBRACK] = ACTIONS(5723), - [anon_sym_EQ] = ACTIONS(5725), - [anon_sym_static] = ACTIONS(5723), - [anon_sym_register] = ACTIONS(5723), - [anon_sym_inline] = ACTIONS(5723), - [anon_sym___inline] = ACTIONS(5723), - [anon_sym___inline__] = ACTIONS(5723), - [anon_sym___forceinline] = ACTIONS(5723), - [anon_sym_thread_local] = ACTIONS(5723), - [anon_sym___thread] = ACTIONS(5723), - [anon_sym_const] = ACTIONS(5723), - [anon_sym_constexpr] = ACTIONS(5723), - [anon_sym_volatile] = ACTIONS(5723), - [anon_sym_restrict] = ACTIONS(5723), - [anon_sym___restrict__] = ACTIONS(5723), - [anon_sym__Atomic] = ACTIONS(5723), - [anon_sym__Noreturn] = ACTIONS(5723), - [anon_sym_noreturn] = ACTIONS(5723), - [anon_sym_mutable] = ACTIONS(5723), - [anon_sym_constinit] = ACTIONS(5723), - [anon_sym_consteval] = ACTIONS(5723), - [sym_primitive_type] = ACTIONS(5723), - [anon_sym_enum] = ACTIONS(5723), - [anon_sym_class] = ACTIONS(5723), - [anon_sym_struct] = ACTIONS(5723), - [anon_sym_union] = ACTIONS(5723), - [anon_sym_asm] = ACTIONS(5723), - [anon_sym___asm__] = ACTIONS(5723), - [anon_sym_DASH_GT] = ACTIONS(5725), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5723), - [anon_sym_decltype] = ACTIONS(5723), - [anon_sym_final] = ACTIONS(5723), - [anon_sym_override] = ACTIONS(5723), - [anon_sym_virtual] = ACTIONS(5723), - [anon_sym_alignas] = ACTIONS(5723), - [anon_sym_explicit] = ACTIONS(5723), - [anon_sym_typename] = ACTIONS(5723), - [anon_sym_template] = ACTIONS(5723), - [anon_sym_GT2] = ACTIONS(5725), - [anon_sym_operator] = ACTIONS(5723), - [anon_sym_try] = ACTIONS(5723), - [anon_sym_noexcept] = ACTIONS(5723), - [anon_sym_throw] = ACTIONS(5723), - [anon_sym_requires] = ACTIONS(5723), + [1990] = { + [sym_string_literal] = STATE(1989), + [sym_raw_string_literal] = STATE(1989), + [aux_sym_concatenated_string_repeat1] = STATE(1989), + [sym_identifier] = ACTIONS(5218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5220), + [anon_sym_COMMA] = ACTIONS(5220), + [anon_sym_RPAREN] = ACTIONS(5220), + [aux_sym_preproc_if_token2] = ACTIONS(5220), + [aux_sym_preproc_else_token1] = ACTIONS(5220), + [aux_sym_preproc_elif_token1] = ACTIONS(5222), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5220), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5220), + [anon_sym_LPAREN2] = ACTIONS(5220), + [anon_sym_DASH] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5222), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5222), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5220), + [anon_sym_AMP_AMP] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_AMP] = ACTIONS(5222), + [anon_sym_EQ_EQ] = ACTIONS(5220), + [anon_sym_BANG_EQ] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5222), + [anon_sym_GT_EQ] = ACTIONS(5220), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5222), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(5220), + [anon_sym_RBRACE] = ACTIONS(5220), + [anon_sym_LBRACK] = ACTIONS(5220), + [anon_sym_RBRACK] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_COLON] = ACTIONS(5220), + [anon_sym_QMARK] = ACTIONS(5220), + [anon_sym_STAR_EQ] = ACTIONS(5220), + [anon_sym_SLASH_EQ] = ACTIONS(5220), + [anon_sym_PERCENT_EQ] = ACTIONS(5220), + [anon_sym_PLUS_EQ] = ACTIONS(5220), + [anon_sym_DASH_EQ] = ACTIONS(5220), + [anon_sym_LT_LT_EQ] = ACTIONS(5220), + [anon_sym_GT_GT_EQ] = ACTIONS(5220), + [anon_sym_AMP_EQ] = ACTIONS(5220), + [anon_sym_CARET_EQ] = ACTIONS(5220), + [anon_sym_PIPE_EQ] = ACTIONS(5220), + [anon_sym_and_eq] = ACTIONS(5222), + [anon_sym_or_eq] = ACTIONS(5222), + [anon_sym_xor_eq] = ACTIONS(5222), + [anon_sym_LT_EQ_GT] = ACTIONS(5220), + [anon_sym_or] = ACTIONS(5222), + [anon_sym_and] = ACTIONS(5222), + [anon_sym_bitor] = ACTIONS(5222), + [anon_sym_xor] = ACTIONS(5222), + [anon_sym_bitand] = ACTIONS(5222), + [anon_sym_not_eq] = ACTIONS(5222), + [anon_sym_DASH_DASH] = ACTIONS(5220), + [anon_sym_PLUS_PLUS] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(5222), + [anon_sym_DOT_STAR] = ACTIONS(5220), + [anon_sym_DASH_GT] = ACTIONS(5220), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [sym_literal_suffix] = ACTIONS(5222), }, - [2228] = { - [sym_string_literal] = STATE(2197), - [sym_raw_string_literal] = STATE(2197), - [aux_sym_concatenated_string_repeat1] = STATE(2197), - [sym_identifier] = ACTIONS(5727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5198), - [anon_sym_COMMA] = ACTIONS(5198), - [anon_sym_RPAREN] = ACTIONS(5198), - [anon_sym_LPAREN2] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5200), - [anon_sym_PLUS] = ACTIONS(5200), - [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_SLASH] = ACTIONS(5200), - [anon_sym_PERCENT] = ACTIONS(5200), - [anon_sym_PIPE_PIPE] = ACTIONS(5198), - [anon_sym_AMP_AMP] = ACTIONS(5198), - [anon_sym_PIPE] = ACTIONS(5200), - [anon_sym_CARET] = ACTIONS(5200), - [anon_sym_AMP] = ACTIONS(5200), - [anon_sym_EQ_EQ] = ACTIONS(5198), - [anon_sym_BANG_EQ] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5200), - [anon_sym_GT_EQ] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5200), - [anon_sym_LT] = ACTIONS(5200), - [anon_sym_LT_LT] = ACTIONS(5200), - [anon_sym_GT_GT] = ACTIONS(5200), - [anon_sym_LBRACK] = ACTIONS(5198), - [anon_sym_EQ] = ACTIONS(5200), - [anon_sym_QMARK] = ACTIONS(5198), - [anon_sym_STAR_EQ] = ACTIONS(5198), - [anon_sym_SLASH_EQ] = ACTIONS(5198), - [anon_sym_PERCENT_EQ] = ACTIONS(5198), - [anon_sym_PLUS_EQ] = ACTIONS(5198), - [anon_sym_DASH_EQ] = ACTIONS(5198), - [anon_sym_LT_LT_EQ] = ACTIONS(5198), - [anon_sym_GT_GT_EQ] = ACTIONS(5198), - [anon_sym_AMP_EQ] = ACTIONS(5198), - [anon_sym_CARET_EQ] = ACTIONS(5198), - [anon_sym_PIPE_EQ] = ACTIONS(5198), - [anon_sym_and_eq] = ACTIONS(5200), - [anon_sym_or_eq] = ACTIONS(5200), - [anon_sym_xor_eq] = ACTIONS(5200), - [anon_sym_LT_EQ_GT] = ACTIONS(5198), - [anon_sym_or] = ACTIONS(5200), - [anon_sym_and] = ACTIONS(5200), - [anon_sym_bitor] = ACTIONS(5200), - [anon_sym_xor] = ACTIONS(5200), - [anon_sym_bitand] = ACTIONS(5200), - [anon_sym_not_eq] = ACTIONS(5200), - [anon_sym_DASH_DASH] = ACTIONS(5198), - [anon_sym_PLUS_PLUS] = ACTIONS(5198), - [anon_sym_DOT] = ACTIONS(5200), - [anon_sym_DOT_STAR] = ACTIONS(5198), - [anon_sym_DASH_GT] = ACTIONS(5200), - [anon_sym_L_DQUOTE] = ACTIONS(5451), - [anon_sym_u_DQUOTE] = ACTIONS(5451), - [anon_sym_U_DQUOTE] = ACTIONS(5451), - [anon_sym_u8_DQUOTE] = ACTIONS(5451), - [anon_sym_DQUOTE] = ACTIONS(5451), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5453), - [anon_sym_LR_DQUOTE] = ACTIONS(5453), - [anon_sym_uR_DQUOTE] = ACTIONS(5453), - [anon_sym_UR_DQUOTE] = ACTIONS(5453), - [anon_sym_u8R_DQUOTE] = ACTIONS(5453), - [anon_sym_DASH_GT_STAR] = ACTIONS(5198), - [sym_literal_suffix] = ACTIONS(5200), + [1991] = { + [sym_identifier] = ACTIONS(5224), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_LPAREN2] = ACTIONS(5226), + [anon_sym_TILDE] = ACTIONS(5226), + [anon_sym_STAR] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5226), + [anon_sym_AMP_AMP] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(5224), + [anon_sym_SEMI] = ACTIONS(5226), + [anon_sym___extension__] = ACTIONS(5224), + [anon_sym_extern] = ACTIONS(5224), + [anon_sym___attribute__] = ACTIONS(5224), + [anon_sym_COLON_COLON] = ACTIONS(5226), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5226), + [anon_sym___declspec] = ACTIONS(5224), + [anon_sym___based] = ACTIONS(5224), + [anon_sym___cdecl] = ACTIONS(5224), + [anon_sym___clrcall] = ACTIONS(5224), + [anon_sym___stdcall] = ACTIONS(5224), + [anon_sym___fastcall] = ACTIONS(5224), + [anon_sym___thiscall] = ACTIONS(5224), + [anon_sym___vectorcall] = ACTIONS(5224), + [anon_sym_LBRACE] = ACTIONS(5226), + [anon_sym_signed] = ACTIONS(5224), + [anon_sym_unsigned] = ACTIONS(5224), + [anon_sym_long] = ACTIONS(5224), + [anon_sym_short] = ACTIONS(5224), + [anon_sym_LBRACK] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(5226), + [anon_sym_static] = ACTIONS(5224), + [anon_sym_register] = ACTIONS(5224), + [anon_sym_inline] = ACTIONS(5224), + [anon_sym___inline] = ACTIONS(5224), + [anon_sym___inline__] = ACTIONS(5224), + [anon_sym___forceinline] = ACTIONS(5224), + [anon_sym_thread_local] = ACTIONS(5224), + [anon_sym___thread] = ACTIONS(5224), + [anon_sym_const] = ACTIONS(5224), + [anon_sym_constexpr] = ACTIONS(5224), + [anon_sym_volatile] = ACTIONS(5224), + [anon_sym_restrict] = ACTIONS(5224), + [anon_sym___restrict__] = ACTIONS(5224), + [anon_sym__Atomic] = ACTIONS(5224), + [anon_sym__Noreturn] = ACTIONS(5224), + [anon_sym_noreturn] = ACTIONS(5224), + [anon_sym_mutable] = ACTIONS(5224), + [anon_sym_constinit] = ACTIONS(5224), + [anon_sym_consteval] = ACTIONS(5224), + [sym_primitive_type] = ACTIONS(5224), + [anon_sym_enum] = ACTIONS(5224), + [anon_sym_class] = ACTIONS(5224), + [anon_sym_struct] = ACTIONS(5224), + [anon_sym_union] = ACTIONS(5224), + [anon_sym_or] = ACTIONS(5224), + [anon_sym_and] = ACTIONS(5224), + [anon_sym_asm] = ACTIONS(5224), + [anon_sym___asm__] = ACTIONS(5224), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5224), + [anon_sym_decltype] = ACTIONS(5224), + [anon_sym_final] = ACTIONS(5224), + [anon_sym_override] = ACTIONS(5224), + [anon_sym_virtual] = ACTIONS(5224), + [anon_sym_alignas] = ACTIONS(5224), + [anon_sym_explicit] = ACTIONS(5224), + [anon_sym_typename] = ACTIONS(5224), + [anon_sym_template] = ACTIONS(5224), + [anon_sym_GT2] = ACTIONS(5226), + [anon_sym_operator] = ACTIONS(5224), + [anon_sym_try] = ACTIONS(5224), + [anon_sym_friend] = ACTIONS(5224), + [anon_sym_using] = ACTIONS(5224), + [anon_sym_concept] = ACTIONS(5224), + [anon_sym_requires] = ACTIONS(5224), }, - [2229] = { - [sym_identifier] = ACTIONS(5012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [aux_sym_preproc_if_token2] = ACTIONS(5019), - [aux_sym_preproc_else_token1] = ACTIONS(5019), - [aux_sym_preproc_elif_token1] = ACTIONS(5012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5019), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5019), - [anon_sym_LPAREN2] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5012), - [anon_sym_PLUS] = ACTIONS(5012), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5012), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_PIPE_PIPE] = ACTIONS(5019), - [anon_sym_AMP_AMP] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5012), - [anon_sym_CARET] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5012), - [anon_sym_EQ_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ] = ACTIONS(5019), - [anon_sym_GT] = ACTIONS(5012), - [anon_sym_GT_EQ] = ACTIONS(5019), - [anon_sym_LT_EQ] = ACTIONS(5012), - [anon_sym_LT] = ACTIONS(5012), - [anon_sym_LT_LT] = ACTIONS(5019), - [anon_sym_GT_GT] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym___extension__] = ACTIONS(5012), - [anon_sym___attribute__] = ACTIONS(5012), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5012), - [anon_sym_volatile] = ACTIONS(5012), - [anon_sym_restrict] = ACTIONS(5012), - [anon_sym___restrict__] = ACTIONS(5012), - [anon_sym__Atomic] = ACTIONS(5012), - [anon_sym__Noreturn] = ACTIONS(5012), - [anon_sym_noreturn] = ACTIONS(5012), - [anon_sym_mutable] = ACTIONS(5012), - [anon_sym_constinit] = ACTIONS(5012), - [anon_sym_consteval] = ACTIONS(5012), - [anon_sym_COLON] = ACTIONS(5012), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LT_EQ_GT] = ACTIONS(5019), - [anon_sym_or] = ACTIONS(5012), - [anon_sym_and] = ACTIONS(5012), - [anon_sym_bitor] = ACTIONS(5012), - [anon_sym_xor] = ACTIONS(5012), - [anon_sym_bitand] = ACTIONS(5012), - [anon_sym_not_eq] = ACTIONS(5012), - [anon_sym_DASH_DASH] = ACTIONS(5019), - [anon_sym_PLUS_PLUS] = ACTIONS(5019), - [anon_sym_DOT] = ACTIONS(5012), - [anon_sym_DOT_STAR] = ACTIONS(5019), - [anon_sym_DASH_GT] = ACTIONS(5019), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5012), - [anon_sym_decltype] = ACTIONS(5012), - [anon_sym_final] = ACTIONS(5012), - [anon_sym_override] = ACTIONS(5012), - [anon_sym_requires] = ACTIONS(5012), + [1992] = { + [sym_identifier] = ACTIONS(5228), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_LPAREN2] = ACTIONS(5230), + [anon_sym_TILDE] = ACTIONS(5230), + [anon_sym_STAR] = ACTIONS(5230), + [anon_sym_PIPE_PIPE] = ACTIONS(5230), + [anon_sym_AMP_AMP] = ACTIONS(5230), + [anon_sym_AMP] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(5230), + [anon_sym___extension__] = ACTIONS(5228), + [anon_sym_extern] = ACTIONS(5228), + [anon_sym___attribute__] = ACTIONS(5228), + [anon_sym_COLON_COLON] = ACTIONS(5230), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5230), + [anon_sym___declspec] = ACTIONS(5228), + [anon_sym___based] = ACTIONS(5228), + [anon_sym___cdecl] = ACTIONS(5228), + [anon_sym___clrcall] = ACTIONS(5228), + [anon_sym___stdcall] = ACTIONS(5228), + [anon_sym___fastcall] = ACTIONS(5228), + [anon_sym___thiscall] = ACTIONS(5228), + [anon_sym___vectorcall] = ACTIONS(5228), + [anon_sym_LBRACE] = ACTIONS(5230), + [anon_sym_signed] = ACTIONS(5228), + [anon_sym_unsigned] = ACTIONS(5228), + [anon_sym_long] = ACTIONS(5228), + [anon_sym_short] = ACTIONS(5228), + [anon_sym_LBRACK] = ACTIONS(5228), + [anon_sym_EQ] = ACTIONS(5230), + [anon_sym_static] = ACTIONS(5228), + [anon_sym_register] = ACTIONS(5228), + [anon_sym_inline] = ACTIONS(5228), + [anon_sym___inline] = ACTIONS(5228), + [anon_sym___inline__] = ACTIONS(5228), + [anon_sym___forceinline] = ACTIONS(5228), + [anon_sym_thread_local] = ACTIONS(5228), + [anon_sym___thread] = ACTIONS(5228), + [anon_sym_const] = ACTIONS(5228), + [anon_sym_constexpr] = ACTIONS(5228), + [anon_sym_volatile] = ACTIONS(5228), + [anon_sym_restrict] = ACTIONS(5228), + [anon_sym___restrict__] = ACTIONS(5228), + [anon_sym__Atomic] = ACTIONS(5228), + [anon_sym__Noreturn] = ACTIONS(5228), + [anon_sym_noreturn] = ACTIONS(5228), + [anon_sym_mutable] = ACTIONS(5228), + [anon_sym_constinit] = ACTIONS(5228), + [anon_sym_consteval] = ACTIONS(5228), + [sym_primitive_type] = ACTIONS(5228), + [anon_sym_enum] = ACTIONS(5228), + [anon_sym_class] = ACTIONS(5228), + [anon_sym_struct] = ACTIONS(5228), + [anon_sym_union] = ACTIONS(5228), + [anon_sym_or] = ACTIONS(5228), + [anon_sym_and] = ACTIONS(5228), + [anon_sym_asm] = ACTIONS(5228), + [anon_sym___asm__] = ACTIONS(5228), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5228), + [anon_sym_decltype] = ACTIONS(5228), + [anon_sym_final] = ACTIONS(5228), + [anon_sym_override] = ACTIONS(5228), + [anon_sym_virtual] = ACTIONS(5228), + [anon_sym_alignas] = ACTIONS(5228), + [anon_sym_explicit] = ACTIONS(5228), + [anon_sym_typename] = ACTIONS(5228), + [anon_sym_template] = ACTIONS(5228), + [anon_sym_GT2] = ACTIONS(5230), + [anon_sym_operator] = ACTIONS(5228), + [anon_sym_try] = ACTIONS(5228), + [anon_sym_friend] = ACTIONS(5228), + [anon_sym_using] = ACTIONS(5228), + [anon_sym_concept] = ACTIONS(5228), + [anon_sym_requires] = ACTIONS(5228), }, - [2230] = { - [sym_identifier] = ACTIONS(5729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5731), - [anon_sym_COMMA] = ACTIONS(5731), - [anon_sym_RPAREN] = ACTIONS(5731), - [anon_sym_LPAREN2] = ACTIONS(5731), - [anon_sym_DASH] = ACTIONS(5729), - [anon_sym_PLUS] = ACTIONS(5729), - [anon_sym_STAR] = ACTIONS(5731), - [anon_sym_SLASH] = ACTIONS(5729), - [anon_sym_PERCENT] = ACTIONS(5731), - [anon_sym_PIPE_PIPE] = ACTIONS(5731), - [anon_sym_AMP_AMP] = ACTIONS(5731), - [anon_sym_PIPE] = ACTIONS(5729), - [anon_sym_CARET] = ACTIONS(5731), - [anon_sym_AMP] = ACTIONS(5729), - [anon_sym_EQ_EQ] = ACTIONS(5731), - [anon_sym_BANG_EQ] = ACTIONS(5731), - [anon_sym_GT] = ACTIONS(5729), - [anon_sym_GT_EQ] = ACTIONS(5731), - [anon_sym_LT_EQ] = ACTIONS(5729), - [anon_sym_LT] = ACTIONS(5729), - [anon_sym_LT_LT] = ACTIONS(5731), - [anon_sym_GT_GT] = ACTIONS(5731), - [anon_sym_SEMI] = ACTIONS(5731), - [anon_sym___extension__] = ACTIONS(5729), - [anon_sym___attribute__] = ACTIONS(5729), - [anon_sym___based] = ACTIONS(5729), - [anon_sym_LBRACE] = ACTIONS(5731), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_signed] = ACTIONS(5729), - [anon_sym_unsigned] = ACTIONS(5729), - [anon_sym_long] = ACTIONS(5729), - [anon_sym_short] = ACTIONS(5729), - [anon_sym_LBRACK] = ACTIONS(5731), - [anon_sym_RBRACK] = ACTIONS(5731), - [anon_sym_const] = ACTIONS(5729), - [anon_sym_constexpr] = ACTIONS(5729), - [anon_sym_volatile] = ACTIONS(5729), - [anon_sym_restrict] = ACTIONS(5729), - [anon_sym___restrict__] = ACTIONS(5729), - [anon_sym__Atomic] = ACTIONS(5729), - [anon_sym__Noreturn] = ACTIONS(5729), - [anon_sym_noreturn] = ACTIONS(5729), - [anon_sym_mutable] = ACTIONS(5729), - [anon_sym_constinit] = ACTIONS(5729), - [anon_sym_consteval] = ACTIONS(5729), - [sym_primitive_type] = ACTIONS(5729), - [anon_sym_COLON] = ACTIONS(5731), - [anon_sym_QMARK] = ACTIONS(5731), - [anon_sym_LT_EQ_GT] = ACTIONS(5731), - [anon_sym_or] = ACTIONS(5729), - [anon_sym_and] = ACTIONS(5729), - [anon_sym_bitor] = ACTIONS(5729), - [anon_sym_xor] = ACTIONS(5729), - [anon_sym_bitand] = ACTIONS(5729), - [anon_sym_not_eq] = ACTIONS(5729), - [anon_sym_DASH_DASH] = ACTIONS(5731), - [anon_sym_PLUS_PLUS] = ACTIONS(5731), - [anon_sym_DOT] = ACTIONS(5729), - [anon_sym_DOT_STAR] = ACTIONS(5731), - [anon_sym_DASH_GT] = ACTIONS(5731), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5729), - [anon_sym_decltype] = ACTIONS(5729), - [anon_sym_final] = ACTIONS(5729), - [anon_sym_override] = ACTIONS(5729), - [anon_sym_requires] = ACTIONS(5729), + [1993] = { + [sym_string_literal] = STATE(1990), + [sym_raw_string_literal] = STATE(1990), + [aux_sym_concatenated_string_repeat1] = STATE(1990), + [sym_identifier] = ACTIONS(5232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [aux_sym_preproc_if_token2] = ACTIONS(5234), + [aux_sym_preproc_else_token1] = ACTIONS(5234), + [aux_sym_preproc_elif_token1] = ACTIONS(5236), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5234), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5234), + [anon_sym_LPAREN2] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5236), + [anon_sym_COLON] = ACTIONS(5234), + [anon_sym_QMARK] = ACTIONS(5234), + [anon_sym_STAR_EQ] = ACTIONS(5234), + [anon_sym_SLASH_EQ] = ACTIONS(5234), + [anon_sym_PERCENT_EQ] = ACTIONS(5234), + [anon_sym_PLUS_EQ] = ACTIONS(5234), + [anon_sym_DASH_EQ] = ACTIONS(5234), + [anon_sym_LT_LT_EQ] = ACTIONS(5234), + [anon_sym_GT_GT_EQ] = ACTIONS(5234), + [anon_sym_AMP_EQ] = ACTIONS(5234), + [anon_sym_CARET_EQ] = ACTIONS(5234), + [anon_sym_PIPE_EQ] = ACTIONS(5234), + [anon_sym_and_eq] = ACTIONS(5236), + [anon_sym_or_eq] = ACTIONS(5236), + [anon_sym_xor_eq] = ACTIONS(5236), + [anon_sym_LT_EQ_GT] = ACTIONS(5234), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_and] = ACTIONS(5236), + [anon_sym_bitor] = ACTIONS(5236), + [anon_sym_xor] = ACTIONS(5236), + [anon_sym_bitand] = ACTIONS(5236), + [anon_sym_not_eq] = ACTIONS(5236), + [anon_sym_DASH_DASH] = ACTIONS(5234), + [anon_sym_PLUS_PLUS] = ACTIONS(5234), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_DOT_STAR] = ACTIONS(5234), + [anon_sym_DASH_GT] = ACTIONS(5234), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [sym_literal_suffix] = ACTIONS(5236), }, - [2231] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_COLON] = ACTIONS(4365), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4175), - [anon_sym_or_eq] = ACTIONS(4175), - [anon_sym_xor_eq] = ACTIONS(4175), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), + [1994] = { + [sym_identifier] = ACTIONS(5171), + [anon_sym_COMMA] = ACTIONS(5173), + [anon_sym_RPAREN] = ACTIONS(5173), + [anon_sym_LPAREN2] = ACTIONS(5173), + [anon_sym_TILDE] = ACTIONS(5173), + [anon_sym_STAR] = ACTIONS(5173), + [anon_sym_PIPE_PIPE] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5173), + [anon_sym_AMP] = ACTIONS(5171), + [anon_sym_SEMI] = ACTIONS(5173), + [anon_sym___extension__] = ACTIONS(5171), + [anon_sym_extern] = ACTIONS(5171), + [anon_sym___attribute__] = ACTIONS(5171), + [anon_sym_COLON_COLON] = ACTIONS(5173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5173), + [anon_sym___declspec] = ACTIONS(5171), + [anon_sym___based] = ACTIONS(5171), + [anon_sym___cdecl] = ACTIONS(5171), + [anon_sym___clrcall] = ACTIONS(5171), + [anon_sym___stdcall] = ACTIONS(5171), + [anon_sym___fastcall] = ACTIONS(5171), + [anon_sym___thiscall] = ACTIONS(5171), + [anon_sym___vectorcall] = ACTIONS(5171), + [anon_sym_LBRACE] = ACTIONS(5173), + [anon_sym_signed] = ACTIONS(5171), + [anon_sym_unsigned] = ACTIONS(5171), + [anon_sym_long] = ACTIONS(5171), + [anon_sym_short] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_EQ] = ACTIONS(5173), + [anon_sym_static] = ACTIONS(5171), + [anon_sym_register] = ACTIONS(5171), + [anon_sym_inline] = ACTIONS(5171), + [anon_sym___inline] = ACTIONS(5171), + [anon_sym___inline__] = ACTIONS(5171), + [anon_sym___forceinline] = ACTIONS(5171), + [anon_sym_thread_local] = ACTIONS(5171), + [anon_sym___thread] = ACTIONS(5171), + [anon_sym_const] = ACTIONS(5171), + [anon_sym_constexpr] = ACTIONS(5171), + [anon_sym_volatile] = ACTIONS(5171), + [anon_sym_restrict] = ACTIONS(5171), + [anon_sym___restrict__] = ACTIONS(5171), + [anon_sym__Atomic] = ACTIONS(5171), + [anon_sym__Noreturn] = ACTIONS(5171), + [anon_sym_noreturn] = ACTIONS(5171), + [anon_sym_mutable] = ACTIONS(5171), + [anon_sym_constinit] = ACTIONS(5171), + [anon_sym_consteval] = ACTIONS(5171), + [sym_primitive_type] = ACTIONS(5171), + [anon_sym_enum] = ACTIONS(5171), + [anon_sym_class] = ACTIONS(5171), + [anon_sym_struct] = ACTIONS(5171), + [anon_sym_union] = ACTIONS(5171), + [anon_sym_or] = ACTIONS(5171), + [anon_sym_and] = ACTIONS(5171), + [anon_sym_asm] = ACTIONS(5171), + [anon_sym___asm__] = ACTIONS(5171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5171), + [anon_sym_decltype] = ACTIONS(5171), + [anon_sym_final] = ACTIONS(5171), + [anon_sym_override] = ACTIONS(5171), + [anon_sym_virtual] = ACTIONS(5171), + [anon_sym_alignas] = ACTIONS(5171), + [anon_sym_explicit] = ACTIONS(5171), + [anon_sym_typename] = ACTIONS(5171), + [anon_sym_template] = ACTIONS(5171), + [anon_sym_GT2] = ACTIONS(5173), + [anon_sym_operator] = ACTIONS(5171), + [anon_sym_try] = ACTIONS(5171), + [anon_sym_friend] = ACTIONS(5171), + [anon_sym_using] = ACTIONS(5171), + [anon_sym_concept] = ACTIONS(5171), + [anon_sym_requires] = ACTIONS(5171), }, - [2232] = { - [sym_attribute_specifier] = STATE(2446), - [sym_enumerator_list] = STATE(2339), - [sym_identifier] = ACTIONS(5733), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5735), - [anon_sym_COMMA] = ACTIONS(5735), - [anon_sym_RPAREN] = ACTIONS(5735), - [aux_sym_preproc_if_token2] = ACTIONS(5735), - [aux_sym_preproc_else_token1] = ACTIONS(5735), - [aux_sym_preproc_elif_token1] = ACTIONS(5733), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5735), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5735), - [anon_sym_LPAREN2] = ACTIONS(5735), - [anon_sym_DASH] = ACTIONS(5733), - [anon_sym_PLUS] = ACTIONS(5733), - [anon_sym_STAR] = ACTIONS(5733), - [anon_sym_SLASH] = ACTIONS(5733), - [anon_sym_PERCENT] = ACTIONS(5733), - [anon_sym_PIPE_PIPE] = ACTIONS(5735), - [anon_sym_AMP_AMP] = ACTIONS(5735), - [anon_sym_PIPE] = ACTIONS(5733), - [anon_sym_CARET] = ACTIONS(5733), - [anon_sym_AMP] = ACTIONS(5733), - [anon_sym_EQ_EQ] = ACTIONS(5735), - [anon_sym_BANG_EQ] = ACTIONS(5735), - [anon_sym_GT] = ACTIONS(5733), - [anon_sym_GT_EQ] = ACTIONS(5735), - [anon_sym_LT_EQ] = ACTIONS(5733), - [anon_sym_LT] = ACTIONS(5733), - [anon_sym_LT_LT] = ACTIONS(5733), - [anon_sym_GT_GT] = ACTIONS(5733), - [anon_sym_SEMI] = ACTIONS(5735), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_RBRACE] = ACTIONS(5735), - [anon_sym_LBRACK] = ACTIONS(5735), - [anon_sym_RBRACK] = ACTIONS(5735), - [anon_sym_EQ] = ACTIONS(5733), - [anon_sym_COLON] = ACTIONS(5735), - [anon_sym_QMARK] = ACTIONS(5735), - [anon_sym_STAR_EQ] = ACTIONS(5735), - [anon_sym_SLASH_EQ] = ACTIONS(5735), - [anon_sym_PERCENT_EQ] = ACTIONS(5735), - [anon_sym_PLUS_EQ] = ACTIONS(5735), - [anon_sym_DASH_EQ] = ACTIONS(5735), - [anon_sym_LT_LT_EQ] = ACTIONS(5735), - [anon_sym_GT_GT_EQ] = ACTIONS(5735), - [anon_sym_AMP_EQ] = ACTIONS(5735), - [anon_sym_CARET_EQ] = ACTIONS(5735), - [anon_sym_PIPE_EQ] = ACTIONS(5735), - [anon_sym_and_eq] = ACTIONS(5733), - [anon_sym_or_eq] = ACTIONS(5733), - [anon_sym_xor_eq] = ACTIONS(5733), - [anon_sym_LT_EQ_GT] = ACTIONS(5735), - [anon_sym_or] = ACTIONS(5733), - [anon_sym_and] = ACTIONS(5733), - [anon_sym_bitor] = ACTIONS(5733), - [anon_sym_xor] = ACTIONS(5733), - [anon_sym_bitand] = ACTIONS(5733), - [anon_sym_not_eq] = ACTIONS(5733), - [anon_sym_DASH_DASH] = ACTIONS(5735), - [anon_sym_PLUS_PLUS] = ACTIONS(5735), - [anon_sym_DOT] = ACTIONS(5733), - [anon_sym_DOT_STAR] = ACTIONS(5735), - [anon_sym_DASH_GT] = ACTIONS(5735), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5733), - [anon_sym_decltype] = ACTIONS(5733), + [1995] = { + [sym_identifier] = ACTIONS(5171), + [anon_sym_COMMA] = ACTIONS(5173), + [anon_sym_RPAREN] = ACTIONS(5173), + [anon_sym_LPAREN2] = ACTIONS(5173), + [anon_sym_TILDE] = ACTIONS(5173), + [anon_sym_STAR] = ACTIONS(5173), + [anon_sym_PIPE_PIPE] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5173), + [anon_sym_AMP] = ACTIONS(5171), + [anon_sym_SEMI] = ACTIONS(5173), + [anon_sym___extension__] = ACTIONS(5171), + [anon_sym_extern] = ACTIONS(5171), + [anon_sym___attribute__] = ACTIONS(5171), + [anon_sym_COLON_COLON] = ACTIONS(5173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5173), + [anon_sym___declspec] = ACTIONS(5171), + [anon_sym___based] = ACTIONS(5171), + [anon_sym___cdecl] = ACTIONS(5171), + [anon_sym___clrcall] = ACTIONS(5171), + [anon_sym___stdcall] = ACTIONS(5171), + [anon_sym___fastcall] = ACTIONS(5171), + [anon_sym___thiscall] = ACTIONS(5171), + [anon_sym___vectorcall] = ACTIONS(5171), + [anon_sym_LBRACE] = ACTIONS(5173), + [anon_sym_signed] = ACTIONS(5171), + [anon_sym_unsigned] = ACTIONS(5171), + [anon_sym_long] = ACTIONS(5171), + [anon_sym_short] = ACTIONS(5171), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_EQ] = ACTIONS(5173), + [anon_sym_static] = ACTIONS(5171), + [anon_sym_register] = ACTIONS(5171), + [anon_sym_inline] = ACTIONS(5171), + [anon_sym___inline] = ACTIONS(5171), + [anon_sym___inline__] = ACTIONS(5171), + [anon_sym___forceinline] = ACTIONS(5171), + [anon_sym_thread_local] = ACTIONS(5171), + [anon_sym___thread] = ACTIONS(5171), + [anon_sym_const] = ACTIONS(5171), + [anon_sym_constexpr] = ACTIONS(5171), + [anon_sym_volatile] = ACTIONS(5171), + [anon_sym_restrict] = ACTIONS(5171), + [anon_sym___restrict__] = ACTIONS(5171), + [anon_sym__Atomic] = ACTIONS(5171), + [anon_sym__Noreturn] = ACTIONS(5171), + [anon_sym_noreturn] = ACTIONS(5171), + [anon_sym_mutable] = ACTIONS(5171), + [anon_sym_constinit] = ACTIONS(5171), + [anon_sym_consteval] = ACTIONS(5171), + [sym_primitive_type] = ACTIONS(5171), + [anon_sym_enum] = ACTIONS(5171), + [anon_sym_class] = ACTIONS(5171), + [anon_sym_struct] = ACTIONS(5171), + [anon_sym_union] = ACTIONS(5171), + [anon_sym_or] = ACTIONS(5171), + [anon_sym_and] = ACTIONS(5171), + [anon_sym_asm] = ACTIONS(5171), + [anon_sym___asm__] = ACTIONS(5171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5171), + [anon_sym_decltype] = ACTIONS(5171), + [anon_sym_final] = ACTIONS(5171), + [anon_sym_override] = ACTIONS(5171), + [anon_sym_virtual] = ACTIONS(5171), + [anon_sym_alignas] = ACTIONS(5171), + [anon_sym_explicit] = ACTIONS(5171), + [anon_sym_typename] = ACTIONS(5171), + [anon_sym_template] = ACTIONS(5171), + [anon_sym_GT2] = ACTIONS(5173), + [anon_sym_operator] = ACTIONS(5171), + [anon_sym_try] = ACTIONS(5171), + [anon_sym_friend] = ACTIONS(5171), + [anon_sym_using] = ACTIONS(5171), + [anon_sym_concept] = ACTIONS(5171), + [anon_sym_requires] = ACTIONS(5171), }, - [2233] = { - [sym_identifier] = ACTIONS(5737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5739), - [anon_sym_COMMA] = ACTIONS(5739), - [anon_sym_RPAREN] = ACTIONS(5739), - [anon_sym_LPAREN2] = ACTIONS(5739), - [anon_sym_DASH] = ACTIONS(5737), - [anon_sym_PLUS] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5739), - [anon_sym_SLASH] = ACTIONS(5737), - [anon_sym_PERCENT] = ACTIONS(5739), - [anon_sym_PIPE_PIPE] = ACTIONS(5739), - [anon_sym_AMP_AMP] = ACTIONS(5739), - [anon_sym_PIPE] = ACTIONS(5737), - [anon_sym_CARET] = ACTIONS(5739), - [anon_sym_AMP] = ACTIONS(5737), - [anon_sym_EQ_EQ] = ACTIONS(5739), - [anon_sym_BANG_EQ] = ACTIONS(5739), - [anon_sym_GT] = ACTIONS(5737), - [anon_sym_GT_EQ] = ACTIONS(5739), - [anon_sym_LT_EQ] = ACTIONS(5737), - [anon_sym_LT] = ACTIONS(5737), - [anon_sym_LT_LT] = ACTIONS(5739), - [anon_sym_GT_GT] = ACTIONS(5739), - [anon_sym_SEMI] = ACTIONS(5739), - [anon_sym___extension__] = ACTIONS(5737), - [anon_sym___attribute__] = ACTIONS(5737), - [anon_sym___based] = ACTIONS(5737), - [anon_sym_LBRACE] = ACTIONS(5739), - [anon_sym_RBRACE] = ACTIONS(5739), - [anon_sym_signed] = ACTIONS(5737), - [anon_sym_unsigned] = ACTIONS(5737), - [anon_sym_long] = ACTIONS(5737), - [anon_sym_short] = ACTIONS(5737), - [anon_sym_LBRACK] = ACTIONS(5739), - [anon_sym_RBRACK] = ACTIONS(5739), - [anon_sym_const] = ACTIONS(5737), - [anon_sym_constexpr] = ACTIONS(5737), - [anon_sym_volatile] = ACTIONS(5737), - [anon_sym_restrict] = ACTIONS(5737), - [anon_sym___restrict__] = ACTIONS(5737), - [anon_sym__Atomic] = ACTIONS(5737), - [anon_sym__Noreturn] = ACTIONS(5737), - [anon_sym_noreturn] = ACTIONS(5737), - [anon_sym_mutable] = ACTIONS(5737), - [anon_sym_constinit] = ACTIONS(5737), - [anon_sym_consteval] = ACTIONS(5737), - [sym_primitive_type] = ACTIONS(5737), - [anon_sym_COLON] = ACTIONS(5739), - [anon_sym_QMARK] = ACTIONS(5739), - [anon_sym_LT_EQ_GT] = ACTIONS(5739), - [anon_sym_or] = ACTIONS(5737), - [anon_sym_and] = ACTIONS(5737), - [anon_sym_bitor] = ACTIONS(5737), - [anon_sym_xor] = ACTIONS(5737), - [anon_sym_bitand] = ACTIONS(5737), - [anon_sym_not_eq] = ACTIONS(5737), - [anon_sym_DASH_DASH] = ACTIONS(5739), - [anon_sym_PLUS_PLUS] = ACTIONS(5739), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_DOT_STAR] = ACTIONS(5739), - [anon_sym_DASH_GT] = ACTIONS(5739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5737), - [anon_sym_decltype] = ACTIONS(5737), - [anon_sym_final] = ACTIONS(5737), - [anon_sym_override] = ACTIONS(5737), - [anon_sym_requires] = ACTIONS(5737), + [1996] = { + [sym_identifier] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5240), + [anon_sym_RPAREN] = ACTIONS(5240), + [anon_sym_LPAREN2] = ACTIONS(5240), + [anon_sym_TILDE] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5240), + [anon_sym_PIPE_PIPE] = ACTIONS(5240), + [anon_sym_AMP_AMP] = ACTIONS(5240), + [anon_sym_AMP] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(5240), + [anon_sym___extension__] = ACTIONS(5238), + [anon_sym_extern] = ACTIONS(5238), + [anon_sym___attribute__] = ACTIONS(5238), + [anon_sym_COLON_COLON] = ACTIONS(5240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5240), + [anon_sym___declspec] = ACTIONS(5238), + [anon_sym___based] = ACTIONS(5238), + [anon_sym___cdecl] = ACTIONS(5238), + [anon_sym___clrcall] = ACTIONS(5238), + [anon_sym___stdcall] = ACTIONS(5238), + [anon_sym___fastcall] = ACTIONS(5238), + [anon_sym___thiscall] = ACTIONS(5238), + [anon_sym___vectorcall] = ACTIONS(5238), + [anon_sym_LBRACE] = ACTIONS(5240), + [anon_sym_signed] = ACTIONS(5238), + [anon_sym_unsigned] = ACTIONS(5238), + [anon_sym_long] = ACTIONS(5238), + [anon_sym_short] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_EQ] = ACTIONS(5240), + [anon_sym_static] = ACTIONS(5238), + [anon_sym_register] = ACTIONS(5238), + [anon_sym_inline] = ACTIONS(5238), + [anon_sym___inline] = ACTIONS(5238), + [anon_sym___inline__] = ACTIONS(5238), + [anon_sym___forceinline] = ACTIONS(5238), + [anon_sym_thread_local] = ACTIONS(5238), + [anon_sym___thread] = ACTIONS(5238), + [anon_sym_const] = ACTIONS(5238), + [anon_sym_constexpr] = ACTIONS(5238), + [anon_sym_volatile] = ACTIONS(5238), + [anon_sym_restrict] = ACTIONS(5238), + [anon_sym___restrict__] = ACTIONS(5238), + [anon_sym__Atomic] = ACTIONS(5238), + [anon_sym__Noreturn] = ACTIONS(5238), + [anon_sym_noreturn] = ACTIONS(5238), + [anon_sym_mutable] = ACTIONS(5238), + [anon_sym_constinit] = ACTIONS(5238), + [anon_sym_consteval] = ACTIONS(5238), + [sym_primitive_type] = ACTIONS(5238), + [anon_sym_enum] = ACTIONS(5238), + [anon_sym_class] = ACTIONS(5238), + [anon_sym_struct] = ACTIONS(5238), + [anon_sym_union] = ACTIONS(5238), + [anon_sym_or] = ACTIONS(5238), + [anon_sym_and] = ACTIONS(5238), + [anon_sym_asm] = ACTIONS(5238), + [anon_sym___asm__] = ACTIONS(5238), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5238), + [anon_sym_decltype] = ACTIONS(5238), + [anon_sym_final] = ACTIONS(5238), + [anon_sym_override] = ACTIONS(5238), + [anon_sym_virtual] = ACTIONS(5238), + [anon_sym_alignas] = ACTIONS(5238), + [anon_sym_explicit] = ACTIONS(5238), + [anon_sym_typename] = ACTIONS(5238), + [anon_sym_template] = ACTIONS(5238), + [anon_sym_GT2] = ACTIONS(5240), + [anon_sym_operator] = ACTIONS(5238), + [anon_sym_try] = ACTIONS(5238), + [anon_sym_friend] = ACTIONS(5238), + [anon_sym_using] = ACTIONS(5238), + [anon_sym_concept] = ACTIONS(5238), + [anon_sym_requires] = ACTIONS(5238), }, - [2234] = { - [sym_identifier] = ACTIONS(5741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5743), - [anon_sym_COMMA] = ACTIONS(5743), - [anon_sym_RPAREN] = ACTIONS(5743), - [anon_sym_LPAREN2] = ACTIONS(5743), - [anon_sym_DASH] = ACTIONS(5741), - [anon_sym_PLUS] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(5743), - [anon_sym_SLASH] = ACTIONS(5741), - [anon_sym_PERCENT] = ACTIONS(5743), - [anon_sym_PIPE_PIPE] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5743), - [anon_sym_PIPE] = ACTIONS(5741), - [anon_sym_CARET] = ACTIONS(5743), - [anon_sym_AMP] = ACTIONS(5741), - [anon_sym_EQ_EQ] = ACTIONS(5743), - [anon_sym_BANG_EQ] = ACTIONS(5743), - [anon_sym_GT] = ACTIONS(5741), - [anon_sym_GT_EQ] = ACTIONS(5743), - [anon_sym_LT_EQ] = ACTIONS(5741), - [anon_sym_LT] = ACTIONS(5741), - [anon_sym_LT_LT] = ACTIONS(5743), - [anon_sym_GT_GT] = ACTIONS(5743), - [anon_sym_SEMI] = ACTIONS(5743), - [anon_sym___extension__] = ACTIONS(5741), - [anon_sym___attribute__] = ACTIONS(5741), - [anon_sym___based] = ACTIONS(5741), - [anon_sym_LBRACE] = ACTIONS(5743), - [anon_sym_RBRACE] = ACTIONS(5743), - [anon_sym_signed] = ACTIONS(5741), - [anon_sym_unsigned] = ACTIONS(5741), - [anon_sym_long] = ACTIONS(5741), - [anon_sym_short] = ACTIONS(5741), - [anon_sym_LBRACK] = ACTIONS(5743), - [anon_sym_RBRACK] = ACTIONS(5743), - [anon_sym_const] = ACTIONS(5741), - [anon_sym_constexpr] = ACTIONS(5741), - [anon_sym_volatile] = ACTIONS(5741), - [anon_sym_restrict] = ACTIONS(5741), - [anon_sym___restrict__] = ACTIONS(5741), - [anon_sym__Atomic] = ACTIONS(5741), - [anon_sym__Noreturn] = ACTIONS(5741), - [anon_sym_noreturn] = ACTIONS(5741), - [anon_sym_mutable] = ACTIONS(5741), - [anon_sym_constinit] = ACTIONS(5741), - [anon_sym_consteval] = ACTIONS(5741), - [sym_primitive_type] = ACTIONS(5741), - [anon_sym_COLON] = ACTIONS(5743), - [anon_sym_QMARK] = ACTIONS(5743), - [anon_sym_LT_EQ_GT] = ACTIONS(5743), - [anon_sym_or] = ACTIONS(5741), - [anon_sym_and] = ACTIONS(5741), - [anon_sym_bitor] = ACTIONS(5741), - [anon_sym_xor] = ACTIONS(5741), - [anon_sym_bitand] = ACTIONS(5741), - [anon_sym_not_eq] = ACTIONS(5741), - [anon_sym_DASH_DASH] = ACTIONS(5743), - [anon_sym_PLUS_PLUS] = ACTIONS(5743), - [anon_sym_DOT] = ACTIONS(5741), - [anon_sym_DOT_STAR] = ACTIONS(5743), - [anon_sym_DASH_GT] = ACTIONS(5743), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5741), - [anon_sym_decltype] = ACTIONS(5741), - [anon_sym_final] = ACTIONS(5741), - [anon_sym_override] = ACTIONS(5741), - [anon_sym_requires] = ACTIONS(5741), + [1997] = { + [sym_identifier] = ACTIONS(5242), + [anon_sym_COMMA] = ACTIONS(5244), + [anon_sym_RPAREN] = ACTIONS(5244), + [anon_sym_LPAREN2] = ACTIONS(5244), + [anon_sym_TILDE] = ACTIONS(5244), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_PIPE_PIPE] = ACTIONS(5244), + [anon_sym_AMP_AMP] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(5242), + [anon_sym_SEMI] = ACTIONS(5244), + [anon_sym___extension__] = ACTIONS(5242), + [anon_sym_extern] = ACTIONS(5242), + [anon_sym___attribute__] = ACTIONS(5242), + [anon_sym_COLON_COLON] = ACTIONS(5244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5244), + [anon_sym___declspec] = ACTIONS(5242), + [anon_sym___based] = ACTIONS(5242), + [anon_sym___cdecl] = ACTIONS(5242), + [anon_sym___clrcall] = ACTIONS(5242), + [anon_sym___stdcall] = ACTIONS(5242), + [anon_sym___fastcall] = ACTIONS(5242), + [anon_sym___thiscall] = ACTIONS(5242), + [anon_sym___vectorcall] = ACTIONS(5242), + [anon_sym_LBRACE] = ACTIONS(5244), + [anon_sym_signed] = ACTIONS(5242), + [anon_sym_unsigned] = ACTIONS(5242), + [anon_sym_long] = ACTIONS(5242), + [anon_sym_short] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5242), + [anon_sym_EQ] = ACTIONS(5244), + [anon_sym_static] = ACTIONS(5242), + [anon_sym_register] = ACTIONS(5242), + [anon_sym_inline] = ACTIONS(5242), + [anon_sym___inline] = ACTIONS(5242), + [anon_sym___inline__] = ACTIONS(5242), + [anon_sym___forceinline] = ACTIONS(5242), + [anon_sym_thread_local] = ACTIONS(5242), + [anon_sym___thread] = ACTIONS(5242), + [anon_sym_const] = ACTIONS(5242), + [anon_sym_constexpr] = ACTIONS(5242), + [anon_sym_volatile] = ACTIONS(5242), + [anon_sym_restrict] = ACTIONS(5242), + [anon_sym___restrict__] = ACTIONS(5242), + [anon_sym__Atomic] = ACTIONS(5242), + [anon_sym__Noreturn] = ACTIONS(5242), + [anon_sym_noreturn] = ACTIONS(5242), + [anon_sym_mutable] = ACTIONS(5242), + [anon_sym_constinit] = ACTIONS(5242), + [anon_sym_consteval] = ACTIONS(5242), + [sym_primitive_type] = ACTIONS(5242), + [anon_sym_enum] = ACTIONS(5242), + [anon_sym_class] = ACTIONS(5242), + [anon_sym_struct] = ACTIONS(5242), + [anon_sym_union] = ACTIONS(5242), + [anon_sym_or] = ACTIONS(5242), + [anon_sym_and] = ACTIONS(5242), + [anon_sym_asm] = ACTIONS(5242), + [anon_sym___asm__] = ACTIONS(5242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5242), + [anon_sym_decltype] = ACTIONS(5242), + [anon_sym_final] = ACTIONS(5242), + [anon_sym_override] = ACTIONS(5242), + [anon_sym_virtual] = ACTIONS(5242), + [anon_sym_alignas] = ACTIONS(5242), + [anon_sym_explicit] = ACTIONS(5242), + [anon_sym_typename] = ACTIONS(5242), + [anon_sym_template] = ACTIONS(5242), + [anon_sym_GT2] = ACTIONS(5244), + [anon_sym_operator] = ACTIONS(5242), + [anon_sym_try] = ACTIONS(5242), + [anon_sym_friend] = ACTIONS(5242), + [anon_sym_using] = ACTIONS(5242), + [anon_sym_concept] = ACTIONS(5242), + [anon_sym_requires] = ACTIONS(5242), }, - [2235] = { - [sym_identifier] = ACTIONS(5745), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5747), - [anon_sym_COMMA] = ACTIONS(5747), - [anon_sym_RPAREN] = ACTIONS(5747), - [anon_sym_LPAREN2] = ACTIONS(5747), - [anon_sym_DASH] = ACTIONS(5745), - [anon_sym_PLUS] = ACTIONS(5745), - [anon_sym_STAR] = ACTIONS(5747), - [anon_sym_SLASH] = ACTIONS(5745), - [anon_sym_PERCENT] = ACTIONS(5747), - [anon_sym_PIPE_PIPE] = ACTIONS(5747), - [anon_sym_AMP_AMP] = ACTIONS(5747), - [anon_sym_PIPE] = ACTIONS(5745), - [anon_sym_CARET] = ACTIONS(5747), - [anon_sym_AMP] = ACTIONS(5745), - [anon_sym_EQ_EQ] = ACTIONS(5747), - [anon_sym_BANG_EQ] = ACTIONS(5747), - [anon_sym_GT] = ACTIONS(5745), - [anon_sym_GT_EQ] = ACTIONS(5747), - [anon_sym_LT_EQ] = ACTIONS(5745), - [anon_sym_LT] = ACTIONS(5745), - [anon_sym_LT_LT] = ACTIONS(5747), - [anon_sym_GT_GT] = ACTIONS(5747), - [anon_sym_SEMI] = ACTIONS(5747), - [anon_sym___extension__] = ACTIONS(5745), - [anon_sym___attribute__] = ACTIONS(5745), - [anon_sym___based] = ACTIONS(5745), - [anon_sym_LBRACE] = ACTIONS(5747), - [anon_sym_RBRACE] = ACTIONS(5747), - [anon_sym_signed] = ACTIONS(5745), - [anon_sym_unsigned] = ACTIONS(5745), - [anon_sym_long] = ACTIONS(5745), - [anon_sym_short] = ACTIONS(5745), - [anon_sym_LBRACK] = ACTIONS(5747), - [anon_sym_RBRACK] = ACTIONS(5747), - [anon_sym_const] = ACTIONS(5745), - [anon_sym_constexpr] = ACTIONS(5745), - [anon_sym_volatile] = ACTIONS(5745), - [anon_sym_restrict] = ACTIONS(5745), - [anon_sym___restrict__] = ACTIONS(5745), - [anon_sym__Atomic] = ACTIONS(5745), - [anon_sym__Noreturn] = ACTIONS(5745), - [anon_sym_noreturn] = ACTIONS(5745), - [anon_sym_mutable] = ACTIONS(5745), - [anon_sym_constinit] = ACTIONS(5745), - [anon_sym_consteval] = ACTIONS(5745), - [sym_primitive_type] = ACTIONS(5745), - [anon_sym_COLON] = ACTIONS(5747), - [anon_sym_QMARK] = ACTIONS(5747), - [anon_sym_LT_EQ_GT] = ACTIONS(5747), - [anon_sym_or] = ACTIONS(5745), - [anon_sym_and] = ACTIONS(5745), - [anon_sym_bitor] = ACTIONS(5745), - [anon_sym_xor] = ACTIONS(5745), - [anon_sym_bitand] = ACTIONS(5745), - [anon_sym_not_eq] = ACTIONS(5745), - [anon_sym_DASH_DASH] = ACTIONS(5747), - [anon_sym_PLUS_PLUS] = ACTIONS(5747), - [anon_sym_DOT] = ACTIONS(5745), - [anon_sym_DOT_STAR] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(5747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5745), - [anon_sym_decltype] = ACTIONS(5745), - [anon_sym_final] = ACTIONS(5745), - [anon_sym_override] = ACTIONS(5745), - [anon_sym_requires] = ACTIONS(5745), + [1998] = { + [sym_identifier] = ACTIONS(5246), + [anon_sym_COMMA] = ACTIONS(5248), + [anon_sym_RPAREN] = ACTIONS(5248), + [anon_sym_LPAREN2] = ACTIONS(5248), + [anon_sym_TILDE] = ACTIONS(5248), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_PIPE_PIPE] = ACTIONS(5248), + [anon_sym_AMP_AMP] = ACTIONS(5248), + [anon_sym_AMP] = ACTIONS(5246), + [anon_sym_SEMI] = ACTIONS(5248), + [anon_sym___extension__] = ACTIONS(5246), + [anon_sym_extern] = ACTIONS(5246), + [anon_sym___attribute__] = ACTIONS(5246), + [anon_sym_COLON_COLON] = ACTIONS(5248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5248), + [anon_sym___declspec] = ACTIONS(5246), + [anon_sym___based] = ACTIONS(5246), + [anon_sym___cdecl] = ACTIONS(5246), + [anon_sym___clrcall] = ACTIONS(5246), + [anon_sym___stdcall] = ACTIONS(5246), + [anon_sym___fastcall] = ACTIONS(5246), + [anon_sym___thiscall] = ACTIONS(5246), + [anon_sym___vectorcall] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5248), + [anon_sym_signed] = ACTIONS(5246), + [anon_sym_unsigned] = ACTIONS(5246), + [anon_sym_long] = ACTIONS(5246), + [anon_sym_short] = ACTIONS(5246), + [anon_sym_LBRACK] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(5248), + [anon_sym_static] = ACTIONS(5246), + [anon_sym_register] = ACTIONS(5246), + [anon_sym_inline] = ACTIONS(5246), + [anon_sym___inline] = ACTIONS(5246), + [anon_sym___inline__] = ACTIONS(5246), + [anon_sym___forceinline] = ACTIONS(5246), + [anon_sym_thread_local] = ACTIONS(5246), + [anon_sym___thread] = ACTIONS(5246), + [anon_sym_const] = ACTIONS(5246), + [anon_sym_constexpr] = ACTIONS(5246), + [anon_sym_volatile] = ACTIONS(5246), + [anon_sym_restrict] = ACTIONS(5246), + [anon_sym___restrict__] = ACTIONS(5246), + [anon_sym__Atomic] = ACTIONS(5246), + [anon_sym__Noreturn] = ACTIONS(5246), + [anon_sym_noreturn] = ACTIONS(5246), + [anon_sym_mutable] = ACTIONS(5246), + [anon_sym_constinit] = ACTIONS(5246), + [anon_sym_consteval] = ACTIONS(5246), + [sym_primitive_type] = ACTIONS(5246), + [anon_sym_enum] = ACTIONS(5246), + [anon_sym_class] = ACTIONS(5246), + [anon_sym_struct] = ACTIONS(5246), + [anon_sym_union] = ACTIONS(5246), + [anon_sym_or] = ACTIONS(5246), + [anon_sym_and] = ACTIONS(5246), + [anon_sym_asm] = ACTIONS(5246), + [anon_sym___asm__] = ACTIONS(5246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5246), + [anon_sym_decltype] = ACTIONS(5246), + [anon_sym_final] = ACTIONS(5246), + [anon_sym_override] = ACTIONS(5246), + [anon_sym_virtual] = ACTIONS(5246), + [anon_sym_alignas] = ACTIONS(5246), + [anon_sym_explicit] = ACTIONS(5246), + [anon_sym_typename] = ACTIONS(5246), + [anon_sym_template] = ACTIONS(5246), + [anon_sym_GT2] = ACTIONS(5248), + [anon_sym_operator] = ACTIONS(5246), + [anon_sym_try] = ACTIONS(5246), + [anon_sym_friend] = ACTIONS(5246), + [anon_sym_using] = ACTIONS(5246), + [anon_sym_concept] = ACTIONS(5246), + [anon_sym_requires] = ACTIONS(5246), }, - [2236] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_COLON] = ACTIONS(5749), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4175), - [anon_sym_or_eq] = ACTIONS(4175), - [anon_sym_xor_eq] = ACTIONS(4175), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), + [1999] = { + [sym_identifier] = ACTIONS(5250), + [anon_sym_COMMA] = ACTIONS(5252), + [anon_sym_RPAREN] = ACTIONS(5252), + [anon_sym_LPAREN2] = ACTIONS(5252), + [anon_sym_TILDE] = ACTIONS(5252), + [anon_sym_STAR] = ACTIONS(5252), + [anon_sym_PIPE_PIPE] = ACTIONS(5252), + [anon_sym_AMP_AMP] = ACTIONS(5252), + [anon_sym_AMP] = ACTIONS(5250), + [anon_sym_SEMI] = ACTIONS(5252), + [anon_sym___extension__] = ACTIONS(5250), + [anon_sym_extern] = ACTIONS(5250), + [anon_sym___attribute__] = ACTIONS(5250), + [anon_sym_COLON_COLON] = ACTIONS(5252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5252), + [anon_sym___declspec] = ACTIONS(5250), + [anon_sym___based] = ACTIONS(5250), + [anon_sym___cdecl] = ACTIONS(5250), + [anon_sym___clrcall] = ACTIONS(5250), + [anon_sym___stdcall] = ACTIONS(5250), + [anon_sym___fastcall] = ACTIONS(5250), + [anon_sym___thiscall] = ACTIONS(5250), + [anon_sym___vectorcall] = ACTIONS(5250), + [anon_sym_LBRACE] = ACTIONS(5252), + [anon_sym_signed] = ACTIONS(5250), + [anon_sym_unsigned] = ACTIONS(5250), + [anon_sym_long] = ACTIONS(5250), + [anon_sym_short] = ACTIONS(5250), + [anon_sym_LBRACK] = ACTIONS(5250), + [anon_sym_EQ] = ACTIONS(5252), + [anon_sym_static] = ACTIONS(5250), + [anon_sym_register] = ACTIONS(5250), + [anon_sym_inline] = ACTIONS(5250), + [anon_sym___inline] = ACTIONS(5250), + [anon_sym___inline__] = ACTIONS(5250), + [anon_sym___forceinline] = ACTIONS(5250), + [anon_sym_thread_local] = ACTIONS(5250), + [anon_sym___thread] = ACTIONS(5250), + [anon_sym_const] = ACTIONS(5250), + [anon_sym_constexpr] = ACTIONS(5250), + [anon_sym_volatile] = ACTIONS(5250), + [anon_sym_restrict] = ACTIONS(5250), + [anon_sym___restrict__] = ACTIONS(5250), + [anon_sym__Atomic] = ACTIONS(5250), + [anon_sym__Noreturn] = ACTIONS(5250), + [anon_sym_noreturn] = ACTIONS(5250), + [anon_sym_mutable] = ACTIONS(5250), + [anon_sym_constinit] = ACTIONS(5250), + [anon_sym_consteval] = ACTIONS(5250), + [sym_primitive_type] = ACTIONS(5250), + [anon_sym_enum] = ACTIONS(5250), + [anon_sym_class] = ACTIONS(5250), + [anon_sym_struct] = ACTIONS(5250), + [anon_sym_union] = ACTIONS(5250), + [anon_sym_or] = ACTIONS(5250), + [anon_sym_and] = ACTIONS(5250), + [anon_sym_asm] = ACTIONS(5250), + [anon_sym___asm__] = ACTIONS(5250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5250), + [anon_sym_decltype] = ACTIONS(5250), + [anon_sym_final] = ACTIONS(5250), + [anon_sym_override] = ACTIONS(5250), + [anon_sym_virtual] = ACTIONS(5250), + [anon_sym_alignas] = ACTIONS(5250), + [anon_sym_explicit] = ACTIONS(5250), + [anon_sym_typename] = ACTIONS(5250), + [anon_sym_template] = ACTIONS(5250), + [anon_sym_GT2] = ACTIONS(5252), + [anon_sym_operator] = ACTIONS(5250), + [anon_sym_try] = ACTIONS(5250), + [anon_sym_friend] = ACTIONS(5250), + [anon_sym_using] = ACTIONS(5250), + [anon_sym_concept] = ACTIONS(5250), + [anon_sym_requires] = ACTIONS(5250), }, - [2237] = { - [sym_identifier] = ACTIONS(5751), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5753), - [anon_sym_COMMA] = ACTIONS(5753), - [anon_sym_RPAREN] = ACTIONS(5753), - [anon_sym_LPAREN2] = ACTIONS(5753), - [anon_sym_DASH] = ACTIONS(5751), - [anon_sym_PLUS] = ACTIONS(5751), - [anon_sym_STAR] = ACTIONS(5753), - [anon_sym_SLASH] = ACTIONS(5751), - [anon_sym_PERCENT] = ACTIONS(5753), - [anon_sym_PIPE_PIPE] = ACTIONS(5753), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_PIPE] = ACTIONS(5751), - [anon_sym_CARET] = ACTIONS(5753), - [anon_sym_AMP] = ACTIONS(5751), - [anon_sym_EQ_EQ] = ACTIONS(5753), - [anon_sym_BANG_EQ] = ACTIONS(5753), - [anon_sym_GT] = ACTIONS(5751), - [anon_sym_GT_EQ] = ACTIONS(5753), - [anon_sym_LT_EQ] = ACTIONS(5751), - [anon_sym_LT] = ACTIONS(5751), - [anon_sym_LT_LT] = ACTIONS(5753), - [anon_sym_GT_GT] = ACTIONS(5753), - [anon_sym_SEMI] = ACTIONS(5753), - [anon_sym___extension__] = ACTIONS(5751), - [anon_sym___attribute__] = ACTIONS(5751), - [anon_sym___based] = ACTIONS(5751), - [anon_sym_LBRACE] = ACTIONS(5753), - [anon_sym_RBRACE] = ACTIONS(5753), - [anon_sym_signed] = ACTIONS(5751), - [anon_sym_unsigned] = ACTIONS(5751), - [anon_sym_long] = ACTIONS(5751), - [anon_sym_short] = ACTIONS(5751), - [anon_sym_LBRACK] = ACTIONS(5753), - [anon_sym_RBRACK] = ACTIONS(5753), - [anon_sym_const] = ACTIONS(5751), - [anon_sym_constexpr] = ACTIONS(5751), - [anon_sym_volatile] = ACTIONS(5751), - [anon_sym_restrict] = ACTIONS(5751), - [anon_sym___restrict__] = ACTIONS(5751), - [anon_sym__Atomic] = ACTIONS(5751), - [anon_sym__Noreturn] = ACTIONS(5751), - [anon_sym_noreturn] = ACTIONS(5751), - [anon_sym_mutable] = ACTIONS(5751), - [anon_sym_constinit] = ACTIONS(5751), - [anon_sym_consteval] = ACTIONS(5751), - [sym_primitive_type] = ACTIONS(5751), - [anon_sym_COLON] = ACTIONS(5753), - [anon_sym_QMARK] = ACTIONS(5753), - [anon_sym_LT_EQ_GT] = ACTIONS(5753), - [anon_sym_or] = ACTIONS(5751), - [anon_sym_and] = ACTIONS(5751), - [anon_sym_bitor] = ACTIONS(5751), - [anon_sym_xor] = ACTIONS(5751), - [anon_sym_bitand] = ACTIONS(5751), - [anon_sym_not_eq] = ACTIONS(5751), - [anon_sym_DASH_DASH] = ACTIONS(5753), - [anon_sym_PLUS_PLUS] = ACTIONS(5753), - [anon_sym_DOT] = ACTIONS(5751), - [anon_sym_DOT_STAR] = ACTIONS(5753), - [anon_sym_DASH_GT] = ACTIONS(5753), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5751), - [anon_sym_decltype] = ACTIONS(5751), - [anon_sym_final] = ACTIONS(5751), - [anon_sym_override] = ACTIONS(5751), - [anon_sym_requires] = ACTIONS(5751), + [2000] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4612), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(8191), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_type_parameter_declaration] = STATE(8191), + [sym_variadic_type_parameter_declaration] = STATE(8191), + [sym_optional_type_parameter_declaration] = STATE(8191), + [sym_template_template_parameter_declaration] = STATE(8191), + [sym_optional_parameter_declaration] = STATE(8191), + [sym_variadic_parameter_declaration] = STATE(8191), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(5187), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(5189), + [anon_sym_template] = ACTIONS(5191), }, - [2238] = { - [sym_identifier] = ACTIONS(5755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5757), - [anon_sym_COMMA] = ACTIONS(5757), - [anon_sym_RPAREN] = ACTIONS(5757), - [anon_sym_LPAREN2] = ACTIONS(5757), - [anon_sym_DASH] = ACTIONS(5755), - [anon_sym_PLUS] = ACTIONS(5755), - [anon_sym_STAR] = ACTIONS(5757), - [anon_sym_SLASH] = ACTIONS(5755), - [anon_sym_PERCENT] = ACTIONS(5757), - [anon_sym_PIPE_PIPE] = ACTIONS(5757), - [anon_sym_AMP_AMP] = ACTIONS(5757), - [anon_sym_PIPE] = ACTIONS(5755), - [anon_sym_CARET] = ACTIONS(5757), - [anon_sym_AMP] = ACTIONS(5755), - [anon_sym_EQ_EQ] = ACTIONS(5757), - [anon_sym_BANG_EQ] = ACTIONS(5757), - [anon_sym_GT] = ACTIONS(5755), - [anon_sym_GT_EQ] = ACTIONS(5757), - [anon_sym_LT_EQ] = ACTIONS(5755), - [anon_sym_LT] = ACTIONS(5755), - [anon_sym_LT_LT] = ACTIONS(5757), - [anon_sym_GT_GT] = ACTIONS(5757), - [anon_sym_SEMI] = ACTIONS(5757), - [anon_sym___extension__] = ACTIONS(5755), - [anon_sym___attribute__] = ACTIONS(5755), - [anon_sym___based] = ACTIONS(5755), - [anon_sym_LBRACE] = ACTIONS(5757), - [anon_sym_RBRACE] = ACTIONS(5757), - [anon_sym_signed] = ACTIONS(5755), - [anon_sym_unsigned] = ACTIONS(5755), - [anon_sym_long] = ACTIONS(5755), - [anon_sym_short] = ACTIONS(5755), - [anon_sym_LBRACK] = ACTIONS(5757), - [anon_sym_RBRACK] = ACTIONS(5757), - [anon_sym_const] = ACTIONS(5755), - [anon_sym_constexpr] = ACTIONS(5755), - [anon_sym_volatile] = ACTIONS(5755), - [anon_sym_restrict] = ACTIONS(5755), - [anon_sym___restrict__] = ACTIONS(5755), - [anon_sym__Atomic] = ACTIONS(5755), - [anon_sym__Noreturn] = ACTIONS(5755), - [anon_sym_noreturn] = ACTIONS(5755), - [anon_sym_mutable] = ACTIONS(5755), - [anon_sym_constinit] = ACTIONS(5755), - [anon_sym_consteval] = ACTIONS(5755), - [sym_primitive_type] = ACTIONS(5755), - [anon_sym_COLON] = ACTIONS(5757), - [anon_sym_QMARK] = ACTIONS(5757), - [anon_sym_LT_EQ_GT] = ACTIONS(5757), - [anon_sym_or] = ACTIONS(5755), - [anon_sym_and] = ACTIONS(5755), - [anon_sym_bitor] = ACTIONS(5755), - [anon_sym_xor] = ACTIONS(5755), - [anon_sym_bitand] = ACTIONS(5755), - [anon_sym_not_eq] = ACTIONS(5755), - [anon_sym_DASH_DASH] = ACTIONS(5757), - [anon_sym_PLUS_PLUS] = ACTIONS(5757), - [anon_sym_DOT] = ACTIONS(5755), - [anon_sym_DOT_STAR] = ACTIONS(5757), - [anon_sym_DASH_GT] = ACTIONS(5757), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5755), - [anon_sym_decltype] = ACTIONS(5755), - [anon_sym_final] = ACTIONS(5755), - [anon_sym_override] = ACTIONS(5755), - [anon_sym_requires] = ACTIONS(5755), + [2001] = { + [sym_identifier] = ACTIONS(5039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LPAREN2] = ACTIONS(5043), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5041), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5041), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5041), + [anon_sym_GT_GT] = ACTIONS(5041), + [anon_sym___extension__] = ACTIONS(5039), + [anon_sym_extern] = ACTIONS(5039), + [anon_sym___attribute__] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5046), + [anon_sym___declspec] = ACTIONS(5039), + [anon_sym___based] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_static] = ACTIONS(5039), + [anon_sym_register] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym___inline] = ACTIONS(5039), + [anon_sym___inline__] = ACTIONS(5039), + [anon_sym___forceinline] = ACTIONS(5039), + [anon_sym_thread_local] = ACTIONS(5039), + [anon_sym___thread] = ACTIONS(5039), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5039), + [anon_sym_volatile] = ACTIONS(5039), + [anon_sym_restrict] = ACTIONS(5039), + [anon_sym___restrict__] = ACTIONS(5039), + [anon_sym__Atomic] = ACTIONS(5039), + [anon_sym__Noreturn] = ACTIONS(5039), + [anon_sym_noreturn] = ACTIONS(5039), + [anon_sym_mutable] = ACTIONS(5039), + [anon_sym_constinit] = ACTIONS(5039), + [anon_sym_consteval] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_LT_EQ_GT] = ACTIONS(5041), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_bitor] = ACTIONS(5048), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_bitand] = ACTIONS(5048), + [anon_sym_not_eq] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_DOT_STAR] = ACTIONS(5041), + [anon_sym_DASH_GT] = ACTIONS(5041), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5039), + [anon_sym_decltype] = ACTIONS(5039), + [anon_sym_virtual] = ACTIONS(5039), + [anon_sym_alignas] = ACTIONS(5039), + [anon_sym_template] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), }, - [2239] = { - [sym_identifier] = ACTIONS(5759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5761), - [anon_sym_COMMA] = ACTIONS(5761), - [anon_sym_RPAREN] = ACTIONS(5761), - [anon_sym_LPAREN2] = ACTIONS(5761), - [anon_sym_DASH] = ACTIONS(5759), - [anon_sym_PLUS] = ACTIONS(5759), - [anon_sym_STAR] = ACTIONS(5761), - [anon_sym_SLASH] = ACTIONS(5759), - [anon_sym_PERCENT] = ACTIONS(5761), - [anon_sym_PIPE_PIPE] = ACTIONS(5761), - [anon_sym_AMP_AMP] = ACTIONS(5761), - [anon_sym_PIPE] = ACTIONS(5759), - [anon_sym_CARET] = ACTIONS(5761), - [anon_sym_AMP] = ACTIONS(5759), - [anon_sym_EQ_EQ] = ACTIONS(5761), - [anon_sym_BANG_EQ] = ACTIONS(5761), - [anon_sym_GT] = ACTIONS(5759), - [anon_sym_GT_EQ] = ACTIONS(5761), - [anon_sym_LT_EQ] = ACTIONS(5759), - [anon_sym_LT] = ACTIONS(5759), - [anon_sym_LT_LT] = ACTIONS(5761), - [anon_sym_GT_GT] = ACTIONS(5761), - [anon_sym_SEMI] = ACTIONS(5761), - [anon_sym___extension__] = ACTIONS(5759), - [anon_sym___attribute__] = ACTIONS(5759), - [anon_sym___based] = ACTIONS(5759), - [anon_sym_LBRACE] = ACTIONS(5761), - [anon_sym_RBRACE] = ACTIONS(5761), - [anon_sym_signed] = ACTIONS(5759), - [anon_sym_unsigned] = ACTIONS(5759), - [anon_sym_long] = ACTIONS(5759), - [anon_sym_short] = ACTIONS(5759), - [anon_sym_LBRACK] = ACTIONS(5761), - [anon_sym_RBRACK] = ACTIONS(5761), - [anon_sym_const] = ACTIONS(5759), - [anon_sym_constexpr] = ACTIONS(5759), - [anon_sym_volatile] = ACTIONS(5759), - [anon_sym_restrict] = ACTIONS(5759), - [anon_sym___restrict__] = ACTIONS(5759), - [anon_sym__Atomic] = ACTIONS(5759), - [anon_sym__Noreturn] = ACTIONS(5759), - [anon_sym_noreturn] = ACTIONS(5759), - [anon_sym_mutable] = ACTIONS(5759), - [anon_sym_constinit] = ACTIONS(5759), - [anon_sym_consteval] = ACTIONS(5759), - [sym_primitive_type] = ACTIONS(5759), - [anon_sym_COLON] = ACTIONS(5761), - [anon_sym_QMARK] = ACTIONS(5761), - [anon_sym_LT_EQ_GT] = ACTIONS(5761), - [anon_sym_or] = ACTIONS(5759), - [anon_sym_and] = ACTIONS(5759), - [anon_sym_bitor] = ACTIONS(5759), - [anon_sym_xor] = ACTIONS(5759), - [anon_sym_bitand] = ACTIONS(5759), - [anon_sym_not_eq] = ACTIONS(5759), - [anon_sym_DASH_DASH] = ACTIONS(5761), - [anon_sym_PLUS_PLUS] = ACTIONS(5761), - [anon_sym_DOT] = ACTIONS(5759), - [anon_sym_DOT_STAR] = ACTIONS(5761), - [anon_sym_DASH_GT] = ACTIONS(5761), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5759), - [anon_sym_decltype] = ACTIONS(5759), - [anon_sym_final] = ACTIONS(5759), - [anon_sym_override] = ACTIONS(5759), - [anon_sym_requires] = ACTIONS(5759), + [2002] = { + [sym_identifier] = ACTIONS(5039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_LPAREN2] = ACTIONS(5043), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5041), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5041), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5041), + [anon_sym_GT_GT] = ACTIONS(5041), + [anon_sym_SEMI] = ACTIONS(5043), + [anon_sym___extension__] = ACTIONS(5039), + [anon_sym_extern] = ACTIONS(5039), + [anon_sym___attribute__] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5043), + [anon_sym___declspec] = ACTIONS(5039), + [anon_sym___based] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_static] = ACTIONS(5039), + [anon_sym_register] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym___inline] = ACTIONS(5039), + [anon_sym___inline__] = ACTIONS(5039), + [anon_sym___forceinline] = ACTIONS(5039), + [anon_sym_thread_local] = ACTIONS(5039), + [anon_sym___thread] = ACTIONS(5039), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5039), + [anon_sym_volatile] = ACTIONS(5039), + [anon_sym_restrict] = ACTIONS(5039), + [anon_sym___restrict__] = ACTIONS(5039), + [anon_sym__Atomic] = ACTIONS(5039), + [anon_sym__Noreturn] = ACTIONS(5039), + [anon_sym_noreturn] = ACTIONS(5039), + [anon_sym_mutable] = ACTIONS(5039), + [anon_sym_constinit] = ACTIONS(5039), + [anon_sym_consteval] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_LT_EQ_GT] = ACTIONS(5041), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_bitor] = ACTIONS(5048), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_bitand] = ACTIONS(5048), + [anon_sym_not_eq] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_DOT_STAR] = ACTIONS(5041), + [anon_sym_DASH_GT] = ACTIONS(5041), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5039), + [anon_sym_decltype] = ACTIONS(5039), + [anon_sym_virtual] = ACTIONS(5039), + [anon_sym_alignas] = ACTIONS(5039), + [anon_sym_template] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), }, - [2240] = { - [sym_identifier] = ACTIONS(5763), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5765), - [anon_sym_COMMA] = ACTIONS(5765), - [anon_sym_RPAREN] = ACTIONS(5765), - [anon_sym_LPAREN2] = ACTIONS(5765), - [anon_sym_DASH] = ACTIONS(5763), - [anon_sym_PLUS] = ACTIONS(5763), - [anon_sym_STAR] = ACTIONS(5765), - [anon_sym_SLASH] = ACTIONS(5763), - [anon_sym_PERCENT] = ACTIONS(5765), - [anon_sym_PIPE_PIPE] = ACTIONS(5765), - [anon_sym_AMP_AMP] = ACTIONS(5765), - [anon_sym_PIPE] = ACTIONS(5763), - [anon_sym_CARET] = ACTIONS(5765), - [anon_sym_AMP] = ACTIONS(5763), - [anon_sym_EQ_EQ] = ACTIONS(5765), - [anon_sym_BANG_EQ] = ACTIONS(5765), - [anon_sym_GT] = ACTIONS(5763), - [anon_sym_GT_EQ] = ACTIONS(5765), - [anon_sym_LT_EQ] = ACTIONS(5763), - [anon_sym_LT] = ACTIONS(5763), - [anon_sym_LT_LT] = ACTIONS(5765), - [anon_sym_GT_GT] = ACTIONS(5765), - [anon_sym_SEMI] = ACTIONS(5765), - [anon_sym___extension__] = ACTIONS(5763), - [anon_sym___attribute__] = ACTIONS(5763), - [anon_sym___based] = ACTIONS(5763), - [anon_sym_LBRACE] = ACTIONS(5765), - [anon_sym_RBRACE] = ACTIONS(5765), - [anon_sym_signed] = ACTIONS(5763), - [anon_sym_unsigned] = ACTIONS(5763), - [anon_sym_long] = ACTIONS(5763), - [anon_sym_short] = ACTIONS(5763), - [anon_sym_LBRACK] = ACTIONS(5765), - [anon_sym_RBRACK] = ACTIONS(5765), - [anon_sym_const] = ACTIONS(5763), - [anon_sym_constexpr] = ACTIONS(5763), - [anon_sym_volatile] = ACTIONS(5763), - [anon_sym_restrict] = ACTIONS(5763), - [anon_sym___restrict__] = ACTIONS(5763), - [anon_sym__Atomic] = ACTIONS(5763), - [anon_sym__Noreturn] = ACTIONS(5763), - [anon_sym_noreturn] = ACTIONS(5763), - [anon_sym_mutable] = ACTIONS(5763), - [anon_sym_constinit] = ACTIONS(5763), - [anon_sym_consteval] = ACTIONS(5763), - [sym_primitive_type] = ACTIONS(5763), - [anon_sym_COLON] = ACTIONS(5765), - [anon_sym_QMARK] = ACTIONS(5765), - [anon_sym_LT_EQ_GT] = ACTIONS(5765), - [anon_sym_or] = ACTIONS(5763), - [anon_sym_and] = ACTIONS(5763), - [anon_sym_bitor] = ACTIONS(5763), - [anon_sym_xor] = ACTIONS(5763), - [anon_sym_bitand] = ACTIONS(5763), - [anon_sym_not_eq] = ACTIONS(5763), - [anon_sym_DASH_DASH] = ACTIONS(5765), - [anon_sym_PLUS_PLUS] = ACTIONS(5765), - [anon_sym_DOT] = ACTIONS(5763), - [anon_sym_DOT_STAR] = ACTIONS(5765), - [anon_sym_DASH_GT] = ACTIONS(5765), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5763), - [anon_sym_decltype] = ACTIONS(5763), - [anon_sym_final] = ACTIONS(5763), - [anon_sym_override] = ACTIONS(5763), - [anon_sym_requires] = ACTIONS(5763), + [2003] = { + [sym_identifier] = ACTIONS(5254), + [anon_sym_LPAREN2] = ACTIONS(5256), + [anon_sym_BANG] = ACTIONS(5256), + [anon_sym_TILDE] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5254), + [anon_sym_PLUS] = ACTIONS(5254), + [anon_sym_STAR] = ACTIONS(5256), + [anon_sym_AMP] = ACTIONS(5256), + [anon_sym_SEMI] = ACTIONS(5256), + [anon_sym_COLON_COLON] = ACTIONS(5256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5256), + [anon_sym_LBRACE] = ACTIONS(5256), + [anon_sym_LBRACK] = ACTIONS(5254), + [sym_primitive_type] = ACTIONS(5254), + [anon_sym_if] = ACTIONS(5254), + [anon_sym_switch] = ACTIONS(5254), + [anon_sym_case] = ACTIONS(5254), + [anon_sym_default] = ACTIONS(5254), + [anon_sym_while] = ACTIONS(5254), + [anon_sym_do] = ACTIONS(5254), + [anon_sym_for] = ACTIONS(5254), + [anon_sym_return] = ACTIONS(5254), + [anon_sym_break] = ACTIONS(5254), + [anon_sym_continue] = ACTIONS(5254), + [anon_sym_goto] = ACTIONS(5254), + [anon_sym___try] = ACTIONS(5254), + [anon_sym___leave] = ACTIONS(5254), + [anon_sym_not] = ACTIONS(5254), + [anon_sym_compl] = ACTIONS(5254), + [anon_sym_DASH_DASH] = ACTIONS(5256), + [anon_sym_PLUS_PLUS] = ACTIONS(5256), + [anon_sym_sizeof] = ACTIONS(5254), + [anon_sym___alignof__] = ACTIONS(5254), + [anon_sym___alignof] = ACTIONS(5254), + [anon_sym__alignof] = ACTIONS(5254), + [anon_sym_alignof] = ACTIONS(5254), + [anon_sym__Alignof] = ACTIONS(5254), + [anon_sym_offsetof] = ACTIONS(5254), + [anon_sym__Generic] = ACTIONS(5254), + [anon_sym_asm] = ACTIONS(5254), + [anon_sym___asm__] = ACTIONS(5254), + [sym_number_literal] = ACTIONS(5256), + [anon_sym_L_SQUOTE] = ACTIONS(5256), + [anon_sym_u_SQUOTE] = ACTIONS(5256), + [anon_sym_U_SQUOTE] = ACTIONS(5256), + [anon_sym_u8_SQUOTE] = ACTIONS(5256), + [anon_sym_SQUOTE] = ACTIONS(5256), + [anon_sym_L_DQUOTE] = ACTIONS(5256), + [anon_sym_u_DQUOTE] = ACTIONS(5256), + [anon_sym_U_DQUOTE] = ACTIONS(5256), + [anon_sym_u8_DQUOTE] = ACTIONS(5256), + [anon_sym_DQUOTE] = ACTIONS(5256), + [sym_true] = ACTIONS(5254), + [sym_false] = ACTIONS(5254), + [anon_sym_NULL] = ACTIONS(5254), + [anon_sym_nullptr] = ACTIONS(5254), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5254), + [anon_sym_template] = ACTIONS(5254), + [anon_sym_try] = ACTIONS(5254), + [anon_sym_delete] = ACTIONS(5254), + [anon_sym_throw] = ACTIONS(5254), + [anon_sym_co_return] = ACTIONS(5254), + [anon_sym_co_yield] = ACTIONS(5254), + [anon_sym_R_DQUOTE] = ACTIONS(5256), + [anon_sym_LR_DQUOTE] = ACTIONS(5256), + [anon_sym_uR_DQUOTE] = ACTIONS(5256), + [anon_sym_UR_DQUOTE] = ACTIONS(5256), + [anon_sym_u8R_DQUOTE] = ACTIONS(5256), + [anon_sym_co_await] = ACTIONS(5254), + [anon_sym_new] = ACTIONS(5254), + [anon_sym_requires] = ACTIONS(5254), + [sym_this] = ACTIONS(5254), }, - [2241] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_COLON] = ACTIONS(4240), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4175), - [anon_sym_SLASH_EQ] = ACTIONS(4175), - [anon_sym_PERCENT_EQ] = ACTIONS(4175), - [anon_sym_PLUS_EQ] = ACTIONS(4175), - [anon_sym_DASH_EQ] = ACTIONS(4175), - [anon_sym_LT_LT_EQ] = ACTIONS(4175), - [anon_sym_GT_GT_EQ] = ACTIONS(4175), - [anon_sym_AMP_EQ] = ACTIONS(4175), - [anon_sym_CARET_EQ] = ACTIONS(4175), - [anon_sym_PIPE_EQ] = ACTIONS(4175), - [anon_sym_and_eq] = ACTIONS(4175), - [anon_sym_or_eq] = ACTIONS(4175), - [anon_sym_xor_eq] = ACTIONS(4175), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), + [2004] = { + [sym_identifier] = ACTIONS(5039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_RPAREN] = ACTIONS(5041), + [anon_sym_LPAREN2] = ACTIONS(5043), + [anon_sym_TILDE] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5043), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5041), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5041), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5041), + [anon_sym_GT_GT] = ACTIONS(5041), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym___extension__] = ACTIONS(5039), + [anon_sym_extern] = ACTIONS(5039), + [anon_sym___attribute__] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5046), + [anon_sym___declspec] = ACTIONS(5039), + [anon_sym___based] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_static] = ACTIONS(5039), + [anon_sym_register] = ACTIONS(5039), + [anon_sym_inline] = ACTIONS(5039), + [anon_sym___inline] = ACTIONS(5039), + [anon_sym___inline__] = ACTIONS(5039), + [anon_sym___forceinline] = ACTIONS(5039), + [anon_sym_thread_local] = ACTIONS(5039), + [anon_sym___thread] = ACTIONS(5039), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5039), + [anon_sym_volatile] = ACTIONS(5039), + [anon_sym_restrict] = ACTIONS(5039), + [anon_sym___restrict__] = ACTIONS(5039), + [anon_sym__Atomic] = ACTIONS(5039), + [anon_sym__Noreturn] = ACTIONS(5039), + [anon_sym_noreturn] = ACTIONS(5039), + [anon_sym_mutable] = ACTIONS(5039), + [anon_sym_constinit] = ACTIONS(5039), + [anon_sym_consteval] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_LT_EQ_GT] = ACTIONS(5041), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_bitor] = ACTIONS(5048), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_bitand] = ACTIONS(5048), + [anon_sym_not_eq] = ACTIONS(5048), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_DOT_STAR] = ACTIONS(5041), + [anon_sym_DASH_GT] = ACTIONS(5041), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5039), + [anon_sym_decltype] = ACTIONS(5039), + [anon_sym_virtual] = ACTIONS(5039), + [anon_sym_alignas] = ACTIONS(5039), + [anon_sym_template] = ACTIONS(5039), + [anon_sym_operator] = ACTIONS(5039), }, - [2242] = { - [sym_identifier] = ACTIONS(5767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5769), - [anon_sym_COMMA] = ACTIONS(5769), - [anon_sym_RPAREN] = ACTIONS(5769), - [anon_sym_LPAREN2] = ACTIONS(5769), - [anon_sym_DASH] = ACTIONS(5767), - [anon_sym_PLUS] = ACTIONS(5767), - [anon_sym_STAR] = ACTIONS(5769), - [anon_sym_SLASH] = ACTIONS(5767), - [anon_sym_PERCENT] = ACTIONS(5769), - [anon_sym_PIPE_PIPE] = ACTIONS(5769), - [anon_sym_AMP_AMP] = ACTIONS(5769), - [anon_sym_PIPE] = ACTIONS(5767), - [anon_sym_CARET] = ACTIONS(5769), - [anon_sym_AMP] = ACTIONS(5767), - [anon_sym_EQ_EQ] = ACTIONS(5769), - [anon_sym_BANG_EQ] = ACTIONS(5769), - [anon_sym_GT] = ACTIONS(5767), - [anon_sym_GT_EQ] = ACTIONS(5769), - [anon_sym_LT_EQ] = ACTIONS(5767), - [anon_sym_LT] = ACTIONS(5767), - [anon_sym_LT_LT] = ACTIONS(5769), - [anon_sym_GT_GT] = ACTIONS(5769), - [anon_sym_SEMI] = ACTIONS(5769), - [anon_sym___extension__] = ACTIONS(5767), - [anon_sym___attribute__] = ACTIONS(5767), - [anon_sym___based] = ACTIONS(5767), - [anon_sym_LBRACE] = ACTIONS(5769), - [anon_sym_RBRACE] = ACTIONS(5769), - [anon_sym_signed] = ACTIONS(5767), - [anon_sym_unsigned] = ACTIONS(5767), - [anon_sym_long] = ACTIONS(5767), - [anon_sym_short] = ACTIONS(5767), - [anon_sym_LBRACK] = ACTIONS(5769), - [anon_sym_RBRACK] = ACTIONS(5769), - [anon_sym_const] = ACTIONS(5767), - [anon_sym_constexpr] = ACTIONS(5767), - [anon_sym_volatile] = ACTIONS(5767), - [anon_sym_restrict] = ACTIONS(5767), - [anon_sym___restrict__] = ACTIONS(5767), - [anon_sym__Atomic] = ACTIONS(5767), - [anon_sym__Noreturn] = ACTIONS(5767), - [anon_sym_noreturn] = ACTIONS(5767), - [anon_sym_mutable] = ACTIONS(5767), - [anon_sym_constinit] = ACTIONS(5767), - [anon_sym_consteval] = ACTIONS(5767), - [sym_primitive_type] = ACTIONS(5767), - [anon_sym_COLON] = ACTIONS(5769), - [anon_sym_QMARK] = ACTIONS(5769), - [anon_sym_LT_EQ_GT] = ACTIONS(5769), - [anon_sym_or] = ACTIONS(5767), - [anon_sym_and] = ACTIONS(5767), - [anon_sym_bitor] = ACTIONS(5767), - [anon_sym_xor] = ACTIONS(5767), - [anon_sym_bitand] = ACTIONS(5767), - [anon_sym_not_eq] = ACTIONS(5767), - [anon_sym_DASH_DASH] = ACTIONS(5769), - [anon_sym_PLUS_PLUS] = ACTIONS(5769), - [anon_sym_DOT] = ACTIONS(5767), - [anon_sym_DOT_STAR] = ACTIONS(5769), - [anon_sym_DASH_GT] = ACTIONS(5769), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5767), - [anon_sym_decltype] = ACTIONS(5767), - [anon_sym_final] = ACTIONS(5767), - [anon_sym_override] = ACTIONS(5767), - [anon_sym_requires] = ACTIONS(5767), + [2005] = { + [sym_identifier] = ACTIONS(5258), + [anon_sym_LPAREN2] = ACTIONS(5260), + [anon_sym_BANG] = ACTIONS(5260), + [anon_sym_TILDE] = ACTIONS(5260), + [anon_sym_DASH] = ACTIONS(5258), + [anon_sym_PLUS] = ACTIONS(5258), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5260), + [anon_sym_COLON_COLON] = ACTIONS(5260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5260), + [anon_sym_LBRACE] = ACTIONS(5260), + [anon_sym_LBRACK] = ACTIONS(5258), + [sym_primitive_type] = ACTIONS(5258), + [anon_sym_if] = ACTIONS(5258), + [anon_sym_switch] = ACTIONS(5258), + [anon_sym_case] = ACTIONS(5258), + [anon_sym_default] = ACTIONS(5258), + [anon_sym_while] = ACTIONS(5258), + [anon_sym_do] = ACTIONS(5258), + [anon_sym_for] = ACTIONS(5258), + [anon_sym_return] = ACTIONS(5258), + [anon_sym_break] = ACTIONS(5258), + [anon_sym_continue] = ACTIONS(5258), + [anon_sym_goto] = ACTIONS(5258), + [anon_sym___try] = ACTIONS(5258), + [anon_sym___leave] = ACTIONS(5258), + [anon_sym_not] = ACTIONS(5258), + [anon_sym_compl] = ACTIONS(5258), + [anon_sym_DASH_DASH] = ACTIONS(5260), + [anon_sym_PLUS_PLUS] = ACTIONS(5260), + [anon_sym_sizeof] = ACTIONS(5258), + [anon_sym___alignof__] = ACTIONS(5258), + [anon_sym___alignof] = ACTIONS(5258), + [anon_sym__alignof] = ACTIONS(5258), + [anon_sym_alignof] = ACTIONS(5258), + [anon_sym__Alignof] = ACTIONS(5258), + [anon_sym_offsetof] = ACTIONS(5258), + [anon_sym__Generic] = ACTIONS(5258), + [anon_sym_asm] = ACTIONS(5258), + [anon_sym___asm__] = ACTIONS(5258), + [sym_number_literal] = ACTIONS(5260), + [anon_sym_L_SQUOTE] = ACTIONS(5260), + [anon_sym_u_SQUOTE] = ACTIONS(5260), + [anon_sym_U_SQUOTE] = ACTIONS(5260), + [anon_sym_u8_SQUOTE] = ACTIONS(5260), + [anon_sym_SQUOTE] = ACTIONS(5260), + [anon_sym_L_DQUOTE] = ACTIONS(5260), + [anon_sym_u_DQUOTE] = ACTIONS(5260), + [anon_sym_U_DQUOTE] = ACTIONS(5260), + [anon_sym_u8_DQUOTE] = ACTIONS(5260), + [anon_sym_DQUOTE] = ACTIONS(5260), + [sym_true] = ACTIONS(5258), + [sym_false] = ACTIONS(5258), + [anon_sym_NULL] = ACTIONS(5258), + [anon_sym_nullptr] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5258), + [anon_sym_template] = ACTIONS(5258), + [anon_sym_try] = ACTIONS(5258), + [anon_sym_delete] = ACTIONS(5258), + [anon_sym_throw] = ACTIONS(5258), + [anon_sym_co_return] = ACTIONS(5258), + [anon_sym_co_yield] = ACTIONS(5258), + [anon_sym_R_DQUOTE] = ACTIONS(5260), + [anon_sym_LR_DQUOTE] = ACTIONS(5260), + [anon_sym_uR_DQUOTE] = ACTIONS(5260), + [anon_sym_UR_DQUOTE] = ACTIONS(5260), + [anon_sym_u8R_DQUOTE] = ACTIONS(5260), + [anon_sym_co_await] = ACTIONS(5258), + [anon_sym_new] = ACTIONS(5258), + [anon_sym_requires] = ACTIONS(5258), + [sym_this] = ACTIONS(5258), }, - [2243] = { - [sym_string_literal] = STATE(2259), - [sym_template_argument_list] = STATE(3457), - [sym_raw_string_literal] = STATE(2259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_RPAREN] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5448), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4139), - [anon_sym_or_eq] = ACTIONS(4139), - [anon_sym_xor_eq] = ACTIONS(4139), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4147), - [anon_sym_L_DQUOTE] = ACTIONS(5451), - [anon_sym_u_DQUOTE] = ACTIONS(5451), - [anon_sym_U_DQUOTE] = ACTIONS(5451), - [anon_sym_u8_DQUOTE] = ACTIONS(5451), - [anon_sym_DQUOTE] = ACTIONS(5451), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5453), - [anon_sym_LR_DQUOTE] = ACTIONS(5453), - [anon_sym_uR_DQUOTE] = ACTIONS(5453), - [anon_sym_UR_DQUOTE] = ACTIONS(5453), - [anon_sym_u8R_DQUOTE] = ACTIONS(5453), - [anon_sym_DASH_GT_STAR] = ACTIONS(4139), + [2006] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LPAREN2] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_PERCENT] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4997), + [anon_sym_AMP_AMP] = ACTIONS(4997), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4997), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_LT_LT] = ACTIONS(4995), + [anon_sym_GT_GT] = ACTIONS(4995), + [anon_sym___extension__] = ACTIONS(4997), + [anon_sym___attribute__] = ACTIONS(4997), + [anon_sym_COLON_COLON] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4995), + [anon_sym_const] = ACTIONS(4995), + [anon_sym_constexpr] = ACTIONS(4997), + [anon_sym_volatile] = ACTIONS(4997), + [anon_sym_restrict] = ACTIONS(4997), + [anon_sym___restrict__] = ACTIONS(4997), + [anon_sym__Atomic] = ACTIONS(4997), + [anon_sym__Noreturn] = ACTIONS(4997), + [anon_sym_noreturn] = ACTIONS(4997), + [anon_sym_mutable] = ACTIONS(4997), + [anon_sym_constinit] = ACTIONS(4997), + [anon_sym_consteval] = ACTIONS(4997), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_QMARK] = ACTIONS(4997), + [anon_sym_STAR_EQ] = ACTIONS(4997), + [anon_sym_SLASH_EQ] = ACTIONS(4997), + [anon_sym_PERCENT_EQ] = ACTIONS(4997), + [anon_sym_PLUS_EQ] = ACTIONS(4997), + [anon_sym_DASH_EQ] = ACTIONS(4997), + [anon_sym_LT_LT_EQ] = ACTIONS(4997), + [anon_sym_GT_GT_EQ] = ACTIONS(4997), + [anon_sym_AMP_EQ] = ACTIONS(4997), + [anon_sym_CARET_EQ] = ACTIONS(4997), + [anon_sym_PIPE_EQ] = ACTIONS(4997), + [anon_sym_and_eq] = ACTIONS(4997), + [anon_sym_or_eq] = ACTIONS(4997), + [anon_sym_xor_eq] = ACTIONS(4997), + [anon_sym_LT_EQ_GT] = ACTIONS(4997), + [anon_sym_or] = ACTIONS(4995), + [anon_sym_and] = ACTIONS(4995), + [anon_sym_bitor] = ACTIONS(4997), + [anon_sym_xor] = ACTIONS(4995), + [anon_sym_bitand] = ACTIONS(4997), + [anon_sym_not_eq] = ACTIONS(4997), + [anon_sym_DASH_DASH] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4997), + [anon_sym_DOT] = ACTIONS(4995), + [anon_sym_DOT_STAR] = ACTIONS(4997), + [anon_sym_DASH_GT] = ACTIONS(4995), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4997), + [anon_sym_decltype] = ACTIONS(4997), + [anon_sym_final] = ACTIONS(4997), + [anon_sym_override] = ACTIONS(4997), + [anon_sym_DASH_GT_STAR] = ACTIONS(4997), }, - [2244] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5655), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), + [2007] = { + [sym_identifier] = ACTIONS(5262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5264), + [anon_sym_COMMA] = ACTIONS(5264), + [anon_sym_RPAREN] = ACTIONS(5264), + [aux_sym_preproc_if_token2] = ACTIONS(5264), + [aux_sym_preproc_else_token1] = ACTIONS(5264), + [aux_sym_preproc_elif_token1] = ACTIONS(5262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5264), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5264), + [anon_sym_LPAREN2] = ACTIONS(5264), + [anon_sym_DASH] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5262), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5262), + [anon_sym_PERCENT] = ACTIONS(5262), + [anon_sym_PIPE_PIPE] = ACTIONS(5264), + [anon_sym_AMP_AMP] = ACTIONS(5264), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5264), + [anon_sym_BANG_EQ] = ACTIONS(5264), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5264), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(5262), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5264), + [anon_sym_RBRACE] = ACTIONS(5264), + [anon_sym_LBRACK] = ACTIONS(5264), + [anon_sym_RBRACK] = ACTIONS(5264), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_QMARK] = ACTIONS(5264), + [anon_sym_STAR_EQ] = ACTIONS(5264), + [anon_sym_SLASH_EQ] = ACTIONS(5264), + [anon_sym_PERCENT_EQ] = ACTIONS(5264), + [anon_sym_PLUS_EQ] = ACTIONS(5264), + [anon_sym_DASH_EQ] = ACTIONS(5264), + [anon_sym_LT_LT_EQ] = ACTIONS(5264), + [anon_sym_GT_GT_EQ] = ACTIONS(5264), + [anon_sym_AMP_EQ] = ACTIONS(5264), + [anon_sym_CARET_EQ] = ACTIONS(5264), + [anon_sym_PIPE_EQ] = ACTIONS(5264), + [anon_sym_and_eq] = ACTIONS(5262), + [anon_sym_or_eq] = ACTIONS(5262), + [anon_sym_xor_eq] = ACTIONS(5262), + [anon_sym_LT_EQ_GT] = ACTIONS(5264), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5262), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5262), + [anon_sym_not_eq] = ACTIONS(5262), + [anon_sym_DASH_DASH] = ACTIONS(5264), + [anon_sym_PLUS_PLUS] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5264), + [anon_sym_DASH_GT] = ACTIONS(5264), + [anon_sym_L_DQUOTE] = ACTIONS(5264), + [anon_sym_u_DQUOTE] = ACTIONS(5264), + [anon_sym_U_DQUOTE] = ACTIONS(5264), + [anon_sym_u8_DQUOTE] = ACTIONS(5264), + [anon_sym_DQUOTE] = ACTIONS(5264), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5264), + [anon_sym_LR_DQUOTE] = ACTIONS(5264), + [anon_sym_uR_DQUOTE] = ACTIONS(5264), + [anon_sym_UR_DQUOTE] = ACTIONS(5264), + [anon_sym_u8R_DQUOTE] = ACTIONS(5264), + [sym_literal_suffix] = ACTIONS(5262), + }, + [2008] = { + [sym_identifier] = ACTIONS(5266), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5268), + [anon_sym_COMMA] = ACTIONS(5268), + [anon_sym_RPAREN] = ACTIONS(5268), + [aux_sym_preproc_if_token2] = ACTIONS(5268), + [aux_sym_preproc_else_token1] = ACTIONS(5268), + [aux_sym_preproc_elif_token1] = ACTIONS(5266), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5268), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5268), + [anon_sym_LPAREN2] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(5266), + [anon_sym_SLASH] = ACTIONS(5266), + [anon_sym_PERCENT] = ACTIONS(5266), + [anon_sym_PIPE_PIPE] = ACTIONS(5268), + [anon_sym_AMP_AMP] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(5266), + [anon_sym_EQ_EQ] = ACTIONS(5268), + [anon_sym_BANG_EQ] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5266), + [anon_sym_GT_EQ] = ACTIONS(5268), + [anon_sym_LT_EQ] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5266), + [anon_sym_LT_LT] = ACTIONS(5266), + [anon_sym_GT_GT] = ACTIONS(5266), + [anon_sym_SEMI] = ACTIONS(5268), + [anon_sym_RBRACE] = ACTIONS(5268), + [anon_sym_LBRACK] = ACTIONS(5268), + [anon_sym_RBRACK] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(5266), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(5268), + [anon_sym_STAR_EQ] = ACTIONS(5268), + [anon_sym_SLASH_EQ] = ACTIONS(5268), + [anon_sym_PERCENT_EQ] = ACTIONS(5268), + [anon_sym_PLUS_EQ] = ACTIONS(5268), + [anon_sym_DASH_EQ] = ACTIONS(5268), + [anon_sym_LT_LT_EQ] = ACTIONS(5268), + [anon_sym_GT_GT_EQ] = ACTIONS(5268), + [anon_sym_AMP_EQ] = ACTIONS(5268), + [anon_sym_CARET_EQ] = ACTIONS(5268), + [anon_sym_PIPE_EQ] = ACTIONS(5268), + [anon_sym_and_eq] = ACTIONS(5266), + [anon_sym_or_eq] = ACTIONS(5266), + [anon_sym_xor_eq] = ACTIONS(5266), + [anon_sym_LT_EQ_GT] = ACTIONS(5268), + [anon_sym_or] = ACTIONS(5266), + [anon_sym_and] = ACTIONS(5266), + [anon_sym_bitor] = ACTIONS(5266), + [anon_sym_xor] = ACTIONS(5266), + [anon_sym_bitand] = ACTIONS(5266), + [anon_sym_not_eq] = ACTIONS(5266), + [anon_sym_DASH_DASH] = ACTIONS(5268), + [anon_sym_PLUS_PLUS] = ACTIONS(5268), + [anon_sym_DOT] = ACTIONS(5266), + [anon_sym_DOT_STAR] = ACTIONS(5268), + [anon_sym_DASH_GT] = ACTIONS(5268), + [anon_sym_L_DQUOTE] = ACTIONS(5268), + [anon_sym_u_DQUOTE] = ACTIONS(5268), + [anon_sym_U_DQUOTE] = ACTIONS(5268), + [anon_sym_u8_DQUOTE] = ACTIONS(5268), + [anon_sym_DQUOTE] = ACTIONS(5268), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5268), + [anon_sym_LR_DQUOTE] = ACTIONS(5268), + [anon_sym_uR_DQUOTE] = ACTIONS(5268), + [anon_sym_UR_DQUOTE] = ACTIONS(5268), + [anon_sym_u8R_DQUOTE] = ACTIONS(5268), + [sym_literal_suffix] = ACTIONS(5266), + }, + [2009] = { + [sym_identifier] = ACTIONS(5270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), + [anon_sym_COMMA] = ACTIONS(5272), + [anon_sym_RPAREN] = ACTIONS(5272), + [aux_sym_preproc_if_token2] = ACTIONS(5272), + [aux_sym_preproc_else_token1] = ACTIONS(5272), + [aux_sym_preproc_elif_token1] = ACTIONS(5270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5272), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5272), + [anon_sym_LPAREN2] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5270), + [anon_sym_STAR] = ACTIONS(5270), + [anon_sym_SLASH] = ACTIONS(5270), + [anon_sym_PERCENT] = ACTIONS(5270), + [anon_sym_PIPE_PIPE] = ACTIONS(5272), + [anon_sym_AMP_AMP] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(5270), + [anon_sym_CARET] = ACTIONS(5270), + [anon_sym_AMP] = ACTIONS(5270), + [anon_sym_EQ_EQ] = ACTIONS(5272), + [anon_sym_BANG_EQ] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(5270), + [anon_sym_GT_EQ] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(5270), + [anon_sym_LT] = ACTIONS(5270), + [anon_sym_LT_LT] = ACTIONS(5270), + [anon_sym_GT_GT] = ACTIONS(5270), + [anon_sym_SEMI] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5272), + [anon_sym_RBRACK] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_COLON] = ACTIONS(5272), + [anon_sym_QMARK] = ACTIONS(5272), + [anon_sym_STAR_EQ] = ACTIONS(5272), + [anon_sym_SLASH_EQ] = ACTIONS(5272), + [anon_sym_PERCENT_EQ] = ACTIONS(5272), + [anon_sym_PLUS_EQ] = ACTIONS(5272), + [anon_sym_DASH_EQ] = ACTIONS(5272), + [anon_sym_LT_LT_EQ] = ACTIONS(5272), + [anon_sym_GT_GT_EQ] = ACTIONS(5272), + [anon_sym_AMP_EQ] = ACTIONS(5272), + [anon_sym_CARET_EQ] = ACTIONS(5272), + [anon_sym_PIPE_EQ] = ACTIONS(5272), + [anon_sym_and_eq] = ACTIONS(5270), + [anon_sym_or_eq] = ACTIONS(5270), + [anon_sym_xor_eq] = ACTIONS(5270), + [anon_sym_LT_EQ_GT] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(5270), + [anon_sym_and] = ACTIONS(5270), + [anon_sym_bitor] = ACTIONS(5270), + [anon_sym_xor] = ACTIONS(5270), + [anon_sym_bitand] = ACTIONS(5270), + [anon_sym_not_eq] = ACTIONS(5270), + [anon_sym_DASH_DASH] = ACTIONS(5272), + [anon_sym_PLUS_PLUS] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(5270), + [anon_sym_DOT_STAR] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(5272), + [anon_sym_L_DQUOTE] = ACTIONS(5272), + [anon_sym_u_DQUOTE] = ACTIONS(5272), + [anon_sym_U_DQUOTE] = ACTIONS(5272), + [anon_sym_u8_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE] = ACTIONS(5272), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5272), + [anon_sym_LR_DQUOTE] = ACTIONS(5272), + [anon_sym_uR_DQUOTE] = ACTIONS(5272), + [anon_sym_UR_DQUOTE] = ACTIONS(5272), + [anon_sym_u8R_DQUOTE] = ACTIONS(5272), + [sym_literal_suffix] = ACTIONS(5270), + }, + [2010] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(7850), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(7850), + [sym_variadic_parameter_declaration] = STATE(7850), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5274), + [anon_sym_RPAREN] = ACTIONS(5276), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(5077), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), @@ -343316,188 +328125,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2042), [anon_sym_template] = ACTIONS(1428), }, - [2245] = { - [sym_identifier] = ACTIONS(5771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5773), - [anon_sym_COMMA] = ACTIONS(5773), - [anon_sym_RPAREN] = ACTIONS(5773), - [anon_sym_LPAREN2] = ACTIONS(5773), - [anon_sym_DASH] = ACTIONS(5771), - [anon_sym_PLUS] = ACTIONS(5771), - [anon_sym_STAR] = ACTIONS(5773), - [anon_sym_SLASH] = ACTIONS(5771), - [anon_sym_PERCENT] = ACTIONS(5773), - [anon_sym_PIPE_PIPE] = ACTIONS(5773), - [anon_sym_AMP_AMP] = ACTIONS(5773), - [anon_sym_PIPE] = ACTIONS(5771), - [anon_sym_CARET] = ACTIONS(5773), - [anon_sym_AMP] = ACTIONS(5771), - [anon_sym_EQ_EQ] = ACTIONS(5773), - [anon_sym_BANG_EQ] = ACTIONS(5773), - [anon_sym_GT] = ACTIONS(5771), - [anon_sym_GT_EQ] = ACTIONS(5773), - [anon_sym_LT_EQ] = ACTIONS(5771), - [anon_sym_LT] = ACTIONS(5771), - [anon_sym_LT_LT] = ACTIONS(5773), - [anon_sym_GT_GT] = ACTIONS(5773), - [anon_sym_SEMI] = ACTIONS(5773), - [anon_sym___extension__] = ACTIONS(5771), - [anon_sym___attribute__] = ACTIONS(5771), - [anon_sym___based] = ACTIONS(5771), - [anon_sym_LBRACE] = ACTIONS(5773), - [anon_sym_RBRACE] = ACTIONS(5773), - [anon_sym_signed] = ACTIONS(5771), - [anon_sym_unsigned] = ACTIONS(5771), - [anon_sym_long] = ACTIONS(5771), - [anon_sym_short] = ACTIONS(5771), - [anon_sym_LBRACK] = ACTIONS(5773), - [anon_sym_RBRACK] = ACTIONS(5773), - [anon_sym_const] = ACTIONS(5771), - [anon_sym_constexpr] = ACTIONS(5771), - [anon_sym_volatile] = ACTIONS(5771), - [anon_sym_restrict] = ACTIONS(5771), - [anon_sym___restrict__] = ACTIONS(5771), - [anon_sym__Atomic] = ACTIONS(5771), - [anon_sym__Noreturn] = ACTIONS(5771), - [anon_sym_noreturn] = ACTIONS(5771), - [anon_sym_mutable] = ACTIONS(5771), - [anon_sym_constinit] = ACTIONS(5771), - [anon_sym_consteval] = ACTIONS(5771), - [sym_primitive_type] = ACTIONS(5771), - [anon_sym_COLON] = ACTIONS(5773), - [anon_sym_QMARK] = ACTIONS(5773), - [anon_sym_LT_EQ_GT] = ACTIONS(5773), - [anon_sym_or] = ACTIONS(5771), - [anon_sym_and] = ACTIONS(5771), - [anon_sym_bitor] = ACTIONS(5771), - [anon_sym_xor] = ACTIONS(5771), - [anon_sym_bitand] = ACTIONS(5771), - [anon_sym_not_eq] = ACTIONS(5771), - [anon_sym_DASH_DASH] = ACTIONS(5773), - [anon_sym_PLUS_PLUS] = ACTIONS(5773), - [anon_sym_DOT] = ACTIONS(5771), - [anon_sym_DOT_STAR] = ACTIONS(5773), - [anon_sym_DASH_GT] = ACTIONS(5773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5771), - [anon_sym_decltype] = ACTIONS(5771), - [anon_sym_final] = ACTIONS(5771), - [anon_sym_override] = ACTIONS(5771), - [anon_sym_requires] = ACTIONS(5771), + [2011] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4993), + [anon_sym_LPAREN2] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_PERCENT] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4993), + [anon_sym_AMP_AMP] = ACTIONS(4993), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym_AMP] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4993), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_LT_LT] = ACTIONS(4991), + [anon_sym_GT_GT] = ACTIONS(4991), + [anon_sym___extension__] = ACTIONS(4993), + [anon_sym___attribute__] = ACTIONS(4993), + [anon_sym_COLON_COLON] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4991), + [anon_sym_const] = ACTIONS(4991), + [anon_sym_constexpr] = ACTIONS(4993), + [anon_sym_volatile] = ACTIONS(4993), + [anon_sym_restrict] = ACTIONS(4993), + [anon_sym___restrict__] = ACTIONS(4993), + [anon_sym__Atomic] = ACTIONS(4993), + [anon_sym__Noreturn] = ACTIONS(4993), + [anon_sym_noreturn] = ACTIONS(4993), + [anon_sym_mutable] = ACTIONS(4993), + [anon_sym_constinit] = ACTIONS(4993), + [anon_sym_consteval] = ACTIONS(4993), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_STAR_EQ] = ACTIONS(4993), + [anon_sym_SLASH_EQ] = ACTIONS(4993), + [anon_sym_PERCENT_EQ] = ACTIONS(4993), + [anon_sym_PLUS_EQ] = ACTIONS(4993), + [anon_sym_DASH_EQ] = ACTIONS(4993), + [anon_sym_LT_LT_EQ] = ACTIONS(4993), + [anon_sym_GT_GT_EQ] = ACTIONS(4993), + [anon_sym_AMP_EQ] = ACTIONS(4993), + [anon_sym_CARET_EQ] = ACTIONS(4993), + [anon_sym_PIPE_EQ] = ACTIONS(4993), + [anon_sym_and_eq] = ACTIONS(4993), + [anon_sym_or_eq] = ACTIONS(4993), + [anon_sym_xor_eq] = ACTIONS(4993), + [anon_sym_LT_EQ_GT] = ACTIONS(4993), + [anon_sym_or] = ACTIONS(4991), + [anon_sym_and] = ACTIONS(4991), + [anon_sym_bitor] = ACTIONS(4993), + [anon_sym_xor] = ACTIONS(4991), + [anon_sym_bitand] = ACTIONS(4993), + [anon_sym_not_eq] = ACTIONS(4993), + [anon_sym_DASH_DASH] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4993), + [anon_sym_DOT] = ACTIONS(4991), + [anon_sym_DOT_STAR] = ACTIONS(4993), + [anon_sym_DASH_GT] = ACTIONS(4991), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4993), + [anon_sym_decltype] = ACTIONS(4993), + [anon_sym_final] = ACTIONS(4993), + [anon_sym_override] = ACTIONS(4993), + [anon_sym_DASH_GT_STAR] = ACTIONS(4993), }, - [2246] = { - [sym_identifier] = ACTIONS(5382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5384), - [anon_sym_COMMA] = ACTIONS(5384), - [anon_sym_RPAREN] = ACTIONS(5384), - [aux_sym_preproc_if_token2] = ACTIONS(5384), - [aux_sym_preproc_else_token1] = ACTIONS(5384), - [aux_sym_preproc_elif_token1] = ACTIONS(5382), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5384), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5384), - [anon_sym_LPAREN2] = ACTIONS(5384), - [anon_sym_DASH] = ACTIONS(5382), - [anon_sym_PLUS] = ACTIONS(5382), - [anon_sym_STAR] = ACTIONS(5382), - [anon_sym_SLASH] = ACTIONS(5382), - [anon_sym_PERCENT] = ACTIONS(5382), - [anon_sym_PIPE_PIPE] = ACTIONS(5384), - [anon_sym_AMP_AMP] = ACTIONS(5384), - [anon_sym_PIPE] = ACTIONS(5382), - [anon_sym_CARET] = ACTIONS(5382), - [anon_sym_AMP] = ACTIONS(5382), - [anon_sym_EQ_EQ] = ACTIONS(5384), - [anon_sym_BANG_EQ] = ACTIONS(5384), - [anon_sym_GT] = ACTIONS(5382), - [anon_sym_GT_EQ] = ACTIONS(5384), - [anon_sym_LT_EQ] = ACTIONS(5382), - [anon_sym_LT] = ACTIONS(5382), - [anon_sym_LT_LT] = ACTIONS(5382), - [anon_sym_GT_GT] = ACTIONS(5382), - [anon_sym_SEMI] = ACTIONS(5384), - [anon_sym___attribute__] = ACTIONS(5382), - [anon_sym_LBRACE] = ACTIONS(5384), - [anon_sym_RBRACE] = ACTIONS(5384), - [anon_sym_LBRACK] = ACTIONS(5384), - [anon_sym_RBRACK] = ACTIONS(5384), - [anon_sym_EQ] = ACTIONS(5382), - [anon_sym_COLON] = ACTIONS(5384), - [anon_sym_QMARK] = ACTIONS(5384), - [anon_sym_STAR_EQ] = ACTIONS(5384), - [anon_sym_SLASH_EQ] = ACTIONS(5384), - [anon_sym_PERCENT_EQ] = ACTIONS(5384), - [anon_sym_PLUS_EQ] = ACTIONS(5384), - [anon_sym_DASH_EQ] = ACTIONS(5384), - [anon_sym_LT_LT_EQ] = ACTIONS(5384), - [anon_sym_GT_GT_EQ] = ACTIONS(5384), - [anon_sym_AMP_EQ] = ACTIONS(5384), - [anon_sym_CARET_EQ] = ACTIONS(5384), - [anon_sym_PIPE_EQ] = ACTIONS(5384), - [anon_sym_and_eq] = ACTIONS(5382), - [anon_sym_or_eq] = ACTIONS(5382), - [anon_sym_xor_eq] = ACTIONS(5382), - [anon_sym_LT_EQ_GT] = ACTIONS(5384), - [anon_sym_or] = ACTIONS(5382), - [anon_sym_and] = ACTIONS(5382), - [anon_sym_bitor] = ACTIONS(5382), - [anon_sym_xor] = ACTIONS(5382), - [anon_sym_bitand] = ACTIONS(5382), - [anon_sym_not_eq] = ACTIONS(5382), - [anon_sym_DASH_DASH] = ACTIONS(5384), - [anon_sym_PLUS_PLUS] = ACTIONS(5384), - [anon_sym_DOT] = ACTIONS(5382), - [anon_sym_DOT_STAR] = ACTIONS(5384), - [anon_sym_DASH_GT] = ACTIONS(5384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5382), - [anon_sym_decltype] = ACTIONS(5382), - [anon_sym_final] = ACTIONS(5382), - [anon_sym_override] = ACTIONS(5382), + [2012] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2012), + [sym_identifier] = ACTIONS(5278), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5280), + [anon_sym_COMMA] = ACTIONS(5280), + [anon_sym_RPAREN] = ACTIONS(5280), + [aux_sym_preproc_if_token2] = ACTIONS(5280), + [aux_sym_preproc_else_token1] = ACTIONS(5280), + [aux_sym_preproc_elif_token1] = ACTIONS(5278), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5280), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5280), + [anon_sym_LPAREN2] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5278), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_SLASH] = ACTIONS(5278), + [anon_sym_PERCENT] = ACTIONS(5280), + [anon_sym_PIPE_PIPE] = ACTIONS(5280), + [anon_sym_AMP_AMP] = ACTIONS(5280), + [anon_sym_PIPE] = ACTIONS(5278), + [anon_sym_CARET] = ACTIONS(5280), + [anon_sym_AMP] = ACTIONS(5278), + [anon_sym_EQ_EQ] = ACTIONS(5280), + [anon_sym_BANG_EQ] = ACTIONS(5280), + [anon_sym_GT] = ACTIONS(5278), + [anon_sym_GT_EQ] = ACTIONS(5280), + [anon_sym_LT_EQ] = ACTIONS(5278), + [anon_sym_LT] = ACTIONS(5278), + [anon_sym_LT_LT] = ACTIONS(5280), + [anon_sym_GT_GT] = ACTIONS(5280), + [anon_sym_SEMI] = ACTIONS(5280), + [anon_sym___extension__] = ACTIONS(5278), + [anon_sym___attribute__] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5280), + [anon_sym_RBRACE] = ACTIONS(5280), + [anon_sym_signed] = ACTIONS(5282), + [anon_sym_unsigned] = ACTIONS(5282), + [anon_sym_long] = ACTIONS(5282), + [anon_sym_short] = ACTIONS(5282), + [anon_sym_LBRACK] = ACTIONS(5280), + [anon_sym_RBRACK] = ACTIONS(5280), + [anon_sym_const] = ACTIONS(5278), + [anon_sym_constexpr] = ACTIONS(5278), + [anon_sym_volatile] = ACTIONS(5278), + [anon_sym_restrict] = ACTIONS(5278), + [anon_sym___restrict__] = ACTIONS(5278), + [anon_sym__Atomic] = ACTIONS(5278), + [anon_sym__Noreturn] = ACTIONS(5278), + [anon_sym_noreturn] = ACTIONS(5278), + [anon_sym_mutable] = ACTIONS(5278), + [anon_sym_constinit] = ACTIONS(5278), + [anon_sym_consteval] = ACTIONS(5278), + [sym_primitive_type] = ACTIONS(5278), + [anon_sym_COLON] = ACTIONS(5280), + [anon_sym_QMARK] = ACTIONS(5280), + [anon_sym_LT_EQ_GT] = ACTIONS(5280), + [anon_sym_or] = ACTIONS(5278), + [anon_sym_and] = ACTIONS(5278), + [anon_sym_bitor] = ACTIONS(5278), + [anon_sym_xor] = ACTIONS(5278), + [anon_sym_bitand] = ACTIONS(5278), + [anon_sym_not_eq] = ACTIONS(5278), + [anon_sym_DASH_DASH] = ACTIONS(5280), + [anon_sym_PLUS_PLUS] = ACTIONS(5280), + [anon_sym_DOT] = ACTIONS(5278), + [anon_sym_DOT_STAR] = ACTIONS(5280), + [anon_sym_DASH_GT] = ACTIONS(5280), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5278), + [anon_sym_decltype] = ACTIONS(5278), + [anon_sym_final] = ACTIONS(5278), + [anon_sym_override] = ACTIONS(5278), + [anon_sym_requires] = ACTIONS(5278), }, - [2247] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5658), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), + [2013] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5030), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5028), + [anon_sym___extension__] = ACTIONS(5030), + [anon_sym___attribute__] = ACTIONS(5030), + [anon_sym_COLON_COLON] = ACTIONS(5030), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5030), + [anon_sym_volatile] = ACTIONS(5030), + [anon_sym_restrict] = ACTIONS(5030), + [anon_sym___restrict__] = ACTIONS(5030), + [anon_sym__Atomic] = ACTIONS(5030), + [anon_sym__Noreturn] = ACTIONS(5030), + [anon_sym_noreturn] = ACTIONS(5030), + [anon_sym_mutable] = ACTIONS(5030), + [anon_sym_constinit] = ACTIONS(5030), + [anon_sym_consteval] = ACTIONS(5030), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_STAR_EQ] = ACTIONS(5030), + [anon_sym_SLASH_EQ] = ACTIONS(5030), + [anon_sym_PERCENT_EQ] = ACTIONS(5030), + [anon_sym_PLUS_EQ] = ACTIONS(5030), + [anon_sym_DASH_EQ] = ACTIONS(5030), + [anon_sym_LT_LT_EQ] = ACTIONS(5030), + [anon_sym_GT_GT_EQ] = ACTIONS(5030), + [anon_sym_AMP_EQ] = ACTIONS(5030), + [anon_sym_CARET_EQ] = ACTIONS(5030), + [anon_sym_PIPE_EQ] = ACTIONS(5030), + [anon_sym_and_eq] = ACTIONS(5030), + [anon_sym_or_eq] = ACTIONS(5030), + [anon_sym_xor_eq] = ACTIONS(5030), + [anon_sym_LT_EQ_GT] = ACTIONS(5030), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_bitor] = ACTIONS(5030), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_bitand] = ACTIONS(5030), + [anon_sym_not_eq] = ACTIONS(5030), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_DOT_STAR] = ACTIONS(5030), + [anon_sym_DASH_GT] = ACTIONS(5028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5030), + [anon_sym_decltype] = ACTIONS(5030), + [anon_sym_final] = ACTIONS(5030), + [anon_sym_override] = ACTIONS(5030), + [anon_sym_DASH_GT_STAR] = ACTIONS(5030), + }, + [2014] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(7931), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(7931), + [sym_variadic_parameter_declaration] = STATE(7931), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5285), + [anon_sym_RPAREN] = ACTIONS(5287), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(5077), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), @@ -343523,50 +328421,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2042), [anon_sym_template] = ACTIONS(1428), }, - [2248] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5666), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), + [2015] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LPAREN2] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_PERCENT] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5005), + [anon_sym_AMP_AMP] = ACTIONS(5005), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym_AMP] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5005), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_LT_LT] = ACTIONS(5003), + [anon_sym_GT_GT] = ACTIONS(5003), + [anon_sym___extension__] = ACTIONS(5005), + [anon_sym___attribute__] = ACTIONS(5005), + [anon_sym_COLON_COLON] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5003), + [anon_sym_const] = ACTIONS(5003), + [anon_sym_constexpr] = ACTIONS(5005), + [anon_sym_volatile] = ACTIONS(5005), + [anon_sym_restrict] = ACTIONS(5005), + [anon_sym___restrict__] = ACTIONS(5005), + [anon_sym__Atomic] = ACTIONS(5005), + [anon_sym__Noreturn] = ACTIONS(5005), + [anon_sym_noreturn] = ACTIONS(5005), + [anon_sym_mutable] = ACTIONS(5005), + [anon_sym_constinit] = ACTIONS(5005), + [anon_sym_consteval] = ACTIONS(5005), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_QMARK] = ACTIONS(5005), + [anon_sym_STAR_EQ] = ACTIONS(5005), + [anon_sym_SLASH_EQ] = ACTIONS(5005), + [anon_sym_PERCENT_EQ] = ACTIONS(5005), + [anon_sym_PLUS_EQ] = ACTIONS(5005), + [anon_sym_DASH_EQ] = ACTIONS(5005), + [anon_sym_LT_LT_EQ] = ACTIONS(5005), + [anon_sym_GT_GT_EQ] = ACTIONS(5005), + [anon_sym_AMP_EQ] = ACTIONS(5005), + [anon_sym_CARET_EQ] = ACTIONS(5005), + [anon_sym_PIPE_EQ] = ACTIONS(5005), + [anon_sym_and_eq] = ACTIONS(5005), + [anon_sym_or_eq] = ACTIONS(5005), + [anon_sym_xor_eq] = ACTIONS(5005), + [anon_sym_LT_EQ_GT] = ACTIONS(5005), + [anon_sym_or] = ACTIONS(5003), + [anon_sym_and] = ACTIONS(5003), + [anon_sym_bitor] = ACTIONS(5005), + [anon_sym_xor] = ACTIONS(5003), + [anon_sym_bitand] = ACTIONS(5005), + [anon_sym_not_eq] = ACTIONS(5005), + [anon_sym_DASH_DASH] = ACTIONS(5005), + [anon_sym_PLUS_PLUS] = ACTIONS(5005), + [anon_sym_DOT] = ACTIONS(5003), + [anon_sym_DOT_STAR] = ACTIONS(5005), + [anon_sym_DASH_GT] = ACTIONS(5003), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5005), + [anon_sym_decltype] = ACTIONS(5005), + [anon_sym_final] = ACTIONS(5005), + [anon_sym_override] = ACTIONS(5005), + [anon_sym_DASH_GT_STAR] = ACTIONS(5005), + }, + [2016] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(7678), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(7678), + [sym_variadic_parameter_declaration] = STATE(7678), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5289), + [anon_sym_RPAREN] = ACTIONS(5291), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(5077), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), @@ -343592,257 +328569,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2042), [anon_sym_template] = ACTIONS(1428), }, - [2249] = { - [sym_identifier] = ACTIONS(5775), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5777), - [anon_sym_COMMA] = ACTIONS(5777), - [anon_sym_RPAREN] = ACTIONS(5777), - [anon_sym_LPAREN2] = ACTIONS(5777), - [anon_sym_DASH] = ACTIONS(5775), - [anon_sym_PLUS] = ACTIONS(5775), - [anon_sym_STAR] = ACTIONS(5777), - [anon_sym_SLASH] = ACTIONS(5775), - [anon_sym_PERCENT] = ACTIONS(5777), - [anon_sym_PIPE_PIPE] = ACTIONS(5777), - [anon_sym_AMP_AMP] = ACTIONS(5777), - [anon_sym_PIPE] = ACTIONS(5775), - [anon_sym_CARET] = ACTIONS(5777), - [anon_sym_AMP] = ACTIONS(5775), - [anon_sym_EQ_EQ] = ACTIONS(5777), - [anon_sym_BANG_EQ] = ACTIONS(5777), - [anon_sym_GT] = ACTIONS(5775), - [anon_sym_GT_EQ] = ACTIONS(5777), - [anon_sym_LT_EQ] = ACTIONS(5775), - [anon_sym_LT] = ACTIONS(5775), - [anon_sym_LT_LT] = ACTIONS(5777), - [anon_sym_GT_GT] = ACTIONS(5777), - [anon_sym_SEMI] = ACTIONS(5777), - [anon_sym___extension__] = ACTIONS(5775), - [anon_sym___attribute__] = ACTIONS(5775), - [anon_sym___based] = ACTIONS(5775), - [anon_sym_LBRACE] = ACTIONS(5777), - [anon_sym_RBRACE] = ACTIONS(5777), - [anon_sym_signed] = ACTIONS(5775), - [anon_sym_unsigned] = ACTIONS(5775), - [anon_sym_long] = ACTIONS(5775), - [anon_sym_short] = ACTIONS(5775), - [anon_sym_LBRACK] = ACTIONS(5777), - [anon_sym_RBRACK] = ACTIONS(5777), - [anon_sym_const] = ACTIONS(5775), - [anon_sym_constexpr] = ACTIONS(5775), - [anon_sym_volatile] = ACTIONS(5775), - [anon_sym_restrict] = ACTIONS(5775), - [anon_sym___restrict__] = ACTIONS(5775), - [anon_sym__Atomic] = ACTIONS(5775), - [anon_sym__Noreturn] = ACTIONS(5775), - [anon_sym_noreturn] = ACTIONS(5775), - [anon_sym_mutable] = ACTIONS(5775), - [anon_sym_constinit] = ACTIONS(5775), - [anon_sym_consteval] = ACTIONS(5775), - [sym_primitive_type] = ACTIONS(5775), - [anon_sym_COLON] = ACTIONS(5777), - [anon_sym_QMARK] = ACTIONS(5777), - [anon_sym_LT_EQ_GT] = ACTIONS(5777), - [anon_sym_or] = ACTIONS(5775), - [anon_sym_and] = ACTIONS(5775), - [anon_sym_bitor] = ACTIONS(5775), - [anon_sym_xor] = ACTIONS(5775), - [anon_sym_bitand] = ACTIONS(5775), - [anon_sym_not_eq] = ACTIONS(5775), - [anon_sym_DASH_DASH] = ACTIONS(5777), - [anon_sym_PLUS_PLUS] = ACTIONS(5777), - [anon_sym_DOT] = ACTIONS(5775), - [anon_sym_DOT_STAR] = ACTIONS(5777), - [anon_sym_DASH_GT] = ACTIONS(5777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5775), - [anon_sym_decltype] = ACTIONS(5775), - [anon_sym_final] = ACTIONS(5775), - [anon_sym_override] = ACTIONS(5775), - [anon_sym_requires] = ACTIONS(5775), - }, - [2250] = { - [sym_identifier] = ACTIONS(5779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5781), - [anon_sym_COMMA] = ACTIONS(5781), - [anon_sym_RPAREN] = ACTIONS(5781), - [anon_sym_LPAREN2] = ACTIONS(5781), - [anon_sym_DASH] = ACTIONS(5779), - [anon_sym_PLUS] = ACTIONS(5779), - [anon_sym_STAR] = ACTIONS(5781), - [anon_sym_SLASH] = ACTIONS(5779), - [anon_sym_PERCENT] = ACTIONS(5781), - [anon_sym_PIPE_PIPE] = ACTIONS(5781), - [anon_sym_AMP_AMP] = ACTIONS(5781), - [anon_sym_PIPE] = ACTIONS(5779), - [anon_sym_CARET] = ACTIONS(5781), - [anon_sym_AMP] = ACTIONS(5779), - [anon_sym_EQ_EQ] = ACTIONS(5781), - [anon_sym_BANG_EQ] = ACTIONS(5781), - [anon_sym_GT] = ACTIONS(5779), - [anon_sym_GT_EQ] = ACTIONS(5781), - [anon_sym_LT_EQ] = ACTIONS(5779), - [anon_sym_LT] = ACTIONS(5779), - [anon_sym_LT_LT] = ACTIONS(5781), - [anon_sym_GT_GT] = ACTIONS(5781), - [anon_sym_SEMI] = ACTIONS(5781), - [anon_sym___extension__] = ACTIONS(5779), - [anon_sym___attribute__] = ACTIONS(5779), - [anon_sym___based] = ACTIONS(5779), - [anon_sym_LBRACE] = ACTIONS(5781), - [anon_sym_RBRACE] = ACTIONS(5781), - [anon_sym_signed] = ACTIONS(5779), - [anon_sym_unsigned] = ACTIONS(5779), - [anon_sym_long] = ACTIONS(5779), - [anon_sym_short] = ACTIONS(5779), - [anon_sym_LBRACK] = ACTIONS(5781), - [anon_sym_RBRACK] = ACTIONS(5781), - [anon_sym_const] = ACTIONS(5779), - [anon_sym_constexpr] = ACTIONS(5779), - [anon_sym_volatile] = ACTIONS(5779), - [anon_sym_restrict] = ACTIONS(5779), - [anon_sym___restrict__] = ACTIONS(5779), - [anon_sym__Atomic] = ACTIONS(5779), - [anon_sym__Noreturn] = ACTIONS(5779), - [anon_sym_noreturn] = ACTIONS(5779), - [anon_sym_mutable] = ACTIONS(5779), - [anon_sym_constinit] = ACTIONS(5779), - [anon_sym_consteval] = ACTIONS(5779), - [sym_primitive_type] = ACTIONS(5779), - [anon_sym_COLON] = ACTIONS(5781), - [anon_sym_QMARK] = ACTIONS(5781), - [anon_sym_LT_EQ_GT] = ACTIONS(5781), - [anon_sym_or] = ACTIONS(5779), - [anon_sym_and] = ACTIONS(5779), - [anon_sym_bitor] = ACTIONS(5779), - [anon_sym_xor] = ACTIONS(5779), - [anon_sym_bitand] = ACTIONS(5779), - [anon_sym_not_eq] = ACTIONS(5779), - [anon_sym_DASH_DASH] = ACTIONS(5781), - [anon_sym_PLUS_PLUS] = ACTIONS(5781), - [anon_sym_DOT] = ACTIONS(5779), - [anon_sym_DOT_STAR] = ACTIONS(5781), - [anon_sym_DASH_GT] = ACTIONS(5781), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5779), - [anon_sym_decltype] = ACTIONS(5779), - [anon_sym_final] = ACTIONS(5779), - [anon_sym_override] = ACTIONS(5779), - [anon_sym_requires] = ACTIONS(5779), - }, - [2251] = { - [sym_catch_clause] = STATE(2251), - [aux_sym_constructor_try_statement_repeat1] = STATE(2251), - [sym_identifier] = ACTIONS(2813), - [aux_sym_preproc_def_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token1] = ACTIONS(2813), - [aux_sym_preproc_if_token2] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), - [sym_preproc_directive] = ACTIONS(2813), - [anon_sym_LPAREN2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2813), - [anon_sym_typedef] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym___attribute__] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), - [anon_sym___declspec] = ACTIONS(2813), - [anon_sym___based] = ACTIONS(2813), - [anon_sym_signed] = ACTIONS(2813), - [anon_sym_unsigned] = ACTIONS(2813), - [anon_sym_long] = ACTIONS(2813), - [anon_sym_short] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_register] = ACTIONS(2813), - [anon_sym_inline] = ACTIONS(2813), - [anon_sym___inline] = ACTIONS(2813), - [anon_sym___inline__] = ACTIONS(2813), - [anon_sym___forceinline] = ACTIONS(2813), - [anon_sym_thread_local] = ACTIONS(2813), - [anon_sym___thread] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_constexpr] = ACTIONS(2813), - [anon_sym_volatile] = ACTIONS(2813), - [anon_sym_restrict] = ACTIONS(2813), - [anon_sym___restrict__] = ACTIONS(2813), - [anon_sym__Atomic] = ACTIONS(2813), - [anon_sym__Noreturn] = ACTIONS(2813), - [anon_sym_noreturn] = ACTIONS(2813), - [anon_sym_mutable] = ACTIONS(2813), - [anon_sym_constinit] = ACTIONS(2813), - [anon_sym_consteval] = ACTIONS(2813), - [sym_primitive_type] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2813), - [anon_sym_decltype] = ACTIONS(2813), - [anon_sym_virtual] = ACTIONS(2813), - [anon_sym_alignas] = ACTIONS(2813), - [anon_sym_explicit] = ACTIONS(2813), - [anon_sym_typename] = ACTIONS(2813), - [anon_sym_template] = ACTIONS(2813), - [anon_sym_operator] = ACTIONS(2813), - [anon_sym_friend] = ACTIONS(2813), - [anon_sym_public] = ACTIONS(2813), - [anon_sym_private] = ACTIONS(2813), - [anon_sym_protected] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_static_assert] = ACTIONS(2813), - [anon_sym_catch] = ACTIONS(5783), + [2017] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_LPAREN2] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_PERCENT] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(5001), + [anon_sym_AMP_AMP] = ACTIONS(5001), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym_AMP] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(5001), + [anon_sym_BANG_EQ] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(5001), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_LT_LT] = ACTIONS(4999), + [anon_sym_GT_GT] = ACTIONS(4999), + [anon_sym___extension__] = ACTIONS(5001), + [anon_sym___attribute__] = ACTIONS(5001), + [anon_sym_COLON_COLON] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(4999), + [anon_sym_const] = ACTIONS(4999), + [anon_sym_constexpr] = ACTIONS(5001), + [anon_sym_volatile] = ACTIONS(5001), + [anon_sym_restrict] = ACTIONS(5001), + [anon_sym___restrict__] = ACTIONS(5001), + [anon_sym__Atomic] = ACTIONS(5001), + [anon_sym__Noreturn] = ACTIONS(5001), + [anon_sym_noreturn] = ACTIONS(5001), + [anon_sym_mutable] = ACTIONS(5001), + [anon_sym_constinit] = ACTIONS(5001), + [anon_sym_consteval] = ACTIONS(5001), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_STAR_EQ] = ACTIONS(5001), + [anon_sym_SLASH_EQ] = ACTIONS(5001), + [anon_sym_PERCENT_EQ] = ACTIONS(5001), + [anon_sym_PLUS_EQ] = ACTIONS(5001), + [anon_sym_DASH_EQ] = ACTIONS(5001), + [anon_sym_LT_LT_EQ] = ACTIONS(5001), + [anon_sym_GT_GT_EQ] = ACTIONS(5001), + [anon_sym_AMP_EQ] = ACTIONS(5001), + [anon_sym_CARET_EQ] = ACTIONS(5001), + [anon_sym_PIPE_EQ] = ACTIONS(5001), + [anon_sym_and_eq] = ACTIONS(5001), + [anon_sym_or_eq] = ACTIONS(5001), + [anon_sym_xor_eq] = ACTIONS(5001), + [anon_sym_LT_EQ_GT] = ACTIONS(5001), + [anon_sym_or] = ACTIONS(4999), + [anon_sym_and] = ACTIONS(4999), + [anon_sym_bitor] = ACTIONS(5001), + [anon_sym_xor] = ACTIONS(4999), + [anon_sym_bitand] = ACTIONS(5001), + [anon_sym_not_eq] = ACTIONS(5001), + [anon_sym_DASH_DASH] = ACTIONS(5001), + [anon_sym_PLUS_PLUS] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(4999), + [anon_sym_DOT_STAR] = ACTIONS(5001), + [anon_sym_DASH_GT] = ACTIONS(4999), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5001), + [anon_sym_decltype] = ACTIONS(5001), + [anon_sym_final] = ACTIONS(5001), + [anon_sym_override] = ACTIONS(5001), + [anon_sym_DASH_GT_STAR] = ACTIONS(5001), }, - [2252] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5671), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), + [2018] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(7970), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(7970), + [sym_variadic_parameter_declaration] = STATE(7970), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2056), + [anon_sym_RPAREN] = ACTIONS(4403), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(5077), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), @@ -343868,119 +328717,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2042), [anon_sym_template] = ACTIONS(1428), }, - [2253] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1982), - [sym_identifier] = ACTIONS(5246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5786), - [anon_sym_COMMA] = ACTIONS(5786), - [anon_sym_RPAREN] = ACTIONS(5786), - [anon_sym_LPAREN2] = ACTIONS(5786), - [anon_sym_DASH] = ACTIONS(5789), - [anon_sym_PLUS] = ACTIONS(5789), - [anon_sym_STAR] = ACTIONS(5786), - [anon_sym_SLASH] = ACTIONS(5789), - [anon_sym_PERCENT] = ACTIONS(5786), - [anon_sym_PIPE_PIPE] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(5786), - [anon_sym_PIPE] = ACTIONS(5789), - [anon_sym_CARET] = ACTIONS(5786), - [anon_sym_AMP] = ACTIONS(5789), - [anon_sym_EQ_EQ] = ACTIONS(5786), - [anon_sym_BANG_EQ] = ACTIONS(5786), - [anon_sym_GT] = ACTIONS(5789), - [anon_sym_GT_EQ] = ACTIONS(5786), - [anon_sym_LT_EQ] = ACTIONS(5789), - [anon_sym_LT] = ACTIONS(5789), - [anon_sym_LT_LT] = ACTIONS(5786), - [anon_sym_GT_GT] = ACTIONS(5786), - [anon_sym_SEMI] = ACTIONS(5786), - [anon_sym___extension__] = ACTIONS(5789), - [anon_sym___attribute__] = ACTIONS(5789), - [anon_sym_LBRACE] = ACTIONS(5786), - [anon_sym_RBRACE] = ACTIONS(5786), - [anon_sym_signed] = ACTIONS(5250), - [anon_sym_unsigned] = ACTIONS(5250), - [anon_sym_long] = ACTIONS(5250), - [anon_sym_short] = ACTIONS(5250), - [anon_sym_LBRACK] = ACTIONS(5786), - [anon_sym_RBRACK] = ACTIONS(5786), - [anon_sym_const] = ACTIONS(5789), - [anon_sym_constexpr] = ACTIONS(5789), - [anon_sym_volatile] = ACTIONS(5789), - [anon_sym_restrict] = ACTIONS(5789), - [anon_sym___restrict__] = ACTIONS(5789), - [anon_sym__Atomic] = ACTIONS(5789), - [anon_sym__Noreturn] = ACTIONS(5789), - [anon_sym_noreturn] = ACTIONS(5789), - [anon_sym_mutable] = ACTIONS(5789), - [anon_sym_constinit] = ACTIONS(5789), - [anon_sym_consteval] = ACTIONS(5789), - [sym_primitive_type] = ACTIONS(5246), - [anon_sym_COLON] = ACTIONS(5786), - [anon_sym_QMARK] = ACTIONS(5786), - [anon_sym_LT_EQ_GT] = ACTIONS(5786), - [anon_sym_or] = ACTIONS(5789), - [anon_sym_and] = ACTIONS(5789), - [anon_sym_bitor] = ACTIONS(5789), - [anon_sym_xor] = ACTIONS(5789), - [anon_sym_bitand] = ACTIONS(5789), - [anon_sym_not_eq] = ACTIONS(5789), - [anon_sym_DASH_DASH] = ACTIONS(5786), - [anon_sym_PLUS_PLUS] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(5789), - [anon_sym_DOT_STAR] = ACTIONS(5786), - [anon_sym_DASH_GT] = ACTIONS(5786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5789), - [anon_sym_decltype] = ACTIONS(5789), - [anon_sym_final] = ACTIONS(5789), - [anon_sym_override] = ACTIONS(5789), - [anon_sym_requires] = ACTIONS(5789), + [2019] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5024), + [anon_sym___extension__] = ACTIONS(5026), + [anon_sym___attribute__] = ACTIONS(5026), + [anon_sym_COLON_COLON] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_const] = ACTIONS(5024), + [anon_sym_constexpr] = ACTIONS(5026), + [anon_sym_volatile] = ACTIONS(5026), + [anon_sym_restrict] = ACTIONS(5026), + [anon_sym___restrict__] = ACTIONS(5026), + [anon_sym__Atomic] = ACTIONS(5026), + [anon_sym__Noreturn] = ACTIONS(5026), + [anon_sym_noreturn] = ACTIONS(5026), + [anon_sym_mutable] = ACTIONS(5026), + [anon_sym_constinit] = ACTIONS(5026), + [anon_sym_consteval] = ACTIONS(5026), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_LT_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_GT_EQ] = ACTIONS(5026), + [anon_sym_AMP_EQ] = ACTIONS(5026), + [anon_sym_CARET_EQ] = ACTIONS(5026), + [anon_sym_PIPE_EQ] = ACTIONS(5026), + [anon_sym_and_eq] = ACTIONS(5026), + [anon_sym_or_eq] = ACTIONS(5026), + [anon_sym_xor_eq] = ACTIONS(5026), + [anon_sym_LT_EQ_GT] = ACTIONS(5026), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_bitor] = ACTIONS(5026), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_bitand] = ACTIONS(5026), + [anon_sym_not_eq] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_DOT_STAR] = ACTIONS(5026), + [anon_sym_DASH_GT] = ACTIONS(5024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5026), + [anon_sym_decltype] = ACTIONS(5026), + [anon_sym_final] = ACTIONS(5026), + [anon_sym_override] = ACTIONS(5026), + [anon_sym_DASH_GT_STAR] = ACTIONS(5026), }, - [2254] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5754), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), + [2020] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(7856), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(7856), + [sym_variadic_parameter_declaration] = STATE(7856), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5293), + [anon_sym_RPAREN] = ACTIONS(5295), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(5077), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), @@ -344006,188 +328865,567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2042), [anon_sym_template] = ACTIONS(1428), }, - [2255] = { - [sym_identifier] = ACTIONS(5382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5384), - [anon_sym_COMMA] = ACTIONS(5384), - [anon_sym_RPAREN] = ACTIONS(5384), - [anon_sym_LPAREN2] = ACTIONS(5384), - [anon_sym_DASH] = ACTIONS(5382), - [anon_sym_PLUS] = ACTIONS(5382), - [anon_sym_STAR] = ACTIONS(5384), - [anon_sym_SLASH] = ACTIONS(5382), - [anon_sym_PERCENT] = ACTIONS(5384), - [anon_sym_PIPE_PIPE] = ACTIONS(5384), - [anon_sym_AMP_AMP] = ACTIONS(5384), - [anon_sym_PIPE] = ACTIONS(5382), - [anon_sym_CARET] = ACTIONS(5384), - [anon_sym_AMP] = ACTIONS(5382), - [anon_sym_EQ_EQ] = ACTIONS(5384), - [anon_sym_BANG_EQ] = ACTIONS(5384), - [anon_sym_GT] = ACTIONS(5382), - [anon_sym_GT_EQ] = ACTIONS(5384), - [anon_sym_LT_EQ] = ACTIONS(5382), - [anon_sym_LT] = ACTIONS(5382), - [anon_sym_LT_LT] = ACTIONS(5384), - [anon_sym_GT_GT] = ACTIONS(5384), - [anon_sym_SEMI] = ACTIONS(5384), - [anon_sym___extension__] = ACTIONS(5382), - [anon_sym___attribute__] = ACTIONS(5382), - [anon_sym___based] = ACTIONS(5382), - [anon_sym_LBRACE] = ACTIONS(5384), - [anon_sym_RBRACE] = ACTIONS(5384), - [anon_sym_signed] = ACTIONS(5382), - [anon_sym_unsigned] = ACTIONS(5382), - [anon_sym_long] = ACTIONS(5382), - [anon_sym_short] = ACTIONS(5382), - [anon_sym_LBRACK] = ACTIONS(5384), - [anon_sym_RBRACK] = ACTIONS(5384), - [anon_sym_const] = ACTIONS(5382), - [anon_sym_constexpr] = ACTIONS(5382), - [anon_sym_volatile] = ACTIONS(5382), - [anon_sym_restrict] = ACTIONS(5382), - [anon_sym___restrict__] = ACTIONS(5382), - [anon_sym__Atomic] = ACTIONS(5382), - [anon_sym__Noreturn] = ACTIONS(5382), - [anon_sym_noreturn] = ACTIONS(5382), - [anon_sym_mutable] = ACTIONS(5382), - [anon_sym_constinit] = ACTIONS(5382), - [anon_sym_consteval] = ACTIONS(5382), - [sym_primitive_type] = ACTIONS(5382), - [anon_sym_COLON] = ACTIONS(5384), - [anon_sym_QMARK] = ACTIONS(5384), - [anon_sym_LT_EQ_GT] = ACTIONS(5384), - [anon_sym_or] = ACTIONS(5382), - [anon_sym_and] = ACTIONS(5382), - [anon_sym_bitor] = ACTIONS(5382), - [anon_sym_xor] = ACTIONS(5382), - [anon_sym_bitand] = ACTIONS(5382), - [anon_sym_not_eq] = ACTIONS(5382), - [anon_sym_DASH_DASH] = ACTIONS(5384), - [anon_sym_PLUS_PLUS] = ACTIONS(5384), - [anon_sym_DOT] = ACTIONS(5382), - [anon_sym_DOT_STAR] = ACTIONS(5384), - [anon_sym_DASH_GT] = ACTIONS(5384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5382), - [anon_sym_decltype] = ACTIONS(5382), - [anon_sym_final] = ACTIONS(5382), - [anon_sym_override] = ACTIONS(5382), - [anon_sym_requires] = ACTIONS(5382), + [2021] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_RPAREN] = ACTIONS(5037), + [anon_sym_LPAREN2] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5035), + [anon_sym_CARET] = ACTIONS(5035), + [anon_sym_AMP] = ACTIONS(5035), + [anon_sym_EQ_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5035), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_LT_LT] = ACTIONS(5035), + [anon_sym_GT_GT] = ACTIONS(5035), + [anon_sym___extension__] = ACTIONS(5037), + [anon_sym___attribute__] = ACTIONS(5037), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_const] = ACTIONS(5035), + [anon_sym_constexpr] = ACTIONS(5037), + [anon_sym_volatile] = ACTIONS(5037), + [anon_sym_restrict] = ACTIONS(5037), + [anon_sym___restrict__] = ACTIONS(5037), + [anon_sym__Atomic] = ACTIONS(5037), + [anon_sym__Noreturn] = ACTIONS(5037), + [anon_sym_noreturn] = ACTIONS(5037), + [anon_sym_mutable] = ACTIONS(5037), + [anon_sym_constinit] = ACTIONS(5037), + [anon_sym_consteval] = ACTIONS(5037), + [anon_sym_COLON] = ACTIONS(5035), + [anon_sym_QMARK] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_LT_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_GT_EQ] = ACTIONS(5037), + [anon_sym_AMP_EQ] = ACTIONS(5037), + [anon_sym_CARET_EQ] = ACTIONS(5037), + [anon_sym_PIPE_EQ] = ACTIONS(5037), + [anon_sym_and_eq] = ACTIONS(5037), + [anon_sym_or_eq] = ACTIONS(5037), + [anon_sym_xor_eq] = ACTIONS(5037), + [anon_sym_LT_EQ_GT] = ACTIONS(5037), + [anon_sym_or] = ACTIONS(5035), + [anon_sym_and] = ACTIONS(5035), + [anon_sym_bitor] = ACTIONS(5037), + [anon_sym_xor] = ACTIONS(5035), + [anon_sym_bitand] = ACTIONS(5037), + [anon_sym_not_eq] = ACTIONS(5037), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_DOT_STAR] = ACTIONS(5037), + [anon_sym_DASH_GT] = ACTIONS(5035), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5037), + [anon_sym_decltype] = ACTIONS(5037), + [anon_sym_final] = ACTIONS(5037), + [anon_sym_override] = ACTIONS(5037), + [anon_sym_DASH_GT_STAR] = ACTIONS(5037), }, - [2256] = { - [sym_catch_clause] = STATE(2251), - [aux_sym_constructor_try_statement_repeat1] = STATE(2251), - [sym_identifier] = ACTIONS(2820), - [aux_sym_preproc_def_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token1] = ACTIONS(2820), - [aux_sym_preproc_if_token2] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2820), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2820), - [sym_preproc_directive] = ACTIONS(2820), - [anon_sym_LPAREN2] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym___extension__] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym___attribute__] = ACTIONS(2820), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2822), - [anon_sym___declspec] = ACTIONS(2820), - [anon_sym___based] = ACTIONS(2820), - [anon_sym_signed] = ACTIONS(2820), - [anon_sym_unsigned] = ACTIONS(2820), - [anon_sym_long] = ACTIONS(2820), - [anon_sym_short] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_register] = ACTIONS(2820), - [anon_sym_inline] = ACTIONS(2820), - [anon_sym___inline] = ACTIONS(2820), - [anon_sym___inline__] = ACTIONS(2820), - [anon_sym___forceinline] = ACTIONS(2820), - [anon_sym_thread_local] = ACTIONS(2820), - [anon_sym___thread] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_constexpr] = ACTIONS(2820), - [anon_sym_volatile] = ACTIONS(2820), - [anon_sym_restrict] = ACTIONS(2820), - [anon_sym___restrict__] = ACTIONS(2820), - [anon_sym__Atomic] = ACTIONS(2820), - [anon_sym__Noreturn] = ACTIONS(2820), - [anon_sym_noreturn] = ACTIONS(2820), - [anon_sym_mutable] = ACTIONS(2820), - [anon_sym_constinit] = ACTIONS(2820), - [anon_sym_consteval] = ACTIONS(2820), - [sym_primitive_type] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2820), - [anon_sym_decltype] = ACTIONS(2820), - [anon_sym_virtual] = ACTIONS(2820), - [anon_sym_alignas] = ACTIONS(2820), - [anon_sym_explicit] = ACTIONS(2820), - [anon_sym_typename] = ACTIONS(2820), - [anon_sym_template] = ACTIONS(2820), - [anon_sym_operator] = ACTIONS(2820), - [anon_sym_friend] = ACTIONS(2820), - [anon_sym_public] = ACTIONS(2820), - [anon_sym_private] = ACTIONS(2820), - [anon_sym_protected] = ACTIONS(2820), - [anon_sym_using] = ACTIONS(2820), - [anon_sym_static_assert] = ACTIONS(2820), - [anon_sym_catch] = ACTIONS(5602), + [2022] = { + [sym_identifier] = ACTIONS(5297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5299), + [anon_sym_COMMA] = ACTIONS(5299), + [anon_sym_RPAREN] = ACTIONS(5299), + [aux_sym_preproc_if_token2] = ACTIONS(5299), + [aux_sym_preproc_else_token1] = ACTIONS(5299), + [aux_sym_preproc_elif_token1] = ACTIONS(5297), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5299), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5299), + [anon_sym_LPAREN2] = ACTIONS(5299), + [anon_sym_DASH] = ACTIONS(5297), + [anon_sym_PLUS] = ACTIONS(5297), + [anon_sym_STAR] = ACTIONS(5297), + [anon_sym_SLASH] = ACTIONS(5297), + [anon_sym_PERCENT] = ACTIONS(5297), + [anon_sym_PIPE_PIPE] = ACTIONS(5299), + [anon_sym_AMP_AMP] = ACTIONS(5299), + [anon_sym_PIPE] = ACTIONS(5297), + [anon_sym_CARET] = ACTIONS(5297), + [anon_sym_AMP] = ACTIONS(5297), + [anon_sym_EQ_EQ] = ACTIONS(5299), + [anon_sym_BANG_EQ] = ACTIONS(5299), + [anon_sym_GT] = ACTIONS(5297), + [anon_sym_GT_EQ] = ACTIONS(5299), + [anon_sym_LT_EQ] = ACTIONS(5297), + [anon_sym_LT] = ACTIONS(5297), + [anon_sym_LT_LT] = ACTIONS(5297), + [anon_sym_GT_GT] = ACTIONS(5297), + [anon_sym_SEMI] = ACTIONS(5299), + [anon_sym_RBRACE] = ACTIONS(5299), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym_RBRACK] = ACTIONS(5299), + [anon_sym_EQ] = ACTIONS(5297), + [anon_sym_COLON] = ACTIONS(5299), + [anon_sym_QMARK] = ACTIONS(5299), + [anon_sym_STAR_EQ] = ACTIONS(5299), + [anon_sym_SLASH_EQ] = ACTIONS(5299), + [anon_sym_PERCENT_EQ] = ACTIONS(5299), + [anon_sym_PLUS_EQ] = ACTIONS(5299), + [anon_sym_DASH_EQ] = ACTIONS(5299), + [anon_sym_LT_LT_EQ] = ACTIONS(5299), + [anon_sym_GT_GT_EQ] = ACTIONS(5299), + [anon_sym_AMP_EQ] = ACTIONS(5299), + [anon_sym_CARET_EQ] = ACTIONS(5299), + [anon_sym_PIPE_EQ] = ACTIONS(5299), + [anon_sym_and_eq] = ACTIONS(5297), + [anon_sym_or_eq] = ACTIONS(5297), + [anon_sym_xor_eq] = ACTIONS(5297), + [anon_sym_LT_EQ_GT] = ACTIONS(5299), + [anon_sym_or] = ACTIONS(5297), + [anon_sym_and] = ACTIONS(5297), + [anon_sym_bitor] = ACTIONS(5297), + [anon_sym_xor] = ACTIONS(5297), + [anon_sym_bitand] = ACTIONS(5297), + [anon_sym_not_eq] = ACTIONS(5297), + [anon_sym_DASH_DASH] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(5299), + [anon_sym_DOT] = ACTIONS(5297), + [anon_sym_DOT_STAR] = ACTIONS(5299), + [anon_sym_DASH_GT] = ACTIONS(5299), + [anon_sym_L_DQUOTE] = ACTIONS(5299), + [anon_sym_u_DQUOTE] = ACTIONS(5299), + [anon_sym_U_DQUOTE] = ACTIONS(5299), + [anon_sym_u8_DQUOTE] = ACTIONS(5299), + [anon_sym_DQUOTE] = ACTIONS(5299), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5299), + [anon_sym_LR_DQUOTE] = ACTIONS(5299), + [anon_sym_uR_DQUOTE] = ACTIONS(5299), + [anon_sym_UR_DQUOTE] = ACTIONS(5299), + [anon_sym_u8R_DQUOTE] = ACTIONS(5299), + [sym_literal_suffix] = ACTIONS(5297), }, - [2257] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5790), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), + [2023] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [sym_identifier] = ACTIONS(4145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [aux_sym_preproc_if_token2] = ACTIONS(4137), + [aux_sym_preproc_else_token1] = ACTIONS(4137), + [aux_sym_preproc_elif_token1] = ACTIONS(4145), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5301), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5304), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(5306), + [anon_sym_SLASH_EQ] = ACTIONS(5306), + [anon_sym_PERCENT_EQ] = ACTIONS(5306), + [anon_sym_PLUS_EQ] = ACTIONS(5306), + [anon_sym_DASH_EQ] = ACTIONS(5306), + [anon_sym_LT_LT_EQ] = ACTIONS(5306), + [anon_sym_GT_GT_EQ] = ACTIONS(5306), + [anon_sym_AMP_EQ] = ACTIONS(5306), + [anon_sym_CARET_EQ] = ACTIONS(5306), + [anon_sym_PIPE_EQ] = ACTIONS(5306), + [anon_sym_and_eq] = ACTIONS(5304), + [anon_sym_or_eq] = ACTIONS(5304), + [anon_sym_xor_eq] = ACTIONS(5304), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [2024] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5030), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5028), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5028), + [anon_sym___extension__] = ACTIONS(5030), + [anon_sym___attribute__] = ACTIONS(5030), + [anon_sym_COLON_COLON] = ACTIONS(5030), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5030), + [anon_sym_volatile] = ACTIONS(5030), + [anon_sym_restrict] = ACTIONS(5030), + [anon_sym___restrict__] = ACTIONS(5030), + [anon_sym__Atomic] = ACTIONS(5030), + [anon_sym__Noreturn] = ACTIONS(5030), + [anon_sym_noreturn] = ACTIONS(5030), + [anon_sym_mutable] = ACTIONS(5030), + [anon_sym_constinit] = ACTIONS(5030), + [anon_sym_consteval] = ACTIONS(5030), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_STAR_EQ] = ACTIONS(5030), + [anon_sym_SLASH_EQ] = ACTIONS(5030), + [anon_sym_PERCENT_EQ] = ACTIONS(5030), + [anon_sym_PLUS_EQ] = ACTIONS(5030), + [anon_sym_DASH_EQ] = ACTIONS(5030), + [anon_sym_LT_LT_EQ] = ACTIONS(5030), + [anon_sym_GT_GT_EQ] = ACTIONS(5028), + [anon_sym_AMP_EQ] = ACTIONS(5030), + [anon_sym_CARET_EQ] = ACTIONS(5030), + [anon_sym_PIPE_EQ] = ACTIONS(5030), + [anon_sym_and_eq] = ACTIONS(5030), + [anon_sym_or_eq] = ACTIONS(5030), + [anon_sym_xor_eq] = ACTIONS(5030), + [anon_sym_LT_EQ_GT] = ACTIONS(5030), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_bitor] = ACTIONS(5030), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_bitand] = ACTIONS(5030), + [anon_sym_not_eq] = ACTIONS(5030), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_DOT_STAR] = ACTIONS(5030), + [anon_sym_DASH_GT] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5030), + [anon_sym_decltype] = ACTIONS(5030), + [anon_sym_final] = ACTIONS(5030), + [anon_sym_override] = ACTIONS(5030), + [anon_sym_GT2] = ACTIONS(5030), + }, + [2025] = { + [sym_catch_clause] = STATE(2025), + [aux_sym_constructor_try_statement_repeat1] = STATE(2025), + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token2] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [aux_sym_preproc_else_token1] = ACTIONS(2815), + [aux_sym_preproc_elif_token1] = ACTIONS(2815), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym___inline] = ACTIONS(2815), + [anon_sym___inline__] = ACTIONS(2815), + [anon_sym___forceinline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym___thread] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym___restrict__] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym__Noreturn] = ACTIONS(2815), + [anon_sym_noreturn] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_alignas] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_friend] = ACTIONS(2815), + [anon_sym_public] = ACTIONS(2815), + [anon_sym_private] = ACTIONS(2815), + [anon_sym_protected] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_catch] = ACTIONS(5308), + }, + [2026] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_LPAREN2] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5035), + [anon_sym_CARET] = ACTIONS(5035), + [anon_sym_AMP] = ACTIONS(5035), + [anon_sym_EQ_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_GT_EQ] = ACTIONS(5035), + [anon_sym_LT_EQ] = ACTIONS(5035), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_LT_LT] = ACTIONS(5035), + [anon_sym_GT_GT] = ACTIONS(5035), + [anon_sym___extension__] = ACTIONS(5037), + [anon_sym___attribute__] = ACTIONS(5037), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_const] = ACTIONS(5035), + [anon_sym_constexpr] = ACTIONS(5037), + [anon_sym_volatile] = ACTIONS(5037), + [anon_sym_restrict] = ACTIONS(5037), + [anon_sym___restrict__] = ACTIONS(5037), + [anon_sym__Atomic] = ACTIONS(5037), + [anon_sym__Noreturn] = ACTIONS(5037), + [anon_sym_noreturn] = ACTIONS(5037), + [anon_sym_mutable] = ACTIONS(5037), + [anon_sym_constinit] = ACTIONS(5037), + [anon_sym_consteval] = ACTIONS(5037), + [anon_sym_COLON] = ACTIONS(5035), + [anon_sym_QMARK] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_LT_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_GT_EQ] = ACTIONS(5035), + [anon_sym_AMP_EQ] = ACTIONS(5037), + [anon_sym_CARET_EQ] = ACTIONS(5037), + [anon_sym_PIPE_EQ] = ACTIONS(5037), + [anon_sym_and_eq] = ACTIONS(5037), + [anon_sym_or_eq] = ACTIONS(5037), + [anon_sym_xor_eq] = ACTIONS(5037), + [anon_sym_LT_EQ_GT] = ACTIONS(5037), + [anon_sym_or] = ACTIONS(5035), + [anon_sym_and] = ACTIONS(5035), + [anon_sym_bitor] = ACTIONS(5037), + [anon_sym_xor] = ACTIONS(5035), + [anon_sym_bitand] = ACTIONS(5037), + [anon_sym_not_eq] = ACTIONS(5037), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_DOT_STAR] = ACTIONS(5037), + [anon_sym_DASH_GT] = ACTIONS(5037), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5037), + [anon_sym_decltype] = ACTIONS(5037), + [anon_sym_final] = ACTIONS(5037), + [anon_sym_override] = ACTIONS(5037), + [anon_sym_GT2] = ACTIONS(5037), + }, + [2027] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_LPAREN2] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_PERCENT] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(5001), + [anon_sym_AMP_AMP] = ACTIONS(5001), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym_AMP] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(5001), + [anon_sym_BANG_EQ] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(4999), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_LT_LT] = ACTIONS(4999), + [anon_sym_GT_GT] = ACTIONS(4999), + [anon_sym___extension__] = ACTIONS(5001), + [anon_sym___attribute__] = ACTIONS(5001), + [anon_sym_COLON_COLON] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(4999), + [anon_sym_const] = ACTIONS(4999), + [anon_sym_constexpr] = ACTIONS(5001), + [anon_sym_volatile] = ACTIONS(5001), + [anon_sym_restrict] = ACTIONS(5001), + [anon_sym___restrict__] = ACTIONS(5001), + [anon_sym__Atomic] = ACTIONS(5001), + [anon_sym__Noreturn] = ACTIONS(5001), + [anon_sym_noreturn] = ACTIONS(5001), + [anon_sym_mutable] = ACTIONS(5001), + [anon_sym_constinit] = ACTIONS(5001), + [anon_sym_consteval] = ACTIONS(5001), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_STAR_EQ] = ACTIONS(5001), + [anon_sym_SLASH_EQ] = ACTIONS(5001), + [anon_sym_PERCENT_EQ] = ACTIONS(5001), + [anon_sym_PLUS_EQ] = ACTIONS(5001), + [anon_sym_DASH_EQ] = ACTIONS(5001), + [anon_sym_LT_LT_EQ] = ACTIONS(5001), + [anon_sym_GT_GT_EQ] = ACTIONS(4999), + [anon_sym_AMP_EQ] = ACTIONS(5001), + [anon_sym_CARET_EQ] = ACTIONS(5001), + [anon_sym_PIPE_EQ] = ACTIONS(5001), + [anon_sym_and_eq] = ACTIONS(5001), + [anon_sym_or_eq] = ACTIONS(5001), + [anon_sym_xor_eq] = ACTIONS(5001), + [anon_sym_LT_EQ_GT] = ACTIONS(5001), + [anon_sym_or] = ACTIONS(4999), + [anon_sym_and] = ACTIONS(4999), + [anon_sym_bitor] = ACTIONS(5001), + [anon_sym_xor] = ACTIONS(4999), + [anon_sym_bitand] = ACTIONS(5001), + [anon_sym_not_eq] = ACTIONS(5001), + [anon_sym_DASH_DASH] = ACTIONS(5001), + [anon_sym_PLUS_PLUS] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(4999), + [anon_sym_DOT_STAR] = ACTIONS(5001), + [anon_sym_DASH_GT] = ACTIONS(5001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5001), + [anon_sym_decltype] = ACTIONS(5001), + [anon_sym_final] = ACTIONS(5001), + [anon_sym_override] = ACTIONS(5001), + [anon_sym_GT2] = ACTIONS(5001), + }, + [2028] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(8207), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(8207), + [sym_variadic_parameter_declaration] = STATE(8207), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5311), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(5077), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), @@ -344213,50 +329451,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2042), [anon_sym_template] = ACTIONS(1428), }, - [2258] = { - [sym__declaration_modifiers] = STATE(2279), - [sym__declaration_specifiers] = STATE(5794), - [sym_attribute_specifier] = STATE(2279), - [sym_attribute_declaration] = STATE(2279), - [sym_ms_declspec_modifier] = STATE(2279), - [sym_storage_class_specifier] = STATE(2279), - [sym_type_qualifier] = STATE(2279), - [sym__type_specifier] = STATE(3165), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(2279), - [sym_alignas_specifier] = STATE(2279), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(2279), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), + [2029] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(8039), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(8039), + [sym_variadic_parameter_declaration] = STATE(8039), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym_RPAREN] = ACTIONS(1998), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_COLON_COLON] = ACTIONS(5077), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), @@ -344282,1109 +329524,4442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(2042), [anon_sym_template] = ACTIONS(1428), }, - [2259] = { - [sym_string_literal] = STATE(2228), - [sym_raw_string_literal] = STATE(2228), - [aux_sym_concatenated_string_repeat1] = STATE(2228), - [sym_identifier] = ACTIONS(5792), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5214), - [anon_sym_COMMA] = ACTIONS(5214), - [anon_sym_RPAREN] = ACTIONS(5214), - [anon_sym_LPAREN2] = ACTIONS(5214), - [anon_sym_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5216), - [anon_sym_STAR] = ACTIONS(5216), - [anon_sym_SLASH] = ACTIONS(5216), - [anon_sym_PERCENT] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_CARET] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5214), - [anon_sym_BANG_EQ] = ACTIONS(5214), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5214), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(5214), - [anon_sym_STAR_EQ] = ACTIONS(5214), - [anon_sym_SLASH_EQ] = ACTIONS(5214), - [anon_sym_PERCENT_EQ] = ACTIONS(5214), - [anon_sym_PLUS_EQ] = ACTIONS(5214), - [anon_sym_DASH_EQ] = ACTIONS(5214), - [anon_sym_LT_LT_EQ] = ACTIONS(5214), - [anon_sym_GT_GT_EQ] = ACTIONS(5214), - [anon_sym_AMP_EQ] = ACTIONS(5214), - [anon_sym_CARET_EQ] = ACTIONS(5214), - [anon_sym_PIPE_EQ] = ACTIONS(5214), - [anon_sym_and_eq] = ACTIONS(5216), - [anon_sym_or_eq] = ACTIONS(5216), - [anon_sym_xor_eq] = ACTIONS(5216), - [anon_sym_LT_EQ_GT] = ACTIONS(5214), - [anon_sym_or] = ACTIONS(5216), - [anon_sym_and] = ACTIONS(5216), - [anon_sym_bitor] = ACTIONS(5216), - [anon_sym_xor] = ACTIONS(5216), - [anon_sym_bitand] = ACTIONS(5216), - [anon_sym_not_eq] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5214), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_DOT_STAR] = ACTIONS(5214), - [anon_sym_DASH_GT] = ACTIONS(5216), - [anon_sym_L_DQUOTE] = ACTIONS(5451), - [anon_sym_u_DQUOTE] = ACTIONS(5451), - [anon_sym_U_DQUOTE] = ACTIONS(5451), - [anon_sym_u8_DQUOTE] = ACTIONS(5451), - [anon_sym_DQUOTE] = ACTIONS(5451), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5453), - [anon_sym_LR_DQUOTE] = ACTIONS(5453), - [anon_sym_uR_DQUOTE] = ACTIONS(5453), - [anon_sym_UR_DQUOTE] = ACTIONS(5453), - [anon_sym_u8R_DQUOTE] = ACTIONS(5453), - [anon_sym_DASH_GT_STAR] = ACTIONS(5214), - [sym_literal_suffix] = ACTIONS(5216), - }, - [2260] = { - [sym_identifier] = ACTIONS(5479), - [aux_sym_preproc_def_token1] = ACTIONS(5479), - [aux_sym_preproc_if_token1] = ACTIONS(5479), - [aux_sym_preproc_if_token2] = ACTIONS(5479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5479), - [aux_sym_preproc_else_token1] = ACTIONS(5479), - [aux_sym_preproc_elif_token1] = ACTIONS(5479), - [sym_preproc_directive] = ACTIONS(5479), - [anon_sym_LPAREN2] = ACTIONS(5481), - [anon_sym_TILDE] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5481), - [anon_sym_AMP_AMP] = ACTIONS(5481), - [anon_sym_AMP] = ACTIONS(5479), - [anon_sym___extension__] = ACTIONS(5479), - [anon_sym_typedef] = ACTIONS(5479), - [anon_sym_extern] = ACTIONS(5479), - [anon_sym___attribute__] = ACTIONS(5479), - [anon_sym_COLON_COLON] = ACTIONS(5481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5481), - [anon_sym___declspec] = ACTIONS(5479), - [anon_sym___based] = ACTIONS(5479), - [anon_sym_signed] = ACTIONS(5479), - [anon_sym_unsigned] = ACTIONS(5479), - [anon_sym_long] = ACTIONS(5479), - [anon_sym_short] = ACTIONS(5479), - [anon_sym_LBRACK] = ACTIONS(5479), - [anon_sym_static] = ACTIONS(5479), - [anon_sym_register] = ACTIONS(5479), - [anon_sym_inline] = ACTIONS(5479), - [anon_sym___inline] = ACTIONS(5479), - [anon_sym___inline__] = ACTIONS(5479), - [anon_sym___forceinline] = ACTIONS(5479), - [anon_sym_thread_local] = ACTIONS(5479), - [anon_sym___thread] = ACTIONS(5479), - [anon_sym_const] = ACTIONS(5479), - [anon_sym_constexpr] = ACTIONS(5479), - [anon_sym_volatile] = ACTIONS(5479), - [anon_sym_restrict] = ACTIONS(5479), - [anon_sym___restrict__] = ACTIONS(5479), - [anon_sym__Atomic] = ACTIONS(5479), - [anon_sym__Noreturn] = ACTIONS(5479), - [anon_sym_noreturn] = ACTIONS(5479), - [anon_sym_mutable] = ACTIONS(5479), - [anon_sym_constinit] = ACTIONS(5479), - [anon_sym_consteval] = ACTIONS(5479), - [sym_primitive_type] = ACTIONS(5479), - [anon_sym_enum] = ACTIONS(5479), - [anon_sym_class] = ACTIONS(5479), - [anon_sym_struct] = ACTIONS(5479), - [anon_sym_union] = ACTIONS(5479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5479), - [anon_sym_decltype] = ACTIONS(5479), - [anon_sym_virtual] = ACTIONS(5479), - [anon_sym_alignas] = ACTIONS(5479), - [anon_sym_explicit] = ACTIONS(5479), - [anon_sym_typename] = ACTIONS(5479), - [anon_sym_template] = ACTIONS(5479), - [anon_sym_operator] = ACTIONS(5479), - [anon_sym_friend] = ACTIONS(5479), - [anon_sym_public] = ACTIONS(5479), - [anon_sym_private] = ACTIONS(5479), - [anon_sym_protected] = ACTIONS(5479), - [anon_sym_using] = ACTIONS(5479), - [anon_sym_static_assert] = ACTIONS(5479), - }, - [2261] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(5316), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_friend] = ACTIONS(2144), - [anon_sym_public] = ACTIONS(2144), - [anon_sym_private] = ACTIONS(2144), - [anon_sym_protected] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), + [2030] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_LPAREN2] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_PERCENT] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4993), + [anon_sym_AMP_AMP] = ACTIONS(4993), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym_AMP] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4991), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_LT_LT] = ACTIONS(4991), + [anon_sym_GT_GT] = ACTIONS(4991), + [anon_sym___extension__] = ACTIONS(4993), + [anon_sym___attribute__] = ACTIONS(4993), + [anon_sym_COLON_COLON] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4991), + [anon_sym_const] = ACTIONS(4991), + [anon_sym_constexpr] = ACTIONS(4993), + [anon_sym_volatile] = ACTIONS(4993), + [anon_sym_restrict] = ACTIONS(4993), + [anon_sym___restrict__] = ACTIONS(4993), + [anon_sym__Atomic] = ACTIONS(4993), + [anon_sym__Noreturn] = ACTIONS(4993), + [anon_sym_noreturn] = ACTIONS(4993), + [anon_sym_mutable] = ACTIONS(4993), + [anon_sym_constinit] = ACTIONS(4993), + [anon_sym_consteval] = ACTIONS(4993), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_STAR_EQ] = ACTIONS(4993), + [anon_sym_SLASH_EQ] = ACTIONS(4993), + [anon_sym_PERCENT_EQ] = ACTIONS(4993), + [anon_sym_PLUS_EQ] = ACTIONS(4993), + [anon_sym_DASH_EQ] = ACTIONS(4993), + [anon_sym_LT_LT_EQ] = ACTIONS(4993), + [anon_sym_GT_GT_EQ] = ACTIONS(4991), + [anon_sym_AMP_EQ] = ACTIONS(4993), + [anon_sym_CARET_EQ] = ACTIONS(4993), + [anon_sym_PIPE_EQ] = ACTIONS(4993), + [anon_sym_and_eq] = ACTIONS(4993), + [anon_sym_or_eq] = ACTIONS(4993), + [anon_sym_xor_eq] = ACTIONS(4993), + [anon_sym_LT_EQ_GT] = ACTIONS(4993), + [anon_sym_or] = ACTIONS(4991), + [anon_sym_and] = ACTIONS(4991), + [anon_sym_bitor] = ACTIONS(4993), + [anon_sym_xor] = ACTIONS(4991), + [anon_sym_bitand] = ACTIONS(4993), + [anon_sym_not_eq] = ACTIONS(4993), + [anon_sym_DASH_DASH] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4993), + [anon_sym_DOT] = ACTIONS(4991), + [anon_sym_DOT_STAR] = ACTIONS(4993), + [anon_sym_DASH_GT] = ACTIONS(4993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4993), + [anon_sym_decltype] = ACTIONS(4993), + [anon_sym_final] = ACTIONS(4993), + [anon_sym_override] = ACTIONS(4993), + [anon_sym_GT2] = ACTIONS(4993), }, - [2262] = { - [sym_string_literal] = STATE(2319), - [sym_template_argument_list] = STATE(3650), - [sym_raw_string_literal] = STATE(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4147), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5794), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4147), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4139), - [anon_sym_or_eq] = ACTIONS(4139), - [anon_sym_xor_eq] = ACTIONS(4139), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(5797), - [anon_sym_u_DQUOTE] = ACTIONS(5797), - [anon_sym_U_DQUOTE] = ACTIONS(5797), - [anon_sym_u8_DQUOTE] = ACTIONS(5797), - [anon_sym_DQUOTE] = ACTIONS(5797), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(4139), - [anon_sym_R_DQUOTE] = ACTIONS(5799), - [anon_sym_LR_DQUOTE] = ACTIONS(5799), - [anon_sym_uR_DQUOTE] = ACTIONS(5799), - [anon_sym_UR_DQUOTE] = ACTIONS(5799), - [anon_sym_u8R_DQUOTE] = ACTIONS(5799), + [2031] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_LPAREN2] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_PERCENT] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4997), + [anon_sym_AMP_AMP] = ACTIONS(4997), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4995), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_LT_LT] = ACTIONS(4995), + [anon_sym_GT_GT] = ACTIONS(4995), + [anon_sym___extension__] = ACTIONS(4997), + [anon_sym___attribute__] = ACTIONS(4997), + [anon_sym_COLON_COLON] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4995), + [anon_sym_const] = ACTIONS(4995), + [anon_sym_constexpr] = ACTIONS(4997), + [anon_sym_volatile] = ACTIONS(4997), + [anon_sym_restrict] = ACTIONS(4997), + [anon_sym___restrict__] = ACTIONS(4997), + [anon_sym__Atomic] = ACTIONS(4997), + [anon_sym__Noreturn] = ACTIONS(4997), + [anon_sym_noreturn] = ACTIONS(4997), + [anon_sym_mutable] = ACTIONS(4997), + [anon_sym_constinit] = ACTIONS(4997), + [anon_sym_consteval] = ACTIONS(4997), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_QMARK] = ACTIONS(4997), + [anon_sym_STAR_EQ] = ACTIONS(4997), + [anon_sym_SLASH_EQ] = ACTIONS(4997), + [anon_sym_PERCENT_EQ] = ACTIONS(4997), + [anon_sym_PLUS_EQ] = ACTIONS(4997), + [anon_sym_DASH_EQ] = ACTIONS(4997), + [anon_sym_LT_LT_EQ] = ACTIONS(4997), + [anon_sym_GT_GT_EQ] = ACTIONS(4995), + [anon_sym_AMP_EQ] = ACTIONS(4997), + [anon_sym_CARET_EQ] = ACTIONS(4997), + [anon_sym_PIPE_EQ] = ACTIONS(4997), + [anon_sym_and_eq] = ACTIONS(4997), + [anon_sym_or_eq] = ACTIONS(4997), + [anon_sym_xor_eq] = ACTIONS(4997), + [anon_sym_LT_EQ_GT] = ACTIONS(4997), + [anon_sym_or] = ACTIONS(4995), + [anon_sym_and] = ACTIONS(4995), + [anon_sym_bitor] = ACTIONS(4997), + [anon_sym_xor] = ACTIONS(4995), + [anon_sym_bitand] = ACTIONS(4997), + [anon_sym_not_eq] = ACTIONS(4997), + [anon_sym_DASH_DASH] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4997), + [anon_sym_DOT] = ACTIONS(4995), + [anon_sym_DOT_STAR] = ACTIONS(4997), + [anon_sym_DASH_GT] = ACTIONS(4997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4997), + [anon_sym_decltype] = ACTIONS(4997), + [anon_sym_final] = ACTIONS(4997), + [anon_sym_override] = ACTIONS(4997), + [anon_sym_GT2] = ACTIONS(4997), }, - [2263] = { - [sym_identifier] = ACTIONS(5522), - [aux_sym_preproc_def_token1] = ACTIONS(5522), - [aux_sym_preproc_if_token1] = ACTIONS(5522), - [aux_sym_preproc_if_token2] = ACTIONS(5522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5522), - [aux_sym_preproc_else_token1] = ACTIONS(5522), - [aux_sym_preproc_elif_token1] = ACTIONS(5522), - [sym_preproc_directive] = ACTIONS(5522), - [anon_sym_LPAREN2] = ACTIONS(5524), - [anon_sym_TILDE] = ACTIONS(5524), - [anon_sym_STAR] = ACTIONS(5524), - [anon_sym_AMP_AMP] = ACTIONS(5524), - [anon_sym_AMP] = ACTIONS(5522), - [anon_sym___extension__] = ACTIONS(5522), - [anon_sym_typedef] = ACTIONS(5522), - [anon_sym_extern] = ACTIONS(5522), - [anon_sym___attribute__] = ACTIONS(5522), - [anon_sym_COLON_COLON] = ACTIONS(5524), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5524), - [anon_sym___declspec] = ACTIONS(5522), - [anon_sym___based] = ACTIONS(5522), - [anon_sym_signed] = ACTIONS(5522), - [anon_sym_unsigned] = ACTIONS(5522), - [anon_sym_long] = ACTIONS(5522), - [anon_sym_short] = ACTIONS(5522), - [anon_sym_LBRACK] = ACTIONS(5522), - [anon_sym_static] = ACTIONS(5522), - [anon_sym_register] = ACTIONS(5522), - [anon_sym_inline] = ACTIONS(5522), - [anon_sym___inline] = ACTIONS(5522), - [anon_sym___inline__] = ACTIONS(5522), - [anon_sym___forceinline] = ACTIONS(5522), - [anon_sym_thread_local] = ACTIONS(5522), - [anon_sym___thread] = ACTIONS(5522), - [anon_sym_const] = ACTIONS(5522), - [anon_sym_constexpr] = ACTIONS(5522), - [anon_sym_volatile] = ACTIONS(5522), - [anon_sym_restrict] = ACTIONS(5522), - [anon_sym___restrict__] = ACTIONS(5522), - [anon_sym__Atomic] = ACTIONS(5522), - [anon_sym__Noreturn] = ACTIONS(5522), - [anon_sym_noreturn] = ACTIONS(5522), - [anon_sym_mutable] = ACTIONS(5522), - [anon_sym_constinit] = ACTIONS(5522), - [anon_sym_consteval] = ACTIONS(5522), - [sym_primitive_type] = ACTIONS(5522), - [anon_sym_enum] = ACTIONS(5522), - [anon_sym_class] = ACTIONS(5522), - [anon_sym_struct] = ACTIONS(5522), - [anon_sym_union] = ACTIONS(5522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5522), - [anon_sym_decltype] = ACTIONS(5522), - [anon_sym_virtual] = ACTIONS(5522), - [anon_sym_alignas] = ACTIONS(5522), - [anon_sym_explicit] = ACTIONS(5522), - [anon_sym_typename] = ACTIONS(5522), - [anon_sym_template] = ACTIONS(5522), - [anon_sym_operator] = ACTIONS(5522), - [anon_sym_friend] = ACTIONS(5522), - [anon_sym_public] = ACTIONS(5522), - [anon_sym_private] = ACTIONS(5522), - [anon_sym_protected] = ACTIONS(5522), - [anon_sym_using] = ACTIONS(5522), - [anon_sym_static_assert] = ACTIONS(5522), + [2032] = { + [sym_catch_clause] = STATE(2025), + [aux_sym_constructor_try_statement_repeat1] = STATE(2025), + [sym_identifier] = ACTIONS(2838), + [aux_sym_preproc_def_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token2] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), + [aux_sym_preproc_else_token1] = ACTIONS(2838), + [aux_sym_preproc_elif_token1] = ACTIONS(2838), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2838), + [sym_preproc_directive] = ACTIONS(2838), + [anon_sym_LPAREN2] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2838), + [anon_sym_typedef] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym___attribute__] = ACTIONS(2838), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), + [anon_sym___declspec] = ACTIONS(2838), + [anon_sym___based] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2838), + [anon_sym_unsigned] = ACTIONS(2838), + [anon_sym_long] = ACTIONS(2838), + [anon_sym_short] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_register] = ACTIONS(2838), + [anon_sym_inline] = ACTIONS(2838), + [anon_sym___inline] = ACTIONS(2838), + [anon_sym___inline__] = ACTIONS(2838), + [anon_sym___forceinline] = ACTIONS(2838), + [anon_sym_thread_local] = ACTIONS(2838), + [anon_sym___thread] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_constexpr] = ACTIONS(2838), + [anon_sym_volatile] = ACTIONS(2838), + [anon_sym_restrict] = ACTIONS(2838), + [anon_sym___restrict__] = ACTIONS(2838), + [anon_sym__Atomic] = ACTIONS(2838), + [anon_sym__Noreturn] = ACTIONS(2838), + [anon_sym_noreturn] = ACTIONS(2838), + [anon_sym_mutable] = ACTIONS(2838), + [anon_sym_constinit] = ACTIONS(2838), + [anon_sym_consteval] = ACTIONS(2838), + [sym_primitive_type] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_class] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2838), + [anon_sym_decltype] = ACTIONS(2838), + [anon_sym_virtual] = ACTIONS(2838), + [anon_sym_alignas] = ACTIONS(2838), + [anon_sym_explicit] = ACTIONS(2838), + [anon_sym_typename] = ACTIONS(2838), + [anon_sym_template] = ACTIONS(2838), + [anon_sym_operator] = ACTIONS(2838), + [anon_sym_friend] = ACTIONS(2838), + [anon_sym_public] = ACTIONS(2838), + [anon_sym_private] = ACTIONS(2838), + [anon_sym_protected] = ACTIONS(2838), + [anon_sym_using] = ACTIONS(2838), + [anon_sym_static_assert] = ACTIONS(2838), + [anon_sym_catch] = ACTIONS(5313), }, - [2264] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5259), - [anon_sym_COMMA] = ACTIONS(5259), - [anon_sym_RPAREN] = ACTIONS(5259), - [anon_sym_LPAREN2] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5257), - [anon_sym_STAR] = ACTIONS(5257), - [anon_sym_SLASH] = ACTIONS(5257), - [anon_sym_PERCENT] = ACTIONS(5257), - [anon_sym_PIPE_PIPE] = ACTIONS(5259), - [anon_sym_AMP_AMP] = ACTIONS(5259), - [anon_sym_PIPE] = ACTIONS(5257), - [anon_sym_CARET] = ACTIONS(5257), - [anon_sym_AMP] = ACTIONS(5257), - [anon_sym_EQ_EQ] = ACTIONS(5259), - [anon_sym_BANG_EQ] = ACTIONS(5259), - [anon_sym_GT] = ACTIONS(5257), - [anon_sym_GT_EQ] = ACTIONS(5259), - [anon_sym_LT_EQ] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5257), - [anon_sym_LT_LT] = ACTIONS(5257), - [anon_sym_GT_GT] = ACTIONS(5257), - [anon_sym_SEMI] = ACTIONS(5259), - [anon_sym_RBRACE] = ACTIONS(5259), - [anon_sym_LBRACK] = ACTIONS(5259), - [anon_sym_RBRACK] = ACTIONS(5259), - [anon_sym_EQ] = ACTIONS(5257), - [anon_sym_COLON] = ACTIONS(5259), - [anon_sym_QMARK] = ACTIONS(5259), - [anon_sym_STAR_EQ] = ACTIONS(5259), - [anon_sym_SLASH_EQ] = ACTIONS(5259), - [anon_sym_PERCENT_EQ] = ACTIONS(5259), - [anon_sym_PLUS_EQ] = ACTIONS(5259), - [anon_sym_DASH_EQ] = ACTIONS(5259), - [anon_sym_LT_LT_EQ] = ACTIONS(5259), - [anon_sym_GT_GT_EQ] = ACTIONS(5259), - [anon_sym_AMP_EQ] = ACTIONS(5259), - [anon_sym_CARET_EQ] = ACTIONS(5259), - [anon_sym_PIPE_EQ] = ACTIONS(5259), - [anon_sym_and_eq] = ACTIONS(5257), - [anon_sym_or_eq] = ACTIONS(5257), - [anon_sym_xor_eq] = ACTIONS(5257), - [anon_sym_LT_EQ_GT] = ACTIONS(5259), - [anon_sym_or] = ACTIONS(5257), - [anon_sym_and] = ACTIONS(5257), - [anon_sym_bitor] = ACTIONS(5257), - [anon_sym_xor] = ACTIONS(5257), - [anon_sym_bitand] = ACTIONS(5257), - [anon_sym_not_eq] = ACTIONS(5257), - [anon_sym_DASH_DASH] = ACTIONS(5259), - [anon_sym_PLUS_PLUS] = ACTIONS(5259), - [anon_sym_DOT] = ACTIONS(5257), - [anon_sym_DOT_STAR] = ACTIONS(5259), - [anon_sym_DASH_GT] = ACTIONS(5259), - [anon_sym_L_DQUOTE] = ACTIONS(5259), - [anon_sym_u_DQUOTE] = ACTIONS(5259), - [anon_sym_U_DQUOTE] = ACTIONS(5259), - [anon_sym_u8_DQUOTE] = ACTIONS(5259), - [anon_sym_DQUOTE] = ACTIONS(5259), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5259), - [anon_sym_LR_DQUOTE] = ACTIONS(5259), - [anon_sym_uR_DQUOTE] = ACTIONS(5259), - [anon_sym_UR_DQUOTE] = ACTIONS(5259), - [anon_sym_u8R_DQUOTE] = ACTIONS(5259), - [sym_literal_suffix] = ACTIONS(5257), + [2033] = { + [sym_catch_clause] = STATE(2025), + [aux_sym_constructor_try_statement_repeat1] = STATE(2025), + [sym_identifier] = ACTIONS(2834), + [aux_sym_preproc_def_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token2] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), + [aux_sym_preproc_else_token1] = ACTIONS(2834), + [aux_sym_preproc_elif_token1] = ACTIONS(2834), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2834), + [sym_preproc_directive] = ACTIONS(2834), + [anon_sym_LPAREN2] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_AMP_AMP] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym___extension__] = ACTIONS(2834), + [anon_sym_typedef] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym___attribute__] = ACTIONS(2834), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), + [anon_sym___declspec] = ACTIONS(2834), + [anon_sym___based] = ACTIONS(2834), + [anon_sym_signed] = ACTIONS(2834), + [anon_sym_unsigned] = ACTIONS(2834), + [anon_sym_long] = ACTIONS(2834), + [anon_sym_short] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_register] = ACTIONS(2834), + [anon_sym_inline] = ACTIONS(2834), + [anon_sym___inline] = ACTIONS(2834), + [anon_sym___inline__] = ACTIONS(2834), + [anon_sym___forceinline] = ACTIONS(2834), + [anon_sym_thread_local] = ACTIONS(2834), + [anon_sym___thread] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_constexpr] = ACTIONS(2834), + [anon_sym_volatile] = ACTIONS(2834), + [anon_sym_restrict] = ACTIONS(2834), + [anon_sym___restrict__] = ACTIONS(2834), + [anon_sym__Atomic] = ACTIONS(2834), + [anon_sym__Noreturn] = ACTIONS(2834), + [anon_sym_noreturn] = ACTIONS(2834), + [anon_sym_mutable] = ACTIONS(2834), + [anon_sym_constinit] = ACTIONS(2834), + [anon_sym_consteval] = ACTIONS(2834), + [sym_primitive_type] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_class] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2834), + [anon_sym_decltype] = ACTIONS(2834), + [anon_sym_virtual] = ACTIONS(2834), + [anon_sym_alignas] = ACTIONS(2834), + [anon_sym_explicit] = ACTIONS(2834), + [anon_sym_typename] = ACTIONS(2834), + [anon_sym_template] = ACTIONS(2834), + [anon_sym_operator] = ACTIONS(2834), + [anon_sym_friend] = ACTIONS(2834), + [anon_sym_public] = ACTIONS(2834), + [anon_sym_private] = ACTIONS(2834), + [anon_sym_protected] = ACTIONS(2834), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_static_assert] = ACTIONS(2834), + [anon_sym_catch] = ACTIONS(5313), }, - [2265] = { - [sym_identifier] = ACTIONS(3094), - [aux_sym_preproc_def_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token1] = ACTIONS(3094), - [aux_sym_preproc_if_token2] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3094), - [aux_sym_preproc_else_token1] = ACTIONS(3094), - [aux_sym_preproc_elif_token1] = ACTIONS(3094), - [sym_preproc_directive] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym___extension__] = ACTIONS(3094), - [anon_sym_typedef] = ACTIONS(3094), - [anon_sym_extern] = ACTIONS(3094), - [anon_sym___attribute__] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3096), - [anon_sym___declspec] = ACTIONS(3094), - [anon_sym___based] = ACTIONS(3094), - [anon_sym_signed] = ACTIONS(3094), - [anon_sym_unsigned] = ACTIONS(3094), - [anon_sym_long] = ACTIONS(3094), - [anon_sym_short] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3094), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_register] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym___inline] = ACTIONS(3094), - [anon_sym___inline__] = ACTIONS(3094), - [anon_sym___forceinline] = ACTIONS(3094), - [anon_sym_thread_local] = ACTIONS(3094), - [anon_sym___thread] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_constexpr] = ACTIONS(3094), - [anon_sym_volatile] = ACTIONS(3094), - [anon_sym_restrict] = ACTIONS(3094), - [anon_sym___restrict__] = ACTIONS(3094), - [anon_sym__Atomic] = ACTIONS(3094), - [anon_sym__Noreturn] = ACTIONS(3094), - [anon_sym_noreturn] = ACTIONS(3094), - [anon_sym_mutable] = ACTIONS(3094), - [anon_sym_constinit] = ACTIONS(3094), - [anon_sym_consteval] = ACTIONS(3094), - [sym_primitive_type] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_union] = ACTIONS(3094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3094), - [anon_sym_decltype] = ACTIONS(3094), - [anon_sym_virtual] = ACTIONS(3094), - [anon_sym_alignas] = ACTIONS(3094), - [anon_sym_explicit] = ACTIONS(3094), - [anon_sym_typename] = ACTIONS(3094), - [anon_sym_template] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_friend] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_using] = ACTIONS(3094), - [anon_sym_static_assert] = ACTIONS(3094), + [2034] = { + [sym_attribute_specifier] = STATE(2474), + [sym_field_declaration_list] = STATE(2324), + [sym_virtual_specifier] = STATE(7479), + [sym_base_class_clause] = STATE(8224), + [sym_identifier] = ACTIONS(5315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5317), + [anon_sym_COMMA] = ACTIONS(5317), + [anon_sym_RPAREN] = ACTIONS(5317), + [aux_sym_preproc_if_token2] = ACTIONS(5317), + [aux_sym_preproc_else_token1] = ACTIONS(5317), + [aux_sym_preproc_elif_token1] = ACTIONS(5315), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5317), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5317), + [anon_sym_LPAREN2] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5315), + [anon_sym_PLUS] = ACTIONS(5315), + [anon_sym_STAR] = ACTIONS(5315), + [anon_sym_SLASH] = ACTIONS(5315), + [anon_sym_PERCENT] = ACTIONS(5315), + [anon_sym_PIPE_PIPE] = ACTIONS(5317), + [anon_sym_AMP_AMP] = ACTIONS(5317), + [anon_sym_PIPE] = ACTIONS(5315), + [anon_sym_CARET] = ACTIONS(5315), + [anon_sym_AMP] = ACTIONS(5315), + [anon_sym_EQ_EQ] = ACTIONS(5317), + [anon_sym_BANG_EQ] = ACTIONS(5317), + [anon_sym_GT] = ACTIONS(5315), + [anon_sym_GT_EQ] = ACTIONS(5317), + [anon_sym_LT_EQ] = ACTIONS(5315), + [anon_sym_LT] = ACTIONS(5315), + [anon_sym_LT_LT] = ACTIONS(5315), + [anon_sym_GT_GT] = ACTIONS(5315), + [anon_sym_SEMI] = ACTIONS(5317), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5321), + [anon_sym_RBRACE] = ACTIONS(5317), + [anon_sym_LBRACK] = ACTIONS(5317), + [anon_sym_RBRACK] = ACTIONS(5317), + [anon_sym_EQ] = ACTIONS(5315), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_QMARK] = ACTIONS(5317), + [anon_sym_STAR_EQ] = ACTIONS(5317), + [anon_sym_SLASH_EQ] = ACTIONS(5317), + [anon_sym_PERCENT_EQ] = ACTIONS(5317), + [anon_sym_PLUS_EQ] = ACTIONS(5317), + [anon_sym_DASH_EQ] = ACTIONS(5317), + [anon_sym_LT_LT_EQ] = ACTIONS(5317), + [anon_sym_GT_GT_EQ] = ACTIONS(5317), + [anon_sym_AMP_EQ] = ACTIONS(5317), + [anon_sym_CARET_EQ] = ACTIONS(5317), + [anon_sym_PIPE_EQ] = ACTIONS(5317), + [anon_sym_and_eq] = ACTIONS(5315), + [anon_sym_or_eq] = ACTIONS(5315), + [anon_sym_xor_eq] = ACTIONS(5315), + [anon_sym_LT_EQ_GT] = ACTIONS(5317), + [anon_sym_or] = ACTIONS(5315), + [anon_sym_and] = ACTIONS(5315), + [anon_sym_bitor] = ACTIONS(5315), + [anon_sym_xor] = ACTIONS(5315), + [anon_sym_bitand] = ACTIONS(5315), + [anon_sym_not_eq] = ACTIONS(5315), + [anon_sym_DASH_DASH] = ACTIONS(5317), + [anon_sym_PLUS_PLUS] = ACTIONS(5317), + [anon_sym_DOT] = ACTIONS(5315), + [anon_sym_DOT_STAR] = ACTIONS(5317), + [anon_sym_DASH_GT] = ACTIONS(5317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5315), + [anon_sym_decltype] = ACTIONS(5315), + [anon_sym_final] = ACTIONS(5325), + [anon_sym_override] = ACTIONS(5325), }, - [2266] = { - [sym_identifier] = ACTIONS(5535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5537), - [anon_sym_COMMA] = ACTIONS(5537), - [anon_sym_RPAREN] = ACTIONS(5537), - [aux_sym_preproc_if_token2] = ACTIONS(5537), - [aux_sym_preproc_else_token1] = ACTIONS(5537), - [aux_sym_preproc_elif_token1] = ACTIONS(5535), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5537), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5537), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_DASH] = ACTIONS(5535), - [anon_sym_PLUS] = ACTIONS(5535), - [anon_sym_STAR] = ACTIONS(5537), - [anon_sym_SLASH] = ACTIONS(5535), - [anon_sym_PERCENT] = ACTIONS(5537), - [anon_sym_PIPE_PIPE] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_PIPE] = ACTIONS(5535), - [anon_sym_CARET] = ACTIONS(5537), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_EQ_EQ] = ACTIONS(5537), - [anon_sym_BANG_EQ] = ACTIONS(5537), - [anon_sym_GT] = ACTIONS(5535), - [anon_sym_GT_EQ] = ACTIONS(5537), - [anon_sym_LT_EQ] = ACTIONS(5535), - [anon_sym_LT] = ACTIONS(5535), - [anon_sym_LT_LT] = ACTIONS(5537), - [anon_sym_GT_GT] = ACTIONS(5537), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___extension__] = ACTIONS(5535), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym_LBRACE] = ACTIONS(5537), - [anon_sym_RBRACE] = ACTIONS(5537), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_RBRACK] = ACTIONS(5537), - [anon_sym_const] = ACTIONS(5535), - [anon_sym_constexpr] = ACTIONS(5535), - [anon_sym_volatile] = ACTIONS(5535), - [anon_sym_restrict] = ACTIONS(5535), - [anon_sym___restrict__] = ACTIONS(5535), - [anon_sym__Atomic] = ACTIONS(5535), - [anon_sym__Noreturn] = ACTIONS(5535), - [anon_sym_noreturn] = ACTIONS(5535), - [anon_sym_mutable] = ACTIONS(5535), - [anon_sym_constinit] = ACTIONS(5535), - [anon_sym_consteval] = ACTIONS(5535), - [anon_sym_COLON] = ACTIONS(5537), - [anon_sym_QMARK] = ACTIONS(5537), - [anon_sym_LT_EQ_GT] = ACTIONS(5537), - [anon_sym_or] = ACTIONS(5535), - [anon_sym_and] = ACTIONS(5535), - [anon_sym_bitor] = ACTIONS(5535), - [anon_sym_xor] = ACTIONS(5535), - [anon_sym_bitand] = ACTIONS(5535), - [anon_sym_not_eq] = ACTIONS(5535), - [anon_sym_DASH_DASH] = ACTIONS(5537), - [anon_sym_PLUS_PLUS] = ACTIONS(5537), - [anon_sym_DOT] = ACTIONS(5535), - [anon_sym_DOT_STAR] = ACTIONS(5537), - [anon_sym_DASH_GT] = ACTIONS(5537), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), - [anon_sym_final] = ACTIONS(5535), - [anon_sym_override] = ACTIONS(5535), - [anon_sym_requires] = ACTIONS(5535), + [2035] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_LPAREN2] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_PERCENT] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5005), + [anon_sym_AMP_AMP] = ACTIONS(5005), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym_AMP] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5003), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_LT_LT] = ACTIONS(5003), + [anon_sym_GT_GT] = ACTIONS(5003), + [anon_sym___extension__] = ACTIONS(5005), + [anon_sym___attribute__] = ACTIONS(5005), + [anon_sym_COLON_COLON] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5003), + [anon_sym_const] = ACTIONS(5003), + [anon_sym_constexpr] = ACTIONS(5005), + [anon_sym_volatile] = ACTIONS(5005), + [anon_sym_restrict] = ACTIONS(5005), + [anon_sym___restrict__] = ACTIONS(5005), + [anon_sym__Atomic] = ACTIONS(5005), + [anon_sym__Noreturn] = ACTIONS(5005), + [anon_sym_noreturn] = ACTIONS(5005), + [anon_sym_mutable] = ACTIONS(5005), + [anon_sym_constinit] = ACTIONS(5005), + [anon_sym_consteval] = ACTIONS(5005), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_QMARK] = ACTIONS(5005), + [anon_sym_STAR_EQ] = ACTIONS(5005), + [anon_sym_SLASH_EQ] = ACTIONS(5005), + [anon_sym_PERCENT_EQ] = ACTIONS(5005), + [anon_sym_PLUS_EQ] = ACTIONS(5005), + [anon_sym_DASH_EQ] = ACTIONS(5005), + [anon_sym_LT_LT_EQ] = ACTIONS(5005), + [anon_sym_GT_GT_EQ] = ACTIONS(5003), + [anon_sym_AMP_EQ] = ACTIONS(5005), + [anon_sym_CARET_EQ] = ACTIONS(5005), + [anon_sym_PIPE_EQ] = ACTIONS(5005), + [anon_sym_and_eq] = ACTIONS(5005), + [anon_sym_or_eq] = ACTIONS(5005), + [anon_sym_xor_eq] = ACTIONS(5005), + [anon_sym_LT_EQ_GT] = ACTIONS(5005), + [anon_sym_or] = ACTIONS(5003), + [anon_sym_and] = ACTIONS(5003), + [anon_sym_bitor] = ACTIONS(5005), + [anon_sym_xor] = ACTIONS(5003), + [anon_sym_bitand] = ACTIONS(5005), + [anon_sym_not_eq] = ACTIONS(5005), + [anon_sym_DASH_DASH] = ACTIONS(5005), + [anon_sym_PLUS_PLUS] = ACTIONS(5005), + [anon_sym_DOT] = ACTIONS(5003), + [anon_sym_DOT_STAR] = ACTIONS(5005), + [anon_sym_DASH_GT] = ACTIONS(5005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5005), + [anon_sym_decltype] = ACTIONS(5005), + [anon_sym_final] = ACTIONS(5005), + [anon_sym_override] = ACTIONS(5005), + [anon_sym_GT2] = ACTIONS(5005), }, - [2267] = { - [sym_attribute_declaration] = STATE(2402), - [sym_parameter_list] = STATE(2398), - [aux_sym_attributed_declarator_repeat1] = STATE(2402), - [sym_identifier] = ACTIONS(5801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5803), - [anon_sym_COMMA] = ACTIONS(5803), - [anon_sym_RPAREN] = ACTIONS(5803), - [aux_sym_preproc_if_token2] = ACTIONS(5803), - [aux_sym_preproc_else_token1] = ACTIONS(5803), - [aux_sym_preproc_elif_token1] = ACTIONS(5801), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5803), - [anon_sym_LPAREN2] = ACTIONS(5805), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5801), - [anon_sym_SLASH] = ACTIONS(5801), - [anon_sym_PERCENT] = ACTIONS(5801), - [anon_sym_PIPE_PIPE] = ACTIONS(5803), - [anon_sym_AMP_AMP] = ACTIONS(5803), - [anon_sym_PIPE] = ACTIONS(5801), - [anon_sym_CARET] = ACTIONS(5801), - [anon_sym_AMP] = ACTIONS(5801), - [anon_sym_EQ_EQ] = ACTIONS(5803), - [anon_sym_BANG_EQ] = ACTIONS(5803), - [anon_sym_GT] = ACTIONS(5801), - [anon_sym_GT_EQ] = ACTIONS(5803), - [anon_sym_LT_EQ] = ACTIONS(5801), - [anon_sym_LT] = ACTIONS(5801), - [anon_sym_LT_LT] = ACTIONS(5801), - [anon_sym_GT_GT] = ACTIONS(5801), - [anon_sym_SEMI] = ACTIONS(5803), - [anon_sym___attribute__] = ACTIONS(5801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5807), - [anon_sym_RBRACE] = ACTIONS(5803), - [anon_sym_LBRACK] = ACTIONS(5809), - [anon_sym_RBRACK] = ACTIONS(5803), - [anon_sym_EQ] = ACTIONS(5801), - [anon_sym_COLON] = ACTIONS(5803), - [anon_sym_QMARK] = ACTIONS(5803), - [anon_sym_STAR_EQ] = ACTIONS(5803), - [anon_sym_SLASH_EQ] = ACTIONS(5803), - [anon_sym_PERCENT_EQ] = ACTIONS(5803), - [anon_sym_PLUS_EQ] = ACTIONS(5803), - [anon_sym_DASH_EQ] = ACTIONS(5803), - [anon_sym_LT_LT_EQ] = ACTIONS(5803), - [anon_sym_GT_GT_EQ] = ACTIONS(5803), - [anon_sym_AMP_EQ] = ACTIONS(5803), - [anon_sym_CARET_EQ] = ACTIONS(5803), - [anon_sym_PIPE_EQ] = ACTIONS(5803), - [anon_sym_and_eq] = ACTIONS(5801), - [anon_sym_or_eq] = ACTIONS(5801), - [anon_sym_xor_eq] = ACTIONS(5801), - [anon_sym_LT_EQ_GT] = ACTIONS(5803), - [anon_sym_or] = ACTIONS(5801), - [anon_sym_and] = ACTIONS(5801), - [anon_sym_bitor] = ACTIONS(5801), - [anon_sym_xor] = ACTIONS(5801), - [anon_sym_bitand] = ACTIONS(5801), - [anon_sym_not_eq] = ACTIONS(5801), - [anon_sym_DASH_DASH] = ACTIONS(5803), - [anon_sym_PLUS_PLUS] = ACTIONS(5803), - [anon_sym_DOT] = ACTIONS(5801), - [anon_sym_DOT_STAR] = ACTIONS(5803), - [anon_sym_DASH_GT] = ACTIONS(5803), - [sym_comment] = ACTIONS(3), + [2036] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2036), + [sym_identifier] = ACTIONS(5278), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5280), + [anon_sym_COMMA] = ACTIONS(5280), + [anon_sym_RPAREN] = ACTIONS(5280), + [aux_sym_preproc_if_token2] = ACTIONS(5280), + [aux_sym_preproc_else_token1] = ACTIONS(5280), + [aux_sym_preproc_elif_token1] = ACTIONS(5278), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5280), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5280), + [anon_sym_LPAREN2] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5278), + [anon_sym_STAR] = ACTIONS(5278), + [anon_sym_SLASH] = ACTIONS(5278), + [anon_sym_PERCENT] = ACTIONS(5278), + [anon_sym_PIPE_PIPE] = ACTIONS(5280), + [anon_sym_AMP_AMP] = ACTIONS(5280), + [anon_sym_PIPE] = ACTIONS(5278), + [anon_sym_CARET] = ACTIONS(5278), + [anon_sym_AMP] = ACTIONS(5278), + [anon_sym_EQ_EQ] = ACTIONS(5280), + [anon_sym_BANG_EQ] = ACTIONS(5280), + [anon_sym_GT] = ACTIONS(5278), + [anon_sym_GT_EQ] = ACTIONS(5280), + [anon_sym_LT_EQ] = ACTIONS(5278), + [anon_sym_LT] = ACTIONS(5278), + [anon_sym_LT_LT] = ACTIONS(5278), + [anon_sym_GT_GT] = ACTIONS(5278), + [anon_sym_SEMI] = ACTIONS(5280), + [anon_sym___attribute__] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5280), + [anon_sym_RBRACE] = ACTIONS(5280), + [anon_sym_signed] = ACTIONS(5327), + [anon_sym_unsigned] = ACTIONS(5327), + [anon_sym_long] = ACTIONS(5327), + [anon_sym_short] = ACTIONS(5327), + [anon_sym_LBRACK] = ACTIONS(5280), + [anon_sym_RBRACK] = ACTIONS(5280), + [anon_sym_EQ] = ACTIONS(5278), + [sym_primitive_type] = ACTIONS(5278), + [anon_sym_COLON] = ACTIONS(5280), + [anon_sym_QMARK] = ACTIONS(5280), + [anon_sym_STAR_EQ] = ACTIONS(5280), + [anon_sym_SLASH_EQ] = ACTIONS(5280), + [anon_sym_PERCENT_EQ] = ACTIONS(5280), + [anon_sym_PLUS_EQ] = ACTIONS(5280), + [anon_sym_DASH_EQ] = ACTIONS(5280), + [anon_sym_LT_LT_EQ] = ACTIONS(5280), + [anon_sym_GT_GT_EQ] = ACTIONS(5280), + [anon_sym_AMP_EQ] = ACTIONS(5280), + [anon_sym_CARET_EQ] = ACTIONS(5280), + [anon_sym_PIPE_EQ] = ACTIONS(5280), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5280), + [anon_sym_or] = ACTIONS(5278), + [anon_sym_and] = ACTIONS(5278), + [anon_sym_bitor] = ACTIONS(5278), + [anon_sym_xor] = ACTIONS(5278), + [anon_sym_bitand] = ACTIONS(5278), + [anon_sym_not_eq] = ACTIONS(5278), + [anon_sym_DASH_DASH] = ACTIONS(5280), + [anon_sym_PLUS_PLUS] = ACTIONS(5280), + [anon_sym_DOT] = ACTIONS(5278), + [anon_sym_DOT_STAR] = ACTIONS(5280), + [anon_sym_DASH_GT] = ACTIONS(5280), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5278), + [anon_sym_decltype] = ACTIONS(5278), }, - [2268] = { - [sym_decltype_auto] = STATE(2416), - [sym_identifier] = ACTIONS(5436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5438), - [anon_sym_COMMA] = ACTIONS(5438), - [anon_sym_RPAREN] = ACTIONS(5438), - [aux_sym_preproc_if_token2] = ACTIONS(5438), - [aux_sym_preproc_else_token1] = ACTIONS(5438), - [aux_sym_preproc_elif_token1] = ACTIONS(5436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5438), - [anon_sym_LPAREN2] = ACTIONS(5438), - [anon_sym_DASH] = ACTIONS(5436), - [anon_sym_PLUS] = ACTIONS(5436), - [anon_sym_STAR] = ACTIONS(5436), - [anon_sym_SLASH] = ACTIONS(5436), - [anon_sym_PERCENT] = ACTIONS(5436), - [anon_sym_PIPE_PIPE] = ACTIONS(5438), - [anon_sym_AMP_AMP] = ACTIONS(5438), - [anon_sym_PIPE] = ACTIONS(5436), - [anon_sym_CARET] = ACTIONS(5436), - [anon_sym_AMP] = ACTIONS(5436), - [anon_sym_EQ_EQ] = ACTIONS(5438), - [anon_sym_BANG_EQ] = ACTIONS(5438), - [anon_sym_GT] = ACTIONS(5436), - [anon_sym_GT_EQ] = ACTIONS(5438), - [anon_sym_LT_EQ] = ACTIONS(5436), - [anon_sym_LT] = ACTIONS(5436), - [anon_sym_LT_LT] = ACTIONS(5436), - [anon_sym_GT_GT] = ACTIONS(5436), - [anon_sym_SEMI] = ACTIONS(5438), - [anon_sym___attribute__] = ACTIONS(5436), - [anon_sym_LBRACE] = ACTIONS(5438), - [anon_sym_RBRACE] = ACTIONS(5438), - [anon_sym_LBRACK] = ACTIONS(5438), - [anon_sym_RBRACK] = ACTIONS(5438), - [anon_sym_EQ] = ACTIONS(5436), - [anon_sym_COLON] = ACTIONS(5438), - [anon_sym_QMARK] = ACTIONS(5438), - [anon_sym_STAR_EQ] = ACTIONS(5438), - [anon_sym_SLASH_EQ] = ACTIONS(5438), - [anon_sym_PERCENT_EQ] = ACTIONS(5438), - [anon_sym_PLUS_EQ] = ACTIONS(5438), - [anon_sym_DASH_EQ] = ACTIONS(5438), - [anon_sym_LT_LT_EQ] = ACTIONS(5438), - [anon_sym_GT_GT_EQ] = ACTIONS(5438), - [anon_sym_AMP_EQ] = ACTIONS(5438), - [anon_sym_CARET_EQ] = ACTIONS(5438), - [anon_sym_PIPE_EQ] = ACTIONS(5438), - [anon_sym_and_eq] = ACTIONS(5436), - [anon_sym_or_eq] = ACTIONS(5436), - [anon_sym_xor_eq] = ACTIONS(5436), - [anon_sym_LT_EQ_GT] = ACTIONS(5438), - [anon_sym_or] = ACTIONS(5436), - [anon_sym_and] = ACTIONS(5436), - [anon_sym_bitor] = ACTIONS(5436), - [anon_sym_xor] = ACTIONS(5436), - [anon_sym_bitand] = ACTIONS(5436), - [anon_sym_not_eq] = ACTIONS(5436), - [anon_sym_DASH_DASH] = ACTIONS(5438), - [anon_sym_PLUS_PLUS] = ACTIONS(5438), - [anon_sym_DOT] = ACTIONS(5436), - [anon_sym_DOT_STAR] = ACTIONS(5438), - [anon_sym_DASH_GT] = ACTIONS(5438), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5328), - [anon_sym_decltype] = ACTIONS(5330), + [2037] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5024), + [anon_sym___extension__] = ACTIONS(5026), + [anon_sym___attribute__] = ACTIONS(5026), + [anon_sym_COLON_COLON] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_const] = ACTIONS(5024), + [anon_sym_constexpr] = ACTIONS(5026), + [anon_sym_volatile] = ACTIONS(5026), + [anon_sym_restrict] = ACTIONS(5026), + [anon_sym___restrict__] = ACTIONS(5026), + [anon_sym__Atomic] = ACTIONS(5026), + [anon_sym__Noreturn] = ACTIONS(5026), + [anon_sym_noreturn] = ACTIONS(5026), + [anon_sym_mutable] = ACTIONS(5026), + [anon_sym_constinit] = ACTIONS(5026), + [anon_sym_consteval] = ACTIONS(5026), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_LT_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_GT_EQ] = ACTIONS(5024), + [anon_sym_AMP_EQ] = ACTIONS(5026), + [anon_sym_CARET_EQ] = ACTIONS(5026), + [anon_sym_PIPE_EQ] = ACTIONS(5026), + [anon_sym_and_eq] = ACTIONS(5026), + [anon_sym_or_eq] = ACTIONS(5026), + [anon_sym_xor_eq] = ACTIONS(5026), + [anon_sym_LT_EQ_GT] = ACTIONS(5026), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_bitor] = ACTIONS(5026), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_bitand] = ACTIONS(5026), + [anon_sym_not_eq] = ACTIONS(5026), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_DOT_STAR] = ACTIONS(5026), + [anon_sym_DASH_GT] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5026), + [anon_sym_decltype] = ACTIONS(5026), + [anon_sym_final] = ACTIONS(5026), + [anon_sym_override] = ACTIONS(5026), + [anon_sym_GT2] = ACTIONS(5026), }, - [2269] = { - [sym_identifier] = ACTIONS(3112), - [aux_sym_preproc_def_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token1] = ACTIONS(3112), - [aux_sym_preproc_if_token2] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3112), - [aux_sym_preproc_else_token1] = ACTIONS(3112), - [aux_sym_preproc_elif_token1] = ACTIONS(3112), - [sym_preproc_directive] = ACTIONS(3112), - [anon_sym_LPAREN2] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3112), - [anon_sym___extension__] = ACTIONS(3112), - [anon_sym_typedef] = ACTIONS(3112), - [anon_sym_extern] = ACTIONS(3112), - [anon_sym___attribute__] = ACTIONS(3112), - [anon_sym_COLON_COLON] = ACTIONS(3114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3114), - [anon_sym___declspec] = ACTIONS(3112), - [anon_sym___based] = ACTIONS(3112), - [anon_sym_signed] = ACTIONS(3112), - [anon_sym_unsigned] = ACTIONS(3112), - [anon_sym_long] = ACTIONS(3112), - [anon_sym_short] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3112), - [anon_sym_register] = ACTIONS(3112), - [anon_sym_inline] = ACTIONS(3112), - [anon_sym___inline] = ACTIONS(3112), - [anon_sym___inline__] = ACTIONS(3112), - [anon_sym___forceinline] = ACTIONS(3112), - [anon_sym_thread_local] = ACTIONS(3112), - [anon_sym___thread] = ACTIONS(3112), - [anon_sym_const] = ACTIONS(3112), - [anon_sym_constexpr] = ACTIONS(3112), - [anon_sym_volatile] = ACTIONS(3112), - [anon_sym_restrict] = ACTIONS(3112), - [anon_sym___restrict__] = ACTIONS(3112), - [anon_sym__Atomic] = ACTIONS(3112), - [anon_sym__Noreturn] = ACTIONS(3112), - [anon_sym_noreturn] = ACTIONS(3112), - [anon_sym_mutable] = ACTIONS(3112), - [anon_sym_constinit] = ACTIONS(3112), - [anon_sym_consteval] = ACTIONS(3112), - [sym_primitive_type] = ACTIONS(3112), - [anon_sym_enum] = ACTIONS(3112), - [anon_sym_class] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3112), - [anon_sym_union] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3112), - [anon_sym_decltype] = ACTIONS(3112), - [anon_sym_virtual] = ACTIONS(3112), - [anon_sym_alignas] = ACTIONS(3112), - [anon_sym_explicit] = ACTIONS(3112), - [anon_sym_typename] = ACTIONS(3112), - [anon_sym_template] = ACTIONS(3112), - [anon_sym_operator] = ACTIONS(3112), - [anon_sym_friend] = ACTIONS(3112), - [anon_sym_public] = ACTIONS(3112), - [anon_sym_private] = ACTIONS(3112), - [anon_sym_protected] = ACTIONS(3112), - [anon_sym_using] = ACTIONS(3112), - [anon_sym_static_assert] = ACTIONS(3112), + [2038] = { + [sym_catch_clause] = STATE(2025), + [aux_sym_constructor_try_statement_repeat1] = STATE(2025), + [sym_identifier] = ACTIONS(2822), + [aux_sym_preproc_def_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token2] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), + [aux_sym_preproc_else_token1] = ACTIONS(2822), + [aux_sym_preproc_elif_token1] = ACTIONS(2822), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2822), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2822), + [sym_preproc_directive] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_AMP_AMP] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2822), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), + [anon_sym___declspec] = ACTIONS(2822), + [anon_sym___based] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym___inline] = ACTIONS(2822), + [anon_sym___inline__] = ACTIONS(2822), + [anon_sym___forceinline] = ACTIONS(2822), + [anon_sym_thread_local] = ACTIONS(2822), + [anon_sym___thread] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_constexpr] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym___restrict__] = ACTIONS(2822), + [anon_sym__Atomic] = ACTIONS(2822), + [anon_sym__Noreturn] = ACTIONS(2822), + [anon_sym_noreturn] = ACTIONS(2822), + [anon_sym_mutable] = ACTIONS(2822), + [anon_sym_constinit] = ACTIONS(2822), + [anon_sym_consteval] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2822), + [anon_sym_decltype] = ACTIONS(2822), + [anon_sym_virtual] = ACTIONS(2822), + [anon_sym_alignas] = ACTIONS(2822), + [anon_sym_explicit] = ACTIONS(2822), + [anon_sym_typename] = ACTIONS(2822), + [anon_sym_template] = ACTIONS(2822), + [anon_sym_operator] = ACTIONS(2822), + [anon_sym_friend] = ACTIONS(2822), + [anon_sym_public] = ACTIONS(2822), + [anon_sym_private] = ACTIONS(2822), + [anon_sym_protected] = ACTIONS(2822), + [anon_sym_using] = ACTIONS(2822), + [anon_sym_static_assert] = ACTIONS(2822), + [anon_sym_catch] = ACTIONS(5313), }, - [2270] = { - [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), - [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___extension__] = ACTIONS(3180), - [anon_sym_typedef] = ACTIONS(3180), - [anon_sym_extern] = ACTIONS(3180), - [anon_sym___attribute__] = 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_mutable] = ACTIONS(3180), - [anon_sym_constinit] = ACTIONS(3180), - [anon_sym_consteval] = 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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3180), - [anon_sym_decltype] = ACTIONS(3180), - [anon_sym_virtual] = ACTIONS(3180), - [anon_sym_alignas] = ACTIONS(3180), - [anon_sym_explicit] = ACTIONS(3180), - [anon_sym_typename] = ACTIONS(3180), - [anon_sym_template] = ACTIONS(3180), - [anon_sym_operator] = ACTIONS(3180), - [anon_sym_friend] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3180), - [anon_sym_static_assert] = ACTIONS(3180), + [2039] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LPAREN2] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym___extension__] = ACTIONS(5046), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5041), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5046), + [anon_sym_volatile] = ACTIONS(5046), + [anon_sym_restrict] = ACTIONS(5046), + [anon_sym___restrict__] = ACTIONS(5046), + [anon_sym__Atomic] = ACTIONS(5046), + [anon_sym__Noreturn] = ACTIONS(5046), + [anon_sym_noreturn] = ACTIONS(5046), + [anon_sym_mutable] = ACTIONS(5046), + [anon_sym_constinit] = ACTIONS(5046), + [anon_sym_consteval] = ACTIONS(5046), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_LT_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_GT_EQ] = ACTIONS(5041), + [anon_sym_AMP_EQ] = ACTIONS(5041), + [anon_sym_CARET_EQ] = ACTIONS(5041), + [anon_sym_PIPE_EQ] = ACTIONS(5041), + [anon_sym_and_eq] = ACTIONS(5041), + [anon_sym_or_eq] = ACTIONS(5041), + [anon_sym_xor_eq] = ACTIONS(5041), + [anon_sym_LT_EQ_GT] = ACTIONS(5041), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_bitor] = ACTIONS(5041), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_bitand] = ACTIONS(5041), + [anon_sym_not_eq] = ACTIONS(5041), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_DOT_STAR] = ACTIONS(5041), + [anon_sym_DASH_GT] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5046), + [anon_sym_decltype] = ACTIONS(5046), + [anon_sym_DASH_GT_STAR] = ACTIONS(5041), }, - [2271] = { - [sym_identifier] = ACTIONS(3194), - [aux_sym_preproc_def_token1] = ACTIONS(3194), - [aux_sym_preproc_if_token1] = ACTIONS(3194), - [aux_sym_preproc_if_token2] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3194), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3194), - [aux_sym_preproc_else_token1] = ACTIONS(3194), - [aux_sym_preproc_elif_token1] = ACTIONS(3194), - [sym_preproc_directive] = ACTIONS(3194), - [anon_sym_LPAREN2] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3196), - [anon_sym_AMP_AMP] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3194), - [anon_sym_typedef] = ACTIONS(3194), - [anon_sym_extern] = ACTIONS(3194), - [anon_sym___attribute__] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3196), - [anon_sym___declspec] = ACTIONS(3194), - [anon_sym___based] = ACTIONS(3194), - [anon_sym_signed] = ACTIONS(3194), - [anon_sym_unsigned] = ACTIONS(3194), - [anon_sym_long] = ACTIONS(3194), - [anon_sym_short] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_register] = ACTIONS(3194), - [anon_sym_inline] = ACTIONS(3194), - [anon_sym___inline] = ACTIONS(3194), - [anon_sym___inline__] = ACTIONS(3194), - [anon_sym___forceinline] = ACTIONS(3194), - [anon_sym_thread_local] = ACTIONS(3194), - [anon_sym___thread] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_constexpr] = ACTIONS(3194), - [anon_sym_volatile] = ACTIONS(3194), - [anon_sym_restrict] = ACTIONS(3194), - [anon_sym___restrict__] = ACTIONS(3194), - [anon_sym__Atomic] = ACTIONS(3194), - [anon_sym__Noreturn] = ACTIONS(3194), - [anon_sym_noreturn] = ACTIONS(3194), - [anon_sym_mutable] = ACTIONS(3194), - [anon_sym_constinit] = ACTIONS(3194), - [anon_sym_consteval] = ACTIONS(3194), - [sym_primitive_type] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_struct] = ACTIONS(3194), - [anon_sym_union] = ACTIONS(3194), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3194), - [anon_sym_decltype] = ACTIONS(3194), - [anon_sym_virtual] = ACTIONS(3194), - [anon_sym_alignas] = ACTIONS(3194), - [anon_sym_explicit] = ACTIONS(3194), - [anon_sym_typename] = ACTIONS(3194), - [anon_sym_template] = ACTIONS(3194), - [anon_sym_operator] = ACTIONS(3194), - [anon_sym_friend] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_static_assert] = ACTIONS(3194), + [2040] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [aux_sym_preproc_else_token1] = ACTIONS(2186), + [aux_sym_preproc_elif_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), }, - [2272] = { - [sym_attribute_declaration] = STATE(2402), - [sym_parameter_list] = STATE(2398), - [aux_sym_attributed_declarator_repeat1] = STATE(2402), - [sym_identifier] = ACTIONS(5811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5813), - [anon_sym_COMMA] = ACTIONS(5813), - [anon_sym_RPAREN] = ACTIONS(5813), - [aux_sym_preproc_if_token2] = ACTIONS(5813), - [aux_sym_preproc_else_token1] = ACTIONS(5813), - [aux_sym_preproc_elif_token1] = ACTIONS(5811), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5813), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5813), - [anon_sym_LPAREN2] = ACTIONS(5805), - [anon_sym_DASH] = ACTIONS(5811), - [anon_sym_PLUS] = ACTIONS(5811), - [anon_sym_STAR] = ACTIONS(5811), - [anon_sym_SLASH] = ACTIONS(5811), - [anon_sym_PERCENT] = ACTIONS(5811), - [anon_sym_PIPE_PIPE] = ACTIONS(5813), - [anon_sym_AMP_AMP] = ACTIONS(5813), - [anon_sym_PIPE] = ACTIONS(5811), - [anon_sym_CARET] = ACTIONS(5811), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_EQ_EQ] = ACTIONS(5813), - [anon_sym_BANG_EQ] = ACTIONS(5813), - [anon_sym_GT] = ACTIONS(5811), - [anon_sym_GT_EQ] = ACTIONS(5813), - [anon_sym_LT_EQ] = ACTIONS(5811), - [anon_sym_LT] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5811), - [anon_sym_GT_GT] = ACTIONS(5811), - [anon_sym_SEMI] = ACTIONS(5813), - [anon_sym___attribute__] = ACTIONS(5811), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5807), - [anon_sym_RBRACE] = ACTIONS(5813), - [anon_sym_LBRACK] = ACTIONS(5809), - [anon_sym_RBRACK] = ACTIONS(5813), - [anon_sym_EQ] = ACTIONS(5811), - [anon_sym_COLON] = ACTIONS(5813), - [anon_sym_QMARK] = ACTIONS(5813), - [anon_sym_STAR_EQ] = ACTIONS(5813), - [anon_sym_SLASH_EQ] = ACTIONS(5813), - [anon_sym_PERCENT_EQ] = ACTIONS(5813), - [anon_sym_PLUS_EQ] = ACTIONS(5813), - [anon_sym_DASH_EQ] = ACTIONS(5813), - [anon_sym_LT_LT_EQ] = ACTIONS(5813), - [anon_sym_GT_GT_EQ] = ACTIONS(5813), - [anon_sym_AMP_EQ] = ACTIONS(5813), - [anon_sym_CARET_EQ] = ACTIONS(5813), - [anon_sym_PIPE_EQ] = ACTIONS(5813), - [anon_sym_and_eq] = ACTIONS(5811), - [anon_sym_or_eq] = ACTIONS(5811), - [anon_sym_xor_eq] = ACTIONS(5811), - [anon_sym_LT_EQ_GT] = ACTIONS(5813), - [anon_sym_or] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(5811), - [anon_sym_bitor] = ACTIONS(5811), - [anon_sym_xor] = ACTIONS(5811), - [anon_sym_bitand] = ACTIONS(5811), - [anon_sym_not_eq] = ACTIONS(5811), - [anon_sym_DASH_DASH] = ACTIONS(5813), - [anon_sym_PLUS_PLUS] = ACTIONS(5813), - [anon_sym_DOT] = ACTIONS(5811), - [anon_sym_DOT_STAR] = ACTIONS(5813), - [anon_sym_DASH_GT] = ACTIONS(5813), + [2041] = { + [sym_template_argument_list] = STATE(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5009), + [anon_sym_LPAREN2] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5009), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5012), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5012), + [anon_sym_volatile] = ACTIONS(5012), + [anon_sym_restrict] = ACTIONS(5012), + [anon_sym___restrict__] = ACTIONS(5012), + [anon_sym__Atomic] = ACTIONS(5012), + [anon_sym__Noreturn] = ACTIONS(5012), + [anon_sym_noreturn] = ACTIONS(5012), + [anon_sym_mutable] = ACTIONS(5012), + [anon_sym_constinit] = ACTIONS(5012), + [anon_sym_consteval] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5019), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_LT_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_GT_EQ] = ACTIONS(5019), + [anon_sym_AMP_EQ] = ACTIONS(5019), + [anon_sym_CARET_EQ] = ACTIONS(5019), + [anon_sym_PIPE_EQ] = ACTIONS(5019), + [anon_sym_and_eq] = ACTIONS(5019), + [anon_sym_or_eq] = ACTIONS(5019), + [anon_sym_xor_eq] = ACTIONS(5019), + [anon_sym_LT_EQ_GT] = ACTIONS(5019), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5019), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5019), + [anon_sym_not_eq] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5014), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5012), + [anon_sym_decltype] = ACTIONS(5012), + [anon_sym_DASH_GT_STAR] = ACTIONS(5019), }, - [2273] = { - [sym_identifier] = ACTIONS(2921), - [aux_sym_preproc_def_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2921), - [aux_sym_preproc_if_token2] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2921), - [aux_sym_preproc_else_token1] = ACTIONS(2921), - [aux_sym_preproc_elif_token1] = ACTIONS(2921), - [sym_preproc_directive] = ACTIONS(2921), - [anon_sym_LPAREN2] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym___extension__] = ACTIONS(2921), - [anon_sym_typedef] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym___attribute__] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2923), - [anon_sym___declspec] = ACTIONS(2921), - [anon_sym___based] = ACTIONS(2921), - [anon_sym_signed] = ACTIONS(2921), - [anon_sym_unsigned] = ACTIONS(2921), - [anon_sym_long] = ACTIONS(2921), - [anon_sym_short] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_register] = ACTIONS(2921), - [anon_sym_inline] = ACTIONS(2921), - [anon_sym___inline] = ACTIONS(2921), - [anon_sym___inline__] = ACTIONS(2921), - [anon_sym___forceinline] = ACTIONS(2921), - [anon_sym_thread_local] = ACTIONS(2921), - [anon_sym___thread] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym___restrict__] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym__Noreturn] = ACTIONS(2921), - [anon_sym_noreturn] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), + [2042] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6823), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7213), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7213), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2043] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6767), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7244), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7244), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2044] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6807), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7238), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7238), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2045] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6814), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7224), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7224), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2046] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6784), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7243), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7243), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2047] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6813), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7199), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7199), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2048] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6877), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7213), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7213), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2049] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [aux_sym_preproc_else_token1] = ACTIONS(2186), + [aux_sym_preproc_elif_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(5348), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + }, + [2050] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6851), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7223), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7223), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2051] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6830), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7224), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7224), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2052] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6898), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7211), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7211), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2053] = { + [sym__declaration_modifiers] = STATE(2300), + [sym__declaration_specifiers] = STATE(4602), + [sym_attribute_specifier] = STATE(2300), + [sym_attribute_declaration] = STATE(2300), + [sym_ms_declspec_modifier] = STATE(2300), + [sym_storage_class_specifier] = STATE(2300), + [sym_type_qualifier] = STATE(2300), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_parameter_declaration] = STATE(8195), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2300), + [sym_alignas_specifier] = STATE(2300), + [sym_dependent_type] = STATE(3623), + [sym_optional_parameter_declaration] = STATE(8195), + [sym_variadic_parameter_declaration] = STATE(8195), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2300), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2921), - [anon_sym_decltype] = ACTIONS(2921), - [anon_sym_virtual] = ACTIONS(2921), - [anon_sym_alignas] = ACTIONS(2921), - [anon_sym_explicit] = ACTIONS(2921), - [anon_sym_typename] = ACTIONS(2921), - [anon_sym_template] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(2921), - [anon_sym_friend] = ACTIONS(2921), - [anon_sym_public] = ACTIONS(2921), - [anon_sym_private] = ACTIONS(2921), - [anon_sym_protected] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_static_assert] = ACTIONS(2921), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(2042), + [anon_sym_template] = ACTIONS(1428), }, - [2274] = { - [sym_identifier] = ACTIONS(3219), - [aux_sym_preproc_def_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token2] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), - [aux_sym_preproc_else_token1] = ACTIONS(3219), - [aux_sym_preproc_elif_token1] = ACTIONS(3219), - [sym_preproc_directive] = ACTIONS(3219), - [anon_sym_LPAREN2] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym___extension__] = ACTIONS(3219), - [anon_sym_typedef] = ACTIONS(3219), - [anon_sym_extern] = ACTIONS(3219), - [anon_sym___attribute__] = ACTIONS(3219), - [anon_sym_COLON_COLON] = ACTIONS(3221), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), - [anon_sym___declspec] = ACTIONS(3219), - [anon_sym___based] = ACTIONS(3219), - [anon_sym_signed] = ACTIONS(3219), - [anon_sym_unsigned] = ACTIONS(3219), - [anon_sym_long] = ACTIONS(3219), - [anon_sym_short] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_register] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym___inline] = ACTIONS(3219), - [anon_sym___inline__] = ACTIONS(3219), - [anon_sym___forceinline] = ACTIONS(3219), - [anon_sym_thread_local] = ACTIONS(3219), - [anon_sym___thread] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_constexpr] = ACTIONS(3219), - [anon_sym_volatile] = ACTIONS(3219), - [anon_sym_restrict] = ACTIONS(3219), - [anon_sym___restrict__] = ACTIONS(3219), - [anon_sym__Atomic] = ACTIONS(3219), - [anon_sym__Noreturn] = ACTIONS(3219), - [anon_sym_noreturn] = ACTIONS(3219), - [anon_sym_mutable] = ACTIONS(3219), - [anon_sym_constinit] = ACTIONS(3219), - [anon_sym_consteval] = ACTIONS(3219), - [sym_primitive_type] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), + [2054] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6769), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7211), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7211), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2055] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6875), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7199), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7199), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2056] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6820), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7223), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7223), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2057] = { + [sym__declaration_modifiers] = STATE(3990), + [sym_attribute_specifier] = STATE(3990), + [sym_attribute_declaration] = STATE(3990), + [sym_ms_declspec_modifier] = STATE(3990), + [sym_ms_based_modifier] = STATE(9234), + [sym__declarator] = STATE(7179), + [sym_parenthesized_declarator] = STATE(6752), + [sym_attributed_declarator] = STATE(6752), + [sym_pointer_declarator] = STATE(6752), + [sym_function_declarator] = STATE(6749), + [sym_array_declarator] = STATE(6752), + [sym_storage_class_specifier] = STATE(3990), + [sym_type_qualifier] = STATE(3990), + [sym_decltype] = STATE(9043), + [sym_virtual] = STATE(3990), + [sym_alignas_specifier] = STATE(3990), + [sym_explicit_function_specifier] = STATE(3990), + [sym_operator_cast] = STATE(7225), + [sym__constructor_specifiers] = STATE(3990), + [sym_reference_declarator] = STATE(6752), + [sym_structured_binding_declarator] = STATE(6752), + [sym_template_type] = STATE(9043), + [sym_template_function] = STATE(6752), + [sym_destructor_name] = STATE(6752), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(6087), + [sym_qualified_identifier] = STATE(6752), + [sym_qualified_operator_cast_identifier] = STATE(7225), + [sym_operator_name] = STATE(6752), + [aux_sym_operator_cast_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(5330), + [anon_sym_LPAREN2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym___extension__] = ACTIONS(5332), + [anon_sym_extern] = ACTIONS(5334), + [anon_sym___attribute__] = ACTIONS(5336), + [anon_sym_COLON_COLON] = ACTIONS(5338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5340), + [anon_sym___declspec] = ACTIONS(5342), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_static] = ACTIONS(5334), + [anon_sym_register] = ACTIONS(5334), + [anon_sym_inline] = ACTIONS(5334), + [anon_sym___inline] = ACTIONS(5334), + [anon_sym___inline__] = ACTIONS(5334), + [anon_sym___forceinline] = ACTIONS(5334), + [anon_sym_thread_local] = ACTIONS(5334), + [anon_sym___thread] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5332), + [anon_sym_constexpr] = ACTIONS(5332), + [anon_sym_volatile] = ACTIONS(5332), + [anon_sym_restrict] = ACTIONS(5332), + [anon_sym___restrict__] = ACTIONS(5332), + [anon_sym__Atomic] = ACTIONS(5332), + [anon_sym__Noreturn] = ACTIONS(5332), + [anon_sym_noreturn] = ACTIONS(5332), + [anon_sym_mutable] = ACTIONS(5332), + [anon_sym_constinit] = ACTIONS(5332), + [anon_sym_consteval] = ACTIONS(5332), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2172), + [anon_sym_virtual] = ACTIONS(5344), + [anon_sym_alignas] = ACTIONS(5346), + [anon_sym_explicit] = ACTIONS(125), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(131), + }, + [2058] = { + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token2] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [aux_sym_preproc_else_token1] = ACTIONS(2863), + [aux_sym_preproc_elif_token1] = ACTIONS(2863), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3219), - [anon_sym_decltype] = ACTIONS(3219), - [anon_sym_virtual] = ACTIONS(3219), - [anon_sym_alignas] = ACTIONS(3219), - [anon_sym_explicit] = ACTIONS(3219), - [anon_sym_typename] = ACTIONS(3219), - [anon_sym_template] = ACTIONS(3219), - [anon_sym_operator] = ACTIONS(3219), - [anon_sym_friend] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_static_assert] = ACTIONS(3219), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_friend] = ACTIONS(2863), + [anon_sym_public] = ACTIONS(2863), + [anon_sym_private] = ACTIONS(2863), + [anon_sym_protected] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), + [anon_sym_catch] = ACTIONS(2863), }, - [2275] = { + [2059] = { + [sym_argument_list] = STATE(2794), + [sym_initializer_list] = STATE(2794), + [sym_decltype_auto] = STATE(2454), + [sym_new_declarator] = STATE(2481), + [sym_identifier] = ACTIONS(5350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5352), + [anon_sym_COMMA] = ACTIONS(5352), + [anon_sym_RPAREN] = ACTIONS(5352), + [aux_sym_preproc_if_token2] = ACTIONS(5352), + [aux_sym_preproc_else_token1] = ACTIONS(5352), + [aux_sym_preproc_elif_token1] = ACTIONS(5350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5352), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5352), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5350), + [anon_sym_PLUS] = ACTIONS(5350), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_SLASH] = ACTIONS(5350), + [anon_sym_PERCENT] = ACTIONS(5350), + [anon_sym_PIPE_PIPE] = ACTIONS(5352), + [anon_sym_AMP_AMP] = ACTIONS(5352), + [anon_sym_PIPE] = ACTIONS(5350), + [anon_sym_CARET] = ACTIONS(5350), + [anon_sym_AMP] = ACTIONS(5350), + [anon_sym_EQ_EQ] = ACTIONS(5352), + [anon_sym_BANG_EQ] = ACTIONS(5352), + [anon_sym_GT] = ACTIONS(5350), + [anon_sym_GT_EQ] = ACTIONS(5352), + [anon_sym_LT_EQ] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(5350), + [anon_sym_LT_LT] = ACTIONS(5350), + [anon_sym_GT_GT] = ACTIONS(5350), + [anon_sym_SEMI] = ACTIONS(5352), + [anon_sym___attribute__] = ACTIONS(5350), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(5352), + [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_RBRACK] = ACTIONS(5352), + [anon_sym_EQ] = ACTIONS(5350), + [anon_sym_COLON] = ACTIONS(5352), + [anon_sym_QMARK] = ACTIONS(5352), + [anon_sym_STAR_EQ] = ACTIONS(5352), + [anon_sym_SLASH_EQ] = ACTIONS(5352), + [anon_sym_PERCENT_EQ] = ACTIONS(5352), + [anon_sym_PLUS_EQ] = ACTIONS(5352), + [anon_sym_DASH_EQ] = ACTIONS(5352), + [anon_sym_LT_LT_EQ] = ACTIONS(5352), + [anon_sym_GT_GT_EQ] = ACTIONS(5352), + [anon_sym_AMP_EQ] = ACTIONS(5352), + [anon_sym_CARET_EQ] = ACTIONS(5352), + [anon_sym_PIPE_EQ] = ACTIONS(5352), + [anon_sym_and_eq] = ACTIONS(5350), + [anon_sym_or_eq] = ACTIONS(5350), + [anon_sym_xor_eq] = ACTIONS(5350), + [anon_sym_LT_EQ_GT] = ACTIONS(5352), + [anon_sym_or] = ACTIONS(5350), + [anon_sym_and] = ACTIONS(5350), + [anon_sym_bitor] = ACTIONS(5350), + [anon_sym_xor] = ACTIONS(5350), + [anon_sym_bitand] = ACTIONS(5350), + [anon_sym_not_eq] = ACTIONS(5350), + [anon_sym_DASH_DASH] = ACTIONS(5352), + [anon_sym_PLUS_PLUS] = ACTIONS(5352), + [anon_sym_DOT] = ACTIONS(5350), + [anon_sym_DOT_STAR] = ACTIONS(5352), + [anon_sym_DASH_GT] = ACTIONS(5352), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5358), + [anon_sym_decltype] = ACTIONS(5360), + }, + [2060] = { + [sym_catch_clause] = STATE(2073), + [aux_sym_constructor_try_statement_repeat1] = STATE(2073), + [sym_identifier] = ACTIONS(2838), + [aux_sym_preproc_def_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token2] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), + [aux_sym_preproc_else_token1] = ACTIONS(2838), + [aux_sym_preproc_elif_token1] = ACTIONS(2838), + [sym_preproc_directive] = ACTIONS(2838), + [anon_sym_LPAREN2] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2838), + [anon_sym_typedef] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym___attribute__] = ACTIONS(2838), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), + [anon_sym___declspec] = ACTIONS(2838), + [anon_sym___based] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2838), + [anon_sym_unsigned] = ACTIONS(2838), + [anon_sym_long] = ACTIONS(2838), + [anon_sym_short] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_register] = ACTIONS(2838), + [anon_sym_inline] = ACTIONS(2838), + [anon_sym___inline] = ACTIONS(2838), + [anon_sym___inline__] = ACTIONS(2838), + [anon_sym___forceinline] = ACTIONS(2838), + [anon_sym_thread_local] = ACTIONS(2838), + [anon_sym___thread] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_constexpr] = ACTIONS(2838), + [anon_sym_volatile] = ACTIONS(2838), + [anon_sym_restrict] = ACTIONS(2838), + [anon_sym___restrict__] = ACTIONS(2838), + [anon_sym__Atomic] = ACTIONS(2838), + [anon_sym__Noreturn] = ACTIONS(2838), + [anon_sym_noreturn] = ACTIONS(2838), + [anon_sym_mutable] = ACTIONS(2838), + [anon_sym_constinit] = ACTIONS(2838), + [anon_sym_consteval] = ACTIONS(2838), + [sym_primitive_type] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_class] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2838), + [anon_sym_decltype] = ACTIONS(2838), + [anon_sym_virtual] = ACTIONS(2838), + [anon_sym_alignas] = ACTIONS(2838), + [anon_sym_explicit] = ACTIONS(2838), + [anon_sym_typename] = ACTIONS(2838), + [anon_sym_template] = ACTIONS(2838), + [anon_sym_operator] = ACTIONS(2838), + [anon_sym_friend] = ACTIONS(2838), + [anon_sym_public] = ACTIONS(2838), + [anon_sym_private] = ACTIONS(2838), + [anon_sym_protected] = ACTIONS(2838), + [anon_sym_using] = ACTIONS(2838), + [anon_sym_static_assert] = ACTIONS(2838), + [anon_sym_catch] = ACTIONS(5362), + }, + [2061] = { + [sym_argument_list] = STATE(2804), + [sym_initializer_list] = STATE(2804), + [sym_decltype_auto] = STATE(2454), + [sym_new_declarator] = STATE(2421), + [sym_identifier] = ACTIONS(5364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5366), + [anon_sym_COMMA] = ACTIONS(5366), + [anon_sym_RPAREN] = ACTIONS(5366), + [aux_sym_preproc_if_token2] = ACTIONS(5366), + [aux_sym_preproc_else_token1] = ACTIONS(5366), + [aux_sym_preproc_elif_token1] = ACTIONS(5364), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5366), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5366), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5364), + [anon_sym_PLUS] = ACTIONS(5364), + [anon_sym_STAR] = ACTIONS(5364), + [anon_sym_SLASH] = ACTIONS(5364), + [anon_sym_PERCENT] = ACTIONS(5364), + [anon_sym_PIPE_PIPE] = ACTIONS(5366), + [anon_sym_AMP_AMP] = ACTIONS(5366), + [anon_sym_PIPE] = ACTIONS(5364), + [anon_sym_CARET] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(5364), + [anon_sym_EQ_EQ] = ACTIONS(5366), + [anon_sym_BANG_EQ] = ACTIONS(5366), + [anon_sym_GT] = ACTIONS(5364), + [anon_sym_GT_EQ] = ACTIONS(5366), + [anon_sym_LT_EQ] = ACTIONS(5364), + [anon_sym_LT] = ACTIONS(5364), + [anon_sym_LT_LT] = ACTIONS(5364), + [anon_sym_GT_GT] = ACTIONS(5364), + [anon_sym_SEMI] = ACTIONS(5366), + [anon_sym___attribute__] = ACTIONS(5364), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(5366), + [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_RBRACK] = ACTIONS(5366), + [anon_sym_EQ] = ACTIONS(5364), + [anon_sym_COLON] = ACTIONS(5366), + [anon_sym_QMARK] = ACTIONS(5366), + [anon_sym_STAR_EQ] = ACTIONS(5366), + [anon_sym_SLASH_EQ] = ACTIONS(5366), + [anon_sym_PERCENT_EQ] = ACTIONS(5366), + [anon_sym_PLUS_EQ] = ACTIONS(5366), + [anon_sym_DASH_EQ] = ACTIONS(5366), + [anon_sym_LT_LT_EQ] = ACTIONS(5366), + [anon_sym_GT_GT_EQ] = ACTIONS(5366), + [anon_sym_AMP_EQ] = ACTIONS(5366), + [anon_sym_CARET_EQ] = ACTIONS(5366), + [anon_sym_PIPE_EQ] = ACTIONS(5366), + [anon_sym_and_eq] = ACTIONS(5364), + [anon_sym_or_eq] = ACTIONS(5364), + [anon_sym_xor_eq] = ACTIONS(5364), + [anon_sym_LT_EQ_GT] = ACTIONS(5366), + [anon_sym_or] = ACTIONS(5364), + [anon_sym_and] = ACTIONS(5364), + [anon_sym_bitor] = ACTIONS(5364), + [anon_sym_xor] = ACTIONS(5364), + [anon_sym_bitand] = ACTIONS(5364), + [anon_sym_not_eq] = ACTIONS(5364), + [anon_sym_DASH_DASH] = ACTIONS(5366), + [anon_sym_PLUS_PLUS] = ACTIONS(5366), + [anon_sym_DOT] = ACTIONS(5364), + [anon_sym_DOT_STAR] = ACTIONS(5366), + [anon_sym_DASH_GT] = ACTIONS(5366), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5358), + [anon_sym_decltype] = ACTIONS(5360), + }, + [2062] = { + [sym_template_argument_list] = STATE(2099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5009), + [anon_sym_LPAREN2] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5009), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5368), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5012), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5009), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5012), + [anon_sym_volatile] = ACTIONS(5012), + [anon_sym_restrict] = ACTIONS(5012), + [anon_sym___restrict__] = ACTIONS(5012), + [anon_sym__Atomic] = ACTIONS(5012), + [anon_sym__Noreturn] = ACTIONS(5012), + [anon_sym_noreturn] = ACTIONS(5012), + [anon_sym_mutable] = ACTIONS(5012), + [anon_sym_constinit] = ACTIONS(5012), + [anon_sym_consteval] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5019), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_LT_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_GT_EQ] = ACTIONS(5019), + [anon_sym_AMP_EQ] = ACTIONS(5019), + [anon_sym_CARET_EQ] = ACTIONS(5019), + [anon_sym_PIPE_EQ] = ACTIONS(5019), + [anon_sym_and_eq] = ACTIONS(5019), + [anon_sym_or_eq] = ACTIONS(5019), + [anon_sym_xor_eq] = ACTIONS(5019), + [anon_sym_LT_EQ_GT] = ACTIONS(5019), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5019), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5019), + [anon_sym_not_eq] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5012), + [anon_sym_decltype] = ACTIONS(5012), + [anon_sym_DASH_GT_STAR] = ACTIONS(5019), + }, + [2063] = { + [sym_string_literal] = STATE(2144), + [sym_template_argument_list] = STATE(3208), + [sym_raw_string_literal] = STATE(2144), + [sym_identifier] = ACTIONS(4145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [aux_sym_preproc_if_token2] = ACTIONS(4137), + [aux_sym_preproc_else_token1] = ACTIONS(4137), + [aux_sym_preproc_elif_token1] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5371), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4145), + [anon_sym_or_eq] = ACTIONS(4145), + [anon_sym_xor_eq] = ACTIONS(4145), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + }, + [2064] = { + [sym_identifier] = ACTIONS(2136), + [aux_sym_preproc_def_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token2] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2136), + [aux_sym_preproc_else_token1] = ACTIONS(2136), + [aux_sym_preproc_elif_token1] = ACTIONS(2136), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2136), + [sym_preproc_directive] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym___extension__] = ACTIONS(2136), + [anon_sym_typedef] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym___attribute__] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2134), + [anon_sym___declspec] = ACTIONS(2136), + [anon_sym___based] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2136), + [anon_sym_unsigned] = ACTIONS(2136), + [anon_sym_long] = ACTIONS(2136), + [anon_sym_short] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_register] = ACTIONS(2136), + [anon_sym_inline] = ACTIONS(2136), + [anon_sym___inline] = ACTIONS(2136), + [anon_sym___inline__] = ACTIONS(2136), + [anon_sym___forceinline] = ACTIONS(2136), + [anon_sym_thread_local] = ACTIONS(2136), + [anon_sym___thread] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_constexpr] = ACTIONS(2136), + [anon_sym_volatile] = ACTIONS(2136), + [anon_sym_restrict] = ACTIONS(2136), + [anon_sym___restrict__] = ACTIONS(2136), + [anon_sym__Atomic] = ACTIONS(2136), + [anon_sym__Noreturn] = ACTIONS(2136), + [anon_sym_noreturn] = ACTIONS(2136), + [anon_sym_mutable] = ACTIONS(2136), + [anon_sym_constinit] = ACTIONS(2136), + [anon_sym_consteval] = ACTIONS(2136), + [sym_primitive_type] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_class] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2136), + [anon_sym_decltype] = ACTIONS(2136), + [anon_sym_virtual] = ACTIONS(2136), + [anon_sym_alignas] = ACTIONS(2136), + [anon_sym_explicit] = ACTIONS(2136), + [anon_sym_typename] = ACTIONS(2136), + [anon_sym_template] = ACTIONS(2136), + [anon_sym_operator] = ACTIONS(2136), + [anon_sym_friend] = ACTIONS(2136), + [anon_sym_public] = ACTIONS(2136), + [anon_sym_private] = ACTIONS(2136), + [anon_sym_protected] = ACTIONS(2136), + [anon_sym_using] = ACTIONS(2136), + [anon_sym_static_assert] = ACTIONS(2136), + [anon_sym_catch] = ACTIONS(2136), + }, + [2065] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [aux_sym_preproc_else_token1] = ACTIONS(2186), + [aux_sym_preproc_elif_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + }, + [2066] = { + [sym_string_literal] = STATE(3575), + [sym_template_argument_list] = STATE(4720), + [sym_raw_string_literal] = STATE(3575), + [sym_identifier] = ACTIONS(4145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [aux_sym_preproc_if_token2] = ACTIONS(4137), + [aux_sym_preproc_else_token1] = ACTIONS(4137), + [aux_sym_preproc_elif_token1] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5374), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5377), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(5379), + [anon_sym_SLASH_EQ] = ACTIONS(5379), + [anon_sym_PERCENT_EQ] = ACTIONS(5379), + [anon_sym_PLUS_EQ] = ACTIONS(5379), + [anon_sym_DASH_EQ] = ACTIONS(5379), + [anon_sym_LT_LT_EQ] = ACTIONS(5379), + [anon_sym_GT_GT_EQ] = ACTIONS(5379), + [anon_sym_AMP_EQ] = ACTIONS(5379), + [anon_sym_CARET_EQ] = ACTIONS(5379), + [anon_sym_PIPE_EQ] = ACTIONS(5379), + [anon_sym_and_eq] = ACTIONS(5377), + [anon_sym_or_eq] = ACTIONS(5377), + [anon_sym_xor_eq] = ACTIONS(5377), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3846), + [anon_sym_u_DQUOTE] = ACTIONS(3846), + [anon_sym_U_DQUOTE] = ACTIONS(3846), + [anon_sym_u8_DQUOTE] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3846), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + }, + [2067] = { + [sym_catch_clause] = STATE(2073), + [aux_sym_constructor_try_statement_repeat1] = STATE(2073), + [sym_identifier] = ACTIONS(2822), + [aux_sym_preproc_def_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token2] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), + [aux_sym_preproc_else_token1] = ACTIONS(2822), + [aux_sym_preproc_elif_token1] = ACTIONS(2822), + [sym_preproc_directive] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_AMP_AMP] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2822), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), + [anon_sym___declspec] = ACTIONS(2822), + [anon_sym___based] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym___inline] = ACTIONS(2822), + [anon_sym___inline__] = ACTIONS(2822), + [anon_sym___forceinline] = ACTIONS(2822), + [anon_sym_thread_local] = ACTIONS(2822), + [anon_sym___thread] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_constexpr] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym___restrict__] = ACTIONS(2822), + [anon_sym__Atomic] = ACTIONS(2822), + [anon_sym__Noreturn] = ACTIONS(2822), + [anon_sym_noreturn] = ACTIONS(2822), + [anon_sym_mutable] = ACTIONS(2822), + [anon_sym_constinit] = ACTIONS(2822), + [anon_sym_consteval] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2822), + [anon_sym_decltype] = ACTIONS(2822), + [anon_sym_virtual] = ACTIONS(2822), + [anon_sym_alignas] = ACTIONS(2822), + [anon_sym_explicit] = ACTIONS(2822), + [anon_sym_typename] = ACTIONS(2822), + [anon_sym_template] = ACTIONS(2822), + [anon_sym_operator] = ACTIONS(2822), + [anon_sym_friend] = ACTIONS(2822), + [anon_sym_public] = ACTIONS(2822), + [anon_sym_private] = ACTIONS(2822), + [anon_sym_protected] = ACTIONS(2822), + [anon_sym_using] = ACTIONS(2822), + [anon_sym_static_assert] = ACTIONS(2822), + [anon_sym_catch] = ACTIONS(5362), + }, + [2068] = { + [sym_argument_list] = STATE(2831), + [sym_initializer_list] = STATE(2831), + [sym_decltype_auto] = STATE(2454), + [sym_new_declarator] = STATE(2428), + [sym_identifier] = ACTIONS(5381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5383), + [anon_sym_COMMA] = ACTIONS(5383), + [anon_sym_RPAREN] = ACTIONS(5383), + [aux_sym_preproc_if_token2] = ACTIONS(5383), + [aux_sym_preproc_else_token1] = ACTIONS(5383), + [aux_sym_preproc_elif_token1] = ACTIONS(5381), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5383), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5383), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5381), + [anon_sym_PLUS] = ACTIONS(5381), + [anon_sym_STAR] = ACTIONS(5381), + [anon_sym_SLASH] = ACTIONS(5381), + [anon_sym_PERCENT] = ACTIONS(5381), + [anon_sym_PIPE_PIPE] = ACTIONS(5383), + [anon_sym_AMP_AMP] = ACTIONS(5383), + [anon_sym_PIPE] = ACTIONS(5381), + [anon_sym_CARET] = ACTIONS(5381), + [anon_sym_AMP] = ACTIONS(5381), + [anon_sym_EQ_EQ] = ACTIONS(5383), + [anon_sym_BANG_EQ] = ACTIONS(5383), + [anon_sym_GT] = ACTIONS(5381), + [anon_sym_GT_EQ] = ACTIONS(5383), + [anon_sym_LT_EQ] = ACTIONS(5381), + [anon_sym_LT] = ACTIONS(5381), + [anon_sym_LT_LT] = ACTIONS(5381), + [anon_sym_GT_GT] = ACTIONS(5381), + [anon_sym_SEMI] = ACTIONS(5383), + [anon_sym___attribute__] = ACTIONS(5381), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(5383), + [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_RBRACK] = ACTIONS(5383), + [anon_sym_EQ] = ACTIONS(5381), + [anon_sym_COLON] = ACTIONS(5383), + [anon_sym_QMARK] = ACTIONS(5383), + [anon_sym_STAR_EQ] = ACTIONS(5383), + [anon_sym_SLASH_EQ] = ACTIONS(5383), + [anon_sym_PERCENT_EQ] = ACTIONS(5383), + [anon_sym_PLUS_EQ] = ACTIONS(5383), + [anon_sym_DASH_EQ] = ACTIONS(5383), + [anon_sym_LT_LT_EQ] = ACTIONS(5383), + [anon_sym_GT_GT_EQ] = ACTIONS(5383), + [anon_sym_AMP_EQ] = ACTIONS(5383), + [anon_sym_CARET_EQ] = ACTIONS(5383), + [anon_sym_PIPE_EQ] = ACTIONS(5383), + [anon_sym_and_eq] = ACTIONS(5381), + [anon_sym_or_eq] = ACTIONS(5381), + [anon_sym_xor_eq] = ACTIONS(5381), + [anon_sym_LT_EQ_GT] = ACTIONS(5383), + [anon_sym_or] = ACTIONS(5381), + [anon_sym_and] = ACTIONS(5381), + [anon_sym_bitor] = ACTIONS(5381), + [anon_sym_xor] = ACTIONS(5381), + [anon_sym_bitand] = ACTIONS(5381), + [anon_sym_not_eq] = ACTIONS(5381), + [anon_sym_DASH_DASH] = ACTIONS(5383), + [anon_sym_PLUS_PLUS] = ACTIONS(5383), + [anon_sym_DOT] = ACTIONS(5381), + [anon_sym_DOT_STAR] = ACTIONS(5383), + [anon_sym_DASH_GT] = ACTIONS(5383), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5358), + [anon_sym_decltype] = ACTIONS(5360), + }, + [2069] = { + [sym_argument_list] = STATE(2812), + [sym_initializer_list] = STATE(2812), + [sym_decltype_auto] = STATE(2454), + [sym_new_declarator] = STATE(2458), + [sym_identifier] = ACTIONS(5385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5387), + [anon_sym_COMMA] = ACTIONS(5387), + [anon_sym_RPAREN] = ACTIONS(5387), + [aux_sym_preproc_if_token2] = ACTIONS(5387), + [aux_sym_preproc_else_token1] = ACTIONS(5387), + [aux_sym_preproc_elif_token1] = ACTIONS(5385), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5387), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5387), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5385), + [anon_sym_PLUS] = ACTIONS(5385), + [anon_sym_STAR] = ACTIONS(5385), + [anon_sym_SLASH] = ACTIONS(5385), + [anon_sym_PERCENT] = ACTIONS(5385), + [anon_sym_PIPE_PIPE] = ACTIONS(5387), + [anon_sym_AMP_AMP] = ACTIONS(5387), + [anon_sym_PIPE] = ACTIONS(5385), + [anon_sym_CARET] = ACTIONS(5385), + [anon_sym_AMP] = ACTIONS(5385), + [anon_sym_EQ_EQ] = ACTIONS(5387), + [anon_sym_BANG_EQ] = ACTIONS(5387), + [anon_sym_GT] = ACTIONS(5385), + [anon_sym_GT_EQ] = ACTIONS(5387), + [anon_sym_LT_EQ] = ACTIONS(5385), + [anon_sym_LT] = ACTIONS(5385), + [anon_sym_LT_LT] = ACTIONS(5385), + [anon_sym_GT_GT] = ACTIONS(5385), + [anon_sym_SEMI] = ACTIONS(5387), + [anon_sym___attribute__] = ACTIONS(5385), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(5387), + [anon_sym_LBRACK] = ACTIONS(5356), + [anon_sym_RBRACK] = ACTIONS(5387), + [anon_sym_EQ] = ACTIONS(5385), + [anon_sym_COLON] = ACTIONS(5387), + [anon_sym_QMARK] = ACTIONS(5387), + [anon_sym_STAR_EQ] = ACTIONS(5387), + [anon_sym_SLASH_EQ] = ACTIONS(5387), + [anon_sym_PERCENT_EQ] = ACTIONS(5387), + [anon_sym_PLUS_EQ] = ACTIONS(5387), + [anon_sym_DASH_EQ] = ACTIONS(5387), + [anon_sym_LT_LT_EQ] = ACTIONS(5387), + [anon_sym_GT_GT_EQ] = ACTIONS(5387), + [anon_sym_AMP_EQ] = ACTIONS(5387), + [anon_sym_CARET_EQ] = ACTIONS(5387), + [anon_sym_PIPE_EQ] = ACTIONS(5387), + [anon_sym_and_eq] = ACTIONS(5385), + [anon_sym_or_eq] = ACTIONS(5385), + [anon_sym_xor_eq] = ACTIONS(5385), + [anon_sym_LT_EQ_GT] = ACTIONS(5387), + [anon_sym_or] = ACTIONS(5385), + [anon_sym_and] = ACTIONS(5385), + [anon_sym_bitor] = ACTIONS(5385), + [anon_sym_xor] = ACTIONS(5385), + [anon_sym_bitand] = ACTIONS(5385), + [anon_sym_not_eq] = ACTIONS(5385), + [anon_sym_DASH_DASH] = ACTIONS(5387), + [anon_sym_PLUS_PLUS] = ACTIONS(5387), + [anon_sym_DOT] = ACTIONS(5385), + [anon_sym_DOT_STAR] = ACTIONS(5387), + [anon_sym_DASH_GT] = ACTIONS(5387), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5358), + [anon_sym_decltype] = ACTIONS(5360), + }, + [2070] = { + [sym_template_argument_list] = STATE(2172), + [sym_identifier] = ACTIONS(5007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5012), + [anon_sym_COMMA] = ACTIONS(5012), + [anon_sym_RPAREN] = ACTIONS(5012), + [aux_sym_preproc_if_token2] = ACTIONS(5012), + [aux_sym_preproc_else_token1] = ACTIONS(5012), + [aux_sym_preproc_elif_token1] = ACTIONS(5007), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5012), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_PERCENT] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_PIPE] = ACTIONS(5007), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym_AMP] = ACTIONS(5007), + [anon_sym_EQ_EQ] = ACTIONS(5012), + [anon_sym_BANG_EQ] = ACTIONS(5012), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_GT_EQ] = ACTIONS(5012), + [anon_sym_LT_EQ] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5389), + [anon_sym_LT_LT] = ACTIONS(5007), + [anon_sym_GT_GT] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(5012), + [anon_sym___attribute__] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5012), + [anon_sym_RBRACK] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5007), + [anon_sym_QMARK] = ACTIONS(5012), + [anon_sym_STAR_EQ] = ACTIONS(5012), + [anon_sym_SLASH_EQ] = ACTIONS(5012), + [anon_sym_PERCENT_EQ] = ACTIONS(5012), + [anon_sym_PLUS_EQ] = ACTIONS(5012), + [anon_sym_DASH_EQ] = ACTIONS(5012), + [anon_sym_LT_LT_EQ] = ACTIONS(5012), + [anon_sym_GT_GT_EQ] = ACTIONS(5012), + [anon_sym_AMP_EQ] = ACTIONS(5012), + [anon_sym_CARET_EQ] = ACTIONS(5012), + [anon_sym_PIPE_EQ] = ACTIONS(5012), + [anon_sym_and_eq] = ACTIONS(5007), + [anon_sym_or_eq] = ACTIONS(5007), + [anon_sym_xor_eq] = ACTIONS(5007), + [anon_sym_LT_EQ_GT] = ACTIONS(5012), + [anon_sym_or] = ACTIONS(5007), + [anon_sym_and] = ACTIONS(5007), + [anon_sym_bitor] = ACTIONS(5007), + [anon_sym_xor] = ACTIONS(5007), + [anon_sym_bitand] = ACTIONS(5007), + [anon_sym_not_eq] = ACTIONS(5007), + [anon_sym_DASH_DASH] = ACTIONS(5012), + [anon_sym_PLUS_PLUS] = ACTIONS(5012), + [anon_sym_DOT] = ACTIONS(5007), + [anon_sym_DOT_STAR] = ACTIONS(5012), + [anon_sym_DASH_GT] = ACTIONS(5012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5007), + [anon_sym_decltype] = ACTIONS(5007), + [anon_sym_final] = ACTIONS(5007), + [anon_sym_override] = ACTIONS(5007), + }, + [2071] = { + [sym_string_literal] = STATE(1993), + [sym_raw_string_literal] = STATE(1993), + [sym_identifier] = ACTIONS(4145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [aux_sym_preproc_if_token2] = ACTIONS(4137), + [aux_sym_preproc_else_token1] = ACTIONS(4137), + [aux_sym_preproc_elif_token1] = ACTIONS(4145), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4145), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4145), + [anon_sym_or_eq] = ACTIONS(4145), + [anon_sym_xor_eq] = ACTIONS(4145), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [sym_literal_suffix] = ACTIONS(5392), + }, + [2072] = { + [sym_catch_clause] = STATE(2073), + [aux_sym_constructor_try_statement_repeat1] = STATE(2073), + [sym_identifier] = ACTIONS(2834), + [aux_sym_preproc_def_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token2] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), + [aux_sym_preproc_else_token1] = ACTIONS(2834), + [aux_sym_preproc_elif_token1] = ACTIONS(2834), + [sym_preproc_directive] = ACTIONS(2834), + [anon_sym_LPAREN2] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_AMP_AMP] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym___extension__] = ACTIONS(2834), + [anon_sym_typedef] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym___attribute__] = ACTIONS(2834), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), + [anon_sym___declspec] = ACTIONS(2834), + [anon_sym___based] = ACTIONS(2834), + [anon_sym_signed] = ACTIONS(2834), + [anon_sym_unsigned] = ACTIONS(2834), + [anon_sym_long] = ACTIONS(2834), + [anon_sym_short] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_register] = ACTIONS(2834), + [anon_sym_inline] = ACTIONS(2834), + [anon_sym___inline] = ACTIONS(2834), + [anon_sym___inline__] = ACTIONS(2834), + [anon_sym___forceinline] = ACTIONS(2834), + [anon_sym_thread_local] = ACTIONS(2834), + [anon_sym___thread] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_constexpr] = ACTIONS(2834), + [anon_sym_volatile] = ACTIONS(2834), + [anon_sym_restrict] = ACTIONS(2834), + [anon_sym___restrict__] = ACTIONS(2834), + [anon_sym__Atomic] = ACTIONS(2834), + [anon_sym__Noreturn] = ACTIONS(2834), + [anon_sym_noreturn] = ACTIONS(2834), + [anon_sym_mutable] = ACTIONS(2834), + [anon_sym_constinit] = ACTIONS(2834), + [anon_sym_consteval] = ACTIONS(2834), + [sym_primitive_type] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_class] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2834), + [anon_sym_decltype] = ACTIONS(2834), + [anon_sym_virtual] = ACTIONS(2834), + [anon_sym_alignas] = ACTIONS(2834), + [anon_sym_explicit] = ACTIONS(2834), + [anon_sym_typename] = ACTIONS(2834), + [anon_sym_template] = ACTIONS(2834), + [anon_sym_operator] = ACTIONS(2834), + [anon_sym_friend] = ACTIONS(2834), + [anon_sym_public] = ACTIONS(2834), + [anon_sym_private] = ACTIONS(2834), + [anon_sym_protected] = ACTIONS(2834), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_static_assert] = ACTIONS(2834), + [anon_sym_catch] = ACTIONS(5362), + }, + [2073] = { + [sym_catch_clause] = STATE(2073), + [aux_sym_constructor_try_statement_repeat1] = STATE(2073), + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token2] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [aux_sym_preproc_else_token1] = ACTIONS(2815), + [aux_sym_preproc_elif_token1] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym___inline] = ACTIONS(2815), + [anon_sym___inline__] = ACTIONS(2815), + [anon_sym___forceinline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym___thread] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym___restrict__] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym__Noreturn] = ACTIONS(2815), + [anon_sym_noreturn] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_alignas] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_friend] = ACTIONS(2815), + [anon_sym_public] = ACTIONS(2815), + [anon_sym_private] = ACTIONS(2815), + [anon_sym_protected] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_catch] = ACTIONS(5394), + }, + [2074] = { + [sym_template_argument_list] = STATE(2172), + [sym_identifier] = ACTIONS(5397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_RPAREN] = ACTIONS(4161), + [aux_sym_preproc_if_token2] = ACTIONS(4161), + [aux_sym_preproc_else_token1] = ACTIONS(4161), + [aux_sym_preproc_elif_token1] = ACTIONS(5397), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4161), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(5397), + [anon_sym_PLUS] = ACTIONS(5397), + [anon_sym_STAR] = ACTIONS(5397), + [anon_sym_SLASH] = ACTIONS(5397), + [anon_sym_PERCENT] = ACTIONS(5397), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(5397), + [anon_sym_CARET] = ACTIONS(5397), + [anon_sym_AMP] = ACTIONS(5397), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(5397), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(5397), + [anon_sym_LT] = ACTIONS(5399), + [anon_sym_LT_LT] = ACTIONS(5397), + [anon_sym_GT_GT] = ACTIONS(5397), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym___attribute__] = ACTIONS(5397), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_RBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(5397), + [anon_sym_COLON] = ACTIONS(5397), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(5397), + [anon_sym_or_eq] = ACTIONS(5397), + [anon_sym_xor_eq] = ACTIONS(5397), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(5397), + [anon_sym_and] = ACTIONS(5397), + [anon_sym_bitor] = ACTIONS(5397), + [anon_sym_xor] = ACTIONS(5397), + [anon_sym_bitand] = ACTIONS(5397), + [anon_sym_not_eq] = ACTIONS(5397), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(5397), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5397), + [anon_sym_decltype] = ACTIONS(5397), + [anon_sym_final] = ACTIONS(5397), + [anon_sym_override] = ACTIONS(5397), + }, + [2075] = { + [sym_identifier] = ACTIONS(5401), + [aux_sym_preproc_def_token1] = ACTIONS(5401), + [aux_sym_preproc_if_token1] = ACTIONS(5401), + [aux_sym_preproc_if_token2] = ACTIONS(5401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5401), + [aux_sym_preproc_else_token1] = ACTIONS(5401), + [aux_sym_preproc_elif_token1] = ACTIONS(5401), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5401), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5401), + [sym_preproc_directive] = ACTIONS(5401), + [anon_sym_LPAREN2] = ACTIONS(5403), + [anon_sym_TILDE] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_AMP_AMP] = ACTIONS(5403), + [anon_sym_AMP] = ACTIONS(5401), + [anon_sym___extension__] = ACTIONS(5401), + [anon_sym_typedef] = ACTIONS(5401), + [anon_sym_extern] = ACTIONS(5401), + [anon_sym___attribute__] = ACTIONS(5401), + [anon_sym_COLON_COLON] = ACTIONS(5403), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5403), + [anon_sym___declspec] = ACTIONS(5401), + [anon_sym___based] = ACTIONS(5401), + [anon_sym_signed] = ACTIONS(5401), + [anon_sym_unsigned] = ACTIONS(5401), + [anon_sym_long] = ACTIONS(5401), + [anon_sym_short] = ACTIONS(5401), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_static] = ACTIONS(5401), + [anon_sym_register] = ACTIONS(5401), + [anon_sym_inline] = ACTIONS(5401), + [anon_sym___inline] = ACTIONS(5401), + [anon_sym___inline__] = ACTIONS(5401), + [anon_sym___forceinline] = ACTIONS(5401), + [anon_sym_thread_local] = ACTIONS(5401), + [anon_sym___thread] = ACTIONS(5401), + [anon_sym_const] = ACTIONS(5401), + [anon_sym_constexpr] = ACTIONS(5401), + [anon_sym_volatile] = ACTIONS(5401), + [anon_sym_restrict] = ACTIONS(5401), + [anon_sym___restrict__] = ACTIONS(5401), + [anon_sym__Atomic] = ACTIONS(5401), + [anon_sym__Noreturn] = ACTIONS(5401), + [anon_sym_noreturn] = ACTIONS(5401), + [anon_sym_mutable] = ACTIONS(5401), + [anon_sym_constinit] = ACTIONS(5401), + [anon_sym_consteval] = ACTIONS(5401), + [sym_primitive_type] = ACTIONS(5401), + [anon_sym_enum] = ACTIONS(5401), + [anon_sym_class] = ACTIONS(5401), + [anon_sym_struct] = ACTIONS(5401), + [anon_sym_union] = ACTIONS(5401), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5401), + [anon_sym_decltype] = ACTIONS(5401), + [anon_sym_virtual] = ACTIONS(5401), + [anon_sym_alignas] = ACTIONS(5401), + [anon_sym_explicit] = ACTIONS(5401), + [anon_sym_typename] = ACTIONS(5401), + [anon_sym_template] = ACTIONS(5401), + [anon_sym_operator] = ACTIONS(5401), + [anon_sym_friend] = ACTIONS(5401), + [anon_sym_public] = ACTIONS(5401), + [anon_sym_private] = ACTIONS(5401), + [anon_sym_protected] = ACTIONS(5401), + [anon_sym_using] = ACTIONS(5401), + [anon_sym_static_assert] = ACTIONS(5401), + }, + [2076] = { + [sym_identifier] = ACTIONS(5405), + [aux_sym_preproc_def_token1] = ACTIONS(5405), + [aux_sym_preproc_if_token1] = ACTIONS(5405), + [aux_sym_preproc_if_token2] = ACTIONS(5405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5405), + [aux_sym_preproc_else_token1] = ACTIONS(5405), + [aux_sym_preproc_elif_token1] = ACTIONS(5405), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5405), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5405), + [sym_preproc_directive] = ACTIONS(5405), + [anon_sym_LPAREN2] = ACTIONS(5407), + [anon_sym_TILDE] = ACTIONS(5407), + [anon_sym_STAR] = ACTIONS(5407), + [anon_sym_AMP_AMP] = ACTIONS(5407), + [anon_sym_AMP] = ACTIONS(5405), + [anon_sym___extension__] = ACTIONS(5405), + [anon_sym_typedef] = ACTIONS(5405), + [anon_sym_extern] = ACTIONS(5405), + [anon_sym___attribute__] = ACTIONS(5405), + [anon_sym_COLON_COLON] = ACTIONS(5407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5407), + [anon_sym___declspec] = ACTIONS(5405), + [anon_sym___based] = ACTIONS(5405), + [anon_sym_signed] = ACTIONS(5405), + [anon_sym_unsigned] = ACTIONS(5405), + [anon_sym_long] = ACTIONS(5405), + [anon_sym_short] = ACTIONS(5405), + [anon_sym_LBRACK] = ACTIONS(5405), + [anon_sym_static] = ACTIONS(5405), + [anon_sym_register] = ACTIONS(5405), + [anon_sym_inline] = ACTIONS(5405), + [anon_sym___inline] = ACTIONS(5405), + [anon_sym___inline__] = ACTIONS(5405), + [anon_sym___forceinline] = ACTIONS(5405), + [anon_sym_thread_local] = ACTIONS(5405), + [anon_sym___thread] = ACTIONS(5405), + [anon_sym_const] = ACTIONS(5405), + [anon_sym_constexpr] = ACTIONS(5405), + [anon_sym_volatile] = ACTIONS(5405), + [anon_sym_restrict] = ACTIONS(5405), + [anon_sym___restrict__] = ACTIONS(5405), + [anon_sym__Atomic] = ACTIONS(5405), + [anon_sym__Noreturn] = ACTIONS(5405), + [anon_sym_noreturn] = ACTIONS(5405), + [anon_sym_mutable] = ACTIONS(5405), + [anon_sym_constinit] = ACTIONS(5405), + [anon_sym_consteval] = ACTIONS(5405), + [sym_primitive_type] = ACTIONS(5405), + [anon_sym_enum] = ACTIONS(5405), + [anon_sym_class] = ACTIONS(5405), + [anon_sym_struct] = ACTIONS(5405), + [anon_sym_union] = ACTIONS(5405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5405), + [anon_sym_decltype] = ACTIONS(5405), + [anon_sym_virtual] = ACTIONS(5405), + [anon_sym_alignas] = ACTIONS(5405), + [anon_sym_explicit] = ACTIONS(5405), + [anon_sym_typename] = ACTIONS(5405), + [anon_sym_template] = ACTIONS(5405), + [anon_sym_operator] = ACTIONS(5405), + [anon_sym_friend] = ACTIONS(5405), + [anon_sym_public] = ACTIONS(5405), + [anon_sym_private] = ACTIONS(5405), + [anon_sym_protected] = ACTIONS(5405), + [anon_sym_using] = ACTIONS(5405), + [anon_sym_static_assert] = ACTIONS(5405), + }, + [2077] = { + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token2] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [aux_sym_preproc_else_token1] = ACTIONS(2895), + [aux_sym_preproc_elif_token1] = ACTIONS(2895), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_friend] = ACTIONS(2895), + [anon_sym_public] = ACTIONS(2895), + [anon_sym_private] = ACTIONS(2895), + [anon_sym_protected] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + }, + [2078] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4137), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(5412), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4173), + [anon_sym_or_eq] = ACTIONS(4173), + [anon_sym_xor_eq] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [2079] = { + [sym_identifier] = ACTIONS(2961), + [aux_sym_preproc_def_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token2] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), + [aux_sym_preproc_else_token1] = ACTIONS(2961), + [aux_sym_preproc_elif_token1] = ACTIONS(2961), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2961), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2961), + [sym_preproc_directive] = ACTIONS(2961), + [anon_sym_LPAREN2] = ACTIONS(2963), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym___extension__] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym___attribute__] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), + [anon_sym___declspec] = ACTIONS(2961), + [anon_sym___based] = ACTIONS(2961), + [anon_sym_signed] = ACTIONS(2961), + [anon_sym_unsigned] = ACTIONS(2961), + [anon_sym_long] = ACTIONS(2961), + [anon_sym_short] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_register] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym___inline] = ACTIONS(2961), + [anon_sym___inline__] = ACTIONS(2961), + [anon_sym___forceinline] = ACTIONS(2961), + [anon_sym_thread_local] = ACTIONS(2961), + [anon_sym___thread] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_constexpr] = ACTIONS(2961), + [anon_sym_volatile] = ACTIONS(2961), + [anon_sym_restrict] = ACTIONS(2961), + [anon_sym___restrict__] = ACTIONS(2961), + [anon_sym__Atomic] = ACTIONS(2961), + [anon_sym__Noreturn] = ACTIONS(2961), + [anon_sym_noreturn] = ACTIONS(2961), + [anon_sym_mutable] = ACTIONS(2961), + [anon_sym_constinit] = ACTIONS(2961), + [anon_sym_consteval] = ACTIONS(2961), + [sym_primitive_type] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2961), + [anon_sym_virtual] = ACTIONS(2961), + [anon_sym_alignas] = ACTIONS(2961), + [anon_sym_explicit] = ACTIONS(2961), + [anon_sym_typename] = ACTIONS(2961), + [anon_sym_template] = ACTIONS(2961), + [anon_sym_operator] = ACTIONS(2961), + [anon_sym_friend] = ACTIONS(2961), + [anon_sym_public] = ACTIONS(2961), + [anon_sym_private] = ACTIONS(2961), + [anon_sym_protected] = ACTIONS(2961), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_static_assert] = ACTIONS(2961), + }, + [2080] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(5414), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5414), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4137), + [anon_sym_LBRACK] = ACTIONS(5416), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4173), + [anon_sym_or_eq] = ACTIONS(4173), + [anon_sym_xor_eq] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [2081] = { + [sym_identifier] = ACTIONS(5418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_RPAREN] = ACTIONS(5420), + [anon_sym_LPAREN2] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5418), + [anon_sym_STAR] = ACTIONS(5420), + [anon_sym_SLASH] = ACTIONS(5418), + [anon_sym_PERCENT] = ACTIONS(5420), + [anon_sym_PIPE_PIPE] = ACTIONS(5420), + [anon_sym_AMP_AMP] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_EQ] = ACTIONS(5418), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_LT_LT] = ACTIONS(5420), + [anon_sym_GT_GT] = ACTIONS(5420), + [anon_sym_SEMI] = ACTIONS(5420), + [anon_sym___extension__] = ACTIONS(5418), + [anon_sym___attribute__] = ACTIONS(5418), + [anon_sym_COLON_COLON] = ACTIONS(5422), + [anon_sym___based] = ACTIONS(5418), + [anon_sym_LBRACE] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_signed] = ACTIONS(5418), + [anon_sym_unsigned] = ACTIONS(5418), + [anon_sym_long] = ACTIONS(5418), + [anon_sym_short] = ACTIONS(5418), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_RBRACK] = ACTIONS(5420), + [anon_sym_const] = ACTIONS(5418), + [anon_sym_constexpr] = ACTIONS(5418), + [anon_sym_volatile] = ACTIONS(5418), + [anon_sym_restrict] = ACTIONS(5418), + [anon_sym___restrict__] = ACTIONS(5418), + [anon_sym__Atomic] = ACTIONS(5418), + [anon_sym__Noreturn] = ACTIONS(5418), + [anon_sym_noreturn] = ACTIONS(5418), + [anon_sym_mutable] = ACTIONS(5418), + [anon_sym_constinit] = ACTIONS(5418), + [anon_sym_consteval] = ACTIONS(5418), + [sym_primitive_type] = ACTIONS(5418), + [anon_sym_COLON] = ACTIONS(5418), + [anon_sym_QMARK] = ACTIONS(5420), + [anon_sym_LT_EQ_GT] = ACTIONS(5420), + [anon_sym_or] = ACTIONS(5418), + [anon_sym_and] = ACTIONS(5418), + [anon_sym_bitor] = ACTIONS(5418), + [anon_sym_xor] = ACTIONS(5418), + [anon_sym_bitand] = ACTIONS(5418), + [anon_sym_not_eq] = ACTIONS(5418), + [anon_sym_DASH_DASH] = ACTIONS(5420), + [anon_sym_PLUS_PLUS] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_DOT_STAR] = ACTIONS(5420), + [anon_sym_DASH_GT] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5418), + [anon_sym_decltype] = ACTIONS(5418), + [anon_sym_final] = ACTIONS(5418), + [anon_sym_override] = ACTIONS(5418), + [anon_sym_requires] = ACTIONS(5418), + }, + [2082] = { + [sym_identifier] = ACTIONS(3240), + [aux_sym_preproc_def_token1] = ACTIONS(3240), + [aux_sym_preproc_if_token1] = ACTIONS(3240), + [aux_sym_preproc_if_token2] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3240), + [aux_sym_preproc_else_token1] = ACTIONS(3240), + [aux_sym_preproc_elif_token1] = ACTIONS(3240), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3240), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3240), + [sym_preproc_directive] = ACTIONS(3240), + [anon_sym_LPAREN2] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_typedef] = ACTIONS(3240), + [anon_sym_extern] = ACTIONS(3240), + [anon_sym___attribute__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3242), + [anon_sym___declspec] = ACTIONS(3240), + [anon_sym___based] = ACTIONS(3240), + [anon_sym_signed] = ACTIONS(3240), + [anon_sym_unsigned] = ACTIONS(3240), + [anon_sym_long] = ACTIONS(3240), + [anon_sym_short] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_register] = ACTIONS(3240), + [anon_sym_inline] = ACTIONS(3240), + [anon_sym___inline] = ACTIONS(3240), + [anon_sym___inline__] = ACTIONS(3240), + [anon_sym___forceinline] = ACTIONS(3240), + [anon_sym_thread_local] = ACTIONS(3240), + [anon_sym___thread] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_constexpr] = ACTIONS(3240), + [anon_sym_volatile] = ACTIONS(3240), + [anon_sym_restrict] = ACTIONS(3240), + [anon_sym___restrict__] = ACTIONS(3240), + [anon_sym__Atomic] = ACTIONS(3240), + [anon_sym__Noreturn] = ACTIONS(3240), + [anon_sym_noreturn] = ACTIONS(3240), + [anon_sym_mutable] = ACTIONS(3240), + [anon_sym_constinit] = ACTIONS(3240), + [anon_sym_consteval] = ACTIONS(3240), + [sym_primitive_type] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3240), + [anon_sym_decltype] = ACTIONS(3240), + [anon_sym_virtual] = ACTIONS(3240), + [anon_sym_alignas] = ACTIONS(3240), + [anon_sym_explicit] = ACTIONS(3240), + [anon_sym_typename] = ACTIONS(3240), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_operator] = ACTIONS(3240), + [anon_sym_friend] = ACTIONS(3240), + [anon_sym_public] = ACTIONS(3240), + [anon_sym_private] = ACTIONS(3240), + [anon_sym_protected] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_static_assert] = ACTIONS(3240), + }, + [2083] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_RPAREN] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4137), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4173), + [anon_sym_or_eq] = ACTIONS(4173), + [anon_sym_xor_eq] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [2084] = { + [sym_identifier] = ACTIONS(3236), + [aux_sym_preproc_def_token1] = ACTIONS(3236), + [aux_sym_preproc_if_token1] = ACTIONS(3236), + [aux_sym_preproc_if_token2] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3236), + [aux_sym_preproc_else_token1] = ACTIONS(3236), + [aux_sym_preproc_elif_token1] = ACTIONS(3236), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3236), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3236), + [sym_preproc_directive] = ACTIONS(3236), + [anon_sym_LPAREN2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3236), + [anon_sym___extension__] = ACTIONS(3236), + [anon_sym_typedef] = ACTIONS(3236), + [anon_sym_extern] = ACTIONS(3236), + [anon_sym___attribute__] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3238), + [anon_sym___declspec] = ACTIONS(3236), + [anon_sym___based] = ACTIONS(3236), + [anon_sym_signed] = ACTIONS(3236), + [anon_sym_unsigned] = ACTIONS(3236), + [anon_sym_long] = ACTIONS(3236), + [anon_sym_short] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_register] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym___inline] = ACTIONS(3236), + [anon_sym___inline__] = ACTIONS(3236), + [anon_sym___forceinline] = ACTIONS(3236), + [anon_sym_thread_local] = ACTIONS(3236), + [anon_sym___thread] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_constexpr] = ACTIONS(3236), + [anon_sym_volatile] = ACTIONS(3236), + [anon_sym_restrict] = ACTIONS(3236), + [anon_sym___restrict__] = ACTIONS(3236), + [anon_sym__Atomic] = ACTIONS(3236), + [anon_sym__Noreturn] = ACTIONS(3236), + [anon_sym_noreturn] = ACTIONS(3236), + [anon_sym_mutable] = ACTIONS(3236), + [anon_sym_constinit] = ACTIONS(3236), + [anon_sym_consteval] = ACTIONS(3236), + [sym_primitive_type] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3236), + [anon_sym_virtual] = ACTIONS(3236), + [anon_sym_alignas] = ACTIONS(3236), + [anon_sym_explicit] = ACTIONS(3236), + [anon_sym_typename] = ACTIONS(3236), + [anon_sym_template] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_friend] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_static_assert] = ACTIONS(3236), + }, + [2085] = { + [sym_identifier] = ACTIONS(3248), + [aux_sym_preproc_def_token1] = ACTIONS(3248), + [aux_sym_preproc_if_token1] = ACTIONS(3248), + [aux_sym_preproc_if_token2] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3248), + [aux_sym_preproc_else_token1] = ACTIONS(3248), + [aux_sym_preproc_elif_token1] = ACTIONS(3248), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3248), + [sym_preproc_directive] = ACTIONS(3248), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_typedef] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym_signed] = ACTIONS(3248), + [anon_sym_unsigned] = ACTIONS(3248), + [anon_sym_long] = ACTIONS(3248), + [anon_sym_short] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [sym_primitive_type] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3248), + [anon_sym_union] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym_explicit] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_friend] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_static_assert] = ACTIONS(3248), + }, + [2086] = { + [sym_identifier] = ACTIONS(2949), + [aux_sym_preproc_def_token1] = ACTIONS(2949), + [aux_sym_preproc_if_token1] = ACTIONS(2949), + [aux_sym_preproc_if_token2] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), + [aux_sym_preproc_else_token1] = ACTIONS(2949), + [aux_sym_preproc_elif_token1] = ACTIONS(2949), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2949), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2949), + [sym_preproc_directive] = ACTIONS(2949), + [anon_sym_LPAREN2] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym___extension__] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym___attribute__] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), + [anon_sym___declspec] = ACTIONS(2949), + [anon_sym___based] = ACTIONS(2949), + [anon_sym_signed] = ACTIONS(2949), + [anon_sym_unsigned] = ACTIONS(2949), + [anon_sym_long] = ACTIONS(2949), + [anon_sym_short] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_register] = ACTIONS(2949), + [anon_sym_inline] = ACTIONS(2949), + [anon_sym___inline] = ACTIONS(2949), + [anon_sym___inline__] = ACTIONS(2949), + [anon_sym___forceinline] = ACTIONS(2949), + [anon_sym_thread_local] = ACTIONS(2949), + [anon_sym___thread] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_constexpr] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_restrict] = ACTIONS(2949), + [anon_sym___restrict__] = ACTIONS(2949), + [anon_sym__Atomic] = ACTIONS(2949), + [anon_sym__Noreturn] = ACTIONS(2949), + [anon_sym_noreturn] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [anon_sym_constinit] = ACTIONS(2949), + [anon_sym_consteval] = ACTIONS(2949), + [sym_primitive_type] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_union] = ACTIONS(2949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2949), + [anon_sym_decltype] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_alignas] = ACTIONS(2949), + [anon_sym_explicit] = ACTIONS(2949), + [anon_sym_typename] = ACTIONS(2949), + [anon_sym_template] = ACTIONS(2949), + [anon_sym_operator] = ACTIONS(2949), + [anon_sym_friend] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_protected] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_static_assert] = ACTIONS(2949), + }, + [2087] = { + [sym_string_literal] = STATE(1993), + [sym_template_argument_list] = STATE(2546), + [sym_raw_string_literal] = STATE(1993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(5414), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5414), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4137), + [anon_sym_LBRACK] = ACTIONS(5416), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4137), + [anon_sym_or_eq] = ACTIONS(4137), + [anon_sym_xor_eq] = ACTIONS(4137), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + }, + [2088] = { + [sym_identifier] = ACTIONS(3195), + [aux_sym_preproc_def_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token2] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), + [aux_sym_preproc_else_token1] = ACTIONS(3195), + [aux_sym_preproc_elif_token1] = ACTIONS(3195), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3195), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3195), + [sym_preproc_directive] = ACTIONS(3195), + [anon_sym_LPAREN2] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym___extension__] = ACTIONS(3195), + [anon_sym_typedef] = ACTIONS(3195), + [anon_sym_extern] = ACTIONS(3195), + [anon_sym___attribute__] = ACTIONS(3195), + [anon_sym_COLON_COLON] = ACTIONS(3197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), + [anon_sym___declspec] = ACTIONS(3195), + [anon_sym___based] = ACTIONS(3195), + [anon_sym_signed] = ACTIONS(3195), + [anon_sym_unsigned] = ACTIONS(3195), + [anon_sym_long] = ACTIONS(3195), + [anon_sym_short] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_register] = ACTIONS(3195), + [anon_sym_inline] = ACTIONS(3195), + [anon_sym___inline] = ACTIONS(3195), + [anon_sym___inline__] = ACTIONS(3195), + [anon_sym___forceinline] = ACTIONS(3195), + [anon_sym_thread_local] = ACTIONS(3195), + [anon_sym___thread] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_constexpr] = ACTIONS(3195), + [anon_sym_volatile] = ACTIONS(3195), + [anon_sym_restrict] = ACTIONS(3195), + [anon_sym___restrict__] = ACTIONS(3195), + [anon_sym__Atomic] = ACTIONS(3195), + [anon_sym__Noreturn] = ACTIONS(3195), + [anon_sym_noreturn] = ACTIONS(3195), + [anon_sym_mutable] = ACTIONS(3195), + [anon_sym_constinit] = ACTIONS(3195), + [anon_sym_consteval] = ACTIONS(3195), + [sym_primitive_type] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3195), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3195), + [anon_sym_decltype] = ACTIONS(3195), + [anon_sym_virtual] = ACTIONS(3195), + [anon_sym_alignas] = ACTIONS(3195), + [anon_sym_explicit] = ACTIONS(3195), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(3195), + [anon_sym_operator] = ACTIONS(3195), + [anon_sym_friend] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_private] = ACTIONS(3195), + [anon_sym_protected] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_static_assert] = ACTIONS(3195), + }, + [2089] = { + [sym_identifier] = ACTIONS(3298), + [aux_sym_preproc_def_token1] = ACTIONS(3298), + [aux_sym_preproc_if_token1] = ACTIONS(3298), + [aux_sym_preproc_if_token2] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), + [aux_sym_preproc_else_token1] = ACTIONS(3298), + [aux_sym_preproc_elif_token1] = ACTIONS(3298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3298), + [sym_preproc_directive] = ACTIONS(3298), + [anon_sym_LPAREN2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym___extension__] = ACTIONS(3298), + [anon_sym_typedef] = ACTIONS(3298), + [anon_sym_extern] = ACTIONS(3298), + [anon_sym___attribute__] = ACTIONS(3298), + [anon_sym_COLON_COLON] = ACTIONS(3300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), + [anon_sym___declspec] = ACTIONS(3298), + [anon_sym___based] = ACTIONS(3298), + [anon_sym_signed] = ACTIONS(3298), + [anon_sym_unsigned] = ACTIONS(3298), + [anon_sym_long] = ACTIONS(3298), + [anon_sym_short] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_register] = ACTIONS(3298), + [anon_sym_inline] = ACTIONS(3298), + [anon_sym___inline] = ACTIONS(3298), + [anon_sym___inline__] = ACTIONS(3298), + [anon_sym___forceinline] = ACTIONS(3298), + [anon_sym_thread_local] = ACTIONS(3298), + [anon_sym___thread] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_constexpr] = ACTIONS(3298), + [anon_sym_volatile] = ACTIONS(3298), + [anon_sym_restrict] = ACTIONS(3298), + [anon_sym___restrict__] = ACTIONS(3298), + [anon_sym__Atomic] = ACTIONS(3298), + [anon_sym__Noreturn] = ACTIONS(3298), + [anon_sym_noreturn] = ACTIONS(3298), + [anon_sym_mutable] = ACTIONS(3298), + [anon_sym_constinit] = ACTIONS(3298), + [anon_sym_consteval] = ACTIONS(3298), + [sym_primitive_type] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_struct] = ACTIONS(3298), + [anon_sym_union] = ACTIONS(3298), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3298), + [anon_sym_decltype] = ACTIONS(3298), + [anon_sym_virtual] = ACTIONS(3298), + [anon_sym_alignas] = ACTIONS(3298), + [anon_sym_explicit] = ACTIONS(3298), + [anon_sym_typename] = ACTIONS(3298), + [anon_sym_template] = ACTIONS(3298), + [anon_sym_operator] = ACTIONS(3298), + [anon_sym_friend] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_static_assert] = ACTIONS(3298), + }, + [2090] = { + [sym_string_literal] = STATE(1993), + [sym_raw_string_literal] = STATE(1993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_RPAREN] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4145), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_RBRACE] = ACTIONS(4137), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_RBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_COLON] = ACTIONS(4137), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4145), + [anon_sym_or_eq] = ACTIONS(4145), + [anon_sym_xor_eq] = ACTIONS(4145), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), + [sym_literal_suffix] = ACTIONS(5392), + }, + [2091] = { + [sym_type_qualifier] = STATE(2091), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [sym_identifier] = ACTIONS(5424), + [anon_sym_LPAREN2] = ACTIONS(5426), + [anon_sym_BANG] = ACTIONS(5426), + [anon_sym_TILDE] = ACTIONS(5426), + [anon_sym_DASH] = ACTIONS(5424), + [anon_sym_PLUS] = ACTIONS(5424), + [anon_sym_STAR] = ACTIONS(5426), + [anon_sym_AMP] = ACTIONS(5426), + [anon_sym___extension__] = ACTIONS(5428), + [anon_sym_COLON_COLON] = ACTIONS(5426), + [anon_sym_LBRACK] = ACTIONS(5426), + [anon_sym_RBRACK] = ACTIONS(5426), + [anon_sym_const] = ACTIONS(5428), + [anon_sym_constexpr] = ACTIONS(5428), + [anon_sym_volatile] = ACTIONS(5428), + [anon_sym_restrict] = ACTIONS(5428), + [anon_sym___restrict__] = ACTIONS(5428), + [anon_sym__Atomic] = ACTIONS(5428), + [anon_sym__Noreturn] = ACTIONS(5428), + [anon_sym_noreturn] = ACTIONS(5428), + [anon_sym_mutable] = ACTIONS(5428), + [anon_sym_constinit] = ACTIONS(5428), + [anon_sym_consteval] = ACTIONS(5428), + [sym_primitive_type] = ACTIONS(5424), + [anon_sym_not] = ACTIONS(5424), + [anon_sym_compl] = ACTIONS(5424), + [anon_sym_DASH_DASH] = ACTIONS(5426), + [anon_sym_PLUS_PLUS] = ACTIONS(5426), + [anon_sym_sizeof] = ACTIONS(5424), + [anon_sym___alignof__] = ACTIONS(5424), + [anon_sym___alignof] = ACTIONS(5424), + [anon_sym__alignof] = ACTIONS(5424), + [anon_sym_alignof] = ACTIONS(5424), + [anon_sym__Alignof] = ACTIONS(5424), + [anon_sym_offsetof] = ACTIONS(5424), + [anon_sym__Generic] = ACTIONS(5424), + [anon_sym_asm] = ACTIONS(5424), + [anon_sym___asm__] = ACTIONS(5424), + [sym_number_literal] = ACTIONS(5426), + [anon_sym_L_SQUOTE] = ACTIONS(5426), + [anon_sym_u_SQUOTE] = ACTIONS(5426), + [anon_sym_U_SQUOTE] = ACTIONS(5426), + [anon_sym_u8_SQUOTE] = ACTIONS(5426), + [anon_sym_SQUOTE] = ACTIONS(5426), + [anon_sym_L_DQUOTE] = ACTIONS(5426), + [anon_sym_u_DQUOTE] = ACTIONS(5426), + [anon_sym_U_DQUOTE] = ACTIONS(5426), + [anon_sym_u8_DQUOTE] = ACTIONS(5426), + [anon_sym_DQUOTE] = ACTIONS(5426), + [sym_true] = ACTIONS(5424), + [sym_false] = ACTIONS(5424), + [anon_sym_NULL] = ACTIONS(5424), + [anon_sym_nullptr] = ACTIONS(5424), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5424), + [anon_sym_template] = ACTIONS(5424), + [anon_sym_delete] = ACTIONS(5424), + [anon_sym_R_DQUOTE] = ACTIONS(5426), + [anon_sym_LR_DQUOTE] = ACTIONS(5426), + [anon_sym_uR_DQUOTE] = ACTIONS(5426), + [anon_sym_UR_DQUOTE] = ACTIONS(5426), + [anon_sym_u8R_DQUOTE] = ACTIONS(5426), + [anon_sym_co_await] = ACTIONS(5424), + [anon_sym_new] = ACTIONS(5424), + [anon_sym_requires] = ACTIONS(5424), + [sym_this] = ACTIONS(5424), + }, + [2092] = { [sym_identifier] = ACTIONS(3219), [aux_sym_preproc_def_token1] = ACTIONS(3219), [aux_sym_preproc_if_token1] = ACTIONS(3219), @@ -345393,6 +333968,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), [aux_sym_preproc_else_token1] = ACTIONS(3219), [aux_sym_preproc_elif_token1] = ACTIONS(3219), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3219), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3219), [sym_preproc_directive] = ACTIONS(3219), [anon_sym_LPAREN2] = ACTIONS(3221), [anon_sym_TILDE] = ACTIONS(3221), @@ -345452,803 +334029,1527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(3219), [anon_sym_static_assert] = ACTIONS(3219), }, - [2276] = { - [sym_identifier] = ACTIONS(2989), - [aux_sym_preproc_def_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token1] = ACTIONS(2989), - [aux_sym_preproc_if_token2] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2989), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2989), - [aux_sym_preproc_else_token1] = ACTIONS(2989), - [aux_sym_preproc_elif_token1] = ACTIONS(2989), - [sym_preproc_directive] = ACTIONS(2989), - [anon_sym_LPAREN2] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym___extension__] = ACTIONS(2989), - [anon_sym_typedef] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym___attribute__] = ACTIONS(2989), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2991), - [anon_sym___declspec] = ACTIONS(2989), - [anon_sym___based] = ACTIONS(2989), - [anon_sym_signed] = ACTIONS(2989), - [anon_sym_unsigned] = ACTIONS(2989), - [anon_sym_long] = ACTIONS(2989), - [anon_sym_short] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_register] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym___inline] = ACTIONS(2989), - [anon_sym___inline__] = ACTIONS(2989), - [anon_sym___forceinline] = ACTIONS(2989), - [anon_sym_thread_local] = ACTIONS(2989), - [anon_sym___thread] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_constexpr] = ACTIONS(2989), - [anon_sym_volatile] = ACTIONS(2989), - [anon_sym_restrict] = ACTIONS(2989), - [anon_sym___restrict__] = ACTIONS(2989), - [anon_sym__Atomic] = ACTIONS(2989), - [anon_sym__Noreturn] = ACTIONS(2989), - [anon_sym_noreturn] = ACTIONS(2989), - [anon_sym_mutable] = ACTIONS(2989), - [anon_sym_constinit] = ACTIONS(2989), - [anon_sym_consteval] = ACTIONS(2989), - [sym_primitive_type] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2989), - [anon_sym_decltype] = ACTIONS(2989), - [anon_sym_virtual] = ACTIONS(2989), - [anon_sym_alignas] = ACTIONS(2989), - [anon_sym_explicit] = ACTIONS(2989), - [anon_sym_typename] = ACTIONS(2989), - [anon_sym_template] = ACTIONS(2989), - [anon_sym_operator] = ACTIONS(2989), - [anon_sym_friend] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_private] = ACTIONS(2989), - [anon_sym_protected] = ACTIONS(2989), - [anon_sym_using] = ACTIONS(2989), - [anon_sym_static_assert] = ACTIONS(2989), + [2093] = { + [sym_identifier] = ACTIONS(3191), + [aux_sym_preproc_def_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token2] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3191), + [aux_sym_preproc_else_token1] = ACTIONS(3191), + [aux_sym_preproc_elif_token1] = ACTIONS(3191), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3191), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3191), + [sym_preproc_directive] = ACTIONS(3191), + [anon_sym_LPAREN2] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym___extension__] = ACTIONS(3191), + [anon_sym_typedef] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym___attribute__] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(3193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3193), + [anon_sym___declspec] = ACTIONS(3191), + [anon_sym___based] = ACTIONS(3191), + [anon_sym_signed] = ACTIONS(3191), + [anon_sym_unsigned] = ACTIONS(3191), + [anon_sym_long] = ACTIONS(3191), + [anon_sym_short] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_register] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym___inline] = ACTIONS(3191), + [anon_sym___inline__] = ACTIONS(3191), + [anon_sym___forceinline] = ACTIONS(3191), + [anon_sym_thread_local] = ACTIONS(3191), + [anon_sym___thread] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_constexpr] = ACTIONS(3191), + [anon_sym_volatile] = ACTIONS(3191), + [anon_sym_restrict] = ACTIONS(3191), + [anon_sym___restrict__] = ACTIONS(3191), + [anon_sym__Atomic] = ACTIONS(3191), + [anon_sym__Noreturn] = ACTIONS(3191), + [anon_sym_noreturn] = ACTIONS(3191), + [anon_sym_mutable] = ACTIONS(3191), + [anon_sym_constinit] = ACTIONS(3191), + [anon_sym_consteval] = ACTIONS(3191), + [sym_primitive_type] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3191), + [anon_sym_virtual] = ACTIONS(3191), + [anon_sym_alignas] = ACTIONS(3191), + [anon_sym_explicit] = ACTIONS(3191), + [anon_sym_typename] = ACTIONS(3191), + [anon_sym_template] = ACTIONS(3191), + [anon_sym_operator] = ACTIONS(3191), + [anon_sym_friend] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_protected] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_static_assert] = ACTIONS(3191), }, - [2277] = { - [sym_identifier] = ACTIONS(3251), - [aux_sym_preproc_def_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token1] = ACTIONS(3251), - [aux_sym_preproc_if_token2] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3251), - [aux_sym_preproc_else_token1] = ACTIONS(3251), - [aux_sym_preproc_elif_token1] = ACTIONS(3251), - [sym_preproc_directive] = ACTIONS(3251), - [anon_sym_LPAREN2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym___extension__] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3251), - [anon_sym_extern] = ACTIONS(3251), - [anon_sym___attribute__] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3253), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3253), - [anon_sym___declspec] = ACTIONS(3251), - [anon_sym___based] = ACTIONS(3251), - [anon_sym_signed] = ACTIONS(3251), - [anon_sym_unsigned] = ACTIONS(3251), - [anon_sym_long] = ACTIONS(3251), - [anon_sym_short] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_register] = ACTIONS(3251), - [anon_sym_inline] = ACTIONS(3251), - [anon_sym___inline] = ACTIONS(3251), - [anon_sym___inline__] = ACTIONS(3251), - [anon_sym___forceinline] = ACTIONS(3251), - [anon_sym_thread_local] = ACTIONS(3251), - [anon_sym___thread] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_constexpr] = ACTIONS(3251), - [anon_sym_volatile] = ACTIONS(3251), - [anon_sym_restrict] = ACTIONS(3251), - [anon_sym___restrict__] = ACTIONS(3251), - [anon_sym__Atomic] = ACTIONS(3251), - [anon_sym__Noreturn] = ACTIONS(3251), - [anon_sym_noreturn] = ACTIONS(3251), - [anon_sym_mutable] = ACTIONS(3251), - [anon_sym_constinit] = ACTIONS(3251), - [anon_sym_consteval] = ACTIONS(3251), - [sym_primitive_type] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3251), - [anon_sym_decltype] = ACTIONS(3251), - [anon_sym_virtual] = ACTIONS(3251), - [anon_sym_alignas] = ACTIONS(3251), - [anon_sym_explicit] = ACTIONS(3251), - [anon_sym_typename] = ACTIONS(3251), - [anon_sym_template] = ACTIONS(3251), - [anon_sym_operator] = ACTIONS(3251), - [anon_sym_friend] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_protected] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_static_assert] = ACTIONS(3251), + [2094] = { + [sym_identifier] = ACTIONS(5431), + [aux_sym_preproc_def_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token2] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5431), + [aux_sym_preproc_else_token1] = ACTIONS(5431), + [aux_sym_preproc_elif_token1] = ACTIONS(5431), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5431), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5431), + [sym_preproc_directive] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5433), + [anon_sym_TILDE] = ACTIONS(5433), + [anon_sym_STAR] = ACTIONS(5433), + [anon_sym_AMP_AMP] = ACTIONS(5433), + [anon_sym_AMP] = ACTIONS(5431), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym_typedef] = ACTIONS(5431), + [anon_sym_extern] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym_COLON_COLON] = ACTIONS(5433), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5433), + [anon_sym___declspec] = ACTIONS(5431), + [anon_sym___based] = ACTIONS(5431), + [anon_sym_signed] = ACTIONS(5431), + [anon_sym_unsigned] = ACTIONS(5431), + [anon_sym_long] = ACTIONS(5431), + [anon_sym_short] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5431), + [anon_sym_static] = ACTIONS(5431), + [anon_sym_register] = ACTIONS(5431), + [anon_sym_inline] = ACTIONS(5431), + [anon_sym___inline] = ACTIONS(5431), + [anon_sym___inline__] = ACTIONS(5431), + [anon_sym___forceinline] = ACTIONS(5431), + [anon_sym_thread_local] = ACTIONS(5431), + [anon_sym___thread] = ACTIONS(5431), + [anon_sym_const] = ACTIONS(5431), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_mutable] = ACTIONS(5431), + [anon_sym_constinit] = ACTIONS(5431), + [anon_sym_consteval] = ACTIONS(5431), + [sym_primitive_type] = ACTIONS(5431), + [anon_sym_enum] = ACTIONS(5431), + [anon_sym_class] = ACTIONS(5431), + [anon_sym_struct] = ACTIONS(5431), + [anon_sym_union] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5431), + [anon_sym_decltype] = ACTIONS(5431), + [anon_sym_virtual] = ACTIONS(5431), + [anon_sym_alignas] = ACTIONS(5431), + [anon_sym_explicit] = ACTIONS(5431), + [anon_sym_typename] = ACTIONS(5431), + [anon_sym_template] = ACTIONS(5431), + [anon_sym_operator] = ACTIONS(5431), + [anon_sym_friend] = ACTIONS(5431), + [anon_sym_public] = ACTIONS(5431), + [anon_sym_private] = ACTIONS(5431), + [anon_sym_protected] = ACTIONS(5431), + [anon_sym_using] = ACTIONS(5431), + [anon_sym_static_assert] = ACTIONS(5431), }, - [2278] = { - [sym_identifier] = ACTIONS(5550), - [aux_sym_preproc_def_token1] = ACTIONS(5550), - [aux_sym_preproc_if_token1] = ACTIONS(5550), - [aux_sym_preproc_if_token2] = ACTIONS(5550), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5550), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5550), - [aux_sym_preproc_else_token1] = ACTIONS(5550), - [aux_sym_preproc_elif_token1] = ACTIONS(5550), - [sym_preproc_directive] = ACTIONS(5550), - [anon_sym_LPAREN2] = ACTIONS(5552), - [anon_sym_TILDE] = ACTIONS(5552), - [anon_sym_STAR] = ACTIONS(5552), - [anon_sym_AMP_AMP] = ACTIONS(5552), - [anon_sym_AMP] = ACTIONS(5550), - [anon_sym___extension__] = ACTIONS(5550), - [anon_sym_typedef] = ACTIONS(5550), - [anon_sym_extern] = ACTIONS(5550), - [anon_sym___attribute__] = ACTIONS(5550), - [anon_sym_COLON_COLON] = ACTIONS(5552), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5552), - [anon_sym___declspec] = ACTIONS(5550), - [anon_sym___based] = ACTIONS(5550), - [anon_sym_signed] = ACTIONS(5550), - [anon_sym_unsigned] = ACTIONS(5550), - [anon_sym_long] = ACTIONS(5550), - [anon_sym_short] = ACTIONS(5550), - [anon_sym_LBRACK] = ACTIONS(5550), - [anon_sym_static] = ACTIONS(5550), - [anon_sym_register] = ACTIONS(5550), - [anon_sym_inline] = ACTIONS(5550), - [anon_sym___inline] = ACTIONS(5550), - [anon_sym___inline__] = ACTIONS(5550), - [anon_sym___forceinline] = ACTIONS(5550), - [anon_sym_thread_local] = ACTIONS(5550), - [anon_sym___thread] = ACTIONS(5550), - [anon_sym_const] = ACTIONS(5550), - [anon_sym_constexpr] = ACTIONS(5550), - [anon_sym_volatile] = ACTIONS(5550), - [anon_sym_restrict] = ACTIONS(5550), - [anon_sym___restrict__] = ACTIONS(5550), - [anon_sym__Atomic] = ACTIONS(5550), - [anon_sym__Noreturn] = ACTIONS(5550), - [anon_sym_noreturn] = ACTIONS(5550), - [anon_sym_mutable] = ACTIONS(5550), - [anon_sym_constinit] = ACTIONS(5550), - [anon_sym_consteval] = ACTIONS(5550), - [sym_primitive_type] = ACTIONS(5550), - [anon_sym_enum] = ACTIONS(5550), - [anon_sym_class] = ACTIONS(5550), - [anon_sym_struct] = ACTIONS(5550), - [anon_sym_union] = ACTIONS(5550), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5550), - [anon_sym_decltype] = ACTIONS(5550), - [anon_sym_virtual] = ACTIONS(5550), - [anon_sym_alignas] = ACTIONS(5550), - [anon_sym_explicit] = ACTIONS(5550), - [anon_sym_typename] = ACTIONS(5550), - [anon_sym_template] = ACTIONS(5550), - [anon_sym_operator] = ACTIONS(5550), - [anon_sym_friend] = ACTIONS(5550), - [anon_sym_public] = ACTIONS(5550), - [anon_sym_private] = ACTIONS(5550), - [anon_sym_protected] = ACTIONS(5550), - [anon_sym_using] = ACTIONS(5550), - [anon_sym_static_assert] = ACTIONS(5550), + [2095] = { + [sym_identifier] = ACTIONS(5431), + [aux_sym_preproc_def_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token2] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5431), + [aux_sym_preproc_else_token1] = ACTIONS(5431), + [aux_sym_preproc_elif_token1] = ACTIONS(5431), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5431), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5431), + [sym_preproc_directive] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5433), + [anon_sym_TILDE] = ACTIONS(5433), + [anon_sym_STAR] = ACTIONS(5433), + [anon_sym_AMP_AMP] = ACTIONS(5433), + [anon_sym_AMP] = ACTIONS(5431), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym_typedef] = ACTIONS(5431), + [anon_sym_extern] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym_COLON_COLON] = ACTIONS(5433), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5433), + [anon_sym___declspec] = ACTIONS(5431), + [anon_sym___based] = ACTIONS(5431), + [anon_sym_signed] = ACTIONS(5431), + [anon_sym_unsigned] = ACTIONS(5431), + [anon_sym_long] = ACTIONS(5431), + [anon_sym_short] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5431), + [anon_sym_static] = ACTIONS(5431), + [anon_sym_register] = ACTIONS(5431), + [anon_sym_inline] = ACTIONS(5431), + [anon_sym___inline] = ACTIONS(5431), + [anon_sym___inline__] = ACTIONS(5431), + [anon_sym___forceinline] = ACTIONS(5431), + [anon_sym_thread_local] = ACTIONS(5431), + [anon_sym___thread] = ACTIONS(5431), + [anon_sym_const] = ACTIONS(5431), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_mutable] = ACTIONS(5431), + [anon_sym_constinit] = ACTIONS(5431), + [anon_sym_consteval] = ACTIONS(5431), + [sym_primitive_type] = ACTIONS(5431), + [anon_sym_enum] = ACTIONS(5431), + [anon_sym_class] = ACTIONS(5431), + [anon_sym_struct] = ACTIONS(5431), + [anon_sym_union] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5431), + [anon_sym_decltype] = ACTIONS(5431), + [anon_sym_virtual] = ACTIONS(5431), + [anon_sym_alignas] = ACTIONS(5431), + [anon_sym_explicit] = ACTIONS(5431), + [anon_sym_typename] = ACTIONS(5431), + [anon_sym_template] = ACTIONS(5431), + [anon_sym_operator] = ACTIONS(5431), + [anon_sym_friend] = ACTIONS(5431), + [anon_sym_public] = ACTIONS(5431), + [anon_sym_private] = ACTIONS(5431), + [anon_sym_protected] = ACTIONS(5431), + [anon_sym_using] = ACTIONS(5431), + [anon_sym_static_assert] = ACTIONS(5431), }, - [2279] = { - [sym__declaration_modifiers] = STATE(3960), - [sym_attribute_specifier] = STATE(3960), - [sym_attribute_declaration] = STATE(3960), - [sym_ms_declspec_modifier] = STATE(3960), - [sym_storage_class_specifier] = STATE(3960), - [sym_type_qualifier] = STATE(3960), - [sym__type_specifier] = STATE(3182), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(3960), - [sym_alignas_specifier] = STATE(3960), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(3960), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(127), - [anon_sym_template] = ACTIONS(1428), + [2096] = { + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token2] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [aux_sym_preproc_else_token1] = ACTIONS(3134), + [aux_sym_preproc_elif_token1] = ACTIONS(3134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_friend] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_protected] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), }, - [2280] = { - [sym_identifier] = ACTIONS(3235), - [aux_sym_preproc_def_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token1] = ACTIONS(3235), - [aux_sym_preproc_if_token2] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3235), - [aux_sym_preproc_else_token1] = ACTIONS(3235), - [aux_sym_preproc_elif_token1] = ACTIONS(3235), - [sym_preproc_directive] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(3237), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_typedef] = ACTIONS(3235), - [anon_sym_extern] = ACTIONS(3235), - [anon_sym___attribute__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3237), - [anon_sym___declspec] = ACTIONS(3235), - [anon_sym___based] = ACTIONS(3235), - [anon_sym_signed] = ACTIONS(3235), - [anon_sym_unsigned] = ACTIONS(3235), - [anon_sym_long] = ACTIONS(3235), - [anon_sym_short] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_register] = ACTIONS(3235), - [anon_sym_inline] = ACTIONS(3235), - [anon_sym___inline] = ACTIONS(3235), - [anon_sym___inline__] = ACTIONS(3235), - [anon_sym___forceinline] = ACTIONS(3235), - [anon_sym_thread_local] = ACTIONS(3235), - [anon_sym___thread] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_constexpr] = ACTIONS(3235), - [anon_sym_volatile] = ACTIONS(3235), - [anon_sym_restrict] = ACTIONS(3235), - [anon_sym___restrict__] = ACTIONS(3235), - [anon_sym__Atomic] = ACTIONS(3235), - [anon_sym__Noreturn] = ACTIONS(3235), - [anon_sym_noreturn] = ACTIONS(3235), - [anon_sym_mutable] = ACTIONS(3235), - [anon_sym_constinit] = ACTIONS(3235), - [anon_sym_consteval] = ACTIONS(3235), - [sym_primitive_type] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3235), - [anon_sym_decltype] = ACTIONS(3235), - [anon_sym_virtual] = ACTIONS(3235), - [anon_sym_alignas] = ACTIONS(3235), - [anon_sym_explicit] = ACTIONS(3235), - [anon_sym_typename] = ACTIONS(3235), - [anon_sym_template] = ACTIONS(3235), - [anon_sym_operator] = ACTIONS(3235), - [anon_sym_friend] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_protected] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_static_assert] = ACTIONS(3235), + [2097] = { + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token2] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [aux_sym_preproc_else_token1] = ACTIONS(3134), + [aux_sym_preproc_elif_token1] = ACTIONS(3134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_friend] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_protected] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), }, - [2281] = { - [sym_identifier] = ACTIONS(3239), - [aux_sym_preproc_def_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token1] = ACTIONS(3239), - [aux_sym_preproc_if_token2] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3239), - [aux_sym_preproc_else_token1] = ACTIONS(3239), - [aux_sym_preproc_elif_token1] = ACTIONS(3239), - [sym_preproc_directive] = ACTIONS(3239), - [anon_sym_LPAREN2] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_AMP_AMP] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym___extension__] = ACTIONS(3239), - [anon_sym_typedef] = ACTIONS(3239), - [anon_sym_extern] = ACTIONS(3239), - [anon_sym___attribute__] = ACTIONS(3239), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3241), - [anon_sym___declspec] = ACTIONS(3239), - [anon_sym___based] = ACTIONS(3239), - [anon_sym_signed] = ACTIONS(3239), - [anon_sym_unsigned] = ACTIONS(3239), - [anon_sym_long] = ACTIONS(3239), - [anon_sym_short] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_register] = ACTIONS(3239), - [anon_sym_inline] = ACTIONS(3239), - [anon_sym___inline] = ACTIONS(3239), - [anon_sym___inline__] = ACTIONS(3239), - [anon_sym___forceinline] = ACTIONS(3239), - [anon_sym_thread_local] = ACTIONS(3239), - [anon_sym___thread] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_constexpr] = ACTIONS(3239), - [anon_sym_volatile] = ACTIONS(3239), - [anon_sym_restrict] = ACTIONS(3239), - [anon_sym___restrict__] = ACTIONS(3239), - [anon_sym__Atomic] = ACTIONS(3239), - [anon_sym__Noreturn] = ACTIONS(3239), - [anon_sym_noreturn] = ACTIONS(3239), - [anon_sym_mutable] = ACTIONS(3239), - [anon_sym_constinit] = ACTIONS(3239), - [anon_sym_consteval] = ACTIONS(3239), - [sym_primitive_type] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3239), - [anon_sym_decltype] = ACTIONS(3239), - [anon_sym_virtual] = ACTIONS(3239), - [anon_sym_alignas] = ACTIONS(3239), - [anon_sym_explicit] = ACTIONS(3239), - [anon_sym_typename] = ACTIONS(3239), - [anon_sym_template] = ACTIONS(3239), - [anon_sym_operator] = ACTIONS(3239), - [anon_sym_friend] = ACTIONS(3239), - [anon_sym_public] = ACTIONS(3239), - [anon_sym_private] = ACTIONS(3239), - [anon_sym_protected] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_static_assert] = ACTIONS(3239), + [2098] = { + [sym_identifier] = ACTIONS(5435), + [aux_sym_preproc_def_token1] = ACTIONS(5435), + [aux_sym_preproc_if_token1] = ACTIONS(5435), + [aux_sym_preproc_if_token2] = ACTIONS(5435), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5435), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5435), + [aux_sym_preproc_else_token1] = ACTIONS(5435), + [aux_sym_preproc_elif_token1] = ACTIONS(5435), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5435), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5435), + [sym_preproc_directive] = ACTIONS(5435), + [anon_sym_LPAREN2] = ACTIONS(5437), + [anon_sym_TILDE] = ACTIONS(5437), + [anon_sym_STAR] = ACTIONS(5437), + [anon_sym_AMP_AMP] = ACTIONS(5437), + [anon_sym_AMP] = ACTIONS(5435), + [anon_sym___extension__] = ACTIONS(5435), + [anon_sym_typedef] = ACTIONS(5435), + [anon_sym_extern] = ACTIONS(5435), + [anon_sym___attribute__] = ACTIONS(5435), + [anon_sym_COLON_COLON] = ACTIONS(5437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5437), + [anon_sym___declspec] = ACTIONS(5435), + [anon_sym___based] = ACTIONS(5435), + [anon_sym_signed] = ACTIONS(5435), + [anon_sym_unsigned] = ACTIONS(5435), + [anon_sym_long] = ACTIONS(5435), + [anon_sym_short] = ACTIONS(5435), + [anon_sym_LBRACK] = ACTIONS(5435), + [anon_sym_static] = ACTIONS(5435), + [anon_sym_register] = ACTIONS(5435), + [anon_sym_inline] = ACTIONS(5435), + [anon_sym___inline] = ACTIONS(5435), + [anon_sym___inline__] = ACTIONS(5435), + [anon_sym___forceinline] = ACTIONS(5435), + [anon_sym_thread_local] = ACTIONS(5435), + [anon_sym___thread] = ACTIONS(5435), + [anon_sym_const] = ACTIONS(5435), + [anon_sym_constexpr] = ACTIONS(5435), + [anon_sym_volatile] = ACTIONS(5435), + [anon_sym_restrict] = ACTIONS(5435), + [anon_sym___restrict__] = ACTIONS(5435), + [anon_sym__Atomic] = ACTIONS(5435), + [anon_sym__Noreturn] = ACTIONS(5435), + [anon_sym_noreturn] = ACTIONS(5435), + [anon_sym_mutable] = ACTIONS(5435), + [anon_sym_constinit] = ACTIONS(5435), + [anon_sym_consteval] = ACTIONS(5435), + [sym_primitive_type] = ACTIONS(5435), + [anon_sym_enum] = ACTIONS(5435), + [anon_sym_class] = ACTIONS(5435), + [anon_sym_struct] = ACTIONS(5435), + [anon_sym_union] = ACTIONS(5435), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5435), + [anon_sym_decltype] = ACTIONS(5435), + [anon_sym_virtual] = ACTIONS(5435), + [anon_sym_alignas] = ACTIONS(5435), + [anon_sym_explicit] = ACTIONS(5435), + [anon_sym_typename] = ACTIONS(5435), + [anon_sym_template] = ACTIONS(5435), + [anon_sym_operator] = ACTIONS(5435), + [anon_sym_friend] = ACTIONS(5435), + [anon_sym_public] = ACTIONS(5435), + [anon_sym_private] = ACTIONS(5435), + [anon_sym_protected] = ACTIONS(5435), + [anon_sym_using] = ACTIONS(5435), + [anon_sym_static_assert] = ACTIONS(5435), }, - [2282] = { - [sym_string_literal] = STATE(2380), - [sym_raw_string_literal] = STATE(2380), - [aux_sym_concatenated_string_repeat1] = STATE(2380), - [sym_identifier] = ACTIONS(5815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5198), - [anon_sym_COMMA] = ACTIONS(5198), - [anon_sym_LPAREN2] = ACTIONS(5198), - [anon_sym_DASH] = ACTIONS(5200), - [anon_sym_PLUS] = ACTIONS(5200), - [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_SLASH] = ACTIONS(5200), - [anon_sym_PERCENT] = ACTIONS(5200), - [anon_sym_PIPE_PIPE] = ACTIONS(5198), - [anon_sym_AMP_AMP] = ACTIONS(5198), - [anon_sym_PIPE] = ACTIONS(5200), - [anon_sym_CARET] = ACTIONS(5200), - [anon_sym_AMP] = ACTIONS(5200), - [anon_sym_EQ_EQ] = ACTIONS(5198), - [anon_sym_BANG_EQ] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5200), - [anon_sym_GT_EQ] = ACTIONS(5200), - [anon_sym_LT_EQ] = ACTIONS(5200), - [anon_sym_LT] = ACTIONS(5200), - [anon_sym_LT_LT] = ACTIONS(5200), - [anon_sym_GT_GT] = ACTIONS(5200), - [anon_sym_LBRACK] = ACTIONS(5198), - [anon_sym_EQ] = ACTIONS(5200), - [anon_sym_QMARK] = ACTIONS(5198), - [anon_sym_STAR_EQ] = ACTIONS(5198), - [anon_sym_SLASH_EQ] = ACTIONS(5198), - [anon_sym_PERCENT_EQ] = ACTIONS(5198), - [anon_sym_PLUS_EQ] = ACTIONS(5198), - [anon_sym_DASH_EQ] = ACTIONS(5198), - [anon_sym_LT_LT_EQ] = ACTIONS(5198), - [anon_sym_GT_GT_EQ] = ACTIONS(5200), - [anon_sym_AMP_EQ] = ACTIONS(5198), - [anon_sym_CARET_EQ] = ACTIONS(5198), - [anon_sym_PIPE_EQ] = ACTIONS(5198), - [anon_sym_and_eq] = ACTIONS(5200), - [anon_sym_or_eq] = ACTIONS(5200), - [anon_sym_xor_eq] = ACTIONS(5200), - [anon_sym_LT_EQ_GT] = ACTIONS(5198), - [anon_sym_or] = ACTIONS(5200), - [anon_sym_and] = ACTIONS(5200), - [anon_sym_bitor] = ACTIONS(5200), - [anon_sym_xor] = ACTIONS(5200), - [anon_sym_bitand] = ACTIONS(5200), - [anon_sym_not_eq] = ACTIONS(5200), - [anon_sym_DASH_DASH] = ACTIONS(5198), - [anon_sym_PLUS_PLUS] = ACTIONS(5198), - [anon_sym_DOT] = ACTIONS(5200), - [anon_sym_DOT_STAR] = ACTIONS(5198), - [anon_sym_DASH_GT] = ACTIONS(5198), - [anon_sym_L_DQUOTE] = ACTIONS(5797), - [anon_sym_u_DQUOTE] = ACTIONS(5797), - [anon_sym_U_DQUOTE] = ACTIONS(5797), - [anon_sym_u8_DQUOTE] = ACTIONS(5797), - [anon_sym_DQUOTE] = ACTIONS(5797), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5198), - [anon_sym_R_DQUOTE] = ACTIONS(5799), - [anon_sym_LR_DQUOTE] = ACTIONS(5799), - [anon_sym_uR_DQUOTE] = ACTIONS(5799), - [anon_sym_UR_DQUOTE] = ACTIONS(5799), - [anon_sym_u8R_DQUOTE] = ACTIONS(5799), - [sym_literal_suffix] = ACTIONS(5200), + [2099] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LPAREN2] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5041), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5048), + [anon_sym___extension__] = ACTIONS(5046), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5046), + [anon_sym_volatile] = ACTIONS(5046), + [anon_sym_restrict] = ACTIONS(5046), + [anon_sym___restrict__] = ACTIONS(5046), + [anon_sym__Atomic] = ACTIONS(5046), + [anon_sym__Noreturn] = ACTIONS(5046), + [anon_sym_noreturn] = ACTIONS(5046), + [anon_sym_mutable] = ACTIONS(5046), + [anon_sym_constinit] = ACTIONS(5046), + [anon_sym_consteval] = ACTIONS(5046), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_LT_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_GT_EQ] = ACTIONS(5041), + [anon_sym_AMP_EQ] = ACTIONS(5041), + [anon_sym_CARET_EQ] = ACTIONS(5041), + [anon_sym_PIPE_EQ] = ACTIONS(5041), + [anon_sym_and_eq] = ACTIONS(5041), + [anon_sym_or_eq] = ACTIONS(5041), + [anon_sym_xor_eq] = ACTIONS(5041), + [anon_sym_LT_EQ_GT] = ACTIONS(5041), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_bitor] = ACTIONS(5041), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_bitand] = ACTIONS(5041), + [anon_sym_not_eq] = ACTIONS(5041), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_DOT_STAR] = ACTIONS(5041), + [anon_sym_DASH_GT] = ACTIONS(5048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5046), + [anon_sym_decltype] = ACTIONS(5046), + [anon_sym_DASH_GT_STAR] = ACTIONS(5041), }, - [2283] = { - [sym_identifier] = ACTIONS(3054), - [aux_sym_preproc_def_token1] = ACTIONS(3054), - [aux_sym_preproc_if_token1] = ACTIONS(3054), - [aux_sym_preproc_if_token2] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3054), - [aux_sym_preproc_else_token1] = ACTIONS(3054), - [aux_sym_preproc_elif_token1] = ACTIONS(3054), - [sym_preproc_directive] = ACTIONS(3054), - [anon_sym_LPAREN2] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym___extension__] = ACTIONS(3054), - [anon_sym_typedef] = ACTIONS(3054), - [anon_sym_extern] = ACTIONS(3054), - [anon_sym___attribute__] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(3056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3056), - [anon_sym___declspec] = ACTIONS(3054), - [anon_sym___based] = ACTIONS(3054), - [anon_sym_signed] = ACTIONS(3054), - [anon_sym_unsigned] = ACTIONS(3054), - [anon_sym_long] = ACTIONS(3054), - [anon_sym_short] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_register] = ACTIONS(3054), - [anon_sym_inline] = ACTIONS(3054), - [anon_sym___inline] = ACTIONS(3054), - [anon_sym___inline__] = ACTIONS(3054), - [anon_sym___forceinline] = ACTIONS(3054), - [anon_sym_thread_local] = ACTIONS(3054), - [anon_sym___thread] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_constexpr] = ACTIONS(3054), - [anon_sym_volatile] = ACTIONS(3054), - [anon_sym_restrict] = ACTIONS(3054), - [anon_sym___restrict__] = ACTIONS(3054), - [anon_sym__Atomic] = ACTIONS(3054), - [anon_sym__Noreturn] = ACTIONS(3054), - [anon_sym_noreturn] = ACTIONS(3054), - [anon_sym_mutable] = ACTIONS(3054), - [anon_sym_constinit] = ACTIONS(3054), - [anon_sym_consteval] = ACTIONS(3054), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_class] = ACTIONS(3054), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_union] = ACTIONS(3054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3054), - [anon_sym_decltype] = ACTIONS(3054), - [anon_sym_virtual] = ACTIONS(3054), - [anon_sym_alignas] = ACTIONS(3054), - [anon_sym_explicit] = ACTIONS(3054), - [anon_sym_typename] = ACTIONS(3054), - [anon_sym_template] = ACTIONS(3054), - [anon_sym_operator] = ACTIONS(3054), - [anon_sym_friend] = ACTIONS(3054), - [anon_sym_public] = ACTIONS(3054), - [anon_sym_private] = ACTIONS(3054), - [anon_sym_protected] = ACTIONS(3054), - [anon_sym_using] = ACTIONS(3054), - [anon_sym_static_assert] = ACTIONS(3054), + [2100] = { + [sym_identifier] = ACTIONS(5439), + [aux_sym_preproc_def_token1] = ACTIONS(5439), + [aux_sym_preproc_if_token1] = ACTIONS(5439), + [aux_sym_preproc_if_token2] = ACTIONS(5439), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5439), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5439), + [aux_sym_preproc_else_token1] = ACTIONS(5439), + [aux_sym_preproc_elif_token1] = ACTIONS(5439), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5439), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5439), + [sym_preproc_directive] = ACTIONS(5439), + [anon_sym_LPAREN2] = ACTIONS(5441), + [anon_sym_TILDE] = ACTIONS(5441), + [anon_sym_STAR] = ACTIONS(5441), + [anon_sym_AMP_AMP] = ACTIONS(5441), + [anon_sym_AMP] = ACTIONS(5439), + [anon_sym___extension__] = ACTIONS(5439), + [anon_sym_typedef] = ACTIONS(5439), + [anon_sym_extern] = ACTIONS(5439), + [anon_sym___attribute__] = ACTIONS(5439), + [anon_sym_COLON_COLON] = ACTIONS(5441), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5441), + [anon_sym___declspec] = ACTIONS(5439), + [anon_sym___based] = ACTIONS(5439), + [anon_sym_signed] = ACTIONS(5439), + [anon_sym_unsigned] = ACTIONS(5439), + [anon_sym_long] = ACTIONS(5439), + [anon_sym_short] = ACTIONS(5439), + [anon_sym_LBRACK] = ACTIONS(5439), + [anon_sym_static] = ACTIONS(5439), + [anon_sym_register] = ACTIONS(5439), + [anon_sym_inline] = ACTIONS(5439), + [anon_sym___inline] = ACTIONS(5439), + [anon_sym___inline__] = ACTIONS(5439), + [anon_sym___forceinline] = ACTIONS(5439), + [anon_sym_thread_local] = ACTIONS(5439), + [anon_sym___thread] = ACTIONS(5439), + [anon_sym_const] = ACTIONS(5439), + [anon_sym_constexpr] = ACTIONS(5439), + [anon_sym_volatile] = ACTIONS(5439), + [anon_sym_restrict] = ACTIONS(5439), + [anon_sym___restrict__] = ACTIONS(5439), + [anon_sym__Atomic] = ACTIONS(5439), + [anon_sym__Noreturn] = ACTIONS(5439), + [anon_sym_noreturn] = ACTIONS(5439), + [anon_sym_mutable] = ACTIONS(5439), + [anon_sym_constinit] = ACTIONS(5439), + [anon_sym_consteval] = ACTIONS(5439), + [sym_primitive_type] = ACTIONS(5439), + [anon_sym_enum] = ACTIONS(5439), + [anon_sym_class] = ACTIONS(5439), + [anon_sym_struct] = ACTIONS(5439), + [anon_sym_union] = ACTIONS(5439), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5439), + [anon_sym_decltype] = ACTIONS(5439), + [anon_sym_virtual] = ACTIONS(5439), + [anon_sym_alignas] = ACTIONS(5439), + [anon_sym_explicit] = ACTIONS(5439), + [anon_sym_typename] = ACTIONS(5439), + [anon_sym_template] = ACTIONS(5439), + [anon_sym_operator] = ACTIONS(5439), + [anon_sym_friend] = ACTIONS(5439), + [anon_sym_public] = ACTIONS(5439), + [anon_sym_private] = ACTIONS(5439), + [anon_sym_protected] = ACTIONS(5439), + [anon_sym_using] = ACTIONS(5439), + [anon_sym_static_assert] = ACTIONS(5439), }, - [2284] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_friend] = ACTIONS(2144), - [anon_sym_public] = ACTIONS(2144), - [anon_sym_private] = ACTIONS(2144), - [anon_sym_protected] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), + [2101] = { + [sym_identifier] = ACTIONS(5443), + [aux_sym_preproc_def_token1] = ACTIONS(5443), + [aux_sym_preproc_if_token1] = ACTIONS(5443), + [aux_sym_preproc_if_token2] = ACTIONS(5443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5443), + [aux_sym_preproc_else_token1] = ACTIONS(5443), + [aux_sym_preproc_elif_token1] = ACTIONS(5443), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5443), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5443), + [sym_preproc_directive] = ACTIONS(5443), + [anon_sym_LPAREN2] = ACTIONS(5445), + [anon_sym_TILDE] = ACTIONS(5445), + [anon_sym_STAR] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_AMP] = ACTIONS(5443), + [anon_sym___extension__] = ACTIONS(5443), + [anon_sym_typedef] = ACTIONS(5443), + [anon_sym_extern] = ACTIONS(5443), + [anon_sym___attribute__] = ACTIONS(5443), + [anon_sym_COLON_COLON] = ACTIONS(5445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5445), + [anon_sym___declspec] = ACTIONS(5443), + [anon_sym___based] = ACTIONS(5443), + [anon_sym_signed] = ACTIONS(5443), + [anon_sym_unsigned] = ACTIONS(5443), + [anon_sym_long] = ACTIONS(5443), + [anon_sym_short] = ACTIONS(5443), + [anon_sym_LBRACK] = ACTIONS(5443), + [anon_sym_static] = ACTIONS(5443), + [anon_sym_register] = ACTIONS(5443), + [anon_sym_inline] = ACTIONS(5443), + [anon_sym___inline] = ACTIONS(5443), + [anon_sym___inline__] = ACTIONS(5443), + [anon_sym___forceinline] = ACTIONS(5443), + [anon_sym_thread_local] = ACTIONS(5443), + [anon_sym___thread] = ACTIONS(5443), + [anon_sym_const] = ACTIONS(5443), + [anon_sym_constexpr] = ACTIONS(5443), + [anon_sym_volatile] = ACTIONS(5443), + [anon_sym_restrict] = ACTIONS(5443), + [anon_sym___restrict__] = ACTIONS(5443), + [anon_sym__Atomic] = ACTIONS(5443), + [anon_sym__Noreturn] = ACTIONS(5443), + [anon_sym_noreturn] = ACTIONS(5443), + [anon_sym_mutable] = ACTIONS(5443), + [anon_sym_constinit] = ACTIONS(5443), + [anon_sym_consteval] = ACTIONS(5443), + [sym_primitive_type] = ACTIONS(5443), + [anon_sym_enum] = ACTIONS(5443), + [anon_sym_class] = ACTIONS(5443), + [anon_sym_struct] = ACTIONS(5443), + [anon_sym_union] = ACTIONS(5443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5443), + [anon_sym_decltype] = ACTIONS(5443), + [anon_sym_virtual] = ACTIONS(5443), + [anon_sym_alignas] = ACTIONS(5443), + [anon_sym_explicit] = ACTIONS(5443), + [anon_sym_typename] = ACTIONS(5443), + [anon_sym_template] = ACTIONS(5443), + [anon_sym_operator] = ACTIONS(5443), + [anon_sym_friend] = ACTIONS(5443), + [anon_sym_public] = ACTIONS(5443), + [anon_sym_private] = ACTIONS(5443), + [anon_sym_protected] = ACTIONS(5443), + [anon_sym_using] = ACTIONS(5443), + [anon_sym_static_assert] = ACTIONS(5443), }, - [2285] = { - [sym_identifier] = ACTIONS(5471), - [aux_sym_preproc_def_token1] = ACTIONS(5471), - [aux_sym_preproc_if_token1] = ACTIONS(5471), - [aux_sym_preproc_if_token2] = ACTIONS(5471), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5471), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5471), - [aux_sym_preproc_else_token1] = ACTIONS(5471), - [aux_sym_preproc_elif_token1] = ACTIONS(5471), - [sym_preproc_directive] = ACTIONS(5471), - [anon_sym_LPAREN2] = ACTIONS(5473), - [anon_sym_TILDE] = ACTIONS(5473), - [anon_sym_STAR] = ACTIONS(5473), - [anon_sym_AMP_AMP] = ACTIONS(5473), - [anon_sym_AMP] = ACTIONS(5471), - [anon_sym___extension__] = ACTIONS(5471), - [anon_sym_typedef] = ACTIONS(5471), - [anon_sym_extern] = ACTIONS(5471), - [anon_sym___attribute__] = ACTIONS(5471), - [anon_sym_COLON_COLON] = ACTIONS(5473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5473), - [anon_sym___declspec] = ACTIONS(5471), - [anon_sym___based] = ACTIONS(5471), - [anon_sym_signed] = ACTIONS(5471), - [anon_sym_unsigned] = ACTIONS(5471), - [anon_sym_long] = ACTIONS(5471), - [anon_sym_short] = ACTIONS(5471), - [anon_sym_LBRACK] = ACTIONS(5471), - [anon_sym_static] = ACTIONS(5471), - [anon_sym_register] = ACTIONS(5471), - [anon_sym_inline] = ACTIONS(5471), - [anon_sym___inline] = ACTIONS(5471), - [anon_sym___inline__] = ACTIONS(5471), - [anon_sym___forceinline] = ACTIONS(5471), - [anon_sym_thread_local] = ACTIONS(5471), - [anon_sym___thread] = ACTIONS(5471), - [anon_sym_const] = ACTIONS(5471), - [anon_sym_constexpr] = ACTIONS(5471), - [anon_sym_volatile] = ACTIONS(5471), - [anon_sym_restrict] = ACTIONS(5471), - [anon_sym___restrict__] = ACTIONS(5471), - [anon_sym__Atomic] = ACTIONS(5471), - [anon_sym__Noreturn] = ACTIONS(5471), - [anon_sym_noreturn] = ACTIONS(5471), - [anon_sym_mutable] = ACTIONS(5471), - [anon_sym_constinit] = ACTIONS(5471), - [anon_sym_consteval] = ACTIONS(5471), - [sym_primitive_type] = ACTIONS(5471), - [anon_sym_enum] = ACTIONS(5471), - [anon_sym_class] = ACTIONS(5471), - [anon_sym_struct] = ACTIONS(5471), - [anon_sym_union] = ACTIONS(5471), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5471), - [anon_sym_decltype] = ACTIONS(5471), - [anon_sym_virtual] = ACTIONS(5471), - [anon_sym_alignas] = ACTIONS(5471), - [anon_sym_explicit] = ACTIONS(5471), - [anon_sym_typename] = ACTIONS(5471), - [anon_sym_template] = ACTIONS(5471), - [anon_sym_operator] = ACTIONS(5471), - [anon_sym_friend] = ACTIONS(5471), - [anon_sym_public] = ACTIONS(5471), - [anon_sym_private] = ACTIONS(5471), - [anon_sym_protected] = ACTIONS(5471), - [anon_sym_using] = ACTIONS(5471), - [anon_sym_static_assert] = ACTIONS(5471), + [2102] = { + [sym_identifier] = ACTIONS(3183), + [aux_sym_preproc_def_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token2] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), + [aux_sym_preproc_else_token1] = ACTIONS(3183), + [aux_sym_preproc_elif_token1] = ACTIONS(3183), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3183), + [anon_sym_LPAREN2] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_AMP_AMP] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym___extension__] = ACTIONS(3183), + [anon_sym_typedef] = ACTIONS(3183), + [anon_sym_extern] = ACTIONS(3183), + [anon_sym___attribute__] = ACTIONS(3183), + [anon_sym_COLON_COLON] = ACTIONS(3185), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), + [anon_sym___declspec] = ACTIONS(3183), + [anon_sym___based] = ACTIONS(3183), + [anon_sym_signed] = ACTIONS(3183), + [anon_sym_unsigned] = ACTIONS(3183), + [anon_sym_long] = ACTIONS(3183), + [anon_sym_short] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_register] = ACTIONS(3183), + [anon_sym_inline] = ACTIONS(3183), + [anon_sym___inline] = ACTIONS(3183), + [anon_sym___inline__] = ACTIONS(3183), + [anon_sym___forceinline] = ACTIONS(3183), + [anon_sym_thread_local] = ACTIONS(3183), + [anon_sym___thread] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_constexpr] = ACTIONS(3183), + [anon_sym_volatile] = ACTIONS(3183), + [anon_sym_restrict] = ACTIONS(3183), + [anon_sym___restrict__] = ACTIONS(3183), + [anon_sym__Atomic] = ACTIONS(3183), + [anon_sym__Noreturn] = ACTIONS(3183), + [anon_sym_noreturn] = ACTIONS(3183), + [anon_sym_mutable] = ACTIONS(3183), + [anon_sym_constinit] = ACTIONS(3183), + [anon_sym_consteval] = ACTIONS(3183), + [sym_primitive_type] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3183), + [anon_sym_decltype] = ACTIONS(3183), + [anon_sym_virtual] = ACTIONS(3183), + [anon_sym_alignas] = ACTIONS(3183), + [anon_sym_explicit] = ACTIONS(3183), + [anon_sym_typename] = ACTIONS(3183), + [anon_sym_template] = ACTIONS(3183), + [anon_sym_operator] = ACTIONS(3183), + [anon_sym_friend] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_protected] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_static_assert] = ACTIONS(3183), }, - [2286] = { - [sym_identifier] = ACTIONS(3259), - [aux_sym_preproc_def_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_if_token2] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3259), - [aux_sym_preproc_else_token1] = ACTIONS(3259), - [aux_sym_preproc_elif_token1] = ACTIONS(3259), - [sym_preproc_directive] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym___extension__] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3259), - [anon_sym_extern] = ACTIONS(3259), - [anon_sym___attribute__] = ACTIONS(3259), - [anon_sym_COLON_COLON] = ACTIONS(3261), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3261), - [anon_sym___declspec] = ACTIONS(3259), - [anon_sym___based] = ACTIONS(3259), - [anon_sym_signed] = ACTIONS(3259), - [anon_sym_unsigned] = ACTIONS(3259), - [anon_sym_long] = ACTIONS(3259), - [anon_sym_short] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_register] = ACTIONS(3259), - [anon_sym_inline] = ACTIONS(3259), - [anon_sym___inline] = ACTIONS(3259), - [anon_sym___inline__] = ACTIONS(3259), - [anon_sym___forceinline] = ACTIONS(3259), - [anon_sym_thread_local] = ACTIONS(3259), - [anon_sym___thread] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_constexpr] = ACTIONS(3259), - [anon_sym_volatile] = ACTIONS(3259), - [anon_sym_restrict] = ACTIONS(3259), - [anon_sym___restrict__] = ACTIONS(3259), - [anon_sym__Atomic] = ACTIONS(3259), - [anon_sym__Noreturn] = ACTIONS(3259), - [anon_sym_noreturn] = ACTIONS(3259), - [anon_sym_mutable] = ACTIONS(3259), - [anon_sym_constinit] = ACTIONS(3259), - [anon_sym_consteval] = ACTIONS(3259), - [sym_primitive_type] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3259), - [anon_sym_decltype] = ACTIONS(3259), - [anon_sym_virtual] = ACTIONS(3259), - [anon_sym_alignas] = ACTIONS(3259), - [anon_sym_explicit] = ACTIONS(3259), - [anon_sym_typename] = ACTIONS(3259), - [anon_sym_template] = ACTIONS(3259), - [anon_sym_operator] = ACTIONS(3259), - [anon_sym_friend] = ACTIONS(3259), - [anon_sym_public] = ACTIONS(3259), - [anon_sym_private] = ACTIONS(3259), - [anon_sym_protected] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_static_assert] = ACTIONS(3259), + [2103] = { + [sym_identifier] = ACTIONS(5447), + [aux_sym_preproc_def_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token2] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5447), + [aux_sym_preproc_else_token1] = ACTIONS(5447), + [aux_sym_preproc_elif_token1] = ACTIONS(5447), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5447), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5447), + [sym_preproc_directive] = ACTIONS(5447), + [anon_sym_LPAREN2] = ACTIONS(5449), + [anon_sym_TILDE] = ACTIONS(5449), + [anon_sym_STAR] = ACTIONS(5449), + [anon_sym_AMP_AMP] = ACTIONS(5449), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym___extension__] = ACTIONS(5447), + [anon_sym_typedef] = ACTIONS(5447), + [anon_sym_extern] = ACTIONS(5447), + [anon_sym___attribute__] = ACTIONS(5447), + [anon_sym_COLON_COLON] = ACTIONS(5449), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5449), + [anon_sym___declspec] = ACTIONS(5447), + [anon_sym___based] = ACTIONS(5447), + [anon_sym_signed] = ACTIONS(5447), + [anon_sym_unsigned] = ACTIONS(5447), + [anon_sym_long] = ACTIONS(5447), + [anon_sym_short] = ACTIONS(5447), + [anon_sym_LBRACK] = ACTIONS(5447), + [anon_sym_static] = ACTIONS(5447), + [anon_sym_register] = ACTIONS(5447), + [anon_sym_inline] = ACTIONS(5447), + [anon_sym___inline] = ACTIONS(5447), + [anon_sym___inline__] = ACTIONS(5447), + [anon_sym___forceinline] = ACTIONS(5447), + [anon_sym_thread_local] = ACTIONS(5447), + [anon_sym___thread] = ACTIONS(5447), + [anon_sym_const] = ACTIONS(5447), + [anon_sym_constexpr] = ACTIONS(5447), + [anon_sym_volatile] = ACTIONS(5447), + [anon_sym_restrict] = ACTIONS(5447), + [anon_sym___restrict__] = ACTIONS(5447), + [anon_sym__Atomic] = ACTIONS(5447), + [anon_sym__Noreturn] = ACTIONS(5447), + [anon_sym_noreturn] = ACTIONS(5447), + [anon_sym_mutable] = ACTIONS(5447), + [anon_sym_constinit] = ACTIONS(5447), + [anon_sym_consteval] = ACTIONS(5447), + [sym_primitive_type] = ACTIONS(5447), + [anon_sym_enum] = ACTIONS(5447), + [anon_sym_class] = ACTIONS(5447), + [anon_sym_struct] = ACTIONS(5447), + [anon_sym_union] = ACTIONS(5447), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5447), + [anon_sym_decltype] = ACTIONS(5447), + [anon_sym_virtual] = ACTIONS(5447), + [anon_sym_alignas] = ACTIONS(5447), + [anon_sym_explicit] = ACTIONS(5447), + [anon_sym_typename] = ACTIONS(5447), + [anon_sym_template] = ACTIONS(5447), + [anon_sym_operator] = ACTIONS(5447), + [anon_sym_friend] = ACTIONS(5447), + [anon_sym_public] = ACTIONS(5447), + [anon_sym_private] = ACTIONS(5447), + [anon_sym_protected] = ACTIONS(5447), + [anon_sym_using] = ACTIONS(5447), + [anon_sym_static_assert] = ACTIONS(5447), }, - [2287] = { - [sym_identifier] = ACTIONS(5475), - [aux_sym_preproc_def_token1] = ACTIONS(5475), - [aux_sym_preproc_if_token1] = ACTIONS(5475), - [aux_sym_preproc_if_token2] = ACTIONS(5475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5475), - [aux_sym_preproc_else_token1] = ACTIONS(5475), - [aux_sym_preproc_elif_token1] = ACTIONS(5475), - [sym_preproc_directive] = ACTIONS(5475), - [anon_sym_LPAREN2] = ACTIONS(5477), - [anon_sym_TILDE] = ACTIONS(5477), - [anon_sym_STAR] = ACTIONS(5477), - [anon_sym_AMP_AMP] = ACTIONS(5477), - [anon_sym_AMP] = ACTIONS(5475), - [anon_sym___extension__] = ACTIONS(5475), - [anon_sym_typedef] = ACTIONS(5475), - [anon_sym_extern] = ACTIONS(5475), - [anon_sym___attribute__] = ACTIONS(5475), - [anon_sym_COLON_COLON] = ACTIONS(5477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5477), - [anon_sym___declspec] = ACTIONS(5475), - [anon_sym___based] = ACTIONS(5475), - [anon_sym_signed] = ACTIONS(5475), - [anon_sym_unsigned] = ACTIONS(5475), - [anon_sym_long] = ACTIONS(5475), - [anon_sym_short] = ACTIONS(5475), - [anon_sym_LBRACK] = ACTIONS(5475), - [anon_sym_static] = ACTIONS(5475), - [anon_sym_register] = ACTIONS(5475), - [anon_sym_inline] = ACTIONS(5475), - [anon_sym___inline] = ACTIONS(5475), - [anon_sym___inline__] = ACTIONS(5475), - [anon_sym___forceinline] = ACTIONS(5475), - [anon_sym_thread_local] = ACTIONS(5475), - [anon_sym___thread] = ACTIONS(5475), - [anon_sym_const] = ACTIONS(5475), - [anon_sym_constexpr] = ACTIONS(5475), - [anon_sym_volatile] = ACTIONS(5475), - [anon_sym_restrict] = ACTIONS(5475), - [anon_sym___restrict__] = ACTIONS(5475), - [anon_sym__Atomic] = ACTIONS(5475), - [anon_sym__Noreturn] = ACTIONS(5475), - [anon_sym_noreturn] = ACTIONS(5475), - [anon_sym_mutable] = ACTIONS(5475), - [anon_sym_constinit] = ACTIONS(5475), - [anon_sym_consteval] = ACTIONS(5475), - [sym_primitive_type] = ACTIONS(5475), - [anon_sym_enum] = ACTIONS(5475), + [2104] = { + [sym_identifier] = ACTIONS(5405), + [aux_sym_preproc_def_token1] = ACTIONS(5405), + [aux_sym_preproc_if_token1] = ACTIONS(5405), + [aux_sym_preproc_if_token2] = ACTIONS(5405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5405), + [aux_sym_preproc_else_token1] = ACTIONS(5405), + [aux_sym_preproc_elif_token1] = ACTIONS(5405), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5405), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5405), + [sym_preproc_directive] = ACTIONS(5405), + [anon_sym_LPAREN2] = ACTIONS(5407), + [anon_sym_TILDE] = ACTIONS(5407), + [anon_sym_STAR] = ACTIONS(5407), + [anon_sym_AMP_AMP] = ACTIONS(5407), + [anon_sym_AMP] = ACTIONS(5405), + [anon_sym___extension__] = ACTIONS(5405), + [anon_sym_typedef] = ACTIONS(5405), + [anon_sym_extern] = ACTIONS(5405), + [anon_sym___attribute__] = ACTIONS(5405), + [anon_sym_COLON_COLON] = ACTIONS(5407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5407), + [anon_sym___declspec] = ACTIONS(5405), + [anon_sym___based] = ACTIONS(5405), + [anon_sym_signed] = ACTIONS(5405), + [anon_sym_unsigned] = ACTIONS(5405), + [anon_sym_long] = ACTIONS(5405), + [anon_sym_short] = ACTIONS(5405), + [anon_sym_LBRACK] = ACTIONS(5405), + [anon_sym_static] = ACTIONS(5405), + [anon_sym_register] = ACTIONS(5405), + [anon_sym_inline] = ACTIONS(5405), + [anon_sym___inline] = ACTIONS(5405), + [anon_sym___inline__] = ACTIONS(5405), + [anon_sym___forceinline] = ACTIONS(5405), + [anon_sym_thread_local] = ACTIONS(5405), + [anon_sym___thread] = ACTIONS(5405), + [anon_sym_const] = ACTIONS(5405), + [anon_sym_constexpr] = ACTIONS(5405), + [anon_sym_volatile] = ACTIONS(5405), + [anon_sym_restrict] = ACTIONS(5405), + [anon_sym___restrict__] = ACTIONS(5405), + [anon_sym__Atomic] = ACTIONS(5405), + [anon_sym__Noreturn] = ACTIONS(5405), + [anon_sym_noreturn] = ACTIONS(5405), + [anon_sym_mutable] = ACTIONS(5405), + [anon_sym_constinit] = ACTIONS(5405), + [anon_sym_consteval] = ACTIONS(5405), + [sym_primitive_type] = ACTIONS(5405), + [anon_sym_enum] = ACTIONS(5405), + [anon_sym_class] = ACTIONS(5405), + [anon_sym_struct] = ACTIONS(5405), + [anon_sym_union] = ACTIONS(5405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5405), + [anon_sym_decltype] = ACTIONS(5405), + [anon_sym_virtual] = ACTIONS(5405), + [anon_sym_alignas] = ACTIONS(5405), + [anon_sym_explicit] = ACTIONS(5405), + [anon_sym_typename] = ACTIONS(5405), + [anon_sym_template] = ACTIONS(5405), + [anon_sym_operator] = ACTIONS(5405), + [anon_sym_friend] = ACTIONS(5405), + [anon_sym_public] = ACTIONS(5405), + [anon_sym_private] = ACTIONS(5405), + [anon_sym_protected] = ACTIONS(5405), + [anon_sym_using] = ACTIONS(5405), + [anon_sym_static_assert] = ACTIONS(5405), + }, + [2105] = { + [sym_identifier] = ACTIONS(5447), + [aux_sym_preproc_def_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token2] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5447), + [aux_sym_preproc_else_token1] = ACTIONS(5447), + [aux_sym_preproc_elif_token1] = ACTIONS(5447), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5447), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5447), + [sym_preproc_directive] = ACTIONS(5447), + [anon_sym_LPAREN2] = ACTIONS(5449), + [anon_sym_TILDE] = ACTIONS(5449), + [anon_sym_STAR] = ACTIONS(5449), + [anon_sym_AMP_AMP] = ACTIONS(5449), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym___extension__] = ACTIONS(5447), + [anon_sym_typedef] = ACTIONS(5447), + [anon_sym_extern] = ACTIONS(5447), + [anon_sym___attribute__] = ACTIONS(5447), + [anon_sym_COLON_COLON] = ACTIONS(5449), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5449), + [anon_sym___declspec] = ACTIONS(5447), + [anon_sym___based] = ACTIONS(5447), + [anon_sym_signed] = ACTIONS(5447), + [anon_sym_unsigned] = ACTIONS(5447), + [anon_sym_long] = ACTIONS(5447), + [anon_sym_short] = ACTIONS(5447), + [anon_sym_LBRACK] = ACTIONS(5447), + [anon_sym_static] = ACTIONS(5447), + [anon_sym_register] = ACTIONS(5447), + [anon_sym_inline] = ACTIONS(5447), + [anon_sym___inline] = ACTIONS(5447), + [anon_sym___inline__] = ACTIONS(5447), + [anon_sym___forceinline] = ACTIONS(5447), + [anon_sym_thread_local] = ACTIONS(5447), + [anon_sym___thread] = ACTIONS(5447), + [anon_sym_const] = ACTIONS(5447), + [anon_sym_constexpr] = ACTIONS(5447), + [anon_sym_volatile] = ACTIONS(5447), + [anon_sym_restrict] = ACTIONS(5447), + [anon_sym___restrict__] = ACTIONS(5447), + [anon_sym__Atomic] = ACTIONS(5447), + [anon_sym__Noreturn] = ACTIONS(5447), + [anon_sym_noreturn] = ACTIONS(5447), + [anon_sym_mutable] = ACTIONS(5447), + [anon_sym_constinit] = ACTIONS(5447), + [anon_sym_consteval] = ACTIONS(5447), + [sym_primitive_type] = ACTIONS(5447), + [anon_sym_enum] = ACTIONS(5447), + [anon_sym_class] = ACTIONS(5447), + [anon_sym_struct] = ACTIONS(5447), + [anon_sym_union] = ACTIONS(5447), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5447), + [anon_sym_decltype] = ACTIONS(5447), + [anon_sym_virtual] = ACTIONS(5447), + [anon_sym_alignas] = ACTIONS(5447), + [anon_sym_explicit] = ACTIONS(5447), + [anon_sym_typename] = ACTIONS(5447), + [anon_sym_template] = ACTIONS(5447), + [anon_sym_operator] = ACTIONS(5447), + [anon_sym_friend] = ACTIONS(5447), + [anon_sym_public] = ACTIONS(5447), + [anon_sym_private] = ACTIONS(5447), + [anon_sym_protected] = ACTIONS(5447), + [anon_sym_using] = ACTIONS(5447), + [anon_sym_static_assert] = ACTIONS(5447), + }, + [2106] = { + [sym_identifier] = ACTIONS(5451), + [aux_sym_preproc_def_token1] = ACTIONS(5451), + [aux_sym_preproc_if_token1] = ACTIONS(5451), + [aux_sym_preproc_if_token2] = ACTIONS(5451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5451), + [aux_sym_preproc_else_token1] = ACTIONS(5451), + [aux_sym_preproc_elif_token1] = ACTIONS(5451), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5451), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5451), + [sym_preproc_directive] = ACTIONS(5451), + [anon_sym_LPAREN2] = ACTIONS(5453), + [anon_sym_TILDE] = ACTIONS(5453), + [anon_sym_STAR] = ACTIONS(5453), + [anon_sym_AMP_AMP] = ACTIONS(5453), + [anon_sym_AMP] = ACTIONS(5451), + [anon_sym___extension__] = ACTIONS(5451), + [anon_sym_typedef] = ACTIONS(5451), + [anon_sym_extern] = ACTIONS(5451), + [anon_sym___attribute__] = ACTIONS(5451), + [anon_sym_COLON_COLON] = ACTIONS(5453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5453), + [anon_sym___declspec] = ACTIONS(5451), + [anon_sym___based] = ACTIONS(5451), + [anon_sym_signed] = ACTIONS(5451), + [anon_sym_unsigned] = ACTIONS(5451), + [anon_sym_long] = ACTIONS(5451), + [anon_sym_short] = ACTIONS(5451), + [anon_sym_LBRACK] = ACTIONS(5451), + [anon_sym_static] = ACTIONS(5451), + [anon_sym_register] = ACTIONS(5451), + [anon_sym_inline] = ACTIONS(5451), + [anon_sym___inline] = ACTIONS(5451), + [anon_sym___inline__] = ACTIONS(5451), + [anon_sym___forceinline] = ACTIONS(5451), + [anon_sym_thread_local] = ACTIONS(5451), + [anon_sym___thread] = ACTIONS(5451), + [anon_sym_const] = ACTIONS(5451), + [anon_sym_constexpr] = ACTIONS(5451), + [anon_sym_volatile] = ACTIONS(5451), + [anon_sym_restrict] = ACTIONS(5451), + [anon_sym___restrict__] = ACTIONS(5451), + [anon_sym__Atomic] = ACTIONS(5451), + [anon_sym__Noreturn] = ACTIONS(5451), + [anon_sym_noreturn] = ACTIONS(5451), + [anon_sym_mutable] = ACTIONS(5451), + [anon_sym_constinit] = ACTIONS(5451), + [anon_sym_consteval] = ACTIONS(5451), + [sym_primitive_type] = ACTIONS(5451), + [anon_sym_enum] = ACTIONS(5451), + [anon_sym_class] = ACTIONS(5451), + [anon_sym_struct] = ACTIONS(5451), + [anon_sym_union] = ACTIONS(5451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5451), + [anon_sym_decltype] = ACTIONS(5451), + [anon_sym_virtual] = ACTIONS(5451), + [anon_sym_alignas] = ACTIONS(5451), + [anon_sym_explicit] = ACTIONS(5451), + [anon_sym_typename] = ACTIONS(5451), + [anon_sym_template] = ACTIONS(5451), + [anon_sym_operator] = ACTIONS(5451), + [anon_sym_friend] = ACTIONS(5451), + [anon_sym_public] = ACTIONS(5451), + [anon_sym_private] = ACTIONS(5451), + [anon_sym_protected] = ACTIONS(5451), + [anon_sym_using] = ACTIONS(5451), + [anon_sym_static_assert] = ACTIONS(5451), + }, + [2107] = { + [sym_identifier] = ACTIONS(3078), + [aux_sym_preproc_def_token1] = ACTIONS(3078), + [aux_sym_preproc_if_token1] = ACTIONS(3078), + [aux_sym_preproc_if_token2] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), + [aux_sym_preproc_else_token1] = ACTIONS(3078), + [aux_sym_preproc_elif_token1] = ACTIONS(3078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3078), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3078), + [sym_preproc_directive] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym___extension__] = ACTIONS(3078), + [anon_sym_typedef] = ACTIONS(3078), + [anon_sym_extern] = ACTIONS(3078), + [anon_sym___attribute__] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), + [anon_sym___declspec] = ACTIONS(3078), + [anon_sym___based] = ACTIONS(3078), + [anon_sym_signed] = ACTIONS(3078), + [anon_sym_unsigned] = ACTIONS(3078), + [anon_sym_long] = ACTIONS(3078), + [anon_sym_short] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_static] = ACTIONS(3078), + [anon_sym_register] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym___inline] = ACTIONS(3078), + [anon_sym___inline__] = ACTIONS(3078), + [anon_sym___forceinline] = ACTIONS(3078), + [anon_sym_thread_local] = ACTIONS(3078), + [anon_sym___thread] = ACTIONS(3078), + [anon_sym_const] = ACTIONS(3078), + [anon_sym_constexpr] = ACTIONS(3078), + [anon_sym_volatile] = ACTIONS(3078), + [anon_sym_restrict] = ACTIONS(3078), + [anon_sym___restrict__] = ACTIONS(3078), + [anon_sym__Atomic] = ACTIONS(3078), + [anon_sym__Noreturn] = ACTIONS(3078), + [anon_sym_noreturn] = ACTIONS(3078), + [anon_sym_mutable] = ACTIONS(3078), + [anon_sym_constinit] = ACTIONS(3078), + [anon_sym_consteval] = ACTIONS(3078), + [sym_primitive_type] = ACTIONS(3078), + [anon_sym_enum] = ACTIONS(3078), + [anon_sym_class] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(3078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3078), + [anon_sym_decltype] = ACTIONS(3078), + [anon_sym_virtual] = ACTIONS(3078), + [anon_sym_alignas] = ACTIONS(3078), + [anon_sym_explicit] = ACTIONS(3078), + [anon_sym_typename] = ACTIONS(3078), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_friend] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_using] = ACTIONS(3078), + [anon_sym_static_assert] = ACTIONS(3078), + }, + [2108] = { + [sym_identifier] = ACTIONS(3012), + [aux_sym_preproc_def_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token2] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3012), + [aux_sym_preproc_else_token1] = ACTIONS(3012), + [aux_sym_preproc_elif_token1] = ACTIONS(3012), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3012), + [sym_preproc_directive] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym___extension__] = ACTIONS(3012), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym___based] = ACTIONS(3012), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym___inline] = ACTIONS(3012), + [anon_sym___inline__] = ACTIONS(3012), + [anon_sym___forceinline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym___thread] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_alignas] = ACTIONS(3012), + [anon_sym_explicit] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_operator] = ACTIONS(3012), + [anon_sym_friend] = ACTIONS(3012), + [anon_sym_public] = ACTIONS(3012), + [anon_sym_private] = ACTIONS(3012), + [anon_sym_protected] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_static_assert] = ACTIONS(3012), + }, + [2109] = { + [sym_identifier] = ACTIONS(5455), + [aux_sym_preproc_def_token1] = ACTIONS(5455), + [aux_sym_preproc_if_token1] = ACTIONS(5455), + [aux_sym_preproc_if_token2] = ACTIONS(5455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5455), + [aux_sym_preproc_else_token1] = ACTIONS(5455), + [aux_sym_preproc_elif_token1] = ACTIONS(5455), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5455), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5455), + [sym_preproc_directive] = ACTIONS(5455), + [anon_sym_LPAREN2] = ACTIONS(5457), + [anon_sym_TILDE] = ACTIONS(5457), + [anon_sym_STAR] = ACTIONS(5457), + [anon_sym_AMP_AMP] = ACTIONS(5457), + [anon_sym_AMP] = ACTIONS(5455), + [anon_sym___extension__] = ACTIONS(5455), + [anon_sym_typedef] = ACTIONS(5455), + [anon_sym_extern] = ACTIONS(5455), + [anon_sym___attribute__] = ACTIONS(5455), + [anon_sym_COLON_COLON] = ACTIONS(5457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5457), + [anon_sym___declspec] = ACTIONS(5455), + [anon_sym___based] = ACTIONS(5455), + [anon_sym_signed] = ACTIONS(5455), + [anon_sym_unsigned] = ACTIONS(5455), + [anon_sym_long] = ACTIONS(5455), + [anon_sym_short] = ACTIONS(5455), + [anon_sym_LBRACK] = ACTIONS(5455), + [anon_sym_static] = ACTIONS(5455), + [anon_sym_register] = ACTIONS(5455), + [anon_sym_inline] = ACTIONS(5455), + [anon_sym___inline] = ACTIONS(5455), + [anon_sym___inline__] = ACTIONS(5455), + [anon_sym___forceinline] = ACTIONS(5455), + [anon_sym_thread_local] = ACTIONS(5455), + [anon_sym___thread] = ACTIONS(5455), + [anon_sym_const] = ACTIONS(5455), + [anon_sym_constexpr] = ACTIONS(5455), + [anon_sym_volatile] = ACTIONS(5455), + [anon_sym_restrict] = ACTIONS(5455), + [anon_sym___restrict__] = ACTIONS(5455), + [anon_sym__Atomic] = ACTIONS(5455), + [anon_sym__Noreturn] = ACTIONS(5455), + [anon_sym_noreturn] = ACTIONS(5455), + [anon_sym_mutable] = ACTIONS(5455), + [anon_sym_constinit] = ACTIONS(5455), + [anon_sym_consteval] = ACTIONS(5455), + [sym_primitive_type] = ACTIONS(5455), + [anon_sym_enum] = ACTIONS(5455), + [anon_sym_class] = ACTIONS(5455), + [anon_sym_struct] = ACTIONS(5455), + [anon_sym_union] = ACTIONS(5455), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5455), + [anon_sym_decltype] = ACTIONS(5455), + [anon_sym_virtual] = ACTIONS(5455), + [anon_sym_alignas] = ACTIONS(5455), + [anon_sym_explicit] = ACTIONS(5455), + [anon_sym_typename] = ACTIONS(5455), + [anon_sym_template] = ACTIONS(5455), + [anon_sym_operator] = ACTIONS(5455), + [anon_sym_friend] = ACTIONS(5455), + [anon_sym_public] = ACTIONS(5455), + [anon_sym_private] = ACTIONS(5455), + [anon_sym_protected] = ACTIONS(5455), + [anon_sym_using] = ACTIONS(5455), + [anon_sym_static_assert] = ACTIONS(5455), + }, + [2110] = { + [sym_identifier] = ACTIONS(5459), + [aux_sym_preproc_def_token1] = ACTIONS(5459), + [aux_sym_preproc_if_token1] = ACTIONS(5459), + [aux_sym_preproc_if_token2] = ACTIONS(5459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5459), + [aux_sym_preproc_else_token1] = ACTIONS(5459), + [aux_sym_preproc_elif_token1] = ACTIONS(5459), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5459), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5459), + [sym_preproc_directive] = ACTIONS(5459), + [anon_sym_LPAREN2] = ACTIONS(5461), + [anon_sym_TILDE] = ACTIONS(5461), + [anon_sym_STAR] = ACTIONS(5461), + [anon_sym_AMP_AMP] = ACTIONS(5461), + [anon_sym_AMP] = ACTIONS(5459), + [anon_sym___extension__] = ACTIONS(5459), + [anon_sym_typedef] = ACTIONS(5459), + [anon_sym_extern] = ACTIONS(5459), + [anon_sym___attribute__] = ACTIONS(5459), + [anon_sym_COLON_COLON] = ACTIONS(5461), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5461), + [anon_sym___declspec] = ACTIONS(5459), + [anon_sym___based] = ACTIONS(5459), + [anon_sym_signed] = ACTIONS(5459), + [anon_sym_unsigned] = ACTIONS(5459), + [anon_sym_long] = ACTIONS(5459), + [anon_sym_short] = ACTIONS(5459), + [anon_sym_LBRACK] = ACTIONS(5459), + [anon_sym_static] = ACTIONS(5459), + [anon_sym_register] = ACTIONS(5459), + [anon_sym_inline] = ACTIONS(5459), + [anon_sym___inline] = ACTIONS(5459), + [anon_sym___inline__] = ACTIONS(5459), + [anon_sym___forceinline] = ACTIONS(5459), + [anon_sym_thread_local] = ACTIONS(5459), + [anon_sym___thread] = ACTIONS(5459), + [anon_sym_const] = ACTIONS(5459), + [anon_sym_constexpr] = ACTIONS(5459), + [anon_sym_volatile] = ACTIONS(5459), + [anon_sym_restrict] = ACTIONS(5459), + [anon_sym___restrict__] = ACTIONS(5459), + [anon_sym__Atomic] = ACTIONS(5459), + [anon_sym__Noreturn] = ACTIONS(5459), + [anon_sym_noreturn] = ACTIONS(5459), + [anon_sym_mutable] = ACTIONS(5459), + [anon_sym_constinit] = ACTIONS(5459), + [anon_sym_consteval] = ACTIONS(5459), + [sym_primitive_type] = ACTIONS(5459), + [anon_sym_enum] = ACTIONS(5459), + [anon_sym_class] = ACTIONS(5459), + [anon_sym_struct] = ACTIONS(5459), + [anon_sym_union] = ACTIONS(5459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5459), + [anon_sym_decltype] = ACTIONS(5459), + [anon_sym_virtual] = ACTIONS(5459), + [anon_sym_alignas] = ACTIONS(5459), + [anon_sym_explicit] = ACTIONS(5459), + [anon_sym_typename] = ACTIONS(5459), + [anon_sym_template] = ACTIONS(5459), + [anon_sym_operator] = ACTIONS(5459), + [anon_sym_friend] = ACTIONS(5459), + [anon_sym_public] = ACTIONS(5459), + [anon_sym_private] = ACTIONS(5459), + [anon_sym_protected] = ACTIONS(5459), + [anon_sym_using] = ACTIONS(5459), + [anon_sym_static_assert] = ACTIONS(5459), + }, + [2111] = { + [sym_identifier] = ACTIONS(5463), + [aux_sym_preproc_def_token1] = ACTIONS(5463), + [aux_sym_preproc_if_token1] = ACTIONS(5463), + [aux_sym_preproc_if_token2] = ACTIONS(5463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5463), + [aux_sym_preproc_else_token1] = ACTIONS(5463), + [aux_sym_preproc_elif_token1] = ACTIONS(5463), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5463), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5463), + [sym_preproc_directive] = ACTIONS(5463), + [anon_sym_LPAREN2] = ACTIONS(5465), + [anon_sym_TILDE] = ACTIONS(5465), + [anon_sym_STAR] = ACTIONS(5465), + [anon_sym_AMP_AMP] = ACTIONS(5465), + [anon_sym_AMP] = ACTIONS(5463), + [anon_sym___extension__] = ACTIONS(5463), + [anon_sym_typedef] = ACTIONS(5463), + [anon_sym_extern] = ACTIONS(5463), + [anon_sym___attribute__] = ACTIONS(5463), + [anon_sym_COLON_COLON] = ACTIONS(5465), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5465), + [anon_sym___declspec] = ACTIONS(5463), + [anon_sym___based] = ACTIONS(5463), + [anon_sym_signed] = ACTIONS(5463), + [anon_sym_unsigned] = ACTIONS(5463), + [anon_sym_long] = ACTIONS(5463), + [anon_sym_short] = ACTIONS(5463), + [anon_sym_LBRACK] = ACTIONS(5463), + [anon_sym_static] = ACTIONS(5463), + [anon_sym_register] = ACTIONS(5463), + [anon_sym_inline] = ACTIONS(5463), + [anon_sym___inline] = ACTIONS(5463), + [anon_sym___inline__] = ACTIONS(5463), + [anon_sym___forceinline] = ACTIONS(5463), + [anon_sym_thread_local] = ACTIONS(5463), + [anon_sym___thread] = ACTIONS(5463), + [anon_sym_const] = ACTIONS(5463), + [anon_sym_constexpr] = ACTIONS(5463), + [anon_sym_volatile] = ACTIONS(5463), + [anon_sym_restrict] = ACTIONS(5463), + [anon_sym___restrict__] = ACTIONS(5463), + [anon_sym__Atomic] = ACTIONS(5463), + [anon_sym__Noreturn] = ACTIONS(5463), + [anon_sym_noreturn] = ACTIONS(5463), + [anon_sym_mutable] = ACTIONS(5463), + [anon_sym_constinit] = ACTIONS(5463), + [anon_sym_consteval] = ACTIONS(5463), + [sym_primitive_type] = ACTIONS(5463), + [anon_sym_enum] = ACTIONS(5463), + [anon_sym_class] = ACTIONS(5463), + [anon_sym_struct] = ACTIONS(5463), + [anon_sym_union] = ACTIONS(5463), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5463), + [anon_sym_decltype] = ACTIONS(5463), + [anon_sym_virtual] = ACTIONS(5463), + [anon_sym_alignas] = ACTIONS(5463), + [anon_sym_explicit] = ACTIONS(5463), + [anon_sym_typename] = ACTIONS(5463), + [anon_sym_template] = ACTIONS(5463), + [anon_sym_operator] = ACTIONS(5463), + [anon_sym_friend] = ACTIONS(5463), + [anon_sym_public] = ACTIONS(5463), + [anon_sym_private] = ACTIONS(5463), + [anon_sym_protected] = ACTIONS(5463), + [anon_sym_using] = ACTIONS(5463), + [anon_sym_static_assert] = ACTIONS(5463), + }, + [2112] = { + [sym_identifier] = ACTIONS(5467), + [aux_sym_preproc_def_token1] = ACTIONS(5467), + [aux_sym_preproc_if_token1] = ACTIONS(5467), + [aux_sym_preproc_if_token2] = ACTIONS(5467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5467), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5467), + [aux_sym_preproc_else_token1] = ACTIONS(5467), + [aux_sym_preproc_elif_token1] = ACTIONS(5467), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5467), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5467), + [sym_preproc_directive] = ACTIONS(5467), + [anon_sym_LPAREN2] = ACTIONS(5469), + [anon_sym_TILDE] = ACTIONS(5469), + [anon_sym_STAR] = ACTIONS(5469), + [anon_sym_AMP_AMP] = ACTIONS(5469), + [anon_sym_AMP] = ACTIONS(5467), + [anon_sym___extension__] = ACTIONS(5467), + [anon_sym_typedef] = ACTIONS(5467), + [anon_sym_extern] = ACTIONS(5467), + [anon_sym___attribute__] = ACTIONS(5467), + [anon_sym_COLON_COLON] = ACTIONS(5469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5469), + [anon_sym___declspec] = ACTIONS(5467), + [anon_sym___based] = ACTIONS(5467), + [anon_sym_signed] = ACTIONS(5467), + [anon_sym_unsigned] = ACTIONS(5467), + [anon_sym_long] = ACTIONS(5467), + [anon_sym_short] = ACTIONS(5467), + [anon_sym_LBRACK] = ACTIONS(5467), + [anon_sym_static] = ACTIONS(5467), + [anon_sym_register] = ACTIONS(5467), + [anon_sym_inline] = ACTIONS(5467), + [anon_sym___inline] = ACTIONS(5467), + [anon_sym___inline__] = ACTIONS(5467), + [anon_sym___forceinline] = ACTIONS(5467), + [anon_sym_thread_local] = ACTIONS(5467), + [anon_sym___thread] = ACTIONS(5467), + [anon_sym_const] = ACTIONS(5467), + [anon_sym_constexpr] = ACTIONS(5467), + [anon_sym_volatile] = ACTIONS(5467), + [anon_sym_restrict] = ACTIONS(5467), + [anon_sym___restrict__] = ACTIONS(5467), + [anon_sym__Atomic] = ACTIONS(5467), + [anon_sym__Noreturn] = ACTIONS(5467), + [anon_sym_noreturn] = ACTIONS(5467), + [anon_sym_mutable] = ACTIONS(5467), + [anon_sym_constinit] = ACTIONS(5467), + [anon_sym_consteval] = ACTIONS(5467), + [sym_primitive_type] = ACTIONS(5467), + [anon_sym_enum] = ACTIONS(5467), + [anon_sym_class] = ACTIONS(5467), + [anon_sym_struct] = ACTIONS(5467), + [anon_sym_union] = ACTIONS(5467), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5467), + [anon_sym_decltype] = ACTIONS(5467), + [anon_sym_virtual] = ACTIONS(5467), + [anon_sym_alignas] = ACTIONS(5467), + [anon_sym_explicit] = ACTIONS(5467), + [anon_sym_typename] = ACTIONS(5467), + [anon_sym_template] = ACTIONS(5467), + [anon_sym_operator] = ACTIONS(5467), + [anon_sym_friend] = ACTIONS(5467), + [anon_sym_public] = ACTIONS(5467), + [anon_sym_private] = ACTIONS(5467), + [anon_sym_protected] = ACTIONS(5467), + [anon_sym_using] = ACTIONS(5467), + [anon_sym_static_assert] = ACTIONS(5467), + }, + [2113] = { + [sym_identifier] = ACTIONS(5471), + [aux_sym_preproc_def_token1] = ACTIONS(5471), + [aux_sym_preproc_if_token1] = ACTIONS(5471), + [aux_sym_preproc_if_token2] = ACTIONS(5471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5471), + [aux_sym_preproc_else_token1] = ACTIONS(5471), + [aux_sym_preproc_elif_token1] = ACTIONS(5471), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5471), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5471), + [sym_preproc_directive] = ACTIONS(5471), + [anon_sym_LPAREN2] = ACTIONS(5473), + [anon_sym_TILDE] = ACTIONS(5473), + [anon_sym_STAR] = ACTIONS(5473), + [anon_sym_AMP_AMP] = ACTIONS(5473), + [anon_sym_AMP] = ACTIONS(5471), + [anon_sym___extension__] = ACTIONS(5471), + [anon_sym_typedef] = ACTIONS(5471), + [anon_sym_extern] = ACTIONS(5471), + [anon_sym___attribute__] = ACTIONS(5471), + [anon_sym_COLON_COLON] = ACTIONS(5473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5473), + [anon_sym___declspec] = ACTIONS(5471), + [anon_sym___based] = ACTIONS(5471), + [anon_sym_signed] = ACTIONS(5471), + [anon_sym_unsigned] = ACTIONS(5471), + [anon_sym_long] = ACTIONS(5471), + [anon_sym_short] = ACTIONS(5471), + [anon_sym_LBRACK] = ACTIONS(5471), + [anon_sym_static] = ACTIONS(5471), + [anon_sym_register] = ACTIONS(5471), + [anon_sym_inline] = ACTIONS(5471), + [anon_sym___inline] = ACTIONS(5471), + [anon_sym___inline__] = ACTIONS(5471), + [anon_sym___forceinline] = ACTIONS(5471), + [anon_sym_thread_local] = ACTIONS(5471), + [anon_sym___thread] = ACTIONS(5471), + [anon_sym_const] = ACTIONS(5471), + [anon_sym_constexpr] = ACTIONS(5471), + [anon_sym_volatile] = ACTIONS(5471), + [anon_sym_restrict] = ACTIONS(5471), + [anon_sym___restrict__] = ACTIONS(5471), + [anon_sym__Atomic] = ACTIONS(5471), + [anon_sym__Noreturn] = ACTIONS(5471), + [anon_sym_noreturn] = ACTIONS(5471), + [anon_sym_mutable] = ACTIONS(5471), + [anon_sym_constinit] = ACTIONS(5471), + [anon_sym_consteval] = ACTIONS(5471), + [sym_primitive_type] = ACTIONS(5471), + [anon_sym_enum] = ACTIONS(5471), + [anon_sym_class] = ACTIONS(5471), + [anon_sym_struct] = ACTIONS(5471), + [anon_sym_union] = ACTIONS(5471), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5471), + [anon_sym_decltype] = ACTIONS(5471), + [anon_sym_virtual] = ACTIONS(5471), + [anon_sym_alignas] = ACTIONS(5471), + [anon_sym_explicit] = ACTIONS(5471), + [anon_sym_typename] = ACTIONS(5471), + [anon_sym_template] = ACTIONS(5471), + [anon_sym_operator] = ACTIONS(5471), + [anon_sym_friend] = ACTIONS(5471), + [anon_sym_public] = ACTIONS(5471), + [anon_sym_private] = ACTIONS(5471), + [anon_sym_protected] = ACTIONS(5471), + [anon_sym_using] = ACTIONS(5471), + [anon_sym_static_assert] = ACTIONS(5471), + }, + [2114] = { + [sym_identifier] = ACTIONS(5475), + [aux_sym_preproc_def_token1] = ACTIONS(5475), + [aux_sym_preproc_if_token1] = ACTIONS(5475), + [aux_sym_preproc_if_token2] = ACTIONS(5475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5475), + [aux_sym_preproc_else_token1] = ACTIONS(5475), + [aux_sym_preproc_elif_token1] = ACTIONS(5475), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5475), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5475), + [sym_preproc_directive] = ACTIONS(5475), + [anon_sym_LPAREN2] = ACTIONS(5477), + [anon_sym_TILDE] = ACTIONS(5477), + [anon_sym_STAR] = ACTIONS(5477), + [anon_sym_AMP_AMP] = ACTIONS(5477), + [anon_sym_AMP] = ACTIONS(5475), + [anon_sym___extension__] = ACTIONS(5475), + [anon_sym_typedef] = ACTIONS(5475), + [anon_sym_extern] = ACTIONS(5475), + [anon_sym___attribute__] = ACTIONS(5475), + [anon_sym_COLON_COLON] = ACTIONS(5477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5477), + [anon_sym___declspec] = ACTIONS(5475), + [anon_sym___based] = ACTIONS(5475), + [anon_sym_signed] = ACTIONS(5475), + [anon_sym_unsigned] = ACTIONS(5475), + [anon_sym_long] = ACTIONS(5475), + [anon_sym_short] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5475), + [anon_sym_static] = ACTIONS(5475), + [anon_sym_register] = ACTIONS(5475), + [anon_sym_inline] = ACTIONS(5475), + [anon_sym___inline] = ACTIONS(5475), + [anon_sym___inline__] = ACTIONS(5475), + [anon_sym___forceinline] = ACTIONS(5475), + [anon_sym_thread_local] = ACTIONS(5475), + [anon_sym___thread] = ACTIONS(5475), + [anon_sym_const] = ACTIONS(5475), + [anon_sym_constexpr] = ACTIONS(5475), + [anon_sym_volatile] = ACTIONS(5475), + [anon_sym_restrict] = ACTIONS(5475), + [anon_sym___restrict__] = ACTIONS(5475), + [anon_sym__Atomic] = ACTIONS(5475), + [anon_sym__Noreturn] = ACTIONS(5475), + [anon_sym_noreturn] = ACTIONS(5475), + [anon_sym_mutable] = ACTIONS(5475), + [anon_sym_constinit] = ACTIONS(5475), + [anon_sym_consteval] = ACTIONS(5475), + [sym_primitive_type] = ACTIONS(5475), + [anon_sym_enum] = ACTIONS(5475), [anon_sym_class] = ACTIONS(5475), [anon_sym_struct] = ACTIONS(5475), [anon_sym_union] = ACTIONS(5475), @@ -346268,2999 +335569,3367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(5475), [anon_sym_static_assert] = ACTIONS(5475), }, - [2288] = { - [sym_identifier] = ACTIONS(2917), - [aux_sym_preproc_def_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token1] = ACTIONS(2917), - [aux_sym_preproc_if_token2] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2917), - [aux_sym_preproc_else_token1] = ACTIONS(2917), - [aux_sym_preproc_elif_token1] = ACTIONS(2917), - [sym_preproc_directive] = ACTIONS(2917), - [anon_sym_LPAREN2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym___extension__] = ACTIONS(2917), - [anon_sym_typedef] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2917), - [anon_sym___attribute__] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2919), - [anon_sym___declspec] = ACTIONS(2917), - [anon_sym___based] = ACTIONS(2917), - [anon_sym_signed] = ACTIONS(2917), - [anon_sym_unsigned] = ACTIONS(2917), - [anon_sym_long] = ACTIONS(2917), - [anon_sym_short] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_register] = ACTIONS(2917), - [anon_sym_inline] = ACTIONS(2917), - [anon_sym___inline] = ACTIONS(2917), - [anon_sym___inline__] = ACTIONS(2917), - [anon_sym___forceinline] = ACTIONS(2917), - [anon_sym_thread_local] = ACTIONS(2917), - [anon_sym___thread] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_constexpr] = ACTIONS(2917), - [anon_sym_volatile] = ACTIONS(2917), - [anon_sym_restrict] = ACTIONS(2917), - [anon_sym___restrict__] = ACTIONS(2917), - [anon_sym__Atomic] = ACTIONS(2917), - [anon_sym__Noreturn] = ACTIONS(2917), - [anon_sym_noreturn] = ACTIONS(2917), - [anon_sym_mutable] = ACTIONS(2917), - [anon_sym_constinit] = ACTIONS(2917), - [anon_sym_consteval] = ACTIONS(2917), - [sym_primitive_type] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), + [2115] = { + [sym_identifier] = ACTIONS(5475), + [aux_sym_preproc_def_token1] = ACTIONS(5475), + [aux_sym_preproc_if_token1] = ACTIONS(5475), + [aux_sym_preproc_if_token2] = ACTIONS(5475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5475), + [aux_sym_preproc_else_token1] = ACTIONS(5475), + [aux_sym_preproc_elif_token1] = ACTIONS(5475), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5475), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5475), + [sym_preproc_directive] = ACTIONS(5475), + [anon_sym_LPAREN2] = ACTIONS(5477), + [anon_sym_TILDE] = ACTIONS(5477), + [anon_sym_STAR] = ACTIONS(5477), + [anon_sym_AMP_AMP] = ACTIONS(5477), + [anon_sym_AMP] = ACTIONS(5475), + [anon_sym___extension__] = ACTIONS(5475), + [anon_sym_typedef] = ACTIONS(5475), + [anon_sym_extern] = ACTIONS(5475), + [anon_sym___attribute__] = ACTIONS(5475), + [anon_sym_COLON_COLON] = ACTIONS(5477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5477), + [anon_sym___declspec] = ACTIONS(5475), + [anon_sym___based] = ACTIONS(5475), + [anon_sym_signed] = ACTIONS(5475), + [anon_sym_unsigned] = ACTIONS(5475), + [anon_sym_long] = ACTIONS(5475), + [anon_sym_short] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5475), + [anon_sym_static] = ACTIONS(5475), + [anon_sym_register] = ACTIONS(5475), + [anon_sym_inline] = ACTIONS(5475), + [anon_sym___inline] = ACTIONS(5475), + [anon_sym___inline__] = ACTIONS(5475), + [anon_sym___forceinline] = ACTIONS(5475), + [anon_sym_thread_local] = ACTIONS(5475), + [anon_sym___thread] = ACTIONS(5475), + [anon_sym_const] = ACTIONS(5475), + [anon_sym_constexpr] = ACTIONS(5475), + [anon_sym_volatile] = ACTIONS(5475), + [anon_sym_restrict] = ACTIONS(5475), + [anon_sym___restrict__] = ACTIONS(5475), + [anon_sym__Atomic] = ACTIONS(5475), + [anon_sym__Noreturn] = ACTIONS(5475), + [anon_sym_noreturn] = ACTIONS(5475), + [anon_sym_mutable] = ACTIONS(5475), + [anon_sym_constinit] = ACTIONS(5475), + [anon_sym_consteval] = ACTIONS(5475), + [sym_primitive_type] = ACTIONS(5475), + [anon_sym_enum] = ACTIONS(5475), + [anon_sym_class] = ACTIONS(5475), + [anon_sym_struct] = ACTIONS(5475), + [anon_sym_union] = ACTIONS(5475), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2917), - [anon_sym_decltype] = ACTIONS(2917), - [anon_sym_virtual] = ACTIONS(2917), - [anon_sym_alignas] = ACTIONS(2917), - [anon_sym_explicit] = ACTIONS(2917), - [anon_sym_typename] = ACTIONS(2917), - [anon_sym_template] = ACTIONS(2917), - [anon_sym_operator] = ACTIONS(2917), - [anon_sym_friend] = ACTIONS(2917), - [anon_sym_public] = ACTIONS(2917), - [anon_sym_private] = ACTIONS(2917), - [anon_sym_protected] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_static_assert] = ACTIONS(2917), - }, - [2289] = { - [sym_identifier] = ACTIONS(3066), - [aux_sym_preproc_def_token1] = ACTIONS(3066), - [aux_sym_preproc_if_token1] = ACTIONS(3066), - [aux_sym_preproc_if_token2] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3066), - [aux_sym_preproc_else_token1] = ACTIONS(3066), - [aux_sym_preproc_elif_token1] = ACTIONS(3066), - [sym_preproc_directive] = ACTIONS(3066), - [anon_sym_LPAREN2] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym___extension__] = ACTIONS(3066), - [anon_sym_typedef] = ACTIONS(3066), - [anon_sym_extern] = ACTIONS(3066), - [anon_sym___attribute__] = ACTIONS(3066), - [anon_sym_COLON_COLON] = ACTIONS(3068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3068), - [anon_sym___declspec] = ACTIONS(3066), - [anon_sym___based] = ACTIONS(3066), - [anon_sym_signed] = ACTIONS(3066), - [anon_sym_unsigned] = ACTIONS(3066), - [anon_sym_long] = ACTIONS(3066), - [anon_sym_short] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_register] = ACTIONS(3066), - [anon_sym_inline] = ACTIONS(3066), - [anon_sym___inline] = ACTIONS(3066), - [anon_sym___inline__] = ACTIONS(3066), - [anon_sym___forceinline] = ACTIONS(3066), - [anon_sym_thread_local] = ACTIONS(3066), - [anon_sym___thread] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_constexpr] = ACTIONS(3066), - [anon_sym_volatile] = ACTIONS(3066), - [anon_sym_restrict] = ACTIONS(3066), - [anon_sym___restrict__] = ACTIONS(3066), - [anon_sym__Atomic] = ACTIONS(3066), - [anon_sym__Noreturn] = ACTIONS(3066), - [anon_sym_noreturn] = ACTIONS(3066), - [anon_sym_mutable] = ACTIONS(3066), - [anon_sym_constinit] = ACTIONS(3066), - [anon_sym_consteval] = ACTIONS(3066), - [sym_primitive_type] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_union] = ACTIONS(3066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3066), - [anon_sym_decltype] = ACTIONS(3066), - [anon_sym_virtual] = ACTIONS(3066), - [anon_sym_alignas] = ACTIONS(3066), - [anon_sym_explicit] = ACTIONS(3066), - [anon_sym_typename] = ACTIONS(3066), - [anon_sym_template] = ACTIONS(3066), - [anon_sym_operator] = ACTIONS(3066), - [anon_sym_friend] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_static_assert] = ACTIONS(3066), + [sym_auto] = ACTIONS(5475), + [anon_sym_decltype] = ACTIONS(5475), + [anon_sym_virtual] = ACTIONS(5475), + [anon_sym_alignas] = ACTIONS(5475), + [anon_sym_explicit] = ACTIONS(5475), + [anon_sym_typename] = ACTIONS(5475), + [anon_sym_template] = ACTIONS(5475), + [anon_sym_operator] = ACTIONS(5475), + [anon_sym_friend] = ACTIONS(5475), + [anon_sym_public] = ACTIONS(5475), + [anon_sym_private] = ACTIONS(5475), + [anon_sym_protected] = ACTIONS(5475), + [anon_sym_using] = ACTIONS(5475), + [anon_sym_static_assert] = ACTIONS(5475), }, - [2290] = { - [sym_identifier] = ACTIONS(2925), - [aux_sym_preproc_def_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token1] = ACTIONS(2925), - [aux_sym_preproc_if_token2] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2925), - [aux_sym_preproc_else_token1] = ACTIONS(2925), - [aux_sym_preproc_elif_token1] = ACTIONS(2925), - [sym_preproc_directive] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym___extension__] = ACTIONS(2925), - [anon_sym_typedef] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym___attribute__] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2927), - [anon_sym___declspec] = ACTIONS(2925), - [anon_sym___based] = ACTIONS(2925), - [anon_sym_signed] = ACTIONS(2925), - [anon_sym_unsigned] = ACTIONS(2925), - [anon_sym_long] = ACTIONS(2925), - [anon_sym_short] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_register] = ACTIONS(2925), - [anon_sym_inline] = ACTIONS(2925), - [anon_sym___inline] = ACTIONS(2925), - [anon_sym___inline__] = ACTIONS(2925), - [anon_sym___forceinline] = ACTIONS(2925), - [anon_sym_thread_local] = ACTIONS(2925), - [anon_sym___thread] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_constexpr] = ACTIONS(2925), - [anon_sym_volatile] = ACTIONS(2925), - [anon_sym_restrict] = ACTIONS(2925), - [anon_sym___restrict__] = ACTIONS(2925), - [anon_sym__Atomic] = ACTIONS(2925), - [anon_sym__Noreturn] = ACTIONS(2925), - [anon_sym_noreturn] = ACTIONS(2925), - [anon_sym_mutable] = ACTIONS(2925), - [anon_sym_constinit] = ACTIONS(2925), - [anon_sym_consteval] = ACTIONS(2925), - [sym_primitive_type] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), + [2116] = { + [sym_identifier] = ACTIONS(5479), + [aux_sym_preproc_def_token1] = ACTIONS(5479), + [aux_sym_preproc_if_token1] = ACTIONS(5479), + [aux_sym_preproc_if_token2] = ACTIONS(5479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5479), + [aux_sym_preproc_else_token1] = ACTIONS(5479), + [aux_sym_preproc_elif_token1] = ACTIONS(5479), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5479), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5479), + [sym_preproc_directive] = ACTIONS(5479), + [anon_sym_LPAREN2] = ACTIONS(5481), + [anon_sym_TILDE] = ACTIONS(5481), + [anon_sym_STAR] = ACTIONS(5481), + [anon_sym_AMP_AMP] = ACTIONS(5481), + [anon_sym_AMP] = ACTIONS(5479), + [anon_sym___extension__] = ACTIONS(5479), + [anon_sym_typedef] = ACTIONS(5479), + [anon_sym_extern] = ACTIONS(5479), + [anon_sym___attribute__] = ACTIONS(5479), + [anon_sym_COLON_COLON] = ACTIONS(5481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5481), + [anon_sym___declspec] = ACTIONS(5479), + [anon_sym___based] = ACTIONS(5479), + [anon_sym_signed] = ACTIONS(5479), + [anon_sym_unsigned] = ACTIONS(5479), + [anon_sym_long] = ACTIONS(5479), + [anon_sym_short] = ACTIONS(5479), + [anon_sym_LBRACK] = ACTIONS(5479), + [anon_sym_static] = ACTIONS(5479), + [anon_sym_register] = ACTIONS(5479), + [anon_sym_inline] = ACTIONS(5479), + [anon_sym___inline] = ACTIONS(5479), + [anon_sym___inline__] = ACTIONS(5479), + [anon_sym___forceinline] = ACTIONS(5479), + [anon_sym_thread_local] = ACTIONS(5479), + [anon_sym___thread] = ACTIONS(5479), + [anon_sym_const] = ACTIONS(5479), + [anon_sym_constexpr] = ACTIONS(5479), + [anon_sym_volatile] = ACTIONS(5479), + [anon_sym_restrict] = ACTIONS(5479), + [anon_sym___restrict__] = ACTIONS(5479), + [anon_sym__Atomic] = ACTIONS(5479), + [anon_sym__Noreturn] = ACTIONS(5479), + [anon_sym_noreturn] = ACTIONS(5479), + [anon_sym_mutable] = ACTIONS(5479), + [anon_sym_constinit] = ACTIONS(5479), + [anon_sym_consteval] = ACTIONS(5479), + [sym_primitive_type] = ACTIONS(5479), + [anon_sym_enum] = ACTIONS(5479), + [anon_sym_class] = ACTIONS(5479), + [anon_sym_struct] = ACTIONS(5479), + [anon_sym_union] = ACTIONS(5479), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2925), - [anon_sym_decltype] = ACTIONS(2925), - [anon_sym_virtual] = ACTIONS(2925), - [anon_sym_alignas] = ACTIONS(2925), - [anon_sym_explicit] = ACTIONS(2925), - [anon_sym_typename] = ACTIONS(2925), - [anon_sym_template] = ACTIONS(2925), - [anon_sym_operator] = ACTIONS(2925), - [anon_sym_friend] = ACTIONS(2925), - [anon_sym_public] = ACTIONS(2925), - [anon_sym_private] = ACTIONS(2925), - [anon_sym_protected] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_static_assert] = ACTIONS(2925), - }, - [2291] = { - [sym_identifier] = ACTIONS(3284), - [aux_sym_preproc_def_token1] = ACTIONS(3284), - [aux_sym_preproc_if_token1] = ACTIONS(3284), - [aux_sym_preproc_if_token2] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3284), - [aux_sym_preproc_else_token1] = ACTIONS(3284), - [aux_sym_preproc_elif_token1] = ACTIONS(3284), - [sym_preproc_directive] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_STAR] = ACTIONS(3286), - [anon_sym_AMP_AMP] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym___extension__] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3284), - [anon_sym_extern] = ACTIONS(3284), - [anon_sym___attribute__] = ACTIONS(3284), - [anon_sym_COLON_COLON] = ACTIONS(3286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3286), - [anon_sym___declspec] = ACTIONS(3284), - [anon_sym___based] = ACTIONS(3284), - [anon_sym_signed] = ACTIONS(3284), - [anon_sym_unsigned] = ACTIONS(3284), - [anon_sym_long] = ACTIONS(3284), - [anon_sym_short] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_register] = ACTIONS(3284), - [anon_sym_inline] = ACTIONS(3284), - [anon_sym___inline] = ACTIONS(3284), - [anon_sym___inline__] = ACTIONS(3284), - [anon_sym___forceinline] = ACTIONS(3284), - [anon_sym_thread_local] = ACTIONS(3284), - [anon_sym___thread] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_constexpr] = ACTIONS(3284), - [anon_sym_volatile] = ACTIONS(3284), - [anon_sym_restrict] = ACTIONS(3284), - [anon_sym___restrict__] = ACTIONS(3284), - [anon_sym__Atomic] = ACTIONS(3284), - [anon_sym__Noreturn] = ACTIONS(3284), - [anon_sym_noreturn] = ACTIONS(3284), - [anon_sym_mutable] = ACTIONS(3284), - [anon_sym_constinit] = ACTIONS(3284), - [anon_sym_consteval] = ACTIONS(3284), - [sym_primitive_type] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3284), - [anon_sym_union] = ACTIONS(3284), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3284), - [anon_sym_decltype] = ACTIONS(3284), - [anon_sym_virtual] = ACTIONS(3284), - [anon_sym_alignas] = ACTIONS(3284), - [anon_sym_explicit] = ACTIONS(3284), - [anon_sym_typename] = ACTIONS(3284), - [anon_sym_template] = ACTIONS(3284), - [anon_sym_operator] = ACTIONS(3284), - [anon_sym_friend] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_static_assert] = ACTIONS(3284), - }, - [2292] = { - [sym_attribute_specifier] = STATE(2427), - [sym_identifier] = ACTIONS(5817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5819), - [anon_sym_COMMA] = ACTIONS(5819), - [anon_sym_RPAREN] = ACTIONS(5819), - [aux_sym_preproc_if_token2] = ACTIONS(5819), - [aux_sym_preproc_else_token1] = ACTIONS(5819), - [aux_sym_preproc_elif_token1] = ACTIONS(5817), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5819), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5819), - [anon_sym_LPAREN2] = ACTIONS(5819), - [anon_sym_DASH] = ACTIONS(5817), - [anon_sym_PLUS] = ACTIONS(5817), - [anon_sym_STAR] = ACTIONS(5817), - [anon_sym_SLASH] = ACTIONS(5817), - [anon_sym_PERCENT] = ACTIONS(5817), - [anon_sym_PIPE_PIPE] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(5819), - [anon_sym_PIPE] = ACTIONS(5817), - [anon_sym_CARET] = ACTIONS(5817), - [anon_sym_AMP] = ACTIONS(5817), - [anon_sym_EQ_EQ] = ACTIONS(5819), - [anon_sym_BANG_EQ] = ACTIONS(5819), - [anon_sym_GT] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5817), - [anon_sym_LT] = ACTIONS(5817), - [anon_sym_LT_LT] = ACTIONS(5817), - [anon_sym_GT_GT] = ACTIONS(5817), - [anon_sym_SEMI] = ACTIONS(5819), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5819), - [anon_sym_RBRACE] = ACTIONS(5819), - [anon_sym_LBRACK] = ACTIONS(5819), - [anon_sym_RBRACK] = ACTIONS(5819), - [anon_sym_EQ] = ACTIONS(5817), - [anon_sym_COLON] = ACTIONS(5819), - [anon_sym_QMARK] = ACTIONS(5819), - [anon_sym_STAR_EQ] = ACTIONS(5819), - [anon_sym_SLASH_EQ] = ACTIONS(5819), - [anon_sym_PERCENT_EQ] = ACTIONS(5819), - [anon_sym_PLUS_EQ] = ACTIONS(5819), - [anon_sym_DASH_EQ] = ACTIONS(5819), - [anon_sym_LT_LT_EQ] = ACTIONS(5819), - [anon_sym_GT_GT_EQ] = ACTIONS(5819), - [anon_sym_AMP_EQ] = ACTIONS(5819), - [anon_sym_CARET_EQ] = ACTIONS(5819), - [anon_sym_PIPE_EQ] = ACTIONS(5819), - [anon_sym_and_eq] = ACTIONS(5817), - [anon_sym_or_eq] = ACTIONS(5817), - [anon_sym_xor_eq] = ACTIONS(5817), - [anon_sym_LT_EQ_GT] = ACTIONS(5819), - [anon_sym_or] = ACTIONS(5817), - [anon_sym_and] = ACTIONS(5817), - [anon_sym_bitor] = ACTIONS(5817), - [anon_sym_xor] = ACTIONS(5817), - [anon_sym_bitand] = ACTIONS(5817), - [anon_sym_not_eq] = ACTIONS(5817), - [anon_sym_DASH_DASH] = ACTIONS(5819), - [anon_sym_PLUS_PLUS] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(5817), - [anon_sym_DOT_STAR] = ACTIONS(5819), - [anon_sym_DASH_GT] = ACTIONS(5819), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5817), - [anon_sym_decltype] = ACTIONS(5817), + [sym_auto] = ACTIONS(5479), + [anon_sym_decltype] = ACTIONS(5479), + [anon_sym_virtual] = ACTIONS(5479), + [anon_sym_alignas] = ACTIONS(5479), + [anon_sym_explicit] = ACTIONS(5479), + [anon_sym_typename] = ACTIONS(5479), + [anon_sym_template] = ACTIONS(5479), + [anon_sym_operator] = ACTIONS(5479), + [anon_sym_friend] = ACTIONS(5479), + [anon_sym_public] = ACTIONS(5479), + [anon_sym_private] = ACTIONS(5479), + [anon_sym_protected] = ACTIONS(5479), + [anon_sym_using] = ACTIONS(5479), + [anon_sym_static_assert] = ACTIONS(5479), }, - [2293] = { - [sym_attribute_specifier] = STATE(2423), - [sym_identifier] = ACTIONS(5821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5823), - [anon_sym_COMMA] = ACTIONS(5823), - [anon_sym_RPAREN] = ACTIONS(5823), - [aux_sym_preproc_if_token2] = ACTIONS(5823), - [aux_sym_preproc_else_token1] = ACTIONS(5823), - [aux_sym_preproc_elif_token1] = ACTIONS(5821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5823), - [anon_sym_LPAREN2] = ACTIONS(5823), - [anon_sym_DASH] = ACTIONS(5821), - [anon_sym_PLUS] = ACTIONS(5821), - [anon_sym_STAR] = ACTIONS(5821), - [anon_sym_SLASH] = ACTIONS(5821), - [anon_sym_PERCENT] = ACTIONS(5821), - [anon_sym_PIPE_PIPE] = ACTIONS(5823), - [anon_sym_AMP_AMP] = ACTIONS(5823), - [anon_sym_PIPE] = ACTIONS(5821), - [anon_sym_CARET] = ACTIONS(5821), - [anon_sym_AMP] = ACTIONS(5821), - [anon_sym_EQ_EQ] = ACTIONS(5823), - [anon_sym_BANG_EQ] = ACTIONS(5823), - [anon_sym_GT] = ACTIONS(5821), - [anon_sym_GT_EQ] = ACTIONS(5823), - [anon_sym_LT_EQ] = ACTIONS(5821), - [anon_sym_LT] = ACTIONS(5821), - [anon_sym_LT_LT] = ACTIONS(5821), - [anon_sym_GT_GT] = ACTIONS(5821), - [anon_sym_SEMI] = ACTIONS(5823), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5823), - [anon_sym_RBRACE] = ACTIONS(5823), - [anon_sym_LBRACK] = ACTIONS(5823), - [anon_sym_RBRACK] = ACTIONS(5823), - [anon_sym_EQ] = ACTIONS(5821), - [anon_sym_COLON] = ACTIONS(5823), - [anon_sym_QMARK] = ACTIONS(5823), - [anon_sym_STAR_EQ] = ACTIONS(5823), - [anon_sym_SLASH_EQ] = ACTIONS(5823), - [anon_sym_PERCENT_EQ] = ACTIONS(5823), - [anon_sym_PLUS_EQ] = ACTIONS(5823), - [anon_sym_DASH_EQ] = ACTIONS(5823), - [anon_sym_LT_LT_EQ] = ACTIONS(5823), - [anon_sym_GT_GT_EQ] = ACTIONS(5823), - [anon_sym_AMP_EQ] = ACTIONS(5823), - [anon_sym_CARET_EQ] = ACTIONS(5823), - [anon_sym_PIPE_EQ] = ACTIONS(5823), - [anon_sym_and_eq] = ACTIONS(5821), - [anon_sym_or_eq] = ACTIONS(5821), - [anon_sym_xor_eq] = ACTIONS(5821), - [anon_sym_LT_EQ_GT] = ACTIONS(5823), - [anon_sym_or] = ACTIONS(5821), - [anon_sym_and] = ACTIONS(5821), - [anon_sym_bitor] = ACTIONS(5821), - [anon_sym_xor] = ACTIONS(5821), - [anon_sym_bitand] = ACTIONS(5821), - [anon_sym_not_eq] = ACTIONS(5821), - [anon_sym_DASH_DASH] = ACTIONS(5823), - [anon_sym_PLUS_PLUS] = ACTIONS(5823), - [anon_sym_DOT] = ACTIONS(5821), - [anon_sym_DOT_STAR] = ACTIONS(5823), - [anon_sym_DASH_GT] = ACTIONS(5823), + [2117] = { + [sym_identifier] = ACTIONS(5483), + [aux_sym_preproc_def_token1] = ACTIONS(5483), + [aux_sym_preproc_if_token1] = ACTIONS(5483), + [aux_sym_preproc_if_token2] = ACTIONS(5483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5483), + [aux_sym_preproc_else_token1] = ACTIONS(5483), + [aux_sym_preproc_elif_token1] = ACTIONS(5483), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5483), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5483), + [sym_preproc_directive] = ACTIONS(5483), + [anon_sym_LPAREN2] = ACTIONS(5485), + [anon_sym_TILDE] = ACTIONS(5485), + [anon_sym_STAR] = ACTIONS(5485), + [anon_sym_AMP_AMP] = ACTIONS(5485), + [anon_sym_AMP] = ACTIONS(5483), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_typedef] = ACTIONS(5483), + [anon_sym_extern] = ACTIONS(5483), + [anon_sym___attribute__] = ACTIONS(5483), + [anon_sym_COLON_COLON] = ACTIONS(5485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5485), + [anon_sym___declspec] = ACTIONS(5483), + [anon_sym___based] = ACTIONS(5483), + [anon_sym_signed] = ACTIONS(5483), + [anon_sym_unsigned] = ACTIONS(5483), + [anon_sym_long] = ACTIONS(5483), + [anon_sym_short] = ACTIONS(5483), + [anon_sym_LBRACK] = ACTIONS(5483), + [anon_sym_static] = ACTIONS(5483), + [anon_sym_register] = ACTIONS(5483), + [anon_sym_inline] = ACTIONS(5483), + [anon_sym___inline] = ACTIONS(5483), + [anon_sym___inline__] = ACTIONS(5483), + [anon_sym___forceinline] = ACTIONS(5483), + [anon_sym_thread_local] = ACTIONS(5483), + [anon_sym___thread] = ACTIONS(5483), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [sym_primitive_type] = ACTIONS(5483), + [anon_sym_enum] = ACTIONS(5483), + [anon_sym_class] = ACTIONS(5483), + [anon_sym_struct] = ACTIONS(5483), + [anon_sym_union] = ACTIONS(5483), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5821), - [anon_sym_decltype] = ACTIONS(5821), + [sym_auto] = ACTIONS(5483), + [anon_sym_decltype] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5483), + [anon_sym_explicit] = ACTIONS(5483), + [anon_sym_typename] = ACTIONS(5483), + [anon_sym_template] = ACTIONS(5483), + [anon_sym_operator] = ACTIONS(5483), + [anon_sym_friend] = ACTIONS(5483), + [anon_sym_public] = ACTIONS(5483), + [anon_sym_private] = ACTIONS(5483), + [anon_sym_protected] = ACTIONS(5483), + [anon_sym_using] = ACTIONS(5483), + [anon_sym_static_assert] = ACTIONS(5483), }, - [2294] = { - [sym_identifier] = ACTIONS(3298), - [aux_sym_preproc_def_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token1] = ACTIONS(3298), - [aux_sym_preproc_if_token2] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), - [aux_sym_preproc_else_token1] = ACTIONS(3298), - [aux_sym_preproc_elif_token1] = ACTIONS(3298), - [sym_preproc_directive] = ACTIONS(3298), - [anon_sym_LPAREN2] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3300), - [anon_sym_STAR] = ACTIONS(3300), - [anon_sym_AMP_AMP] = ACTIONS(3300), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym___extension__] = ACTIONS(3298), - [anon_sym_typedef] = ACTIONS(3298), - [anon_sym_extern] = ACTIONS(3298), - [anon_sym___attribute__] = ACTIONS(3298), - [anon_sym_COLON_COLON] = ACTIONS(3300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), - [anon_sym___declspec] = ACTIONS(3298), - [anon_sym___based] = ACTIONS(3298), - [anon_sym_signed] = ACTIONS(3298), - [anon_sym_unsigned] = ACTIONS(3298), - [anon_sym_long] = ACTIONS(3298), - [anon_sym_short] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3298), - [anon_sym_register] = ACTIONS(3298), - [anon_sym_inline] = ACTIONS(3298), - [anon_sym___inline] = ACTIONS(3298), - [anon_sym___inline__] = ACTIONS(3298), - [anon_sym___forceinline] = ACTIONS(3298), - [anon_sym_thread_local] = ACTIONS(3298), - [anon_sym___thread] = ACTIONS(3298), - [anon_sym_const] = ACTIONS(3298), - [anon_sym_constexpr] = ACTIONS(3298), - [anon_sym_volatile] = ACTIONS(3298), - [anon_sym_restrict] = ACTIONS(3298), - [anon_sym___restrict__] = ACTIONS(3298), - [anon_sym__Atomic] = ACTIONS(3298), - [anon_sym__Noreturn] = ACTIONS(3298), - [anon_sym_noreturn] = ACTIONS(3298), - [anon_sym_mutable] = ACTIONS(3298), - [anon_sym_constinit] = ACTIONS(3298), - [anon_sym_consteval] = ACTIONS(3298), - [sym_primitive_type] = ACTIONS(3298), - [anon_sym_enum] = ACTIONS(3298), - [anon_sym_class] = ACTIONS(3298), - [anon_sym_struct] = ACTIONS(3298), - [anon_sym_union] = ACTIONS(3298), + [2118] = { + [sym_identifier] = ACTIONS(5487), + [aux_sym_preproc_def_token1] = ACTIONS(5487), + [aux_sym_preproc_if_token1] = ACTIONS(5487), + [aux_sym_preproc_if_token2] = ACTIONS(5487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5487), + [aux_sym_preproc_else_token1] = ACTIONS(5487), + [aux_sym_preproc_elif_token1] = ACTIONS(5487), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5487), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5487), + [sym_preproc_directive] = ACTIONS(5487), + [anon_sym_LPAREN2] = ACTIONS(5489), + [anon_sym_TILDE] = ACTIONS(5489), + [anon_sym_STAR] = ACTIONS(5489), + [anon_sym_AMP_AMP] = ACTIONS(5489), + [anon_sym_AMP] = ACTIONS(5487), + [anon_sym___extension__] = ACTIONS(5487), + [anon_sym_typedef] = ACTIONS(5487), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5487), + [anon_sym_COLON_COLON] = ACTIONS(5489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5489), + [anon_sym___declspec] = ACTIONS(5487), + [anon_sym___based] = ACTIONS(5487), + [anon_sym_signed] = ACTIONS(5487), + [anon_sym_unsigned] = ACTIONS(5487), + [anon_sym_long] = ACTIONS(5487), + [anon_sym_short] = ACTIONS(5487), + [anon_sym_LBRACK] = ACTIONS(5487), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5487), + [anon_sym_constexpr] = ACTIONS(5487), + [anon_sym_volatile] = ACTIONS(5487), + [anon_sym_restrict] = ACTIONS(5487), + [anon_sym___restrict__] = ACTIONS(5487), + [anon_sym__Atomic] = ACTIONS(5487), + [anon_sym__Noreturn] = ACTIONS(5487), + [anon_sym_noreturn] = ACTIONS(5487), + [anon_sym_mutable] = ACTIONS(5487), + [anon_sym_constinit] = ACTIONS(5487), + [anon_sym_consteval] = ACTIONS(5487), + [sym_primitive_type] = ACTIONS(5487), + [anon_sym_enum] = ACTIONS(5487), + [anon_sym_class] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5487), + [anon_sym_union] = ACTIONS(5487), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3298), - [anon_sym_decltype] = ACTIONS(3298), - [anon_sym_virtual] = ACTIONS(3298), - [anon_sym_alignas] = ACTIONS(3298), - [anon_sym_explicit] = ACTIONS(3298), - [anon_sym_typename] = ACTIONS(3298), - [anon_sym_template] = ACTIONS(3298), - [anon_sym_operator] = ACTIONS(3298), - [anon_sym_friend] = ACTIONS(3298), - [anon_sym_public] = ACTIONS(3298), - [anon_sym_private] = ACTIONS(3298), - [anon_sym_protected] = ACTIONS(3298), - [anon_sym_using] = ACTIONS(3298), - [anon_sym_static_assert] = ACTIONS(3298), + [sym_auto] = ACTIONS(5487), + [anon_sym_decltype] = ACTIONS(5487), + [anon_sym_virtual] = ACTIONS(5487), + [anon_sym_alignas] = ACTIONS(5487), + [anon_sym_explicit] = ACTIONS(5487), + [anon_sym_typename] = ACTIONS(5487), + [anon_sym_template] = ACTIONS(5487), + [anon_sym_operator] = ACTIONS(5487), + [anon_sym_friend] = ACTIONS(5487), + [anon_sym_public] = ACTIONS(5487), + [anon_sym_private] = ACTIONS(5487), + [anon_sym_protected] = ACTIONS(5487), + [anon_sym_using] = ACTIONS(5487), + [anon_sym_static_assert] = ACTIONS(5487), }, - [2295] = { - [sym_identifier] = ACTIONS(3302), - [aux_sym_preproc_def_token1] = ACTIONS(3302), - [aux_sym_preproc_if_token1] = ACTIONS(3302), - [aux_sym_preproc_if_token2] = ACTIONS(3302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3302), - [aux_sym_preproc_else_token1] = ACTIONS(3302), - [aux_sym_preproc_elif_token1] = ACTIONS(3302), - [sym_preproc_directive] = ACTIONS(3302), - [anon_sym_LPAREN2] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_AMP_AMP] = ACTIONS(3304), - [anon_sym_AMP] = ACTIONS(3302), - [anon_sym___extension__] = ACTIONS(3302), - [anon_sym_typedef] = ACTIONS(3302), - [anon_sym_extern] = ACTIONS(3302), - [anon_sym___attribute__] = ACTIONS(3302), - [anon_sym_COLON_COLON] = ACTIONS(3304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3304), - [anon_sym___declspec] = ACTIONS(3302), - [anon_sym___based] = ACTIONS(3302), - [anon_sym_signed] = ACTIONS(3302), - [anon_sym_unsigned] = ACTIONS(3302), - [anon_sym_long] = ACTIONS(3302), - [anon_sym_short] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_register] = ACTIONS(3302), - [anon_sym_inline] = ACTIONS(3302), - [anon_sym___inline] = ACTIONS(3302), - [anon_sym___inline__] = ACTIONS(3302), - [anon_sym___forceinline] = ACTIONS(3302), - [anon_sym_thread_local] = ACTIONS(3302), - [anon_sym___thread] = ACTIONS(3302), - [anon_sym_const] = ACTIONS(3302), - [anon_sym_constexpr] = ACTIONS(3302), - [anon_sym_volatile] = ACTIONS(3302), - [anon_sym_restrict] = ACTIONS(3302), - [anon_sym___restrict__] = ACTIONS(3302), - [anon_sym__Atomic] = ACTIONS(3302), - [anon_sym__Noreturn] = ACTIONS(3302), - [anon_sym_noreturn] = ACTIONS(3302), - [anon_sym_mutable] = ACTIONS(3302), - [anon_sym_constinit] = ACTIONS(3302), - [anon_sym_consteval] = ACTIONS(3302), - [sym_primitive_type] = ACTIONS(3302), - [anon_sym_enum] = ACTIONS(3302), - [anon_sym_class] = ACTIONS(3302), - [anon_sym_struct] = ACTIONS(3302), - [anon_sym_union] = ACTIONS(3302), + [2119] = { + [sym_identifier] = ACTIONS(5491), + [aux_sym_preproc_def_token1] = ACTIONS(5491), + [aux_sym_preproc_if_token1] = ACTIONS(5491), + [aux_sym_preproc_if_token2] = ACTIONS(5491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5491), + [aux_sym_preproc_else_token1] = ACTIONS(5491), + [aux_sym_preproc_elif_token1] = ACTIONS(5491), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5491), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5491), + [sym_preproc_directive] = ACTIONS(5491), + [anon_sym_LPAREN2] = ACTIONS(5493), + [anon_sym_TILDE] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5493), + [anon_sym_AMP_AMP] = ACTIONS(5493), + [anon_sym_AMP] = ACTIONS(5491), + [anon_sym___extension__] = ACTIONS(5491), + [anon_sym_typedef] = ACTIONS(5491), + [anon_sym_extern] = ACTIONS(5491), + [anon_sym___attribute__] = ACTIONS(5491), + [anon_sym_COLON_COLON] = ACTIONS(5493), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5491), + [anon_sym___based] = ACTIONS(5491), + [anon_sym_signed] = ACTIONS(5491), + [anon_sym_unsigned] = ACTIONS(5491), + [anon_sym_long] = ACTIONS(5491), + [anon_sym_short] = ACTIONS(5491), + [anon_sym_LBRACK] = ACTIONS(5491), + [anon_sym_static] = ACTIONS(5491), + [anon_sym_register] = ACTIONS(5491), + [anon_sym_inline] = ACTIONS(5491), + [anon_sym___inline] = ACTIONS(5491), + [anon_sym___inline__] = ACTIONS(5491), + [anon_sym___forceinline] = ACTIONS(5491), + [anon_sym_thread_local] = ACTIONS(5491), + [anon_sym___thread] = ACTIONS(5491), + [anon_sym_const] = ACTIONS(5491), + [anon_sym_constexpr] = ACTIONS(5491), + [anon_sym_volatile] = ACTIONS(5491), + [anon_sym_restrict] = ACTIONS(5491), + [anon_sym___restrict__] = ACTIONS(5491), + [anon_sym__Atomic] = ACTIONS(5491), + [anon_sym__Noreturn] = ACTIONS(5491), + [anon_sym_noreturn] = ACTIONS(5491), + [anon_sym_mutable] = ACTIONS(5491), + [anon_sym_constinit] = ACTIONS(5491), + [anon_sym_consteval] = ACTIONS(5491), + [sym_primitive_type] = ACTIONS(5491), + [anon_sym_enum] = ACTIONS(5491), + [anon_sym_class] = ACTIONS(5491), + [anon_sym_struct] = ACTIONS(5491), + [anon_sym_union] = ACTIONS(5491), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3302), - [anon_sym_decltype] = ACTIONS(3302), - [anon_sym_virtual] = ACTIONS(3302), - [anon_sym_alignas] = ACTIONS(3302), - [anon_sym_explicit] = ACTIONS(3302), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_template] = ACTIONS(3302), - [anon_sym_operator] = ACTIONS(3302), - [anon_sym_friend] = ACTIONS(3302), - [anon_sym_public] = ACTIONS(3302), - [anon_sym_private] = ACTIONS(3302), - [anon_sym_protected] = ACTIONS(3302), - [anon_sym_using] = ACTIONS(3302), - [anon_sym_static_assert] = ACTIONS(3302), - }, - [2296] = { - [sym_identifier] = ACTIONS(3306), - [aux_sym_preproc_def_token1] = ACTIONS(3306), - [aux_sym_preproc_if_token1] = ACTIONS(3306), - [aux_sym_preproc_if_token2] = ACTIONS(3306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3306), - [aux_sym_preproc_else_token1] = ACTIONS(3306), - [aux_sym_preproc_elif_token1] = ACTIONS(3306), - [sym_preproc_directive] = ACTIONS(3306), - [anon_sym_LPAREN2] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3308), - [anon_sym_AMP_AMP] = ACTIONS(3308), - [anon_sym_AMP] = ACTIONS(3306), - [anon_sym___extension__] = ACTIONS(3306), - [anon_sym_typedef] = ACTIONS(3306), - [anon_sym_extern] = ACTIONS(3306), - [anon_sym___attribute__] = ACTIONS(3306), - [anon_sym_COLON_COLON] = ACTIONS(3308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3308), - [anon_sym___declspec] = ACTIONS(3306), - [anon_sym___based] = ACTIONS(3306), - [anon_sym_signed] = ACTIONS(3306), - [anon_sym_unsigned] = ACTIONS(3306), - [anon_sym_long] = ACTIONS(3306), - [anon_sym_short] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_register] = ACTIONS(3306), - [anon_sym_inline] = ACTIONS(3306), - [anon_sym___inline] = ACTIONS(3306), - [anon_sym___inline__] = ACTIONS(3306), - [anon_sym___forceinline] = ACTIONS(3306), - [anon_sym_thread_local] = ACTIONS(3306), - [anon_sym___thread] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_constexpr] = ACTIONS(3306), - [anon_sym_volatile] = ACTIONS(3306), - [anon_sym_restrict] = ACTIONS(3306), - [anon_sym___restrict__] = ACTIONS(3306), - [anon_sym__Atomic] = ACTIONS(3306), - [anon_sym__Noreturn] = ACTIONS(3306), - [anon_sym_noreturn] = ACTIONS(3306), - [anon_sym_mutable] = ACTIONS(3306), - [anon_sym_constinit] = ACTIONS(3306), - [anon_sym_consteval] = ACTIONS(3306), - [sym_primitive_type] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), - [anon_sym_class] = ACTIONS(3306), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_union] = ACTIONS(3306), + [sym_auto] = ACTIONS(5491), + [anon_sym_decltype] = ACTIONS(5491), + [anon_sym_virtual] = ACTIONS(5491), + [anon_sym_alignas] = ACTIONS(5491), + [anon_sym_explicit] = ACTIONS(5491), + [anon_sym_typename] = ACTIONS(5491), + [anon_sym_template] = ACTIONS(5491), + [anon_sym_operator] = ACTIONS(5491), + [anon_sym_friend] = ACTIONS(5491), + [anon_sym_public] = ACTIONS(5491), + [anon_sym_private] = ACTIONS(5491), + [anon_sym_protected] = ACTIONS(5491), + [anon_sym_using] = ACTIONS(5491), + [anon_sym_static_assert] = ACTIONS(5491), + }, + [2120] = { + [sym_identifier] = ACTIONS(5495), + [aux_sym_preproc_def_token1] = ACTIONS(5495), + [aux_sym_preproc_if_token1] = ACTIONS(5495), + [aux_sym_preproc_if_token2] = ACTIONS(5495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5495), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5495), + [aux_sym_preproc_else_token1] = ACTIONS(5495), + [aux_sym_preproc_elif_token1] = ACTIONS(5495), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5495), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5495), + [sym_preproc_directive] = ACTIONS(5495), + [anon_sym_LPAREN2] = ACTIONS(5497), + [anon_sym_TILDE] = ACTIONS(5497), + [anon_sym_STAR] = ACTIONS(5497), + [anon_sym_AMP_AMP] = ACTIONS(5497), + [anon_sym_AMP] = ACTIONS(5495), + [anon_sym___extension__] = ACTIONS(5495), + [anon_sym_typedef] = ACTIONS(5495), + [anon_sym_extern] = ACTIONS(5495), + [anon_sym___attribute__] = ACTIONS(5495), + [anon_sym_COLON_COLON] = ACTIONS(5497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5497), + [anon_sym___declspec] = ACTIONS(5495), + [anon_sym___based] = ACTIONS(5495), + [anon_sym_signed] = ACTIONS(5495), + [anon_sym_unsigned] = ACTIONS(5495), + [anon_sym_long] = ACTIONS(5495), + [anon_sym_short] = ACTIONS(5495), + [anon_sym_LBRACK] = ACTIONS(5495), + [anon_sym_static] = ACTIONS(5495), + [anon_sym_register] = ACTIONS(5495), + [anon_sym_inline] = ACTIONS(5495), + [anon_sym___inline] = ACTIONS(5495), + [anon_sym___inline__] = ACTIONS(5495), + [anon_sym___forceinline] = ACTIONS(5495), + [anon_sym_thread_local] = ACTIONS(5495), + [anon_sym___thread] = ACTIONS(5495), + [anon_sym_const] = ACTIONS(5495), + [anon_sym_constexpr] = ACTIONS(5495), + [anon_sym_volatile] = ACTIONS(5495), + [anon_sym_restrict] = ACTIONS(5495), + [anon_sym___restrict__] = ACTIONS(5495), + [anon_sym__Atomic] = ACTIONS(5495), + [anon_sym__Noreturn] = ACTIONS(5495), + [anon_sym_noreturn] = ACTIONS(5495), + [anon_sym_mutable] = ACTIONS(5495), + [anon_sym_constinit] = ACTIONS(5495), + [anon_sym_consteval] = ACTIONS(5495), + [sym_primitive_type] = ACTIONS(5495), + [anon_sym_enum] = ACTIONS(5495), + [anon_sym_class] = ACTIONS(5495), + [anon_sym_struct] = ACTIONS(5495), + [anon_sym_union] = ACTIONS(5495), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3306), - [anon_sym_decltype] = ACTIONS(3306), - [anon_sym_virtual] = ACTIONS(3306), - [anon_sym_alignas] = ACTIONS(3306), - [anon_sym_explicit] = ACTIONS(3306), - [anon_sym_typename] = ACTIONS(3306), - [anon_sym_template] = ACTIONS(3306), - [anon_sym_operator] = ACTIONS(3306), - [anon_sym_friend] = ACTIONS(3306), - [anon_sym_public] = ACTIONS(3306), - [anon_sym_private] = ACTIONS(3306), - [anon_sym_protected] = ACTIONS(3306), - [anon_sym_using] = ACTIONS(3306), - [anon_sym_static_assert] = ACTIONS(3306), + [sym_auto] = ACTIONS(5495), + [anon_sym_decltype] = ACTIONS(5495), + [anon_sym_virtual] = ACTIONS(5495), + [anon_sym_alignas] = ACTIONS(5495), + [anon_sym_explicit] = ACTIONS(5495), + [anon_sym_typename] = ACTIONS(5495), + [anon_sym_template] = ACTIONS(5495), + [anon_sym_operator] = ACTIONS(5495), + [anon_sym_friend] = ACTIONS(5495), + [anon_sym_public] = ACTIONS(5495), + [anon_sym_private] = ACTIONS(5495), + [anon_sym_protected] = ACTIONS(5495), + [anon_sym_using] = ACTIONS(5495), + [anon_sym_static_assert] = ACTIONS(5495), }, - [2297] = { - [sym_identifier] = ACTIONS(3274), - [aux_sym_preproc_def_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token1] = ACTIONS(3274), - [aux_sym_preproc_if_token2] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), - [aux_sym_preproc_else_token1] = ACTIONS(3274), - [aux_sym_preproc_elif_token1] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_LPAREN2] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP_AMP] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3274), - [anon_sym___extension__] = ACTIONS(3274), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym___attribute__] = ACTIONS(3274), - [anon_sym_COLON_COLON] = ACTIONS(3276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), - [anon_sym___declspec] = ACTIONS(3274), - [anon_sym___based] = ACTIONS(3274), - [anon_sym_signed] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym___inline] = ACTIONS(3274), - [anon_sym___inline__] = ACTIONS(3274), - [anon_sym___forceinline] = ACTIONS(3274), - [anon_sym_thread_local] = ACTIONS(3274), - [anon_sym___thread] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_constexpr] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym___restrict__] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym__Noreturn] = ACTIONS(3274), - [anon_sym_noreturn] = ACTIONS(3274), - [anon_sym_mutable] = ACTIONS(3274), - [anon_sym_constinit] = ACTIONS(3274), - [anon_sym_consteval] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), + [2121] = { + [sym_identifier] = ACTIONS(5499), + [aux_sym_preproc_def_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token2] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5499), + [aux_sym_preproc_else_token1] = ACTIONS(5499), + [aux_sym_preproc_elif_token1] = ACTIONS(5499), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5499), + [sym_preproc_directive] = ACTIONS(5499), + [anon_sym_LPAREN2] = ACTIONS(5501), + [anon_sym_TILDE] = ACTIONS(5501), + [anon_sym_STAR] = ACTIONS(5501), + [anon_sym_AMP_AMP] = ACTIONS(5501), + [anon_sym_AMP] = ACTIONS(5499), + [anon_sym___extension__] = ACTIONS(5499), + [anon_sym_typedef] = ACTIONS(5499), + [anon_sym_extern] = ACTIONS(5499), + [anon_sym___attribute__] = ACTIONS(5499), + [anon_sym_COLON_COLON] = ACTIONS(5501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5501), + [anon_sym___declspec] = ACTIONS(5499), + [anon_sym___based] = ACTIONS(5499), + [anon_sym_signed] = ACTIONS(5499), + [anon_sym_unsigned] = ACTIONS(5499), + [anon_sym_long] = ACTIONS(5499), + [anon_sym_short] = ACTIONS(5499), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym_static] = ACTIONS(5499), + [anon_sym_register] = ACTIONS(5499), + [anon_sym_inline] = ACTIONS(5499), + [anon_sym___inline] = ACTIONS(5499), + [anon_sym___inline__] = ACTIONS(5499), + [anon_sym___forceinline] = ACTIONS(5499), + [anon_sym_thread_local] = ACTIONS(5499), + [anon_sym___thread] = ACTIONS(5499), + [anon_sym_const] = ACTIONS(5499), + [anon_sym_constexpr] = ACTIONS(5499), + [anon_sym_volatile] = ACTIONS(5499), + [anon_sym_restrict] = ACTIONS(5499), + [anon_sym___restrict__] = ACTIONS(5499), + [anon_sym__Atomic] = ACTIONS(5499), + [anon_sym__Noreturn] = ACTIONS(5499), + [anon_sym_noreturn] = ACTIONS(5499), + [anon_sym_mutable] = ACTIONS(5499), + [anon_sym_constinit] = ACTIONS(5499), + [anon_sym_consteval] = ACTIONS(5499), + [sym_primitive_type] = ACTIONS(5499), + [anon_sym_enum] = ACTIONS(5499), + [anon_sym_class] = ACTIONS(5499), + [anon_sym_struct] = ACTIONS(5499), + [anon_sym_union] = ACTIONS(5499), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3274), - [anon_sym_decltype] = ACTIONS(3274), - [anon_sym_virtual] = ACTIONS(3274), - [anon_sym_alignas] = ACTIONS(3274), - [anon_sym_explicit] = ACTIONS(3274), - [anon_sym_typename] = ACTIONS(3274), - [anon_sym_template] = ACTIONS(3274), - [anon_sym_operator] = ACTIONS(3274), - [anon_sym_friend] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_static_assert] = ACTIONS(3274), + [sym_auto] = ACTIONS(5499), + [anon_sym_decltype] = ACTIONS(5499), + [anon_sym_virtual] = ACTIONS(5499), + [anon_sym_alignas] = ACTIONS(5499), + [anon_sym_explicit] = ACTIONS(5499), + [anon_sym_typename] = ACTIONS(5499), + [anon_sym_template] = ACTIONS(5499), + [anon_sym_operator] = ACTIONS(5499), + [anon_sym_friend] = ACTIONS(5499), + [anon_sym_public] = ACTIONS(5499), + [anon_sym_private] = ACTIONS(5499), + [anon_sym_protected] = ACTIONS(5499), + [anon_sym_using] = ACTIONS(5499), + [anon_sym_static_assert] = ACTIONS(5499), }, - [2298] = { - [sym_template_argument_list] = STATE(1935), - [aux_sym_sized_type_specifier_repeat1] = STATE(2609), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5568), - [anon_sym_COMMA] = ACTIONS(5568), - [anon_sym_RPAREN] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_STAR] = ACTIONS(5566), - [anon_sym_SLASH] = ACTIONS(5566), - [anon_sym_PERCENT] = ACTIONS(5566), - [anon_sym_PIPE_PIPE] = ACTIONS(5568), - [anon_sym_AMP_AMP] = ACTIONS(5568), - [anon_sym_PIPE] = ACTIONS(5566), - [anon_sym_CARET] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(5566), - [anon_sym_EQ_EQ] = ACTIONS(5568), - [anon_sym_BANG_EQ] = ACTIONS(5568), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_GT_EQ] = ACTIONS(5568), - [anon_sym_LT_EQ] = ACTIONS(5566), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_LT_LT] = ACTIONS(5566), - [anon_sym_GT_GT] = ACTIONS(5566), - [anon_sym_SEMI] = ACTIONS(5568), - [anon_sym___attribute__] = ACTIONS(5568), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(5568), - [anon_sym_RBRACE] = ACTIONS(5568), - [anon_sym_signed] = ACTIONS(5825), - [anon_sym_unsigned] = ACTIONS(5825), - [anon_sym_long] = ACTIONS(5825), - [anon_sym_short] = ACTIONS(5825), - [anon_sym_LBRACK] = ACTIONS(5568), - [anon_sym_RBRACK] = ACTIONS(5568), - [anon_sym_EQ] = ACTIONS(5566), - [anon_sym_COLON] = ACTIONS(5566), - [anon_sym_QMARK] = ACTIONS(5568), - [anon_sym_STAR_EQ] = ACTIONS(5568), - [anon_sym_SLASH_EQ] = ACTIONS(5568), - [anon_sym_PERCENT_EQ] = ACTIONS(5568), - [anon_sym_PLUS_EQ] = ACTIONS(5568), - [anon_sym_DASH_EQ] = ACTIONS(5568), - [anon_sym_LT_LT_EQ] = ACTIONS(5568), - [anon_sym_GT_GT_EQ] = ACTIONS(5568), - [anon_sym_AMP_EQ] = ACTIONS(5568), - [anon_sym_CARET_EQ] = ACTIONS(5568), - [anon_sym_PIPE_EQ] = ACTIONS(5568), - [anon_sym_and_eq] = ACTIONS(5568), - [anon_sym_or_eq] = ACTIONS(5568), - [anon_sym_xor_eq] = ACTIONS(5568), - [anon_sym_LT_EQ_GT] = ACTIONS(5568), - [anon_sym_or] = ACTIONS(5566), - [anon_sym_and] = ACTIONS(5566), - [anon_sym_bitor] = ACTIONS(5568), - [anon_sym_xor] = ACTIONS(5566), - [anon_sym_bitand] = ACTIONS(5568), - [anon_sym_not_eq] = ACTIONS(5568), - [anon_sym_DASH_DASH] = ACTIONS(5568), - [anon_sym_PLUS_PLUS] = ACTIONS(5568), - [anon_sym_DOT] = ACTIONS(5566), - [anon_sym_DOT_STAR] = ACTIONS(5568), - [anon_sym_DASH_GT] = ACTIONS(5568), + [2122] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token2] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [aux_sym_preproc_else_token1] = ACTIONS(5503), + [aux_sym_preproc_elif_token1] = ACTIONS(5503), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5568), - [anon_sym_decltype] = ACTIONS(5568), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), }, - [2299] = { - [sym_identifier] = ACTIONS(3203), - [aux_sym_preproc_def_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_if_token2] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3203), - [aux_sym_preproc_else_token1] = ACTIONS(3203), - [aux_sym_preproc_elif_token1] = ACTIONS(3203), - [sym_preproc_directive] = ACTIONS(3203), - [anon_sym_LPAREN2] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym___extension__] = ACTIONS(3203), - [anon_sym_typedef] = ACTIONS(3203), - [anon_sym_extern] = ACTIONS(3203), - [anon_sym___attribute__] = ACTIONS(3203), - [anon_sym_COLON_COLON] = ACTIONS(3205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3205), - [anon_sym___declspec] = ACTIONS(3203), - [anon_sym___based] = ACTIONS(3203), - [anon_sym_signed] = ACTIONS(3203), - [anon_sym_unsigned] = ACTIONS(3203), - [anon_sym_long] = ACTIONS(3203), - [anon_sym_short] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_register] = ACTIONS(3203), - [anon_sym_inline] = ACTIONS(3203), - [anon_sym___inline] = ACTIONS(3203), - [anon_sym___inline__] = ACTIONS(3203), - [anon_sym___forceinline] = ACTIONS(3203), - [anon_sym_thread_local] = ACTIONS(3203), - [anon_sym___thread] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_constexpr] = ACTIONS(3203), - [anon_sym_volatile] = ACTIONS(3203), - [anon_sym_restrict] = ACTIONS(3203), - [anon_sym___restrict__] = ACTIONS(3203), - [anon_sym__Atomic] = ACTIONS(3203), - [anon_sym__Noreturn] = ACTIONS(3203), - [anon_sym_noreturn] = ACTIONS(3203), - [anon_sym_mutable] = ACTIONS(3203), - [anon_sym_constinit] = ACTIONS(3203), - [anon_sym_consteval] = ACTIONS(3203), - [sym_primitive_type] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), + [2123] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token2] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [aux_sym_preproc_else_token1] = ACTIONS(5503), + [aux_sym_preproc_elif_token1] = ACTIONS(5503), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3203), - [anon_sym_decltype] = ACTIONS(3203), - [anon_sym_virtual] = ACTIONS(3203), - [anon_sym_alignas] = ACTIONS(3203), - [anon_sym_explicit] = ACTIONS(3203), - [anon_sym_typename] = ACTIONS(3203), - [anon_sym_template] = ACTIONS(3203), - [anon_sym_operator] = ACTIONS(3203), - [anon_sym_friend] = ACTIONS(3203), - [anon_sym_public] = ACTIONS(3203), - [anon_sym_private] = ACTIONS(3203), - [anon_sym_protected] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_static_assert] = ACTIONS(3203), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), }, - [2300] = { - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token2] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [aux_sym_preproc_else_token1] = ACTIONS(3160), - [aux_sym_preproc_elif_token1] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_friend] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), + [2124] = { + [sym_identifier] = ACTIONS(3179), + [aux_sym_preproc_def_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token2] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), + [aux_sym_preproc_else_token1] = ACTIONS(3179), + [aux_sym_preproc_elif_token1] = ACTIONS(3179), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3179), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3179), + [sym_preproc_directive] = ACTIONS(3179), + [anon_sym_LPAREN2] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym___extension__] = ACTIONS(3179), + [anon_sym_typedef] = ACTIONS(3179), + [anon_sym_extern] = ACTIONS(3179), + [anon_sym___attribute__] = ACTIONS(3179), + [anon_sym_COLON_COLON] = ACTIONS(3181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), + [anon_sym___declspec] = ACTIONS(3179), + [anon_sym___based] = ACTIONS(3179), + [anon_sym_signed] = ACTIONS(3179), + [anon_sym_unsigned] = ACTIONS(3179), + [anon_sym_long] = ACTIONS(3179), + [anon_sym_short] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_register] = ACTIONS(3179), + [anon_sym_inline] = ACTIONS(3179), + [anon_sym___inline] = ACTIONS(3179), + [anon_sym___inline__] = ACTIONS(3179), + [anon_sym___forceinline] = ACTIONS(3179), + [anon_sym_thread_local] = ACTIONS(3179), + [anon_sym___thread] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_constexpr] = ACTIONS(3179), + [anon_sym_volatile] = ACTIONS(3179), + [anon_sym_restrict] = ACTIONS(3179), + [anon_sym___restrict__] = ACTIONS(3179), + [anon_sym__Atomic] = ACTIONS(3179), + [anon_sym__Noreturn] = ACTIONS(3179), + [anon_sym_noreturn] = ACTIONS(3179), + [anon_sym_mutable] = ACTIONS(3179), + [anon_sym_constinit] = ACTIONS(3179), + [anon_sym_consteval] = ACTIONS(3179), + [sym_primitive_type] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3179), + [anon_sym_decltype] = ACTIONS(3179), + [anon_sym_virtual] = ACTIONS(3179), + [anon_sym_alignas] = ACTIONS(3179), + [anon_sym_explicit] = ACTIONS(3179), + [anon_sym_typename] = ACTIONS(3179), + [anon_sym_template] = ACTIONS(3179), + [anon_sym_operator] = ACTIONS(3179), + [anon_sym_friend] = ACTIONS(3179), + [anon_sym_public] = ACTIONS(3179), + [anon_sym_private] = ACTIONS(3179), + [anon_sym_protected] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3179), + [anon_sym_static_assert] = ACTIONS(3179), }, - [2301] = { - [sym_identifier] = ACTIONS(3116), - [aux_sym_preproc_def_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token1] = ACTIONS(3116), - [aux_sym_preproc_if_token2] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3116), - [aux_sym_preproc_else_token1] = ACTIONS(3116), - [aux_sym_preproc_elif_token1] = ACTIONS(3116), - [sym_preproc_directive] = ACTIONS(3116), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3116), - [anon_sym___extension__] = ACTIONS(3116), - [anon_sym_typedef] = ACTIONS(3116), - [anon_sym_extern] = ACTIONS(3116), - [anon_sym___attribute__] = ACTIONS(3116), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = ACTIONS(3116), - [anon_sym___based] = ACTIONS(3116), - [anon_sym_signed] = ACTIONS(3116), - [anon_sym_unsigned] = ACTIONS(3116), - [anon_sym_long] = ACTIONS(3116), - [anon_sym_short] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_static] = ACTIONS(3116), - [anon_sym_register] = ACTIONS(3116), - [anon_sym_inline] = ACTIONS(3116), - [anon_sym___inline] = ACTIONS(3116), - [anon_sym___inline__] = ACTIONS(3116), - [anon_sym___forceinline] = ACTIONS(3116), - [anon_sym_thread_local] = ACTIONS(3116), - [anon_sym___thread] = ACTIONS(3116), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_constexpr] = ACTIONS(3116), - [anon_sym_volatile] = ACTIONS(3116), - [anon_sym_restrict] = ACTIONS(3116), - [anon_sym___restrict__] = ACTIONS(3116), - [anon_sym__Atomic] = ACTIONS(3116), - [anon_sym__Noreturn] = ACTIONS(3116), - [anon_sym_noreturn] = ACTIONS(3116), - [anon_sym_mutable] = ACTIONS(3116), - [anon_sym_constinit] = ACTIONS(3116), - [anon_sym_consteval] = ACTIONS(3116), - [sym_primitive_type] = ACTIONS(3116), - [anon_sym_enum] = ACTIONS(3116), - [anon_sym_class] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3116), - [anon_sym_union] = ACTIONS(3116), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3116), - [anon_sym_decltype] = ACTIONS(3116), - [anon_sym_virtual] = ACTIONS(3116), - [anon_sym_alignas] = ACTIONS(3116), - [anon_sym_explicit] = ACTIONS(3116), - [anon_sym_typename] = ACTIONS(3116), - [anon_sym_template] = ACTIONS(3116), - [anon_sym_operator] = ACTIONS(3116), - [anon_sym_friend] = ACTIONS(3116), - [anon_sym_public] = ACTIONS(3116), - [anon_sym_private] = ACTIONS(3116), - [anon_sym_protected] = ACTIONS(3116), - [anon_sym_using] = ACTIONS(3116), - [anon_sym_static_assert] = ACTIONS(3116), + [2125] = { + [sym_identifier] = ACTIONS(4995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [aux_sym_preproc_if_token2] = ACTIONS(4997), + [aux_sym_preproc_else_token1] = ACTIONS(4997), + [aux_sym_preproc_elif_token1] = ACTIONS(4995), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4997), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4997), + [anon_sym_LPAREN2] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_PERCENT] = ACTIONS(4995), + [anon_sym_PIPE_PIPE] = ACTIONS(4997), + [anon_sym_AMP_AMP] = ACTIONS(4997), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4997), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_LT_LT] = ACTIONS(4995), + [anon_sym_GT_GT] = ACTIONS(4995), + [anon_sym_SEMI] = ACTIONS(4997), + [anon_sym___attribute__] = ACTIONS(4995), + [anon_sym_COLON_COLON] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4997), + [anon_sym_RBRACE] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_RBRACK] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_QMARK] = ACTIONS(4997), + [anon_sym_STAR_EQ] = ACTIONS(4997), + [anon_sym_SLASH_EQ] = ACTIONS(4997), + [anon_sym_PERCENT_EQ] = ACTIONS(4997), + [anon_sym_PLUS_EQ] = ACTIONS(4997), + [anon_sym_DASH_EQ] = ACTIONS(4997), + [anon_sym_LT_LT_EQ] = ACTIONS(4997), + [anon_sym_GT_GT_EQ] = ACTIONS(4997), + [anon_sym_AMP_EQ] = ACTIONS(4997), + [anon_sym_CARET_EQ] = ACTIONS(4997), + [anon_sym_PIPE_EQ] = ACTIONS(4997), + [anon_sym_and_eq] = ACTIONS(4995), + [anon_sym_or_eq] = ACTIONS(4995), + [anon_sym_xor_eq] = ACTIONS(4995), + [anon_sym_LT_EQ_GT] = ACTIONS(4997), + [anon_sym_or] = ACTIONS(4995), + [anon_sym_and] = ACTIONS(4995), + [anon_sym_bitor] = ACTIONS(4995), + [anon_sym_xor] = ACTIONS(4995), + [anon_sym_bitand] = ACTIONS(4995), + [anon_sym_not_eq] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4997), + [anon_sym_DOT] = ACTIONS(4995), + [anon_sym_DOT_STAR] = ACTIONS(4997), + [anon_sym_DASH_GT] = ACTIONS(4997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4995), + [anon_sym_decltype] = ACTIONS(4995), + [anon_sym_final] = ACTIONS(4995), + [anon_sym_override] = ACTIONS(4995), }, - [2302] = { - [sym_identifier] = ACTIONS(2885), - [aux_sym_preproc_def_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token1] = ACTIONS(2885), - [aux_sym_preproc_if_token2] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2885), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2885), - [aux_sym_preproc_else_token1] = ACTIONS(2885), - [aux_sym_preproc_elif_token1] = ACTIONS(2885), - [sym_preproc_directive] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym___extension__] = ACTIONS(2885), - [anon_sym_typedef] = ACTIONS(2885), - [anon_sym_extern] = ACTIONS(2885), - [anon_sym___attribute__] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2887), - [anon_sym___declspec] = ACTIONS(2885), - [anon_sym___based] = ACTIONS(2885), - [anon_sym_signed] = ACTIONS(2885), - [anon_sym_unsigned] = ACTIONS(2885), - [anon_sym_long] = ACTIONS(2885), - [anon_sym_short] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_register] = ACTIONS(2885), - [anon_sym_inline] = ACTIONS(2885), - [anon_sym___inline] = ACTIONS(2885), - [anon_sym___inline__] = ACTIONS(2885), - [anon_sym___forceinline] = ACTIONS(2885), - [anon_sym_thread_local] = ACTIONS(2885), - [anon_sym___thread] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_constexpr] = ACTIONS(2885), - [anon_sym_volatile] = ACTIONS(2885), - [anon_sym_restrict] = ACTIONS(2885), - [anon_sym___restrict__] = ACTIONS(2885), - [anon_sym__Atomic] = ACTIONS(2885), - [anon_sym__Noreturn] = ACTIONS(2885), - [anon_sym_noreturn] = ACTIONS(2885), - [anon_sym_mutable] = ACTIONS(2885), - [anon_sym_constinit] = ACTIONS(2885), - [anon_sym_consteval] = ACTIONS(2885), - [sym_primitive_type] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_union] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2885), - [anon_sym_decltype] = ACTIONS(2885), - [anon_sym_virtual] = ACTIONS(2885), - [anon_sym_alignas] = ACTIONS(2885), - [anon_sym_explicit] = ACTIONS(2885), - [anon_sym_typename] = ACTIONS(2885), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_operator] = ACTIONS(2885), - [anon_sym_friend] = ACTIONS(2885), - [anon_sym_public] = ACTIONS(2885), - [anon_sym_private] = ACTIONS(2885), - [anon_sym_protected] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_static_assert] = ACTIONS(2885), + [2126] = { + [sym_identifier] = ACTIONS(5507), + [aux_sym_preproc_def_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token2] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5507), + [aux_sym_preproc_else_token1] = ACTIONS(5507), + [aux_sym_preproc_elif_token1] = ACTIONS(5507), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5507), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5507), + [sym_preproc_directive] = ACTIONS(5507), + [anon_sym_LPAREN2] = ACTIONS(5509), + [anon_sym_TILDE] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5509), + [anon_sym_AMP_AMP] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5507), + [anon_sym___extension__] = ACTIONS(5507), + [anon_sym_typedef] = ACTIONS(5507), + [anon_sym_extern] = ACTIONS(5507), + [anon_sym___attribute__] = ACTIONS(5507), + [anon_sym_COLON_COLON] = ACTIONS(5509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), + [anon_sym___declspec] = ACTIONS(5507), + [anon_sym___based] = ACTIONS(5507), + [anon_sym_signed] = ACTIONS(5507), + [anon_sym_unsigned] = ACTIONS(5507), + [anon_sym_long] = ACTIONS(5507), + [anon_sym_short] = ACTIONS(5507), + [anon_sym_LBRACK] = ACTIONS(5507), + [anon_sym_static] = ACTIONS(5507), + [anon_sym_register] = ACTIONS(5507), + [anon_sym_inline] = ACTIONS(5507), + [anon_sym___inline] = ACTIONS(5507), + [anon_sym___inline__] = ACTIONS(5507), + [anon_sym___forceinline] = ACTIONS(5507), + [anon_sym_thread_local] = ACTIONS(5507), + [anon_sym___thread] = ACTIONS(5507), + [anon_sym_const] = ACTIONS(5507), + [anon_sym_constexpr] = ACTIONS(5507), + [anon_sym_volatile] = ACTIONS(5507), + [anon_sym_restrict] = ACTIONS(5507), + [anon_sym___restrict__] = ACTIONS(5507), + [anon_sym__Atomic] = ACTIONS(5507), + [anon_sym__Noreturn] = ACTIONS(5507), + [anon_sym_noreturn] = ACTIONS(5507), + [anon_sym_mutable] = ACTIONS(5507), + [anon_sym_constinit] = ACTIONS(5507), + [anon_sym_consteval] = ACTIONS(5507), + [sym_primitive_type] = ACTIONS(5507), + [anon_sym_enum] = ACTIONS(5507), + [anon_sym_class] = ACTIONS(5507), + [anon_sym_struct] = ACTIONS(5507), + [anon_sym_union] = ACTIONS(5507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5507), + [anon_sym_decltype] = ACTIONS(5507), + [anon_sym_virtual] = ACTIONS(5507), + [anon_sym_alignas] = ACTIONS(5507), + [anon_sym_explicit] = ACTIONS(5507), + [anon_sym_typename] = ACTIONS(5507), + [anon_sym_template] = ACTIONS(5507), + [anon_sym_operator] = ACTIONS(5507), + [anon_sym_friend] = ACTIONS(5507), + [anon_sym_public] = ACTIONS(5507), + [anon_sym_private] = ACTIONS(5507), + [anon_sym_protected] = ACTIONS(5507), + [anon_sym_using] = ACTIONS(5507), + [anon_sym_static_assert] = ACTIONS(5507), }, - [2303] = { - [sym_identifier] = ACTIONS(3172), - [aux_sym_preproc_def_token1] = ACTIONS(3172), - [aux_sym_preproc_if_token1] = ACTIONS(3172), - [aux_sym_preproc_if_token2] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), - [aux_sym_preproc_else_token1] = ACTIONS(3172), - [aux_sym_preproc_elif_token1] = ACTIONS(3172), - [sym_preproc_directive] = ACTIONS(3172), - [anon_sym_LPAREN2] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_STAR] = ACTIONS(3174), - [anon_sym_AMP_AMP] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym___extension__] = ACTIONS(3172), - [anon_sym_typedef] = ACTIONS(3172), - [anon_sym_extern] = ACTIONS(3172), - [anon_sym___attribute__] = ACTIONS(3172), - [anon_sym_COLON_COLON] = ACTIONS(3174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), - [anon_sym___declspec] = ACTIONS(3172), - [anon_sym___based] = ACTIONS(3172), - [anon_sym_signed] = ACTIONS(3172), - [anon_sym_unsigned] = ACTIONS(3172), - [anon_sym_long] = ACTIONS(3172), - [anon_sym_short] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_register] = ACTIONS(3172), - [anon_sym_inline] = ACTIONS(3172), - [anon_sym___inline] = ACTIONS(3172), - [anon_sym___inline__] = ACTIONS(3172), - [anon_sym___forceinline] = ACTIONS(3172), - [anon_sym_thread_local] = ACTIONS(3172), - [anon_sym___thread] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_constexpr] = ACTIONS(3172), - [anon_sym_volatile] = ACTIONS(3172), - [anon_sym_restrict] = ACTIONS(3172), - [anon_sym___restrict__] = ACTIONS(3172), - [anon_sym__Atomic] = ACTIONS(3172), - [anon_sym__Noreturn] = ACTIONS(3172), - [anon_sym_noreturn] = ACTIONS(3172), - [anon_sym_mutable] = ACTIONS(3172), - [anon_sym_constinit] = ACTIONS(3172), - [anon_sym_consteval] = ACTIONS(3172), - [sym_primitive_type] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_struct] = ACTIONS(3172), - [anon_sym_union] = ACTIONS(3172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3172), - [anon_sym_decltype] = ACTIONS(3172), - [anon_sym_virtual] = ACTIONS(3172), - [anon_sym_alignas] = ACTIONS(3172), - [anon_sym_explicit] = ACTIONS(3172), - [anon_sym_typename] = ACTIONS(3172), - [anon_sym_template] = ACTIONS(3172), - [anon_sym_operator] = ACTIONS(3172), - [anon_sym_friend] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_static_assert] = ACTIONS(3172), + [2127] = { + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [aux_sym_preproc_else_token1] = ACTIONS(2875), + [aux_sym_preproc_elif_token1] = ACTIONS(2875), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_friend] = ACTIONS(2875), + [anon_sym_public] = ACTIONS(2875), + [anon_sym_private] = ACTIONS(2875), + [anon_sym_protected] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), }, - [2304] = { - [sym_template_argument_list] = STATE(2051), - [aux_sym_sized_type_specifier_repeat1] = STATE(2609), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4145), - [anon_sym_COMMA] = ACTIONS(4145), - [anon_sym_RPAREN] = ACTIONS(4145), - [anon_sym_LPAREN2] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4137), - [anon_sym_PLUS] = ACTIONS(4137), - [anon_sym_STAR] = ACTIONS(4137), - [anon_sym_SLASH] = ACTIONS(4137), - [anon_sym_PERCENT] = ACTIONS(4137), - [anon_sym_PIPE_PIPE] = ACTIONS(4145), - [anon_sym_AMP_AMP] = ACTIONS(4145), - [anon_sym_PIPE] = ACTIONS(4137), - [anon_sym_CARET] = ACTIONS(4137), - [anon_sym_AMP] = ACTIONS(4137), - [anon_sym_EQ_EQ] = ACTIONS(4145), - [anon_sym_BANG_EQ] = ACTIONS(4145), - [anon_sym_GT] = ACTIONS(4137), - [anon_sym_GT_EQ] = ACTIONS(4145), - [anon_sym_LT_EQ] = ACTIONS(4137), - [anon_sym_LT] = ACTIONS(5340), - [anon_sym_LT_LT] = ACTIONS(4137), - [anon_sym_GT_GT] = ACTIONS(4137), - [anon_sym_SEMI] = ACTIONS(4145), - [anon_sym___attribute__] = ACTIONS(4145), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4145), - [anon_sym_RBRACE] = ACTIONS(4145), - [anon_sym_signed] = ACTIONS(5825), - [anon_sym_unsigned] = ACTIONS(5825), - [anon_sym_long] = ACTIONS(5825), - [anon_sym_short] = ACTIONS(5825), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_RBRACK] = ACTIONS(4145), - [anon_sym_EQ] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(4137), - [anon_sym_QMARK] = ACTIONS(4145), - [anon_sym_STAR_EQ] = ACTIONS(4145), - [anon_sym_SLASH_EQ] = ACTIONS(4145), - [anon_sym_PERCENT_EQ] = ACTIONS(4145), - [anon_sym_PLUS_EQ] = ACTIONS(4145), - [anon_sym_DASH_EQ] = ACTIONS(4145), - [anon_sym_LT_LT_EQ] = ACTIONS(4145), - [anon_sym_GT_GT_EQ] = ACTIONS(4145), - [anon_sym_AMP_EQ] = ACTIONS(4145), - [anon_sym_CARET_EQ] = ACTIONS(4145), - [anon_sym_PIPE_EQ] = ACTIONS(4145), - [anon_sym_and_eq] = ACTIONS(4145), - [anon_sym_or_eq] = ACTIONS(4145), - [anon_sym_xor_eq] = ACTIONS(4145), - [anon_sym_LT_EQ_GT] = ACTIONS(4145), - [anon_sym_or] = ACTIONS(4137), - [anon_sym_and] = ACTIONS(4137), - [anon_sym_bitor] = ACTIONS(4145), - [anon_sym_xor] = ACTIONS(4137), - [anon_sym_bitand] = ACTIONS(4145), - [anon_sym_not_eq] = ACTIONS(4145), - [anon_sym_DASH_DASH] = ACTIONS(4145), - [anon_sym_PLUS_PLUS] = ACTIONS(4145), - [anon_sym_DOT] = ACTIONS(4137), - [anon_sym_DOT_STAR] = ACTIONS(4145), - [anon_sym_DASH_GT] = ACTIONS(4145), + [2128] = { + [sym_identifier] = ACTIONS(5003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [aux_sym_preproc_if_token2] = ACTIONS(5005), + [aux_sym_preproc_else_token1] = ACTIONS(5005), + [aux_sym_preproc_elif_token1] = ACTIONS(5003), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5005), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5005), + [anon_sym_LPAREN2] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_PERCENT] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5005), + [anon_sym_AMP_AMP] = ACTIONS(5005), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym_AMP] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5005), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_LT_LT] = ACTIONS(5003), + [anon_sym_GT_GT] = ACTIONS(5003), + [anon_sym_SEMI] = ACTIONS(5005), + [anon_sym___attribute__] = ACTIONS(5003), + [anon_sym_COLON_COLON] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_RBRACE] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_RBRACK] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_QMARK] = ACTIONS(5005), + [anon_sym_STAR_EQ] = ACTIONS(5005), + [anon_sym_SLASH_EQ] = ACTIONS(5005), + [anon_sym_PERCENT_EQ] = ACTIONS(5005), + [anon_sym_PLUS_EQ] = ACTIONS(5005), + [anon_sym_DASH_EQ] = ACTIONS(5005), + [anon_sym_LT_LT_EQ] = ACTIONS(5005), + [anon_sym_GT_GT_EQ] = ACTIONS(5005), + [anon_sym_AMP_EQ] = ACTIONS(5005), + [anon_sym_CARET_EQ] = ACTIONS(5005), + [anon_sym_PIPE_EQ] = ACTIONS(5005), + [anon_sym_and_eq] = ACTIONS(5003), + [anon_sym_or_eq] = ACTIONS(5003), + [anon_sym_xor_eq] = ACTIONS(5003), + [anon_sym_LT_EQ_GT] = ACTIONS(5005), + [anon_sym_or] = ACTIONS(5003), + [anon_sym_and] = ACTIONS(5003), + [anon_sym_bitor] = ACTIONS(5003), + [anon_sym_xor] = ACTIONS(5003), + [anon_sym_bitand] = ACTIONS(5003), + [anon_sym_not_eq] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5005), + [anon_sym_PLUS_PLUS] = ACTIONS(5005), + [anon_sym_DOT] = ACTIONS(5003), + [anon_sym_DOT_STAR] = ACTIONS(5005), + [anon_sym_DASH_GT] = ACTIONS(5005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5003), + [anon_sym_decltype] = ACTIONS(5003), + [anon_sym_final] = ACTIONS(5003), + [anon_sym_override] = ACTIONS(5003), + }, + [2129] = { + [sym_identifier] = ACTIONS(5511), + [aux_sym_preproc_def_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token2] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5511), + [aux_sym_preproc_else_token1] = ACTIONS(5511), + [aux_sym_preproc_elif_token1] = ACTIONS(5511), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5511), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5511), + [sym_preproc_directive] = ACTIONS(5511), + [anon_sym_LPAREN2] = ACTIONS(5513), + [anon_sym_TILDE] = ACTIONS(5513), + [anon_sym_STAR] = ACTIONS(5513), + [anon_sym_AMP_AMP] = ACTIONS(5513), + [anon_sym_AMP] = ACTIONS(5511), + [anon_sym___extension__] = ACTIONS(5511), + [anon_sym_typedef] = ACTIONS(5511), + [anon_sym_extern] = ACTIONS(5511), + [anon_sym___attribute__] = ACTIONS(5511), + [anon_sym_COLON_COLON] = ACTIONS(5513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), + [anon_sym___declspec] = ACTIONS(5511), + [anon_sym___based] = ACTIONS(5511), + [anon_sym_signed] = ACTIONS(5511), + [anon_sym_unsigned] = ACTIONS(5511), + [anon_sym_long] = ACTIONS(5511), + [anon_sym_short] = ACTIONS(5511), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_static] = ACTIONS(5511), + [anon_sym_register] = ACTIONS(5511), + [anon_sym_inline] = ACTIONS(5511), + [anon_sym___inline] = ACTIONS(5511), + [anon_sym___inline__] = ACTIONS(5511), + [anon_sym___forceinline] = ACTIONS(5511), + [anon_sym_thread_local] = ACTIONS(5511), + [anon_sym___thread] = ACTIONS(5511), + [anon_sym_const] = ACTIONS(5511), + [anon_sym_constexpr] = ACTIONS(5511), + [anon_sym_volatile] = ACTIONS(5511), + [anon_sym_restrict] = ACTIONS(5511), + [anon_sym___restrict__] = ACTIONS(5511), + [anon_sym__Atomic] = ACTIONS(5511), + [anon_sym__Noreturn] = ACTIONS(5511), + [anon_sym_noreturn] = ACTIONS(5511), + [anon_sym_mutable] = ACTIONS(5511), + [anon_sym_constinit] = ACTIONS(5511), + [anon_sym_consteval] = ACTIONS(5511), + [sym_primitive_type] = ACTIONS(5511), + [anon_sym_enum] = ACTIONS(5511), + [anon_sym_class] = ACTIONS(5511), + [anon_sym_struct] = ACTIONS(5511), + [anon_sym_union] = ACTIONS(5511), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4145), - [anon_sym_decltype] = ACTIONS(4145), + [sym_auto] = ACTIONS(5511), + [anon_sym_decltype] = ACTIONS(5511), + [anon_sym_virtual] = ACTIONS(5511), + [anon_sym_alignas] = ACTIONS(5511), + [anon_sym_explicit] = ACTIONS(5511), + [anon_sym_typename] = ACTIONS(5511), + [anon_sym_template] = ACTIONS(5511), + [anon_sym_operator] = ACTIONS(5511), + [anon_sym_friend] = ACTIONS(5511), + [anon_sym_public] = ACTIONS(5511), + [anon_sym_private] = ACTIONS(5511), + [anon_sym_protected] = ACTIONS(5511), + [anon_sym_using] = ACTIONS(5511), + [anon_sym_static_assert] = ACTIONS(5511), }, - [2305] = { - [sym_identifier] = ACTIONS(3160), - [aux_sym_preproc_def_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token1] = ACTIONS(3160), - [aux_sym_preproc_if_token2] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), - [aux_sym_preproc_else_token1] = ACTIONS(3160), - [aux_sym_preproc_elif_token1] = ACTIONS(3160), - [sym_preproc_directive] = ACTIONS(3160), - [anon_sym_LPAREN2] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP_AMP] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(3160), - [anon_sym___extension__] = ACTIONS(3160), - [anon_sym_typedef] = ACTIONS(3160), - [anon_sym_extern] = ACTIONS(3160), - [anon_sym___attribute__] = ACTIONS(3160), - [anon_sym_COLON_COLON] = ACTIONS(3162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), - [anon_sym___declspec] = ACTIONS(3160), - [anon_sym___based] = ACTIONS(3160), - [anon_sym_signed] = ACTIONS(3160), - [anon_sym_unsigned] = ACTIONS(3160), - [anon_sym_long] = ACTIONS(3160), - [anon_sym_short] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_register] = ACTIONS(3160), - [anon_sym_inline] = ACTIONS(3160), - [anon_sym___inline] = ACTIONS(3160), - [anon_sym___inline__] = ACTIONS(3160), - [anon_sym___forceinline] = ACTIONS(3160), - [anon_sym_thread_local] = ACTIONS(3160), - [anon_sym___thread] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_constexpr] = ACTIONS(3160), - [anon_sym_volatile] = ACTIONS(3160), - [anon_sym_restrict] = ACTIONS(3160), - [anon_sym___restrict__] = ACTIONS(3160), - [anon_sym__Atomic] = ACTIONS(3160), - [anon_sym__Noreturn] = ACTIONS(3160), - [anon_sym_noreturn] = ACTIONS(3160), - [anon_sym_mutable] = ACTIONS(3160), - [anon_sym_constinit] = ACTIONS(3160), - [anon_sym_consteval] = ACTIONS(3160), - [sym_primitive_type] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_struct] = ACTIONS(3160), - [anon_sym_union] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3160), - [anon_sym_decltype] = ACTIONS(3160), - [anon_sym_virtual] = ACTIONS(3160), - [anon_sym_alignas] = ACTIONS(3160), - [anon_sym_explicit] = ACTIONS(3160), - [anon_sym_typename] = ACTIONS(3160), - [anon_sym_template] = ACTIONS(3160), - [anon_sym_operator] = ACTIONS(3160), - [anon_sym_friend] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_static_assert] = ACTIONS(3160), + [2130] = { + [sym_identifier] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5030), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [aux_sym_preproc_if_token2] = ACTIONS(5030), + [aux_sym_preproc_else_token1] = ACTIONS(5030), + [aux_sym_preproc_elif_token1] = ACTIONS(5028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5030), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5028), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5028), + [anon_sym_PIPE_PIPE] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5028), + [anon_sym_AMP] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5028), + [anon_sym_GT_GT] = ACTIONS(5028), + [anon_sym_SEMI] = ACTIONS(5030), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym_COLON_COLON] = ACTIONS(5030), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_RBRACK] = ACTIONS(5030), + [anon_sym_EQ] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_STAR_EQ] = ACTIONS(5030), + [anon_sym_SLASH_EQ] = ACTIONS(5030), + [anon_sym_PERCENT_EQ] = ACTIONS(5030), + [anon_sym_PLUS_EQ] = ACTIONS(5030), + [anon_sym_DASH_EQ] = ACTIONS(5030), + [anon_sym_LT_LT_EQ] = ACTIONS(5030), + [anon_sym_GT_GT_EQ] = ACTIONS(5030), + [anon_sym_AMP_EQ] = ACTIONS(5030), + [anon_sym_CARET_EQ] = ACTIONS(5030), + [anon_sym_PIPE_EQ] = ACTIONS(5030), + [anon_sym_and_eq] = ACTIONS(5028), + [anon_sym_or_eq] = ACTIONS(5028), + [anon_sym_xor_eq] = ACTIONS(5028), + [anon_sym_LT_EQ_GT] = ACTIONS(5030), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_bitor] = ACTIONS(5028), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_bitand] = ACTIONS(5028), + [anon_sym_not_eq] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_DOT_STAR] = ACTIONS(5030), + [anon_sym_DASH_GT] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5028), + [anon_sym_decltype] = ACTIONS(5028), + [anon_sym_final] = ACTIONS(5028), + [anon_sym_override] = ACTIONS(5028), }, - [2306] = { - [sym_identifier] = ACTIONS(5369), - [aux_sym_preproc_def_token1] = ACTIONS(5369), - [aux_sym_preproc_if_token1] = ACTIONS(5369), - [aux_sym_preproc_if_token2] = ACTIONS(5369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5369), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5369), - [aux_sym_preproc_else_token1] = ACTIONS(5369), - [aux_sym_preproc_elif_token1] = ACTIONS(5369), - [sym_preproc_directive] = ACTIONS(5369), - [anon_sym_LPAREN2] = ACTIONS(5371), - [anon_sym_TILDE] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_AMP_AMP] = ACTIONS(5371), - [anon_sym_AMP] = ACTIONS(5369), - [anon_sym___extension__] = ACTIONS(5369), - [anon_sym_typedef] = ACTIONS(5369), - [anon_sym_extern] = ACTIONS(5369), - [anon_sym___attribute__] = ACTIONS(5369), - [anon_sym_COLON_COLON] = ACTIONS(5371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5371), - [anon_sym___declspec] = ACTIONS(5369), - [anon_sym___based] = ACTIONS(5369), - [anon_sym_signed] = ACTIONS(5369), - [anon_sym_unsigned] = ACTIONS(5369), - [anon_sym_long] = ACTIONS(5369), - [anon_sym_short] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_static] = ACTIONS(5369), - [anon_sym_register] = ACTIONS(5369), - [anon_sym_inline] = ACTIONS(5369), - [anon_sym___inline] = ACTIONS(5369), - [anon_sym___inline__] = ACTIONS(5369), - [anon_sym___forceinline] = ACTIONS(5369), - [anon_sym_thread_local] = ACTIONS(5369), - [anon_sym___thread] = ACTIONS(5369), - [anon_sym_const] = ACTIONS(5369), - [anon_sym_constexpr] = ACTIONS(5369), - [anon_sym_volatile] = ACTIONS(5369), - [anon_sym_restrict] = ACTIONS(5369), - [anon_sym___restrict__] = ACTIONS(5369), - [anon_sym__Atomic] = ACTIONS(5369), - [anon_sym__Noreturn] = ACTIONS(5369), - [anon_sym_noreturn] = ACTIONS(5369), - [anon_sym_mutable] = ACTIONS(5369), - [anon_sym_constinit] = ACTIONS(5369), - [anon_sym_consteval] = ACTIONS(5369), - [sym_primitive_type] = ACTIONS(5369), - [anon_sym_enum] = ACTIONS(5369), - [anon_sym_class] = ACTIONS(5369), - [anon_sym_struct] = ACTIONS(5369), - [anon_sym_union] = ACTIONS(5369), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5369), - [anon_sym_decltype] = ACTIONS(5369), - [anon_sym_virtual] = ACTIONS(5369), - [anon_sym_alignas] = ACTIONS(5369), - [anon_sym_explicit] = ACTIONS(5369), - [anon_sym_typename] = ACTIONS(5369), - [anon_sym_template] = ACTIONS(5369), - [anon_sym_operator] = ACTIONS(5369), - [anon_sym_friend] = ACTIONS(5369), - [anon_sym_public] = ACTIONS(5369), - [anon_sym_private] = ACTIONS(5369), - [anon_sym_protected] = ACTIONS(5369), - [anon_sym_using] = ACTIONS(5369), - [anon_sym_static_assert] = ACTIONS(5369), + [2131] = { + [sym_identifier] = ACTIONS(3147), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token2] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), + [aux_sym_preproc_else_token1] = ACTIONS(3147), + [aux_sym_preproc_elif_token1] = ACTIONS(3147), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3147), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3147), + [sym_preproc_directive] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_AMP_AMP] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3147), + [anon_sym_typedef] = ACTIONS(3147), + [anon_sym_extern] = ACTIONS(3147), + [anon_sym___attribute__] = ACTIONS(3147), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), + [anon_sym___declspec] = ACTIONS(3147), + [anon_sym___based] = ACTIONS(3147), + [anon_sym_signed] = ACTIONS(3147), + [anon_sym_unsigned] = ACTIONS(3147), + [anon_sym_long] = ACTIONS(3147), + [anon_sym_short] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_register] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym___inline] = ACTIONS(3147), + [anon_sym___inline__] = ACTIONS(3147), + [anon_sym___forceinline] = ACTIONS(3147), + [anon_sym_thread_local] = ACTIONS(3147), + [anon_sym___thread] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_constexpr] = ACTIONS(3147), + [anon_sym_volatile] = ACTIONS(3147), + [anon_sym_restrict] = ACTIONS(3147), + [anon_sym___restrict__] = ACTIONS(3147), + [anon_sym__Atomic] = ACTIONS(3147), + [anon_sym__Noreturn] = ACTIONS(3147), + [anon_sym_noreturn] = ACTIONS(3147), + [anon_sym_mutable] = ACTIONS(3147), + [anon_sym_constinit] = ACTIONS(3147), + [anon_sym_consteval] = ACTIONS(3147), + [sym_primitive_type] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3147), + [anon_sym_decltype] = ACTIONS(3147), + [anon_sym_virtual] = ACTIONS(3147), + [anon_sym_alignas] = ACTIONS(3147), + [anon_sym_explicit] = ACTIONS(3147), + [anon_sym_typename] = ACTIONS(3147), + [anon_sym_template] = ACTIONS(3147), + [anon_sym_operator] = ACTIONS(3147), + [anon_sym_friend] = ACTIONS(3147), + [anon_sym_public] = ACTIONS(3147), + [anon_sym_private] = ACTIONS(3147), + [anon_sym_protected] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_static_assert] = ACTIONS(3147), }, - [2307] = { - [sym_identifier] = ACTIONS(3120), - [aux_sym_preproc_def_token1] = ACTIONS(3120), - [aux_sym_preproc_if_token1] = ACTIONS(3120), - [aux_sym_preproc_if_token2] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3120), - [aux_sym_preproc_else_token1] = ACTIONS(3120), - [aux_sym_preproc_elif_token1] = ACTIONS(3120), - [sym_preproc_directive] = ACTIONS(3120), - [anon_sym_LPAREN2] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(3122), - [anon_sym_AMP_AMP] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3120), - [anon_sym___extension__] = ACTIONS(3120), - [anon_sym_typedef] = ACTIONS(3120), - [anon_sym_extern] = ACTIONS(3120), - [anon_sym___attribute__] = ACTIONS(3120), - [anon_sym_COLON_COLON] = ACTIONS(3122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3122), - [anon_sym___declspec] = ACTIONS(3120), - [anon_sym___based] = ACTIONS(3120), - [anon_sym_signed] = ACTIONS(3120), - [anon_sym_unsigned] = ACTIONS(3120), - [anon_sym_long] = ACTIONS(3120), - [anon_sym_short] = ACTIONS(3120), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_static] = ACTIONS(3120), - [anon_sym_register] = ACTIONS(3120), - [anon_sym_inline] = ACTIONS(3120), - [anon_sym___inline] = ACTIONS(3120), - [anon_sym___inline__] = ACTIONS(3120), - [anon_sym___forceinline] = ACTIONS(3120), - [anon_sym_thread_local] = ACTIONS(3120), - [anon_sym___thread] = ACTIONS(3120), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_constexpr] = ACTIONS(3120), - [anon_sym_volatile] = ACTIONS(3120), - [anon_sym_restrict] = ACTIONS(3120), - [anon_sym___restrict__] = ACTIONS(3120), - [anon_sym__Atomic] = ACTIONS(3120), - [anon_sym__Noreturn] = ACTIONS(3120), - [anon_sym_noreturn] = ACTIONS(3120), - [anon_sym_mutable] = ACTIONS(3120), - [anon_sym_constinit] = ACTIONS(3120), - [anon_sym_consteval] = ACTIONS(3120), - [sym_primitive_type] = ACTIONS(3120), - [anon_sym_enum] = ACTIONS(3120), - [anon_sym_class] = ACTIONS(3120), - [anon_sym_struct] = ACTIONS(3120), - [anon_sym_union] = ACTIONS(3120), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3120), - [anon_sym_decltype] = ACTIONS(3120), - [anon_sym_virtual] = ACTIONS(3120), - [anon_sym_alignas] = ACTIONS(3120), - [anon_sym_explicit] = ACTIONS(3120), - [anon_sym_typename] = ACTIONS(3120), - [anon_sym_template] = ACTIONS(3120), - [anon_sym_operator] = ACTIONS(3120), - [anon_sym_friend] = ACTIONS(3120), - [anon_sym_public] = ACTIONS(3120), - [anon_sym_private] = ACTIONS(3120), - [anon_sym_protected] = ACTIONS(3120), - [anon_sym_using] = ACTIONS(3120), - [anon_sym_static_assert] = ACTIONS(3120), + [2132] = { + [sym_identifier] = ACTIONS(3151), + [aux_sym_preproc_def_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token2] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [aux_sym_preproc_else_token1] = ACTIONS(3151), + [aux_sym_preproc_elif_token1] = ACTIONS(3151), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3151), + [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(3151), + [anon_sym___extension__] = ACTIONS(3151), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_extern] = ACTIONS(3151), + [anon_sym___attribute__] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(3151), + [anon_sym_signed] = ACTIONS(3151), + [anon_sym_unsigned] = ACTIONS(3151), + [anon_sym_long] = ACTIONS(3151), + [anon_sym_short] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_register] = ACTIONS(3151), + [anon_sym_inline] = ACTIONS(3151), + [anon_sym___inline] = ACTIONS(3151), + [anon_sym___inline__] = ACTIONS(3151), + [anon_sym___forceinline] = ACTIONS(3151), + [anon_sym_thread_local] = ACTIONS(3151), + [anon_sym___thread] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_constexpr] = ACTIONS(3151), + [anon_sym_volatile] = ACTIONS(3151), + [anon_sym_restrict] = ACTIONS(3151), + [anon_sym___restrict__] = ACTIONS(3151), + [anon_sym__Atomic] = ACTIONS(3151), + [anon_sym__Noreturn] = ACTIONS(3151), + [anon_sym_noreturn] = ACTIONS(3151), + [anon_sym_mutable] = ACTIONS(3151), + [anon_sym_constinit] = ACTIONS(3151), + [anon_sym_consteval] = ACTIONS(3151), + [sym_primitive_type] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3151), + [anon_sym_decltype] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3151), + [anon_sym_alignas] = ACTIONS(3151), + [anon_sym_explicit] = ACTIONS(3151), + [anon_sym_typename] = ACTIONS(3151), + [anon_sym_template] = ACTIONS(3151), + [anon_sym_operator] = ACTIONS(3151), + [anon_sym_friend] = ACTIONS(3151), + [anon_sym_public] = ACTIONS(3151), + [anon_sym_private] = ACTIONS(3151), + [anon_sym_protected] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_static_assert] = ACTIONS(3151), }, - [2308] = { - [sym_identifier] = ACTIONS(5369), - [aux_sym_preproc_def_token1] = ACTIONS(5369), - [aux_sym_preproc_if_token1] = ACTIONS(5369), - [aux_sym_preproc_if_token2] = ACTIONS(5369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5369), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5369), - [aux_sym_preproc_else_token1] = ACTIONS(5369), - [aux_sym_preproc_elif_token1] = ACTIONS(5369), - [sym_preproc_directive] = ACTIONS(5369), - [anon_sym_LPAREN2] = ACTIONS(5371), - [anon_sym_TILDE] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_AMP_AMP] = ACTIONS(5371), - [anon_sym_AMP] = ACTIONS(5369), - [anon_sym___extension__] = ACTIONS(5369), - [anon_sym_typedef] = ACTIONS(5369), - [anon_sym_extern] = ACTIONS(5369), - [anon_sym___attribute__] = ACTIONS(5369), - [anon_sym_COLON_COLON] = ACTIONS(5371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5371), - [anon_sym___declspec] = ACTIONS(5369), - [anon_sym___based] = ACTIONS(5369), - [anon_sym_signed] = ACTIONS(5369), - [anon_sym_unsigned] = ACTIONS(5369), - [anon_sym_long] = ACTIONS(5369), - [anon_sym_short] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_static] = ACTIONS(5369), - [anon_sym_register] = ACTIONS(5369), - [anon_sym_inline] = ACTIONS(5369), - [anon_sym___inline] = ACTIONS(5369), - [anon_sym___inline__] = ACTIONS(5369), - [anon_sym___forceinline] = ACTIONS(5369), - [anon_sym_thread_local] = ACTIONS(5369), - [anon_sym___thread] = ACTIONS(5369), - [anon_sym_const] = ACTIONS(5369), - [anon_sym_constexpr] = ACTIONS(5369), - [anon_sym_volatile] = ACTIONS(5369), - [anon_sym_restrict] = ACTIONS(5369), - [anon_sym___restrict__] = ACTIONS(5369), - [anon_sym__Atomic] = ACTIONS(5369), - [anon_sym__Noreturn] = ACTIONS(5369), - [anon_sym_noreturn] = ACTIONS(5369), - [anon_sym_mutable] = ACTIONS(5369), - [anon_sym_constinit] = ACTIONS(5369), - [anon_sym_consteval] = ACTIONS(5369), - [sym_primitive_type] = ACTIONS(5369), - [anon_sym_enum] = ACTIONS(5369), - [anon_sym_class] = ACTIONS(5369), - [anon_sym_struct] = ACTIONS(5369), - [anon_sym_union] = ACTIONS(5369), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5369), - [anon_sym_decltype] = ACTIONS(5369), - [anon_sym_virtual] = ACTIONS(5369), - [anon_sym_alignas] = ACTIONS(5369), - [anon_sym_explicit] = ACTIONS(5369), - [anon_sym_typename] = ACTIONS(5369), - [anon_sym_template] = ACTIONS(5369), - [anon_sym_operator] = ACTIONS(5369), - [anon_sym_friend] = ACTIONS(5369), - [anon_sym_public] = ACTIONS(5369), - [anon_sym_private] = ACTIONS(5369), - [anon_sym_protected] = ACTIONS(5369), - [anon_sym_using] = ACTIONS(5369), - [anon_sym_static_assert] = ACTIONS(5369), + [2133] = { + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token2] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [aux_sym_preproc_else_token1] = ACTIONS(3159), + [aux_sym_preproc_elif_token1] = ACTIONS(3159), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_friend] = ACTIONS(3159), + [anon_sym_public] = ACTIONS(3159), + [anon_sym_private] = ACTIONS(3159), + [anon_sym_protected] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), }, - [2309] = { - [sym_identifier] = ACTIONS(3090), - [aux_sym_preproc_def_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token1] = ACTIONS(3090), - [aux_sym_preproc_if_token2] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3090), - [aux_sym_preproc_else_token1] = ACTIONS(3090), - [aux_sym_preproc_elif_token1] = ACTIONS(3090), - [sym_preproc_directive] = ACTIONS(3090), - [anon_sym_LPAREN2] = ACTIONS(3092), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym___extension__] = ACTIONS(3090), - [anon_sym_typedef] = ACTIONS(3090), - [anon_sym_extern] = ACTIONS(3090), - [anon_sym___attribute__] = ACTIONS(3090), - [anon_sym_COLON_COLON] = ACTIONS(3092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3092), - [anon_sym___declspec] = ACTIONS(3090), - [anon_sym___based] = ACTIONS(3090), - [anon_sym_signed] = ACTIONS(3090), - [anon_sym_unsigned] = ACTIONS(3090), - [anon_sym_long] = ACTIONS(3090), - [anon_sym_short] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3090), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_register] = ACTIONS(3090), - [anon_sym_inline] = ACTIONS(3090), - [anon_sym___inline] = ACTIONS(3090), - [anon_sym___inline__] = ACTIONS(3090), - [anon_sym___forceinline] = ACTIONS(3090), - [anon_sym_thread_local] = ACTIONS(3090), - [anon_sym___thread] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_constexpr] = ACTIONS(3090), - [anon_sym_volatile] = ACTIONS(3090), - [anon_sym_restrict] = ACTIONS(3090), - [anon_sym___restrict__] = ACTIONS(3090), - [anon_sym__Atomic] = ACTIONS(3090), - [anon_sym__Noreturn] = ACTIONS(3090), - [anon_sym_noreturn] = ACTIONS(3090), - [anon_sym_mutable] = ACTIONS(3090), - [anon_sym_constinit] = ACTIONS(3090), - [anon_sym_consteval] = ACTIONS(3090), - [sym_primitive_type] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_class] = ACTIONS(3090), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3090), - [anon_sym_decltype] = ACTIONS(3090), - [anon_sym_virtual] = ACTIONS(3090), - [anon_sym_alignas] = ACTIONS(3090), - [anon_sym_explicit] = ACTIONS(3090), - [anon_sym_typename] = ACTIONS(3090), - [anon_sym_template] = ACTIONS(3090), - [anon_sym_operator] = ACTIONS(3090), - [anon_sym_friend] = ACTIONS(3090), - [anon_sym_public] = ACTIONS(3090), - [anon_sym_private] = ACTIONS(3090), - [anon_sym_protected] = ACTIONS(3090), - [anon_sym_using] = ACTIONS(3090), - [anon_sym_static_assert] = ACTIONS(3090), + [2134] = { + [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___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_extern] = 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___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_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_friend] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), }, - [2310] = { - [sym_attribute_specifier] = STATE(2442), - [sym_identifier] = ACTIONS(5827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5829), - [anon_sym_COMMA] = ACTIONS(5829), - [anon_sym_RPAREN] = ACTIONS(5829), - [aux_sym_preproc_if_token2] = ACTIONS(5829), - [aux_sym_preproc_else_token1] = ACTIONS(5829), - [aux_sym_preproc_elif_token1] = ACTIONS(5827), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5829), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5829), - [anon_sym_LPAREN2] = ACTIONS(5829), - [anon_sym_DASH] = ACTIONS(5827), - [anon_sym_PLUS] = ACTIONS(5827), - [anon_sym_STAR] = ACTIONS(5827), - [anon_sym_SLASH] = ACTIONS(5827), - [anon_sym_PERCENT] = ACTIONS(5827), - [anon_sym_PIPE_PIPE] = ACTIONS(5829), - [anon_sym_AMP_AMP] = ACTIONS(5829), - [anon_sym_PIPE] = ACTIONS(5827), - [anon_sym_CARET] = ACTIONS(5827), - [anon_sym_AMP] = ACTIONS(5827), - [anon_sym_EQ_EQ] = ACTIONS(5829), - [anon_sym_BANG_EQ] = ACTIONS(5829), - [anon_sym_GT] = ACTIONS(5827), - [anon_sym_GT_EQ] = ACTIONS(5829), - [anon_sym_LT_EQ] = ACTIONS(5827), - [anon_sym_LT] = ACTIONS(5827), - [anon_sym_LT_LT] = ACTIONS(5827), - [anon_sym_GT_GT] = ACTIONS(5827), - [anon_sym_SEMI] = ACTIONS(5829), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5829), - [anon_sym_RBRACE] = ACTIONS(5829), - [anon_sym_LBRACK] = ACTIONS(5829), - [anon_sym_RBRACK] = ACTIONS(5829), - [anon_sym_EQ] = ACTIONS(5827), - [anon_sym_COLON] = ACTIONS(5829), - [anon_sym_QMARK] = ACTIONS(5829), - [anon_sym_STAR_EQ] = ACTIONS(5829), - [anon_sym_SLASH_EQ] = ACTIONS(5829), - [anon_sym_PERCENT_EQ] = ACTIONS(5829), - [anon_sym_PLUS_EQ] = ACTIONS(5829), - [anon_sym_DASH_EQ] = ACTIONS(5829), - [anon_sym_LT_LT_EQ] = ACTIONS(5829), - [anon_sym_GT_GT_EQ] = ACTIONS(5829), - [anon_sym_AMP_EQ] = ACTIONS(5829), - [anon_sym_CARET_EQ] = ACTIONS(5829), - [anon_sym_PIPE_EQ] = ACTIONS(5829), - [anon_sym_and_eq] = ACTIONS(5827), - [anon_sym_or_eq] = ACTIONS(5827), - [anon_sym_xor_eq] = ACTIONS(5827), - [anon_sym_LT_EQ_GT] = ACTIONS(5829), - [anon_sym_or] = ACTIONS(5827), - [anon_sym_and] = ACTIONS(5827), - [anon_sym_bitor] = ACTIONS(5827), - [anon_sym_xor] = ACTIONS(5827), - [anon_sym_bitand] = ACTIONS(5827), - [anon_sym_not_eq] = ACTIONS(5827), - [anon_sym_DASH_DASH] = ACTIONS(5829), - [anon_sym_PLUS_PLUS] = ACTIONS(5829), - [anon_sym_DOT] = ACTIONS(5827), - [anon_sym_DOT_STAR] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(5829), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5827), - [anon_sym_decltype] = ACTIONS(5827), + [2135] = { + [sym_identifier] = ACTIONS(5499), + [aux_sym_preproc_def_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token2] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5499), + [aux_sym_preproc_else_token1] = ACTIONS(5499), + [aux_sym_preproc_elif_token1] = ACTIONS(5499), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5499), + [sym_preproc_directive] = ACTIONS(5499), + [anon_sym_LPAREN2] = ACTIONS(5501), + [anon_sym_TILDE] = ACTIONS(5501), + [anon_sym_STAR] = ACTIONS(5501), + [anon_sym_AMP_AMP] = ACTIONS(5501), + [anon_sym_AMP] = ACTIONS(5499), + [anon_sym___extension__] = ACTIONS(5499), + [anon_sym_typedef] = ACTIONS(5499), + [anon_sym_extern] = ACTIONS(5499), + [anon_sym___attribute__] = ACTIONS(5499), + [anon_sym_COLON_COLON] = ACTIONS(5501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5501), + [anon_sym___declspec] = ACTIONS(5499), + [anon_sym___based] = ACTIONS(5499), + [anon_sym_signed] = ACTIONS(5499), + [anon_sym_unsigned] = ACTIONS(5499), + [anon_sym_long] = ACTIONS(5499), + [anon_sym_short] = ACTIONS(5499), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym_static] = ACTIONS(5499), + [anon_sym_register] = ACTIONS(5499), + [anon_sym_inline] = ACTIONS(5499), + [anon_sym___inline] = ACTIONS(5499), + [anon_sym___inline__] = ACTIONS(5499), + [anon_sym___forceinline] = ACTIONS(5499), + [anon_sym_thread_local] = ACTIONS(5499), + [anon_sym___thread] = ACTIONS(5499), + [anon_sym_const] = ACTIONS(5499), + [anon_sym_constexpr] = ACTIONS(5499), + [anon_sym_volatile] = ACTIONS(5499), + [anon_sym_restrict] = ACTIONS(5499), + [anon_sym___restrict__] = ACTIONS(5499), + [anon_sym__Atomic] = ACTIONS(5499), + [anon_sym__Noreturn] = ACTIONS(5499), + [anon_sym_noreturn] = ACTIONS(5499), + [anon_sym_mutable] = ACTIONS(5499), + [anon_sym_constinit] = ACTIONS(5499), + [anon_sym_consteval] = ACTIONS(5499), + [sym_primitive_type] = ACTIONS(5499), + [anon_sym_enum] = ACTIONS(5499), + [anon_sym_class] = ACTIONS(5499), + [anon_sym_struct] = ACTIONS(5499), + [anon_sym_union] = ACTIONS(5499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5499), + [anon_sym_decltype] = ACTIONS(5499), + [anon_sym_virtual] = ACTIONS(5499), + [anon_sym_alignas] = ACTIONS(5499), + [anon_sym_explicit] = ACTIONS(5499), + [anon_sym_typename] = ACTIONS(5499), + [anon_sym_template] = ACTIONS(5499), + [anon_sym_operator] = ACTIONS(5499), + [anon_sym_friend] = ACTIONS(5499), + [anon_sym_public] = ACTIONS(5499), + [anon_sym_private] = ACTIONS(5499), + [anon_sym_protected] = ACTIONS(5499), + [anon_sym_using] = ACTIONS(5499), + [anon_sym_static_assert] = ACTIONS(5499), }, - [2311] = { - [sym_attribute_specifier] = STATE(2445), - [sym_identifier] = ACTIONS(5831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5833), - [anon_sym_COMMA] = ACTIONS(5833), - [anon_sym_RPAREN] = ACTIONS(5833), - [aux_sym_preproc_if_token2] = ACTIONS(5833), - [aux_sym_preproc_else_token1] = ACTIONS(5833), - [aux_sym_preproc_elif_token1] = ACTIONS(5831), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5833), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5833), - [anon_sym_LPAREN2] = ACTIONS(5833), - [anon_sym_DASH] = ACTIONS(5831), - [anon_sym_PLUS] = ACTIONS(5831), - [anon_sym_STAR] = ACTIONS(5831), - [anon_sym_SLASH] = ACTIONS(5831), - [anon_sym_PERCENT] = ACTIONS(5831), - [anon_sym_PIPE_PIPE] = ACTIONS(5833), - [anon_sym_AMP_AMP] = ACTIONS(5833), - [anon_sym_PIPE] = ACTIONS(5831), - [anon_sym_CARET] = ACTIONS(5831), - [anon_sym_AMP] = ACTIONS(5831), - [anon_sym_EQ_EQ] = ACTIONS(5833), - [anon_sym_BANG_EQ] = ACTIONS(5833), - [anon_sym_GT] = ACTIONS(5831), - [anon_sym_GT_EQ] = ACTIONS(5833), - [anon_sym_LT_EQ] = ACTIONS(5831), - [anon_sym_LT] = ACTIONS(5831), - [anon_sym_LT_LT] = ACTIONS(5831), - [anon_sym_GT_GT] = ACTIONS(5831), - [anon_sym_SEMI] = ACTIONS(5833), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5833), - [anon_sym_RBRACE] = ACTIONS(5833), - [anon_sym_LBRACK] = ACTIONS(5833), - [anon_sym_RBRACK] = ACTIONS(5833), - [anon_sym_EQ] = ACTIONS(5831), - [anon_sym_COLON] = ACTIONS(5833), - [anon_sym_QMARK] = ACTIONS(5833), - [anon_sym_STAR_EQ] = ACTIONS(5833), - [anon_sym_SLASH_EQ] = ACTIONS(5833), - [anon_sym_PERCENT_EQ] = ACTIONS(5833), - [anon_sym_PLUS_EQ] = ACTIONS(5833), - [anon_sym_DASH_EQ] = ACTIONS(5833), - [anon_sym_LT_LT_EQ] = ACTIONS(5833), - [anon_sym_GT_GT_EQ] = ACTIONS(5833), - [anon_sym_AMP_EQ] = ACTIONS(5833), - [anon_sym_CARET_EQ] = ACTIONS(5833), - [anon_sym_PIPE_EQ] = ACTIONS(5833), - [anon_sym_and_eq] = ACTIONS(5831), - [anon_sym_or_eq] = ACTIONS(5831), - [anon_sym_xor_eq] = ACTIONS(5831), - [anon_sym_LT_EQ_GT] = ACTIONS(5833), - [anon_sym_or] = ACTIONS(5831), - [anon_sym_and] = ACTIONS(5831), - [anon_sym_bitor] = ACTIONS(5831), - [anon_sym_xor] = ACTIONS(5831), - [anon_sym_bitand] = ACTIONS(5831), - [anon_sym_not_eq] = ACTIONS(5831), - [anon_sym_DASH_DASH] = ACTIONS(5833), - [anon_sym_PLUS_PLUS] = ACTIONS(5833), - [anon_sym_DOT] = ACTIONS(5831), - [anon_sym_DOT_STAR] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(5833), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5831), - [anon_sym_decltype] = ACTIONS(5831), + [2136] = { + [sym_string_literal] = STATE(1993), + [sym_template_argument_list] = STATE(3110), + [sym_raw_string_literal] = STATE(1993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(5515), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5518), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4137), + [anon_sym_LBRACK] = ACTIONS(5521), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4137), + [anon_sym_or_eq] = ACTIONS(4137), + [anon_sym_xor_eq] = ACTIONS(4137), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(2166), + [anon_sym_u_DQUOTE] = ACTIONS(2166), + [anon_sym_U_DQUOTE] = ACTIONS(2166), + [anon_sym_u8_DQUOTE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2176), + [anon_sym_LR_DQUOTE] = ACTIONS(2176), + [anon_sym_uR_DQUOTE] = ACTIONS(2176), + [anon_sym_UR_DQUOTE] = ACTIONS(2176), + [anon_sym_u8R_DQUOTE] = ACTIONS(2176), }, - [2312] = { - [sym_identifier] = ACTIONS(5479), - [aux_sym_preproc_def_token1] = ACTIONS(5479), - [aux_sym_preproc_if_token1] = ACTIONS(5479), - [aux_sym_preproc_if_token2] = ACTIONS(5479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5479), - [aux_sym_preproc_else_token1] = ACTIONS(5479), - [aux_sym_preproc_elif_token1] = ACTIONS(5479), - [sym_preproc_directive] = ACTIONS(5479), - [anon_sym_LPAREN2] = ACTIONS(5481), - [anon_sym_TILDE] = ACTIONS(5481), - [anon_sym_STAR] = ACTIONS(5481), - [anon_sym_AMP_AMP] = ACTIONS(5481), - [anon_sym_AMP] = ACTIONS(5479), - [anon_sym___extension__] = ACTIONS(5479), - [anon_sym_typedef] = ACTIONS(5479), - [anon_sym_extern] = ACTIONS(5479), - [anon_sym___attribute__] = ACTIONS(5479), - [anon_sym_COLON_COLON] = ACTIONS(5481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5481), - [anon_sym___declspec] = ACTIONS(5479), - [anon_sym___based] = ACTIONS(5479), - [anon_sym_signed] = ACTIONS(5479), - [anon_sym_unsigned] = ACTIONS(5479), - [anon_sym_long] = ACTIONS(5479), - [anon_sym_short] = ACTIONS(5479), - [anon_sym_LBRACK] = ACTIONS(5479), - [anon_sym_static] = ACTIONS(5479), - [anon_sym_register] = ACTIONS(5479), - [anon_sym_inline] = ACTIONS(5479), - [anon_sym___inline] = ACTIONS(5479), - [anon_sym___inline__] = ACTIONS(5479), - [anon_sym___forceinline] = ACTIONS(5479), - [anon_sym_thread_local] = ACTIONS(5479), - [anon_sym___thread] = ACTIONS(5479), - [anon_sym_const] = ACTIONS(5479), - [anon_sym_constexpr] = ACTIONS(5479), - [anon_sym_volatile] = ACTIONS(5479), - [anon_sym_restrict] = ACTIONS(5479), - [anon_sym___restrict__] = ACTIONS(5479), - [anon_sym__Atomic] = ACTIONS(5479), - [anon_sym__Noreturn] = ACTIONS(5479), - [anon_sym_noreturn] = ACTIONS(5479), - [anon_sym_mutable] = ACTIONS(5479), - [anon_sym_constinit] = ACTIONS(5479), - [anon_sym_consteval] = ACTIONS(5479), - [sym_primitive_type] = ACTIONS(5479), - [anon_sym_enum] = ACTIONS(5479), - [anon_sym_class] = ACTIONS(5479), - [anon_sym_struct] = ACTIONS(5479), - [anon_sym_union] = ACTIONS(5479), + [2137] = { + [sym_identifier] = ACTIONS(2965), + [aux_sym_preproc_def_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token2] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), + [aux_sym_preproc_else_token1] = ACTIONS(2965), + [aux_sym_preproc_elif_token1] = ACTIONS(2965), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2965), + [sym_preproc_directive] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5479), - [anon_sym_decltype] = ACTIONS(5479), - [anon_sym_virtual] = ACTIONS(5479), - [anon_sym_alignas] = ACTIONS(5479), - [anon_sym_explicit] = ACTIONS(5479), - [anon_sym_typename] = ACTIONS(5479), - [anon_sym_template] = ACTIONS(5479), - [anon_sym_operator] = ACTIONS(5479), - [anon_sym_friend] = ACTIONS(5479), - [anon_sym_public] = ACTIONS(5479), - [anon_sym_private] = ACTIONS(5479), - [anon_sym_protected] = ACTIONS(5479), - [anon_sym_using] = ACTIONS(5479), - [anon_sym_static_assert] = ACTIONS(5479), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_friend] = ACTIONS(2965), + [anon_sym_public] = ACTIONS(2965), + [anon_sym_private] = ACTIONS(2965), + [anon_sym_protected] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), }, - [2313] = { - [sym_identifier] = ACTIONS(3132), - [aux_sym_preproc_def_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token1] = ACTIONS(3132), - [aux_sym_preproc_if_token2] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), - [aux_sym_preproc_else_token1] = ACTIONS(3132), - [aux_sym_preproc_elif_token1] = ACTIONS(3132), - [sym_preproc_directive] = ACTIONS(3132), - [anon_sym_LPAREN2] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_STAR] = ACTIONS(3134), - [anon_sym_AMP_AMP] = ACTIONS(3134), - [anon_sym_AMP] = ACTIONS(3132), - [anon_sym___extension__] = ACTIONS(3132), - [anon_sym_typedef] = ACTIONS(3132), - [anon_sym_extern] = ACTIONS(3132), - [anon_sym___attribute__] = ACTIONS(3132), - [anon_sym_COLON_COLON] = ACTIONS(3134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), - [anon_sym___declspec] = ACTIONS(3132), - [anon_sym___based] = ACTIONS(3132), - [anon_sym_signed] = ACTIONS(3132), - [anon_sym_unsigned] = ACTIONS(3132), - [anon_sym_long] = ACTIONS(3132), - [anon_sym_short] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_register] = ACTIONS(3132), - [anon_sym_inline] = ACTIONS(3132), - [anon_sym___inline] = ACTIONS(3132), - [anon_sym___inline__] = ACTIONS(3132), - [anon_sym___forceinline] = ACTIONS(3132), - [anon_sym_thread_local] = ACTIONS(3132), - [anon_sym___thread] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_constexpr] = ACTIONS(3132), - [anon_sym_volatile] = ACTIONS(3132), - [anon_sym_restrict] = ACTIONS(3132), - [anon_sym___restrict__] = ACTIONS(3132), - [anon_sym__Atomic] = ACTIONS(3132), - [anon_sym__Noreturn] = ACTIONS(3132), - [anon_sym_noreturn] = ACTIONS(3132), - [anon_sym_mutable] = ACTIONS(3132), - [anon_sym_constinit] = ACTIONS(3132), - [anon_sym_consteval] = ACTIONS(3132), - [sym_primitive_type] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_struct] = ACTIONS(3132), - [anon_sym_union] = ACTIONS(3132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3132), - [anon_sym_decltype] = ACTIONS(3132), - [anon_sym_virtual] = ACTIONS(3132), - [anon_sym_alignas] = ACTIONS(3132), - [anon_sym_explicit] = ACTIONS(3132), - [anon_sym_typename] = ACTIONS(3132), - [anon_sym_template] = ACTIONS(3132), - [anon_sym_operator] = ACTIONS(3132), - [anon_sym_friend] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_static_assert] = ACTIONS(3132), + [2138] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [aux_sym_preproc_else_token1] = ACTIONS(2186), + [aux_sym_preproc_elif_token1] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(5348), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), }, - [2314] = { - [sym_attribute_specifier] = STATE(2456), - [sym_identifier] = ACTIONS(5835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5837), - [anon_sym_COMMA] = ACTIONS(5837), - [anon_sym_RPAREN] = ACTIONS(5837), - [aux_sym_preproc_if_token2] = ACTIONS(5837), - [aux_sym_preproc_else_token1] = ACTIONS(5837), - [aux_sym_preproc_elif_token1] = ACTIONS(5835), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5837), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5837), - [anon_sym_LPAREN2] = ACTIONS(5837), - [anon_sym_DASH] = ACTIONS(5835), - [anon_sym_PLUS] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5835), - [anon_sym_SLASH] = ACTIONS(5835), - [anon_sym_PERCENT] = ACTIONS(5835), - [anon_sym_PIPE_PIPE] = ACTIONS(5837), - [anon_sym_AMP_AMP] = ACTIONS(5837), - [anon_sym_PIPE] = ACTIONS(5835), - [anon_sym_CARET] = ACTIONS(5835), - [anon_sym_AMP] = ACTIONS(5835), - [anon_sym_EQ_EQ] = ACTIONS(5837), - [anon_sym_BANG_EQ] = ACTIONS(5837), - [anon_sym_GT] = ACTIONS(5835), - [anon_sym_GT_EQ] = ACTIONS(5837), - [anon_sym_LT_EQ] = ACTIONS(5835), - [anon_sym_LT] = ACTIONS(5835), - [anon_sym_LT_LT] = ACTIONS(5835), - [anon_sym_GT_GT] = ACTIONS(5835), - [anon_sym_SEMI] = ACTIONS(5837), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5837), - [anon_sym_RBRACE] = ACTIONS(5837), - [anon_sym_LBRACK] = ACTIONS(5837), - [anon_sym_RBRACK] = ACTIONS(5837), - [anon_sym_EQ] = ACTIONS(5835), - [anon_sym_COLON] = ACTIONS(5837), - [anon_sym_QMARK] = ACTIONS(5837), - [anon_sym_STAR_EQ] = ACTIONS(5837), - [anon_sym_SLASH_EQ] = ACTIONS(5837), - [anon_sym_PERCENT_EQ] = ACTIONS(5837), - [anon_sym_PLUS_EQ] = ACTIONS(5837), - [anon_sym_DASH_EQ] = ACTIONS(5837), - [anon_sym_LT_LT_EQ] = ACTIONS(5837), - [anon_sym_GT_GT_EQ] = ACTIONS(5837), - [anon_sym_AMP_EQ] = ACTIONS(5837), - [anon_sym_CARET_EQ] = ACTIONS(5837), - [anon_sym_PIPE_EQ] = ACTIONS(5837), - [anon_sym_and_eq] = ACTIONS(5835), - [anon_sym_or_eq] = ACTIONS(5835), - [anon_sym_xor_eq] = ACTIONS(5835), - [anon_sym_LT_EQ_GT] = ACTIONS(5837), - [anon_sym_or] = ACTIONS(5835), - [anon_sym_and] = ACTIONS(5835), - [anon_sym_bitor] = ACTIONS(5835), - [anon_sym_xor] = ACTIONS(5835), - [anon_sym_bitand] = ACTIONS(5835), - [anon_sym_not_eq] = ACTIONS(5835), - [anon_sym_DASH_DASH] = ACTIONS(5837), - [anon_sym_PLUS_PLUS] = ACTIONS(5837), - [anon_sym_DOT] = ACTIONS(5835), - [anon_sym_DOT_STAR] = ACTIONS(5837), - [anon_sym_DASH_GT] = ACTIONS(5837), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5835), - [anon_sym_decltype] = ACTIONS(5835), + [2139] = { + [sym_identifier] = ACTIONS(3199), + [aux_sym_preproc_def_token1] = ACTIONS(3199), + [aux_sym_preproc_if_token1] = ACTIONS(3199), + [aux_sym_preproc_if_token2] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3199), + [aux_sym_preproc_else_token1] = ACTIONS(3199), + [aux_sym_preproc_elif_token1] = ACTIONS(3199), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3199), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3199), + [sym_preproc_directive] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym___extension__] = ACTIONS(3199), + [anon_sym_typedef] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym___attribute__] = ACTIONS(3199), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3199), + [anon_sym___based] = ACTIONS(3199), + [anon_sym_signed] = ACTIONS(3199), + [anon_sym_unsigned] = ACTIONS(3199), + [anon_sym_long] = ACTIONS(3199), + [anon_sym_short] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_register] = ACTIONS(3199), + [anon_sym_inline] = ACTIONS(3199), + [anon_sym___inline] = ACTIONS(3199), + [anon_sym___inline__] = ACTIONS(3199), + [anon_sym___forceinline] = ACTIONS(3199), + [anon_sym_thread_local] = ACTIONS(3199), + [anon_sym___thread] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_constexpr] = ACTIONS(3199), + [anon_sym_volatile] = ACTIONS(3199), + [anon_sym_restrict] = ACTIONS(3199), + [anon_sym___restrict__] = ACTIONS(3199), + [anon_sym__Atomic] = ACTIONS(3199), + [anon_sym__Noreturn] = ACTIONS(3199), + [anon_sym_noreturn] = ACTIONS(3199), + [anon_sym_mutable] = ACTIONS(3199), + [anon_sym_constinit] = ACTIONS(3199), + [anon_sym_consteval] = ACTIONS(3199), + [sym_primitive_type] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3199), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3199), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3199), + [anon_sym_alignas] = ACTIONS(3199), + [anon_sym_explicit] = ACTIONS(3199), + [anon_sym_typename] = ACTIONS(3199), + [anon_sym_template] = ACTIONS(3199), + [anon_sym_operator] = ACTIONS(3199), + [anon_sym_friend] = ACTIONS(3199), + [anon_sym_public] = ACTIONS(3199), + [anon_sym_private] = ACTIONS(3199), + [anon_sym_protected] = ACTIONS(3199), + [anon_sym_using] = ACTIONS(3199), + [anon_sym_static_assert] = ACTIONS(3199), }, - [2315] = { - [sym_attribute_specifier] = STATE(2458), - [sym_identifier] = ACTIONS(5839), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5841), - [anon_sym_COMMA] = ACTIONS(5841), - [anon_sym_RPAREN] = ACTIONS(5841), - [aux_sym_preproc_if_token2] = ACTIONS(5841), - [aux_sym_preproc_else_token1] = ACTIONS(5841), - [aux_sym_preproc_elif_token1] = ACTIONS(5839), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5841), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5841), - [anon_sym_LPAREN2] = ACTIONS(5841), - [anon_sym_DASH] = ACTIONS(5839), - [anon_sym_PLUS] = ACTIONS(5839), - [anon_sym_STAR] = ACTIONS(5839), - [anon_sym_SLASH] = ACTIONS(5839), - [anon_sym_PERCENT] = ACTIONS(5839), - [anon_sym_PIPE_PIPE] = ACTIONS(5841), - [anon_sym_AMP_AMP] = ACTIONS(5841), - [anon_sym_PIPE] = ACTIONS(5839), - [anon_sym_CARET] = ACTIONS(5839), - [anon_sym_AMP] = ACTIONS(5839), - [anon_sym_EQ_EQ] = ACTIONS(5841), - [anon_sym_BANG_EQ] = ACTIONS(5841), - [anon_sym_GT] = ACTIONS(5839), - [anon_sym_GT_EQ] = ACTIONS(5841), - [anon_sym_LT_EQ] = ACTIONS(5839), - [anon_sym_LT] = ACTIONS(5839), - [anon_sym_LT_LT] = ACTIONS(5839), - [anon_sym_GT_GT] = ACTIONS(5839), - [anon_sym_SEMI] = ACTIONS(5841), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5841), - [anon_sym_RBRACE] = ACTIONS(5841), - [anon_sym_LBRACK] = ACTIONS(5841), - [anon_sym_RBRACK] = ACTIONS(5841), - [anon_sym_EQ] = ACTIONS(5839), - [anon_sym_COLON] = ACTIONS(5841), - [anon_sym_QMARK] = ACTIONS(5841), - [anon_sym_STAR_EQ] = ACTIONS(5841), - [anon_sym_SLASH_EQ] = ACTIONS(5841), - [anon_sym_PERCENT_EQ] = ACTIONS(5841), - [anon_sym_PLUS_EQ] = ACTIONS(5841), - [anon_sym_DASH_EQ] = ACTIONS(5841), - [anon_sym_LT_LT_EQ] = ACTIONS(5841), - [anon_sym_GT_GT_EQ] = ACTIONS(5841), - [anon_sym_AMP_EQ] = ACTIONS(5841), - [anon_sym_CARET_EQ] = ACTIONS(5841), - [anon_sym_PIPE_EQ] = ACTIONS(5841), - [anon_sym_and_eq] = ACTIONS(5839), - [anon_sym_or_eq] = ACTIONS(5839), - [anon_sym_xor_eq] = ACTIONS(5839), - [anon_sym_LT_EQ_GT] = ACTIONS(5841), - [anon_sym_or] = ACTIONS(5839), - [anon_sym_and] = ACTIONS(5839), - [anon_sym_bitor] = ACTIONS(5839), - [anon_sym_xor] = ACTIONS(5839), - [anon_sym_bitand] = ACTIONS(5839), - [anon_sym_not_eq] = ACTIONS(5839), - [anon_sym_DASH_DASH] = ACTIONS(5841), - [anon_sym_PLUS_PLUS] = ACTIONS(5841), - [anon_sym_DOT] = ACTIONS(5839), - [anon_sym_DOT_STAR] = ACTIONS(5841), - [anon_sym_DASH_GT] = ACTIONS(5841), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5839), - [anon_sym_decltype] = ACTIONS(5839), - }, - [2316] = { - [sym_identifier] = ACTIONS(5535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5537), - [anon_sym_COMMA] = ACTIONS(5537), - [anon_sym_RPAREN] = ACTIONS(5537), - [aux_sym_preproc_if_token2] = ACTIONS(5537), - [aux_sym_preproc_else_token1] = ACTIONS(5537), - [aux_sym_preproc_elif_token1] = ACTIONS(5535), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5537), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5537), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_DASH] = ACTIONS(5535), - [anon_sym_PLUS] = ACTIONS(5535), - [anon_sym_STAR] = ACTIONS(5535), - [anon_sym_SLASH] = ACTIONS(5535), - [anon_sym_PERCENT] = ACTIONS(5535), - [anon_sym_PIPE_PIPE] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_PIPE] = ACTIONS(5535), - [anon_sym_CARET] = ACTIONS(5535), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_EQ_EQ] = ACTIONS(5537), - [anon_sym_BANG_EQ] = ACTIONS(5537), - [anon_sym_GT] = ACTIONS(5535), - [anon_sym_GT_EQ] = ACTIONS(5537), - [anon_sym_LT_EQ] = ACTIONS(5535), - [anon_sym_LT] = ACTIONS(5535), - [anon_sym_LT_LT] = ACTIONS(5535), - [anon_sym_GT_GT] = ACTIONS(5535), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym_COLON_COLON] = ACTIONS(5386), - [anon_sym_LBRACE] = ACTIONS(5537), - [anon_sym_RBRACE] = ACTIONS(5537), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_RBRACK] = ACTIONS(5537), - [anon_sym_EQ] = ACTIONS(5535), - [anon_sym_COLON] = ACTIONS(5535), - [anon_sym_QMARK] = ACTIONS(5537), - [anon_sym_STAR_EQ] = ACTIONS(5537), - [anon_sym_SLASH_EQ] = ACTIONS(5537), - [anon_sym_PERCENT_EQ] = ACTIONS(5537), - [anon_sym_PLUS_EQ] = ACTIONS(5537), - [anon_sym_DASH_EQ] = ACTIONS(5537), - [anon_sym_LT_LT_EQ] = ACTIONS(5537), - [anon_sym_GT_GT_EQ] = ACTIONS(5537), - [anon_sym_AMP_EQ] = ACTIONS(5537), - [anon_sym_CARET_EQ] = ACTIONS(5537), - [anon_sym_PIPE_EQ] = ACTIONS(5537), - [anon_sym_and_eq] = ACTIONS(5535), - [anon_sym_or_eq] = ACTIONS(5535), - [anon_sym_xor_eq] = ACTIONS(5535), - [anon_sym_LT_EQ_GT] = ACTIONS(5537), - [anon_sym_or] = ACTIONS(5535), - [anon_sym_and] = ACTIONS(5535), - [anon_sym_bitor] = ACTIONS(5535), - [anon_sym_xor] = ACTIONS(5535), - [anon_sym_bitand] = ACTIONS(5535), - [anon_sym_not_eq] = ACTIONS(5535), - [anon_sym_DASH_DASH] = ACTIONS(5537), - [anon_sym_PLUS_PLUS] = ACTIONS(5537), - [anon_sym_DOT] = ACTIONS(5535), - [anon_sym_DOT_STAR] = ACTIONS(5537), - [anon_sym_DASH_GT] = ACTIONS(5537), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), + [2140] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [aux_sym_preproc_else_token1] = ACTIONS(3004), + [aux_sym_preproc_elif_token1] = ACTIONS(3004), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_friend] = ACTIONS(3004), + [anon_sym_public] = ACTIONS(3004), + [anon_sym_private] = ACTIONS(3004), + [anon_sym_protected] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), }, - [2317] = { - [sym_identifier] = ACTIONS(3140), - [aux_sym_preproc_def_token1] = ACTIONS(3140), - [aux_sym_preproc_if_token1] = ACTIONS(3140), - [aux_sym_preproc_if_token2] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3140), - [aux_sym_preproc_else_token1] = ACTIONS(3140), - [aux_sym_preproc_elif_token1] = ACTIONS(3140), - [sym_preproc_directive] = ACTIONS(3140), - [anon_sym_LPAREN2] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(3142), - [anon_sym_AMP_AMP] = ACTIONS(3142), - [anon_sym_AMP] = ACTIONS(3140), - [anon_sym___extension__] = ACTIONS(3140), - [anon_sym_typedef] = ACTIONS(3140), - [anon_sym_extern] = ACTIONS(3140), - [anon_sym___attribute__] = ACTIONS(3140), - [anon_sym_COLON_COLON] = ACTIONS(3142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3142), - [anon_sym___declspec] = ACTIONS(3140), - [anon_sym___based] = ACTIONS(3140), - [anon_sym_signed] = ACTIONS(3140), - [anon_sym_unsigned] = ACTIONS(3140), - [anon_sym_long] = ACTIONS(3140), - [anon_sym_short] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_register] = ACTIONS(3140), - [anon_sym_inline] = ACTIONS(3140), - [anon_sym___inline] = ACTIONS(3140), - [anon_sym___inline__] = ACTIONS(3140), - [anon_sym___forceinline] = ACTIONS(3140), - [anon_sym_thread_local] = ACTIONS(3140), - [anon_sym___thread] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_constexpr] = ACTIONS(3140), - [anon_sym_volatile] = ACTIONS(3140), - [anon_sym_restrict] = ACTIONS(3140), - [anon_sym___restrict__] = ACTIONS(3140), - [anon_sym__Atomic] = ACTIONS(3140), - [anon_sym__Noreturn] = ACTIONS(3140), - [anon_sym_noreturn] = ACTIONS(3140), - [anon_sym_mutable] = ACTIONS(3140), - [anon_sym_constinit] = ACTIONS(3140), - [anon_sym_consteval] = ACTIONS(3140), - [sym_primitive_type] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_struct] = ACTIONS(3140), - [anon_sym_union] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3140), - [anon_sym_decltype] = ACTIONS(3140), - [anon_sym_virtual] = ACTIONS(3140), - [anon_sym_alignas] = ACTIONS(3140), - [anon_sym_explicit] = ACTIONS(3140), - [anon_sym_typename] = ACTIONS(3140), - [anon_sym_template] = ACTIONS(3140), - [anon_sym_operator] = ACTIONS(3140), - [anon_sym_friend] = ACTIONS(3140), - [anon_sym_public] = ACTIONS(3140), - [anon_sym_private] = ACTIONS(3140), - [anon_sym_protected] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_static_assert] = ACTIONS(3140), + [2141] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [aux_sym_preproc_else_token1] = ACTIONS(3004), + [aux_sym_preproc_elif_token1] = ACTIONS(3004), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_friend] = ACTIONS(3004), + [anon_sym_public] = ACTIONS(3004), + [anon_sym_private] = ACTIONS(3004), + [anon_sym_protected] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), }, - [2318] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5253), - [anon_sym_STAR] = ACTIONS(5253), - [anon_sym_SLASH] = ACTIONS(5253), - [anon_sym_PERCENT] = ACTIONS(5253), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5253), - [anon_sym_CARET] = ACTIONS(5253), - [anon_sym_AMP] = ACTIONS(5253), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5253), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5253), - [anon_sym_LT] = ACTIONS(5253), - [anon_sym_LT_LT] = ACTIONS(5253), - [anon_sym_GT_GT] = ACTIONS(5253), - [anon_sym_SEMI] = ACTIONS(5255), - [anon_sym_RBRACE] = ACTIONS(5255), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_RBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5255), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(5255), - [anon_sym_SLASH_EQ] = ACTIONS(5255), - [anon_sym_PERCENT_EQ] = ACTIONS(5255), - [anon_sym_PLUS_EQ] = ACTIONS(5255), - [anon_sym_DASH_EQ] = ACTIONS(5255), - [anon_sym_LT_LT_EQ] = ACTIONS(5255), - [anon_sym_GT_GT_EQ] = ACTIONS(5255), - [anon_sym_AMP_EQ] = ACTIONS(5255), - [anon_sym_CARET_EQ] = ACTIONS(5255), - [anon_sym_PIPE_EQ] = ACTIONS(5255), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5253), - [anon_sym_and] = ACTIONS(5253), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5253), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5253), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(5255), - [anon_sym_u_DQUOTE] = ACTIONS(5255), - [anon_sym_U_DQUOTE] = ACTIONS(5255), - [anon_sym_u8_DQUOTE] = ACTIONS(5255), - [anon_sym_DQUOTE] = ACTIONS(5255), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5255), - [anon_sym_LR_DQUOTE] = ACTIONS(5255), - [anon_sym_uR_DQUOTE] = ACTIONS(5255), - [anon_sym_UR_DQUOTE] = ACTIONS(5255), - [anon_sym_u8R_DQUOTE] = ACTIONS(5255), - [sym_literal_suffix] = ACTIONS(5253), + [2142] = { + [sym_identifier] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [aux_sym_preproc_if_token2] = ACTIONS(5026), + [aux_sym_preproc_else_token1] = ACTIONS(5026), + [aux_sym_preproc_elif_token1] = ACTIONS(5024), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5026), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym___attribute__] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(5026), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_RBRACK] = ACTIONS(5026), + [anon_sym_EQ] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_STAR_EQ] = ACTIONS(5026), + [anon_sym_SLASH_EQ] = ACTIONS(5026), + [anon_sym_PERCENT_EQ] = ACTIONS(5026), + [anon_sym_PLUS_EQ] = ACTIONS(5026), + [anon_sym_DASH_EQ] = ACTIONS(5026), + [anon_sym_LT_LT_EQ] = ACTIONS(5026), + [anon_sym_GT_GT_EQ] = ACTIONS(5026), + [anon_sym_AMP_EQ] = ACTIONS(5026), + [anon_sym_CARET_EQ] = ACTIONS(5026), + [anon_sym_PIPE_EQ] = ACTIONS(5026), + [anon_sym_and_eq] = ACTIONS(5024), + [anon_sym_or_eq] = ACTIONS(5024), + [anon_sym_xor_eq] = ACTIONS(5024), + [anon_sym_LT_EQ_GT] = ACTIONS(5026), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_bitor] = ACTIONS(5024), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_bitand] = ACTIONS(5024), + [anon_sym_not_eq] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_DOT_STAR] = ACTIONS(5026), + [anon_sym_DASH_GT] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5024), + [anon_sym_decltype] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), }, - [2319] = { - [sym_string_literal] = STATE(2282), - [sym_raw_string_literal] = STATE(2282), - [aux_sym_concatenated_string_repeat1] = STATE(2282), - [sym_identifier] = ACTIONS(5843), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5214), - [anon_sym_COMMA] = ACTIONS(5214), - [anon_sym_LPAREN2] = ACTIONS(5214), - [anon_sym_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5216), - [anon_sym_STAR] = ACTIONS(5216), - [anon_sym_SLASH] = ACTIONS(5216), - [anon_sym_PERCENT] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_CARET] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5214), - [anon_sym_BANG_EQ] = ACTIONS(5214), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_GT_EQ] = ACTIONS(5216), - [anon_sym_LT_EQ] = ACTIONS(5216), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(5214), - [anon_sym_STAR_EQ] = ACTIONS(5214), - [anon_sym_SLASH_EQ] = ACTIONS(5214), - [anon_sym_PERCENT_EQ] = ACTIONS(5214), - [anon_sym_PLUS_EQ] = ACTIONS(5214), - [anon_sym_DASH_EQ] = ACTIONS(5214), - [anon_sym_LT_LT_EQ] = ACTIONS(5214), - [anon_sym_GT_GT_EQ] = ACTIONS(5216), - [anon_sym_AMP_EQ] = ACTIONS(5214), - [anon_sym_CARET_EQ] = ACTIONS(5214), - [anon_sym_PIPE_EQ] = ACTIONS(5214), - [anon_sym_and_eq] = ACTIONS(5216), - [anon_sym_or_eq] = ACTIONS(5216), - [anon_sym_xor_eq] = ACTIONS(5216), - [anon_sym_LT_EQ_GT] = ACTIONS(5214), - [anon_sym_or] = ACTIONS(5216), - [anon_sym_and] = ACTIONS(5216), - [anon_sym_bitor] = ACTIONS(5216), - [anon_sym_xor] = ACTIONS(5216), - [anon_sym_bitand] = ACTIONS(5216), - [anon_sym_not_eq] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5214), - [anon_sym_DOT] = ACTIONS(5216), - [anon_sym_DOT_STAR] = ACTIONS(5214), - [anon_sym_DASH_GT] = ACTIONS(5214), - [anon_sym_L_DQUOTE] = ACTIONS(5797), - [anon_sym_u_DQUOTE] = ACTIONS(5797), - [anon_sym_U_DQUOTE] = ACTIONS(5797), - [anon_sym_u8_DQUOTE] = ACTIONS(5797), - [anon_sym_DQUOTE] = ACTIONS(5797), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5214), - [anon_sym_R_DQUOTE] = ACTIONS(5799), - [anon_sym_LR_DQUOTE] = ACTIONS(5799), - [anon_sym_uR_DQUOTE] = ACTIONS(5799), - [anon_sym_UR_DQUOTE] = ACTIONS(5799), - [anon_sym_u8R_DQUOTE] = ACTIONS(5799), - [sym_literal_suffix] = ACTIONS(5216), + [2143] = { + [sym_identifier] = ACTIONS(4999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [aux_sym_preproc_if_token2] = ACTIONS(5001), + [aux_sym_preproc_else_token1] = ACTIONS(5001), + [aux_sym_preproc_elif_token1] = ACTIONS(4999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5001), + [anon_sym_LPAREN2] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_PERCENT] = ACTIONS(4999), + [anon_sym_PIPE_PIPE] = ACTIONS(5001), + [anon_sym_AMP_AMP] = ACTIONS(5001), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym_AMP] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(5001), + [anon_sym_BANG_EQ] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(5001), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_LT_LT] = ACTIONS(4999), + [anon_sym_GT_GT] = ACTIONS(4999), + [anon_sym_SEMI] = ACTIONS(5001), + [anon_sym___attribute__] = ACTIONS(4999), + [anon_sym_COLON_COLON] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_RBRACE] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_RBRACK] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_STAR_EQ] = ACTIONS(5001), + [anon_sym_SLASH_EQ] = ACTIONS(5001), + [anon_sym_PERCENT_EQ] = ACTIONS(5001), + [anon_sym_PLUS_EQ] = ACTIONS(5001), + [anon_sym_DASH_EQ] = ACTIONS(5001), + [anon_sym_LT_LT_EQ] = ACTIONS(5001), + [anon_sym_GT_GT_EQ] = ACTIONS(5001), + [anon_sym_AMP_EQ] = ACTIONS(5001), + [anon_sym_CARET_EQ] = ACTIONS(5001), + [anon_sym_PIPE_EQ] = ACTIONS(5001), + [anon_sym_and_eq] = ACTIONS(4999), + [anon_sym_or_eq] = ACTIONS(4999), + [anon_sym_xor_eq] = ACTIONS(4999), + [anon_sym_LT_EQ_GT] = ACTIONS(5001), + [anon_sym_or] = ACTIONS(4999), + [anon_sym_and] = ACTIONS(4999), + [anon_sym_bitor] = ACTIONS(4999), + [anon_sym_xor] = ACTIONS(4999), + [anon_sym_bitand] = ACTIONS(4999), + [anon_sym_not_eq] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(5001), + [anon_sym_PLUS_PLUS] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(4999), + [anon_sym_DOT_STAR] = ACTIONS(5001), + [anon_sym_DASH_GT] = ACTIONS(5001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4999), + [anon_sym_decltype] = ACTIONS(4999), + [anon_sym_final] = ACTIONS(4999), + [anon_sym_override] = ACTIONS(4999), }, - [2320] = { - [sym_identifier] = ACTIONS(3472), - [anon_sym_LPAREN2] = ACTIONS(3474), - [anon_sym_BANG] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3472), - [anon_sym_PLUS] = ACTIONS(3472), - [anon_sym_STAR] = ACTIONS(3474), - [anon_sym_AMP] = ACTIONS(3474), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_COLON_COLON] = ACTIONS(3474), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_RBRACK] = ACTIONS(3474), - [anon_sym_const] = ACTIONS(3472), - [anon_sym_constexpr] = ACTIONS(3472), - [anon_sym_volatile] = ACTIONS(3472), - [anon_sym_restrict] = ACTIONS(3472), - [anon_sym___restrict__] = ACTIONS(3472), - [anon_sym__Atomic] = ACTIONS(3472), - [anon_sym__Noreturn] = ACTIONS(3472), - [anon_sym_noreturn] = ACTIONS(3472), - [anon_sym_mutable] = ACTIONS(3472), - [anon_sym_constinit] = ACTIONS(3472), - [anon_sym_consteval] = ACTIONS(3472), - [sym_primitive_type] = ACTIONS(3472), - [anon_sym_not] = ACTIONS(3472), - [anon_sym_compl] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(3474), - [anon_sym_PLUS_PLUS] = ACTIONS(3474), - [anon_sym_sizeof] = ACTIONS(3472), - [anon_sym___alignof__] = ACTIONS(3472), - [anon_sym___alignof] = ACTIONS(3472), - [anon_sym__alignof] = ACTIONS(3472), - [anon_sym_alignof] = ACTIONS(3472), - [anon_sym__Alignof] = ACTIONS(3472), - [anon_sym_offsetof] = ACTIONS(3472), - [anon_sym__Generic] = ACTIONS(3472), - [anon_sym_asm] = ACTIONS(3472), - [anon_sym___asm__] = ACTIONS(3472), - [sym_number_literal] = ACTIONS(3474), - [anon_sym_L_SQUOTE] = ACTIONS(3474), - [anon_sym_u_SQUOTE] = ACTIONS(3474), - [anon_sym_U_SQUOTE] = ACTIONS(3474), - [anon_sym_u8_SQUOTE] = ACTIONS(3474), - [anon_sym_SQUOTE] = ACTIONS(3474), - [anon_sym_L_DQUOTE] = ACTIONS(3474), - [anon_sym_u_DQUOTE] = ACTIONS(3474), - [anon_sym_U_DQUOTE] = ACTIONS(3474), - [anon_sym_u8_DQUOTE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [sym_true] = ACTIONS(3472), - [sym_false] = ACTIONS(3472), - [anon_sym_NULL] = ACTIONS(3472), - [anon_sym_nullptr] = ACTIONS(3472), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3472), - [anon_sym_template] = ACTIONS(3472), - [anon_sym_delete] = ACTIONS(3472), - [anon_sym_R_DQUOTE] = ACTIONS(3474), - [anon_sym_LR_DQUOTE] = ACTIONS(3474), - [anon_sym_uR_DQUOTE] = ACTIONS(3474), - [anon_sym_UR_DQUOTE] = ACTIONS(3474), - [anon_sym_u8R_DQUOTE] = ACTIONS(3474), - [anon_sym_co_await] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3472), - [anon_sym_requires] = ACTIONS(3472), - [sym_this] = ACTIONS(3472), + [2144] = { + [sym_string_literal] = STATE(2149), + [sym_raw_string_literal] = STATE(2149), + [aux_sym_concatenated_string_repeat1] = STATE(2149), + [sym_identifier] = ACTIONS(5524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [aux_sym_preproc_if_token2] = ACTIONS(5234), + [aux_sym_preproc_else_token1] = ACTIONS(5234), + [aux_sym_preproc_elif_token1] = ACTIONS(5234), + [anon_sym_LPAREN2] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5236), + [anon_sym_QMARK] = ACTIONS(5234), + [anon_sym_STAR_EQ] = ACTIONS(5234), + [anon_sym_SLASH_EQ] = ACTIONS(5234), + [anon_sym_PERCENT_EQ] = ACTIONS(5234), + [anon_sym_PLUS_EQ] = ACTIONS(5234), + [anon_sym_DASH_EQ] = ACTIONS(5234), + [anon_sym_LT_LT_EQ] = ACTIONS(5234), + [anon_sym_GT_GT_EQ] = ACTIONS(5234), + [anon_sym_AMP_EQ] = ACTIONS(5234), + [anon_sym_CARET_EQ] = ACTIONS(5234), + [anon_sym_PIPE_EQ] = ACTIONS(5234), + [anon_sym_and_eq] = ACTIONS(5236), + [anon_sym_or_eq] = ACTIONS(5236), + [anon_sym_xor_eq] = ACTIONS(5236), + [anon_sym_LT_EQ_GT] = ACTIONS(5234), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_and] = ACTIONS(5236), + [anon_sym_bitor] = ACTIONS(5236), + [anon_sym_xor] = ACTIONS(5236), + [anon_sym_bitand] = ACTIONS(5236), + [anon_sym_not_eq] = ACTIONS(5236), + [anon_sym_DASH_DASH] = ACTIONS(5234), + [anon_sym_PLUS_PLUS] = ACTIONS(5234), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_DOT_STAR] = ACTIONS(5234), + [anon_sym_DASH_GT] = ACTIONS(5234), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [sym_literal_suffix] = ACTIONS(5236), }, - [2321] = { - [sym_identifier] = ACTIONS(5407), - [aux_sym_preproc_def_token1] = ACTIONS(5407), - [aux_sym_preproc_if_token1] = ACTIONS(5407), - [aux_sym_preproc_if_token2] = ACTIONS(5407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5407), - [aux_sym_preproc_else_token1] = ACTIONS(5407), - [aux_sym_preproc_elif_token1] = ACTIONS(5407), - [sym_preproc_directive] = ACTIONS(5407), - [anon_sym_LPAREN2] = ACTIONS(5409), - [anon_sym_TILDE] = ACTIONS(5409), - [anon_sym_STAR] = ACTIONS(5409), - [anon_sym_AMP_AMP] = ACTIONS(5409), - [anon_sym_AMP] = ACTIONS(5407), - [anon_sym___extension__] = ACTIONS(5407), - [anon_sym_typedef] = ACTIONS(5407), - [anon_sym_extern] = ACTIONS(5407), - [anon_sym___attribute__] = ACTIONS(5407), - [anon_sym_COLON_COLON] = ACTIONS(5409), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5409), - [anon_sym___declspec] = ACTIONS(5407), - [anon_sym___based] = ACTIONS(5407), - [anon_sym_signed] = ACTIONS(5407), - [anon_sym_unsigned] = ACTIONS(5407), - [anon_sym_long] = ACTIONS(5407), - [anon_sym_short] = ACTIONS(5407), - [anon_sym_LBRACK] = ACTIONS(5407), - [anon_sym_static] = ACTIONS(5407), - [anon_sym_register] = ACTIONS(5407), - [anon_sym_inline] = ACTIONS(5407), - [anon_sym___inline] = ACTIONS(5407), - [anon_sym___inline__] = ACTIONS(5407), - [anon_sym___forceinline] = ACTIONS(5407), - [anon_sym_thread_local] = ACTIONS(5407), - [anon_sym___thread] = ACTIONS(5407), - [anon_sym_const] = ACTIONS(5407), - [anon_sym_constexpr] = ACTIONS(5407), - [anon_sym_volatile] = ACTIONS(5407), - [anon_sym_restrict] = ACTIONS(5407), - [anon_sym___restrict__] = ACTIONS(5407), - [anon_sym__Atomic] = ACTIONS(5407), - [anon_sym__Noreturn] = ACTIONS(5407), - [anon_sym_noreturn] = ACTIONS(5407), - [anon_sym_mutable] = ACTIONS(5407), - [anon_sym_constinit] = ACTIONS(5407), - [anon_sym_consteval] = ACTIONS(5407), - [sym_primitive_type] = ACTIONS(5407), - [anon_sym_enum] = ACTIONS(5407), - [anon_sym_class] = ACTIONS(5407), - [anon_sym_struct] = ACTIONS(5407), - [anon_sym_union] = ACTIONS(5407), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5407), - [anon_sym_decltype] = ACTIONS(5407), - [anon_sym_virtual] = ACTIONS(5407), - [anon_sym_alignas] = ACTIONS(5407), - [anon_sym_explicit] = ACTIONS(5407), - [anon_sym_typename] = ACTIONS(5407), - [anon_sym_template] = ACTIONS(5407), - [anon_sym_operator] = ACTIONS(5407), - [anon_sym_friend] = ACTIONS(5407), - [anon_sym_public] = ACTIONS(5407), - [anon_sym_private] = ACTIONS(5407), - [anon_sym_protected] = ACTIONS(5407), - [anon_sym_using] = ACTIONS(5407), - [anon_sym_static_assert] = ACTIONS(5407), + [2145] = { + [sym_identifier] = ACTIONS(3244), + [aux_sym_preproc_def_token1] = ACTIONS(3244), + [aux_sym_preproc_if_token1] = ACTIONS(3244), + [aux_sym_preproc_if_token2] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3244), + [aux_sym_preproc_else_token1] = ACTIONS(3244), + [aux_sym_preproc_elif_token1] = ACTIONS(3244), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3244), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3244), + [sym_preproc_directive] = ACTIONS(3244), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_typedef] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [sym_primitive_type] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3244), + [anon_sym_union] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym_explicit] = ACTIONS(3244), + [anon_sym_typename] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_friend] = ACTIONS(3244), + [anon_sym_public] = ACTIONS(3244), + [anon_sym_private] = ACTIONS(3244), + [anon_sym_protected] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_static_assert] = ACTIONS(3244), }, - [2322] = { - [sym_attribute_declaration] = STATE(2402), - [sym_parameter_list] = STATE(2398), - [aux_sym_attributed_declarator_repeat1] = STATE(2402), - [sym_identifier] = ACTIONS(5845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5847), - [anon_sym_COMMA] = ACTIONS(5847), - [anon_sym_RPAREN] = ACTIONS(5847), - [aux_sym_preproc_if_token2] = ACTIONS(5847), - [aux_sym_preproc_else_token1] = ACTIONS(5847), - [aux_sym_preproc_elif_token1] = ACTIONS(5845), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5847), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5847), - [anon_sym_LPAREN2] = ACTIONS(5805), - [anon_sym_DASH] = ACTIONS(5845), - [anon_sym_PLUS] = ACTIONS(5845), - [anon_sym_STAR] = ACTIONS(5845), - [anon_sym_SLASH] = ACTIONS(5845), - [anon_sym_PERCENT] = ACTIONS(5845), - [anon_sym_PIPE_PIPE] = ACTIONS(5847), - [anon_sym_AMP_AMP] = ACTIONS(5847), - [anon_sym_PIPE] = ACTIONS(5845), - [anon_sym_CARET] = ACTIONS(5845), - [anon_sym_AMP] = ACTIONS(5845), - [anon_sym_EQ_EQ] = ACTIONS(5847), - [anon_sym_BANG_EQ] = ACTIONS(5847), - [anon_sym_GT] = ACTIONS(5845), - [anon_sym_GT_EQ] = ACTIONS(5847), - [anon_sym_LT_EQ] = ACTIONS(5845), - [anon_sym_LT] = ACTIONS(5845), - [anon_sym_LT_LT] = ACTIONS(5845), - [anon_sym_GT_GT] = ACTIONS(5845), - [anon_sym_SEMI] = ACTIONS(5847), - [anon_sym___attribute__] = ACTIONS(5845), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5807), - [anon_sym_RBRACE] = ACTIONS(5847), - [anon_sym_LBRACK] = ACTIONS(5809), - [anon_sym_RBRACK] = ACTIONS(5847), - [anon_sym_EQ] = ACTIONS(5845), - [anon_sym_COLON] = ACTIONS(5847), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_STAR_EQ] = ACTIONS(5847), - [anon_sym_SLASH_EQ] = ACTIONS(5847), - [anon_sym_PERCENT_EQ] = ACTIONS(5847), - [anon_sym_PLUS_EQ] = ACTIONS(5847), - [anon_sym_DASH_EQ] = ACTIONS(5847), - [anon_sym_LT_LT_EQ] = ACTIONS(5847), - [anon_sym_GT_GT_EQ] = ACTIONS(5847), - [anon_sym_AMP_EQ] = ACTIONS(5847), - [anon_sym_CARET_EQ] = ACTIONS(5847), - [anon_sym_PIPE_EQ] = ACTIONS(5847), - [anon_sym_and_eq] = ACTIONS(5845), - [anon_sym_or_eq] = ACTIONS(5845), - [anon_sym_xor_eq] = ACTIONS(5845), - [anon_sym_LT_EQ_GT] = ACTIONS(5847), - [anon_sym_or] = ACTIONS(5845), - [anon_sym_and] = ACTIONS(5845), - [anon_sym_bitor] = ACTIONS(5845), - [anon_sym_xor] = ACTIONS(5845), - [anon_sym_bitand] = ACTIONS(5845), - [anon_sym_not_eq] = ACTIONS(5845), - [anon_sym_DASH_DASH] = ACTIONS(5847), - [anon_sym_PLUS_PLUS] = ACTIONS(5847), - [anon_sym_DOT] = ACTIONS(5845), - [anon_sym_DOT_STAR] = ACTIONS(5847), - [anon_sym_DASH_GT] = ACTIONS(5847), - [sym_comment] = ACTIONS(3), + [2146] = { + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token2] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_friend] = ACTIONS(2997), + [anon_sym_public] = ACTIONS(2997), + [anon_sym_private] = ACTIONS(2997), + [anon_sym_protected] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), }, - [2323] = { - [sym_identifier] = ACTIONS(5467), - [aux_sym_preproc_def_token1] = ACTIONS(5467), - [aux_sym_preproc_if_token1] = ACTIONS(5467), - [aux_sym_preproc_if_token2] = ACTIONS(5467), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5467), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5467), - [aux_sym_preproc_else_token1] = ACTIONS(5467), - [aux_sym_preproc_elif_token1] = ACTIONS(5467), - [sym_preproc_directive] = ACTIONS(5467), - [anon_sym_LPAREN2] = ACTIONS(5469), - [anon_sym_TILDE] = ACTIONS(5469), - [anon_sym_STAR] = ACTIONS(5469), - [anon_sym_AMP_AMP] = ACTIONS(5469), - [anon_sym_AMP] = ACTIONS(5467), - [anon_sym___extension__] = ACTIONS(5467), - [anon_sym_typedef] = ACTIONS(5467), - [anon_sym_extern] = ACTIONS(5467), - [anon_sym___attribute__] = ACTIONS(5467), - [anon_sym_COLON_COLON] = ACTIONS(5469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5469), - [anon_sym___declspec] = ACTIONS(5467), - [anon_sym___based] = ACTIONS(5467), - [anon_sym_signed] = ACTIONS(5467), - [anon_sym_unsigned] = ACTIONS(5467), - [anon_sym_long] = ACTIONS(5467), - [anon_sym_short] = ACTIONS(5467), - [anon_sym_LBRACK] = ACTIONS(5467), - [anon_sym_static] = ACTIONS(5467), - [anon_sym_register] = ACTIONS(5467), - [anon_sym_inline] = ACTIONS(5467), - [anon_sym___inline] = ACTIONS(5467), - [anon_sym___inline__] = ACTIONS(5467), - [anon_sym___forceinline] = ACTIONS(5467), - [anon_sym_thread_local] = ACTIONS(5467), - [anon_sym___thread] = ACTIONS(5467), - [anon_sym_const] = ACTIONS(5467), - [anon_sym_constexpr] = ACTIONS(5467), - [anon_sym_volatile] = ACTIONS(5467), - [anon_sym_restrict] = ACTIONS(5467), - [anon_sym___restrict__] = ACTIONS(5467), - [anon_sym__Atomic] = ACTIONS(5467), - [anon_sym__Noreturn] = ACTIONS(5467), - [anon_sym_noreturn] = ACTIONS(5467), - [anon_sym_mutable] = ACTIONS(5467), - [anon_sym_constinit] = ACTIONS(5467), - [anon_sym_consteval] = ACTIONS(5467), - [sym_primitive_type] = ACTIONS(5467), - [anon_sym_enum] = ACTIONS(5467), - [anon_sym_class] = ACTIONS(5467), - [anon_sym_struct] = ACTIONS(5467), - [anon_sym_union] = ACTIONS(5467), + [2147] = { + [sym_template_argument_list] = STATE(2249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5009), + [anon_sym_COMMA] = ACTIONS(5009), + [anon_sym_LPAREN2] = ACTIONS(5009), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5009), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5014), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5526), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym___extension__] = ACTIONS(5012), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_LBRACK] = ACTIONS(5009), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_const] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5012), + [anon_sym_volatile] = ACTIONS(5012), + [anon_sym_restrict] = ACTIONS(5012), + [anon_sym___restrict__] = ACTIONS(5012), + [anon_sym__Atomic] = ACTIONS(5012), + [anon_sym__Noreturn] = ACTIONS(5012), + [anon_sym_noreturn] = ACTIONS(5012), + [anon_sym_mutable] = ACTIONS(5012), + [anon_sym_constinit] = ACTIONS(5012), + [anon_sym_consteval] = ACTIONS(5012), + [anon_sym_QMARK] = ACTIONS(5019), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_LT_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_GT_EQ] = ACTIONS(5014), + [anon_sym_AMP_EQ] = ACTIONS(5019), + [anon_sym_CARET_EQ] = ACTIONS(5019), + [anon_sym_PIPE_EQ] = ACTIONS(5019), + [anon_sym_and_eq] = ACTIONS(5019), + [anon_sym_or_eq] = ACTIONS(5019), + [anon_sym_xor_eq] = ACTIONS(5019), + [anon_sym_LT_EQ_GT] = ACTIONS(5019), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5019), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5019), + [anon_sym_not_eq] = ACTIONS(5019), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5019), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5467), - [anon_sym_decltype] = ACTIONS(5467), - [anon_sym_virtual] = ACTIONS(5467), - [anon_sym_alignas] = ACTIONS(5467), - [anon_sym_explicit] = ACTIONS(5467), - [anon_sym_typename] = ACTIONS(5467), - [anon_sym_template] = ACTIONS(5467), - [anon_sym_operator] = ACTIONS(5467), - [anon_sym_friend] = ACTIONS(5467), - [anon_sym_public] = ACTIONS(5467), - [anon_sym_private] = ACTIONS(5467), - [anon_sym_protected] = ACTIONS(5467), - [anon_sym_using] = ACTIONS(5467), - [anon_sym_static_assert] = ACTIONS(5467), + [sym_auto] = ACTIONS(5012), + [anon_sym_decltype] = ACTIONS(5012), + [anon_sym_GT2] = ACTIONS(5009), }, - [2324] = { - [sym_identifier] = ACTIONS(5407), - [aux_sym_preproc_def_token1] = ACTIONS(5407), - [aux_sym_preproc_if_token1] = ACTIONS(5407), - [aux_sym_preproc_if_token2] = ACTIONS(5407), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5407), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5407), - [aux_sym_preproc_else_token1] = ACTIONS(5407), - [aux_sym_preproc_elif_token1] = ACTIONS(5407), - [sym_preproc_directive] = ACTIONS(5407), - [anon_sym_LPAREN2] = ACTIONS(5409), - [anon_sym_TILDE] = ACTIONS(5409), - [anon_sym_STAR] = ACTIONS(5409), - [anon_sym_AMP_AMP] = ACTIONS(5409), - [anon_sym_AMP] = ACTIONS(5407), - [anon_sym___extension__] = ACTIONS(5407), - [anon_sym_typedef] = ACTIONS(5407), - [anon_sym_extern] = ACTIONS(5407), - [anon_sym___attribute__] = ACTIONS(5407), - [anon_sym_COLON_COLON] = ACTIONS(5409), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5409), - [anon_sym___declspec] = ACTIONS(5407), - [anon_sym___based] = ACTIONS(5407), - [anon_sym_signed] = ACTIONS(5407), - [anon_sym_unsigned] = ACTIONS(5407), - [anon_sym_long] = ACTIONS(5407), - [anon_sym_short] = ACTIONS(5407), - [anon_sym_LBRACK] = ACTIONS(5407), - [anon_sym_static] = ACTIONS(5407), - [anon_sym_register] = ACTIONS(5407), - [anon_sym_inline] = ACTIONS(5407), - [anon_sym___inline] = ACTIONS(5407), - [anon_sym___inline__] = ACTIONS(5407), - [anon_sym___forceinline] = ACTIONS(5407), - [anon_sym_thread_local] = ACTIONS(5407), - [anon_sym___thread] = ACTIONS(5407), - [anon_sym_const] = ACTIONS(5407), - [anon_sym_constexpr] = ACTIONS(5407), - [anon_sym_volatile] = ACTIONS(5407), - [anon_sym_restrict] = ACTIONS(5407), - [anon_sym___restrict__] = ACTIONS(5407), - [anon_sym__Atomic] = ACTIONS(5407), - [anon_sym__Noreturn] = ACTIONS(5407), - [anon_sym_noreturn] = ACTIONS(5407), - [anon_sym_mutable] = ACTIONS(5407), - [anon_sym_constinit] = ACTIONS(5407), - [anon_sym_consteval] = ACTIONS(5407), - [sym_primitive_type] = ACTIONS(5407), - [anon_sym_enum] = ACTIONS(5407), - [anon_sym_class] = ACTIONS(5407), - [anon_sym_struct] = ACTIONS(5407), - [anon_sym_union] = ACTIONS(5407), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5407), - [anon_sym_decltype] = ACTIONS(5407), - [anon_sym_virtual] = ACTIONS(5407), - [anon_sym_alignas] = ACTIONS(5407), - [anon_sym_explicit] = ACTIONS(5407), - [anon_sym_typename] = ACTIONS(5407), - [anon_sym_template] = ACTIONS(5407), - [anon_sym_operator] = ACTIONS(5407), - [anon_sym_friend] = ACTIONS(5407), - [anon_sym_public] = ACTIONS(5407), - [anon_sym_private] = ACTIONS(5407), - [anon_sym_protected] = ACTIONS(5407), - [anon_sym_using] = ACTIONS(5407), - [anon_sym_static_assert] = ACTIONS(5407), + [2148] = { + [sym_identifier] = ACTIONS(4991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4993), + [aux_sym_preproc_if_token2] = ACTIONS(4993), + [aux_sym_preproc_else_token1] = ACTIONS(4993), + [aux_sym_preproc_elif_token1] = ACTIONS(4991), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4993), + [anon_sym_LPAREN2] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_PERCENT] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4993), + [anon_sym_AMP_AMP] = ACTIONS(4993), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym_AMP] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4993), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_LT_LT] = ACTIONS(4991), + [anon_sym_GT_GT] = ACTIONS(4991), + [anon_sym_SEMI] = ACTIONS(4993), + [anon_sym___attribute__] = ACTIONS(4991), + [anon_sym_COLON_COLON] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4993), + [anon_sym_RBRACE] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4993), + [anon_sym_RBRACK] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_STAR_EQ] = ACTIONS(4993), + [anon_sym_SLASH_EQ] = ACTIONS(4993), + [anon_sym_PERCENT_EQ] = ACTIONS(4993), + [anon_sym_PLUS_EQ] = ACTIONS(4993), + [anon_sym_DASH_EQ] = ACTIONS(4993), + [anon_sym_LT_LT_EQ] = ACTIONS(4993), + [anon_sym_GT_GT_EQ] = ACTIONS(4993), + [anon_sym_AMP_EQ] = ACTIONS(4993), + [anon_sym_CARET_EQ] = ACTIONS(4993), + [anon_sym_PIPE_EQ] = ACTIONS(4993), + [anon_sym_and_eq] = ACTIONS(4991), + [anon_sym_or_eq] = ACTIONS(4991), + [anon_sym_xor_eq] = ACTIONS(4991), + [anon_sym_LT_EQ_GT] = ACTIONS(4993), + [anon_sym_or] = ACTIONS(4991), + [anon_sym_and] = ACTIONS(4991), + [anon_sym_bitor] = ACTIONS(4991), + [anon_sym_xor] = ACTIONS(4991), + [anon_sym_bitand] = ACTIONS(4991), + [anon_sym_not_eq] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4993), + [anon_sym_DOT] = ACTIONS(4991), + [anon_sym_DOT_STAR] = ACTIONS(4993), + [anon_sym_DASH_GT] = ACTIONS(4993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4991), + [anon_sym_decltype] = ACTIONS(4991), + [anon_sym_final] = ACTIONS(4991), + [anon_sym_override] = ACTIONS(4991), }, - [2325] = { - [sym_identifier] = ACTIONS(5487), - [aux_sym_preproc_def_token1] = ACTIONS(5487), - [aux_sym_preproc_if_token1] = ACTIONS(5487), - [aux_sym_preproc_if_token2] = ACTIONS(5487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5487), - [aux_sym_preproc_else_token1] = ACTIONS(5487), - [aux_sym_preproc_elif_token1] = ACTIONS(5487), - [sym_preproc_directive] = ACTIONS(5487), - [anon_sym_LPAREN2] = ACTIONS(5489), - [anon_sym_TILDE] = ACTIONS(5489), - [anon_sym_STAR] = ACTIONS(5489), - [anon_sym_AMP_AMP] = ACTIONS(5489), - [anon_sym_AMP] = ACTIONS(5487), - [anon_sym___extension__] = ACTIONS(5487), - [anon_sym_typedef] = ACTIONS(5487), - [anon_sym_extern] = ACTIONS(5487), - [anon_sym___attribute__] = ACTIONS(5487), - [anon_sym_COLON_COLON] = ACTIONS(5489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5489), - [anon_sym___declspec] = ACTIONS(5487), - [anon_sym___based] = ACTIONS(5487), - [anon_sym_signed] = ACTIONS(5487), - [anon_sym_unsigned] = ACTIONS(5487), - [anon_sym_long] = ACTIONS(5487), - [anon_sym_short] = ACTIONS(5487), - [anon_sym_LBRACK] = ACTIONS(5487), - [anon_sym_static] = ACTIONS(5487), - [anon_sym_register] = ACTIONS(5487), - [anon_sym_inline] = ACTIONS(5487), - [anon_sym___inline] = ACTIONS(5487), - [anon_sym___inline__] = ACTIONS(5487), - [anon_sym___forceinline] = ACTIONS(5487), - [anon_sym_thread_local] = ACTIONS(5487), - [anon_sym___thread] = ACTIONS(5487), - [anon_sym_const] = ACTIONS(5487), - [anon_sym_constexpr] = ACTIONS(5487), - [anon_sym_volatile] = ACTIONS(5487), - [anon_sym_restrict] = ACTIONS(5487), - [anon_sym___restrict__] = ACTIONS(5487), - [anon_sym__Atomic] = ACTIONS(5487), - [anon_sym__Noreturn] = ACTIONS(5487), - [anon_sym_noreturn] = ACTIONS(5487), - [anon_sym_mutable] = ACTIONS(5487), - [anon_sym_constinit] = ACTIONS(5487), - [anon_sym_consteval] = ACTIONS(5487), - [sym_primitive_type] = ACTIONS(5487), - [anon_sym_enum] = ACTIONS(5487), - [anon_sym_class] = ACTIONS(5487), - [anon_sym_struct] = ACTIONS(5487), - [anon_sym_union] = ACTIONS(5487), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5487), - [anon_sym_decltype] = ACTIONS(5487), - [anon_sym_virtual] = ACTIONS(5487), - [anon_sym_alignas] = ACTIONS(5487), - [anon_sym_explicit] = ACTIONS(5487), - [anon_sym_typename] = ACTIONS(5487), - [anon_sym_template] = ACTIONS(5487), - [anon_sym_operator] = ACTIONS(5487), - [anon_sym_friend] = ACTIONS(5487), - [anon_sym_public] = ACTIONS(5487), - [anon_sym_private] = ACTIONS(5487), - [anon_sym_protected] = ACTIONS(5487), - [anon_sym_using] = ACTIONS(5487), - [anon_sym_static_assert] = ACTIONS(5487), + [2149] = { + [sym_string_literal] = STATE(2156), + [sym_raw_string_literal] = STATE(2156), + [aux_sym_concatenated_string_repeat1] = STATE(2156), + [sym_identifier] = ACTIONS(5529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5220), + [anon_sym_COMMA] = ACTIONS(5220), + [aux_sym_preproc_if_token2] = ACTIONS(5220), + [aux_sym_preproc_else_token1] = ACTIONS(5220), + [aux_sym_preproc_elif_token1] = ACTIONS(5220), + [anon_sym_LPAREN2] = ACTIONS(5220), + [anon_sym_DASH] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5222), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5222), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5220), + [anon_sym_AMP_AMP] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_AMP] = ACTIONS(5222), + [anon_sym_EQ_EQ] = ACTIONS(5220), + [anon_sym_BANG_EQ] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5222), + [anon_sym_GT_EQ] = ACTIONS(5220), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5222), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5220), + [anon_sym_STAR_EQ] = ACTIONS(5220), + [anon_sym_SLASH_EQ] = ACTIONS(5220), + [anon_sym_PERCENT_EQ] = ACTIONS(5220), + [anon_sym_PLUS_EQ] = ACTIONS(5220), + [anon_sym_DASH_EQ] = ACTIONS(5220), + [anon_sym_LT_LT_EQ] = ACTIONS(5220), + [anon_sym_GT_GT_EQ] = ACTIONS(5220), + [anon_sym_AMP_EQ] = ACTIONS(5220), + [anon_sym_CARET_EQ] = ACTIONS(5220), + [anon_sym_PIPE_EQ] = ACTIONS(5220), + [anon_sym_and_eq] = ACTIONS(5222), + [anon_sym_or_eq] = ACTIONS(5222), + [anon_sym_xor_eq] = ACTIONS(5222), + [anon_sym_LT_EQ_GT] = ACTIONS(5220), + [anon_sym_or] = ACTIONS(5222), + [anon_sym_and] = ACTIONS(5222), + [anon_sym_bitor] = ACTIONS(5222), + [anon_sym_xor] = ACTIONS(5222), + [anon_sym_bitand] = ACTIONS(5222), + [anon_sym_not_eq] = ACTIONS(5222), + [anon_sym_DASH_DASH] = ACTIONS(5220), + [anon_sym_PLUS_PLUS] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(5222), + [anon_sym_DOT_STAR] = ACTIONS(5220), + [anon_sym_DASH_GT] = ACTIONS(5220), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [sym_literal_suffix] = ACTIONS(5222), }, - [2326] = { - [sym_identifier] = ACTIONS(5420), - [aux_sym_preproc_def_token1] = ACTIONS(5420), - [aux_sym_preproc_if_token1] = ACTIONS(5420), - [aux_sym_preproc_if_token2] = ACTIONS(5420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5420), - [aux_sym_preproc_else_token1] = ACTIONS(5420), - [aux_sym_preproc_elif_token1] = ACTIONS(5420), - [sym_preproc_directive] = ACTIONS(5420), - [anon_sym_LPAREN2] = ACTIONS(5422), - [anon_sym_TILDE] = ACTIONS(5422), - [anon_sym_STAR] = ACTIONS(5422), - [anon_sym_AMP_AMP] = ACTIONS(5422), - [anon_sym_AMP] = ACTIONS(5420), - [anon_sym___extension__] = ACTIONS(5420), - [anon_sym_typedef] = ACTIONS(5420), - [anon_sym_extern] = ACTIONS(5420), - [anon_sym___attribute__] = ACTIONS(5420), + [2150] = { + [sym_identifier] = ACTIONS(5531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5533), + [anon_sym_COMMA] = ACTIONS(5533), + [anon_sym_RPAREN] = ACTIONS(5533), + [anon_sym_LPAREN2] = ACTIONS(5533), + [anon_sym_DASH] = ACTIONS(5531), + [anon_sym_PLUS] = ACTIONS(5531), + [anon_sym_STAR] = ACTIONS(5533), + [anon_sym_SLASH] = ACTIONS(5531), + [anon_sym_PERCENT] = ACTIONS(5533), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE] = ACTIONS(5531), + [anon_sym_CARET] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5531), + [anon_sym_EQ_EQ] = ACTIONS(5533), + [anon_sym_BANG_EQ] = ACTIONS(5533), + [anon_sym_GT] = ACTIONS(5531), + [anon_sym_GT_EQ] = ACTIONS(5533), + [anon_sym_LT_EQ] = ACTIONS(5531), + [anon_sym_LT] = ACTIONS(5531), + [anon_sym_LT_LT] = ACTIONS(5533), + [anon_sym_GT_GT] = ACTIONS(5533), + [anon_sym_SEMI] = ACTIONS(5533), + [anon_sym___extension__] = ACTIONS(5531), + [anon_sym___attribute__] = ACTIONS(5531), [anon_sym_COLON_COLON] = ACTIONS(5422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5422), - [anon_sym___declspec] = ACTIONS(5420), - [anon_sym___based] = ACTIONS(5420), - [anon_sym_signed] = ACTIONS(5420), - [anon_sym_unsigned] = ACTIONS(5420), - [anon_sym_long] = ACTIONS(5420), - [anon_sym_short] = ACTIONS(5420), - [anon_sym_LBRACK] = ACTIONS(5420), - [anon_sym_static] = ACTIONS(5420), - [anon_sym_register] = ACTIONS(5420), - [anon_sym_inline] = ACTIONS(5420), - [anon_sym___inline] = ACTIONS(5420), - [anon_sym___inline__] = ACTIONS(5420), - [anon_sym___forceinline] = ACTIONS(5420), - [anon_sym_thread_local] = ACTIONS(5420), - [anon_sym___thread] = ACTIONS(5420), - [anon_sym_const] = ACTIONS(5420), - [anon_sym_constexpr] = ACTIONS(5420), - [anon_sym_volatile] = ACTIONS(5420), - [anon_sym_restrict] = ACTIONS(5420), - [anon_sym___restrict__] = ACTIONS(5420), - [anon_sym__Atomic] = ACTIONS(5420), - [anon_sym__Noreturn] = ACTIONS(5420), - [anon_sym_noreturn] = ACTIONS(5420), - [anon_sym_mutable] = ACTIONS(5420), - [anon_sym_constinit] = ACTIONS(5420), - [anon_sym_consteval] = ACTIONS(5420), - [sym_primitive_type] = ACTIONS(5420), - [anon_sym_enum] = ACTIONS(5420), - [anon_sym_class] = ACTIONS(5420), - [anon_sym_struct] = ACTIONS(5420), - [anon_sym_union] = ACTIONS(5420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5420), - [anon_sym_decltype] = ACTIONS(5420), - [anon_sym_virtual] = ACTIONS(5420), - [anon_sym_alignas] = ACTIONS(5420), - [anon_sym_explicit] = ACTIONS(5420), - [anon_sym_typename] = ACTIONS(5420), - [anon_sym_template] = ACTIONS(5420), - [anon_sym_operator] = ACTIONS(5420), - [anon_sym_friend] = ACTIONS(5420), - [anon_sym_public] = ACTIONS(5420), - [anon_sym_private] = ACTIONS(5420), - [anon_sym_protected] = ACTIONS(5420), - [anon_sym_using] = ACTIONS(5420), - [anon_sym_static_assert] = ACTIONS(5420), + [anon_sym___based] = ACTIONS(5531), + [anon_sym_LBRACE] = ACTIONS(5533), + [anon_sym_RBRACE] = ACTIONS(5533), + [anon_sym_signed] = ACTIONS(5531), + [anon_sym_unsigned] = ACTIONS(5531), + [anon_sym_long] = ACTIONS(5531), + [anon_sym_short] = ACTIONS(5531), + [anon_sym_LBRACK] = ACTIONS(5533), + [anon_sym_RBRACK] = ACTIONS(5533), + [anon_sym_const] = ACTIONS(5531), + [anon_sym_constexpr] = ACTIONS(5531), + [anon_sym_volatile] = ACTIONS(5531), + [anon_sym_restrict] = ACTIONS(5531), + [anon_sym___restrict__] = ACTIONS(5531), + [anon_sym__Atomic] = ACTIONS(5531), + [anon_sym__Noreturn] = ACTIONS(5531), + [anon_sym_noreturn] = ACTIONS(5531), + [anon_sym_mutable] = ACTIONS(5531), + [anon_sym_constinit] = ACTIONS(5531), + [anon_sym_consteval] = ACTIONS(5531), + [sym_primitive_type] = ACTIONS(5531), + [anon_sym_COLON] = ACTIONS(5531), + [anon_sym_QMARK] = ACTIONS(5533), + [anon_sym_LT_EQ_GT] = ACTIONS(5533), + [anon_sym_or] = ACTIONS(5531), + [anon_sym_and] = ACTIONS(5531), + [anon_sym_bitor] = ACTIONS(5531), + [anon_sym_xor] = ACTIONS(5531), + [anon_sym_bitand] = ACTIONS(5531), + [anon_sym_not_eq] = ACTIONS(5531), + [anon_sym_DASH_DASH] = ACTIONS(5533), + [anon_sym_PLUS_PLUS] = ACTIONS(5533), + [anon_sym_DOT] = ACTIONS(5531), + [anon_sym_DOT_STAR] = ACTIONS(5533), + [anon_sym_DASH_GT] = ACTIONS(5533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5531), + [anon_sym_decltype] = ACTIONS(5531), + [anon_sym_final] = ACTIONS(5531), + [anon_sym_override] = ACTIONS(5531), + [anon_sym_requires] = ACTIONS(5531), }, - [2327] = { - [sym_identifier] = ACTIONS(5546), - [aux_sym_preproc_def_token1] = ACTIONS(5546), - [aux_sym_preproc_if_token1] = ACTIONS(5546), - [aux_sym_preproc_if_token2] = ACTIONS(5546), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5546), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5546), - [aux_sym_preproc_else_token1] = ACTIONS(5546), - [aux_sym_preproc_elif_token1] = ACTIONS(5546), - [sym_preproc_directive] = ACTIONS(5546), - [anon_sym_LPAREN2] = ACTIONS(5548), - [anon_sym_TILDE] = ACTIONS(5548), - [anon_sym_STAR] = ACTIONS(5548), - [anon_sym_AMP_AMP] = ACTIONS(5548), - [anon_sym_AMP] = ACTIONS(5546), - [anon_sym___extension__] = ACTIONS(5546), - [anon_sym_typedef] = ACTIONS(5546), - [anon_sym_extern] = ACTIONS(5546), - [anon_sym___attribute__] = ACTIONS(5546), - [anon_sym_COLON_COLON] = ACTIONS(5548), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5548), - [anon_sym___declspec] = ACTIONS(5546), - [anon_sym___based] = ACTIONS(5546), - [anon_sym_signed] = ACTIONS(5546), - [anon_sym_unsigned] = ACTIONS(5546), - [anon_sym_long] = ACTIONS(5546), - [anon_sym_short] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5546), - [anon_sym_static] = ACTIONS(5546), - [anon_sym_register] = ACTIONS(5546), - [anon_sym_inline] = ACTIONS(5546), - [anon_sym___inline] = ACTIONS(5546), - [anon_sym___inline__] = ACTIONS(5546), - [anon_sym___forceinline] = ACTIONS(5546), - [anon_sym_thread_local] = ACTIONS(5546), - [anon_sym___thread] = ACTIONS(5546), - [anon_sym_const] = ACTIONS(5546), - [anon_sym_constexpr] = ACTIONS(5546), - [anon_sym_volatile] = ACTIONS(5546), - [anon_sym_restrict] = ACTIONS(5546), - [anon_sym___restrict__] = ACTIONS(5546), - [anon_sym__Atomic] = ACTIONS(5546), - [anon_sym__Noreturn] = ACTIONS(5546), - [anon_sym_noreturn] = ACTIONS(5546), - [anon_sym_mutable] = ACTIONS(5546), - [anon_sym_constinit] = ACTIONS(5546), - [anon_sym_consteval] = ACTIONS(5546), - [sym_primitive_type] = ACTIONS(5546), - [anon_sym_enum] = ACTIONS(5546), - [anon_sym_class] = ACTIONS(5546), - [anon_sym_struct] = ACTIONS(5546), - [anon_sym_union] = ACTIONS(5546), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5546), - [anon_sym_decltype] = ACTIONS(5546), - [anon_sym_virtual] = ACTIONS(5546), - [anon_sym_alignas] = ACTIONS(5546), - [anon_sym_explicit] = ACTIONS(5546), - [anon_sym_typename] = ACTIONS(5546), - [anon_sym_template] = ACTIONS(5546), - [anon_sym_operator] = ACTIONS(5546), - [anon_sym_friend] = ACTIONS(5546), - [anon_sym_public] = ACTIONS(5546), - [anon_sym_private] = ACTIONS(5546), - [anon_sym_protected] = ACTIONS(5546), - [anon_sym_using] = ACTIONS(5546), - [anon_sym_static_assert] = ACTIONS(5546), + [2151] = { + [sym_identifier] = ACTIONS(4991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4993), + [anon_sym_LPAREN2] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4993), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_PIPE_PIPE] = ACTIONS(4993), + [anon_sym_AMP_AMP] = ACTIONS(4993), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4991), + [anon_sym_EQ_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_GT_EQ] = ACTIONS(4993), + [anon_sym_LT_EQ] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym_SEMI] = ACTIONS(4993), + [anon_sym___extension__] = ACTIONS(4991), + [anon_sym___attribute__] = ACTIONS(4991), + [anon_sym_COLON_COLON] = ACTIONS(4993), + [anon_sym___based] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4993), + [anon_sym_RBRACE] = ACTIONS(4993), + [anon_sym_signed] = ACTIONS(4991), + [anon_sym_unsigned] = ACTIONS(4991), + [anon_sym_long] = ACTIONS(4991), + [anon_sym_short] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4993), + [anon_sym_RBRACK] = ACTIONS(4993), + [anon_sym_const] = ACTIONS(4991), + [anon_sym_constexpr] = ACTIONS(4991), + [anon_sym_volatile] = ACTIONS(4991), + [anon_sym_restrict] = ACTIONS(4991), + [anon_sym___restrict__] = ACTIONS(4991), + [anon_sym__Atomic] = ACTIONS(4991), + [anon_sym__Noreturn] = ACTIONS(4991), + [anon_sym_noreturn] = ACTIONS(4991), + [anon_sym_mutable] = ACTIONS(4991), + [anon_sym_constinit] = ACTIONS(4991), + [anon_sym_consteval] = ACTIONS(4991), + [sym_primitive_type] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_QMARK] = ACTIONS(4993), + [anon_sym_LT_EQ_GT] = ACTIONS(4993), + [anon_sym_or] = ACTIONS(4991), + [anon_sym_and] = ACTIONS(4991), + [anon_sym_bitor] = ACTIONS(4991), + [anon_sym_xor] = ACTIONS(4991), + [anon_sym_bitand] = ACTIONS(4991), + [anon_sym_not_eq] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4993), + [anon_sym_DOT] = ACTIONS(4991), + [anon_sym_DOT_STAR] = ACTIONS(4993), + [anon_sym_DASH_GT] = ACTIONS(4993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4991), + [anon_sym_decltype] = ACTIONS(4991), + [anon_sym_final] = ACTIONS(4991), + [anon_sym_override] = ACTIONS(4991), + [anon_sym_requires] = ACTIONS(4991), }, - [2328] = { - [sym_string_literal] = STATE(3748), - [sym_template_argument_list] = STATE(5050), - [sym_raw_string_literal] = STATE(3748), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4147), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(5054), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(5056), - [anon_sym_SLASH_EQ] = ACTIONS(5056), - [anon_sym_PERCENT_EQ] = ACTIONS(5056), - [anon_sym_PLUS_EQ] = ACTIONS(5056), - [anon_sym_DASH_EQ] = ACTIONS(5056), - [anon_sym_LT_LT_EQ] = ACTIONS(5056), - [anon_sym_GT_GT_EQ] = ACTIONS(5054), - [anon_sym_AMP_EQ] = ACTIONS(5056), - [anon_sym_CARET_EQ] = ACTIONS(5056), - [anon_sym_PIPE_EQ] = ACTIONS(5056), - [anon_sym_and_eq] = ACTIONS(5056), - [anon_sym_or_eq] = ACTIONS(5056), - [anon_sym_xor_eq] = ACTIONS(5056), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(5058), - [anon_sym_u_DQUOTE] = ACTIONS(5058), - [anon_sym_U_DQUOTE] = ACTIONS(5058), - [anon_sym_u8_DQUOTE] = ACTIONS(5058), - [anon_sym_DQUOTE] = ACTIONS(5058), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(4139), - [anon_sym_R_DQUOTE] = ACTIONS(5060), - [anon_sym_LR_DQUOTE] = ACTIONS(5060), - [anon_sym_uR_DQUOTE] = ACTIONS(5060), - [anon_sym_UR_DQUOTE] = ACTIONS(5060), - [anon_sym_u8R_DQUOTE] = ACTIONS(5060), + [2152] = { + [sym_identifier] = ACTIONS(3187), + [aux_sym_preproc_def_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token2] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3187), + [aux_sym_preproc_else_token1] = ACTIONS(3187), + [aux_sym_preproc_elif_token1] = ACTIONS(3187), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3187), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3187), + [sym_preproc_directive] = ACTIONS(3187), + [anon_sym_LPAREN2] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym___extension__] = ACTIONS(3187), + [anon_sym_typedef] = ACTIONS(3187), + [anon_sym_extern] = ACTIONS(3187), + [anon_sym___attribute__] = ACTIONS(3187), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3189), + [anon_sym___declspec] = ACTIONS(3187), + [anon_sym___based] = ACTIONS(3187), + [anon_sym_signed] = ACTIONS(3187), + [anon_sym_unsigned] = ACTIONS(3187), + [anon_sym_long] = ACTIONS(3187), + [anon_sym_short] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_register] = ACTIONS(3187), + [anon_sym_inline] = ACTIONS(3187), + [anon_sym___inline] = ACTIONS(3187), + [anon_sym___inline__] = ACTIONS(3187), + [anon_sym___forceinline] = ACTIONS(3187), + [anon_sym_thread_local] = ACTIONS(3187), + [anon_sym___thread] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_constexpr] = ACTIONS(3187), + [anon_sym_volatile] = ACTIONS(3187), + [anon_sym_restrict] = ACTIONS(3187), + [anon_sym___restrict__] = ACTIONS(3187), + [anon_sym__Atomic] = ACTIONS(3187), + [anon_sym__Noreturn] = ACTIONS(3187), + [anon_sym_noreturn] = ACTIONS(3187), + [anon_sym_mutable] = ACTIONS(3187), + [anon_sym_constinit] = ACTIONS(3187), + [anon_sym_consteval] = ACTIONS(3187), + [sym_primitive_type] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3187), + [anon_sym_decltype] = ACTIONS(3187), + [anon_sym_virtual] = ACTIONS(3187), + [anon_sym_alignas] = ACTIONS(3187), + [anon_sym_explicit] = ACTIONS(3187), + [anon_sym_typename] = ACTIONS(3187), + [anon_sym_template] = ACTIONS(3187), + [anon_sym_operator] = ACTIONS(3187), + [anon_sym_friend] = ACTIONS(3187), + [anon_sym_public] = ACTIONS(3187), + [anon_sym_private] = ACTIONS(3187), + [anon_sym_protected] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_static_assert] = ACTIONS(3187), }, - [2329] = { - [sym__declaration_modifiers] = STATE(3960), - [sym_attribute_specifier] = STATE(3960), - [sym_attribute_declaration] = STATE(3960), - [sym_ms_declspec_modifier] = STATE(3960), - [sym_storage_class_specifier] = STATE(3960), - [sym_type_qualifier] = STATE(3960), - [sym__type_specifier] = STATE(3182), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(3960), - [sym_alignas_specifier] = STATE(3960), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7030), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(3960), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5062), - [anon_sym___extension__] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(57), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(53), - [anon_sym_unsigned] = ACTIONS(53), - [anon_sym_long] = ACTIONS(53), - [anon_sym_short] = ACTIONS(53), - [anon_sym_static] = ACTIONS(57), - [anon_sym_register] = ACTIONS(57), - [anon_sym_inline] = ACTIONS(57), - [anon_sym___inline] = ACTIONS(57), - [anon_sym___inline__] = ACTIONS(57), - [anon_sym___forceinline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(57), - [anon_sym___thread] = ACTIONS(57), - [anon_sym_const] = ACTIONS(61), - [anon_sym_constexpr] = ACTIONS(61), - [anon_sym_volatile] = ACTIONS(61), - [anon_sym_restrict] = ACTIONS(61), - [anon_sym___restrict__] = ACTIONS(61), - [anon_sym__Atomic] = ACTIONS(61), - [anon_sym__Noreturn] = ACTIONS(61), - [anon_sym_noreturn] = ACTIONS(61), - [anon_sym_mutable] = ACTIONS(61), - [anon_sym_constinit] = ACTIONS(61), - [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_class] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(117), - [anon_sym_decltype] = ACTIONS(119), - [anon_sym_virtual] = ACTIONS(121), - [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(3042), - [anon_sym_template] = ACTIONS(1428), + [2153] = { + [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___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_extern] = 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___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_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_friend] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), }, - [2330] = { - [sym_identifier] = ACTIONS(5542), - [aux_sym_preproc_def_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token1] = ACTIONS(5542), - [aux_sym_preproc_if_token2] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5542), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5542), - [aux_sym_preproc_else_token1] = ACTIONS(5542), - [aux_sym_preproc_elif_token1] = ACTIONS(5542), - [sym_preproc_directive] = ACTIONS(5542), - [anon_sym_LPAREN2] = ACTIONS(5544), - [anon_sym_TILDE] = ACTIONS(5544), - [anon_sym_STAR] = ACTIONS(5544), - [anon_sym_AMP_AMP] = ACTIONS(5544), - [anon_sym_AMP] = ACTIONS(5542), - [anon_sym___extension__] = ACTIONS(5542), - [anon_sym_typedef] = ACTIONS(5542), - [anon_sym_extern] = ACTIONS(5542), - [anon_sym___attribute__] = ACTIONS(5542), - [anon_sym_COLON_COLON] = ACTIONS(5544), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5544), - [anon_sym___declspec] = ACTIONS(5542), - [anon_sym___based] = ACTIONS(5542), - [anon_sym_signed] = ACTIONS(5542), - [anon_sym_unsigned] = ACTIONS(5542), - [anon_sym_long] = ACTIONS(5542), - [anon_sym_short] = ACTIONS(5542), - [anon_sym_LBRACK] = ACTIONS(5542), - [anon_sym_static] = ACTIONS(5542), - [anon_sym_register] = ACTIONS(5542), - [anon_sym_inline] = ACTIONS(5542), - [anon_sym___inline] = ACTIONS(5542), - [anon_sym___inline__] = ACTIONS(5542), - [anon_sym___forceinline] = ACTIONS(5542), - [anon_sym_thread_local] = ACTIONS(5542), - [anon_sym___thread] = ACTIONS(5542), - [anon_sym_const] = ACTIONS(5542), - [anon_sym_constexpr] = ACTIONS(5542), - [anon_sym_volatile] = ACTIONS(5542), - [anon_sym_restrict] = ACTIONS(5542), - [anon_sym___restrict__] = ACTIONS(5542), - [anon_sym__Atomic] = ACTIONS(5542), - [anon_sym__Noreturn] = ACTIONS(5542), - [anon_sym_noreturn] = ACTIONS(5542), - [anon_sym_mutable] = ACTIONS(5542), - [anon_sym_constinit] = ACTIONS(5542), - [anon_sym_consteval] = ACTIONS(5542), - [sym_primitive_type] = ACTIONS(5542), - [anon_sym_enum] = ACTIONS(5542), - [anon_sym_class] = ACTIONS(5542), - [anon_sym_struct] = ACTIONS(5542), - [anon_sym_union] = ACTIONS(5542), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5542), - [anon_sym_decltype] = ACTIONS(5542), - [anon_sym_virtual] = ACTIONS(5542), - [anon_sym_alignas] = ACTIONS(5542), - [anon_sym_explicit] = ACTIONS(5542), - [anon_sym_typename] = ACTIONS(5542), - [anon_sym_template] = ACTIONS(5542), - [anon_sym_operator] = ACTIONS(5542), - [anon_sym_friend] = ACTIONS(5542), - [anon_sym_public] = ACTIONS(5542), - [anon_sym_private] = ACTIONS(5542), - [anon_sym_protected] = ACTIONS(5542), - [anon_sym_using] = ACTIONS(5542), - [anon_sym_static_assert] = ACTIONS(5542), + [2154] = { + [sym_string_literal] = STATE(2243), + [sym_template_argument_list] = STATE(3408), + [sym_raw_string_literal] = STATE(2243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_RPAREN] = ACTIONS(5414), + [anon_sym_LPAREN2] = ACTIONS(5414), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5064), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5414), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(5416), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4137), + [anon_sym_or_eq] = ACTIONS(4137), + [anon_sym_xor_eq] = ACTIONS(4137), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4145), + [anon_sym_L_DQUOTE] = ACTIONS(5060), + [anon_sym_u_DQUOTE] = ACTIONS(5060), + [anon_sym_U_DQUOTE] = ACTIONS(5060), + [anon_sym_u8_DQUOTE] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5060), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5062), + [anon_sym_LR_DQUOTE] = ACTIONS(5062), + [anon_sym_uR_DQUOTE] = ACTIONS(5062), + [anon_sym_UR_DQUOTE] = ACTIONS(5062), + [anon_sym_u8R_DQUOTE] = ACTIONS(5062), + [anon_sym_DASH_GT_STAR] = ACTIONS(4137), }, - [2331] = { - [sym_identifier] = ACTIONS(5424), - [aux_sym_preproc_def_token1] = ACTIONS(5424), - [aux_sym_preproc_if_token1] = ACTIONS(5424), - [aux_sym_preproc_if_token2] = ACTIONS(5424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5424), - [aux_sym_preproc_else_token1] = ACTIONS(5424), - [aux_sym_preproc_elif_token1] = ACTIONS(5424), - [sym_preproc_directive] = ACTIONS(5424), - [anon_sym_LPAREN2] = ACTIONS(5426), - [anon_sym_TILDE] = ACTIONS(5426), - [anon_sym_STAR] = ACTIONS(5426), - [anon_sym_AMP_AMP] = ACTIONS(5426), - [anon_sym_AMP] = ACTIONS(5424), - [anon_sym___extension__] = ACTIONS(5424), - [anon_sym_typedef] = ACTIONS(5424), - [anon_sym_extern] = ACTIONS(5424), - [anon_sym___attribute__] = ACTIONS(5424), - [anon_sym_COLON_COLON] = ACTIONS(5426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5426), - [anon_sym___declspec] = ACTIONS(5424), - [anon_sym___based] = ACTIONS(5424), - [anon_sym_signed] = ACTIONS(5424), - [anon_sym_unsigned] = ACTIONS(5424), - [anon_sym_long] = ACTIONS(5424), - [anon_sym_short] = ACTIONS(5424), - [anon_sym_LBRACK] = ACTIONS(5424), - [anon_sym_static] = ACTIONS(5424), - [anon_sym_register] = ACTIONS(5424), - [anon_sym_inline] = ACTIONS(5424), - [anon_sym___inline] = ACTIONS(5424), - [anon_sym___inline__] = ACTIONS(5424), - [anon_sym___forceinline] = ACTIONS(5424), - [anon_sym_thread_local] = ACTIONS(5424), - [anon_sym___thread] = ACTIONS(5424), - [anon_sym_const] = ACTIONS(5424), - [anon_sym_constexpr] = ACTIONS(5424), - [anon_sym_volatile] = ACTIONS(5424), - [anon_sym_restrict] = ACTIONS(5424), - [anon_sym___restrict__] = ACTIONS(5424), - [anon_sym__Atomic] = ACTIONS(5424), - [anon_sym__Noreturn] = ACTIONS(5424), - [anon_sym_noreturn] = ACTIONS(5424), - [anon_sym_mutable] = ACTIONS(5424), - [anon_sym_constinit] = ACTIONS(5424), - [anon_sym_consteval] = ACTIONS(5424), - [sym_primitive_type] = ACTIONS(5424), - [anon_sym_enum] = ACTIONS(5424), - [anon_sym_class] = ACTIONS(5424), - [anon_sym_struct] = ACTIONS(5424), - [anon_sym_union] = ACTIONS(5424), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5424), - [anon_sym_decltype] = ACTIONS(5424), - [anon_sym_virtual] = ACTIONS(5424), - [anon_sym_alignas] = ACTIONS(5424), - [anon_sym_explicit] = ACTIONS(5424), - [anon_sym_typename] = ACTIONS(5424), - [anon_sym_template] = ACTIONS(5424), - [anon_sym_operator] = ACTIONS(5424), - [anon_sym_friend] = ACTIONS(5424), - [anon_sym_public] = ACTIONS(5424), - [anon_sym_private] = ACTIONS(5424), - [anon_sym_protected] = ACTIONS(5424), - [anon_sym_using] = ACTIONS(5424), - [anon_sym_static_assert] = ACTIONS(5424), + [2155] = { + [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(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_AMP_AMP] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), + [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_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_operator] = ACTIONS(3155), + [anon_sym_friend] = ACTIONS(3155), + [anon_sym_public] = ACTIONS(3155), + [anon_sym_private] = ACTIONS(3155), + [anon_sym_protected] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_static_assert] = ACTIONS(3155), }, - [2332] = { + [2156] = { + [sym_string_literal] = STATE(2156), + [sym_raw_string_literal] = STATE(2156), + [aux_sym_concatenated_string_repeat1] = STATE(2156), + [sym_identifier] = ACTIONS(5535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5208), + [anon_sym_COMMA] = ACTIONS(5208), + [aux_sym_preproc_if_token2] = ACTIONS(5208), + [aux_sym_preproc_else_token1] = ACTIONS(5208), + [aux_sym_preproc_elif_token1] = ACTIONS(5208), + [anon_sym_LPAREN2] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_PERCENT] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5210), + [anon_sym_EQ_EQ] = ACTIONS(5208), + [anon_sym_BANG_EQ] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5208), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5210), + [anon_sym_GT_GT] = ACTIONS(5210), + [anon_sym_LBRACK] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5210), + [anon_sym_QMARK] = ACTIONS(5208), + [anon_sym_STAR_EQ] = ACTIONS(5208), + [anon_sym_SLASH_EQ] = ACTIONS(5208), + [anon_sym_PERCENT_EQ] = ACTIONS(5208), + [anon_sym_PLUS_EQ] = ACTIONS(5208), + [anon_sym_DASH_EQ] = ACTIONS(5208), + [anon_sym_LT_LT_EQ] = ACTIONS(5208), + [anon_sym_GT_GT_EQ] = ACTIONS(5208), + [anon_sym_AMP_EQ] = ACTIONS(5208), + [anon_sym_CARET_EQ] = ACTIONS(5208), + [anon_sym_PIPE_EQ] = ACTIONS(5208), + [anon_sym_and_eq] = ACTIONS(5210), + [anon_sym_or_eq] = ACTIONS(5210), + [anon_sym_xor_eq] = ACTIONS(5210), + [anon_sym_LT_EQ_GT] = ACTIONS(5208), + [anon_sym_or] = ACTIONS(5210), + [anon_sym_and] = ACTIONS(5210), + [anon_sym_bitor] = ACTIONS(5210), + [anon_sym_xor] = ACTIONS(5210), + [anon_sym_bitand] = ACTIONS(5210), + [anon_sym_not_eq] = ACTIONS(5210), + [anon_sym_DASH_DASH] = ACTIONS(5208), + [anon_sym_PLUS_PLUS] = ACTIONS(5208), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DOT_STAR] = ACTIONS(5208), + [anon_sym_DASH_GT] = ACTIONS(5208), + [anon_sym_L_DQUOTE] = ACTIONS(5538), + [anon_sym_u_DQUOTE] = ACTIONS(5538), + [anon_sym_U_DQUOTE] = ACTIONS(5538), + [anon_sym_u8_DQUOTE] = ACTIONS(5538), + [anon_sym_DQUOTE] = ACTIONS(5538), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5541), + [anon_sym_LR_DQUOTE] = ACTIONS(5541), + [anon_sym_uR_DQUOTE] = ACTIONS(5541), + [anon_sym_UR_DQUOTE] = ACTIONS(5541), + [anon_sym_u8R_DQUOTE] = ACTIONS(5541), + [sym_literal_suffix] = ACTIONS(5210), + }, + [2157] = { + [sym_identifier] = ACTIONS(3126), + [aux_sym_preproc_def_token1] = ACTIONS(3126), + [aux_sym_preproc_if_token1] = ACTIONS(3126), + [aux_sym_preproc_if_token2] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3126), + [aux_sym_preproc_else_token1] = ACTIONS(3126), + [aux_sym_preproc_elif_token1] = ACTIONS(3126), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3126), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3126), + [sym_preproc_directive] = ACTIONS(3126), + [anon_sym_LPAREN2] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_AMP_AMP] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym_typedef] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3128), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym___based] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym_explicit] = ACTIONS(3126), + [anon_sym_typename] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_friend] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_static_assert] = ACTIONS(3126), + }, + [2158] = { + [sym_identifier] = ACTIONS(2993), + [aux_sym_preproc_def_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token2] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), + [aux_sym_preproc_else_token1] = ACTIONS(2993), + [aux_sym_preproc_elif_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym___extension__] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym___attribute__] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), + [anon_sym___declspec] = ACTIONS(2993), + [anon_sym___based] = ACTIONS(2993), + [anon_sym_signed] = ACTIONS(2993), + [anon_sym_unsigned] = ACTIONS(2993), + [anon_sym_long] = ACTIONS(2993), + [anon_sym_short] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_register] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym___inline] = ACTIONS(2993), + [anon_sym___inline__] = ACTIONS(2993), + [anon_sym___forceinline] = ACTIONS(2993), + [anon_sym_thread_local] = ACTIONS(2993), + [anon_sym___thread] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_constexpr] = ACTIONS(2993), + [anon_sym_volatile] = ACTIONS(2993), + [anon_sym_restrict] = ACTIONS(2993), + [anon_sym___restrict__] = ACTIONS(2993), + [anon_sym__Atomic] = ACTIONS(2993), + [anon_sym__Noreturn] = ACTIONS(2993), + [anon_sym_noreturn] = ACTIONS(2993), + [anon_sym_mutable] = ACTIONS(2993), + [anon_sym_constinit] = ACTIONS(2993), + [anon_sym_consteval] = ACTIONS(2993), + [sym_primitive_type] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2993), + [anon_sym_virtual] = ACTIONS(2993), + [anon_sym_alignas] = ACTIONS(2993), + [anon_sym_explicit] = ACTIONS(2993), + [anon_sym_typename] = ACTIONS(2993), + [anon_sym_template] = ACTIONS(2993), + [anon_sym_operator] = ACTIONS(2993), + [anon_sym_friend] = ACTIONS(2993), + [anon_sym_public] = ACTIONS(2993), + [anon_sym_private] = ACTIONS(2993), + [anon_sym_protected] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_static_assert] = ACTIONS(2993), + }, + [2159] = { + [sym_identifier] = ACTIONS(3122), + [aux_sym_preproc_def_token1] = ACTIONS(3122), + [aux_sym_preproc_if_token1] = ACTIONS(3122), + [aux_sym_preproc_if_token2] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3122), + [aux_sym_preproc_else_token1] = ACTIONS(3122), + [aux_sym_preproc_elif_token1] = ACTIONS(3122), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3122), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3122), + [sym_preproc_directive] = ACTIONS(3122), + [anon_sym_LPAREN2] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym___extension__] = ACTIONS(3122), + [anon_sym_typedef] = ACTIONS(3122), + [anon_sym_extern] = ACTIONS(3122), + [anon_sym___attribute__] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3124), + [anon_sym___declspec] = ACTIONS(3122), + [anon_sym___based] = ACTIONS(3122), + [anon_sym_signed] = ACTIONS(3122), + [anon_sym_unsigned] = ACTIONS(3122), + [anon_sym_long] = ACTIONS(3122), + [anon_sym_short] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_register] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym___inline] = ACTIONS(3122), + [anon_sym___inline__] = ACTIONS(3122), + [anon_sym___forceinline] = ACTIONS(3122), + [anon_sym_thread_local] = ACTIONS(3122), + [anon_sym___thread] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym___restrict__] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym__Noreturn] = ACTIONS(3122), + [anon_sym_noreturn] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_union] = ACTIONS(3122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3122), + [anon_sym_decltype] = ACTIONS(3122), + [anon_sym_virtual] = ACTIONS(3122), + [anon_sym_alignas] = ACTIONS(3122), + [anon_sym_explicit] = ACTIONS(3122), + [anon_sym_typename] = ACTIONS(3122), + [anon_sym_template] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_friend] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_using] = ACTIONS(3122), + [anon_sym_static_assert] = ACTIONS(3122), + }, + [2160] = { + [sym_identifier] = ACTIONS(3110), + [aux_sym_preproc_def_token1] = ACTIONS(3110), + [aux_sym_preproc_if_token1] = ACTIONS(3110), + [aux_sym_preproc_if_token2] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3110), + [aux_sym_preproc_else_token1] = ACTIONS(3110), + [aux_sym_preproc_elif_token1] = ACTIONS(3110), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3110), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3110), + [sym_preproc_directive] = ACTIONS(3110), + [anon_sym_LPAREN2] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym___extension__] = ACTIONS(3110), + [anon_sym_typedef] = ACTIONS(3110), + [anon_sym_extern] = ACTIONS(3110), + [anon_sym___attribute__] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3112), + [anon_sym___declspec] = ACTIONS(3110), + [anon_sym___based] = ACTIONS(3110), + [anon_sym_signed] = ACTIONS(3110), + [anon_sym_unsigned] = ACTIONS(3110), + [anon_sym_long] = ACTIONS(3110), + [anon_sym_short] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_static] = ACTIONS(3110), + [anon_sym_register] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym___inline] = ACTIONS(3110), + [anon_sym___inline__] = ACTIONS(3110), + [anon_sym___forceinline] = ACTIONS(3110), + [anon_sym_thread_local] = ACTIONS(3110), + [anon_sym___thread] = ACTIONS(3110), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_constexpr] = ACTIONS(3110), + [anon_sym_volatile] = ACTIONS(3110), + [anon_sym_restrict] = ACTIONS(3110), + [anon_sym___restrict__] = ACTIONS(3110), + [anon_sym__Atomic] = ACTIONS(3110), + [anon_sym__Noreturn] = ACTIONS(3110), + [anon_sym_noreturn] = ACTIONS(3110), + [anon_sym_mutable] = ACTIONS(3110), + [anon_sym_constinit] = ACTIONS(3110), + [anon_sym_consteval] = ACTIONS(3110), + [sym_primitive_type] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_class] = ACTIONS(3110), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_union] = ACTIONS(3110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3110), + [anon_sym_decltype] = ACTIONS(3110), + [anon_sym_virtual] = ACTIONS(3110), + [anon_sym_alignas] = ACTIONS(3110), + [anon_sym_explicit] = ACTIONS(3110), + [anon_sym_typename] = ACTIONS(3110), + [anon_sym_template] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_friend] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_using] = ACTIONS(3110), + [anon_sym_static_assert] = ACTIONS(3110), + }, + [2161] = { + [sym_string_literal] = STATE(2243), + [sym_template_argument_list] = STATE(3349), + [sym_raw_string_literal] = STATE(2243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_RPAREN] = ACTIONS(5515), + [anon_sym_LPAREN2] = ACTIONS(5515), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5056), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(5521), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4137), + [anon_sym_or_eq] = ACTIONS(4137), + [anon_sym_xor_eq] = ACTIONS(4137), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4145), + [anon_sym_L_DQUOTE] = ACTIONS(5060), + [anon_sym_u_DQUOTE] = ACTIONS(5060), + [anon_sym_U_DQUOTE] = ACTIONS(5060), + [anon_sym_u8_DQUOTE] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5060), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5062), + [anon_sym_LR_DQUOTE] = ACTIONS(5062), + [anon_sym_uR_DQUOTE] = ACTIONS(5062), + [anon_sym_UR_DQUOTE] = ACTIONS(5062), + [anon_sym_u8R_DQUOTE] = ACTIONS(5062), + [anon_sym_DASH_GT_STAR] = ACTIONS(4137), + }, + [2162] = { + [sym_identifier] = ACTIONS(5035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_RPAREN] = ACTIONS(5037), + [aux_sym_preproc_if_token2] = ACTIONS(5037), + [aux_sym_preproc_else_token1] = ACTIONS(5037), + [aux_sym_preproc_elif_token1] = ACTIONS(5035), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5037), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5037), + [anon_sym_LPAREN2] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5035), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5035), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5035), + [anon_sym_CARET] = ACTIONS(5035), + [anon_sym_AMP] = ACTIONS(5035), + [anon_sym_EQ_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5035), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_LT_LT] = ACTIONS(5035), + [anon_sym_GT_GT] = ACTIONS(5035), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym___attribute__] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_RBRACK] = ACTIONS(5037), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_COLON] = ACTIONS(5035), + [anon_sym_QMARK] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PERCENT_EQ] = ACTIONS(5037), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_LT_LT_EQ] = ACTIONS(5037), + [anon_sym_GT_GT_EQ] = ACTIONS(5037), + [anon_sym_AMP_EQ] = ACTIONS(5037), + [anon_sym_CARET_EQ] = ACTIONS(5037), + [anon_sym_PIPE_EQ] = ACTIONS(5037), + [anon_sym_and_eq] = ACTIONS(5035), + [anon_sym_or_eq] = ACTIONS(5035), + [anon_sym_xor_eq] = ACTIONS(5035), + [anon_sym_LT_EQ_GT] = ACTIONS(5037), + [anon_sym_or] = ACTIONS(5035), + [anon_sym_and] = ACTIONS(5035), + [anon_sym_bitor] = ACTIONS(5035), + [anon_sym_xor] = ACTIONS(5035), + [anon_sym_bitand] = ACTIONS(5035), + [anon_sym_not_eq] = ACTIONS(5035), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_DOT_STAR] = ACTIONS(5037), + [anon_sym_DASH_GT] = ACTIONS(5037), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5035), + [anon_sym_decltype] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_override] = ACTIONS(5035), + }, + [2163] = { [sym_identifier] = ACTIONS(3211), [aux_sym_preproc_def_token1] = ACTIONS(3211), [aux_sym_preproc_if_token1] = ACTIONS(3211), @@ -349269,6 +338938,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), [aux_sym_preproc_else_token1] = ACTIONS(3211), [aux_sym_preproc_elif_token1] = ACTIONS(3211), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3211), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3211), [sym_preproc_directive] = ACTIONS(3211), [anon_sym_LPAREN2] = ACTIONS(3213), [anon_sym_TILDE] = ACTIONS(3213), @@ -349328,687 +338999,1547 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(3211), [anon_sym_static_assert] = ACTIONS(3211), }, - [2333] = { - [sym_identifier] = ACTIONS(5723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), - [anon_sym_COMMA] = ACTIONS(5725), - [anon_sym_RPAREN] = ACTIONS(5725), - [aux_sym_preproc_if_token2] = ACTIONS(5725), - [aux_sym_preproc_else_token1] = ACTIONS(5725), - [aux_sym_preproc_elif_token1] = ACTIONS(5723), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5725), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5725), - [anon_sym_LPAREN2] = ACTIONS(5725), - [anon_sym_DASH] = ACTIONS(5723), - [anon_sym_PLUS] = ACTIONS(5723), - [anon_sym_STAR] = ACTIONS(5725), - [anon_sym_SLASH] = ACTIONS(5723), - [anon_sym_PERCENT] = ACTIONS(5725), - [anon_sym_PIPE_PIPE] = ACTIONS(5725), - [anon_sym_AMP_AMP] = ACTIONS(5725), - [anon_sym_PIPE] = ACTIONS(5723), - [anon_sym_CARET] = ACTIONS(5725), - [anon_sym_AMP] = ACTIONS(5723), - [anon_sym_EQ_EQ] = ACTIONS(5725), - [anon_sym_BANG_EQ] = ACTIONS(5725), - [anon_sym_GT] = ACTIONS(5723), - [anon_sym_GT_EQ] = ACTIONS(5725), - [anon_sym_LT_EQ] = ACTIONS(5723), - [anon_sym_LT] = ACTIONS(5723), - [anon_sym_LT_LT] = ACTIONS(5725), - [anon_sym_GT_GT] = ACTIONS(5725), - [anon_sym_SEMI] = ACTIONS(5725), - [anon_sym___extension__] = ACTIONS(5723), - [anon_sym___attribute__] = ACTIONS(5723), - [anon_sym_LBRACE] = ACTIONS(5725), - [anon_sym_RBRACE] = ACTIONS(5725), - [anon_sym_LBRACK] = ACTIONS(5725), - [anon_sym_RBRACK] = ACTIONS(5725), - [anon_sym_const] = ACTIONS(5723), - [anon_sym_constexpr] = ACTIONS(5723), - [anon_sym_volatile] = ACTIONS(5723), - [anon_sym_restrict] = ACTIONS(5723), - [anon_sym___restrict__] = ACTIONS(5723), - [anon_sym__Atomic] = ACTIONS(5723), - [anon_sym__Noreturn] = ACTIONS(5723), - [anon_sym_noreturn] = ACTIONS(5723), - [anon_sym_mutable] = ACTIONS(5723), - [anon_sym_constinit] = ACTIONS(5723), - [anon_sym_consteval] = ACTIONS(5723), - [anon_sym_COLON] = ACTIONS(5725), - [anon_sym_QMARK] = ACTIONS(5725), - [anon_sym_LT_EQ_GT] = ACTIONS(5725), - [anon_sym_or] = ACTIONS(5723), - [anon_sym_and] = ACTIONS(5723), - [anon_sym_bitor] = ACTIONS(5723), - [anon_sym_xor] = ACTIONS(5723), - [anon_sym_bitand] = ACTIONS(5723), - [anon_sym_not_eq] = ACTIONS(5723), - [anon_sym_DASH_DASH] = ACTIONS(5725), - [anon_sym_PLUS_PLUS] = ACTIONS(5725), - [anon_sym_DOT] = ACTIONS(5723), - [anon_sym_DOT_STAR] = ACTIONS(5725), - [anon_sym_DASH_GT] = ACTIONS(5725), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5723), - [anon_sym_decltype] = ACTIONS(5723), - [anon_sym_final] = ACTIONS(5723), - [anon_sym_override] = ACTIONS(5723), - [anon_sym_requires] = ACTIONS(5723), + [2164] = { + [sym_identifier] = ACTIONS(3098), + [aux_sym_preproc_def_token1] = ACTIONS(3098), + [aux_sym_preproc_if_token1] = ACTIONS(3098), + [aux_sym_preproc_if_token2] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), + [aux_sym_preproc_else_token1] = ACTIONS(3098), + [aux_sym_preproc_elif_token1] = ACTIONS(3098), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3098), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3098), + [sym_preproc_directive] = ACTIONS(3098), + [anon_sym_LPAREN2] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym___extension__] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3098), + [anon_sym_extern] = ACTIONS(3098), + [anon_sym___attribute__] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), + [anon_sym___declspec] = ACTIONS(3098), + [anon_sym___based] = ACTIONS(3098), + [anon_sym_signed] = ACTIONS(3098), + [anon_sym_unsigned] = ACTIONS(3098), + [anon_sym_long] = ACTIONS(3098), + [anon_sym_short] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_register] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym___inline] = ACTIONS(3098), + [anon_sym___inline__] = ACTIONS(3098), + [anon_sym___forceinline] = ACTIONS(3098), + [anon_sym_thread_local] = ACTIONS(3098), + [anon_sym___thread] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_constexpr] = ACTIONS(3098), + [anon_sym_volatile] = ACTIONS(3098), + [anon_sym_restrict] = ACTIONS(3098), + [anon_sym___restrict__] = ACTIONS(3098), + [anon_sym__Atomic] = ACTIONS(3098), + [anon_sym__Noreturn] = ACTIONS(3098), + [anon_sym_noreturn] = ACTIONS(3098), + [anon_sym_mutable] = ACTIONS(3098), + [anon_sym_constinit] = ACTIONS(3098), + [anon_sym_consteval] = ACTIONS(3098), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(3098), + [anon_sym_union] = ACTIONS(3098), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3098), + [anon_sym_decltype] = ACTIONS(3098), + [anon_sym_virtual] = ACTIONS(3098), + [anon_sym_alignas] = ACTIONS(3098), + [anon_sym_explicit] = ACTIONS(3098), + [anon_sym_typename] = ACTIONS(3098), + [anon_sym_template] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_friend] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_static_assert] = ACTIONS(3098), }, - [2334] = { - [sym_identifier] = ACTIONS(3176), - [aux_sym_preproc_def_token1] = ACTIONS(3176), - [aux_sym_preproc_if_token1] = ACTIONS(3176), - [aux_sym_preproc_if_token2] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), - [aux_sym_preproc_else_token1] = ACTIONS(3176), - [aux_sym_preproc_elif_token1] = ACTIONS(3176), - [sym_preproc_directive] = ACTIONS(3176), - [anon_sym_LPAREN2] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym___extension__] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3176), - [anon_sym_extern] = ACTIONS(3176), - [anon_sym___attribute__] = ACTIONS(3176), - [anon_sym_COLON_COLON] = ACTIONS(3178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), - [anon_sym___declspec] = ACTIONS(3176), - [anon_sym___based] = ACTIONS(3176), - [anon_sym_signed] = ACTIONS(3176), - [anon_sym_unsigned] = ACTIONS(3176), - [anon_sym_long] = ACTIONS(3176), - [anon_sym_short] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_register] = ACTIONS(3176), - [anon_sym_inline] = ACTIONS(3176), - [anon_sym___inline] = ACTIONS(3176), - [anon_sym___inline__] = ACTIONS(3176), - [anon_sym___forceinline] = ACTIONS(3176), - [anon_sym_thread_local] = ACTIONS(3176), - [anon_sym___thread] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_constexpr] = ACTIONS(3176), - [anon_sym_volatile] = ACTIONS(3176), - [anon_sym_restrict] = ACTIONS(3176), - [anon_sym___restrict__] = ACTIONS(3176), - [anon_sym__Atomic] = ACTIONS(3176), - [anon_sym__Noreturn] = ACTIONS(3176), - [anon_sym_noreturn] = ACTIONS(3176), - [anon_sym_mutable] = ACTIONS(3176), - [anon_sym_constinit] = ACTIONS(3176), - [anon_sym_consteval] = ACTIONS(3176), - [sym_primitive_type] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_struct] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3176), - [anon_sym_decltype] = ACTIONS(3176), - [anon_sym_virtual] = ACTIONS(3176), - [anon_sym_alignas] = ACTIONS(3176), - [anon_sym_explicit] = ACTIONS(3176), - [anon_sym_typename] = ACTIONS(3176), - [anon_sym_template] = ACTIONS(3176), - [anon_sym_operator] = ACTIONS(3176), - [anon_sym_friend] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_protected] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_static_assert] = ACTIONS(3176), + [2165] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [aux_sym_preproc_else_token1] = ACTIONS(2186), + [aux_sym_preproc_elif_token1] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), }, - [2335] = { - [sym_attribute_specifier] = STATE(2473), - [sym_identifier] = ACTIONS(5849), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5851), - [anon_sym_COMMA] = ACTIONS(5851), - [anon_sym_RPAREN] = ACTIONS(5851), - [aux_sym_preproc_if_token2] = ACTIONS(5851), - [aux_sym_preproc_else_token1] = ACTIONS(5851), - [aux_sym_preproc_elif_token1] = ACTIONS(5849), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5851), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5851), - [anon_sym_LPAREN2] = ACTIONS(5851), - [anon_sym_DASH] = ACTIONS(5849), - [anon_sym_PLUS] = ACTIONS(5849), - [anon_sym_STAR] = ACTIONS(5849), - [anon_sym_SLASH] = ACTIONS(5849), - [anon_sym_PERCENT] = ACTIONS(5849), - [anon_sym_PIPE_PIPE] = ACTIONS(5851), - [anon_sym_AMP_AMP] = ACTIONS(5851), - [anon_sym_PIPE] = ACTIONS(5849), - [anon_sym_CARET] = ACTIONS(5849), - [anon_sym_AMP] = ACTIONS(5849), - [anon_sym_EQ_EQ] = ACTIONS(5851), - [anon_sym_BANG_EQ] = ACTIONS(5851), - [anon_sym_GT] = ACTIONS(5849), - [anon_sym_GT_EQ] = ACTIONS(5851), - [anon_sym_LT_EQ] = ACTIONS(5849), - [anon_sym_LT] = ACTIONS(5849), - [anon_sym_LT_LT] = ACTIONS(5849), - [anon_sym_GT_GT] = ACTIONS(5849), - [anon_sym_SEMI] = ACTIONS(5851), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5851), - [anon_sym_RBRACE] = ACTIONS(5851), - [anon_sym_LBRACK] = ACTIONS(5851), - [anon_sym_RBRACK] = ACTIONS(5851), - [anon_sym_EQ] = ACTIONS(5849), - [anon_sym_COLON] = ACTIONS(5851), - [anon_sym_QMARK] = ACTIONS(5851), - [anon_sym_STAR_EQ] = ACTIONS(5851), - [anon_sym_SLASH_EQ] = ACTIONS(5851), - [anon_sym_PERCENT_EQ] = ACTIONS(5851), - [anon_sym_PLUS_EQ] = ACTIONS(5851), - [anon_sym_DASH_EQ] = ACTIONS(5851), - [anon_sym_LT_LT_EQ] = ACTIONS(5851), - [anon_sym_GT_GT_EQ] = ACTIONS(5851), - [anon_sym_AMP_EQ] = ACTIONS(5851), - [anon_sym_CARET_EQ] = ACTIONS(5851), - [anon_sym_PIPE_EQ] = ACTIONS(5851), - [anon_sym_and_eq] = ACTIONS(5849), - [anon_sym_or_eq] = ACTIONS(5849), - [anon_sym_xor_eq] = ACTIONS(5849), - [anon_sym_LT_EQ_GT] = ACTIONS(5851), - [anon_sym_or] = ACTIONS(5849), - [anon_sym_and] = ACTIONS(5849), - [anon_sym_bitor] = ACTIONS(5849), - [anon_sym_xor] = ACTIONS(5849), - [anon_sym_bitand] = ACTIONS(5849), - [anon_sym_not_eq] = ACTIONS(5849), - [anon_sym_DASH_DASH] = ACTIONS(5851), - [anon_sym_PLUS_PLUS] = ACTIONS(5851), - [anon_sym_DOT] = ACTIONS(5849), - [anon_sym_DOT_STAR] = ACTIONS(5851), - [anon_sym_DASH_GT] = ACTIONS(5851), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5849), - [anon_sym_decltype] = ACTIONS(5849), + [2166] = { + [sym_identifier] = ACTIONS(5544), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5546), + [anon_sym_COMMA] = ACTIONS(5546), + [anon_sym_RPAREN] = ACTIONS(5546), + [anon_sym_LPAREN2] = ACTIONS(5546), + [anon_sym_DASH] = ACTIONS(5544), + [anon_sym_PLUS] = ACTIONS(5544), + [anon_sym_STAR] = ACTIONS(5546), + [anon_sym_SLASH] = ACTIONS(5544), + [anon_sym_PERCENT] = ACTIONS(5546), + [anon_sym_PIPE_PIPE] = ACTIONS(5546), + [anon_sym_AMP_AMP] = ACTIONS(5546), + [anon_sym_PIPE] = ACTIONS(5544), + [anon_sym_CARET] = ACTIONS(5546), + [anon_sym_AMP] = ACTIONS(5544), + [anon_sym_EQ_EQ] = ACTIONS(5546), + [anon_sym_BANG_EQ] = ACTIONS(5546), + [anon_sym_GT] = ACTIONS(5544), + [anon_sym_GT_EQ] = ACTIONS(5546), + [anon_sym_LT_EQ] = ACTIONS(5544), + [anon_sym_LT] = ACTIONS(5544), + [anon_sym_LT_LT] = ACTIONS(5546), + [anon_sym_GT_GT] = ACTIONS(5546), + [anon_sym_SEMI] = ACTIONS(5546), + [anon_sym___extension__] = ACTIONS(5544), + [anon_sym___attribute__] = ACTIONS(5544), + [anon_sym_COLON_COLON] = ACTIONS(5546), + [anon_sym___based] = ACTIONS(5544), + [anon_sym_LBRACE] = ACTIONS(5546), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_signed] = ACTIONS(5544), + [anon_sym_unsigned] = ACTIONS(5544), + [anon_sym_long] = ACTIONS(5544), + [anon_sym_short] = ACTIONS(5544), + [anon_sym_LBRACK] = ACTIONS(5546), + [anon_sym_RBRACK] = ACTIONS(5546), + [anon_sym_const] = ACTIONS(5544), + [anon_sym_constexpr] = ACTIONS(5544), + [anon_sym_volatile] = ACTIONS(5544), + [anon_sym_restrict] = ACTIONS(5544), + [anon_sym___restrict__] = ACTIONS(5544), + [anon_sym__Atomic] = ACTIONS(5544), + [anon_sym__Noreturn] = ACTIONS(5544), + [anon_sym_noreturn] = ACTIONS(5544), + [anon_sym_mutable] = ACTIONS(5544), + [anon_sym_constinit] = ACTIONS(5544), + [anon_sym_consteval] = ACTIONS(5544), + [sym_primitive_type] = ACTIONS(5544), + [anon_sym_COLON] = ACTIONS(5544), + [anon_sym_QMARK] = ACTIONS(5546), + [anon_sym_LT_EQ_GT] = ACTIONS(5546), + [anon_sym_or] = ACTIONS(5544), + [anon_sym_and] = ACTIONS(5544), + [anon_sym_bitor] = ACTIONS(5544), + [anon_sym_xor] = ACTIONS(5544), + [anon_sym_bitand] = ACTIONS(5544), + [anon_sym_not_eq] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5546), + [anon_sym_PLUS_PLUS] = ACTIONS(5546), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_DOT_STAR] = ACTIONS(5546), + [anon_sym_DASH_GT] = ACTIONS(5546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5544), + [anon_sym_decltype] = ACTIONS(5544), + [anon_sym_final] = ACTIONS(5544), + [anon_sym_override] = ACTIONS(5544), + [anon_sym_requires] = ACTIONS(5544), }, - [2336] = { - [sym_identifier] = ACTIONS(5428), - [aux_sym_preproc_def_token1] = ACTIONS(5428), - [aux_sym_preproc_if_token1] = ACTIONS(5428), - [aux_sym_preproc_if_token2] = ACTIONS(5428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5428), - [aux_sym_preproc_else_token1] = ACTIONS(5428), - [aux_sym_preproc_elif_token1] = ACTIONS(5428), - [sym_preproc_directive] = ACTIONS(5428), - [anon_sym_LPAREN2] = ACTIONS(5430), - [anon_sym_TILDE] = ACTIONS(5430), - [anon_sym_STAR] = ACTIONS(5430), - [anon_sym_AMP_AMP] = ACTIONS(5430), - [anon_sym_AMP] = ACTIONS(5428), - [anon_sym___extension__] = ACTIONS(5428), - [anon_sym_typedef] = ACTIONS(5428), - [anon_sym_extern] = ACTIONS(5428), - [anon_sym___attribute__] = ACTIONS(5428), - [anon_sym_COLON_COLON] = ACTIONS(5430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5430), - [anon_sym___declspec] = ACTIONS(5428), - [anon_sym___based] = ACTIONS(5428), - [anon_sym_signed] = ACTIONS(5428), - [anon_sym_unsigned] = ACTIONS(5428), - [anon_sym_long] = ACTIONS(5428), - [anon_sym_short] = ACTIONS(5428), - [anon_sym_LBRACK] = ACTIONS(5428), - [anon_sym_static] = ACTIONS(5428), - [anon_sym_register] = ACTIONS(5428), - [anon_sym_inline] = ACTIONS(5428), - [anon_sym___inline] = ACTIONS(5428), - [anon_sym___inline__] = ACTIONS(5428), - [anon_sym___forceinline] = ACTIONS(5428), - [anon_sym_thread_local] = ACTIONS(5428), - [anon_sym___thread] = ACTIONS(5428), - [anon_sym_const] = ACTIONS(5428), - [anon_sym_constexpr] = ACTIONS(5428), - [anon_sym_volatile] = ACTIONS(5428), - [anon_sym_restrict] = ACTIONS(5428), - [anon_sym___restrict__] = ACTIONS(5428), - [anon_sym__Atomic] = ACTIONS(5428), - [anon_sym__Noreturn] = ACTIONS(5428), - [anon_sym_noreturn] = ACTIONS(5428), - [anon_sym_mutable] = ACTIONS(5428), - [anon_sym_constinit] = ACTIONS(5428), - [anon_sym_consteval] = ACTIONS(5428), - [sym_primitive_type] = ACTIONS(5428), - [anon_sym_enum] = ACTIONS(5428), - [anon_sym_class] = ACTIONS(5428), - [anon_sym_struct] = ACTIONS(5428), - [anon_sym_union] = ACTIONS(5428), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5428), - [anon_sym_decltype] = ACTIONS(5428), - [anon_sym_virtual] = ACTIONS(5428), - [anon_sym_alignas] = ACTIONS(5428), - [anon_sym_explicit] = ACTIONS(5428), - [anon_sym_typename] = ACTIONS(5428), - [anon_sym_template] = ACTIONS(5428), - [anon_sym_operator] = ACTIONS(5428), - [anon_sym_friend] = ACTIONS(5428), - [anon_sym_public] = ACTIONS(5428), - [anon_sym_private] = ACTIONS(5428), - [anon_sym_protected] = ACTIONS(5428), - [anon_sym_using] = ACTIONS(5428), - [anon_sym_static_assert] = ACTIONS(5428), + [2167] = { + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [aux_sym_preproc_else_token1] = ACTIONS(3294), + [aux_sym_preproc_elif_token1] = ACTIONS(3294), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_friend] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), }, - [2337] = { - [sym_identifier] = ACTIONS(3190), - [aux_sym_preproc_def_token1] = ACTIONS(3190), - [aux_sym_preproc_if_token1] = ACTIONS(3190), - [aux_sym_preproc_if_token2] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3190), - [aux_sym_preproc_else_token1] = ACTIONS(3190), - [aux_sym_preproc_elif_token1] = ACTIONS(3190), - [sym_preproc_directive] = ACTIONS(3190), - [anon_sym_LPAREN2] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3192), - [anon_sym_AMP_AMP] = ACTIONS(3192), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym___extension__] = ACTIONS(3190), - [anon_sym_typedef] = ACTIONS(3190), - [anon_sym_extern] = ACTIONS(3190), - [anon_sym___attribute__] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(3192), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3192), - [anon_sym___declspec] = ACTIONS(3190), - [anon_sym___based] = ACTIONS(3190), - [anon_sym_signed] = ACTIONS(3190), - [anon_sym_unsigned] = ACTIONS(3190), - [anon_sym_long] = ACTIONS(3190), - [anon_sym_short] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_register] = ACTIONS(3190), - [anon_sym_inline] = ACTIONS(3190), - [anon_sym___inline] = ACTIONS(3190), - [anon_sym___inline__] = ACTIONS(3190), - [anon_sym___forceinline] = ACTIONS(3190), - [anon_sym_thread_local] = ACTIONS(3190), - [anon_sym___thread] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_constexpr] = ACTIONS(3190), - [anon_sym_volatile] = ACTIONS(3190), - [anon_sym_restrict] = ACTIONS(3190), - [anon_sym___restrict__] = ACTIONS(3190), - [anon_sym__Atomic] = ACTIONS(3190), - [anon_sym__Noreturn] = ACTIONS(3190), - [anon_sym_noreturn] = ACTIONS(3190), - [anon_sym_mutable] = ACTIONS(3190), - [anon_sym_constinit] = ACTIONS(3190), - [anon_sym_consteval] = ACTIONS(3190), - [sym_primitive_type] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_struct] = ACTIONS(3190), - [anon_sym_union] = ACTIONS(3190), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3190), - [anon_sym_decltype] = ACTIONS(3190), - [anon_sym_virtual] = ACTIONS(3190), - [anon_sym_alignas] = ACTIONS(3190), - [anon_sym_explicit] = ACTIONS(3190), - [anon_sym_typename] = ACTIONS(3190), - [anon_sym_template] = ACTIONS(3190), - [anon_sym_operator] = ACTIONS(3190), - [anon_sym_friend] = ACTIONS(3190), - [anon_sym_public] = ACTIONS(3190), - [anon_sym_private] = ACTIONS(3190), - [anon_sym_protected] = ACTIONS(3190), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_static_assert] = ACTIONS(3190), + [2168] = { + [sym_decltype_auto] = STATE(2272), + [sym_identifier] = ACTIONS(5548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5550), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_RPAREN] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_STAR] = ACTIONS(5550), + [anon_sym_SLASH] = ACTIONS(5548), + [anon_sym_PERCENT] = ACTIONS(5550), + [anon_sym_PIPE_PIPE] = ACTIONS(5550), + [anon_sym_AMP_AMP] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5548), + [anon_sym_CARET] = ACTIONS(5550), + [anon_sym_AMP] = ACTIONS(5548), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5548), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_LT_EQ] = ACTIONS(5548), + [anon_sym_LT] = ACTIONS(5548), + [anon_sym_LT_LT] = ACTIONS(5550), + [anon_sym_GT_GT] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5550), + [anon_sym___extension__] = ACTIONS(5548), + [anon_sym___attribute__] = ACTIONS(5548), + [anon_sym___based] = ACTIONS(5548), + [anon_sym_LBRACE] = ACTIONS(5550), + [anon_sym_RBRACE] = ACTIONS(5550), + [anon_sym_signed] = ACTIONS(5548), + [anon_sym_unsigned] = ACTIONS(5548), + [anon_sym_long] = ACTIONS(5548), + [anon_sym_short] = ACTIONS(5548), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_RBRACK] = ACTIONS(5550), + [anon_sym_const] = ACTIONS(5548), + [anon_sym_constexpr] = ACTIONS(5548), + [anon_sym_volatile] = ACTIONS(5548), + [anon_sym_restrict] = ACTIONS(5548), + [anon_sym___restrict__] = ACTIONS(5548), + [anon_sym__Atomic] = ACTIONS(5548), + [anon_sym__Noreturn] = ACTIONS(5548), + [anon_sym_noreturn] = ACTIONS(5548), + [anon_sym_mutable] = ACTIONS(5548), + [anon_sym_constinit] = ACTIONS(5548), + [anon_sym_consteval] = ACTIONS(5548), + [sym_primitive_type] = ACTIONS(5548), + [anon_sym_COLON] = ACTIONS(5550), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_LT_EQ_GT] = ACTIONS(5550), + [anon_sym_or] = ACTIONS(5548), + [anon_sym_and] = ACTIONS(5548), + [anon_sym_bitor] = ACTIONS(5548), + [anon_sym_xor] = ACTIONS(5548), + [anon_sym_bitand] = ACTIONS(5548), + [anon_sym_not_eq] = ACTIONS(5548), + [anon_sym_DASH_DASH] = ACTIONS(5550), + [anon_sym_PLUS_PLUS] = ACTIONS(5550), + [anon_sym_DOT] = ACTIONS(5548), + [anon_sym_DOT_STAR] = ACTIONS(5550), + [anon_sym_DASH_GT] = ACTIONS(5550), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5552), + [anon_sym_decltype] = ACTIONS(5554), + [anon_sym_final] = ACTIONS(5548), + [anon_sym_override] = ACTIONS(5548), + [anon_sym_requires] = ACTIONS(5548), }, - [2338] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5263), - [anon_sym_COMMA] = ACTIONS(5263), - [anon_sym_RPAREN] = ACTIONS(5263), - [anon_sym_LPAREN2] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5261), - [anon_sym_STAR] = ACTIONS(5261), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_PIPE_PIPE] = ACTIONS(5263), - [anon_sym_AMP_AMP] = ACTIONS(5263), - [anon_sym_PIPE] = ACTIONS(5261), - [anon_sym_CARET] = ACTIONS(5261), - [anon_sym_AMP] = ACTIONS(5261), - [anon_sym_EQ_EQ] = ACTIONS(5263), - [anon_sym_BANG_EQ] = ACTIONS(5263), - [anon_sym_GT] = ACTIONS(5261), - [anon_sym_GT_EQ] = ACTIONS(5263), - [anon_sym_LT_EQ] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(5261), - [anon_sym_LT_LT] = ACTIONS(5261), - [anon_sym_GT_GT] = ACTIONS(5261), - [anon_sym_SEMI] = ACTIONS(5263), - [anon_sym_RBRACE] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_RBRACK] = ACTIONS(5263), - [anon_sym_EQ] = ACTIONS(5261), - [anon_sym_COLON] = ACTIONS(5263), - [anon_sym_QMARK] = ACTIONS(5263), - [anon_sym_STAR_EQ] = ACTIONS(5263), - [anon_sym_SLASH_EQ] = ACTIONS(5263), - [anon_sym_PERCENT_EQ] = ACTIONS(5263), - [anon_sym_PLUS_EQ] = ACTIONS(5263), - [anon_sym_DASH_EQ] = ACTIONS(5263), - [anon_sym_LT_LT_EQ] = ACTIONS(5263), - [anon_sym_GT_GT_EQ] = ACTIONS(5263), - [anon_sym_AMP_EQ] = ACTIONS(5263), - [anon_sym_CARET_EQ] = ACTIONS(5263), - [anon_sym_PIPE_EQ] = ACTIONS(5263), - [anon_sym_and_eq] = ACTIONS(5261), - [anon_sym_or_eq] = ACTIONS(5261), - [anon_sym_xor_eq] = ACTIONS(5261), - [anon_sym_LT_EQ_GT] = ACTIONS(5263), - [anon_sym_or] = ACTIONS(5261), - [anon_sym_and] = ACTIONS(5261), - [anon_sym_bitor] = ACTIONS(5261), - [anon_sym_xor] = ACTIONS(5261), - [anon_sym_bitand] = ACTIONS(5261), - [anon_sym_not_eq] = ACTIONS(5261), - [anon_sym_DASH_DASH] = ACTIONS(5263), - [anon_sym_PLUS_PLUS] = ACTIONS(5263), - [anon_sym_DOT] = ACTIONS(5261), - [anon_sym_DOT_STAR] = ACTIONS(5263), - [anon_sym_DASH_GT] = ACTIONS(5263), - [anon_sym_L_DQUOTE] = ACTIONS(5263), - [anon_sym_u_DQUOTE] = ACTIONS(5263), - [anon_sym_U_DQUOTE] = ACTIONS(5263), - [anon_sym_u8_DQUOTE] = ACTIONS(5263), - [anon_sym_DQUOTE] = ACTIONS(5263), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5263), - [anon_sym_LR_DQUOTE] = ACTIONS(5263), - [anon_sym_uR_DQUOTE] = ACTIONS(5263), - [anon_sym_UR_DQUOTE] = ACTIONS(5263), - [anon_sym_u8R_DQUOTE] = ACTIONS(5263), - [sym_literal_suffix] = ACTIONS(5261), + [2169] = { + [sym_identifier] = 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(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym___extension__] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3312), + [anon_sym___declspec] = ACTIONS(3310), + [anon_sym___based] = 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(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_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3310), + [anon_sym_decltype] = ACTIONS(3310), + [anon_sym_virtual] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym_explicit] = ACTIONS(3310), + [anon_sym_typename] = ACTIONS(3310), + [anon_sym_template] = ACTIONS(3310), + [anon_sym_operator] = ACTIONS(3310), + [anon_sym_friend] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_static_assert] = ACTIONS(3310), }, - [2339] = { - [sym_attribute_specifier] = STATE(2475), - [sym_identifier] = ACTIONS(5853), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5855), - [anon_sym_COMMA] = ACTIONS(5855), - [anon_sym_RPAREN] = ACTIONS(5855), - [aux_sym_preproc_if_token2] = ACTIONS(5855), - [aux_sym_preproc_else_token1] = ACTIONS(5855), - [aux_sym_preproc_elif_token1] = ACTIONS(5853), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5855), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5855), - [anon_sym_LPAREN2] = ACTIONS(5855), - [anon_sym_DASH] = ACTIONS(5853), - [anon_sym_PLUS] = ACTIONS(5853), - [anon_sym_STAR] = ACTIONS(5853), - [anon_sym_SLASH] = ACTIONS(5853), - [anon_sym_PERCENT] = ACTIONS(5853), - [anon_sym_PIPE_PIPE] = ACTIONS(5855), - [anon_sym_AMP_AMP] = ACTIONS(5855), - [anon_sym_PIPE] = ACTIONS(5853), - [anon_sym_CARET] = ACTIONS(5853), - [anon_sym_AMP] = ACTIONS(5853), - [anon_sym_EQ_EQ] = ACTIONS(5855), - [anon_sym_BANG_EQ] = ACTIONS(5855), - [anon_sym_GT] = ACTIONS(5853), - [anon_sym_GT_EQ] = ACTIONS(5855), - [anon_sym_LT_EQ] = ACTIONS(5853), - [anon_sym_LT] = ACTIONS(5853), - [anon_sym_LT_LT] = ACTIONS(5853), - [anon_sym_GT_GT] = ACTIONS(5853), - [anon_sym_SEMI] = ACTIONS(5855), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5855), - [anon_sym_RBRACE] = ACTIONS(5855), - [anon_sym_LBRACK] = ACTIONS(5855), - [anon_sym_RBRACK] = ACTIONS(5855), - [anon_sym_EQ] = ACTIONS(5853), - [anon_sym_COLON] = ACTIONS(5855), - [anon_sym_QMARK] = ACTIONS(5855), - [anon_sym_STAR_EQ] = ACTIONS(5855), - [anon_sym_SLASH_EQ] = ACTIONS(5855), - [anon_sym_PERCENT_EQ] = ACTIONS(5855), - [anon_sym_PLUS_EQ] = ACTIONS(5855), - [anon_sym_DASH_EQ] = ACTIONS(5855), - [anon_sym_LT_LT_EQ] = ACTIONS(5855), - [anon_sym_GT_GT_EQ] = ACTIONS(5855), - [anon_sym_AMP_EQ] = ACTIONS(5855), - [anon_sym_CARET_EQ] = ACTIONS(5855), - [anon_sym_PIPE_EQ] = ACTIONS(5855), - [anon_sym_and_eq] = ACTIONS(5853), - [anon_sym_or_eq] = ACTIONS(5853), - [anon_sym_xor_eq] = ACTIONS(5853), - [anon_sym_LT_EQ_GT] = ACTIONS(5855), - [anon_sym_or] = ACTIONS(5853), - [anon_sym_and] = ACTIONS(5853), - [anon_sym_bitor] = ACTIONS(5853), - [anon_sym_xor] = ACTIONS(5853), - [anon_sym_bitand] = ACTIONS(5853), - [anon_sym_not_eq] = ACTIONS(5853), - [anon_sym_DASH_DASH] = ACTIONS(5855), - [anon_sym_PLUS_PLUS] = ACTIONS(5855), - [anon_sym_DOT] = ACTIONS(5853), - [anon_sym_DOT_STAR] = ACTIONS(5855), - [anon_sym_DASH_GT] = ACTIONS(5855), + [2170] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_RBRACE] = ACTIONS(4137), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4204), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4173), + [anon_sym_or_eq] = ACTIONS(4173), + [anon_sym_xor_eq] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [2171] = { + [sym_identifier] = ACTIONS(3282), + [aux_sym_preproc_def_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token2] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [aux_sym_preproc_else_token1] = ACTIONS(3282), + [aux_sym_preproc_elif_token1] = ACTIONS(3282), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym___extension__] = ACTIONS(3282), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym___attribute__] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), + [anon_sym___declspec] = ACTIONS(3282), + [anon_sym___based] = ACTIONS(3282), + [anon_sym_signed] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym___inline] = ACTIONS(3282), + [anon_sym___inline__] = ACTIONS(3282), + [anon_sym___forceinline] = ACTIONS(3282), + [anon_sym_thread_local] = ACTIONS(3282), + [anon_sym___thread] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_constexpr] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym___restrict__] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym__Noreturn] = ACTIONS(3282), + [anon_sym_noreturn] = ACTIONS(3282), + [anon_sym_mutable] = ACTIONS(3282), + [anon_sym_constinit] = ACTIONS(3282), + [anon_sym_consteval] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3282), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_virtual] = ACTIONS(3282), + [anon_sym_alignas] = ACTIONS(3282), + [anon_sym_explicit] = ACTIONS(3282), + [anon_sym_typename] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3282), + [anon_sym_operator] = ACTIONS(3282), + [anon_sym_friend] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_protected] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_static_assert] = ACTIONS(3282), + }, + [2172] = { + [sym_identifier] = ACTIONS(5039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [aux_sym_preproc_if_token2] = ACTIONS(5046), + [aux_sym_preproc_else_token1] = ACTIONS(5046), + [aux_sym_preproc_elif_token1] = ACTIONS(5039), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5046), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5046), + [anon_sym_LPAREN2] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5039), + [anon_sym_STAR] = ACTIONS(5039), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), + [anon_sym_PIPE_PIPE] = ACTIONS(5046), + [anon_sym_AMP_AMP] = ACTIONS(5046), + [anon_sym_PIPE] = ACTIONS(5039), + [anon_sym_CARET] = ACTIONS(5039), + [anon_sym_AMP] = ACTIONS(5039), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5039), + [anon_sym_GT_EQ] = ACTIONS(5046), + [anon_sym_LT_EQ] = ACTIONS(5039), + [anon_sym_LT] = ACTIONS(5039), + [anon_sym_LT_LT] = ACTIONS(5039), + [anon_sym_GT_GT] = ACTIONS(5039), + [anon_sym_SEMI] = ACTIONS(5046), + [anon_sym___attribute__] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_COLON] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_STAR_EQ] = ACTIONS(5046), + [anon_sym_SLASH_EQ] = ACTIONS(5046), + [anon_sym_PERCENT_EQ] = ACTIONS(5046), + [anon_sym_PLUS_EQ] = ACTIONS(5046), + [anon_sym_DASH_EQ] = ACTIONS(5046), + [anon_sym_LT_LT_EQ] = ACTIONS(5046), + [anon_sym_GT_GT_EQ] = ACTIONS(5046), + [anon_sym_AMP_EQ] = ACTIONS(5046), + [anon_sym_CARET_EQ] = ACTIONS(5046), + [anon_sym_PIPE_EQ] = ACTIONS(5046), + [anon_sym_and_eq] = ACTIONS(5039), + [anon_sym_or_eq] = ACTIONS(5039), + [anon_sym_xor_eq] = ACTIONS(5039), + [anon_sym_LT_EQ_GT] = ACTIONS(5046), + [anon_sym_or] = ACTIONS(5039), + [anon_sym_and] = ACTIONS(5039), + [anon_sym_bitor] = ACTIONS(5039), + [anon_sym_xor] = ACTIONS(5039), + [anon_sym_bitand] = ACTIONS(5039), + [anon_sym_not_eq] = ACTIONS(5039), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_PLUS_PLUS] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5039), + [anon_sym_DOT_STAR] = ACTIONS(5046), + [anon_sym_DASH_GT] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5039), + [anon_sym_decltype] = ACTIONS(5039), + [anon_sym_final] = ACTIONS(5039), + [anon_sym_override] = ACTIONS(5039), + }, + [2173] = { + [sym_identifier] = ACTIONS(5556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5558), + [anon_sym_COMMA] = ACTIONS(5558), + [anon_sym_RPAREN] = ACTIONS(5558), + [aux_sym_preproc_if_token2] = ACTIONS(5558), + [aux_sym_preproc_else_token1] = ACTIONS(5558), + [aux_sym_preproc_elif_token1] = ACTIONS(5556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5558), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5558), + [anon_sym_LPAREN2] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5556), + [anon_sym_PLUS] = ACTIONS(5556), + [anon_sym_STAR] = ACTIONS(5556), + [anon_sym_SLASH] = ACTIONS(5556), + [anon_sym_PERCENT] = ACTIONS(5556), + [anon_sym_PIPE_PIPE] = ACTIONS(5558), + [anon_sym_AMP_AMP] = ACTIONS(5558), + [anon_sym_PIPE] = ACTIONS(5556), + [anon_sym_CARET] = ACTIONS(5556), + [anon_sym_AMP] = ACTIONS(5556), + [anon_sym_EQ_EQ] = ACTIONS(5558), + [anon_sym_BANG_EQ] = ACTIONS(5558), + [anon_sym_GT] = ACTIONS(5556), + [anon_sym_GT_EQ] = ACTIONS(5558), + [anon_sym_LT_EQ] = ACTIONS(5556), + [anon_sym_LT] = ACTIONS(5556), + [anon_sym_LT_LT] = ACTIONS(5556), + [anon_sym_GT_GT] = ACTIONS(5556), + [anon_sym_SEMI] = ACTIONS(5558), + [anon_sym___attribute__] = ACTIONS(5556), + [anon_sym_COLON_COLON] = ACTIONS(5558), + [anon_sym_LBRACE] = ACTIONS(5558), + [anon_sym_RBRACE] = ACTIONS(5558), + [anon_sym_LBRACK] = ACTIONS(5558), + [anon_sym_RBRACK] = ACTIONS(5558), + [anon_sym_EQ] = ACTIONS(5556), + [anon_sym_COLON] = ACTIONS(5556), + [anon_sym_QMARK] = ACTIONS(5558), + [anon_sym_STAR_EQ] = ACTIONS(5558), + [anon_sym_SLASH_EQ] = ACTIONS(5558), + [anon_sym_PERCENT_EQ] = ACTIONS(5558), + [anon_sym_PLUS_EQ] = ACTIONS(5558), + [anon_sym_DASH_EQ] = ACTIONS(5558), + [anon_sym_LT_LT_EQ] = ACTIONS(5558), + [anon_sym_GT_GT_EQ] = ACTIONS(5558), + [anon_sym_AMP_EQ] = ACTIONS(5558), + [anon_sym_CARET_EQ] = ACTIONS(5558), + [anon_sym_PIPE_EQ] = ACTIONS(5558), + [anon_sym_and_eq] = ACTIONS(5556), + [anon_sym_or_eq] = ACTIONS(5556), + [anon_sym_xor_eq] = ACTIONS(5556), + [anon_sym_LT_EQ_GT] = ACTIONS(5558), + [anon_sym_or] = ACTIONS(5556), + [anon_sym_and] = ACTIONS(5556), + [anon_sym_bitor] = ACTIONS(5556), + [anon_sym_xor] = ACTIONS(5556), + [anon_sym_bitand] = ACTIONS(5556), + [anon_sym_not_eq] = ACTIONS(5556), + [anon_sym_DASH_DASH] = ACTIONS(5558), + [anon_sym_PLUS_PLUS] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(5556), + [anon_sym_DOT_STAR] = ACTIONS(5558), + [anon_sym_DASH_GT] = ACTIONS(5558), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5556), + [anon_sym_decltype] = ACTIONS(5556), + [anon_sym_final] = ACTIONS(5556), + [anon_sym_override] = ACTIONS(5556), + }, + [2174] = { + [sym_identifier] = ACTIONS(5560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_RPAREN] = ACTIONS(5562), + [aux_sym_preproc_if_token2] = ACTIONS(5562), + [aux_sym_preproc_else_token1] = ACTIONS(5562), + [aux_sym_preproc_elif_token1] = ACTIONS(5560), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5562), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5562), + [anon_sym_LPAREN2] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5560), + [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5560), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_EQ] = ACTIONS(5560), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5562), + [anon_sym___attribute__] = ACTIONS(5560), + [anon_sym_COLON_COLON] = ACTIONS(5422), + [anon_sym_LBRACE] = ACTIONS(5562), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_RBRACK] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(5560), + [anon_sym_COLON] = ACTIONS(5560), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_STAR_EQ] = ACTIONS(5562), + [anon_sym_SLASH_EQ] = ACTIONS(5562), + [anon_sym_PERCENT_EQ] = ACTIONS(5562), + [anon_sym_PLUS_EQ] = ACTIONS(5562), + [anon_sym_DASH_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_EQ] = ACTIONS(5562), + [anon_sym_GT_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP_EQ] = ACTIONS(5562), + [anon_sym_CARET_EQ] = ACTIONS(5562), + [anon_sym_PIPE_EQ] = ACTIONS(5562), + [anon_sym_and_eq] = ACTIONS(5560), + [anon_sym_or_eq] = ACTIONS(5560), + [anon_sym_xor_eq] = ACTIONS(5560), + [anon_sym_LT_EQ_GT] = ACTIONS(5562), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_bitor] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_bitand] = ACTIONS(5560), + [anon_sym_not_eq] = ACTIONS(5560), + [anon_sym_DASH_DASH] = ACTIONS(5562), + [anon_sym_PLUS_PLUS] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_DOT_STAR] = ACTIONS(5562), + [anon_sym_DASH_GT] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5560), + [anon_sym_decltype] = ACTIONS(5560), + [anon_sym_final] = ACTIONS(5560), + [anon_sym_override] = ACTIONS(5560), + }, + [2175] = { + [sym_identifier] = ACTIONS(5564), + [aux_sym_preproc_def_token1] = ACTIONS(5564), + [aux_sym_preproc_if_token1] = ACTIONS(5564), + [aux_sym_preproc_if_token2] = ACTIONS(5564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5564), + [aux_sym_preproc_else_token1] = ACTIONS(5564), + [aux_sym_preproc_elif_token1] = ACTIONS(5564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5564), + [sym_preproc_directive] = ACTIONS(5564), + [anon_sym_LPAREN2] = ACTIONS(5566), + [anon_sym_TILDE] = ACTIONS(5566), + [anon_sym_STAR] = ACTIONS(5566), + [anon_sym_AMP_AMP] = ACTIONS(5566), + [anon_sym_AMP] = ACTIONS(5564), + [anon_sym___extension__] = ACTIONS(5564), + [anon_sym_typedef] = ACTIONS(5564), + [anon_sym_extern] = ACTIONS(5564), + [anon_sym___attribute__] = ACTIONS(5564), + [anon_sym_COLON_COLON] = ACTIONS(5566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5566), + [anon_sym___declspec] = ACTIONS(5564), + [anon_sym___based] = ACTIONS(5564), + [anon_sym_signed] = ACTIONS(5564), + [anon_sym_unsigned] = ACTIONS(5564), + [anon_sym_long] = ACTIONS(5564), + [anon_sym_short] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [anon_sym_static] = ACTIONS(5564), + [anon_sym_register] = ACTIONS(5564), + [anon_sym_inline] = ACTIONS(5564), + [anon_sym___inline] = ACTIONS(5564), + [anon_sym___inline__] = ACTIONS(5564), + [anon_sym___forceinline] = ACTIONS(5564), + [anon_sym_thread_local] = ACTIONS(5564), + [anon_sym___thread] = ACTIONS(5564), + [anon_sym_const] = ACTIONS(5564), + [anon_sym_constexpr] = ACTIONS(5564), + [anon_sym_volatile] = ACTIONS(5564), + [anon_sym_restrict] = ACTIONS(5564), + [anon_sym___restrict__] = ACTIONS(5564), + [anon_sym__Atomic] = ACTIONS(5564), + [anon_sym__Noreturn] = ACTIONS(5564), + [anon_sym_noreturn] = ACTIONS(5564), + [anon_sym_mutable] = ACTIONS(5564), + [anon_sym_constinit] = ACTIONS(5564), + [anon_sym_consteval] = ACTIONS(5564), + [sym_primitive_type] = ACTIONS(5564), + [anon_sym_enum] = ACTIONS(5564), + [anon_sym_class] = ACTIONS(5564), + [anon_sym_struct] = ACTIONS(5564), + [anon_sym_union] = ACTIONS(5564), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5564), + [anon_sym_decltype] = ACTIONS(5564), + [anon_sym_virtual] = ACTIONS(5564), + [anon_sym_alignas] = ACTIONS(5564), + [anon_sym_explicit] = ACTIONS(5564), + [anon_sym_typename] = ACTIONS(5564), + [anon_sym_template] = ACTIONS(5564), + [anon_sym_operator] = ACTIONS(5564), + [anon_sym_friend] = ACTIONS(5564), + [anon_sym_public] = ACTIONS(5564), + [anon_sym_private] = ACTIONS(5564), + [anon_sym_protected] = ACTIONS(5564), + [anon_sym_using] = ACTIONS(5564), + [anon_sym_static_assert] = ACTIONS(5564), + }, + [2176] = { + [sym_identifier] = ACTIONS(5568), + [aux_sym_preproc_def_token1] = ACTIONS(5568), + [aux_sym_preproc_if_token1] = ACTIONS(5568), + [aux_sym_preproc_if_token2] = ACTIONS(5568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), + [aux_sym_preproc_else_token1] = ACTIONS(5568), + [aux_sym_preproc_elif_token1] = ACTIONS(5568), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5568), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5568), + [sym_preproc_directive] = ACTIONS(5568), + [anon_sym_LPAREN2] = ACTIONS(5570), + [anon_sym_TILDE] = ACTIONS(5570), + [anon_sym_STAR] = ACTIONS(5570), + [anon_sym_AMP_AMP] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(5568), + [anon_sym___extension__] = ACTIONS(5568), + [anon_sym_typedef] = ACTIONS(5568), + [anon_sym_extern] = ACTIONS(5568), + [anon_sym___attribute__] = ACTIONS(5568), + [anon_sym_COLON_COLON] = ACTIONS(5570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5570), + [anon_sym___declspec] = ACTIONS(5568), + [anon_sym___based] = ACTIONS(5568), + [anon_sym_signed] = ACTIONS(5568), + [anon_sym_unsigned] = ACTIONS(5568), + [anon_sym_long] = ACTIONS(5568), + [anon_sym_short] = ACTIONS(5568), + [anon_sym_LBRACK] = ACTIONS(5568), + [anon_sym_static] = ACTIONS(5568), + [anon_sym_register] = ACTIONS(5568), + [anon_sym_inline] = ACTIONS(5568), + [anon_sym___inline] = ACTIONS(5568), + [anon_sym___inline__] = ACTIONS(5568), + [anon_sym___forceinline] = ACTIONS(5568), + [anon_sym_thread_local] = ACTIONS(5568), + [anon_sym___thread] = ACTIONS(5568), + [anon_sym_const] = ACTIONS(5568), + [anon_sym_constexpr] = ACTIONS(5568), + [anon_sym_volatile] = ACTIONS(5568), + [anon_sym_restrict] = ACTIONS(5568), + [anon_sym___restrict__] = ACTIONS(5568), + [anon_sym__Atomic] = ACTIONS(5568), + [anon_sym__Noreturn] = ACTIONS(5568), + [anon_sym_noreturn] = ACTIONS(5568), + [anon_sym_mutable] = ACTIONS(5568), + [anon_sym_constinit] = ACTIONS(5568), + [anon_sym_consteval] = ACTIONS(5568), + [sym_primitive_type] = ACTIONS(5568), + [anon_sym_enum] = ACTIONS(5568), + [anon_sym_class] = ACTIONS(5568), + [anon_sym_struct] = ACTIONS(5568), + [anon_sym_union] = ACTIONS(5568), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5853), - [anon_sym_decltype] = ACTIONS(5853), + [sym_auto] = ACTIONS(5568), + [anon_sym_decltype] = ACTIONS(5568), + [anon_sym_virtual] = ACTIONS(5568), + [anon_sym_alignas] = ACTIONS(5568), + [anon_sym_explicit] = ACTIONS(5568), + [anon_sym_typename] = ACTIONS(5568), + [anon_sym_template] = ACTIONS(5568), + [anon_sym_operator] = ACTIONS(5568), + [anon_sym_friend] = ACTIONS(5568), + [anon_sym_public] = ACTIONS(5568), + [anon_sym_private] = ACTIONS(5568), + [anon_sym_protected] = ACTIONS(5568), + [anon_sym_using] = ACTIONS(5568), + [anon_sym_static_assert] = ACTIONS(5568), }, - [2340] = { - [sym_attribute_specifier] = STATE(2466), - [sym_identifier] = ACTIONS(5857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5859), - [anon_sym_COMMA] = ACTIONS(5859), - [anon_sym_RPAREN] = ACTIONS(5859), - [aux_sym_preproc_if_token2] = ACTIONS(5859), - [aux_sym_preproc_else_token1] = ACTIONS(5859), - [aux_sym_preproc_elif_token1] = ACTIONS(5857), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5859), - [anon_sym_LPAREN2] = ACTIONS(5859), - [anon_sym_DASH] = ACTIONS(5857), - [anon_sym_PLUS] = ACTIONS(5857), - [anon_sym_STAR] = ACTIONS(5857), - [anon_sym_SLASH] = ACTIONS(5857), - [anon_sym_PERCENT] = ACTIONS(5857), - [anon_sym_PIPE_PIPE] = ACTIONS(5859), - [anon_sym_AMP_AMP] = ACTIONS(5859), - [anon_sym_PIPE] = ACTIONS(5857), - [anon_sym_CARET] = ACTIONS(5857), - [anon_sym_AMP] = ACTIONS(5857), - [anon_sym_EQ_EQ] = ACTIONS(5859), - [anon_sym_BANG_EQ] = ACTIONS(5859), - [anon_sym_GT] = ACTIONS(5857), - [anon_sym_GT_EQ] = ACTIONS(5859), - [anon_sym_LT_EQ] = ACTIONS(5857), - [anon_sym_LT] = ACTIONS(5857), - [anon_sym_LT_LT] = ACTIONS(5857), - [anon_sym_GT_GT] = ACTIONS(5857), - [anon_sym_SEMI] = ACTIONS(5859), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5859), - [anon_sym_RBRACE] = ACTIONS(5859), - [anon_sym_LBRACK] = ACTIONS(5859), - [anon_sym_RBRACK] = ACTIONS(5859), - [anon_sym_EQ] = ACTIONS(5857), - [anon_sym_COLON] = ACTIONS(5859), - [anon_sym_QMARK] = ACTIONS(5859), - [anon_sym_STAR_EQ] = ACTIONS(5859), - [anon_sym_SLASH_EQ] = ACTIONS(5859), - [anon_sym_PERCENT_EQ] = ACTIONS(5859), - [anon_sym_PLUS_EQ] = ACTIONS(5859), - [anon_sym_DASH_EQ] = ACTIONS(5859), - [anon_sym_LT_LT_EQ] = ACTIONS(5859), - [anon_sym_GT_GT_EQ] = ACTIONS(5859), - [anon_sym_AMP_EQ] = ACTIONS(5859), - [anon_sym_CARET_EQ] = ACTIONS(5859), - [anon_sym_PIPE_EQ] = ACTIONS(5859), - [anon_sym_and_eq] = ACTIONS(5857), - [anon_sym_or_eq] = ACTIONS(5857), - [anon_sym_xor_eq] = ACTIONS(5857), - [anon_sym_LT_EQ_GT] = ACTIONS(5859), - [anon_sym_or] = ACTIONS(5857), - [anon_sym_and] = ACTIONS(5857), - [anon_sym_bitor] = ACTIONS(5857), - [anon_sym_xor] = ACTIONS(5857), - [anon_sym_bitand] = ACTIONS(5857), - [anon_sym_not_eq] = ACTIONS(5857), - [anon_sym_DASH_DASH] = ACTIONS(5859), - [anon_sym_PLUS_PLUS] = ACTIONS(5859), - [anon_sym_DOT] = ACTIONS(5857), - [anon_sym_DOT_STAR] = ACTIONS(5859), - [anon_sym_DASH_GT] = ACTIONS(5859), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5857), - [anon_sym_decltype] = ACTIONS(5857), + [2177] = { + [sym_identifier] = ACTIONS(5568), + [aux_sym_preproc_def_token1] = ACTIONS(5568), + [aux_sym_preproc_if_token1] = ACTIONS(5568), + [aux_sym_preproc_if_token2] = ACTIONS(5568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), + [aux_sym_preproc_else_token1] = ACTIONS(5568), + [aux_sym_preproc_elif_token1] = ACTIONS(5568), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5568), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5568), + [sym_preproc_directive] = ACTIONS(5568), + [anon_sym_LPAREN2] = ACTIONS(5570), + [anon_sym_TILDE] = ACTIONS(5570), + [anon_sym_STAR] = ACTIONS(5570), + [anon_sym_AMP_AMP] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(5568), + [anon_sym___extension__] = ACTIONS(5568), + [anon_sym_typedef] = ACTIONS(5568), + [anon_sym_extern] = ACTIONS(5568), + [anon_sym___attribute__] = ACTIONS(5568), + [anon_sym_COLON_COLON] = ACTIONS(5570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5570), + [anon_sym___declspec] = ACTIONS(5568), + [anon_sym___based] = ACTIONS(5568), + [anon_sym_signed] = ACTIONS(5568), + [anon_sym_unsigned] = ACTIONS(5568), + [anon_sym_long] = ACTIONS(5568), + [anon_sym_short] = ACTIONS(5568), + [anon_sym_LBRACK] = ACTIONS(5568), + [anon_sym_static] = ACTIONS(5568), + [anon_sym_register] = ACTIONS(5568), + [anon_sym_inline] = ACTIONS(5568), + [anon_sym___inline] = ACTIONS(5568), + [anon_sym___inline__] = ACTIONS(5568), + [anon_sym___forceinline] = ACTIONS(5568), + [anon_sym_thread_local] = ACTIONS(5568), + [anon_sym___thread] = ACTIONS(5568), + [anon_sym_const] = ACTIONS(5568), + [anon_sym_constexpr] = ACTIONS(5568), + [anon_sym_volatile] = ACTIONS(5568), + [anon_sym_restrict] = ACTIONS(5568), + [anon_sym___restrict__] = ACTIONS(5568), + [anon_sym__Atomic] = ACTIONS(5568), + [anon_sym__Noreturn] = ACTIONS(5568), + [anon_sym_noreturn] = ACTIONS(5568), + [anon_sym_mutable] = ACTIONS(5568), + [anon_sym_constinit] = ACTIONS(5568), + [anon_sym_consteval] = ACTIONS(5568), + [sym_primitive_type] = ACTIONS(5568), + [anon_sym_enum] = ACTIONS(5568), + [anon_sym_class] = ACTIONS(5568), + [anon_sym_struct] = ACTIONS(5568), + [anon_sym_union] = ACTIONS(5568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5568), + [anon_sym_decltype] = ACTIONS(5568), + [anon_sym_virtual] = ACTIONS(5568), + [anon_sym_alignas] = ACTIONS(5568), + [anon_sym_explicit] = ACTIONS(5568), + [anon_sym_typename] = ACTIONS(5568), + [anon_sym_template] = ACTIONS(5568), + [anon_sym_operator] = ACTIONS(5568), + [anon_sym_friend] = ACTIONS(5568), + [anon_sym_public] = ACTIONS(5568), + [anon_sym_private] = ACTIONS(5568), + [anon_sym_protected] = ACTIONS(5568), + [anon_sym_using] = ACTIONS(5568), + [anon_sym_static_assert] = ACTIONS(5568), }, - [2341] = { - [sym_attribute_specifier] = STATE(2464), - [sym_identifier] = ACTIONS(5861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5863), - [anon_sym_COMMA] = ACTIONS(5863), - [anon_sym_RPAREN] = ACTIONS(5863), - [aux_sym_preproc_if_token2] = ACTIONS(5863), - [aux_sym_preproc_else_token1] = ACTIONS(5863), - [aux_sym_preproc_elif_token1] = ACTIONS(5861), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5863), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5863), - [anon_sym_LPAREN2] = ACTIONS(5863), - [anon_sym_DASH] = ACTIONS(5861), - [anon_sym_PLUS] = ACTIONS(5861), - [anon_sym_STAR] = ACTIONS(5861), - [anon_sym_SLASH] = ACTIONS(5861), - [anon_sym_PERCENT] = ACTIONS(5861), - [anon_sym_PIPE_PIPE] = ACTIONS(5863), - [anon_sym_AMP_AMP] = ACTIONS(5863), - [anon_sym_PIPE] = ACTIONS(5861), - [anon_sym_CARET] = ACTIONS(5861), - [anon_sym_AMP] = ACTIONS(5861), - [anon_sym_EQ_EQ] = ACTIONS(5863), - [anon_sym_BANG_EQ] = ACTIONS(5863), - [anon_sym_GT] = ACTIONS(5861), - [anon_sym_GT_EQ] = ACTIONS(5863), - [anon_sym_LT_EQ] = ACTIONS(5861), - [anon_sym_LT] = ACTIONS(5861), - [anon_sym_LT_LT] = ACTIONS(5861), - [anon_sym_GT_GT] = ACTIONS(5861), - [anon_sym_SEMI] = ACTIONS(5863), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5863), - [anon_sym_RBRACE] = ACTIONS(5863), - [anon_sym_LBRACK] = ACTIONS(5863), - [anon_sym_RBRACK] = ACTIONS(5863), - [anon_sym_EQ] = ACTIONS(5861), - [anon_sym_COLON] = ACTIONS(5863), - [anon_sym_QMARK] = ACTIONS(5863), - [anon_sym_STAR_EQ] = ACTIONS(5863), - [anon_sym_SLASH_EQ] = ACTIONS(5863), - [anon_sym_PERCENT_EQ] = ACTIONS(5863), - [anon_sym_PLUS_EQ] = ACTIONS(5863), - [anon_sym_DASH_EQ] = ACTIONS(5863), - [anon_sym_LT_LT_EQ] = ACTIONS(5863), - [anon_sym_GT_GT_EQ] = ACTIONS(5863), - [anon_sym_AMP_EQ] = ACTIONS(5863), - [anon_sym_CARET_EQ] = ACTIONS(5863), - [anon_sym_PIPE_EQ] = ACTIONS(5863), - [anon_sym_and_eq] = ACTIONS(5861), - [anon_sym_or_eq] = ACTIONS(5861), - [anon_sym_xor_eq] = ACTIONS(5861), - [anon_sym_LT_EQ_GT] = ACTIONS(5863), - [anon_sym_or] = ACTIONS(5861), - [anon_sym_and] = ACTIONS(5861), - [anon_sym_bitor] = ACTIONS(5861), - [anon_sym_xor] = ACTIONS(5861), - [anon_sym_bitand] = ACTIONS(5861), - [anon_sym_not_eq] = ACTIONS(5861), - [anon_sym_DASH_DASH] = ACTIONS(5863), - [anon_sym_PLUS_PLUS] = ACTIONS(5863), - [anon_sym_DOT] = ACTIONS(5861), - [anon_sym_DOT_STAR] = ACTIONS(5863), - [anon_sym_DASH_GT] = ACTIONS(5863), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5861), - [anon_sym_decltype] = ACTIONS(5861), + [2178] = { + [sym_identifier] = ACTIONS(5560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_RPAREN] = ACTIONS(5562), + [aux_sym_preproc_if_token2] = ACTIONS(5562), + [aux_sym_preproc_else_token1] = ACTIONS(5562), + [aux_sym_preproc_elif_token1] = ACTIONS(5560), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5562), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5562), + [anon_sym_LPAREN2] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5560), + [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5560), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_EQ] = ACTIONS(5560), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5562), + [anon_sym___attribute__] = ACTIONS(5560), + [anon_sym_COLON_COLON] = ACTIONS(5422), + [anon_sym_LBRACE] = ACTIONS(5562), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_RBRACK] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(5560), + [anon_sym_COLON] = ACTIONS(5560), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_STAR_EQ] = ACTIONS(5562), + [anon_sym_SLASH_EQ] = ACTIONS(5562), + [anon_sym_PERCENT_EQ] = ACTIONS(5562), + [anon_sym_PLUS_EQ] = ACTIONS(5562), + [anon_sym_DASH_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_EQ] = ACTIONS(5562), + [anon_sym_GT_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP_EQ] = ACTIONS(5562), + [anon_sym_CARET_EQ] = ACTIONS(5562), + [anon_sym_PIPE_EQ] = ACTIONS(5562), + [anon_sym_and_eq] = ACTIONS(5560), + [anon_sym_or_eq] = ACTIONS(5560), + [anon_sym_xor_eq] = ACTIONS(5560), + [anon_sym_LT_EQ_GT] = ACTIONS(5562), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_bitor] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_bitand] = ACTIONS(5560), + [anon_sym_not_eq] = ACTIONS(5560), + [anon_sym_DASH_DASH] = ACTIONS(5562), + [anon_sym_PLUS_PLUS] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_DOT_STAR] = ACTIONS(5562), + [anon_sym_DASH_GT] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5560), + [anon_sym_decltype] = ACTIONS(5560), + [anon_sym_final] = ACTIONS(5560), + [anon_sym_override] = ACTIONS(5560), }, - [2342] = { - [sym_identifier] = ACTIONS(5432), - [aux_sym_preproc_def_token1] = ACTIONS(5432), - [aux_sym_preproc_if_token1] = ACTIONS(5432), - [aux_sym_preproc_if_token2] = ACTIONS(5432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5432), - [aux_sym_preproc_else_token1] = ACTIONS(5432), - [aux_sym_preproc_elif_token1] = ACTIONS(5432), - [sym_preproc_directive] = ACTIONS(5432), - [anon_sym_LPAREN2] = ACTIONS(5434), - [anon_sym_TILDE] = ACTIONS(5434), - [anon_sym_STAR] = ACTIONS(5434), - [anon_sym_AMP_AMP] = ACTIONS(5434), - [anon_sym_AMP] = ACTIONS(5432), - [anon_sym___extension__] = ACTIONS(5432), - [anon_sym_typedef] = ACTIONS(5432), - [anon_sym_extern] = ACTIONS(5432), - [anon_sym___attribute__] = ACTIONS(5432), - [anon_sym_COLON_COLON] = ACTIONS(5434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5434), - [anon_sym___declspec] = ACTIONS(5432), - [anon_sym___based] = ACTIONS(5432), - [anon_sym_signed] = ACTIONS(5432), - [anon_sym_unsigned] = ACTIONS(5432), - [anon_sym_long] = ACTIONS(5432), - [anon_sym_short] = ACTIONS(5432), - [anon_sym_LBRACK] = ACTIONS(5432), - [anon_sym_static] = ACTIONS(5432), - [anon_sym_register] = ACTIONS(5432), - [anon_sym_inline] = ACTIONS(5432), - [anon_sym___inline] = ACTIONS(5432), - [anon_sym___inline__] = ACTIONS(5432), - [anon_sym___forceinline] = ACTIONS(5432), - [anon_sym_thread_local] = ACTIONS(5432), - [anon_sym___thread] = ACTIONS(5432), - [anon_sym_const] = ACTIONS(5432), - [anon_sym_constexpr] = ACTIONS(5432), - [anon_sym_volatile] = ACTIONS(5432), - [anon_sym_restrict] = ACTIONS(5432), - [anon_sym___restrict__] = ACTIONS(5432), - [anon_sym__Atomic] = ACTIONS(5432), - [anon_sym__Noreturn] = ACTIONS(5432), - [anon_sym_noreturn] = ACTIONS(5432), - [anon_sym_mutable] = ACTIONS(5432), - [anon_sym_constinit] = ACTIONS(5432), - [anon_sym_consteval] = ACTIONS(5432), - [sym_primitive_type] = ACTIONS(5432), - [anon_sym_enum] = ACTIONS(5432), - [anon_sym_class] = ACTIONS(5432), - [anon_sym_struct] = ACTIONS(5432), - [anon_sym_union] = ACTIONS(5432), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5432), - [anon_sym_decltype] = ACTIONS(5432), - [anon_sym_virtual] = ACTIONS(5432), - [anon_sym_alignas] = ACTIONS(5432), - [anon_sym_explicit] = ACTIONS(5432), - [anon_sym_typename] = ACTIONS(5432), - [anon_sym_template] = ACTIONS(5432), - [anon_sym_operator] = ACTIONS(5432), - [anon_sym_friend] = ACTIONS(5432), - [anon_sym_public] = ACTIONS(5432), - [anon_sym_private] = ACTIONS(5432), - [anon_sym_protected] = ACTIONS(5432), - [anon_sym_using] = ACTIONS(5432), - [anon_sym_static_assert] = ACTIONS(5432), + [2179] = { + [sym_identifier] = ACTIONS(5560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_RPAREN] = ACTIONS(5562), + [anon_sym_LPAREN2] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_STAR] = ACTIONS(5562), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5562), + [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5562), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_EQ] = ACTIONS(5560), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5562), + [anon_sym_GT_GT] = ACTIONS(5562), + [anon_sym_SEMI] = ACTIONS(5562), + [anon_sym___extension__] = ACTIONS(5560), + [anon_sym___attribute__] = ACTIONS(5560), + [anon_sym_COLON_COLON] = ACTIONS(5422), + [anon_sym___based] = ACTIONS(5560), + [anon_sym_LBRACE] = ACTIONS(5562), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_signed] = ACTIONS(5560), + [anon_sym_unsigned] = ACTIONS(5560), + [anon_sym_long] = ACTIONS(5560), + [anon_sym_short] = ACTIONS(5560), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_RBRACK] = ACTIONS(5562), + [anon_sym_const] = ACTIONS(5560), + [anon_sym_constexpr] = ACTIONS(5560), + [anon_sym_volatile] = ACTIONS(5560), + [anon_sym_restrict] = ACTIONS(5560), + [anon_sym___restrict__] = ACTIONS(5560), + [anon_sym__Atomic] = ACTIONS(5560), + [anon_sym__Noreturn] = ACTIONS(5560), + [anon_sym_noreturn] = ACTIONS(5560), + [anon_sym_mutable] = ACTIONS(5560), + [anon_sym_constinit] = ACTIONS(5560), + [anon_sym_consteval] = ACTIONS(5560), + [sym_primitive_type] = ACTIONS(5560), + [anon_sym_COLON] = ACTIONS(5560), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_LT_EQ_GT] = ACTIONS(5562), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_bitor] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_bitand] = ACTIONS(5560), + [anon_sym_not_eq] = ACTIONS(5560), + [anon_sym_DASH_DASH] = ACTIONS(5562), + [anon_sym_PLUS_PLUS] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_DOT_STAR] = ACTIONS(5562), + [anon_sym_DASH_GT] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5560), + [anon_sym_decltype] = ACTIONS(5560), + [anon_sym_final] = ACTIONS(5560), + [anon_sym_override] = ACTIONS(5560), + [anon_sym_requires] = ACTIONS(5560), }, - [2343] = { + [2180] = { + [sym_identifier] = ACTIONS(5560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_RPAREN] = ACTIONS(5562), + [anon_sym_LPAREN2] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_STAR] = ACTIONS(5562), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5562), + [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5562), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_EQ] = ACTIONS(5560), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5562), + [anon_sym_GT_GT] = ACTIONS(5562), + [anon_sym_SEMI] = ACTIONS(5562), + [anon_sym___extension__] = ACTIONS(5560), + [anon_sym___attribute__] = ACTIONS(5560), + [anon_sym_COLON_COLON] = ACTIONS(5422), + [anon_sym___based] = ACTIONS(5560), + [anon_sym_LBRACE] = ACTIONS(5562), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_signed] = ACTIONS(5560), + [anon_sym_unsigned] = ACTIONS(5560), + [anon_sym_long] = ACTIONS(5560), + [anon_sym_short] = ACTIONS(5560), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_RBRACK] = ACTIONS(5562), + [anon_sym_const] = ACTIONS(5560), + [anon_sym_constexpr] = ACTIONS(5560), + [anon_sym_volatile] = ACTIONS(5560), + [anon_sym_restrict] = ACTIONS(5560), + [anon_sym___restrict__] = ACTIONS(5560), + [anon_sym__Atomic] = ACTIONS(5560), + [anon_sym__Noreturn] = ACTIONS(5560), + [anon_sym_noreturn] = ACTIONS(5560), + [anon_sym_mutable] = ACTIONS(5560), + [anon_sym_constinit] = ACTIONS(5560), + [anon_sym_consteval] = ACTIONS(5560), + [sym_primitive_type] = ACTIONS(5560), + [anon_sym_COLON] = ACTIONS(5560), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_LT_EQ_GT] = ACTIONS(5562), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_bitor] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_bitand] = ACTIONS(5560), + [anon_sym_not_eq] = ACTIONS(5560), + [anon_sym_DASH_DASH] = ACTIONS(5562), + [anon_sym_PLUS_PLUS] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_DOT_STAR] = ACTIONS(5562), + [anon_sym_DASH_GT] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5560), + [anon_sym_decltype] = ACTIONS(5560), + [anon_sym_final] = ACTIONS(5560), + [anon_sym_override] = ACTIONS(5560), + [anon_sym_requires] = ACTIONS(5560), + }, + [2181] = { + [sym_identifier] = ACTIONS(5531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5533), + [anon_sym_COMMA] = ACTIONS(5533), + [anon_sym_RPAREN] = ACTIONS(5533), + [aux_sym_preproc_if_token2] = ACTIONS(5533), + [aux_sym_preproc_else_token1] = ACTIONS(5533), + [aux_sym_preproc_elif_token1] = ACTIONS(5531), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5533), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5533), + [anon_sym_LPAREN2] = ACTIONS(5533), + [anon_sym_DASH] = ACTIONS(5531), + [anon_sym_PLUS] = ACTIONS(5531), + [anon_sym_STAR] = ACTIONS(5531), + [anon_sym_SLASH] = ACTIONS(5531), + [anon_sym_PERCENT] = ACTIONS(5531), + [anon_sym_PIPE_PIPE] = ACTIONS(5533), + [anon_sym_AMP_AMP] = ACTIONS(5533), + [anon_sym_PIPE] = ACTIONS(5531), + [anon_sym_CARET] = ACTIONS(5531), + [anon_sym_AMP] = ACTIONS(5531), + [anon_sym_EQ_EQ] = ACTIONS(5533), + [anon_sym_BANG_EQ] = ACTIONS(5533), + [anon_sym_GT] = ACTIONS(5531), + [anon_sym_GT_EQ] = ACTIONS(5533), + [anon_sym_LT_EQ] = ACTIONS(5531), + [anon_sym_LT] = ACTIONS(5531), + [anon_sym_LT_LT] = ACTIONS(5531), + [anon_sym_GT_GT] = ACTIONS(5531), + [anon_sym_SEMI] = ACTIONS(5533), + [anon_sym___attribute__] = ACTIONS(5531), + [anon_sym_COLON_COLON] = ACTIONS(5422), + [anon_sym_LBRACE] = ACTIONS(5533), + [anon_sym_RBRACE] = ACTIONS(5533), + [anon_sym_LBRACK] = ACTIONS(5533), + [anon_sym_RBRACK] = ACTIONS(5533), + [anon_sym_EQ] = ACTIONS(5531), + [anon_sym_COLON] = ACTIONS(5531), + [anon_sym_QMARK] = ACTIONS(5533), + [anon_sym_STAR_EQ] = ACTIONS(5533), + [anon_sym_SLASH_EQ] = ACTIONS(5533), + [anon_sym_PERCENT_EQ] = ACTIONS(5533), + [anon_sym_PLUS_EQ] = ACTIONS(5533), + [anon_sym_DASH_EQ] = ACTIONS(5533), + [anon_sym_LT_LT_EQ] = ACTIONS(5533), + [anon_sym_GT_GT_EQ] = ACTIONS(5533), + [anon_sym_AMP_EQ] = ACTIONS(5533), + [anon_sym_CARET_EQ] = ACTIONS(5533), + [anon_sym_PIPE_EQ] = ACTIONS(5533), + [anon_sym_and_eq] = ACTIONS(5531), + [anon_sym_or_eq] = ACTIONS(5531), + [anon_sym_xor_eq] = ACTIONS(5531), + [anon_sym_LT_EQ_GT] = ACTIONS(5533), + [anon_sym_or] = ACTIONS(5531), + [anon_sym_and] = ACTIONS(5531), + [anon_sym_bitor] = ACTIONS(5531), + [anon_sym_xor] = ACTIONS(5531), + [anon_sym_bitand] = ACTIONS(5531), + [anon_sym_not_eq] = ACTIONS(5531), + [anon_sym_DASH_DASH] = ACTIONS(5533), + [anon_sym_PLUS_PLUS] = ACTIONS(5533), + [anon_sym_DOT] = ACTIONS(5531), + [anon_sym_DOT_STAR] = ACTIONS(5533), + [anon_sym_DASH_GT] = ACTIONS(5533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5531), + [anon_sym_decltype] = ACTIONS(5531), + [anon_sym_final] = ACTIONS(5531), + [anon_sym_override] = ACTIONS(5531), + }, + [2182] = { + [sym_identifier] = ACTIONS(5028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5030), + [anon_sym_COMMA] = ACTIONS(5030), + [anon_sym_RPAREN] = ACTIONS(5030), + [anon_sym_LPAREN2] = ACTIONS(5030), + [anon_sym_DASH] = ACTIONS(5028), + [anon_sym_PLUS] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_SLASH] = ACTIONS(5028), + [anon_sym_PERCENT] = ACTIONS(5030), + [anon_sym_PIPE_PIPE] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5030), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_CARET] = ACTIONS(5030), + [anon_sym_AMP] = ACTIONS(5028), + [anon_sym_EQ_EQ] = ACTIONS(5030), + [anon_sym_BANG_EQ] = ACTIONS(5030), + [anon_sym_GT] = ACTIONS(5028), + [anon_sym_GT_EQ] = ACTIONS(5030), + [anon_sym_LT_EQ] = ACTIONS(5028), + [anon_sym_LT] = ACTIONS(5028), + [anon_sym_LT_LT] = ACTIONS(5030), + [anon_sym_GT_GT] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5030), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym___attribute__] = ACTIONS(5028), + [anon_sym_COLON_COLON] = ACTIONS(5030), + [anon_sym___based] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(5030), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_signed] = ACTIONS(5028), + [anon_sym_unsigned] = ACTIONS(5028), + [anon_sym_long] = ACTIONS(5028), + [anon_sym_short] = ACTIONS(5028), + [anon_sym_LBRACK] = ACTIONS(5030), + [anon_sym_RBRACK] = ACTIONS(5030), + [anon_sym_const] = ACTIONS(5028), + [anon_sym_constexpr] = ACTIONS(5028), + [anon_sym_volatile] = ACTIONS(5028), + [anon_sym_restrict] = ACTIONS(5028), + [anon_sym___restrict__] = ACTIONS(5028), + [anon_sym__Atomic] = ACTIONS(5028), + [anon_sym__Noreturn] = ACTIONS(5028), + [anon_sym_noreturn] = ACTIONS(5028), + [anon_sym_mutable] = ACTIONS(5028), + [anon_sym_constinit] = ACTIONS(5028), + [anon_sym_consteval] = ACTIONS(5028), + [sym_primitive_type] = ACTIONS(5028), + [anon_sym_COLON] = ACTIONS(5028), + [anon_sym_QMARK] = ACTIONS(5030), + [anon_sym_LT_EQ_GT] = ACTIONS(5030), + [anon_sym_or] = ACTIONS(5028), + [anon_sym_and] = ACTIONS(5028), + [anon_sym_bitor] = ACTIONS(5028), + [anon_sym_xor] = ACTIONS(5028), + [anon_sym_bitand] = ACTIONS(5028), + [anon_sym_not_eq] = ACTIONS(5028), + [anon_sym_DASH_DASH] = ACTIONS(5030), + [anon_sym_PLUS_PLUS] = ACTIONS(5030), + [anon_sym_DOT] = ACTIONS(5028), + [anon_sym_DOT_STAR] = ACTIONS(5030), + [anon_sym_DASH_GT] = ACTIONS(5030), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5028), + [anon_sym_decltype] = ACTIONS(5028), + [anon_sym_final] = ACTIONS(5028), + [anon_sym_override] = ACTIONS(5028), + [anon_sym_requires] = ACTIONS(5028), + }, + [2183] = { + [sym_identifier] = ACTIONS(5003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LPAREN2] = ACTIONS(5005), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5005), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_PERCENT] = ACTIONS(5005), + [anon_sym_PIPE_PIPE] = ACTIONS(5005), + [anon_sym_AMP_AMP] = ACTIONS(5005), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5005), + [anon_sym_AMP] = ACTIONS(5003), + [anon_sym_EQ_EQ] = ACTIONS(5005), + [anon_sym_BANG_EQ] = ACTIONS(5005), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_GT_EQ] = ACTIONS(5005), + [anon_sym_LT_EQ] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_LT_LT] = ACTIONS(5005), + [anon_sym_GT_GT] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5005), + [anon_sym___extension__] = ACTIONS(5003), + [anon_sym___attribute__] = ACTIONS(5003), + [anon_sym_COLON_COLON] = ACTIONS(5005), + [anon_sym___based] = ACTIONS(5003), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_RBRACE] = ACTIONS(5005), + [anon_sym_signed] = ACTIONS(5003), + [anon_sym_unsigned] = ACTIONS(5003), + [anon_sym_long] = ACTIONS(5003), + [anon_sym_short] = ACTIONS(5003), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_RBRACK] = ACTIONS(5005), + [anon_sym_const] = ACTIONS(5003), + [anon_sym_constexpr] = ACTIONS(5003), + [anon_sym_volatile] = ACTIONS(5003), + [anon_sym_restrict] = ACTIONS(5003), + [anon_sym___restrict__] = ACTIONS(5003), + [anon_sym__Atomic] = ACTIONS(5003), + [anon_sym__Noreturn] = ACTIONS(5003), + [anon_sym_noreturn] = ACTIONS(5003), + [anon_sym_mutable] = ACTIONS(5003), + [anon_sym_constinit] = ACTIONS(5003), + [anon_sym_consteval] = ACTIONS(5003), + [sym_primitive_type] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_QMARK] = ACTIONS(5005), + [anon_sym_LT_EQ_GT] = ACTIONS(5005), + [anon_sym_or] = ACTIONS(5003), + [anon_sym_and] = ACTIONS(5003), + [anon_sym_bitor] = ACTIONS(5003), + [anon_sym_xor] = ACTIONS(5003), + [anon_sym_bitand] = ACTIONS(5003), + [anon_sym_not_eq] = ACTIONS(5003), + [anon_sym_DASH_DASH] = ACTIONS(5005), + [anon_sym_PLUS_PLUS] = ACTIONS(5005), + [anon_sym_DOT] = ACTIONS(5003), + [anon_sym_DOT_STAR] = ACTIONS(5005), + [anon_sym_DASH_GT] = ACTIONS(5005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5003), + [anon_sym_decltype] = ACTIONS(5003), + [anon_sym_final] = ACTIONS(5003), + [anon_sym_override] = ACTIONS(5003), + [anon_sym_requires] = ACTIONS(5003), + }, + [2184] = { + [sym_identifier] = ACTIONS(4995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LPAREN2] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4997), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_PERCENT] = ACTIONS(4997), + [anon_sym_PIPE_PIPE] = ACTIONS(4997), + [anon_sym_AMP_AMP] = ACTIONS(4997), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4997), + [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_EQ_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_GT_EQ] = ACTIONS(4997), + [anon_sym_LT_EQ] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_LT_LT] = ACTIONS(4997), + [anon_sym_GT_GT] = ACTIONS(4997), + [anon_sym_SEMI] = ACTIONS(4997), + [anon_sym___extension__] = ACTIONS(4995), + [anon_sym___attribute__] = ACTIONS(4995), + [anon_sym_COLON_COLON] = ACTIONS(4997), + [anon_sym___based] = ACTIONS(4995), + [anon_sym_LBRACE] = ACTIONS(4997), + [anon_sym_RBRACE] = ACTIONS(4997), + [anon_sym_signed] = ACTIONS(4995), + [anon_sym_unsigned] = ACTIONS(4995), + [anon_sym_long] = ACTIONS(4995), + [anon_sym_short] = ACTIONS(4995), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_RBRACK] = ACTIONS(4997), + [anon_sym_const] = ACTIONS(4995), + [anon_sym_constexpr] = ACTIONS(4995), + [anon_sym_volatile] = ACTIONS(4995), + [anon_sym_restrict] = ACTIONS(4995), + [anon_sym___restrict__] = ACTIONS(4995), + [anon_sym__Atomic] = ACTIONS(4995), + [anon_sym__Noreturn] = ACTIONS(4995), + [anon_sym_noreturn] = ACTIONS(4995), + [anon_sym_mutable] = ACTIONS(4995), + [anon_sym_constinit] = ACTIONS(4995), + [anon_sym_consteval] = ACTIONS(4995), + [sym_primitive_type] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_QMARK] = ACTIONS(4997), + [anon_sym_LT_EQ_GT] = ACTIONS(4997), + [anon_sym_or] = ACTIONS(4995), + [anon_sym_and] = ACTIONS(4995), + [anon_sym_bitor] = ACTIONS(4995), + [anon_sym_xor] = ACTIONS(4995), + [anon_sym_bitand] = ACTIONS(4995), + [anon_sym_not_eq] = ACTIONS(4995), + [anon_sym_DASH_DASH] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4997), + [anon_sym_DOT] = ACTIONS(4995), + [anon_sym_DOT_STAR] = ACTIONS(4997), + [anon_sym_DASH_GT] = ACTIONS(4997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4995), + [anon_sym_decltype] = ACTIONS(4995), + [anon_sym_final] = ACTIONS(4995), + [anon_sym_override] = ACTIONS(4995), + [anon_sym_requires] = ACTIONS(4995), + }, + [2185] = { + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token2] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [aux_sym_preproc_else_token1] = ACTIONS(3223), + [aux_sym_preproc_elif_token1] = ACTIONS(3223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_friend] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + }, + [2186] = { [sym_identifier] = ACTIONS(3227), [aux_sym_preproc_def_token1] = ACTIONS(3227), [aux_sym_preproc_if_token1] = ACTIONS(3227), @@ -350017,6 +340548,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), [aux_sym_preproc_else_token1] = ACTIONS(3227), [aux_sym_preproc_elif_token1] = ACTIONS(3227), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3227), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3227), [sym_preproc_directive] = ACTIONS(3227), [anon_sym_LPAREN2] = ACTIONS(3229), [anon_sym_TILDE] = ACTIONS(3229), @@ -350076,382 +340609,1364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(3227), [anon_sym_static_assert] = ACTIONS(3227), }, - [2344] = { - [sym_identifier] = ACTIONS(3231), - [aux_sym_preproc_def_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token1] = ACTIONS(3231), - [aux_sym_preproc_if_token2] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3231), - [aux_sym_preproc_else_token1] = ACTIONS(3231), - [aux_sym_preproc_elif_token1] = ACTIONS(3231), - [sym_preproc_directive] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym___extension__] = ACTIONS(3231), - [anon_sym_typedef] = ACTIONS(3231), - [anon_sym_extern] = ACTIONS(3231), - [anon_sym___attribute__] = ACTIONS(3231), - [anon_sym_COLON_COLON] = ACTIONS(3233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3233), - [anon_sym___declspec] = ACTIONS(3231), - [anon_sym___based] = ACTIONS(3231), - [anon_sym_signed] = ACTIONS(3231), - [anon_sym_unsigned] = ACTIONS(3231), - [anon_sym_long] = ACTIONS(3231), - [anon_sym_short] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_register] = ACTIONS(3231), - [anon_sym_inline] = ACTIONS(3231), - [anon_sym___inline] = ACTIONS(3231), - [anon_sym___inline__] = ACTIONS(3231), - [anon_sym___forceinline] = ACTIONS(3231), - [anon_sym_thread_local] = ACTIONS(3231), - [anon_sym___thread] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_constexpr] = ACTIONS(3231), - [anon_sym_volatile] = ACTIONS(3231), - [anon_sym_restrict] = ACTIONS(3231), - [anon_sym___restrict__] = ACTIONS(3231), - [anon_sym__Atomic] = ACTIONS(3231), - [anon_sym__Noreturn] = ACTIONS(3231), - [anon_sym_noreturn] = ACTIONS(3231), - [anon_sym_mutable] = ACTIONS(3231), - [anon_sym_constinit] = ACTIONS(3231), - [anon_sym_consteval] = ACTIONS(3231), - [sym_primitive_type] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3231), - [anon_sym_decltype] = ACTIONS(3231), - [anon_sym_virtual] = ACTIONS(3231), - [anon_sym_alignas] = ACTIONS(3231), - [anon_sym_explicit] = ACTIONS(3231), - [anon_sym_typename] = ACTIONS(3231), - [anon_sym_template] = ACTIONS(3231), - [anon_sym_operator] = ACTIONS(3231), - [anon_sym_friend] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_static_assert] = ACTIONS(3231), + [2187] = { + [sym_identifier] = ACTIONS(3082), + [aux_sym_preproc_def_token1] = ACTIONS(3082), + [aux_sym_preproc_if_token1] = ACTIONS(3082), + [aux_sym_preproc_if_token2] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), + [aux_sym_preproc_else_token1] = ACTIONS(3082), + [aux_sym_preproc_elif_token1] = ACTIONS(3082), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3082), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3082), + [sym_preproc_directive] = ACTIONS(3082), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym___extension__] = ACTIONS(3082), + [anon_sym_typedef] = ACTIONS(3082), + [anon_sym_extern] = ACTIONS(3082), + [anon_sym___attribute__] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), + [anon_sym___declspec] = ACTIONS(3082), + [anon_sym___based] = ACTIONS(3082), + [anon_sym_signed] = ACTIONS(3082), + [anon_sym_unsigned] = ACTIONS(3082), + [anon_sym_long] = ACTIONS(3082), + [anon_sym_short] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_register] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym___inline] = ACTIONS(3082), + [anon_sym___inline__] = ACTIONS(3082), + [anon_sym___forceinline] = ACTIONS(3082), + [anon_sym_thread_local] = ACTIONS(3082), + [anon_sym___thread] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_constexpr] = ACTIONS(3082), + [anon_sym_volatile] = ACTIONS(3082), + [anon_sym_restrict] = ACTIONS(3082), + [anon_sym___restrict__] = ACTIONS(3082), + [anon_sym__Atomic] = ACTIONS(3082), + [anon_sym__Noreturn] = ACTIONS(3082), + [anon_sym_noreturn] = ACTIONS(3082), + [anon_sym_mutable] = ACTIONS(3082), + [anon_sym_constinit] = ACTIONS(3082), + [anon_sym_consteval] = ACTIONS(3082), + [sym_primitive_type] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_union] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3082), + [anon_sym_decltype] = ACTIONS(3082), + [anon_sym_virtual] = ACTIONS(3082), + [anon_sym_alignas] = ACTIONS(3082), + [anon_sym_explicit] = ACTIONS(3082), + [anon_sym_typename] = ACTIONS(3082), + [anon_sym_template] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_friend] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_static_assert] = ACTIONS(3082), }, - [2345] = { - [sym_identifier] = ACTIONS(5428), - [aux_sym_preproc_def_token1] = ACTIONS(5428), - [aux_sym_preproc_if_token1] = ACTIONS(5428), - [aux_sym_preproc_if_token2] = ACTIONS(5428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5428), - [aux_sym_preproc_else_token1] = ACTIONS(5428), - [aux_sym_preproc_elif_token1] = ACTIONS(5428), - [sym_preproc_directive] = ACTIONS(5428), - [anon_sym_LPAREN2] = ACTIONS(5430), - [anon_sym_TILDE] = ACTIONS(5430), - [anon_sym_STAR] = ACTIONS(5430), - [anon_sym_AMP_AMP] = ACTIONS(5430), - [anon_sym_AMP] = ACTIONS(5428), - [anon_sym___extension__] = ACTIONS(5428), - [anon_sym_typedef] = ACTIONS(5428), - [anon_sym_extern] = ACTIONS(5428), - [anon_sym___attribute__] = ACTIONS(5428), - [anon_sym_COLON_COLON] = ACTIONS(5430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5430), - [anon_sym___declspec] = ACTIONS(5428), - [anon_sym___based] = ACTIONS(5428), - [anon_sym_signed] = ACTIONS(5428), - [anon_sym_unsigned] = ACTIONS(5428), - [anon_sym_long] = ACTIONS(5428), - [anon_sym_short] = ACTIONS(5428), - [anon_sym_LBRACK] = ACTIONS(5428), - [anon_sym_static] = ACTIONS(5428), - [anon_sym_register] = ACTIONS(5428), - [anon_sym_inline] = ACTIONS(5428), - [anon_sym___inline] = ACTIONS(5428), - [anon_sym___inline__] = ACTIONS(5428), - [anon_sym___forceinline] = ACTIONS(5428), - [anon_sym_thread_local] = ACTIONS(5428), - [anon_sym___thread] = ACTIONS(5428), - [anon_sym_const] = ACTIONS(5428), - [anon_sym_constexpr] = ACTIONS(5428), - [anon_sym_volatile] = ACTIONS(5428), - [anon_sym_restrict] = ACTIONS(5428), - [anon_sym___restrict__] = ACTIONS(5428), - [anon_sym__Atomic] = ACTIONS(5428), - [anon_sym__Noreturn] = ACTIONS(5428), - [anon_sym_noreturn] = ACTIONS(5428), - [anon_sym_mutable] = ACTIONS(5428), - [anon_sym_constinit] = ACTIONS(5428), - [anon_sym_consteval] = ACTIONS(5428), - [sym_primitive_type] = ACTIONS(5428), - [anon_sym_enum] = ACTIONS(5428), - [anon_sym_class] = ACTIONS(5428), - [anon_sym_struct] = ACTIONS(5428), - [anon_sym_union] = ACTIONS(5428), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5428), - [anon_sym_decltype] = ACTIONS(5428), - [anon_sym_virtual] = ACTIONS(5428), - [anon_sym_alignas] = ACTIONS(5428), - [anon_sym_explicit] = ACTIONS(5428), - [anon_sym_typename] = ACTIONS(5428), - [anon_sym_template] = ACTIONS(5428), - [anon_sym_operator] = ACTIONS(5428), - [anon_sym_friend] = ACTIONS(5428), - [anon_sym_public] = ACTIONS(5428), - [anon_sym_private] = ACTIONS(5428), - [anon_sym_protected] = ACTIONS(5428), - [anon_sym_using] = ACTIONS(5428), - [anon_sym_static_assert] = ACTIONS(5428), + [2188] = { + [sym_identifier] = ACTIONS(5556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5558), + [anon_sym_COMMA] = ACTIONS(5558), + [anon_sym_RPAREN] = ACTIONS(5558), + [anon_sym_LPAREN2] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5556), + [anon_sym_PLUS] = ACTIONS(5556), + [anon_sym_STAR] = ACTIONS(5558), + [anon_sym_SLASH] = ACTIONS(5556), + [anon_sym_PERCENT] = ACTIONS(5558), + [anon_sym_PIPE_PIPE] = ACTIONS(5558), + [anon_sym_AMP_AMP] = ACTIONS(5558), + [anon_sym_PIPE] = ACTIONS(5556), + [anon_sym_CARET] = ACTIONS(5558), + [anon_sym_AMP] = ACTIONS(5556), + [anon_sym_EQ_EQ] = ACTIONS(5558), + [anon_sym_BANG_EQ] = ACTIONS(5558), + [anon_sym_GT] = ACTIONS(5556), + [anon_sym_GT_EQ] = ACTIONS(5558), + [anon_sym_LT_EQ] = ACTIONS(5556), + [anon_sym_LT] = ACTIONS(5556), + [anon_sym_LT_LT] = ACTIONS(5558), + [anon_sym_GT_GT] = ACTIONS(5558), + [anon_sym_SEMI] = ACTIONS(5558), + [anon_sym___extension__] = ACTIONS(5556), + [anon_sym___attribute__] = ACTIONS(5556), + [anon_sym_COLON_COLON] = ACTIONS(5558), + [anon_sym___based] = ACTIONS(5556), + [anon_sym_LBRACE] = ACTIONS(5558), + [anon_sym_RBRACE] = ACTIONS(5558), + [anon_sym_signed] = ACTIONS(5556), + [anon_sym_unsigned] = ACTIONS(5556), + [anon_sym_long] = ACTIONS(5556), + [anon_sym_short] = ACTIONS(5556), + [anon_sym_LBRACK] = ACTIONS(5558), + [anon_sym_RBRACK] = ACTIONS(5558), + [anon_sym_const] = ACTIONS(5556), + [anon_sym_constexpr] = ACTIONS(5556), + [anon_sym_volatile] = ACTIONS(5556), + [anon_sym_restrict] = ACTIONS(5556), + [anon_sym___restrict__] = ACTIONS(5556), + [anon_sym__Atomic] = ACTIONS(5556), + [anon_sym__Noreturn] = ACTIONS(5556), + [anon_sym_noreturn] = ACTIONS(5556), + [anon_sym_mutable] = ACTIONS(5556), + [anon_sym_constinit] = ACTIONS(5556), + [anon_sym_consteval] = ACTIONS(5556), + [sym_primitive_type] = ACTIONS(5556), + [anon_sym_COLON] = ACTIONS(5556), + [anon_sym_QMARK] = ACTIONS(5558), + [anon_sym_LT_EQ_GT] = ACTIONS(5558), + [anon_sym_or] = ACTIONS(5556), + [anon_sym_and] = ACTIONS(5556), + [anon_sym_bitor] = ACTIONS(5556), + [anon_sym_xor] = ACTIONS(5556), + [anon_sym_bitand] = ACTIONS(5556), + [anon_sym_not_eq] = ACTIONS(5556), + [anon_sym_DASH_DASH] = ACTIONS(5558), + [anon_sym_PLUS_PLUS] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(5556), + [anon_sym_DOT_STAR] = ACTIONS(5558), + [anon_sym_DASH_GT] = ACTIONS(5558), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5556), + [anon_sym_decltype] = ACTIONS(5556), + [anon_sym_final] = ACTIONS(5556), + [anon_sym_override] = ACTIONS(5556), + [anon_sym_requires] = ACTIONS(5556), }, - [2346] = { - [sym_identifier] = ACTIONS(5432), - [aux_sym_preproc_def_token1] = ACTIONS(5432), - [aux_sym_preproc_if_token1] = ACTIONS(5432), - [aux_sym_preproc_if_token2] = ACTIONS(5432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5432), - [aux_sym_preproc_else_token1] = ACTIONS(5432), - [aux_sym_preproc_elif_token1] = ACTIONS(5432), - [sym_preproc_directive] = ACTIONS(5432), - [anon_sym_LPAREN2] = ACTIONS(5434), - [anon_sym_TILDE] = ACTIONS(5434), - [anon_sym_STAR] = ACTIONS(5434), - [anon_sym_AMP_AMP] = ACTIONS(5434), - [anon_sym_AMP] = ACTIONS(5432), - [anon_sym___extension__] = ACTIONS(5432), - [anon_sym_typedef] = ACTIONS(5432), - [anon_sym_extern] = ACTIONS(5432), - [anon_sym___attribute__] = ACTIONS(5432), - [anon_sym_COLON_COLON] = ACTIONS(5434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5434), - [anon_sym___declspec] = ACTIONS(5432), - [anon_sym___based] = ACTIONS(5432), - [anon_sym_signed] = ACTIONS(5432), - [anon_sym_unsigned] = ACTIONS(5432), - [anon_sym_long] = ACTIONS(5432), - [anon_sym_short] = ACTIONS(5432), - [anon_sym_LBRACK] = ACTIONS(5432), - [anon_sym_static] = ACTIONS(5432), - [anon_sym_register] = ACTIONS(5432), - [anon_sym_inline] = ACTIONS(5432), - [anon_sym___inline] = ACTIONS(5432), - [anon_sym___inline__] = ACTIONS(5432), - [anon_sym___forceinline] = ACTIONS(5432), - [anon_sym_thread_local] = ACTIONS(5432), - [anon_sym___thread] = ACTIONS(5432), - [anon_sym_const] = ACTIONS(5432), - [anon_sym_constexpr] = ACTIONS(5432), - [anon_sym_volatile] = ACTIONS(5432), - [anon_sym_restrict] = ACTIONS(5432), - [anon_sym___restrict__] = ACTIONS(5432), - [anon_sym__Atomic] = ACTIONS(5432), - [anon_sym__Noreturn] = ACTIONS(5432), - [anon_sym_noreturn] = ACTIONS(5432), - [anon_sym_mutable] = ACTIONS(5432), - [anon_sym_constinit] = ACTIONS(5432), - [anon_sym_consteval] = ACTIONS(5432), - [sym_primitive_type] = ACTIONS(5432), - [anon_sym_enum] = ACTIONS(5432), - [anon_sym_class] = ACTIONS(5432), - [anon_sym_struct] = ACTIONS(5432), - [anon_sym_union] = ACTIONS(5432), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5432), - [anon_sym_decltype] = ACTIONS(5432), - [anon_sym_virtual] = ACTIONS(5432), - [anon_sym_alignas] = ACTIONS(5432), - [anon_sym_explicit] = ACTIONS(5432), - [anon_sym_typename] = ACTIONS(5432), - [anon_sym_template] = ACTIONS(5432), - [anon_sym_operator] = ACTIONS(5432), - [anon_sym_friend] = ACTIONS(5432), - [anon_sym_public] = ACTIONS(5432), - [anon_sym_private] = ACTIONS(5432), - [anon_sym_protected] = ACTIONS(5432), - [anon_sym_using] = ACTIONS(5432), - [anon_sym_static_assert] = ACTIONS(5432), + [2189] = { + [sym_identifier] = ACTIONS(3215), + [aux_sym_preproc_def_token1] = ACTIONS(3215), + [aux_sym_preproc_if_token1] = ACTIONS(3215), + [aux_sym_preproc_if_token2] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3215), + [aux_sym_preproc_else_token1] = ACTIONS(3215), + [aux_sym_preproc_elif_token1] = ACTIONS(3215), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3215), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3215), + [sym_preproc_directive] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_AMP_AMP] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(3215), + [anon_sym_typedef] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym___attribute__] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), + [anon_sym___declspec] = ACTIONS(3215), + [anon_sym___based] = ACTIONS(3215), + [anon_sym_signed] = ACTIONS(3215), + [anon_sym_unsigned] = ACTIONS(3215), + [anon_sym_long] = ACTIONS(3215), + [anon_sym_short] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_register] = ACTIONS(3215), + [anon_sym_inline] = ACTIONS(3215), + [anon_sym___inline] = ACTIONS(3215), + [anon_sym___inline__] = ACTIONS(3215), + [anon_sym___forceinline] = ACTIONS(3215), + [anon_sym_thread_local] = ACTIONS(3215), + [anon_sym___thread] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_constexpr] = ACTIONS(3215), + [anon_sym_volatile] = ACTIONS(3215), + [anon_sym_restrict] = ACTIONS(3215), + [anon_sym___restrict__] = ACTIONS(3215), + [anon_sym__Atomic] = ACTIONS(3215), + [anon_sym__Noreturn] = ACTIONS(3215), + [anon_sym_noreturn] = ACTIONS(3215), + [anon_sym_mutable] = ACTIONS(3215), + [anon_sym_constinit] = ACTIONS(3215), + [anon_sym_consteval] = ACTIONS(3215), + [sym_primitive_type] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3215), + [anon_sym_union] = ACTIONS(3215), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3215), + [anon_sym_decltype] = ACTIONS(3215), + [anon_sym_virtual] = ACTIONS(3215), + [anon_sym_alignas] = ACTIONS(3215), + [anon_sym_explicit] = ACTIONS(3215), + [anon_sym_typename] = ACTIONS(3215), + [anon_sym_template] = ACTIONS(3215), + [anon_sym_operator] = ACTIONS(3215), + [anon_sym_friend] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_private] = ACTIONS(3215), + [anon_sym_protected] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_static_assert] = ACTIONS(3215), }, - [2347] = { - [sym_identifier] = ACTIONS(5444), - [aux_sym_preproc_def_token1] = ACTIONS(5444), - [aux_sym_preproc_if_token1] = ACTIONS(5444), - [aux_sym_preproc_if_token2] = ACTIONS(5444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5444), - [aux_sym_preproc_else_token1] = ACTIONS(5444), - [aux_sym_preproc_elif_token1] = ACTIONS(5444), - [sym_preproc_directive] = ACTIONS(5444), - [anon_sym_LPAREN2] = ACTIONS(5446), - [anon_sym_TILDE] = ACTIONS(5446), - [anon_sym_STAR] = ACTIONS(5446), - [anon_sym_AMP_AMP] = ACTIONS(5446), - [anon_sym_AMP] = ACTIONS(5444), - [anon_sym___extension__] = ACTIONS(5444), - [anon_sym_typedef] = ACTIONS(5444), - [anon_sym_extern] = ACTIONS(5444), - [anon_sym___attribute__] = ACTIONS(5444), - [anon_sym_COLON_COLON] = ACTIONS(5446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5446), - [anon_sym___declspec] = ACTIONS(5444), - [anon_sym___based] = ACTIONS(5444), - [anon_sym_signed] = ACTIONS(5444), - [anon_sym_unsigned] = ACTIONS(5444), - [anon_sym_long] = ACTIONS(5444), - [anon_sym_short] = ACTIONS(5444), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_static] = ACTIONS(5444), - [anon_sym_register] = ACTIONS(5444), - [anon_sym_inline] = ACTIONS(5444), - [anon_sym___inline] = ACTIONS(5444), - [anon_sym___inline__] = ACTIONS(5444), - [anon_sym___forceinline] = ACTIONS(5444), - [anon_sym_thread_local] = ACTIONS(5444), - [anon_sym___thread] = ACTIONS(5444), - [anon_sym_const] = ACTIONS(5444), - [anon_sym_constexpr] = ACTIONS(5444), - [anon_sym_volatile] = ACTIONS(5444), - [anon_sym_restrict] = ACTIONS(5444), - [anon_sym___restrict__] = ACTIONS(5444), - [anon_sym__Atomic] = ACTIONS(5444), - [anon_sym__Noreturn] = ACTIONS(5444), - [anon_sym_noreturn] = ACTIONS(5444), - [anon_sym_mutable] = ACTIONS(5444), - [anon_sym_constinit] = ACTIONS(5444), - [anon_sym_consteval] = ACTIONS(5444), - [sym_primitive_type] = ACTIONS(5444), - [anon_sym_enum] = ACTIONS(5444), - [anon_sym_class] = ACTIONS(5444), - [anon_sym_struct] = ACTIONS(5444), - [anon_sym_union] = ACTIONS(5444), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5444), - [anon_sym_decltype] = ACTIONS(5444), - [anon_sym_virtual] = ACTIONS(5444), - [anon_sym_alignas] = ACTIONS(5444), - [anon_sym_explicit] = ACTIONS(5444), - [anon_sym_typename] = ACTIONS(5444), - [anon_sym_template] = ACTIONS(5444), - [anon_sym_operator] = ACTIONS(5444), - [anon_sym_friend] = ACTIONS(5444), - [anon_sym_public] = ACTIONS(5444), - [anon_sym_private] = ACTIONS(5444), - [anon_sym_protected] = ACTIONS(5444), - [anon_sym_using] = ACTIONS(5444), - [anon_sym_static_assert] = ACTIONS(5444), + [2190] = { + [sym_identifier] = ACTIONS(3262), + [aux_sym_preproc_def_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token2] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3262), + [aux_sym_preproc_else_token1] = ACTIONS(3262), + [aux_sym_preproc_elif_token1] = ACTIONS(3262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym___extension__] = ACTIONS(3262), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3264), + [anon_sym___declspec] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3262), + [anon_sym_signed] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym___inline] = ACTIONS(3262), + [anon_sym___inline__] = ACTIONS(3262), + [anon_sym___forceinline] = ACTIONS(3262), + [anon_sym_thread_local] = ACTIONS(3262), + [anon_sym___thread] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_virtual] = ACTIONS(3262), + [anon_sym_alignas] = ACTIONS(3262), + [anon_sym_explicit] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3262), + [anon_sym_template] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3262), + [anon_sym_friend] = ACTIONS(3262), + [anon_sym_public] = ACTIONS(3262), + [anon_sym_private] = ACTIONS(3262), + [anon_sym_protected] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_static_assert] = ACTIONS(3262), }, - [2348] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(5316), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_friend] = ACTIONS(2144), - [anon_sym_public] = ACTIONS(2144), - [anon_sym_private] = ACTIONS(2144), - [anon_sym_protected] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), + [2191] = { + [sym_identifier] = ACTIONS(5035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5037), + [anon_sym_COMMA] = ACTIONS(5037), + [anon_sym_RPAREN] = ACTIONS(5037), + [anon_sym_LPAREN2] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5035), + [anon_sym_STAR] = ACTIONS(5037), + [anon_sym_SLASH] = ACTIONS(5035), + [anon_sym_PERCENT] = ACTIONS(5037), + [anon_sym_PIPE_PIPE] = ACTIONS(5037), + [anon_sym_AMP_AMP] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5035), + [anon_sym_CARET] = ACTIONS(5037), + [anon_sym_AMP] = ACTIONS(5035), + [anon_sym_EQ_EQ] = ACTIONS(5037), + [anon_sym_BANG_EQ] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5035), + [anon_sym_GT_EQ] = ACTIONS(5037), + [anon_sym_LT_EQ] = ACTIONS(5035), + [anon_sym_LT] = ACTIONS(5035), + [anon_sym_LT_LT] = ACTIONS(5037), + [anon_sym_GT_GT] = ACTIONS(5037), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym___extension__] = ACTIONS(5035), + [anon_sym___attribute__] = ACTIONS(5035), + [anon_sym_COLON_COLON] = ACTIONS(5037), + [anon_sym___based] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_signed] = ACTIONS(5035), + [anon_sym_unsigned] = ACTIONS(5035), + [anon_sym_long] = ACTIONS(5035), + [anon_sym_short] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5037), + [anon_sym_RBRACK] = ACTIONS(5037), + [anon_sym_const] = ACTIONS(5035), + [anon_sym_constexpr] = ACTIONS(5035), + [anon_sym_volatile] = ACTIONS(5035), + [anon_sym_restrict] = ACTIONS(5035), + [anon_sym___restrict__] = ACTIONS(5035), + [anon_sym__Atomic] = ACTIONS(5035), + [anon_sym__Noreturn] = ACTIONS(5035), + [anon_sym_noreturn] = ACTIONS(5035), + [anon_sym_mutable] = ACTIONS(5035), + [anon_sym_constinit] = ACTIONS(5035), + [anon_sym_consteval] = ACTIONS(5035), + [sym_primitive_type] = ACTIONS(5035), + [anon_sym_COLON] = ACTIONS(5035), + [anon_sym_QMARK] = ACTIONS(5037), + [anon_sym_LT_EQ_GT] = ACTIONS(5037), + [anon_sym_or] = ACTIONS(5035), + [anon_sym_and] = ACTIONS(5035), + [anon_sym_bitor] = ACTIONS(5035), + [anon_sym_xor] = ACTIONS(5035), + [anon_sym_bitand] = ACTIONS(5035), + [anon_sym_not_eq] = ACTIONS(5035), + [anon_sym_DASH_DASH] = ACTIONS(5037), + [anon_sym_PLUS_PLUS] = ACTIONS(5037), + [anon_sym_DOT] = ACTIONS(5035), + [anon_sym_DOT_STAR] = ACTIONS(5037), + [anon_sym_DASH_GT] = ACTIONS(5037), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5035), + [anon_sym_decltype] = ACTIONS(5035), + [anon_sym_final] = ACTIONS(5035), + [anon_sym_override] = ACTIONS(5035), + [anon_sym_requires] = ACTIONS(5035), }, - [2349] = { - [sym__declaration_modifiers] = STATE(3960), - [sym_attribute_specifier] = STATE(3960), - [sym_attribute_declaration] = STATE(3960), - [sym_ms_declspec_modifier] = STATE(3960), - [sym_storage_class_specifier] = STATE(3960), - [sym_type_qualifier] = STATE(3960), - [sym__type_specifier] = STATE(4597), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(3960), - [sym_alignas_specifier] = STATE(3960), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7036), - [sym_qualified_type_identifier] = STATE(3383), - [aux_sym__declaration_specifiers_repeat1] = STATE(3960), - [aux_sym_sized_type_specifier_repeat1] = STATE(3663), - [sym_identifier] = ACTIONS(3930), + [2192] = { + [sym_identifier] = ACTIONS(4999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_LPAREN2] = ACTIONS(5001), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(5001), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_PERCENT] = ACTIONS(5001), + [anon_sym_PIPE_PIPE] = ACTIONS(5001), + [anon_sym_AMP_AMP] = ACTIONS(5001), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(5001), + [anon_sym_AMP] = ACTIONS(4999), + [anon_sym_EQ_EQ] = ACTIONS(5001), + [anon_sym_BANG_EQ] = ACTIONS(5001), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_GT_EQ] = ACTIONS(5001), + [anon_sym_LT_EQ] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_LT_LT] = ACTIONS(5001), + [anon_sym_GT_GT] = ACTIONS(5001), + [anon_sym_SEMI] = ACTIONS(5001), + [anon_sym___extension__] = ACTIONS(4999), + [anon_sym___attribute__] = ACTIONS(4999), + [anon_sym_COLON_COLON] = ACTIONS(5001), + [anon_sym___based] = ACTIONS(4999), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_RBRACE] = ACTIONS(5001), + [anon_sym_signed] = ACTIONS(4999), + [anon_sym_unsigned] = ACTIONS(4999), + [anon_sym_long] = ACTIONS(4999), + [anon_sym_short] = ACTIONS(4999), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_RBRACK] = ACTIONS(5001), + [anon_sym_const] = ACTIONS(4999), + [anon_sym_constexpr] = ACTIONS(4999), + [anon_sym_volatile] = ACTIONS(4999), + [anon_sym_restrict] = ACTIONS(4999), + [anon_sym___restrict__] = ACTIONS(4999), + [anon_sym__Atomic] = ACTIONS(4999), + [anon_sym__Noreturn] = ACTIONS(4999), + [anon_sym_noreturn] = ACTIONS(4999), + [anon_sym_mutable] = ACTIONS(4999), + [anon_sym_constinit] = ACTIONS(4999), + [anon_sym_consteval] = ACTIONS(4999), + [sym_primitive_type] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(5001), + [anon_sym_LT_EQ_GT] = ACTIONS(5001), + [anon_sym_or] = ACTIONS(4999), + [anon_sym_and] = ACTIONS(4999), + [anon_sym_bitor] = ACTIONS(4999), + [anon_sym_xor] = ACTIONS(4999), + [anon_sym_bitand] = ACTIONS(4999), + [anon_sym_not_eq] = ACTIONS(4999), + [anon_sym_DASH_DASH] = ACTIONS(5001), + [anon_sym_PLUS_PLUS] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(4999), + [anon_sym_DOT_STAR] = ACTIONS(5001), + [anon_sym_DASH_GT] = ACTIONS(5001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4999), + [anon_sym_decltype] = ACTIONS(4999), + [anon_sym_final] = ACTIONS(4999), + [anon_sym_override] = ACTIONS(4999), + [anon_sym_requires] = ACTIONS(4999), + }, + [2193] = { + [sym_identifier] = ACTIONS(5024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5026), + [anon_sym_COMMA] = ACTIONS(5026), + [anon_sym_RPAREN] = ACTIONS(5026), + [anon_sym_LPAREN2] = ACTIONS(5026), + [anon_sym_DASH] = ACTIONS(5024), + [anon_sym_PLUS] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5026), + [anon_sym_SLASH] = ACTIONS(5024), + [anon_sym_PERCENT] = ACTIONS(5026), + [anon_sym_PIPE_PIPE] = ACTIONS(5026), + [anon_sym_AMP_AMP] = ACTIONS(5026), + [anon_sym_PIPE] = ACTIONS(5024), + [anon_sym_CARET] = ACTIONS(5026), + [anon_sym_AMP] = ACTIONS(5024), + [anon_sym_EQ_EQ] = ACTIONS(5026), + [anon_sym_BANG_EQ] = ACTIONS(5026), + [anon_sym_GT] = ACTIONS(5024), + [anon_sym_GT_EQ] = ACTIONS(5026), + [anon_sym_LT_EQ] = ACTIONS(5024), + [anon_sym_LT] = ACTIONS(5024), + [anon_sym_LT_LT] = ACTIONS(5026), + [anon_sym_GT_GT] = ACTIONS(5026), + [anon_sym_SEMI] = ACTIONS(5026), + [anon_sym___extension__] = ACTIONS(5024), + [anon_sym___attribute__] = ACTIONS(5024), + [anon_sym_COLON_COLON] = ACTIONS(5026), + [anon_sym___based] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5026), + [anon_sym_RBRACE] = ACTIONS(5026), + [anon_sym_signed] = ACTIONS(5024), + [anon_sym_unsigned] = ACTIONS(5024), + [anon_sym_long] = ACTIONS(5024), + [anon_sym_short] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5026), + [anon_sym_RBRACK] = ACTIONS(5026), + [anon_sym_const] = ACTIONS(5024), + [anon_sym_constexpr] = ACTIONS(5024), + [anon_sym_volatile] = ACTIONS(5024), + [anon_sym_restrict] = ACTIONS(5024), + [anon_sym___restrict__] = ACTIONS(5024), + [anon_sym__Atomic] = ACTIONS(5024), + [anon_sym__Noreturn] = ACTIONS(5024), + [anon_sym_noreturn] = ACTIONS(5024), + [anon_sym_mutable] = ACTIONS(5024), + [anon_sym_constinit] = ACTIONS(5024), + [anon_sym_consteval] = ACTIONS(5024), + [sym_primitive_type] = ACTIONS(5024), + [anon_sym_COLON] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5026), + [anon_sym_LT_EQ_GT] = ACTIONS(5026), + [anon_sym_or] = ACTIONS(5024), + [anon_sym_and] = ACTIONS(5024), + [anon_sym_bitor] = ACTIONS(5024), + [anon_sym_xor] = ACTIONS(5024), + [anon_sym_bitand] = ACTIONS(5024), + [anon_sym_not_eq] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5026), + [anon_sym_PLUS_PLUS] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5024), + [anon_sym_DOT_STAR] = ACTIONS(5026), + [anon_sym_DASH_GT] = ACTIONS(5026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5024), + [anon_sym_decltype] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_requires] = ACTIONS(5024), + }, + [2194] = { + [sym_identifier] = ACTIONS(5572), + [aux_sym_preproc_def_token1] = ACTIONS(5572), + [aux_sym_preproc_if_token1] = ACTIONS(5572), + [aux_sym_preproc_if_token2] = ACTIONS(5572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5572), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5572), + [aux_sym_preproc_else_token1] = ACTIONS(5572), + [aux_sym_preproc_elif_token1] = ACTIONS(5572), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5572), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5572), + [sym_preproc_directive] = ACTIONS(5572), + [anon_sym_LPAREN2] = ACTIONS(5574), + [anon_sym_TILDE] = ACTIONS(5574), + [anon_sym_STAR] = ACTIONS(5574), + [anon_sym_AMP_AMP] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(5572), + [anon_sym_typedef] = ACTIONS(5572), + [anon_sym_extern] = ACTIONS(5572), + [anon_sym___attribute__] = ACTIONS(5572), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5574), + [anon_sym___declspec] = ACTIONS(5572), + [anon_sym___based] = ACTIONS(5572), + [anon_sym_signed] = ACTIONS(5572), + [anon_sym_unsigned] = ACTIONS(5572), + [anon_sym_long] = ACTIONS(5572), + [anon_sym_short] = ACTIONS(5572), + [anon_sym_LBRACK] = ACTIONS(5572), + [anon_sym_static] = ACTIONS(5572), + [anon_sym_register] = ACTIONS(5572), + [anon_sym_inline] = ACTIONS(5572), + [anon_sym___inline] = ACTIONS(5572), + [anon_sym___inline__] = ACTIONS(5572), + [anon_sym___forceinline] = ACTIONS(5572), + [anon_sym_thread_local] = ACTIONS(5572), + [anon_sym___thread] = ACTIONS(5572), + [anon_sym_const] = ACTIONS(5572), + [anon_sym_constexpr] = ACTIONS(5572), + [anon_sym_volatile] = ACTIONS(5572), + [anon_sym_restrict] = ACTIONS(5572), + [anon_sym___restrict__] = ACTIONS(5572), + [anon_sym__Atomic] = ACTIONS(5572), + [anon_sym__Noreturn] = ACTIONS(5572), + [anon_sym_noreturn] = ACTIONS(5572), + [anon_sym_mutable] = ACTIONS(5572), + [anon_sym_constinit] = ACTIONS(5572), + [anon_sym_consteval] = ACTIONS(5572), + [sym_primitive_type] = ACTIONS(5572), + [anon_sym_enum] = ACTIONS(5572), + [anon_sym_class] = ACTIONS(5572), + [anon_sym_struct] = ACTIONS(5572), + [anon_sym_union] = ACTIONS(5572), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5572), + [anon_sym_decltype] = ACTIONS(5572), + [anon_sym_virtual] = ACTIONS(5572), + [anon_sym_alignas] = ACTIONS(5572), + [anon_sym_explicit] = ACTIONS(5572), + [anon_sym_typename] = ACTIONS(5572), + [anon_sym_template] = ACTIONS(5572), + [anon_sym_operator] = ACTIONS(5572), + [anon_sym_friend] = ACTIONS(5572), + [anon_sym_public] = ACTIONS(5572), + [anon_sym_private] = ACTIONS(5572), + [anon_sym_protected] = ACTIONS(5572), + [anon_sym_using] = ACTIONS(5572), + [anon_sym_static_assert] = ACTIONS(5572), + }, + [2195] = { + [sym_identifier] = ACTIONS(5576), + [aux_sym_preproc_def_token1] = ACTIONS(5576), + [aux_sym_preproc_if_token1] = ACTIONS(5576), + [aux_sym_preproc_if_token2] = ACTIONS(5576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5576), + [aux_sym_preproc_else_token1] = ACTIONS(5576), + [aux_sym_preproc_elif_token1] = ACTIONS(5576), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5576), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5576), + [sym_preproc_directive] = ACTIONS(5576), + [anon_sym_LPAREN2] = ACTIONS(5578), + [anon_sym_TILDE] = ACTIONS(5578), + [anon_sym_STAR] = ACTIONS(5578), + [anon_sym_AMP_AMP] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(5576), + [anon_sym___extension__] = ACTIONS(5576), + [anon_sym_typedef] = ACTIONS(5576), + [anon_sym_extern] = ACTIONS(5576), + [anon_sym___attribute__] = ACTIONS(5576), + [anon_sym_COLON_COLON] = ACTIONS(5578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5578), + [anon_sym___declspec] = ACTIONS(5576), + [anon_sym___based] = ACTIONS(5576), + [anon_sym_signed] = ACTIONS(5576), + [anon_sym_unsigned] = ACTIONS(5576), + [anon_sym_long] = ACTIONS(5576), + [anon_sym_short] = ACTIONS(5576), + [anon_sym_LBRACK] = ACTIONS(5576), + [anon_sym_static] = ACTIONS(5576), + [anon_sym_register] = ACTIONS(5576), + [anon_sym_inline] = ACTIONS(5576), + [anon_sym___inline] = ACTIONS(5576), + [anon_sym___inline__] = ACTIONS(5576), + [anon_sym___forceinline] = ACTIONS(5576), + [anon_sym_thread_local] = ACTIONS(5576), + [anon_sym___thread] = ACTIONS(5576), + [anon_sym_const] = ACTIONS(5576), + [anon_sym_constexpr] = ACTIONS(5576), + [anon_sym_volatile] = ACTIONS(5576), + [anon_sym_restrict] = ACTIONS(5576), + [anon_sym___restrict__] = ACTIONS(5576), + [anon_sym__Atomic] = ACTIONS(5576), + [anon_sym__Noreturn] = ACTIONS(5576), + [anon_sym_noreturn] = ACTIONS(5576), + [anon_sym_mutable] = ACTIONS(5576), + [anon_sym_constinit] = ACTIONS(5576), + [anon_sym_consteval] = ACTIONS(5576), + [sym_primitive_type] = ACTIONS(5576), + [anon_sym_enum] = ACTIONS(5576), + [anon_sym_class] = ACTIONS(5576), + [anon_sym_struct] = ACTIONS(5576), + [anon_sym_union] = ACTIONS(5576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5576), + [anon_sym_decltype] = ACTIONS(5576), + [anon_sym_virtual] = ACTIONS(5576), + [anon_sym_alignas] = ACTIONS(5576), + [anon_sym_explicit] = ACTIONS(5576), + [anon_sym_typename] = ACTIONS(5576), + [anon_sym_template] = ACTIONS(5576), + [anon_sym_operator] = ACTIONS(5576), + [anon_sym_friend] = ACTIONS(5576), + [anon_sym_public] = ACTIONS(5576), + [anon_sym_private] = ACTIONS(5576), + [anon_sym_protected] = ACTIONS(5576), + [anon_sym_using] = ACTIONS(5576), + [anon_sym_static_assert] = ACTIONS(5576), + }, + [2196] = { + [sym_identifier] = ACTIONS(5580), + [aux_sym_preproc_def_token1] = ACTIONS(5580), + [aux_sym_preproc_if_token1] = ACTIONS(5580), + [aux_sym_preproc_if_token2] = ACTIONS(5580), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5580), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5580), + [aux_sym_preproc_else_token1] = ACTIONS(5580), + [aux_sym_preproc_elif_token1] = ACTIONS(5580), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5580), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5580), + [sym_preproc_directive] = ACTIONS(5580), + [anon_sym_LPAREN2] = ACTIONS(5582), + [anon_sym_TILDE] = ACTIONS(5582), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_AMP_AMP] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5580), + [anon_sym___extension__] = ACTIONS(5580), + [anon_sym_typedef] = ACTIONS(5580), + [anon_sym_extern] = ACTIONS(5580), + [anon_sym___attribute__] = ACTIONS(5580), + [anon_sym_COLON_COLON] = ACTIONS(5582), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5582), + [anon_sym___declspec] = ACTIONS(5580), + [anon_sym___based] = ACTIONS(5580), + [anon_sym_signed] = ACTIONS(5580), + [anon_sym_unsigned] = ACTIONS(5580), + [anon_sym_long] = ACTIONS(5580), + [anon_sym_short] = ACTIONS(5580), + [anon_sym_LBRACK] = ACTIONS(5580), + [anon_sym_static] = ACTIONS(5580), + [anon_sym_register] = ACTIONS(5580), + [anon_sym_inline] = ACTIONS(5580), + [anon_sym___inline] = ACTIONS(5580), + [anon_sym___inline__] = ACTIONS(5580), + [anon_sym___forceinline] = ACTIONS(5580), + [anon_sym_thread_local] = ACTIONS(5580), + [anon_sym___thread] = ACTIONS(5580), + [anon_sym_const] = ACTIONS(5580), + [anon_sym_constexpr] = ACTIONS(5580), + [anon_sym_volatile] = ACTIONS(5580), + [anon_sym_restrict] = ACTIONS(5580), + [anon_sym___restrict__] = ACTIONS(5580), + [anon_sym__Atomic] = ACTIONS(5580), + [anon_sym__Noreturn] = ACTIONS(5580), + [anon_sym_noreturn] = ACTIONS(5580), + [anon_sym_mutable] = ACTIONS(5580), + [anon_sym_constinit] = ACTIONS(5580), + [anon_sym_consteval] = ACTIONS(5580), + [sym_primitive_type] = ACTIONS(5580), + [anon_sym_enum] = ACTIONS(5580), + [anon_sym_class] = ACTIONS(5580), + [anon_sym_struct] = ACTIONS(5580), + [anon_sym_union] = ACTIONS(5580), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5580), + [anon_sym_decltype] = ACTIONS(5580), + [anon_sym_virtual] = ACTIONS(5580), + [anon_sym_alignas] = ACTIONS(5580), + [anon_sym_explicit] = ACTIONS(5580), + [anon_sym_typename] = ACTIONS(5580), + [anon_sym_template] = ACTIONS(5580), + [anon_sym_operator] = ACTIONS(5580), + [anon_sym_friend] = ACTIONS(5580), + [anon_sym_public] = ACTIONS(5580), + [anon_sym_private] = ACTIONS(5580), + [anon_sym_protected] = ACTIONS(5580), + [anon_sym_using] = ACTIONS(5580), + [anon_sym_static_assert] = ACTIONS(5580), + }, + [2197] = { + [sym_string_literal] = STATE(2197), + [sym_raw_string_literal] = STATE(2197), + [aux_sym_concatenated_string_repeat1] = STATE(2197), + [sym_identifier] = ACTIONS(5584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5208), + [anon_sym_COMMA] = ACTIONS(5208), + [anon_sym_LPAREN2] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_PERCENT] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5210), + [anon_sym_EQ_EQ] = ACTIONS(5208), + [anon_sym_BANG_EQ] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5208), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5210), + [anon_sym_GT_GT] = ACTIONS(5210), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym___attribute__] = ACTIONS(5210), + [anon_sym_LBRACK] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5210), + [anon_sym_QMARK] = ACTIONS(5208), + [anon_sym_STAR_EQ] = ACTIONS(5208), + [anon_sym_SLASH_EQ] = ACTIONS(5208), + [anon_sym_PERCENT_EQ] = ACTIONS(5208), + [anon_sym_PLUS_EQ] = ACTIONS(5208), + [anon_sym_DASH_EQ] = ACTIONS(5208), + [anon_sym_LT_LT_EQ] = ACTIONS(5208), + [anon_sym_GT_GT_EQ] = ACTIONS(5208), + [anon_sym_AMP_EQ] = ACTIONS(5208), + [anon_sym_CARET_EQ] = ACTIONS(5208), + [anon_sym_PIPE_EQ] = ACTIONS(5208), + [anon_sym_and_eq] = ACTIONS(5210), + [anon_sym_or_eq] = ACTIONS(5210), + [anon_sym_xor_eq] = ACTIONS(5210), + [anon_sym_LT_EQ_GT] = ACTIONS(5208), + [anon_sym_or] = ACTIONS(5210), + [anon_sym_and] = ACTIONS(5210), + [anon_sym_bitor] = ACTIONS(5210), + [anon_sym_xor] = ACTIONS(5210), + [anon_sym_bitand] = ACTIONS(5210), + [anon_sym_not_eq] = ACTIONS(5210), + [anon_sym_DASH_DASH] = ACTIONS(5208), + [anon_sym_PLUS_PLUS] = ACTIONS(5208), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DOT_STAR] = ACTIONS(5208), + [anon_sym_DASH_GT] = ACTIONS(5208), + [anon_sym_L_DQUOTE] = ACTIONS(5587), + [anon_sym_u_DQUOTE] = ACTIONS(5587), + [anon_sym_U_DQUOTE] = ACTIONS(5587), + [anon_sym_u8_DQUOTE] = ACTIONS(5587), + [anon_sym_DQUOTE] = ACTIONS(5587), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5590), + [anon_sym_LR_DQUOTE] = ACTIONS(5590), + [anon_sym_uR_DQUOTE] = ACTIONS(5590), + [anon_sym_UR_DQUOTE] = ACTIONS(5590), + [anon_sym_u8R_DQUOTE] = ACTIONS(5590), + [sym_literal_suffix] = ACTIONS(5210), + }, + [2198] = { + [sym_template_argument_list] = STATE(1974), + [aux_sym_sized_type_specifier_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(5593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5595), + [anon_sym_COMMA] = 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___attribute__] = ACTIONS(5593), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(5595), + [anon_sym_signed] = ACTIONS(5597), + [anon_sym_unsigned] = ACTIONS(5597), + [anon_sym_long] = ACTIONS(5597), + [anon_sym_short] = ACTIONS(5597), + [anon_sym_LBRACK] = ACTIONS(5595), + [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), + [sym_auto] = ACTIONS(5593), + [anon_sym_decltype] = ACTIONS(5593), + }, + [2199] = { + [sym_catch_clause] = STATE(2207), + [aux_sym_constructor_try_statement_repeat1] = STATE(2207), + [sym_identifier] = ACTIONS(2822), + [aux_sym_preproc_def_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token2] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), + [sym_preproc_directive] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_AMP_AMP] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2822), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), + [anon_sym___declspec] = ACTIONS(2822), + [anon_sym___based] = ACTIONS(2822), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym___inline] = ACTIONS(2822), + [anon_sym___inline__] = ACTIONS(2822), + [anon_sym___forceinline] = ACTIONS(2822), + [anon_sym_thread_local] = ACTIONS(2822), + [anon_sym___thread] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_constexpr] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym___restrict__] = ACTIONS(2822), + [anon_sym__Atomic] = ACTIONS(2822), + [anon_sym__Noreturn] = ACTIONS(2822), + [anon_sym_noreturn] = ACTIONS(2822), + [anon_sym_mutable] = ACTIONS(2822), + [anon_sym_constinit] = ACTIONS(2822), + [anon_sym_consteval] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2822), + [anon_sym_decltype] = ACTIONS(2822), + [anon_sym_virtual] = ACTIONS(2822), + [anon_sym_alignas] = ACTIONS(2822), + [anon_sym_explicit] = ACTIONS(2822), + [anon_sym_typename] = ACTIONS(2822), + [anon_sym_template] = ACTIONS(2822), + [anon_sym_operator] = ACTIONS(2822), + [anon_sym_friend] = ACTIONS(2822), + [anon_sym_public] = ACTIONS(2822), + [anon_sym_private] = ACTIONS(2822), + [anon_sym_protected] = ACTIONS(2822), + [anon_sym_using] = ACTIONS(2822), + [anon_sym_static_assert] = ACTIONS(2822), + [anon_sym_catch] = ACTIONS(5599), + }, + [2200] = { + [sym_identifier] = ACTIONS(5601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5603), + [anon_sym_COMMA] = ACTIONS(5603), + [anon_sym_RPAREN] = ACTIONS(5603), + [anon_sym_LPAREN2] = ACTIONS(5603), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5603), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_PERCENT] = ACTIONS(5603), + [anon_sym_PIPE_PIPE] = ACTIONS(5603), + [anon_sym_AMP_AMP] = ACTIONS(5603), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5603), + [anon_sym_AMP] = ACTIONS(5601), + [anon_sym_EQ_EQ] = ACTIONS(5603), + [anon_sym_BANG_EQ] = ACTIONS(5603), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_GT_EQ] = ACTIONS(5603), + [anon_sym_LT_EQ] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_LT_LT] = ACTIONS(5603), + [anon_sym_GT_GT] = ACTIONS(5603), + [anon_sym_SEMI] = ACTIONS(5603), + [anon_sym___extension__] = ACTIONS(5601), + [anon_sym___attribute__] = ACTIONS(5601), + [anon_sym___based] = ACTIONS(5601), + [anon_sym_LBRACE] = ACTIONS(5603), + [anon_sym_RBRACE] = ACTIONS(5603), + [anon_sym_signed] = ACTIONS(5601), + [anon_sym_unsigned] = ACTIONS(5601), + [anon_sym_long] = ACTIONS(5601), + [anon_sym_short] = ACTIONS(5601), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_RBRACK] = ACTIONS(5603), + [anon_sym_const] = ACTIONS(5601), + [anon_sym_constexpr] = ACTIONS(5601), + [anon_sym_volatile] = ACTIONS(5601), + [anon_sym_restrict] = ACTIONS(5601), + [anon_sym___restrict__] = ACTIONS(5601), + [anon_sym__Atomic] = ACTIONS(5601), + [anon_sym__Noreturn] = ACTIONS(5601), + [anon_sym_noreturn] = ACTIONS(5601), + [anon_sym_mutable] = ACTIONS(5601), + [anon_sym_constinit] = ACTIONS(5601), + [anon_sym_consteval] = ACTIONS(5601), + [sym_primitive_type] = ACTIONS(5601), + [anon_sym_COLON] = ACTIONS(5603), + [anon_sym_QMARK] = ACTIONS(5603), + [anon_sym_LT_EQ_GT] = ACTIONS(5603), + [anon_sym_or] = ACTIONS(5601), + [anon_sym_and] = ACTIONS(5601), + [anon_sym_bitor] = ACTIONS(5601), + [anon_sym_xor] = ACTIONS(5601), + [anon_sym_bitand] = ACTIONS(5601), + [anon_sym_not_eq] = ACTIONS(5601), + [anon_sym_DASH_DASH] = ACTIONS(5603), + [anon_sym_PLUS_PLUS] = ACTIONS(5603), + [anon_sym_DOT] = ACTIONS(5601), + [anon_sym_DOT_STAR] = ACTIONS(5603), + [anon_sym_DASH_GT] = ACTIONS(5603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5601), + [anon_sym_decltype] = ACTIONS(5601), + [anon_sym_final] = ACTIONS(5601), + [anon_sym_override] = ACTIONS(5601), + [anon_sym_requires] = ACTIONS(5601), + }, + [2201] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_structured_binding_declarator_repeat1] = STATE(7977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(5605), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_RBRACK] = ACTIONS(5607), + [anon_sym_EQ] = ACTIONS(5610), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(5612), + [anon_sym_SLASH_EQ] = ACTIONS(5612), + [anon_sym_PERCENT_EQ] = ACTIONS(5612), + [anon_sym_PLUS_EQ] = ACTIONS(5612), + [anon_sym_DASH_EQ] = ACTIONS(5612), + [anon_sym_LT_LT_EQ] = ACTIONS(5612), + [anon_sym_GT_GT_EQ] = ACTIONS(5612), + [anon_sym_AMP_EQ] = ACTIONS(5612), + [anon_sym_CARET_EQ] = ACTIONS(5612), + [anon_sym_PIPE_EQ] = ACTIONS(5612), + [anon_sym_and_eq] = ACTIONS(5612), + [anon_sym_or_eq] = ACTIONS(5612), + [anon_sym_xor_eq] = ACTIONS(5612), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [2202] = { + [sym_identifier] = ACTIONS(5614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(5616), + [anon_sym_RPAREN] = ACTIONS(5616), + [anon_sym_LPAREN2] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5614), + [anon_sym_STAR] = ACTIONS(5616), + [anon_sym_SLASH] = ACTIONS(5614), + [anon_sym_PERCENT] = ACTIONS(5616), + [anon_sym_PIPE_PIPE] = ACTIONS(5616), + [anon_sym_AMP_AMP] = ACTIONS(5616), + [anon_sym_PIPE] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5616), + [anon_sym_AMP] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5616), + [anon_sym_BANG_EQ] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5614), + [anon_sym_GT_EQ] = ACTIONS(5616), + [anon_sym_LT_EQ] = ACTIONS(5614), + [anon_sym_LT] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5616), + [anon_sym_GT_GT] = ACTIONS(5616), + [anon_sym_SEMI] = ACTIONS(5616), + [anon_sym___extension__] = ACTIONS(5614), + [anon_sym___attribute__] = ACTIONS(5614), + [anon_sym___based] = ACTIONS(5614), + [anon_sym_LBRACE] = ACTIONS(5616), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_signed] = ACTIONS(5614), + [anon_sym_unsigned] = ACTIONS(5614), + [anon_sym_long] = ACTIONS(5614), + [anon_sym_short] = ACTIONS(5614), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_RBRACK] = ACTIONS(5616), + [anon_sym_const] = ACTIONS(5614), + [anon_sym_constexpr] = ACTIONS(5614), + [anon_sym_volatile] = ACTIONS(5614), + [anon_sym_restrict] = ACTIONS(5614), + [anon_sym___restrict__] = ACTIONS(5614), + [anon_sym__Atomic] = ACTIONS(5614), + [anon_sym__Noreturn] = ACTIONS(5614), + [anon_sym_noreturn] = ACTIONS(5614), + [anon_sym_mutable] = ACTIONS(5614), + [anon_sym_constinit] = ACTIONS(5614), + [anon_sym_consteval] = ACTIONS(5614), + [sym_primitive_type] = ACTIONS(5614), + [anon_sym_COLON] = ACTIONS(5616), + [anon_sym_QMARK] = ACTIONS(5616), + [anon_sym_LT_EQ_GT] = ACTIONS(5616), + [anon_sym_or] = ACTIONS(5614), + [anon_sym_and] = ACTIONS(5614), + [anon_sym_bitor] = ACTIONS(5614), + [anon_sym_xor] = ACTIONS(5614), + [anon_sym_bitand] = ACTIONS(5614), + [anon_sym_not_eq] = ACTIONS(5614), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_DOT_STAR] = ACTIONS(5616), + [anon_sym_DASH_GT] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5614), + [anon_sym_decltype] = ACTIONS(5614), + [anon_sym_final] = ACTIONS(5614), + [anon_sym_override] = ACTIONS(5614), + [anon_sym_requires] = ACTIONS(5614), + }, + [2203] = { + [sym_identifier] = ACTIONS(5618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(5620), + [anon_sym_RPAREN] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_DASH] = ACTIONS(5618), + [anon_sym_PLUS] = ACTIONS(5618), + [anon_sym_STAR] = ACTIONS(5620), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5620), + [anon_sym_PIPE_PIPE] = ACTIONS(5620), + [anon_sym_AMP_AMP] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5618), + [anon_sym_CARET] = ACTIONS(5620), + [anon_sym_AMP] = ACTIONS(5618), + [anon_sym_EQ_EQ] = ACTIONS(5620), + [anon_sym_BANG_EQ] = ACTIONS(5620), + [anon_sym_GT] = ACTIONS(5618), + [anon_sym_GT_EQ] = ACTIONS(5620), + [anon_sym_LT_EQ] = ACTIONS(5618), + [anon_sym_LT] = ACTIONS(5618), + [anon_sym_LT_LT] = ACTIONS(5620), + [anon_sym_GT_GT] = ACTIONS(5620), + [anon_sym_SEMI] = ACTIONS(5620), + [anon_sym___extension__] = ACTIONS(5618), + [anon_sym___attribute__] = ACTIONS(5618), + [anon_sym___based] = ACTIONS(5618), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_signed] = ACTIONS(5618), + [anon_sym_unsigned] = ACTIONS(5618), + [anon_sym_long] = ACTIONS(5618), + [anon_sym_short] = ACTIONS(5618), + [anon_sym_LBRACK] = ACTIONS(5620), + [anon_sym_RBRACK] = ACTIONS(5620), + [anon_sym_const] = ACTIONS(5618), + [anon_sym_constexpr] = ACTIONS(5618), + [anon_sym_volatile] = ACTIONS(5618), + [anon_sym_restrict] = ACTIONS(5618), + [anon_sym___restrict__] = ACTIONS(5618), + [anon_sym__Atomic] = ACTIONS(5618), + [anon_sym__Noreturn] = ACTIONS(5618), + [anon_sym_noreturn] = ACTIONS(5618), + [anon_sym_mutable] = ACTIONS(5618), + [anon_sym_constinit] = ACTIONS(5618), + [anon_sym_consteval] = ACTIONS(5618), + [sym_primitive_type] = ACTIONS(5618), + [anon_sym_COLON] = ACTIONS(5620), + [anon_sym_QMARK] = ACTIONS(5620), + [anon_sym_LT_EQ_GT] = ACTIONS(5620), + [anon_sym_or] = ACTIONS(5618), + [anon_sym_and] = ACTIONS(5618), + [anon_sym_bitor] = ACTIONS(5618), + [anon_sym_xor] = ACTIONS(5618), + [anon_sym_bitand] = ACTIONS(5618), + [anon_sym_not_eq] = ACTIONS(5618), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DOT] = ACTIONS(5618), + [anon_sym_DOT_STAR] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5618), + [anon_sym_decltype] = ACTIONS(5618), + [anon_sym_final] = ACTIONS(5618), + [anon_sym_override] = ACTIONS(5618), + [anon_sym_requires] = ACTIONS(5618), + }, + [2204] = { + [sym_identifier] = ACTIONS(5622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5622), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_STAR] = ACTIONS(5624), + [anon_sym_SLASH] = ACTIONS(5622), + [anon_sym_PERCENT] = ACTIONS(5624), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5622), + [anon_sym_CARET] = ACTIONS(5624), + [anon_sym_AMP] = ACTIONS(5622), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5622), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5624), + [anon_sym_GT_GT] = ACTIONS(5624), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym___extension__] = ACTIONS(5622), + [anon_sym___attribute__] = ACTIONS(5622), + [anon_sym___based] = ACTIONS(5622), + [anon_sym_LBRACE] = ACTIONS(5624), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_signed] = ACTIONS(5622), + [anon_sym_unsigned] = ACTIONS(5622), + [anon_sym_long] = ACTIONS(5622), + [anon_sym_short] = ACTIONS(5622), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_RBRACK] = ACTIONS(5624), + [anon_sym_const] = ACTIONS(5622), + [anon_sym_constexpr] = ACTIONS(5622), + [anon_sym_volatile] = ACTIONS(5622), + [anon_sym_restrict] = ACTIONS(5622), + [anon_sym___restrict__] = ACTIONS(5622), + [anon_sym__Atomic] = ACTIONS(5622), + [anon_sym__Noreturn] = ACTIONS(5622), + [anon_sym_noreturn] = ACTIONS(5622), + [anon_sym_mutable] = ACTIONS(5622), + [anon_sym_constinit] = ACTIONS(5622), + [anon_sym_consteval] = ACTIONS(5622), + [sym_primitive_type] = ACTIONS(5622), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5622), + [anon_sym_and] = ACTIONS(5622), + [anon_sym_bitor] = ACTIONS(5622), + [anon_sym_xor] = ACTIONS(5622), + [anon_sym_bitand] = ACTIONS(5622), + [anon_sym_not_eq] = ACTIONS(5622), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5622), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5622), + [anon_sym_decltype] = ACTIONS(5622), + [anon_sym_final] = ACTIONS(5622), + [anon_sym_override] = ACTIONS(5622), + [anon_sym_requires] = ACTIONS(5622), + }, + [2205] = { + [sym_string_literal] = STATE(2144), + [sym_raw_string_literal] = STATE(2144), + [sym_identifier] = ACTIONS(4145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [aux_sym_preproc_if_token2] = ACTIONS(4137), + [aux_sym_preproc_else_token1] = ACTIONS(4137), + [aux_sym_preproc_elif_token1] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4145), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4145), + [anon_sym_or_eq] = ACTIONS(4145), + [anon_sym_xor_eq] = ACTIONS(4145), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(2236), + [anon_sym_u_DQUOTE] = ACTIONS(2236), + [anon_sym_U_DQUOTE] = ACTIONS(2236), + [anon_sym_u8_DQUOTE] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2236), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2244), + [anon_sym_LR_DQUOTE] = ACTIONS(2244), + [anon_sym_uR_DQUOTE] = ACTIONS(2244), + [anon_sym_UR_DQUOTE] = ACTIONS(2244), + [anon_sym_u8R_DQUOTE] = ACTIONS(2244), + [sym_literal_suffix] = ACTIONS(5626), + }, + [2206] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5780), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3936), + [anon_sym_COLON_COLON] = ACTIONS(5096), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(3938), - [anon_sym_unsigned] = ACTIONS(3938), - [anon_sym_long] = ACTIONS(3938), - [anon_sym_short] = ACTIONS(3938), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), [anon_sym_static] = ACTIONS(57), [anon_sym_register] = ACTIONS(57), [anon_sym_inline] = ACTIONS(57), @@ -350471,2157 +341986,809 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3940), - [anon_sym_enum] = ACTIONS(3942), - [anon_sym_class] = ACTIONS(3944), - [anon_sym_struct] = ACTIONS(3946), - [anon_sym_union] = ACTIONS(3948), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), }, - [2350] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5232), - [anon_sym_COMMA] = ACTIONS(5232), - [anon_sym_RPAREN] = ACTIONS(5232), - [anon_sym_LPAREN2] = ACTIONS(5232), - [anon_sym_DASH] = ACTIONS(5230), - [anon_sym_PLUS] = ACTIONS(5230), - [anon_sym_STAR] = ACTIONS(5230), - [anon_sym_SLASH] = ACTIONS(5230), - [anon_sym_PERCENT] = ACTIONS(5230), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5230), - [anon_sym_CARET] = ACTIONS(5230), - [anon_sym_AMP] = ACTIONS(5230), - [anon_sym_EQ_EQ] = ACTIONS(5232), - [anon_sym_BANG_EQ] = ACTIONS(5232), - [anon_sym_GT] = ACTIONS(5230), - [anon_sym_GT_EQ] = ACTIONS(5232), - [anon_sym_LT_EQ] = ACTIONS(5230), - [anon_sym_LT] = ACTIONS(5230), - [anon_sym_LT_LT] = ACTIONS(5230), - [anon_sym_GT_GT] = ACTIONS(5230), - [anon_sym_SEMI] = ACTIONS(5232), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_LBRACK] = ACTIONS(5232), - [anon_sym_RBRACK] = ACTIONS(5232), - [anon_sym_EQ] = ACTIONS(5230), - [anon_sym_COLON] = ACTIONS(5232), - [anon_sym_QMARK] = ACTIONS(5232), - [anon_sym_STAR_EQ] = ACTIONS(5232), - [anon_sym_SLASH_EQ] = ACTIONS(5232), - [anon_sym_PERCENT_EQ] = ACTIONS(5232), - [anon_sym_PLUS_EQ] = ACTIONS(5232), - [anon_sym_DASH_EQ] = ACTIONS(5232), - [anon_sym_LT_LT_EQ] = ACTIONS(5232), - [anon_sym_GT_GT_EQ] = ACTIONS(5232), - [anon_sym_AMP_EQ] = ACTIONS(5232), - [anon_sym_CARET_EQ] = ACTIONS(5232), - [anon_sym_PIPE_EQ] = ACTIONS(5232), - [anon_sym_and_eq] = ACTIONS(5230), - [anon_sym_or_eq] = ACTIONS(5230), - [anon_sym_xor_eq] = ACTIONS(5230), - [anon_sym_LT_EQ_GT] = ACTIONS(5232), - [anon_sym_or] = ACTIONS(5230), - [anon_sym_and] = ACTIONS(5230), - [anon_sym_bitor] = ACTIONS(5230), - [anon_sym_xor] = ACTIONS(5230), - [anon_sym_bitand] = ACTIONS(5230), - [anon_sym_not_eq] = ACTIONS(5230), - [anon_sym_DASH_DASH] = ACTIONS(5232), - [anon_sym_PLUS_PLUS] = ACTIONS(5232), - [anon_sym_DOT] = ACTIONS(5230), - [anon_sym_DOT_STAR] = ACTIONS(5232), - [anon_sym_DASH_GT] = ACTIONS(5232), - [anon_sym_L_DQUOTE] = ACTIONS(5232), - [anon_sym_u_DQUOTE] = ACTIONS(5232), - [anon_sym_U_DQUOTE] = ACTIONS(5232), - [anon_sym_u8_DQUOTE] = ACTIONS(5232), - [anon_sym_DQUOTE] = ACTIONS(5232), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5232), - [anon_sym_LR_DQUOTE] = ACTIONS(5232), - [anon_sym_uR_DQUOTE] = ACTIONS(5232), - [anon_sym_UR_DQUOTE] = ACTIONS(5232), - [anon_sym_u8R_DQUOTE] = ACTIONS(5232), - [sym_literal_suffix] = ACTIONS(5230), + [2207] = { + [sym_catch_clause] = STATE(2207), + [aux_sym_constructor_try_statement_repeat1] = STATE(2207), + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token2] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym___inline] = ACTIONS(2815), + [anon_sym___inline__] = ACTIONS(2815), + [anon_sym___forceinline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym___thread] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym___restrict__] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym__Noreturn] = ACTIONS(2815), + [anon_sym_noreturn] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_alignas] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_friend] = ACTIONS(2815), + [anon_sym_public] = ACTIONS(2815), + [anon_sym_private] = ACTIONS(2815), + [anon_sym_protected] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_catch] = ACTIONS(5628), }, - [2351] = { - [sym_identifier] = ACTIONS(5396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5398), - [anon_sym_COMMA] = ACTIONS(5398), - [anon_sym_RPAREN] = ACTIONS(5398), - [aux_sym_preproc_if_token2] = ACTIONS(5398), - [aux_sym_preproc_else_token1] = ACTIONS(5398), - [aux_sym_preproc_elif_token1] = ACTIONS(5396), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5398), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5398), - [anon_sym_LPAREN2] = ACTIONS(5398), - [anon_sym_DASH] = ACTIONS(5396), - [anon_sym_PLUS] = ACTIONS(5396), - [anon_sym_STAR] = ACTIONS(5396), - [anon_sym_SLASH] = ACTIONS(5396), - [anon_sym_PERCENT] = ACTIONS(5396), - [anon_sym_PIPE_PIPE] = ACTIONS(5398), - [anon_sym_AMP_AMP] = ACTIONS(5398), - [anon_sym_PIPE] = ACTIONS(5396), - [anon_sym_CARET] = ACTIONS(5396), - [anon_sym_AMP] = ACTIONS(5396), - [anon_sym_EQ_EQ] = ACTIONS(5398), - [anon_sym_BANG_EQ] = ACTIONS(5398), - [anon_sym_GT] = ACTIONS(5396), - [anon_sym_GT_EQ] = ACTIONS(5398), - [anon_sym_LT_EQ] = ACTIONS(5396), - [anon_sym_LT] = ACTIONS(5396), - [anon_sym_LT_LT] = ACTIONS(5396), - [anon_sym_GT_GT] = ACTIONS(5396), - [anon_sym_SEMI] = ACTIONS(5398), - [anon_sym___attribute__] = ACTIONS(5396), - [anon_sym_COLON_COLON] = ACTIONS(5398), - [anon_sym_LBRACE] = ACTIONS(5398), - [anon_sym_RBRACE] = ACTIONS(5398), - [anon_sym_LBRACK] = ACTIONS(5398), - [anon_sym_RBRACK] = ACTIONS(5398), - [anon_sym_EQ] = ACTIONS(5396), - [anon_sym_COLON] = ACTIONS(5396), - [anon_sym_QMARK] = ACTIONS(5398), - [anon_sym_STAR_EQ] = ACTIONS(5398), - [anon_sym_SLASH_EQ] = ACTIONS(5398), - [anon_sym_PERCENT_EQ] = ACTIONS(5398), - [anon_sym_PLUS_EQ] = ACTIONS(5398), - [anon_sym_DASH_EQ] = ACTIONS(5398), - [anon_sym_LT_LT_EQ] = ACTIONS(5398), - [anon_sym_GT_GT_EQ] = ACTIONS(5398), - [anon_sym_AMP_EQ] = ACTIONS(5398), - [anon_sym_CARET_EQ] = ACTIONS(5398), - [anon_sym_PIPE_EQ] = ACTIONS(5398), - [anon_sym_and_eq] = ACTIONS(5396), - [anon_sym_or_eq] = ACTIONS(5396), - [anon_sym_xor_eq] = ACTIONS(5396), - [anon_sym_LT_EQ_GT] = ACTIONS(5398), - [anon_sym_or] = ACTIONS(5396), - [anon_sym_and] = ACTIONS(5396), - [anon_sym_bitor] = ACTIONS(5396), - [anon_sym_xor] = ACTIONS(5396), - [anon_sym_bitand] = ACTIONS(5396), - [anon_sym_not_eq] = ACTIONS(5396), - [anon_sym_DASH_DASH] = ACTIONS(5398), - [anon_sym_PLUS_PLUS] = ACTIONS(5398), - [anon_sym_DOT] = ACTIONS(5396), - [anon_sym_DOT_STAR] = ACTIONS(5398), - [anon_sym_DASH_GT] = ACTIONS(5398), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5396), - [anon_sym_decltype] = ACTIONS(5396), + [2208] = { + [sym_string_literal] = STATE(2232), + [sym_template_argument_list] = STATE(2546), + [sym_raw_string_literal] = STATE(2232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5164), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym___attribute__] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4137), + [anon_sym_or_eq] = ACTIONS(4137), + [anon_sym_xor_eq] = ACTIONS(4137), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(5631), + [anon_sym_u_DQUOTE] = ACTIONS(5631), + [anon_sym_U_DQUOTE] = ACTIONS(5631), + [anon_sym_u8_DQUOTE] = ACTIONS(5631), + [anon_sym_DQUOTE] = ACTIONS(5631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(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), }, - [2352] = { - [sym_identifier] = ACTIONS(5459), - [aux_sym_preproc_def_token1] = ACTIONS(5459), - [aux_sym_preproc_if_token1] = ACTIONS(5459), - [aux_sym_preproc_if_token2] = ACTIONS(5459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5459), - [aux_sym_preproc_else_token1] = ACTIONS(5459), - [aux_sym_preproc_elif_token1] = ACTIONS(5459), - [sym_preproc_directive] = ACTIONS(5459), - [anon_sym_LPAREN2] = ACTIONS(5461), - [anon_sym_TILDE] = ACTIONS(5461), - [anon_sym_STAR] = ACTIONS(5461), - [anon_sym_AMP_AMP] = ACTIONS(5461), - [anon_sym_AMP] = ACTIONS(5459), - [anon_sym___extension__] = ACTIONS(5459), - [anon_sym_typedef] = ACTIONS(5459), - [anon_sym_extern] = ACTIONS(5459), - [anon_sym___attribute__] = ACTIONS(5459), - [anon_sym_COLON_COLON] = ACTIONS(5461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5461), - [anon_sym___declspec] = ACTIONS(5459), - [anon_sym___based] = ACTIONS(5459), - [anon_sym_signed] = ACTIONS(5459), - [anon_sym_unsigned] = ACTIONS(5459), - [anon_sym_long] = ACTIONS(5459), - [anon_sym_short] = ACTIONS(5459), - [anon_sym_LBRACK] = ACTIONS(5459), - [anon_sym_static] = ACTIONS(5459), - [anon_sym_register] = ACTIONS(5459), - [anon_sym_inline] = ACTIONS(5459), - [anon_sym___inline] = ACTIONS(5459), - [anon_sym___inline__] = ACTIONS(5459), - [anon_sym___forceinline] = ACTIONS(5459), - [anon_sym_thread_local] = ACTIONS(5459), - [anon_sym___thread] = ACTIONS(5459), - [anon_sym_const] = ACTIONS(5459), - [anon_sym_constexpr] = ACTIONS(5459), - [anon_sym_volatile] = ACTIONS(5459), - [anon_sym_restrict] = ACTIONS(5459), - [anon_sym___restrict__] = ACTIONS(5459), - [anon_sym__Atomic] = ACTIONS(5459), - [anon_sym__Noreturn] = ACTIONS(5459), - [anon_sym_noreturn] = ACTIONS(5459), - [anon_sym_mutable] = ACTIONS(5459), - [anon_sym_constinit] = ACTIONS(5459), - [anon_sym_consteval] = ACTIONS(5459), - [sym_primitive_type] = ACTIONS(5459), - [anon_sym_enum] = ACTIONS(5459), - [anon_sym_class] = ACTIONS(5459), - [anon_sym_struct] = ACTIONS(5459), - [anon_sym_union] = ACTIONS(5459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5459), - [anon_sym_decltype] = ACTIONS(5459), - [anon_sym_virtual] = ACTIONS(5459), - [anon_sym_alignas] = ACTIONS(5459), - [anon_sym_explicit] = ACTIONS(5459), - [anon_sym_typename] = ACTIONS(5459), - [anon_sym_template] = ACTIONS(5459), - [anon_sym_operator] = ACTIONS(5459), - [anon_sym_friend] = ACTIONS(5459), - [anon_sym_public] = ACTIONS(5459), - [anon_sym_private] = ACTIONS(5459), - [anon_sym_protected] = ACTIONS(5459), - [anon_sym_using] = ACTIONS(5459), - [anon_sym_static_assert] = ACTIONS(5459), + [2209] = { + [sym_identifier] = ACTIONS(5635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5637), + [anon_sym_COMMA] = ACTIONS(5637), + [anon_sym_RPAREN] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(5637), + [anon_sym_TILDE] = ACTIONS(5637), + [anon_sym_STAR] = ACTIONS(5637), + [anon_sym_AMP_AMP] = ACTIONS(5637), + [anon_sym_AMP] = ACTIONS(5635), + [anon_sym_SEMI] = ACTIONS(5637), + [anon_sym___extension__] = ACTIONS(5635), + [anon_sym_extern] = ACTIONS(5635), + [anon_sym___attribute__] = ACTIONS(5635), + [anon_sym_COLON_COLON] = ACTIONS(5637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5637), + [anon_sym___declspec] = ACTIONS(5635), + [anon_sym___based] = ACTIONS(5635), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5635), + [anon_sym_unsigned] = ACTIONS(5635), + [anon_sym_long] = ACTIONS(5635), + [anon_sym_short] = ACTIONS(5635), + [anon_sym_LBRACK] = ACTIONS(5635), + [anon_sym_EQ] = ACTIONS(5637), + [anon_sym_static] = ACTIONS(5635), + [anon_sym_register] = ACTIONS(5635), + [anon_sym_inline] = ACTIONS(5635), + [anon_sym___inline] = ACTIONS(5635), + [anon_sym___inline__] = ACTIONS(5635), + [anon_sym___forceinline] = ACTIONS(5635), + [anon_sym_thread_local] = ACTIONS(5635), + [anon_sym___thread] = ACTIONS(5635), + [anon_sym_const] = ACTIONS(5635), + [anon_sym_constexpr] = ACTIONS(5635), + [anon_sym_volatile] = ACTIONS(5635), + [anon_sym_restrict] = ACTIONS(5635), + [anon_sym___restrict__] = ACTIONS(5635), + [anon_sym__Atomic] = ACTIONS(5635), + [anon_sym__Noreturn] = ACTIONS(5635), + [anon_sym_noreturn] = ACTIONS(5635), + [anon_sym_mutable] = ACTIONS(5635), + [anon_sym_constinit] = ACTIONS(5635), + [anon_sym_consteval] = ACTIONS(5635), + [sym_primitive_type] = ACTIONS(5635), + [anon_sym_enum] = ACTIONS(5635), + [anon_sym_class] = ACTIONS(5635), + [anon_sym_struct] = ACTIONS(5635), + [anon_sym_union] = ACTIONS(5635), + [anon_sym_asm] = ACTIONS(5635), + [anon_sym___asm__] = ACTIONS(5635), + [anon_sym_DASH_GT] = ACTIONS(5637), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5635), + [anon_sym_decltype] = ACTIONS(5635), + [anon_sym_final] = ACTIONS(5635), + [anon_sym_override] = ACTIONS(5635), + [anon_sym_virtual] = ACTIONS(5635), + [anon_sym_alignas] = ACTIONS(5635), + [anon_sym_explicit] = ACTIONS(5635), + [anon_sym_typename] = ACTIONS(5635), + [anon_sym_template] = ACTIONS(5635), + [anon_sym_GT2] = ACTIONS(5637), + [anon_sym_operator] = ACTIONS(5635), + [anon_sym_try] = ACTIONS(5635), + [anon_sym_noexcept] = ACTIONS(5635), + [anon_sym_throw] = ACTIONS(5635), + [anon_sym_requires] = ACTIONS(5635), }, - [2353] = { - [sym_identifier] = ACTIONS(5463), - [aux_sym_preproc_def_token1] = ACTIONS(5463), - [aux_sym_preproc_if_token1] = ACTIONS(5463), - [aux_sym_preproc_if_token2] = ACTIONS(5463), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5463), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5463), - [aux_sym_preproc_else_token1] = ACTIONS(5463), - [aux_sym_preproc_elif_token1] = ACTIONS(5463), - [sym_preproc_directive] = ACTIONS(5463), - [anon_sym_LPAREN2] = ACTIONS(5465), - [anon_sym_TILDE] = ACTIONS(5465), - [anon_sym_STAR] = ACTIONS(5465), - [anon_sym_AMP_AMP] = ACTIONS(5465), - [anon_sym_AMP] = ACTIONS(5463), - [anon_sym___extension__] = ACTIONS(5463), - [anon_sym_typedef] = ACTIONS(5463), - [anon_sym_extern] = ACTIONS(5463), - [anon_sym___attribute__] = ACTIONS(5463), - [anon_sym_COLON_COLON] = ACTIONS(5465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5465), - [anon_sym___declspec] = ACTIONS(5463), - [anon_sym___based] = ACTIONS(5463), - [anon_sym_signed] = ACTIONS(5463), - [anon_sym_unsigned] = ACTIONS(5463), - [anon_sym_long] = ACTIONS(5463), - [anon_sym_short] = ACTIONS(5463), - [anon_sym_LBRACK] = ACTIONS(5463), - [anon_sym_static] = ACTIONS(5463), - [anon_sym_register] = ACTIONS(5463), - [anon_sym_inline] = ACTIONS(5463), - [anon_sym___inline] = ACTIONS(5463), - [anon_sym___inline__] = ACTIONS(5463), - [anon_sym___forceinline] = ACTIONS(5463), - [anon_sym_thread_local] = ACTIONS(5463), - [anon_sym___thread] = ACTIONS(5463), - [anon_sym_const] = ACTIONS(5463), - [anon_sym_constexpr] = ACTIONS(5463), - [anon_sym_volatile] = ACTIONS(5463), - [anon_sym_restrict] = ACTIONS(5463), - [anon_sym___restrict__] = ACTIONS(5463), - [anon_sym__Atomic] = ACTIONS(5463), - [anon_sym__Noreturn] = ACTIONS(5463), - [anon_sym_noreturn] = ACTIONS(5463), - [anon_sym_mutable] = ACTIONS(5463), - [anon_sym_constinit] = ACTIONS(5463), - [anon_sym_consteval] = ACTIONS(5463), - [sym_primitive_type] = ACTIONS(5463), - [anon_sym_enum] = ACTIONS(5463), - [anon_sym_class] = ACTIONS(5463), - [anon_sym_struct] = ACTIONS(5463), - [anon_sym_union] = ACTIONS(5463), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5463), - [anon_sym_decltype] = ACTIONS(5463), - [anon_sym_virtual] = ACTIONS(5463), - [anon_sym_alignas] = ACTIONS(5463), - [anon_sym_explicit] = ACTIONS(5463), - [anon_sym_typename] = ACTIONS(5463), - [anon_sym_template] = ACTIONS(5463), - [anon_sym_operator] = ACTIONS(5463), - [anon_sym_friend] = ACTIONS(5463), - [anon_sym_public] = ACTIONS(5463), - [anon_sym_private] = ACTIONS(5463), - [anon_sym_protected] = ACTIONS(5463), - [anon_sym_using] = ACTIONS(5463), - [anon_sym_static_assert] = ACTIONS(5463), - }, - [2354] = { - [sym_identifier] = ACTIONS(3270), - [aux_sym_preproc_def_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token1] = ACTIONS(3270), - [aux_sym_preproc_if_token2] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), - [aux_sym_preproc_else_token1] = ACTIONS(3270), - [aux_sym_preproc_elif_token1] = ACTIONS(3270), - [sym_preproc_directive] = ACTIONS(3270), - [anon_sym_LPAREN2] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(3272), - [anon_sym_AMP_AMP] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3270), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_typedef] = ACTIONS(3270), - [anon_sym_extern] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(3272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), - [anon_sym___declspec] = ACTIONS(3270), - [anon_sym___based] = ACTIONS(3270), - [anon_sym_signed] = ACTIONS(3270), - [anon_sym_unsigned] = ACTIONS(3270), - [anon_sym_long] = ACTIONS(3270), - [anon_sym_short] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_register] = ACTIONS(3270), - [anon_sym_inline] = ACTIONS(3270), - [anon_sym___inline] = ACTIONS(3270), - [anon_sym___inline__] = ACTIONS(3270), - [anon_sym___forceinline] = ACTIONS(3270), - [anon_sym_thread_local] = ACTIONS(3270), - [anon_sym___thread] = ACTIONS(3270), - [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_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [sym_primitive_type] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_union] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3270), - [anon_sym_decltype] = ACTIONS(3270), - [anon_sym_virtual] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3270), - [anon_sym_explicit] = ACTIONS(3270), - [anon_sym_typename] = ACTIONS(3270), - [anon_sym_template] = ACTIONS(3270), - [anon_sym_operator] = ACTIONS(3270), - [anon_sym_friend] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_static_assert] = ACTIONS(3270), - }, - [2355] = { - [sym_identifier] = ACTIONS(5483), - [aux_sym_preproc_def_token1] = ACTIONS(5483), - [aux_sym_preproc_if_token1] = ACTIONS(5483), - [aux_sym_preproc_if_token2] = ACTIONS(5483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5483), - [aux_sym_preproc_else_token1] = ACTIONS(5483), - [aux_sym_preproc_elif_token1] = ACTIONS(5483), - [sym_preproc_directive] = ACTIONS(5483), - [anon_sym_LPAREN2] = ACTIONS(5485), - [anon_sym_TILDE] = ACTIONS(5485), - [anon_sym_STAR] = ACTIONS(5485), - [anon_sym_AMP_AMP] = ACTIONS(5485), - [anon_sym_AMP] = ACTIONS(5483), - [anon_sym___extension__] = ACTIONS(5483), - [anon_sym_typedef] = ACTIONS(5483), - [anon_sym_extern] = ACTIONS(5483), - [anon_sym___attribute__] = ACTIONS(5483), - [anon_sym_COLON_COLON] = ACTIONS(5485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5485), - [anon_sym___declspec] = ACTIONS(5483), - [anon_sym___based] = ACTIONS(5483), - [anon_sym_signed] = ACTIONS(5483), - [anon_sym_unsigned] = ACTIONS(5483), - [anon_sym_long] = ACTIONS(5483), - [anon_sym_short] = ACTIONS(5483), - [anon_sym_LBRACK] = ACTIONS(5483), - [anon_sym_static] = ACTIONS(5483), - [anon_sym_register] = ACTIONS(5483), - [anon_sym_inline] = ACTIONS(5483), - [anon_sym___inline] = ACTIONS(5483), - [anon_sym___inline__] = ACTIONS(5483), - [anon_sym___forceinline] = ACTIONS(5483), - [anon_sym_thread_local] = ACTIONS(5483), - [anon_sym___thread] = ACTIONS(5483), - [anon_sym_const] = ACTIONS(5483), - [anon_sym_constexpr] = ACTIONS(5483), - [anon_sym_volatile] = ACTIONS(5483), - [anon_sym_restrict] = ACTIONS(5483), - [anon_sym___restrict__] = ACTIONS(5483), - [anon_sym__Atomic] = ACTIONS(5483), - [anon_sym__Noreturn] = ACTIONS(5483), - [anon_sym_noreturn] = ACTIONS(5483), - [anon_sym_mutable] = ACTIONS(5483), - [anon_sym_constinit] = ACTIONS(5483), - [anon_sym_consteval] = ACTIONS(5483), - [sym_primitive_type] = ACTIONS(5483), - [anon_sym_enum] = ACTIONS(5483), - [anon_sym_class] = ACTIONS(5483), - [anon_sym_struct] = ACTIONS(5483), - [anon_sym_union] = ACTIONS(5483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5483), - [anon_sym_decltype] = ACTIONS(5483), - [anon_sym_virtual] = ACTIONS(5483), - [anon_sym_alignas] = ACTIONS(5483), - [anon_sym_explicit] = ACTIONS(5483), - [anon_sym_typename] = ACTIONS(5483), - [anon_sym_template] = ACTIONS(5483), - [anon_sym_operator] = ACTIONS(5483), - [anon_sym_friend] = ACTIONS(5483), - [anon_sym_public] = ACTIONS(5483), - [anon_sym_private] = ACTIONS(5483), - [anon_sym_protected] = ACTIONS(5483), - [anon_sym_using] = ACTIONS(5483), - [anon_sym_static_assert] = ACTIONS(5483), - }, - [2356] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2374), - [sym_identifier] = ACTIONS(5865), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5636), - [anon_sym_COMMA] = ACTIONS(5636), - [anon_sym_RPAREN] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_STAR] = ACTIONS(5638), - [anon_sym_SLASH] = ACTIONS(5638), - [anon_sym_PERCENT] = ACTIONS(5638), - [anon_sym_PIPE_PIPE] = ACTIONS(5636), - [anon_sym_AMP_AMP] = ACTIONS(5636), - [anon_sym_PIPE] = ACTIONS(5638), - [anon_sym_CARET] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(5638), - [anon_sym_EQ_EQ] = ACTIONS(5636), - [anon_sym_BANG_EQ] = ACTIONS(5636), - [anon_sym_GT] = ACTIONS(5638), - [anon_sym_GT_EQ] = ACTIONS(5636), - [anon_sym_LT_EQ] = ACTIONS(5638), - [anon_sym_LT] = ACTIONS(5638), - [anon_sym_LT_LT] = ACTIONS(5638), - [anon_sym_GT_GT] = ACTIONS(5638), - [anon_sym_SEMI] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5638), - [anon_sym_LBRACE] = ACTIONS(5636), - [anon_sym_RBRACE] = ACTIONS(5636), - [anon_sym_signed] = ACTIONS(5867), - [anon_sym_unsigned] = ACTIONS(5867), - [anon_sym_long] = ACTIONS(5867), - [anon_sym_short] = ACTIONS(5867), - [anon_sym_LBRACK] = ACTIONS(5636), - [anon_sym_RBRACK] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5638), - [sym_primitive_type] = ACTIONS(5869), - [anon_sym_COLON] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5636), - [anon_sym_STAR_EQ] = ACTIONS(5636), - [anon_sym_SLASH_EQ] = ACTIONS(5636), - [anon_sym_PERCENT_EQ] = ACTIONS(5636), - [anon_sym_PLUS_EQ] = ACTIONS(5636), - [anon_sym_DASH_EQ] = ACTIONS(5636), - [anon_sym_LT_LT_EQ] = ACTIONS(5636), - [anon_sym_GT_GT_EQ] = ACTIONS(5636), - [anon_sym_AMP_EQ] = ACTIONS(5636), - [anon_sym_CARET_EQ] = ACTIONS(5636), - [anon_sym_PIPE_EQ] = ACTIONS(5636), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5636), - [anon_sym_or] = ACTIONS(5638), - [anon_sym_and] = ACTIONS(5638), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5638), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5636), - [anon_sym_PLUS_PLUS] = ACTIONS(5636), - [anon_sym_DOT] = ACTIONS(5638), - [anon_sym_DOT_STAR] = ACTIONS(5636), - [anon_sym_DASH_GT] = ACTIONS(5636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5638), - [anon_sym_decltype] = ACTIONS(5638), - }, - [2357] = { - [sym_identifier] = ACTIONS(5491), - [aux_sym_preproc_def_token1] = ACTIONS(5491), - [aux_sym_preproc_if_token1] = ACTIONS(5491), - [aux_sym_preproc_if_token2] = ACTIONS(5491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5491), - [aux_sym_preproc_else_token1] = ACTIONS(5491), - [aux_sym_preproc_elif_token1] = ACTIONS(5491), - [sym_preproc_directive] = ACTIONS(5491), - [anon_sym_LPAREN2] = ACTIONS(5493), - [anon_sym_TILDE] = ACTIONS(5493), - [anon_sym_STAR] = ACTIONS(5493), - [anon_sym_AMP_AMP] = ACTIONS(5493), - [anon_sym_AMP] = ACTIONS(5491), - [anon_sym___extension__] = ACTIONS(5491), - [anon_sym_typedef] = ACTIONS(5491), - [anon_sym_extern] = ACTIONS(5491), - [anon_sym___attribute__] = ACTIONS(5491), - [anon_sym_COLON_COLON] = ACTIONS(5493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), - [anon_sym___declspec] = ACTIONS(5491), - [anon_sym___based] = ACTIONS(5491), - [anon_sym_signed] = ACTIONS(5491), - [anon_sym_unsigned] = ACTIONS(5491), - [anon_sym_long] = ACTIONS(5491), - [anon_sym_short] = ACTIONS(5491), - [anon_sym_LBRACK] = ACTIONS(5491), - [anon_sym_static] = ACTIONS(5491), - [anon_sym_register] = ACTIONS(5491), - [anon_sym_inline] = ACTIONS(5491), - [anon_sym___inline] = ACTIONS(5491), - [anon_sym___inline__] = ACTIONS(5491), - [anon_sym___forceinline] = ACTIONS(5491), - [anon_sym_thread_local] = ACTIONS(5491), - [anon_sym___thread] = ACTIONS(5491), - [anon_sym_const] = ACTIONS(5491), - [anon_sym_constexpr] = ACTIONS(5491), - [anon_sym_volatile] = ACTIONS(5491), - [anon_sym_restrict] = ACTIONS(5491), - [anon_sym___restrict__] = ACTIONS(5491), - [anon_sym__Atomic] = ACTIONS(5491), - [anon_sym__Noreturn] = ACTIONS(5491), - [anon_sym_noreturn] = ACTIONS(5491), - [anon_sym_mutable] = ACTIONS(5491), - [anon_sym_constinit] = ACTIONS(5491), - [anon_sym_consteval] = ACTIONS(5491), - [sym_primitive_type] = ACTIONS(5491), - [anon_sym_enum] = ACTIONS(5491), - [anon_sym_class] = ACTIONS(5491), - [anon_sym_struct] = ACTIONS(5491), - [anon_sym_union] = ACTIONS(5491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5491), - [anon_sym_decltype] = ACTIONS(5491), - [anon_sym_virtual] = ACTIONS(5491), - [anon_sym_alignas] = ACTIONS(5491), - [anon_sym_explicit] = ACTIONS(5491), - [anon_sym_typename] = ACTIONS(5491), - [anon_sym_template] = ACTIONS(5491), - [anon_sym_operator] = ACTIONS(5491), - [anon_sym_friend] = ACTIONS(5491), - [anon_sym_public] = ACTIONS(5491), - [anon_sym_private] = ACTIONS(5491), - [anon_sym_protected] = ACTIONS(5491), - [anon_sym_using] = ACTIONS(5491), - [anon_sym_static_assert] = ACTIONS(5491), - }, - [2358] = { - [sym_identifier] = ACTIONS(3280), - [aux_sym_preproc_def_token1] = ACTIONS(3280), - [aux_sym_preproc_if_token1] = ACTIONS(3280), - [aux_sym_preproc_if_token2] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3280), - [aux_sym_preproc_else_token1] = ACTIONS(3280), - [aux_sym_preproc_elif_token1] = ACTIONS(3280), - [sym_preproc_directive] = ACTIONS(3280), - [anon_sym_LPAREN2] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_STAR] = ACTIONS(3282), - [anon_sym_AMP_AMP] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym___extension__] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3280), - [anon_sym_extern] = ACTIONS(3280), - [anon_sym___attribute__] = ACTIONS(3280), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3282), - [anon_sym___declspec] = ACTIONS(3280), - [anon_sym___based] = ACTIONS(3280), - [anon_sym_signed] = ACTIONS(3280), - [anon_sym_unsigned] = ACTIONS(3280), - [anon_sym_long] = ACTIONS(3280), - [anon_sym_short] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_register] = ACTIONS(3280), - [anon_sym_inline] = ACTIONS(3280), - [anon_sym___inline] = ACTIONS(3280), - [anon_sym___inline__] = ACTIONS(3280), - [anon_sym___forceinline] = ACTIONS(3280), - [anon_sym_thread_local] = ACTIONS(3280), - [anon_sym___thread] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_constexpr] = ACTIONS(3280), - [anon_sym_volatile] = ACTIONS(3280), - [anon_sym_restrict] = ACTIONS(3280), - [anon_sym___restrict__] = ACTIONS(3280), - [anon_sym__Atomic] = ACTIONS(3280), - [anon_sym__Noreturn] = ACTIONS(3280), - [anon_sym_noreturn] = ACTIONS(3280), - [anon_sym_mutable] = ACTIONS(3280), - [anon_sym_constinit] = ACTIONS(3280), - [anon_sym_consteval] = ACTIONS(3280), - [sym_primitive_type] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_struct] = ACTIONS(3280), - [anon_sym_union] = ACTIONS(3280), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3280), - [anon_sym_decltype] = ACTIONS(3280), - [anon_sym_virtual] = ACTIONS(3280), - [anon_sym_alignas] = ACTIONS(3280), - [anon_sym_explicit] = ACTIONS(3280), - [anon_sym_typename] = ACTIONS(3280), - [anon_sym_template] = ACTIONS(3280), - [anon_sym_operator] = ACTIONS(3280), - [anon_sym_friend] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_protected] = ACTIONS(3280), - [anon_sym_using] = ACTIONS(3280), - [anon_sym_static_assert] = ACTIONS(3280), + [2210] = { + [sym_identifier] = ACTIONS(3588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3590), + [anon_sym_COMMA] = ACTIONS(3590), + [anon_sym_RPAREN] = ACTIONS(3590), + [anon_sym_LPAREN2] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [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_extern] = 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___based] = 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_EQ] = ACTIONS(3590), + [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_mutable] = ACTIONS(3588), + [anon_sym_constinit] = ACTIONS(3588), + [anon_sym_consteval] = 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_asm] = ACTIONS(3588), + [anon_sym___asm__] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3588), + [anon_sym_decltype] = ACTIONS(3588), + [anon_sym_final] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_virtual] = ACTIONS(3588), + [anon_sym_alignas] = ACTIONS(3588), + [anon_sym_explicit] = ACTIONS(3588), + [anon_sym_typename] = ACTIONS(3588), + [anon_sym_template] = ACTIONS(3588), + [anon_sym_GT2] = ACTIONS(3590), + [anon_sym_operator] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_noexcept] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_requires] = ACTIONS(3588), }, - [2359] = { - [sym_identifier] = ACTIONS(3164), - [aux_sym_preproc_def_token1] = ACTIONS(3164), - [aux_sym_preproc_if_token1] = ACTIONS(3164), - [aux_sym_preproc_if_token2] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), - [aux_sym_preproc_else_token1] = ACTIONS(3164), - [aux_sym_preproc_elif_token1] = ACTIONS(3164), - [sym_preproc_directive] = ACTIONS(3164), - [anon_sym_LPAREN2] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3166), - [anon_sym_AMP_AMP] = ACTIONS(3166), - [anon_sym_AMP] = ACTIONS(3164), - [anon_sym___extension__] = ACTIONS(3164), - [anon_sym_typedef] = ACTIONS(3164), - [anon_sym_extern] = ACTIONS(3164), - [anon_sym___attribute__] = ACTIONS(3164), - [anon_sym_COLON_COLON] = ACTIONS(3166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), - [anon_sym___declspec] = ACTIONS(3164), - [anon_sym___based] = ACTIONS(3164), - [anon_sym_signed] = ACTIONS(3164), - [anon_sym_unsigned] = ACTIONS(3164), - [anon_sym_long] = ACTIONS(3164), - [anon_sym_short] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_register] = ACTIONS(3164), - [anon_sym_inline] = ACTIONS(3164), - [anon_sym___inline] = ACTIONS(3164), - [anon_sym___inline__] = ACTIONS(3164), - [anon_sym___forceinline] = ACTIONS(3164), - [anon_sym_thread_local] = ACTIONS(3164), - [anon_sym___thread] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_constexpr] = ACTIONS(3164), - [anon_sym_volatile] = ACTIONS(3164), - [anon_sym_restrict] = ACTIONS(3164), - [anon_sym___restrict__] = ACTIONS(3164), - [anon_sym__Atomic] = ACTIONS(3164), - [anon_sym__Noreturn] = ACTIONS(3164), - [anon_sym_noreturn] = ACTIONS(3164), - [anon_sym_mutable] = ACTIONS(3164), - [anon_sym_constinit] = ACTIONS(3164), - [anon_sym_consteval] = ACTIONS(3164), - [sym_primitive_type] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_struct] = ACTIONS(3164), - [anon_sym_union] = ACTIONS(3164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3164), - [anon_sym_decltype] = ACTIONS(3164), - [anon_sym_virtual] = ACTIONS(3164), - [anon_sym_alignas] = ACTIONS(3164), - [anon_sym_explicit] = ACTIONS(3164), - [anon_sym_typename] = ACTIONS(3164), - [anon_sym_template] = ACTIONS(3164), - [anon_sym_operator] = ACTIONS(3164), - [anon_sym_friend] = ACTIONS(3164), - [anon_sym_public] = ACTIONS(3164), - [anon_sym_private] = ACTIONS(3164), - [anon_sym_protected] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_static_assert] = ACTIONS(3164), + [2211] = { + [sym_string_literal] = STATE(2239), + [sym_raw_string_literal] = STATE(2239), + [aux_sym_concatenated_string_repeat1] = STATE(2239), + [sym_identifier] = ACTIONS(5639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5220), + [anon_sym_COMMA] = ACTIONS(5220), + [anon_sym_RPAREN] = ACTIONS(5220), + [anon_sym_LPAREN2] = ACTIONS(5220), + [anon_sym_DASH] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5222), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5222), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5220), + [anon_sym_AMP_AMP] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_AMP] = ACTIONS(5222), + [anon_sym_EQ_EQ] = ACTIONS(5220), + [anon_sym_BANG_EQ] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5222), + [anon_sym_GT_EQ] = ACTIONS(5220), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5222), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5220), + [anon_sym_STAR_EQ] = ACTIONS(5220), + [anon_sym_SLASH_EQ] = ACTIONS(5220), + [anon_sym_PERCENT_EQ] = ACTIONS(5220), + [anon_sym_PLUS_EQ] = ACTIONS(5220), + [anon_sym_DASH_EQ] = ACTIONS(5220), + [anon_sym_LT_LT_EQ] = ACTIONS(5220), + [anon_sym_GT_GT_EQ] = ACTIONS(5220), + [anon_sym_AMP_EQ] = ACTIONS(5220), + [anon_sym_CARET_EQ] = ACTIONS(5220), + [anon_sym_PIPE_EQ] = ACTIONS(5220), + [anon_sym_and_eq] = ACTIONS(5222), + [anon_sym_or_eq] = ACTIONS(5222), + [anon_sym_xor_eq] = ACTIONS(5222), + [anon_sym_LT_EQ_GT] = ACTIONS(5220), + [anon_sym_or] = ACTIONS(5222), + [anon_sym_and] = ACTIONS(5222), + [anon_sym_bitor] = ACTIONS(5222), + [anon_sym_xor] = ACTIONS(5222), + [anon_sym_bitand] = ACTIONS(5222), + [anon_sym_not_eq] = ACTIONS(5222), + [anon_sym_DASH_DASH] = ACTIONS(5220), + [anon_sym_PLUS_PLUS] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(5222), + [anon_sym_DOT_STAR] = ACTIONS(5220), + [anon_sym_DASH_GT] = ACTIONS(5222), + [anon_sym_L_DQUOTE] = ACTIONS(5060), + [anon_sym_u_DQUOTE] = ACTIONS(5060), + [anon_sym_U_DQUOTE] = ACTIONS(5060), + [anon_sym_u8_DQUOTE] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5060), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5062), + [anon_sym_LR_DQUOTE] = ACTIONS(5062), + [anon_sym_uR_DQUOTE] = ACTIONS(5062), + [anon_sym_UR_DQUOTE] = ACTIONS(5062), + [anon_sym_u8R_DQUOTE] = ACTIONS(5062), + [anon_sym_DASH_GT_STAR] = ACTIONS(5220), + [sym_literal_suffix] = ACTIONS(5222), }, - [2360] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2371), - [sym_identifier] = ACTIONS(5871), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5636), - [anon_sym_COMMA] = ACTIONS(5636), - [aux_sym_preproc_if_token2] = ACTIONS(5636), - [aux_sym_preproc_else_token1] = ACTIONS(5636), - [aux_sym_preproc_elif_token1] = ACTIONS(5638), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5636), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5636), - [anon_sym_LPAREN2] = ACTIONS(5636), - [anon_sym_DASH] = ACTIONS(5638), - [anon_sym_PLUS] = ACTIONS(5638), - [anon_sym_STAR] = ACTIONS(5638), - [anon_sym_SLASH] = ACTIONS(5638), - [anon_sym_PERCENT] = ACTIONS(5638), - [anon_sym_PIPE_PIPE] = ACTIONS(5636), - [anon_sym_AMP_AMP] = ACTIONS(5636), - [anon_sym_PIPE] = ACTIONS(5638), - [anon_sym_CARET] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(5638), - [anon_sym_EQ_EQ] = ACTIONS(5636), - [anon_sym_BANG_EQ] = ACTIONS(5636), - [anon_sym_GT] = ACTIONS(5638), - [anon_sym_GT_EQ] = ACTIONS(5636), - [anon_sym_LT_EQ] = ACTIONS(5638), - [anon_sym_LT] = ACTIONS(5638), - [anon_sym_LT_LT] = ACTIONS(5638), - [anon_sym_GT_GT] = ACTIONS(5638), - [anon_sym___attribute__] = ACTIONS(5638), - [anon_sym_LBRACE] = ACTIONS(5636), - [anon_sym_signed] = ACTIONS(5874), - [anon_sym_unsigned] = ACTIONS(5874), - [anon_sym_long] = ACTIONS(5874), - [anon_sym_short] = ACTIONS(5874), - [anon_sym_LBRACK] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5638), - [sym_primitive_type] = ACTIONS(5876), - [anon_sym_QMARK] = ACTIONS(5636), - [anon_sym_STAR_EQ] = ACTIONS(5636), - [anon_sym_SLASH_EQ] = ACTIONS(5636), - [anon_sym_PERCENT_EQ] = ACTIONS(5636), - [anon_sym_PLUS_EQ] = ACTIONS(5636), - [anon_sym_DASH_EQ] = ACTIONS(5636), - [anon_sym_LT_LT_EQ] = ACTIONS(5636), - [anon_sym_GT_GT_EQ] = ACTIONS(5636), - [anon_sym_AMP_EQ] = ACTIONS(5636), - [anon_sym_CARET_EQ] = ACTIONS(5636), - [anon_sym_PIPE_EQ] = ACTIONS(5636), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5636), - [anon_sym_or] = ACTIONS(5638), - [anon_sym_and] = ACTIONS(5638), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5638), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5636), - [anon_sym_PLUS_PLUS] = ACTIONS(5636), - [anon_sym_DOT] = ACTIONS(5638), - [anon_sym_DOT_STAR] = ACTIONS(5636), - [anon_sym_DASH_GT] = ACTIONS(5636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5638), - [anon_sym_decltype] = ACTIONS(5638), + [2212] = { + [sym_catch_clause] = STATE(2264), + [aux_sym_constructor_try_statement_repeat1] = STATE(2264), + [sym_identifier] = ACTIONS(2822), + [aux_sym_preproc_def_token1] = ACTIONS(2822), + [aux_sym_preproc_if_token1] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), + [sym_preproc_directive] = ACTIONS(2822), + [anon_sym_LPAREN2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_AMP_AMP] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym___extension__] = ACTIONS(2822), + [anon_sym_typedef] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym___attribute__] = ACTIONS(2822), + [anon_sym_COLON_COLON] = ACTIONS(2824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), + [anon_sym___declspec] = ACTIONS(2822), + [anon_sym___based] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2824), + [anon_sym_signed] = ACTIONS(2822), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_register] = ACTIONS(2822), + [anon_sym_inline] = ACTIONS(2822), + [anon_sym___inline] = ACTIONS(2822), + [anon_sym___inline__] = ACTIONS(2822), + [anon_sym___forceinline] = ACTIONS(2822), + [anon_sym_thread_local] = ACTIONS(2822), + [anon_sym___thread] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_constexpr] = ACTIONS(2822), + [anon_sym_volatile] = ACTIONS(2822), + [anon_sym_restrict] = ACTIONS(2822), + [anon_sym___restrict__] = ACTIONS(2822), + [anon_sym__Atomic] = ACTIONS(2822), + [anon_sym__Noreturn] = ACTIONS(2822), + [anon_sym_noreturn] = ACTIONS(2822), + [anon_sym_mutable] = ACTIONS(2822), + [anon_sym_constinit] = ACTIONS(2822), + [anon_sym_consteval] = ACTIONS(2822), + [sym_primitive_type] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2822), + [anon_sym_decltype] = ACTIONS(2822), + [anon_sym_virtual] = ACTIONS(2822), + [anon_sym_alignas] = ACTIONS(2822), + [anon_sym_explicit] = ACTIONS(2822), + [anon_sym_typename] = ACTIONS(2822), + [anon_sym_template] = ACTIONS(2822), + [anon_sym_operator] = ACTIONS(2822), + [anon_sym_friend] = ACTIONS(2822), + [anon_sym_public] = ACTIONS(2822), + [anon_sym_private] = ACTIONS(2822), + [anon_sym_protected] = ACTIONS(2822), + [anon_sym_using] = ACTIONS(2822), + [anon_sym_static_assert] = ACTIONS(2822), + [anon_sym_catch] = ACTIONS(5641), }, - [2361] = { - [sym_attribute_declaration] = STATE(2402), - [sym_parameter_list] = STATE(2398), - [aux_sym_attributed_declarator_repeat1] = STATE(2402), - [sym_identifier] = ACTIONS(5878), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5880), - [anon_sym_COMMA] = ACTIONS(5880), - [anon_sym_RPAREN] = ACTIONS(5880), - [aux_sym_preproc_if_token2] = ACTIONS(5880), - [aux_sym_preproc_else_token1] = ACTIONS(5880), - [aux_sym_preproc_elif_token1] = ACTIONS(5878), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5880), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5880), - [anon_sym_LPAREN2] = ACTIONS(5805), - [anon_sym_DASH] = ACTIONS(5878), - [anon_sym_PLUS] = ACTIONS(5878), - [anon_sym_STAR] = ACTIONS(5878), - [anon_sym_SLASH] = ACTIONS(5878), - [anon_sym_PERCENT] = ACTIONS(5878), - [anon_sym_PIPE_PIPE] = ACTIONS(5880), - [anon_sym_AMP_AMP] = ACTIONS(5880), - [anon_sym_PIPE] = ACTIONS(5878), - [anon_sym_CARET] = ACTIONS(5878), - [anon_sym_AMP] = ACTIONS(5878), - [anon_sym_EQ_EQ] = ACTIONS(5880), - [anon_sym_BANG_EQ] = ACTIONS(5880), - [anon_sym_GT] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5878), - [anon_sym_LT] = ACTIONS(5878), - [anon_sym_LT_LT] = ACTIONS(5878), - [anon_sym_GT_GT] = ACTIONS(5878), - [anon_sym_SEMI] = ACTIONS(5880), - [anon_sym___attribute__] = ACTIONS(5878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5807), - [anon_sym_RBRACE] = ACTIONS(5880), - [anon_sym_LBRACK] = ACTIONS(5809), - [anon_sym_RBRACK] = ACTIONS(5880), - [anon_sym_EQ] = ACTIONS(5878), - [anon_sym_COLON] = ACTIONS(5880), - [anon_sym_QMARK] = ACTIONS(5880), - [anon_sym_STAR_EQ] = ACTIONS(5880), - [anon_sym_SLASH_EQ] = ACTIONS(5880), - [anon_sym_PERCENT_EQ] = ACTIONS(5880), - [anon_sym_PLUS_EQ] = ACTIONS(5880), - [anon_sym_DASH_EQ] = ACTIONS(5880), - [anon_sym_LT_LT_EQ] = ACTIONS(5880), - [anon_sym_GT_GT_EQ] = ACTIONS(5880), - [anon_sym_AMP_EQ] = ACTIONS(5880), - [anon_sym_CARET_EQ] = ACTIONS(5880), - [anon_sym_PIPE_EQ] = ACTIONS(5880), - [anon_sym_and_eq] = ACTIONS(5878), - [anon_sym_or_eq] = ACTIONS(5878), - [anon_sym_xor_eq] = ACTIONS(5878), - [anon_sym_LT_EQ_GT] = ACTIONS(5880), - [anon_sym_or] = ACTIONS(5878), - [anon_sym_and] = ACTIONS(5878), - [anon_sym_bitor] = ACTIONS(5878), - [anon_sym_xor] = ACTIONS(5878), - [anon_sym_bitand] = ACTIONS(5878), - [anon_sym_not_eq] = ACTIONS(5878), - [anon_sym_DASH_DASH] = ACTIONS(5880), - [anon_sym_PLUS_PLUS] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(5878), - [anon_sym_DOT_STAR] = ACTIONS(5880), - [anon_sym_DASH_GT] = ACTIONS(5880), - [sym_comment] = ACTIONS(3), + [2213] = { + [sym_identifier] = ACTIONS(5643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5645), + [anon_sym_COMMA] = ACTIONS(5645), + [anon_sym_RPAREN] = ACTIONS(5645), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_DASH] = ACTIONS(5643), + [anon_sym_PLUS] = ACTIONS(5643), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5643), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5645), + [anon_sym_AMP_AMP] = ACTIONS(5645), + [anon_sym_PIPE] = ACTIONS(5643), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5643), + [anon_sym_EQ_EQ] = ACTIONS(5645), + [anon_sym_BANG_EQ] = ACTIONS(5645), + [anon_sym_GT] = ACTIONS(5643), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5643), + [anon_sym_LT] = ACTIONS(5643), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5645), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym___attribute__] = ACTIONS(5643), + [anon_sym___based] = ACTIONS(5643), + [anon_sym_LBRACE] = ACTIONS(5645), + [anon_sym_RBRACE] = ACTIONS(5645), + [anon_sym_signed] = ACTIONS(5643), + [anon_sym_unsigned] = ACTIONS(5643), + [anon_sym_long] = ACTIONS(5643), + [anon_sym_short] = ACTIONS(5643), + [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_RBRACK] = ACTIONS(5645), + [anon_sym_const] = ACTIONS(5643), + [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_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [sym_primitive_type] = ACTIONS(5643), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5645), + [anon_sym_LT_EQ_GT] = ACTIONS(5645), + [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(5645), + [anon_sym_PLUS_PLUS] = ACTIONS(5645), + [anon_sym_DOT] = ACTIONS(5643), + [anon_sym_DOT_STAR] = ACTIONS(5645), + [anon_sym_DASH_GT] = ACTIONS(5645), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5643), + [anon_sym_decltype] = ACTIONS(5643), + [anon_sym_final] = ACTIONS(5643), + [anon_sym_override] = ACTIONS(5643), + [anon_sym_requires] = ACTIONS(5643), }, - [2362] = { - [sym_template_argument_list] = STATE(2051), - [aux_sym_sized_type_specifier_repeat1] = STATE(2469), - [sym_identifier] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4145), - [anon_sym_COMMA] = ACTIONS(4145), - [aux_sym_preproc_if_token2] = ACTIONS(4145), - [aux_sym_preproc_else_token1] = ACTIONS(4145), - [aux_sym_preproc_elif_token1] = ACTIONS(4137), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4145), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4145), - [anon_sym_LPAREN2] = ACTIONS(4145), - [anon_sym_DASH] = ACTIONS(4137), - [anon_sym_PLUS] = ACTIONS(4137), - [anon_sym_STAR] = ACTIONS(4137), - [anon_sym_SLASH] = ACTIONS(4137), - [anon_sym_PERCENT] = ACTIONS(4137), - [anon_sym_PIPE_PIPE] = ACTIONS(4145), - [anon_sym_AMP_AMP] = ACTIONS(4145), - [anon_sym_PIPE] = ACTIONS(4137), - [anon_sym_CARET] = ACTIONS(4137), - [anon_sym_AMP] = ACTIONS(4137), - [anon_sym_EQ_EQ] = ACTIONS(4145), - [anon_sym_BANG_EQ] = ACTIONS(4145), - [anon_sym_GT] = ACTIONS(4137), - [anon_sym_GT_EQ] = ACTIONS(4145), - [anon_sym_LT_EQ] = ACTIONS(4137), - [anon_sym_LT] = ACTIONS(5340), - [anon_sym_LT_LT] = ACTIONS(4137), - [anon_sym_GT_GT] = ACTIONS(4137), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4145), - [anon_sym_signed] = ACTIONS(5570), - [anon_sym_unsigned] = ACTIONS(5570), - [anon_sym_long] = ACTIONS(5570), - [anon_sym_short] = ACTIONS(5570), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_EQ] = ACTIONS(4137), - [anon_sym_QMARK] = ACTIONS(4145), - [anon_sym_STAR_EQ] = ACTIONS(4145), - [anon_sym_SLASH_EQ] = ACTIONS(4145), - [anon_sym_PERCENT_EQ] = ACTIONS(4145), - [anon_sym_PLUS_EQ] = ACTIONS(4145), - [anon_sym_DASH_EQ] = ACTIONS(4145), - [anon_sym_LT_LT_EQ] = ACTIONS(4145), - [anon_sym_GT_GT_EQ] = ACTIONS(4145), - [anon_sym_AMP_EQ] = ACTIONS(4145), - [anon_sym_CARET_EQ] = ACTIONS(4145), - [anon_sym_PIPE_EQ] = ACTIONS(4145), - [anon_sym_and_eq] = ACTIONS(4137), - [anon_sym_or_eq] = ACTIONS(4137), - [anon_sym_xor_eq] = ACTIONS(4137), - [anon_sym_LT_EQ_GT] = ACTIONS(4145), - [anon_sym_or] = ACTIONS(4137), - [anon_sym_and] = ACTIONS(4137), + [2214] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4220), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4173), + [anon_sym_or_eq] = ACTIONS(4173), + [anon_sym_xor_eq] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), [anon_sym_bitor] = ACTIONS(4137), - [anon_sym_xor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), [anon_sym_bitand] = ACTIONS(4137), [anon_sym_not_eq] = ACTIONS(4137), - [anon_sym_DASH_DASH] = ACTIONS(4145), - [anon_sym_PLUS_PLUS] = ACTIONS(4145), - [anon_sym_DOT] = ACTIONS(4137), - [anon_sym_DOT_STAR] = ACTIONS(4145), - [anon_sym_DASH_GT] = ACTIONS(4145), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4137), - [anon_sym_decltype] = ACTIONS(4137), - }, - [2363] = { - [sym_identifier] = ACTIONS(5495), - [aux_sym_preproc_def_token1] = ACTIONS(5495), - [aux_sym_preproc_if_token1] = ACTIONS(5495), - [aux_sym_preproc_if_token2] = ACTIONS(5495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5495), - [aux_sym_preproc_else_token1] = ACTIONS(5495), - [aux_sym_preproc_elif_token1] = ACTIONS(5495), - [sym_preproc_directive] = ACTIONS(5495), - [anon_sym_LPAREN2] = ACTIONS(5497), - [anon_sym_TILDE] = ACTIONS(5497), - [anon_sym_STAR] = ACTIONS(5497), - [anon_sym_AMP_AMP] = ACTIONS(5497), - [anon_sym_AMP] = ACTIONS(5495), - [anon_sym___extension__] = ACTIONS(5495), - [anon_sym_typedef] = ACTIONS(5495), - [anon_sym_extern] = ACTIONS(5495), - [anon_sym___attribute__] = ACTIONS(5495), - [anon_sym_COLON_COLON] = ACTIONS(5497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5497), - [anon_sym___declspec] = ACTIONS(5495), - [anon_sym___based] = ACTIONS(5495), - [anon_sym_signed] = ACTIONS(5495), - [anon_sym_unsigned] = ACTIONS(5495), - [anon_sym_long] = ACTIONS(5495), - [anon_sym_short] = ACTIONS(5495), - [anon_sym_LBRACK] = ACTIONS(5495), - [anon_sym_static] = ACTIONS(5495), - [anon_sym_register] = ACTIONS(5495), - [anon_sym_inline] = ACTIONS(5495), - [anon_sym___inline] = ACTIONS(5495), - [anon_sym___inline__] = ACTIONS(5495), - [anon_sym___forceinline] = ACTIONS(5495), - [anon_sym_thread_local] = ACTIONS(5495), - [anon_sym___thread] = ACTIONS(5495), - [anon_sym_const] = ACTIONS(5495), - [anon_sym_constexpr] = ACTIONS(5495), - [anon_sym_volatile] = ACTIONS(5495), - [anon_sym_restrict] = ACTIONS(5495), - [anon_sym___restrict__] = ACTIONS(5495), - [anon_sym__Atomic] = ACTIONS(5495), - [anon_sym__Noreturn] = ACTIONS(5495), - [anon_sym_noreturn] = ACTIONS(5495), - [anon_sym_mutable] = ACTIONS(5495), - [anon_sym_constinit] = ACTIONS(5495), - [anon_sym_consteval] = ACTIONS(5495), - [sym_primitive_type] = ACTIONS(5495), - [anon_sym_enum] = ACTIONS(5495), - [anon_sym_class] = ACTIONS(5495), - [anon_sym_struct] = ACTIONS(5495), - [anon_sym_union] = ACTIONS(5495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5495), - [anon_sym_decltype] = ACTIONS(5495), - [anon_sym_virtual] = ACTIONS(5495), - [anon_sym_alignas] = ACTIONS(5495), - [anon_sym_explicit] = ACTIONS(5495), - [anon_sym_typename] = ACTIONS(5495), - [anon_sym_template] = ACTIONS(5495), - [anon_sym_operator] = ACTIONS(5495), - [anon_sym_friend] = ACTIONS(5495), - [anon_sym_public] = ACTIONS(5495), - [anon_sym_private] = ACTIONS(5495), - [anon_sym_protected] = ACTIONS(5495), - [anon_sym_using] = ACTIONS(5495), - [anon_sym_static_assert] = ACTIONS(5495), - }, - [2364] = { - [sym_identifier] = ACTIONS(5495), - [aux_sym_preproc_def_token1] = ACTIONS(5495), - [aux_sym_preproc_if_token1] = ACTIONS(5495), - [aux_sym_preproc_if_token2] = ACTIONS(5495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5495), - [aux_sym_preproc_else_token1] = ACTIONS(5495), - [aux_sym_preproc_elif_token1] = ACTIONS(5495), - [sym_preproc_directive] = ACTIONS(5495), - [anon_sym_LPAREN2] = ACTIONS(5497), - [anon_sym_TILDE] = ACTIONS(5497), - [anon_sym_STAR] = ACTIONS(5497), - [anon_sym_AMP_AMP] = ACTIONS(5497), - [anon_sym_AMP] = ACTIONS(5495), - [anon_sym___extension__] = ACTIONS(5495), - [anon_sym_typedef] = ACTIONS(5495), - [anon_sym_extern] = ACTIONS(5495), - [anon_sym___attribute__] = ACTIONS(5495), - [anon_sym_COLON_COLON] = ACTIONS(5497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5497), - [anon_sym___declspec] = ACTIONS(5495), - [anon_sym___based] = ACTIONS(5495), - [anon_sym_signed] = ACTIONS(5495), - [anon_sym_unsigned] = ACTIONS(5495), - [anon_sym_long] = ACTIONS(5495), - [anon_sym_short] = ACTIONS(5495), - [anon_sym_LBRACK] = ACTIONS(5495), - [anon_sym_static] = ACTIONS(5495), - [anon_sym_register] = ACTIONS(5495), - [anon_sym_inline] = ACTIONS(5495), - [anon_sym___inline] = ACTIONS(5495), - [anon_sym___inline__] = ACTIONS(5495), - [anon_sym___forceinline] = ACTIONS(5495), - [anon_sym_thread_local] = ACTIONS(5495), - [anon_sym___thread] = ACTIONS(5495), - [anon_sym_const] = ACTIONS(5495), - [anon_sym_constexpr] = ACTIONS(5495), - [anon_sym_volatile] = ACTIONS(5495), - [anon_sym_restrict] = ACTIONS(5495), - [anon_sym___restrict__] = ACTIONS(5495), - [anon_sym__Atomic] = ACTIONS(5495), - [anon_sym__Noreturn] = ACTIONS(5495), - [anon_sym_noreturn] = ACTIONS(5495), - [anon_sym_mutable] = ACTIONS(5495), - [anon_sym_constinit] = ACTIONS(5495), - [anon_sym_consteval] = ACTIONS(5495), - [sym_primitive_type] = ACTIONS(5495), - [anon_sym_enum] = ACTIONS(5495), - [anon_sym_class] = ACTIONS(5495), - [anon_sym_struct] = ACTIONS(5495), - [anon_sym_union] = ACTIONS(5495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5495), - [anon_sym_decltype] = ACTIONS(5495), - [anon_sym_virtual] = ACTIONS(5495), - [anon_sym_alignas] = ACTIONS(5495), - [anon_sym_explicit] = ACTIONS(5495), - [anon_sym_typename] = ACTIONS(5495), - [anon_sym_template] = ACTIONS(5495), - [anon_sym_operator] = ACTIONS(5495), - [anon_sym_friend] = ACTIONS(5495), - [anon_sym_public] = ACTIONS(5495), - [anon_sym_private] = ACTIONS(5495), - [anon_sym_protected] = ACTIONS(5495), - [anon_sym_using] = ACTIONS(5495), - [anon_sym_static_assert] = ACTIONS(5495), - }, - [2365] = { - [sym_identifier] = ACTIONS(5503), - [aux_sym_preproc_def_token1] = ACTIONS(5503), - [aux_sym_preproc_if_token1] = ACTIONS(5503), - [aux_sym_preproc_if_token2] = ACTIONS(5503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), - [aux_sym_preproc_else_token1] = ACTIONS(5503), - [aux_sym_preproc_elif_token1] = ACTIONS(5503), - [sym_preproc_directive] = ACTIONS(5503), - [anon_sym_LPAREN2] = ACTIONS(5505), - [anon_sym_TILDE] = ACTIONS(5505), - [anon_sym_STAR] = ACTIONS(5505), - [anon_sym_AMP_AMP] = ACTIONS(5505), - [anon_sym_AMP] = ACTIONS(5503), - [anon_sym___extension__] = ACTIONS(5503), - [anon_sym_typedef] = ACTIONS(5503), - [anon_sym_extern] = ACTIONS(5503), - [anon_sym___attribute__] = ACTIONS(5503), - [anon_sym_COLON_COLON] = ACTIONS(5505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), - [anon_sym___declspec] = ACTIONS(5503), - [anon_sym___based] = ACTIONS(5503), - [anon_sym_signed] = ACTIONS(5503), - [anon_sym_unsigned] = ACTIONS(5503), - [anon_sym_long] = ACTIONS(5503), - [anon_sym_short] = ACTIONS(5503), - [anon_sym_LBRACK] = ACTIONS(5503), - [anon_sym_static] = ACTIONS(5503), - [anon_sym_register] = ACTIONS(5503), - [anon_sym_inline] = ACTIONS(5503), - [anon_sym___inline] = ACTIONS(5503), - [anon_sym___inline__] = ACTIONS(5503), - [anon_sym___forceinline] = ACTIONS(5503), - [anon_sym_thread_local] = ACTIONS(5503), - [anon_sym___thread] = ACTIONS(5503), - [anon_sym_const] = ACTIONS(5503), - [anon_sym_constexpr] = ACTIONS(5503), - [anon_sym_volatile] = ACTIONS(5503), - [anon_sym_restrict] = ACTIONS(5503), - [anon_sym___restrict__] = ACTIONS(5503), - [anon_sym__Atomic] = ACTIONS(5503), - [anon_sym__Noreturn] = ACTIONS(5503), - [anon_sym_noreturn] = ACTIONS(5503), - [anon_sym_mutable] = ACTIONS(5503), - [anon_sym_constinit] = ACTIONS(5503), - [anon_sym_consteval] = ACTIONS(5503), - [sym_primitive_type] = ACTIONS(5503), - [anon_sym_enum] = ACTIONS(5503), - [anon_sym_class] = ACTIONS(5503), - [anon_sym_struct] = ACTIONS(5503), - [anon_sym_union] = ACTIONS(5503), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5503), - [anon_sym_decltype] = ACTIONS(5503), - [anon_sym_virtual] = ACTIONS(5503), - [anon_sym_alignas] = ACTIONS(5503), - [anon_sym_explicit] = ACTIONS(5503), - [anon_sym_typename] = ACTIONS(5503), - [anon_sym_template] = ACTIONS(5503), - [anon_sym_operator] = ACTIONS(5503), - [anon_sym_friend] = ACTIONS(5503), - [anon_sym_public] = ACTIONS(5503), - [anon_sym_private] = ACTIONS(5503), - [anon_sym_protected] = ACTIONS(5503), - [anon_sym_using] = ACTIONS(5503), - [anon_sym_static_assert] = ACTIONS(5503), - }, - [2366] = { - [sym_identifier] = ACTIONS(3292), - [aux_sym_preproc_def_token1] = ACTIONS(3292), - [aux_sym_preproc_if_token1] = ACTIONS(3292), - [aux_sym_preproc_if_token2] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3292), - [aux_sym_preproc_else_token1] = ACTIONS(3292), - [aux_sym_preproc_elif_token1] = ACTIONS(3292), - [sym_preproc_directive] = ACTIONS(3292), - [anon_sym_LPAREN2] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_AMP_AMP] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3292), - [anon_sym___extension__] = ACTIONS(3292), - [anon_sym_typedef] = ACTIONS(3292), - [anon_sym_extern] = ACTIONS(3292), - [anon_sym___attribute__] = ACTIONS(3292), - [anon_sym_COLON_COLON] = ACTIONS(3294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3294), - [anon_sym___declspec] = ACTIONS(3292), - [anon_sym___based] = ACTIONS(3292), - [anon_sym_signed] = ACTIONS(3292), - [anon_sym_unsigned] = ACTIONS(3292), - [anon_sym_long] = ACTIONS(3292), - [anon_sym_short] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_register] = ACTIONS(3292), - [anon_sym_inline] = ACTIONS(3292), - [anon_sym___inline] = ACTIONS(3292), - [anon_sym___inline__] = ACTIONS(3292), - [anon_sym___forceinline] = ACTIONS(3292), - [anon_sym_thread_local] = ACTIONS(3292), - [anon_sym___thread] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_constexpr] = ACTIONS(3292), - [anon_sym_volatile] = ACTIONS(3292), - [anon_sym_restrict] = ACTIONS(3292), - [anon_sym___restrict__] = ACTIONS(3292), - [anon_sym__Atomic] = ACTIONS(3292), - [anon_sym__Noreturn] = ACTIONS(3292), - [anon_sym_noreturn] = ACTIONS(3292), - [anon_sym_mutable] = ACTIONS(3292), - [anon_sym_constinit] = ACTIONS(3292), - [anon_sym_consteval] = ACTIONS(3292), - [sym_primitive_type] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_struct] = ACTIONS(3292), - [anon_sym_union] = ACTIONS(3292), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3292), - [anon_sym_decltype] = ACTIONS(3292), - [anon_sym_virtual] = ACTIONS(3292), - [anon_sym_alignas] = ACTIONS(3292), - [anon_sym_explicit] = ACTIONS(3292), - [anon_sym_typename] = ACTIONS(3292), - [anon_sym_template] = ACTIONS(3292), - [anon_sym_operator] = ACTIONS(3292), - [anon_sym_friend] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_static_assert] = ACTIONS(3292), - }, - [2367] = { - [sym_identifier] = ACTIONS(3152), - [aux_sym_preproc_def_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token1] = ACTIONS(3152), - [aux_sym_preproc_if_token2] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3152), - [aux_sym_preproc_else_token1] = ACTIONS(3152), - [aux_sym_preproc_elif_token1] = ACTIONS(3152), - [sym_preproc_directive] = ACTIONS(3152), - [anon_sym_LPAREN2] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_AMP] = ACTIONS(3152), - [anon_sym___extension__] = ACTIONS(3152), - [anon_sym_typedef] = ACTIONS(3152), - [anon_sym_extern] = ACTIONS(3152), - [anon_sym___attribute__] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3154), - [anon_sym___declspec] = ACTIONS(3152), - [anon_sym___based] = ACTIONS(3152), - [anon_sym_signed] = ACTIONS(3152), - [anon_sym_unsigned] = ACTIONS(3152), - [anon_sym_long] = ACTIONS(3152), - [anon_sym_short] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_register] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym___inline] = ACTIONS(3152), - [anon_sym___inline__] = ACTIONS(3152), - [anon_sym___forceinline] = ACTIONS(3152), - [anon_sym_thread_local] = ACTIONS(3152), - [anon_sym___thread] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_constexpr] = ACTIONS(3152), - [anon_sym_volatile] = ACTIONS(3152), - [anon_sym_restrict] = ACTIONS(3152), - [anon_sym___restrict__] = ACTIONS(3152), - [anon_sym__Atomic] = ACTIONS(3152), - [anon_sym__Noreturn] = ACTIONS(3152), - [anon_sym_noreturn] = ACTIONS(3152), - [anon_sym_mutable] = ACTIONS(3152), - [anon_sym_constinit] = ACTIONS(3152), - [anon_sym_consteval] = ACTIONS(3152), - [sym_primitive_type] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_struct] = ACTIONS(3152), - [anon_sym_union] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3152), - [anon_sym_decltype] = ACTIONS(3152), - [anon_sym_virtual] = ACTIONS(3152), - [anon_sym_alignas] = ACTIONS(3152), - [anon_sym_explicit] = ACTIONS(3152), - [anon_sym_typename] = ACTIONS(3152), - [anon_sym_template] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_friend] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_static_assert] = ACTIONS(3152), - }, - [2368] = { - [sym_identifier] = ACTIONS(5507), - [aux_sym_preproc_def_token1] = ACTIONS(5507), - [aux_sym_preproc_if_token1] = ACTIONS(5507), - [aux_sym_preproc_if_token2] = ACTIONS(5507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5507), - [aux_sym_preproc_else_token1] = ACTIONS(5507), - [aux_sym_preproc_elif_token1] = ACTIONS(5507), - [sym_preproc_directive] = ACTIONS(5507), - [anon_sym_LPAREN2] = ACTIONS(5509), - [anon_sym_TILDE] = ACTIONS(5509), - [anon_sym_STAR] = ACTIONS(5509), - [anon_sym_AMP_AMP] = ACTIONS(5509), - [anon_sym_AMP] = ACTIONS(5507), - [anon_sym___extension__] = ACTIONS(5507), - [anon_sym_typedef] = ACTIONS(5507), - [anon_sym_extern] = ACTIONS(5507), - [anon_sym___attribute__] = ACTIONS(5507), - [anon_sym_COLON_COLON] = ACTIONS(5509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), - [anon_sym___declspec] = ACTIONS(5507), - [anon_sym___based] = ACTIONS(5507), - [anon_sym_signed] = ACTIONS(5507), - [anon_sym_unsigned] = ACTIONS(5507), - [anon_sym_long] = ACTIONS(5507), - [anon_sym_short] = ACTIONS(5507), - [anon_sym_LBRACK] = ACTIONS(5507), - [anon_sym_static] = ACTIONS(5507), - [anon_sym_register] = ACTIONS(5507), - [anon_sym_inline] = ACTIONS(5507), - [anon_sym___inline] = ACTIONS(5507), - [anon_sym___inline__] = ACTIONS(5507), - [anon_sym___forceinline] = ACTIONS(5507), - [anon_sym_thread_local] = ACTIONS(5507), - [anon_sym___thread] = ACTIONS(5507), - [anon_sym_const] = ACTIONS(5507), - [anon_sym_constexpr] = ACTIONS(5507), - [anon_sym_volatile] = ACTIONS(5507), - [anon_sym_restrict] = ACTIONS(5507), - [anon_sym___restrict__] = ACTIONS(5507), - [anon_sym__Atomic] = ACTIONS(5507), - [anon_sym__Noreturn] = ACTIONS(5507), - [anon_sym_noreturn] = ACTIONS(5507), - [anon_sym_mutable] = ACTIONS(5507), - [anon_sym_constinit] = ACTIONS(5507), - [anon_sym_consteval] = ACTIONS(5507), - [sym_primitive_type] = ACTIONS(5507), - [anon_sym_enum] = ACTIONS(5507), - [anon_sym_class] = ACTIONS(5507), - [anon_sym_struct] = ACTIONS(5507), - [anon_sym_union] = ACTIONS(5507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5507), - [anon_sym_decltype] = ACTIONS(5507), - [anon_sym_virtual] = ACTIONS(5507), - [anon_sym_alignas] = ACTIONS(5507), - [anon_sym_explicit] = ACTIONS(5507), - [anon_sym_typename] = ACTIONS(5507), - [anon_sym_template] = ACTIONS(5507), - [anon_sym_operator] = ACTIONS(5507), - [anon_sym_friend] = ACTIONS(5507), - [anon_sym_public] = ACTIONS(5507), - [anon_sym_private] = ACTIONS(5507), - [anon_sym_protected] = ACTIONS(5507), - [anon_sym_using] = ACTIONS(5507), - [anon_sym_static_assert] = ACTIONS(5507), - }, - [2369] = { - [sym_identifier] = ACTIONS(5511), - [aux_sym_preproc_def_token1] = ACTIONS(5511), - [aux_sym_preproc_if_token1] = ACTIONS(5511), - [aux_sym_preproc_if_token2] = ACTIONS(5511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5511), - [aux_sym_preproc_else_token1] = ACTIONS(5511), - [aux_sym_preproc_elif_token1] = ACTIONS(5511), - [sym_preproc_directive] = ACTIONS(5511), - [anon_sym_LPAREN2] = ACTIONS(5513), - [anon_sym_TILDE] = ACTIONS(5513), - [anon_sym_STAR] = ACTIONS(5513), - [anon_sym_AMP_AMP] = ACTIONS(5513), - [anon_sym_AMP] = ACTIONS(5511), - [anon_sym___extension__] = ACTIONS(5511), - [anon_sym_typedef] = ACTIONS(5511), - [anon_sym_extern] = ACTIONS(5511), - [anon_sym___attribute__] = ACTIONS(5511), - [anon_sym_COLON_COLON] = ACTIONS(5513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), - [anon_sym___declspec] = ACTIONS(5511), - [anon_sym___based] = ACTIONS(5511), - [anon_sym_signed] = ACTIONS(5511), - [anon_sym_unsigned] = ACTIONS(5511), - [anon_sym_long] = ACTIONS(5511), - [anon_sym_short] = ACTIONS(5511), - [anon_sym_LBRACK] = ACTIONS(5511), - [anon_sym_static] = ACTIONS(5511), - [anon_sym_register] = ACTIONS(5511), - [anon_sym_inline] = ACTIONS(5511), - [anon_sym___inline] = ACTIONS(5511), - [anon_sym___inline__] = ACTIONS(5511), - [anon_sym___forceinline] = ACTIONS(5511), - [anon_sym_thread_local] = ACTIONS(5511), - [anon_sym___thread] = ACTIONS(5511), - [anon_sym_const] = ACTIONS(5511), - [anon_sym_constexpr] = ACTIONS(5511), - [anon_sym_volatile] = ACTIONS(5511), - [anon_sym_restrict] = ACTIONS(5511), - [anon_sym___restrict__] = ACTIONS(5511), - [anon_sym__Atomic] = ACTIONS(5511), - [anon_sym__Noreturn] = ACTIONS(5511), - [anon_sym_noreturn] = ACTIONS(5511), - [anon_sym_mutable] = ACTIONS(5511), - [anon_sym_constinit] = ACTIONS(5511), - [anon_sym_consteval] = ACTIONS(5511), - [sym_primitive_type] = ACTIONS(5511), - [anon_sym_enum] = ACTIONS(5511), - [anon_sym_class] = ACTIONS(5511), - [anon_sym_struct] = ACTIONS(5511), - [anon_sym_union] = ACTIONS(5511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5511), - [anon_sym_decltype] = ACTIONS(5511), - [anon_sym_virtual] = ACTIONS(5511), - [anon_sym_alignas] = ACTIONS(5511), - [anon_sym_explicit] = ACTIONS(5511), - [anon_sym_typename] = ACTIONS(5511), - [anon_sym_template] = ACTIONS(5511), - [anon_sym_operator] = ACTIONS(5511), - [anon_sym_friend] = ACTIONS(5511), - [anon_sym_public] = ACTIONS(5511), - [anon_sym_private] = ACTIONS(5511), - [anon_sym_protected] = ACTIONS(5511), - [anon_sym_using] = ACTIONS(5511), - [anon_sym_static_assert] = ACTIONS(5511), - }, - [2370] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_RBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(5657), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(5659), - [anon_sym_SLASH_EQ] = ACTIONS(5659), - [anon_sym_PERCENT_EQ] = ACTIONS(5659), - [anon_sym_PLUS_EQ] = ACTIONS(5659), - [anon_sym_DASH_EQ] = ACTIONS(5659), - [anon_sym_LT_LT_EQ] = ACTIONS(5659), - [anon_sym_GT_GT_EQ] = ACTIONS(5659), - [anon_sym_AMP_EQ] = ACTIONS(5659), - [anon_sym_CARET_EQ] = ACTIONS(5659), - [anon_sym_PIPE_EQ] = ACTIONS(5659), - [anon_sym_and_eq] = ACTIONS(5659), - [anon_sym_or_eq] = ACTIONS(5659), - [anon_sym_xor_eq] = ACTIONS(5659), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), - }, - [2371] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1993), - [sym_identifier] = ACTIONS(5789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5786), - [anon_sym_COMMA] = ACTIONS(5786), - [aux_sym_preproc_if_token2] = ACTIONS(5786), - [aux_sym_preproc_else_token1] = ACTIONS(5786), - [aux_sym_preproc_elif_token1] = ACTIONS(5789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5786), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5786), - [anon_sym_LPAREN2] = ACTIONS(5786), - [anon_sym_DASH] = ACTIONS(5789), - [anon_sym_PLUS] = ACTIONS(5789), - [anon_sym_STAR] = ACTIONS(5789), - [anon_sym_SLASH] = ACTIONS(5789), - [anon_sym_PERCENT] = ACTIONS(5789), - [anon_sym_PIPE_PIPE] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(5786), - [anon_sym_PIPE] = ACTIONS(5789), - [anon_sym_CARET] = ACTIONS(5789), - [anon_sym_AMP] = ACTIONS(5789), - [anon_sym_EQ_EQ] = ACTIONS(5786), - [anon_sym_BANG_EQ] = ACTIONS(5786), - [anon_sym_GT] = ACTIONS(5789), - [anon_sym_GT_EQ] = ACTIONS(5786), - [anon_sym_LT_EQ] = ACTIONS(5789), - [anon_sym_LT] = ACTIONS(5789), - [anon_sym_LT_LT] = ACTIONS(5789), - [anon_sym_GT_GT] = ACTIONS(5789), - [anon_sym___attribute__] = ACTIONS(5789), - [anon_sym_LBRACE] = ACTIONS(5786), - [anon_sym_signed] = ACTIONS(5271), - [anon_sym_unsigned] = ACTIONS(5271), - [anon_sym_long] = ACTIONS(5271), - [anon_sym_short] = ACTIONS(5271), - [anon_sym_LBRACK] = ACTIONS(5786), - [anon_sym_EQ] = ACTIONS(5789), - [sym_primitive_type] = ACTIONS(5246), - [anon_sym_QMARK] = ACTIONS(5786), - [anon_sym_STAR_EQ] = ACTIONS(5786), - [anon_sym_SLASH_EQ] = ACTIONS(5786), - [anon_sym_PERCENT_EQ] = ACTIONS(5786), - [anon_sym_PLUS_EQ] = ACTIONS(5786), - [anon_sym_DASH_EQ] = ACTIONS(5786), - [anon_sym_LT_LT_EQ] = ACTIONS(5786), - [anon_sym_GT_GT_EQ] = ACTIONS(5786), - [anon_sym_AMP_EQ] = ACTIONS(5786), - [anon_sym_CARET_EQ] = ACTIONS(5786), - [anon_sym_PIPE_EQ] = ACTIONS(5786), - [anon_sym_and_eq] = ACTIONS(5789), - [anon_sym_or_eq] = ACTIONS(5789), - [anon_sym_xor_eq] = ACTIONS(5789), - [anon_sym_LT_EQ_GT] = ACTIONS(5786), - [anon_sym_or] = ACTIONS(5789), - [anon_sym_and] = ACTIONS(5789), - [anon_sym_bitor] = ACTIONS(5789), - [anon_sym_xor] = ACTIONS(5789), - [anon_sym_bitand] = ACTIONS(5789), - [anon_sym_not_eq] = ACTIONS(5789), - [anon_sym_DASH_DASH] = ACTIONS(5786), - [anon_sym_PLUS_PLUS] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(5789), - [anon_sym_DOT_STAR] = ACTIONS(5786), - [anon_sym_DASH_GT] = ACTIONS(5786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5789), - [anon_sym_decltype] = ACTIONS(5789), - }, - [2372] = { - [sym_identifier] = ACTIONS(2877), - [aux_sym_preproc_def_token1] = ACTIONS(2877), - [aux_sym_preproc_if_token1] = ACTIONS(2877), - [aux_sym_preproc_if_token2] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2877), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2877), - [aux_sym_preproc_else_token1] = ACTIONS(2877), - [aux_sym_preproc_elif_token1] = ACTIONS(2877), - [sym_preproc_directive] = ACTIONS(2877), - [anon_sym_LPAREN2] = ACTIONS(2879), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_STAR] = ACTIONS(2879), - [anon_sym_AMP_AMP] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym___extension__] = ACTIONS(2877), - [anon_sym_typedef] = ACTIONS(2877), - [anon_sym_extern] = ACTIONS(2877), - [anon_sym___attribute__] = ACTIONS(2877), - [anon_sym_COLON_COLON] = ACTIONS(2879), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2879), - [anon_sym___declspec] = ACTIONS(2877), - [anon_sym___based] = ACTIONS(2877), - [anon_sym_signed] = ACTIONS(2877), - [anon_sym_unsigned] = ACTIONS(2877), - [anon_sym_long] = ACTIONS(2877), - [anon_sym_short] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_register] = ACTIONS(2877), - [anon_sym_inline] = ACTIONS(2877), - [anon_sym___inline] = ACTIONS(2877), - [anon_sym___inline__] = ACTIONS(2877), - [anon_sym___forceinline] = ACTIONS(2877), - [anon_sym_thread_local] = ACTIONS(2877), - [anon_sym___thread] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_constexpr] = ACTIONS(2877), - [anon_sym_volatile] = ACTIONS(2877), - [anon_sym_restrict] = ACTIONS(2877), - [anon_sym___restrict__] = ACTIONS(2877), - [anon_sym__Atomic] = ACTIONS(2877), - [anon_sym__Noreturn] = ACTIONS(2877), - [anon_sym_noreturn] = ACTIONS(2877), - [anon_sym_mutable] = ACTIONS(2877), - [anon_sym_constinit] = ACTIONS(2877), - [anon_sym_consteval] = ACTIONS(2877), - [sym_primitive_type] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2877), - [anon_sym_decltype] = ACTIONS(2877), - [anon_sym_virtual] = ACTIONS(2877), - [anon_sym_alignas] = ACTIONS(2877), - [anon_sym_explicit] = ACTIONS(2877), - [anon_sym_typename] = ACTIONS(2877), - [anon_sym_template] = ACTIONS(2877), - [anon_sym_operator] = ACTIONS(2877), - [anon_sym_friend] = ACTIONS(2877), - [anon_sym_public] = ACTIONS(2877), - [anon_sym_private] = ACTIONS(2877), - [anon_sym_protected] = ACTIONS(2877), - [anon_sym_using] = ACTIONS(2877), - [anon_sym_static_assert] = ACTIONS(2877), - }, - [2373] = { - [sym_identifier] = ACTIONS(5392), - [aux_sym_preproc_def_token1] = ACTIONS(5392), - [aux_sym_preproc_if_token1] = ACTIONS(5392), - [aux_sym_preproc_if_token2] = ACTIONS(5392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5392), - [aux_sym_preproc_else_token1] = ACTIONS(5392), - [aux_sym_preproc_elif_token1] = ACTIONS(5392), - [sym_preproc_directive] = ACTIONS(5392), - [anon_sym_LPAREN2] = ACTIONS(5394), - [anon_sym_TILDE] = ACTIONS(5394), - [anon_sym_STAR] = ACTIONS(5394), - [anon_sym_AMP_AMP] = ACTIONS(5394), - [anon_sym_AMP] = ACTIONS(5392), - [anon_sym___extension__] = ACTIONS(5392), - [anon_sym_typedef] = ACTIONS(5392), - [anon_sym_extern] = ACTIONS(5392), - [anon_sym___attribute__] = ACTIONS(5392), - [anon_sym_COLON_COLON] = ACTIONS(5394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5394), - [anon_sym___declspec] = ACTIONS(5392), - [anon_sym___based] = ACTIONS(5392), - [anon_sym_signed] = ACTIONS(5392), - [anon_sym_unsigned] = ACTIONS(5392), - [anon_sym_long] = ACTIONS(5392), - [anon_sym_short] = ACTIONS(5392), - [anon_sym_LBRACK] = ACTIONS(5392), - [anon_sym_static] = ACTIONS(5392), - [anon_sym_register] = ACTIONS(5392), - [anon_sym_inline] = ACTIONS(5392), - [anon_sym___inline] = ACTIONS(5392), - [anon_sym___inline__] = ACTIONS(5392), - [anon_sym___forceinline] = ACTIONS(5392), - [anon_sym_thread_local] = ACTIONS(5392), - [anon_sym___thread] = ACTIONS(5392), - [anon_sym_const] = ACTIONS(5392), - [anon_sym_constexpr] = ACTIONS(5392), - [anon_sym_volatile] = ACTIONS(5392), - [anon_sym_restrict] = ACTIONS(5392), - [anon_sym___restrict__] = ACTIONS(5392), - [anon_sym__Atomic] = ACTIONS(5392), - [anon_sym__Noreturn] = ACTIONS(5392), - [anon_sym_noreturn] = ACTIONS(5392), - [anon_sym_mutable] = ACTIONS(5392), - [anon_sym_constinit] = ACTIONS(5392), - [anon_sym_consteval] = ACTIONS(5392), - [sym_primitive_type] = ACTIONS(5392), - [anon_sym_enum] = ACTIONS(5392), - [anon_sym_class] = ACTIONS(5392), - [anon_sym_struct] = ACTIONS(5392), - [anon_sym_union] = ACTIONS(5392), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5392), - [anon_sym_decltype] = ACTIONS(5392), - [anon_sym_virtual] = ACTIONS(5392), - [anon_sym_alignas] = ACTIONS(5392), - [anon_sym_explicit] = ACTIONS(5392), - [anon_sym_typename] = ACTIONS(5392), - [anon_sym_template] = ACTIONS(5392), - [anon_sym_operator] = ACTIONS(5392), - [anon_sym_friend] = ACTIONS(5392), - [anon_sym_public] = ACTIONS(5392), - [anon_sym_private] = ACTIONS(5392), - [anon_sym_protected] = ACTIONS(5392), - [anon_sym_using] = ACTIONS(5392), - [anon_sym_static_assert] = ACTIONS(5392), - }, - [2374] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1993), - [sym_identifier] = ACTIONS(5246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5786), - [anon_sym_COMMA] = ACTIONS(5786), - [anon_sym_RPAREN] = ACTIONS(5786), - [anon_sym_LPAREN2] = ACTIONS(5786), - [anon_sym_DASH] = ACTIONS(5789), - [anon_sym_PLUS] = ACTIONS(5789), - [anon_sym_STAR] = ACTIONS(5789), - [anon_sym_SLASH] = ACTIONS(5789), - [anon_sym_PERCENT] = ACTIONS(5789), - [anon_sym_PIPE_PIPE] = ACTIONS(5786), - [anon_sym_AMP_AMP] = ACTIONS(5786), - [anon_sym_PIPE] = ACTIONS(5789), - [anon_sym_CARET] = ACTIONS(5789), - [anon_sym_AMP] = ACTIONS(5789), - [anon_sym_EQ_EQ] = ACTIONS(5786), - [anon_sym_BANG_EQ] = ACTIONS(5786), - [anon_sym_GT] = ACTIONS(5789), - [anon_sym_GT_EQ] = ACTIONS(5786), - [anon_sym_LT_EQ] = ACTIONS(5789), - [anon_sym_LT] = ACTIONS(5789), - [anon_sym_LT_LT] = ACTIONS(5789), - [anon_sym_GT_GT] = ACTIONS(5789), - [anon_sym_SEMI] = ACTIONS(5786), - [anon_sym___attribute__] = ACTIONS(5789), - [anon_sym_LBRACE] = ACTIONS(5786), - [anon_sym_RBRACE] = ACTIONS(5786), - [anon_sym_signed] = ACTIONS(5271), - [anon_sym_unsigned] = ACTIONS(5271), - [anon_sym_long] = ACTIONS(5271), - [anon_sym_short] = ACTIONS(5271), - [anon_sym_LBRACK] = ACTIONS(5786), - [anon_sym_RBRACK] = ACTIONS(5786), - [anon_sym_EQ] = ACTIONS(5789), - [sym_primitive_type] = ACTIONS(5246), - [anon_sym_COLON] = ACTIONS(5786), - [anon_sym_QMARK] = ACTIONS(5786), - [anon_sym_STAR_EQ] = ACTIONS(5786), - [anon_sym_SLASH_EQ] = ACTIONS(5786), - [anon_sym_PERCENT_EQ] = ACTIONS(5786), - [anon_sym_PLUS_EQ] = ACTIONS(5786), - [anon_sym_DASH_EQ] = ACTIONS(5786), - [anon_sym_LT_LT_EQ] = ACTIONS(5786), - [anon_sym_GT_GT_EQ] = ACTIONS(5786), - [anon_sym_AMP_EQ] = ACTIONS(5786), - [anon_sym_CARET_EQ] = ACTIONS(5786), - [anon_sym_PIPE_EQ] = ACTIONS(5786), - [anon_sym_and_eq] = ACTIONS(5789), - [anon_sym_or_eq] = ACTIONS(5789), - [anon_sym_xor_eq] = ACTIONS(5789), - [anon_sym_LT_EQ_GT] = ACTIONS(5786), - [anon_sym_or] = ACTIONS(5789), - [anon_sym_and] = ACTIONS(5789), - [anon_sym_bitor] = ACTIONS(5789), - [anon_sym_xor] = ACTIONS(5789), - [anon_sym_bitand] = ACTIONS(5789), - [anon_sym_not_eq] = ACTIONS(5789), - [anon_sym_DASH_DASH] = ACTIONS(5786), - [anon_sym_PLUS_PLUS] = ACTIONS(5786), - [anon_sym_DOT] = ACTIONS(5789), - [anon_sym_DOT_STAR] = ACTIONS(5786), - [anon_sym_DASH_GT] = ACTIONS(5786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5789), - [anon_sym_decltype] = ACTIONS(5789), - }, - [2375] = { - [sym_identifier] = ACTIONS(2996), - [aux_sym_preproc_def_token1] = ACTIONS(2996), - [aux_sym_preproc_if_token1] = ACTIONS(2996), - [aux_sym_preproc_if_token2] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2996), - [aux_sym_preproc_else_token1] = ACTIONS(2996), - [aux_sym_preproc_elif_token1] = ACTIONS(2996), - [sym_preproc_directive] = ACTIONS(2996), - [anon_sym_LPAREN2] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_AMP_AMP] = ACTIONS(2998), - [anon_sym_AMP] = ACTIONS(2996), - [anon_sym___extension__] = ACTIONS(2996), - [anon_sym_typedef] = ACTIONS(2996), - [anon_sym_extern] = ACTIONS(2996), - [anon_sym___attribute__] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(2998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), - [anon_sym___declspec] = ACTIONS(2996), - [anon_sym___based] = ACTIONS(2996), - [anon_sym_signed] = ACTIONS(2996), - [anon_sym_unsigned] = ACTIONS(2996), - [anon_sym_long] = ACTIONS(2996), - [anon_sym_short] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2996), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_register] = ACTIONS(2996), - [anon_sym_inline] = ACTIONS(2996), - [anon_sym___inline] = ACTIONS(2996), - [anon_sym___inline__] = ACTIONS(2996), - [anon_sym___forceinline] = ACTIONS(2996), - [anon_sym_thread_local] = ACTIONS(2996), - [anon_sym___thread] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_constexpr] = ACTIONS(2996), - [anon_sym_volatile] = ACTIONS(2996), - [anon_sym_restrict] = ACTIONS(2996), - [anon_sym___restrict__] = ACTIONS(2996), - [anon_sym__Atomic] = ACTIONS(2996), - [anon_sym__Noreturn] = ACTIONS(2996), - [anon_sym_noreturn] = ACTIONS(2996), - [anon_sym_mutable] = ACTIONS(2996), - [anon_sym_constinit] = ACTIONS(2996), - [anon_sym_consteval] = ACTIONS(2996), - [sym_primitive_type] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), - [anon_sym_class] = ACTIONS(2996), - [anon_sym_struct] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(2996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2996), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2996), - [anon_sym_alignas] = ACTIONS(2996), - [anon_sym_explicit] = ACTIONS(2996), - [anon_sym_typename] = ACTIONS(2996), - [anon_sym_template] = ACTIONS(2996), - [anon_sym_operator] = ACTIONS(2996), - [anon_sym_friend] = ACTIONS(2996), - [anon_sym_public] = ACTIONS(2996), - [anon_sym_private] = ACTIONS(2996), - [anon_sym_protected] = ACTIONS(2996), - [anon_sym_using] = ACTIONS(2996), - [anon_sym_static_assert] = ACTIONS(2996), - }, - [2376] = { - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token2] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [aux_sym_preproc_else_token1] = ACTIONS(3148), - [aux_sym_preproc_elif_token1] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_friend] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - }, - [2377] = { - [sym_identifier] = ACTIONS(5558), - [aux_sym_preproc_def_token1] = ACTIONS(5558), - [aux_sym_preproc_if_token1] = ACTIONS(5558), - [aux_sym_preproc_if_token2] = ACTIONS(5558), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5558), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5558), - [aux_sym_preproc_else_token1] = ACTIONS(5558), - [aux_sym_preproc_elif_token1] = ACTIONS(5558), - [sym_preproc_directive] = ACTIONS(5558), - [anon_sym_LPAREN2] = ACTIONS(5560), - [anon_sym_TILDE] = ACTIONS(5560), - [anon_sym_STAR] = ACTIONS(5560), - [anon_sym_AMP_AMP] = ACTIONS(5560), - [anon_sym_AMP] = ACTIONS(5558), - [anon_sym___extension__] = ACTIONS(5558), - [anon_sym_typedef] = ACTIONS(5558), - [anon_sym_extern] = ACTIONS(5558), - [anon_sym___attribute__] = ACTIONS(5558), - [anon_sym_COLON_COLON] = ACTIONS(5560), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5560), - [anon_sym___declspec] = ACTIONS(5558), - [anon_sym___based] = ACTIONS(5558), - [anon_sym_signed] = ACTIONS(5558), - [anon_sym_unsigned] = ACTIONS(5558), - [anon_sym_long] = ACTIONS(5558), - [anon_sym_short] = ACTIONS(5558), - [anon_sym_LBRACK] = ACTIONS(5558), - [anon_sym_static] = ACTIONS(5558), - [anon_sym_register] = ACTIONS(5558), - [anon_sym_inline] = ACTIONS(5558), - [anon_sym___inline] = ACTIONS(5558), - [anon_sym___inline__] = ACTIONS(5558), - [anon_sym___forceinline] = ACTIONS(5558), - [anon_sym_thread_local] = ACTIONS(5558), - [anon_sym___thread] = ACTIONS(5558), - [anon_sym_const] = ACTIONS(5558), - [anon_sym_constexpr] = ACTIONS(5558), - [anon_sym_volatile] = ACTIONS(5558), - [anon_sym_restrict] = ACTIONS(5558), - [anon_sym___restrict__] = ACTIONS(5558), - [anon_sym__Atomic] = ACTIONS(5558), - [anon_sym__Noreturn] = ACTIONS(5558), - [anon_sym_noreturn] = ACTIONS(5558), - [anon_sym_mutable] = ACTIONS(5558), - [anon_sym_constinit] = ACTIONS(5558), - [anon_sym_consteval] = ACTIONS(5558), - [sym_primitive_type] = ACTIONS(5558), - [anon_sym_enum] = ACTIONS(5558), - [anon_sym_class] = ACTIONS(5558), - [anon_sym_struct] = ACTIONS(5558), - [anon_sym_union] = ACTIONS(5558), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5558), - [anon_sym_decltype] = ACTIONS(5558), - [anon_sym_virtual] = ACTIONS(5558), - [anon_sym_alignas] = ACTIONS(5558), - [anon_sym_explicit] = ACTIONS(5558), - [anon_sym_typename] = ACTIONS(5558), - [anon_sym_template] = ACTIONS(5558), - [anon_sym_operator] = ACTIONS(5558), - [anon_sym_friend] = ACTIONS(5558), - [anon_sym_public] = ACTIONS(5558), - [anon_sym_private] = ACTIONS(5558), - [anon_sym_protected] = ACTIONS(5558), - [anon_sym_using] = ACTIONS(5558), - [anon_sym_static_assert] = ACTIONS(5558), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), }, - [2378] = { - [sym_attribute_specifier] = STATE(2441), - [sym_identifier] = ACTIONS(5882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5884), - [anon_sym_COMMA] = ACTIONS(5884), - [anon_sym_RPAREN] = ACTIONS(5884), - [aux_sym_preproc_if_token2] = ACTIONS(5884), - [aux_sym_preproc_else_token1] = ACTIONS(5884), - [aux_sym_preproc_elif_token1] = ACTIONS(5882), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5884), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5884), - [anon_sym_LPAREN2] = ACTIONS(5884), - [anon_sym_DASH] = ACTIONS(5882), - [anon_sym_PLUS] = ACTIONS(5882), - [anon_sym_STAR] = ACTIONS(5882), - [anon_sym_SLASH] = ACTIONS(5882), - [anon_sym_PERCENT] = ACTIONS(5882), - [anon_sym_PIPE_PIPE] = ACTIONS(5884), - [anon_sym_AMP_AMP] = ACTIONS(5884), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_CARET] = ACTIONS(5882), - [anon_sym_AMP] = ACTIONS(5882), - [anon_sym_EQ_EQ] = ACTIONS(5884), - [anon_sym_BANG_EQ] = ACTIONS(5884), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_GT_EQ] = ACTIONS(5884), - [anon_sym_LT_EQ] = ACTIONS(5882), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_LT_LT] = ACTIONS(5882), - [anon_sym_GT_GT] = ACTIONS(5882), - [anon_sym_SEMI] = ACTIONS(5884), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5884), - [anon_sym_RBRACE] = ACTIONS(5884), - [anon_sym_LBRACK] = ACTIONS(5884), - [anon_sym_RBRACK] = ACTIONS(5884), - [anon_sym_EQ] = ACTIONS(5882), - [anon_sym_COLON] = ACTIONS(5884), - [anon_sym_QMARK] = ACTIONS(5884), - [anon_sym_STAR_EQ] = ACTIONS(5884), - [anon_sym_SLASH_EQ] = ACTIONS(5884), - [anon_sym_PERCENT_EQ] = ACTIONS(5884), - [anon_sym_PLUS_EQ] = ACTIONS(5884), - [anon_sym_DASH_EQ] = ACTIONS(5884), - [anon_sym_LT_LT_EQ] = ACTIONS(5884), - [anon_sym_GT_GT_EQ] = ACTIONS(5884), - [anon_sym_AMP_EQ] = ACTIONS(5884), - [anon_sym_CARET_EQ] = ACTIONS(5884), - [anon_sym_PIPE_EQ] = ACTIONS(5884), - [anon_sym_and_eq] = ACTIONS(5882), - [anon_sym_or_eq] = ACTIONS(5882), - [anon_sym_xor_eq] = ACTIONS(5882), - [anon_sym_LT_EQ_GT] = ACTIONS(5884), - [anon_sym_or] = ACTIONS(5882), - [anon_sym_and] = ACTIONS(5882), - [anon_sym_bitor] = ACTIONS(5882), - [anon_sym_xor] = ACTIONS(5882), - [anon_sym_bitand] = ACTIONS(5882), - [anon_sym_not_eq] = ACTIONS(5882), - [anon_sym_DASH_DASH] = ACTIONS(5884), - [anon_sym_PLUS_PLUS] = ACTIONS(5884), - [anon_sym_DOT] = ACTIONS(5882), - [anon_sym_DOT_STAR] = ACTIONS(5884), - [anon_sym_DASH_GT] = ACTIONS(5884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5882), - [anon_sym_decltype] = ACTIONS(5882), + [2215] = { + [sym_identifier] = ACTIONS(5643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5645), + [anon_sym_COMMA] = ACTIONS(5645), + [anon_sym_RPAREN] = ACTIONS(5645), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_DASH] = ACTIONS(5643), + [anon_sym_PLUS] = ACTIONS(5643), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5643), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5645), + [anon_sym_AMP_AMP] = ACTIONS(5645), + [anon_sym_PIPE] = ACTIONS(5643), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5643), + [anon_sym_EQ_EQ] = ACTIONS(5645), + [anon_sym_BANG_EQ] = ACTIONS(5645), + [anon_sym_GT] = ACTIONS(5643), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5643), + [anon_sym_LT] = ACTIONS(5643), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5645), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym___attribute__] = ACTIONS(5643), + [anon_sym___based] = ACTIONS(5643), + [anon_sym_LBRACE] = ACTIONS(5645), + [anon_sym_RBRACE] = ACTIONS(5645), + [anon_sym_signed] = ACTIONS(5643), + [anon_sym_unsigned] = ACTIONS(5643), + [anon_sym_long] = ACTIONS(5643), + [anon_sym_short] = ACTIONS(5643), + [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_RBRACK] = ACTIONS(5645), + [anon_sym_const] = ACTIONS(5643), + [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_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [sym_primitive_type] = ACTIONS(5643), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5645), + [anon_sym_LT_EQ_GT] = ACTIONS(5645), + [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(5645), + [anon_sym_PLUS_PLUS] = ACTIONS(5645), + [anon_sym_DOT] = ACTIONS(5643), + [anon_sym_DOT_STAR] = ACTIONS(5645), + [anon_sym_DASH_GT] = ACTIONS(5645), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5643), + [anon_sym_decltype] = ACTIONS(5643), + [anon_sym_final] = ACTIONS(5643), + [anon_sym_override] = ACTIONS(5643), + [anon_sym_requires] = ACTIONS(5643), }, - [2379] = { - [sym_identifier] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token2] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [aux_sym_preproc_else_token1] = ACTIONS(5554), - [aux_sym_preproc_elif_token1] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5556), - [anon_sym_TILDE] = ACTIONS(5556), - [anon_sym_STAR] = ACTIONS(5556), - [anon_sym_AMP_AMP] = ACTIONS(5556), - [anon_sym_AMP] = ACTIONS(5554), - [anon_sym___extension__] = ACTIONS(5554), - [anon_sym_typedef] = ACTIONS(5554), - [anon_sym_extern] = ACTIONS(5554), - [anon_sym___attribute__] = ACTIONS(5554), - [anon_sym_COLON_COLON] = ACTIONS(5556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5556), - [anon_sym___declspec] = ACTIONS(5554), - [anon_sym___based] = ACTIONS(5554), - [anon_sym_signed] = ACTIONS(5554), - [anon_sym_unsigned] = ACTIONS(5554), - [anon_sym_long] = ACTIONS(5554), - [anon_sym_short] = ACTIONS(5554), - [anon_sym_LBRACK] = ACTIONS(5554), - [anon_sym_static] = ACTIONS(5554), - [anon_sym_register] = ACTIONS(5554), - [anon_sym_inline] = ACTIONS(5554), - [anon_sym___inline] = ACTIONS(5554), - [anon_sym___inline__] = ACTIONS(5554), - [anon_sym___forceinline] = ACTIONS(5554), - [anon_sym_thread_local] = ACTIONS(5554), - [anon_sym___thread] = ACTIONS(5554), - [anon_sym_const] = ACTIONS(5554), - [anon_sym_constexpr] = ACTIONS(5554), - [anon_sym_volatile] = ACTIONS(5554), - [anon_sym_restrict] = ACTIONS(5554), - [anon_sym___restrict__] = ACTIONS(5554), - [anon_sym__Atomic] = ACTIONS(5554), - [anon_sym__Noreturn] = ACTIONS(5554), - [anon_sym_noreturn] = ACTIONS(5554), - [anon_sym_mutable] = ACTIONS(5554), - [anon_sym_constinit] = ACTIONS(5554), - [anon_sym_consteval] = ACTIONS(5554), - [sym_primitive_type] = ACTIONS(5554), - [anon_sym_enum] = ACTIONS(5554), - [anon_sym_class] = ACTIONS(5554), - [anon_sym_struct] = ACTIONS(5554), - [anon_sym_union] = ACTIONS(5554), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5554), - [anon_sym_decltype] = ACTIONS(5554), - [anon_sym_virtual] = ACTIONS(5554), - [anon_sym_alignas] = ACTIONS(5554), - [anon_sym_explicit] = ACTIONS(5554), - [anon_sym_typename] = ACTIONS(5554), - [anon_sym_template] = ACTIONS(5554), - [anon_sym_operator] = ACTIONS(5554), - [anon_sym_friend] = ACTIONS(5554), - [anon_sym_public] = ACTIONS(5554), - [anon_sym_private] = ACTIONS(5554), - [anon_sym_protected] = ACTIONS(5554), - [anon_sym_using] = ACTIONS(5554), - [anon_sym_static_assert] = ACTIONS(5554), + [2216] = { + [sym_identifier] = ACTIONS(5647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5649), + [anon_sym_COMMA] = ACTIONS(5649), + [anon_sym_RPAREN] = ACTIONS(5649), + [anon_sym_LPAREN2] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5649), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5649), + [anon_sym_PIPE_PIPE] = ACTIONS(5649), + [anon_sym_AMP_AMP] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5649), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5649), + [anon_sym_BANG_EQ] = ACTIONS(5649), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5649), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(5647), + [anon_sym_LT_LT] = ACTIONS(5649), + [anon_sym_GT_GT] = ACTIONS(5649), + [anon_sym_SEMI] = ACTIONS(5649), + [anon_sym___extension__] = ACTIONS(5647), + [anon_sym___attribute__] = ACTIONS(5647), + [anon_sym___based] = ACTIONS(5647), + [anon_sym_LBRACE] = ACTIONS(5649), + [anon_sym_RBRACE] = ACTIONS(5649), + [anon_sym_signed] = ACTIONS(5647), + [anon_sym_unsigned] = ACTIONS(5647), + [anon_sym_long] = ACTIONS(5647), + [anon_sym_short] = ACTIONS(5647), + [anon_sym_LBRACK] = ACTIONS(5649), + [anon_sym_RBRACK] = ACTIONS(5649), + [anon_sym_const] = ACTIONS(5647), + [anon_sym_constexpr] = ACTIONS(5647), + [anon_sym_volatile] = ACTIONS(5647), + [anon_sym_restrict] = ACTIONS(5647), + [anon_sym___restrict__] = ACTIONS(5647), + [anon_sym__Atomic] = ACTIONS(5647), + [anon_sym__Noreturn] = ACTIONS(5647), + [anon_sym_noreturn] = ACTIONS(5647), + [anon_sym_mutable] = ACTIONS(5647), + [anon_sym_constinit] = ACTIONS(5647), + [anon_sym_consteval] = ACTIONS(5647), + [sym_primitive_type] = ACTIONS(5647), + [anon_sym_COLON] = ACTIONS(5649), + [anon_sym_QMARK] = ACTIONS(5649), + [anon_sym_LT_EQ_GT] = ACTIONS(5649), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5647), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5647), + [anon_sym_not_eq] = ACTIONS(5647), + [anon_sym_DASH_DASH] = ACTIONS(5649), + [anon_sym_PLUS_PLUS] = ACTIONS(5649), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5649), + [anon_sym_DASH_GT] = ACTIONS(5649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5647), + [anon_sym_decltype] = ACTIONS(5647), + [anon_sym_final] = ACTIONS(5647), + [anon_sym_override] = ACTIONS(5647), + [anon_sym_requires] = ACTIONS(5647), }, - [2380] = { - [sym_string_literal] = STATE(2380), - [sym_raw_string_literal] = STATE(2380), - [aux_sym_concatenated_string_repeat1] = STATE(2380), - [sym_identifier] = ACTIONS(5886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5158), - [anon_sym_COMMA] = ACTIONS(5158), - [anon_sym_LPAREN2] = ACTIONS(5158), - [anon_sym_DASH] = ACTIONS(5160), - [anon_sym_PLUS] = ACTIONS(5160), - [anon_sym_STAR] = ACTIONS(5160), - [anon_sym_SLASH] = ACTIONS(5160), - [anon_sym_PERCENT] = ACTIONS(5160), - [anon_sym_PIPE_PIPE] = ACTIONS(5158), - [anon_sym_AMP_AMP] = ACTIONS(5158), - [anon_sym_PIPE] = ACTIONS(5160), - [anon_sym_CARET] = ACTIONS(5160), - [anon_sym_AMP] = ACTIONS(5160), - [anon_sym_EQ_EQ] = ACTIONS(5158), - [anon_sym_BANG_EQ] = ACTIONS(5158), - [anon_sym_GT] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_LT] = ACTIONS(5160), - [anon_sym_LT_LT] = ACTIONS(5160), - [anon_sym_GT_GT] = ACTIONS(5160), - [anon_sym_LBRACK] = ACTIONS(5158), - [anon_sym_EQ] = ACTIONS(5160), - [anon_sym_QMARK] = ACTIONS(5158), - [anon_sym_STAR_EQ] = ACTIONS(5158), - [anon_sym_SLASH_EQ] = ACTIONS(5158), - [anon_sym_PERCENT_EQ] = ACTIONS(5158), - [anon_sym_PLUS_EQ] = ACTIONS(5158), - [anon_sym_DASH_EQ] = ACTIONS(5158), - [anon_sym_LT_LT_EQ] = ACTIONS(5158), - [anon_sym_GT_GT_EQ] = ACTIONS(5160), - [anon_sym_AMP_EQ] = ACTIONS(5158), - [anon_sym_CARET_EQ] = ACTIONS(5158), - [anon_sym_PIPE_EQ] = ACTIONS(5158), - [anon_sym_and_eq] = ACTIONS(5160), - [anon_sym_or_eq] = ACTIONS(5160), - [anon_sym_xor_eq] = ACTIONS(5160), - [anon_sym_LT_EQ_GT] = ACTIONS(5158), - [anon_sym_or] = ACTIONS(5160), - [anon_sym_and] = ACTIONS(5160), - [anon_sym_bitor] = ACTIONS(5160), - [anon_sym_xor] = ACTIONS(5160), - [anon_sym_bitand] = ACTIONS(5160), - [anon_sym_not_eq] = ACTIONS(5160), - [anon_sym_DASH_DASH] = ACTIONS(5158), - [anon_sym_PLUS_PLUS] = ACTIONS(5158), - [anon_sym_DOT] = ACTIONS(5160), - [anon_sym_DOT_STAR] = ACTIONS(5158), - [anon_sym_DASH_GT] = ACTIONS(5158), - [anon_sym_L_DQUOTE] = ACTIONS(5889), - [anon_sym_u_DQUOTE] = ACTIONS(5889), - [anon_sym_U_DQUOTE] = ACTIONS(5889), - [anon_sym_u8_DQUOTE] = ACTIONS(5889), - [anon_sym_DQUOTE] = ACTIONS(5889), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5158), - [anon_sym_R_DQUOTE] = ACTIONS(5892), - [anon_sym_LR_DQUOTE] = ACTIONS(5892), - [anon_sym_uR_DQUOTE] = ACTIONS(5892), - [anon_sym_UR_DQUOTE] = ACTIONS(5892), - [anon_sym_u8R_DQUOTE] = ACTIONS(5892), - [sym_literal_suffix] = ACTIONS(5160), + [2217] = { + [sym_identifier] = ACTIONS(5614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(5616), + [anon_sym_RPAREN] = ACTIONS(5616), + [anon_sym_LPAREN2] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5614), + [anon_sym_STAR] = ACTIONS(5616), + [anon_sym_SLASH] = ACTIONS(5614), + [anon_sym_PERCENT] = ACTIONS(5616), + [anon_sym_PIPE_PIPE] = ACTIONS(5616), + [anon_sym_AMP_AMP] = ACTIONS(5616), + [anon_sym_PIPE] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5616), + [anon_sym_AMP] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5616), + [anon_sym_BANG_EQ] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5614), + [anon_sym_GT_EQ] = ACTIONS(5616), + [anon_sym_LT_EQ] = ACTIONS(5614), + [anon_sym_LT] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5616), + [anon_sym_GT_GT] = ACTIONS(5616), + [anon_sym_SEMI] = ACTIONS(5616), + [anon_sym___extension__] = ACTIONS(5614), + [anon_sym___attribute__] = ACTIONS(5614), + [anon_sym___based] = ACTIONS(5614), + [anon_sym_LBRACE] = ACTIONS(5616), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_signed] = ACTIONS(5614), + [anon_sym_unsigned] = ACTIONS(5614), + [anon_sym_long] = ACTIONS(5614), + [anon_sym_short] = ACTIONS(5614), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_RBRACK] = ACTIONS(5616), + [anon_sym_const] = ACTIONS(5614), + [anon_sym_constexpr] = ACTIONS(5614), + [anon_sym_volatile] = ACTIONS(5614), + [anon_sym_restrict] = ACTIONS(5614), + [anon_sym___restrict__] = ACTIONS(5614), + [anon_sym__Atomic] = ACTIONS(5614), + [anon_sym__Noreturn] = ACTIONS(5614), + [anon_sym_noreturn] = ACTIONS(5614), + [anon_sym_mutable] = ACTIONS(5614), + [anon_sym_constinit] = ACTIONS(5614), + [anon_sym_consteval] = ACTIONS(5614), + [sym_primitive_type] = ACTIONS(5614), + [anon_sym_COLON] = ACTIONS(5616), + [anon_sym_QMARK] = ACTIONS(5616), + [anon_sym_LT_EQ_GT] = ACTIONS(5616), + [anon_sym_or] = ACTIONS(5614), + [anon_sym_and] = ACTIONS(5614), + [anon_sym_bitor] = ACTIONS(5614), + [anon_sym_xor] = ACTIONS(5614), + [anon_sym_bitand] = ACTIONS(5614), + [anon_sym_not_eq] = ACTIONS(5614), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_DOT_STAR] = ACTIONS(5616), + [anon_sym_DASH_GT] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5614), + [anon_sym_decltype] = ACTIONS(5614), + [anon_sym_final] = ACTIONS(5614), + [anon_sym_override] = ACTIONS(5614), + [anon_sym_requires] = ACTIONS(5614), }, - [2381] = { - [sym__declaration_modifiers] = STATE(3960), - [sym_attribute_specifier] = STATE(3960), - [sym_attribute_declaration] = STATE(3960), - [sym_ms_declspec_modifier] = STATE(3960), - [sym_storage_class_specifier] = STATE(3960), - [sym_type_qualifier] = STATE(3960), - [sym__type_specifier] = STATE(3182), - [sym_sized_type_specifier] = STATE(3557), - [sym_enum_specifier] = STATE(3557), - [sym_struct_specifier] = STATE(3557), - [sym_union_specifier] = STATE(3557), - [sym_placeholder_type_specifier] = STATE(3557), - [sym_decltype_auto] = STATE(3690), - [sym_decltype] = STATE(3357), - [sym_class_specifier] = STATE(3557), - [sym_virtual] = STATE(3960), - [sym_alignas_specifier] = STATE(3960), - [sym_dependent_type] = STATE(3557), - [sym_template_type] = STATE(3357), - [sym_dependent_type_identifier] = STATE(9084), - [sym__scope_resolution] = STATE(7046), - [sym_qualified_type_identifier] = STATE(4475), - [aux_sym__declaration_specifiers_repeat1] = STATE(3960), - [aux_sym_sized_type_specifier_repeat1] = STATE(3681), - [sym_identifier] = ACTIONS(5035), + [2218] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5728), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), [anon_sym___extension__] = ACTIONS(61), [anon_sym_extern] = ACTIONS(57), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(5045), + [anon_sym_COLON_COLON] = ACTIONS(5096), [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), [anon_sym___declspec] = ACTIONS(45), [anon_sym_signed] = ACTIONS(53), @@ -352647,1986 +342814,1276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(61), [anon_sym_constinit] = ACTIONS(61), [anon_sym_consteval] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(3032), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2018), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(117), [anon_sym_decltype] = ACTIONS(119), [anon_sym_virtual] = ACTIONS(121), [anon_sym_alignas] = ACTIONS(123), - [anon_sym_typename] = ACTIONS(2042), + [anon_sym_typename] = ACTIONS(127), [anon_sym_template] = ACTIONS(1428), }, - [2382] = { - [sym_identifier] = ACTIONS(5554), - [aux_sym_preproc_def_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token2] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5554), - [aux_sym_preproc_else_token1] = ACTIONS(5554), - [aux_sym_preproc_elif_token1] = ACTIONS(5554), - [sym_preproc_directive] = ACTIONS(5554), - [anon_sym_LPAREN2] = ACTIONS(5556), - [anon_sym_TILDE] = ACTIONS(5556), - [anon_sym_STAR] = ACTIONS(5556), - [anon_sym_AMP_AMP] = ACTIONS(5556), - [anon_sym_AMP] = ACTIONS(5554), - [anon_sym___extension__] = ACTIONS(5554), - [anon_sym_typedef] = ACTIONS(5554), - [anon_sym_extern] = ACTIONS(5554), - [anon_sym___attribute__] = ACTIONS(5554), - [anon_sym_COLON_COLON] = ACTIONS(5556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5556), - [anon_sym___declspec] = ACTIONS(5554), - [anon_sym___based] = ACTIONS(5554), - [anon_sym_signed] = ACTIONS(5554), - [anon_sym_unsigned] = ACTIONS(5554), - [anon_sym_long] = ACTIONS(5554), - [anon_sym_short] = ACTIONS(5554), - [anon_sym_LBRACK] = ACTIONS(5554), - [anon_sym_static] = ACTIONS(5554), - [anon_sym_register] = ACTIONS(5554), - [anon_sym_inline] = ACTIONS(5554), - [anon_sym___inline] = ACTIONS(5554), - [anon_sym___inline__] = ACTIONS(5554), - [anon_sym___forceinline] = ACTIONS(5554), - [anon_sym_thread_local] = ACTIONS(5554), - [anon_sym___thread] = ACTIONS(5554), - [anon_sym_const] = ACTIONS(5554), - [anon_sym_constexpr] = ACTIONS(5554), - [anon_sym_volatile] = ACTIONS(5554), - [anon_sym_restrict] = ACTIONS(5554), - [anon_sym___restrict__] = ACTIONS(5554), - [anon_sym__Atomic] = ACTIONS(5554), - [anon_sym__Noreturn] = ACTIONS(5554), - [anon_sym_noreturn] = ACTIONS(5554), - [anon_sym_mutable] = ACTIONS(5554), - [anon_sym_constinit] = ACTIONS(5554), - [anon_sym_consteval] = ACTIONS(5554), - [sym_primitive_type] = ACTIONS(5554), - [anon_sym_enum] = ACTIONS(5554), - [anon_sym_class] = ACTIONS(5554), - [anon_sym_struct] = ACTIONS(5554), - [anon_sym_union] = ACTIONS(5554), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5554), - [anon_sym_decltype] = ACTIONS(5554), - [anon_sym_virtual] = ACTIONS(5554), - [anon_sym_alignas] = ACTIONS(5554), - [anon_sym_explicit] = ACTIONS(5554), - [anon_sym_typename] = ACTIONS(5554), - [anon_sym_template] = ACTIONS(5554), - [anon_sym_operator] = ACTIONS(5554), - [anon_sym_friend] = ACTIONS(5554), - [anon_sym_public] = ACTIONS(5554), - [anon_sym_private] = ACTIONS(5554), - [anon_sym_protected] = ACTIONS(5554), - [anon_sym_using] = ACTIONS(5554), - [anon_sym_static_assert] = ACTIONS(5554), - }, - [2383] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2871), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_friend] = ACTIONS(2144), - [anon_sym_public] = ACTIONS(2144), - [anon_sym_private] = ACTIONS(2144), - [anon_sym_protected] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - }, - [2384] = { - [sym_attribute_specifier] = STATE(2432), - [sym_identifier] = ACTIONS(5895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5897), - [anon_sym_COMMA] = ACTIONS(5897), - [anon_sym_RPAREN] = ACTIONS(5897), - [aux_sym_preproc_if_token2] = ACTIONS(5897), - [aux_sym_preproc_else_token1] = ACTIONS(5897), - [aux_sym_preproc_elif_token1] = ACTIONS(5895), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5897), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5897), - [anon_sym_LPAREN2] = ACTIONS(5897), - [anon_sym_DASH] = ACTIONS(5895), - [anon_sym_PLUS] = ACTIONS(5895), - [anon_sym_STAR] = ACTIONS(5895), - [anon_sym_SLASH] = ACTIONS(5895), - [anon_sym_PERCENT] = ACTIONS(5895), - [anon_sym_PIPE_PIPE] = ACTIONS(5897), - [anon_sym_AMP_AMP] = ACTIONS(5897), - [anon_sym_PIPE] = ACTIONS(5895), - [anon_sym_CARET] = ACTIONS(5895), - [anon_sym_AMP] = ACTIONS(5895), - [anon_sym_EQ_EQ] = ACTIONS(5897), - [anon_sym_BANG_EQ] = ACTIONS(5897), - [anon_sym_GT] = ACTIONS(5895), - [anon_sym_GT_EQ] = ACTIONS(5897), - [anon_sym_LT_EQ] = ACTIONS(5895), - [anon_sym_LT] = ACTIONS(5895), - [anon_sym_LT_LT] = ACTIONS(5895), - [anon_sym_GT_GT] = ACTIONS(5895), - [anon_sym_SEMI] = ACTIONS(5897), - [anon_sym___attribute__] = ACTIONS(5288), - [anon_sym_LBRACE] = ACTIONS(5897), - [anon_sym_RBRACE] = ACTIONS(5897), - [anon_sym_LBRACK] = ACTIONS(5897), - [anon_sym_RBRACK] = ACTIONS(5897), - [anon_sym_EQ] = ACTIONS(5895), - [anon_sym_COLON] = ACTIONS(5897), - [anon_sym_QMARK] = ACTIONS(5897), - [anon_sym_STAR_EQ] = ACTIONS(5897), - [anon_sym_SLASH_EQ] = ACTIONS(5897), - [anon_sym_PERCENT_EQ] = ACTIONS(5897), - [anon_sym_PLUS_EQ] = ACTIONS(5897), - [anon_sym_DASH_EQ] = ACTIONS(5897), - [anon_sym_LT_LT_EQ] = ACTIONS(5897), - [anon_sym_GT_GT_EQ] = ACTIONS(5897), - [anon_sym_AMP_EQ] = ACTIONS(5897), - [anon_sym_CARET_EQ] = ACTIONS(5897), - [anon_sym_PIPE_EQ] = ACTIONS(5897), - [anon_sym_and_eq] = ACTIONS(5895), - [anon_sym_or_eq] = ACTIONS(5895), - [anon_sym_xor_eq] = ACTIONS(5895), - [anon_sym_LT_EQ_GT] = ACTIONS(5897), - [anon_sym_or] = ACTIONS(5895), - [anon_sym_and] = ACTIONS(5895), - [anon_sym_bitor] = ACTIONS(5895), - [anon_sym_xor] = ACTIONS(5895), - [anon_sym_bitand] = ACTIONS(5895), - [anon_sym_not_eq] = ACTIONS(5895), - [anon_sym_DASH_DASH] = ACTIONS(5897), - [anon_sym_PLUS_PLUS] = ACTIONS(5897), - [anon_sym_DOT] = ACTIONS(5895), - [anon_sym_DOT_STAR] = ACTIONS(5897), - [anon_sym_DASH_GT] = ACTIONS(5897), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5895), - [anon_sym_decltype] = ACTIONS(5895), - }, - [2385] = { - [sym_identifier] = ACTIONS(5499), - [aux_sym_preproc_def_token1] = ACTIONS(5499), - [aux_sym_preproc_if_token1] = ACTIONS(5499), - [aux_sym_preproc_if_token2] = ACTIONS(5499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5499), - [aux_sym_preproc_else_token1] = ACTIONS(5499), - [aux_sym_preproc_elif_token1] = ACTIONS(5499), - [sym_preproc_directive] = ACTIONS(5499), - [anon_sym_LPAREN2] = ACTIONS(5501), - [anon_sym_TILDE] = ACTIONS(5501), - [anon_sym_STAR] = ACTIONS(5501), - [anon_sym_AMP_AMP] = ACTIONS(5501), - [anon_sym_AMP] = ACTIONS(5499), - [anon_sym___extension__] = ACTIONS(5499), - [anon_sym_typedef] = ACTIONS(5499), - [anon_sym_extern] = ACTIONS(5499), - [anon_sym___attribute__] = ACTIONS(5499), - [anon_sym_COLON_COLON] = ACTIONS(5501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5501), - [anon_sym___declspec] = ACTIONS(5499), - [anon_sym___based] = ACTIONS(5499), - [anon_sym_signed] = ACTIONS(5499), - [anon_sym_unsigned] = ACTIONS(5499), - [anon_sym_long] = ACTIONS(5499), - [anon_sym_short] = ACTIONS(5499), - [anon_sym_LBRACK] = ACTIONS(5499), - [anon_sym_static] = ACTIONS(5499), - [anon_sym_register] = ACTIONS(5499), - [anon_sym_inline] = ACTIONS(5499), - [anon_sym___inline] = ACTIONS(5499), - [anon_sym___inline__] = ACTIONS(5499), - [anon_sym___forceinline] = ACTIONS(5499), - [anon_sym_thread_local] = ACTIONS(5499), - [anon_sym___thread] = ACTIONS(5499), - [anon_sym_const] = ACTIONS(5499), - [anon_sym_constexpr] = ACTIONS(5499), - [anon_sym_volatile] = ACTIONS(5499), - [anon_sym_restrict] = ACTIONS(5499), - [anon_sym___restrict__] = ACTIONS(5499), - [anon_sym__Atomic] = ACTIONS(5499), - [anon_sym__Noreturn] = ACTIONS(5499), - [anon_sym_noreturn] = ACTIONS(5499), - [anon_sym_mutable] = ACTIONS(5499), - [anon_sym_constinit] = ACTIONS(5499), - [anon_sym_consteval] = ACTIONS(5499), - [sym_primitive_type] = ACTIONS(5499), - [anon_sym_enum] = ACTIONS(5499), - [anon_sym_class] = ACTIONS(5499), - [anon_sym_struct] = ACTIONS(5499), - [anon_sym_union] = ACTIONS(5499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5499), - [anon_sym_decltype] = ACTIONS(5499), - [anon_sym_virtual] = ACTIONS(5499), - [anon_sym_alignas] = ACTIONS(5499), - [anon_sym_explicit] = ACTIONS(5499), - [anon_sym_typename] = ACTIONS(5499), - [anon_sym_template] = ACTIONS(5499), - [anon_sym_operator] = ACTIONS(5499), - [anon_sym_friend] = ACTIONS(5499), - [anon_sym_public] = ACTIONS(5499), - [anon_sym_private] = ACTIONS(5499), - [anon_sym_protected] = ACTIONS(5499), - [anon_sym_using] = ACTIONS(5499), - [anon_sym_static_assert] = ACTIONS(5499), - }, - [2386] = { - [sym_identifier] = ACTIONS(5723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), - [anon_sym_COMMA] = ACTIONS(5725), - [anon_sym_RPAREN] = ACTIONS(5725), - [aux_sym_preproc_if_token2] = ACTIONS(5725), - [aux_sym_preproc_else_token1] = ACTIONS(5725), - [aux_sym_preproc_elif_token1] = ACTIONS(5723), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5725), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5725), - [anon_sym_LPAREN2] = ACTIONS(5725), - [anon_sym_DASH] = ACTIONS(5723), - [anon_sym_PLUS] = ACTIONS(5723), - [anon_sym_STAR] = ACTIONS(5723), - [anon_sym_SLASH] = ACTIONS(5723), - [anon_sym_PERCENT] = ACTIONS(5723), - [anon_sym_PIPE_PIPE] = ACTIONS(5725), - [anon_sym_AMP_AMP] = ACTIONS(5725), - [anon_sym_PIPE] = ACTIONS(5723), - [anon_sym_CARET] = ACTIONS(5723), - [anon_sym_AMP] = ACTIONS(5723), - [anon_sym_EQ_EQ] = ACTIONS(5725), - [anon_sym_BANG_EQ] = ACTIONS(5725), - [anon_sym_GT] = ACTIONS(5723), - [anon_sym_GT_EQ] = ACTIONS(5725), - [anon_sym_LT_EQ] = ACTIONS(5723), - [anon_sym_LT] = ACTIONS(5723), - [anon_sym_LT_LT] = ACTIONS(5723), - [anon_sym_GT_GT] = ACTIONS(5723), - [anon_sym_SEMI] = ACTIONS(5725), - [anon_sym___attribute__] = ACTIONS(5723), - [anon_sym_LBRACE] = ACTIONS(5725), - [anon_sym_RBRACE] = ACTIONS(5725), - [anon_sym_LBRACK] = ACTIONS(5725), - [anon_sym_RBRACK] = ACTIONS(5725), - [anon_sym_EQ] = ACTIONS(5723), - [anon_sym_COLON] = ACTIONS(5725), - [anon_sym_QMARK] = ACTIONS(5725), - [anon_sym_STAR_EQ] = ACTIONS(5725), - [anon_sym_SLASH_EQ] = ACTIONS(5725), - [anon_sym_PERCENT_EQ] = ACTIONS(5725), - [anon_sym_PLUS_EQ] = ACTIONS(5725), - [anon_sym_DASH_EQ] = ACTIONS(5725), - [anon_sym_LT_LT_EQ] = ACTIONS(5725), - [anon_sym_GT_GT_EQ] = ACTIONS(5725), - [anon_sym_AMP_EQ] = ACTIONS(5725), - [anon_sym_CARET_EQ] = ACTIONS(5725), - [anon_sym_PIPE_EQ] = ACTIONS(5725), - [anon_sym_and_eq] = ACTIONS(5723), - [anon_sym_or_eq] = ACTIONS(5723), - [anon_sym_xor_eq] = ACTIONS(5723), - [anon_sym_LT_EQ_GT] = ACTIONS(5725), - [anon_sym_or] = ACTIONS(5723), - [anon_sym_and] = ACTIONS(5723), - [anon_sym_bitor] = ACTIONS(5723), - [anon_sym_xor] = ACTIONS(5723), - [anon_sym_bitand] = ACTIONS(5723), - [anon_sym_not_eq] = ACTIONS(5723), - [anon_sym_DASH_DASH] = ACTIONS(5725), - [anon_sym_PLUS_PLUS] = ACTIONS(5725), - [anon_sym_DOT] = ACTIONS(5723), - [anon_sym_DOT_STAR] = ACTIONS(5725), - [anon_sym_DASH_GT] = ACTIONS(5725), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5723), - [anon_sym_decltype] = ACTIONS(5723), - }, - [2387] = { - [sym_identifier] = ACTIONS(5535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5537), - [anon_sym_COMMA] = ACTIONS(5537), - [anon_sym_RPAREN] = ACTIONS(5537), - [aux_sym_preproc_if_token2] = ACTIONS(5537), - [aux_sym_preproc_else_token1] = ACTIONS(5537), - [aux_sym_preproc_elif_token1] = ACTIONS(5535), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5537), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5537), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_DASH] = ACTIONS(5535), - [anon_sym_PLUS] = ACTIONS(5535), - [anon_sym_STAR] = ACTIONS(5535), - [anon_sym_SLASH] = ACTIONS(5535), - [anon_sym_PERCENT] = ACTIONS(5535), - [anon_sym_PIPE_PIPE] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_PIPE] = ACTIONS(5535), - [anon_sym_CARET] = ACTIONS(5535), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_EQ_EQ] = ACTIONS(5537), - [anon_sym_BANG_EQ] = ACTIONS(5537), - [anon_sym_GT] = ACTIONS(5535), - [anon_sym_GT_EQ] = ACTIONS(5537), - [anon_sym_LT_EQ] = ACTIONS(5535), - [anon_sym_LT] = ACTIONS(5535), - [anon_sym_LT_LT] = ACTIONS(5535), - [anon_sym_GT_GT] = ACTIONS(5535), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym_LBRACE] = ACTIONS(5537), - [anon_sym_RBRACE] = ACTIONS(5537), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_RBRACK] = ACTIONS(5537), - [anon_sym_EQ] = ACTIONS(5535), - [anon_sym_COLON] = ACTIONS(5537), - [anon_sym_QMARK] = ACTIONS(5537), - [anon_sym_STAR_EQ] = ACTIONS(5537), - [anon_sym_SLASH_EQ] = ACTIONS(5537), - [anon_sym_PERCENT_EQ] = ACTIONS(5537), - [anon_sym_PLUS_EQ] = ACTIONS(5537), - [anon_sym_DASH_EQ] = ACTIONS(5537), - [anon_sym_LT_LT_EQ] = ACTIONS(5537), - [anon_sym_GT_GT_EQ] = ACTIONS(5537), - [anon_sym_AMP_EQ] = ACTIONS(5537), - [anon_sym_CARET_EQ] = ACTIONS(5537), - [anon_sym_PIPE_EQ] = ACTIONS(5537), - [anon_sym_and_eq] = ACTIONS(5535), - [anon_sym_or_eq] = ACTIONS(5535), - [anon_sym_xor_eq] = ACTIONS(5535), - [anon_sym_LT_EQ_GT] = ACTIONS(5537), - [anon_sym_or] = ACTIONS(5535), - [anon_sym_and] = ACTIONS(5535), - [anon_sym_bitor] = ACTIONS(5535), - [anon_sym_xor] = ACTIONS(5535), - [anon_sym_bitand] = ACTIONS(5535), - [anon_sym_not_eq] = ACTIONS(5535), - [anon_sym_DASH_DASH] = ACTIONS(5537), - [anon_sym_PLUS_PLUS] = ACTIONS(5537), - [anon_sym_DOT] = ACTIONS(5535), - [anon_sym_DOT_STAR] = ACTIONS(5537), - [anon_sym_DASH_GT] = ACTIONS(5537), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), - }, - [2388] = { - [sym_string_literal] = STATE(2205), - [sym_raw_string_literal] = STATE(2205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_SEMI] = ACTIONS(4139), - [anon_sym___attribute__] = ACTIONS(4147), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4147), - [anon_sym_or_eq] = ACTIONS(4147), - [anon_sym_xor_eq] = ACTIONS(4147), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [anon_sym_L_DQUOTE] = ACTIONS(5574), - [anon_sym_u_DQUOTE] = ACTIONS(5574), - [anon_sym_U_DQUOTE] = ACTIONS(5574), - [anon_sym_u8_DQUOTE] = ACTIONS(5574), - [anon_sym_DQUOTE] = ACTIONS(5574), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5576), - [anon_sym_LR_DQUOTE] = ACTIONS(5576), - [anon_sym_uR_DQUOTE] = ACTIONS(5576), - [anon_sym_UR_DQUOTE] = ACTIONS(5576), - [anon_sym_u8R_DQUOTE] = ACTIONS(5576), - [sym_literal_suffix] = ACTIONS(5367), + [2219] = { + [sym_identifier] = ACTIONS(5651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5653), + [anon_sym_COMMA] = ACTIONS(5653), + [anon_sym_RPAREN] = ACTIONS(5653), + [anon_sym_LPAREN2] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5651), + [anon_sym_STAR] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5651), + [anon_sym_PERCENT] = ACTIONS(5653), + [anon_sym_PIPE_PIPE] = ACTIONS(5653), + [anon_sym_AMP_AMP] = ACTIONS(5653), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_CARET] = ACTIONS(5653), + [anon_sym_AMP] = ACTIONS(5651), + [anon_sym_EQ_EQ] = ACTIONS(5653), + [anon_sym_BANG_EQ] = ACTIONS(5653), + [anon_sym_GT] = ACTIONS(5651), + [anon_sym_GT_EQ] = ACTIONS(5653), + [anon_sym_LT_EQ] = ACTIONS(5651), + [anon_sym_LT] = ACTIONS(5651), + [anon_sym_LT_LT] = ACTIONS(5653), + [anon_sym_GT_GT] = ACTIONS(5653), + [anon_sym_SEMI] = ACTIONS(5653), + [anon_sym___extension__] = ACTIONS(5651), + [anon_sym___attribute__] = ACTIONS(5651), + [anon_sym___based] = ACTIONS(5651), + [anon_sym_LBRACE] = ACTIONS(5653), + [anon_sym_RBRACE] = ACTIONS(5653), + [anon_sym_signed] = ACTIONS(5651), + [anon_sym_unsigned] = ACTIONS(5651), + [anon_sym_long] = ACTIONS(5651), + [anon_sym_short] = ACTIONS(5651), + [anon_sym_LBRACK] = ACTIONS(5653), + [anon_sym_RBRACK] = ACTIONS(5653), + [anon_sym_const] = ACTIONS(5651), + [anon_sym_constexpr] = ACTIONS(5651), + [anon_sym_volatile] = ACTIONS(5651), + [anon_sym_restrict] = ACTIONS(5651), + [anon_sym___restrict__] = ACTIONS(5651), + [anon_sym__Atomic] = ACTIONS(5651), + [anon_sym__Noreturn] = ACTIONS(5651), + [anon_sym_noreturn] = ACTIONS(5651), + [anon_sym_mutable] = ACTIONS(5651), + [anon_sym_constinit] = ACTIONS(5651), + [anon_sym_consteval] = ACTIONS(5651), + [sym_primitive_type] = ACTIONS(5651), + [anon_sym_COLON] = ACTIONS(5653), + [anon_sym_QMARK] = ACTIONS(5653), + [anon_sym_LT_EQ_GT] = ACTIONS(5653), + [anon_sym_or] = ACTIONS(5651), + [anon_sym_and] = ACTIONS(5651), + [anon_sym_bitor] = ACTIONS(5651), + [anon_sym_xor] = ACTIONS(5651), + [anon_sym_bitand] = ACTIONS(5651), + [anon_sym_not_eq] = ACTIONS(5651), + [anon_sym_DASH_DASH] = ACTIONS(5653), + [anon_sym_PLUS_PLUS] = ACTIONS(5653), + [anon_sym_DOT] = ACTIONS(5651), + [anon_sym_DOT_STAR] = ACTIONS(5653), + [anon_sym_DASH_GT] = ACTIONS(5653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5651), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_final] = ACTIONS(5651), + [anon_sym_override] = ACTIONS(5651), + [anon_sym_requires] = ACTIONS(5651), }, - [2389] = { - [sym_string_literal] = STATE(2850), - [sym_template_argument_list] = STATE(4142), - [sym_raw_string_literal] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(5899), - [anon_sym_COLON] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(5901), - [anon_sym_SLASH_EQ] = ACTIONS(5901), - [anon_sym_PERCENT_EQ] = ACTIONS(5901), - [anon_sym_PLUS_EQ] = ACTIONS(5901), - [anon_sym_DASH_EQ] = ACTIONS(5901), - [anon_sym_LT_LT_EQ] = ACTIONS(5901), - [anon_sym_GT_GT_EQ] = ACTIONS(5901), - [anon_sym_AMP_EQ] = ACTIONS(5901), - [anon_sym_CARET_EQ] = ACTIONS(5901), - [anon_sym_PIPE_EQ] = ACTIONS(5901), - [anon_sym_and_eq] = ACTIONS(5901), - [anon_sym_or_eq] = ACTIONS(5901), - [anon_sym_xor_eq] = ACTIONS(5901), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4139), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4139), - [anon_sym_not_eq] = ACTIONS(4139), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4139), - [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_comment] = ACTIONS(3), - [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), + [2220] = { + [sym_attribute_specifier] = STATE(2451), + [sym_enumerator_list] = STATE(2310), + [sym_identifier] = ACTIONS(5655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), + [anon_sym_COMMA] = ACTIONS(5657), + [anon_sym_RPAREN] = ACTIONS(5657), + [aux_sym_preproc_if_token2] = ACTIONS(5657), + [aux_sym_preproc_else_token1] = ACTIONS(5657), + [aux_sym_preproc_elif_token1] = ACTIONS(5655), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5657), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5657), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_DASH] = ACTIONS(5655), + [anon_sym_PLUS] = ACTIONS(5655), + [anon_sym_STAR] = ACTIONS(5655), + [anon_sym_SLASH] = ACTIONS(5655), + [anon_sym_PERCENT] = ACTIONS(5655), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_AMP_AMP] = ACTIONS(5657), + [anon_sym_PIPE] = ACTIONS(5655), + [anon_sym_CARET] = ACTIONS(5655), + [anon_sym_AMP] = ACTIONS(5655), + [anon_sym_EQ_EQ] = ACTIONS(5657), + [anon_sym_BANG_EQ] = ACTIONS(5657), + [anon_sym_GT] = ACTIONS(5655), + [anon_sym_GT_EQ] = ACTIONS(5657), + [anon_sym_LT_EQ] = ACTIONS(5655), + [anon_sym_LT] = ACTIONS(5655), + [anon_sym_LT_LT] = ACTIONS(5655), + [anon_sym_GT_GT] = ACTIONS(5655), + [anon_sym_SEMI] = ACTIONS(5657), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5659), + [anon_sym_RBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5657), + [anon_sym_RBRACK] = ACTIONS(5657), + [anon_sym_EQ] = ACTIONS(5655), + [anon_sym_COLON] = 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(5655), + [anon_sym_or_eq] = ACTIONS(5655), + [anon_sym_xor_eq] = ACTIONS(5655), + [anon_sym_LT_EQ_GT] = ACTIONS(5657), + [anon_sym_or] = ACTIONS(5655), + [anon_sym_and] = ACTIONS(5655), + [anon_sym_bitor] = ACTIONS(5655), + [anon_sym_xor] = ACTIONS(5655), + [anon_sym_bitand] = ACTIONS(5655), + [anon_sym_not_eq] = ACTIONS(5655), + [anon_sym_DASH_DASH] = ACTIONS(5657), + [anon_sym_PLUS_PLUS] = ACTIONS(5657), + [anon_sym_DOT] = ACTIONS(5655), + [anon_sym_DOT_STAR] = ACTIONS(5657), + [anon_sym_DASH_GT] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5655), + [anon_sym_decltype] = ACTIONS(5655), }, - [2390] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5903), - [anon_sym_COMMA] = ACTIONS(5903), - [anon_sym_RPAREN] = ACTIONS(5903), - [anon_sym_LPAREN2] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(5905), - [anon_sym_PLUS] = ACTIONS(5905), - [anon_sym_STAR] = ACTIONS(5903), - [anon_sym_SLASH] = ACTIONS(5905), - [anon_sym_PERCENT] = ACTIONS(5903), - [anon_sym_PIPE_PIPE] = ACTIONS(5903), - [anon_sym_AMP_AMP] = ACTIONS(5903), - [anon_sym_PIPE] = ACTIONS(5905), - [anon_sym_CARET] = ACTIONS(5903), - [anon_sym_AMP] = ACTIONS(5905), - [anon_sym_EQ_EQ] = ACTIONS(5903), - [anon_sym_BANG_EQ] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5905), - [anon_sym_GT_EQ] = ACTIONS(5903), - [anon_sym_LT_EQ] = ACTIONS(5905), - [anon_sym_LT] = ACTIONS(5905), - [anon_sym_LT_LT] = ACTIONS(5903), - [anon_sym_GT_GT] = ACTIONS(5903), - [anon_sym_SEMI] = ACTIONS(5903), - [anon_sym___extension__] = ACTIONS(5903), - [anon_sym___attribute__] = ACTIONS(5903), - [anon_sym_LBRACE] = ACTIONS(5903), - [anon_sym_RBRACE] = ACTIONS(5903), - [anon_sym_signed] = ACTIONS(5907), - [anon_sym_unsigned] = ACTIONS(5907), - [anon_sym_long] = ACTIONS(5907), - [anon_sym_short] = ACTIONS(5907), - [anon_sym_LBRACK] = ACTIONS(5903), - [anon_sym_RBRACK] = ACTIONS(5903), - [anon_sym_const] = ACTIONS(5905), - [anon_sym_constexpr] = ACTIONS(5903), - [anon_sym_volatile] = ACTIONS(5903), - [anon_sym_restrict] = ACTIONS(5903), - [anon_sym___restrict__] = ACTIONS(5903), - [anon_sym__Atomic] = ACTIONS(5903), - [anon_sym__Noreturn] = ACTIONS(5903), - [anon_sym_noreturn] = ACTIONS(5903), - [anon_sym_mutable] = ACTIONS(5903), - [anon_sym_constinit] = ACTIONS(5903), - [anon_sym_consteval] = ACTIONS(5903), - [anon_sym_COLON] = ACTIONS(5903), - [anon_sym_QMARK] = ACTIONS(5903), - [anon_sym_LT_EQ_GT] = ACTIONS(5903), - [anon_sym_or] = ACTIONS(5903), - [anon_sym_and] = ACTIONS(5903), - [anon_sym_bitor] = ACTIONS(5903), - [anon_sym_xor] = ACTIONS(5903), - [anon_sym_bitand] = ACTIONS(5903), - [anon_sym_not_eq] = ACTIONS(5903), - [anon_sym_DASH_DASH] = ACTIONS(5903), - [anon_sym_PLUS_PLUS] = ACTIONS(5903), - [anon_sym_DOT] = ACTIONS(5905), - [anon_sym_DOT_STAR] = ACTIONS(5903), - [anon_sym_DASH_GT] = ACTIONS(5903), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5903), - [anon_sym_decltype] = ACTIONS(5903), - [anon_sym_final] = ACTIONS(5903), - [anon_sym_override] = ACTIONS(5903), - [anon_sym_requires] = ACTIONS(5903), + [2221] = { + [sym_identifier] = ACTIONS(5643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5645), + [anon_sym_COMMA] = ACTIONS(5645), + [anon_sym_RPAREN] = ACTIONS(5645), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_DASH] = ACTIONS(5643), + [anon_sym_PLUS] = ACTIONS(5643), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5643), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5645), + [anon_sym_AMP_AMP] = ACTIONS(5645), + [anon_sym_PIPE] = ACTIONS(5643), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5643), + [anon_sym_EQ_EQ] = ACTIONS(5645), + [anon_sym_BANG_EQ] = ACTIONS(5645), + [anon_sym_GT] = ACTIONS(5643), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5643), + [anon_sym_LT] = ACTIONS(5643), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5645), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym___attribute__] = ACTIONS(5643), + [anon_sym___based] = ACTIONS(5643), + [anon_sym_LBRACE] = ACTIONS(5645), + [anon_sym_RBRACE] = ACTIONS(5645), + [anon_sym_signed] = ACTIONS(5643), + [anon_sym_unsigned] = ACTIONS(5643), + [anon_sym_long] = ACTIONS(5643), + [anon_sym_short] = ACTIONS(5643), + [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_RBRACK] = ACTIONS(5645), + [anon_sym_const] = ACTIONS(5643), + [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_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [sym_primitive_type] = ACTIONS(5643), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5645), + [anon_sym_LT_EQ_GT] = ACTIONS(5645), + [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(5645), + [anon_sym_PLUS_PLUS] = ACTIONS(5645), + [anon_sym_DOT] = ACTIONS(5643), + [anon_sym_DOT_STAR] = ACTIONS(5645), + [anon_sym_DASH_GT] = ACTIONS(5645), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5643), + [anon_sym_decltype] = ACTIONS(5643), + [anon_sym_final] = ACTIONS(5643), + [anon_sym_override] = ACTIONS(5643), + [anon_sym_requires] = ACTIONS(5643), }, - [2391] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5909), - [anon_sym_COMMA] = ACTIONS(5909), - [anon_sym_RPAREN] = ACTIONS(5909), - [anon_sym_LPAREN2] = ACTIONS(5909), - [anon_sym_DASH] = ACTIONS(5911), - [anon_sym_PLUS] = ACTIONS(5911), - [anon_sym_STAR] = ACTIONS(5909), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5909), - [anon_sym_PIPE_PIPE] = ACTIONS(5909), - [anon_sym_AMP_AMP] = ACTIONS(5909), - [anon_sym_PIPE] = ACTIONS(5911), - [anon_sym_CARET] = ACTIONS(5909), - [anon_sym_AMP] = ACTIONS(5911), - [anon_sym_EQ_EQ] = ACTIONS(5909), - [anon_sym_BANG_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5911), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_LT_EQ] = ACTIONS(5911), - [anon_sym_LT] = ACTIONS(5911), - [anon_sym_LT_LT] = ACTIONS(5909), - [anon_sym_GT_GT] = ACTIONS(5909), - [anon_sym_SEMI] = ACTIONS(5909), - [anon_sym___extension__] = ACTIONS(5909), - [anon_sym___attribute__] = ACTIONS(5909), - [anon_sym_LBRACE] = ACTIONS(5909), - [anon_sym_RBRACE] = ACTIONS(5909), - [anon_sym_signed] = ACTIONS(5907), - [anon_sym_unsigned] = ACTIONS(5907), - [anon_sym_long] = ACTIONS(5907), - [anon_sym_short] = ACTIONS(5907), - [anon_sym_LBRACK] = ACTIONS(5909), - [anon_sym_RBRACK] = ACTIONS(5909), - [anon_sym_const] = ACTIONS(5911), - [anon_sym_constexpr] = ACTIONS(5909), - [anon_sym_volatile] = ACTIONS(5909), - [anon_sym_restrict] = ACTIONS(5909), - [anon_sym___restrict__] = ACTIONS(5909), - [anon_sym__Atomic] = ACTIONS(5909), - [anon_sym__Noreturn] = ACTIONS(5909), - [anon_sym_noreturn] = ACTIONS(5909), - [anon_sym_mutable] = ACTIONS(5909), - [anon_sym_constinit] = ACTIONS(5909), - [anon_sym_consteval] = ACTIONS(5909), - [anon_sym_COLON] = ACTIONS(5909), - [anon_sym_QMARK] = ACTIONS(5909), - [anon_sym_LT_EQ_GT] = ACTIONS(5909), - [anon_sym_or] = ACTIONS(5909), - [anon_sym_and] = ACTIONS(5909), - [anon_sym_bitor] = ACTIONS(5909), - [anon_sym_xor] = ACTIONS(5909), - [anon_sym_bitand] = ACTIONS(5909), - [anon_sym_not_eq] = ACTIONS(5909), - [anon_sym_DASH_DASH] = ACTIONS(5909), - [anon_sym_PLUS_PLUS] = ACTIONS(5909), - [anon_sym_DOT] = ACTIONS(5911), - [anon_sym_DOT_STAR] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(5909), + [2222] = { + [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(5663), + [anon_sym_DASH] = ACTIONS(5661), + [anon_sym_PLUS] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(5663), + [anon_sym_SLASH] = ACTIONS(5661), + [anon_sym_PERCENT] = ACTIONS(5663), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5661), + [anon_sym_CARET] = ACTIONS(5663), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5661), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(5661), + [anon_sym_LT_LT] = ACTIONS(5663), + [anon_sym_GT_GT] = ACTIONS(5663), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5663), + [anon_sym_RBRACE] = ACTIONS(5663), + [anon_sym_signed] = ACTIONS(5661), + [anon_sym_unsigned] = ACTIONS(5661), + [anon_sym_long] = ACTIONS(5661), + [anon_sym_short] = ACTIONS(5661), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_RBRACK] = ACTIONS(5663), + [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_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [sym_primitive_type] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5663), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [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(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5909), - [anon_sym_decltype] = ACTIONS(5909), - [anon_sym_final] = ACTIONS(5909), - [anon_sym_override] = ACTIONS(5909), - [anon_sym_requires] = ACTIONS(5909), - }, - [2392] = { - [sym_template_argument_list] = STATE(1935), - [sym_identifier] = ACTIONS(4968), - [anon_sym_LPAREN2] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PIPE_PIPE] = ACTIONS(4975), - [anon_sym_AMP_AMP] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4968), - [anon_sym_LT] = ACTIONS(5913), - [anon_sym___extension__] = ACTIONS(4968), - [anon_sym_extern] = ACTIONS(4968), - [anon_sym___attribute__] = ACTIONS(4968), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4975), - [anon_sym___declspec] = ACTIONS(4968), - [anon_sym___based] = ACTIONS(4968), - [anon_sym___cdecl] = ACTIONS(4968), - [anon_sym___clrcall] = ACTIONS(4968), - [anon_sym___stdcall] = ACTIONS(4968), - [anon_sym___fastcall] = ACTIONS(4968), - [anon_sym___thiscall] = ACTIONS(4968), - [anon_sym___vectorcall] = ACTIONS(4968), - [anon_sym_signed] = ACTIONS(4968), - [anon_sym_unsigned] = ACTIONS(4968), - [anon_sym_long] = ACTIONS(4968), - [anon_sym_short] = ACTIONS(4968), - [anon_sym_LBRACK] = ACTIONS(4968), - [anon_sym_static] = ACTIONS(4968), - [anon_sym_register] = ACTIONS(4968), - [anon_sym_inline] = ACTIONS(4968), - [anon_sym___inline] = ACTIONS(4968), - [anon_sym___inline__] = ACTIONS(4968), - [anon_sym___forceinline] = ACTIONS(4968), - [anon_sym_thread_local] = ACTIONS(4968), - [anon_sym___thread] = ACTIONS(4968), - [anon_sym_const] = ACTIONS(4968), - [anon_sym_constexpr] = ACTIONS(4968), - [anon_sym_volatile] = ACTIONS(4968), - [anon_sym_restrict] = ACTIONS(4968), - [anon_sym___restrict__] = ACTIONS(4968), - [anon_sym__Atomic] = ACTIONS(4968), - [anon_sym__Noreturn] = ACTIONS(4968), - [anon_sym_noreturn] = ACTIONS(4968), - [anon_sym_mutable] = ACTIONS(4968), - [anon_sym_constinit] = ACTIONS(4968), - [anon_sym_consteval] = ACTIONS(4968), - [sym_primitive_type] = ACTIONS(4968), - [anon_sym_enum] = ACTIONS(4968), - [anon_sym_class] = ACTIONS(4968), - [anon_sym_struct] = ACTIONS(4968), - [anon_sym_union] = ACTIONS(4968), - [anon_sym_or] = ACTIONS(4968), - [anon_sym_and] = ACTIONS(4968), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4968), - [anon_sym_decltype] = ACTIONS(4968), - [anon_sym_virtual] = ACTIONS(4968), - [anon_sym_alignas] = ACTIONS(4968), - [anon_sym_explicit] = ACTIONS(4968), - [anon_sym_typename] = ACTIONS(4968), - [anon_sym_template] = ACTIONS(4968), - [anon_sym_operator] = ACTIONS(4968), - [anon_sym_friend] = ACTIONS(4968), - [anon_sym_using] = ACTIONS(4968), - [anon_sym_concept] = ACTIONS(4968), - }, - [2393] = { - [sym_identifier] = ACTIONS(5915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5917), - [anon_sym_COMMA] = ACTIONS(5917), - [anon_sym_RPAREN] = ACTIONS(5917), - [aux_sym_preproc_if_token2] = ACTIONS(5917), - [aux_sym_preproc_else_token1] = ACTIONS(5917), - [aux_sym_preproc_elif_token1] = ACTIONS(5915), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5917), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5917), - [anon_sym_LPAREN2] = ACTIONS(5917), - [anon_sym_DASH] = ACTIONS(5915), - [anon_sym_PLUS] = ACTIONS(5915), - [anon_sym_STAR] = ACTIONS(5915), - [anon_sym_SLASH] = ACTIONS(5915), - [anon_sym_PERCENT] = ACTIONS(5915), - [anon_sym_PIPE_PIPE] = ACTIONS(5917), - [anon_sym_AMP_AMP] = ACTIONS(5917), - [anon_sym_PIPE] = ACTIONS(5915), - [anon_sym_CARET] = ACTIONS(5915), - [anon_sym_AMP] = ACTIONS(5915), - [anon_sym_EQ_EQ] = ACTIONS(5917), - [anon_sym_BANG_EQ] = ACTIONS(5917), - [anon_sym_GT] = ACTIONS(5915), - [anon_sym_GT_EQ] = ACTIONS(5917), - [anon_sym_LT_EQ] = ACTIONS(5915), - [anon_sym_LT] = ACTIONS(5915), - [anon_sym_LT_LT] = ACTIONS(5915), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_SEMI] = ACTIONS(5917), - [anon_sym___attribute__] = ACTIONS(5915), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5917), - [anon_sym_LBRACE] = ACTIONS(5917), - [anon_sym_RBRACE] = ACTIONS(5917), - [anon_sym_LBRACK] = ACTIONS(5915), - [anon_sym_RBRACK] = ACTIONS(5917), - [anon_sym_EQ] = ACTIONS(5915), - [anon_sym_COLON] = ACTIONS(5917), - [anon_sym_QMARK] = ACTIONS(5917), - [anon_sym_STAR_EQ] = ACTIONS(5917), - [anon_sym_SLASH_EQ] = ACTIONS(5917), - [anon_sym_PERCENT_EQ] = ACTIONS(5917), - [anon_sym_PLUS_EQ] = ACTIONS(5917), - [anon_sym_DASH_EQ] = ACTIONS(5917), - [anon_sym_LT_LT_EQ] = ACTIONS(5917), - [anon_sym_GT_GT_EQ] = ACTIONS(5917), - [anon_sym_AMP_EQ] = ACTIONS(5917), - [anon_sym_CARET_EQ] = ACTIONS(5917), - [anon_sym_PIPE_EQ] = ACTIONS(5917), - [anon_sym_and_eq] = ACTIONS(5915), - [anon_sym_or_eq] = ACTIONS(5915), - [anon_sym_xor_eq] = ACTIONS(5915), - [anon_sym_LT_EQ_GT] = ACTIONS(5917), - [anon_sym_or] = ACTIONS(5915), - [anon_sym_and] = ACTIONS(5915), - [anon_sym_bitor] = ACTIONS(5915), - [anon_sym_xor] = ACTIONS(5915), - [anon_sym_bitand] = ACTIONS(5915), - [anon_sym_not_eq] = ACTIONS(5915), - [anon_sym_DASH_DASH] = ACTIONS(5917), - [anon_sym_PLUS_PLUS] = ACTIONS(5917), - [anon_sym_DOT] = ACTIONS(5915), - [anon_sym_DOT_STAR] = ACTIONS(5917), - [anon_sym_DASH_GT] = ACTIONS(5917), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5915), - }, - [2394] = { - [sym_identifier] = ACTIONS(5919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5921), - [anon_sym_COMMA] = ACTIONS(5921), - [anon_sym_RPAREN] = ACTIONS(5921), - [aux_sym_preproc_if_token2] = ACTIONS(5921), - [aux_sym_preproc_else_token1] = ACTIONS(5921), - [aux_sym_preproc_elif_token1] = ACTIONS(5919), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5921), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5921), - [anon_sym_LPAREN2] = ACTIONS(5921), - [anon_sym_DASH] = ACTIONS(5919), - [anon_sym_PLUS] = ACTIONS(5919), - [anon_sym_STAR] = ACTIONS(5919), - [anon_sym_SLASH] = ACTIONS(5919), - [anon_sym_PERCENT] = ACTIONS(5919), - [anon_sym_PIPE_PIPE] = ACTIONS(5921), - [anon_sym_AMP_AMP] = ACTIONS(5921), - [anon_sym_PIPE] = ACTIONS(5919), - [anon_sym_CARET] = ACTIONS(5919), - [anon_sym_AMP] = ACTIONS(5919), - [anon_sym_EQ_EQ] = ACTIONS(5921), - [anon_sym_BANG_EQ] = ACTIONS(5921), - [anon_sym_GT] = ACTIONS(5919), - [anon_sym_GT_EQ] = ACTIONS(5921), - [anon_sym_LT_EQ] = ACTIONS(5919), - [anon_sym_LT] = ACTIONS(5919), - [anon_sym_LT_LT] = ACTIONS(5919), - [anon_sym_GT_GT] = ACTIONS(5919), - [anon_sym_SEMI] = ACTIONS(5921), - [anon_sym___attribute__] = ACTIONS(5919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5921), - [anon_sym_LBRACE] = ACTIONS(5921), - [anon_sym_RBRACE] = ACTIONS(5921), - [anon_sym_LBRACK] = ACTIONS(5919), - [anon_sym_RBRACK] = ACTIONS(5921), - [anon_sym_EQ] = ACTIONS(5919), - [anon_sym_COLON] = ACTIONS(5921), - [anon_sym_QMARK] = ACTIONS(5921), - [anon_sym_STAR_EQ] = ACTIONS(5921), - [anon_sym_SLASH_EQ] = ACTIONS(5921), - [anon_sym_PERCENT_EQ] = ACTIONS(5921), - [anon_sym_PLUS_EQ] = ACTIONS(5921), - [anon_sym_DASH_EQ] = ACTIONS(5921), - [anon_sym_LT_LT_EQ] = ACTIONS(5921), - [anon_sym_GT_GT_EQ] = ACTIONS(5921), - [anon_sym_AMP_EQ] = ACTIONS(5921), - [anon_sym_CARET_EQ] = ACTIONS(5921), - [anon_sym_PIPE_EQ] = ACTIONS(5921), - [anon_sym_and_eq] = ACTIONS(5919), - [anon_sym_or_eq] = ACTIONS(5919), - [anon_sym_xor_eq] = ACTIONS(5919), - [anon_sym_LT_EQ_GT] = ACTIONS(5921), - [anon_sym_or] = ACTIONS(5919), - [anon_sym_and] = ACTIONS(5919), - [anon_sym_bitor] = ACTIONS(5919), - [anon_sym_xor] = ACTIONS(5919), - [anon_sym_bitand] = ACTIONS(5919), - [anon_sym_not_eq] = ACTIONS(5919), - [anon_sym_DASH_DASH] = ACTIONS(5921), - [anon_sym_PLUS_PLUS] = ACTIONS(5921), - [anon_sym_DOT] = ACTIONS(5919), - [anon_sym_DOT_STAR] = ACTIONS(5921), - [anon_sym_DASH_GT] = ACTIONS(5921), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5919), - }, - [2395] = { - [sym_identifier] = ACTIONS(5923), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5925), - [anon_sym_COMMA] = ACTIONS(5925), - [anon_sym_RPAREN] = ACTIONS(5925), - [aux_sym_preproc_if_token2] = ACTIONS(5925), - [aux_sym_preproc_else_token1] = ACTIONS(5925), - [aux_sym_preproc_elif_token1] = ACTIONS(5923), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5925), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5925), - [anon_sym_LPAREN2] = ACTIONS(5925), - [anon_sym_DASH] = ACTIONS(5923), - [anon_sym_PLUS] = ACTIONS(5923), - [anon_sym_STAR] = ACTIONS(5923), - [anon_sym_SLASH] = ACTIONS(5923), - [anon_sym_PERCENT] = ACTIONS(5923), - [anon_sym_PIPE_PIPE] = ACTIONS(5925), - [anon_sym_AMP_AMP] = ACTIONS(5925), - [anon_sym_PIPE] = ACTIONS(5923), - [anon_sym_CARET] = ACTIONS(5923), - [anon_sym_AMP] = ACTIONS(5923), - [anon_sym_EQ_EQ] = ACTIONS(5925), - [anon_sym_BANG_EQ] = ACTIONS(5925), - [anon_sym_GT] = ACTIONS(5923), - [anon_sym_GT_EQ] = ACTIONS(5925), - [anon_sym_LT_EQ] = ACTIONS(5923), - [anon_sym_LT] = ACTIONS(5923), - [anon_sym_LT_LT] = ACTIONS(5923), - [anon_sym_GT_GT] = ACTIONS(5923), - [anon_sym_SEMI] = ACTIONS(5925), - [anon_sym___attribute__] = ACTIONS(5923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5925), - [anon_sym_LBRACE] = ACTIONS(5925), - [anon_sym_RBRACE] = ACTIONS(5925), - [anon_sym_LBRACK] = ACTIONS(5923), - [anon_sym_RBRACK] = ACTIONS(5925), - [anon_sym_EQ] = ACTIONS(5923), - [anon_sym_COLON] = ACTIONS(5925), - [anon_sym_QMARK] = ACTIONS(5925), - [anon_sym_STAR_EQ] = ACTIONS(5925), - [anon_sym_SLASH_EQ] = ACTIONS(5925), - [anon_sym_PERCENT_EQ] = ACTIONS(5925), - [anon_sym_PLUS_EQ] = ACTIONS(5925), - [anon_sym_DASH_EQ] = ACTIONS(5925), - [anon_sym_LT_LT_EQ] = ACTIONS(5925), - [anon_sym_GT_GT_EQ] = ACTIONS(5925), - [anon_sym_AMP_EQ] = ACTIONS(5925), - [anon_sym_CARET_EQ] = ACTIONS(5925), - [anon_sym_PIPE_EQ] = ACTIONS(5925), - [anon_sym_and_eq] = ACTIONS(5923), - [anon_sym_or_eq] = ACTIONS(5923), - [anon_sym_xor_eq] = ACTIONS(5923), - [anon_sym_LT_EQ_GT] = ACTIONS(5925), - [anon_sym_or] = ACTIONS(5923), - [anon_sym_and] = ACTIONS(5923), - [anon_sym_bitor] = ACTIONS(5923), - [anon_sym_xor] = ACTIONS(5923), - [anon_sym_bitand] = ACTIONS(5923), - [anon_sym_not_eq] = ACTIONS(5923), - [anon_sym_DASH_DASH] = ACTIONS(5925), - [anon_sym_PLUS_PLUS] = ACTIONS(5925), - [anon_sym_DOT] = ACTIONS(5923), - [anon_sym_DOT_STAR] = ACTIONS(5925), - [anon_sym_DASH_GT] = ACTIONS(5925), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5923), - }, - [2396] = { - [sym_identifier] = ACTIONS(5927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5929), - [anon_sym_COMMA] = ACTIONS(5929), - [anon_sym_RPAREN] = ACTIONS(5929), - [aux_sym_preproc_if_token2] = ACTIONS(5929), - [aux_sym_preproc_else_token1] = ACTIONS(5929), - [aux_sym_preproc_elif_token1] = ACTIONS(5927), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5929), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5929), - [anon_sym_LPAREN2] = ACTIONS(5929), - [anon_sym_DASH] = ACTIONS(5927), - [anon_sym_PLUS] = ACTIONS(5927), - [anon_sym_STAR] = ACTIONS(5927), - [anon_sym_SLASH] = ACTIONS(5927), - [anon_sym_PERCENT] = ACTIONS(5927), - [anon_sym_PIPE_PIPE] = ACTIONS(5929), - [anon_sym_AMP_AMP] = ACTIONS(5929), - [anon_sym_PIPE] = ACTIONS(5927), - [anon_sym_CARET] = ACTIONS(5927), - [anon_sym_AMP] = ACTIONS(5927), - [anon_sym_EQ_EQ] = ACTIONS(5929), - [anon_sym_BANG_EQ] = ACTIONS(5929), - [anon_sym_GT] = ACTIONS(5927), - [anon_sym_GT_EQ] = ACTIONS(5929), - [anon_sym_LT_EQ] = ACTIONS(5927), - [anon_sym_LT] = ACTIONS(5927), - [anon_sym_LT_LT] = ACTIONS(5927), - [anon_sym_GT_GT] = ACTIONS(5927), - [anon_sym_SEMI] = ACTIONS(5929), - [anon_sym___attribute__] = ACTIONS(5927), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5929), - [anon_sym_LBRACE] = ACTIONS(5929), - [anon_sym_RBRACE] = ACTIONS(5929), - [anon_sym_LBRACK] = ACTIONS(5927), - [anon_sym_RBRACK] = ACTIONS(5929), - [anon_sym_EQ] = ACTIONS(5927), - [anon_sym_COLON] = ACTIONS(5929), - [anon_sym_QMARK] = ACTIONS(5929), - [anon_sym_STAR_EQ] = ACTIONS(5929), - [anon_sym_SLASH_EQ] = ACTIONS(5929), - [anon_sym_PERCENT_EQ] = ACTIONS(5929), - [anon_sym_PLUS_EQ] = ACTIONS(5929), - [anon_sym_DASH_EQ] = ACTIONS(5929), - [anon_sym_LT_LT_EQ] = ACTIONS(5929), - [anon_sym_GT_GT_EQ] = ACTIONS(5929), - [anon_sym_AMP_EQ] = ACTIONS(5929), - [anon_sym_CARET_EQ] = ACTIONS(5929), - [anon_sym_PIPE_EQ] = ACTIONS(5929), - [anon_sym_and_eq] = ACTIONS(5927), - [anon_sym_or_eq] = ACTIONS(5927), - [anon_sym_xor_eq] = ACTIONS(5927), - [anon_sym_LT_EQ_GT] = ACTIONS(5929), - [anon_sym_or] = ACTIONS(5927), - [anon_sym_and] = ACTIONS(5927), - [anon_sym_bitor] = ACTIONS(5927), - [anon_sym_xor] = ACTIONS(5927), - [anon_sym_bitand] = ACTIONS(5927), - [anon_sym_not_eq] = ACTIONS(5927), - [anon_sym_DASH_DASH] = ACTIONS(5929), - [anon_sym_PLUS_PLUS] = ACTIONS(5929), - [anon_sym_DOT] = ACTIONS(5927), - [anon_sym_DOT_STAR] = ACTIONS(5929), - [anon_sym_DASH_GT] = ACTIONS(5929), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5927), + [sym_auto] = ACTIONS(5661), + [anon_sym_decltype] = ACTIONS(5661), + [anon_sym_final] = ACTIONS(5661), + [anon_sym_override] = ACTIONS(5661), + [anon_sym_requires] = ACTIONS(5661), }, - [2397] = { - [sym_template_argument_list] = STATE(2507), - [sym_identifier] = ACTIONS(4977), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4970), - [aux_sym_preproc_if_token2] = ACTIONS(4970), - [aux_sym_preproc_else_token1] = ACTIONS(4970), - [aux_sym_preproc_elif_token1] = ACTIONS(4977), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4970), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4970), - [anon_sym_LPAREN2] = ACTIONS(4970), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4977), - [anon_sym_STAR] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4977), - [anon_sym_PERCENT] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_PIPE] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(5931), - [anon_sym_LT_LT] = ACTIONS(4977), - [anon_sym_GT_GT] = ACTIONS(4977), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym___attribute__] = ACTIONS(4977), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_EQ] = ACTIONS(4977), - [anon_sym_COLON] = ACTIONS(4977), - [anon_sym_QMARK] = ACTIONS(4970), - [anon_sym_STAR_EQ] = ACTIONS(4970), - [anon_sym_SLASH_EQ] = ACTIONS(4970), - [anon_sym_PERCENT_EQ] = ACTIONS(4970), - [anon_sym_PLUS_EQ] = ACTIONS(4970), - [anon_sym_DASH_EQ] = ACTIONS(4970), - [anon_sym_LT_LT_EQ] = ACTIONS(4970), - [anon_sym_GT_GT_EQ] = ACTIONS(4970), - [anon_sym_AMP_EQ] = ACTIONS(4970), - [anon_sym_CARET_EQ] = ACTIONS(4970), - [anon_sym_PIPE_EQ] = ACTIONS(4970), - [anon_sym_and_eq] = ACTIONS(4977), - [anon_sym_or_eq] = ACTIONS(4977), - [anon_sym_xor_eq] = ACTIONS(4977), - [anon_sym_LT_EQ_GT] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4977), - [anon_sym_and] = ACTIONS(4977), - [anon_sym_bitor] = ACTIONS(4977), - [anon_sym_xor] = ACTIONS(4977), - [anon_sym_bitand] = ACTIONS(4977), - [anon_sym_not_eq] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_DOT_STAR] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4970), - [sym_comment] = ACTIONS(3), + [2223] = { + [sym_identifier] = ACTIONS(5665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5667), + [anon_sym_COMMA] = ACTIONS(5667), + [anon_sym_RPAREN] = ACTIONS(5667), + [anon_sym_LPAREN2] = ACTIONS(5667), + [anon_sym_DASH] = ACTIONS(5665), + [anon_sym_PLUS] = ACTIONS(5665), + [anon_sym_STAR] = ACTIONS(5667), + [anon_sym_SLASH] = ACTIONS(5665), + [anon_sym_PERCENT] = ACTIONS(5667), + [anon_sym_PIPE_PIPE] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(5667), + [anon_sym_PIPE] = ACTIONS(5665), + [anon_sym_CARET] = ACTIONS(5667), + [anon_sym_AMP] = ACTIONS(5665), + [anon_sym_EQ_EQ] = ACTIONS(5667), + [anon_sym_BANG_EQ] = ACTIONS(5667), + [anon_sym_GT] = ACTIONS(5665), + [anon_sym_GT_EQ] = ACTIONS(5667), + [anon_sym_LT_EQ] = ACTIONS(5665), + [anon_sym_LT] = ACTIONS(5665), + [anon_sym_LT_LT] = ACTIONS(5667), + [anon_sym_GT_GT] = ACTIONS(5667), + [anon_sym_SEMI] = ACTIONS(5667), + [anon_sym___extension__] = ACTIONS(5665), + [anon_sym___attribute__] = ACTIONS(5665), + [anon_sym___based] = ACTIONS(5665), + [anon_sym_LBRACE] = ACTIONS(5667), + [anon_sym_RBRACE] = ACTIONS(5667), + [anon_sym_signed] = ACTIONS(5665), + [anon_sym_unsigned] = ACTIONS(5665), + [anon_sym_long] = ACTIONS(5665), + [anon_sym_short] = ACTIONS(5665), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_RBRACK] = ACTIONS(5667), + [anon_sym_const] = ACTIONS(5665), + [anon_sym_constexpr] = ACTIONS(5665), + [anon_sym_volatile] = ACTIONS(5665), + [anon_sym_restrict] = ACTIONS(5665), + [anon_sym___restrict__] = ACTIONS(5665), + [anon_sym__Atomic] = ACTIONS(5665), + [anon_sym__Noreturn] = ACTIONS(5665), + [anon_sym_noreturn] = ACTIONS(5665), + [anon_sym_mutable] = ACTIONS(5665), + [anon_sym_constinit] = ACTIONS(5665), + [anon_sym_consteval] = ACTIONS(5665), + [sym_primitive_type] = ACTIONS(5665), + [anon_sym_COLON] = ACTIONS(5667), + [anon_sym_QMARK] = ACTIONS(5667), + [anon_sym_LT_EQ_GT] = ACTIONS(5667), + [anon_sym_or] = ACTIONS(5665), + [anon_sym_and] = ACTIONS(5665), + [anon_sym_bitor] = ACTIONS(5665), + [anon_sym_xor] = ACTIONS(5665), + [anon_sym_bitand] = ACTIONS(5665), + [anon_sym_not_eq] = ACTIONS(5665), + [anon_sym_DASH_DASH] = ACTIONS(5667), + [anon_sym_PLUS_PLUS] = ACTIONS(5667), + [anon_sym_DOT] = ACTIONS(5665), + [anon_sym_DOT_STAR] = ACTIONS(5667), + [anon_sym_DASH_GT] = ACTIONS(5667), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5665), + [anon_sym_final] = ACTIONS(5665), + [anon_sym_override] = ACTIONS(5665), + [anon_sym_requires] = ACTIONS(5665), }, - [2398] = { - [sym_identifier] = ACTIONS(5934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5936), - [anon_sym_COMMA] = ACTIONS(5936), - [anon_sym_RPAREN] = ACTIONS(5936), - [aux_sym_preproc_if_token2] = ACTIONS(5936), - [aux_sym_preproc_else_token1] = ACTIONS(5936), - [aux_sym_preproc_elif_token1] = ACTIONS(5934), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5936), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5936), - [anon_sym_LPAREN2] = ACTIONS(5936), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_STAR] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5934), - [anon_sym_PERCENT] = ACTIONS(5934), - [anon_sym_PIPE_PIPE] = ACTIONS(5936), - [anon_sym_AMP_AMP] = ACTIONS(5936), - [anon_sym_PIPE] = ACTIONS(5934), - [anon_sym_CARET] = ACTIONS(5934), - [anon_sym_AMP] = ACTIONS(5934), - [anon_sym_EQ_EQ] = ACTIONS(5936), - [anon_sym_BANG_EQ] = ACTIONS(5936), - [anon_sym_GT] = ACTIONS(5934), - [anon_sym_GT_EQ] = ACTIONS(5936), - [anon_sym_LT_EQ] = ACTIONS(5934), - [anon_sym_LT] = ACTIONS(5934), - [anon_sym_LT_LT] = ACTIONS(5934), - [anon_sym_GT_GT] = ACTIONS(5934), - [anon_sym_SEMI] = ACTIONS(5936), - [anon_sym___attribute__] = ACTIONS(5934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5936), - [anon_sym_LBRACE] = ACTIONS(5936), - [anon_sym_RBRACE] = ACTIONS(5936), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_RBRACK] = ACTIONS(5936), - [anon_sym_EQ] = ACTIONS(5934), - [anon_sym_COLON] = ACTIONS(5936), - [anon_sym_QMARK] = ACTIONS(5936), - [anon_sym_STAR_EQ] = ACTIONS(5936), - [anon_sym_SLASH_EQ] = ACTIONS(5936), - [anon_sym_PERCENT_EQ] = ACTIONS(5936), - [anon_sym_PLUS_EQ] = ACTIONS(5936), - [anon_sym_DASH_EQ] = ACTIONS(5936), - [anon_sym_LT_LT_EQ] = ACTIONS(5936), - [anon_sym_GT_GT_EQ] = ACTIONS(5936), - [anon_sym_AMP_EQ] = ACTIONS(5936), - [anon_sym_CARET_EQ] = ACTIONS(5936), - [anon_sym_PIPE_EQ] = ACTIONS(5936), - [anon_sym_and_eq] = ACTIONS(5934), - [anon_sym_or_eq] = ACTIONS(5934), - [anon_sym_xor_eq] = ACTIONS(5934), - [anon_sym_LT_EQ_GT] = ACTIONS(5936), - [anon_sym_or] = ACTIONS(5934), - [anon_sym_and] = ACTIONS(5934), - [anon_sym_bitor] = ACTIONS(5934), - [anon_sym_xor] = ACTIONS(5934), - [anon_sym_bitand] = ACTIONS(5934), - [anon_sym_not_eq] = ACTIONS(5934), - [anon_sym_DASH_DASH] = ACTIONS(5936), - [anon_sym_PLUS_PLUS] = ACTIONS(5936), - [anon_sym_DOT] = ACTIONS(5934), - [anon_sym_DOT_STAR] = ACTIONS(5936), - [anon_sym_DASH_GT] = ACTIONS(5936), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5934), + [2224] = { + [sym_identifier] = ACTIONS(5669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5671), + [anon_sym_COMMA] = ACTIONS(5671), + [anon_sym_RPAREN] = ACTIONS(5671), + [anon_sym_LPAREN2] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5669), + [anon_sym_PLUS] = ACTIONS(5669), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5669), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5671), + [anon_sym_AMP_AMP] = ACTIONS(5671), + [anon_sym_PIPE] = ACTIONS(5669), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5669), + [anon_sym_EQ_EQ] = ACTIONS(5671), + [anon_sym_BANG_EQ] = ACTIONS(5671), + [anon_sym_GT] = ACTIONS(5669), + [anon_sym_GT_EQ] = ACTIONS(5671), + [anon_sym_LT_EQ] = ACTIONS(5669), + [anon_sym_LT] = ACTIONS(5669), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5671), + [anon_sym___extension__] = ACTIONS(5669), + [anon_sym___attribute__] = ACTIONS(5669), + [anon_sym___based] = ACTIONS(5669), + [anon_sym_LBRACE] = ACTIONS(5671), + [anon_sym_RBRACE] = ACTIONS(5671), + [anon_sym_signed] = ACTIONS(5669), + [anon_sym_unsigned] = ACTIONS(5669), + [anon_sym_long] = ACTIONS(5669), + [anon_sym_short] = ACTIONS(5669), + [anon_sym_LBRACK] = ACTIONS(5671), + [anon_sym_RBRACK] = ACTIONS(5671), + [anon_sym_const] = ACTIONS(5669), + [anon_sym_constexpr] = ACTIONS(5669), + [anon_sym_volatile] = ACTIONS(5669), + [anon_sym_restrict] = ACTIONS(5669), + [anon_sym___restrict__] = ACTIONS(5669), + [anon_sym__Atomic] = ACTIONS(5669), + [anon_sym__Noreturn] = ACTIONS(5669), + [anon_sym_noreturn] = ACTIONS(5669), + [anon_sym_mutable] = ACTIONS(5669), + [anon_sym_constinit] = ACTIONS(5669), + [anon_sym_consteval] = ACTIONS(5669), + [sym_primitive_type] = ACTIONS(5669), + [anon_sym_COLON] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5671), + [anon_sym_LT_EQ_GT] = ACTIONS(5671), + [anon_sym_or] = ACTIONS(5669), + [anon_sym_and] = ACTIONS(5669), + [anon_sym_bitor] = ACTIONS(5669), + [anon_sym_xor] = ACTIONS(5669), + [anon_sym_bitand] = ACTIONS(5669), + [anon_sym_not_eq] = ACTIONS(5669), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_PLUS_PLUS] = ACTIONS(5671), + [anon_sym_DOT] = ACTIONS(5669), + [anon_sym_DOT_STAR] = ACTIONS(5671), + [anon_sym_DASH_GT] = ACTIONS(5671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5669), + [anon_sym_decltype] = ACTIONS(5669), + [anon_sym_final] = ACTIONS(5669), + [anon_sym_override] = ACTIONS(5669), + [anon_sym_requires] = ACTIONS(5669), }, - [2399] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5938), - [anon_sym_COMMA] = ACTIONS(5938), - [anon_sym_RPAREN] = ACTIONS(5938), - [anon_sym_LPAREN2] = ACTIONS(5938), - [anon_sym_DASH] = ACTIONS(5940), - [anon_sym_PLUS] = ACTIONS(5940), - [anon_sym_STAR] = ACTIONS(5938), - [anon_sym_SLASH] = ACTIONS(5940), - [anon_sym_PERCENT] = ACTIONS(5938), - [anon_sym_PIPE_PIPE] = ACTIONS(5938), - [anon_sym_AMP_AMP] = ACTIONS(5938), - [anon_sym_PIPE] = ACTIONS(5940), - [anon_sym_CARET] = ACTIONS(5938), - [anon_sym_AMP] = ACTIONS(5940), - [anon_sym_EQ_EQ] = ACTIONS(5938), - [anon_sym_BANG_EQ] = ACTIONS(5938), - [anon_sym_GT] = ACTIONS(5940), - [anon_sym_GT_EQ] = ACTIONS(5938), - [anon_sym_LT_EQ] = ACTIONS(5940), - [anon_sym_LT] = ACTIONS(5940), - [anon_sym_LT_LT] = ACTIONS(5938), - [anon_sym_GT_GT] = ACTIONS(5938), - [anon_sym_SEMI] = ACTIONS(5938), - [anon_sym___extension__] = ACTIONS(5938), - [anon_sym___attribute__] = ACTIONS(5938), - [anon_sym_LBRACE] = ACTIONS(5938), - [anon_sym_RBRACE] = ACTIONS(5938), - [anon_sym_signed] = ACTIONS(5942), - [anon_sym_unsigned] = ACTIONS(5942), - [anon_sym_long] = ACTIONS(5942), - [anon_sym_short] = ACTIONS(5942), - [anon_sym_LBRACK] = ACTIONS(5938), - [anon_sym_RBRACK] = ACTIONS(5938), - [anon_sym_const] = ACTIONS(5940), - [anon_sym_constexpr] = ACTIONS(5938), - [anon_sym_volatile] = ACTIONS(5938), - [anon_sym_restrict] = ACTIONS(5938), - [anon_sym___restrict__] = ACTIONS(5938), - [anon_sym__Atomic] = ACTIONS(5938), - [anon_sym__Noreturn] = ACTIONS(5938), - [anon_sym_noreturn] = ACTIONS(5938), - [anon_sym_mutable] = ACTIONS(5938), - [anon_sym_constinit] = ACTIONS(5938), - [anon_sym_consteval] = ACTIONS(5938), - [anon_sym_COLON] = ACTIONS(5938), - [anon_sym_QMARK] = ACTIONS(5938), - [anon_sym_LT_EQ_GT] = ACTIONS(5938), - [anon_sym_or] = ACTIONS(5938), - [anon_sym_and] = ACTIONS(5938), - [anon_sym_bitor] = ACTIONS(5938), - [anon_sym_xor] = ACTIONS(5938), - [anon_sym_bitand] = ACTIONS(5938), - [anon_sym_not_eq] = ACTIONS(5938), - [anon_sym_DASH_DASH] = ACTIONS(5938), - [anon_sym_PLUS_PLUS] = ACTIONS(5938), - [anon_sym_DOT] = ACTIONS(5940), - [anon_sym_DOT_STAR] = ACTIONS(5938), - [anon_sym_DASH_GT] = ACTIONS(5938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5938), - [anon_sym_decltype] = ACTIONS(5938), - [anon_sym_final] = ACTIONS(5938), - [anon_sym_override] = ACTIONS(5938), - [anon_sym_requires] = ACTIONS(5938), + [2225] = { + [sym_identifier] = ACTIONS(5673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5675), + [anon_sym_COMMA] = ACTIONS(5675), + [anon_sym_RPAREN] = ACTIONS(5675), + [anon_sym_LPAREN2] = ACTIONS(5675), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5675), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5675), + [anon_sym_PIPE_PIPE] = ACTIONS(5675), + [anon_sym_AMP_AMP] = ACTIONS(5675), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5675), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5675), + [anon_sym_BANG_EQ] = ACTIONS(5675), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5675), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5673), + [anon_sym_LT_LT] = ACTIONS(5675), + [anon_sym_GT_GT] = ACTIONS(5675), + [anon_sym_SEMI] = ACTIONS(5675), + [anon_sym___extension__] = ACTIONS(5673), + [anon_sym___attribute__] = ACTIONS(5673), + [anon_sym___based] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_RBRACE] = ACTIONS(5675), + [anon_sym_signed] = ACTIONS(5673), + [anon_sym_unsigned] = ACTIONS(5673), + [anon_sym_long] = ACTIONS(5673), + [anon_sym_short] = ACTIONS(5673), + [anon_sym_LBRACK] = ACTIONS(5675), + [anon_sym_RBRACK] = ACTIONS(5675), + [anon_sym_const] = ACTIONS(5673), + [anon_sym_constexpr] = ACTIONS(5673), + [anon_sym_volatile] = ACTIONS(5673), + [anon_sym_restrict] = ACTIONS(5673), + [anon_sym___restrict__] = ACTIONS(5673), + [anon_sym__Atomic] = ACTIONS(5673), + [anon_sym__Noreturn] = ACTIONS(5673), + [anon_sym_noreturn] = ACTIONS(5673), + [anon_sym_mutable] = ACTIONS(5673), + [anon_sym_constinit] = ACTIONS(5673), + [anon_sym_consteval] = ACTIONS(5673), + [sym_primitive_type] = ACTIONS(5673), + [anon_sym_COLON] = ACTIONS(5675), + [anon_sym_QMARK] = ACTIONS(5675), + [anon_sym_LT_EQ_GT] = ACTIONS(5675), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5675), + [anon_sym_PLUS_PLUS] = ACTIONS(5675), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5675), + [anon_sym_DASH_GT] = ACTIONS(5675), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5673), + [anon_sym_decltype] = ACTIONS(5673), + [anon_sym_final] = ACTIONS(5673), + [anon_sym_override] = ACTIONS(5673), + [anon_sym_requires] = ACTIONS(5673), }, - [2400] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5944), - [anon_sym_COMMA] = ACTIONS(5944), - [anon_sym_RPAREN] = ACTIONS(5944), - [anon_sym_LPAREN2] = ACTIONS(5944), - [anon_sym_DASH] = ACTIONS(5946), - [anon_sym_PLUS] = ACTIONS(5946), - [anon_sym_STAR] = ACTIONS(5944), - [anon_sym_SLASH] = ACTIONS(5946), - [anon_sym_PERCENT] = ACTIONS(5944), - [anon_sym_PIPE_PIPE] = ACTIONS(5944), - [anon_sym_AMP_AMP] = ACTIONS(5944), - [anon_sym_PIPE] = ACTIONS(5946), - [anon_sym_CARET] = ACTIONS(5944), - [anon_sym_AMP] = ACTIONS(5946), - [anon_sym_EQ_EQ] = ACTIONS(5944), - [anon_sym_BANG_EQ] = ACTIONS(5944), - [anon_sym_GT] = ACTIONS(5946), - [anon_sym_GT_EQ] = ACTIONS(5944), - [anon_sym_LT_EQ] = ACTIONS(5946), - [anon_sym_LT] = ACTIONS(5946), - [anon_sym_LT_LT] = ACTIONS(5944), - [anon_sym_GT_GT] = ACTIONS(5944), - [anon_sym_SEMI] = ACTIONS(5944), - [anon_sym___extension__] = ACTIONS(5944), - [anon_sym___attribute__] = ACTIONS(5944), - [anon_sym_LBRACE] = ACTIONS(5944), - [anon_sym_RBRACE] = ACTIONS(5944), - [anon_sym_signed] = ACTIONS(5948), - [anon_sym_unsigned] = ACTIONS(5948), - [anon_sym_long] = ACTIONS(5948), - [anon_sym_short] = ACTIONS(5948), - [anon_sym_LBRACK] = ACTIONS(5944), - [anon_sym_RBRACK] = ACTIONS(5944), - [anon_sym_const] = ACTIONS(5946), - [anon_sym_constexpr] = ACTIONS(5944), - [anon_sym_volatile] = ACTIONS(5944), - [anon_sym_restrict] = ACTIONS(5944), - [anon_sym___restrict__] = ACTIONS(5944), - [anon_sym__Atomic] = ACTIONS(5944), - [anon_sym__Noreturn] = ACTIONS(5944), - [anon_sym_noreturn] = ACTIONS(5944), - [anon_sym_mutable] = ACTIONS(5944), - [anon_sym_constinit] = ACTIONS(5944), - [anon_sym_consteval] = ACTIONS(5944), - [anon_sym_COLON] = ACTIONS(5944), - [anon_sym_QMARK] = ACTIONS(5944), - [anon_sym_LT_EQ_GT] = ACTIONS(5944), - [anon_sym_or] = ACTIONS(5944), - [anon_sym_and] = ACTIONS(5944), - [anon_sym_bitor] = ACTIONS(5944), - [anon_sym_xor] = ACTIONS(5944), - [anon_sym_bitand] = ACTIONS(5944), - [anon_sym_not_eq] = ACTIONS(5944), - [anon_sym_DASH_DASH] = ACTIONS(5944), - [anon_sym_PLUS_PLUS] = ACTIONS(5944), - [anon_sym_DOT] = ACTIONS(5946), - [anon_sym_DOT_STAR] = ACTIONS(5944), - [anon_sym_DASH_GT] = ACTIONS(5944), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5944), - [anon_sym_decltype] = ACTIONS(5944), - [anon_sym_final] = ACTIONS(5944), - [anon_sym_override] = ACTIONS(5944), - [anon_sym_requires] = ACTIONS(5944), + [2226] = { + [sym_identifier] = ACTIONS(5677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5679), + [anon_sym_COMMA] = ACTIONS(5679), + [anon_sym_RPAREN] = ACTIONS(5679), + [anon_sym_LPAREN2] = ACTIONS(5679), + [anon_sym_DASH] = ACTIONS(5677), + [anon_sym_PLUS] = ACTIONS(5677), + [anon_sym_STAR] = ACTIONS(5679), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5679), + [anon_sym_PIPE_PIPE] = ACTIONS(5679), + [anon_sym_AMP_AMP] = ACTIONS(5679), + [anon_sym_PIPE] = ACTIONS(5677), + [anon_sym_CARET] = ACTIONS(5679), + [anon_sym_AMP] = ACTIONS(5677), + [anon_sym_EQ_EQ] = ACTIONS(5679), + [anon_sym_BANG_EQ] = ACTIONS(5679), + [anon_sym_GT] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5679), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_LT] = ACTIONS(5677), + [anon_sym_LT_LT] = ACTIONS(5679), + [anon_sym_GT_GT] = ACTIONS(5679), + [anon_sym_SEMI] = ACTIONS(5679), + [anon_sym___extension__] = ACTIONS(5677), + [anon_sym___attribute__] = ACTIONS(5677), + [anon_sym___based] = ACTIONS(5677), + [anon_sym_LBRACE] = ACTIONS(5679), + [anon_sym_RBRACE] = ACTIONS(5679), + [anon_sym_signed] = ACTIONS(5677), + [anon_sym_unsigned] = ACTIONS(5677), + [anon_sym_long] = ACTIONS(5677), + [anon_sym_short] = ACTIONS(5677), + [anon_sym_LBRACK] = ACTIONS(5679), + [anon_sym_RBRACK] = ACTIONS(5679), + [anon_sym_const] = ACTIONS(5677), + [anon_sym_constexpr] = ACTIONS(5677), + [anon_sym_volatile] = ACTIONS(5677), + [anon_sym_restrict] = ACTIONS(5677), + [anon_sym___restrict__] = ACTIONS(5677), + [anon_sym__Atomic] = ACTIONS(5677), + [anon_sym__Noreturn] = ACTIONS(5677), + [anon_sym_noreturn] = ACTIONS(5677), + [anon_sym_mutable] = ACTIONS(5677), + [anon_sym_constinit] = ACTIONS(5677), + [anon_sym_consteval] = ACTIONS(5677), + [sym_primitive_type] = ACTIONS(5677), + [anon_sym_COLON] = ACTIONS(5679), + [anon_sym_QMARK] = ACTIONS(5679), + [anon_sym_LT_EQ_GT] = ACTIONS(5679), + [anon_sym_or] = ACTIONS(5677), + [anon_sym_and] = ACTIONS(5677), + [anon_sym_bitor] = ACTIONS(5677), + [anon_sym_xor] = ACTIONS(5677), + [anon_sym_bitand] = ACTIONS(5677), + [anon_sym_not_eq] = ACTIONS(5677), + [anon_sym_DASH_DASH] = ACTIONS(5679), + [anon_sym_PLUS_PLUS] = ACTIONS(5679), + [anon_sym_DOT] = ACTIONS(5677), + [anon_sym_DOT_STAR] = ACTIONS(5679), + [anon_sym_DASH_GT] = ACTIONS(5679), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5677), + [anon_sym_decltype] = ACTIONS(5677), + [anon_sym_final] = ACTIONS(5677), + [anon_sym_override] = ACTIONS(5677), + [anon_sym_requires] = ACTIONS(5677), }, - [2401] = { - [sym_argument_list] = STATE(2768), - [sym_initializer_list] = STATE(2768), - [sym_identifier] = ACTIONS(5950), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5952), - [anon_sym_COMMA] = ACTIONS(5952), - [anon_sym_RPAREN] = ACTIONS(5952), - [aux_sym_preproc_if_token2] = ACTIONS(5952), - [aux_sym_preproc_else_token1] = ACTIONS(5952), - [aux_sym_preproc_elif_token1] = ACTIONS(5950), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5952), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5952), - [anon_sym_LPAREN2] = ACTIONS(5324), - [anon_sym_DASH] = ACTIONS(5950), - [anon_sym_PLUS] = ACTIONS(5950), - [anon_sym_STAR] = ACTIONS(5950), - [anon_sym_SLASH] = ACTIONS(5950), - [anon_sym_PERCENT] = ACTIONS(5950), - [anon_sym_PIPE_PIPE] = ACTIONS(5952), - [anon_sym_AMP_AMP] = ACTIONS(5952), - [anon_sym_PIPE] = ACTIONS(5950), - [anon_sym_CARET] = ACTIONS(5950), - [anon_sym_AMP] = ACTIONS(5950), - [anon_sym_EQ_EQ] = ACTIONS(5952), - [anon_sym_BANG_EQ] = ACTIONS(5952), - [anon_sym_GT] = ACTIONS(5950), - [anon_sym_GT_EQ] = ACTIONS(5952), - [anon_sym_LT_EQ] = ACTIONS(5950), - [anon_sym_LT] = ACTIONS(5950), - [anon_sym_LT_LT] = ACTIONS(5950), - [anon_sym_GT_GT] = ACTIONS(5950), - [anon_sym_SEMI] = ACTIONS(5952), - [anon_sym___attribute__] = ACTIONS(5950), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(5952), - [anon_sym_RBRACK] = ACTIONS(5952), - [anon_sym_EQ] = ACTIONS(5950), - [anon_sym_COLON] = ACTIONS(5952), - [anon_sym_QMARK] = ACTIONS(5952), - [anon_sym_STAR_EQ] = ACTIONS(5952), - [anon_sym_SLASH_EQ] = ACTIONS(5952), - [anon_sym_PERCENT_EQ] = ACTIONS(5952), - [anon_sym_PLUS_EQ] = ACTIONS(5952), - [anon_sym_DASH_EQ] = ACTIONS(5952), - [anon_sym_LT_LT_EQ] = ACTIONS(5952), - [anon_sym_GT_GT_EQ] = ACTIONS(5952), - [anon_sym_AMP_EQ] = ACTIONS(5952), - [anon_sym_CARET_EQ] = ACTIONS(5952), - [anon_sym_PIPE_EQ] = ACTIONS(5952), - [anon_sym_and_eq] = ACTIONS(5950), - [anon_sym_or_eq] = ACTIONS(5950), - [anon_sym_xor_eq] = ACTIONS(5950), - [anon_sym_LT_EQ_GT] = ACTIONS(5952), - [anon_sym_or] = ACTIONS(5950), - [anon_sym_and] = ACTIONS(5950), - [anon_sym_bitor] = ACTIONS(5950), - [anon_sym_xor] = ACTIONS(5950), - [anon_sym_bitand] = ACTIONS(5950), - [anon_sym_not_eq] = ACTIONS(5950), - [anon_sym_DASH_DASH] = ACTIONS(5952), - [anon_sym_PLUS_PLUS] = ACTIONS(5952), - [anon_sym_DOT] = ACTIONS(5950), - [anon_sym_DOT_STAR] = ACTIONS(5952), - [anon_sym_DASH_GT] = ACTIONS(5952), - [sym_comment] = ACTIONS(3), + [2227] = { + [sym_identifier] = ACTIONS(5681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5683), + [anon_sym_COMMA] = ACTIONS(5683), + [anon_sym_RPAREN] = ACTIONS(5683), + [anon_sym_LPAREN2] = ACTIONS(5683), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_STAR] = ACTIONS(5683), + [anon_sym_SLASH] = ACTIONS(5681), + [anon_sym_PERCENT] = ACTIONS(5683), + [anon_sym_PIPE_PIPE] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5683), + [anon_sym_PIPE] = ACTIONS(5681), + [anon_sym_CARET] = ACTIONS(5683), + [anon_sym_AMP] = ACTIONS(5681), + [anon_sym_EQ_EQ] = ACTIONS(5683), + [anon_sym_BANG_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_LT_EQ] = ACTIONS(5681), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_LT] = ACTIONS(5683), + [anon_sym_GT_GT] = ACTIONS(5683), + [anon_sym_SEMI] = ACTIONS(5683), + [anon_sym___extension__] = ACTIONS(5681), + [anon_sym___attribute__] = ACTIONS(5681), + [anon_sym___based] = ACTIONS(5681), + [anon_sym_LBRACE] = ACTIONS(5683), + [anon_sym_RBRACE] = ACTIONS(5683), + [anon_sym_signed] = ACTIONS(5681), + [anon_sym_unsigned] = ACTIONS(5681), + [anon_sym_long] = ACTIONS(5681), + [anon_sym_short] = ACTIONS(5681), + [anon_sym_LBRACK] = ACTIONS(5683), + [anon_sym_RBRACK] = ACTIONS(5683), + [anon_sym_const] = ACTIONS(5681), + [anon_sym_constexpr] = ACTIONS(5681), + [anon_sym_volatile] = ACTIONS(5681), + [anon_sym_restrict] = ACTIONS(5681), + [anon_sym___restrict__] = ACTIONS(5681), + [anon_sym__Atomic] = ACTIONS(5681), + [anon_sym__Noreturn] = ACTIONS(5681), + [anon_sym_noreturn] = ACTIONS(5681), + [anon_sym_mutable] = ACTIONS(5681), + [anon_sym_constinit] = ACTIONS(5681), + [anon_sym_consteval] = ACTIONS(5681), + [sym_primitive_type] = ACTIONS(5681), + [anon_sym_COLON] = ACTIONS(5683), + [anon_sym_QMARK] = ACTIONS(5683), + [anon_sym_LT_EQ_GT] = ACTIONS(5683), + [anon_sym_or] = ACTIONS(5681), + [anon_sym_and] = ACTIONS(5681), + [anon_sym_bitor] = ACTIONS(5681), + [anon_sym_xor] = ACTIONS(5681), + [anon_sym_bitand] = ACTIONS(5681), + [anon_sym_not_eq] = ACTIONS(5681), + [anon_sym_DASH_DASH] = ACTIONS(5683), + [anon_sym_PLUS_PLUS] = ACTIONS(5683), + [anon_sym_DOT] = ACTIONS(5681), + [anon_sym_DOT_STAR] = ACTIONS(5683), + [anon_sym_DASH_GT] = ACTIONS(5683), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5681), + [anon_sym_decltype] = ACTIONS(5681), + [anon_sym_final] = ACTIONS(5681), + [anon_sym_override] = ACTIONS(5681), + [anon_sym_requires] = ACTIONS(5681), }, - [2402] = { - [sym_attribute_declaration] = STATE(2421), - [aux_sym_attributed_declarator_repeat1] = STATE(2421), - [sym_identifier] = ACTIONS(5954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5956), - [anon_sym_COMMA] = ACTIONS(5956), - [anon_sym_RPAREN] = ACTIONS(5956), - [aux_sym_preproc_if_token2] = ACTIONS(5956), - [aux_sym_preproc_else_token1] = ACTIONS(5956), - [aux_sym_preproc_elif_token1] = ACTIONS(5954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5956), - [anon_sym_LPAREN2] = ACTIONS(5956), - [anon_sym_DASH] = ACTIONS(5954), - [anon_sym_PLUS] = ACTIONS(5954), - [anon_sym_STAR] = ACTIONS(5954), - [anon_sym_SLASH] = ACTIONS(5954), - [anon_sym_PERCENT] = ACTIONS(5954), - [anon_sym_PIPE_PIPE] = ACTIONS(5956), - [anon_sym_AMP_AMP] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5954), - [anon_sym_CARET] = ACTIONS(5954), - [anon_sym_AMP] = ACTIONS(5954), - [anon_sym_EQ_EQ] = ACTIONS(5956), - [anon_sym_BANG_EQ] = ACTIONS(5956), - [anon_sym_GT] = ACTIONS(5954), - [anon_sym_GT_EQ] = ACTIONS(5956), - [anon_sym_LT_EQ] = ACTIONS(5954), - [anon_sym_LT] = ACTIONS(5954), - [anon_sym_LT_LT] = ACTIONS(5954), - [anon_sym_GT_GT] = ACTIONS(5954), - [anon_sym_SEMI] = ACTIONS(5956), - [anon_sym___attribute__] = ACTIONS(5954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5807), - [anon_sym_RBRACE] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5954), - [anon_sym_RBRACK] = ACTIONS(5956), - [anon_sym_EQ] = ACTIONS(5954), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_QMARK] = ACTIONS(5956), - [anon_sym_STAR_EQ] = ACTIONS(5956), - [anon_sym_SLASH_EQ] = ACTIONS(5956), - [anon_sym_PERCENT_EQ] = ACTIONS(5956), - [anon_sym_PLUS_EQ] = ACTIONS(5956), - [anon_sym_DASH_EQ] = ACTIONS(5956), - [anon_sym_LT_LT_EQ] = ACTIONS(5956), - [anon_sym_GT_GT_EQ] = ACTIONS(5956), - [anon_sym_AMP_EQ] = ACTIONS(5956), - [anon_sym_CARET_EQ] = ACTIONS(5956), - [anon_sym_PIPE_EQ] = ACTIONS(5956), - [anon_sym_and_eq] = ACTIONS(5954), - [anon_sym_or_eq] = ACTIONS(5954), - [anon_sym_xor_eq] = ACTIONS(5954), - [anon_sym_LT_EQ_GT] = ACTIONS(5956), - [anon_sym_or] = ACTIONS(5954), - [anon_sym_and] = ACTIONS(5954), - [anon_sym_bitor] = ACTIONS(5954), - [anon_sym_xor] = ACTIONS(5954), - [anon_sym_bitand] = ACTIONS(5954), - [anon_sym_not_eq] = ACTIONS(5954), - [anon_sym_DASH_DASH] = ACTIONS(5956), - [anon_sym_PLUS_PLUS] = ACTIONS(5956), - [anon_sym_DOT] = ACTIONS(5954), - [anon_sym_DOT_STAR] = ACTIONS(5956), - [anon_sym_DASH_GT] = ACTIONS(5956), - [sym_comment] = ACTIONS(3), + [2228] = { + [sym_identifier] = ACTIONS(5685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5687), + [anon_sym_COMMA] = ACTIONS(5687), + [anon_sym_RPAREN] = ACTIONS(5687), + [anon_sym_LPAREN2] = ACTIONS(5687), + [anon_sym_DASH] = ACTIONS(5685), + [anon_sym_PLUS] = ACTIONS(5685), + [anon_sym_STAR] = ACTIONS(5687), + [anon_sym_SLASH] = ACTIONS(5685), + [anon_sym_PERCENT] = ACTIONS(5687), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_AMP_AMP] = ACTIONS(5687), + [anon_sym_PIPE] = ACTIONS(5685), + [anon_sym_CARET] = ACTIONS(5687), + [anon_sym_AMP] = ACTIONS(5685), + [anon_sym_EQ_EQ] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5687), + [anon_sym_GT] = ACTIONS(5685), + [anon_sym_GT_EQ] = ACTIONS(5687), + [anon_sym_LT_EQ] = ACTIONS(5685), + [anon_sym_LT] = ACTIONS(5685), + [anon_sym_LT_LT] = ACTIONS(5687), + [anon_sym_GT_GT] = ACTIONS(5687), + [anon_sym_SEMI] = ACTIONS(5687), + [anon_sym___extension__] = ACTIONS(5685), + [anon_sym___attribute__] = ACTIONS(5685), + [anon_sym___based] = ACTIONS(5685), + [anon_sym_LBRACE] = ACTIONS(5687), + [anon_sym_RBRACE] = ACTIONS(5687), + [anon_sym_signed] = ACTIONS(5685), + [anon_sym_unsigned] = ACTIONS(5685), + [anon_sym_long] = ACTIONS(5685), + [anon_sym_short] = ACTIONS(5685), + [anon_sym_LBRACK] = ACTIONS(5687), + [anon_sym_RBRACK] = ACTIONS(5687), + [anon_sym_const] = ACTIONS(5685), + [anon_sym_constexpr] = ACTIONS(5685), + [anon_sym_volatile] = ACTIONS(5685), + [anon_sym_restrict] = ACTIONS(5685), + [anon_sym___restrict__] = ACTIONS(5685), + [anon_sym__Atomic] = ACTIONS(5685), + [anon_sym__Noreturn] = ACTIONS(5685), + [anon_sym_noreturn] = ACTIONS(5685), + [anon_sym_mutable] = ACTIONS(5685), + [anon_sym_constinit] = ACTIONS(5685), + [anon_sym_consteval] = ACTIONS(5685), + [sym_primitive_type] = ACTIONS(5685), + [anon_sym_COLON] = ACTIONS(5687), + [anon_sym_QMARK] = ACTIONS(5687), + [anon_sym_LT_EQ_GT] = ACTIONS(5687), + [anon_sym_or] = ACTIONS(5685), + [anon_sym_and] = ACTIONS(5685), + [anon_sym_bitor] = ACTIONS(5685), + [anon_sym_xor] = ACTIONS(5685), + [anon_sym_bitand] = ACTIONS(5685), + [anon_sym_not_eq] = ACTIONS(5685), + [anon_sym_DASH_DASH] = ACTIONS(5687), + [anon_sym_PLUS_PLUS] = ACTIONS(5687), + [anon_sym_DOT] = ACTIONS(5685), + [anon_sym_DOT_STAR] = ACTIONS(5687), + [anon_sym_DASH_GT] = ACTIONS(5687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5685), + [anon_sym_decltype] = ACTIONS(5685), + [anon_sym_final] = ACTIONS(5685), + [anon_sym_override] = ACTIONS(5685), + [anon_sym_requires] = ACTIONS(5685), }, - [2403] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_friend] = ACTIONS(2144), - [anon_sym_public] = ACTIONS(2144), - [anon_sym_private] = ACTIONS(2144), - [anon_sym_protected] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), + [2229] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [aux_sym_preproc_else_token1] = ACTIONS(2186), + [aux_sym_preproc_elif_token1] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), }, - [2404] = { - [sym_identifier] = ACTIONS(5695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5697), - [anon_sym_COMMA] = ACTIONS(5697), - [anon_sym_RPAREN] = ACTIONS(5697), - [aux_sym_preproc_if_token2] = ACTIONS(5697), - [aux_sym_preproc_else_token1] = ACTIONS(5697), - [aux_sym_preproc_elif_token1] = ACTIONS(5695), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5697), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5697), - [anon_sym_LPAREN2] = ACTIONS(5697), - [anon_sym_DASH] = ACTIONS(5695), - [anon_sym_PLUS] = ACTIONS(5695), - [anon_sym_STAR] = ACTIONS(5695), - [anon_sym_SLASH] = ACTIONS(5695), - [anon_sym_PERCENT] = ACTIONS(5695), - [anon_sym_PIPE_PIPE] = ACTIONS(5697), - [anon_sym_AMP_AMP] = ACTIONS(5697), - [anon_sym_PIPE] = ACTIONS(5695), - [anon_sym_CARET] = ACTIONS(5695), - [anon_sym_AMP] = ACTIONS(5695), - [anon_sym_EQ_EQ] = ACTIONS(5697), - [anon_sym_BANG_EQ] = ACTIONS(5697), - [anon_sym_GT] = ACTIONS(5695), - [anon_sym_GT_EQ] = ACTIONS(5697), - [anon_sym_LT_EQ] = ACTIONS(5695), - [anon_sym_LT] = ACTIONS(5695), - [anon_sym_LT_LT] = ACTIONS(5695), - [anon_sym_GT_GT] = ACTIONS(5695), - [anon_sym_SEMI] = ACTIONS(5697), - [anon_sym___attribute__] = ACTIONS(5695), - [anon_sym_LBRACE] = ACTIONS(5697), - [anon_sym_RBRACE] = ACTIONS(5697), - [anon_sym_LBRACK] = ACTIONS(5697), - [anon_sym_RBRACK] = ACTIONS(5697), - [anon_sym_EQ] = ACTIONS(5695), - [anon_sym_COLON] = ACTIONS(5697), - [anon_sym_QMARK] = ACTIONS(5697), - [anon_sym_STAR_EQ] = ACTIONS(5697), - [anon_sym_SLASH_EQ] = ACTIONS(5697), - [anon_sym_PERCENT_EQ] = ACTIONS(5697), - [anon_sym_PLUS_EQ] = ACTIONS(5697), - [anon_sym_DASH_EQ] = ACTIONS(5697), - [anon_sym_LT_LT_EQ] = ACTIONS(5697), - [anon_sym_GT_GT_EQ] = ACTIONS(5697), - [anon_sym_AMP_EQ] = ACTIONS(5697), - [anon_sym_CARET_EQ] = ACTIONS(5697), - [anon_sym_PIPE_EQ] = ACTIONS(5697), - [anon_sym_and_eq] = ACTIONS(5695), - [anon_sym_or_eq] = ACTIONS(5695), - [anon_sym_xor_eq] = ACTIONS(5695), - [anon_sym_LT_EQ_GT] = ACTIONS(5697), - [anon_sym_or] = ACTIONS(5695), - [anon_sym_and] = ACTIONS(5695), - [anon_sym_bitor] = ACTIONS(5695), - [anon_sym_xor] = ACTIONS(5695), - [anon_sym_bitand] = ACTIONS(5695), - [anon_sym_not_eq] = ACTIONS(5695), - [anon_sym_DASH_DASH] = ACTIONS(5697), - [anon_sym_PLUS_PLUS] = ACTIONS(5697), - [anon_sym_DOT] = ACTIONS(5695), - [anon_sym_DOT_STAR] = ACTIONS(5697), - [anon_sym_DASH_GT] = ACTIONS(5697), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5695), - [anon_sym_decltype] = ACTIONS(5695), + [2230] = { + [sym_identifier] = ACTIONS(2136), + [aux_sym_preproc_def_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token2] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2136), + [aux_sym_preproc_else_token1] = ACTIONS(2136), + [aux_sym_preproc_elif_token1] = ACTIONS(2136), + [sym_preproc_directive] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym___extension__] = ACTIONS(2136), + [anon_sym_typedef] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym___attribute__] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2134), + [anon_sym___declspec] = ACTIONS(2136), + [anon_sym___based] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2136), + [anon_sym_unsigned] = ACTIONS(2136), + [anon_sym_long] = ACTIONS(2136), + [anon_sym_short] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_register] = ACTIONS(2136), + [anon_sym_inline] = ACTIONS(2136), + [anon_sym___inline] = ACTIONS(2136), + [anon_sym___inline__] = ACTIONS(2136), + [anon_sym___forceinline] = ACTIONS(2136), + [anon_sym_thread_local] = ACTIONS(2136), + [anon_sym___thread] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_constexpr] = ACTIONS(2136), + [anon_sym_volatile] = ACTIONS(2136), + [anon_sym_restrict] = ACTIONS(2136), + [anon_sym___restrict__] = ACTIONS(2136), + [anon_sym__Atomic] = ACTIONS(2136), + [anon_sym__Noreturn] = ACTIONS(2136), + [anon_sym_noreturn] = ACTIONS(2136), + [anon_sym_mutable] = ACTIONS(2136), + [anon_sym_constinit] = ACTIONS(2136), + [anon_sym_consteval] = ACTIONS(2136), + [sym_primitive_type] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_class] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2136), + [anon_sym_decltype] = ACTIONS(2136), + [anon_sym_virtual] = ACTIONS(2136), + [anon_sym_alignas] = ACTIONS(2136), + [anon_sym_explicit] = ACTIONS(2136), + [anon_sym_typename] = ACTIONS(2136), + [anon_sym_template] = ACTIONS(2136), + [anon_sym_operator] = ACTIONS(2136), + [anon_sym_friend] = ACTIONS(2136), + [anon_sym_public] = ACTIONS(2136), + [anon_sym_private] = ACTIONS(2136), + [anon_sym_protected] = ACTIONS(2136), + [anon_sym_using] = ACTIONS(2136), + [anon_sym_static_assert] = ACTIONS(2136), + [anon_sym_catch] = ACTIONS(2136), }, - [2405] = { - [sym_string_literal] = STATE(2259), - [sym_raw_string_literal] = STATE(2259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4139), - [anon_sym_COMMA] = ACTIONS(4139), - [anon_sym_RPAREN] = ACTIONS(4139), - [anon_sym_LPAREN2] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_SLASH] = ACTIONS(4147), - [anon_sym_PERCENT] = ACTIONS(4147), - [anon_sym_PIPE_PIPE] = ACTIONS(4139), - [anon_sym_AMP_AMP] = ACTIONS(4139), - [anon_sym_PIPE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_EQ_EQ] = ACTIONS(4139), - [anon_sym_BANG_EQ] = ACTIONS(4139), - [anon_sym_GT] = ACTIONS(4147), - [anon_sym_GT_EQ] = ACTIONS(4139), - [anon_sym_LT_EQ] = ACTIONS(4147), - [anon_sym_LT] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4147), - [anon_sym_GT_GT] = ACTIONS(4147), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_EQ] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_STAR_EQ] = ACTIONS(4139), - [anon_sym_SLASH_EQ] = ACTIONS(4139), - [anon_sym_PERCENT_EQ] = ACTIONS(4139), - [anon_sym_PLUS_EQ] = ACTIONS(4139), - [anon_sym_DASH_EQ] = ACTIONS(4139), - [anon_sym_LT_LT_EQ] = ACTIONS(4139), - [anon_sym_GT_GT_EQ] = ACTIONS(4139), - [anon_sym_AMP_EQ] = ACTIONS(4139), - [anon_sym_CARET_EQ] = ACTIONS(4139), - [anon_sym_PIPE_EQ] = ACTIONS(4139), - [anon_sym_and_eq] = ACTIONS(4147), - [anon_sym_or_eq] = ACTIONS(4147), - [anon_sym_xor_eq] = ACTIONS(4147), - [anon_sym_LT_EQ_GT] = ACTIONS(4139), - [anon_sym_or] = ACTIONS(4147), - [anon_sym_and] = ACTIONS(4147), - [anon_sym_bitor] = ACTIONS(4147), - [anon_sym_xor] = ACTIONS(4147), - [anon_sym_bitand] = ACTIONS(4147), - [anon_sym_not_eq] = ACTIONS(4147), - [anon_sym_DASH_DASH] = ACTIONS(4139), - [anon_sym_PLUS_PLUS] = ACTIONS(4139), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_DOT_STAR] = ACTIONS(4139), - [anon_sym_DASH_GT] = ACTIONS(4147), - [anon_sym_L_DQUOTE] = ACTIONS(5451), - [anon_sym_u_DQUOTE] = ACTIONS(5451), - [anon_sym_U_DQUOTE] = ACTIONS(5451), - [anon_sym_u8_DQUOTE] = ACTIONS(5451), - [anon_sym_DQUOTE] = ACTIONS(5451), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5453), - [anon_sym_LR_DQUOTE] = ACTIONS(5453), - [anon_sym_uR_DQUOTE] = ACTIONS(5453), - [anon_sym_UR_DQUOTE] = ACTIONS(5453), - [anon_sym_u8R_DQUOTE] = ACTIONS(5453), - [anon_sym_DASH_GT_STAR] = ACTIONS(4139), - [sym_literal_suffix] = ACTIONS(5958), + [2231] = { + [sym_identifier] = ACTIONS(5689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5691), + [anon_sym_COMMA] = ACTIONS(5691), + [anon_sym_RPAREN] = ACTIONS(5691), + [anon_sym_LPAREN2] = ACTIONS(5691), + [anon_sym_DASH] = ACTIONS(5689), + [anon_sym_PLUS] = ACTIONS(5689), + [anon_sym_STAR] = ACTIONS(5691), + [anon_sym_SLASH] = ACTIONS(5689), + [anon_sym_PERCENT] = ACTIONS(5691), + [anon_sym_PIPE_PIPE] = ACTIONS(5691), + [anon_sym_AMP_AMP] = ACTIONS(5691), + [anon_sym_PIPE] = ACTIONS(5689), + [anon_sym_CARET] = ACTIONS(5691), + [anon_sym_AMP] = ACTIONS(5689), + [anon_sym_EQ_EQ] = ACTIONS(5691), + [anon_sym_BANG_EQ] = ACTIONS(5691), + [anon_sym_GT] = ACTIONS(5689), + [anon_sym_GT_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5689), + [anon_sym_LT] = ACTIONS(5689), + [anon_sym_LT_LT] = ACTIONS(5691), + [anon_sym_GT_GT] = ACTIONS(5691), + [anon_sym_SEMI] = ACTIONS(5691), + [anon_sym___extension__] = ACTIONS(5689), + [anon_sym___attribute__] = ACTIONS(5689), + [anon_sym___based] = ACTIONS(5689), + [anon_sym_LBRACE] = ACTIONS(5691), + [anon_sym_RBRACE] = ACTIONS(5691), + [anon_sym_signed] = ACTIONS(5689), + [anon_sym_unsigned] = ACTIONS(5689), + [anon_sym_long] = ACTIONS(5689), + [anon_sym_short] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5691), + [anon_sym_RBRACK] = ACTIONS(5691), + [anon_sym_const] = ACTIONS(5689), + [anon_sym_constexpr] = ACTIONS(5689), + [anon_sym_volatile] = ACTIONS(5689), + [anon_sym_restrict] = ACTIONS(5689), + [anon_sym___restrict__] = ACTIONS(5689), + [anon_sym__Atomic] = ACTIONS(5689), + [anon_sym__Noreturn] = ACTIONS(5689), + [anon_sym_noreturn] = ACTIONS(5689), + [anon_sym_mutable] = ACTIONS(5689), + [anon_sym_constinit] = ACTIONS(5689), + [anon_sym_consteval] = ACTIONS(5689), + [sym_primitive_type] = ACTIONS(5689), + [anon_sym_COLON] = ACTIONS(5691), + [anon_sym_QMARK] = ACTIONS(5691), + [anon_sym_LT_EQ_GT] = ACTIONS(5691), + [anon_sym_or] = ACTIONS(5689), + [anon_sym_and] = ACTIONS(5689), + [anon_sym_bitor] = ACTIONS(5689), + [anon_sym_xor] = ACTIONS(5689), + [anon_sym_bitand] = ACTIONS(5689), + [anon_sym_not_eq] = ACTIONS(5689), + [anon_sym_DASH_DASH] = ACTIONS(5691), + [anon_sym_PLUS_PLUS] = ACTIONS(5691), + [anon_sym_DOT] = ACTIONS(5689), + [anon_sym_DOT_STAR] = ACTIONS(5691), + [anon_sym_DASH_GT] = ACTIONS(5691), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5689), + [anon_sym_decltype] = ACTIONS(5689), + [anon_sym_final] = ACTIONS(5689), + [anon_sym_override] = ACTIONS(5689), + [anon_sym_requires] = ACTIONS(5689), }, - [2406] = { - [sym_identifier] = ACTIONS(5253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [aux_sym_preproc_if_token2] = ACTIONS(5255), - [aux_sym_preproc_else_token1] = ACTIONS(5255), - [aux_sym_preproc_elif_token1] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5253), - [anon_sym_STAR] = ACTIONS(5253), - [anon_sym_SLASH] = ACTIONS(5253), - [anon_sym_PERCENT] = ACTIONS(5253), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5253), - [anon_sym_CARET] = ACTIONS(5253), - [anon_sym_AMP] = ACTIONS(5253), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5253), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5253), - [anon_sym_LT] = ACTIONS(5253), - [anon_sym_LT_LT] = ACTIONS(5253), - [anon_sym_GT_GT] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5253), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(5255), - [anon_sym_SLASH_EQ] = ACTIONS(5255), - [anon_sym_PERCENT_EQ] = ACTIONS(5255), - [anon_sym_PLUS_EQ] = ACTIONS(5255), - [anon_sym_DASH_EQ] = ACTIONS(5255), - [anon_sym_LT_LT_EQ] = ACTIONS(5255), - [anon_sym_GT_GT_EQ] = ACTIONS(5255), - [anon_sym_AMP_EQ] = ACTIONS(5255), - [anon_sym_CARET_EQ] = ACTIONS(5255), - [anon_sym_PIPE_EQ] = ACTIONS(5255), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5253), - [anon_sym_and] = ACTIONS(5253), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5253), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5253), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(5255), - [anon_sym_u_DQUOTE] = ACTIONS(5255), - [anon_sym_U_DQUOTE] = ACTIONS(5255), - [anon_sym_u8_DQUOTE] = ACTIONS(5255), - [anon_sym_DQUOTE] = ACTIONS(5255), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5255), - [anon_sym_LR_DQUOTE] = ACTIONS(5255), - [anon_sym_uR_DQUOTE] = ACTIONS(5255), - [anon_sym_UR_DQUOTE] = ACTIONS(5255), - [anon_sym_u8R_DQUOTE] = ACTIONS(5255), - [sym_literal_suffix] = ACTIONS(5253), + [2232] = { + [sym_string_literal] = STATE(2245), + [sym_raw_string_literal] = STATE(2245), + [aux_sym_concatenated_string_repeat1] = STATE(2245), + [sym_identifier] = ACTIONS(5693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_LPAREN2] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym___attribute__] = ACTIONS(5236), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5236), + [anon_sym_QMARK] = ACTIONS(5234), + [anon_sym_STAR_EQ] = ACTIONS(5234), + [anon_sym_SLASH_EQ] = ACTIONS(5234), + [anon_sym_PERCENT_EQ] = ACTIONS(5234), + [anon_sym_PLUS_EQ] = ACTIONS(5234), + [anon_sym_DASH_EQ] = ACTIONS(5234), + [anon_sym_LT_LT_EQ] = ACTIONS(5234), + [anon_sym_GT_GT_EQ] = ACTIONS(5234), + [anon_sym_AMP_EQ] = ACTIONS(5234), + [anon_sym_CARET_EQ] = ACTIONS(5234), + [anon_sym_PIPE_EQ] = ACTIONS(5234), + [anon_sym_and_eq] = ACTIONS(5236), + [anon_sym_or_eq] = ACTIONS(5236), + [anon_sym_xor_eq] = ACTIONS(5236), + [anon_sym_LT_EQ_GT] = ACTIONS(5234), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_and] = ACTIONS(5236), + [anon_sym_bitor] = ACTIONS(5236), + [anon_sym_xor] = ACTIONS(5236), + [anon_sym_bitand] = ACTIONS(5236), + [anon_sym_not_eq] = ACTIONS(5236), + [anon_sym_DASH_DASH] = ACTIONS(5234), + [anon_sym_PLUS_PLUS] = ACTIONS(5234), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_DOT_STAR] = ACTIONS(5234), + [anon_sym_DASH_GT] = ACTIONS(5234), + [anon_sym_L_DQUOTE] = ACTIONS(5631), + [anon_sym_u_DQUOTE] = ACTIONS(5631), + [anon_sym_U_DQUOTE] = ACTIONS(5631), + [anon_sym_u8_DQUOTE] = ACTIONS(5631), + [anon_sym_DQUOTE] = ACTIONS(5631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(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), + [sym_literal_suffix] = ACTIONS(5236), }, - [2407] = { - [sym_identifier] = ACTIONS(5257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5259), - [anon_sym_COMMA] = ACTIONS(5259), - [aux_sym_preproc_if_token2] = ACTIONS(5259), - [aux_sym_preproc_else_token1] = ACTIONS(5259), - [aux_sym_preproc_elif_token1] = ACTIONS(5259), - [anon_sym_LPAREN2] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5257), - [anon_sym_STAR] = ACTIONS(5257), - [anon_sym_SLASH] = ACTIONS(5257), - [anon_sym_PERCENT] = ACTIONS(5257), - [anon_sym_PIPE_PIPE] = ACTIONS(5259), - [anon_sym_AMP_AMP] = ACTIONS(5259), - [anon_sym_PIPE] = ACTIONS(5257), - [anon_sym_CARET] = ACTIONS(5257), - [anon_sym_AMP] = ACTIONS(5257), - [anon_sym_EQ_EQ] = ACTIONS(5259), - [anon_sym_BANG_EQ] = ACTIONS(5259), - [anon_sym_GT] = ACTIONS(5257), - [anon_sym_GT_EQ] = ACTIONS(5259), - [anon_sym_LT_EQ] = ACTIONS(5257), - [anon_sym_LT] = ACTIONS(5257), - [anon_sym_LT_LT] = ACTIONS(5257), - [anon_sym_GT_GT] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(5259), - [anon_sym_EQ] = ACTIONS(5257), - [anon_sym_QMARK] = ACTIONS(5259), - [anon_sym_STAR_EQ] = ACTIONS(5259), - [anon_sym_SLASH_EQ] = ACTIONS(5259), - [anon_sym_PERCENT_EQ] = ACTIONS(5259), - [anon_sym_PLUS_EQ] = ACTIONS(5259), - [anon_sym_DASH_EQ] = ACTIONS(5259), - [anon_sym_LT_LT_EQ] = ACTIONS(5259), - [anon_sym_GT_GT_EQ] = ACTIONS(5259), - [anon_sym_AMP_EQ] = ACTIONS(5259), - [anon_sym_CARET_EQ] = ACTIONS(5259), - [anon_sym_PIPE_EQ] = ACTIONS(5259), - [anon_sym_and_eq] = ACTIONS(5257), - [anon_sym_or_eq] = ACTIONS(5257), - [anon_sym_xor_eq] = ACTIONS(5257), - [anon_sym_LT_EQ_GT] = ACTIONS(5259), - [anon_sym_or] = ACTIONS(5257), - [anon_sym_and] = ACTIONS(5257), - [anon_sym_bitor] = ACTIONS(5257), - [anon_sym_xor] = ACTIONS(5257), - [anon_sym_bitand] = ACTIONS(5257), - [anon_sym_not_eq] = ACTIONS(5257), - [anon_sym_DASH_DASH] = ACTIONS(5259), - [anon_sym_PLUS_PLUS] = ACTIONS(5259), - [anon_sym_DOT] = ACTIONS(5257), - [anon_sym_DOT_STAR] = ACTIONS(5259), - [anon_sym_DASH_GT] = ACTIONS(5259), - [anon_sym_L_DQUOTE] = ACTIONS(5259), - [anon_sym_u_DQUOTE] = ACTIONS(5259), - [anon_sym_U_DQUOTE] = ACTIONS(5259), - [anon_sym_u8_DQUOTE] = ACTIONS(5259), - [anon_sym_DQUOTE] = ACTIONS(5259), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5259), - [anon_sym_LR_DQUOTE] = ACTIONS(5259), - [anon_sym_uR_DQUOTE] = ACTIONS(5259), - [anon_sym_UR_DQUOTE] = ACTIONS(5259), - [anon_sym_u8R_DQUOTE] = ACTIONS(5259), - [sym_literal_suffix] = ACTIONS(5257), + [2233] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4173), + [anon_sym_or_eq] = ACTIONS(4173), + [anon_sym_xor_eq] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), }, - [2408] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5537), - [anon_sym_COMMA] = ACTIONS(5537), - [anon_sym_RPAREN] = ACTIONS(5537), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_DASH] = ACTIONS(5535), - [anon_sym_PLUS] = ACTIONS(5535), - [anon_sym_STAR] = ACTIONS(5537), - [anon_sym_SLASH] = ACTIONS(5535), - [anon_sym_PERCENT] = ACTIONS(5537), - [anon_sym_PIPE_PIPE] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_PIPE] = ACTIONS(5535), - [anon_sym_CARET] = ACTIONS(5537), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_EQ_EQ] = ACTIONS(5537), - [anon_sym_BANG_EQ] = ACTIONS(5537), - [anon_sym_GT] = ACTIONS(5535), - [anon_sym_GT_EQ] = ACTIONS(5537), - [anon_sym_LT_EQ] = ACTIONS(5535), - [anon_sym_LT] = ACTIONS(5535), - [anon_sym_LT_LT] = ACTIONS(5537), - [anon_sym_GT_GT] = ACTIONS(5537), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___extension__] = ACTIONS(5537), - [anon_sym___attribute__] = ACTIONS(5537), - [anon_sym_LBRACE] = ACTIONS(5537), - [anon_sym_RBRACE] = ACTIONS(5537), - [anon_sym_signed] = ACTIONS(5960), - [anon_sym_unsigned] = ACTIONS(5960), - [anon_sym_long] = ACTIONS(5960), - [anon_sym_short] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_RBRACK] = ACTIONS(5537), - [anon_sym_const] = ACTIONS(5535), - [anon_sym_constexpr] = ACTIONS(5537), - [anon_sym_volatile] = ACTIONS(5537), - [anon_sym_restrict] = ACTIONS(5537), - [anon_sym___restrict__] = ACTIONS(5537), - [anon_sym__Atomic] = ACTIONS(5537), - [anon_sym__Noreturn] = ACTIONS(5537), - [anon_sym_noreturn] = ACTIONS(5537), - [anon_sym_mutable] = ACTIONS(5537), - [anon_sym_constinit] = ACTIONS(5537), - [anon_sym_consteval] = ACTIONS(5537), - [anon_sym_COLON] = ACTIONS(5537), - [anon_sym_QMARK] = ACTIONS(5537), - [anon_sym_LT_EQ_GT] = ACTIONS(5537), - [anon_sym_or] = ACTIONS(5537), - [anon_sym_and] = ACTIONS(5537), - [anon_sym_bitor] = ACTIONS(5537), - [anon_sym_xor] = ACTIONS(5537), - [anon_sym_bitand] = ACTIONS(5537), - [anon_sym_not_eq] = ACTIONS(5537), - [anon_sym_DASH_DASH] = ACTIONS(5537), - [anon_sym_PLUS_PLUS] = ACTIONS(5537), - [anon_sym_DOT] = ACTIONS(5535), - [anon_sym_DOT_STAR] = ACTIONS(5537), - [anon_sym_DASH_GT] = ACTIONS(5537), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5537), - [anon_sym_decltype] = ACTIONS(5537), - [anon_sym_final] = ACTIONS(5537), - [anon_sym_override] = ACTIONS(5537), - [anon_sym_requires] = ACTIONS(5537), + [2234] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [aux_sym_structured_binding_declarator_repeat1] = STATE(7977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(5695), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_RBRACK] = ACTIONS(5607), + [anon_sym_EQ] = ACTIONS(5610), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(5612), + [anon_sym_SLASH_EQ] = ACTIONS(5612), + [anon_sym_PERCENT_EQ] = ACTIONS(5612), + [anon_sym_PLUS_EQ] = ACTIONS(5612), + [anon_sym_DASH_EQ] = ACTIONS(5612), + [anon_sym_LT_LT_EQ] = ACTIONS(5612), + [anon_sym_GT_GT_EQ] = ACTIONS(5612), + [anon_sym_AMP_EQ] = ACTIONS(5612), + [anon_sym_CARET_EQ] = ACTIONS(5612), + [anon_sym_PIPE_EQ] = ACTIONS(5612), + [anon_sym_and_eq] = ACTIONS(5612), + [anon_sym_or_eq] = ACTIONS(5612), + [anon_sym_xor_eq] = ACTIONS(5612), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), }, - [2409] = { - [sym_identifier] = ACTIONS(5535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5537), - [anon_sym_COMMA] = ACTIONS(5537), - [anon_sym_RPAREN] = ACTIONS(5537), - [aux_sym_preproc_if_token2] = ACTIONS(5537), - [aux_sym_preproc_else_token1] = ACTIONS(5537), - [aux_sym_preproc_elif_token1] = ACTIONS(5535), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5537), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5537), - [anon_sym_LPAREN2] = ACTIONS(5537), - [anon_sym_DASH] = ACTIONS(5535), - [anon_sym_PLUS] = ACTIONS(5535), - [anon_sym_STAR] = ACTIONS(5535), - [anon_sym_SLASH] = ACTIONS(5535), - [anon_sym_PERCENT] = ACTIONS(5535), - [anon_sym_PIPE_PIPE] = ACTIONS(5537), - [anon_sym_AMP_AMP] = ACTIONS(5537), - [anon_sym_PIPE] = ACTIONS(5535), - [anon_sym_CARET] = ACTIONS(5535), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym_EQ_EQ] = ACTIONS(5537), - [anon_sym_BANG_EQ] = ACTIONS(5537), - [anon_sym_GT] = ACTIONS(5535), - [anon_sym_GT_EQ] = ACTIONS(5537), - [anon_sym_LT_EQ] = ACTIONS(5535), - [anon_sym_LT] = ACTIONS(5535), - [anon_sym_LT_LT] = ACTIONS(5535), - [anon_sym_GT_GT] = ACTIONS(5535), - [anon_sym_SEMI] = ACTIONS(5537), - [anon_sym___attribute__] = ACTIONS(5535), - [anon_sym_LBRACE] = ACTIONS(5537), - [anon_sym_RBRACE] = ACTIONS(5537), - [anon_sym_LBRACK] = ACTIONS(5537), - [anon_sym_RBRACK] = ACTIONS(5537), - [anon_sym_EQ] = ACTIONS(5535), - [anon_sym_COLON] = ACTIONS(5537), - [anon_sym_QMARK] = ACTIONS(5537), - [anon_sym_STAR_EQ] = ACTIONS(5537), - [anon_sym_SLASH_EQ] = ACTIONS(5537), - [anon_sym_PERCENT_EQ] = ACTIONS(5537), - [anon_sym_PLUS_EQ] = ACTIONS(5537), - [anon_sym_DASH_EQ] = ACTIONS(5537), - [anon_sym_LT_LT_EQ] = ACTIONS(5537), - [anon_sym_GT_GT_EQ] = ACTIONS(5537), - [anon_sym_AMP_EQ] = ACTIONS(5537), - [anon_sym_CARET_EQ] = ACTIONS(5537), - [anon_sym_PIPE_EQ] = ACTIONS(5537), - [anon_sym_and_eq] = ACTIONS(5535), - [anon_sym_or_eq] = ACTIONS(5535), - [anon_sym_xor_eq] = ACTIONS(5535), - [anon_sym_LT_EQ_GT] = ACTIONS(5537), - [anon_sym_or] = ACTIONS(5535), - [anon_sym_and] = ACTIONS(5535), - [anon_sym_bitor] = ACTIONS(5535), - [anon_sym_xor] = ACTIONS(5535), - [anon_sym_bitand] = ACTIONS(5535), - [anon_sym_not_eq] = ACTIONS(5535), - [anon_sym_DASH_DASH] = ACTIONS(5537), - [anon_sym_PLUS_PLUS] = ACTIONS(5537), - [anon_sym_DOT] = ACTIONS(5535), - [anon_sym_DOT_STAR] = ACTIONS(5537), - [anon_sym_DASH_GT] = ACTIONS(5537), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5535), - [anon_sym_decltype] = ACTIONS(5535), + [2235] = { + [sym_identifier] = ACTIONS(5698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5700), + [anon_sym_COMMA] = ACTIONS(5700), + [anon_sym_RPAREN] = ACTIONS(5700), + [anon_sym_LPAREN2] = ACTIONS(5700), + [anon_sym_DASH] = ACTIONS(5698), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_STAR] = ACTIONS(5700), + [anon_sym_SLASH] = ACTIONS(5698), + [anon_sym_PERCENT] = ACTIONS(5700), + [anon_sym_PIPE_PIPE] = ACTIONS(5700), + [anon_sym_AMP_AMP] = ACTIONS(5700), + [anon_sym_PIPE] = ACTIONS(5698), + [anon_sym_CARET] = ACTIONS(5700), + [anon_sym_AMP] = ACTIONS(5698), + [anon_sym_EQ_EQ] = ACTIONS(5700), + [anon_sym_BANG_EQ] = ACTIONS(5700), + [anon_sym_GT] = ACTIONS(5698), + [anon_sym_GT_EQ] = ACTIONS(5700), + [anon_sym_LT_EQ] = ACTIONS(5698), + [anon_sym_LT] = ACTIONS(5698), + [anon_sym_LT_LT] = ACTIONS(5700), + [anon_sym_GT_GT] = ACTIONS(5700), + [anon_sym_SEMI] = ACTIONS(5700), + [anon_sym___extension__] = ACTIONS(5698), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym___based] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(5700), + [anon_sym_RBRACE] = ACTIONS(5700), + [anon_sym_signed] = ACTIONS(5698), + [anon_sym_unsigned] = ACTIONS(5698), + [anon_sym_long] = ACTIONS(5698), + [anon_sym_short] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_RBRACK] = ACTIONS(5700), + [anon_sym_const] = ACTIONS(5698), + [anon_sym_constexpr] = ACTIONS(5698), + [anon_sym_volatile] = ACTIONS(5698), + [anon_sym_restrict] = ACTIONS(5698), + [anon_sym___restrict__] = ACTIONS(5698), + [anon_sym__Atomic] = ACTIONS(5698), + [anon_sym__Noreturn] = ACTIONS(5698), + [anon_sym_noreturn] = ACTIONS(5698), + [anon_sym_mutable] = ACTIONS(5698), + [anon_sym_constinit] = ACTIONS(5698), + [anon_sym_consteval] = ACTIONS(5698), + [sym_primitive_type] = ACTIONS(5698), + [anon_sym_COLON] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5700), + [anon_sym_LT_EQ_GT] = ACTIONS(5700), + [anon_sym_or] = ACTIONS(5698), + [anon_sym_and] = ACTIONS(5698), + [anon_sym_bitor] = ACTIONS(5698), + [anon_sym_xor] = ACTIONS(5698), + [anon_sym_bitand] = ACTIONS(5698), + [anon_sym_not_eq] = ACTIONS(5698), + [anon_sym_DASH_DASH] = ACTIONS(5700), + [anon_sym_PLUS_PLUS] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(5698), + [anon_sym_DOT_STAR] = ACTIONS(5700), + [anon_sym_DASH_GT] = ACTIONS(5700), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5698), + [anon_sym_decltype] = ACTIONS(5698), + [anon_sym_final] = ACTIONS(5698), + [anon_sym_override] = ACTIONS(5698), + [anon_sym_requires] = ACTIONS(5698), }, - [2410] = { - [sym_identifier] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), - [sym_preproc_directive] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_AMP_AMP] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym___extension__] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym___attribute__] = ACTIONS(2148), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2148), - [anon_sym___based] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2148), - [anon_sym_unsigned] = ACTIONS(2148), - [anon_sym_long] = ACTIONS(2148), - [anon_sym_short] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym___inline] = ACTIONS(2148), - [anon_sym___inline__] = ACTIONS(2148), - [anon_sym___forceinline] = ACTIONS(2148), - [anon_sym_thread_local] = ACTIONS(2148), - [anon_sym___thread] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_constexpr] = ACTIONS(2148), - [anon_sym_volatile] = ACTIONS(2148), - [anon_sym_restrict] = ACTIONS(2148), - [anon_sym___restrict__] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(2148), - [anon_sym__Noreturn] = ACTIONS(2148), - [anon_sym_noreturn] = ACTIONS(2148), - [anon_sym_mutable] = ACTIONS(2148), - [anon_sym_constinit] = ACTIONS(2148), - [anon_sym_consteval] = ACTIONS(2148), - [sym_primitive_type] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_class] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2148), - [anon_sym_decltype] = ACTIONS(2148), - [anon_sym_virtual] = ACTIONS(2148), - [anon_sym_alignas] = ACTIONS(2148), - [anon_sym_explicit] = ACTIONS(2148), - [anon_sym_typename] = ACTIONS(2148), - [anon_sym_template] = ACTIONS(2148), - [anon_sym_operator] = ACTIONS(2148), - [anon_sym_friend] = ACTIONS(2148), - [anon_sym_public] = ACTIONS(2148), - [anon_sym_private] = ACTIONS(2148), - [anon_sym_protected] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2148), - [anon_sym_static_assert] = ACTIONS(2148), - [anon_sym_catch] = ACTIONS(2148), + [2236] = { + [sym_string_literal] = STATE(2518), + [sym_template_argument_list] = STATE(4054), + [sym_raw_string_literal] = STATE(2518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_RPAREN] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5702), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(5705), + [anon_sym_or_eq] = ACTIONS(5705), + [anon_sym_xor_eq] = ACTIONS(5705), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4145), + [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_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4196), + [anon_sym_LR_DQUOTE] = ACTIONS(4196), + [anon_sym_uR_DQUOTE] = ACTIONS(4196), + [anon_sym_UR_DQUOTE] = ACTIONS(4196), + [anon_sym_u8R_DQUOTE] = ACTIONS(4196), + [anon_sym_DASH_GT_STAR] = ACTIONS(4137), }, - [2411] = { + [2237] = { [sym_identifier] = ACTIONS(5707), [anon_sym_DOT_DOT_DOT] = ACTIONS(5709), [anon_sym_COMMA] = ACTIONS(5709), [anon_sym_RPAREN] = ACTIONS(5709), - [aux_sym_preproc_if_token2] = ACTIONS(5709), - [aux_sym_preproc_else_token1] = ACTIONS(5709), - [aux_sym_preproc_elif_token1] = ACTIONS(5707), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5709), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5709), [anon_sym_LPAREN2] = ACTIONS(5709), [anon_sym_DASH] = ACTIONS(5707), [anon_sym_PLUS] = ACTIONS(5707), - [anon_sym_STAR] = ACTIONS(5707), + [anon_sym_STAR] = ACTIONS(5709), [anon_sym_SLASH] = ACTIONS(5707), - [anon_sym_PERCENT] = ACTIONS(5707), + [anon_sym_PERCENT] = ACTIONS(5709), [anon_sym_PIPE_PIPE] = ACTIONS(5709), [anon_sym_AMP_AMP] = ACTIONS(5709), [anon_sym_PIPE] = ACTIONS(5707), - [anon_sym_CARET] = ACTIONS(5707), + [anon_sym_CARET] = ACTIONS(5709), [anon_sym_AMP] = ACTIONS(5707), [anon_sym_EQ_EQ] = ACTIONS(5709), [anon_sym_BANG_EQ] = ACTIONS(5709), @@ -354634,30 +344091,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(5709), [anon_sym_LT_EQ] = ACTIONS(5707), [anon_sym_LT] = ACTIONS(5707), - [anon_sym_LT_LT] = ACTIONS(5707), - [anon_sym_GT_GT] = ACTIONS(5707), + [anon_sym_LT_LT] = ACTIONS(5709), + [anon_sym_GT_GT] = ACTIONS(5709), [anon_sym_SEMI] = ACTIONS(5709), + [anon_sym___extension__] = ACTIONS(5707), [anon_sym___attribute__] = ACTIONS(5707), + [anon_sym___based] = ACTIONS(5707), [anon_sym_LBRACE] = ACTIONS(5709), [anon_sym_RBRACE] = ACTIONS(5709), + [anon_sym_signed] = ACTIONS(5707), + [anon_sym_unsigned] = ACTIONS(5707), + [anon_sym_long] = ACTIONS(5707), + [anon_sym_short] = ACTIONS(5707), [anon_sym_LBRACK] = ACTIONS(5709), [anon_sym_RBRACK] = ACTIONS(5709), - [anon_sym_EQ] = ACTIONS(5707), + [anon_sym_const] = ACTIONS(5707), + [anon_sym_constexpr] = ACTIONS(5707), + [anon_sym_volatile] = ACTIONS(5707), + [anon_sym_restrict] = ACTIONS(5707), + [anon_sym___restrict__] = ACTIONS(5707), + [anon_sym__Atomic] = ACTIONS(5707), + [anon_sym__Noreturn] = ACTIONS(5707), + [anon_sym_noreturn] = ACTIONS(5707), + [anon_sym_mutable] = ACTIONS(5707), + [anon_sym_constinit] = ACTIONS(5707), + [anon_sym_consteval] = ACTIONS(5707), + [sym_primitive_type] = ACTIONS(5707), [anon_sym_COLON] = ACTIONS(5709), [anon_sym_QMARK] = ACTIONS(5709), - [anon_sym_STAR_EQ] = ACTIONS(5709), - [anon_sym_SLASH_EQ] = ACTIONS(5709), - [anon_sym_PERCENT_EQ] = ACTIONS(5709), - [anon_sym_PLUS_EQ] = ACTIONS(5709), - [anon_sym_DASH_EQ] = ACTIONS(5709), - [anon_sym_LT_LT_EQ] = ACTIONS(5709), - [anon_sym_GT_GT_EQ] = ACTIONS(5709), - [anon_sym_AMP_EQ] = ACTIONS(5709), - [anon_sym_CARET_EQ] = ACTIONS(5709), - [anon_sym_PIPE_EQ] = ACTIONS(5709), - [anon_sym_and_eq] = ACTIONS(5707), - [anon_sym_or_eq] = ACTIONS(5707), - [anon_sym_xor_eq] = ACTIONS(5707), [anon_sym_LT_EQ_GT] = ACTIONS(5709), [anon_sym_or] = ACTIONS(5707), [anon_sym_and] = ACTIONS(5707), @@ -354673,27 +344134,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5707), [anon_sym_decltype] = ACTIONS(5707), + [anon_sym_final] = ACTIONS(5707), + [anon_sym_override] = ACTIONS(5707), + [anon_sym_requires] = ACTIONS(5707), }, - [2412] = { + [2238] = { [sym_identifier] = ACTIONS(5711), [anon_sym_DOT_DOT_DOT] = ACTIONS(5713), [anon_sym_COMMA] = ACTIONS(5713), [anon_sym_RPAREN] = ACTIONS(5713), - [aux_sym_preproc_if_token2] = ACTIONS(5713), - [aux_sym_preproc_else_token1] = ACTIONS(5713), - [aux_sym_preproc_elif_token1] = ACTIONS(5711), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5713), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5713), [anon_sym_LPAREN2] = ACTIONS(5713), [anon_sym_DASH] = ACTIONS(5711), [anon_sym_PLUS] = ACTIONS(5711), - [anon_sym_STAR] = ACTIONS(5711), + [anon_sym_STAR] = ACTIONS(5713), [anon_sym_SLASH] = ACTIONS(5711), - [anon_sym_PERCENT] = ACTIONS(5711), + [anon_sym_PERCENT] = ACTIONS(5713), [anon_sym_PIPE_PIPE] = ACTIONS(5713), [anon_sym_AMP_AMP] = ACTIONS(5713), [anon_sym_PIPE] = ACTIONS(5711), - [anon_sym_CARET] = ACTIONS(5711), + [anon_sym_CARET] = ACTIONS(5713), [anon_sym_AMP] = ACTIONS(5711), [anon_sym_EQ_EQ] = ACTIONS(5713), [anon_sym_BANG_EQ] = ACTIONS(5713), @@ -354701,30 +344160,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(5713), [anon_sym_LT_EQ] = ACTIONS(5711), [anon_sym_LT] = ACTIONS(5711), - [anon_sym_LT_LT] = ACTIONS(5711), - [anon_sym_GT_GT] = ACTIONS(5711), + [anon_sym_LT_LT] = ACTIONS(5713), + [anon_sym_GT_GT] = ACTIONS(5713), [anon_sym_SEMI] = ACTIONS(5713), + [anon_sym___extension__] = ACTIONS(5711), [anon_sym___attribute__] = ACTIONS(5711), + [anon_sym___based] = ACTIONS(5711), [anon_sym_LBRACE] = ACTIONS(5713), [anon_sym_RBRACE] = ACTIONS(5713), + [anon_sym_signed] = ACTIONS(5711), + [anon_sym_unsigned] = ACTIONS(5711), + [anon_sym_long] = ACTIONS(5711), + [anon_sym_short] = ACTIONS(5711), [anon_sym_LBRACK] = ACTIONS(5713), [anon_sym_RBRACK] = ACTIONS(5713), - [anon_sym_EQ] = ACTIONS(5711), + [anon_sym_const] = ACTIONS(5711), + [anon_sym_constexpr] = ACTIONS(5711), + [anon_sym_volatile] = ACTIONS(5711), + [anon_sym_restrict] = ACTIONS(5711), + [anon_sym___restrict__] = ACTIONS(5711), + [anon_sym__Atomic] = ACTIONS(5711), + [anon_sym__Noreturn] = ACTIONS(5711), + [anon_sym_noreturn] = ACTIONS(5711), + [anon_sym_mutable] = ACTIONS(5711), + [anon_sym_constinit] = ACTIONS(5711), + [anon_sym_consteval] = ACTIONS(5711), + [sym_primitive_type] = ACTIONS(5711), [anon_sym_COLON] = ACTIONS(5713), [anon_sym_QMARK] = ACTIONS(5713), - [anon_sym_STAR_EQ] = ACTIONS(5713), - [anon_sym_SLASH_EQ] = ACTIONS(5713), - [anon_sym_PERCENT_EQ] = ACTIONS(5713), - [anon_sym_PLUS_EQ] = ACTIONS(5713), - [anon_sym_DASH_EQ] = ACTIONS(5713), - [anon_sym_LT_LT_EQ] = ACTIONS(5713), - [anon_sym_GT_GT_EQ] = ACTIONS(5713), - [anon_sym_AMP_EQ] = ACTIONS(5713), - [anon_sym_CARET_EQ] = ACTIONS(5713), - [anon_sym_PIPE_EQ] = ACTIONS(5713), - [anon_sym_and_eq] = ACTIONS(5711), - [anon_sym_or_eq] = ACTIONS(5711), - [anon_sym_xor_eq] = ACTIONS(5711), [anon_sym_LT_EQ_GT] = ACTIONS(5713), [anon_sym_or] = ACTIONS(5711), [anon_sym_and] = ACTIONS(5711), @@ -354740,4245 +344203,19043 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5711), [anon_sym_decltype] = ACTIONS(5711), + [anon_sym_final] = ACTIONS(5711), + [anon_sym_override] = ACTIONS(5711), + [anon_sym_requires] = ACTIONS(5711), }, - [2413] = { - [sym_identifier] = ACTIONS(5741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5743), - [anon_sym_COMMA] = ACTIONS(5743), - [anon_sym_RPAREN] = ACTIONS(5743), - [aux_sym_preproc_if_token2] = ACTIONS(5743), - [aux_sym_preproc_else_token1] = ACTIONS(5743), - [aux_sym_preproc_elif_token1] = ACTIONS(5741), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5743), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5743), - [anon_sym_LPAREN2] = ACTIONS(5743), - [anon_sym_DASH] = ACTIONS(5741), - [anon_sym_PLUS] = ACTIONS(5741), - [anon_sym_STAR] = ACTIONS(5741), - [anon_sym_SLASH] = ACTIONS(5741), - [anon_sym_PERCENT] = ACTIONS(5741), - [anon_sym_PIPE_PIPE] = ACTIONS(5743), - [anon_sym_AMP_AMP] = ACTIONS(5743), - [anon_sym_PIPE] = ACTIONS(5741), - [anon_sym_CARET] = ACTIONS(5741), - [anon_sym_AMP] = ACTIONS(5741), - [anon_sym_EQ_EQ] = ACTIONS(5743), - [anon_sym_BANG_EQ] = ACTIONS(5743), - [anon_sym_GT] = ACTIONS(5741), - [anon_sym_GT_EQ] = ACTIONS(5743), - [anon_sym_LT_EQ] = ACTIONS(5741), - [anon_sym_LT] = ACTIONS(5741), - [anon_sym_LT_LT] = ACTIONS(5741), - [anon_sym_GT_GT] = ACTIONS(5741), - [anon_sym_SEMI] = ACTIONS(5743), - [anon_sym___attribute__] = ACTIONS(5741), - [anon_sym_LBRACE] = ACTIONS(5743), - [anon_sym_RBRACE] = ACTIONS(5743), - [anon_sym_LBRACK] = ACTIONS(5743), - [anon_sym_RBRACK] = ACTIONS(5743), - [anon_sym_EQ] = ACTIONS(5741), - [anon_sym_COLON] = ACTIONS(5743), - [anon_sym_QMARK] = ACTIONS(5743), - [anon_sym_STAR_EQ] = ACTIONS(5743), - [anon_sym_SLASH_EQ] = ACTIONS(5743), - [anon_sym_PERCENT_EQ] = ACTIONS(5743), - [anon_sym_PLUS_EQ] = ACTIONS(5743), - [anon_sym_DASH_EQ] = ACTIONS(5743), - [anon_sym_LT_LT_EQ] = ACTIONS(5743), - [anon_sym_GT_GT_EQ] = ACTIONS(5743), - [anon_sym_AMP_EQ] = ACTIONS(5743), - [anon_sym_CARET_EQ] = ACTIONS(5743), - [anon_sym_PIPE_EQ] = ACTIONS(5743), - [anon_sym_and_eq] = ACTIONS(5741), - [anon_sym_or_eq] = ACTIONS(5741), - [anon_sym_xor_eq] = ACTIONS(5741), - [anon_sym_LT_EQ_GT] = ACTIONS(5743), - [anon_sym_or] = ACTIONS(5741), - [anon_sym_and] = ACTIONS(5741), - [anon_sym_bitor] = ACTIONS(5741), - [anon_sym_xor] = ACTIONS(5741), - [anon_sym_bitand] = ACTIONS(5741), - [anon_sym_not_eq] = ACTIONS(5741), - [anon_sym_DASH_DASH] = ACTIONS(5743), - [anon_sym_PLUS_PLUS] = ACTIONS(5743), - [anon_sym_DOT] = ACTIONS(5741), - [anon_sym_DOT_STAR] = ACTIONS(5743), - [anon_sym_DASH_GT] = ACTIONS(5743), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5741), - [anon_sym_decltype] = ACTIONS(5741), + [2239] = { + [sym_string_literal] = STATE(2239), + [sym_raw_string_literal] = STATE(2239), + [aux_sym_concatenated_string_repeat1] = STATE(2239), + [sym_identifier] = ACTIONS(5715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5208), + [anon_sym_COMMA] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5208), + [anon_sym_LPAREN2] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_PERCENT] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5210), + [anon_sym_EQ_EQ] = ACTIONS(5208), + [anon_sym_BANG_EQ] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5208), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5210), + [anon_sym_GT_GT] = ACTIONS(5210), + [anon_sym_LBRACK] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5210), + [anon_sym_QMARK] = ACTIONS(5208), + [anon_sym_STAR_EQ] = ACTIONS(5208), + [anon_sym_SLASH_EQ] = ACTIONS(5208), + [anon_sym_PERCENT_EQ] = ACTIONS(5208), + [anon_sym_PLUS_EQ] = ACTIONS(5208), + [anon_sym_DASH_EQ] = ACTIONS(5208), + [anon_sym_LT_LT_EQ] = ACTIONS(5208), + [anon_sym_GT_GT_EQ] = ACTIONS(5208), + [anon_sym_AMP_EQ] = ACTIONS(5208), + [anon_sym_CARET_EQ] = ACTIONS(5208), + [anon_sym_PIPE_EQ] = ACTIONS(5208), + [anon_sym_and_eq] = ACTIONS(5210), + [anon_sym_or_eq] = ACTIONS(5210), + [anon_sym_xor_eq] = ACTIONS(5210), + [anon_sym_LT_EQ_GT] = ACTIONS(5208), + [anon_sym_or] = ACTIONS(5210), + [anon_sym_and] = ACTIONS(5210), + [anon_sym_bitor] = ACTIONS(5210), + [anon_sym_xor] = ACTIONS(5210), + [anon_sym_bitand] = ACTIONS(5210), + [anon_sym_not_eq] = ACTIONS(5210), + [anon_sym_DASH_DASH] = ACTIONS(5208), + [anon_sym_PLUS_PLUS] = ACTIONS(5208), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DOT_STAR] = ACTIONS(5208), + [anon_sym_DASH_GT] = ACTIONS(5210), + [anon_sym_L_DQUOTE] = ACTIONS(5718), + [anon_sym_u_DQUOTE] = ACTIONS(5718), + [anon_sym_U_DQUOTE] = ACTIONS(5718), + [anon_sym_u8_DQUOTE] = ACTIONS(5718), + [anon_sym_DQUOTE] = ACTIONS(5718), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5721), + [anon_sym_LR_DQUOTE] = ACTIONS(5721), + [anon_sym_uR_DQUOTE] = ACTIONS(5721), + [anon_sym_UR_DQUOTE] = ACTIONS(5721), + [anon_sym_u8R_DQUOTE] = ACTIONS(5721), + [anon_sym_DASH_GT_STAR] = ACTIONS(5208), + [sym_literal_suffix] = ACTIONS(5210), }, - [2414] = { - [sym_identifier] = ACTIONS(5745), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5747), - [anon_sym_COMMA] = ACTIONS(5747), - [anon_sym_RPAREN] = ACTIONS(5747), - [aux_sym_preproc_if_token2] = ACTIONS(5747), - [aux_sym_preproc_else_token1] = ACTIONS(5747), - [aux_sym_preproc_elif_token1] = ACTIONS(5745), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5747), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5747), - [anon_sym_LPAREN2] = ACTIONS(5747), - [anon_sym_DASH] = ACTIONS(5745), - [anon_sym_PLUS] = ACTIONS(5745), - [anon_sym_STAR] = ACTIONS(5745), - [anon_sym_SLASH] = ACTIONS(5745), - [anon_sym_PERCENT] = ACTIONS(5745), - [anon_sym_PIPE_PIPE] = ACTIONS(5747), - [anon_sym_AMP_AMP] = ACTIONS(5747), - [anon_sym_PIPE] = ACTIONS(5745), - [anon_sym_CARET] = ACTIONS(5745), - [anon_sym_AMP] = ACTIONS(5745), - [anon_sym_EQ_EQ] = ACTIONS(5747), - [anon_sym_BANG_EQ] = ACTIONS(5747), - [anon_sym_GT] = ACTIONS(5745), - [anon_sym_GT_EQ] = ACTIONS(5747), - [anon_sym_LT_EQ] = ACTIONS(5745), - [anon_sym_LT] = ACTIONS(5745), - [anon_sym_LT_LT] = ACTIONS(5745), - [anon_sym_GT_GT] = ACTIONS(5745), - [anon_sym_SEMI] = ACTIONS(5747), - [anon_sym___attribute__] = ACTIONS(5745), - [anon_sym_LBRACE] = ACTIONS(5747), - [anon_sym_RBRACE] = ACTIONS(5747), - [anon_sym_LBRACK] = ACTIONS(5747), - [anon_sym_RBRACK] = ACTIONS(5747), - [anon_sym_EQ] = ACTIONS(5745), - [anon_sym_COLON] = ACTIONS(5747), - [anon_sym_QMARK] = ACTIONS(5747), - [anon_sym_STAR_EQ] = ACTIONS(5747), - [anon_sym_SLASH_EQ] = ACTIONS(5747), - [anon_sym_PERCENT_EQ] = ACTIONS(5747), - [anon_sym_PLUS_EQ] = ACTIONS(5747), - [anon_sym_DASH_EQ] = ACTIONS(5747), - [anon_sym_LT_LT_EQ] = ACTIONS(5747), - [anon_sym_GT_GT_EQ] = ACTIONS(5747), - [anon_sym_AMP_EQ] = ACTIONS(5747), - [anon_sym_CARET_EQ] = ACTIONS(5747), - [anon_sym_PIPE_EQ] = ACTIONS(5747), - [anon_sym_and_eq] = ACTIONS(5745), - [anon_sym_or_eq] = ACTIONS(5745), - [anon_sym_xor_eq] = ACTIONS(5745), - [anon_sym_LT_EQ_GT] = ACTIONS(5747), - [anon_sym_or] = ACTIONS(5745), - [anon_sym_and] = ACTIONS(5745), - [anon_sym_bitor] = ACTIONS(5745), - [anon_sym_xor] = ACTIONS(5745), - [anon_sym_bitand] = ACTIONS(5745), - [anon_sym_not_eq] = ACTIONS(5745), - [anon_sym_DASH_DASH] = ACTIONS(5747), - [anon_sym_PLUS_PLUS] = ACTIONS(5747), - [anon_sym_DOT] = ACTIONS(5745), - [anon_sym_DOT_STAR] = ACTIONS(5747), - [anon_sym_DASH_GT] = ACTIONS(5747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5745), - [anon_sym_decltype] = ACTIONS(5745), + [2240] = { + [sym_identifier] = ACTIONS(5724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5726), + [anon_sym_COMMA] = ACTIONS(5726), + [anon_sym_RPAREN] = ACTIONS(5726), + [anon_sym_LPAREN2] = ACTIONS(5726), + [anon_sym_DASH] = ACTIONS(5724), + [anon_sym_PLUS] = ACTIONS(5724), + [anon_sym_STAR] = ACTIONS(5726), + [anon_sym_SLASH] = ACTIONS(5724), + [anon_sym_PERCENT] = ACTIONS(5726), + [anon_sym_PIPE_PIPE] = ACTIONS(5726), + [anon_sym_AMP_AMP] = ACTIONS(5726), + [anon_sym_PIPE] = ACTIONS(5724), + [anon_sym_CARET] = ACTIONS(5726), + [anon_sym_AMP] = ACTIONS(5724), + [anon_sym_EQ_EQ] = ACTIONS(5726), + [anon_sym_BANG_EQ] = ACTIONS(5726), + [anon_sym_GT] = ACTIONS(5724), + [anon_sym_GT_EQ] = ACTIONS(5726), + [anon_sym_LT_EQ] = ACTIONS(5724), + [anon_sym_LT] = ACTIONS(5724), + [anon_sym_LT_LT] = ACTIONS(5726), + [anon_sym_GT_GT] = ACTIONS(5726), + [anon_sym_SEMI] = ACTIONS(5726), + [anon_sym___extension__] = ACTIONS(5724), + [anon_sym___attribute__] = ACTIONS(5724), + [anon_sym___based] = ACTIONS(5724), + [anon_sym_LBRACE] = ACTIONS(5726), + [anon_sym_RBRACE] = ACTIONS(5726), + [anon_sym_signed] = ACTIONS(5724), + [anon_sym_unsigned] = ACTIONS(5724), + [anon_sym_long] = ACTIONS(5724), + [anon_sym_short] = ACTIONS(5724), + [anon_sym_LBRACK] = ACTIONS(5726), + [anon_sym_RBRACK] = ACTIONS(5726), + [anon_sym_const] = ACTIONS(5724), + [anon_sym_constexpr] = ACTIONS(5724), + [anon_sym_volatile] = ACTIONS(5724), + [anon_sym_restrict] = ACTIONS(5724), + [anon_sym___restrict__] = ACTIONS(5724), + [anon_sym__Atomic] = ACTIONS(5724), + [anon_sym__Noreturn] = ACTIONS(5724), + [anon_sym_noreturn] = ACTIONS(5724), + [anon_sym_mutable] = ACTIONS(5724), + [anon_sym_constinit] = ACTIONS(5724), + [anon_sym_consteval] = ACTIONS(5724), + [sym_primitive_type] = ACTIONS(5724), + [anon_sym_COLON] = ACTIONS(5726), + [anon_sym_QMARK] = ACTIONS(5726), + [anon_sym_LT_EQ_GT] = ACTIONS(5726), + [anon_sym_or] = ACTIONS(5724), + [anon_sym_and] = ACTIONS(5724), + [anon_sym_bitor] = ACTIONS(5724), + [anon_sym_xor] = ACTIONS(5724), + [anon_sym_bitand] = ACTIONS(5724), + [anon_sym_not_eq] = ACTIONS(5724), + [anon_sym_DASH_DASH] = ACTIONS(5726), + [anon_sym_PLUS_PLUS] = ACTIONS(5726), + [anon_sym_DOT] = ACTIONS(5724), + [anon_sym_DOT_STAR] = ACTIONS(5726), + [anon_sym_DASH_GT] = ACTIONS(5726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5724), + [anon_sym_decltype] = ACTIONS(5724), + [anon_sym_final] = ACTIONS(5724), + [anon_sym_override] = ACTIONS(5724), + [anon_sym_requires] = ACTIONS(5724), }, - [2415] = { - [sym_identifier] = ACTIONS(5962), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5964), - [anon_sym_COMMA] = ACTIONS(5964), - [anon_sym_RPAREN] = ACTIONS(5964), - [aux_sym_preproc_if_token2] = ACTIONS(5964), - [aux_sym_preproc_else_token1] = ACTIONS(5964), - [aux_sym_preproc_elif_token1] = ACTIONS(5962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5964), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5964), - [anon_sym_LPAREN2] = ACTIONS(5964), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_PERCENT] = ACTIONS(5962), - [anon_sym_PIPE_PIPE] = ACTIONS(5964), - [anon_sym_AMP_AMP] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_AMP] = ACTIONS(5962), - [anon_sym_EQ_EQ] = ACTIONS(5964), - [anon_sym_BANG_EQ] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5962), - [anon_sym_GT_EQ] = ACTIONS(5964), - [anon_sym_LT_EQ] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5962), - [anon_sym_LT_LT] = ACTIONS(5962), - [anon_sym_GT_GT] = ACTIONS(5962), - [anon_sym_SEMI] = ACTIONS(5964), - [anon_sym___attribute__] = ACTIONS(5962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5964), - [anon_sym_LBRACE] = ACTIONS(5964), - [anon_sym_RBRACE] = ACTIONS(5964), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5964), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_QMARK] = ACTIONS(5964), - [anon_sym_STAR_EQ] = ACTIONS(5964), - [anon_sym_SLASH_EQ] = ACTIONS(5964), - [anon_sym_PERCENT_EQ] = ACTIONS(5964), - [anon_sym_PLUS_EQ] = ACTIONS(5964), - [anon_sym_DASH_EQ] = ACTIONS(5964), - [anon_sym_LT_LT_EQ] = ACTIONS(5964), - [anon_sym_GT_GT_EQ] = ACTIONS(5964), - [anon_sym_AMP_EQ] = ACTIONS(5964), - [anon_sym_CARET_EQ] = ACTIONS(5964), - [anon_sym_PIPE_EQ] = ACTIONS(5964), - [anon_sym_and_eq] = ACTIONS(5962), - [anon_sym_or_eq] = ACTIONS(5962), - [anon_sym_xor_eq] = ACTIONS(5962), - [anon_sym_LT_EQ_GT] = ACTIONS(5964), - [anon_sym_or] = ACTIONS(5962), - [anon_sym_and] = ACTIONS(5962), - [anon_sym_bitor] = ACTIONS(5962), - [anon_sym_xor] = ACTIONS(5962), - [anon_sym_bitand] = ACTIONS(5962), - [anon_sym_not_eq] = ACTIONS(5962), - [anon_sym_DASH_DASH] = ACTIONS(5964), - [anon_sym_PLUS_PLUS] = ACTIONS(5964), - [anon_sym_DOT] = ACTIONS(5962), - [anon_sym_DOT_STAR] = ACTIONS(5964), - [anon_sym_DASH_GT] = ACTIONS(5964), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5962), + [2241] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(5728), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4173), + [anon_sym_or_eq] = ACTIONS(4173), + [anon_sym_xor_eq] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), }, - [2416] = { - [sym_identifier] = ACTIONS(5562), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5564), - [anon_sym_COMMA] = ACTIONS(5564), - [anon_sym_RPAREN] = ACTIONS(5564), - [aux_sym_preproc_if_token2] = ACTIONS(5564), - [aux_sym_preproc_else_token1] = ACTIONS(5564), - [aux_sym_preproc_elif_token1] = ACTIONS(5562), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5564), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5564), - [anon_sym_LPAREN2] = ACTIONS(5564), - [anon_sym_DASH] = ACTIONS(5562), - [anon_sym_PLUS] = ACTIONS(5562), - [anon_sym_STAR] = ACTIONS(5562), - [anon_sym_SLASH] = ACTIONS(5562), - [anon_sym_PERCENT] = ACTIONS(5562), - [anon_sym_PIPE_PIPE] = ACTIONS(5564), - [anon_sym_AMP_AMP] = ACTIONS(5564), - [anon_sym_PIPE] = ACTIONS(5562), - [anon_sym_CARET] = ACTIONS(5562), - [anon_sym_AMP] = ACTIONS(5562), - [anon_sym_EQ_EQ] = ACTIONS(5564), - [anon_sym_BANG_EQ] = ACTIONS(5564), - [anon_sym_GT] = ACTIONS(5562), - [anon_sym_GT_EQ] = ACTIONS(5564), - [anon_sym_LT_EQ] = ACTIONS(5562), - [anon_sym_LT] = ACTIONS(5562), - [anon_sym_LT_LT] = ACTIONS(5562), - [anon_sym_GT_GT] = ACTIONS(5562), - [anon_sym_SEMI] = ACTIONS(5564), - [anon_sym___attribute__] = ACTIONS(5562), - [anon_sym_LBRACE] = ACTIONS(5564), - [anon_sym_RBRACE] = ACTIONS(5564), - [anon_sym_LBRACK] = ACTIONS(5564), - [anon_sym_RBRACK] = ACTIONS(5564), - [anon_sym_EQ] = ACTIONS(5562), - [anon_sym_COLON] = ACTIONS(5564), - [anon_sym_QMARK] = ACTIONS(5564), - [anon_sym_STAR_EQ] = ACTIONS(5564), - [anon_sym_SLASH_EQ] = ACTIONS(5564), - [anon_sym_PERCENT_EQ] = ACTIONS(5564), - [anon_sym_PLUS_EQ] = ACTIONS(5564), - [anon_sym_DASH_EQ] = ACTIONS(5564), - [anon_sym_LT_LT_EQ] = ACTIONS(5564), - [anon_sym_GT_GT_EQ] = ACTIONS(5564), - [anon_sym_AMP_EQ] = ACTIONS(5564), - [anon_sym_CARET_EQ] = ACTIONS(5564), - [anon_sym_PIPE_EQ] = ACTIONS(5564), - [anon_sym_and_eq] = ACTIONS(5562), - [anon_sym_or_eq] = ACTIONS(5562), - [anon_sym_xor_eq] = ACTIONS(5562), - [anon_sym_LT_EQ_GT] = ACTIONS(5564), - [anon_sym_or] = ACTIONS(5562), - [anon_sym_and] = ACTIONS(5562), - [anon_sym_bitor] = ACTIONS(5562), - [anon_sym_xor] = ACTIONS(5562), - [anon_sym_bitand] = ACTIONS(5562), - [anon_sym_not_eq] = ACTIONS(5562), - [anon_sym_DASH_DASH] = ACTIONS(5564), - [anon_sym_PLUS_PLUS] = ACTIONS(5564), - [anon_sym_DOT] = ACTIONS(5562), - [anon_sym_DOT_STAR] = ACTIONS(5564), - [anon_sym_DASH_GT] = ACTIONS(5564), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5562), - [anon_sym_decltype] = ACTIONS(5562), - }, - [2417] = { - [sym_identifier] = ACTIONS(2849), - [aux_sym_preproc_def_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token1] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), - [sym_preproc_directive] = ACTIONS(2849), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2849), - [anon_sym___extension__] = ACTIONS(2849), - [anon_sym_typedef] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), - [anon_sym___declspec] = ACTIONS(2849), - [anon_sym___based] = ACTIONS(2849), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_signed] = ACTIONS(2849), - [anon_sym_unsigned] = ACTIONS(2849), - [anon_sym_long] = ACTIONS(2849), - [anon_sym_short] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_register] = ACTIONS(2849), - [anon_sym_inline] = ACTIONS(2849), - [anon_sym___inline] = ACTIONS(2849), - [anon_sym___inline__] = ACTIONS(2849), - [anon_sym___forceinline] = ACTIONS(2849), - [anon_sym_thread_local] = ACTIONS(2849), - [anon_sym___thread] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_constexpr] = ACTIONS(2849), - [anon_sym_volatile] = ACTIONS(2849), - [anon_sym_restrict] = ACTIONS(2849), - [anon_sym___restrict__] = ACTIONS(2849), - [anon_sym__Atomic] = ACTIONS(2849), - [anon_sym__Noreturn] = ACTIONS(2849), - [anon_sym_noreturn] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [sym_primitive_type] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_class] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2849), - [anon_sym_decltype] = ACTIONS(2849), - [anon_sym_virtual] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym_explicit] = ACTIONS(2849), - [anon_sym_typename] = ACTIONS(2849), - [anon_sym_template] = ACTIONS(2849), - [anon_sym_operator] = ACTIONS(2849), - [anon_sym_friend] = ACTIONS(2849), - [anon_sym_public] = ACTIONS(2849), - [anon_sym_private] = ACTIONS(2849), - [anon_sym_protected] = ACTIONS(2849), - [anon_sym_using] = ACTIONS(2849), - [anon_sym_static_assert] = ACTIONS(2849), - [anon_sym_catch] = ACTIONS(2849), - }, - [2418] = { - [sym_identifier] = ACTIONS(2849), - [aux_sym_preproc_def_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token1] = ACTIONS(2849), - [aux_sym_preproc_if_token2] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), - [sym_preproc_directive] = ACTIONS(2849), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2849), - [anon_sym___extension__] = ACTIONS(2849), - [anon_sym_typedef] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym___attribute__] = ACTIONS(2849), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), - [anon_sym___declspec] = ACTIONS(2849), - [anon_sym___based] = ACTIONS(2849), - [anon_sym_signed] = ACTIONS(2849), - [anon_sym_unsigned] = ACTIONS(2849), - [anon_sym_long] = ACTIONS(2849), - [anon_sym_short] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_register] = ACTIONS(2849), - [anon_sym_inline] = ACTIONS(2849), - [anon_sym___inline] = ACTIONS(2849), - [anon_sym___inline__] = ACTIONS(2849), - [anon_sym___forceinline] = ACTIONS(2849), - [anon_sym_thread_local] = ACTIONS(2849), - [anon_sym___thread] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_constexpr] = ACTIONS(2849), - [anon_sym_volatile] = ACTIONS(2849), - [anon_sym_restrict] = ACTIONS(2849), - [anon_sym___restrict__] = ACTIONS(2849), - [anon_sym__Atomic] = ACTIONS(2849), - [anon_sym__Noreturn] = ACTIONS(2849), - [anon_sym_noreturn] = ACTIONS(2849), - [anon_sym_mutable] = ACTIONS(2849), - [anon_sym_constinit] = ACTIONS(2849), - [anon_sym_consteval] = ACTIONS(2849), - [sym_primitive_type] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_class] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2849), - [anon_sym_decltype] = ACTIONS(2849), - [anon_sym_virtual] = ACTIONS(2849), - [anon_sym_alignas] = ACTIONS(2849), - [anon_sym_explicit] = ACTIONS(2849), - [anon_sym_typename] = ACTIONS(2849), - [anon_sym_template] = ACTIONS(2849), - [anon_sym_operator] = ACTIONS(2849), - [anon_sym_friend] = ACTIONS(2849), - [anon_sym_public] = ACTIONS(2849), - [anon_sym_private] = ACTIONS(2849), - [anon_sym_protected] = ACTIONS(2849), - [anon_sym_using] = ACTIONS(2849), - [anon_sym_static_assert] = ACTIONS(2849), - [anon_sym_catch] = ACTIONS(2849), - }, - [2419] = { - [sym_argument_list] = STATE(2789), - [sym_initializer_list] = STATE(2789), - [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(5966), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5968), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5968), - [anon_sym_LPAREN2] = ACTIONS(5324), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5966), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_PERCENT] = ACTIONS(5966), - [anon_sym_PIPE_PIPE] = ACTIONS(5968), - [anon_sym_AMP_AMP] = ACTIONS(5968), - [anon_sym_PIPE] = ACTIONS(5966), - [anon_sym_CARET] = ACTIONS(5966), - [anon_sym_AMP] = ACTIONS(5966), - [anon_sym_EQ_EQ] = ACTIONS(5968), - [anon_sym_BANG_EQ] = ACTIONS(5968), - [anon_sym_GT] = ACTIONS(5966), - [anon_sym_GT_EQ] = ACTIONS(5968), - [anon_sym_LT_EQ] = ACTIONS(5966), - [anon_sym_LT] = ACTIONS(5966), - [anon_sym_LT_LT] = ACTIONS(5966), - [anon_sym_GT_GT] = ACTIONS(5966), - [anon_sym_SEMI] = ACTIONS(5968), - [anon_sym___attribute__] = ACTIONS(5966), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(5968), - [anon_sym_LBRACK] = ACTIONS(5968), - [anon_sym_RBRACK] = ACTIONS(5968), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_COLON] = ACTIONS(5968), - [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(5966), - [anon_sym_or_eq] = ACTIONS(5966), - [anon_sym_xor_eq] = ACTIONS(5966), - [anon_sym_LT_EQ_GT] = ACTIONS(5968), - [anon_sym_or] = ACTIONS(5966), - [anon_sym_and] = ACTIONS(5966), - [anon_sym_bitor] = ACTIONS(5966), - [anon_sym_xor] = ACTIONS(5966), - [anon_sym_bitand] = ACTIONS(5966), - [anon_sym_not_eq] = ACTIONS(5966), - [anon_sym_DASH_DASH] = ACTIONS(5968), - [anon_sym_PLUS_PLUS] = ACTIONS(5968), - [anon_sym_DOT] = ACTIONS(5966), - [anon_sym_DOT_STAR] = ACTIONS(5968), - [anon_sym_DASH_GT] = ACTIONS(5968), - [sym_comment] = ACTIONS(3), - }, - [2420] = { - [sym_identifier] = ACTIONS(5759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5761), - [anon_sym_COMMA] = ACTIONS(5761), - [anon_sym_RPAREN] = ACTIONS(5761), - [aux_sym_preproc_if_token2] = ACTIONS(5761), - [aux_sym_preproc_else_token1] = ACTIONS(5761), - [aux_sym_preproc_elif_token1] = ACTIONS(5759), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5761), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5761), - [anon_sym_LPAREN2] = ACTIONS(5761), - [anon_sym_DASH] = ACTIONS(5759), - [anon_sym_PLUS] = ACTIONS(5759), - [anon_sym_STAR] = ACTIONS(5759), - [anon_sym_SLASH] = ACTIONS(5759), - [anon_sym_PERCENT] = ACTIONS(5759), - [anon_sym_PIPE_PIPE] = ACTIONS(5761), - [anon_sym_AMP_AMP] = ACTIONS(5761), - [anon_sym_PIPE] = ACTIONS(5759), - [anon_sym_CARET] = ACTIONS(5759), - [anon_sym_AMP] = ACTIONS(5759), - [anon_sym_EQ_EQ] = ACTIONS(5761), - [anon_sym_BANG_EQ] = ACTIONS(5761), - [anon_sym_GT] = ACTIONS(5759), - [anon_sym_GT_EQ] = ACTIONS(5761), - [anon_sym_LT_EQ] = ACTIONS(5759), - [anon_sym_LT] = ACTIONS(5759), - [anon_sym_LT_LT] = ACTIONS(5759), - [anon_sym_GT_GT] = ACTIONS(5759), - [anon_sym_SEMI] = ACTIONS(5761), - [anon_sym___attribute__] = ACTIONS(5759), - [anon_sym_LBRACE] = ACTIONS(5761), - [anon_sym_RBRACE] = ACTIONS(5761), - [anon_sym_LBRACK] = ACTIONS(5761), - [anon_sym_RBRACK] = ACTIONS(5761), - [anon_sym_EQ] = ACTIONS(5759), - [anon_sym_COLON] = ACTIONS(5761), - [anon_sym_QMARK] = ACTIONS(5761), - [anon_sym_STAR_EQ] = ACTIONS(5761), - [anon_sym_SLASH_EQ] = ACTIONS(5761), - [anon_sym_PERCENT_EQ] = ACTIONS(5761), - [anon_sym_PLUS_EQ] = ACTIONS(5761), - [anon_sym_DASH_EQ] = ACTIONS(5761), - [anon_sym_LT_LT_EQ] = ACTIONS(5761), - [anon_sym_GT_GT_EQ] = ACTIONS(5761), - [anon_sym_AMP_EQ] = ACTIONS(5761), - [anon_sym_CARET_EQ] = ACTIONS(5761), - [anon_sym_PIPE_EQ] = ACTIONS(5761), - [anon_sym_and_eq] = ACTIONS(5759), - [anon_sym_or_eq] = ACTIONS(5759), - [anon_sym_xor_eq] = ACTIONS(5759), - [anon_sym_LT_EQ_GT] = ACTIONS(5761), - [anon_sym_or] = ACTIONS(5759), - [anon_sym_and] = ACTIONS(5759), - [anon_sym_bitor] = ACTIONS(5759), - [anon_sym_xor] = ACTIONS(5759), - [anon_sym_bitand] = ACTIONS(5759), - [anon_sym_not_eq] = ACTIONS(5759), - [anon_sym_DASH_DASH] = ACTIONS(5761), - [anon_sym_PLUS_PLUS] = ACTIONS(5761), - [anon_sym_DOT] = ACTIONS(5759), - [anon_sym_DOT_STAR] = ACTIONS(5761), - [anon_sym_DASH_GT] = ACTIONS(5761), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5759), - [anon_sym_decltype] = ACTIONS(5759), - }, - [2421] = { - [sym_attribute_declaration] = STATE(2421), - [aux_sym_attributed_declarator_repeat1] = STATE(2421), - [sym_identifier] = ACTIONS(5970), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5972), - [anon_sym_COMMA] = ACTIONS(5972), - [anon_sym_RPAREN] = ACTIONS(5972), - [aux_sym_preproc_if_token2] = ACTIONS(5972), - [aux_sym_preproc_else_token1] = ACTIONS(5972), - [aux_sym_preproc_elif_token1] = ACTIONS(5970), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5972), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5972), - [anon_sym_LPAREN2] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5970), - [anon_sym_PLUS] = ACTIONS(5970), - [anon_sym_STAR] = ACTIONS(5970), - [anon_sym_SLASH] = ACTIONS(5970), - [anon_sym_PERCENT] = ACTIONS(5970), - [anon_sym_PIPE_PIPE] = ACTIONS(5972), - [anon_sym_AMP_AMP] = ACTIONS(5972), - [anon_sym_PIPE] = ACTIONS(5970), - [anon_sym_CARET] = ACTIONS(5970), - [anon_sym_AMP] = ACTIONS(5970), - [anon_sym_EQ_EQ] = ACTIONS(5972), - [anon_sym_BANG_EQ] = ACTIONS(5972), - [anon_sym_GT] = ACTIONS(5970), - [anon_sym_GT_EQ] = ACTIONS(5972), - [anon_sym_LT_EQ] = ACTIONS(5970), - [anon_sym_LT] = ACTIONS(5970), - [anon_sym_LT_LT] = ACTIONS(5970), - [anon_sym_GT_GT] = ACTIONS(5970), - [anon_sym_SEMI] = ACTIONS(5972), - [anon_sym___attribute__] = ACTIONS(5970), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5974), - [anon_sym_RBRACE] = ACTIONS(5972), - [anon_sym_LBRACK] = ACTIONS(5970), - [anon_sym_RBRACK] = ACTIONS(5972), - [anon_sym_EQ] = ACTIONS(5970), - [anon_sym_COLON] = ACTIONS(5972), - [anon_sym_QMARK] = ACTIONS(5972), - [anon_sym_STAR_EQ] = ACTIONS(5972), - [anon_sym_SLASH_EQ] = ACTIONS(5972), - [anon_sym_PERCENT_EQ] = ACTIONS(5972), - [anon_sym_PLUS_EQ] = ACTIONS(5972), - [anon_sym_DASH_EQ] = ACTIONS(5972), - [anon_sym_LT_LT_EQ] = ACTIONS(5972), - [anon_sym_GT_GT_EQ] = ACTIONS(5972), - [anon_sym_AMP_EQ] = ACTIONS(5972), - [anon_sym_CARET_EQ] = ACTIONS(5972), - [anon_sym_PIPE_EQ] = ACTIONS(5972), - [anon_sym_and_eq] = ACTIONS(5970), - [anon_sym_or_eq] = ACTIONS(5970), - [anon_sym_xor_eq] = ACTIONS(5970), - [anon_sym_LT_EQ_GT] = ACTIONS(5972), - [anon_sym_or] = ACTIONS(5970), - [anon_sym_and] = ACTIONS(5970), - [anon_sym_bitor] = ACTIONS(5970), - [anon_sym_xor] = ACTIONS(5970), - [anon_sym_bitand] = ACTIONS(5970), - [anon_sym_not_eq] = ACTIONS(5970), - [anon_sym_DASH_DASH] = ACTIONS(5972), - [anon_sym_PLUS_PLUS] = ACTIONS(5972), - [anon_sym_DOT] = ACTIONS(5970), - [anon_sym_DOT_STAR] = ACTIONS(5972), - [anon_sym_DASH_GT] = ACTIONS(5972), - [sym_comment] = ACTIONS(3), - }, - [2422] = { - [sym_attribute_specifier] = STATE(3066), - [sym_field_declaration_list] = STATE(2923), - [sym_virtual_specifier] = STATE(7369), - [sym_base_class_clause] = STATE(8062), - [sym_identifier] = ACTIONS(5284), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5286), - [anon_sym_COMMA] = ACTIONS(5286), - [aux_sym_preproc_if_token2] = ACTIONS(5286), - [aux_sym_preproc_else_token1] = ACTIONS(5286), - [aux_sym_preproc_elif_token1] = ACTIONS(5286), - [anon_sym_LPAREN2] = ACTIONS(5286), - [anon_sym_DASH] = ACTIONS(5284), - [anon_sym_PLUS] = ACTIONS(5284), - [anon_sym_STAR] = ACTIONS(5284), - [anon_sym_SLASH] = ACTIONS(5284), - [anon_sym_PERCENT] = ACTIONS(5284), - [anon_sym_PIPE_PIPE] = ACTIONS(5286), - [anon_sym_AMP_AMP] = ACTIONS(5286), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_CARET] = ACTIONS(5284), - [anon_sym_AMP] = ACTIONS(5284), - [anon_sym_EQ_EQ] = ACTIONS(5286), - [anon_sym_BANG_EQ] = ACTIONS(5286), - [anon_sym_GT] = ACTIONS(5284), - [anon_sym_GT_EQ] = ACTIONS(5286), - [anon_sym_LT_EQ] = ACTIONS(5284), - [anon_sym_LT] = ACTIONS(5284), - [anon_sym_LT_LT] = ACTIONS(5284), - [anon_sym_GT_GT] = ACTIONS(5284), - [anon_sym___attribute__] = ACTIONS(5977), - [anon_sym_LBRACE] = ACTIONS(5979), - [anon_sym_LBRACK] = ACTIONS(5286), - [anon_sym_EQ] = ACTIONS(5284), - [anon_sym_COLON] = ACTIONS(5292), - [anon_sym_QMARK] = ACTIONS(5286), - [anon_sym_STAR_EQ] = ACTIONS(5286), - [anon_sym_SLASH_EQ] = ACTIONS(5286), - [anon_sym_PERCENT_EQ] = ACTIONS(5286), - [anon_sym_PLUS_EQ] = ACTIONS(5286), - [anon_sym_DASH_EQ] = ACTIONS(5286), - [anon_sym_LT_LT_EQ] = ACTIONS(5286), - [anon_sym_GT_GT_EQ] = ACTIONS(5286), - [anon_sym_AMP_EQ] = ACTIONS(5286), - [anon_sym_CARET_EQ] = ACTIONS(5286), - [anon_sym_PIPE_EQ] = ACTIONS(5286), - [anon_sym_and_eq] = ACTIONS(5284), - [anon_sym_or_eq] = ACTIONS(5284), - [anon_sym_xor_eq] = ACTIONS(5284), - [anon_sym_LT_EQ_GT] = ACTIONS(5286), - [anon_sym_or] = ACTIONS(5284), - [anon_sym_and] = ACTIONS(5284), - [anon_sym_bitor] = ACTIONS(5284), - [anon_sym_xor] = ACTIONS(5284), - [anon_sym_bitand] = ACTIONS(5284), - [anon_sym_not_eq] = ACTIONS(5284), - [anon_sym_DASH_DASH] = ACTIONS(5286), - [anon_sym_PLUS_PLUS] = ACTIONS(5286), - [anon_sym_DOT] = ACTIONS(5284), - [anon_sym_DOT_STAR] = ACTIONS(5286), - [anon_sym_DASH_GT] = ACTIONS(5286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5284), - [anon_sym_decltype] = ACTIONS(5284), - [anon_sym_final] = ACTIONS(5294), - [anon_sym_override] = ACTIONS(5294), + [2242] = { + [sym_identifier] = ACTIONS(5730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), + [anon_sym_COMMA] = ACTIONS(5732), + [anon_sym_RPAREN] = ACTIONS(5732), + [anon_sym_LPAREN2] = ACTIONS(5732), + [anon_sym_DASH] = ACTIONS(5730), + [anon_sym_PLUS] = ACTIONS(5730), + [anon_sym_STAR] = ACTIONS(5732), + [anon_sym_SLASH] = ACTIONS(5730), + [anon_sym_PERCENT] = ACTIONS(5732), + [anon_sym_PIPE_PIPE] = ACTIONS(5732), + [anon_sym_AMP_AMP] = ACTIONS(5732), + [anon_sym_PIPE] = ACTIONS(5730), + [anon_sym_CARET] = ACTIONS(5732), + [anon_sym_AMP] = ACTIONS(5730), + [anon_sym_EQ_EQ] = ACTIONS(5732), + [anon_sym_BANG_EQ] = ACTIONS(5732), + [anon_sym_GT] = ACTIONS(5730), + [anon_sym_GT_EQ] = ACTIONS(5732), + [anon_sym_LT_EQ] = ACTIONS(5730), + [anon_sym_LT] = ACTIONS(5730), + [anon_sym_LT_LT] = ACTIONS(5732), + [anon_sym_GT_GT] = ACTIONS(5732), + [anon_sym_SEMI] = ACTIONS(5732), + [anon_sym___extension__] = ACTIONS(5730), + [anon_sym___attribute__] = ACTIONS(5730), + [anon_sym___based] = ACTIONS(5730), + [anon_sym_LBRACE] = ACTIONS(5732), + [anon_sym_RBRACE] = ACTIONS(5732), + [anon_sym_signed] = ACTIONS(5730), + [anon_sym_unsigned] = ACTIONS(5730), + [anon_sym_long] = ACTIONS(5730), + [anon_sym_short] = ACTIONS(5730), + [anon_sym_LBRACK] = ACTIONS(5732), + [anon_sym_RBRACK] = ACTIONS(5732), + [anon_sym_const] = ACTIONS(5730), + [anon_sym_constexpr] = ACTIONS(5730), + [anon_sym_volatile] = ACTIONS(5730), + [anon_sym_restrict] = ACTIONS(5730), + [anon_sym___restrict__] = ACTIONS(5730), + [anon_sym__Atomic] = ACTIONS(5730), + [anon_sym__Noreturn] = ACTIONS(5730), + [anon_sym_noreturn] = ACTIONS(5730), + [anon_sym_mutable] = ACTIONS(5730), + [anon_sym_constinit] = ACTIONS(5730), + [anon_sym_consteval] = ACTIONS(5730), + [sym_primitive_type] = ACTIONS(5730), + [anon_sym_COLON] = ACTIONS(5732), + [anon_sym_QMARK] = ACTIONS(5732), + [anon_sym_LT_EQ_GT] = ACTIONS(5732), + [anon_sym_or] = ACTIONS(5730), + [anon_sym_and] = ACTIONS(5730), + [anon_sym_bitor] = ACTIONS(5730), + [anon_sym_xor] = ACTIONS(5730), + [anon_sym_bitand] = ACTIONS(5730), + [anon_sym_not_eq] = ACTIONS(5730), + [anon_sym_DASH_DASH] = ACTIONS(5732), + [anon_sym_PLUS_PLUS] = ACTIONS(5732), + [anon_sym_DOT] = ACTIONS(5730), + [anon_sym_DOT_STAR] = ACTIONS(5732), + [anon_sym_DASH_GT] = ACTIONS(5732), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5730), + [anon_sym_decltype] = ACTIONS(5730), + [anon_sym_final] = ACTIONS(5730), + [anon_sym_override] = ACTIONS(5730), + [anon_sym_requires] = ACTIONS(5730), }, - [2423] = { - [sym_identifier] = ACTIONS(5737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5739), - [anon_sym_COMMA] = ACTIONS(5739), - [anon_sym_RPAREN] = ACTIONS(5739), - [aux_sym_preproc_if_token2] = ACTIONS(5739), - [aux_sym_preproc_else_token1] = ACTIONS(5739), - [aux_sym_preproc_elif_token1] = ACTIONS(5737), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5739), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5739), - [anon_sym_LPAREN2] = ACTIONS(5739), - [anon_sym_DASH] = ACTIONS(5737), - [anon_sym_PLUS] = ACTIONS(5737), - [anon_sym_STAR] = ACTIONS(5737), - [anon_sym_SLASH] = ACTIONS(5737), - [anon_sym_PERCENT] = ACTIONS(5737), - [anon_sym_PIPE_PIPE] = ACTIONS(5739), - [anon_sym_AMP_AMP] = ACTIONS(5739), - [anon_sym_PIPE] = ACTIONS(5737), - [anon_sym_CARET] = ACTIONS(5737), - [anon_sym_AMP] = ACTIONS(5737), - [anon_sym_EQ_EQ] = ACTIONS(5739), - [anon_sym_BANG_EQ] = ACTIONS(5739), - [anon_sym_GT] = ACTIONS(5737), - [anon_sym_GT_EQ] = ACTIONS(5739), - [anon_sym_LT_EQ] = ACTIONS(5737), - [anon_sym_LT] = ACTIONS(5737), - [anon_sym_LT_LT] = ACTIONS(5737), - [anon_sym_GT_GT] = ACTIONS(5737), - [anon_sym_SEMI] = ACTIONS(5739), - [anon_sym___attribute__] = ACTIONS(5737), - [anon_sym_LBRACE] = ACTIONS(5739), - [anon_sym_RBRACE] = ACTIONS(5739), - [anon_sym_LBRACK] = ACTIONS(5739), - [anon_sym_RBRACK] = ACTIONS(5739), - [anon_sym_EQ] = ACTIONS(5737), - [anon_sym_COLON] = ACTIONS(5739), - [anon_sym_QMARK] = ACTIONS(5739), - [anon_sym_STAR_EQ] = ACTIONS(5739), - [anon_sym_SLASH_EQ] = ACTIONS(5739), - [anon_sym_PERCENT_EQ] = ACTIONS(5739), - [anon_sym_PLUS_EQ] = ACTIONS(5739), - [anon_sym_DASH_EQ] = ACTIONS(5739), - [anon_sym_LT_LT_EQ] = ACTIONS(5739), - [anon_sym_GT_GT_EQ] = ACTIONS(5739), - [anon_sym_AMP_EQ] = ACTIONS(5739), - [anon_sym_CARET_EQ] = ACTIONS(5739), - [anon_sym_PIPE_EQ] = ACTIONS(5739), - [anon_sym_and_eq] = ACTIONS(5737), - [anon_sym_or_eq] = ACTIONS(5737), - [anon_sym_xor_eq] = ACTIONS(5737), - [anon_sym_LT_EQ_GT] = ACTIONS(5739), - [anon_sym_or] = ACTIONS(5737), - [anon_sym_and] = ACTIONS(5737), - [anon_sym_bitor] = ACTIONS(5737), - [anon_sym_xor] = ACTIONS(5737), - [anon_sym_bitand] = ACTIONS(5737), - [anon_sym_not_eq] = ACTIONS(5737), - [anon_sym_DASH_DASH] = ACTIONS(5739), - [anon_sym_PLUS_PLUS] = ACTIONS(5739), - [anon_sym_DOT] = ACTIONS(5737), - [anon_sym_DOT_STAR] = ACTIONS(5739), - [anon_sym_DASH_GT] = ACTIONS(5739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5737), - [anon_sym_decltype] = ACTIONS(5737), + [2243] = { + [sym_string_literal] = STATE(2211), + [sym_raw_string_literal] = STATE(2211), + [aux_sym_concatenated_string_repeat1] = STATE(2211), + [sym_identifier] = ACTIONS(5734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_LPAREN2] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_GT_EQ] = ACTIONS(5234), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5236), + [anon_sym_QMARK] = ACTIONS(5234), + [anon_sym_STAR_EQ] = ACTIONS(5234), + [anon_sym_SLASH_EQ] = ACTIONS(5234), + [anon_sym_PERCENT_EQ] = ACTIONS(5234), + [anon_sym_PLUS_EQ] = ACTIONS(5234), + [anon_sym_DASH_EQ] = ACTIONS(5234), + [anon_sym_LT_LT_EQ] = ACTIONS(5234), + [anon_sym_GT_GT_EQ] = ACTIONS(5234), + [anon_sym_AMP_EQ] = ACTIONS(5234), + [anon_sym_CARET_EQ] = ACTIONS(5234), + [anon_sym_PIPE_EQ] = ACTIONS(5234), + [anon_sym_and_eq] = ACTIONS(5236), + [anon_sym_or_eq] = ACTIONS(5236), + [anon_sym_xor_eq] = ACTIONS(5236), + [anon_sym_LT_EQ_GT] = ACTIONS(5234), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_and] = ACTIONS(5236), + [anon_sym_bitor] = ACTIONS(5236), + [anon_sym_xor] = ACTIONS(5236), + [anon_sym_bitand] = ACTIONS(5236), + [anon_sym_not_eq] = ACTIONS(5236), + [anon_sym_DASH_DASH] = ACTIONS(5234), + [anon_sym_PLUS_PLUS] = ACTIONS(5234), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_DOT_STAR] = ACTIONS(5234), + [anon_sym_DASH_GT] = ACTIONS(5236), + [anon_sym_L_DQUOTE] = ACTIONS(5060), + [anon_sym_u_DQUOTE] = ACTIONS(5060), + [anon_sym_U_DQUOTE] = ACTIONS(5060), + [anon_sym_u8_DQUOTE] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5060), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5062), + [anon_sym_LR_DQUOTE] = ACTIONS(5062), + [anon_sym_uR_DQUOTE] = ACTIONS(5062), + [anon_sym_UR_DQUOTE] = ACTIONS(5062), + [anon_sym_u8R_DQUOTE] = ACTIONS(5062), + [anon_sym_DASH_GT_STAR] = ACTIONS(5234), + [sym_literal_suffix] = ACTIONS(5236), }, - [2424] = { - [sym_identifier] = ACTIONS(5719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5721), - [anon_sym_COMMA] = ACTIONS(5721), - [anon_sym_RPAREN] = ACTIONS(5721), - [aux_sym_preproc_if_token2] = ACTIONS(5721), - [aux_sym_preproc_else_token1] = ACTIONS(5721), - [aux_sym_preproc_elif_token1] = ACTIONS(5719), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5721), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5721), - [anon_sym_LPAREN2] = ACTIONS(5721), - [anon_sym_DASH] = ACTIONS(5719), - [anon_sym_PLUS] = ACTIONS(5719), - [anon_sym_STAR] = ACTIONS(5719), - [anon_sym_SLASH] = ACTIONS(5719), - [anon_sym_PERCENT] = ACTIONS(5719), - [anon_sym_PIPE_PIPE] = ACTIONS(5721), - [anon_sym_AMP_AMP] = ACTIONS(5721), - [anon_sym_PIPE] = ACTIONS(5719), - [anon_sym_CARET] = ACTIONS(5719), - [anon_sym_AMP] = ACTIONS(5719), - [anon_sym_EQ_EQ] = ACTIONS(5721), - [anon_sym_BANG_EQ] = ACTIONS(5721), - [anon_sym_GT] = ACTIONS(5719), - [anon_sym_GT_EQ] = ACTIONS(5721), - [anon_sym_LT_EQ] = ACTIONS(5719), - [anon_sym_LT] = ACTIONS(5719), - [anon_sym_LT_LT] = ACTIONS(5719), - [anon_sym_GT_GT] = ACTIONS(5719), - [anon_sym_SEMI] = ACTIONS(5721), - [anon_sym___attribute__] = ACTIONS(5719), - [anon_sym_LBRACE] = ACTIONS(5721), - [anon_sym_RBRACE] = ACTIONS(5721), - [anon_sym_LBRACK] = ACTIONS(5721), - [anon_sym_RBRACK] = ACTIONS(5721), - [anon_sym_EQ] = ACTIONS(5719), - [anon_sym_COLON] = ACTIONS(5721), - [anon_sym_QMARK] = ACTIONS(5721), - [anon_sym_STAR_EQ] = ACTIONS(5721), - [anon_sym_SLASH_EQ] = ACTIONS(5721), - [anon_sym_PERCENT_EQ] = ACTIONS(5721), - [anon_sym_PLUS_EQ] = ACTIONS(5721), - [anon_sym_DASH_EQ] = ACTIONS(5721), - [anon_sym_LT_LT_EQ] = ACTIONS(5721), - [anon_sym_GT_GT_EQ] = ACTIONS(5721), - [anon_sym_AMP_EQ] = ACTIONS(5721), - [anon_sym_CARET_EQ] = ACTIONS(5721), - [anon_sym_PIPE_EQ] = ACTIONS(5721), - [anon_sym_and_eq] = ACTIONS(5719), - [anon_sym_or_eq] = ACTIONS(5719), - [anon_sym_xor_eq] = ACTIONS(5719), - [anon_sym_LT_EQ_GT] = ACTIONS(5721), - [anon_sym_or] = ACTIONS(5719), - [anon_sym_and] = ACTIONS(5719), - [anon_sym_bitor] = ACTIONS(5719), - [anon_sym_xor] = ACTIONS(5719), - [anon_sym_bitand] = ACTIONS(5719), - [anon_sym_not_eq] = ACTIONS(5719), - [anon_sym_DASH_DASH] = ACTIONS(5721), - [anon_sym_PLUS_PLUS] = ACTIONS(5721), - [anon_sym_DOT] = ACTIONS(5719), - [anon_sym_DOT_STAR] = ACTIONS(5721), - [anon_sym_DASH_GT] = ACTIONS(5721), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5719), - [anon_sym_decltype] = ACTIONS(5719), + [2244] = { + [sym_catch_clause] = STATE(2264), + [aux_sym_constructor_try_statement_repeat1] = STATE(2264), + [sym_identifier] = ACTIONS(2834), + [aux_sym_preproc_def_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token1] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), + [sym_preproc_directive] = ACTIONS(2834), + [anon_sym_LPAREN2] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_AMP_AMP] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym___extension__] = ACTIONS(2834), + [anon_sym_typedef] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym___attribute__] = ACTIONS(2834), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), + [anon_sym___declspec] = ACTIONS(2834), + [anon_sym___based] = ACTIONS(2834), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_signed] = ACTIONS(2834), + [anon_sym_unsigned] = ACTIONS(2834), + [anon_sym_long] = ACTIONS(2834), + [anon_sym_short] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_register] = ACTIONS(2834), + [anon_sym_inline] = ACTIONS(2834), + [anon_sym___inline] = ACTIONS(2834), + [anon_sym___inline__] = ACTIONS(2834), + [anon_sym___forceinline] = ACTIONS(2834), + [anon_sym_thread_local] = ACTIONS(2834), + [anon_sym___thread] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_constexpr] = ACTIONS(2834), + [anon_sym_volatile] = ACTIONS(2834), + [anon_sym_restrict] = ACTIONS(2834), + [anon_sym___restrict__] = ACTIONS(2834), + [anon_sym__Atomic] = ACTIONS(2834), + [anon_sym__Noreturn] = ACTIONS(2834), + [anon_sym_noreturn] = ACTIONS(2834), + [anon_sym_mutable] = ACTIONS(2834), + [anon_sym_constinit] = ACTIONS(2834), + [anon_sym_consteval] = ACTIONS(2834), + [sym_primitive_type] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_class] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2834), + [anon_sym_decltype] = ACTIONS(2834), + [anon_sym_virtual] = ACTIONS(2834), + [anon_sym_alignas] = ACTIONS(2834), + [anon_sym_explicit] = ACTIONS(2834), + [anon_sym_typename] = ACTIONS(2834), + [anon_sym_template] = ACTIONS(2834), + [anon_sym_operator] = ACTIONS(2834), + [anon_sym_friend] = ACTIONS(2834), + [anon_sym_public] = ACTIONS(2834), + [anon_sym_private] = ACTIONS(2834), + [anon_sym_protected] = ACTIONS(2834), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_static_assert] = ACTIONS(2834), + [anon_sym_catch] = ACTIONS(5641), }, - [2425] = { - [sym_identifier] = ACTIONS(5715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5717), - [anon_sym_COMMA] = ACTIONS(5717), - [anon_sym_RPAREN] = ACTIONS(5717), - [aux_sym_preproc_if_token2] = ACTIONS(5717), - [aux_sym_preproc_else_token1] = ACTIONS(5717), - [aux_sym_preproc_elif_token1] = ACTIONS(5715), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5717), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5717), - [anon_sym_LPAREN2] = ACTIONS(5717), - [anon_sym_DASH] = ACTIONS(5715), - [anon_sym_PLUS] = ACTIONS(5715), - [anon_sym_STAR] = ACTIONS(5715), - [anon_sym_SLASH] = ACTIONS(5715), - [anon_sym_PERCENT] = ACTIONS(5715), - [anon_sym_PIPE_PIPE] = ACTIONS(5717), - [anon_sym_AMP_AMP] = ACTIONS(5717), - [anon_sym_PIPE] = ACTIONS(5715), - [anon_sym_CARET] = ACTIONS(5715), - [anon_sym_AMP] = ACTIONS(5715), - [anon_sym_EQ_EQ] = ACTIONS(5717), - [anon_sym_BANG_EQ] = ACTIONS(5717), - [anon_sym_GT] = ACTIONS(5715), - [anon_sym_GT_EQ] = ACTIONS(5717), - [anon_sym_LT_EQ] = ACTIONS(5715), - [anon_sym_LT] = ACTIONS(5715), - [anon_sym_LT_LT] = ACTIONS(5715), - [anon_sym_GT_GT] = ACTIONS(5715), - [anon_sym_SEMI] = ACTIONS(5717), - [anon_sym___attribute__] = ACTIONS(5715), - [anon_sym_LBRACE] = ACTIONS(5717), - [anon_sym_RBRACE] = ACTIONS(5717), - [anon_sym_LBRACK] = ACTIONS(5717), - [anon_sym_RBRACK] = ACTIONS(5717), - [anon_sym_EQ] = ACTIONS(5715), - [anon_sym_COLON] = ACTIONS(5717), - [anon_sym_QMARK] = ACTIONS(5717), - [anon_sym_STAR_EQ] = ACTIONS(5717), - [anon_sym_SLASH_EQ] = ACTIONS(5717), - [anon_sym_PERCENT_EQ] = ACTIONS(5717), - [anon_sym_PLUS_EQ] = ACTIONS(5717), - [anon_sym_DASH_EQ] = ACTIONS(5717), - [anon_sym_LT_LT_EQ] = ACTIONS(5717), - [anon_sym_GT_GT_EQ] = ACTIONS(5717), - [anon_sym_AMP_EQ] = ACTIONS(5717), - [anon_sym_CARET_EQ] = ACTIONS(5717), - [anon_sym_PIPE_EQ] = ACTIONS(5717), - [anon_sym_and_eq] = ACTIONS(5715), - [anon_sym_or_eq] = ACTIONS(5715), - [anon_sym_xor_eq] = ACTIONS(5715), - [anon_sym_LT_EQ_GT] = ACTIONS(5717), - [anon_sym_or] = ACTIONS(5715), - [anon_sym_and] = ACTIONS(5715), - [anon_sym_bitor] = ACTIONS(5715), - [anon_sym_xor] = ACTIONS(5715), - [anon_sym_bitand] = ACTIONS(5715), - [anon_sym_not_eq] = ACTIONS(5715), - [anon_sym_DASH_DASH] = ACTIONS(5717), - [anon_sym_PLUS_PLUS] = ACTIONS(5717), - [anon_sym_DOT] = ACTIONS(5715), - [anon_sym_DOT_STAR] = ACTIONS(5717), - [anon_sym_DASH_GT] = ACTIONS(5717), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5715), - [anon_sym_decltype] = ACTIONS(5715), + [2245] = { + [sym_string_literal] = STATE(2197), + [sym_raw_string_literal] = STATE(2197), + [aux_sym_concatenated_string_repeat1] = STATE(2197), + [sym_identifier] = ACTIONS(5736), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5220), + [anon_sym_COMMA] = ACTIONS(5220), + [anon_sym_LPAREN2] = ACTIONS(5220), + [anon_sym_DASH] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5222), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5222), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5220), + [anon_sym_AMP_AMP] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_AMP] = ACTIONS(5222), + [anon_sym_EQ_EQ] = ACTIONS(5220), + [anon_sym_BANG_EQ] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5222), + [anon_sym_GT_EQ] = ACTIONS(5220), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5222), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(5220), + [anon_sym___attribute__] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5220), + [anon_sym_STAR_EQ] = ACTIONS(5220), + [anon_sym_SLASH_EQ] = ACTIONS(5220), + [anon_sym_PERCENT_EQ] = ACTIONS(5220), + [anon_sym_PLUS_EQ] = ACTIONS(5220), + [anon_sym_DASH_EQ] = ACTIONS(5220), + [anon_sym_LT_LT_EQ] = ACTIONS(5220), + [anon_sym_GT_GT_EQ] = ACTIONS(5220), + [anon_sym_AMP_EQ] = ACTIONS(5220), + [anon_sym_CARET_EQ] = ACTIONS(5220), + [anon_sym_PIPE_EQ] = ACTIONS(5220), + [anon_sym_and_eq] = ACTIONS(5222), + [anon_sym_or_eq] = ACTIONS(5222), + [anon_sym_xor_eq] = ACTIONS(5222), + [anon_sym_LT_EQ_GT] = ACTIONS(5220), + [anon_sym_or] = ACTIONS(5222), + [anon_sym_and] = ACTIONS(5222), + [anon_sym_bitor] = ACTIONS(5222), + [anon_sym_xor] = ACTIONS(5222), + [anon_sym_bitand] = ACTIONS(5222), + [anon_sym_not_eq] = ACTIONS(5222), + [anon_sym_DASH_DASH] = ACTIONS(5220), + [anon_sym_PLUS_PLUS] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(5222), + [anon_sym_DOT_STAR] = ACTIONS(5220), + [anon_sym_DASH_GT] = ACTIONS(5220), + [anon_sym_L_DQUOTE] = ACTIONS(5631), + [anon_sym_u_DQUOTE] = ACTIONS(5631), + [anon_sym_U_DQUOTE] = ACTIONS(5631), + [anon_sym_u8_DQUOTE] = ACTIONS(5631), + [anon_sym_DQUOTE] = ACTIONS(5631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(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), + [sym_literal_suffix] = ACTIONS(5222), }, - [2426] = { - [sym_identifier] = ACTIONS(5661), - [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(5661), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5663), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5663), - [anon_sym_LPAREN2] = ACTIONS(5663), - [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(5663), - [anon_sym_AMP_AMP] = ACTIONS(5663), - [anon_sym_PIPE] = ACTIONS(5661), - [anon_sym_CARET] = ACTIONS(5661), - [anon_sym_AMP] = ACTIONS(5661), - [anon_sym_EQ_EQ] = ACTIONS(5663), - [anon_sym_BANG_EQ] = ACTIONS(5663), - [anon_sym_GT] = ACTIONS(5661), - [anon_sym_GT_EQ] = ACTIONS(5663), - [anon_sym_LT_EQ] = ACTIONS(5661), - [anon_sym_LT] = ACTIONS(5661), - [anon_sym_LT_LT] = ACTIONS(5661), - [anon_sym_GT_GT] = ACTIONS(5661), - [anon_sym_SEMI] = ACTIONS(5663), - [anon_sym___attribute__] = ACTIONS(5661), - [anon_sym_LBRACE] = ACTIONS(5663), - [anon_sym_RBRACE] = ACTIONS(5663), - [anon_sym_LBRACK] = ACTIONS(5663), - [anon_sym_RBRACK] = ACTIONS(5663), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5663), - [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(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5663), - [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(5663), - [anon_sym_PLUS_PLUS] = ACTIONS(5663), - [anon_sym_DOT] = ACTIONS(5661), - [anon_sym_DOT_STAR] = ACTIONS(5663), - [anon_sym_DASH_GT] = ACTIONS(5663), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5661), - [anon_sym_decltype] = ACTIONS(5661), + [2246] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4202), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4173), + [anon_sym_or_eq] = ACTIONS(4173), + [anon_sym_xor_eq] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), }, - [2427] = { - [sym_identifier] = ACTIONS(5699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5701), - [anon_sym_COMMA] = ACTIONS(5701), - [anon_sym_RPAREN] = ACTIONS(5701), - [aux_sym_preproc_if_token2] = ACTIONS(5701), - [aux_sym_preproc_else_token1] = ACTIONS(5701), - [aux_sym_preproc_elif_token1] = ACTIONS(5699), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5701), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5701), - [anon_sym_LPAREN2] = ACTIONS(5701), - [anon_sym_DASH] = ACTIONS(5699), - [anon_sym_PLUS] = ACTIONS(5699), - [anon_sym_STAR] = ACTIONS(5699), - [anon_sym_SLASH] = ACTIONS(5699), - [anon_sym_PERCENT] = ACTIONS(5699), - [anon_sym_PIPE_PIPE] = ACTIONS(5701), - [anon_sym_AMP_AMP] = ACTIONS(5701), - [anon_sym_PIPE] = ACTIONS(5699), - [anon_sym_CARET] = ACTIONS(5699), - [anon_sym_AMP] = ACTIONS(5699), - [anon_sym_EQ_EQ] = ACTIONS(5701), - [anon_sym_BANG_EQ] = ACTIONS(5701), - [anon_sym_GT] = ACTIONS(5699), - [anon_sym_GT_EQ] = ACTIONS(5701), - [anon_sym_LT_EQ] = ACTIONS(5699), - [anon_sym_LT] = ACTIONS(5699), - [anon_sym_LT_LT] = ACTIONS(5699), - [anon_sym_GT_GT] = ACTIONS(5699), - [anon_sym_SEMI] = ACTIONS(5701), - [anon_sym___attribute__] = ACTIONS(5699), - [anon_sym_LBRACE] = ACTIONS(5701), - [anon_sym_RBRACE] = ACTIONS(5701), - [anon_sym_LBRACK] = ACTIONS(5701), - [anon_sym_RBRACK] = ACTIONS(5701), - [anon_sym_EQ] = ACTIONS(5699), - [anon_sym_COLON] = ACTIONS(5701), - [anon_sym_QMARK] = ACTIONS(5701), - [anon_sym_STAR_EQ] = ACTIONS(5701), - [anon_sym_SLASH_EQ] = ACTIONS(5701), - [anon_sym_PERCENT_EQ] = ACTIONS(5701), - [anon_sym_PLUS_EQ] = ACTIONS(5701), - [anon_sym_DASH_EQ] = ACTIONS(5701), - [anon_sym_LT_LT_EQ] = ACTIONS(5701), - [anon_sym_GT_GT_EQ] = ACTIONS(5701), - [anon_sym_AMP_EQ] = ACTIONS(5701), - [anon_sym_CARET_EQ] = ACTIONS(5701), - [anon_sym_PIPE_EQ] = ACTIONS(5701), - [anon_sym_and_eq] = ACTIONS(5699), - [anon_sym_or_eq] = ACTIONS(5699), - [anon_sym_xor_eq] = ACTIONS(5699), - [anon_sym_LT_EQ_GT] = ACTIONS(5701), - [anon_sym_or] = ACTIONS(5699), - [anon_sym_and] = ACTIONS(5699), - [anon_sym_bitor] = ACTIONS(5699), - [anon_sym_xor] = ACTIONS(5699), - [anon_sym_bitand] = ACTIONS(5699), - [anon_sym_not_eq] = ACTIONS(5699), - [anon_sym_DASH_DASH] = ACTIONS(5701), - [anon_sym_PLUS_PLUS] = ACTIONS(5701), - [anon_sym_DOT] = ACTIONS(5699), - [anon_sym_DOT_STAR] = ACTIONS(5701), - [anon_sym_DASH_GT] = ACTIONS(5701), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5699), - [anon_sym_decltype] = ACTIONS(5699), + [2247] = { + [sym_identifier] = ACTIONS(5738), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5740), + [anon_sym_COMMA] = ACTIONS(5740), + [anon_sym_RPAREN] = ACTIONS(5740), + [anon_sym_LPAREN2] = ACTIONS(5740), + [anon_sym_DASH] = ACTIONS(5738), + [anon_sym_PLUS] = ACTIONS(5738), + [anon_sym_STAR] = ACTIONS(5740), + [anon_sym_SLASH] = ACTIONS(5738), + [anon_sym_PERCENT] = ACTIONS(5740), + [anon_sym_PIPE_PIPE] = ACTIONS(5740), + [anon_sym_AMP_AMP] = ACTIONS(5740), + [anon_sym_PIPE] = ACTIONS(5738), + [anon_sym_CARET] = ACTIONS(5740), + [anon_sym_AMP] = ACTIONS(5738), + [anon_sym_EQ_EQ] = ACTIONS(5740), + [anon_sym_BANG_EQ] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(5738), + [anon_sym_GT_EQ] = ACTIONS(5740), + [anon_sym_LT_EQ] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5738), + [anon_sym_LT_LT] = ACTIONS(5740), + [anon_sym_GT_GT] = ACTIONS(5740), + [anon_sym_SEMI] = ACTIONS(5740), + [anon_sym___extension__] = ACTIONS(5738), + [anon_sym___attribute__] = ACTIONS(5738), + [anon_sym___based] = ACTIONS(5738), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5740), + [anon_sym_signed] = ACTIONS(5738), + [anon_sym_unsigned] = ACTIONS(5738), + [anon_sym_long] = ACTIONS(5738), + [anon_sym_short] = ACTIONS(5738), + [anon_sym_LBRACK] = ACTIONS(5740), + [anon_sym_RBRACK] = ACTIONS(5740), + [anon_sym_const] = ACTIONS(5738), + [anon_sym_constexpr] = ACTIONS(5738), + [anon_sym_volatile] = ACTIONS(5738), + [anon_sym_restrict] = ACTIONS(5738), + [anon_sym___restrict__] = ACTIONS(5738), + [anon_sym__Atomic] = ACTIONS(5738), + [anon_sym__Noreturn] = ACTIONS(5738), + [anon_sym_noreturn] = ACTIONS(5738), + [anon_sym_mutable] = ACTIONS(5738), + [anon_sym_constinit] = ACTIONS(5738), + [anon_sym_consteval] = ACTIONS(5738), + [sym_primitive_type] = ACTIONS(5738), + [anon_sym_COLON] = ACTIONS(5740), + [anon_sym_QMARK] = ACTIONS(5740), + [anon_sym_LT_EQ_GT] = ACTIONS(5740), + [anon_sym_or] = ACTIONS(5738), + [anon_sym_and] = ACTIONS(5738), + [anon_sym_bitor] = ACTIONS(5738), + [anon_sym_xor] = ACTIONS(5738), + [anon_sym_bitand] = ACTIONS(5738), + [anon_sym_not_eq] = ACTIONS(5738), + [anon_sym_DASH_DASH] = ACTIONS(5740), + [anon_sym_PLUS_PLUS] = ACTIONS(5740), + [anon_sym_DOT] = ACTIONS(5738), + [anon_sym_DOT_STAR] = ACTIONS(5740), + [anon_sym_DASH_GT] = ACTIONS(5740), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5738), + [anon_sym_decltype] = ACTIONS(5738), + [anon_sym_final] = ACTIONS(5738), + [anon_sym_override] = ACTIONS(5738), + [anon_sym_requires] = ACTIONS(5738), }, - [2428] = { - [sym_identifier] = ACTIONS(5691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5693), - [anon_sym_COMMA] = ACTIONS(5693), - [anon_sym_RPAREN] = ACTIONS(5693), - [aux_sym_preproc_if_token2] = ACTIONS(5693), - [aux_sym_preproc_else_token1] = ACTIONS(5693), - [aux_sym_preproc_elif_token1] = ACTIONS(5691), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5693), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5693), - [anon_sym_LPAREN2] = ACTIONS(5693), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_STAR] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5691), - [anon_sym_PERCENT] = ACTIONS(5691), - [anon_sym_PIPE_PIPE] = ACTIONS(5693), - [anon_sym_AMP_AMP] = ACTIONS(5693), - [anon_sym_PIPE] = ACTIONS(5691), - [anon_sym_CARET] = ACTIONS(5691), - [anon_sym_AMP] = ACTIONS(5691), - [anon_sym_EQ_EQ] = ACTIONS(5693), - [anon_sym_BANG_EQ] = ACTIONS(5693), - [anon_sym_GT] = ACTIONS(5691), - [anon_sym_GT_EQ] = ACTIONS(5693), - [anon_sym_LT_EQ] = ACTIONS(5691), - [anon_sym_LT] = ACTIONS(5691), - [anon_sym_LT_LT] = ACTIONS(5691), - [anon_sym_GT_GT] = ACTIONS(5691), - [anon_sym_SEMI] = ACTIONS(5693), - [anon_sym___attribute__] = ACTIONS(5691), - [anon_sym_LBRACE] = ACTIONS(5693), - [anon_sym_RBRACE] = ACTIONS(5693), - [anon_sym_LBRACK] = ACTIONS(5693), - [anon_sym_RBRACK] = ACTIONS(5693), - [anon_sym_EQ] = ACTIONS(5691), - [anon_sym_COLON] = ACTIONS(5693), - [anon_sym_QMARK] = ACTIONS(5693), - [anon_sym_STAR_EQ] = ACTIONS(5693), - [anon_sym_SLASH_EQ] = ACTIONS(5693), - [anon_sym_PERCENT_EQ] = ACTIONS(5693), - [anon_sym_PLUS_EQ] = ACTIONS(5693), - [anon_sym_DASH_EQ] = ACTIONS(5693), - [anon_sym_LT_LT_EQ] = ACTIONS(5693), - [anon_sym_GT_GT_EQ] = ACTIONS(5693), - [anon_sym_AMP_EQ] = ACTIONS(5693), - [anon_sym_CARET_EQ] = ACTIONS(5693), - [anon_sym_PIPE_EQ] = ACTIONS(5693), - [anon_sym_and_eq] = ACTIONS(5691), - [anon_sym_or_eq] = ACTIONS(5691), - [anon_sym_xor_eq] = ACTIONS(5691), - [anon_sym_LT_EQ_GT] = ACTIONS(5693), - [anon_sym_or] = ACTIONS(5691), - [anon_sym_and] = ACTIONS(5691), - [anon_sym_bitor] = ACTIONS(5691), - [anon_sym_xor] = ACTIONS(5691), - [anon_sym_bitand] = ACTIONS(5691), - [anon_sym_not_eq] = ACTIONS(5691), - [anon_sym_DASH_DASH] = ACTIONS(5693), - [anon_sym_PLUS_PLUS] = ACTIONS(5693), - [anon_sym_DOT] = ACTIONS(5691), - [anon_sym_DOT_STAR] = ACTIONS(5693), - [anon_sym_DASH_GT] = ACTIONS(5693), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5691), - [anon_sym_decltype] = ACTIONS(5691), + [2248] = { + [sym_identifier] = ACTIONS(5742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5744), + [anon_sym_COMMA] = ACTIONS(5744), + [anon_sym_RPAREN] = ACTIONS(5744), + [anon_sym_LPAREN2] = ACTIONS(5744), + [anon_sym_DASH] = ACTIONS(5742), + [anon_sym_PLUS] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5744), + [anon_sym_SLASH] = ACTIONS(5742), + [anon_sym_PERCENT] = ACTIONS(5744), + [anon_sym_PIPE_PIPE] = ACTIONS(5744), + [anon_sym_AMP_AMP] = ACTIONS(5744), + [anon_sym_PIPE] = ACTIONS(5742), + [anon_sym_CARET] = ACTIONS(5744), + [anon_sym_AMP] = ACTIONS(5742), + [anon_sym_EQ_EQ] = ACTIONS(5744), + [anon_sym_BANG_EQ] = ACTIONS(5744), + [anon_sym_GT] = ACTIONS(5742), + [anon_sym_GT_EQ] = ACTIONS(5744), + [anon_sym_LT_EQ] = ACTIONS(5742), + [anon_sym_LT] = ACTIONS(5742), + [anon_sym_LT_LT] = ACTIONS(5744), + [anon_sym_GT_GT] = ACTIONS(5744), + [anon_sym_SEMI] = ACTIONS(5744), + [anon_sym___extension__] = ACTIONS(5742), + [anon_sym___attribute__] = ACTIONS(5742), + [anon_sym___based] = ACTIONS(5742), + [anon_sym_LBRACE] = ACTIONS(5744), + [anon_sym_RBRACE] = ACTIONS(5744), + [anon_sym_signed] = ACTIONS(5742), + [anon_sym_unsigned] = ACTIONS(5742), + [anon_sym_long] = ACTIONS(5742), + [anon_sym_short] = ACTIONS(5742), + [anon_sym_LBRACK] = ACTIONS(5744), + [anon_sym_RBRACK] = ACTIONS(5744), + [anon_sym_const] = ACTIONS(5742), + [anon_sym_constexpr] = ACTIONS(5742), + [anon_sym_volatile] = ACTIONS(5742), + [anon_sym_restrict] = ACTIONS(5742), + [anon_sym___restrict__] = ACTIONS(5742), + [anon_sym__Atomic] = ACTIONS(5742), + [anon_sym__Noreturn] = ACTIONS(5742), + [anon_sym_noreturn] = ACTIONS(5742), + [anon_sym_mutable] = ACTIONS(5742), + [anon_sym_constinit] = ACTIONS(5742), + [anon_sym_consteval] = ACTIONS(5742), + [sym_primitive_type] = ACTIONS(5742), + [anon_sym_COLON] = ACTIONS(5744), + [anon_sym_QMARK] = ACTIONS(5744), + [anon_sym_LT_EQ_GT] = ACTIONS(5744), + [anon_sym_or] = ACTIONS(5742), + [anon_sym_and] = ACTIONS(5742), + [anon_sym_bitor] = ACTIONS(5742), + [anon_sym_xor] = ACTIONS(5742), + [anon_sym_bitand] = ACTIONS(5742), + [anon_sym_not_eq] = ACTIONS(5742), + [anon_sym_DASH_DASH] = ACTIONS(5744), + [anon_sym_PLUS_PLUS] = ACTIONS(5744), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_DOT_STAR] = ACTIONS(5744), + [anon_sym_DASH_GT] = ACTIONS(5744), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5742), + [anon_sym_decltype] = ACTIONS(5742), + [anon_sym_final] = ACTIONS(5742), + [anon_sym_override] = ACTIONS(5742), + [anon_sym_requires] = ACTIONS(5742), }, - [2429] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5014), - [anon_sym_COMMA] = ACTIONS(5014), - [anon_sym_RPAREN] = ACTIONS(5016), - [anon_sym_LPAREN2] = ACTIONS(5016), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_PERCENT] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5014), - [anon_sym_AMP_AMP] = ACTIONS(5016), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(5023), - [anon_sym_EQ_EQ] = ACTIONS(5014), - [anon_sym_BANG_EQ] = ACTIONS(5014), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5021), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym___extension__] = ACTIONS(5019), - [anon_sym_COLON_COLON] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(5021), - [anon_sym_const] = ACTIONS(5012), - [anon_sym_constexpr] = ACTIONS(5019), - [anon_sym_volatile] = ACTIONS(5019), - [anon_sym_restrict] = ACTIONS(5019), - [anon_sym___restrict__] = ACTIONS(5019), - [anon_sym__Atomic] = ACTIONS(5019), - [anon_sym__Noreturn] = ACTIONS(5019), - [anon_sym_noreturn] = ACTIONS(5019), - [anon_sym_mutable] = ACTIONS(5019), - [anon_sym_constinit] = ACTIONS(5019), - [anon_sym_consteval] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5014), - [anon_sym_STAR_EQ] = ACTIONS(5014), - [anon_sym_SLASH_EQ] = ACTIONS(5014), - [anon_sym_PERCENT_EQ] = ACTIONS(5014), - [anon_sym_PLUS_EQ] = ACTIONS(5014), - [anon_sym_DASH_EQ] = ACTIONS(5014), - [anon_sym_LT_LT_EQ] = ACTIONS(5014), - [anon_sym_GT_GT_EQ] = ACTIONS(5014), - [anon_sym_AMP_EQ] = ACTIONS(5014), - [anon_sym_CARET_EQ] = ACTIONS(5014), - [anon_sym_PIPE_EQ] = ACTIONS(5014), - [anon_sym_LT_EQ_GT] = ACTIONS(5014), - [anon_sym_or] = ACTIONS(5014), - [anon_sym_and] = ACTIONS(5014), - [anon_sym_bitor] = ACTIONS(5014), - [anon_sym_xor] = ACTIONS(5014), - [anon_sym_bitand] = ACTIONS(5014), - [anon_sym_not_eq] = ACTIONS(5014), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_PLUS_PLUS] = ACTIONS(5014), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_DOT_STAR] = ACTIONS(5014), - [anon_sym_DASH_GT] = ACTIONS(5021), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5019), - [anon_sym_decltype] = ACTIONS(5019), - [anon_sym_DASH_GT_STAR] = ACTIONS(5014), + [2249] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_LPAREN2] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5050), + [anon_sym_SLASH] = ACTIONS(5048), + [anon_sym_PERCENT] = ACTIONS(5048), + [anon_sym_PIPE_PIPE] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE] = ACTIONS(5048), + [anon_sym_CARET] = ACTIONS(5048), + [anon_sym_AMP] = ACTIONS(5050), + [anon_sym_EQ_EQ] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5048), + [anon_sym_GT_EQ] = ACTIONS(5048), + [anon_sym_LT_EQ] = ACTIONS(5048), + [anon_sym_LT] = ACTIONS(5048), + [anon_sym_LT_LT] = ACTIONS(5048), + [anon_sym_GT_GT] = ACTIONS(5048), + [anon_sym___extension__] = ACTIONS(5046), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5048), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5046), + [anon_sym_volatile] = ACTIONS(5046), + [anon_sym_restrict] = ACTIONS(5046), + [anon_sym___restrict__] = ACTIONS(5046), + [anon_sym__Atomic] = ACTIONS(5046), + [anon_sym__Noreturn] = ACTIONS(5046), + [anon_sym_noreturn] = ACTIONS(5046), + [anon_sym_mutable] = ACTIONS(5046), + [anon_sym_constinit] = ACTIONS(5046), + [anon_sym_consteval] = ACTIONS(5046), + [anon_sym_QMARK] = ACTIONS(5041), + [anon_sym_STAR_EQ] = ACTIONS(5041), + [anon_sym_SLASH_EQ] = ACTIONS(5041), + [anon_sym_PERCENT_EQ] = ACTIONS(5041), + [anon_sym_PLUS_EQ] = ACTIONS(5041), + [anon_sym_DASH_EQ] = ACTIONS(5041), + [anon_sym_LT_LT_EQ] = ACTIONS(5041), + [anon_sym_GT_GT_EQ] = ACTIONS(5048), + [anon_sym_AMP_EQ] = ACTIONS(5041), + [anon_sym_CARET_EQ] = ACTIONS(5041), + [anon_sym_PIPE_EQ] = ACTIONS(5041), + [anon_sym_and_eq] = ACTIONS(5041), + [anon_sym_or_eq] = ACTIONS(5041), + [anon_sym_xor_eq] = ACTIONS(5041), + [anon_sym_LT_EQ_GT] = ACTIONS(5041), + [anon_sym_or] = ACTIONS(5048), + [anon_sym_and] = ACTIONS(5048), + [anon_sym_bitor] = ACTIONS(5041), + [anon_sym_xor] = ACTIONS(5048), + [anon_sym_bitand] = ACTIONS(5041), + [anon_sym_not_eq] = ACTIONS(5041), + [anon_sym_DASH_DASH] = ACTIONS(5041), + [anon_sym_PLUS_PLUS] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5048), + [anon_sym_DOT_STAR] = ACTIONS(5041), + [anon_sym_DASH_GT] = ACTIONS(5041), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5046), + [anon_sym_decltype] = ACTIONS(5046), + [anon_sym_GT2] = ACTIONS(5043), }, - [2430] = { - [sym_identifier] = ACTIONS(5661), - [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(5661), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5663), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5663), - [anon_sym_LPAREN2] = ACTIONS(5663), - [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(5663), - [anon_sym_AMP_AMP] = ACTIONS(5663), - [anon_sym_PIPE] = ACTIONS(5661), - [anon_sym_CARET] = ACTIONS(5661), - [anon_sym_AMP] = ACTIONS(5661), - [anon_sym_EQ_EQ] = ACTIONS(5663), - [anon_sym_BANG_EQ] = ACTIONS(5663), - [anon_sym_GT] = ACTIONS(5661), - [anon_sym_GT_EQ] = ACTIONS(5663), - [anon_sym_LT_EQ] = ACTIONS(5661), - [anon_sym_LT] = ACTIONS(5661), - [anon_sym_LT_LT] = ACTIONS(5661), - [anon_sym_GT_GT] = ACTIONS(5661), - [anon_sym_SEMI] = ACTIONS(5663), - [anon_sym___attribute__] = ACTIONS(5661), - [anon_sym_LBRACE] = ACTIONS(5663), - [anon_sym_RBRACE] = ACTIONS(5663), - [anon_sym_LBRACK] = ACTIONS(5663), - [anon_sym_RBRACK] = ACTIONS(5663), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5663), - [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(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5663), - [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(5663), - [anon_sym_PLUS_PLUS] = ACTIONS(5663), - [anon_sym_DOT] = ACTIONS(5661), - [anon_sym_DOT_STAR] = ACTIONS(5663), - [anon_sym_DASH_GT] = ACTIONS(5663), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5661), - [anon_sym_decltype] = ACTIONS(5661), + [2250] = { + [sym_identifier] = ACTIONS(5746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(5748), + [anon_sym_RPAREN] = ACTIONS(5748), + [anon_sym_LPAREN2] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(5746), + [anon_sym_PLUS] = ACTIONS(5746), + [anon_sym_STAR] = ACTIONS(5748), + [anon_sym_SLASH] = ACTIONS(5746), + [anon_sym_PERCENT] = ACTIONS(5748), + [anon_sym_PIPE_PIPE] = ACTIONS(5748), + [anon_sym_AMP_AMP] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(5746), + [anon_sym_CARET] = ACTIONS(5748), + [anon_sym_AMP] = ACTIONS(5746), + [anon_sym_EQ_EQ] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5748), + [anon_sym_GT] = ACTIONS(5746), + [anon_sym_GT_EQ] = ACTIONS(5748), + [anon_sym_LT_EQ] = ACTIONS(5746), + [anon_sym_LT] = ACTIONS(5746), + [anon_sym_LT_LT] = ACTIONS(5748), + [anon_sym_GT_GT] = ACTIONS(5748), + [anon_sym_SEMI] = ACTIONS(5748), + [anon_sym___extension__] = ACTIONS(5746), + [anon_sym___attribute__] = ACTIONS(5746), + [anon_sym___based] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_signed] = ACTIONS(5746), + [anon_sym_unsigned] = ACTIONS(5746), + [anon_sym_long] = ACTIONS(5746), + [anon_sym_short] = ACTIONS(5746), + [anon_sym_LBRACK] = ACTIONS(5748), + [anon_sym_RBRACK] = ACTIONS(5748), + [anon_sym_const] = ACTIONS(5746), + [anon_sym_constexpr] = ACTIONS(5746), + [anon_sym_volatile] = ACTIONS(5746), + [anon_sym_restrict] = ACTIONS(5746), + [anon_sym___restrict__] = ACTIONS(5746), + [anon_sym__Atomic] = ACTIONS(5746), + [anon_sym__Noreturn] = ACTIONS(5746), + [anon_sym_noreturn] = ACTIONS(5746), + [anon_sym_mutable] = ACTIONS(5746), + [anon_sym_constinit] = ACTIONS(5746), + [anon_sym_consteval] = ACTIONS(5746), + [sym_primitive_type] = ACTIONS(5746), + [anon_sym_COLON] = ACTIONS(5748), + [anon_sym_QMARK] = ACTIONS(5748), + [anon_sym_LT_EQ_GT] = ACTIONS(5748), + [anon_sym_or] = ACTIONS(5746), + [anon_sym_and] = ACTIONS(5746), + [anon_sym_bitor] = ACTIONS(5746), + [anon_sym_xor] = ACTIONS(5746), + [anon_sym_bitand] = ACTIONS(5746), + [anon_sym_not_eq] = ACTIONS(5746), + [anon_sym_DASH_DASH] = ACTIONS(5748), + [anon_sym_PLUS_PLUS] = ACTIONS(5748), + [anon_sym_DOT] = ACTIONS(5746), + [anon_sym_DOT_STAR] = ACTIONS(5748), + [anon_sym_DASH_GT] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5746), + [anon_sym_decltype] = ACTIONS(5746), + [anon_sym_final] = ACTIONS(5746), + [anon_sym_override] = ACTIONS(5746), + [anon_sym_requires] = ACTIONS(5746), }, - [2431] = { - [sym_template_argument_list] = STATE(1935), - [sym_identifier] = ACTIONS(5338), - [anon_sym_LPAREN2] = ACTIONS(4163), - [anon_sym_TILDE] = ACTIONS(4163), - [anon_sym_STAR] = ACTIONS(4163), - [anon_sym_PIPE_PIPE] = ACTIONS(4163), - [anon_sym_AMP_AMP] = ACTIONS(4163), - [anon_sym_AMP] = ACTIONS(5338), - [anon_sym_LT] = ACTIONS(5913), - [anon_sym___extension__] = ACTIONS(5338), - [anon_sym_extern] = ACTIONS(5338), - [anon_sym___attribute__] = ACTIONS(5338), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4163), - [anon_sym___declspec] = ACTIONS(5338), - [anon_sym___based] = ACTIONS(5338), - [anon_sym___cdecl] = ACTIONS(5338), - [anon_sym___clrcall] = ACTIONS(5338), - [anon_sym___stdcall] = ACTIONS(5338), - [anon_sym___fastcall] = ACTIONS(5338), - [anon_sym___thiscall] = ACTIONS(5338), - [anon_sym___vectorcall] = ACTIONS(5338), - [anon_sym_signed] = ACTIONS(5338), - [anon_sym_unsigned] = ACTIONS(5338), - [anon_sym_long] = ACTIONS(5338), - [anon_sym_short] = ACTIONS(5338), - [anon_sym_LBRACK] = ACTIONS(5338), - [anon_sym_static] = ACTIONS(5338), - [anon_sym_register] = ACTIONS(5338), - [anon_sym_inline] = ACTIONS(5338), - [anon_sym___inline] = ACTIONS(5338), - [anon_sym___inline__] = ACTIONS(5338), - [anon_sym___forceinline] = ACTIONS(5338), - [anon_sym_thread_local] = ACTIONS(5338), - [anon_sym___thread] = ACTIONS(5338), - [anon_sym_const] = ACTIONS(5338), - [anon_sym_constexpr] = ACTIONS(5338), - [anon_sym_volatile] = ACTIONS(5338), - [anon_sym_restrict] = ACTIONS(5338), - [anon_sym___restrict__] = ACTIONS(5338), - [anon_sym__Atomic] = ACTIONS(5338), - [anon_sym__Noreturn] = ACTIONS(5338), - [anon_sym_noreturn] = ACTIONS(5338), - [anon_sym_mutable] = ACTIONS(5338), - [anon_sym_constinit] = ACTIONS(5338), - [anon_sym_consteval] = ACTIONS(5338), - [sym_primitive_type] = ACTIONS(5338), - [anon_sym_enum] = ACTIONS(5338), - [anon_sym_class] = ACTIONS(5338), - [anon_sym_struct] = ACTIONS(5338), - [anon_sym_union] = ACTIONS(5338), - [anon_sym_or] = ACTIONS(5338), - [anon_sym_and] = ACTIONS(5338), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5338), - [anon_sym_decltype] = ACTIONS(5338), - [anon_sym_virtual] = ACTIONS(5338), - [anon_sym_alignas] = ACTIONS(5338), - [anon_sym_explicit] = ACTIONS(5338), - [anon_sym_typename] = ACTIONS(5338), - [anon_sym_template] = ACTIONS(5338), - [anon_sym_operator] = ACTIONS(5338), - [anon_sym_friend] = ACTIONS(5338), - [anon_sym_using] = ACTIONS(5338), - [anon_sym_concept] = ACTIONS(5338), + [2251] = { + [sym_identifier] = ACTIONS(5750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5752), + [anon_sym_RPAREN] = ACTIONS(5752), + [anon_sym_LPAREN2] = ACTIONS(5752), + [anon_sym_DASH] = ACTIONS(5750), + [anon_sym_PLUS] = ACTIONS(5750), + [anon_sym_STAR] = ACTIONS(5752), + [anon_sym_SLASH] = ACTIONS(5750), + [anon_sym_PERCENT] = ACTIONS(5752), + [anon_sym_PIPE_PIPE] = ACTIONS(5752), + [anon_sym_AMP_AMP] = ACTIONS(5752), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_CARET] = ACTIONS(5752), + [anon_sym_AMP] = ACTIONS(5750), + [anon_sym_EQ_EQ] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5752), + [anon_sym_GT] = ACTIONS(5750), + [anon_sym_GT_EQ] = ACTIONS(5752), + [anon_sym_LT_EQ] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(5750), + [anon_sym_LT_LT] = ACTIONS(5752), + [anon_sym_GT_GT] = ACTIONS(5752), + [anon_sym_SEMI] = ACTIONS(5752), + [anon_sym___extension__] = ACTIONS(5750), + [anon_sym___attribute__] = ACTIONS(5750), + [anon_sym___based] = ACTIONS(5750), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_RBRACE] = ACTIONS(5752), + [anon_sym_signed] = ACTIONS(5750), + [anon_sym_unsigned] = ACTIONS(5750), + [anon_sym_long] = ACTIONS(5750), + [anon_sym_short] = ACTIONS(5750), + [anon_sym_LBRACK] = ACTIONS(5752), + [anon_sym_RBRACK] = ACTIONS(5752), + [anon_sym_const] = ACTIONS(5750), + [anon_sym_constexpr] = ACTIONS(5750), + [anon_sym_volatile] = ACTIONS(5750), + [anon_sym_restrict] = ACTIONS(5750), + [anon_sym___restrict__] = ACTIONS(5750), + [anon_sym__Atomic] = ACTIONS(5750), + [anon_sym__Noreturn] = ACTIONS(5750), + [anon_sym_noreturn] = ACTIONS(5750), + [anon_sym_mutable] = ACTIONS(5750), + [anon_sym_constinit] = ACTIONS(5750), + [anon_sym_consteval] = ACTIONS(5750), + [sym_primitive_type] = ACTIONS(5750), + [anon_sym_COLON] = ACTIONS(5752), + [anon_sym_QMARK] = ACTIONS(5752), + [anon_sym_LT_EQ_GT] = ACTIONS(5752), + [anon_sym_or] = ACTIONS(5750), + [anon_sym_and] = ACTIONS(5750), + [anon_sym_bitor] = ACTIONS(5750), + [anon_sym_xor] = ACTIONS(5750), + [anon_sym_bitand] = ACTIONS(5750), + [anon_sym_not_eq] = ACTIONS(5750), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5750), + [anon_sym_DOT_STAR] = ACTIONS(5752), + [anon_sym_DASH_GT] = ACTIONS(5752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5750), + [anon_sym_decltype] = ACTIONS(5750), + [anon_sym_final] = ACTIONS(5750), + [anon_sym_override] = ACTIONS(5750), + [anon_sym_requires] = ACTIONS(5750), }, - [2432] = { - [sym_identifier] = ACTIONS(5703), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5705), - [anon_sym_COMMA] = ACTIONS(5705), - [anon_sym_RPAREN] = ACTIONS(5705), - [aux_sym_preproc_if_token2] = ACTIONS(5705), - [aux_sym_preproc_else_token1] = ACTIONS(5705), - [aux_sym_preproc_elif_token1] = ACTIONS(5703), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5705), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5705), - [anon_sym_LPAREN2] = ACTIONS(5705), - [anon_sym_DASH] = ACTIONS(5703), - [anon_sym_PLUS] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(5703), - [anon_sym_SLASH] = ACTIONS(5703), - [anon_sym_PERCENT] = ACTIONS(5703), - [anon_sym_PIPE_PIPE] = ACTIONS(5705), - [anon_sym_AMP_AMP] = ACTIONS(5705), - [anon_sym_PIPE] = ACTIONS(5703), - [anon_sym_CARET] = ACTIONS(5703), - [anon_sym_AMP] = ACTIONS(5703), - [anon_sym_EQ_EQ] = ACTIONS(5705), - [anon_sym_BANG_EQ] = ACTIONS(5705), - [anon_sym_GT] = ACTIONS(5703), - [anon_sym_GT_EQ] = ACTIONS(5705), - [anon_sym_LT_EQ] = ACTIONS(5703), - [anon_sym_LT] = ACTIONS(5703), - [anon_sym_LT_LT] = ACTIONS(5703), - [anon_sym_GT_GT] = ACTIONS(5703), - [anon_sym_SEMI] = ACTIONS(5705), - [anon_sym___attribute__] = ACTIONS(5703), - [anon_sym_LBRACE] = ACTIONS(5705), - [anon_sym_RBRACE] = ACTIONS(5705), - [anon_sym_LBRACK] = ACTIONS(5705), - [anon_sym_RBRACK] = ACTIONS(5705), - [anon_sym_EQ] = ACTIONS(5703), - [anon_sym_COLON] = ACTIONS(5705), - [anon_sym_QMARK] = ACTIONS(5705), - [anon_sym_STAR_EQ] = ACTIONS(5705), - [anon_sym_SLASH_EQ] = ACTIONS(5705), - [anon_sym_PERCENT_EQ] = ACTIONS(5705), - [anon_sym_PLUS_EQ] = ACTIONS(5705), - [anon_sym_DASH_EQ] = ACTIONS(5705), - [anon_sym_LT_LT_EQ] = ACTIONS(5705), - [anon_sym_GT_GT_EQ] = ACTIONS(5705), - [anon_sym_AMP_EQ] = ACTIONS(5705), - [anon_sym_CARET_EQ] = ACTIONS(5705), - [anon_sym_PIPE_EQ] = ACTIONS(5705), - [anon_sym_and_eq] = ACTIONS(5703), - [anon_sym_or_eq] = ACTIONS(5703), - [anon_sym_xor_eq] = ACTIONS(5703), - [anon_sym_LT_EQ_GT] = ACTIONS(5705), - [anon_sym_or] = ACTIONS(5703), - [anon_sym_and] = ACTIONS(5703), - [anon_sym_bitor] = ACTIONS(5703), - [anon_sym_xor] = ACTIONS(5703), - [anon_sym_bitand] = ACTIONS(5703), - [anon_sym_not_eq] = ACTIONS(5703), - [anon_sym_DASH_DASH] = ACTIONS(5705), - [anon_sym_PLUS_PLUS] = ACTIONS(5705), - [anon_sym_DOT] = ACTIONS(5703), - [anon_sym_DOT_STAR] = ACTIONS(5705), - [anon_sym_DASH_GT] = ACTIONS(5705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5703), - [anon_sym_decltype] = ACTIONS(5703), + [2252] = { + [sym_identifier] = ACTIONS(5754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5756), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_RPAREN] = ACTIONS(5756), + [anon_sym_LPAREN2] = ACTIONS(5756), + [anon_sym_DASH] = ACTIONS(5754), + [anon_sym_PLUS] = ACTIONS(5754), + [anon_sym_STAR] = ACTIONS(5756), + [anon_sym_SLASH] = ACTIONS(5754), + [anon_sym_PERCENT] = ACTIONS(5756), + [anon_sym_PIPE_PIPE] = ACTIONS(5756), + [anon_sym_AMP_AMP] = ACTIONS(5756), + [anon_sym_PIPE] = ACTIONS(5754), + [anon_sym_CARET] = ACTIONS(5756), + [anon_sym_AMP] = ACTIONS(5754), + [anon_sym_EQ_EQ] = ACTIONS(5756), + [anon_sym_BANG_EQ] = ACTIONS(5756), + [anon_sym_GT] = ACTIONS(5754), + [anon_sym_GT_EQ] = ACTIONS(5756), + [anon_sym_LT_EQ] = ACTIONS(5754), + [anon_sym_LT] = ACTIONS(5754), + [anon_sym_LT_LT] = ACTIONS(5756), + [anon_sym_GT_GT] = ACTIONS(5756), + [anon_sym_SEMI] = ACTIONS(5756), + [anon_sym___extension__] = ACTIONS(5754), + [anon_sym___attribute__] = ACTIONS(5754), + [anon_sym___based] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(5756), + [anon_sym_signed] = ACTIONS(5754), + [anon_sym_unsigned] = ACTIONS(5754), + [anon_sym_long] = ACTIONS(5754), + [anon_sym_short] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(5756), + [anon_sym_RBRACK] = ACTIONS(5756), + [anon_sym_const] = ACTIONS(5754), + [anon_sym_constexpr] = ACTIONS(5754), + [anon_sym_volatile] = ACTIONS(5754), + [anon_sym_restrict] = ACTIONS(5754), + [anon_sym___restrict__] = ACTIONS(5754), + [anon_sym__Atomic] = ACTIONS(5754), + [anon_sym__Noreturn] = ACTIONS(5754), + [anon_sym_noreturn] = ACTIONS(5754), + [anon_sym_mutable] = ACTIONS(5754), + [anon_sym_constinit] = ACTIONS(5754), + [anon_sym_consteval] = ACTIONS(5754), + [sym_primitive_type] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5756), + [anon_sym_QMARK] = ACTIONS(5756), + [anon_sym_LT_EQ_GT] = ACTIONS(5756), + [anon_sym_or] = ACTIONS(5754), + [anon_sym_and] = ACTIONS(5754), + [anon_sym_bitor] = ACTIONS(5754), + [anon_sym_xor] = ACTIONS(5754), + [anon_sym_bitand] = ACTIONS(5754), + [anon_sym_not_eq] = ACTIONS(5754), + [anon_sym_DASH_DASH] = ACTIONS(5756), + [anon_sym_PLUS_PLUS] = ACTIONS(5756), + [anon_sym_DOT] = ACTIONS(5754), + [anon_sym_DOT_STAR] = ACTIONS(5756), + [anon_sym_DASH_GT] = ACTIONS(5756), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5754), + [anon_sym_decltype] = ACTIONS(5754), + [anon_sym_final] = ACTIONS(5754), + [anon_sym_override] = ACTIONS(5754), + [anon_sym_requires] = ACTIONS(5754), }, - [2433] = { - [sym_identifier] = ACTIONS(5661), - [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(5661), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5663), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5663), - [anon_sym_LPAREN2] = ACTIONS(5663), - [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(5663), - [anon_sym_AMP_AMP] = ACTIONS(5663), - [anon_sym_PIPE] = ACTIONS(5661), - [anon_sym_CARET] = ACTIONS(5661), - [anon_sym_AMP] = ACTIONS(5661), - [anon_sym_EQ_EQ] = ACTIONS(5663), - [anon_sym_BANG_EQ] = ACTIONS(5663), - [anon_sym_GT] = ACTIONS(5661), - [anon_sym_GT_EQ] = ACTIONS(5663), - [anon_sym_LT_EQ] = ACTIONS(5661), - [anon_sym_LT] = ACTIONS(5661), - [anon_sym_LT_LT] = ACTIONS(5661), - [anon_sym_GT_GT] = ACTIONS(5661), - [anon_sym_SEMI] = ACTIONS(5663), - [anon_sym___attribute__] = ACTIONS(5661), - [anon_sym_LBRACE] = ACTIONS(5663), - [anon_sym_RBRACE] = ACTIONS(5663), - [anon_sym_LBRACK] = ACTIONS(5663), - [anon_sym_RBRACK] = ACTIONS(5663), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_COLON] = ACTIONS(5663), - [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(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5663), - [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(5663), - [anon_sym_PLUS_PLUS] = ACTIONS(5663), - [anon_sym_DOT] = ACTIONS(5661), - [anon_sym_DOT_STAR] = ACTIONS(5663), - [anon_sym_DASH_GT] = ACTIONS(5663), + [2253] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5753), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5661), - [anon_sym_decltype] = ACTIONS(5661), - }, - [2434] = { - [sym_identifier] = ACTIONS(5981), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5983), - [anon_sym_COMMA] = ACTIONS(5983), - [anon_sym_RPAREN] = ACTIONS(5983), - [aux_sym_preproc_if_token2] = ACTIONS(5983), - [aux_sym_preproc_else_token1] = ACTIONS(5983), - [aux_sym_preproc_elif_token1] = ACTIONS(5981), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5983), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5983), - [anon_sym_LPAREN2] = ACTIONS(5983), - [anon_sym_DASH] = ACTIONS(5981), - [anon_sym_PLUS] = ACTIONS(5981), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5981), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_PIPE_PIPE] = ACTIONS(5983), - [anon_sym_AMP_AMP] = ACTIONS(5983), - [anon_sym_PIPE] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5981), - [anon_sym_AMP] = ACTIONS(5981), - [anon_sym_EQ_EQ] = ACTIONS(5983), - [anon_sym_BANG_EQ] = ACTIONS(5983), - [anon_sym_GT] = ACTIONS(5981), - [anon_sym_GT_EQ] = ACTIONS(5983), - [anon_sym_LT_EQ] = ACTIONS(5981), - [anon_sym_LT] = ACTIONS(5981), - [anon_sym_LT_LT] = ACTIONS(5981), - [anon_sym_GT_GT] = ACTIONS(5981), - [anon_sym_SEMI] = ACTIONS(5983), - [anon_sym___attribute__] = ACTIONS(5981), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5983), - [anon_sym_LBRACE] = ACTIONS(5983), - [anon_sym_RBRACE] = ACTIONS(5983), - [anon_sym_LBRACK] = ACTIONS(5981), - [anon_sym_RBRACK] = ACTIONS(5983), - [anon_sym_EQ] = ACTIONS(5981), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_QMARK] = ACTIONS(5983), - [anon_sym_STAR_EQ] = ACTIONS(5983), - [anon_sym_SLASH_EQ] = ACTIONS(5983), - [anon_sym_PERCENT_EQ] = ACTIONS(5983), - [anon_sym_PLUS_EQ] = ACTIONS(5983), - [anon_sym_DASH_EQ] = ACTIONS(5983), - [anon_sym_LT_LT_EQ] = ACTIONS(5983), - [anon_sym_GT_GT_EQ] = ACTIONS(5983), - [anon_sym_AMP_EQ] = ACTIONS(5983), - [anon_sym_CARET_EQ] = ACTIONS(5983), - [anon_sym_PIPE_EQ] = ACTIONS(5983), - [anon_sym_and_eq] = ACTIONS(5981), - [anon_sym_or_eq] = ACTIONS(5981), - [anon_sym_xor_eq] = ACTIONS(5981), - [anon_sym_LT_EQ_GT] = ACTIONS(5983), - [anon_sym_or] = ACTIONS(5981), - [anon_sym_and] = ACTIONS(5981), - [anon_sym_bitor] = ACTIONS(5981), - [anon_sym_xor] = ACTIONS(5981), - [anon_sym_bitand] = ACTIONS(5981), - [anon_sym_not_eq] = ACTIONS(5981), - [anon_sym_DASH_DASH] = ACTIONS(5983), - [anon_sym_PLUS_PLUS] = ACTIONS(5983), - [anon_sym_DOT] = ACTIONS(5981), - [anon_sym_DOT_STAR] = ACTIONS(5983), - [anon_sym_DASH_GT] = ACTIONS(5983), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5981), - }, - [2435] = { - [sym_identifier] = ACTIONS(5985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5987), - [anon_sym_COMMA] = ACTIONS(5987), - [anon_sym_RPAREN] = ACTIONS(5987), - [aux_sym_preproc_if_token2] = ACTIONS(5987), - [aux_sym_preproc_else_token1] = ACTIONS(5987), - [aux_sym_preproc_elif_token1] = ACTIONS(5985), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5987), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5987), - [anon_sym_LPAREN2] = ACTIONS(5987), - [anon_sym_DASH] = ACTIONS(5985), - [anon_sym_PLUS] = ACTIONS(5985), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_SLASH] = ACTIONS(5985), - [anon_sym_PERCENT] = ACTIONS(5985), - [anon_sym_PIPE_PIPE] = ACTIONS(5987), - [anon_sym_AMP_AMP] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5985), - [anon_sym_CARET] = ACTIONS(5985), - [anon_sym_AMP] = ACTIONS(5985), - [anon_sym_EQ_EQ] = ACTIONS(5987), - [anon_sym_BANG_EQ] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5985), - [anon_sym_GT_EQ] = ACTIONS(5987), - [anon_sym_LT_EQ] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(5985), - [anon_sym_LT_LT] = ACTIONS(5985), - [anon_sym_GT_GT] = ACTIONS(5985), - [anon_sym_SEMI] = ACTIONS(5987), - [anon_sym___attribute__] = ACTIONS(5985), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5987), - [anon_sym_LBRACE] = ACTIONS(5987), - [anon_sym_RBRACE] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(5985), - [anon_sym_RBRACK] = ACTIONS(5987), - [anon_sym_EQ] = ACTIONS(5985), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_QMARK] = ACTIONS(5987), - [anon_sym_STAR_EQ] = ACTIONS(5987), - [anon_sym_SLASH_EQ] = ACTIONS(5987), - [anon_sym_PERCENT_EQ] = ACTIONS(5987), - [anon_sym_PLUS_EQ] = ACTIONS(5987), - [anon_sym_DASH_EQ] = ACTIONS(5987), - [anon_sym_LT_LT_EQ] = ACTIONS(5987), - [anon_sym_GT_GT_EQ] = ACTIONS(5987), - [anon_sym_AMP_EQ] = ACTIONS(5987), - [anon_sym_CARET_EQ] = ACTIONS(5987), - [anon_sym_PIPE_EQ] = ACTIONS(5987), - [anon_sym_and_eq] = ACTIONS(5985), - [anon_sym_or_eq] = ACTIONS(5985), - [anon_sym_xor_eq] = ACTIONS(5985), - [anon_sym_LT_EQ_GT] = ACTIONS(5987), - [anon_sym_or] = ACTIONS(5985), - [anon_sym_and] = ACTIONS(5985), - [anon_sym_bitor] = ACTIONS(5985), - [anon_sym_xor] = ACTIONS(5985), - [anon_sym_bitand] = ACTIONS(5985), - [anon_sym_not_eq] = ACTIONS(5985), - [anon_sym_DASH_DASH] = ACTIONS(5987), - [anon_sym_PLUS_PLUS] = ACTIONS(5987), - [anon_sym_DOT] = ACTIONS(5985), - [anon_sym_DOT_STAR] = ACTIONS(5987), - [anon_sym_DASH_GT] = ACTIONS(5987), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5985), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2436] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5989), - [anon_sym_COMMA] = ACTIONS(5989), - [anon_sym_RPAREN] = ACTIONS(5989), - [anon_sym_LPAREN2] = ACTIONS(5989), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5989), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_PERCENT] = ACTIONS(5989), - [anon_sym_PIPE_PIPE] = ACTIONS(5989), - [anon_sym_AMP_AMP] = ACTIONS(5989), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_CARET] = ACTIONS(5989), - [anon_sym_AMP] = ACTIONS(5991), - [anon_sym_EQ_EQ] = ACTIONS(5989), - [anon_sym_BANG_EQ] = ACTIONS(5989), - [anon_sym_GT] = ACTIONS(5991), - [anon_sym_GT_EQ] = ACTIONS(5989), - [anon_sym_LT_EQ] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(5991), - [anon_sym_LT_LT] = ACTIONS(5989), - [anon_sym_GT_GT] = ACTIONS(5989), - [anon_sym_SEMI] = ACTIONS(5989), - [anon_sym___extension__] = ACTIONS(5989), - [anon_sym___attribute__] = ACTIONS(5989), - [anon_sym_LBRACE] = ACTIONS(5989), - [anon_sym_RBRACE] = ACTIONS(5989), - [anon_sym_signed] = ACTIONS(5907), - [anon_sym_unsigned] = ACTIONS(5907), - [anon_sym_long] = ACTIONS(5907), - [anon_sym_short] = ACTIONS(5907), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5989), - [anon_sym_const] = ACTIONS(5991), - [anon_sym_constexpr] = ACTIONS(5989), - [anon_sym_volatile] = ACTIONS(5989), - [anon_sym_restrict] = ACTIONS(5989), - [anon_sym___restrict__] = ACTIONS(5989), - [anon_sym__Atomic] = ACTIONS(5989), - [anon_sym__Noreturn] = ACTIONS(5989), - [anon_sym_noreturn] = ACTIONS(5989), - [anon_sym_mutable] = ACTIONS(5989), - [anon_sym_constinit] = ACTIONS(5989), - [anon_sym_consteval] = ACTIONS(5989), - [anon_sym_COLON] = ACTIONS(5989), - [anon_sym_QMARK] = ACTIONS(5989), - [anon_sym_LT_EQ_GT] = ACTIONS(5989), - [anon_sym_or] = ACTIONS(5989), - [anon_sym_and] = ACTIONS(5989), - [anon_sym_bitor] = ACTIONS(5989), - [anon_sym_xor] = ACTIONS(5989), - [anon_sym_bitand] = ACTIONS(5989), - [anon_sym_not_eq] = ACTIONS(5989), - [anon_sym_DASH_DASH] = ACTIONS(5989), - [anon_sym_PLUS_PLUS] = ACTIONS(5989), - [anon_sym_DOT] = ACTIONS(5991), - [anon_sym_DOT_STAR] = ACTIONS(5989), - [anon_sym_DASH_GT] = ACTIONS(5989), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5989), - [anon_sym_decltype] = ACTIONS(5989), - [anon_sym_final] = ACTIONS(5989), - [anon_sym_override] = ACTIONS(5989), - [anon_sym_requires] = ACTIONS(5989), + [2254] = { + [sym_catch_clause] = STATE(2207), + [aux_sym_constructor_try_statement_repeat1] = STATE(2207), + [sym_identifier] = ACTIONS(2838), + [aux_sym_preproc_def_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token2] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), + [sym_preproc_directive] = ACTIONS(2838), + [anon_sym_LPAREN2] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2838), + [anon_sym_typedef] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym___attribute__] = ACTIONS(2838), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), + [anon_sym___declspec] = ACTIONS(2838), + [anon_sym___based] = ACTIONS(2838), + [anon_sym_signed] = ACTIONS(2838), + [anon_sym_unsigned] = ACTIONS(2838), + [anon_sym_long] = ACTIONS(2838), + [anon_sym_short] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_register] = ACTIONS(2838), + [anon_sym_inline] = ACTIONS(2838), + [anon_sym___inline] = ACTIONS(2838), + [anon_sym___inline__] = ACTIONS(2838), + [anon_sym___forceinline] = ACTIONS(2838), + [anon_sym_thread_local] = ACTIONS(2838), + [anon_sym___thread] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_constexpr] = ACTIONS(2838), + [anon_sym_volatile] = ACTIONS(2838), + [anon_sym_restrict] = ACTIONS(2838), + [anon_sym___restrict__] = ACTIONS(2838), + [anon_sym__Atomic] = ACTIONS(2838), + [anon_sym__Noreturn] = ACTIONS(2838), + [anon_sym_noreturn] = ACTIONS(2838), + [anon_sym_mutable] = ACTIONS(2838), + [anon_sym_constinit] = ACTIONS(2838), + [anon_sym_consteval] = ACTIONS(2838), + [sym_primitive_type] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_class] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2838), + [anon_sym_decltype] = ACTIONS(2838), + [anon_sym_virtual] = ACTIONS(2838), + [anon_sym_alignas] = ACTIONS(2838), + [anon_sym_explicit] = ACTIONS(2838), + [anon_sym_typename] = ACTIONS(2838), + [anon_sym_template] = ACTIONS(2838), + [anon_sym_operator] = ACTIONS(2838), + [anon_sym_friend] = ACTIONS(2838), + [anon_sym_public] = ACTIONS(2838), + [anon_sym_private] = ACTIONS(2838), + [anon_sym_protected] = ACTIONS(2838), + [anon_sym_using] = ACTIONS(2838), + [anon_sym_static_assert] = ACTIONS(2838), + [anon_sym_catch] = ACTIONS(5599), }, - [2437] = { - [sym_identifier] = ACTIONS(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5263), - [anon_sym_COMMA] = ACTIONS(5263), - [aux_sym_preproc_if_token2] = ACTIONS(5263), - [aux_sym_preproc_else_token1] = ACTIONS(5263), - [aux_sym_preproc_elif_token1] = ACTIONS(5263), - [anon_sym_LPAREN2] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5261), - [anon_sym_STAR] = ACTIONS(5261), - [anon_sym_SLASH] = ACTIONS(5261), - [anon_sym_PERCENT] = ACTIONS(5261), - [anon_sym_PIPE_PIPE] = ACTIONS(5263), - [anon_sym_AMP_AMP] = ACTIONS(5263), - [anon_sym_PIPE] = ACTIONS(5261), - [anon_sym_CARET] = ACTIONS(5261), - [anon_sym_AMP] = ACTIONS(5261), - [anon_sym_EQ_EQ] = ACTIONS(5263), - [anon_sym_BANG_EQ] = ACTIONS(5263), - [anon_sym_GT] = ACTIONS(5261), - [anon_sym_GT_EQ] = ACTIONS(5263), - [anon_sym_LT_EQ] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(5261), - [anon_sym_LT_LT] = ACTIONS(5261), - [anon_sym_GT_GT] = ACTIONS(5261), - [anon_sym_LBRACK] = ACTIONS(5263), - [anon_sym_EQ] = ACTIONS(5261), - [anon_sym_QMARK] = ACTIONS(5263), - [anon_sym_STAR_EQ] = ACTIONS(5263), - [anon_sym_SLASH_EQ] = ACTIONS(5263), - [anon_sym_PERCENT_EQ] = ACTIONS(5263), - [anon_sym_PLUS_EQ] = ACTIONS(5263), - [anon_sym_DASH_EQ] = ACTIONS(5263), - [anon_sym_LT_LT_EQ] = ACTIONS(5263), - [anon_sym_GT_GT_EQ] = ACTIONS(5263), - [anon_sym_AMP_EQ] = ACTIONS(5263), - [anon_sym_CARET_EQ] = ACTIONS(5263), - [anon_sym_PIPE_EQ] = ACTIONS(5263), - [anon_sym_and_eq] = ACTIONS(5261), - [anon_sym_or_eq] = ACTIONS(5261), - [anon_sym_xor_eq] = ACTIONS(5261), - [anon_sym_LT_EQ_GT] = ACTIONS(5263), - [anon_sym_or] = ACTIONS(5261), - [anon_sym_and] = ACTIONS(5261), - [anon_sym_bitor] = ACTIONS(5261), - [anon_sym_xor] = ACTIONS(5261), - [anon_sym_bitand] = ACTIONS(5261), - [anon_sym_not_eq] = ACTIONS(5261), - [anon_sym_DASH_DASH] = ACTIONS(5263), - [anon_sym_PLUS_PLUS] = ACTIONS(5263), - [anon_sym_DOT] = ACTIONS(5261), - [anon_sym_DOT_STAR] = ACTIONS(5263), - [anon_sym_DASH_GT] = ACTIONS(5263), - [anon_sym_L_DQUOTE] = ACTIONS(5263), - [anon_sym_u_DQUOTE] = ACTIONS(5263), - [anon_sym_U_DQUOTE] = ACTIONS(5263), - [anon_sym_u8_DQUOTE] = ACTIONS(5263), - [anon_sym_DQUOTE] = ACTIONS(5263), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5263), - [anon_sym_LR_DQUOTE] = ACTIONS(5263), - [anon_sym_uR_DQUOTE] = ACTIONS(5263), - [anon_sym_UR_DQUOTE] = ACTIONS(5263), - [anon_sym_u8R_DQUOTE] = ACTIONS(5263), - [sym_literal_suffix] = ACTIONS(5261), + [2255] = { + [sym_identifier] = ACTIONS(5758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5760), + [anon_sym_COMMA] = ACTIONS(5760), + [anon_sym_RPAREN] = ACTIONS(5760), + [anon_sym_LPAREN2] = ACTIONS(5760), + [anon_sym_DASH] = ACTIONS(5758), + [anon_sym_PLUS] = ACTIONS(5758), + [anon_sym_STAR] = ACTIONS(5760), + [anon_sym_SLASH] = ACTIONS(5758), + [anon_sym_PERCENT] = ACTIONS(5760), + [anon_sym_PIPE_PIPE] = ACTIONS(5760), + [anon_sym_AMP_AMP] = ACTIONS(5760), + [anon_sym_PIPE] = ACTIONS(5758), + [anon_sym_CARET] = ACTIONS(5760), + [anon_sym_AMP] = ACTIONS(5758), + [anon_sym_EQ_EQ] = ACTIONS(5760), + [anon_sym_BANG_EQ] = ACTIONS(5760), + [anon_sym_GT] = ACTIONS(5758), + [anon_sym_GT_EQ] = ACTIONS(5760), + [anon_sym_LT_EQ] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5758), + [anon_sym_LT_LT] = ACTIONS(5760), + [anon_sym_GT_GT] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(5760), + [anon_sym___extension__] = ACTIONS(5758), + [anon_sym___attribute__] = ACTIONS(5758), + [anon_sym___based] = ACTIONS(5758), + [anon_sym_LBRACE] = ACTIONS(5760), + [anon_sym_RBRACE] = ACTIONS(5760), + [anon_sym_signed] = ACTIONS(5758), + [anon_sym_unsigned] = ACTIONS(5758), + [anon_sym_long] = ACTIONS(5758), + [anon_sym_short] = ACTIONS(5758), + [anon_sym_LBRACK] = ACTIONS(5760), + [anon_sym_RBRACK] = ACTIONS(5760), + [anon_sym_const] = ACTIONS(5758), + [anon_sym_constexpr] = ACTIONS(5758), + [anon_sym_volatile] = ACTIONS(5758), + [anon_sym_restrict] = ACTIONS(5758), + [anon_sym___restrict__] = ACTIONS(5758), + [anon_sym__Atomic] = ACTIONS(5758), + [anon_sym__Noreturn] = ACTIONS(5758), + [anon_sym_noreturn] = ACTIONS(5758), + [anon_sym_mutable] = ACTIONS(5758), + [anon_sym_constinit] = ACTIONS(5758), + [anon_sym_consteval] = ACTIONS(5758), + [sym_primitive_type] = ACTIONS(5758), + [anon_sym_COLON] = ACTIONS(5760), + [anon_sym_QMARK] = ACTIONS(5760), + [anon_sym_LT_EQ_GT] = ACTIONS(5760), + [anon_sym_or] = ACTIONS(5758), + [anon_sym_and] = ACTIONS(5758), + [anon_sym_bitor] = ACTIONS(5758), + [anon_sym_xor] = ACTIONS(5758), + [anon_sym_bitand] = ACTIONS(5758), + [anon_sym_not_eq] = ACTIONS(5758), + [anon_sym_DASH_DASH] = ACTIONS(5760), + [anon_sym_PLUS_PLUS] = ACTIONS(5760), + [anon_sym_DOT] = ACTIONS(5758), + [anon_sym_DOT_STAR] = ACTIONS(5760), + [anon_sym_DASH_GT] = ACTIONS(5760), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5758), + [anon_sym_decltype] = ACTIONS(5758), + [anon_sym_final] = ACTIONS(5758), + [anon_sym_override] = ACTIONS(5758), + [anon_sym_requires] = ACTIONS(5758), }, - [2438] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5993), - [anon_sym_COMMA] = ACTIONS(5993), - [anon_sym_RPAREN] = ACTIONS(5993), - [anon_sym_LPAREN2] = ACTIONS(5993), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5993), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_PERCENT] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_EQ_EQ] = ACTIONS(5993), - [anon_sym_BANG_EQ] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5995), - [anon_sym_GT_EQ] = ACTIONS(5993), - [anon_sym_LT_EQ] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5993), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym___extension__] = ACTIONS(5993), - [anon_sym___attribute__] = ACTIONS(5993), - [anon_sym_LBRACE] = ACTIONS(5993), - [anon_sym_RBRACE] = ACTIONS(5993), - [anon_sym_signed] = ACTIONS(5907), - [anon_sym_unsigned] = ACTIONS(5907), - [anon_sym_long] = ACTIONS(5907), - [anon_sym_short] = ACTIONS(5907), - [anon_sym_LBRACK] = ACTIONS(5993), - [anon_sym_RBRACK] = ACTIONS(5993), - [anon_sym_const] = ACTIONS(5995), - [anon_sym_constexpr] = ACTIONS(5993), - [anon_sym_volatile] = ACTIONS(5993), - [anon_sym_restrict] = ACTIONS(5993), - [anon_sym___restrict__] = ACTIONS(5993), - [anon_sym__Atomic] = ACTIONS(5993), - [anon_sym__Noreturn] = ACTIONS(5993), - [anon_sym_noreturn] = ACTIONS(5993), - [anon_sym_mutable] = ACTIONS(5993), - [anon_sym_constinit] = ACTIONS(5993), - [anon_sym_consteval] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_QMARK] = ACTIONS(5993), - [anon_sym_LT_EQ_GT] = ACTIONS(5993), - [anon_sym_or] = ACTIONS(5993), - [anon_sym_and] = ACTIONS(5993), - [anon_sym_bitor] = ACTIONS(5993), - [anon_sym_xor] = ACTIONS(5993), - [anon_sym_bitand] = ACTIONS(5993), - [anon_sym_not_eq] = ACTIONS(5993), - [anon_sym_DASH_DASH] = ACTIONS(5993), - [anon_sym_PLUS_PLUS] = ACTIONS(5993), - [anon_sym_DOT] = ACTIONS(5995), - [anon_sym_DOT_STAR] = ACTIONS(5993), - [anon_sym_DASH_GT] = ACTIONS(5993), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5993), - [anon_sym_decltype] = ACTIONS(5993), - [anon_sym_final] = ACTIONS(5993), - [anon_sym_override] = ACTIONS(5993), - [anon_sym_requires] = ACTIONS(5993), + [2256] = { + [sym_identifier] = ACTIONS(5762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5764), + [anon_sym_COMMA] = ACTIONS(5764), + [anon_sym_RPAREN] = ACTIONS(5764), + [anon_sym_LPAREN2] = ACTIONS(5764), + [anon_sym_DASH] = ACTIONS(5762), + [anon_sym_PLUS] = ACTIONS(5762), + [anon_sym_STAR] = ACTIONS(5764), + [anon_sym_SLASH] = ACTIONS(5762), + [anon_sym_PERCENT] = ACTIONS(5764), + [anon_sym_PIPE_PIPE] = ACTIONS(5764), + [anon_sym_AMP_AMP] = ACTIONS(5764), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_CARET] = ACTIONS(5764), + [anon_sym_AMP] = ACTIONS(5762), + [anon_sym_EQ_EQ] = ACTIONS(5764), + [anon_sym_BANG_EQ] = ACTIONS(5764), + [anon_sym_GT] = ACTIONS(5762), + [anon_sym_GT_EQ] = ACTIONS(5764), + [anon_sym_LT_EQ] = ACTIONS(5762), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_LT_LT] = ACTIONS(5764), + [anon_sym_GT_GT] = ACTIONS(5764), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(5762), + [anon_sym___attribute__] = ACTIONS(5762), + [anon_sym___based] = ACTIONS(5762), + [anon_sym_LBRACE] = ACTIONS(5764), + [anon_sym_RBRACE] = ACTIONS(5764), + [anon_sym_signed] = ACTIONS(5762), + [anon_sym_unsigned] = ACTIONS(5762), + [anon_sym_long] = ACTIONS(5762), + [anon_sym_short] = ACTIONS(5762), + [anon_sym_LBRACK] = ACTIONS(5764), + [anon_sym_RBRACK] = ACTIONS(5764), + [anon_sym_const] = ACTIONS(5762), + [anon_sym_constexpr] = ACTIONS(5762), + [anon_sym_volatile] = ACTIONS(5762), + [anon_sym_restrict] = ACTIONS(5762), + [anon_sym___restrict__] = ACTIONS(5762), + [anon_sym__Atomic] = ACTIONS(5762), + [anon_sym__Noreturn] = ACTIONS(5762), + [anon_sym_noreturn] = ACTIONS(5762), + [anon_sym_mutable] = ACTIONS(5762), + [anon_sym_constinit] = ACTIONS(5762), + [anon_sym_consteval] = ACTIONS(5762), + [sym_primitive_type] = ACTIONS(5762), + [anon_sym_COLON] = ACTIONS(5764), + [anon_sym_QMARK] = ACTIONS(5764), + [anon_sym_LT_EQ_GT] = ACTIONS(5764), + [anon_sym_or] = ACTIONS(5762), + [anon_sym_and] = ACTIONS(5762), + [anon_sym_bitor] = ACTIONS(5762), + [anon_sym_xor] = ACTIONS(5762), + [anon_sym_bitand] = ACTIONS(5762), + [anon_sym_not_eq] = ACTIONS(5762), + [anon_sym_DASH_DASH] = ACTIONS(5764), + [anon_sym_PLUS_PLUS] = ACTIONS(5764), + [anon_sym_DOT] = ACTIONS(5762), + [anon_sym_DOT_STAR] = ACTIONS(5764), + [anon_sym_DASH_GT] = ACTIONS(5764), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5762), + [anon_sym_decltype] = ACTIONS(5762), + [anon_sym_final] = ACTIONS(5762), + [anon_sym_override] = ACTIONS(5762), + [anon_sym_requires] = ACTIONS(5762), }, - [2439] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(5592), - [anon_sym_LPAREN2] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5590), - [anon_sym_STAR] = ACTIONS(5592), - [anon_sym_SLASH] = ACTIONS(5590), - [anon_sym_PERCENT] = ACTIONS(5592), - [anon_sym_PIPE_PIPE] = ACTIONS(5592), - [anon_sym_AMP_AMP] = ACTIONS(5592), - [anon_sym_PIPE] = ACTIONS(5590), - [anon_sym_CARET] = ACTIONS(5592), - [anon_sym_AMP] = ACTIONS(5590), - [anon_sym_EQ_EQ] = ACTIONS(5592), - [anon_sym_BANG_EQ] = ACTIONS(5592), - [anon_sym_GT] = ACTIONS(5590), - [anon_sym_GT_EQ] = ACTIONS(5592), - [anon_sym_LT_EQ] = ACTIONS(5590), - [anon_sym_LT] = ACTIONS(5590), - [anon_sym_LT_LT] = ACTIONS(5592), - [anon_sym_GT_GT] = ACTIONS(5592), - [anon_sym_SEMI] = ACTIONS(5592), - [anon_sym___extension__] = ACTIONS(5592), - [anon_sym___attribute__] = ACTIONS(5592), - [anon_sym_LBRACE] = ACTIONS(5592), - [anon_sym_RBRACE] = ACTIONS(5592), - [anon_sym_signed] = ACTIONS(5960), - [anon_sym_unsigned] = ACTIONS(5960), - [anon_sym_long] = ACTIONS(5960), - [anon_sym_short] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5592), - [anon_sym_RBRACK] = ACTIONS(5592), - [anon_sym_const] = ACTIONS(5590), - [anon_sym_constexpr] = ACTIONS(5592), - [anon_sym_volatile] = ACTIONS(5592), - [anon_sym_restrict] = ACTIONS(5592), - [anon_sym___restrict__] = ACTIONS(5592), - [anon_sym__Atomic] = ACTIONS(5592), - [anon_sym__Noreturn] = ACTIONS(5592), - [anon_sym_noreturn] = ACTIONS(5592), - [anon_sym_mutable] = ACTIONS(5592), - [anon_sym_constinit] = ACTIONS(5592), - [anon_sym_consteval] = ACTIONS(5592), - [anon_sym_COLON] = ACTIONS(5592), - [anon_sym_QMARK] = ACTIONS(5592), - [anon_sym_LT_EQ_GT] = ACTIONS(5592), - [anon_sym_or] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5592), - [anon_sym_bitor] = ACTIONS(5592), - [anon_sym_xor] = ACTIONS(5592), - [anon_sym_bitand] = ACTIONS(5592), - [anon_sym_not_eq] = ACTIONS(5592), - [anon_sym_DASH_DASH] = ACTIONS(5592), - [anon_sym_PLUS_PLUS] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_DOT_STAR] = ACTIONS(5592), - [anon_sym_DASH_GT] = ACTIONS(5592), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5592), - [anon_sym_decltype] = ACTIONS(5592), - [anon_sym_final] = ACTIONS(5592), - [anon_sym_override] = ACTIONS(5592), - [anon_sym_requires] = ACTIONS(5592), + [2257] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2012), + [sym_identifier] = ACTIONS(5278), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5766), + [anon_sym_RPAREN] = ACTIONS(5766), + [anon_sym_LPAREN2] = ACTIONS(5766), + [anon_sym_DASH] = ACTIONS(5769), + [anon_sym_PLUS] = ACTIONS(5769), + [anon_sym_STAR] = ACTIONS(5766), + [anon_sym_SLASH] = ACTIONS(5769), + [anon_sym_PERCENT] = ACTIONS(5766), + [anon_sym_PIPE_PIPE] = ACTIONS(5766), + [anon_sym_AMP_AMP] = ACTIONS(5766), + [anon_sym_PIPE] = ACTIONS(5769), + [anon_sym_CARET] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5769), + [anon_sym_EQ_EQ] = ACTIONS(5766), + [anon_sym_BANG_EQ] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5769), + [anon_sym_GT_EQ] = ACTIONS(5766), + [anon_sym_LT_EQ] = ACTIONS(5769), + [anon_sym_LT] = ACTIONS(5769), + [anon_sym_LT_LT] = ACTIONS(5766), + [anon_sym_GT_GT] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5766), + [anon_sym___extension__] = ACTIONS(5769), + [anon_sym___attribute__] = ACTIONS(5769), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(5766), + [anon_sym_signed] = ACTIONS(5282), + [anon_sym_unsigned] = ACTIONS(5282), + [anon_sym_long] = ACTIONS(5282), + [anon_sym_short] = ACTIONS(5282), + [anon_sym_LBRACK] = ACTIONS(5766), + [anon_sym_RBRACK] = ACTIONS(5766), + [anon_sym_const] = ACTIONS(5769), + [anon_sym_constexpr] = ACTIONS(5769), + [anon_sym_volatile] = ACTIONS(5769), + [anon_sym_restrict] = ACTIONS(5769), + [anon_sym___restrict__] = ACTIONS(5769), + [anon_sym__Atomic] = ACTIONS(5769), + [anon_sym__Noreturn] = ACTIONS(5769), + [anon_sym_noreturn] = ACTIONS(5769), + [anon_sym_mutable] = ACTIONS(5769), + [anon_sym_constinit] = ACTIONS(5769), + [anon_sym_consteval] = ACTIONS(5769), + [sym_primitive_type] = ACTIONS(5278), + [anon_sym_COLON] = ACTIONS(5766), + [anon_sym_QMARK] = ACTIONS(5766), + [anon_sym_LT_EQ_GT] = ACTIONS(5766), + [anon_sym_or] = ACTIONS(5769), + [anon_sym_and] = ACTIONS(5769), + [anon_sym_bitor] = ACTIONS(5769), + [anon_sym_xor] = ACTIONS(5769), + [anon_sym_bitand] = ACTIONS(5769), + [anon_sym_not_eq] = ACTIONS(5769), + [anon_sym_DASH_DASH] = ACTIONS(5766), + [anon_sym_PLUS_PLUS] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5769), + [anon_sym_DOT_STAR] = ACTIONS(5766), + [anon_sym_DASH_GT] = ACTIONS(5766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5769), + [anon_sym_decltype] = ACTIONS(5769), + [anon_sym_final] = ACTIONS(5769), + [anon_sym_override] = ACTIONS(5769), + [anon_sym_requires] = ACTIONS(5769), }, - [2440] = { - [sym_identifier] = ACTIONS(5578), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5580), - [anon_sym_COMMA] = ACTIONS(5580), - [anon_sym_RPAREN] = ACTIONS(5580), - [aux_sym_preproc_if_token2] = ACTIONS(5580), - [aux_sym_preproc_else_token1] = ACTIONS(5580), - [aux_sym_preproc_elif_token1] = ACTIONS(5578), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5580), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5580), - [anon_sym_LPAREN2] = ACTIONS(5580), - [anon_sym_DASH] = ACTIONS(5578), - [anon_sym_PLUS] = ACTIONS(5578), - [anon_sym_STAR] = ACTIONS(5578), - [anon_sym_SLASH] = ACTIONS(5578), - [anon_sym_PERCENT] = ACTIONS(5578), - [anon_sym_PIPE_PIPE] = ACTIONS(5580), - [anon_sym_AMP_AMP] = ACTIONS(5580), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_CARET] = ACTIONS(5578), - [anon_sym_AMP] = ACTIONS(5578), - [anon_sym_EQ_EQ] = ACTIONS(5580), - [anon_sym_BANG_EQ] = ACTIONS(5580), - [anon_sym_GT] = ACTIONS(5578), - [anon_sym_GT_EQ] = ACTIONS(5580), - [anon_sym_LT_EQ] = ACTIONS(5578), - [anon_sym_LT] = ACTIONS(5578), - [anon_sym_LT_LT] = ACTIONS(5578), - [anon_sym_GT_GT] = ACTIONS(5578), - [anon_sym_SEMI] = ACTIONS(5580), - [anon_sym___attribute__] = ACTIONS(5578), - [anon_sym_LBRACE] = ACTIONS(5580), - [anon_sym_RBRACE] = ACTIONS(5580), - [anon_sym_LBRACK] = ACTIONS(5580), - [anon_sym_RBRACK] = ACTIONS(5580), - [anon_sym_EQ] = ACTIONS(5578), - [anon_sym_COLON] = ACTIONS(5580), - [anon_sym_QMARK] = ACTIONS(5580), - [anon_sym_STAR_EQ] = ACTIONS(5580), - [anon_sym_SLASH_EQ] = ACTIONS(5580), - [anon_sym_PERCENT_EQ] = ACTIONS(5580), - [anon_sym_PLUS_EQ] = ACTIONS(5580), - [anon_sym_DASH_EQ] = ACTIONS(5580), - [anon_sym_LT_LT_EQ] = ACTIONS(5580), - [anon_sym_GT_GT_EQ] = ACTIONS(5580), - [anon_sym_AMP_EQ] = ACTIONS(5580), - [anon_sym_CARET_EQ] = ACTIONS(5580), - [anon_sym_PIPE_EQ] = ACTIONS(5580), - [anon_sym_and_eq] = ACTIONS(5578), - [anon_sym_or_eq] = ACTIONS(5578), - [anon_sym_xor_eq] = ACTIONS(5578), - [anon_sym_LT_EQ_GT] = ACTIONS(5580), - [anon_sym_or] = ACTIONS(5578), - [anon_sym_and] = ACTIONS(5578), - [anon_sym_bitor] = ACTIONS(5578), - [anon_sym_xor] = ACTIONS(5578), - [anon_sym_bitand] = ACTIONS(5578), - [anon_sym_not_eq] = ACTIONS(5578), - [anon_sym_DASH_DASH] = ACTIONS(5580), - [anon_sym_PLUS_PLUS] = ACTIONS(5580), - [anon_sym_DOT] = ACTIONS(5578), - [anon_sym_DOT_STAR] = ACTIONS(5580), - [anon_sym_DASH_GT] = ACTIONS(5580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5578), - [anon_sym_decltype] = ACTIONS(5578), + [2258] = { + [sym_identifier] = ACTIONS(5772), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5774), + [anon_sym_COMMA] = ACTIONS(5774), + [anon_sym_RPAREN] = ACTIONS(5774), + [anon_sym_LPAREN2] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5772), + [anon_sym_PLUS] = ACTIONS(5772), + [anon_sym_STAR] = ACTIONS(5774), + [anon_sym_SLASH] = ACTIONS(5772), + [anon_sym_PERCENT] = ACTIONS(5774), + [anon_sym_PIPE_PIPE] = ACTIONS(5774), + [anon_sym_AMP_AMP] = ACTIONS(5774), + [anon_sym_PIPE] = ACTIONS(5772), + [anon_sym_CARET] = ACTIONS(5774), + [anon_sym_AMP] = ACTIONS(5772), + [anon_sym_EQ_EQ] = ACTIONS(5774), + [anon_sym_BANG_EQ] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5772), + [anon_sym_GT_EQ] = ACTIONS(5774), + [anon_sym_LT_EQ] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5772), + [anon_sym_LT_LT] = ACTIONS(5774), + [anon_sym_GT_GT] = ACTIONS(5774), + [anon_sym_SEMI] = ACTIONS(5774), + [anon_sym___extension__] = ACTIONS(5772), + [anon_sym___attribute__] = ACTIONS(5772), + [anon_sym___based] = ACTIONS(5772), + [anon_sym_LBRACE] = ACTIONS(5774), + [anon_sym_RBRACE] = ACTIONS(5774), + [anon_sym_signed] = ACTIONS(5772), + [anon_sym_unsigned] = ACTIONS(5772), + [anon_sym_long] = ACTIONS(5772), + [anon_sym_short] = ACTIONS(5772), + [anon_sym_LBRACK] = ACTIONS(5774), + [anon_sym_RBRACK] = ACTIONS(5774), + [anon_sym_const] = ACTIONS(5772), + [anon_sym_constexpr] = ACTIONS(5772), + [anon_sym_volatile] = ACTIONS(5772), + [anon_sym_restrict] = ACTIONS(5772), + [anon_sym___restrict__] = ACTIONS(5772), + [anon_sym__Atomic] = ACTIONS(5772), + [anon_sym__Noreturn] = ACTIONS(5772), + [anon_sym_noreturn] = ACTIONS(5772), + [anon_sym_mutable] = ACTIONS(5772), + [anon_sym_constinit] = ACTIONS(5772), + [anon_sym_consteval] = ACTIONS(5772), + [sym_primitive_type] = ACTIONS(5772), + [anon_sym_COLON] = ACTIONS(5774), + [anon_sym_QMARK] = ACTIONS(5774), + [anon_sym_LT_EQ_GT] = ACTIONS(5774), + [anon_sym_or] = ACTIONS(5772), + [anon_sym_and] = ACTIONS(5772), + [anon_sym_bitor] = ACTIONS(5772), + [anon_sym_xor] = ACTIONS(5772), + [anon_sym_bitand] = ACTIONS(5772), + [anon_sym_not_eq] = ACTIONS(5772), + [anon_sym_DASH_DASH] = ACTIONS(5774), + [anon_sym_PLUS_PLUS] = ACTIONS(5774), + [anon_sym_DOT] = ACTIONS(5772), + [anon_sym_DOT_STAR] = ACTIONS(5774), + [anon_sym_DASH_GT] = ACTIONS(5774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5772), + [anon_sym_decltype] = ACTIONS(5772), + [anon_sym_final] = ACTIONS(5772), + [anon_sym_override] = ACTIONS(5772), + [anon_sym_requires] = ACTIONS(5772), }, - [2441] = { - [sym_identifier] = ACTIONS(5684), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5686), - [anon_sym_COMMA] = ACTIONS(5686), - [anon_sym_RPAREN] = ACTIONS(5686), - [aux_sym_preproc_if_token2] = ACTIONS(5686), - [aux_sym_preproc_else_token1] = ACTIONS(5686), - [aux_sym_preproc_elif_token1] = ACTIONS(5684), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5686), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5684), - [anon_sym_PLUS] = ACTIONS(5684), - [anon_sym_STAR] = ACTIONS(5684), - [anon_sym_SLASH] = ACTIONS(5684), - [anon_sym_PERCENT] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5686), - [anon_sym_AMP_AMP] = ACTIONS(5686), - [anon_sym_PIPE] = ACTIONS(5684), - [anon_sym_CARET] = ACTIONS(5684), - [anon_sym_AMP] = ACTIONS(5684), - [anon_sym_EQ_EQ] = ACTIONS(5686), - [anon_sym_BANG_EQ] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5686), - [anon_sym_LT_EQ] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5684), - [anon_sym_LT_LT] = ACTIONS(5684), - [anon_sym_GT_GT] = ACTIONS(5684), - [anon_sym_SEMI] = ACTIONS(5686), - [anon_sym___attribute__] = ACTIONS(5684), - [anon_sym_LBRACE] = ACTIONS(5686), - [anon_sym_RBRACE] = ACTIONS(5686), - [anon_sym_LBRACK] = ACTIONS(5686), - [anon_sym_RBRACK] = ACTIONS(5686), - [anon_sym_EQ] = ACTIONS(5684), - [anon_sym_COLON] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_STAR_EQ] = ACTIONS(5686), - [anon_sym_SLASH_EQ] = ACTIONS(5686), - [anon_sym_PERCENT_EQ] = ACTIONS(5686), - [anon_sym_PLUS_EQ] = ACTIONS(5686), - [anon_sym_DASH_EQ] = ACTIONS(5686), - [anon_sym_LT_LT_EQ] = ACTIONS(5686), - [anon_sym_GT_GT_EQ] = ACTIONS(5686), - [anon_sym_AMP_EQ] = ACTIONS(5686), - [anon_sym_CARET_EQ] = ACTIONS(5686), - [anon_sym_PIPE_EQ] = ACTIONS(5686), - [anon_sym_and_eq] = ACTIONS(5684), - [anon_sym_or_eq] = ACTIONS(5684), - [anon_sym_xor_eq] = ACTIONS(5684), - [anon_sym_LT_EQ_GT] = ACTIONS(5686), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_bitor] = ACTIONS(5684), - [anon_sym_xor] = ACTIONS(5684), - [anon_sym_bitand] = ACTIONS(5684), - [anon_sym_not_eq] = ACTIONS(5684), - [anon_sym_DASH_DASH] = ACTIONS(5686), - [anon_sym_PLUS_PLUS] = ACTIONS(5686), - [anon_sym_DOT] = ACTIONS(5684), - [anon_sym_DOT_STAR] = ACTIONS(5686), - [anon_sym_DASH_GT] = ACTIONS(5686), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5684), - [anon_sym_decltype] = ACTIONS(5684), + [2259] = { + [sym_identifier] = ACTIONS(5776), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(5778), + [anon_sym_RPAREN] = ACTIONS(5778), + [anon_sym_LPAREN2] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5776), + [anon_sym_STAR] = ACTIONS(5778), + [anon_sym_SLASH] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5778), + [anon_sym_PIPE_PIPE] = ACTIONS(5778), + [anon_sym_AMP_AMP] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5778), + [anon_sym_AMP] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_EQ] = ACTIONS(5776), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5778), + [anon_sym_GT_GT] = ACTIONS(5778), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym___extension__] = ACTIONS(5776), + [anon_sym___attribute__] = ACTIONS(5776), + [anon_sym___based] = ACTIONS(5776), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_signed] = ACTIONS(5776), + [anon_sym_unsigned] = ACTIONS(5776), + [anon_sym_long] = ACTIONS(5776), + [anon_sym_short] = ACTIONS(5776), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_RBRACK] = ACTIONS(5778), + [anon_sym_const] = ACTIONS(5776), + [anon_sym_constexpr] = ACTIONS(5776), + [anon_sym_volatile] = ACTIONS(5776), + [anon_sym_restrict] = ACTIONS(5776), + [anon_sym___restrict__] = ACTIONS(5776), + [anon_sym__Atomic] = ACTIONS(5776), + [anon_sym__Noreturn] = ACTIONS(5776), + [anon_sym_noreturn] = ACTIONS(5776), + [anon_sym_mutable] = ACTIONS(5776), + [anon_sym_constinit] = ACTIONS(5776), + [anon_sym_consteval] = ACTIONS(5776), + [sym_primitive_type] = ACTIONS(5776), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_LT_EQ_GT] = ACTIONS(5778), + [anon_sym_or] = ACTIONS(5776), + [anon_sym_and] = ACTIONS(5776), + [anon_sym_bitor] = ACTIONS(5776), + [anon_sym_xor] = ACTIONS(5776), + [anon_sym_bitand] = ACTIONS(5776), + [anon_sym_not_eq] = ACTIONS(5776), + [anon_sym_DASH_DASH] = ACTIONS(5778), + [anon_sym_PLUS_PLUS] = ACTIONS(5778), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_DOT_STAR] = ACTIONS(5778), + [anon_sym_DASH_GT] = ACTIONS(5778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5776), + [anon_sym_decltype] = ACTIONS(5776), + [anon_sym_final] = ACTIONS(5776), + [anon_sym_override] = ACTIONS(5776), + [anon_sym_requires] = ACTIONS(5776), }, - [2442] = { - [sym_identifier] = ACTIONS(5582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5584), - [anon_sym_COMMA] = ACTIONS(5584), - [anon_sym_RPAREN] = ACTIONS(5584), - [aux_sym_preproc_if_token2] = ACTIONS(5584), - [aux_sym_preproc_else_token1] = ACTIONS(5584), - [aux_sym_preproc_elif_token1] = ACTIONS(5582), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5584), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5584), - [anon_sym_LPAREN2] = ACTIONS(5584), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_PLUS] = ACTIONS(5582), - [anon_sym_STAR] = ACTIONS(5582), - [anon_sym_SLASH] = ACTIONS(5582), - [anon_sym_PERCENT] = ACTIONS(5582), - [anon_sym_PIPE_PIPE] = ACTIONS(5584), - [anon_sym_AMP_AMP] = ACTIONS(5584), - [anon_sym_PIPE] = ACTIONS(5582), - [anon_sym_CARET] = ACTIONS(5582), - [anon_sym_AMP] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5584), - [anon_sym_BANG_EQ] = ACTIONS(5584), - [anon_sym_GT] = ACTIONS(5582), - [anon_sym_GT_EQ] = ACTIONS(5584), - [anon_sym_LT_EQ] = ACTIONS(5582), - [anon_sym_LT] = ACTIONS(5582), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5582), - [anon_sym_SEMI] = ACTIONS(5584), - [anon_sym___attribute__] = ACTIONS(5582), - [anon_sym_LBRACE] = ACTIONS(5584), - [anon_sym_RBRACE] = ACTIONS(5584), - [anon_sym_LBRACK] = ACTIONS(5584), - [anon_sym_RBRACK] = ACTIONS(5584), - [anon_sym_EQ] = ACTIONS(5582), - [anon_sym_COLON] = ACTIONS(5584), - [anon_sym_QMARK] = ACTIONS(5584), - [anon_sym_STAR_EQ] = ACTIONS(5584), - [anon_sym_SLASH_EQ] = ACTIONS(5584), - [anon_sym_PERCENT_EQ] = ACTIONS(5584), - [anon_sym_PLUS_EQ] = ACTIONS(5584), - [anon_sym_DASH_EQ] = ACTIONS(5584), - [anon_sym_LT_LT_EQ] = ACTIONS(5584), - [anon_sym_GT_GT_EQ] = ACTIONS(5584), - [anon_sym_AMP_EQ] = ACTIONS(5584), - [anon_sym_CARET_EQ] = ACTIONS(5584), - [anon_sym_PIPE_EQ] = ACTIONS(5584), - [anon_sym_and_eq] = ACTIONS(5582), - [anon_sym_or_eq] = ACTIONS(5582), - [anon_sym_xor_eq] = ACTIONS(5582), - [anon_sym_LT_EQ_GT] = ACTIONS(5584), - [anon_sym_or] = ACTIONS(5582), - [anon_sym_and] = ACTIONS(5582), - [anon_sym_bitor] = ACTIONS(5582), - [anon_sym_xor] = ACTIONS(5582), - [anon_sym_bitand] = ACTIONS(5582), - [anon_sym_not_eq] = ACTIONS(5582), - [anon_sym_DASH_DASH] = ACTIONS(5584), - [anon_sym_PLUS_PLUS] = ACTIONS(5584), - [anon_sym_DOT] = ACTIONS(5582), - [anon_sym_DOT_STAR] = ACTIONS(5584), - [anon_sym_DASH_GT] = ACTIONS(5584), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5582), - [anon_sym_decltype] = ACTIONS(5582), + [2260] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5790), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2443] = { - [sym_identifier] = ACTIONS(5586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5588), - [anon_sym_COMMA] = ACTIONS(5588), - [anon_sym_RPAREN] = ACTIONS(5588), - [aux_sym_preproc_if_token2] = ACTIONS(5588), - [aux_sym_preproc_else_token1] = ACTIONS(5588), - [aux_sym_preproc_elif_token1] = ACTIONS(5586), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5588), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5588), - [anon_sym_LPAREN2] = ACTIONS(5588), - [anon_sym_DASH] = ACTIONS(5586), - [anon_sym_PLUS] = ACTIONS(5586), - [anon_sym_STAR] = ACTIONS(5586), - [anon_sym_SLASH] = ACTIONS(5586), - [anon_sym_PERCENT] = ACTIONS(5586), - [anon_sym_PIPE_PIPE] = ACTIONS(5588), - [anon_sym_AMP_AMP] = ACTIONS(5588), - [anon_sym_PIPE] = ACTIONS(5586), - [anon_sym_CARET] = ACTIONS(5586), - [anon_sym_AMP] = ACTIONS(5586), - [anon_sym_EQ_EQ] = ACTIONS(5588), - [anon_sym_BANG_EQ] = ACTIONS(5588), - [anon_sym_GT] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5586), - [anon_sym_LT] = ACTIONS(5586), - [anon_sym_LT_LT] = ACTIONS(5586), - [anon_sym_GT_GT] = ACTIONS(5586), - [anon_sym_SEMI] = ACTIONS(5588), - [anon_sym___attribute__] = ACTIONS(5586), - [anon_sym_LBRACE] = ACTIONS(5588), - [anon_sym_RBRACE] = ACTIONS(5588), - [anon_sym_LBRACK] = ACTIONS(5588), - [anon_sym_RBRACK] = ACTIONS(5588), - [anon_sym_EQ] = ACTIONS(5586), - [anon_sym_COLON] = ACTIONS(5588), - [anon_sym_QMARK] = ACTIONS(5588), - [anon_sym_STAR_EQ] = ACTIONS(5588), - [anon_sym_SLASH_EQ] = ACTIONS(5588), - [anon_sym_PERCENT_EQ] = ACTIONS(5588), - [anon_sym_PLUS_EQ] = ACTIONS(5588), - [anon_sym_DASH_EQ] = ACTIONS(5588), - [anon_sym_LT_LT_EQ] = ACTIONS(5588), - [anon_sym_GT_GT_EQ] = ACTIONS(5588), - [anon_sym_AMP_EQ] = ACTIONS(5588), - [anon_sym_CARET_EQ] = ACTIONS(5588), - [anon_sym_PIPE_EQ] = ACTIONS(5588), - [anon_sym_and_eq] = ACTIONS(5586), - [anon_sym_or_eq] = ACTIONS(5586), - [anon_sym_xor_eq] = ACTIONS(5586), - [anon_sym_LT_EQ_GT] = ACTIONS(5588), - [anon_sym_or] = ACTIONS(5586), - [anon_sym_and] = ACTIONS(5586), - [anon_sym_bitor] = ACTIONS(5586), - [anon_sym_xor] = ACTIONS(5586), - [anon_sym_bitand] = ACTIONS(5586), - [anon_sym_not_eq] = ACTIONS(5586), - [anon_sym_DASH_DASH] = ACTIONS(5588), - [anon_sym_PLUS_PLUS] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(5586), - [anon_sym_DOT_STAR] = ACTIONS(5588), - [anon_sym_DASH_GT] = ACTIONS(5588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5586), - [anon_sym_decltype] = ACTIONS(5586), + [2261] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5737), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2444] = { - [sym_identifier] = ACTIONS(5590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(5592), - [anon_sym_RPAREN] = ACTIONS(5592), - [aux_sym_preproc_if_token2] = ACTIONS(5592), - [aux_sym_preproc_else_token1] = ACTIONS(5592), - [aux_sym_preproc_elif_token1] = ACTIONS(5590), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5592), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5592), - [anon_sym_LPAREN2] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5590), - [anon_sym_STAR] = ACTIONS(5590), - [anon_sym_SLASH] = ACTIONS(5590), - [anon_sym_PERCENT] = ACTIONS(5590), - [anon_sym_PIPE_PIPE] = ACTIONS(5592), - [anon_sym_AMP_AMP] = ACTIONS(5592), - [anon_sym_PIPE] = ACTIONS(5590), - [anon_sym_CARET] = ACTIONS(5590), - [anon_sym_AMP] = ACTIONS(5590), - [anon_sym_EQ_EQ] = ACTIONS(5592), - [anon_sym_BANG_EQ] = ACTIONS(5592), - [anon_sym_GT] = ACTIONS(5590), - [anon_sym_GT_EQ] = ACTIONS(5592), - [anon_sym_LT_EQ] = ACTIONS(5590), - [anon_sym_LT] = ACTIONS(5590), - [anon_sym_LT_LT] = ACTIONS(5590), - [anon_sym_GT_GT] = ACTIONS(5590), - [anon_sym_SEMI] = ACTIONS(5592), - [anon_sym___attribute__] = ACTIONS(5590), - [anon_sym_LBRACE] = ACTIONS(5592), - [anon_sym_RBRACE] = ACTIONS(5592), - [anon_sym_LBRACK] = ACTIONS(5592), - [anon_sym_RBRACK] = ACTIONS(5592), - [anon_sym_EQ] = ACTIONS(5590), - [anon_sym_COLON] = ACTIONS(5592), - [anon_sym_QMARK] = ACTIONS(5592), - [anon_sym_STAR_EQ] = ACTIONS(5592), - [anon_sym_SLASH_EQ] = ACTIONS(5592), - [anon_sym_PERCENT_EQ] = ACTIONS(5592), - [anon_sym_PLUS_EQ] = ACTIONS(5592), - [anon_sym_DASH_EQ] = ACTIONS(5592), - [anon_sym_LT_LT_EQ] = ACTIONS(5592), - [anon_sym_GT_GT_EQ] = ACTIONS(5592), - [anon_sym_AMP_EQ] = ACTIONS(5592), - [anon_sym_CARET_EQ] = ACTIONS(5592), - [anon_sym_PIPE_EQ] = ACTIONS(5592), - [anon_sym_and_eq] = ACTIONS(5590), - [anon_sym_or_eq] = ACTIONS(5590), - [anon_sym_xor_eq] = ACTIONS(5590), - [anon_sym_LT_EQ_GT] = ACTIONS(5592), - [anon_sym_or] = ACTIONS(5590), - [anon_sym_and] = ACTIONS(5590), - [anon_sym_bitor] = ACTIONS(5590), - [anon_sym_xor] = ACTIONS(5590), - [anon_sym_bitand] = ACTIONS(5590), - [anon_sym_not_eq] = ACTIONS(5590), - [anon_sym_DASH_DASH] = ACTIONS(5592), - [anon_sym_PLUS_PLUS] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_DOT_STAR] = ACTIONS(5592), - [anon_sym_DASH_GT] = ACTIONS(5592), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5590), - [anon_sym_decltype] = ACTIONS(5590), + [2262] = { + [sym_string_literal] = STATE(3717), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(3717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym___attribute__] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5780), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(5782), + [anon_sym_SLASH_EQ] = ACTIONS(5782), + [anon_sym_PERCENT_EQ] = ACTIONS(5782), + [anon_sym_PLUS_EQ] = ACTIONS(5782), + [anon_sym_DASH_EQ] = ACTIONS(5782), + [anon_sym_LT_LT_EQ] = ACTIONS(5782), + [anon_sym_GT_GT_EQ] = ACTIONS(5782), + [anon_sym_AMP_EQ] = ACTIONS(5782), + [anon_sym_CARET_EQ] = ACTIONS(5782), + [anon_sym_PIPE_EQ] = ACTIONS(5782), + [anon_sym_and_eq] = ACTIONS(5782), + [anon_sym_or_eq] = ACTIONS(5782), + [anon_sym_xor_eq] = ACTIONS(5782), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(5784), + [anon_sym_u_DQUOTE] = ACTIONS(5784), + [anon_sym_U_DQUOTE] = ACTIONS(5784), + [anon_sym_u8_DQUOTE] = ACTIONS(5784), + [anon_sym_DQUOTE] = ACTIONS(5784), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5786), + [anon_sym_LR_DQUOTE] = ACTIONS(5786), + [anon_sym_uR_DQUOTE] = ACTIONS(5786), + [anon_sym_UR_DQUOTE] = ACTIONS(5786), + [anon_sym_u8R_DQUOTE] = ACTIONS(5786), }, - [2445] = { - [sym_identifier] = ACTIONS(5594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5596), - [anon_sym_COMMA] = ACTIONS(5596), - [anon_sym_RPAREN] = ACTIONS(5596), - [aux_sym_preproc_if_token2] = ACTIONS(5596), - [aux_sym_preproc_else_token1] = ACTIONS(5596), - [aux_sym_preproc_elif_token1] = ACTIONS(5594), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5596), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5596), - [anon_sym_LPAREN2] = ACTIONS(5596), - [anon_sym_DASH] = ACTIONS(5594), - [anon_sym_PLUS] = ACTIONS(5594), - [anon_sym_STAR] = ACTIONS(5594), - [anon_sym_SLASH] = ACTIONS(5594), - [anon_sym_PERCENT] = ACTIONS(5594), - [anon_sym_PIPE_PIPE] = ACTIONS(5596), - [anon_sym_AMP_AMP] = ACTIONS(5596), - [anon_sym_PIPE] = ACTIONS(5594), - [anon_sym_CARET] = ACTIONS(5594), - [anon_sym_AMP] = ACTIONS(5594), - [anon_sym_EQ_EQ] = ACTIONS(5596), - [anon_sym_BANG_EQ] = ACTIONS(5596), - [anon_sym_GT] = ACTIONS(5594), - [anon_sym_GT_EQ] = ACTIONS(5596), - [anon_sym_LT_EQ] = ACTIONS(5594), - [anon_sym_LT] = ACTIONS(5594), - [anon_sym_LT_LT] = ACTIONS(5594), - [anon_sym_GT_GT] = ACTIONS(5594), - [anon_sym_SEMI] = ACTIONS(5596), - [anon_sym___attribute__] = ACTIONS(5594), - [anon_sym_LBRACE] = ACTIONS(5596), - [anon_sym_RBRACE] = ACTIONS(5596), - [anon_sym_LBRACK] = ACTIONS(5596), - [anon_sym_RBRACK] = ACTIONS(5596), - [anon_sym_EQ] = ACTIONS(5594), - [anon_sym_COLON] = ACTIONS(5596), - [anon_sym_QMARK] = ACTIONS(5596), - [anon_sym_STAR_EQ] = ACTIONS(5596), - [anon_sym_SLASH_EQ] = ACTIONS(5596), - [anon_sym_PERCENT_EQ] = ACTIONS(5596), - [anon_sym_PLUS_EQ] = ACTIONS(5596), - [anon_sym_DASH_EQ] = ACTIONS(5596), - [anon_sym_LT_LT_EQ] = ACTIONS(5596), - [anon_sym_GT_GT_EQ] = ACTIONS(5596), - [anon_sym_AMP_EQ] = ACTIONS(5596), - [anon_sym_CARET_EQ] = ACTIONS(5596), - [anon_sym_PIPE_EQ] = ACTIONS(5596), - [anon_sym_and_eq] = ACTIONS(5594), - [anon_sym_or_eq] = ACTIONS(5594), - [anon_sym_xor_eq] = ACTIONS(5594), - [anon_sym_LT_EQ_GT] = ACTIONS(5596), - [anon_sym_or] = ACTIONS(5594), - [anon_sym_and] = ACTIONS(5594), - [anon_sym_bitor] = ACTIONS(5594), - [anon_sym_xor] = ACTIONS(5594), - [anon_sym_bitand] = ACTIONS(5594), - [anon_sym_not_eq] = ACTIONS(5594), - [anon_sym_DASH_DASH] = ACTIONS(5596), - [anon_sym_PLUS_PLUS] = ACTIONS(5596), - [anon_sym_DOT] = ACTIONS(5594), - [anon_sym_DOT_STAR] = ACTIONS(5596), - [anon_sym_DASH_GT] = ACTIONS(5596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5594), - [anon_sym_decltype] = ACTIONS(5594), + [2263] = { + [sym_attribute_specifier] = STATE(2489), + [sym_enumerator_list] = STATE(2391), + [sym_identifier] = ACTIONS(5788), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(5790), + [anon_sym_RPAREN] = ACTIONS(5790), + [aux_sym_preproc_if_token2] = ACTIONS(5790), + [aux_sym_preproc_else_token1] = ACTIONS(5790), + [aux_sym_preproc_elif_token1] = ACTIONS(5788), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5790), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5790), + [anon_sym_LPAREN2] = ACTIONS(5790), + [anon_sym_DASH] = ACTIONS(5788), + [anon_sym_PLUS] = ACTIONS(5788), + [anon_sym_STAR] = ACTIONS(5788), + [anon_sym_SLASH] = ACTIONS(5788), + [anon_sym_PERCENT] = ACTIONS(5788), + [anon_sym_PIPE_PIPE] = ACTIONS(5790), + [anon_sym_AMP_AMP] = ACTIONS(5790), + [anon_sym_PIPE] = ACTIONS(5788), + [anon_sym_CARET] = ACTIONS(5788), + [anon_sym_AMP] = ACTIONS(5788), + [anon_sym_EQ_EQ] = ACTIONS(5790), + [anon_sym_BANG_EQ] = ACTIONS(5790), + [anon_sym_GT] = ACTIONS(5788), + [anon_sym_GT_EQ] = ACTIONS(5790), + [anon_sym_LT_EQ] = ACTIONS(5788), + [anon_sym_LT] = ACTIONS(5788), + [anon_sym_LT_LT] = ACTIONS(5788), + [anon_sym_GT_GT] = ACTIONS(5788), + [anon_sym_SEMI] = ACTIONS(5790), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5659), + [anon_sym_RBRACE] = ACTIONS(5790), + [anon_sym_LBRACK] = ACTIONS(5790), + [anon_sym_RBRACK] = ACTIONS(5790), + [anon_sym_EQ] = ACTIONS(5788), + [anon_sym_COLON] = ACTIONS(5790), + [anon_sym_QMARK] = ACTIONS(5790), + [anon_sym_STAR_EQ] = ACTIONS(5790), + [anon_sym_SLASH_EQ] = ACTIONS(5790), + [anon_sym_PERCENT_EQ] = ACTIONS(5790), + [anon_sym_PLUS_EQ] = ACTIONS(5790), + [anon_sym_DASH_EQ] = ACTIONS(5790), + [anon_sym_LT_LT_EQ] = ACTIONS(5790), + [anon_sym_GT_GT_EQ] = ACTIONS(5790), + [anon_sym_AMP_EQ] = ACTIONS(5790), + [anon_sym_CARET_EQ] = ACTIONS(5790), + [anon_sym_PIPE_EQ] = ACTIONS(5790), + [anon_sym_and_eq] = ACTIONS(5788), + [anon_sym_or_eq] = ACTIONS(5788), + [anon_sym_xor_eq] = ACTIONS(5788), + [anon_sym_LT_EQ_GT] = ACTIONS(5790), + [anon_sym_or] = ACTIONS(5788), + [anon_sym_and] = ACTIONS(5788), + [anon_sym_bitor] = ACTIONS(5788), + [anon_sym_xor] = ACTIONS(5788), + [anon_sym_bitand] = ACTIONS(5788), + [anon_sym_not_eq] = ACTIONS(5788), + [anon_sym_DASH_DASH] = ACTIONS(5790), + [anon_sym_PLUS_PLUS] = ACTIONS(5790), + [anon_sym_DOT] = ACTIONS(5788), + [anon_sym_DOT_STAR] = ACTIONS(5790), + [anon_sym_DASH_GT] = ACTIONS(5790), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5788), + [anon_sym_decltype] = ACTIONS(5788), }, - [2446] = { - [sym_identifier] = ACTIONS(5598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5600), - [anon_sym_COMMA] = ACTIONS(5600), - [anon_sym_RPAREN] = ACTIONS(5600), - [aux_sym_preproc_if_token2] = ACTIONS(5600), - [aux_sym_preproc_else_token1] = ACTIONS(5600), - [aux_sym_preproc_elif_token1] = ACTIONS(5598), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5600), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5600), - [anon_sym_LPAREN2] = ACTIONS(5600), - [anon_sym_DASH] = ACTIONS(5598), - [anon_sym_PLUS] = ACTIONS(5598), - [anon_sym_STAR] = ACTIONS(5598), - [anon_sym_SLASH] = ACTIONS(5598), - [anon_sym_PERCENT] = ACTIONS(5598), - [anon_sym_PIPE_PIPE] = ACTIONS(5600), - [anon_sym_AMP_AMP] = ACTIONS(5600), - [anon_sym_PIPE] = ACTIONS(5598), - [anon_sym_CARET] = ACTIONS(5598), - [anon_sym_AMP] = ACTIONS(5598), - [anon_sym_EQ_EQ] = ACTIONS(5600), - [anon_sym_BANG_EQ] = ACTIONS(5600), - [anon_sym_GT] = ACTIONS(5598), - [anon_sym_GT_EQ] = ACTIONS(5600), - [anon_sym_LT_EQ] = ACTIONS(5598), - [anon_sym_LT] = ACTIONS(5598), - [anon_sym_LT_LT] = ACTIONS(5598), - [anon_sym_GT_GT] = ACTIONS(5598), - [anon_sym_SEMI] = ACTIONS(5600), - [anon_sym___attribute__] = ACTIONS(5598), - [anon_sym_LBRACE] = ACTIONS(5600), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_LBRACK] = ACTIONS(5600), - [anon_sym_RBRACK] = ACTIONS(5600), - [anon_sym_EQ] = ACTIONS(5598), - [anon_sym_COLON] = ACTIONS(5600), - [anon_sym_QMARK] = ACTIONS(5600), - [anon_sym_STAR_EQ] = ACTIONS(5600), - [anon_sym_SLASH_EQ] = ACTIONS(5600), - [anon_sym_PERCENT_EQ] = ACTIONS(5600), - [anon_sym_PLUS_EQ] = ACTIONS(5600), - [anon_sym_DASH_EQ] = ACTIONS(5600), - [anon_sym_LT_LT_EQ] = ACTIONS(5600), - [anon_sym_GT_GT_EQ] = ACTIONS(5600), - [anon_sym_AMP_EQ] = ACTIONS(5600), - [anon_sym_CARET_EQ] = ACTIONS(5600), - [anon_sym_PIPE_EQ] = ACTIONS(5600), - [anon_sym_and_eq] = ACTIONS(5598), - [anon_sym_or_eq] = ACTIONS(5598), - [anon_sym_xor_eq] = ACTIONS(5598), - [anon_sym_LT_EQ_GT] = ACTIONS(5600), - [anon_sym_or] = ACTIONS(5598), - [anon_sym_and] = ACTIONS(5598), - [anon_sym_bitor] = ACTIONS(5598), - [anon_sym_xor] = ACTIONS(5598), - [anon_sym_bitand] = ACTIONS(5598), - [anon_sym_not_eq] = ACTIONS(5598), - [anon_sym_DASH_DASH] = ACTIONS(5600), - [anon_sym_PLUS_PLUS] = ACTIONS(5600), - [anon_sym_DOT] = ACTIONS(5598), - [anon_sym_DOT_STAR] = ACTIONS(5600), - [anon_sym_DASH_GT] = ACTIONS(5600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5598), - [anon_sym_decltype] = ACTIONS(5598), + [2264] = { + [sym_catch_clause] = STATE(2264), + [aux_sym_constructor_try_statement_repeat1] = STATE(2264), + [sym_identifier] = ACTIONS(2815), + [aux_sym_preproc_def_token1] = ACTIONS(2815), + [aux_sym_preproc_if_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2815), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2815), + [sym_preproc_directive] = ACTIONS(2815), + [anon_sym_LPAREN2] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym___extension__] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym___attribute__] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2817), + [anon_sym___declspec] = ACTIONS(2815), + [anon_sym___based] = ACTIONS(2815), + [anon_sym_RBRACE] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2815), + [anon_sym_unsigned] = ACTIONS(2815), + [anon_sym_long] = ACTIONS(2815), + [anon_sym_short] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_register] = ACTIONS(2815), + [anon_sym_inline] = ACTIONS(2815), + [anon_sym___inline] = ACTIONS(2815), + [anon_sym___inline__] = ACTIONS(2815), + [anon_sym___forceinline] = ACTIONS(2815), + [anon_sym_thread_local] = ACTIONS(2815), + [anon_sym___thread] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_constexpr] = ACTIONS(2815), + [anon_sym_volatile] = ACTIONS(2815), + [anon_sym_restrict] = ACTIONS(2815), + [anon_sym___restrict__] = ACTIONS(2815), + [anon_sym__Atomic] = ACTIONS(2815), + [anon_sym__Noreturn] = ACTIONS(2815), + [anon_sym_noreturn] = ACTIONS(2815), + [anon_sym_mutable] = ACTIONS(2815), + [anon_sym_constinit] = ACTIONS(2815), + [anon_sym_consteval] = ACTIONS(2815), + [sym_primitive_type] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_virtual] = ACTIONS(2815), + [anon_sym_alignas] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_template] = ACTIONS(2815), + [anon_sym_operator] = ACTIONS(2815), + [anon_sym_friend] = ACTIONS(2815), + [anon_sym_public] = ACTIONS(2815), + [anon_sym_private] = ACTIONS(2815), + [anon_sym_protected] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_static_assert] = ACTIONS(2815), + [anon_sym_catch] = ACTIONS(5792), }, - [2447] = { - [sym_identifier] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token2] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2148), - [sym_preproc_directive] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_TILDE] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_AMP_AMP] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym___extension__] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym___attribute__] = ACTIONS(2148), - [anon_sym_COLON_COLON] = ACTIONS(2146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2148), - [anon_sym___based] = ACTIONS(2148), - [anon_sym_signed] = ACTIONS(2148), - [anon_sym_unsigned] = ACTIONS(2148), - [anon_sym_long] = ACTIONS(2148), - [anon_sym_short] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym___inline] = ACTIONS(2148), - [anon_sym___inline__] = ACTIONS(2148), - [anon_sym___forceinline] = ACTIONS(2148), - [anon_sym_thread_local] = ACTIONS(2148), - [anon_sym___thread] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_constexpr] = ACTIONS(2148), - [anon_sym_volatile] = ACTIONS(2148), - [anon_sym_restrict] = ACTIONS(2148), - [anon_sym___restrict__] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(2148), - [anon_sym__Noreturn] = ACTIONS(2148), - [anon_sym_noreturn] = ACTIONS(2148), - [anon_sym_mutable] = ACTIONS(2148), - [anon_sym_constinit] = ACTIONS(2148), - [anon_sym_consteval] = ACTIONS(2148), - [sym_primitive_type] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_class] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2148), - [anon_sym_decltype] = ACTIONS(2148), - [anon_sym_virtual] = ACTIONS(2148), - [anon_sym_alignas] = ACTIONS(2148), - [anon_sym_explicit] = ACTIONS(2148), - [anon_sym_typename] = ACTIONS(2148), - [anon_sym_template] = ACTIONS(2148), - [anon_sym_operator] = ACTIONS(2148), - [anon_sym_friend] = ACTIONS(2148), - [anon_sym_public] = ACTIONS(2148), - [anon_sym_private] = ACTIONS(2148), - [anon_sym_protected] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2148), - [anon_sym_static_assert] = ACTIONS(2148), - [anon_sym_catch] = ACTIONS(2148), + [2265] = { + [sym_identifier] = ACTIONS(5795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5797), + [anon_sym_COMMA] = ACTIONS(5797), + [anon_sym_RPAREN] = ACTIONS(5797), + [anon_sym_LPAREN2] = ACTIONS(5797), + [anon_sym_DASH] = ACTIONS(5795), + [anon_sym_PLUS] = ACTIONS(5795), + [anon_sym_STAR] = ACTIONS(5797), + [anon_sym_SLASH] = ACTIONS(5795), + [anon_sym_PERCENT] = ACTIONS(5797), + [anon_sym_PIPE_PIPE] = ACTIONS(5797), + [anon_sym_AMP_AMP] = ACTIONS(5797), + [anon_sym_PIPE] = ACTIONS(5795), + [anon_sym_CARET] = ACTIONS(5797), + [anon_sym_AMP] = ACTIONS(5795), + [anon_sym_EQ_EQ] = ACTIONS(5797), + [anon_sym_BANG_EQ] = ACTIONS(5797), + [anon_sym_GT] = ACTIONS(5795), + [anon_sym_GT_EQ] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5795), + [anon_sym_LT] = ACTIONS(5795), + [anon_sym_LT_LT] = ACTIONS(5797), + [anon_sym_GT_GT] = ACTIONS(5797), + [anon_sym_SEMI] = ACTIONS(5797), + [anon_sym___extension__] = ACTIONS(5795), + [anon_sym___attribute__] = ACTIONS(5795), + [anon_sym___based] = ACTIONS(5795), + [anon_sym_LBRACE] = ACTIONS(5797), + [anon_sym_RBRACE] = ACTIONS(5797), + [anon_sym_signed] = ACTIONS(5795), + [anon_sym_unsigned] = ACTIONS(5795), + [anon_sym_long] = ACTIONS(5795), + [anon_sym_short] = ACTIONS(5795), + [anon_sym_LBRACK] = ACTIONS(5797), + [anon_sym_RBRACK] = ACTIONS(5797), + [anon_sym_const] = ACTIONS(5795), + [anon_sym_constexpr] = ACTIONS(5795), + [anon_sym_volatile] = ACTIONS(5795), + [anon_sym_restrict] = ACTIONS(5795), + [anon_sym___restrict__] = ACTIONS(5795), + [anon_sym__Atomic] = ACTIONS(5795), + [anon_sym__Noreturn] = ACTIONS(5795), + [anon_sym_noreturn] = ACTIONS(5795), + [anon_sym_mutable] = ACTIONS(5795), + [anon_sym_constinit] = ACTIONS(5795), + [anon_sym_consteval] = ACTIONS(5795), + [sym_primitive_type] = ACTIONS(5795), + [anon_sym_COLON] = ACTIONS(5797), + [anon_sym_QMARK] = ACTIONS(5797), + [anon_sym_LT_EQ_GT] = ACTIONS(5797), + [anon_sym_or] = ACTIONS(5795), + [anon_sym_and] = ACTIONS(5795), + [anon_sym_bitor] = ACTIONS(5795), + [anon_sym_xor] = ACTIONS(5795), + [anon_sym_bitand] = ACTIONS(5795), + [anon_sym_not_eq] = ACTIONS(5795), + [anon_sym_DASH_DASH] = ACTIONS(5797), + [anon_sym_PLUS_PLUS] = ACTIONS(5797), + [anon_sym_DOT] = ACTIONS(5795), + [anon_sym_DOT_STAR] = ACTIONS(5797), + [anon_sym_DASH_GT] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5795), + [anon_sym_decltype] = ACTIONS(5795), + [anon_sym_final] = ACTIONS(5795), + [anon_sym_override] = ACTIONS(5795), + [anon_sym_requires] = ACTIONS(5795), }, - [2448] = { - [sym_argument_list] = STATE(2741), - [sym_initializer_list] = STATE(2741), - [sym_identifier] = ACTIONS(5997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5999), - [anon_sym_COMMA] = ACTIONS(5999), - [anon_sym_RPAREN] = ACTIONS(5999), - [aux_sym_preproc_if_token2] = ACTIONS(5999), - [aux_sym_preproc_else_token1] = ACTIONS(5999), - [aux_sym_preproc_elif_token1] = ACTIONS(5997), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5999), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5999), - [anon_sym_LPAREN2] = ACTIONS(5324), - [anon_sym_DASH] = ACTIONS(5997), - [anon_sym_PLUS] = ACTIONS(5997), - [anon_sym_STAR] = ACTIONS(5997), - [anon_sym_SLASH] = ACTIONS(5997), - [anon_sym_PERCENT] = ACTIONS(5997), - [anon_sym_PIPE_PIPE] = ACTIONS(5999), - [anon_sym_AMP_AMP] = ACTIONS(5999), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_CARET] = ACTIONS(5997), - [anon_sym_AMP] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(5999), - [anon_sym_BANG_EQ] = ACTIONS(5999), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_GT_EQ] = ACTIONS(5999), - [anon_sym_LT_EQ] = ACTIONS(5997), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5997), - [anon_sym_SEMI] = ACTIONS(5999), - [anon_sym___attribute__] = ACTIONS(5997), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(5999), - [anon_sym_LBRACK] = ACTIONS(5999), - [anon_sym_RBRACK] = ACTIONS(5999), - [anon_sym_EQ] = ACTIONS(5997), - [anon_sym_COLON] = ACTIONS(5999), - [anon_sym_QMARK] = ACTIONS(5999), - [anon_sym_STAR_EQ] = ACTIONS(5999), - [anon_sym_SLASH_EQ] = ACTIONS(5999), - [anon_sym_PERCENT_EQ] = ACTIONS(5999), - [anon_sym_PLUS_EQ] = ACTIONS(5999), - [anon_sym_DASH_EQ] = ACTIONS(5999), - [anon_sym_LT_LT_EQ] = ACTIONS(5999), - [anon_sym_GT_GT_EQ] = ACTIONS(5999), - [anon_sym_AMP_EQ] = ACTIONS(5999), - [anon_sym_CARET_EQ] = ACTIONS(5999), - [anon_sym_PIPE_EQ] = ACTIONS(5999), - [anon_sym_and_eq] = ACTIONS(5997), - [anon_sym_or_eq] = ACTIONS(5997), - [anon_sym_xor_eq] = ACTIONS(5997), - [anon_sym_LT_EQ_GT] = ACTIONS(5999), - [anon_sym_or] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(5997), - [anon_sym_bitor] = ACTIONS(5997), - [anon_sym_xor] = ACTIONS(5997), - [anon_sym_bitand] = ACTIONS(5997), - [anon_sym_not_eq] = ACTIONS(5997), - [anon_sym_DASH_DASH] = ACTIONS(5999), - [anon_sym_PLUS_PLUS] = ACTIONS(5999), - [anon_sym_DOT] = ACTIONS(5997), - [anon_sym_DOT_STAR] = ACTIONS(5999), - [anon_sym_DASH_GT] = ACTIONS(5999), + [2266] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5713), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2449] = { - [sym_identifier] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token2] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [sym_preproc_directive] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym___attribute__] = ACTIONS(2144), - [anon_sym_COLON_COLON] = ACTIONS(2142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2144), - [anon_sym___based] = ACTIONS(2144), - [anon_sym_signed] = ACTIONS(2144), - [anon_sym_unsigned] = ACTIONS(2144), - [anon_sym_long] = ACTIONS(2144), - [anon_sym_short] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_inline] = ACTIONS(2144), - [anon_sym___inline] = ACTIONS(2144), - [anon_sym___inline__] = ACTIONS(2144), - [anon_sym___forceinline] = ACTIONS(2144), - [anon_sym_thread_local] = ACTIONS(2144), - [anon_sym___thread] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [anon_sym_mutable] = ACTIONS(2144), - [anon_sym_constinit] = ACTIONS(2144), - [anon_sym_consteval] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_class] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2144), - [anon_sym_decltype] = ACTIONS(2144), - [anon_sym_virtual] = ACTIONS(2144), - [anon_sym_alignas] = ACTIONS(2144), - [anon_sym_explicit] = ACTIONS(2144), - [anon_sym_typename] = ACTIONS(2144), - [anon_sym_template] = ACTIONS(2144), - [anon_sym_operator] = ACTIONS(2144), - [anon_sym_friend] = ACTIONS(2144), - [anon_sym_public] = ACTIONS(2144), - [anon_sym_private] = ACTIONS(2144), - [anon_sym_protected] = ACTIONS(2144), - [anon_sym_using] = ACTIONS(2144), - [anon_sym_static_assert] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - }, - [2450] = { - [sym_identifier] = ACTIONS(5607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5609), - [anon_sym_COMMA] = ACTIONS(5609), - [anon_sym_RPAREN] = ACTIONS(5609), - [aux_sym_preproc_if_token2] = ACTIONS(5609), - [aux_sym_preproc_else_token1] = ACTIONS(5609), - [aux_sym_preproc_elif_token1] = ACTIONS(5607), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5609), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5609), - [anon_sym_LPAREN2] = ACTIONS(5609), - [anon_sym_DASH] = ACTIONS(5607), - [anon_sym_PLUS] = ACTIONS(5607), - [anon_sym_STAR] = ACTIONS(5607), - [anon_sym_SLASH] = ACTIONS(5607), - [anon_sym_PERCENT] = ACTIONS(5607), - [anon_sym_PIPE_PIPE] = ACTIONS(5609), - [anon_sym_AMP_AMP] = ACTIONS(5609), - [anon_sym_PIPE] = ACTIONS(5607), - [anon_sym_CARET] = ACTIONS(5607), - [anon_sym_AMP] = ACTIONS(5607), - [anon_sym_EQ_EQ] = ACTIONS(5609), - [anon_sym_BANG_EQ] = ACTIONS(5609), - [anon_sym_GT] = ACTIONS(5607), - [anon_sym_GT_EQ] = ACTIONS(5609), - [anon_sym_LT_EQ] = ACTIONS(5607), - [anon_sym_LT] = ACTIONS(5607), - [anon_sym_LT_LT] = ACTIONS(5607), - [anon_sym_GT_GT] = ACTIONS(5607), - [anon_sym_SEMI] = ACTIONS(5609), - [anon_sym___attribute__] = ACTIONS(5607), - [anon_sym_LBRACE] = ACTIONS(5609), - [anon_sym_RBRACE] = ACTIONS(5609), - [anon_sym_LBRACK] = ACTIONS(5609), - [anon_sym_RBRACK] = ACTIONS(5609), - [anon_sym_EQ] = ACTIONS(5607), - [anon_sym_COLON] = ACTIONS(5609), - [anon_sym_QMARK] = ACTIONS(5609), - [anon_sym_STAR_EQ] = ACTIONS(5609), - [anon_sym_SLASH_EQ] = ACTIONS(5609), - [anon_sym_PERCENT_EQ] = ACTIONS(5609), - [anon_sym_PLUS_EQ] = ACTIONS(5609), - [anon_sym_DASH_EQ] = ACTIONS(5609), - [anon_sym_LT_LT_EQ] = ACTIONS(5609), - [anon_sym_GT_GT_EQ] = ACTIONS(5609), - [anon_sym_AMP_EQ] = ACTIONS(5609), - [anon_sym_CARET_EQ] = ACTIONS(5609), - [anon_sym_PIPE_EQ] = ACTIONS(5609), - [anon_sym_and_eq] = ACTIONS(5607), - [anon_sym_or_eq] = ACTIONS(5607), - [anon_sym_xor_eq] = ACTIONS(5607), - [anon_sym_LT_EQ_GT] = ACTIONS(5609), - [anon_sym_or] = ACTIONS(5607), - [anon_sym_and] = ACTIONS(5607), - [anon_sym_bitor] = ACTIONS(5607), - [anon_sym_xor] = ACTIONS(5607), - [anon_sym_bitand] = ACTIONS(5607), - [anon_sym_not_eq] = ACTIONS(5607), - [anon_sym_DASH_DASH] = ACTIONS(5609), - [anon_sym_PLUS_PLUS] = ACTIONS(5609), - [anon_sym_DOT] = ACTIONS(5607), - [anon_sym_DOT_STAR] = ACTIONS(5609), - [anon_sym_DASH_GT] = ACTIONS(5609), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5607), - [anon_sym_decltype] = ACTIONS(5607), + [2267] = { + [sym_identifier] = ACTIONS(5799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5801), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_RPAREN] = ACTIONS(5801), + [anon_sym_LPAREN2] = ACTIONS(5801), + [anon_sym_DASH] = ACTIONS(5799), + [anon_sym_PLUS] = ACTIONS(5799), + [anon_sym_STAR] = ACTIONS(5801), + [anon_sym_SLASH] = ACTIONS(5799), + [anon_sym_PERCENT] = ACTIONS(5801), + [anon_sym_PIPE_PIPE] = ACTIONS(5801), + [anon_sym_AMP_AMP] = ACTIONS(5801), + [anon_sym_PIPE] = ACTIONS(5799), + [anon_sym_CARET] = ACTIONS(5801), + [anon_sym_AMP] = ACTIONS(5799), + [anon_sym_EQ_EQ] = ACTIONS(5801), + [anon_sym_BANG_EQ] = ACTIONS(5801), + [anon_sym_GT] = ACTIONS(5799), + [anon_sym_GT_EQ] = ACTIONS(5801), + [anon_sym_LT_EQ] = ACTIONS(5799), + [anon_sym_LT] = ACTIONS(5799), + [anon_sym_LT_LT] = ACTIONS(5801), + [anon_sym_GT_GT] = ACTIONS(5801), + [anon_sym_SEMI] = ACTIONS(5801), + [anon_sym___extension__] = ACTIONS(5799), + [anon_sym___attribute__] = ACTIONS(5799), + [anon_sym___based] = ACTIONS(5799), + [anon_sym_LBRACE] = ACTIONS(5801), + [anon_sym_RBRACE] = ACTIONS(5801), + [anon_sym_signed] = ACTIONS(5799), + [anon_sym_unsigned] = ACTIONS(5799), + [anon_sym_long] = ACTIONS(5799), + [anon_sym_short] = ACTIONS(5799), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_RBRACK] = ACTIONS(5801), + [anon_sym_const] = ACTIONS(5799), + [anon_sym_constexpr] = ACTIONS(5799), + [anon_sym_volatile] = ACTIONS(5799), + [anon_sym_restrict] = ACTIONS(5799), + [anon_sym___restrict__] = ACTIONS(5799), + [anon_sym__Atomic] = ACTIONS(5799), + [anon_sym__Noreturn] = ACTIONS(5799), + [anon_sym_noreturn] = ACTIONS(5799), + [anon_sym_mutable] = ACTIONS(5799), + [anon_sym_constinit] = ACTIONS(5799), + [anon_sym_consteval] = ACTIONS(5799), + [sym_primitive_type] = ACTIONS(5799), + [anon_sym_COLON] = ACTIONS(5801), + [anon_sym_QMARK] = ACTIONS(5801), + [anon_sym_LT_EQ_GT] = ACTIONS(5801), + [anon_sym_or] = ACTIONS(5799), + [anon_sym_and] = ACTIONS(5799), + [anon_sym_bitor] = ACTIONS(5799), + [anon_sym_xor] = ACTIONS(5799), + [anon_sym_bitand] = ACTIONS(5799), + [anon_sym_not_eq] = ACTIONS(5799), + [anon_sym_DASH_DASH] = ACTIONS(5801), + [anon_sym_PLUS_PLUS] = ACTIONS(5801), + [anon_sym_DOT] = ACTIONS(5799), + [anon_sym_DOT_STAR] = ACTIONS(5801), + [anon_sym_DASH_GT] = ACTIONS(5801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5799), + [anon_sym_decltype] = ACTIONS(5799), + [anon_sym_final] = ACTIONS(5799), + [anon_sym_override] = ACTIONS(5799), + [anon_sym_requires] = ACTIONS(5799), }, - [2451] = { - [sym_identifier] = ACTIONS(5613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(5615), - [anon_sym_RPAREN] = ACTIONS(5615), - [aux_sym_preproc_if_token2] = ACTIONS(5615), - [aux_sym_preproc_else_token1] = ACTIONS(5615), - [aux_sym_preproc_elif_token1] = ACTIONS(5613), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5615), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5615), - [anon_sym_LPAREN2] = ACTIONS(5615), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5613), - [anon_sym_SLASH] = ACTIONS(5613), - [anon_sym_PERCENT] = ACTIONS(5613), - [anon_sym_PIPE_PIPE] = ACTIONS(5615), - [anon_sym_AMP_AMP] = ACTIONS(5615), - [anon_sym_PIPE] = ACTIONS(5613), - [anon_sym_CARET] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5613), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5613), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_LT_EQ] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5613), - [anon_sym_LT_LT] = ACTIONS(5613), - [anon_sym_GT_GT] = ACTIONS(5613), - [anon_sym_SEMI] = ACTIONS(5615), - [anon_sym___attribute__] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5615), - [anon_sym_RBRACE] = ACTIONS(5615), - [anon_sym_LBRACK] = ACTIONS(5615), - [anon_sym_RBRACK] = ACTIONS(5615), - [anon_sym_EQ] = ACTIONS(5613), - [anon_sym_COLON] = ACTIONS(5615), - [anon_sym_QMARK] = ACTIONS(5615), - [anon_sym_STAR_EQ] = ACTIONS(5615), - [anon_sym_SLASH_EQ] = ACTIONS(5615), - [anon_sym_PERCENT_EQ] = ACTIONS(5615), - [anon_sym_PLUS_EQ] = ACTIONS(5615), - [anon_sym_DASH_EQ] = ACTIONS(5615), - [anon_sym_LT_LT_EQ] = ACTIONS(5615), - [anon_sym_GT_GT_EQ] = ACTIONS(5615), - [anon_sym_AMP_EQ] = ACTIONS(5615), - [anon_sym_CARET_EQ] = ACTIONS(5615), - [anon_sym_PIPE_EQ] = ACTIONS(5615), - [anon_sym_and_eq] = ACTIONS(5613), - [anon_sym_or_eq] = ACTIONS(5613), - [anon_sym_xor_eq] = ACTIONS(5613), - [anon_sym_LT_EQ_GT] = ACTIONS(5615), - [anon_sym_or] = ACTIONS(5613), - [anon_sym_and] = ACTIONS(5613), - [anon_sym_bitor] = ACTIONS(5613), - [anon_sym_xor] = ACTIONS(5613), - [anon_sym_bitand] = ACTIONS(5613), - [anon_sym_not_eq] = ACTIONS(5613), - [anon_sym_DASH_DASH] = ACTIONS(5615), - [anon_sym_PLUS_PLUS] = ACTIONS(5615), - [anon_sym_DOT] = ACTIONS(5613), - [anon_sym_DOT_STAR] = ACTIONS(5615), - [anon_sym_DASH_GT] = ACTIONS(5615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5613), - [anon_sym_decltype] = ACTIONS(5613), + [2268] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4228), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4173), + [anon_sym_or_eq] = ACTIONS(4173), + [anon_sym_xor_eq] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), }, - [2452] = { - [sym_argument_list] = STATE(2837), - [sym_initializer_list] = STATE(2837), - [sym_identifier] = ACTIONS(6001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6003), - [anon_sym_COMMA] = ACTIONS(6003), - [anon_sym_RPAREN] = ACTIONS(6003), - [aux_sym_preproc_if_token2] = ACTIONS(6003), - [aux_sym_preproc_else_token1] = ACTIONS(6003), - [aux_sym_preproc_elif_token1] = ACTIONS(6001), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6003), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6003), - [anon_sym_LPAREN2] = ACTIONS(5324), - [anon_sym_DASH] = ACTIONS(6001), - [anon_sym_PLUS] = ACTIONS(6001), - [anon_sym_STAR] = ACTIONS(6001), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_PERCENT] = ACTIONS(6001), - [anon_sym_PIPE_PIPE] = ACTIONS(6003), - [anon_sym_AMP_AMP] = ACTIONS(6003), - [anon_sym_PIPE] = ACTIONS(6001), - [anon_sym_CARET] = ACTIONS(6001), - [anon_sym_AMP] = ACTIONS(6001), - [anon_sym_EQ_EQ] = ACTIONS(6003), - [anon_sym_BANG_EQ] = ACTIONS(6003), - [anon_sym_GT] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6001), - [anon_sym_LT] = ACTIONS(6001), - [anon_sym_LT_LT] = ACTIONS(6001), - [anon_sym_GT_GT] = ACTIONS(6001), - [anon_sym_SEMI] = ACTIONS(6003), - [anon_sym___attribute__] = ACTIONS(6001), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(6003), - [anon_sym_LBRACK] = ACTIONS(6003), - [anon_sym_RBRACK] = ACTIONS(6003), - [anon_sym_EQ] = ACTIONS(6001), - [anon_sym_COLON] = ACTIONS(6003), - [anon_sym_QMARK] = ACTIONS(6003), - [anon_sym_STAR_EQ] = ACTIONS(6003), - [anon_sym_SLASH_EQ] = ACTIONS(6003), - [anon_sym_PERCENT_EQ] = ACTIONS(6003), - [anon_sym_PLUS_EQ] = ACTIONS(6003), - [anon_sym_DASH_EQ] = ACTIONS(6003), - [anon_sym_LT_LT_EQ] = ACTIONS(6003), - [anon_sym_GT_GT_EQ] = ACTIONS(6003), - [anon_sym_AMP_EQ] = ACTIONS(6003), - [anon_sym_CARET_EQ] = ACTIONS(6003), - [anon_sym_PIPE_EQ] = ACTIONS(6003), - [anon_sym_and_eq] = ACTIONS(6001), - [anon_sym_or_eq] = ACTIONS(6001), - [anon_sym_xor_eq] = ACTIONS(6001), - [anon_sym_LT_EQ_GT] = ACTIONS(6003), - [anon_sym_or] = ACTIONS(6001), - [anon_sym_and] = ACTIONS(6001), - [anon_sym_bitor] = ACTIONS(6001), - [anon_sym_xor] = ACTIONS(6001), - [anon_sym_bitand] = ACTIONS(6001), - [anon_sym_not_eq] = ACTIONS(6001), - [anon_sym_DASH_DASH] = ACTIONS(6003), - [anon_sym_PLUS_PLUS] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(6001), - [anon_sym_DOT_STAR] = ACTIONS(6003), - [anon_sym_DASH_GT] = ACTIONS(6003), + [2269] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5698), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2453] = { - [sym_identifier] = ACTIONS(6005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6007), - [anon_sym_COMMA] = ACTIONS(6007), - [anon_sym_RPAREN] = ACTIONS(6007), - [aux_sym_preproc_if_token2] = ACTIONS(6007), - [aux_sym_preproc_else_token1] = ACTIONS(6007), - [aux_sym_preproc_elif_token1] = ACTIONS(6005), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6007), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6007), - [anon_sym_LPAREN2] = ACTIONS(6007), - [anon_sym_DASH] = ACTIONS(6005), - [anon_sym_PLUS] = ACTIONS(6005), - [anon_sym_STAR] = ACTIONS(6005), - [anon_sym_SLASH] = ACTIONS(6005), - [anon_sym_PERCENT] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [anon_sym_AMP_AMP] = ACTIONS(6007), - [anon_sym_PIPE] = ACTIONS(6005), - [anon_sym_CARET] = ACTIONS(6005), - [anon_sym_AMP] = ACTIONS(6005), - [anon_sym_EQ_EQ] = ACTIONS(6007), - [anon_sym_BANG_EQ] = ACTIONS(6007), - [anon_sym_GT] = ACTIONS(6005), - [anon_sym_GT_EQ] = ACTIONS(6007), - [anon_sym_LT_EQ] = ACTIONS(6005), - [anon_sym_LT] = ACTIONS(6005), - [anon_sym_LT_LT] = ACTIONS(6005), - [anon_sym_GT_GT] = ACTIONS(6005), - [anon_sym_SEMI] = ACTIONS(6007), - [anon_sym___attribute__] = ACTIONS(6005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6007), - [anon_sym_LBRACE] = ACTIONS(6007), - [anon_sym_RBRACE] = ACTIONS(6007), - [anon_sym_LBRACK] = ACTIONS(6005), - [anon_sym_RBRACK] = ACTIONS(6007), - [anon_sym_EQ] = ACTIONS(6005), - [anon_sym_COLON] = ACTIONS(6007), - [anon_sym_QMARK] = ACTIONS(6007), - [anon_sym_STAR_EQ] = ACTIONS(6007), - [anon_sym_SLASH_EQ] = ACTIONS(6007), - [anon_sym_PERCENT_EQ] = ACTIONS(6007), - [anon_sym_PLUS_EQ] = ACTIONS(6007), - [anon_sym_DASH_EQ] = ACTIONS(6007), - [anon_sym_LT_LT_EQ] = ACTIONS(6007), - [anon_sym_GT_GT_EQ] = ACTIONS(6007), - [anon_sym_AMP_EQ] = ACTIONS(6007), - [anon_sym_CARET_EQ] = ACTIONS(6007), - [anon_sym_PIPE_EQ] = ACTIONS(6007), - [anon_sym_and_eq] = ACTIONS(6005), - [anon_sym_or_eq] = ACTIONS(6005), - [anon_sym_xor_eq] = ACTIONS(6005), - [anon_sym_LT_EQ_GT] = ACTIONS(6007), - [anon_sym_or] = ACTIONS(6005), - [anon_sym_and] = ACTIONS(6005), - [anon_sym_bitor] = ACTIONS(6005), - [anon_sym_xor] = ACTIONS(6005), - [anon_sym_bitand] = ACTIONS(6005), - [anon_sym_not_eq] = ACTIONS(6005), - [anon_sym_DASH_DASH] = ACTIONS(6007), - [anon_sym_PLUS_PLUS] = ACTIONS(6007), - [anon_sym_DOT] = ACTIONS(6005), - [anon_sym_DOT_STAR] = ACTIONS(6007), - [anon_sym_DASH_GT] = ACTIONS(6007), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6005), + [2270] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(4208), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4173), + [anon_sym_SLASH_EQ] = ACTIONS(4173), + [anon_sym_PERCENT_EQ] = ACTIONS(4173), + [anon_sym_PLUS_EQ] = ACTIONS(4173), + [anon_sym_DASH_EQ] = ACTIONS(4173), + [anon_sym_LT_LT_EQ] = ACTIONS(4173), + [anon_sym_GT_GT_EQ] = ACTIONS(4173), + [anon_sym_AMP_EQ] = ACTIONS(4173), + [anon_sym_CARET_EQ] = ACTIONS(4173), + [anon_sym_PIPE_EQ] = ACTIONS(4173), + [anon_sym_and_eq] = ACTIONS(4173), + [anon_sym_or_eq] = ACTIONS(4173), + [anon_sym_xor_eq] = ACTIONS(4173), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), }, - [2454] = { - [sym_identifier] = ACTIONS(6009), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6011), - [anon_sym_COMMA] = ACTIONS(6011), - [anon_sym_RPAREN] = ACTIONS(6011), - [aux_sym_preproc_if_token2] = ACTIONS(6011), - [aux_sym_preproc_else_token1] = ACTIONS(6011), - [aux_sym_preproc_elif_token1] = ACTIONS(6009), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6011), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6011), - [anon_sym_LPAREN2] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6009), - [anon_sym_PLUS] = ACTIONS(6009), - [anon_sym_STAR] = ACTIONS(6009), - [anon_sym_SLASH] = ACTIONS(6009), - [anon_sym_PERCENT] = ACTIONS(6009), - [anon_sym_PIPE_PIPE] = ACTIONS(6011), - [anon_sym_AMP_AMP] = ACTIONS(6011), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_CARET] = ACTIONS(6009), - [anon_sym_AMP] = ACTIONS(6009), - [anon_sym_EQ_EQ] = ACTIONS(6011), - [anon_sym_BANG_EQ] = ACTIONS(6011), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_GT_EQ] = ACTIONS(6011), - [anon_sym_LT_EQ] = ACTIONS(6009), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_LT_LT] = ACTIONS(6009), - [anon_sym_GT_GT] = ACTIONS(6009), - [anon_sym_SEMI] = ACTIONS(6011), - [anon_sym___attribute__] = ACTIONS(6009), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6011), - [anon_sym_LBRACE] = ACTIONS(6011), - [anon_sym_RBRACE] = ACTIONS(6011), - [anon_sym_LBRACK] = ACTIONS(6009), - [anon_sym_RBRACK] = ACTIONS(6011), - [anon_sym_EQ] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6011), - [anon_sym_QMARK] = ACTIONS(6011), - [anon_sym_STAR_EQ] = ACTIONS(6011), - [anon_sym_SLASH_EQ] = ACTIONS(6011), - [anon_sym_PERCENT_EQ] = ACTIONS(6011), - [anon_sym_PLUS_EQ] = ACTIONS(6011), - [anon_sym_DASH_EQ] = ACTIONS(6011), - [anon_sym_LT_LT_EQ] = ACTIONS(6011), - [anon_sym_GT_GT_EQ] = ACTIONS(6011), - [anon_sym_AMP_EQ] = ACTIONS(6011), - [anon_sym_CARET_EQ] = ACTIONS(6011), - [anon_sym_PIPE_EQ] = ACTIONS(6011), - [anon_sym_and_eq] = ACTIONS(6009), - [anon_sym_or_eq] = ACTIONS(6009), - [anon_sym_xor_eq] = ACTIONS(6009), - [anon_sym_LT_EQ_GT] = ACTIONS(6011), - [anon_sym_or] = ACTIONS(6009), - [anon_sym_and] = ACTIONS(6009), - [anon_sym_bitor] = ACTIONS(6009), - [anon_sym_xor] = ACTIONS(6009), - [anon_sym_bitand] = ACTIONS(6009), - [anon_sym_not_eq] = ACTIONS(6009), - [anon_sym_DASH_DASH] = ACTIONS(6011), - [anon_sym_PLUS_PLUS] = ACTIONS(6011), - [anon_sym_DOT] = ACTIONS(6009), - [anon_sym_DOT_STAR] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(6011), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(6009), + [2271] = { + [sym_identifier] = ACTIONS(5418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_RPAREN] = ACTIONS(5420), + [anon_sym_LPAREN2] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5418), + [anon_sym_STAR] = ACTIONS(5420), + [anon_sym_SLASH] = ACTIONS(5418), + [anon_sym_PERCENT] = ACTIONS(5420), + [anon_sym_PIPE_PIPE] = ACTIONS(5420), + [anon_sym_AMP_AMP] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_EQ] = ACTIONS(5418), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_LT_LT] = ACTIONS(5420), + [anon_sym_GT_GT] = ACTIONS(5420), + [anon_sym_SEMI] = ACTIONS(5420), + [anon_sym___extension__] = ACTIONS(5418), + [anon_sym___attribute__] = ACTIONS(5418), + [anon_sym___based] = ACTIONS(5418), + [anon_sym_LBRACE] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_signed] = ACTIONS(5418), + [anon_sym_unsigned] = ACTIONS(5418), + [anon_sym_long] = ACTIONS(5418), + [anon_sym_short] = ACTIONS(5418), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_RBRACK] = ACTIONS(5420), + [anon_sym_const] = ACTIONS(5418), + [anon_sym_constexpr] = ACTIONS(5418), + [anon_sym_volatile] = ACTIONS(5418), + [anon_sym_restrict] = ACTIONS(5418), + [anon_sym___restrict__] = ACTIONS(5418), + [anon_sym__Atomic] = ACTIONS(5418), + [anon_sym__Noreturn] = ACTIONS(5418), + [anon_sym_noreturn] = ACTIONS(5418), + [anon_sym_mutable] = ACTIONS(5418), + [anon_sym_constinit] = ACTIONS(5418), + [anon_sym_consteval] = ACTIONS(5418), + [sym_primitive_type] = ACTIONS(5418), + [anon_sym_COLON] = ACTIONS(5420), + [anon_sym_QMARK] = ACTIONS(5420), + [anon_sym_LT_EQ_GT] = ACTIONS(5420), + [anon_sym_or] = ACTIONS(5418), + [anon_sym_and] = ACTIONS(5418), + [anon_sym_bitor] = ACTIONS(5418), + [anon_sym_xor] = ACTIONS(5418), + [anon_sym_bitand] = ACTIONS(5418), + [anon_sym_not_eq] = ACTIONS(5418), + [anon_sym_DASH_DASH] = ACTIONS(5420), + [anon_sym_PLUS_PLUS] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_DOT_STAR] = ACTIONS(5420), + [anon_sym_DASH_GT] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5418), + [anon_sym_decltype] = ACTIONS(5418), + [anon_sym_final] = ACTIONS(5418), + [anon_sym_override] = ACTIONS(5418), + [anon_sym_requires] = ACTIONS(5418), }, - [2455] = { - [sym_template_argument_list] = STATE(1935), - [aux_sym_sized_type_specifier_repeat1] = STATE(2692), - [sym_identifier] = ACTIONS(5566), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5568), - [anon_sym_COMMA] = ACTIONS(5568), - [aux_sym_preproc_if_token2] = ACTIONS(5568), - [aux_sym_preproc_else_token1] = ACTIONS(5568), - [aux_sym_preproc_elif_token1] = ACTIONS(5568), - [anon_sym_LPAREN2] = ACTIONS(5568), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_STAR] = ACTIONS(5566), - [anon_sym_SLASH] = ACTIONS(5566), - [anon_sym_PERCENT] = ACTIONS(5566), - [anon_sym_PIPE_PIPE] = ACTIONS(5568), - [anon_sym_AMP_AMP] = ACTIONS(5568), - [anon_sym_PIPE] = ACTIONS(5566), - [anon_sym_CARET] = ACTIONS(5566), - [anon_sym_AMP] = ACTIONS(5566), - [anon_sym_EQ_EQ] = ACTIONS(5568), - [anon_sym_BANG_EQ] = ACTIONS(5568), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_GT_EQ] = ACTIONS(5568), - [anon_sym_LT_EQ] = ACTIONS(5566), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_LT_LT] = ACTIONS(5566), - [anon_sym_GT_GT] = ACTIONS(5566), - [anon_sym___attribute__] = ACTIONS(5566), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(5568), - [anon_sym_signed] = ACTIONS(6013), - [anon_sym_unsigned] = ACTIONS(6013), - [anon_sym_long] = ACTIONS(6013), - [anon_sym_short] = ACTIONS(6013), - [anon_sym_LBRACK] = ACTIONS(5568), - [anon_sym_EQ] = ACTIONS(5566), - [anon_sym_QMARK] = ACTIONS(5568), - [anon_sym_STAR_EQ] = ACTIONS(5568), - [anon_sym_SLASH_EQ] = ACTIONS(5568), - [anon_sym_PERCENT_EQ] = ACTIONS(5568), - [anon_sym_PLUS_EQ] = ACTIONS(5568), - [anon_sym_DASH_EQ] = ACTIONS(5568), - [anon_sym_LT_LT_EQ] = ACTIONS(5568), - [anon_sym_GT_GT_EQ] = ACTIONS(5568), - [anon_sym_AMP_EQ] = ACTIONS(5568), - [anon_sym_CARET_EQ] = ACTIONS(5568), - [anon_sym_PIPE_EQ] = ACTIONS(5568), - [anon_sym_and_eq] = ACTIONS(5566), - [anon_sym_or_eq] = ACTIONS(5566), - [anon_sym_xor_eq] = ACTIONS(5566), - [anon_sym_LT_EQ_GT] = ACTIONS(5568), - [anon_sym_or] = ACTIONS(5566), - [anon_sym_and] = ACTIONS(5566), - [anon_sym_bitor] = ACTIONS(5566), - [anon_sym_xor] = ACTIONS(5566), - [anon_sym_bitand] = ACTIONS(5566), - [anon_sym_not_eq] = ACTIONS(5566), - [anon_sym_DASH_DASH] = ACTIONS(5568), - [anon_sym_PLUS_PLUS] = ACTIONS(5568), - [anon_sym_DOT] = ACTIONS(5566), - [anon_sym_DOT_STAR] = ACTIONS(5568), - [anon_sym_DASH_GT] = ACTIONS(5568), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5566), - [anon_sym_decltype] = ACTIONS(5566), + [2272] = { + [sym_identifier] = ACTIONS(5803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_LPAREN2] = ACTIONS(5805), + [anon_sym_DASH] = ACTIONS(5803), + [anon_sym_PLUS] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5805), + [anon_sym_SLASH] = ACTIONS(5803), + [anon_sym_PERCENT] = ACTIONS(5805), + [anon_sym_PIPE_PIPE] = ACTIONS(5805), + [anon_sym_AMP_AMP] = ACTIONS(5805), + [anon_sym_PIPE] = ACTIONS(5803), + [anon_sym_CARET] = ACTIONS(5805), + [anon_sym_AMP] = ACTIONS(5803), + [anon_sym_EQ_EQ] = ACTIONS(5805), + [anon_sym_BANG_EQ] = ACTIONS(5805), + [anon_sym_GT] = ACTIONS(5803), + [anon_sym_GT_EQ] = ACTIONS(5805), + [anon_sym_LT_EQ] = ACTIONS(5803), + [anon_sym_LT] = ACTIONS(5803), + [anon_sym_LT_LT] = ACTIONS(5805), + [anon_sym_GT_GT] = ACTIONS(5805), + [anon_sym_SEMI] = ACTIONS(5805), + [anon_sym___extension__] = ACTIONS(5803), + [anon_sym___attribute__] = ACTIONS(5803), + [anon_sym___based] = ACTIONS(5803), + [anon_sym_LBRACE] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(5805), + [anon_sym_signed] = ACTIONS(5803), + [anon_sym_unsigned] = ACTIONS(5803), + [anon_sym_long] = ACTIONS(5803), + [anon_sym_short] = ACTIONS(5803), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_const] = ACTIONS(5803), + [anon_sym_constexpr] = ACTIONS(5803), + [anon_sym_volatile] = ACTIONS(5803), + [anon_sym_restrict] = ACTIONS(5803), + [anon_sym___restrict__] = ACTIONS(5803), + [anon_sym__Atomic] = ACTIONS(5803), + [anon_sym__Noreturn] = ACTIONS(5803), + [anon_sym_noreturn] = ACTIONS(5803), + [anon_sym_mutable] = ACTIONS(5803), + [anon_sym_constinit] = ACTIONS(5803), + [anon_sym_consteval] = ACTIONS(5803), + [sym_primitive_type] = ACTIONS(5803), + [anon_sym_COLON] = ACTIONS(5805), + [anon_sym_QMARK] = ACTIONS(5805), + [anon_sym_LT_EQ_GT] = ACTIONS(5805), + [anon_sym_or] = ACTIONS(5803), + [anon_sym_and] = ACTIONS(5803), + [anon_sym_bitor] = ACTIONS(5803), + [anon_sym_xor] = ACTIONS(5803), + [anon_sym_bitand] = ACTIONS(5803), + [anon_sym_not_eq] = ACTIONS(5803), + [anon_sym_DASH_DASH] = ACTIONS(5805), + [anon_sym_PLUS_PLUS] = ACTIONS(5805), + [anon_sym_DOT] = ACTIONS(5803), + [anon_sym_DOT_STAR] = ACTIONS(5805), + [anon_sym_DASH_GT] = ACTIONS(5805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5803), + [anon_sym_decltype] = ACTIONS(5803), + [anon_sym_final] = ACTIONS(5803), + [anon_sym_override] = ACTIONS(5803), + [anon_sym_requires] = ACTIONS(5803), }, - [2456] = { - [sym_identifier] = ACTIONS(5617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5619), - [anon_sym_COMMA] = ACTIONS(5619), - [anon_sym_RPAREN] = ACTIONS(5619), - [aux_sym_preproc_if_token2] = ACTIONS(5619), - [aux_sym_preproc_else_token1] = ACTIONS(5619), - [aux_sym_preproc_elif_token1] = ACTIONS(5617), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5619), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_DASH] = ACTIONS(5617), - [anon_sym_PLUS] = ACTIONS(5617), - [anon_sym_STAR] = ACTIONS(5617), - [anon_sym_SLASH] = ACTIONS(5617), - [anon_sym_PERCENT] = ACTIONS(5617), - [anon_sym_PIPE_PIPE] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5619), - [anon_sym_PIPE] = ACTIONS(5617), - [anon_sym_CARET] = ACTIONS(5617), - [anon_sym_AMP] = ACTIONS(5617), - [anon_sym_EQ_EQ] = ACTIONS(5619), - [anon_sym_BANG_EQ] = ACTIONS(5619), - [anon_sym_GT] = ACTIONS(5617), - [anon_sym_GT_EQ] = ACTIONS(5619), - [anon_sym_LT_EQ] = ACTIONS(5617), - [anon_sym_LT] = ACTIONS(5617), - [anon_sym_LT_LT] = ACTIONS(5617), - [anon_sym_GT_GT] = ACTIONS(5617), - [anon_sym_SEMI] = ACTIONS(5619), - [anon_sym___attribute__] = ACTIONS(5617), - [anon_sym_LBRACE] = ACTIONS(5619), - [anon_sym_RBRACE] = ACTIONS(5619), - [anon_sym_LBRACK] = ACTIONS(5619), - [anon_sym_RBRACK] = ACTIONS(5619), - [anon_sym_EQ] = ACTIONS(5617), - [anon_sym_COLON] = ACTIONS(5619), - [anon_sym_QMARK] = ACTIONS(5619), - [anon_sym_STAR_EQ] = ACTIONS(5619), - [anon_sym_SLASH_EQ] = ACTIONS(5619), - [anon_sym_PERCENT_EQ] = ACTIONS(5619), - [anon_sym_PLUS_EQ] = ACTIONS(5619), - [anon_sym_DASH_EQ] = ACTIONS(5619), - [anon_sym_LT_LT_EQ] = ACTIONS(5619), - [anon_sym_GT_GT_EQ] = ACTIONS(5619), - [anon_sym_AMP_EQ] = ACTIONS(5619), - [anon_sym_CARET_EQ] = ACTIONS(5619), - [anon_sym_PIPE_EQ] = ACTIONS(5619), - [anon_sym_and_eq] = ACTIONS(5617), - [anon_sym_or_eq] = ACTIONS(5617), - [anon_sym_xor_eq] = ACTIONS(5617), - [anon_sym_LT_EQ_GT] = ACTIONS(5619), - [anon_sym_or] = ACTIONS(5617), - [anon_sym_and] = ACTIONS(5617), - [anon_sym_bitor] = ACTIONS(5617), - [anon_sym_xor] = ACTIONS(5617), - [anon_sym_bitand] = ACTIONS(5617), - [anon_sym_not_eq] = ACTIONS(5617), - [anon_sym_DASH_DASH] = ACTIONS(5619), - [anon_sym_PLUS_PLUS] = ACTIONS(5619), - [anon_sym_DOT] = ACTIONS(5617), - [anon_sym_DOT_STAR] = ACTIONS(5619), - [anon_sym_DASH_GT] = ACTIONS(5619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5617), - [anon_sym_decltype] = ACTIONS(5617), + [2273] = { + [sym_identifier] = ACTIONS(5807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [anon_sym_LPAREN2] = ACTIONS(5809), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5809), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_PERCENT] = ACTIONS(5809), + [anon_sym_PIPE_PIPE] = ACTIONS(5809), + [anon_sym_AMP_AMP] = ACTIONS(5809), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(5807), + [anon_sym_EQ_EQ] = ACTIONS(5809), + [anon_sym_BANG_EQ] = ACTIONS(5809), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_GT_EQ] = ACTIONS(5809), + [anon_sym_LT_EQ] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_LT_LT] = ACTIONS(5809), + [anon_sym_GT_GT] = ACTIONS(5809), + [anon_sym_SEMI] = ACTIONS(5809), + [anon_sym___extension__] = ACTIONS(5807), + [anon_sym___attribute__] = ACTIONS(5807), + [anon_sym___based] = ACTIONS(5807), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_RBRACE] = ACTIONS(5809), + [anon_sym_signed] = ACTIONS(5807), + [anon_sym_unsigned] = ACTIONS(5807), + [anon_sym_long] = ACTIONS(5807), + [anon_sym_short] = ACTIONS(5807), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_const] = ACTIONS(5807), + [anon_sym_constexpr] = ACTIONS(5807), + [anon_sym_volatile] = ACTIONS(5807), + [anon_sym_restrict] = ACTIONS(5807), + [anon_sym___restrict__] = ACTIONS(5807), + [anon_sym__Atomic] = ACTIONS(5807), + [anon_sym__Noreturn] = ACTIONS(5807), + [anon_sym_noreturn] = ACTIONS(5807), + [anon_sym_mutable] = ACTIONS(5807), + [anon_sym_constinit] = ACTIONS(5807), + [anon_sym_consteval] = ACTIONS(5807), + [sym_primitive_type] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5809), + [anon_sym_QMARK] = ACTIONS(5809), + [anon_sym_LT_EQ_GT] = ACTIONS(5809), + [anon_sym_or] = ACTIONS(5807), + [anon_sym_and] = ACTIONS(5807), + [anon_sym_bitor] = ACTIONS(5807), + [anon_sym_xor] = ACTIONS(5807), + [anon_sym_bitand] = ACTIONS(5807), + [anon_sym_not_eq] = ACTIONS(5807), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_DOT_STAR] = ACTIONS(5809), + [anon_sym_DASH_GT] = ACTIONS(5809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5807), + [anon_sym_decltype] = ACTIONS(5807), + [anon_sym_final] = ACTIONS(5807), + [anon_sym_override] = ACTIONS(5807), + [anon_sym_requires] = ACTIONS(5807), }, - [2457] = { - [sym_identifier] = ACTIONS(5230), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5232), - [anon_sym_COMMA] = ACTIONS(5232), - [aux_sym_preproc_if_token2] = ACTIONS(5232), - [aux_sym_preproc_else_token1] = ACTIONS(5232), - [aux_sym_preproc_elif_token1] = ACTIONS(5232), - [anon_sym_LPAREN2] = ACTIONS(5232), - [anon_sym_DASH] = ACTIONS(5230), - [anon_sym_PLUS] = ACTIONS(5230), - [anon_sym_STAR] = ACTIONS(5230), - [anon_sym_SLASH] = ACTIONS(5230), - [anon_sym_PERCENT] = ACTIONS(5230), - [anon_sym_PIPE_PIPE] = ACTIONS(5232), - [anon_sym_AMP_AMP] = ACTIONS(5232), - [anon_sym_PIPE] = ACTIONS(5230), - [anon_sym_CARET] = ACTIONS(5230), - [anon_sym_AMP] = ACTIONS(5230), - [anon_sym_EQ_EQ] = ACTIONS(5232), - [anon_sym_BANG_EQ] = ACTIONS(5232), - [anon_sym_GT] = ACTIONS(5230), - [anon_sym_GT_EQ] = ACTIONS(5232), - [anon_sym_LT_EQ] = ACTIONS(5230), - [anon_sym_LT] = ACTIONS(5230), - [anon_sym_LT_LT] = ACTIONS(5230), - [anon_sym_GT_GT] = ACTIONS(5230), - [anon_sym_LBRACK] = ACTIONS(5232), - [anon_sym_EQ] = ACTIONS(5230), - [anon_sym_QMARK] = ACTIONS(5232), - [anon_sym_STAR_EQ] = ACTIONS(5232), - [anon_sym_SLASH_EQ] = ACTIONS(5232), - [anon_sym_PERCENT_EQ] = ACTIONS(5232), - [anon_sym_PLUS_EQ] = ACTIONS(5232), - [anon_sym_DASH_EQ] = ACTIONS(5232), - [anon_sym_LT_LT_EQ] = ACTIONS(5232), - [anon_sym_GT_GT_EQ] = ACTIONS(5232), - [anon_sym_AMP_EQ] = ACTIONS(5232), - [anon_sym_CARET_EQ] = ACTIONS(5232), - [anon_sym_PIPE_EQ] = ACTIONS(5232), - [anon_sym_and_eq] = ACTIONS(5230), - [anon_sym_or_eq] = ACTIONS(5230), - [anon_sym_xor_eq] = ACTIONS(5230), - [anon_sym_LT_EQ_GT] = ACTIONS(5232), - [anon_sym_or] = ACTIONS(5230), - [anon_sym_and] = ACTIONS(5230), - [anon_sym_bitor] = ACTIONS(5230), - [anon_sym_xor] = ACTIONS(5230), - [anon_sym_bitand] = ACTIONS(5230), - [anon_sym_not_eq] = ACTIONS(5230), - [anon_sym_DASH_DASH] = ACTIONS(5232), - [anon_sym_PLUS_PLUS] = ACTIONS(5232), - [anon_sym_DOT] = ACTIONS(5230), - [anon_sym_DOT_STAR] = ACTIONS(5232), - [anon_sym_DASH_GT] = ACTIONS(5232), - [anon_sym_L_DQUOTE] = ACTIONS(5232), - [anon_sym_u_DQUOTE] = ACTIONS(5232), - [anon_sym_U_DQUOTE] = ACTIONS(5232), - [anon_sym_u8_DQUOTE] = ACTIONS(5232), - [anon_sym_DQUOTE] = ACTIONS(5232), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5232), - [anon_sym_LR_DQUOTE] = ACTIONS(5232), - [anon_sym_uR_DQUOTE] = ACTIONS(5232), - [anon_sym_UR_DQUOTE] = ACTIONS(5232), - [anon_sym_u8R_DQUOTE] = ACTIONS(5232), - [sym_literal_suffix] = ACTIONS(5230), + [2274] = { + [sym_identifier] = ACTIONS(5560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_RPAREN] = ACTIONS(5562), + [aux_sym_preproc_if_token2] = ACTIONS(5562), + [aux_sym_preproc_else_token1] = ACTIONS(5562), + [aux_sym_preproc_elif_token1] = ACTIONS(5560), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5562), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5562), + [anon_sym_LPAREN2] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_STAR] = ACTIONS(5560), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5560), + [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5560), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_EQ] = ACTIONS(5560), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5560), + [anon_sym_GT_GT] = ACTIONS(5560), + [anon_sym_SEMI] = ACTIONS(5562), + [anon_sym___attribute__] = ACTIONS(5560), + [anon_sym_LBRACE] = ACTIONS(5562), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_RBRACK] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(5560), + [anon_sym_COLON] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_STAR_EQ] = ACTIONS(5562), + [anon_sym_SLASH_EQ] = ACTIONS(5562), + [anon_sym_PERCENT_EQ] = ACTIONS(5562), + [anon_sym_PLUS_EQ] = ACTIONS(5562), + [anon_sym_DASH_EQ] = ACTIONS(5562), + [anon_sym_LT_LT_EQ] = ACTIONS(5562), + [anon_sym_GT_GT_EQ] = ACTIONS(5562), + [anon_sym_AMP_EQ] = ACTIONS(5562), + [anon_sym_CARET_EQ] = ACTIONS(5562), + [anon_sym_PIPE_EQ] = ACTIONS(5562), + [anon_sym_and_eq] = ACTIONS(5560), + [anon_sym_or_eq] = ACTIONS(5560), + [anon_sym_xor_eq] = ACTIONS(5560), + [anon_sym_LT_EQ_GT] = ACTIONS(5562), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_bitor] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_bitand] = ACTIONS(5560), + [anon_sym_not_eq] = ACTIONS(5560), + [anon_sym_DASH_DASH] = ACTIONS(5562), + [anon_sym_PLUS_PLUS] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_DOT_STAR] = ACTIONS(5562), + [anon_sym_DASH_GT] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5560), + [anon_sym_decltype] = ACTIONS(5560), + [anon_sym_final] = ACTIONS(5560), + [anon_sym_override] = ACTIONS(5560), }, - [2458] = { - [sym_identifier] = ACTIONS(5621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5623), - [anon_sym_COMMA] = ACTIONS(5623), - [anon_sym_RPAREN] = ACTIONS(5623), - [aux_sym_preproc_if_token2] = ACTIONS(5623), - [aux_sym_preproc_else_token1] = ACTIONS(5623), - [aux_sym_preproc_elif_token1] = ACTIONS(5621), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5623), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5623), - [anon_sym_LPAREN2] = ACTIONS(5623), - [anon_sym_DASH] = ACTIONS(5621), - [anon_sym_PLUS] = ACTIONS(5621), - [anon_sym_STAR] = ACTIONS(5621), - [anon_sym_SLASH] = ACTIONS(5621), - [anon_sym_PERCENT] = ACTIONS(5621), - [anon_sym_PIPE_PIPE] = ACTIONS(5623), - [anon_sym_AMP_AMP] = ACTIONS(5623), - [anon_sym_PIPE] = ACTIONS(5621), - [anon_sym_CARET] = ACTIONS(5621), - [anon_sym_AMP] = ACTIONS(5621), - [anon_sym_EQ_EQ] = ACTIONS(5623), - [anon_sym_BANG_EQ] = ACTIONS(5623), - [anon_sym_GT] = ACTIONS(5621), - [anon_sym_GT_EQ] = ACTIONS(5623), - [anon_sym_LT_EQ] = ACTIONS(5621), - [anon_sym_LT] = ACTIONS(5621), - [anon_sym_LT_LT] = ACTIONS(5621), - [anon_sym_GT_GT] = ACTIONS(5621), - [anon_sym_SEMI] = ACTIONS(5623), - [anon_sym___attribute__] = ACTIONS(5621), - [anon_sym_LBRACE] = ACTIONS(5623), - [anon_sym_RBRACE] = ACTIONS(5623), - [anon_sym_LBRACK] = ACTIONS(5623), - [anon_sym_RBRACK] = ACTIONS(5623), - [anon_sym_EQ] = ACTIONS(5621), - [anon_sym_COLON] = ACTIONS(5623), - [anon_sym_QMARK] = ACTIONS(5623), - [anon_sym_STAR_EQ] = ACTIONS(5623), - [anon_sym_SLASH_EQ] = ACTIONS(5623), - [anon_sym_PERCENT_EQ] = ACTIONS(5623), - [anon_sym_PLUS_EQ] = ACTIONS(5623), - [anon_sym_DASH_EQ] = ACTIONS(5623), - [anon_sym_LT_LT_EQ] = ACTIONS(5623), - [anon_sym_GT_GT_EQ] = ACTIONS(5623), - [anon_sym_AMP_EQ] = ACTIONS(5623), - [anon_sym_CARET_EQ] = ACTIONS(5623), - [anon_sym_PIPE_EQ] = ACTIONS(5623), - [anon_sym_and_eq] = ACTIONS(5621), - [anon_sym_or_eq] = ACTIONS(5621), - [anon_sym_xor_eq] = ACTIONS(5621), - [anon_sym_LT_EQ_GT] = ACTIONS(5623), - [anon_sym_or] = ACTIONS(5621), - [anon_sym_and] = ACTIONS(5621), - [anon_sym_bitor] = ACTIONS(5621), - [anon_sym_xor] = ACTIONS(5621), - [anon_sym_bitand] = ACTIONS(5621), - [anon_sym_not_eq] = ACTIONS(5621), - [anon_sym_DASH_DASH] = ACTIONS(5623), - [anon_sym_PLUS_PLUS] = ACTIONS(5623), - [anon_sym_DOT] = ACTIONS(5621), - [anon_sym_DOT_STAR] = ACTIONS(5623), - [anon_sym_DASH_GT] = ACTIONS(5623), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5621), - [anon_sym_decltype] = ACTIONS(5621), + [2275] = { + [sym_identifier] = ACTIONS(5560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5562), + [anon_sym_RPAREN] = ACTIONS(5562), + [anon_sym_LPAREN2] = ACTIONS(5562), + [anon_sym_DASH] = ACTIONS(5560), + [anon_sym_PLUS] = ACTIONS(5560), + [anon_sym_STAR] = ACTIONS(5562), + [anon_sym_SLASH] = ACTIONS(5560), + [anon_sym_PERCENT] = ACTIONS(5562), + [anon_sym_PIPE_PIPE] = ACTIONS(5562), + [anon_sym_AMP_AMP] = ACTIONS(5562), + [anon_sym_PIPE] = ACTIONS(5560), + [anon_sym_CARET] = ACTIONS(5562), + [anon_sym_AMP] = ACTIONS(5560), + [anon_sym_EQ_EQ] = ACTIONS(5562), + [anon_sym_BANG_EQ] = ACTIONS(5562), + [anon_sym_GT] = ACTIONS(5560), + [anon_sym_GT_EQ] = ACTIONS(5562), + [anon_sym_LT_EQ] = ACTIONS(5560), + [anon_sym_LT] = ACTIONS(5560), + [anon_sym_LT_LT] = ACTIONS(5562), + [anon_sym_GT_GT] = ACTIONS(5562), + [anon_sym_SEMI] = ACTIONS(5562), + [anon_sym___extension__] = ACTIONS(5560), + [anon_sym___attribute__] = ACTIONS(5560), + [anon_sym___based] = ACTIONS(5560), + [anon_sym_LBRACE] = ACTIONS(5562), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_signed] = ACTIONS(5560), + [anon_sym_unsigned] = ACTIONS(5560), + [anon_sym_long] = ACTIONS(5560), + [anon_sym_short] = ACTIONS(5560), + [anon_sym_LBRACK] = ACTIONS(5562), + [anon_sym_RBRACK] = ACTIONS(5562), + [anon_sym_const] = ACTIONS(5560), + [anon_sym_constexpr] = ACTIONS(5560), + [anon_sym_volatile] = ACTIONS(5560), + [anon_sym_restrict] = ACTIONS(5560), + [anon_sym___restrict__] = ACTIONS(5560), + [anon_sym__Atomic] = ACTIONS(5560), + [anon_sym__Noreturn] = ACTIONS(5560), + [anon_sym_noreturn] = ACTIONS(5560), + [anon_sym_mutable] = ACTIONS(5560), + [anon_sym_constinit] = ACTIONS(5560), + [anon_sym_consteval] = ACTIONS(5560), + [sym_primitive_type] = ACTIONS(5560), + [anon_sym_COLON] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5562), + [anon_sym_LT_EQ_GT] = ACTIONS(5562), + [anon_sym_or] = ACTIONS(5560), + [anon_sym_and] = ACTIONS(5560), + [anon_sym_bitor] = ACTIONS(5560), + [anon_sym_xor] = ACTIONS(5560), + [anon_sym_bitand] = ACTIONS(5560), + [anon_sym_not_eq] = ACTIONS(5560), + [anon_sym_DASH_DASH] = ACTIONS(5562), + [anon_sym_PLUS_PLUS] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_DOT_STAR] = ACTIONS(5562), + [anon_sym_DASH_GT] = ACTIONS(5562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5560), + [anon_sym_decltype] = ACTIONS(5560), + [anon_sym_final] = ACTIONS(5560), + [anon_sym_override] = ACTIONS(5560), + [anon_sym_requires] = ACTIONS(5560), }, - [2459] = { - [sym_identifier] = ACTIONS(5613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5615), - [anon_sym_COMMA] = ACTIONS(5615), - [anon_sym_RPAREN] = ACTIONS(5615), - [aux_sym_preproc_if_token2] = ACTIONS(5615), - [aux_sym_preproc_else_token1] = ACTIONS(5615), - [aux_sym_preproc_elif_token1] = ACTIONS(5613), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5615), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5615), - [anon_sym_LPAREN2] = ACTIONS(5615), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_STAR] = ACTIONS(5613), - [anon_sym_SLASH] = ACTIONS(5613), - [anon_sym_PERCENT] = ACTIONS(5613), - [anon_sym_PIPE_PIPE] = ACTIONS(5615), - [anon_sym_AMP_AMP] = ACTIONS(5615), - [anon_sym_PIPE] = ACTIONS(5613), - [anon_sym_CARET] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5613), - [anon_sym_EQ_EQ] = ACTIONS(5615), - [anon_sym_BANG_EQ] = ACTIONS(5615), - [anon_sym_GT] = ACTIONS(5613), - [anon_sym_GT_EQ] = ACTIONS(5615), - [anon_sym_LT_EQ] = ACTIONS(5613), - [anon_sym_LT] = ACTIONS(5613), - [anon_sym_LT_LT] = ACTIONS(5613), - [anon_sym_GT_GT] = ACTIONS(5613), - [anon_sym_SEMI] = ACTIONS(5615), - [anon_sym___attribute__] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5615), - [anon_sym_RBRACE] = ACTIONS(5615), - [anon_sym_LBRACK] = ACTIONS(5615), - [anon_sym_RBRACK] = ACTIONS(5615), - [anon_sym_EQ] = ACTIONS(5613), - [anon_sym_COLON] = ACTIONS(5615), - [anon_sym_QMARK] = ACTIONS(5615), - [anon_sym_STAR_EQ] = ACTIONS(5615), - [anon_sym_SLASH_EQ] = ACTIONS(5615), - [anon_sym_PERCENT_EQ] = ACTIONS(5615), - [anon_sym_PLUS_EQ] = ACTIONS(5615), - [anon_sym_DASH_EQ] = ACTIONS(5615), - [anon_sym_LT_LT_EQ] = ACTIONS(5615), - [anon_sym_GT_GT_EQ] = ACTIONS(5615), - [anon_sym_AMP_EQ] = ACTIONS(5615), - [anon_sym_CARET_EQ] = ACTIONS(5615), - [anon_sym_PIPE_EQ] = ACTIONS(5615), - [anon_sym_and_eq] = ACTIONS(5613), - [anon_sym_or_eq] = ACTIONS(5613), - [anon_sym_xor_eq] = ACTIONS(5613), - [anon_sym_LT_EQ_GT] = ACTIONS(5615), - [anon_sym_or] = ACTIONS(5613), - [anon_sym_and] = ACTIONS(5613), - [anon_sym_bitor] = ACTIONS(5613), - [anon_sym_xor] = ACTIONS(5613), - [anon_sym_bitand] = ACTIONS(5613), - [anon_sym_not_eq] = ACTIONS(5613), - [anon_sym_DASH_DASH] = ACTIONS(5615), - [anon_sym_PLUS_PLUS] = ACTIONS(5615), - [anon_sym_DOT] = ACTIONS(5613), - [anon_sym_DOT_STAR] = ACTIONS(5615), - [anon_sym_DASH_GT] = ACTIONS(5615), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5613), - [anon_sym_decltype] = ACTIONS(5613), + [2276] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5688), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2460] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2465), - [sym_identifier] = ACTIONS(5940), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5938), - [anon_sym_COMMA] = ACTIONS(5938), - [aux_sym_preproc_if_token2] = ACTIONS(5938), - [aux_sym_preproc_else_token1] = ACTIONS(5938), - [aux_sym_preproc_elif_token1] = ACTIONS(5940), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5938), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5938), - [anon_sym_LPAREN2] = ACTIONS(5938), - [anon_sym_DASH] = ACTIONS(5940), - [anon_sym_PLUS] = ACTIONS(5940), - [anon_sym_STAR] = ACTIONS(5940), - [anon_sym_SLASH] = ACTIONS(5940), - [anon_sym_PERCENT] = ACTIONS(5940), - [anon_sym_PIPE_PIPE] = ACTIONS(5938), - [anon_sym_AMP_AMP] = ACTIONS(5938), - [anon_sym_PIPE] = ACTIONS(5940), - [anon_sym_CARET] = ACTIONS(5940), - [anon_sym_AMP] = ACTIONS(5940), - [anon_sym_EQ_EQ] = ACTIONS(5938), - [anon_sym_BANG_EQ] = ACTIONS(5938), - [anon_sym_GT] = ACTIONS(5940), - [anon_sym_GT_EQ] = ACTIONS(5938), - [anon_sym_LT_EQ] = ACTIONS(5940), - [anon_sym_LT] = ACTIONS(5940), - [anon_sym_LT_LT] = ACTIONS(5940), - [anon_sym_GT_GT] = ACTIONS(5940), - [anon_sym___attribute__] = ACTIONS(5940), - [anon_sym_LBRACE] = ACTIONS(5938), - [anon_sym_signed] = ACTIONS(6015), - [anon_sym_unsigned] = ACTIONS(6015), - [anon_sym_long] = ACTIONS(6015), - [anon_sym_short] = ACTIONS(6015), - [anon_sym_LBRACK] = ACTIONS(5938), - [anon_sym_EQ] = ACTIONS(5940), - [anon_sym_QMARK] = ACTIONS(5938), - [anon_sym_STAR_EQ] = ACTIONS(5938), - [anon_sym_SLASH_EQ] = ACTIONS(5938), - [anon_sym_PERCENT_EQ] = ACTIONS(5938), - [anon_sym_PLUS_EQ] = ACTIONS(5938), - [anon_sym_DASH_EQ] = ACTIONS(5938), - [anon_sym_LT_LT_EQ] = ACTIONS(5938), - [anon_sym_GT_GT_EQ] = ACTIONS(5938), - [anon_sym_AMP_EQ] = ACTIONS(5938), - [anon_sym_CARET_EQ] = ACTIONS(5938), - [anon_sym_PIPE_EQ] = ACTIONS(5938), - [anon_sym_and_eq] = ACTIONS(5940), - [anon_sym_or_eq] = ACTIONS(5940), - [anon_sym_xor_eq] = ACTIONS(5940), - [anon_sym_LT_EQ_GT] = ACTIONS(5938), - [anon_sym_or] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(5940), - [anon_sym_bitor] = ACTIONS(5940), - [anon_sym_xor] = ACTIONS(5940), - [anon_sym_bitand] = ACTIONS(5940), - [anon_sym_not_eq] = ACTIONS(5940), - [anon_sym_DASH_DASH] = ACTIONS(5938), - [anon_sym_PLUS_PLUS] = ACTIONS(5938), - [anon_sym_DOT] = ACTIONS(5940), - [anon_sym_DOT_STAR] = ACTIONS(5938), - [anon_sym_DASH_GT] = ACTIONS(5938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5940), - [anon_sym_decltype] = ACTIONS(5940), + [2277] = { + [sym_catch_clause] = STATE(2264), + [aux_sym_constructor_try_statement_repeat1] = STATE(2264), + [sym_identifier] = ACTIONS(2838), + [aux_sym_preproc_def_token1] = ACTIONS(2838), + [aux_sym_preproc_if_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), + [sym_preproc_directive] = ACTIONS(2838), + [anon_sym_LPAREN2] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym___extension__] = ACTIONS(2838), + [anon_sym_typedef] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym___attribute__] = ACTIONS(2838), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), + [anon_sym___declspec] = ACTIONS(2838), + [anon_sym___based] = ACTIONS(2838), + [anon_sym_RBRACE] = ACTIONS(2840), + [anon_sym_signed] = ACTIONS(2838), + [anon_sym_unsigned] = ACTIONS(2838), + [anon_sym_long] = ACTIONS(2838), + [anon_sym_short] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_register] = ACTIONS(2838), + [anon_sym_inline] = ACTIONS(2838), + [anon_sym___inline] = ACTIONS(2838), + [anon_sym___inline__] = ACTIONS(2838), + [anon_sym___forceinline] = ACTIONS(2838), + [anon_sym_thread_local] = ACTIONS(2838), + [anon_sym___thread] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_constexpr] = ACTIONS(2838), + [anon_sym_volatile] = ACTIONS(2838), + [anon_sym_restrict] = ACTIONS(2838), + [anon_sym___restrict__] = ACTIONS(2838), + [anon_sym__Atomic] = ACTIONS(2838), + [anon_sym__Noreturn] = ACTIONS(2838), + [anon_sym_noreturn] = ACTIONS(2838), + [anon_sym_mutable] = ACTIONS(2838), + [anon_sym_constinit] = ACTIONS(2838), + [anon_sym_consteval] = ACTIONS(2838), + [sym_primitive_type] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_class] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2838), + [anon_sym_decltype] = ACTIONS(2838), + [anon_sym_virtual] = ACTIONS(2838), + [anon_sym_alignas] = ACTIONS(2838), + [anon_sym_explicit] = ACTIONS(2838), + [anon_sym_typename] = ACTIONS(2838), + [anon_sym_template] = ACTIONS(2838), + [anon_sym_operator] = ACTIONS(2838), + [anon_sym_friend] = ACTIONS(2838), + [anon_sym_public] = ACTIONS(2838), + [anon_sym_private] = ACTIONS(2838), + [anon_sym_protected] = ACTIONS(2838), + [anon_sym_using] = ACTIONS(2838), + [anon_sym_static_assert] = ACTIONS(2838), + [anon_sym_catch] = ACTIONS(5641), }, - [2461] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2468), - [sym_identifier] = ACTIONS(5590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(5592), - [aux_sym_preproc_if_token2] = ACTIONS(5592), - [aux_sym_preproc_else_token1] = ACTIONS(5592), - [aux_sym_preproc_elif_token1] = ACTIONS(5590), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5592), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5592), - [anon_sym_LPAREN2] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5590), - [anon_sym_PLUS] = ACTIONS(5590), - [anon_sym_STAR] = ACTIONS(5590), - [anon_sym_SLASH] = ACTIONS(5590), - [anon_sym_PERCENT] = ACTIONS(5590), - [anon_sym_PIPE_PIPE] = ACTIONS(5592), - [anon_sym_AMP_AMP] = ACTIONS(5592), - [anon_sym_PIPE] = ACTIONS(5590), - [anon_sym_CARET] = ACTIONS(5590), - [anon_sym_AMP] = ACTIONS(5590), - [anon_sym_EQ_EQ] = ACTIONS(5592), - [anon_sym_BANG_EQ] = ACTIONS(5592), - [anon_sym_GT] = ACTIONS(5590), - [anon_sym_GT_EQ] = ACTIONS(5592), - [anon_sym_LT_EQ] = ACTIONS(5590), - [anon_sym_LT] = ACTIONS(5590), - [anon_sym_LT_LT] = ACTIONS(5590), - [anon_sym_GT_GT] = ACTIONS(5590), - [anon_sym___attribute__] = ACTIONS(5590), - [anon_sym_LBRACE] = ACTIONS(5592), - [anon_sym_signed] = ACTIONS(6017), - [anon_sym_unsigned] = ACTIONS(6017), - [anon_sym_long] = ACTIONS(6017), - [anon_sym_short] = ACTIONS(6017), - [anon_sym_LBRACK] = ACTIONS(5592), - [anon_sym_EQ] = ACTIONS(5590), - [anon_sym_QMARK] = ACTIONS(5592), - [anon_sym_STAR_EQ] = ACTIONS(5592), - [anon_sym_SLASH_EQ] = ACTIONS(5592), - [anon_sym_PERCENT_EQ] = ACTIONS(5592), - [anon_sym_PLUS_EQ] = ACTIONS(5592), - [anon_sym_DASH_EQ] = ACTIONS(5592), - [anon_sym_LT_LT_EQ] = ACTIONS(5592), - [anon_sym_GT_GT_EQ] = ACTIONS(5592), - [anon_sym_AMP_EQ] = ACTIONS(5592), - [anon_sym_CARET_EQ] = ACTIONS(5592), - [anon_sym_PIPE_EQ] = ACTIONS(5592), - [anon_sym_and_eq] = ACTIONS(5590), - [anon_sym_or_eq] = ACTIONS(5590), - [anon_sym_xor_eq] = ACTIONS(5590), - [anon_sym_LT_EQ_GT] = ACTIONS(5592), - [anon_sym_or] = ACTIONS(5590), - [anon_sym_and] = ACTIONS(5590), - [anon_sym_bitor] = ACTIONS(5590), - [anon_sym_xor] = ACTIONS(5590), - [anon_sym_bitand] = ACTIONS(5590), - [anon_sym_not_eq] = ACTIONS(5590), - [anon_sym_DASH_DASH] = ACTIONS(5592), - [anon_sym_PLUS_PLUS] = ACTIONS(5592), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_DOT_STAR] = ACTIONS(5592), - [anon_sym_DASH_GT] = ACTIONS(5592), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5590), - [anon_sym_decltype] = ACTIONS(5590), + [2278] = { + [sym_identifier] = ACTIONS(5039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5046), + [anon_sym_COMMA] = ACTIONS(5046), + [anon_sym_RPAREN] = ACTIONS(5046), + [aux_sym_preproc_if_token2] = ACTIONS(5046), + [aux_sym_preproc_else_token1] = ACTIONS(5046), + [aux_sym_preproc_elif_token1] = ACTIONS(5039), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5046), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5046), + [anon_sym_LPAREN2] = ACTIONS(5046), + [anon_sym_DASH] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5039), + [anon_sym_STAR] = ACTIONS(5046), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5046), + [anon_sym_PIPE_PIPE] = ACTIONS(5046), + [anon_sym_AMP_AMP] = ACTIONS(5046), + [anon_sym_PIPE] = ACTIONS(5039), + [anon_sym_CARET] = ACTIONS(5046), + [anon_sym_AMP] = ACTIONS(5039), + [anon_sym_EQ_EQ] = ACTIONS(5046), + [anon_sym_BANG_EQ] = ACTIONS(5046), + [anon_sym_GT] = ACTIONS(5039), + [anon_sym_GT_EQ] = ACTIONS(5046), + [anon_sym_LT_EQ] = ACTIONS(5039), + [anon_sym_LT] = ACTIONS(5039), + [anon_sym_LT_LT] = ACTIONS(5046), + [anon_sym_GT_GT] = ACTIONS(5046), + [anon_sym_SEMI] = ACTIONS(5046), + [anon_sym___extension__] = ACTIONS(5039), + [anon_sym___attribute__] = ACTIONS(5039), + [anon_sym_COLON_COLON] = ACTIONS(5046), + [anon_sym_LBRACE] = ACTIONS(5046), + [anon_sym_RBRACE] = ACTIONS(5046), + [anon_sym_LBRACK] = ACTIONS(5046), + [anon_sym_RBRACK] = ACTIONS(5046), + [anon_sym_const] = ACTIONS(5039), + [anon_sym_constexpr] = ACTIONS(5039), + [anon_sym_volatile] = ACTIONS(5039), + [anon_sym_restrict] = ACTIONS(5039), + [anon_sym___restrict__] = ACTIONS(5039), + [anon_sym__Atomic] = ACTIONS(5039), + [anon_sym__Noreturn] = ACTIONS(5039), + [anon_sym_noreturn] = ACTIONS(5039), + [anon_sym_mutable] = ACTIONS(5039), + [anon_sym_constinit] = ACTIONS(5039), + [anon_sym_consteval] = ACTIONS(5039), + [anon_sym_COLON] = ACTIONS(5039), + [anon_sym_QMARK] = ACTIONS(5046), + [anon_sym_LT_EQ_GT] = ACTIONS(5046), + [anon_sym_or] = ACTIONS(5039), + [anon_sym_and] = ACTIONS(5039), + [anon_sym_bitor] = ACTIONS(5039), + [anon_sym_xor] = ACTIONS(5039), + [anon_sym_bitand] = ACTIONS(5039), + [anon_sym_not_eq] = ACTIONS(5039), + [anon_sym_DASH_DASH] = ACTIONS(5046), + [anon_sym_PLUS_PLUS] = ACTIONS(5046), + [anon_sym_DOT] = ACTIONS(5039), + [anon_sym_DOT_STAR] = ACTIONS(5046), + [anon_sym_DASH_GT] = ACTIONS(5046), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5039), + [anon_sym_decltype] = ACTIONS(5039), + [anon_sym_final] = ACTIONS(5039), + [anon_sym_override] = ACTIONS(5039), + [anon_sym_requires] = ACTIONS(5039), }, - [2462] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2471), - [sym_identifier] = ACTIONS(5995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5993), - [anon_sym_COMMA] = ACTIONS(5993), - [aux_sym_preproc_if_token2] = ACTIONS(5993), - [aux_sym_preproc_else_token1] = ACTIONS(5993), - [aux_sym_preproc_elif_token1] = ACTIONS(5995), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5993), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5993), - [anon_sym_LPAREN2] = ACTIONS(5993), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_PERCENT] = ACTIONS(5995), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_EQ_EQ] = ACTIONS(5993), - [anon_sym_BANG_EQ] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5995), - [anon_sym_GT_EQ] = ACTIONS(5993), - [anon_sym_LT_EQ] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5995), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym___attribute__] = ACTIONS(5995), - [anon_sym_LBRACE] = ACTIONS(5993), - [anon_sym_signed] = ACTIONS(6019), - [anon_sym_unsigned] = ACTIONS(6019), - [anon_sym_long] = ACTIONS(6019), - [anon_sym_short] = ACTIONS(6019), - [anon_sym_LBRACK] = ACTIONS(5993), - [anon_sym_EQ] = ACTIONS(5995), - [anon_sym_QMARK] = ACTIONS(5993), - [anon_sym_STAR_EQ] = ACTIONS(5993), - [anon_sym_SLASH_EQ] = ACTIONS(5993), - [anon_sym_PERCENT_EQ] = ACTIONS(5993), - [anon_sym_PLUS_EQ] = ACTIONS(5993), - [anon_sym_DASH_EQ] = ACTIONS(5993), - [anon_sym_LT_LT_EQ] = ACTIONS(5993), - [anon_sym_GT_GT_EQ] = ACTIONS(5993), - [anon_sym_AMP_EQ] = ACTIONS(5993), - [anon_sym_CARET_EQ] = ACTIONS(5993), - [anon_sym_PIPE_EQ] = ACTIONS(5993), - [anon_sym_and_eq] = ACTIONS(5995), - [anon_sym_or_eq] = ACTIONS(5995), - [anon_sym_xor_eq] = ACTIONS(5995), - [anon_sym_LT_EQ_GT] = ACTIONS(5993), - [anon_sym_or] = ACTIONS(5995), - [anon_sym_and] = ACTIONS(5995), - [anon_sym_bitor] = ACTIONS(5995), - [anon_sym_xor] = ACTIONS(5995), - [anon_sym_bitand] = ACTIONS(5995), - [anon_sym_not_eq] = ACTIONS(5995), - [anon_sym_DASH_DASH] = ACTIONS(5993), - [anon_sym_PLUS_PLUS] = ACTIONS(5993), - [anon_sym_DOT] = ACTIONS(5995), - [anon_sym_DOT_STAR] = ACTIONS(5993), - [anon_sym_DASH_GT] = ACTIONS(5993), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5995), - [anon_sym_decltype] = ACTIONS(5995), + [2279] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5679), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2463] = { - [sym_identifier] = ACTIONS(5751), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5753), - [anon_sym_COMMA] = ACTIONS(5753), - [anon_sym_RPAREN] = ACTIONS(5753), - [aux_sym_preproc_if_token2] = ACTIONS(5753), - [aux_sym_preproc_else_token1] = ACTIONS(5753), - [aux_sym_preproc_elif_token1] = ACTIONS(5751), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5753), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5753), - [anon_sym_LPAREN2] = ACTIONS(5753), - [anon_sym_DASH] = ACTIONS(5751), - [anon_sym_PLUS] = ACTIONS(5751), - [anon_sym_STAR] = ACTIONS(5751), - [anon_sym_SLASH] = ACTIONS(5751), - [anon_sym_PERCENT] = ACTIONS(5751), - [anon_sym_PIPE_PIPE] = ACTIONS(5753), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_PIPE] = ACTIONS(5751), - [anon_sym_CARET] = ACTIONS(5751), - [anon_sym_AMP] = ACTIONS(5751), - [anon_sym_EQ_EQ] = ACTIONS(5753), - [anon_sym_BANG_EQ] = ACTIONS(5753), - [anon_sym_GT] = ACTIONS(5751), - [anon_sym_GT_EQ] = ACTIONS(5753), - [anon_sym_LT_EQ] = ACTIONS(5751), - [anon_sym_LT] = ACTIONS(5751), - [anon_sym_LT_LT] = ACTIONS(5751), - [anon_sym_GT_GT] = ACTIONS(5751), - [anon_sym_SEMI] = ACTIONS(5753), - [anon_sym___attribute__] = ACTIONS(5751), - [anon_sym_LBRACE] = ACTIONS(5753), - [anon_sym_RBRACE] = ACTIONS(5753), - [anon_sym_LBRACK] = ACTIONS(5753), - [anon_sym_RBRACK] = ACTIONS(5753), - [anon_sym_EQ] = ACTIONS(5751), - [anon_sym_COLON] = ACTIONS(5753), - [anon_sym_QMARK] = ACTIONS(5753), - [anon_sym_STAR_EQ] = ACTIONS(5753), - [anon_sym_SLASH_EQ] = ACTIONS(5753), - [anon_sym_PERCENT_EQ] = ACTIONS(5753), - [anon_sym_PLUS_EQ] = ACTIONS(5753), - [anon_sym_DASH_EQ] = ACTIONS(5753), - [anon_sym_LT_LT_EQ] = ACTIONS(5753), - [anon_sym_GT_GT_EQ] = ACTIONS(5753), - [anon_sym_AMP_EQ] = ACTIONS(5753), - [anon_sym_CARET_EQ] = ACTIONS(5753), - [anon_sym_PIPE_EQ] = ACTIONS(5753), - [anon_sym_and_eq] = ACTIONS(5751), - [anon_sym_or_eq] = ACTIONS(5751), - [anon_sym_xor_eq] = ACTIONS(5751), - [anon_sym_LT_EQ_GT] = ACTIONS(5753), - [anon_sym_or] = ACTIONS(5751), - [anon_sym_and] = ACTIONS(5751), - [anon_sym_bitor] = ACTIONS(5751), - [anon_sym_xor] = ACTIONS(5751), - [anon_sym_bitand] = ACTIONS(5751), - [anon_sym_not_eq] = ACTIONS(5751), - [anon_sym_DASH_DASH] = ACTIONS(5753), - [anon_sym_PLUS_PLUS] = ACTIONS(5753), - [anon_sym_DOT] = ACTIONS(5751), - [anon_sym_DOT_STAR] = ACTIONS(5753), - [anon_sym_DASH_GT] = ACTIONS(5753), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5751), - [anon_sym_decltype] = ACTIONS(5751), + [2280] = { + [sym_catch_clause] = STATE(2207), + [aux_sym_constructor_try_statement_repeat1] = STATE(2207), + [sym_identifier] = ACTIONS(2834), + [aux_sym_preproc_def_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token1] = ACTIONS(2834), + [aux_sym_preproc_if_token2] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), + [sym_preproc_directive] = ACTIONS(2834), + [anon_sym_LPAREN2] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_AMP_AMP] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym___extension__] = ACTIONS(2834), + [anon_sym_typedef] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym___attribute__] = ACTIONS(2834), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), + [anon_sym___declspec] = ACTIONS(2834), + [anon_sym___based] = ACTIONS(2834), + [anon_sym_signed] = ACTIONS(2834), + [anon_sym_unsigned] = ACTIONS(2834), + [anon_sym_long] = ACTIONS(2834), + [anon_sym_short] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_register] = ACTIONS(2834), + [anon_sym_inline] = ACTIONS(2834), + [anon_sym___inline] = ACTIONS(2834), + [anon_sym___inline__] = ACTIONS(2834), + [anon_sym___forceinline] = ACTIONS(2834), + [anon_sym_thread_local] = ACTIONS(2834), + [anon_sym___thread] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_constexpr] = ACTIONS(2834), + [anon_sym_volatile] = ACTIONS(2834), + [anon_sym_restrict] = ACTIONS(2834), + [anon_sym___restrict__] = ACTIONS(2834), + [anon_sym__Atomic] = ACTIONS(2834), + [anon_sym__Noreturn] = ACTIONS(2834), + [anon_sym_noreturn] = ACTIONS(2834), + [anon_sym_mutable] = ACTIONS(2834), + [anon_sym_constinit] = ACTIONS(2834), + [anon_sym_consteval] = ACTIONS(2834), + [sym_primitive_type] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_class] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2834), + [anon_sym_decltype] = ACTIONS(2834), + [anon_sym_virtual] = ACTIONS(2834), + [anon_sym_alignas] = ACTIONS(2834), + [anon_sym_explicit] = ACTIONS(2834), + [anon_sym_typename] = ACTIONS(2834), + [anon_sym_template] = ACTIONS(2834), + [anon_sym_operator] = ACTIONS(2834), + [anon_sym_friend] = ACTIONS(2834), + [anon_sym_public] = ACTIONS(2834), + [anon_sym_private] = ACTIONS(2834), + [anon_sym_protected] = ACTIONS(2834), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_static_assert] = ACTIONS(2834), + [anon_sym_catch] = ACTIONS(5599), }, - [2464] = { - [sym_identifier] = ACTIONS(5755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5757), - [anon_sym_COMMA] = ACTIONS(5757), - [anon_sym_RPAREN] = ACTIONS(5757), - [aux_sym_preproc_if_token2] = ACTIONS(5757), - [aux_sym_preproc_else_token1] = ACTIONS(5757), - [aux_sym_preproc_elif_token1] = ACTIONS(5755), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5757), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5757), - [anon_sym_LPAREN2] = ACTIONS(5757), - [anon_sym_DASH] = ACTIONS(5755), - [anon_sym_PLUS] = ACTIONS(5755), - [anon_sym_STAR] = ACTIONS(5755), - [anon_sym_SLASH] = ACTIONS(5755), - [anon_sym_PERCENT] = ACTIONS(5755), - [anon_sym_PIPE_PIPE] = ACTIONS(5757), - [anon_sym_AMP_AMP] = ACTIONS(5757), - [anon_sym_PIPE] = ACTIONS(5755), - [anon_sym_CARET] = ACTIONS(5755), - [anon_sym_AMP] = ACTIONS(5755), - [anon_sym_EQ_EQ] = ACTIONS(5757), - [anon_sym_BANG_EQ] = ACTIONS(5757), - [anon_sym_GT] = ACTIONS(5755), - [anon_sym_GT_EQ] = ACTIONS(5757), - [anon_sym_LT_EQ] = ACTIONS(5755), - [anon_sym_LT] = ACTIONS(5755), - [anon_sym_LT_LT] = ACTIONS(5755), - [anon_sym_GT_GT] = ACTIONS(5755), - [anon_sym_SEMI] = ACTIONS(5757), - [anon_sym___attribute__] = ACTIONS(5755), - [anon_sym_LBRACE] = ACTIONS(5757), - [anon_sym_RBRACE] = ACTIONS(5757), - [anon_sym_LBRACK] = ACTIONS(5757), - [anon_sym_RBRACK] = ACTIONS(5757), - [anon_sym_EQ] = ACTIONS(5755), - [anon_sym_COLON] = ACTIONS(5757), - [anon_sym_QMARK] = ACTIONS(5757), - [anon_sym_STAR_EQ] = ACTIONS(5757), - [anon_sym_SLASH_EQ] = ACTIONS(5757), - [anon_sym_PERCENT_EQ] = ACTIONS(5757), - [anon_sym_PLUS_EQ] = ACTIONS(5757), - [anon_sym_DASH_EQ] = ACTIONS(5757), - [anon_sym_LT_LT_EQ] = ACTIONS(5757), - [anon_sym_GT_GT_EQ] = ACTIONS(5757), - [anon_sym_AMP_EQ] = ACTIONS(5757), - [anon_sym_CARET_EQ] = ACTIONS(5757), - [anon_sym_PIPE_EQ] = ACTIONS(5757), - [anon_sym_and_eq] = ACTIONS(5755), - [anon_sym_or_eq] = ACTIONS(5755), - [anon_sym_xor_eq] = ACTIONS(5755), - [anon_sym_LT_EQ_GT] = ACTIONS(5757), - [anon_sym_or] = ACTIONS(5755), - [anon_sym_and] = ACTIONS(5755), - [anon_sym_bitor] = ACTIONS(5755), - [anon_sym_xor] = ACTIONS(5755), - [anon_sym_bitand] = ACTIONS(5755), - [anon_sym_not_eq] = ACTIONS(5755), - [anon_sym_DASH_DASH] = ACTIONS(5757), - [anon_sym_PLUS_PLUS] = ACTIONS(5757), - [anon_sym_DOT] = ACTIONS(5755), - [anon_sym_DOT_STAR] = ACTIONS(5757), - [anon_sym_DASH_GT] = ACTIONS(5757), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5755), - [anon_sym_decltype] = ACTIONS(5755), + [2281] = { + [sym_string_literal] = STATE(2243), + [sym_template_argument_list] = STATE(3408), + [sym_raw_string_literal] = STATE(2243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_RPAREN] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5064), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4137), + [anon_sym_or_eq] = ACTIONS(4137), + [anon_sym_xor_eq] = ACTIONS(4137), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4145), + [anon_sym_L_DQUOTE] = ACTIONS(5060), + [anon_sym_u_DQUOTE] = ACTIONS(5060), + [anon_sym_U_DQUOTE] = ACTIONS(5060), + [anon_sym_u8_DQUOTE] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5060), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5062), + [anon_sym_LR_DQUOTE] = ACTIONS(5062), + [anon_sym_uR_DQUOTE] = ACTIONS(5062), + [anon_sym_UR_DQUOTE] = ACTIONS(5062), + [anon_sym_u8R_DQUOTE] = ACTIONS(5062), + [anon_sym_DASH_GT_STAR] = ACTIONS(4137), }, - [2465] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2471), - [sym_identifier] = ACTIONS(5991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5989), - [anon_sym_COMMA] = ACTIONS(5989), - [aux_sym_preproc_if_token2] = ACTIONS(5989), - [aux_sym_preproc_else_token1] = ACTIONS(5989), - [aux_sym_preproc_elif_token1] = ACTIONS(5991), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5989), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5989), - [anon_sym_LPAREN2] = ACTIONS(5989), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_PERCENT] = ACTIONS(5991), - [anon_sym_PIPE_PIPE] = ACTIONS(5989), - [anon_sym_AMP_AMP] = ACTIONS(5989), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_AMP] = ACTIONS(5991), - [anon_sym_EQ_EQ] = ACTIONS(5989), - [anon_sym_BANG_EQ] = ACTIONS(5989), - [anon_sym_GT] = ACTIONS(5991), - [anon_sym_GT_EQ] = ACTIONS(5989), - [anon_sym_LT_EQ] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(5991), - [anon_sym_LT_LT] = ACTIONS(5991), - [anon_sym_GT_GT] = ACTIONS(5991), - [anon_sym___attribute__] = ACTIONS(5991), - [anon_sym_LBRACE] = ACTIONS(5989), - [anon_sym_signed] = ACTIONS(6019), - [anon_sym_unsigned] = ACTIONS(6019), - [anon_sym_long] = ACTIONS(6019), - [anon_sym_short] = ACTIONS(6019), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_QMARK] = ACTIONS(5989), - [anon_sym_STAR_EQ] = ACTIONS(5989), - [anon_sym_SLASH_EQ] = ACTIONS(5989), - [anon_sym_PERCENT_EQ] = ACTIONS(5989), - [anon_sym_PLUS_EQ] = ACTIONS(5989), - [anon_sym_DASH_EQ] = ACTIONS(5989), - [anon_sym_LT_LT_EQ] = ACTIONS(5989), - [anon_sym_GT_GT_EQ] = ACTIONS(5989), - [anon_sym_AMP_EQ] = ACTIONS(5989), - [anon_sym_CARET_EQ] = ACTIONS(5989), - [anon_sym_PIPE_EQ] = ACTIONS(5989), - [anon_sym_and_eq] = ACTIONS(5991), - [anon_sym_or_eq] = ACTIONS(5991), - [anon_sym_xor_eq] = ACTIONS(5991), - [anon_sym_LT_EQ_GT] = ACTIONS(5989), - [anon_sym_or] = ACTIONS(5991), - [anon_sym_and] = ACTIONS(5991), - [anon_sym_bitor] = ACTIONS(5991), - [anon_sym_xor] = ACTIONS(5991), - [anon_sym_bitand] = ACTIONS(5991), - [anon_sym_not_eq] = ACTIONS(5991), - [anon_sym_DASH_DASH] = ACTIONS(5989), - [anon_sym_PLUS_PLUS] = ACTIONS(5989), - [anon_sym_DOT] = ACTIONS(5991), - [anon_sym_DOT_STAR] = ACTIONS(5989), - [anon_sym_DASH_GT] = ACTIONS(5989), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5991), - [anon_sym_decltype] = ACTIONS(5991), + [2282] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2257), + [sym_identifier] = ACTIONS(5811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_LPAREN2] = ACTIONS(5813), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5813), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_PERCENT] = ACTIONS(5813), + [anon_sym_PIPE_PIPE] = ACTIONS(5813), + [anon_sym_AMP_AMP] = ACTIONS(5813), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5813), + [anon_sym_AMP] = ACTIONS(5815), + [anon_sym_EQ_EQ] = ACTIONS(5813), + [anon_sym_BANG_EQ] = ACTIONS(5813), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_GT_EQ] = ACTIONS(5813), + [anon_sym_LT_EQ] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_LT_LT] = ACTIONS(5813), + [anon_sym_GT_GT] = ACTIONS(5813), + [anon_sym_SEMI] = ACTIONS(5813), + [anon_sym___extension__] = ACTIONS(5815), + [anon_sym___attribute__] = ACTIONS(5815), + [anon_sym_LBRACE] = ACTIONS(5813), + [anon_sym_RBRACE] = ACTIONS(5813), + [anon_sym_signed] = ACTIONS(5817), + [anon_sym_unsigned] = ACTIONS(5817), + [anon_sym_long] = ACTIONS(5817), + [anon_sym_short] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_const] = ACTIONS(5815), + [anon_sym_constexpr] = ACTIONS(5815), + [anon_sym_volatile] = ACTIONS(5815), + [anon_sym_restrict] = ACTIONS(5815), + [anon_sym___restrict__] = ACTIONS(5815), + [anon_sym__Atomic] = ACTIONS(5815), + [anon_sym__Noreturn] = ACTIONS(5815), + [anon_sym_noreturn] = ACTIONS(5815), + [anon_sym_mutable] = ACTIONS(5815), + [anon_sym_constinit] = ACTIONS(5815), + [anon_sym_consteval] = ACTIONS(5815), + [sym_primitive_type] = ACTIONS(5819), + [anon_sym_COLON] = ACTIONS(5813), + [anon_sym_QMARK] = ACTIONS(5813), + [anon_sym_LT_EQ_GT] = ACTIONS(5813), + [anon_sym_or] = ACTIONS(5815), + [anon_sym_and] = ACTIONS(5815), + [anon_sym_bitor] = ACTIONS(5815), + [anon_sym_xor] = ACTIONS(5815), + [anon_sym_bitand] = ACTIONS(5815), + [anon_sym_not_eq] = ACTIONS(5815), + [anon_sym_DASH_DASH] = ACTIONS(5813), + [anon_sym_PLUS_PLUS] = ACTIONS(5813), + [anon_sym_DOT] = ACTIONS(5815), + [anon_sym_DOT_STAR] = ACTIONS(5813), + [anon_sym_DASH_GT] = ACTIONS(5813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5815), + [anon_sym_decltype] = ACTIONS(5815), + [anon_sym_final] = ACTIONS(5815), + [anon_sym_override] = ACTIONS(5815), + [anon_sym_requires] = ACTIONS(5815), }, - [2466] = { - [sym_identifier] = ACTIONS(5763), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5765), - [anon_sym_COMMA] = ACTIONS(5765), - [anon_sym_RPAREN] = ACTIONS(5765), - [aux_sym_preproc_if_token2] = ACTIONS(5765), - [aux_sym_preproc_else_token1] = ACTIONS(5765), - [aux_sym_preproc_elif_token1] = ACTIONS(5763), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5765), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5765), - [anon_sym_LPAREN2] = ACTIONS(5765), - [anon_sym_DASH] = ACTIONS(5763), - [anon_sym_PLUS] = ACTIONS(5763), - [anon_sym_STAR] = ACTIONS(5763), - [anon_sym_SLASH] = ACTIONS(5763), - [anon_sym_PERCENT] = ACTIONS(5763), - [anon_sym_PIPE_PIPE] = ACTIONS(5765), - [anon_sym_AMP_AMP] = ACTIONS(5765), - [anon_sym_PIPE] = ACTIONS(5763), - [anon_sym_CARET] = ACTIONS(5763), - [anon_sym_AMP] = ACTIONS(5763), - [anon_sym_EQ_EQ] = ACTIONS(5765), - [anon_sym_BANG_EQ] = ACTIONS(5765), - [anon_sym_GT] = ACTIONS(5763), - [anon_sym_GT_EQ] = ACTIONS(5765), - [anon_sym_LT_EQ] = ACTIONS(5763), - [anon_sym_LT] = ACTIONS(5763), - [anon_sym_LT_LT] = ACTIONS(5763), - [anon_sym_GT_GT] = ACTIONS(5763), - [anon_sym_SEMI] = ACTIONS(5765), - [anon_sym___attribute__] = ACTIONS(5763), - [anon_sym_LBRACE] = ACTIONS(5765), - [anon_sym_RBRACE] = ACTIONS(5765), - [anon_sym_LBRACK] = ACTIONS(5765), - [anon_sym_RBRACK] = ACTIONS(5765), - [anon_sym_EQ] = ACTIONS(5763), - [anon_sym_COLON] = ACTIONS(5765), - [anon_sym_QMARK] = ACTIONS(5765), - [anon_sym_STAR_EQ] = ACTIONS(5765), - [anon_sym_SLASH_EQ] = ACTIONS(5765), - [anon_sym_PERCENT_EQ] = ACTIONS(5765), - [anon_sym_PLUS_EQ] = ACTIONS(5765), - [anon_sym_DASH_EQ] = ACTIONS(5765), - [anon_sym_LT_LT_EQ] = ACTIONS(5765), - [anon_sym_GT_GT_EQ] = ACTIONS(5765), - [anon_sym_AMP_EQ] = ACTIONS(5765), - [anon_sym_CARET_EQ] = ACTIONS(5765), - [anon_sym_PIPE_EQ] = ACTIONS(5765), - [anon_sym_and_eq] = ACTIONS(5763), - [anon_sym_or_eq] = ACTIONS(5763), - [anon_sym_xor_eq] = ACTIONS(5763), - [anon_sym_LT_EQ_GT] = ACTIONS(5765), - [anon_sym_or] = ACTIONS(5763), - [anon_sym_and] = ACTIONS(5763), - [anon_sym_bitor] = ACTIONS(5763), - [anon_sym_xor] = ACTIONS(5763), - [anon_sym_bitand] = ACTIONS(5763), - [anon_sym_not_eq] = ACTIONS(5763), - [anon_sym_DASH_DASH] = ACTIONS(5765), - [anon_sym_PLUS_PLUS] = ACTIONS(5765), - [anon_sym_DOT] = ACTIONS(5763), - [anon_sym_DOT_STAR] = ACTIONS(5765), - [anon_sym_DASH_GT] = ACTIONS(5765), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5763), - [anon_sym_decltype] = ACTIONS(5763), + [2283] = { + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token2] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [aux_sym_preproc_else_token1] = ACTIONS(2863), + [aux_sym_preproc_elif_token1] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_friend] = ACTIONS(2863), + [anon_sym_public] = ACTIONS(2863), + [anon_sym_private] = ACTIONS(2863), + [anon_sym_protected] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), + [anon_sym_catch] = ACTIONS(2863), }, - [2467] = { - [sym_identifier] = ACTIONS(5729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5731), - [anon_sym_COMMA] = ACTIONS(5731), - [anon_sym_RPAREN] = ACTIONS(5731), - [aux_sym_preproc_if_token2] = ACTIONS(5731), - [aux_sym_preproc_else_token1] = ACTIONS(5731), - [aux_sym_preproc_elif_token1] = ACTIONS(5729), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5731), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5731), - [anon_sym_LPAREN2] = ACTIONS(5731), - [anon_sym_DASH] = ACTIONS(5729), - [anon_sym_PLUS] = ACTIONS(5729), - [anon_sym_STAR] = ACTIONS(5729), - [anon_sym_SLASH] = ACTIONS(5729), - [anon_sym_PERCENT] = ACTIONS(5729), - [anon_sym_PIPE_PIPE] = ACTIONS(5731), - [anon_sym_AMP_AMP] = ACTIONS(5731), - [anon_sym_PIPE] = ACTIONS(5729), - [anon_sym_CARET] = ACTIONS(5729), - [anon_sym_AMP] = ACTIONS(5729), - [anon_sym_EQ_EQ] = ACTIONS(5731), - [anon_sym_BANG_EQ] = ACTIONS(5731), - [anon_sym_GT] = ACTIONS(5729), - [anon_sym_GT_EQ] = ACTIONS(5731), - [anon_sym_LT_EQ] = ACTIONS(5729), - [anon_sym_LT] = ACTIONS(5729), - [anon_sym_LT_LT] = ACTIONS(5729), - [anon_sym_GT_GT] = ACTIONS(5729), - [anon_sym_SEMI] = ACTIONS(5731), - [anon_sym___attribute__] = ACTIONS(5729), - [anon_sym_LBRACE] = ACTIONS(5731), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_LBRACK] = ACTIONS(5731), - [anon_sym_RBRACK] = ACTIONS(5731), - [anon_sym_EQ] = ACTIONS(5729), - [anon_sym_COLON] = ACTIONS(5731), - [anon_sym_QMARK] = ACTIONS(5731), - [anon_sym_STAR_EQ] = ACTIONS(5731), - [anon_sym_SLASH_EQ] = ACTIONS(5731), - [anon_sym_PERCENT_EQ] = ACTIONS(5731), - [anon_sym_PLUS_EQ] = ACTIONS(5731), - [anon_sym_DASH_EQ] = ACTIONS(5731), - [anon_sym_LT_LT_EQ] = ACTIONS(5731), - [anon_sym_GT_GT_EQ] = ACTIONS(5731), - [anon_sym_AMP_EQ] = ACTIONS(5731), - [anon_sym_CARET_EQ] = ACTIONS(5731), - [anon_sym_PIPE_EQ] = ACTIONS(5731), - [anon_sym_and_eq] = ACTIONS(5729), - [anon_sym_or_eq] = ACTIONS(5729), - [anon_sym_xor_eq] = ACTIONS(5729), - [anon_sym_LT_EQ_GT] = ACTIONS(5731), - [anon_sym_or] = ACTIONS(5729), - [anon_sym_and] = ACTIONS(5729), - [anon_sym_bitor] = ACTIONS(5729), - [anon_sym_xor] = ACTIONS(5729), - [anon_sym_bitand] = ACTIONS(5729), - [anon_sym_not_eq] = ACTIONS(5729), - [anon_sym_DASH_DASH] = ACTIONS(5731), - [anon_sym_PLUS_PLUS] = ACTIONS(5731), - [anon_sym_DOT] = ACTIONS(5729), - [anon_sym_DOT_STAR] = ACTIONS(5731), - [anon_sym_DASH_GT] = ACTIONS(5731), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5729), - [anon_sym_decltype] = ACTIONS(5729), + [2284] = { + [sym__declaration_modifiers] = STATE(2292), + [sym__declaration_specifiers] = STATE(5804), + [sym_attribute_specifier] = STATE(2292), + [sym_attribute_declaration] = STATE(2292), + [sym_ms_declspec_modifier] = STATE(2292), + [sym_storage_class_specifier] = STATE(2292), + [sym_type_qualifier] = STATE(2292), + [sym__type_specifier] = STATE(3240), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(2292), + [sym_alignas_specifier] = STATE(2292), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(2292), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, - [2468] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2471), - [sym_identifier] = ACTIONS(5905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5903), - [anon_sym_COMMA] = ACTIONS(5903), - [aux_sym_preproc_if_token2] = ACTIONS(5903), - [aux_sym_preproc_else_token1] = ACTIONS(5903), - [aux_sym_preproc_elif_token1] = ACTIONS(5905), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5903), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5903), - [anon_sym_LPAREN2] = ACTIONS(5903), - [anon_sym_DASH] = ACTIONS(5905), - [anon_sym_PLUS] = ACTIONS(5905), - [anon_sym_STAR] = ACTIONS(5905), - [anon_sym_SLASH] = ACTIONS(5905), - [anon_sym_PERCENT] = ACTIONS(5905), - [anon_sym_PIPE_PIPE] = ACTIONS(5903), - [anon_sym_AMP_AMP] = ACTIONS(5903), - [anon_sym_PIPE] = ACTIONS(5905), - [anon_sym_CARET] = ACTIONS(5905), - [anon_sym_AMP] = ACTIONS(5905), - [anon_sym_EQ_EQ] = ACTIONS(5903), - [anon_sym_BANG_EQ] = ACTIONS(5903), - [anon_sym_GT] = ACTIONS(5905), - [anon_sym_GT_EQ] = ACTIONS(5903), - [anon_sym_LT_EQ] = ACTIONS(5905), - [anon_sym_LT] = ACTIONS(5905), - [anon_sym_LT_LT] = ACTIONS(5905), - [anon_sym_GT_GT] = ACTIONS(5905), - [anon_sym___attribute__] = ACTIONS(5905), - [anon_sym_LBRACE] = ACTIONS(5903), - [anon_sym_signed] = ACTIONS(6019), - [anon_sym_unsigned] = ACTIONS(6019), - [anon_sym_long] = ACTIONS(6019), - [anon_sym_short] = ACTIONS(6019), - [anon_sym_LBRACK] = ACTIONS(5903), - [anon_sym_EQ] = ACTIONS(5905), - [anon_sym_QMARK] = ACTIONS(5903), - [anon_sym_STAR_EQ] = ACTIONS(5903), - [anon_sym_SLASH_EQ] = ACTIONS(5903), - [anon_sym_PERCENT_EQ] = ACTIONS(5903), - [anon_sym_PLUS_EQ] = ACTIONS(5903), - [anon_sym_DASH_EQ] = ACTIONS(5903), - [anon_sym_LT_LT_EQ] = ACTIONS(5903), - [anon_sym_GT_GT_EQ] = ACTIONS(5903), - [anon_sym_AMP_EQ] = ACTIONS(5903), - [anon_sym_CARET_EQ] = ACTIONS(5903), - [anon_sym_PIPE_EQ] = ACTIONS(5903), - [anon_sym_and_eq] = ACTIONS(5905), - [anon_sym_or_eq] = ACTIONS(5905), - [anon_sym_xor_eq] = ACTIONS(5905), - [anon_sym_LT_EQ_GT] = ACTIONS(5903), - [anon_sym_or] = ACTIONS(5905), - [anon_sym_and] = ACTIONS(5905), - [anon_sym_bitor] = ACTIONS(5905), - [anon_sym_xor] = ACTIONS(5905), - [anon_sym_bitand] = ACTIONS(5905), - [anon_sym_not_eq] = ACTIONS(5905), - [anon_sym_DASH_DASH] = ACTIONS(5903), - [anon_sym_PLUS_PLUS] = ACTIONS(5903), - [anon_sym_DOT] = ACTIONS(5905), - [anon_sym_DOT_STAR] = ACTIONS(5903), - [anon_sym_DASH_GT] = ACTIONS(5903), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5905), - [anon_sym_decltype] = ACTIONS(5905), + [2285] = { + [sym_identifier] = ACTIONS(3262), + [aux_sym_preproc_def_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token2] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3262), + [aux_sym_preproc_else_token1] = ACTIONS(3262), + [aux_sym_preproc_elif_token1] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym___extension__] = ACTIONS(3262), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3264), + [anon_sym___declspec] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3262), + [anon_sym_signed] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym___inline] = ACTIONS(3262), + [anon_sym___inline__] = ACTIONS(3262), + [anon_sym___forceinline] = ACTIONS(3262), + [anon_sym_thread_local] = ACTIONS(3262), + [anon_sym___thread] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_virtual] = ACTIONS(3262), + [anon_sym_alignas] = ACTIONS(3262), + [anon_sym_explicit] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3262), + [anon_sym_template] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3262), + [anon_sym_friend] = ACTIONS(3262), + [anon_sym_public] = ACTIONS(3262), + [anon_sym_private] = ACTIONS(3262), + [anon_sym_protected] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_static_assert] = ACTIONS(3262), }, - [2469] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2471), - [sym_identifier] = ACTIONS(5911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5909), - [anon_sym_COMMA] = ACTIONS(5909), - [aux_sym_preproc_if_token2] = ACTIONS(5909), - [aux_sym_preproc_else_token1] = ACTIONS(5909), - [aux_sym_preproc_elif_token1] = ACTIONS(5911), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5909), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5909), - [anon_sym_LPAREN2] = ACTIONS(5909), - [anon_sym_DASH] = ACTIONS(5911), - [anon_sym_PLUS] = ACTIONS(5911), - [anon_sym_STAR] = ACTIONS(5911), - [anon_sym_SLASH] = ACTIONS(5911), - [anon_sym_PERCENT] = ACTIONS(5911), - [anon_sym_PIPE_PIPE] = ACTIONS(5909), - [anon_sym_AMP_AMP] = ACTIONS(5909), - [anon_sym_PIPE] = ACTIONS(5911), - [anon_sym_CARET] = ACTIONS(5911), - [anon_sym_AMP] = ACTIONS(5911), - [anon_sym_EQ_EQ] = ACTIONS(5909), - [anon_sym_BANG_EQ] = ACTIONS(5909), - [anon_sym_GT] = ACTIONS(5911), - [anon_sym_GT_EQ] = ACTIONS(5909), - [anon_sym_LT_EQ] = ACTIONS(5911), - [anon_sym_LT] = ACTIONS(5911), - [anon_sym_LT_LT] = ACTIONS(5911), - [anon_sym_GT_GT] = ACTIONS(5911), - [anon_sym___attribute__] = ACTIONS(5911), - [anon_sym_LBRACE] = ACTIONS(5909), - [anon_sym_signed] = ACTIONS(6019), - [anon_sym_unsigned] = ACTIONS(6019), - [anon_sym_long] = ACTIONS(6019), - [anon_sym_short] = ACTIONS(6019), - [anon_sym_LBRACK] = ACTIONS(5909), - [anon_sym_EQ] = ACTIONS(5911), - [anon_sym_QMARK] = ACTIONS(5909), - [anon_sym_STAR_EQ] = ACTIONS(5909), - [anon_sym_SLASH_EQ] = ACTIONS(5909), - [anon_sym_PERCENT_EQ] = ACTIONS(5909), - [anon_sym_PLUS_EQ] = ACTIONS(5909), - [anon_sym_DASH_EQ] = ACTIONS(5909), - [anon_sym_LT_LT_EQ] = ACTIONS(5909), - [anon_sym_GT_GT_EQ] = ACTIONS(5909), - [anon_sym_AMP_EQ] = ACTIONS(5909), - [anon_sym_CARET_EQ] = ACTIONS(5909), - [anon_sym_PIPE_EQ] = ACTIONS(5909), - [anon_sym_and_eq] = ACTIONS(5911), - [anon_sym_or_eq] = ACTIONS(5911), - [anon_sym_xor_eq] = ACTIONS(5911), - [anon_sym_LT_EQ_GT] = ACTIONS(5909), - [anon_sym_or] = ACTIONS(5911), - [anon_sym_and] = ACTIONS(5911), - [anon_sym_bitor] = ACTIONS(5911), - [anon_sym_xor] = ACTIONS(5911), - [anon_sym_bitand] = ACTIONS(5911), - [anon_sym_not_eq] = ACTIONS(5911), - [anon_sym_DASH_DASH] = ACTIONS(5909), - [anon_sym_PLUS_PLUS] = ACTIONS(5909), - [anon_sym_DOT] = ACTIONS(5911), - [anon_sym_DOT_STAR] = ACTIONS(5909), - [anon_sym_DASH_GT] = ACTIONS(5909), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5911), - [anon_sym_decltype] = ACTIONS(5911), + [2286] = { + [sym_identifier] = ACTIONS(5435), + [aux_sym_preproc_def_token1] = ACTIONS(5435), + [aux_sym_preproc_if_token1] = ACTIONS(5435), + [aux_sym_preproc_if_token2] = ACTIONS(5435), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5435), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5435), + [aux_sym_preproc_else_token1] = ACTIONS(5435), + [aux_sym_preproc_elif_token1] = ACTIONS(5435), + [sym_preproc_directive] = ACTIONS(5435), + [anon_sym_LPAREN2] = ACTIONS(5437), + [anon_sym_TILDE] = ACTIONS(5437), + [anon_sym_STAR] = ACTIONS(5437), + [anon_sym_AMP_AMP] = ACTIONS(5437), + [anon_sym_AMP] = ACTIONS(5435), + [anon_sym___extension__] = ACTIONS(5435), + [anon_sym_typedef] = ACTIONS(5435), + [anon_sym_extern] = ACTIONS(5435), + [anon_sym___attribute__] = ACTIONS(5435), + [anon_sym_COLON_COLON] = ACTIONS(5437), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5437), + [anon_sym___declspec] = ACTIONS(5435), + [anon_sym___based] = ACTIONS(5435), + [anon_sym_signed] = ACTIONS(5435), + [anon_sym_unsigned] = ACTIONS(5435), + [anon_sym_long] = ACTIONS(5435), + [anon_sym_short] = ACTIONS(5435), + [anon_sym_LBRACK] = ACTIONS(5435), + [anon_sym_static] = ACTIONS(5435), + [anon_sym_register] = ACTIONS(5435), + [anon_sym_inline] = ACTIONS(5435), + [anon_sym___inline] = ACTIONS(5435), + [anon_sym___inline__] = ACTIONS(5435), + [anon_sym___forceinline] = ACTIONS(5435), + [anon_sym_thread_local] = ACTIONS(5435), + [anon_sym___thread] = ACTIONS(5435), + [anon_sym_const] = ACTIONS(5435), + [anon_sym_constexpr] = ACTIONS(5435), + [anon_sym_volatile] = ACTIONS(5435), + [anon_sym_restrict] = ACTIONS(5435), + [anon_sym___restrict__] = ACTIONS(5435), + [anon_sym__Atomic] = ACTIONS(5435), + [anon_sym__Noreturn] = ACTIONS(5435), + [anon_sym_noreturn] = ACTIONS(5435), + [anon_sym_mutable] = ACTIONS(5435), + [anon_sym_constinit] = ACTIONS(5435), + [anon_sym_consteval] = ACTIONS(5435), + [sym_primitive_type] = ACTIONS(5435), + [anon_sym_enum] = ACTIONS(5435), + [anon_sym_class] = ACTIONS(5435), + [anon_sym_struct] = ACTIONS(5435), + [anon_sym_union] = ACTIONS(5435), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5435), + [anon_sym_decltype] = ACTIONS(5435), + [anon_sym_virtual] = ACTIONS(5435), + [anon_sym_alignas] = ACTIONS(5435), + [anon_sym_explicit] = ACTIONS(5435), + [anon_sym_typename] = ACTIONS(5435), + [anon_sym_template] = ACTIONS(5435), + [anon_sym_operator] = ACTIONS(5435), + [anon_sym_friend] = ACTIONS(5435), + [anon_sym_public] = ACTIONS(5435), + [anon_sym_private] = ACTIONS(5435), + [anon_sym_protected] = ACTIONS(5435), + [anon_sym_using] = ACTIONS(5435), + [anon_sym_static_assert] = ACTIONS(5435), }, - [2470] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2462), - [sym_identifier] = ACTIONS(5946), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5944), - [anon_sym_COMMA] = ACTIONS(5944), - [aux_sym_preproc_if_token2] = ACTIONS(5944), - [aux_sym_preproc_else_token1] = ACTIONS(5944), - [aux_sym_preproc_elif_token1] = ACTIONS(5946), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5944), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5944), - [anon_sym_LPAREN2] = ACTIONS(5944), - [anon_sym_DASH] = ACTIONS(5946), - [anon_sym_PLUS] = ACTIONS(5946), - [anon_sym_STAR] = ACTIONS(5946), - [anon_sym_SLASH] = ACTIONS(5946), - [anon_sym_PERCENT] = ACTIONS(5946), - [anon_sym_PIPE_PIPE] = ACTIONS(5944), - [anon_sym_AMP_AMP] = ACTIONS(5944), - [anon_sym_PIPE] = ACTIONS(5946), - [anon_sym_CARET] = ACTIONS(5946), - [anon_sym_AMP] = ACTIONS(5946), - [anon_sym_EQ_EQ] = ACTIONS(5944), - [anon_sym_BANG_EQ] = ACTIONS(5944), - [anon_sym_GT] = ACTIONS(5946), - [anon_sym_GT_EQ] = ACTIONS(5944), - [anon_sym_LT_EQ] = ACTIONS(5946), - [anon_sym_LT] = ACTIONS(5946), - [anon_sym_LT_LT] = ACTIONS(5946), - [anon_sym_GT_GT] = ACTIONS(5946), - [anon_sym___attribute__] = ACTIONS(5946), - [anon_sym_LBRACE] = ACTIONS(5944), - [anon_sym_signed] = ACTIONS(6021), - [anon_sym_unsigned] = ACTIONS(6021), - [anon_sym_long] = ACTIONS(6021), - [anon_sym_short] = ACTIONS(6021), - [anon_sym_LBRACK] = ACTIONS(5944), - [anon_sym_EQ] = ACTIONS(5946), - [anon_sym_QMARK] = ACTIONS(5944), - [anon_sym_STAR_EQ] = ACTIONS(5944), - [anon_sym_SLASH_EQ] = ACTIONS(5944), - [anon_sym_PERCENT_EQ] = ACTIONS(5944), - [anon_sym_PLUS_EQ] = ACTIONS(5944), - [anon_sym_DASH_EQ] = ACTIONS(5944), - [anon_sym_LT_LT_EQ] = ACTIONS(5944), - [anon_sym_GT_GT_EQ] = ACTIONS(5944), - [anon_sym_AMP_EQ] = ACTIONS(5944), - [anon_sym_CARET_EQ] = ACTIONS(5944), - [anon_sym_PIPE_EQ] = ACTIONS(5944), - [anon_sym_and_eq] = ACTIONS(5946), - [anon_sym_or_eq] = ACTIONS(5946), - [anon_sym_xor_eq] = ACTIONS(5946), - [anon_sym_LT_EQ_GT] = ACTIONS(5944), - [anon_sym_or] = ACTIONS(5946), - [anon_sym_and] = ACTIONS(5946), - [anon_sym_bitor] = ACTIONS(5946), - [anon_sym_xor] = ACTIONS(5946), - [anon_sym_bitand] = ACTIONS(5946), - [anon_sym_not_eq] = ACTIONS(5946), - [anon_sym_DASH_DASH] = ACTIONS(5944), - [anon_sym_PLUS_PLUS] = ACTIONS(5944), - [anon_sym_DOT] = ACTIONS(5946), - [anon_sym_DOT_STAR] = ACTIONS(5944), - [anon_sym_DASH_GT] = ACTIONS(5944), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5946), - [anon_sym_decltype] = ACTIONS(5946), + [2287] = { + [sym_identifier] = ACTIONS(3244), + [aux_sym_preproc_def_token1] = ACTIONS(3244), + [aux_sym_preproc_if_token1] = ACTIONS(3244), + [aux_sym_preproc_if_token2] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3244), + [aux_sym_preproc_else_token1] = ACTIONS(3244), + [aux_sym_preproc_elif_token1] = ACTIONS(3244), + [sym_preproc_directive] = ACTIONS(3244), + [anon_sym_LPAREN2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3244), + [anon_sym___extension__] = ACTIONS(3244), + [anon_sym_typedef] = ACTIONS(3244), + [anon_sym_extern] = ACTIONS(3244), + [anon_sym___attribute__] = ACTIONS(3244), + [anon_sym_COLON_COLON] = ACTIONS(3246), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3246), + [anon_sym___declspec] = ACTIONS(3244), + [anon_sym___based] = ACTIONS(3244), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3244), + [anon_sym_register] = ACTIONS(3244), + [anon_sym_inline] = ACTIONS(3244), + [anon_sym___inline] = ACTIONS(3244), + [anon_sym___inline__] = ACTIONS(3244), + [anon_sym___forceinline] = ACTIONS(3244), + [anon_sym_thread_local] = ACTIONS(3244), + [anon_sym___thread] = ACTIONS(3244), + [anon_sym_const] = ACTIONS(3244), + [anon_sym_constexpr] = ACTIONS(3244), + [anon_sym_volatile] = ACTIONS(3244), + [anon_sym_restrict] = ACTIONS(3244), + [anon_sym___restrict__] = ACTIONS(3244), + [anon_sym__Atomic] = ACTIONS(3244), + [anon_sym__Noreturn] = ACTIONS(3244), + [anon_sym_noreturn] = ACTIONS(3244), + [anon_sym_mutable] = ACTIONS(3244), + [anon_sym_constinit] = ACTIONS(3244), + [anon_sym_consteval] = ACTIONS(3244), + [sym_primitive_type] = ACTIONS(3244), + [anon_sym_enum] = ACTIONS(3244), + [anon_sym_class] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3244), + [anon_sym_union] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3244), + [anon_sym_decltype] = ACTIONS(3244), + [anon_sym_virtual] = ACTIONS(3244), + [anon_sym_alignas] = ACTIONS(3244), + [anon_sym_explicit] = ACTIONS(3244), + [anon_sym_typename] = ACTIONS(3244), + [anon_sym_template] = ACTIONS(3244), + [anon_sym_operator] = ACTIONS(3244), + [anon_sym_friend] = ACTIONS(3244), + [anon_sym_public] = ACTIONS(3244), + [anon_sym_private] = ACTIONS(3244), + [anon_sym_protected] = ACTIONS(3244), + [anon_sym_using] = ACTIONS(3244), + [anon_sym_static_assert] = ACTIONS(3244), }, - [2471] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2471), - [sym_identifier] = ACTIONS(5246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5248), - [anon_sym_COMMA] = ACTIONS(5248), - [aux_sym_preproc_if_token2] = ACTIONS(5248), - [aux_sym_preproc_else_token1] = ACTIONS(5248), - [aux_sym_preproc_elif_token1] = ACTIONS(5246), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5248), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5248), - [anon_sym_LPAREN2] = ACTIONS(5248), - [anon_sym_DASH] = ACTIONS(5246), - [anon_sym_PLUS] = ACTIONS(5246), - [anon_sym_STAR] = ACTIONS(5246), - [anon_sym_SLASH] = ACTIONS(5246), - [anon_sym_PERCENT] = ACTIONS(5246), - [anon_sym_PIPE_PIPE] = ACTIONS(5248), - [anon_sym_AMP_AMP] = ACTIONS(5248), - [anon_sym_PIPE] = ACTIONS(5246), - [anon_sym_CARET] = ACTIONS(5246), - [anon_sym_AMP] = ACTIONS(5246), - [anon_sym_EQ_EQ] = ACTIONS(5248), - [anon_sym_BANG_EQ] = ACTIONS(5248), - [anon_sym_GT] = ACTIONS(5246), - [anon_sym_GT_EQ] = ACTIONS(5248), - [anon_sym_LT_EQ] = ACTIONS(5246), - [anon_sym_LT] = ACTIONS(5246), - [anon_sym_LT_LT] = ACTIONS(5246), - [anon_sym_GT_GT] = ACTIONS(5246), - [anon_sym___attribute__] = ACTIONS(5246), - [anon_sym_LBRACE] = ACTIONS(5248), - [anon_sym_signed] = ACTIONS(6023), - [anon_sym_unsigned] = ACTIONS(6023), - [anon_sym_long] = ACTIONS(6023), - [anon_sym_short] = ACTIONS(6023), - [anon_sym_LBRACK] = ACTIONS(5248), - [anon_sym_EQ] = ACTIONS(5246), - [anon_sym_QMARK] = ACTIONS(5248), - [anon_sym_STAR_EQ] = ACTIONS(5248), - [anon_sym_SLASH_EQ] = ACTIONS(5248), - [anon_sym_PERCENT_EQ] = ACTIONS(5248), - [anon_sym_PLUS_EQ] = ACTIONS(5248), - [anon_sym_DASH_EQ] = ACTIONS(5248), - [anon_sym_LT_LT_EQ] = ACTIONS(5248), - [anon_sym_GT_GT_EQ] = ACTIONS(5248), - [anon_sym_AMP_EQ] = ACTIONS(5248), - [anon_sym_CARET_EQ] = ACTIONS(5248), - [anon_sym_PIPE_EQ] = ACTIONS(5248), - [anon_sym_and_eq] = ACTIONS(5246), - [anon_sym_or_eq] = ACTIONS(5246), - [anon_sym_xor_eq] = ACTIONS(5246), - [anon_sym_LT_EQ_GT] = ACTIONS(5248), - [anon_sym_or] = ACTIONS(5246), - [anon_sym_and] = ACTIONS(5246), - [anon_sym_bitor] = ACTIONS(5246), - [anon_sym_xor] = ACTIONS(5246), - [anon_sym_bitand] = ACTIONS(5246), - [anon_sym_not_eq] = ACTIONS(5246), - [anon_sym_DASH_DASH] = ACTIONS(5248), - [anon_sym_PLUS_PLUS] = ACTIONS(5248), - [anon_sym_DOT] = ACTIONS(5246), - [anon_sym_DOT_STAR] = ACTIONS(5248), - [anon_sym_DASH_GT] = ACTIONS(5248), + [2288] = { + [sym_attribute_specifier] = STATE(2497), + [sym_identifier] = ACTIONS(5821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5823), + [anon_sym_COMMA] = ACTIONS(5823), + [anon_sym_RPAREN] = ACTIONS(5823), + [aux_sym_preproc_if_token2] = ACTIONS(5823), + [aux_sym_preproc_else_token1] = ACTIONS(5823), + [aux_sym_preproc_elif_token1] = ACTIONS(5821), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5823), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5823), + [anon_sym_LPAREN2] = ACTIONS(5823), + [anon_sym_DASH] = ACTIONS(5821), + [anon_sym_PLUS] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(5821), + [anon_sym_SLASH] = ACTIONS(5821), + [anon_sym_PERCENT] = ACTIONS(5821), + [anon_sym_PIPE_PIPE] = ACTIONS(5823), + [anon_sym_AMP_AMP] = ACTIONS(5823), + [anon_sym_PIPE] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(5821), + [anon_sym_AMP] = ACTIONS(5821), + [anon_sym_EQ_EQ] = ACTIONS(5823), + [anon_sym_BANG_EQ] = ACTIONS(5823), + [anon_sym_GT] = ACTIONS(5821), + [anon_sym_GT_EQ] = ACTIONS(5823), + [anon_sym_LT_EQ] = ACTIONS(5821), + [anon_sym_LT] = ACTIONS(5821), + [anon_sym_LT_LT] = ACTIONS(5821), + [anon_sym_GT_GT] = ACTIONS(5821), + [anon_sym_SEMI] = ACTIONS(5823), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5823), + [anon_sym_RBRACE] = ACTIONS(5823), + [anon_sym_LBRACK] = ACTIONS(5823), + [anon_sym_RBRACK] = ACTIONS(5823), + [anon_sym_EQ] = ACTIONS(5821), + [anon_sym_COLON] = ACTIONS(5823), + [anon_sym_QMARK] = ACTIONS(5823), + [anon_sym_STAR_EQ] = ACTIONS(5823), + [anon_sym_SLASH_EQ] = ACTIONS(5823), + [anon_sym_PERCENT_EQ] = ACTIONS(5823), + [anon_sym_PLUS_EQ] = ACTIONS(5823), + [anon_sym_DASH_EQ] = ACTIONS(5823), + [anon_sym_LT_LT_EQ] = ACTIONS(5823), + [anon_sym_GT_GT_EQ] = ACTIONS(5823), + [anon_sym_AMP_EQ] = ACTIONS(5823), + [anon_sym_CARET_EQ] = ACTIONS(5823), + [anon_sym_PIPE_EQ] = ACTIONS(5823), + [anon_sym_and_eq] = ACTIONS(5821), + [anon_sym_or_eq] = ACTIONS(5821), + [anon_sym_xor_eq] = ACTIONS(5821), + [anon_sym_LT_EQ_GT] = ACTIONS(5823), + [anon_sym_or] = ACTIONS(5821), + [anon_sym_and] = ACTIONS(5821), + [anon_sym_bitor] = ACTIONS(5821), + [anon_sym_xor] = ACTIONS(5821), + [anon_sym_bitand] = ACTIONS(5821), + [anon_sym_not_eq] = ACTIONS(5821), + [anon_sym_DASH_DASH] = ACTIONS(5823), + [anon_sym_PLUS_PLUS] = ACTIONS(5823), + [anon_sym_DOT] = ACTIONS(5821), + [anon_sym_DOT_STAR] = ACTIONS(5823), + [anon_sym_DASH_GT] = ACTIONS(5823), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5246), - [anon_sym_decltype] = ACTIONS(5246), + [sym_auto] = ACTIONS(5821), + [anon_sym_decltype] = ACTIONS(5821), }, - [2472] = { - [sym_identifier] = ACTIONS(5779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5781), - [anon_sym_COMMA] = ACTIONS(5781), - [anon_sym_RPAREN] = ACTIONS(5781), - [aux_sym_preproc_if_token2] = ACTIONS(5781), - [aux_sym_preproc_else_token1] = ACTIONS(5781), - [aux_sym_preproc_elif_token1] = ACTIONS(5779), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5781), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5781), - [anon_sym_LPAREN2] = ACTIONS(5781), - [anon_sym_DASH] = ACTIONS(5779), - [anon_sym_PLUS] = ACTIONS(5779), - [anon_sym_STAR] = ACTIONS(5779), - [anon_sym_SLASH] = ACTIONS(5779), - [anon_sym_PERCENT] = ACTIONS(5779), - [anon_sym_PIPE_PIPE] = ACTIONS(5781), - [anon_sym_AMP_AMP] = ACTIONS(5781), - [anon_sym_PIPE] = ACTIONS(5779), - [anon_sym_CARET] = ACTIONS(5779), - [anon_sym_AMP] = ACTIONS(5779), - [anon_sym_EQ_EQ] = ACTIONS(5781), - [anon_sym_BANG_EQ] = ACTIONS(5781), - [anon_sym_GT] = ACTIONS(5779), - [anon_sym_GT_EQ] = ACTIONS(5781), - [anon_sym_LT_EQ] = ACTIONS(5779), - [anon_sym_LT] = ACTIONS(5779), - [anon_sym_LT_LT] = ACTIONS(5779), - [anon_sym_GT_GT] = ACTIONS(5779), - [anon_sym_SEMI] = ACTIONS(5781), - [anon_sym___attribute__] = ACTIONS(5779), - [anon_sym_LBRACE] = ACTIONS(5781), - [anon_sym_RBRACE] = ACTIONS(5781), - [anon_sym_LBRACK] = ACTIONS(5781), - [anon_sym_RBRACK] = ACTIONS(5781), - [anon_sym_EQ] = ACTIONS(5779), - [anon_sym_COLON] = ACTIONS(5781), - [anon_sym_QMARK] = ACTIONS(5781), - [anon_sym_STAR_EQ] = ACTIONS(5781), - [anon_sym_SLASH_EQ] = ACTIONS(5781), - [anon_sym_PERCENT_EQ] = ACTIONS(5781), - [anon_sym_PLUS_EQ] = ACTIONS(5781), - [anon_sym_DASH_EQ] = ACTIONS(5781), - [anon_sym_LT_LT_EQ] = ACTIONS(5781), - [anon_sym_GT_GT_EQ] = ACTIONS(5781), - [anon_sym_AMP_EQ] = ACTIONS(5781), - [anon_sym_CARET_EQ] = ACTIONS(5781), - [anon_sym_PIPE_EQ] = ACTIONS(5781), - [anon_sym_and_eq] = ACTIONS(5779), - [anon_sym_or_eq] = ACTIONS(5779), - [anon_sym_xor_eq] = ACTIONS(5779), - [anon_sym_LT_EQ_GT] = ACTIONS(5781), - [anon_sym_or] = ACTIONS(5779), - [anon_sym_and] = ACTIONS(5779), - [anon_sym_bitor] = ACTIONS(5779), - [anon_sym_xor] = ACTIONS(5779), - [anon_sym_bitand] = ACTIONS(5779), - [anon_sym_not_eq] = ACTIONS(5779), - [anon_sym_DASH_DASH] = ACTIONS(5781), - [anon_sym_PLUS_PLUS] = ACTIONS(5781), - [anon_sym_DOT] = ACTIONS(5779), - [anon_sym_DOT_STAR] = ACTIONS(5781), - [anon_sym_DASH_GT] = ACTIONS(5781), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5779), - [anon_sym_decltype] = ACTIONS(5779), + [2289] = { + [sym_identifier] = ACTIONS(3236), + [aux_sym_preproc_def_token1] = ACTIONS(3236), + [aux_sym_preproc_if_token1] = ACTIONS(3236), + [aux_sym_preproc_if_token2] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3236), + [aux_sym_preproc_else_token1] = ACTIONS(3236), + [aux_sym_preproc_elif_token1] = ACTIONS(3236), + [sym_preproc_directive] = ACTIONS(3236), + [anon_sym_LPAREN2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3236), + [anon_sym___extension__] = ACTIONS(3236), + [anon_sym_typedef] = ACTIONS(3236), + [anon_sym_extern] = ACTIONS(3236), + [anon_sym___attribute__] = ACTIONS(3236), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3238), + [anon_sym___declspec] = ACTIONS(3236), + [anon_sym___based] = ACTIONS(3236), + [anon_sym_signed] = ACTIONS(3236), + [anon_sym_unsigned] = ACTIONS(3236), + [anon_sym_long] = ACTIONS(3236), + [anon_sym_short] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_register] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym___inline] = ACTIONS(3236), + [anon_sym___inline__] = ACTIONS(3236), + [anon_sym___forceinline] = ACTIONS(3236), + [anon_sym_thread_local] = ACTIONS(3236), + [anon_sym___thread] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_constexpr] = ACTIONS(3236), + [anon_sym_volatile] = ACTIONS(3236), + [anon_sym_restrict] = ACTIONS(3236), + [anon_sym___restrict__] = ACTIONS(3236), + [anon_sym__Atomic] = ACTIONS(3236), + [anon_sym__Noreturn] = ACTIONS(3236), + [anon_sym_noreturn] = ACTIONS(3236), + [anon_sym_mutable] = ACTIONS(3236), + [anon_sym_constinit] = ACTIONS(3236), + [anon_sym_consteval] = ACTIONS(3236), + [sym_primitive_type] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3236), + [anon_sym_virtual] = ACTIONS(3236), + [anon_sym_alignas] = ACTIONS(3236), + [anon_sym_explicit] = ACTIONS(3236), + [anon_sym_typename] = ACTIONS(3236), + [anon_sym_template] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_friend] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_static_assert] = ACTIONS(3236), }, - [2473] = { - [sym_identifier] = ACTIONS(5775), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5777), - [anon_sym_COMMA] = ACTIONS(5777), - [anon_sym_RPAREN] = ACTIONS(5777), - [aux_sym_preproc_if_token2] = ACTIONS(5777), - [aux_sym_preproc_else_token1] = ACTIONS(5777), - [aux_sym_preproc_elif_token1] = ACTIONS(5775), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5777), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5777), - [anon_sym_LPAREN2] = ACTIONS(5777), - [anon_sym_DASH] = ACTIONS(5775), - [anon_sym_PLUS] = ACTIONS(5775), - [anon_sym_STAR] = ACTIONS(5775), - [anon_sym_SLASH] = ACTIONS(5775), - [anon_sym_PERCENT] = ACTIONS(5775), - [anon_sym_PIPE_PIPE] = ACTIONS(5777), - [anon_sym_AMP_AMP] = ACTIONS(5777), - [anon_sym_PIPE] = ACTIONS(5775), - [anon_sym_CARET] = ACTIONS(5775), - [anon_sym_AMP] = ACTIONS(5775), - [anon_sym_EQ_EQ] = ACTIONS(5777), - [anon_sym_BANG_EQ] = ACTIONS(5777), - [anon_sym_GT] = ACTIONS(5775), - [anon_sym_GT_EQ] = ACTIONS(5777), - [anon_sym_LT_EQ] = ACTIONS(5775), - [anon_sym_LT] = ACTIONS(5775), - [anon_sym_LT_LT] = ACTIONS(5775), - [anon_sym_GT_GT] = ACTIONS(5775), - [anon_sym_SEMI] = ACTIONS(5777), - [anon_sym___attribute__] = ACTIONS(5775), - [anon_sym_LBRACE] = ACTIONS(5777), - [anon_sym_RBRACE] = ACTIONS(5777), - [anon_sym_LBRACK] = ACTIONS(5777), - [anon_sym_RBRACK] = ACTIONS(5777), - [anon_sym_EQ] = ACTIONS(5775), - [anon_sym_COLON] = ACTIONS(5777), - [anon_sym_QMARK] = ACTIONS(5777), - [anon_sym_STAR_EQ] = ACTIONS(5777), - [anon_sym_SLASH_EQ] = ACTIONS(5777), - [anon_sym_PERCENT_EQ] = ACTIONS(5777), - [anon_sym_PLUS_EQ] = ACTIONS(5777), - [anon_sym_DASH_EQ] = ACTIONS(5777), - [anon_sym_LT_LT_EQ] = ACTIONS(5777), - [anon_sym_GT_GT_EQ] = ACTIONS(5777), - [anon_sym_AMP_EQ] = ACTIONS(5777), - [anon_sym_CARET_EQ] = ACTIONS(5777), - [anon_sym_PIPE_EQ] = ACTIONS(5777), - [anon_sym_and_eq] = ACTIONS(5775), - [anon_sym_or_eq] = ACTIONS(5775), - [anon_sym_xor_eq] = ACTIONS(5775), - [anon_sym_LT_EQ_GT] = ACTIONS(5777), - [anon_sym_or] = ACTIONS(5775), - [anon_sym_and] = ACTIONS(5775), - [anon_sym_bitor] = ACTIONS(5775), - [anon_sym_xor] = ACTIONS(5775), - [anon_sym_bitand] = ACTIONS(5775), - [anon_sym_not_eq] = ACTIONS(5775), - [anon_sym_DASH_DASH] = ACTIONS(5777), - [anon_sym_PLUS_PLUS] = ACTIONS(5777), - [anon_sym_DOT] = ACTIONS(5775), - [anon_sym_DOT_STAR] = ACTIONS(5777), - [anon_sym_DASH_GT] = ACTIONS(5777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5775), - [anon_sym_decltype] = ACTIONS(5775), + [2290] = { + [sym_attribute_declaration] = STATE(2475), + [sym_parameter_list] = STATE(2499), + [aux_sym_attributed_declarator_repeat1] = STATE(2475), + [sym_identifier] = ACTIONS(5825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5827), + [anon_sym_COMMA] = ACTIONS(5827), + [anon_sym_RPAREN] = ACTIONS(5827), + [aux_sym_preproc_if_token2] = ACTIONS(5827), + [aux_sym_preproc_else_token1] = ACTIONS(5827), + [aux_sym_preproc_elif_token1] = ACTIONS(5825), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5827), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5827), + [anon_sym_LPAREN2] = ACTIONS(5829), + [anon_sym_DASH] = ACTIONS(5825), + [anon_sym_PLUS] = ACTIONS(5825), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_SLASH] = ACTIONS(5825), + [anon_sym_PERCENT] = ACTIONS(5825), + [anon_sym_PIPE_PIPE] = ACTIONS(5827), + [anon_sym_AMP_AMP] = ACTIONS(5827), + [anon_sym_PIPE] = ACTIONS(5825), + [anon_sym_CARET] = ACTIONS(5825), + [anon_sym_AMP] = ACTIONS(5825), + [anon_sym_EQ_EQ] = ACTIONS(5827), + [anon_sym_BANG_EQ] = ACTIONS(5827), + [anon_sym_GT] = ACTIONS(5825), + [anon_sym_GT_EQ] = ACTIONS(5827), + [anon_sym_LT_EQ] = ACTIONS(5825), + [anon_sym_LT] = ACTIONS(5825), + [anon_sym_LT_LT] = ACTIONS(5825), + [anon_sym_GT_GT] = ACTIONS(5825), + [anon_sym_SEMI] = ACTIONS(5827), + [anon_sym___attribute__] = ACTIONS(5825), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5831), + [anon_sym_RBRACE] = ACTIONS(5827), + [anon_sym_LBRACK] = ACTIONS(5833), + [anon_sym_RBRACK] = ACTIONS(5827), + [anon_sym_EQ] = ACTIONS(5825), + [anon_sym_COLON] = ACTIONS(5827), + [anon_sym_QMARK] = ACTIONS(5827), + [anon_sym_STAR_EQ] = ACTIONS(5827), + [anon_sym_SLASH_EQ] = ACTIONS(5827), + [anon_sym_PERCENT_EQ] = ACTIONS(5827), + [anon_sym_PLUS_EQ] = ACTIONS(5827), + [anon_sym_DASH_EQ] = ACTIONS(5827), + [anon_sym_LT_LT_EQ] = ACTIONS(5827), + [anon_sym_GT_GT_EQ] = ACTIONS(5827), + [anon_sym_AMP_EQ] = ACTIONS(5827), + [anon_sym_CARET_EQ] = ACTIONS(5827), + [anon_sym_PIPE_EQ] = ACTIONS(5827), + [anon_sym_and_eq] = ACTIONS(5825), + [anon_sym_or_eq] = ACTIONS(5825), + [anon_sym_xor_eq] = ACTIONS(5825), + [anon_sym_LT_EQ_GT] = ACTIONS(5827), + [anon_sym_or] = ACTIONS(5825), + [anon_sym_and] = ACTIONS(5825), + [anon_sym_bitor] = ACTIONS(5825), + [anon_sym_xor] = ACTIONS(5825), + [anon_sym_bitand] = ACTIONS(5825), + [anon_sym_not_eq] = ACTIONS(5825), + [anon_sym_DASH_DASH] = ACTIONS(5827), + [anon_sym_PLUS_PLUS] = ACTIONS(5827), + [anon_sym_DOT] = ACTIONS(5825), + [anon_sym_DOT_STAR] = ACTIONS(5827), + [anon_sym_DASH_GT] = ACTIONS(5827), + [sym_comment] = ACTIONS(3), }, - [2474] = { - [sym_identifier] = ACTIONS(5771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5773), - [anon_sym_COMMA] = ACTIONS(5773), - [anon_sym_RPAREN] = ACTIONS(5773), - [aux_sym_preproc_if_token2] = ACTIONS(5773), - [aux_sym_preproc_else_token1] = ACTIONS(5773), - [aux_sym_preproc_elif_token1] = ACTIONS(5771), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5773), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5773), - [anon_sym_LPAREN2] = ACTIONS(5773), - [anon_sym_DASH] = ACTIONS(5771), - [anon_sym_PLUS] = ACTIONS(5771), - [anon_sym_STAR] = ACTIONS(5771), - [anon_sym_SLASH] = ACTIONS(5771), - [anon_sym_PERCENT] = ACTIONS(5771), - [anon_sym_PIPE_PIPE] = ACTIONS(5773), - [anon_sym_AMP_AMP] = ACTIONS(5773), - [anon_sym_PIPE] = ACTIONS(5771), - [anon_sym_CARET] = ACTIONS(5771), - [anon_sym_AMP] = ACTIONS(5771), - [anon_sym_EQ_EQ] = ACTIONS(5773), - [anon_sym_BANG_EQ] = ACTIONS(5773), - [anon_sym_GT] = ACTIONS(5771), - [anon_sym_GT_EQ] = ACTIONS(5773), - [anon_sym_LT_EQ] = ACTIONS(5771), - [anon_sym_LT] = ACTIONS(5771), - [anon_sym_LT_LT] = ACTIONS(5771), - [anon_sym_GT_GT] = ACTIONS(5771), - [anon_sym_SEMI] = ACTIONS(5773), - [anon_sym___attribute__] = ACTIONS(5771), - [anon_sym_LBRACE] = ACTIONS(5773), - [anon_sym_RBRACE] = ACTIONS(5773), - [anon_sym_LBRACK] = ACTIONS(5773), - [anon_sym_RBRACK] = ACTIONS(5773), - [anon_sym_EQ] = ACTIONS(5771), - [anon_sym_COLON] = ACTIONS(5773), - [anon_sym_QMARK] = ACTIONS(5773), - [anon_sym_STAR_EQ] = ACTIONS(5773), - [anon_sym_SLASH_EQ] = ACTIONS(5773), - [anon_sym_PERCENT_EQ] = ACTIONS(5773), - [anon_sym_PLUS_EQ] = ACTIONS(5773), - [anon_sym_DASH_EQ] = ACTIONS(5773), - [anon_sym_LT_LT_EQ] = ACTIONS(5773), - [anon_sym_GT_GT_EQ] = ACTIONS(5773), - [anon_sym_AMP_EQ] = ACTIONS(5773), - [anon_sym_CARET_EQ] = ACTIONS(5773), - [anon_sym_PIPE_EQ] = ACTIONS(5773), - [anon_sym_and_eq] = ACTIONS(5771), - [anon_sym_or_eq] = ACTIONS(5771), - [anon_sym_xor_eq] = ACTIONS(5771), - [anon_sym_LT_EQ_GT] = ACTIONS(5773), - [anon_sym_or] = ACTIONS(5771), - [anon_sym_and] = ACTIONS(5771), - [anon_sym_bitor] = ACTIONS(5771), - [anon_sym_xor] = ACTIONS(5771), - [anon_sym_bitand] = ACTIONS(5771), - [anon_sym_not_eq] = ACTIONS(5771), - [anon_sym_DASH_DASH] = ACTIONS(5773), - [anon_sym_PLUS_PLUS] = ACTIONS(5773), - [anon_sym_DOT] = ACTIONS(5771), - [anon_sym_DOT_STAR] = ACTIONS(5773), - [anon_sym_DASH_GT] = ACTIONS(5773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5771), - [anon_sym_decltype] = ACTIONS(5771), + [2291] = { + [sym_identifier] = ACTIONS(3195), + [aux_sym_preproc_def_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token1] = ACTIONS(3195), + [aux_sym_preproc_if_token2] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3195), + [aux_sym_preproc_else_token1] = ACTIONS(3195), + [aux_sym_preproc_elif_token1] = ACTIONS(3195), + [sym_preproc_directive] = ACTIONS(3195), + [anon_sym_LPAREN2] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym___extension__] = ACTIONS(3195), + [anon_sym_typedef] = ACTIONS(3195), + [anon_sym_extern] = ACTIONS(3195), + [anon_sym___attribute__] = ACTIONS(3195), + [anon_sym_COLON_COLON] = ACTIONS(3197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), + [anon_sym___declspec] = ACTIONS(3195), + [anon_sym___based] = ACTIONS(3195), + [anon_sym_signed] = ACTIONS(3195), + [anon_sym_unsigned] = ACTIONS(3195), + [anon_sym_long] = ACTIONS(3195), + [anon_sym_short] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_register] = ACTIONS(3195), + [anon_sym_inline] = ACTIONS(3195), + [anon_sym___inline] = ACTIONS(3195), + [anon_sym___inline__] = ACTIONS(3195), + [anon_sym___forceinline] = ACTIONS(3195), + [anon_sym_thread_local] = ACTIONS(3195), + [anon_sym___thread] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_constexpr] = ACTIONS(3195), + [anon_sym_volatile] = ACTIONS(3195), + [anon_sym_restrict] = ACTIONS(3195), + [anon_sym___restrict__] = ACTIONS(3195), + [anon_sym__Atomic] = ACTIONS(3195), + [anon_sym__Noreturn] = ACTIONS(3195), + [anon_sym_noreturn] = ACTIONS(3195), + [anon_sym_mutable] = ACTIONS(3195), + [anon_sym_constinit] = ACTIONS(3195), + [anon_sym_consteval] = ACTIONS(3195), + [sym_primitive_type] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3195), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3195), + [anon_sym_decltype] = ACTIONS(3195), + [anon_sym_virtual] = ACTIONS(3195), + [anon_sym_alignas] = ACTIONS(3195), + [anon_sym_explicit] = ACTIONS(3195), + [anon_sym_typename] = ACTIONS(3195), + [anon_sym_template] = ACTIONS(3195), + [anon_sym_operator] = ACTIONS(3195), + [anon_sym_friend] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_private] = ACTIONS(3195), + [anon_sym_protected] = ACTIONS(3195), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_static_assert] = ACTIONS(3195), }, - [2475] = { - [sym_identifier] = ACTIONS(5767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5769), - [anon_sym_COMMA] = ACTIONS(5769), - [anon_sym_RPAREN] = ACTIONS(5769), - [aux_sym_preproc_if_token2] = ACTIONS(5769), - [aux_sym_preproc_else_token1] = ACTIONS(5769), - [aux_sym_preproc_elif_token1] = ACTIONS(5767), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5769), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5769), - [anon_sym_LPAREN2] = ACTIONS(5769), - [anon_sym_DASH] = ACTIONS(5767), - [anon_sym_PLUS] = ACTIONS(5767), - [anon_sym_STAR] = ACTIONS(5767), - [anon_sym_SLASH] = ACTIONS(5767), - [anon_sym_PERCENT] = ACTIONS(5767), - [anon_sym_PIPE_PIPE] = ACTIONS(5769), - [anon_sym_AMP_AMP] = ACTIONS(5769), - [anon_sym_PIPE] = ACTIONS(5767), - [anon_sym_CARET] = ACTIONS(5767), - [anon_sym_AMP] = ACTIONS(5767), - [anon_sym_EQ_EQ] = ACTIONS(5769), - [anon_sym_BANG_EQ] = ACTIONS(5769), - [anon_sym_GT] = ACTIONS(5767), - [anon_sym_GT_EQ] = ACTIONS(5769), - [anon_sym_LT_EQ] = ACTIONS(5767), - [anon_sym_LT] = ACTIONS(5767), - [anon_sym_LT_LT] = ACTIONS(5767), - [anon_sym_GT_GT] = ACTIONS(5767), - [anon_sym_SEMI] = ACTIONS(5769), - [anon_sym___attribute__] = ACTIONS(5767), - [anon_sym_LBRACE] = ACTIONS(5769), - [anon_sym_RBRACE] = ACTIONS(5769), - [anon_sym_LBRACK] = ACTIONS(5769), - [anon_sym_RBRACK] = ACTIONS(5769), - [anon_sym_EQ] = ACTIONS(5767), - [anon_sym_COLON] = ACTIONS(5769), - [anon_sym_QMARK] = ACTIONS(5769), - [anon_sym_STAR_EQ] = ACTIONS(5769), - [anon_sym_SLASH_EQ] = ACTIONS(5769), - [anon_sym_PERCENT_EQ] = ACTIONS(5769), - [anon_sym_PLUS_EQ] = ACTIONS(5769), - [anon_sym_DASH_EQ] = ACTIONS(5769), - [anon_sym_LT_LT_EQ] = ACTIONS(5769), - [anon_sym_GT_GT_EQ] = ACTIONS(5769), - [anon_sym_AMP_EQ] = ACTIONS(5769), - [anon_sym_CARET_EQ] = ACTIONS(5769), - [anon_sym_PIPE_EQ] = ACTIONS(5769), - [anon_sym_and_eq] = ACTIONS(5767), - [anon_sym_or_eq] = ACTIONS(5767), - [anon_sym_xor_eq] = ACTIONS(5767), - [anon_sym_LT_EQ_GT] = ACTIONS(5769), - [anon_sym_or] = ACTIONS(5767), - [anon_sym_and] = ACTIONS(5767), - [anon_sym_bitor] = ACTIONS(5767), - [anon_sym_xor] = ACTIONS(5767), - [anon_sym_bitand] = ACTIONS(5767), - [anon_sym_not_eq] = ACTIONS(5767), - [anon_sym_DASH_DASH] = ACTIONS(5769), - [anon_sym_PLUS_PLUS] = ACTIONS(5769), - [anon_sym_DOT] = ACTIONS(5767), - [anon_sym_DOT_STAR] = ACTIONS(5769), - [anon_sym_DASH_GT] = ACTIONS(5769), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5767), - [anon_sym_decltype] = ACTIONS(5767), + [2292] = { + [sym__declaration_modifiers] = STATE(4077), + [sym_attribute_specifier] = STATE(4077), + [sym_attribute_declaration] = STATE(4077), + [sym_ms_declspec_modifier] = STATE(4077), + [sym_storage_class_specifier] = STATE(4077), + [sym_type_qualifier] = STATE(4077), + [sym__type_specifier] = STATE(3194), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4077), + [sym_alignas_specifier] = STATE(4077), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(4077), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_struct] = ACTIONS(69), + [anon_sym_union] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(127), + [anon_sym_template] = ACTIONS(1428), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [2293] = { + [sym_attribute_specifier] = STATE(2446), + [sym_identifier] = ACTIONS(5835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5837), + [anon_sym_COMMA] = ACTIONS(5837), + [anon_sym_RPAREN] = ACTIONS(5837), + [aux_sym_preproc_if_token2] = ACTIONS(5837), + [aux_sym_preproc_else_token1] = ACTIONS(5837), + [aux_sym_preproc_elif_token1] = ACTIONS(5835), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5837), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5837), + [anon_sym_LPAREN2] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(5835), + [anon_sym_PLUS] = ACTIONS(5835), + [anon_sym_STAR] = ACTIONS(5835), + [anon_sym_SLASH] = ACTIONS(5835), + [anon_sym_PERCENT] = ACTIONS(5835), + [anon_sym_PIPE_PIPE] = ACTIONS(5837), + [anon_sym_AMP_AMP] = ACTIONS(5837), + [anon_sym_PIPE] = ACTIONS(5835), + [anon_sym_CARET] = ACTIONS(5835), + [anon_sym_AMP] = ACTIONS(5835), + [anon_sym_EQ_EQ] = ACTIONS(5837), + [anon_sym_BANG_EQ] = ACTIONS(5837), + [anon_sym_GT] = ACTIONS(5835), + [anon_sym_GT_EQ] = ACTIONS(5837), + [anon_sym_LT_EQ] = ACTIONS(5835), + [anon_sym_LT] = ACTIONS(5835), + [anon_sym_LT_LT] = ACTIONS(5835), + [anon_sym_GT_GT] = ACTIONS(5835), + [anon_sym_SEMI] = ACTIONS(5837), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5837), + [anon_sym_RBRACE] = ACTIONS(5837), + [anon_sym_LBRACK] = ACTIONS(5837), + [anon_sym_RBRACK] = ACTIONS(5837), + [anon_sym_EQ] = ACTIONS(5835), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_QMARK] = ACTIONS(5837), + [anon_sym_STAR_EQ] = ACTIONS(5837), + [anon_sym_SLASH_EQ] = ACTIONS(5837), + [anon_sym_PERCENT_EQ] = ACTIONS(5837), + [anon_sym_PLUS_EQ] = ACTIONS(5837), + [anon_sym_DASH_EQ] = ACTIONS(5837), + [anon_sym_LT_LT_EQ] = ACTIONS(5837), + [anon_sym_GT_GT_EQ] = ACTIONS(5837), + [anon_sym_AMP_EQ] = ACTIONS(5837), + [anon_sym_CARET_EQ] = ACTIONS(5837), + [anon_sym_PIPE_EQ] = ACTIONS(5837), + [anon_sym_and_eq] = ACTIONS(5835), + [anon_sym_or_eq] = ACTIONS(5835), + [anon_sym_xor_eq] = ACTIONS(5835), + [anon_sym_LT_EQ_GT] = ACTIONS(5837), + [anon_sym_or] = ACTIONS(5835), + [anon_sym_and] = ACTIONS(5835), + [anon_sym_bitor] = ACTIONS(5835), + [anon_sym_xor] = ACTIONS(5835), + [anon_sym_bitand] = ACTIONS(5835), + [anon_sym_not_eq] = ACTIONS(5835), + [anon_sym_DASH_DASH] = ACTIONS(5837), + [anon_sym_PLUS_PLUS] = ACTIONS(5837), + [anon_sym_DOT] = ACTIONS(5835), + [anon_sym_DOT_STAR] = ACTIONS(5837), + [anon_sym_DASH_GT] = ACTIONS(5837), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5835), + [anon_sym_decltype] = ACTIONS(5835), + }, + [2294] = { + [sym_identifier] = ACTIONS(2997), + [aux_sym_preproc_def_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token1] = ACTIONS(2997), + [aux_sym_preproc_if_token2] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2997), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2997), + [sym_preproc_directive] = ACTIONS(2997), + [anon_sym_LPAREN2] = ACTIONS(2999), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym___extension__] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym___attribute__] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2999), + [anon_sym___declspec] = ACTIONS(2997), + [anon_sym___based] = ACTIONS(2997), + [anon_sym_signed] = ACTIONS(2997), + [anon_sym_unsigned] = ACTIONS(2997), + [anon_sym_long] = ACTIONS(2997), + [anon_sym_short] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_register] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym___inline] = ACTIONS(2997), + [anon_sym___inline__] = ACTIONS(2997), + [anon_sym___forceinline] = ACTIONS(2997), + [anon_sym_thread_local] = ACTIONS(2997), + [anon_sym___thread] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_constexpr] = ACTIONS(2997), + [anon_sym_volatile] = ACTIONS(2997), + [anon_sym_restrict] = ACTIONS(2997), + [anon_sym___restrict__] = ACTIONS(2997), + [anon_sym__Atomic] = ACTIONS(2997), + [anon_sym__Noreturn] = ACTIONS(2997), + [anon_sym_noreturn] = ACTIONS(2997), + [anon_sym_mutable] = ACTIONS(2997), + [anon_sym_constinit] = ACTIONS(2997), + [anon_sym_consteval] = ACTIONS(2997), + [sym_primitive_type] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2997), + [anon_sym_decltype] = ACTIONS(2997), + [anon_sym_virtual] = ACTIONS(2997), + [anon_sym_alignas] = ACTIONS(2997), + [anon_sym_explicit] = ACTIONS(2997), + [anon_sym_typename] = ACTIONS(2997), + [anon_sym_template] = ACTIONS(2997), + [anon_sym_operator] = ACTIONS(2997), + [anon_sym_friend] = ACTIONS(2997), + [anon_sym_public] = ACTIONS(2997), + [anon_sym_private] = ACTIONS(2997), + [anon_sym_protected] = ACTIONS(2997), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_static_assert] = ACTIONS(2997), + }, + [2295] = { + [sym_attribute_specifier] = STATE(2444), + [sym_identifier] = ACTIONS(5839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(5841), + [anon_sym_RPAREN] = ACTIONS(5841), + [aux_sym_preproc_if_token2] = ACTIONS(5841), + [aux_sym_preproc_else_token1] = ACTIONS(5841), + [aux_sym_preproc_elif_token1] = ACTIONS(5839), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5841), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5841), + [anon_sym_LPAREN2] = ACTIONS(5841), + [anon_sym_DASH] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5839), + [anon_sym_STAR] = ACTIONS(5839), + [anon_sym_SLASH] = ACTIONS(5839), + [anon_sym_PERCENT] = ACTIONS(5839), + [anon_sym_PIPE_PIPE] = ACTIONS(5841), + [anon_sym_AMP_AMP] = ACTIONS(5841), + [anon_sym_PIPE] = ACTIONS(5839), + [anon_sym_CARET] = ACTIONS(5839), + [anon_sym_AMP] = ACTIONS(5839), + [anon_sym_EQ_EQ] = ACTIONS(5841), + [anon_sym_BANG_EQ] = ACTIONS(5841), + [anon_sym_GT] = ACTIONS(5839), + [anon_sym_GT_EQ] = ACTIONS(5841), + [anon_sym_LT_EQ] = ACTIONS(5839), + [anon_sym_LT] = ACTIONS(5839), + [anon_sym_LT_LT] = ACTIONS(5839), + [anon_sym_GT_GT] = ACTIONS(5839), + [anon_sym_SEMI] = ACTIONS(5841), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5841), + [anon_sym_RBRACE] = ACTIONS(5841), + [anon_sym_LBRACK] = ACTIONS(5841), + [anon_sym_RBRACK] = ACTIONS(5841), + [anon_sym_EQ] = ACTIONS(5839), + [anon_sym_COLON] = ACTIONS(5841), + [anon_sym_QMARK] = ACTIONS(5841), + [anon_sym_STAR_EQ] = ACTIONS(5841), + [anon_sym_SLASH_EQ] = ACTIONS(5841), + [anon_sym_PERCENT_EQ] = ACTIONS(5841), + [anon_sym_PLUS_EQ] = ACTIONS(5841), + [anon_sym_DASH_EQ] = ACTIONS(5841), + [anon_sym_LT_LT_EQ] = ACTIONS(5841), + [anon_sym_GT_GT_EQ] = ACTIONS(5841), + [anon_sym_AMP_EQ] = ACTIONS(5841), + [anon_sym_CARET_EQ] = ACTIONS(5841), + [anon_sym_PIPE_EQ] = ACTIONS(5841), + [anon_sym_and_eq] = ACTIONS(5839), + [anon_sym_or_eq] = ACTIONS(5839), + [anon_sym_xor_eq] = ACTIONS(5839), + [anon_sym_LT_EQ_GT] = ACTIONS(5841), + [anon_sym_or] = ACTIONS(5839), + [anon_sym_and] = ACTIONS(5839), + [anon_sym_bitor] = ACTIONS(5839), + [anon_sym_xor] = ACTIONS(5839), + [anon_sym_bitand] = ACTIONS(5839), + [anon_sym_not_eq] = ACTIONS(5839), + [anon_sym_DASH_DASH] = ACTIONS(5841), + [anon_sym_PLUS_PLUS] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5839), + [anon_sym_DOT_STAR] = ACTIONS(5841), + [anon_sym_DASH_GT] = ACTIONS(5841), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5839), + [anon_sym_decltype] = ACTIONS(5839), + }, + [2296] = { + [sym_identifier] = ACTIONS(3187), + [aux_sym_preproc_def_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3187), + [aux_sym_preproc_if_token2] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3187), + [aux_sym_preproc_else_token1] = ACTIONS(3187), + [aux_sym_preproc_elif_token1] = ACTIONS(3187), + [sym_preproc_directive] = ACTIONS(3187), + [anon_sym_LPAREN2] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym___extension__] = ACTIONS(3187), + [anon_sym_typedef] = ACTIONS(3187), + [anon_sym_extern] = ACTIONS(3187), + [anon_sym___attribute__] = ACTIONS(3187), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3189), + [anon_sym___declspec] = ACTIONS(3187), + [anon_sym___based] = ACTIONS(3187), + [anon_sym_signed] = ACTIONS(3187), + [anon_sym_unsigned] = ACTIONS(3187), + [anon_sym_long] = ACTIONS(3187), + [anon_sym_short] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_register] = ACTIONS(3187), + [anon_sym_inline] = ACTIONS(3187), + [anon_sym___inline] = ACTIONS(3187), + [anon_sym___inline__] = ACTIONS(3187), + [anon_sym___forceinline] = ACTIONS(3187), + [anon_sym_thread_local] = ACTIONS(3187), + [anon_sym___thread] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_constexpr] = ACTIONS(3187), + [anon_sym_volatile] = ACTIONS(3187), + [anon_sym_restrict] = ACTIONS(3187), + [anon_sym___restrict__] = ACTIONS(3187), + [anon_sym__Atomic] = ACTIONS(3187), + [anon_sym__Noreturn] = ACTIONS(3187), + [anon_sym_noreturn] = ACTIONS(3187), + [anon_sym_mutable] = ACTIONS(3187), + [anon_sym_constinit] = ACTIONS(3187), + [anon_sym_consteval] = ACTIONS(3187), + [sym_primitive_type] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3187), + [anon_sym_decltype] = ACTIONS(3187), + [anon_sym_virtual] = ACTIONS(3187), + [anon_sym_alignas] = ACTIONS(3187), + [anon_sym_explicit] = ACTIONS(3187), + [anon_sym_typename] = ACTIONS(3187), + [anon_sym_template] = ACTIONS(3187), + [anon_sym_operator] = ACTIONS(3187), + [anon_sym_friend] = ACTIONS(3187), + [anon_sym_public] = ACTIONS(3187), + [anon_sym_private] = ACTIONS(3187), + [anon_sym_protected] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_static_assert] = ACTIONS(3187), + }, + [2297] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + }, + [2298] = { + [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), + [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___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_extern] = 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___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_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_friend] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), + }, + [2299] = { + [sym_identifier] = ACTIONS(5544), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5546), + [anon_sym_COMMA] = ACTIONS(5546), + [anon_sym_RPAREN] = ACTIONS(5546), + [aux_sym_preproc_if_token2] = ACTIONS(5546), + [aux_sym_preproc_else_token1] = ACTIONS(5546), + [aux_sym_preproc_elif_token1] = ACTIONS(5544), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5546), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5546), + [anon_sym_LPAREN2] = ACTIONS(5546), + [anon_sym_DASH] = ACTIONS(5544), + [anon_sym_PLUS] = ACTIONS(5544), + [anon_sym_STAR] = ACTIONS(5544), + [anon_sym_SLASH] = ACTIONS(5544), + [anon_sym_PERCENT] = ACTIONS(5544), + [anon_sym_PIPE_PIPE] = ACTIONS(5546), + [anon_sym_AMP_AMP] = ACTIONS(5546), + [anon_sym_PIPE] = ACTIONS(5544), + [anon_sym_CARET] = ACTIONS(5544), + [anon_sym_AMP] = ACTIONS(5544), + [anon_sym_EQ_EQ] = ACTIONS(5546), + [anon_sym_BANG_EQ] = ACTIONS(5546), + [anon_sym_GT] = ACTIONS(5544), + [anon_sym_GT_EQ] = ACTIONS(5546), + [anon_sym_LT_EQ] = ACTIONS(5544), + [anon_sym_LT] = ACTIONS(5544), + [anon_sym_LT_LT] = ACTIONS(5544), + [anon_sym_GT_GT] = ACTIONS(5544), + [anon_sym_SEMI] = ACTIONS(5546), + [anon_sym___attribute__] = ACTIONS(5544), + [anon_sym_COLON_COLON] = ACTIONS(5546), + [anon_sym_LBRACE] = ACTIONS(5546), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_LBRACK] = ACTIONS(5546), + [anon_sym_RBRACK] = ACTIONS(5546), + [anon_sym_EQ] = ACTIONS(5544), + [anon_sym_COLON] = ACTIONS(5544), + [anon_sym_QMARK] = ACTIONS(5546), + [anon_sym_STAR_EQ] = ACTIONS(5546), + [anon_sym_SLASH_EQ] = ACTIONS(5546), + [anon_sym_PERCENT_EQ] = ACTIONS(5546), + [anon_sym_PLUS_EQ] = ACTIONS(5546), + [anon_sym_DASH_EQ] = ACTIONS(5546), + [anon_sym_LT_LT_EQ] = ACTIONS(5546), + [anon_sym_GT_GT_EQ] = ACTIONS(5546), + [anon_sym_AMP_EQ] = ACTIONS(5546), + [anon_sym_CARET_EQ] = ACTIONS(5546), + [anon_sym_PIPE_EQ] = ACTIONS(5546), + [anon_sym_and_eq] = ACTIONS(5544), + [anon_sym_or_eq] = ACTIONS(5544), + [anon_sym_xor_eq] = ACTIONS(5544), + [anon_sym_LT_EQ_GT] = ACTIONS(5546), + [anon_sym_or] = ACTIONS(5544), + [anon_sym_and] = ACTIONS(5544), + [anon_sym_bitor] = ACTIONS(5544), + [anon_sym_xor] = ACTIONS(5544), + [anon_sym_bitand] = ACTIONS(5544), + [anon_sym_not_eq] = ACTIONS(5544), + [anon_sym_DASH_DASH] = ACTIONS(5546), + [anon_sym_PLUS_PLUS] = ACTIONS(5546), + [anon_sym_DOT] = ACTIONS(5544), + [anon_sym_DOT_STAR] = ACTIONS(5546), + [anon_sym_DASH_GT] = ACTIONS(5546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5544), + [anon_sym_decltype] = ACTIONS(5544), + }, + [2300] = { + [sym__declaration_modifiers] = STATE(4077), + [sym_attribute_specifier] = STATE(4077), + [sym_attribute_declaration] = STATE(4077), + [sym_ms_declspec_modifier] = STATE(4077), + [sym_storage_class_specifier] = STATE(4077), + [sym_type_qualifier] = STATE(4077), + [sym__type_specifier] = STATE(3194), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4077), + [sym_alignas_specifier] = STATE(4077), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7073), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(4077), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5067), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(2042), + [anon_sym_template] = ACTIONS(1428), + }, + [2301] = { + [sym_identifier] = ACTIONS(5418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_RPAREN] = ACTIONS(5420), + [aux_sym_preproc_if_token2] = ACTIONS(5420), + [aux_sym_preproc_else_token1] = ACTIONS(5420), + [aux_sym_preproc_elif_token1] = ACTIONS(5418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5420), + [anon_sym_LPAREN2] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5418), + [anon_sym_STAR] = ACTIONS(5420), + [anon_sym_SLASH] = ACTIONS(5418), + [anon_sym_PERCENT] = ACTIONS(5420), + [anon_sym_PIPE_PIPE] = ACTIONS(5420), + [anon_sym_AMP_AMP] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_EQ] = ACTIONS(5418), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_LT_LT] = ACTIONS(5420), + [anon_sym_GT_GT] = ACTIONS(5420), + [anon_sym_SEMI] = ACTIONS(5420), + [anon_sym___extension__] = ACTIONS(5418), + [anon_sym___attribute__] = ACTIONS(5418), + [anon_sym_LBRACE] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_RBRACK] = ACTIONS(5420), + [anon_sym_const] = ACTIONS(5418), + [anon_sym_constexpr] = ACTIONS(5418), + [anon_sym_volatile] = ACTIONS(5418), + [anon_sym_restrict] = ACTIONS(5418), + [anon_sym___restrict__] = ACTIONS(5418), + [anon_sym__Atomic] = ACTIONS(5418), + [anon_sym__Noreturn] = ACTIONS(5418), + [anon_sym_noreturn] = ACTIONS(5418), + [anon_sym_mutable] = ACTIONS(5418), + [anon_sym_constinit] = ACTIONS(5418), + [anon_sym_consteval] = ACTIONS(5418), + [anon_sym_COLON] = ACTIONS(5420), + [anon_sym_QMARK] = ACTIONS(5420), + [anon_sym_LT_EQ_GT] = ACTIONS(5420), + [anon_sym_or] = ACTIONS(5418), + [anon_sym_and] = ACTIONS(5418), + [anon_sym_bitor] = ACTIONS(5418), + [anon_sym_xor] = ACTIONS(5418), + [anon_sym_bitand] = ACTIONS(5418), + [anon_sym_not_eq] = ACTIONS(5418), + [anon_sym_DASH_DASH] = ACTIONS(5420), + [anon_sym_PLUS_PLUS] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_DOT_STAR] = ACTIONS(5420), + [anon_sym_DASH_GT] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5418), + [anon_sym_decltype] = ACTIONS(5418), + [anon_sym_final] = ACTIONS(5418), + [anon_sym_override] = ACTIONS(5418), + [anon_sym_requires] = ACTIONS(5418), + }, + [2302] = { + [sym_identifier] = ACTIONS(3240), + [aux_sym_preproc_def_token1] = ACTIONS(3240), + [aux_sym_preproc_if_token1] = ACTIONS(3240), + [aux_sym_preproc_if_token2] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3240), + [aux_sym_preproc_else_token1] = ACTIONS(3240), + [aux_sym_preproc_elif_token1] = ACTIONS(3240), + [sym_preproc_directive] = ACTIONS(3240), + [anon_sym_LPAREN2] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3240), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_typedef] = ACTIONS(3240), + [anon_sym_extern] = ACTIONS(3240), + [anon_sym___attribute__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3242), + [anon_sym___declspec] = ACTIONS(3240), + [anon_sym___based] = ACTIONS(3240), + [anon_sym_signed] = ACTIONS(3240), + [anon_sym_unsigned] = ACTIONS(3240), + [anon_sym_long] = ACTIONS(3240), + [anon_sym_short] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_register] = ACTIONS(3240), + [anon_sym_inline] = ACTIONS(3240), + [anon_sym___inline] = ACTIONS(3240), + [anon_sym___inline__] = ACTIONS(3240), + [anon_sym___forceinline] = ACTIONS(3240), + [anon_sym_thread_local] = ACTIONS(3240), + [anon_sym___thread] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_constexpr] = ACTIONS(3240), + [anon_sym_volatile] = ACTIONS(3240), + [anon_sym_restrict] = ACTIONS(3240), + [anon_sym___restrict__] = ACTIONS(3240), + [anon_sym__Atomic] = ACTIONS(3240), + [anon_sym__Noreturn] = ACTIONS(3240), + [anon_sym_noreturn] = ACTIONS(3240), + [anon_sym_mutable] = ACTIONS(3240), + [anon_sym_constinit] = ACTIONS(3240), + [anon_sym_consteval] = ACTIONS(3240), + [sym_primitive_type] = ACTIONS(3240), + [anon_sym_enum] = ACTIONS(3240), + [anon_sym_class] = ACTIONS(3240), + [anon_sym_struct] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3240), + [anon_sym_decltype] = ACTIONS(3240), + [anon_sym_virtual] = ACTIONS(3240), + [anon_sym_alignas] = ACTIONS(3240), + [anon_sym_explicit] = ACTIONS(3240), + [anon_sym_typename] = ACTIONS(3240), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_operator] = ACTIONS(3240), + [anon_sym_friend] = ACTIONS(3240), + [anon_sym_public] = ACTIONS(3240), + [anon_sym_private] = ACTIONS(3240), + [anon_sym_protected] = ACTIONS(3240), + [anon_sym_using] = ACTIONS(3240), + [anon_sym_static_assert] = ACTIONS(3240), + }, + [2303] = { + [sym_identifier] = ACTIONS(3215), + [aux_sym_preproc_def_token1] = ACTIONS(3215), + [aux_sym_preproc_if_token1] = ACTIONS(3215), + [aux_sym_preproc_if_token2] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3215), + [aux_sym_preproc_else_token1] = ACTIONS(3215), + [aux_sym_preproc_elif_token1] = ACTIONS(3215), + [sym_preproc_directive] = ACTIONS(3215), + [anon_sym_LPAREN2] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_AMP_AMP] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym___extension__] = ACTIONS(3215), + [anon_sym_typedef] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym___attribute__] = ACTIONS(3215), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3217), + [anon_sym___declspec] = ACTIONS(3215), + [anon_sym___based] = ACTIONS(3215), + [anon_sym_signed] = ACTIONS(3215), + [anon_sym_unsigned] = ACTIONS(3215), + [anon_sym_long] = ACTIONS(3215), + [anon_sym_short] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_register] = ACTIONS(3215), + [anon_sym_inline] = ACTIONS(3215), + [anon_sym___inline] = ACTIONS(3215), + [anon_sym___inline__] = ACTIONS(3215), + [anon_sym___forceinline] = ACTIONS(3215), + [anon_sym_thread_local] = ACTIONS(3215), + [anon_sym___thread] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_constexpr] = ACTIONS(3215), + [anon_sym_volatile] = ACTIONS(3215), + [anon_sym_restrict] = ACTIONS(3215), + [anon_sym___restrict__] = ACTIONS(3215), + [anon_sym__Atomic] = ACTIONS(3215), + [anon_sym__Noreturn] = ACTIONS(3215), + [anon_sym_noreturn] = ACTIONS(3215), + [anon_sym_mutable] = ACTIONS(3215), + [anon_sym_constinit] = ACTIONS(3215), + [anon_sym_consteval] = ACTIONS(3215), + [sym_primitive_type] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3215), + [anon_sym_union] = ACTIONS(3215), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3215), + [anon_sym_decltype] = ACTIONS(3215), + [anon_sym_virtual] = ACTIONS(3215), + [anon_sym_alignas] = ACTIONS(3215), + [anon_sym_explicit] = ACTIONS(3215), + [anon_sym_typename] = ACTIONS(3215), + [anon_sym_template] = ACTIONS(3215), + [anon_sym_operator] = ACTIONS(3215), + [anon_sym_friend] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_private] = ACTIONS(3215), + [anon_sym_protected] = ACTIONS(3215), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_static_assert] = ACTIONS(3215), + }, + [2304] = { + [sym_string_literal] = STATE(2332), + [sym_raw_string_literal] = STATE(2332), + [aux_sym_concatenated_string_repeat1] = STATE(2332), + [sym_identifier] = ACTIONS(5843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_LPAREN2] = ACTIONS(5234), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5234), + [anon_sym_AMP_AMP] = ACTIONS(5234), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_EQ_EQ] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5234), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(5236), + [anon_sym_QMARK] = ACTIONS(5234), + [anon_sym_STAR_EQ] = ACTIONS(5234), + [anon_sym_SLASH_EQ] = ACTIONS(5234), + [anon_sym_PERCENT_EQ] = ACTIONS(5234), + [anon_sym_PLUS_EQ] = ACTIONS(5234), + [anon_sym_DASH_EQ] = ACTIONS(5234), + [anon_sym_LT_LT_EQ] = ACTIONS(5234), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5234), + [anon_sym_CARET_EQ] = ACTIONS(5234), + [anon_sym_PIPE_EQ] = ACTIONS(5234), + [anon_sym_and_eq] = ACTIONS(5236), + [anon_sym_or_eq] = ACTIONS(5236), + [anon_sym_xor_eq] = ACTIONS(5236), + [anon_sym_LT_EQ_GT] = ACTIONS(5234), + [anon_sym_or] = ACTIONS(5236), + [anon_sym_and] = ACTIONS(5236), + [anon_sym_bitor] = ACTIONS(5236), + [anon_sym_xor] = ACTIONS(5236), + [anon_sym_bitand] = ACTIONS(5236), + [anon_sym_not_eq] = ACTIONS(5236), + [anon_sym_DASH_DASH] = ACTIONS(5234), + [anon_sym_PLUS_PLUS] = ACTIONS(5234), + [anon_sym_DOT] = ACTIONS(5236), + [anon_sym_DOT_STAR] = ACTIONS(5234), + [anon_sym_DASH_GT] = ACTIONS(5234), + [anon_sym_L_DQUOTE] = ACTIONS(5845), + [anon_sym_u_DQUOTE] = ACTIONS(5845), + [anon_sym_U_DQUOTE] = ACTIONS(5845), + [anon_sym_u8_DQUOTE] = ACTIONS(5845), + [anon_sym_DQUOTE] = ACTIONS(5845), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5234), + [anon_sym_R_DQUOTE] = ACTIONS(5847), + [anon_sym_LR_DQUOTE] = ACTIONS(5847), + [anon_sym_uR_DQUOTE] = ACTIONS(5847), + [anon_sym_UR_DQUOTE] = ACTIONS(5847), + [anon_sym_u8R_DQUOTE] = ACTIONS(5847), + [sym_literal_suffix] = ACTIONS(5236), + }, + [2305] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2036), + [sym_identifier] = ACTIONS(5278), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5766), + [anon_sym_RPAREN] = ACTIONS(5766), + [anon_sym_LPAREN2] = ACTIONS(5766), + [anon_sym_DASH] = ACTIONS(5769), + [anon_sym_PLUS] = ACTIONS(5769), + [anon_sym_STAR] = ACTIONS(5769), + [anon_sym_SLASH] = ACTIONS(5769), + [anon_sym_PERCENT] = ACTIONS(5769), + [anon_sym_PIPE_PIPE] = ACTIONS(5766), + [anon_sym_AMP_AMP] = ACTIONS(5766), + [anon_sym_PIPE] = ACTIONS(5769), + [anon_sym_CARET] = ACTIONS(5769), + [anon_sym_AMP] = ACTIONS(5769), + [anon_sym_EQ_EQ] = ACTIONS(5766), + [anon_sym_BANG_EQ] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5769), + [anon_sym_GT_EQ] = ACTIONS(5766), + [anon_sym_LT_EQ] = ACTIONS(5769), + [anon_sym_LT] = ACTIONS(5769), + [anon_sym_LT_LT] = ACTIONS(5769), + [anon_sym_GT_GT] = ACTIONS(5769), + [anon_sym_SEMI] = ACTIONS(5766), + [anon_sym___attribute__] = ACTIONS(5769), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(5766), + [anon_sym_signed] = ACTIONS(5327), + [anon_sym_unsigned] = ACTIONS(5327), + [anon_sym_long] = ACTIONS(5327), + [anon_sym_short] = ACTIONS(5327), + [anon_sym_LBRACK] = ACTIONS(5766), + [anon_sym_RBRACK] = ACTIONS(5766), + [anon_sym_EQ] = ACTIONS(5769), + [sym_primitive_type] = ACTIONS(5278), + [anon_sym_COLON] = ACTIONS(5766), + [anon_sym_QMARK] = ACTIONS(5766), + [anon_sym_STAR_EQ] = ACTIONS(5766), + [anon_sym_SLASH_EQ] = ACTIONS(5766), + [anon_sym_PERCENT_EQ] = ACTIONS(5766), + [anon_sym_PLUS_EQ] = ACTIONS(5766), + [anon_sym_DASH_EQ] = ACTIONS(5766), + [anon_sym_LT_LT_EQ] = ACTIONS(5766), + [anon_sym_GT_GT_EQ] = ACTIONS(5766), + [anon_sym_AMP_EQ] = ACTIONS(5766), + [anon_sym_CARET_EQ] = ACTIONS(5766), + [anon_sym_PIPE_EQ] = ACTIONS(5766), + [anon_sym_and_eq] = ACTIONS(5769), + [anon_sym_or_eq] = ACTIONS(5769), + [anon_sym_xor_eq] = ACTIONS(5769), + [anon_sym_LT_EQ_GT] = ACTIONS(5766), + [anon_sym_or] = ACTIONS(5769), + [anon_sym_and] = ACTIONS(5769), + [anon_sym_bitor] = ACTIONS(5769), + [anon_sym_xor] = ACTIONS(5769), + [anon_sym_bitand] = ACTIONS(5769), + [anon_sym_not_eq] = ACTIONS(5769), + [anon_sym_DASH_DASH] = ACTIONS(5766), + [anon_sym_PLUS_PLUS] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5769), + [anon_sym_DOT_STAR] = ACTIONS(5766), + [anon_sym_DASH_GT] = ACTIONS(5766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5769), + [anon_sym_decltype] = ACTIONS(5769), + }, + [2306] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_RBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5610), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(5612), + [anon_sym_SLASH_EQ] = ACTIONS(5612), + [anon_sym_PERCENT_EQ] = ACTIONS(5612), + [anon_sym_PLUS_EQ] = ACTIONS(5612), + [anon_sym_DASH_EQ] = ACTIONS(5612), + [anon_sym_LT_LT_EQ] = ACTIONS(5612), + [anon_sym_GT_GT_EQ] = ACTIONS(5612), + [anon_sym_AMP_EQ] = ACTIONS(5612), + [anon_sym_CARET_EQ] = ACTIONS(5612), + [anon_sym_PIPE_EQ] = ACTIONS(5612), + [anon_sym_and_eq] = ACTIONS(5612), + [anon_sym_or_eq] = ACTIONS(5612), + [anon_sym_xor_eq] = ACTIONS(5612), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [2307] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [aux_sym_preproc_else_token1] = ACTIONS(3004), + [aux_sym_preproc_elif_token1] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_friend] = ACTIONS(3004), + [anon_sym_public] = ACTIONS(3004), + [anon_sym_private] = ACTIONS(3004), + [anon_sym_protected] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + }, + [2308] = { + [sym_template_argument_list] = STATE(2172), + [aux_sym_sized_type_specifier_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(4135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4143), + [anon_sym_COMMA] = ACTIONS(4143), + [aux_sym_preproc_if_token2] = ACTIONS(4143), + [aux_sym_preproc_else_token1] = ACTIONS(4143), + [aux_sym_preproc_elif_token1] = ACTIONS(4135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4143), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4143), + [anon_sym_LPAREN2] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4135), + [anon_sym_PLUS] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(4135), + [anon_sym_SLASH] = ACTIONS(4135), + [anon_sym_PERCENT] = ACTIONS(4135), + [anon_sym_PIPE_PIPE] = ACTIONS(4143), + [anon_sym_AMP_AMP] = ACTIONS(4143), + [anon_sym_PIPE] = ACTIONS(4135), + [anon_sym_CARET] = ACTIONS(4135), + [anon_sym_AMP] = ACTIONS(4135), + [anon_sym_EQ_EQ] = ACTIONS(4143), + [anon_sym_BANG_EQ] = ACTIONS(4143), + [anon_sym_GT] = ACTIONS(4135), + [anon_sym_GT_EQ] = ACTIONS(4143), + [anon_sym_LT_EQ] = ACTIONS(4135), + [anon_sym_LT] = ACTIONS(5399), + [anon_sym_LT_LT] = ACTIONS(4135), + [anon_sym_GT_GT] = ACTIONS(4135), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4143), + [anon_sym_signed] = ACTIONS(5597), + [anon_sym_unsigned] = ACTIONS(5597), + [anon_sym_long] = ACTIONS(5597), + [anon_sym_short] = ACTIONS(5597), + [anon_sym_LBRACK] = ACTIONS(4143), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_QMARK] = ACTIONS(4143), + [anon_sym_STAR_EQ] = ACTIONS(4143), + [anon_sym_SLASH_EQ] = ACTIONS(4143), + [anon_sym_PERCENT_EQ] = ACTIONS(4143), + [anon_sym_PLUS_EQ] = ACTIONS(4143), + [anon_sym_DASH_EQ] = ACTIONS(4143), + [anon_sym_LT_LT_EQ] = ACTIONS(4143), + [anon_sym_GT_GT_EQ] = ACTIONS(4143), + [anon_sym_AMP_EQ] = ACTIONS(4143), + [anon_sym_CARET_EQ] = ACTIONS(4143), + [anon_sym_PIPE_EQ] = ACTIONS(4143), + [anon_sym_and_eq] = ACTIONS(4135), + [anon_sym_or_eq] = ACTIONS(4135), + [anon_sym_xor_eq] = ACTIONS(4135), + [anon_sym_LT_EQ_GT] = ACTIONS(4143), + [anon_sym_or] = ACTIONS(4135), + [anon_sym_and] = ACTIONS(4135), + [anon_sym_bitor] = ACTIONS(4135), + [anon_sym_xor] = ACTIONS(4135), + [anon_sym_bitand] = ACTIONS(4135), + [anon_sym_not_eq] = ACTIONS(4135), + [anon_sym_DASH_DASH] = ACTIONS(4143), + [anon_sym_PLUS_PLUS] = ACTIONS(4143), + [anon_sym_DOT] = ACTIONS(4135), + [anon_sym_DOT_STAR] = ACTIONS(4143), + [anon_sym_DASH_GT] = ACTIONS(4143), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4135), + [anon_sym_decltype] = ACTIONS(4135), + }, + [2309] = { + [sym_attribute_specifier] = STATE(2490), + [sym_identifier] = ACTIONS(5849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5851), + [anon_sym_RPAREN] = ACTIONS(5851), + [aux_sym_preproc_if_token2] = ACTIONS(5851), + [aux_sym_preproc_else_token1] = ACTIONS(5851), + [aux_sym_preproc_elif_token1] = ACTIONS(5849), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5851), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5851), + [anon_sym_LPAREN2] = ACTIONS(5851), + [anon_sym_DASH] = ACTIONS(5849), + [anon_sym_PLUS] = ACTIONS(5849), + [anon_sym_STAR] = ACTIONS(5849), + [anon_sym_SLASH] = ACTIONS(5849), + [anon_sym_PERCENT] = ACTIONS(5849), + [anon_sym_PIPE_PIPE] = ACTIONS(5851), + [anon_sym_AMP_AMP] = ACTIONS(5851), + [anon_sym_PIPE] = ACTIONS(5849), + [anon_sym_CARET] = ACTIONS(5849), + [anon_sym_AMP] = ACTIONS(5849), + [anon_sym_EQ_EQ] = ACTIONS(5851), + [anon_sym_BANG_EQ] = ACTIONS(5851), + [anon_sym_GT] = ACTIONS(5849), + [anon_sym_GT_EQ] = ACTIONS(5851), + [anon_sym_LT_EQ] = ACTIONS(5849), + [anon_sym_LT] = ACTIONS(5849), + [anon_sym_LT_LT] = ACTIONS(5849), + [anon_sym_GT_GT] = ACTIONS(5849), + [anon_sym_SEMI] = ACTIONS(5851), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5851), + [anon_sym_RBRACE] = ACTIONS(5851), + [anon_sym_LBRACK] = ACTIONS(5851), + [anon_sym_RBRACK] = ACTIONS(5851), + [anon_sym_EQ] = ACTIONS(5849), + [anon_sym_COLON] = ACTIONS(5851), + [anon_sym_QMARK] = ACTIONS(5851), + [anon_sym_STAR_EQ] = ACTIONS(5851), + [anon_sym_SLASH_EQ] = ACTIONS(5851), + [anon_sym_PERCENT_EQ] = ACTIONS(5851), + [anon_sym_PLUS_EQ] = ACTIONS(5851), + [anon_sym_DASH_EQ] = ACTIONS(5851), + [anon_sym_LT_LT_EQ] = ACTIONS(5851), + [anon_sym_GT_GT_EQ] = ACTIONS(5851), + [anon_sym_AMP_EQ] = ACTIONS(5851), + [anon_sym_CARET_EQ] = ACTIONS(5851), + [anon_sym_PIPE_EQ] = ACTIONS(5851), + [anon_sym_and_eq] = ACTIONS(5849), + [anon_sym_or_eq] = ACTIONS(5849), + [anon_sym_xor_eq] = ACTIONS(5849), + [anon_sym_LT_EQ_GT] = ACTIONS(5851), + [anon_sym_or] = ACTIONS(5849), + [anon_sym_and] = ACTIONS(5849), + [anon_sym_bitor] = ACTIONS(5849), + [anon_sym_xor] = ACTIONS(5849), + [anon_sym_bitand] = ACTIONS(5849), + [anon_sym_not_eq] = ACTIONS(5849), + [anon_sym_DASH_DASH] = ACTIONS(5851), + [anon_sym_PLUS_PLUS] = ACTIONS(5851), + [anon_sym_DOT] = ACTIONS(5849), + [anon_sym_DOT_STAR] = ACTIONS(5851), + [anon_sym_DASH_GT] = ACTIONS(5851), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5849), + [anon_sym_decltype] = ACTIONS(5849), + }, + [2310] = { + [sym_attribute_specifier] = STATE(2414), + [sym_identifier] = ACTIONS(5853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5855), + [anon_sym_COMMA] = ACTIONS(5855), + [anon_sym_RPAREN] = ACTIONS(5855), + [aux_sym_preproc_if_token2] = ACTIONS(5855), + [aux_sym_preproc_else_token1] = ACTIONS(5855), + [aux_sym_preproc_elif_token1] = ACTIONS(5853), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5855), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5855), + [anon_sym_LPAREN2] = ACTIONS(5855), + [anon_sym_DASH] = ACTIONS(5853), + [anon_sym_PLUS] = ACTIONS(5853), + [anon_sym_STAR] = ACTIONS(5853), + [anon_sym_SLASH] = ACTIONS(5853), + [anon_sym_PERCENT] = ACTIONS(5853), + [anon_sym_PIPE_PIPE] = ACTIONS(5855), + [anon_sym_AMP_AMP] = ACTIONS(5855), + [anon_sym_PIPE] = ACTIONS(5853), + [anon_sym_CARET] = ACTIONS(5853), + [anon_sym_AMP] = ACTIONS(5853), + [anon_sym_EQ_EQ] = ACTIONS(5855), + [anon_sym_BANG_EQ] = ACTIONS(5855), + [anon_sym_GT] = ACTIONS(5853), + [anon_sym_GT_EQ] = ACTIONS(5855), + [anon_sym_LT_EQ] = ACTIONS(5853), + [anon_sym_LT] = ACTIONS(5853), + [anon_sym_LT_LT] = ACTIONS(5853), + [anon_sym_GT_GT] = ACTIONS(5853), + [anon_sym_SEMI] = ACTIONS(5855), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5855), + [anon_sym_RBRACE] = ACTIONS(5855), + [anon_sym_LBRACK] = ACTIONS(5855), + [anon_sym_RBRACK] = ACTIONS(5855), + [anon_sym_EQ] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5855), + [anon_sym_QMARK] = ACTIONS(5855), + [anon_sym_STAR_EQ] = ACTIONS(5855), + [anon_sym_SLASH_EQ] = ACTIONS(5855), + [anon_sym_PERCENT_EQ] = ACTIONS(5855), + [anon_sym_PLUS_EQ] = ACTIONS(5855), + [anon_sym_DASH_EQ] = ACTIONS(5855), + [anon_sym_LT_LT_EQ] = ACTIONS(5855), + [anon_sym_GT_GT_EQ] = ACTIONS(5855), + [anon_sym_AMP_EQ] = ACTIONS(5855), + [anon_sym_CARET_EQ] = ACTIONS(5855), + [anon_sym_PIPE_EQ] = ACTIONS(5855), + [anon_sym_and_eq] = ACTIONS(5853), + [anon_sym_or_eq] = ACTIONS(5853), + [anon_sym_xor_eq] = ACTIONS(5853), + [anon_sym_LT_EQ_GT] = ACTIONS(5855), + [anon_sym_or] = ACTIONS(5853), + [anon_sym_and] = ACTIONS(5853), + [anon_sym_bitor] = ACTIONS(5853), + [anon_sym_xor] = ACTIONS(5853), + [anon_sym_bitand] = ACTIONS(5853), + [anon_sym_not_eq] = ACTIONS(5853), + [anon_sym_DASH_DASH] = ACTIONS(5855), + [anon_sym_PLUS_PLUS] = ACTIONS(5855), + [anon_sym_DOT] = ACTIONS(5853), + [anon_sym_DOT_STAR] = ACTIONS(5855), + [anon_sym_DASH_GT] = ACTIONS(5855), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5853), + [anon_sym_decltype] = ACTIONS(5853), + }, + [2311] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2384), + [sym_identifier] = ACTIONS(5857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [aux_sym_preproc_if_token2] = ACTIONS(5813), + [aux_sym_preproc_else_token1] = ACTIONS(5813), + [aux_sym_preproc_elif_token1] = ACTIONS(5815), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5813), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5813), + [anon_sym_LPAREN2] = ACTIONS(5813), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5815), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_PERCENT] = ACTIONS(5815), + [anon_sym_PIPE_PIPE] = ACTIONS(5813), + [anon_sym_AMP_AMP] = ACTIONS(5813), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5815), + [anon_sym_AMP] = ACTIONS(5815), + [anon_sym_EQ_EQ] = ACTIONS(5813), + [anon_sym_BANG_EQ] = ACTIONS(5813), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_GT_EQ] = ACTIONS(5813), + [anon_sym_LT_EQ] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_LT_LT] = ACTIONS(5815), + [anon_sym_GT_GT] = ACTIONS(5815), + [anon_sym___attribute__] = ACTIONS(5815), + [anon_sym_LBRACE] = ACTIONS(5813), + [anon_sym_signed] = ACTIONS(5860), + [anon_sym_unsigned] = ACTIONS(5860), + [anon_sym_long] = ACTIONS(5860), + [anon_sym_short] = ACTIONS(5860), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_EQ] = ACTIONS(5815), + [sym_primitive_type] = ACTIONS(5862), + [anon_sym_QMARK] = ACTIONS(5813), + [anon_sym_STAR_EQ] = ACTIONS(5813), + [anon_sym_SLASH_EQ] = ACTIONS(5813), + [anon_sym_PERCENT_EQ] = ACTIONS(5813), + [anon_sym_PLUS_EQ] = ACTIONS(5813), + [anon_sym_DASH_EQ] = ACTIONS(5813), + [anon_sym_LT_LT_EQ] = ACTIONS(5813), + [anon_sym_GT_GT_EQ] = ACTIONS(5813), + [anon_sym_AMP_EQ] = ACTIONS(5813), + [anon_sym_CARET_EQ] = ACTIONS(5813), + [anon_sym_PIPE_EQ] = ACTIONS(5813), + [anon_sym_and_eq] = ACTIONS(5815), + [anon_sym_or_eq] = ACTIONS(5815), + [anon_sym_xor_eq] = ACTIONS(5815), + [anon_sym_LT_EQ_GT] = ACTIONS(5813), + [anon_sym_or] = ACTIONS(5815), + [anon_sym_and] = ACTIONS(5815), + [anon_sym_bitor] = ACTIONS(5815), + [anon_sym_xor] = ACTIONS(5815), + [anon_sym_bitand] = ACTIONS(5815), + [anon_sym_not_eq] = ACTIONS(5815), + [anon_sym_DASH_DASH] = ACTIONS(5813), + [anon_sym_PLUS_PLUS] = ACTIONS(5813), + [anon_sym_DOT] = ACTIONS(5815), + [anon_sym_DOT_STAR] = ACTIONS(5813), + [anon_sym_DASH_GT] = ACTIONS(5813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5815), + [anon_sym_decltype] = ACTIONS(5815), + }, + [2312] = { + [sym_identifier] = ACTIONS(3199), + [aux_sym_preproc_def_token1] = ACTIONS(3199), + [aux_sym_preproc_if_token1] = ACTIONS(3199), + [aux_sym_preproc_if_token2] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3199), + [aux_sym_preproc_else_token1] = ACTIONS(3199), + [aux_sym_preproc_elif_token1] = ACTIONS(3199), + [sym_preproc_directive] = ACTIONS(3199), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym___extension__] = ACTIONS(3199), + [anon_sym_typedef] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym___attribute__] = ACTIONS(3199), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3199), + [anon_sym___based] = ACTIONS(3199), + [anon_sym_signed] = ACTIONS(3199), + [anon_sym_unsigned] = ACTIONS(3199), + [anon_sym_long] = ACTIONS(3199), + [anon_sym_short] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_register] = ACTIONS(3199), + [anon_sym_inline] = ACTIONS(3199), + [anon_sym___inline] = ACTIONS(3199), + [anon_sym___inline__] = ACTIONS(3199), + [anon_sym___forceinline] = ACTIONS(3199), + [anon_sym_thread_local] = ACTIONS(3199), + [anon_sym___thread] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_constexpr] = ACTIONS(3199), + [anon_sym_volatile] = ACTIONS(3199), + [anon_sym_restrict] = ACTIONS(3199), + [anon_sym___restrict__] = ACTIONS(3199), + [anon_sym__Atomic] = ACTIONS(3199), + [anon_sym__Noreturn] = ACTIONS(3199), + [anon_sym_noreturn] = ACTIONS(3199), + [anon_sym_mutable] = ACTIONS(3199), + [anon_sym_constinit] = ACTIONS(3199), + [anon_sym_consteval] = ACTIONS(3199), + [sym_primitive_type] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3199), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3199), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3199), + [anon_sym_alignas] = ACTIONS(3199), + [anon_sym_explicit] = ACTIONS(3199), + [anon_sym_typename] = ACTIONS(3199), + [anon_sym_template] = ACTIONS(3199), + [anon_sym_operator] = ACTIONS(3199), + [anon_sym_friend] = ACTIONS(3199), + [anon_sym_public] = ACTIONS(3199), + [anon_sym_private] = ACTIONS(3199), + [anon_sym_protected] = ACTIONS(3199), + [anon_sym_using] = ACTIONS(3199), + [anon_sym_static_assert] = ACTIONS(3199), + }, + [2313] = { + [sym_decltype_auto] = STATE(2454), + [sym_identifier] = ACTIONS(5548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5550), + [anon_sym_COMMA] = ACTIONS(5550), + [anon_sym_RPAREN] = ACTIONS(5550), + [aux_sym_preproc_if_token2] = ACTIONS(5550), + [aux_sym_preproc_else_token1] = ACTIONS(5550), + [aux_sym_preproc_elif_token1] = ACTIONS(5548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5550), + [anon_sym_LPAREN2] = ACTIONS(5550), + [anon_sym_DASH] = ACTIONS(5548), + [anon_sym_PLUS] = ACTIONS(5548), + [anon_sym_STAR] = ACTIONS(5548), + [anon_sym_SLASH] = ACTIONS(5548), + [anon_sym_PERCENT] = ACTIONS(5548), + [anon_sym_PIPE_PIPE] = ACTIONS(5550), + [anon_sym_AMP_AMP] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5548), + [anon_sym_CARET] = ACTIONS(5548), + [anon_sym_AMP] = ACTIONS(5548), + [anon_sym_EQ_EQ] = ACTIONS(5550), + [anon_sym_BANG_EQ] = ACTIONS(5550), + [anon_sym_GT] = ACTIONS(5548), + [anon_sym_GT_EQ] = ACTIONS(5550), + [anon_sym_LT_EQ] = ACTIONS(5548), + [anon_sym_LT] = ACTIONS(5548), + [anon_sym_LT_LT] = ACTIONS(5548), + [anon_sym_GT_GT] = ACTIONS(5548), + [anon_sym_SEMI] = ACTIONS(5550), + [anon_sym___attribute__] = ACTIONS(5548), + [anon_sym_LBRACE] = ACTIONS(5550), + [anon_sym_RBRACE] = ACTIONS(5550), + [anon_sym_LBRACK] = ACTIONS(5550), + [anon_sym_RBRACK] = ACTIONS(5550), + [anon_sym_EQ] = ACTIONS(5548), + [anon_sym_COLON] = ACTIONS(5550), + [anon_sym_QMARK] = ACTIONS(5550), + [anon_sym_STAR_EQ] = ACTIONS(5550), + [anon_sym_SLASH_EQ] = ACTIONS(5550), + [anon_sym_PERCENT_EQ] = ACTIONS(5550), + [anon_sym_PLUS_EQ] = ACTIONS(5550), + [anon_sym_DASH_EQ] = ACTIONS(5550), + [anon_sym_LT_LT_EQ] = ACTIONS(5550), + [anon_sym_GT_GT_EQ] = ACTIONS(5550), + [anon_sym_AMP_EQ] = ACTIONS(5550), + [anon_sym_CARET_EQ] = ACTIONS(5550), + [anon_sym_PIPE_EQ] = ACTIONS(5550), + [anon_sym_and_eq] = ACTIONS(5548), + [anon_sym_or_eq] = ACTIONS(5548), + [anon_sym_xor_eq] = ACTIONS(5548), + [anon_sym_LT_EQ_GT] = ACTIONS(5550), + [anon_sym_or] = ACTIONS(5548), + [anon_sym_and] = ACTIONS(5548), + [anon_sym_bitor] = ACTIONS(5548), + [anon_sym_xor] = ACTIONS(5548), + [anon_sym_bitand] = ACTIONS(5548), + [anon_sym_not_eq] = ACTIONS(5548), + [anon_sym_DASH_DASH] = ACTIONS(5550), + [anon_sym_PLUS_PLUS] = ACTIONS(5550), + [anon_sym_DOT] = ACTIONS(5548), + [anon_sym_DOT_STAR] = ACTIONS(5550), + [anon_sym_DASH_GT] = ACTIONS(5550), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5358), + [anon_sym_decltype] = ACTIONS(5360), + }, + [2314] = { + [sym_identifier] = ACTIONS(3183), + [aux_sym_preproc_def_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3183), + [aux_sym_preproc_if_token2] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3183), + [aux_sym_preproc_else_token1] = ACTIONS(3183), + [aux_sym_preproc_elif_token1] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3183), + [anon_sym_LPAREN2] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_AMP_AMP] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym___extension__] = ACTIONS(3183), + [anon_sym_typedef] = ACTIONS(3183), + [anon_sym_extern] = ACTIONS(3183), + [anon_sym___attribute__] = ACTIONS(3183), + [anon_sym_COLON_COLON] = ACTIONS(3185), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3185), + [anon_sym___declspec] = ACTIONS(3183), + [anon_sym___based] = ACTIONS(3183), + [anon_sym_signed] = ACTIONS(3183), + [anon_sym_unsigned] = ACTIONS(3183), + [anon_sym_long] = ACTIONS(3183), + [anon_sym_short] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_register] = ACTIONS(3183), + [anon_sym_inline] = ACTIONS(3183), + [anon_sym___inline] = ACTIONS(3183), + [anon_sym___inline__] = ACTIONS(3183), + [anon_sym___forceinline] = ACTIONS(3183), + [anon_sym_thread_local] = ACTIONS(3183), + [anon_sym___thread] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_constexpr] = ACTIONS(3183), + [anon_sym_volatile] = ACTIONS(3183), + [anon_sym_restrict] = ACTIONS(3183), + [anon_sym___restrict__] = ACTIONS(3183), + [anon_sym__Atomic] = ACTIONS(3183), + [anon_sym__Noreturn] = ACTIONS(3183), + [anon_sym_noreturn] = ACTIONS(3183), + [anon_sym_mutable] = ACTIONS(3183), + [anon_sym_constinit] = ACTIONS(3183), + [anon_sym_consteval] = ACTIONS(3183), + [sym_primitive_type] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3183), + [anon_sym_decltype] = ACTIONS(3183), + [anon_sym_virtual] = ACTIONS(3183), + [anon_sym_alignas] = ACTIONS(3183), + [anon_sym_explicit] = ACTIONS(3183), + [anon_sym_typename] = ACTIONS(3183), + [anon_sym_template] = ACTIONS(3183), + [anon_sym_operator] = ACTIONS(3183), + [anon_sym_friend] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_protected] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_static_assert] = ACTIONS(3183), + }, + [2315] = { + [sym_identifier] = ACTIONS(3211), + [aux_sym_preproc_def_token1] = ACTIONS(3211), + [aux_sym_preproc_if_token1] = ACTIONS(3211), + [aux_sym_preproc_if_token2] = ACTIONS(3211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3211), + [aux_sym_preproc_else_token1] = ACTIONS(3211), + [aux_sym_preproc_elif_token1] = ACTIONS(3211), + [sym_preproc_directive] = ACTIONS(3211), + [anon_sym_LPAREN2] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_AMP_AMP] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3211), + [anon_sym___extension__] = ACTIONS(3211), + [anon_sym_typedef] = ACTIONS(3211), + [anon_sym_extern] = ACTIONS(3211), + [anon_sym___attribute__] = ACTIONS(3211), + [anon_sym_COLON_COLON] = ACTIONS(3213), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3213), + [anon_sym___declspec] = ACTIONS(3211), + [anon_sym___based] = ACTIONS(3211), + [anon_sym_signed] = ACTIONS(3211), + [anon_sym_unsigned] = ACTIONS(3211), + [anon_sym_long] = ACTIONS(3211), + [anon_sym_short] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_register] = ACTIONS(3211), + [anon_sym_inline] = ACTIONS(3211), + [anon_sym___inline] = ACTIONS(3211), + [anon_sym___inline__] = ACTIONS(3211), + [anon_sym___forceinline] = ACTIONS(3211), + [anon_sym_thread_local] = ACTIONS(3211), + [anon_sym___thread] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_constexpr] = ACTIONS(3211), + [anon_sym_volatile] = ACTIONS(3211), + [anon_sym_restrict] = ACTIONS(3211), + [anon_sym___restrict__] = ACTIONS(3211), + [anon_sym__Atomic] = ACTIONS(3211), + [anon_sym__Noreturn] = ACTIONS(3211), + [anon_sym_noreturn] = ACTIONS(3211), + [anon_sym_mutable] = ACTIONS(3211), + [anon_sym_constinit] = ACTIONS(3211), + [anon_sym_consteval] = ACTIONS(3211), + [sym_primitive_type] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3211), + [anon_sym_union] = ACTIONS(3211), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3211), + [anon_sym_decltype] = ACTIONS(3211), + [anon_sym_virtual] = ACTIONS(3211), + [anon_sym_alignas] = ACTIONS(3211), + [anon_sym_explicit] = ACTIONS(3211), + [anon_sym_typename] = ACTIONS(3211), + [anon_sym_template] = ACTIONS(3211), + [anon_sym_operator] = ACTIONS(3211), + [anon_sym_friend] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_protected] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_static_assert] = ACTIONS(3211), + }, + [2316] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5268), + [anon_sym_COMMA] = ACTIONS(5268), + [anon_sym_RPAREN] = ACTIONS(5268), + [anon_sym_LPAREN2] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(5266), + [anon_sym_SLASH] = ACTIONS(5266), + [anon_sym_PERCENT] = ACTIONS(5266), + [anon_sym_PIPE_PIPE] = ACTIONS(5268), + [anon_sym_AMP_AMP] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(5266), + [anon_sym_EQ_EQ] = ACTIONS(5268), + [anon_sym_BANG_EQ] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5266), + [anon_sym_GT_EQ] = ACTIONS(5268), + [anon_sym_LT_EQ] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5266), + [anon_sym_LT_LT] = ACTIONS(5266), + [anon_sym_GT_GT] = ACTIONS(5266), + [anon_sym_SEMI] = ACTIONS(5268), + [anon_sym_RBRACE] = ACTIONS(5268), + [anon_sym_LBRACK] = ACTIONS(5268), + [anon_sym_RBRACK] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(5266), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(5268), + [anon_sym_STAR_EQ] = ACTIONS(5268), + [anon_sym_SLASH_EQ] = ACTIONS(5268), + [anon_sym_PERCENT_EQ] = ACTIONS(5268), + [anon_sym_PLUS_EQ] = ACTIONS(5268), + [anon_sym_DASH_EQ] = ACTIONS(5268), + [anon_sym_LT_LT_EQ] = ACTIONS(5268), + [anon_sym_GT_GT_EQ] = ACTIONS(5268), + [anon_sym_AMP_EQ] = ACTIONS(5268), + [anon_sym_CARET_EQ] = ACTIONS(5268), + [anon_sym_PIPE_EQ] = ACTIONS(5268), + [anon_sym_and_eq] = ACTIONS(5266), + [anon_sym_or_eq] = ACTIONS(5266), + [anon_sym_xor_eq] = ACTIONS(5266), + [anon_sym_LT_EQ_GT] = ACTIONS(5268), + [anon_sym_or] = ACTIONS(5266), + [anon_sym_and] = ACTIONS(5266), + [anon_sym_bitor] = ACTIONS(5266), + [anon_sym_xor] = ACTIONS(5266), + [anon_sym_bitand] = ACTIONS(5266), + [anon_sym_not_eq] = ACTIONS(5266), + [anon_sym_DASH_DASH] = ACTIONS(5268), + [anon_sym_PLUS_PLUS] = ACTIONS(5268), + [anon_sym_DOT] = ACTIONS(5266), + [anon_sym_DOT_STAR] = ACTIONS(5268), + [anon_sym_DASH_GT] = ACTIONS(5268), + [anon_sym_L_DQUOTE] = ACTIONS(5268), + [anon_sym_u_DQUOTE] = ACTIONS(5268), + [anon_sym_U_DQUOTE] = ACTIONS(5268), + [anon_sym_u8_DQUOTE] = ACTIONS(5268), + [anon_sym_DQUOTE] = ACTIONS(5268), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5268), + [anon_sym_LR_DQUOTE] = ACTIONS(5268), + [anon_sym_uR_DQUOTE] = ACTIONS(5268), + [anon_sym_UR_DQUOTE] = ACTIONS(5268), + [anon_sym_u8R_DQUOTE] = ACTIONS(5268), + [sym_literal_suffix] = ACTIONS(5266), + }, + [2317] = { + [sym_attribute_specifier] = STATE(2415), + [sym_identifier] = ACTIONS(5864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5866), + [anon_sym_COMMA] = ACTIONS(5866), + [anon_sym_RPAREN] = ACTIONS(5866), + [aux_sym_preproc_if_token2] = ACTIONS(5866), + [aux_sym_preproc_else_token1] = ACTIONS(5866), + [aux_sym_preproc_elif_token1] = ACTIONS(5864), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5866), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5866), + [anon_sym_LPAREN2] = ACTIONS(5866), + [anon_sym_DASH] = ACTIONS(5864), + [anon_sym_PLUS] = ACTIONS(5864), + [anon_sym_STAR] = ACTIONS(5864), + [anon_sym_SLASH] = ACTIONS(5864), + [anon_sym_PERCENT] = ACTIONS(5864), + [anon_sym_PIPE_PIPE] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5864), + [anon_sym_CARET] = ACTIONS(5864), + [anon_sym_AMP] = ACTIONS(5864), + [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_BANG_EQ] = ACTIONS(5866), + [anon_sym_GT] = ACTIONS(5864), + [anon_sym_GT_EQ] = ACTIONS(5866), + [anon_sym_LT_EQ] = ACTIONS(5864), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_LT_LT] = ACTIONS(5864), + [anon_sym_GT_GT] = ACTIONS(5864), + [anon_sym_SEMI] = ACTIONS(5866), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5866), + [anon_sym_RBRACE] = ACTIONS(5866), + [anon_sym_LBRACK] = ACTIONS(5866), + [anon_sym_RBRACK] = ACTIONS(5866), + [anon_sym_EQ] = ACTIONS(5864), + [anon_sym_COLON] = ACTIONS(5866), + [anon_sym_QMARK] = ACTIONS(5866), + [anon_sym_STAR_EQ] = ACTIONS(5866), + [anon_sym_SLASH_EQ] = ACTIONS(5866), + [anon_sym_PERCENT_EQ] = ACTIONS(5866), + [anon_sym_PLUS_EQ] = ACTIONS(5866), + [anon_sym_DASH_EQ] = ACTIONS(5866), + [anon_sym_LT_LT_EQ] = ACTIONS(5866), + [anon_sym_GT_GT_EQ] = ACTIONS(5866), + [anon_sym_AMP_EQ] = ACTIONS(5866), + [anon_sym_CARET_EQ] = ACTIONS(5866), + [anon_sym_PIPE_EQ] = ACTIONS(5866), + [anon_sym_and_eq] = ACTIONS(5864), + [anon_sym_or_eq] = ACTIONS(5864), + [anon_sym_xor_eq] = ACTIONS(5864), + [anon_sym_LT_EQ_GT] = ACTIONS(5866), + [anon_sym_or] = ACTIONS(5864), + [anon_sym_and] = ACTIONS(5864), + [anon_sym_bitor] = ACTIONS(5864), + [anon_sym_xor] = ACTIONS(5864), + [anon_sym_bitand] = ACTIONS(5864), + [anon_sym_not_eq] = ACTIONS(5864), + [anon_sym_DASH_DASH] = ACTIONS(5866), + [anon_sym_PLUS_PLUS] = ACTIONS(5866), + [anon_sym_DOT] = ACTIONS(5864), + [anon_sym_DOT_STAR] = ACTIONS(5866), + [anon_sym_DASH_GT] = ACTIONS(5866), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5864), + [anon_sym_decltype] = ACTIONS(5864), + }, + [2318] = { + [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), + [sym_preproc_directive] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_AMP_AMP] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3157), + [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_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_operator] = ACTIONS(3155), + [anon_sym_friend] = ACTIONS(3155), + [anon_sym_public] = ACTIONS(3155), + [anon_sym_private] = ACTIONS(3155), + [anon_sym_protected] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_static_assert] = ACTIONS(3155), + }, + [2319] = { + [sym_identifier] = ACTIONS(3179), + [aux_sym_preproc_def_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3179), + [aux_sym_preproc_if_token2] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3179), + [aux_sym_preproc_else_token1] = ACTIONS(3179), + [aux_sym_preproc_elif_token1] = ACTIONS(3179), + [sym_preproc_directive] = ACTIONS(3179), + [anon_sym_LPAREN2] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym___extension__] = ACTIONS(3179), + [anon_sym_typedef] = ACTIONS(3179), + [anon_sym_extern] = ACTIONS(3179), + [anon_sym___attribute__] = ACTIONS(3179), + [anon_sym_COLON_COLON] = ACTIONS(3181), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3181), + [anon_sym___declspec] = ACTIONS(3179), + [anon_sym___based] = ACTIONS(3179), + [anon_sym_signed] = ACTIONS(3179), + [anon_sym_unsigned] = ACTIONS(3179), + [anon_sym_long] = ACTIONS(3179), + [anon_sym_short] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_register] = ACTIONS(3179), + [anon_sym_inline] = ACTIONS(3179), + [anon_sym___inline] = ACTIONS(3179), + [anon_sym___inline__] = ACTIONS(3179), + [anon_sym___forceinline] = ACTIONS(3179), + [anon_sym_thread_local] = ACTIONS(3179), + [anon_sym___thread] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_constexpr] = ACTIONS(3179), + [anon_sym_volatile] = ACTIONS(3179), + [anon_sym_restrict] = ACTIONS(3179), + [anon_sym___restrict__] = ACTIONS(3179), + [anon_sym__Atomic] = ACTIONS(3179), + [anon_sym__Noreturn] = ACTIONS(3179), + [anon_sym_noreturn] = ACTIONS(3179), + [anon_sym_mutable] = ACTIONS(3179), + [anon_sym_constinit] = ACTIONS(3179), + [anon_sym_consteval] = ACTIONS(3179), + [sym_primitive_type] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_class] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3179), + [anon_sym_decltype] = ACTIONS(3179), + [anon_sym_virtual] = ACTIONS(3179), + [anon_sym_alignas] = ACTIONS(3179), + [anon_sym_explicit] = ACTIONS(3179), + [anon_sym_typename] = ACTIONS(3179), + [anon_sym_template] = ACTIONS(3179), + [anon_sym_operator] = ACTIONS(3179), + [anon_sym_friend] = ACTIONS(3179), + [anon_sym_public] = ACTIONS(3179), + [anon_sym_private] = ACTIONS(3179), + [anon_sym_protected] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3179), + [anon_sym_static_assert] = ACTIONS(3179), + }, + [2320] = { + [sym_identifier] = 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), + [sym_preproc_directive] = ACTIONS(3310), + [anon_sym_LPAREN2] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym___extension__] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3312), + [anon_sym___declspec] = ACTIONS(3310), + [anon_sym___based] = 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(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_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3310), + [anon_sym_decltype] = ACTIONS(3310), + [anon_sym_virtual] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym_explicit] = ACTIONS(3310), + [anon_sym_typename] = ACTIONS(3310), + [anon_sym_template] = ACTIONS(3310), + [anon_sym_operator] = ACTIONS(3310), + [anon_sym_friend] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_static_assert] = ACTIONS(3310), + }, + [2321] = { + [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), + [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___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_extern] = 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___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_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = 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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_friend] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + }, + [2322] = { + [sym_string_literal] = STATE(2304), + [sym_template_argument_list] = STATE(3599), + [sym_raw_string_literal] = STATE(2304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4145), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5868), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4145), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4137), + [anon_sym_or_eq] = ACTIONS(4137), + [anon_sym_xor_eq] = ACTIONS(4137), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(5845), + [anon_sym_u_DQUOTE] = ACTIONS(5845), + [anon_sym_U_DQUOTE] = ACTIONS(5845), + [anon_sym_u8_DQUOTE] = ACTIONS(5845), + [anon_sym_DQUOTE] = ACTIONS(5845), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4137), + [anon_sym_R_DQUOTE] = ACTIONS(5847), + [anon_sym_LR_DQUOTE] = ACTIONS(5847), + [anon_sym_uR_DQUOTE] = ACTIONS(5847), + [anon_sym_UR_DQUOTE] = ACTIONS(5847), + [anon_sym_u8R_DQUOTE] = ACTIONS(5847), + }, + [2323] = { + [sym_identifier] = ACTIONS(3126), + [aux_sym_preproc_def_token1] = ACTIONS(3126), + [aux_sym_preproc_if_token1] = ACTIONS(3126), + [aux_sym_preproc_if_token2] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3126), + [aux_sym_preproc_else_token1] = ACTIONS(3126), + [aux_sym_preproc_elif_token1] = ACTIONS(3126), + [sym_preproc_directive] = ACTIONS(3126), + [anon_sym_LPAREN2] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_AMP_AMP] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym_typedef] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3128), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym___based] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym_explicit] = ACTIONS(3126), + [anon_sym_typename] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_friend] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_using] = ACTIONS(3126), + [anon_sym_static_assert] = ACTIONS(3126), + }, + [2324] = { + [sym_attribute_specifier] = STATE(2464), + [sym_identifier] = ACTIONS(5871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5873), + [anon_sym_COMMA] = ACTIONS(5873), + [anon_sym_RPAREN] = ACTIONS(5873), + [aux_sym_preproc_if_token2] = ACTIONS(5873), + [aux_sym_preproc_else_token1] = ACTIONS(5873), + [aux_sym_preproc_elif_token1] = ACTIONS(5871), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5873), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5873), + [anon_sym_LPAREN2] = ACTIONS(5873), + [anon_sym_DASH] = ACTIONS(5871), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_STAR] = ACTIONS(5871), + [anon_sym_SLASH] = ACTIONS(5871), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_PIPE_PIPE] = ACTIONS(5873), + [anon_sym_AMP_AMP] = ACTIONS(5873), + [anon_sym_PIPE] = ACTIONS(5871), + [anon_sym_CARET] = ACTIONS(5871), + [anon_sym_AMP] = ACTIONS(5871), + [anon_sym_EQ_EQ] = ACTIONS(5873), + [anon_sym_BANG_EQ] = ACTIONS(5873), + [anon_sym_GT] = ACTIONS(5871), + [anon_sym_GT_EQ] = ACTIONS(5873), + [anon_sym_LT_EQ] = ACTIONS(5871), + [anon_sym_LT] = ACTIONS(5871), + [anon_sym_LT_LT] = ACTIONS(5871), + [anon_sym_GT_GT] = ACTIONS(5871), + [anon_sym_SEMI] = ACTIONS(5873), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5873), + [anon_sym_RBRACE] = ACTIONS(5873), + [anon_sym_LBRACK] = ACTIONS(5873), + [anon_sym_RBRACK] = ACTIONS(5873), + [anon_sym_EQ] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5873), + [anon_sym_QMARK] = ACTIONS(5873), + [anon_sym_STAR_EQ] = ACTIONS(5873), + [anon_sym_SLASH_EQ] = ACTIONS(5873), + [anon_sym_PERCENT_EQ] = ACTIONS(5873), + [anon_sym_PLUS_EQ] = ACTIONS(5873), + [anon_sym_DASH_EQ] = ACTIONS(5873), + [anon_sym_LT_LT_EQ] = ACTIONS(5873), + [anon_sym_GT_GT_EQ] = ACTIONS(5873), + [anon_sym_AMP_EQ] = ACTIONS(5873), + [anon_sym_CARET_EQ] = ACTIONS(5873), + [anon_sym_PIPE_EQ] = ACTIONS(5873), + [anon_sym_and_eq] = ACTIONS(5871), + [anon_sym_or_eq] = ACTIONS(5871), + [anon_sym_xor_eq] = ACTIONS(5871), + [anon_sym_LT_EQ_GT] = ACTIONS(5873), + [anon_sym_or] = ACTIONS(5871), + [anon_sym_and] = ACTIONS(5871), + [anon_sym_bitor] = ACTIONS(5871), + [anon_sym_xor] = ACTIONS(5871), + [anon_sym_bitand] = ACTIONS(5871), + [anon_sym_not_eq] = ACTIONS(5871), + [anon_sym_DASH_DASH] = ACTIONS(5873), + [anon_sym_PLUS_PLUS] = ACTIONS(5873), + [anon_sym_DOT] = ACTIONS(5871), + [anon_sym_DOT_STAR] = ACTIONS(5873), + [anon_sym_DASH_GT] = ACTIONS(5873), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5871), + [anon_sym_decltype] = ACTIONS(5871), + }, + [2325] = { + [sym_attribute_specifier] = STATE(2463), + [sym_identifier] = ACTIONS(5875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5877), + [anon_sym_COMMA] = ACTIONS(5877), + [anon_sym_RPAREN] = ACTIONS(5877), + [aux_sym_preproc_if_token2] = ACTIONS(5877), + [aux_sym_preproc_else_token1] = ACTIONS(5877), + [aux_sym_preproc_elif_token1] = ACTIONS(5875), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5877), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5877), + [anon_sym_LPAREN2] = ACTIONS(5877), + [anon_sym_DASH] = ACTIONS(5875), + [anon_sym_PLUS] = ACTIONS(5875), + [anon_sym_STAR] = ACTIONS(5875), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_PERCENT] = ACTIONS(5875), + [anon_sym_PIPE_PIPE] = ACTIONS(5877), + [anon_sym_AMP_AMP] = ACTIONS(5877), + [anon_sym_PIPE] = ACTIONS(5875), + [anon_sym_CARET] = ACTIONS(5875), + [anon_sym_AMP] = ACTIONS(5875), + [anon_sym_EQ_EQ] = ACTIONS(5877), + [anon_sym_BANG_EQ] = ACTIONS(5877), + [anon_sym_GT] = ACTIONS(5875), + [anon_sym_GT_EQ] = ACTIONS(5877), + [anon_sym_LT_EQ] = ACTIONS(5875), + [anon_sym_LT] = ACTIONS(5875), + [anon_sym_LT_LT] = ACTIONS(5875), + [anon_sym_GT_GT] = ACTIONS(5875), + [anon_sym_SEMI] = ACTIONS(5877), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5877), + [anon_sym_RBRACE] = ACTIONS(5877), + [anon_sym_LBRACK] = ACTIONS(5877), + [anon_sym_RBRACK] = ACTIONS(5877), + [anon_sym_EQ] = ACTIONS(5875), + [anon_sym_COLON] = ACTIONS(5877), + [anon_sym_QMARK] = ACTIONS(5877), + [anon_sym_STAR_EQ] = ACTIONS(5877), + [anon_sym_SLASH_EQ] = ACTIONS(5877), + [anon_sym_PERCENT_EQ] = ACTIONS(5877), + [anon_sym_PLUS_EQ] = ACTIONS(5877), + [anon_sym_DASH_EQ] = ACTIONS(5877), + [anon_sym_LT_LT_EQ] = ACTIONS(5877), + [anon_sym_GT_GT_EQ] = ACTIONS(5877), + [anon_sym_AMP_EQ] = ACTIONS(5877), + [anon_sym_CARET_EQ] = ACTIONS(5877), + [anon_sym_PIPE_EQ] = ACTIONS(5877), + [anon_sym_and_eq] = ACTIONS(5875), + [anon_sym_or_eq] = ACTIONS(5875), + [anon_sym_xor_eq] = ACTIONS(5875), + [anon_sym_LT_EQ_GT] = ACTIONS(5877), + [anon_sym_or] = ACTIONS(5875), + [anon_sym_and] = ACTIONS(5875), + [anon_sym_bitor] = ACTIONS(5875), + [anon_sym_xor] = ACTIONS(5875), + [anon_sym_bitand] = ACTIONS(5875), + [anon_sym_not_eq] = ACTIONS(5875), + [anon_sym_DASH_DASH] = ACTIONS(5877), + [anon_sym_PLUS_PLUS] = ACTIONS(5877), + [anon_sym_DOT] = ACTIONS(5875), + [anon_sym_DOT_STAR] = ACTIONS(5877), + [anon_sym_DASH_GT] = ACTIONS(5877), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5875), + [anon_sym_decltype] = ACTIONS(5875), + }, + [2326] = { + [sym_attribute_specifier] = STATE(2473), + [sym_identifier] = ACTIONS(5879), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5881), + [anon_sym_COMMA] = ACTIONS(5881), + [anon_sym_RPAREN] = ACTIONS(5881), + [aux_sym_preproc_if_token2] = ACTIONS(5881), + [aux_sym_preproc_else_token1] = ACTIONS(5881), + [aux_sym_preproc_elif_token1] = ACTIONS(5879), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5881), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5881), + [anon_sym_LPAREN2] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5879), + [anon_sym_STAR] = ACTIONS(5879), + [anon_sym_SLASH] = ACTIONS(5879), + [anon_sym_PERCENT] = ACTIONS(5879), + [anon_sym_PIPE_PIPE] = ACTIONS(5881), + [anon_sym_AMP_AMP] = ACTIONS(5881), + [anon_sym_PIPE] = ACTIONS(5879), + [anon_sym_CARET] = ACTIONS(5879), + [anon_sym_AMP] = ACTIONS(5879), + [anon_sym_EQ_EQ] = ACTIONS(5881), + [anon_sym_BANG_EQ] = ACTIONS(5881), + [anon_sym_GT] = ACTIONS(5879), + [anon_sym_GT_EQ] = ACTIONS(5881), + [anon_sym_LT_EQ] = ACTIONS(5879), + [anon_sym_LT] = ACTIONS(5879), + [anon_sym_LT_LT] = ACTIONS(5879), + [anon_sym_GT_GT] = ACTIONS(5879), + [anon_sym_SEMI] = ACTIONS(5881), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5881), + [anon_sym_RBRACE] = ACTIONS(5881), + [anon_sym_LBRACK] = ACTIONS(5881), + [anon_sym_RBRACK] = ACTIONS(5881), + [anon_sym_EQ] = ACTIONS(5879), + [anon_sym_COLON] = ACTIONS(5881), + [anon_sym_QMARK] = ACTIONS(5881), + [anon_sym_STAR_EQ] = ACTIONS(5881), + [anon_sym_SLASH_EQ] = ACTIONS(5881), + [anon_sym_PERCENT_EQ] = ACTIONS(5881), + [anon_sym_PLUS_EQ] = ACTIONS(5881), + [anon_sym_DASH_EQ] = ACTIONS(5881), + [anon_sym_LT_LT_EQ] = ACTIONS(5881), + [anon_sym_GT_GT_EQ] = ACTIONS(5881), + [anon_sym_AMP_EQ] = ACTIONS(5881), + [anon_sym_CARET_EQ] = ACTIONS(5881), + [anon_sym_PIPE_EQ] = ACTIONS(5881), + [anon_sym_and_eq] = ACTIONS(5879), + [anon_sym_or_eq] = ACTIONS(5879), + [anon_sym_xor_eq] = ACTIONS(5879), + [anon_sym_LT_EQ_GT] = ACTIONS(5881), + [anon_sym_or] = ACTIONS(5879), + [anon_sym_and] = ACTIONS(5879), + [anon_sym_bitor] = ACTIONS(5879), + [anon_sym_xor] = ACTIONS(5879), + [anon_sym_bitand] = ACTIONS(5879), + [anon_sym_not_eq] = ACTIONS(5879), + [anon_sym_DASH_DASH] = ACTIONS(5881), + [anon_sym_PLUS_PLUS] = ACTIONS(5881), + [anon_sym_DOT] = ACTIONS(5879), + [anon_sym_DOT_STAR] = ACTIONS(5881), + [anon_sym_DASH_GT] = ACTIONS(5881), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5879), + [anon_sym_decltype] = ACTIONS(5879), + }, + [2327] = { + [sym__declaration_modifiers] = STATE(4077), + [sym_attribute_specifier] = STATE(4077), + [sym_attribute_declaration] = STATE(4077), + [sym_ms_declspec_modifier] = STATE(4077), + [sym_storage_class_specifier] = STATE(4077), + [sym_type_qualifier] = STATE(4077), + [sym__type_specifier] = STATE(4631), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4077), + [sym_alignas_specifier] = STATE(4077), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7038), + [sym_qualified_type_identifier] = STATE(3485), + [aux_sym__declaration_specifiers_repeat1] = STATE(4077), + [aux_sym_sized_type_specifier_repeat1] = STATE(3701), + [sym_identifier] = ACTIONS(3928), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(3936), + [anon_sym_unsigned] = ACTIONS(3936), + [anon_sym_long] = ACTIONS(3936), + [anon_sym_short] = ACTIONS(3936), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3938), + [anon_sym_enum] = ACTIONS(3940), + [anon_sym_class] = ACTIONS(3942), + [anon_sym_struct] = ACTIONS(3944), + [anon_sym_union] = ACTIONS(3946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(3948), + [anon_sym_template] = ACTIONS(1428), + }, + [2328] = { + [sym_attribute_specifier] = STATE(2465), + [sym_identifier] = ACTIONS(5883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5885), + [anon_sym_COMMA] = ACTIONS(5885), + [anon_sym_RPAREN] = ACTIONS(5885), + [aux_sym_preproc_if_token2] = ACTIONS(5885), + [aux_sym_preproc_else_token1] = ACTIONS(5885), + [aux_sym_preproc_elif_token1] = ACTIONS(5883), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5885), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5885), + [anon_sym_LPAREN2] = ACTIONS(5885), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_PLUS] = ACTIONS(5883), + [anon_sym_STAR] = ACTIONS(5883), + [anon_sym_SLASH] = ACTIONS(5883), + [anon_sym_PERCENT] = ACTIONS(5883), + [anon_sym_PIPE_PIPE] = ACTIONS(5885), + [anon_sym_AMP_AMP] = ACTIONS(5885), + [anon_sym_PIPE] = ACTIONS(5883), + [anon_sym_CARET] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5883), + [anon_sym_EQ_EQ] = ACTIONS(5885), + [anon_sym_BANG_EQ] = ACTIONS(5885), + [anon_sym_GT] = ACTIONS(5883), + [anon_sym_GT_EQ] = ACTIONS(5885), + [anon_sym_LT_EQ] = ACTIONS(5883), + [anon_sym_LT] = ACTIONS(5883), + [anon_sym_LT_LT] = ACTIONS(5883), + [anon_sym_GT_GT] = ACTIONS(5883), + [anon_sym_SEMI] = ACTIONS(5885), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5885), + [anon_sym_RBRACE] = ACTIONS(5885), + [anon_sym_LBRACK] = ACTIONS(5885), + [anon_sym_RBRACK] = ACTIONS(5885), + [anon_sym_EQ] = ACTIONS(5883), + [anon_sym_COLON] = ACTIONS(5885), + [anon_sym_QMARK] = ACTIONS(5885), + [anon_sym_STAR_EQ] = ACTIONS(5885), + [anon_sym_SLASH_EQ] = ACTIONS(5885), + [anon_sym_PERCENT_EQ] = ACTIONS(5885), + [anon_sym_PLUS_EQ] = ACTIONS(5885), + [anon_sym_DASH_EQ] = ACTIONS(5885), + [anon_sym_LT_LT_EQ] = ACTIONS(5885), + [anon_sym_GT_GT_EQ] = ACTIONS(5885), + [anon_sym_AMP_EQ] = ACTIONS(5885), + [anon_sym_CARET_EQ] = ACTIONS(5885), + [anon_sym_PIPE_EQ] = ACTIONS(5885), + [anon_sym_and_eq] = ACTIONS(5883), + [anon_sym_or_eq] = ACTIONS(5883), + [anon_sym_xor_eq] = ACTIONS(5883), + [anon_sym_LT_EQ_GT] = ACTIONS(5885), + [anon_sym_or] = ACTIONS(5883), + [anon_sym_and] = ACTIONS(5883), + [anon_sym_bitor] = ACTIONS(5883), + [anon_sym_xor] = ACTIONS(5883), + [anon_sym_bitand] = ACTIONS(5883), + [anon_sym_not_eq] = ACTIONS(5883), + [anon_sym_DASH_DASH] = ACTIONS(5885), + [anon_sym_PLUS_PLUS] = ACTIONS(5885), + [anon_sym_DOT] = ACTIONS(5883), + [anon_sym_DOT_STAR] = ACTIONS(5885), + [anon_sym_DASH_GT] = ACTIONS(5885), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5883), + [anon_sym_decltype] = ACTIONS(5883), + }, + [2329] = { + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token2] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [aux_sym_preproc_else_token1] = ACTIONS(3159), + [aux_sym_preproc_elif_token1] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_friend] = ACTIONS(3159), + [anon_sym_public] = ACTIONS(3159), + [anon_sym_private] = ACTIONS(3159), + [anon_sym_protected] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + }, + [2330] = { + [sym_attribute_declaration] = STATE(2475), + [sym_parameter_list] = STATE(2499), + [aux_sym_attributed_declarator_repeat1] = STATE(2475), + [sym_identifier] = ACTIONS(5887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5889), + [anon_sym_COMMA] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5889), + [aux_sym_preproc_if_token2] = ACTIONS(5889), + [aux_sym_preproc_else_token1] = ACTIONS(5889), + [aux_sym_preproc_elif_token1] = ACTIONS(5887), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5889), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5889), + [anon_sym_LPAREN2] = ACTIONS(5829), + [anon_sym_DASH] = ACTIONS(5887), + [anon_sym_PLUS] = ACTIONS(5887), + [anon_sym_STAR] = ACTIONS(5887), + [anon_sym_SLASH] = ACTIONS(5887), + [anon_sym_PERCENT] = ACTIONS(5887), + [anon_sym_PIPE_PIPE] = ACTIONS(5889), + [anon_sym_AMP_AMP] = ACTIONS(5889), + [anon_sym_PIPE] = ACTIONS(5887), + [anon_sym_CARET] = ACTIONS(5887), + [anon_sym_AMP] = ACTIONS(5887), + [anon_sym_EQ_EQ] = ACTIONS(5889), + [anon_sym_BANG_EQ] = ACTIONS(5889), + [anon_sym_GT] = ACTIONS(5887), + [anon_sym_GT_EQ] = ACTIONS(5889), + [anon_sym_LT_EQ] = ACTIONS(5887), + [anon_sym_LT] = ACTIONS(5887), + [anon_sym_LT_LT] = ACTIONS(5887), + [anon_sym_GT_GT] = ACTIONS(5887), + [anon_sym_SEMI] = ACTIONS(5889), + [anon_sym___attribute__] = ACTIONS(5887), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5831), + [anon_sym_RBRACE] = ACTIONS(5889), + [anon_sym_LBRACK] = ACTIONS(5833), + [anon_sym_RBRACK] = ACTIONS(5889), + [anon_sym_EQ] = ACTIONS(5887), + [anon_sym_COLON] = ACTIONS(5889), + [anon_sym_QMARK] = ACTIONS(5889), + [anon_sym_STAR_EQ] = ACTIONS(5889), + [anon_sym_SLASH_EQ] = ACTIONS(5889), + [anon_sym_PERCENT_EQ] = ACTIONS(5889), + [anon_sym_PLUS_EQ] = ACTIONS(5889), + [anon_sym_DASH_EQ] = ACTIONS(5889), + [anon_sym_LT_LT_EQ] = ACTIONS(5889), + [anon_sym_GT_GT_EQ] = ACTIONS(5889), + [anon_sym_AMP_EQ] = ACTIONS(5889), + [anon_sym_CARET_EQ] = ACTIONS(5889), + [anon_sym_PIPE_EQ] = ACTIONS(5889), + [anon_sym_and_eq] = ACTIONS(5887), + [anon_sym_or_eq] = ACTIONS(5887), + [anon_sym_xor_eq] = ACTIONS(5887), + [anon_sym_LT_EQ_GT] = ACTIONS(5889), + [anon_sym_or] = ACTIONS(5887), + [anon_sym_and] = ACTIONS(5887), + [anon_sym_bitor] = ACTIONS(5887), + [anon_sym_xor] = ACTIONS(5887), + [anon_sym_bitand] = ACTIONS(5887), + [anon_sym_not_eq] = ACTIONS(5887), + [anon_sym_DASH_DASH] = ACTIONS(5889), + [anon_sym_PLUS_PLUS] = ACTIONS(5889), + [anon_sym_DOT] = ACTIONS(5887), + [anon_sym_DOT_STAR] = ACTIONS(5889), + [anon_sym_DASH_GT] = ACTIONS(5889), + [sym_comment] = ACTIONS(3), + }, + [2331] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(5348), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + }, + [2332] = { + [sym_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [aux_sym_concatenated_string_repeat1] = STATE(2398), + [sym_identifier] = ACTIONS(5891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5220), + [anon_sym_COMMA] = ACTIONS(5220), + [anon_sym_LPAREN2] = ACTIONS(5220), + [anon_sym_DASH] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5222), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5222), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5220), + [anon_sym_AMP_AMP] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_AMP] = ACTIONS(5222), + [anon_sym_EQ_EQ] = ACTIONS(5220), + [anon_sym_BANG_EQ] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5222), + [anon_sym_GT_EQ] = ACTIONS(5222), + [anon_sym_LT_EQ] = ACTIONS(5222), + [anon_sym_LT] = ACTIONS(5222), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5220), + [anon_sym_STAR_EQ] = ACTIONS(5220), + [anon_sym_SLASH_EQ] = ACTIONS(5220), + [anon_sym_PERCENT_EQ] = ACTIONS(5220), + [anon_sym_PLUS_EQ] = ACTIONS(5220), + [anon_sym_DASH_EQ] = ACTIONS(5220), + [anon_sym_LT_LT_EQ] = ACTIONS(5220), + [anon_sym_GT_GT_EQ] = ACTIONS(5222), + [anon_sym_AMP_EQ] = ACTIONS(5220), + [anon_sym_CARET_EQ] = ACTIONS(5220), + [anon_sym_PIPE_EQ] = ACTIONS(5220), + [anon_sym_and_eq] = ACTIONS(5222), + [anon_sym_or_eq] = ACTIONS(5222), + [anon_sym_xor_eq] = ACTIONS(5222), + [anon_sym_LT_EQ_GT] = ACTIONS(5220), + [anon_sym_or] = ACTIONS(5222), + [anon_sym_and] = ACTIONS(5222), + [anon_sym_bitor] = ACTIONS(5222), + [anon_sym_xor] = ACTIONS(5222), + [anon_sym_bitand] = ACTIONS(5222), + [anon_sym_not_eq] = ACTIONS(5222), + [anon_sym_DASH_DASH] = ACTIONS(5220), + [anon_sym_PLUS_PLUS] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(5222), + [anon_sym_DOT_STAR] = ACTIONS(5220), + [anon_sym_DASH_GT] = ACTIONS(5220), + [anon_sym_L_DQUOTE] = ACTIONS(5845), + [anon_sym_u_DQUOTE] = ACTIONS(5845), + [anon_sym_U_DQUOTE] = ACTIONS(5845), + [anon_sym_u8_DQUOTE] = ACTIONS(5845), + [anon_sym_DQUOTE] = ACTIONS(5845), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5220), + [anon_sym_R_DQUOTE] = ACTIONS(5847), + [anon_sym_LR_DQUOTE] = ACTIONS(5847), + [anon_sym_uR_DQUOTE] = ACTIONS(5847), + [anon_sym_UR_DQUOTE] = ACTIONS(5847), + [anon_sym_u8R_DQUOTE] = ACTIONS(5847), + [sym_literal_suffix] = ACTIONS(5222), + }, + [2333] = { + [sym_identifier] = ACTIONS(3294), + [aux_sym_preproc_def_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token1] = ACTIONS(3294), + [aux_sym_preproc_if_token2] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3294), + [aux_sym_preproc_else_token1] = ACTIONS(3294), + [aux_sym_preproc_elif_token1] = ACTIONS(3294), + [sym_preproc_directive] = ACTIONS(3294), + [anon_sym_LPAREN2] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym___extension__] = ACTIONS(3294), + [anon_sym_typedef] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(3294), + [anon_sym___attribute__] = ACTIONS(3294), + [anon_sym_COLON_COLON] = ACTIONS(3296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3296), + [anon_sym___declspec] = ACTIONS(3294), + [anon_sym___based] = ACTIONS(3294), + [anon_sym_signed] = ACTIONS(3294), + [anon_sym_unsigned] = ACTIONS(3294), + [anon_sym_long] = ACTIONS(3294), + [anon_sym_short] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_register] = ACTIONS(3294), + [anon_sym_inline] = ACTIONS(3294), + [anon_sym___inline] = ACTIONS(3294), + [anon_sym___inline__] = ACTIONS(3294), + [anon_sym___forceinline] = ACTIONS(3294), + [anon_sym_thread_local] = ACTIONS(3294), + [anon_sym___thread] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_constexpr] = ACTIONS(3294), + [anon_sym_volatile] = ACTIONS(3294), + [anon_sym_restrict] = ACTIONS(3294), + [anon_sym___restrict__] = ACTIONS(3294), + [anon_sym__Atomic] = ACTIONS(3294), + [anon_sym__Noreturn] = ACTIONS(3294), + [anon_sym_noreturn] = ACTIONS(3294), + [anon_sym_mutable] = ACTIONS(3294), + [anon_sym_constinit] = ACTIONS(3294), + [anon_sym_consteval] = ACTIONS(3294), + [sym_primitive_type] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3294), + [anon_sym_decltype] = ACTIONS(3294), + [anon_sym_virtual] = ACTIONS(3294), + [anon_sym_alignas] = ACTIONS(3294), + [anon_sym_explicit] = ACTIONS(3294), + [anon_sym_typename] = ACTIONS(3294), + [anon_sym_template] = ACTIONS(3294), + [anon_sym_operator] = ACTIONS(3294), + [anon_sym_friend] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_static_assert] = ACTIONS(3294), + }, + [2334] = { + [sym_identifier] = ACTIONS(2993), + [aux_sym_preproc_def_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token1] = ACTIONS(2993), + [aux_sym_preproc_if_token2] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2993), + [aux_sym_preproc_else_token1] = ACTIONS(2993), + [aux_sym_preproc_elif_token1] = ACTIONS(2993), + [sym_preproc_directive] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym___extension__] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym___attribute__] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2995), + [anon_sym___declspec] = ACTIONS(2993), + [anon_sym___based] = ACTIONS(2993), + [anon_sym_signed] = ACTIONS(2993), + [anon_sym_unsigned] = ACTIONS(2993), + [anon_sym_long] = ACTIONS(2993), + [anon_sym_short] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_register] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym___inline] = ACTIONS(2993), + [anon_sym___inline__] = ACTIONS(2993), + [anon_sym___forceinline] = ACTIONS(2993), + [anon_sym_thread_local] = ACTIONS(2993), + [anon_sym___thread] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_constexpr] = ACTIONS(2993), + [anon_sym_volatile] = ACTIONS(2993), + [anon_sym_restrict] = ACTIONS(2993), + [anon_sym___restrict__] = ACTIONS(2993), + [anon_sym__Atomic] = ACTIONS(2993), + [anon_sym__Noreturn] = ACTIONS(2993), + [anon_sym_noreturn] = ACTIONS(2993), + [anon_sym_mutable] = ACTIONS(2993), + [anon_sym_constinit] = ACTIONS(2993), + [anon_sym_consteval] = ACTIONS(2993), + [sym_primitive_type] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2993), + [anon_sym_decltype] = ACTIONS(2993), + [anon_sym_virtual] = ACTIONS(2993), + [anon_sym_alignas] = ACTIONS(2993), + [anon_sym_explicit] = ACTIONS(2993), + [anon_sym_typename] = ACTIONS(2993), + [anon_sym_template] = ACTIONS(2993), + [anon_sym_operator] = ACTIONS(2993), + [anon_sym_friend] = ACTIONS(2993), + [anon_sym_public] = ACTIONS(2993), + [anon_sym_private] = ACTIONS(2993), + [anon_sym_protected] = ACTIONS(2993), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_static_assert] = ACTIONS(2993), + }, + [2335] = { + [sym_string_literal] = STATE(3955), + [sym_template_argument_list] = STATE(5017), + [sym_raw_string_literal] = STATE(3955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4145), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5086), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(5088), + [anon_sym_SLASH_EQ] = ACTIONS(5088), + [anon_sym_PERCENT_EQ] = ACTIONS(5088), + [anon_sym_PLUS_EQ] = ACTIONS(5088), + [anon_sym_DASH_EQ] = ACTIONS(5088), + [anon_sym_LT_LT_EQ] = ACTIONS(5088), + [anon_sym_GT_GT_EQ] = ACTIONS(5086), + [anon_sym_AMP_EQ] = ACTIONS(5088), + [anon_sym_CARET_EQ] = ACTIONS(5088), + [anon_sym_PIPE_EQ] = ACTIONS(5088), + [anon_sym_and_eq] = ACTIONS(5088), + [anon_sym_or_eq] = ACTIONS(5088), + [anon_sym_xor_eq] = ACTIONS(5088), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(5090), + [anon_sym_u_DQUOTE] = ACTIONS(5090), + [anon_sym_U_DQUOTE] = ACTIONS(5090), + [anon_sym_u8_DQUOTE] = ACTIONS(5090), + [anon_sym_DQUOTE] = ACTIONS(5090), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4137), + [anon_sym_R_DQUOTE] = ACTIONS(5092), + [anon_sym_LR_DQUOTE] = ACTIONS(5092), + [anon_sym_uR_DQUOTE] = ACTIONS(5092), + [anon_sym_UR_DQUOTE] = ACTIONS(5092), + [anon_sym_u8R_DQUOTE] = ACTIONS(5092), + }, + [2336] = { + [sym_identifier] = ACTIONS(5418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_RPAREN] = ACTIONS(5420), + [aux_sym_preproc_if_token2] = ACTIONS(5420), + [aux_sym_preproc_else_token1] = ACTIONS(5420), + [aux_sym_preproc_elif_token1] = ACTIONS(5418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5420), + [anon_sym_LPAREN2] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5418), + [anon_sym_STAR] = ACTIONS(5418), + [anon_sym_SLASH] = ACTIONS(5418), + [anon_sym_PERCENT] = ACTIONS(5418), + [anon_sym_PIPE_PIPE] = ACTIONS(5420), + [anon_sym_AMP_AMP] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5418), + [anon_sym_AMP] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_EQ] = ACTIONS(5418), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_LT_LT] = ACTIONS(5418), + [anon_sym_GT_GT] = ACTIONS(5418), + [anon_sym_SEMI] = ACTIONS(5420), + [anon_sym___attribute__] = ACTIONS(5418), + [anon_sym_COLON_COLON] = ACTIONS(5422), + [anon_sym_LBRACE] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_RBRACK] = ACTIONS(5420), + [anon_sym_EQ] = ACTIONS(5418), + [anon_sym_COLON] = ACTIONS(5418), + [anon_sym_QMARK] = ACTIONS(5420), + [anon_sym_STAR_EQ] = ACTIONS(5420), + [anon_sym_SLASH_EQ] = ACTIONS(5420), + [anon_sym_PERCENT_EQ] = ACTIONS(5420), + [anon_sym_PLUS_EQ] = ACTIONS(5420), + [anon_sym_DASH_EQ] = ACTIONS(5420), + [anon_sym_LT_LT_EQ] = ACTIONS(5420), + [anon_sym_GT_GT_EQ] = ACTIONS(5420), + [anon_sym_AMP_EQ] = ACTIONS(5420), + [anon_sym_CARET_EQ] = ACTIONS(5420), + [anon_sym_PIPE_EQ] = ACTIONS(5420), + [anon_sym_and_eq] = ACTIONS(5418), + [anon_sym_or_eq] = ACTIONS(5418), + [anon_sym_xor_eq] = ACTIONS(5418), + [anon_sym_LT_EQ_GT] = ACTIONS(5420), + [anon_sym_or] = ACTIONS(5418), + [anon_sym_and] = ACTIONS(5418), + [anon_sym_bitor] = ACTIONS(5418), + [anon_sym_xor] = ACTIONS(5418), + [anon_sym_bitand] = ACTIONS(5418), + [anon_sym_not_eq] = ACTIONS(5418), + [anon_sym_DASH_DASH] = ACTIONS(5420), + [anon_sym_PLUS_PLUS] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_DOT_STAR] = ACTIONS(5420), + [anon_sym_DASH_GT] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5418), + [anon_sym_decltype] = ACTIONS(5418), + }, + [2337] = { + [sym_identifier] = ACTIONS(3122), + [aux_sym_preproc_def_token1] = ACTIONS(3122), + [aux_sym_preproc_if_token1] = ACTIONS(3122), + [aux_sym_preproc_if_token2] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3122), + [aux_sym_preproc_else_token1] = ACTIONS(3122), + [aux_sym_preproc_elif_token1] = ACTIONS(3122), + [sym_preproc_directive] = ACTIONS(3122), + [anon_sym_LPAREN2] = ACTIONS(3124), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym___extension__] = ACTIONS(3122), + [anon_sym_typedef] = ACTIONS(3122), + [anon_sym_extern] = ACTIONS(3122), + [anon_sym___attribute__] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3124), + [anon_sym___declspec] = ACTIONS(3122), + [anon_sym___based] = ACTIONS(3122), + [anon_sym_signed] = ACTIONS(3122), + [anon_sym_unsigned] = ACTIONS(3122), + [anon_sym_long] = ACTIONS(3122), + [anon_sym_short] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_register] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym___inline] = ACTIONS(3122), + [anon_sym___inline__] = ACTIONS(3122), + [anon_sym___forceinline] = ACTIONS(3122), + [anon_sym_thread_local] = ACTIONS(3122), + [anon_sym___thread] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym___restrict__] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym__Noreturn] = ACTIONS(3122), + [anon_sym_noreturn] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_union] = ACTIONS(3122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3122), + [anon_sym_decltype] = ACTIONS(3122), + [anon_sym_virtual] = ACTIONS(3122), + [anon_sym_alignas] = ACTIONS(3122), + [anon_sym_explicit] = ACTIONS(3122), + [anon_sym_typename] = ACTIONS(3122), + [anon_sym_template] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_friend] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_using] = ACTIONS(3122), + [anon_sym_static_assert] = ACTIONS(3122), + }, + [2338] = { + [sym_attribute_declaration] = STATE(2475), + [sym_parameter_list] = STATE(2499), + [aux_sym_attributed_declarator_repeat1] = STATE(2475), + [sym_identifier] = ACTIONS(5893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [aux_sym_preproc_if_token2] = ACTIONS(5895), + [aux_sym_preproc_else_token1] = ACTIONS(5895), + [aux_sym_preproc_elif_token1] = ACTIONS(5893), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5895), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5895), + [anon_sym_LPAREN2] = ACTIONS(5829), + [anon_sym_DASH] = ACTIONS(5893), + [anon_sym_PLUS] = ACTIONS(5893), + [anon_sym_STAR] = ACTIONS(5893), + [anon_sym_SLASH] = ACTIONS(5893), + [anon_sym_PERCENT] = ACTIONS(5893), + [anon_sym_PIPE_PIPE] = ACTIONS(5895), + [anon_sym_AMP_AMP] = ACTIONS(5895), + [anon_sym_PIPE] = ACTIONS(5893), + [anon_sym_CARET] = ACTIONS(5893), + [anon_sym_AMP] = ACTIONS(5893), + [anon_sym_EQ_EQ] = ACTIONS(5895), + [anon_sym_BANG_EQ] = ACTIONS(5895), + [anon_sym_GT] = ACTIONS(5893), + [anon_sym_GT_EQ] = ACTIONS(5895), + [anon_sym_LT_EQ] = ACTIONS(5893), + [anon_sym_LT] = ACTIONS(5893), + [anon_sym_LT_LT] = ACTIONS(5893), + [anon_sym_GT_GT] = ACTIONS(5893), + [anon_sym_SEMI] = ACTIONS(5895), + [anon_sym___attribute__] = ACTIONS(5893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5831), + [anon_sym_RBRACE] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5833), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_EQ] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(5895), + [anon_sym_QMARK] = ACTIONS(5895), + [anon_sym_STAR_EQ] = ACTIONS(5895), + [anon_sym_SLASH_EQ] = ACTIONS(5895), + [anon_sym_PERCENT_EQ] = ACTIONS(5895), + [anon_sym_PLUS_EQ] = ACTIONS(5895), + [anon_sym_DASH_EQ] = ACTIONS(5895), + [anon_sym_LT_LT_EQ] = ACTIONS(5895), + [anon_sym_GT_GT_EQ] = ACTIONS(5895), + [anon_sym_AMP_EQ] = ACTIONS(5895), + [anon_sym_CARET_EQ] = ACTIONS(5895), + [anon_sym_PIPE_EQ] = ACTIONS(5895), + [anon_sym_and_eq] = ACTIONS(5893), + [anon_sym_or_eq] = ACTIONS(5893), + [anon_sym_xor_eq] = ACTIONS(5893), + [anon_sym_LT_EQ_GT] = ACTIONS(5895), + [anon_sym_or] = ACTIONS(5893), + [anon_sym_and] = ACTIONS(5893), + [anon_sym_bitor] = ACTIONS(5893), + [anon_sym_xor] = ACTIONS(5893), + [anon_sym_bitand] = ACTIONS(5893), + [anon_sym_not_eq] = ACTIONS(5893), + [anon_sym_DASH_DASH] = ACTIONS(5895), + [anon_sym_PLUS_PLUS] = ACTIONS(5895), + [anon_sym_DOT] = ACTIONS(5893), + [anon_sym_DOT_STAR] = ACTIONS(5895), + [anon_sym_DASH_GT] = ACTIONS(5895), + [sym_comment] = ACTIONS(3), + }, + [2339] = { + [sym_identifier] = ACTIONS(3110), + [aux_sym_preproc_def_token1] = ACTIONS(3110), + [aux_sym_preproc_if_token1] = ACTIONS(3110), + [aux_sym_preproc_if_token2] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3110), + [aux_sym_preproc_else_token1] = ACTIONS(3110), + [aux_sym_preproc_elif_token1] = ACTIONS(3110), + [sym_preproc_directive] = ACTIONS(3110), + [anon_sym_LPAREN2] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym___extension__] = ACTIONS(3110), + [anon_sym_typedef] = ACTIONS(3110), + [anon_sym_extern] = ACTIONS(3110), + [anon_sym___attribute__] = ACTIONS(3110), + [anon_sym_COLON_COLON] = ACTIONS(3112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3112), + [anon_sym___declspec] = ACTIONS(3110), + [anon_sym___based] = ACTIONS(3110), + [anon_sym_signed] = ACTIONS(3110), + [anon_sym_unsigned] = ACTIONS(3110), + [anon_sym_long] = ACTIONS(3110), + [anon_sym_short] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_static] = ACTIONS(3110), + [anon_sym_register] = ACTIONS(3110), + [anon_sym_inline] = ACTIONS(3110), + [anon_sym___inline] = ACTIONS(3110), + [anon_sym___inline__] = ACTIONS(3110), + [anon_sym___forceinline] = ACTIONS(3110), + [anon_sym_thread_local] = ACTIONS(3110), + [anon_sym___thread] = ACTIONS(3110), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_constexpr] = ACTIONS(3110), + [anon_sym_volatile] = ACTIONS(3110), + [anon_sym_restrict] = ACTIONS(3110), + [anon_sym___restrict__] = ACTIONS(3110), + [anon_sym__Atomic] = ACTIONS(3110), + [anon_sym__Noreturn] = ACTIONS(3110), + [anon_sym_noreturn] = ACTIONS(3110), + [anon_sym_mutable] = ACTIONS(3110), + [anon_sym_constinit] = ACTIONS(3110), + [anon_sym_consteval] = ACTIONS(3110), + [sym_primitive_type] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_class] = ACTIONS(3110), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_union] = ACTIONS(3110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3110), + [anon_sym_decltype] = ACTIONS(3110), + [anon_sym_virtual] = ACTIONS(3110), + [anon_sym_alignas] = ACTIONS(3110), + [anon_sym_explicit] = ACTIONS(3110), + [anon_sym_typename] = ACTIONS(3110), + [anon_sym_template] = ACTIONS(3110), + [anon_sym_operator] = ACTIONS(3110), + [anon_sym_friend] = ACTIONS(3110), + [anon_sym_public] = ACTIONS(3110), + [anon_sym_private] = ACTIONS(3110), + [anon_sym_protected] = ACTIONS(3110), + [anon_sym_using] = ACTIONS(3110), + [anon_sym_static_assert] = ACTIONS(3110), + }, + [2340] = { + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token2] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [aux_sym_preproc_else_token1] = ACTIONS(2895), + [aux_sym_preproc_elif_token1] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym___extension__] = ACTIONS(2895), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym___inline] = ACTIONS(2895), + [anon_sym___inline__] = ACTIONS(2895), + [anon_sym___forceinline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym___thread] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym___restrict__] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym__Noreturn] = ACTIONS(2895), + [anon_sym_noreturn] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_alignas] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_friend] = ACTIONS(2895), + [anon_sym_public] = ACTIONS(2895), + [anon_sym_private] = ACTIONS(2895), + [anon_sym_protected] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + }, + [2341] = { + [sym_identifier] = ACTIONS(3151), + [aux_sym_preproc_def_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token1] = ACTIONS(3151), + [aux_sym_preproc_if_token2] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3151), + [aux_sym_preproc_else_token1] = ACTIONS(3151), + [aux_sym_preproc_elif_token1] = ACTIONS(3151), + [sym_preproc_directive] = ACTIONS(3151), + [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(3151), + [anon_sym___extension__] = ACTIONS(3151), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_extern] = ACTIONS(3151), + [anon_sym___attribute__] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3151), + [anon_sym___based] = ACTIONS(3151), + [anon_sym_signed] = ACTIONS(3151), + [anon_sym_unsigned] = ACTIONS(3151), + [anon_sym_long] = ACTIONS(3151), + [anon_sym_short] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_register] = ACTIONS(3151), + [anon_sym_inline] = ACTIONS(3151), + [anon_sym___inline] = ACTIONS(3151), + [anon_sym___inline__] = ACTIONS(3151), + [anon_sym___forceinline] = ACTIONS(3151), + [anon_sym_thread_local] = ACTIONS(3151), + [anon_sym___thread] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_constexpr] = ACTIONS(3151), + [anon_sym_volatile] = ACTIONS(3151), + [anon_sym_restrict] = ACTIONS(3151), + [anon_sym___restrict__] = ACTIONS(3151), + [anon_sym__Atomic] = ACTIONS(3151), + [anon_sym__Noreturn] = ACTIONS(3151), + [anon_sym_noreturn] = ACTIONS(3151), + [anon_sym_mutable] = ACTIONS(3151), + [anon_sym_constinit] = ACTIONS(3151), + [anon_sym_consteval] = ACTIONS(3151), + [sym_primitive_type] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_class] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3151), + [anon_sym_decltype] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3151), + [anon_sym_alignas] = ACTIONS(3151), + [anon_sym_explicit] = ACTIONS(3151), + [anon_sym_typename] = ACTIONS(3151), + [anon_sym_template] = ACTIONS(3151), + [anon_sym_operator] = ACTIONS(3151), + [anon_sym_friend] = ACTIONS(3151), + [anon_sym_public] = ACTIONS(3151), + [anon_sym_private] = ACTIONS(3151), + [anon_sym_protected] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3151), + [anon_sym_static_assert] = ACTIONS(3151), + }, + [2342] = { + [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___extension__] = ACTIONS(3588), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_RBRACK] = ACTIONS(3590), + [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_mutable] = ACTIONS(3588), + [anon_sym_constinit] = ACTIONS(3588), + [anon_sym_consteval] = ACTIONS(3588), + [sym_primitive_type] = 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_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), + [anon_sym_decltype] = ACTIONS(3588), + [anon_sym_template] = ACTIONS(3588), + [anon_sym_delete] = 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), + [sym_this] = ACTIONS(3588), + }, + [2343] = { + [sym_identifier] = ACTIONS(5431), + [aux_sym_preproc_def_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token2] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5431), + [aux_sym_preproc_else_token1] = ACTIONS(5431), + [aux_sym_preproc_elif_token1] = ACTIONS(5431), + [sym_preproc_directive] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5433), + [anon_sym_TILDE] = ACTIONS(5433), + [anon_sym_STAR] = ACTIONS(5433), + [anon_sym_AMP_AMP] = ACTIONS(5433), + [anon_sym_AMP] = ACTIONS(5431), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym_typedef] = ACTIONS(5431), + [anon_sym_extern] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym_COLON_COLON] = ACTIONS(5433), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5433), + [anon_sym___declspec] = ACTIONS(5431), + [anon_sym___based] = ACTIONS(5431), + [anon_sym_signed] = ACTIONS(5431), + [anon_sym_unsigned] = ACTIONS(5431), + [anon_sym_long] = ACTIONS(5431), + [anon_sym_short] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5431), + [anon_sym_static] = ACTIONS(5431), + [anon_sym_register] = ACTIONS(5431), + [anon_sym_inline] = ACTIONS(5431), + [anon_sym___inline] = ACTIONS(5431), + [anon_sym___inline__] = ACTIONS(5431), + [anon_sym___forceinline] = ACTIONS(5431), + [anon_sym_thread_local] = ACTIONS(5431), + [anon_sym___thread] = ACTIONS(5431), + [anon_sym_const] = ACTIONS(5431), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_mutable] = ACTIONS(5431), + [anon_sym_constinit] = ACTIONS(5431), + [anon_sym_consteval] = ACTIONS(5431), + [sym_primitive_type] = ACTIONS(5431), + [anon_sym_enum] = ACTIONS(5431), + [anon_sym_class] = ACTIONS(5431), + [anon_sym_struct] = ACTIONS(5431), + [anon_sym_union] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5431), + [anon_sym_decltype] = ACTIONS(5431), + [anon_sym_virtual] = ACTIONS(5431), + [anon_sym_alignas] = ACTIONS(5431), + [anon_sym_explicit] = ACTIONS(5431), + [anon_sym_typename] = ACTIONS(5431), + [anon_sym_template] = ACTIONS(5431), + [anon_sym_operator] = ACTIONS(5431), + [anon_sym_friend] = ACTIONS(5431), + [anon_sym_public] = ACTIONS(5431), + [anon_sym_private] = ACTIONS(5431), + [anon_sym_protected] = ACTIONS(5431), + [anon_sym_using] = ACTIONS(5431), + [anon_sym_static_assert] = ACTIONS(5431), + }, + [2344] = { + [sym_identifier] = ACTIONS(3082), + [aux_sym_preproc_def_token1] = ACTIONS(3082), + [aux_sym_preproc_if_token1] = ACTIONS(3082), + [aux_sym_preproc_if_token2] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3082), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3082), + [aux_sym_preproc_else_token1] = ACTIONS(3082), + [aux_sym_preproc_elif_token1] = ACTIONS(3082), + [sym_preproc_directive] = ACTIONS(3082), + [anon_sym_LPAREN2] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym___extension__] = ACTIONS(3082), + [anon_sym_typedef] = ACTIONS(3082), + [anon_sym_extern] = ACTIONS(3082), + [anon_sym___attribute__] = ACTIONS(3082), + [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3084), + [anon_sym___declspec] = ACTIONS(3082), + [anon_sym___based] = ACTIONS(3082), + [anon_sym_signed] = ACTIONS(3082), + [anon_sym_unsigned] = ACTIONS(3082), + [anon_sym_long] = ACTIONS(3082), + [anon_sym_short] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_register] = ACTIONS(3082), + [anon_sym_inline] = ACTIONS(3082), + [anon_sym___inline] = ACTIONS(3082), + [anon_sym___inline__] = ACTIONS(3082), + [anon_sym___forceinline] = ACTIONS(3082), + [anon_sym_thread_local] = ACTIONS(3082), + [anon_sym___thread] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_constexpr] = ACTIONS(3082), + [anon_sym_volatile] = ACTIONS(3082), + [anon_sym_restrict] = ACTIONS(3082), + [anon_sym___restrict__] = ACTIONS(3082), + [anon_sym__Atomic] = ACTIONS(3082), + [anon_sym__Noreturn] = ACTIONS(3082), + [anon_sym_noreturn] = ACTIONS(3082), + [anon_sym_mutable] = ACTIONS(3082), + [anon_sym_constinit] = ACTIONS(3082), + [anon_sym_consteval] = ACTIONS(3082), + [sym_primitive_type] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_union] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3082), + [anon_sym_decltype] = ACTIONS(3082), + [anon_sym_virtual] = ACTIONS(3082), + [anon_sym_alignas] = ACTIONS(3082), + [anon_sym_explicit] = ACTIONS(3082), + [anon_sym_typename] = ACTIONS(3082), + [anon_sym_template] = ACTIONS(3082), + [anon_sym_operator] = ACTIONS(3082), + [anon_sym_friend] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_static_assert] = ACTIONS(3082), + }, + [2345] = { + [sym_identifier] = ACTIONS(3282), + [aux_sym_preproc_def_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token2] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [aux_sym_preproc_else_token1] = ACTIONS(3282), + [aux_sym_preproc_elif_token1] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym___extension__] = ACTIONS(3282), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym___attribute__] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), + [anon_sym___declspec] = ACTIONS(3282), + [anon_sym___based] = ACTIONS(3282), + [anon_sym_signed] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym___inline] = ACTIONS(3282), + [anon_sym___inline__] = ACTIONS(3282), + [anon_sym___forceinline] = ACTIONS(3282), + [anon_sym_thread_local] = ACTIONS(3282), + [anon_sym___thread] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_constexpr] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym___restrict__] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym__Noreturn] = ACTIONS(3282), + [anon_sym_noreturn] = ACTIONS(3282), + [anon_sym_mutable] = ACTIONS(3282), + [anon_sym_constinit] = ACTIONS(3282), + [anon_sym_consteval] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3282), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_virtual] = ACTIONS(3282), + [anon_sym_alignas] = ACTIONS(3282), + [anon_sym_explicit] = ACTIONS(3282), + [anon_sym_typename] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3282), + [anon_sym_operator] = ACTIONS(3282), + [anon_sym_friend] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_protected] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_static_assert] = ACTIONS(3282), + }, + [2346] = { + [sym_identifier] = ACTIONS(5431), + [aux_sym_preproc_def_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token1] = ACTIONS(5431), + [aux_sym_preproc_if_token2] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5431), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5431), + [aux_sym_preproc_else_token1] = ACTIONS(5431), + [aux_sym_preproc_elif_token1] = ACTIONS(5431), + [sym_preproc_directive] = ACTIONS(5431), + [anon_sym_LPAREN2] = ACTIONS(5433), + [anon_sym_TILDE] = ACTIONS(5433), + [anon_sym_STAR] = ACTIONS(5433), + [anon_sym_AMP_AMP] = ACTIONS(5433), + [anon_sym_AMP] = ACTIONS(5431), + [anon_sym___extension__] = ACTIONS(5431), + [anon_sym_typedef] = ACTIONS(5431), + [anon_sym_extern] = ACTIONS(5431), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym_COLON_COLON] = ACTIONS(5433), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5433), + [anon_sym___declspec] = ACTIONS(5431), + [anon_sym___based] = ACTIONS(5431), + [anon_sym_signed] = ACTIONS(5431), + [anon_sym_unsigned] = ACTIONS(5431), + [anon_sym_long] = ACTIONS(5431), + [anon_sym_short] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5431), + [anon_sym_static] = ACTIONS(5431), + [anon_sym_register] = ACTIONS(5431), + [anon_sym_inline] = ACTIONS(5431), + [anon_sym___inline] = ACTIONS(5431), + [anon_sym___inline__] = ACTIONS(5431), + [anon_sym___forceinline] = ACTIONS(5431), + [anon_sym_thread_local] = ACTIONS(5431), + [anon_sym___thread] = ACTIONS(5431), + [anon_sym_const] = ACTIONS(5431), + [anon_sym_constexpr] = ACTIONS(5431), + [anon_sym_volatile] = ACTIONS(5431), + [anon_sym_restrict] = ACTIONS(5431), + [anon_sym___restrict__] = ACTIONS(5431), + [anon_sym__Atomic] = ACTIONS(5431), + [anon_sym__Noreturn] = ACTIONS(5431), + [anon_sym_noreturn] = ACTIONS(5431), + [anon_sym_mutable] = ACTIONS(5431), + [anon_sym_constinit] = ACTIONS(5431), + [anon_sym_consteval] = ACTIONS(5431), + [sym_primitive_type] = ACTIONS(5431), + [anon_sym_enum] = ACTIONS(5431), + [anon_sym_class] = ACTIONS(5431), + [anon_sym_struct] = ACTIONS(5431), + [anon_sym_union] = ACTIONS(5431), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5431), + [anon_sym_decltype] = ACTIONS(5431), + [anon_sym_virtual] = ACTIONS(5431), + [anon_sym_alignas] = ACTIONS(5431), + [anon_sym_explicit] = ACTIONS(5431), + [anon_sym_typename] = ACTIONS(5431), + [anon_sym_template] = ACTIONS(5431), + [anon_sym_operator] = ACTIONS(5431), + [anon_sym_friend] = ACTIONS(5431), + [anon_sym_public] = ACTIONS(5431), + [anon_sym_private] = ACTIONS(5431), + [anon_sym_protected] = ACTIONS(5431), + [anon_sym_using] = ACTIONS(5431), + [anon_sym_static_assert] = ACTIONS(5431), + }, + [2347] = { + [sym_attribute_declaration] = STATE(2475), + [sym_parameter_list] = STATE(2499), + [aux_sym_attributed_declarator_repeat1] = STATE(2475), + [sym_identifier] = ACTIONS(5897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5899), + [anon_sym_COMMA] = ACTIONS(5899), + [anon_sym_RPAREN] = ACTIONS(5899), + [aux_sym_preproc_if_token2] = ACTIONS(5899), + [aux_sym_preproc_else_token1] = ACTIONS(5899), + [aux_sym_preproc_elif_token1] = ACTIONS(5897), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5899), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5899), + [anon_sym_LPAREN2] = ACTIONS(5829), + [anon_sym_DASH] = ACTIONS(5897), + [anon_sym_PLUS] = ACTIONS(5897), + [anon_sym_STAR] = ACTIONS(5897), + [anon_sym_SLASH] = ACTIONS(5897), + [anon_sym_PERCENT] = ACTIONS(5897), + [anon_sym_PIPE_PIPE] = ACTIONS(5899), + [anon_sym_AMP_AMP] = ACTIONS(5899), + [anon_sym_PIPE] = ACTIONS(5897), + [anon_sym_CARET] = ACTIONS(5897), + [anon_sym_AMP] = ACTIONS(5897), + [anon_sym_EQ_EQ] = ACTIONS(5899), + [anon_sym_BANG_EQ] = ACTIONS(5899), + [anon_sym_GT] = ACTIONS(5897), + [anon_sym_GT_EQ] = ACTIONS(5899), + [anon_sym_LT_EQ] = ACTIONS(5897), + [anon_sym_LT] = ACTIONS(5897), + [anon_sym_LT_LT] = ACTIONS(5897), + [anon_sym_GT_GT] = ACTIONS(5897), + [anon_sym_SEMI] = ACTIONS(5899), + [anon_sym___attribute__] = ACTIONS(5897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5831), + [anon_sym_RBRACE] = ACTIONS(5899), + [anon_sym_LBRACK] = ACTIONS(5833), + [anon_sym_RBRACK] = ACTIONS(5899), + [anon_sym_EQ] = ACTIONS(5897), + [anon_sym_COLON] = ACTIONS(5899), + [anon_sym_QMARK] = ACTIONS(5899), + [anon_sym_STAR_EQ] = ACTIONS(5899), + [anon_sym_SLASH_EQ] = ACTIONS(5899), + [anon_sym_PERCENT_EQ] = ACTIONS(5899), + [anon_sym_PLUS_EQ] = ACTIONS(5899), + [anon_sym_DASH_EQ] = ACTIONS(5899), + [anon_sym_LT_LT_EQ] = ACTIONS(5899), + [anon_sym_GT_GT_EQ] = ACTIONS(5899), + [anon_sym_AMP_EQ] = ACTIONS(5899), + [anon_sym_CARET_EQ] = ACTIONS(5899), + [anon_sym_PIPE_EQ] = ACTIONS(5899), + [anon_sym_and_eq] = ACTIONS(5897), + [anon_sym_or_eq] = ACTIONS(5897), + [anon_sym_xor_eq] = ACTIONS(5897), + [anon_sym_LT_EQ_GT] = ACTIONS(5899), + [anon_sym_or] = ACTIONS(5897), + [anon_sym_and] = ACTIONS(5897), + [anon_sym_bitor] = ACTIONS(5897), + [anon_sym_xor] = ACTIONS(5897), + [anon_sym_bitand] = ACTIONS(5897), + [anon_sym_not_eq] = ACTIONS(5897), + [anon_sym_DASH_DASH] = ACTIONS(5899), + [anon_sym_PLUS_PLUS] = ACTIONS(5899), + [anon_sym_DOT] = ACTIONS(5897), + [anon_sym_DOT_STAR] = ACTIONS(5899), + [anon_sym_DASH_GT] = ACTIONS(5899), + [sym_comment] = ACTIONS(3), + }, + [2348] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [aux_sym_preproc_else_token1] = ACTIONS(3004), + [aux_sym_preproc_elif_token1] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym___extension__] = ACTIONS(3004), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym___inline] = ACTIONS(3004), + [anon_sym___inline__] = ACTIONS(3004), + [anon_sym___forceinline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym___thread] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_alignas] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_friend] = ACTIONS(3004), + [anon_sym_public] = ACTIONS(3004), + [anon_sym_private] = ACTIONS(3004), + [anon_sym_protected] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + }, + [2349] = { + [sym_identifier] = ACTIONS(5439), + [aux_sym_preproc_def_token1] = ACTIONS(5439), + [aux_sym_preproc_if_token1] = ACTIONS(5439), + [aux_sym_preproc_if_token2] = ACTIONS(5439), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5439), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5439), + [aux_sym_preproc_else_token1] = ACTIONS(5439), + [aux_sym_preproc_elif_token1] = ACTIONS(5439), + [sym_preproc_directive] = ACTIONS(5439), + [anon_sym_LPAREN2] = ACTIONS(5441), + [anon_sym_TILDE] = ACTIONS(5441), + [anon_sym_STAR] = ACTIONS(5441), + [anon_sym_AMP_AMP] = ACTIONS(5441), + [anon_sym_AMP] = ACTIONS(5439), + [anon_sym___extension__] = ACTIONS(5439), + [anon_sym_typedef] = ACTIONS(5439), + [anon_sym_extern] = ACTIONS(5439), + [anon_sym___attribute__] = ACTIONS(5439), + [anon_sym_COLON_COLON] = ACTIONS(5441), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5441), + [anon_sym___declspec] = ACTIONS(5439), + [anon_sym___based] = ACTIONS(5439), + [anon_sym_signed] = ACTIONS(5439), + [anon_sym_unsigned] = ACTIONS(5439), + [anon_sym_long] = ACTIONS(5439), + [anon_sym_short] = ACTIONS(5439), + [anon_sym_LBRACK] = ACTIONS(5439), + [anon_sym_static] = ACTIONS(5439), + [anon_sym_register] = ACTIONS(5439), + [anon_sym_inline] = ACTIONS(5439), + [anon_sym___inline] = ACTIONS(5439), + [anon_sym___inline__] = ACTIONS(5439), + [anon_sym___forceinline] = ACTIONS(5439), + [anon_sym_thread_local] = ACTIONS(5439), + [anon_sym___thread] = ACTIONS(5439), + [anon_sym_const] = ACTIONS(5439), + [anon_sym_constexpr] = ACTIONS(5439), + [anon_sym_volatile] = ACTIONS(5439), + [anon_sym_restrict] = ACTIONS(5439), + [anon_sym___restrict__] = ACTIONS(5439), + [anon_sym__Atomic] = ACTIONS(5439), + [anon_sym__Noreturn] = ACTIONS(5439), + [anon_sym_noreturn] = ACTIONS(5439), + [anon_sym_mutable] = ACTIONS(5439), + [anon_sym_constinit] = ACTIONS(5439), + [anon_sym_consteval] = ACTIONS(5439), + [sym_primitive_type] = ACTIONS(5439), + [anon_sym_enum] = ACTIONS(5439), + [anon_sym_class] = ACTIONS(5439), + [anon_sym_struct] = ACTIONS(5439), + [anon_sym_union] = ACTIONS(5439), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5439), + [anon_sym_decltype] = ACTIONS(5439), + [anon_sym_virtual] = ACTIONS(5439), + [anon_sym_alignas] = ACTIONS(5439), + [anon_sym_explicit] = ACTIONS(5439), + [anon_sym_typename] = ACTIONS(5439), + [anon_sym_template] = ACTIONS(5439), + [anon_sym_operator] = ACTIONS(5439), + [anon_sym_friend] = ACTIONS(5439), + [anon_sym_public] = ACTIONS(5439), + [anon_sym_private] = ACTIONS(5439), + [anon_sym_protected] = ACTIONS(5439), + [anon_sym_using] = ACTIONS(5439), + [anon_sym_static_assert] = ACTIONS(5439), + }, + [2350] = { + [sym_identifier] = ACTIONS(3098), + [aux_sym_preproc_def_token1] = ACTIONS(3098), + [aux_sym_preproc_if_token1] = ACTIONS(3098), + [aux_sym_preproc_if_token2] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3098), + [aux_sym_preproc_else_token1] = ACTIONS(3098), + [aux_sym_preproc_elif_token1] = ACTIONS(3098), + [sym_preproc_directive] = ACTIONS(3098), + [anon_sym_LPAREN2] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym___extension__] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3098), + [anon_sym_extern] = ACTIONS(3098), + [anon_sym___attribute__] = ACTIONS(3098), + [anon_sym_COLON_COLON] = ACTIONS(3100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3100), + [anon_sym___declspec] = ACTIONS(3098), + [anon_sym___based] = ACTIONS(3098), + [anon_sym_signed] = ACTIONS(3098), + [anon_sym_unsigned] = ACTIONS(3098), + [anon_sym_long] = ACTIONS(3098), + [anon_sym_short] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3098), + [anon_sym_register] = ACTIONS(3098), + [anon_sym_inline] = ACTIONS(3098), + [anon_sym___inline] = ACTIONS(3098), + [anon_sym___inline__] = ACTIONS(3098), + [anon_sym___forceinline] = ACTIONS(3098), + [anon_sym_thread_local] = ACTIONS(3098), + [anon_sym___thread] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_constexpr] = ACTIONS(3098), + [anon_sym_volatile] = ACTIONS(3098), + [anon_sym_restrict] = ACTIONS(3098), + [anon_sym___restrict__] = ACTIONS(3098), + [anon_sym__Atomic] = ACTIONS(3098), + [anon_sym__Noreturn] = ACTIONS(3098), + [anon_sym_noreturn] = ACTIONS(3098), + [anon_sym_mutable] = ACTIONS(3098), + [anon_sym_constinit] = ACTIONS(3098), + [anon_sym_consteval] = ACTIONS(3098), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(3098), + [anon_sym_union] = ACTIONS(3098), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3098), + [anon_sym_decltype] = ACTIONS(3098), + [anon_sym_virtual] = ACTIONS(3098), + [anon_sym_alignas] = ACTIONS(3098), + [anon_sym_explicit] = ACTIONS(3098), + [anon_sym_typename] = ACTIONS(3098), + [anon_sym_template] = ACTIONS(3098), + [anon_sym_operator] = ACTIONS(3098), + [anon_sym_friend] = ACTIONS(3098), + [anon_sym_public] = ACTIONS(3098), + [anon_sym_private] = ACTIONS(3098), + [anon_sym_protected] = ACTIONS(3098), + [anon_sym_using] = ACTIONS(3098), + [anon_sym_static_assert] = ACTIONS(3098), + }, + [2351] = { + [sym_identifier] = ACTIONS(5483), + [aux_sym_preproc_def_token1] = ACTIONS(5483), + [aux_sym_preproc_if_token1] = ACTIONS(5483), + [aux_sym_preproc_if_token2] = ACTIONS(5483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5483), + [aux_sym_preproc_else_token1] = ACTIONS(5483), + [aux_sym_preproc_elif_token1] = ACTIONS(5483), + [sym_preproc_directive] = ACTIONS(5483), + [anon_sym_LPAREN2] = ACTIONS(5485), + [anon_sym_TILDE] = ACTIONS(5485), + [anon_sym_STAR] = ACTIONS(5485), + [anon_sym_AMP_AMP] = ACTIONS(5485), + [anon_sym_AMP] = ACTIONS(5483), + [anon_sym___extension__] = ACTIONS(5483), + [anon_sym_typedef] = ACTIONS(5483), + [anon_sym_extern] = ACTIONS(5483), + [anon_sym___attribute__] = ACTIONS(5483), + [anon_sym_COLON_COLON] = ACTIONS(5485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5485), + [anon_sym___declspec] = ACTIONS(5483), + [anon_sym___based] = ACTIONS(5483), + [anon_sym_signed] = ACTIONS(5483), + [anon_sym_unsigned] = ACTIONS(5483), + [anon_sym_long] = ACTIONS(5483), + [anon_sym_short] = ACTIONS(5483), + [anon_sym_LBRACK] = ACTIONS(5483), + [anon_sym_static] = ACTIONS(5483), + [anon_sym_register] = ACTIONS(5483), + [anon_sym_inline] = ACTIONS(5483), + [anon_sym___inline] = ACTIONS(5483), + [anon_sym___inline__] = ACTIONS(5483), + [anon_sym___forceinline] = ACTIONS(5483), + [anon_sym_thread_local] = ACTIONS(5483), + [anon_sym___thread] = ACTIONS(5483), + [anon_sym_const] = ACTIONS(5483), + [anon_sym_constexpr] = ACTIONS(5483), + [anon_sym_volatile] = ACTIONS(5483), + [anon_sym_restrict] = ACTIONS(5483), + [anon_sym___restrict__] = ACTIONS(5483), + [anon_sym__Atomic] = ACTIONS(5483), + [anon_sym__Noreturn] = ACTIONS(5483), + [anon_sym_noreturn] = ACTIONS(5483), + [anon_sym_mutable] = ACTIONS(5483), + [anon_sym_constinit] = ACTIONS(5483), + [anon_sym_consteval] = ACTIONS(5483), + [sym_primitive_type] = ACTIONS(5483), + [anon_sym_enum] = ACTIONS(5483), + [anon_sym_class] = ACTIONS(5483), + [anon_sym_struct] = ACTIONS(5483), + [anon_sym_union] = ACTIONS(5483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5483), + [anon_sym_decltype] = ACTIONS(5483), + [anon_sym_virtual] = ACTIONS(5483), + [anon_sym_alignas] = ACTIONS(5483), + [anon_sym_explicit] = ACTIONS(5483), + [anon_sym_typename] = ACTIONS(5483), + [anon_sym_template] = ACTIONS(5483), + [anon_sym_operator] = ACTIONS(5483), + [anon_sym_friend] = ACTIONS(5483), + [anon_sym_public] = ACTIONS(5483), + [anon_sym_private] = ACTIONS(5483), + [anon_sym_protected] = ACTIONS(5483), + [anon_sym_using] = ACTIONS(5483), + [anon_sym_static_assert] = ACTIONS(5483), + }, + [2352] = { + [sym_identifier] = ACTIONS(5405), + [aux_sym_preproc_def_token1] = ACTIONS(5405), + [aux_sym_preproc_if_token1] = ACTIONS(5405), + [aux_sym_preproc_if_token2] = ACTIONS(5405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5405), + [aux_sym_preproc_else_token1] = ACTIONS(5405), + [aux_sym_preproc_elif_token1] = ACTIONS(5405), + [sym_preproc_directive] = ACTIONS(5405), + [anon_sym_LPAREN2] = ACTIONS(5407), + [anon_sym_TILDE] = ACTIONS(5407), + [anon_sym_STAR] = ACTIONS(5407), + [anon_sym_AMP_AMP] = ACTIONS(5407), + [anon_sym_AMP] = ACTIONS(5405), + [anon_sym___extension__] = ACTIONS(5405), + [anon_sym_typedef] = ACTIONS(5405), + [anon_sym_extern] = ACTIONS(5405), + [anon_sym___attribute__] = ACTIONS(5405), + [anon_sym_COLON_COLON] = ACTIONS(5407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5407), + [anon_sym___declspec] = ACTIONS(5405), + [anon_sym___based] = ACTIONS(5405), + [anon_sym_signed] = ACTIONS(5405), + [anon_sym_unsigned] = ACTIONS(5405), + [anon_sym_long] = ACTIONS(5405), + [anon_sym_short] = ACTIONS(5405), + [anon_sym_LBRACK] = ACTIONS(5405), + [anon_sym_static] = ACTIONS(5405), + [anon_sym_register] = ACTIONS(5405), + [anon_sym_inline] = ACTIONS(5405), + [anon_sym___inline] = ACTIONS(5405), + [anon_sym___inline__] = ACTIONS(5405), + [anon_sym___forceinline] = ACTIONS(5405), + [anon_sym_thread_local] = ACTIONS(5405), + [anon_sym___thread] = ACTIONS(5405), + [anon_sym_const] = ACTIONS(5405), + [anon_sym_constexpr] = ACTIONS(5405), + [anon_sym_volatile] = ACTIONS(5405), + [anon_sym_restrict] = ACTIONS(5405), + [anon_sym___restrict__] = ACTIONS(5405), + [anon_sym__Atomic] = ACTIONS(5405), + [anon_sym__Noreturn] = ACTIONS(5405), + [anon_sym_noreturn] = ACTIONS(5405), + [anon_sym_mutable] = ACTIONS(5405), + [anon_sym_constinit] = ACTIONS(5405), + [anon_sym_consteval] = ACTIONS(5405), + [sym_primitive_type] = ACTIONS(5405), + [anon_sym_enum] = ACTIONS(5405), + [anon_sym_class] = ACTIONS(5405), + [anon_sym_struct] = ACTIONS(5405), + [anon_sym_union] = ACTIONS(5405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5405), + [anon_sym_decltype] = ACTIONS(5405), + [anon_sym_virtual] = ACTIONS(5405), + [anon_sym_alignas] = ACTIONS(5405), + [anon_sym_explicit] = ACTIONS(5405), + [anon_sym_typename] = ACTIONS(5405), + [anon_sym_template] = ACTIONS(5405), + [anon_sym_operator] = ACTIONS(5405), + [anon_sym_friend] = ACTIONS(5405), + [anon_sym_public] = ACTIONS(5405), + [anon_sym_private] = ACTIONS(5405), + [anon_sym_protected] = ACTIONS(5405), + [anon_sym_using] = ACTIONS(5405), + [anon_sym_static_assert] = ACTIONS(5405), + }, + [2353] = { + [sym_identifier] = ACTIONS(5447), + [aux_sym_preproc_def_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token2] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5447), + [aux_sym_preproc_else_token1] = ACTIONS(5447), + [aux_sym_preproc_elif_token1] = ACTIONS(5447), + [sym_preproc_directive] = ACTIONS(5447), + [anon_sym_LPAREN2] = ACTIONS(5449), + [anon_sym_TILDE] = ACTIONS(5449), + [anon_sym_STAR] = ACTIONS(5449), + [anon_sym_AMP_AMP] = ACTIONS(5449), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym___extension__] = ACTIONS(5447), + [anon_sym_typedef] = ACTIONS(5447), + [anon_sym_extern] = ACTIONS(5447), + [anon_sym___attribute__] = ACTIONS(5447), + [anon_sym_COLON_COLON] = ACTIONS(5449), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5449), + [anon_sym___declspec] = ACTIONS(5447), + [anon_sym___based] = ACTIONS(5447), + [anon_sym_signed] = ACTIONS(5447), + [anon_sym_unsigned] = ACTIONS(5447), + [anon_sym_long] = ACTIONS(5447), + [anon_sym_short] = ACTIONS(5447), + [anon_sym_LBRACK] = ACTIONS(5447), + [anon_sym_static] = ACTIONS(5447), + [anon_sym_register] = ACTIONS(5447), + [anon_sym_inline] = ACTIONS(5447), + [anon_sym___inline] = ACTIONS(5447), + [anon_sym___inline__] = ACTIONS(5447), + [anon_sym___forceinline] = ACTIONS(5447), + [anon_sym_thread_local] = ACTIONS(5447), + [anon_sym___thread] = ACTIONS(5447), + [anon_sym_const] = ACTIONS(5447), + [anon_sym_constexpr] = ACTIONS(5447), + [anon_sym_volatile] = ACTIONS(5447), + [anon_sym_restrict] = ACTIONS(5447), + [anon_sym___restrict__] = ACTIONS(5447), + [anon_sym__Atomic] = ACTIONS(5447), + [anon_sym__Noreturn] = ACTIONS(5447), + [anon_sym_noreturn] = ACTIONS(5447), + [anon_sym_mutable] = ACTIONS(5447), + [anon_sym_constinit] = ACTIONS(5447), + [anon_sym_consteval] = ACTIONS(5447), + [sym_primitive_type] = ACTIONS(5447), + [anon_sym_enum] = ACTIONS(5447), + [anon_sym_class] = ACTIONS(5447), + [anon_sym_struct] = ACTIONS(5447), + [anon_sym_union] = ACTIONS(5447), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5447), + [anon_sym_decltype] = ACTIONS(5447), + [anon_sym_virtual] = ACTIONS(5447), + [anon_sym_alignas] = ACTIONS(5447), + [anon_sym_explicit] = ACTIONS(5447), + [anon_sym_typename] = ACTIONS(5447), + [anon_sym_template] = ACTIONS(5447), + [anon_sym_operator] = ACTIONS(5447), + [anon_sym_friend] = ACTIONS(5447), + [anon_sym_public] = ACTIONS(5447), + [anon_sym_private] = ACTIONS(5447), + [anon_sym_protected] = ACTIONS(5447), + [anon_sym_using] = ACTIONS(5447), + [anon_sym_static_assert] = ACTIONS(5447), + }, + [2354] = { + [sym_identifier] = ACTIONS(5405), + [aux_sym_preproc_def_token1] = ACTIONS(5405), + [aux_sym_preproc_if_token1] = ACTIONS(5405), + [aux_sym_preproc_if_token2] = ACTIONS(5405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5405), + [aux_sym_preproc_else_token1] = ACTIONS(5405), + [aux_sym_preproc_elif_token1] = ACTIONS(5405), + [sym_preproc_directive] = ACTIONS(5405), + [anon_sym_LPAREN2] = ACTIONS(5407), + [anon_sym_TILDE] = ACTIONS(5407), + [anon_sym_STAR] = ACTIONS(5407), + [anon_sym_AMP_AMP] = ACTIONS(5407), + [anon_sym_AMP] = ACTIONS(5405), + [anon_sym___extension__] = ACTIONS(5405), + [anon_sym_typedef] = ACTIONS(5405), + [anon_sym_extern] = ACTIONS(5405), + [anon_sym___attribute__] = ACTIONS(5405), + [anon_sym_COLON_COLON] = ACTIONS(5407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5407), + [anon_sym___declspec] = ACTIONS(5405), + [anon_sym___based] = ACTIONS(5405), + [anon_sym_signed] = ACTIONS(5405), + [anon_sym_unsigned] = ACTIONS(5405), + [anon_sym_long] = ACTIONS(5405), + [anon_sym_short] = ACTIONS(5405), + [anon_sym_LBRACK] = ACTIONS(5405), + [anon_sym_static] = ACTIONS(5405), + [anon_sym_register] = ACTIONS(5405), + [anon_sym_inline] = ACTIONS(5405), + [anon_sym___inline] = ACTIONS(5405), + [anon_sym___inline__] = ACTIONS(5405), + [anon_sym___forceinline] = ACTIONS(5405), + [anon_sym_thread_local] = ACTIONS(5405), + [anon_sym___thread] = ACTIONS(5405), + [anon_sym_const] = ACTIONS(5405), + [anon_sym_constexpr] = ACTIONS(5405), + [anon_sym_volatile] = ACTIONS(5405), + [anon_sym_restrict] = ACTIONS(5405), + [anon_sym___restrict__] = ACTIONS(5405), + [anon_sym__Atomic] = ACTIONS(5405), + [anon_sym__Noreturn] = ACTIONS(5405), + [anon_sym_noreturn] = ACTIONS(5405), + [anon_sym_mutable] = ACTIONS(5405), + [anon_sym_constinit] = ACTIONS(5405), + [anon_sym_consteval] = ACTIONS(5405), + [sym_primitive_type] = ACTIONS(5405), + [anon_sym_enum] = ACTIONS(5405), + [anon_sym_class] = ACTIONS(5405), + [anon_sym_struct] = ACTIONS(5405), + [anon_sym_union] = ACTIONS(5405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5405), + [anon_sym_decltype] = ACTIONS(5405), + [anon_sym_virtual] = ACTIONS(5405), + [anon_sym_alignas] = ACTIONS(5405), + [anon_sym_explicit] = ACTIONS(5405), + [anon_sym_typename] = ACTIONS(5405), + [anon_sym_template] = ACTIONS(5405), + [anon_sym_operator] = ACTIONS(5405), + [anon_sym_friend] = ACTIONS(5405), + [anon_sym_public] = ACTIONS(5405), + [anon_sym_private] = ACTIONS(5405), + [anon_sym_protected] = ACTIONS(5405), + [anon_sym_using] = ACTIONS(5405), + [anon_sym_static_assert] = ACTIONS(5405), + }, + [2355] = { + [sym_identifier] = ACTIONS(5447), + [aux_sym_preproc_def_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token1] = ACTIONS(5447), + [aux_sym_preproc_if_token2] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5447), + [aux_sym_preproc_else_token1] = ACTIONS(5447), + [aux_sym_preproc_elif_token1] = ACTIONS(5447), + [sym_preproc_directive] = ACTIONS(5447), + [anon_sym_LPAREN2] = ACTIONS(5449), + [anon_sym_TILDE] = ACTIONS(5449), + [anon_sym_STAR] = ACTIONS(5449), + [anon_sym_AMP_AMP] = ACTIONS(5449), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym___extension__] = ACTIONS(5447), + [anon_sym_typedef] = ACTIONS(5447), + [anon_sym_extern] = ACTIONS(5447), + [anon_sym___attribute__] = ACTIONS(5447), + [anon_sym_COLON_COLON] = ACTIONS(5449), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5449), + [anon_sym___declspec] = ACTIONS(5447), + [anon_sym___based] = ACTIONS(5447), + [anon_sym_signed] = ACTIONS(5447), + [anon_sym_unsigned] = ACTIONS(5447), + [anon_sym_long] = ACTIONS(5447), + [anon_sym_short] = ACTIONS(5447), + [anon_sym_LBRACK] = ACTIONS(5447), + [anon_sym_static] = ACTIONS(5447), + [anon_sym_register] = ACTIONS(5447), + [anon_sym_inline] = ACTIONS(5447), + [anon_sym___inline] = ACTIONS(5447), + [anon_sym___inline__] = ACTIONS(5447), + [anon_sym___forceinline] = ACTIONS(5447), + [anon_sym_thread_local] = ACTIONS(5447), + [anon_sym___thread] = ACTIONS(5447), + [anon_sym_const] = ACTIONS(5447), + [anon_sym_constexpr] = ACTIONS(5447), + [anon_sym_volatile] = ACTIONS(5447), + [anon_sym_restrict] = ACTIONS(5447), + [anon_sym___restrict__] = ACTIONS(5447), + [anon_sym__Atomic] = ACTIONS(5447), + [anon_sym__Noreturn] = ACTIONS(5447), + [anon_sym_noreturn] = ACTIONS(5447), + [anon_sym_mutable] = ACTIONS(5447), + [anon_sym_constinit] = ACTIONS(5447), + [anon_sym_consteval] = ACTIONS(5447), + [sym_primitive_type] = ACTIONS(5447), + [anon_sym_enum] = ACTIONS(5447), + [anon_sym_class] = ACTIONS(5447), + [anon_sym_struct] = ACTIONS(5447), + [anon_sym_union] = ACTIONS(5447), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5447), + [anon_sym_decltype] = ACTIONS(5447), + [anon_sym_virtual] = ACTIONS(5447), + [anon_sym_alignas] = ACTIONS(5447), + [anon_sym_explicit] = ACTIONS(5447), + [anon_sym_typename] = ACTIONS(5447), + [anon_sym_template] = ACTIONS(5447), + [anon_sym_operator] = ACTIONS(5447), + [anon_sym_friend] = ACTIONS(5447), + [anon_sym_public] = ACTIONS(5447), + [anon_sym_private] = ACTIONS(5447), + [anon_sym_protected] = ACTIONS(5447), + [anon_sym_using] = ACTIONS(5447), + [anon_sym_static_assert] = ACTIONS(5447), + }, + [2356] = { + [sym_identifier] = ACTIONS(5451), + [aux_sym_preproc_def_token1] = ACTIONS(5451), + [aux_sym_preproc_if_token1] = ACTIONS(5451), + [aux_sym_preproc_if_token2] = ACTIONS(5451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5451), + [aux_sym_preproc_else_token1] = ACTIONS(5451), + [aux_sym_preproc_elif_token1] = ACTIONS(5451), + [sym_preproc_directive] = ACTIONS(5451), + [anon_sym_LPAREN2] = ACTIONS(5453), + [anon_sym_TILDE] = ACTIONS(5453), + [anon_sym_STAR] = ACTIONS(5453), + [anon_sym_AMP_AMP] = ACTIONS(5453), + [anon_sym_AMP] = ACTIONS(5451), + [anon_sym___extension__] = ACTIONS(5451), + [anon_sym_typedef] = ACTIONS(5451), + [anon_sym_extern] = ACTIONS(5451), + [anon_sym___attribute__] = ACTIONS(5451), + [anon_sym_COLON_COLON] = ACTIONS(5453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5453), + [anon_sym___declspec] = ACTIONS(5451), + [anon_sym___based] = ACTIONS(5451), + [anon_sym_signed] = ACTIONS(5451), + [anon_sym_unsigned] = ACTIONS(5451), + [anon_sym_long] = ACTIONS(5451), + [anon_sym_short] = ACTIONS(5451), + [anon_sym_LBRACK] = ACTIONS(5451), + [anon_sym_static] = ACTIONS(5451), + [anon_sym_register] = ACTIONS(5451), + [anon_sym_inline] = ACTIONS(5451), + [anon_sym___inline] = ACTIONS(5451), + [anon_sym___inline__] = ACTIONS(5451), + [anon_sym___forceinline] = ACTIONS(5451), + [anon_sym_thread_local] = ACTIONS(5451), + [anon_sym___thread] = ACTIONS(5451), + [anon_sym_const] = ACTIONS(5451), + [anon_sym_constexpr] = ACTIONS(5451), + [anon_sym_volatile] = ACTIONS(5451), + [anon_sym_restrict] = ACTIONS(5451), + [anon_sym___restrict__] = ACTIONS(5451), + [anon_sym__Atomic] = ACTIONS(5451), + [anon_sym__Noreturn] = ACTIONS(5451), + [anon_sym_noreturn] = ACTIONS(5451), + [anon_sym_mutable] = ACTIONS(5451), + [anon_sym_constinit] = ACTIONS(5451), + [anon_sym_consteval] = ACTIONS(5451), + [sym_primitive_type] = ACTIONS(5451), + [anon_sym_enum] = ACTIONS(5451), + [anon_sym_class] = ACTIONS(5451), + [anon_sym_struct] = ACTIONS(5451), + [anon_sym_union] = ACTIONS(5451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5451), + [anon_sym_decltype] = ACTIONS(5451), + [anon_sym_virtual] = ACTIONS(5451), + [anon_sym_alignas] = ACTIONS(5451), + [anon_sym_explicit] = ACTIONS(5451), + [anon_sym_typename] = ACTIONS(5451), + [anon_sym_template] = ACTIONS(5451), + [anon_sym_operator] = ACTIONS(5451), + [anon_sym_friend] = ACTIONS(5451), + [anon_sym_public] = ACTIONS(5451), + [anon_sym_private] = ACTIONS(5451), + [anon_sym_protected] = ACTIONS(5451), + [anon_sym_using] = ACTIONS(5451), + [anon_sym_static_assert] = ACTIONS(5451), + }, + [2357] = { + [sym_identifier] = ACTIONS(3147), + [aux_sym_preproc_def_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3147), + [aux_sym_preproc_if_token2] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3147), + [aux_sym_preproc_else_token1] = ACTIONS(3147), + [aux_sym_preproc_elif_token1] = ACTIONS(3147), + [sym_preproc_directive] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_AMP_AMP] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3147), + [anon_sym_typedef] = ACTIONS(3147), + [anon_sym_extern] = ACTIONS(3147), + [anon_sym___attribute__] = ACTIONS(3147), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3149), + [anon_sym___declspec] = ACTIONS(3147), + [anon_sym___based] = ACTIONS(3147), + [anon_sym_signed] = ACTIONS(3147), + [anon_sym_unsigned] = ACTIONS(3147), + [anon_sym_long] = ACTIONS(3147), + [anon_sym_short] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_register] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym___inline] = ACTIONS(3147), + [anon_sym___inline__] = ACTIONS(3147), + [anon_sym___forceinline] = ACTIONS(3147), + [anon_sym_thread_local] = ACTIONS(3147), + [anon_sym___thread] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_constexpr] = ACTIONS(3147), + [anon_sym_volatile] = ACTIONS(3147), + [anon_sym_restrict] = ACTIONS(3147), + [anon_sym___restrict__] = ACTIONS(3147), + [anon_sym__Atomic] = ACTIONS(3147), + [anon_sym__Noreturn] = ACTIONS(3147), + [anon_sym_noreturn] = ACTIONS(3147), + [anon_sym_mutable] = ACTIONS(3147), + [anon_sym_constinit] = ACTIONS(3147), + [anon_sym_consteval] = ACTIONS(3147), + [sym_primitive_type] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3147), + [anon_sym_decltype] = ACTIONS(3147), + [anon_sym_virtual] = ACTIONS(3147), + [anon_sym_alignas] = ACTIONS(3147), + [anon_sym_explicit] = ACTIONS(3147), + [anon_sym_typename] = ACTIONS(3147), + [anon_sym_template] = ACTIONS(3147), + [anon_sym_operator] = ACTIONS(3147), + [anon_sym_friend] = ACTIONS(3147), + [anon_sym_public] = ACTIONS(3147), + [anon_sym_private] = ACTIONS(3147), + [anon_sym_protected] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3147), + [anon_sym_static_assert] = ACTIONS(3147), + }, + [2358] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5264), + [anon_sym_COMMA] = ACTIONS(5264), + [anon_sym_RPAREN] = ACTIONS(5264), + [anon_sym_LPAREN2] = ACTIONS(5264), + [anon_sym_DASH] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5262), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5262), + [anon_sym_PERCENT] = ACTIONS(5262), + [anon_sym_PIPE_PIPE] = ACTIONS(5264), + [anon_sym_AMP_AMP] = ACTIONS(5264), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5264), + [anon_sym_BANG_EQ] = ACTIONS(5264), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5264), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(5262), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5264), + [anon_sym_RBRACE] = ACTIONS(5264), + [anon_sym_LBRACK] = ACTIONS(5264), + [anon_sym_RBRACK] = ACTIONS(5264), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_QMARK] = ACTIONS(5264), + [anon_sym_STAR_EQ] = ACTIONS(5264), + [anon_sym_SLASH_EQ] = ACTIONS(5264), + [anon_sym_PERCENT_EQ] = ACTIONS(5264), + [anon_sym_PLUS_EQ] = ACTIONS(5264), + [anon_sym_DASH_EQ] = ACTIONS(5264), + [anon_sym_LT_LT_EQ] = ACTIONS(5264), + [anon_sym_GT_GT_EQ] = ACTIONS(5264), + [anon_sym_AMP_EQ] = ACTIONS(5264), + [anon_sym_CARET_EQ] = ACTIONS(5264), + [anon_sym_PIPE_EQ] = ACTIONS(5264), + [anon_sym_and_eq] = ACTIONS(5262), + [anon_sym_or_eq] = ACTIONS(5262), + [anon_sym_xor_eq] = ACTIONS(5262), + [anon_sym_LT_EQ_GT] = ACTIONS(5264), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5262), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5262), + [anon_sym_not_eq] = ACTIONS(5262), + [anon_sym_DASH_DASH] = ACTIONS(5264), + [anon_sym_PLUS_PLUS] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5264), + [anon_sym_DASH_GT] = ACTIONS(5264), + [anon_sym_L_DQUOTE] = ACTIONS(5264), + [anon_sym_u_DQUOTE] = ACTIONS(5264), + [anon_sym_U_DQUOTE] = ACTIONS(5264), + [anon_sym_u8_DQUOTE] = ACTIONS(5264), + [anon_sym_DQUOTE] = ACTIONS(5264), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5264), + [anon_sym_LR_DQUOTE] = ACTIONS(5264), + [anon_sym_uR_DQUOTE] = ACTIONS(5264), + [anon_sym_UR_DQUOTE] = ACTIONS(5264), + [anon_sym_u8R_DQUOTE] = ACTIONS(5264), + [sym_literal_suffix] = ACTIONS(5262), + }, + [2359] = { + [sym_template_argument_list] = STATE(1974), + [aux_sym_sized_type_specifier_repeat1] = STATE(2517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5595), + [anon_sym_COMMA] = ACTIONS(5595), + [anon_sym_RPAREN] = 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(5595), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(5595), + [anon_sym_RBRACE] = ACTIONS(5595), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(5595), + [anon_sym_RBRACK] = ACTIONS(5595), + [anon_sym_EQ] = ACTIONS(5593), + [anon_sym_COLON] = 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(5595), + [anon_sym_or_eq] = ACTIONS(5595), + [anon_sym_xor_eq] = ACTIONS(5595), + [anon_sym_LT_EQ_GT] = ACTIONS(5595), + [anon_sym_or] = ACTIONS(5593), + [anon_sym_and] = ACTIONS(5593), + [anon_sym_bitor] = ACTIONS(5595), + [anon_sym_xor] = ACTIONS(5593), + [anon_sym_bitand] = ACTIONS(5595), + [anon_sym_not_eq] = ACTIONS(5595), + [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), + [sym_auto] = ACTIONS(5595), + [anon_sym_decltype] = ACTIONS(5595), + }, + [2360] = { + [sym_identifier] = ACTIONS(5455), + [aux_sym_preproc_def_token1] = ACTIONS(5455), + [aux_sym_preproc_if_token1] = ACTIONS(5455), + [aux_sym_preproc_if_token2] = ACTIONS(5455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5455), + [aux_sym_preproc_else_token1] = ACTIONS(5455), + [aux_sym_preproc_elif_token1] = ACTIONS(5455), + [sym_preproc_directive] = ACTIONS(5455), + [anon_sym_LPAREN2] = ACTIONS(5457), + [anon_sym_TILDE] = ACTIONS(5457), + [anon_sym_STAR] = ACTIONS(5457), + [anon_sym_AMP_AMP] = ACTIONS(5457), + [anon_sym_AMP] = ACTIONS(5455), + [anon_sym___extension__] = ACTIONS(5455), + [anon_sym_typedef] = ACTIONS(5455), + [anon_sym_extern] = ACTIONS(5455), + [anon_sym___attribute__] = ACTIONS(5455), + [anon_sym_COLON_COLON] = ACTIONS(5457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5457), + [anon_sym___declspec] = ACTIONS(5455), + [anon_sym___based] = ACTIONS(5455), + [anon_sym_signed] = ACTIONS(5455), + [anon_sym_unsigned] = ACTIONS(5455), + [anon_sym_long] = ACTIONS(5455), + [anon_sym_short] = ACTIONS(5455), + [anon_sym_LBRACK] = ACTIONS(5455), + [anon_sym_static] = ACTIONS(5455), + [anon_sym_register] = ACTIONS(5455), + [anon_sym_inline] = ACTIONS(5455), + [anon_sym___inline] = ACTIONS(5455), + [anon_sym___inline__] = ACTIONS(5455), + [anon_sym___forceinline] = ACTIONS(5455), + [anon_sym_thread_local] = ACTIONS(5455), + [anon_sym___thread] = ACTIONS(5455), + [anon_sym_const] = ACTIONS(5455), + [anon_sym_constexpr] = ACTIONS(5455), + [anon_sym_volatile] = ACTIONS(5455), + [anon_sym_restrict] = ACTIONS(5455), + [anon_sym___restrict__] = ACTIONS(5455), + [anon_sym__Atomic] = ACTIONS(5455), + [anon_sym__Noreturn] = ACTIONS(5455), + [anon_sym_noreturn] = ACTIONS(5455), + [anon_sym_mutable] = ACTIONS(5455), + [anon_sym_constinit] = ACTIONS(5455), + [anon_sym_consteval] = ACTIONS(5455), + [sym_primitive_type] = ACTIONS(5455), + [anon_sym_enum] = ACTIONS(5455), + [anon_sym_class] = ACTIONS(5455), + [anon_sym_struct] = ACTIONS(5455), + [anon_sym_union] = ACTIONS(5455), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5455), + [anon_sym_decltype] = ACTIONS(5455), + [anon_sym_virtual] = ACTIONS(5455), + [anon_sym_alignas] = ACTIONS(5455), + [anon_sym_explicit] = ACTIONS(5455), + [anon_sym_typename] = ACTIONS(5455), + [anon_sym_template] = ACTIONS(5455), + [anon_sym_operator] = ACTIONS(5455), + [anon_sym_friend] = ACTIONS(5455), + [anon_sym_public] = ACTIONS(5455), + [anon_sym_private] = ACTIONS(5455), + [anon_sym_protected] = ACTIONS(5455), + [anon_sym_using] = ACTIONS(5455), + [anon_sym_static_assert] = ACTIONS(5455), + }, + [2361] = { + [sym_identifier] = ACTIONS(5459), + [aux_sym_preproc_def_token1] = ACTIONS(5459), + [aux_sym_preproc_if_token1] = ACTIONS(5459), + [aux_sym_preproc_if_token2] = ACTIONS(5459), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5459), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5459), + [aux_sym_preproc_else_token1] = ACTIONS(5459), + [aux_sym_preproc_elif_token1] = ACTIONS(5459), + [sym_preproc_directive] = ACTIONS(5459), + [anon_sym_LPAREN2] = ACTIONS(5461), + [anon_sym_TILDE] = ACTIONS(5461), + [anon_sym_STAR] = ACTIONS(5461), + [anon_sym_AMP_AMP] = ACTIONS(5461), + [anon_sym_AMP] = ACTIONS(5459), + [anon_sym___extension__] = ACTIONS(5459), + [anon_sym_typedef] = ACTIONS(5459), + [anon_sym_extern] = ACTIONS(5459), + [anon_sym___attribute__] = ACTIONS(5459), + [anon_sym_COLON_COLON] = ACTIONS(5461), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5461), + [anon_sym___declspec] = ACTIONS(5459), + [anon_sym___based] = ACTIONS(5459), + [anon_sym_signed] = ACTIONS(5459), + [anon_sym_unsigned] = ACTIONS(5459), + [anon_sym_long] = ACTIONS(5459), + [anon_sym_short] = ACTIONS(5459), + [anon_sym_LBRACK] = ACTIONS(5459), + [anon_sym_static] = ACTIONS(5459), + [anon_sym_register] = ACTIONS(5459), + [anon_sym_inline] = ACTIONS(5459), + [anon_sym___inline] = ACTIONS(5459), + [anon_sym___inline__] = ACTIONS(5459), + [anon_sym___forceinline] = ACTIONS(5459), + [anon_sym_thread_local] = ACTIONS(5459), + [anon_sym___thread] = ACTIONS(5459), + [anon_sym_const] = ACTIONS(5459), + [anon_sym_constexpr] = ACTIONS(5459), + [anon_sym_volatile] = ACTIONS(5459), + [anon_sym_restrict] = ACTIONS(5459), + [anon_sym___restrict__] = ACTIONS(5459), + [anon_sym__Atomic] = ACTIONS(5459), + [anon_sym__Noreturn] = ACTIONS(5459), + [anon_sym_noreturn] = ACTIONS(5459), + [anon_sym_mutable] = ACTIONS(5459), + [anon_sym_constinit] = ACTIONS(5459), + [anon_sym_consteval] = ACTIONS(5459), + [sym_primitive_type] = ACTIONS(5459), + [anon_sym_enum] = ACTIONS(5459), + [anon_sym_class] = ACTIONS(5459), + [anon_sym_struct] = ACTIONS(5459), + [anon_sym_union] = ACTIONS(5459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5459), + [anon_sym_decltype] = ACTIONS(5459), + [anon_sym_virtual] = ACTIONS(5459), + [anon_sym_alignas] = ACTIONS(5459), + [anon_sym_explicit] = ACTIONS(5459), + [anon_sym_typename] = ACTIONS(5459), + [anon_sym_template] = ACTIONS(5459), + [anon_sym_operator] = ACTIONS(5459), + [anon_sym_friend] = ACTIONS(5459), + [anon_sym_public] = ACTIONS(5459), + [anon_sym_private] = ACTIONS(5459), + [anon_sym_protected] = ACTIONS(5459), + [anon_sym_using] = ACTIONS(5459), + [anon_sym_static_assert] = ACTIONS(5459), + }, + [2362] = { + [sym_identifier] = ACTIONS(5463), + [aux_sym_preproc_def_token1] = ACTIONS(5463), + [aux_sym_preproc_if_token1] = ACTIONS(5463), + [aux_sym_preproc_if_token2] = ACTIONS(5463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5463), + [aux_sym_preproc_else_token1] = ACTIONS(5463), + [aux_sym_preproc_elif_token1] = ACTIONS(5463), + [sym_preproc_directive] = ACTIONS(5463), + [anon_sym_LPAREN2] = ACTIONS(5465), + [anon_sym_TILDE] = ACTIONS(5465), + [anon_sym_STAR] = ACTIONS(5465), + [anon_sym_AMP_AMP] = ACTIONS(5465), + [anon_sym_AMP] = ACTIONS(5463), + [anon_sym___extension__] = ACTIONS(5463), + [anon_sym_typedef] = ACTIONS(5463), + [anon_sym_extern] = ACTIONS(5463), + [anon_sym___attribute__] = ACTIONS(5463), + [anon_sym_COLON_COLON] = ACTIONS(5465), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5465), + [anon_sym___declspec] = ACTIONS(5463), + [anon_sym___based] = ACTIONS(5463), + [anon_sym_signed] = ACTIONS(5463), + [anon_sym_unsigned] = ACTIONS(5463), + [anon_sym_long] = ACTIONS(5463), + [anon_sym_short] = ACTIONS(5463), + [anon_sym_LBRACK] = ACTIONS(5463), + [anon_sym_static] = ACTIONS(5463), + [anon_sym_register] = ACTIONS(5463), + [anon_sym_inline] = ACTIONS(5463), + [anon_sym___inline] = ACTIONS(5463), + [anon_sym___inline__] = ACTIONS(5463), + [anon_sym___forceinline] = ACTIONS(5463), + [anon_sym_thread_local] = ACTIONS(5463), + [anon_sym___thread] = ACTIONS(5463), + [anon_sym_const] = ACTIONS(5463), + [anon_sym_constexpr] = ACTIONS(5463), + [anon_sym_volatile] = ACTIONS(5463), + [anon_sym_restrict] = ACTIONS(5463), + [anon_sym___restrict__] = ACTIONS(5463), + [anon_sym__Atomic] = ACTIONS(5463), + [anon_sym__Noreturn] = ACTIONS(5463), + [anon_sym_noreturn] = ACTIONS(5463), + [anon_sym_mutable] = ACTIONS(5463), + [anon_sym_constinit] = ACTIONS(5463), + [anon_sym_consteval] = ACTIONS(5463), + [sym_primitive_type] = ACTIONS(5463), + [anon_sym_enum] = ACTIONS(5463), + [anon_sym_class] = ACTIONS(5463), + [anon_sym_struct] = ACTIONS(5463), + [anon_sym_union] = ACTIONS(5463), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5463), + [anon_sym_decltype] = ACTIONS(5463), + [anon_sym_virtual] = ACTIONS(5463), + [anon_sym_alignas] = ACTIONS(5463), + [anon_sym_explicit] = ACTIONS(5463), + [anon_sym_typename] = ACTIONS(5463), + [anon_sym_template] = ACTIONS(5463), + [anon_sym_operator] = ACTIONS(5463), + [anon_sym_friend] = ACTIONS(5463), + [anon_sym_public] = ACTIONS(5463), + [anon_sym_private] = ACTIONS(5463), + [anon_sym_protected] = ACTIONS(5463), + [anon_sym_using] = ACTIONS(5463), + [anon_sym_static_assert] = ACTIONS(5463), + }, + [2363] = { + [sym_identifier] = ACTIONS(5467), + [aux_sym_preproc_def_token1] = ACTIONS(5467), + [aux_sym_preproc_if_token1] = ACTIONS(5467), + [aux_sym_preproc_if_token2] = ACTIONS(5467), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5467), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5467), + [aux_sym_preproc_else_token1] = ACTIONS(5467), + [aux_sym_preproc_elif_token1] = ACTIONS(5467), + [sym_preproc_directive] = ACTIONS(5467), + [anon_sym_LPAREN2] = ACTIONS(5469), + [anon_sym_TILDE] = ACTIONS(5469), + [anon_sym_STAR] = ACTIONS(5469), + [anon_sym_AMP_AMP] = ACTIONS(5469), + [anon_sym_AMP] = ACTIONS(5467), + [anon_sym___extension__] = ACTIONS(5467), + [anon_sym_typedef] = ACTIONS(5467), + [anon_sym_extern] = ACTIONS(5467), + [anon_sym___attribute__] = ACTIONS(5467), + [anon_sym_COLON_COLON] = ACTIONS(5469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5469), + [anon_sym___declspec] = ACTIONS(5467), + [anon_sym___based] = ACTIONS(5467), + [anon_sym_signed] = ACTIONS(5467), + [anon_sym_unsigned] = ACTIONS(5467), + [anon_sym_long] = ACTIONS(5467), + [anon_sym_short] = ACTIONS(5467), + [anon_sym_LBRACK] = ACTIONS(5467), + [anon_sym_static] = ACTIONS(5467), + [anon_sym_register] = ACTIONS(5467), + [anon_sym_inline] = ACTIONS(5467), + [anon_sym___inline] = ACTIONS(5467), + [anon_sym___inline__] = ACTIONS(5467), + [anon_sym___forceinline] = ACTIONS(5467), + [anon_sym_thread_local] = ACTIONS(5467), + [anon_sym___thread] = ACTIONS(5467), + [anon_sym_const] = ACTIONS(5467), + [anon_sym_constexpr] = ACTIONS(5467), + [anon_sym_volatile] = ACTIONS(5467), + [anon_sym_restrict] = ACTIONS(5467), + [anon_sym___restrict__] = ACTIONS(5467), + [anon_sym__Atomic] = ACTIONS(5467), + [anon_sym__Noreturn] = ACTIONS(5467), + [anon_sym_noreturn] = ACTIONS(5467), + [anon_sym_mutable] = ACTIONS(5467), + [anon_sym_constinit] = ACTIONS(5467), + [anon_sym_consteval] = ACTIONS(5467), + [sym_primitive_type] = ACTIONS(5467), + [anon_sym_enum] = ACTIONS(5467), + [anon_sym_class] = ACTIONS(5467), + [anon_sym_struct] = ACTIONS(5467), + [anon_sym_union] = ACTIONS(5467), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5467), + [anon_sym_decltype] = ACTIONS(5467), + [anon_sym_virtual] = ACTIONS(5467), + [anon_sym_alignas] = ACTIONS(5467), + [anon_sym_explicit] = ACTIONS(5467), + [anon_sym_typename] = ACTIONS(5467), + [anon_sym_template] = ACTIONS(5467), + [anon_sym_operator] = ACTIONS(5467), + [anon_sym_friend] = ACTIONS(5467), + [anon_sym_public] = ACTIONS(5467), + [anon_sym_private] = ACTIONS(5467), + [anon_sym_protected] = ACTIONS(5467), + [anon_sym_using] = ACTIONS(5467), + [anon_sym_static_assert] = ACTIONS(5467), + }, + [2364] = { + [sym_identifier] = ACTIONS(5491), + [aux_sym_preproc_def_token1] = ACTIONS(5491), + [aux_sym_preproc_if_token1] = ACTIONS(5491), + [aux_sym_preproc_if_token2] = ACTIONS(5491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5491), + [aux_sym_preproc_else_token1] = ACTIONS(5491), + [aux_sym_preproc_elif_token1] = ACTIONS(5491), + [sym_preproc_directive] = ACTIONS(5491), + [anon_sym_LPAREN2] = ACTIONS(5493), + [anon_sym_TILDE] = ACTIONS(5493), + [anon_sym_STAR] = ACTIONS(5493), + [anon_sym_AMP_AMP] = ACTIONS(5493), + [anon_sym_AMP] = ACTIONS(5491), + [anon_sym___extension__] = ACTIONS(5491), + [anon_sym_typedef] = ACTIONS(5491), + [anon_sym_extern] = ACTIONS(5491), + [anon_sym___attribute__] = ACTIONS(5491), + [anon_sym_COLON_COLON] = ACTIONS(5493), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5493), + [anon_sym___declspec] = ACTIONS(5491), + [anon_sym___based] = ACTIONS(5491), + [anon_sym_signed] = ACTIONS(5491), + [anon_sym_unsigned] = ACTIONS(5491), + [anon_sym_long] = ACTIONS(5491), + [anon_sym_short] = ACTIONS(5491), + [anon_sym_LBRACK] = ACTIONS(5491), + [anon_sym_static] = ACTIONS(5491), + [anon_sym_register] = ACTIONS(5491), + [anon_sym_inline] = ACTIONS(5491), + [anon_sym___inline] = ACTIONS(5491), + [anon_sym___inline__] = ACTIONS(5491), + [anon_sym___forceinline] = ACTIONS(5491), + [anon_sym_thread_local] = ACTIONS(5491), + [anon_sym___thread] = ACTIONS(5491), + [anon_sym_const] = ACTIONS(5491), + [anon_sym_constexpr] = ACTIONS(5491), + [anon_sym_volatile] = ACTIONS(5491), + [anon_sym_restrict] = ACTIONS(5491), + [anon_sym___restrict__] = ACTIONS(5491), + [anon_sym__Atomic] = ACTIONS(5491), + [anon_sym__Noreturn] = ACTIONS(5491), + [anon_sym_noreturn] = ACTIONS(5491), + [anon_sym_mutable] = ACTIONS(5491), + [anon_sym_constinit] = ACTIONS(5491), + [anon_sym_consteval] = ACTIONS(5491), + [sym_primitive_type] = ACTIONS(5491), + [anon_sym_enum] = ACTIONS(5491), + [anon_sym_class] = ACTIONS(5491), + [anon_sym_struct] = ACTIONS(5491), + [anon_sym_union] = ACTIONS(5491), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5491), + [anon_sym_decltype] = ACTIONS(5491), + [anon_sym_virtual] = ACTIONS(5491), + [anon_sym_alignas] = ACTIONS(5491), + [anon_sym_explicit] = ACTIONS(5491), + [anon_sym_typename] = ACTIONS(5491), + [anon_sym_template] = ACTIONS(5491), + [anon_sym_operator] = ACTIONS(5491), + [anon_sym_friend] = ACTIONS(5491), + [anon_sym_public] = ACTIONS(5491), + [anon_sym_private] = ACTIONS(5491), + [anon_sym_protected] = ACTIONS(5491), + [anon_sym_using] = ACTIONS(5491), + [anon_sym_static_assert] = ACTIONS(5491), + }, + [2365] = { + [sym_identifier] = ACTIONS(5471), + [aux_sym_preproc_def_token1] = ACTIONS(5471), + [aux_sym_preproc_if_token1] = ACTIONS(5471), + [aux_sym_preproc_if_token2] = ACTIONS(5471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5471), + [aux_sym_preproc_else_token1] = ACTIONS(5471), + [aux_sym_preproc_elif_token1] = ACTIONS(5471), + [sym_preproc_directive] = ACTIONS(5471), + [anon_sym_LPAREN2] = ACTIONS(5473), + [anon_sym_TILDE] = ACTIONS(5473), + [anon_sym_STAR] = ACTIONS(5473), + [anon_sym_AMP_AMP] = ACTIONS(5473), + [anon_sym_AMP] = ACTIONS(5471), + [anon_sym___extension__] = ACTIONS(5471), + [anon_sym_typedef] = ACTIONS(5471), + [anon_sym_extern] = ACTIONS(5471), + [anon_sym___attribute__] = ACTIONS(5471), + [anon_sym_COLON_COLON] = ACTIONS(5473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5473), + [anon_sym___declspec] = ACTIONS(5471), + [anon_sym___based] = ACTIONS(5471), + [anon_sym_signed] = ACTIONS(5471), + [anon_sym_unsigned] = ACTIONS(5471), + [anon_sym_long] = ACTIONS(5471), + [anon_sym_short] = ACTIONS(5471), + [anon_sym_LBRACK] = ACTIONS(5471), + [anon_sym_static] = ACTIONS(5471), + [anon_sym_register] = ACTIONS(5471), + [anon_sym_inline] = ACTIONS(5471), + [anon_sym___inline] = ACTIONS(5471), + [anon_sym___inline__] = ACTIONS(5471), + [anon_sym___forceinline] = ACTIONS(5471), + [anon_sym_thread_local] = ACTIONS(5471), + [anon_sym___thread] = ACTIONS(5471), + [anon_sym_const] = ACTIONS(5471), + [anon_sym_constexpr] = ACTIONS(5471), + [anon_sym_volatile] = ACTIONS(5471), + [anon_sym_restrict] = ACTIONS(5471), + [anon_sym___restrict__] = ACTIONS(5471), + [anon_sym__Atomic] = ACTIONS(5471), + [anon_sym__Noreturn] = ACTIONS(5471), + [anon_sym_noreturn] = ACTIONS(5471), + [anon_sym_mutable] = ACTIONS(5471), + [anon_sym_constinit] = ACTIONS(5471), + [anon_sym_consteval] = ACTIONS(5471), + [sym_primitive_type] = ACTIONS(5471), + [anon_sym_enum] = ACTIONS(5471), + [anon_sym_class] = ACTIONS(5471), + [anon_sym_struct] = ACTIONS(5471), + [anon_sym_union] = ACTIONS(5471), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5471), + [anon_sym_decltype] = ACTIONS(5471), + [anon_sym_virtual] = ACTIONS(5471), + [anon_sym_alignas] = ACTIONS(5471), + [anon_sym_explicit] = ACTIONS(5471), + [anon_sym_typename] = ACTIONS(5471), + [anon_sym_template] = ACTIONS(5471), + [anon_sym_operator] = ACTIONS(5471), + [anon_sym_friend] = ACTIONS(5471), + [anon_sym_public] = ACTIONS(5471), + [anon_sym_private] = ACTIONS(5471), + [anon_sym_protected] = ACTIONS(5471), + [anon_sym_using] = ACTIONS(5471), + [anon_sym_static_assert] = ACTIONS(5471), + }, + [2366] = { + [sym_identifier] = ACTIONS(5475), + [aux_sym_preproc_def_token1] = ACTIONS(5475), + [aux_sym_preproc_if_token1] = ACTIONS(5475), + [aux_sym_preproc_if_token2] = ACTIONS(5475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5475), + [aux_sym_preproc_else_token1] = ACTIONS(5475), + [aux_sym_preproc_elif_token1] = ACTIONS(5475), + [sym_preproc_directive] = ACTIONS(5475), + [anon_sym_LPAREN2] = ACTIONS(5477), + [anon_sym_TILDE] = ACTIONS(5477), + [anon_sym_STAR] = ACTIONS(5477), + [anon_sym_AMP_AMP] = ACTIONS(5477), + [anon_sym_AMP] = ACTIONS(5475), + [anon_sym___extension__] = ACTIONS(5475), + [anon_sym_typedef] = ACTIONS(5475), + [anon_sym_extern] = ACTIONS(5475), + [anon_sym___attribute__] = ACTIONS(5475), + [anon_sym_COLON_COLON] = ACTIONS(5477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5477), + [anon_sym___declspec] = ACTIONS(5475), + [anon_sym___based] = ACTIONS(5475), + [anon_sym_signed] = ACTIONS(5475), + [anon_sym_unsigned] = ACTIONS(5475), + [anon_sym_long] = ACTIONS(5475), + [anon_sym_short] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5475), + [anon_sym_static] = ACTIONS(5475), + [anon_sym_register] = ACTIONS(5475), + [anon_sym_inline] = ACTIONS(5475), + [anon_sym___inline] = ACTIONS(5475), + [anon_sym___inline__] = ACTIONS(5475), + [anon_sym___forceinline] = ACTIONS(5475), + [anon_sym_thread_local] = ACTIONS(5475), + [anon_sym___thread] = ACTIONS(5475), + [anon_sym_const] = ACTIONS(5475), + [anon_sym_constexpr] = ACTIONS(5475), + [anon_sym_volatile] = ACTIONS(5475), + [anon_sym_restrict] = ACTIONS(5475), + [anon_sym___restrict__] = ACTIONS(5475), + [anon_sym__Atomic] = ACTIONS(5475), + [anon_sym__Noreturn] = ACTIONS(5475), + [anon_sym_noreturn] = ACTIONS(5475), + [anon_sym_mutable] = ACTIONS(5475), + [anon_sym_constinit] = ACTIONS(5475), + [anon_sym_consteval] = ACTIONS(5475), + [sym_primitive_type] = ACTIONS(5475), + [anon_sym_enum] = ACTIONS(5475), + [anon_sym_class] = ACTIONS(5475), + [anon_sym_struct] = ACTIONS(5475), + [anon_sym_union] = ACTIONS(5475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5475), + [anon_sym_decltype] = ACTIONS(5475), + [anon_sym_virtual] = ACTIONS(5475), + [anon_sym_alignas] = ACTIONS(5475), + [anon_sym_explicit] = ACTIONS(5475), + [anon_sym_typename] = ACTIONS(5475), + [anon_sym_template] = ACTIONS(5475), + [anon_sym_operator] = ACTIONS(5475), + [anon_sym_friend] = ACTIONS(5475), + [anon_sym_public] = ACTIONS(5475), + [anon_sym_private] = ACTIONS(5475), + [anon_sym_protected] = ACTIONS(5475), + [anon_sym_using] = ACTIONS(5475), + [anon_sym_static_assert] = ACTIONS(5475), + }, + [2367] = { + [sym_identifier] = ACTIONS(5495), + [aux_sym_preproc_def_token1] = ACTIONS(5495), + [aux_sym_preproc_if_token1] = ACTIONS(5495), + [aux_sym_preproc_if_token2] = ACTIONS(5495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5495), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5495), + [aux_sym_preproc_else_token1] = ACTIONS(5495), + [aux_sym_preproc_elif_token1] = ACTIONS(5495), + [sym_preproc_directive] = ACTIONS(5495), + [anon_sym_LPAREN2] = ACTIONS(5497), + [anon_sym_TILDE] = ACTIONS(5497), + [anon_sym_STAR] = ACTIONS(5497), + [anon_sym_AMP_AMP] = ACTIONS(5497), + [anon_sym_AMP] = ACTIONS(5495), + [anon_sym___extension__] = ACTIONS(5495), + [anon_sym_typedef] = ACTIONS(5495), + [anon_sym_extern] = ACTIONS(5495), + [anon_sym___attribute__] = ACTIONS(5495), + [anon_sym_COLON_COLON] = ACTIONS(5497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5497), + [anon_sym___declspec] = ACTIONS(5495), + [anon_sym___based] = ACTIONS(5495), + [anon_sym_signed] = ACTIONS(5495), + [anon_sym_unsigned] = ACTIONS(5495), + [anon_sym_long] = ACTIONS(5495), + [anon_sym_short] = ACTIONS(5495), + [anon_sym_LBRACK] = ACTIONS(5495), + [anon_sym_static] = ACTIONS(5495), + [anon_sym_register] = ACTIONS(5495), + [anon_sym_inline] = ACTIONS(5495), + [anon_sym___inline] = ACTIONS(5495), + [anon_sym___inline__] = ACTIONS(5495), + [anon_sym___forceinline] = ACTIONS(5495), + [anon_sym_thread_local] = ACTIONS(5495), + [anon_sym___thread] = ACTIONS(5495), + [anon_sym_const] = ACTIONS(5495), + [anon_sym_constexpr] = ACTIONS(5495), + [anon_sym_volatile] = ACTIONS(5495), + [anon_sym_restrict] = ACTIONS(5495), + [anon_sym___restrict__] = ACTIONS(5495), + [anon_sym__Atomic] = ACTIONS(5495), + [anon_sym__Noreturn] = ACTIONS(5495), + [anon_sym_noreturn] = ACTIONS(5495), + [anon_sym_mutable] = ACTIONS(5495), + [anon_sym_constinit] = ACTIONS(5495), + [anon_sym_consteval] = ACTIONS(5495), + [sym_primitive_type] = ACTIONS(5495), + [anon_sym_enum] = ACTIONS(5495), + [anon_sym_class] = ACTIONS(5495), + [anon_sym_struct] = ACTIONS(5495), + [anon_sym_union] = ACTIONS(5495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5495), + [anon_sym_decltype] = ACTIONS(5495), + [anon_sym_virtual] = ACTIONS(5495), + [anon_sym_alignas] = ACTIONS(5495), + [anon_sym_explicit] = ACTIONS(5495), + [anon_sym_typename] = ACTIONS(5495), + [anon_sym_template] = ACTIONS(5495), + [anon_sym_operator] = ACTIONS(5495), + [anon_sym_friend] = ACTIONS(5495), + [anon_sym_public] = ACTIONS(5495), + [anon_sym_private] = ACTIONS(5495), + [anon_sym_protected] = ACTIONS(5495), + [anon_sym_using] = ACTIONS(5495), + [anon_sym_static_assert] = ACTIONS(5495), + }, + [2368] = { + [sym_identifier] = ACTIONS(5475), + [aux_sym_preproc_def_token1] = ACTIONS(5475), + [aux_sym_preproc_if_token1] = ACTIONS(5475), + [aux_sym_preproc_if_token2] = ACTIONS(5475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5475), + [aux_sym_preproc_else_token1] = ACTIONS(5475), + [aux_sym_preproc_elif_token1] = ACTIONS(5475), + [sym_preproc_directive] = ACTIONS(5475), + [anon_sym_LPAREN2] = ACTIONS(5477), + [anon_sym_TILDE] = ACTIONS(5477), + [anon_sym_STAR] = ACTIONS(5477), + [anon_sym_AMP_AMP] = ACTIONS(5477), + [anon_sym_AMP] = ACTIONS(5475), + [anon_sym___extension__] = ACTIONS(5475), + [anon_sym_typedef] = ACTIONS(5475), + [anon_sym_extern] = ACTIONS(5475), + [anon_sym___attribute__] = ACTIONS(5475), + [anon_sym_COLON_COLON] = ACTIONS(5477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5477), + [anon_sym___declspec] = ACTIONS(5475), + [anon_sym___based] = ACTIONS(5475), + [anon_sym_signed] = ACTIONS(5475), + [anon_sym_unsigned] = ACTIONS(5475), + [anon_sym_long] = ACTIONS(5475), + [anon_sym_short] = ACTIONS(5475), + [anon_sym_LBRACK] = ACTIONS(5475), + [anon_sym_static] = ACTIONS(5475), + [anon_sym_register] = ACTIONS(5475), + [anon_sym_inline] = ACTIONS(5475), + [anon_sym___inline] = ACTIONS(5475), + [anon_sym___inline__] = ACTIONS(5475), + [anon_sym___forceinline] = ACTIONS(5475), + [anon_sym_thread_local] = ACTIONS(5475), + [anon_sym___thread] = ACTIONS(5475), + [anon_sym_const] = ACTIONS(5475), + [anon_sym_constexpr] = ACTIONS(5475), + [anon_sym_volatile] = ACTIONS(5475), + [anon_sym_restrict] = ACTIONS(5475), + [anon_sym___restrict__] = ACTIONS(5475), + [anon_sym__Atomic] = ACTIONS(5475), + [anon_sym__Noreturn] = ACTIONS(5475), + [anon_sym_noreturn] = ACTIONS(5475), + [anon_sym_mutable] = ACTIONS(5475), + [anon_sym_constinit] = ACTIONS(5475), + [anon_sym_consteval] = ACTIONS(5475), + [sym_primitive_type] = ACTIONS(5475), + [anon_sym_enum] = ACTIONS(5475), + [anon_sym_class] = ACTIONS(5475), + [anon_sym_struct] = ACTIONS(5475), + [anon_sym_union] = ACTIONS(5475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5475), + [anon_sym_decltype] = ACTIONS(5475), + [anon_sym_virtual] = ACTIONS(5475), + [anon_sym_alignas] = ACTIONS(5475), + [anon_sym_explicit] = ACTIONS(5475), + [anon_sym_typename] = ACTIONS(5475), + [anon_sym_template] = ACTIONS(5475), + [anon_sym_operator] = ACTIONS(5475), + [anon_sym_friend] = ACTIONS(5475), + [anon_sym_public] = ACTIONS(5475), + [anon_sym_private] = ACTIONS(5475), + [anon_sym_protected] = ACTIONS(5475), + [anon_sym_using] = ACTIONS(5475), + [anon_sym_static_assert] = ACTIONS(5475), + }, + [2369] = { + [sym_identifier] = ACTIONS(5499), + [aux_sym_preproc_def_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token2] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5499), + [aux_sym_preproc_else_token1] = ACTIONS(5499), + [aux_sym_preproc_elif_token1] = ACTIONS(5499), + [sym_preproc_directive] = ACTIONS(5499), + [anon_sym_LPAREN2] = ACTIONS(5501), + [anon_sym_TILDE] = ACTIONS(5501), + [anon_sym_STAR] = ACTIONS(5501), + [anon_sym_AMP_AMP] = ACTIONS(5501), + [anon_sym_AMP] = ACTIONS(5499), + [anon_sym___extension__] = ACTIONS(5499), + [anon_sym_typedef] = ACTIONS(5499), + [anon_sym_extern] = ACTIONS(5499), + [anon_sym___attribute__] = ACTIONS(5499), + [anon_sym_COLON_COLON] = ACTIONS(5501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5501), + [anon_sym___declspec] = ACTIONS(5499), + [anon_sym___based] = ACTIONS(5499), + [anon_sym_signed] = ACTIONS(5499), + [anon_sym_unsigned] = ACTIONS(5499), + [anon_sym_long] = ACTIONS(5499), + [anon_sym_short] = ACTIONS(5499), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym_static] = ACTIONS(5499), + [anon_sym_register] = ACTIONS(5499), + [anon_sym_inline] = ACTIONS(5499), + [anon_sym___inline] = ACTIONS(5499), + [anon_sym___inline__] = ACTIONS(5499), + [anon_sym___forceinline] = ACTIONS(5499), + [anon_sym_thread_local] = ACTIONS(5499), + [anon_sym___thread] = ACTIONS(5499), + [anon_sym_const] = ACTIONS(5499), + [anon_sym_constexpr] = ACTIONS(5499), + [anon_sym_volatile] = ACTIONS(5499), + [anon_sym_restrict] = ACTIONS(5499), + [anon_sym___restrict__] = ACTIONS(5499), + [anon_sym__Atomic] = ACTIONS(5499), + [anon_sym__Noreturn] = ACTIONS(5499), + [anon_sym_noreturn] = ACTIONS(5499), + [anon_sym_mutable] = ACTIONS(5499), + [anon_sym_constinit] = ACTIONS(5499), + [anon_sym_consteval] = ACTIONS(5499), + [sym_primitive_type] = ACTIONS(5499), + [anon_sym_enum] = ACTIONS(5499), + [anon_sym_class] = ACTIONS(5499), + [anon_sym_struct] = ACTIONS(5499), + [anon_sym_union] = ACTIONS(5499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5499), + [anon_sym_decltype] = ACTIONS(5499), + [anon_sym_virtual] = ACTIONS(5499), + [anon_sym_alignas] = ACTIONS(5499), + [anon_sym_explicit] = ACTIONS(5499), + [anon_sym_typename] = ACTIONS(5499), + [anon_sym_template] = ACTIONS(5499), + [anon_sym_operator] = ACTIONS(5499), + [anon_sym_friend] = ACTIONS(5499), + [anon_sym_public] = ACTIONS(5499), + [anon_sym_private] = ACTIONS(5499), + [anon_sym_protected] = ACTIONS(5499), + [anon_sym_using] = ACTIONS(5499), + [anon_sym_static_assert] = ACTIONS(5499), + }, + [2370] = { + [sym_identifier] = ACTIONS(5479), + [aux_sym_preproc_def_token1] = ACTIONS(5479), + [aux_sym_preproc_if_token1] = ACTIONS(5479), + [aux_sym_preproc_if_token2] = ACTIONS(5479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5479), + [aux_sym_preproc_else_token1] = ACTIONS(5479), + [aux_sym_preproc_elif_token1] = ACTIONS(5479), + [sym_preproc_directive] = ACTIONS(5479), + [anon_sym_LPAREN2] = ACTIONS(5481), + [anon_sym_TILDE] = ACTIONS(5481), + [anon_sym_STAR] = ACTIONS(5481), + [anon_sym_AMP_AMP] = ACTIONS(5481), + [anon_sym_AMP] = ACTIONS(5479), + [anon_sym___extension__] = ACTIONS(5479), + [anon_sym_typedef] = ACTIONS(5479), + [anon_sym_extern] = ACTIONS(5479), + [anon_sym___attribute__] = ACTIONS(5479), + [anon_sym_COLON_COLON] = ACTIONS(5481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5481), + [anon_sym___declspec] = ACTIONS(5479), + [anon_sym___based] = ACTIONS(5479), + [anon_sym_signed] = ACTIONS(5479), + [anon_sym_unsigned] = ACTIONS(5479), + [anon_sym_long] = ACTIONS(5479), + [anon_sym_short] = ACTIONS(5479), + [anon_sym_LBRACK] = ACTIONS(5479), + [anon_sym_static] = ACTIONS(5479), + [anon_sym_register] = ACTIONS(5479), + [anon_sym_inline] = ACTIONS(5479), + [anon_sym___inline] = ACTIONS(5479), + [anon_sym___inline__] = ACTIONS(5479), + [anon_sym___forceinline] = ACTIONS(5479), + [anon_sym_thread_local] = ACTIONS(5479), + [anon_sym___thread] = ACTIONS(5479), + [anon_sym_const] = ACTIONS(5479), + [anon_sym_constexpr] = ACTIONS(5479), + [anon_sym_volatile] = ACTIONS(5479), + [anon_sym_restrict] = ACTIONS(5479), + [anon_sym___restrict__] = ACTIONS(5479), + [anon_sym__Atomic] = ACTIONS(5479), + [anon_sym__Noreturn] = ACTIONS(5479), + [anon_sym_noreturn] = ACTIONS(5479), + [anon_sym_mutable] = ACTIONS(5479), + [anon_sym_constinit] = ACTIONS(5479), + [anon_sym_consteval] = ACTIONS(5479), + [sym_primitive_type] = ACTIONS(5479), + [anon_sym_enum] = ACTIONS(5479), + [anon_sym_class] = ACTIONS(5479), + [anon_sym_struct] = ACTIONS(5479), + [anon_sym_union] = ACTIONS(5479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5479), + [anon_sym_decltype] = ACTIONS(5479), + [anon_sym_virtual] = ACTIONS(5479), + [anon_sym_alignas] = ACTIONS(5479), + [anon_sym_explicit] = ACTIONS(5479), + [anon_sym_typename] = ACTIONS(5479), + [anon_sym_template] = ACTIONS(5479), + [anon_sym_operator] = ACTIONS(5479), + [anon_sym_friend] = ACTIONS(5479), + [anon_sym_public] = ACTIONS(5479), + [anon_sym_private] = ACTIONS(5479), + [anon_sym_protected] = ACTIONS(5479), + [anon_sym_using] = ACTIONS(5479), + [anon_sym_static_assert] = ACTIONS(5479), + }, + [2371] = { + [sym_identifier] = ACTIONS(5507), + [aux_sym_preproc_def_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token1] = ACTIONS(5507), + [aux_sym_preproc_if_token2] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5507), + [aux_sym_preproc_else_token1] = ACTIONS(5507), + [aux_sym_preproc_elif_token1] = ACTIONS(5507), + [sym_preproc_directive] = ACTIONS(5507), + [anon_sym_LPAREN2] = ACTIONS(5509), + [anon_sym_TILDE] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5509), + [anon_sym_AMP_AMP] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5507), + [anon_sym___extension__] = ACTIONS(5507), + [anon_sym_typedef] = ACTIONS(5507), + [anon_sym_extern] = ACTIONS(5507), + [anon_sym___attribute__] = ACTIONS(5507), + [anon_sym_COLON_COLON] = ACTIONS(5509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5509), + [anon_sym___declspec] = ACTIONS(5507), + [anon_sym___based] = ACTIONS(5507), + [anon_sym_signed] = ACTIONS(5507), + [anon_sym_unsigned] = ACTIONS(5507), + [anon_sym_long] = ACTIONS(5507), + [anon_sym_short] = ACTIONS(5507), + [anon_sym_LBRACK] = ACTIONS(5507), + [anon_sym_static] = ACTIONS(5507), + [anon_sym_register] = ACTIONS(5507), + [anon_sym_inline] = ACTIONS(5507), + [anon_sym___inline] = ACTIONS(5507), + [anon_sym___inline__] = ACTIONS(5507), + [anon_sym___forceinline] = ACTIONS(5507), + [anon_sym_thread_local] = ACTIONS(5507), + [anon_sym___thread] = ACTIONS(5507), + [anon_sym_const] = ACTIONS(5507), + [anon_sym_constexpr] = ACTIONS(5507), + [anon_sym_volatile] = ACTIONS(5507), + [anon_sym_restrict] = ACTIONS(5507), + [anon_sym___restrict__] = ACTIONS(5507), + [anon_sym__Atomic] = ACTIONS(5507), + [anon_sym__Noreturn] = ACTIONS(5507), + [anon_sym_noreturn] = ACTIONS(5507), + [anon_sym_mutable] = ACTIONS(5507), + [anon_sym_constinit] = ACTIONS(5507), + [anon_sym_consteval] = ACTIONS(5507), + [sym_primitive_type] = ACTIONS(5507), + [anon_sym_enum] = ACTIONS(5507), + [anon_sym_class] = ACTIONS(5507), + [anon_sym_struct] = ACTIONS(5507), + [anon_sym_union] = ACTIONS(5507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5507), + [anon_sym_decltype] = ACTIONS(5507), + [anon_sym_virtual] = ACTIONS(5507), + [anon_sym_alignas] = ACTIONS(5507), + [anon_sym_explicit] = ACTIONS(5507), + [anon_sym_typename] = ACTIONS(5507), + [anon_sym_template] = ACTIONS(5507), + [anon_sym_operator] = ACTIONS(5507), + [anon_sym_friend] = ACTIONS(5507), + [anon_sym_public] = ACTIONS(5507), + [anon_sym_private] = ACTIONS(5507), + [anon_sym_protected] = ACTIONS(5507), + [anon_sym_using] = ACTIONS(5507), + [anon_sym_static_assert] = ACTIONS(5507), + }, + [2372] = { + [sym_identifier] = ACTIONS(5401), + [aux_sym_preproc_def_token1] = ACTIONS(5401), + [aux_sym_preproc_if_token1] = ACTIONS(5401), + [aux_sym_preproc_if_token2] = ACTIONS(5401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5401), + [aux_sym_preproc_else_token1] = ACTIONS(5401), + [aux_sym_preproc_elif_token1] = ACTIONS(5401), + [sym_preproc_directive] = ACTIONS(5401), + [anon_sym_LPAREN2] = ACTIONS(5403), + [anon_sym_TILDE] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_AMP_AMP] = ACTIONS(5403), + [anon_sym_AMP] = ACTIONS(5401), + [anon_sym___extension__] = ACTIONS(5401), + [anon_sym_typedef] = ACTIONS(5401), + [anon_sym_extern] = ACTIONS(5401), + [anon_sym___attribute__] = ACTIONS(5401), + [anon_sym_COLON_COLON] = ACTIONS(5403), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5403), + [anon_sym___declspec] = ACTIONS(5401), + [anon_sym___based] = ACTIONS(5401), + [anon_sym_signed] = ACTIONS(5401), + [anon_sym_unsigned] = ACTIONS(5401), + [anon_sym_long] = ACTIONS(5401), + [anon_sym_short] = ACTIONS(5401), + [anon_sym_LBRACK] = ACTIONS(5401), + [anon_sym_static] = ACTIONS(5401), + [anon_sym_register] = ACTIONS(5401), + [anon_sym_inline] = ACTIONS(5401), + [anon_sym___inline] = ACTIONS(5401), + [anon_sym___inline__] = ACTIONS(5401), + [anon_sym___forceinline] = ACTIONS(5401), + [anon_sym_thread_local] = ACTIONS(5401), + [anon_sym___thread] = ACTIONS(5401), + [anon_sym_const] = ACTIONS(5401), + [anon_sym_constexpr] = ACTIONS(5401), + [anon_sym_volatile] = ACTIONS(5401), + [anon_sym_restrict] = ACTIONS(5401), + [anon_sym___restrict__] = ACTIONS(5401), + [anon_sym__Atomic] = ACTIONS(5401), + [anon_sym__Noreturn] = ACTIONS(5401), + [anon_sym_noreturn] = ACTIONS(5401), + [anon_sym_mutable] = ACTIONS(5401), + [anon_sym_constinit] = ACTIONS(5401), + [anon_sym_consteval] = ACTIONS(5401), + [sym_primitive_type] = ACTIONS(5401), + [anon_sym_enum] = ACTIONS(5401), + [anon_sym_class] = ACTIONS(5401), + [anon_sym_struct] = ACTIONS(5401), + [anon_sym_union] = ACTIONS(5401), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5401), + [anon_sym_decltype] = ACTIONS(5401), + [anon_sym_virtual] = ACTIONS(5401), + [anon_sym_alignas] = ACTIONS(5401), + [anon_sym_explicit] = ACTIONS(5401), + [anon_sym_typename] = ACTIONS(5401), + [anon_sym_template] = ACTIONS(5401), + [anon_sym_operator] = ACTIONS(5401), + [anon_sym_friend] = ACTIONS(5401), + [anon_sym_public] = ACTIONS(5401), + [anon_sym_private] = ACTIONS(5401), + [anon_sym_protected] = ACTIONS(5401), + [anon_sym_using] = ACTIONS(5401), + [anon_sym_static_assert] = ACTIONS(5401), + }, + [2373] = { + [sym_identifier] = ACTIONS(5511), + [aux_sym_preproc_def_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token1] = ACTIONS(5511), + [aux_sym_preproc_if_token2] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5511), + [aux_sym_preproc_else_token1] = ACTIONS(5511), + [aux_sym_preproc_elif_token1] = ACTIONS(5511), + [sym_preproc_directive] = ACTIONS(5511), + [anon_sym_LPAREN2] = ACTIONS(5513), + [anon_sym_TILDE] = ACTIONS(5513), + [anon_sym_STAR] = ACTIONS(5513), + [anon_sym_AMP_AMP] = ACTIONS(5513), + [anon_sym_AMP] = ACTIONS(5511), + [anon_sym___extension__] = ACTIONS(5511), + [anon_sym_typedef] = ACTIONS(5511), + [anon_sym_extern] = ACTIONS(5511), + [anon_sym___attribute__] = ACTIONS(5511), + [anon_sym_COLON_COLON] = ACTIONS(5513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5513), + [anon_sym___declspec] = ACTIONS(5511), + [anon_sym___based] = ACTIONS(5511), + [anon_sym_signed] = ACTIONS(5511), + [anon_sym_unsigned] = ACTIONS(5511), + [anon_sym_long] = ACTIONS(5511), + [anon_sym_short] = ACTIONS(5511), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_static] = ACTIONS(5511), + [anon_sym_register] = ACTIONS(5511), + [anon_sym_inline] = ACTIONS(5511), + [anon_sym___inline] = ACTIONS(5511), + [anon_sym___inline__] = ACTIONS(5511), + [anon_sym___forceinline] = ACTIONS(5511), + [anon_sym_thread_local] = ACTIONS(5511), + [anon_sym___thread] = ACTIONS(5511), + [anon_sym_const] = ACTIONS(5511), + [anon_sym_constexpr] = ACTIONS(5511), + [anon_sym_volatile] = ACTIONS(5511), + [anon_sym_restrict] = ACTIONS(5511), + [anon_sym___restrict__] = ACTIONS(5511), + [anon_sym__Atomic] = ACTIONS(5511), + [anon_sym__Noreturn] = ACTIONS(5511), + [anon_sym_noreturn] = ACTIONS(5511), + [anon_sym_mutable] = ACTIONS(5511), + [anon_sym_constinit] = ACTIONS(5511), + [anon_sym_consteval] = ACTIONS(5511), + [sym_primitive_type] = ACTIONS(5511), + [anon_sym_enum] = ACTIONS(5511), + [anon_sym_class] = ACTIONS(5511), + [anon_sym_struct] = ACTIONS(5511), + [anon_sym_union] = ACTIONS(5511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5511), + [anon_sym_decltype] = ACTIONS(5511), + [anon_sym_virtual] = ACTIONS(5511), + [anon_sym_alignas] = ACTIONS(5511), + [anon_sym_explicit] = ACTIONS(5511), + [anon_sym_typename] = ACTIONS(5511), + [anon_sym_template] = ACTIONS(5511), + [anon_sym_operator] = ACTIONS(5511), + [anon_sym_friend] = ACTIONS(5511), + [anon_sym_public] = ACTIONS(5511), + [anon_sym_private] = ACTIONS(5511), + [anon_sym_protected] = ACTIONS(5511), + [anon_sym_using] = ACTIONS(5511), + [anon_sym_static_assert] = ACTIONS(5511), + }, + [2374] = { + [sym_identifier] = ACTIONS(5564), + [aux_sym_preproc_def_token1] = ACTIONS(5564), + [aux_sym_preproc_if_token1] = ACTIONS(5564), + [aux_sym_preproc_if_token2] = ACTIONS(5564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5564), + [aux_sym_preproc_else_token1] = ACTIONS(5564), + [aux_sym_preproc_elif_token1] = ACTIONS(5564), + [sym_preproc_directive] = ACTIONS(5564), + [anon_sym_LPAREN2] = ACTIONS(5566), + [anon_sym_TILDE] = ACTIONS(5566), + [anon_sym_STAR] = ACTIONS(5566), + [anon_sym_AMP_AMP] = ACTIONS(5566), + [anon_sym_AMP] = ACTIONS(5564), + [anon_sym___extension__] = ACTIONS(5564), + [anon_sym_typedef] = ACTIONS(5564), + [anon_sym_extern] = ACTIONS(5564), + [anon_sym___attribute__] = ACTIONS(5564), + [anon_sym_COLON_COLON] = ACTIONS(5566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5566), + [anon_sym___declspec] = ACTIONS(5564), + [anon_sym___based] = ACTIONS(5564), + [anon_sym_signed] = ACTIONS(5564), + [anon_sym_unsigned] = ACTIONS(5564), + [anon_sym_long] = ACTIONS(5564), + [anon_sym_short] = ACTIONS(5564), + [anon_sym_LBRACK] = ACTIONS(5564), + [anon_sym_static] = ACTIONS(5564), + [anon_sym_register] = ACTIONS(5564), + [anon_sym_inline] = ACTIONS(5564), + [anon_sym___inline] = ACTIONS(5564), + [anon_sym___inline__] = ACTIONS(5564), + [anon_sym___forceinline] = ACTIONS(5564), + [anon_sym_thread_local] = ACTIONS(5564), + [anon_sym___thread] = ACTIONS(5564), + [anon_sym_const] = ACTIONS(5564), + [anon_sym_constexpr] = ACTIONS(5564), + [anon_sym_volatile] = ACTIONS(5564), + [anon_sym_restrict] = ACTIONS(5564), + [anon_sym___restrict__] = ACTIONS(5564), + [anon_sym__Atomic] = ACTIONS(5564), + [anon_sym__Noreturn] = ACTIONS(5564), + [anon_sym_noreturn] = ACTIONS(5564), + [anon_sym_mutable] = ACTIONS(5564), + [anon_sym_constinit] = ACTIONS(5564), + [anon_sym_consteval] = ACTIONS(5564), + [sym_primitive_type] = ACTIONS(5564), + [anon_sym_enum] = ACTIONS(5564), + [anon_sym_class] = ACTIONS(5564), + [anon_sym_struct] = ACTIONS(5564), + [anon_sym_union] = ACTIONS(5564), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5564), + [anon_sym_decltype] = ACTIONS(5564), + [anon_sym_virtual] = ACTIONS(5564), + [anon_sym_alignas] = ACTIONS(5564), + [anon_sym_explicit] = ACTIONS(5564), + [anon_sym_typename] = ACTIONS(5564), + [anon_sym_template] = ACTIONS(5564), + [anon_sym_operator] = ACTIONS(5564), + [anon_sym_friend] = ACTIONS(5564), + [anon_sym_public] = ACTIONS(5564), + [anon_sym_private] = ACTIONS(5564), + [anon_sym_protected] = ACTIONS(5564), + [anon_sym_using] = ACTIONS(5564), + [anon_sym_static_assert] = ACTIONS(5564), + }, + [2375] = { + [sym_identifier] = ACTIONS(5568), + [aux_sym_preproc_def_token1] = ACTIONS(5568), + [aux_sym_preproc_if_token1] = ACTIONS(5568), + [aux_sym_preproc_if_token2] = ACTIONS(5568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), + [aux_sym_preproc_else_token1] = ACTIONS(5568), + [aux_sym_preproc_elif_token1] = ACTIONS(5568), + [sym_preproc_directive] = ACTIONS(5568), + [anon_sym_LPAREN2] = ACTIONS(5570), + [anon_sym_TILDE] = ACTIONS(5570), + [anon_sym_STAR] = ACTIONS(5570), + [anon_sym_AMP_AMP] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(5568), + [anon_sym___extension__] = ACTIONS(5568), + [anon_sym_typedef] = ACTIONS(5568), + [anon_sym_extern] = ACTIONS(5568), + [anon_sym___attribute__] = ACTIONS(5568), + [anon_sym_COLON_COLON] = ACTIONS(5570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5570), + [anon_sym___declspec] = ACTIONS(5568), + [anon_sym___based] = ACTIONS(5568), + [anon_sym_signed] = ACTIONS(5568), + [anon_sym_unsigned] = ACTIONS(5568), + [anon_sym_long] = ACTIONS(5568), + [anon_sym_short] = ACTIONS(5568), + [anon_sym_LBRACK] = ACTIONS(5568), + [anon_sym_static] = ACTIONS(5568), + [anon_sym_register] = ACTIONS(5568), + [anon_sym_inline] = ACTIONS(5568), + [anon_sym___inline] = ACTIONS(5568), + [anon_sym___inline__] = ACTIONS(5568), + [anon_sym___forceinline] = ACTIONS(5568), + [anon_sym_thread_local] = ACTIONS(5568), + [anon_sym___thread] = ACTIONS(5568), + [anon_sym_const] = ACTIONS(5568), + [anon_sym_constexpr] = ACTIONS(5568), + [anon_sym_volatile] = ACTIONS(5568), + [anon_sym_restrict] = ACTIONS(5568), + [anon_sym___restrict__] = ACTIONS(5568), + [anon_sym__Atomic] = ACTIONS(5568), + [anon_sym__Noreturn] = ACTIONS(5568), + [anon_sym_noreturn] = ACTIONS(5568), + [anon_sym_mutable] = ACTIONS(5568), + [anon_sym_constinit] = ACTIONS(5568), + [anon_sym_consteval] = ACTIONS(5568), + [sym_primitive_type] = ACTIONS(5568), + [anon_sym_enum] = ACTIONS(5568), + [anon_sym_class] = ACTIONS(5568), + [anon_sym_struct] = ACTIONS(5568), + [anon_sym_union] = ACTIONS(5568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5568), + [anon_sym_decltype] = ACTIONS(5568), + [anon_sym_virtual] = ACTIONS(5568), + [anon_sym_alignas] = ACTIONS(5568), + [anon_sym_explicit] = ACTIONS(5568), + [anon_sym_typename] = ACTIONS(5568), + [anon_sym_template] = ACTIONS(5568), + [anon_sym_operator] = ACTIONS(5568), + [anon_sym_friend] = ACTIONS(5568), + [anon_sym_public] = ACTIONS(5568), + [anon_sym_private] = ACTIONS(5568), + [anon_sym_protected] = ACTIONS(5568), + [anon_sym_using] = ACTIONS(5568), + [anon_sym_static_assert] = ACTIONS(5568), + }, + [2376] = { + [sym_identifier] = ACTIONS(5568), + [aux_sym_preproc_def_token1] = ACTIONS(5568), + [aux_sym_preproc_if_token1] = ACTIONS(5568), + [aux_sym_preproc_if_token2] = ACTIONS(5568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5568), + [aux_sym_preproc_else_token1] = ACTIONS(5568), + [aux_sym_preproc_elif_token1] = ACTIONS(5568), + [sym_preproc_directive] = ACTIONS(5568), + [anon_sym_LPAREN2] = ACTIONS(5570), + [anon_sym_TILDE] = ACTIONS(5570), + [anon_sym_STAR] = ACTIONS(5570), + [anon_sym_AMP_AMP] = ACTIONS(5570), + [anon_sym_AMP] = ACTIONS(5568), + [anon_sym___extension__] = ACTIONS(5568), + [anon_sym_typedef] = ACTIONS(5568), + [anon_sym_extern] = ACTIONS(5568), + [anon_sym___attribute__] = ACTIONS(5568), + [anon_sym_COLON_COLON] = ACTIONS(5570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5570), + [anon_sym___declspec] = ACTIONS(5568), + [anon_sym___based] = ACTIONS(5568), + [anon_sym_signed] = ACTIONS(5568), + [anon_sym_unsigned] = ACTIONS(5568), + [anon_sym_long] = ACTIONS(5568), + [anon_sym_short] = ACTIONS(5568), + [anon_sym_LBRACK] = ACTIONS(5568), + [anon_sym_static] = ACTIONS(5568), + [anon_sym_register] = ACTIONS(5568), + [anon_sym_inline] = ACTIONS(5568), + [anon_sym___inline] = ACTIONS(5568), + [anon_sym___inline__] = ACTIONS(5568), + [anon_sym___forceinline] = ACTIONS(5568), + [anon_sym_thread_local] = ACTIONS(5568), + [anon_sym___thread] = ACTIONS(5568), + [anon_sym_const] = ACTIONS(5568), + [anon_sym_constexpr] = ACTIONS(5568), + [anon_sym_volatile] = ACTIONS(5568), + [anon_sym_restrict] = ACTIONS(5568), + [anon_sym___restrict__] = ACTIONS(5568), + [anon_sym__Atomic] = ACTIONS(5568), + [anon_sym__Noreturn] = ACTIONS(5568), + [anon_sym_noreturn] = ACTIONS(5568), + [anon_sym_mutable] = ACTIONS(5568), + [anon_sym_constinit] = ACTIONS(5568), + [anon_sym_consteval] = ACTIONS(5568), + [sym_primitive_type] = ACTIONS(5568), + [anon_sym_enum] = ACTIONS(5568), + [anon_sym_class] = ACTIONS(5568), + [anon_sym_struct] = ACTIONS(5568), + [anon_sym_union] = ACTIONS(5568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5568), + [anon_sym_decltype] = ACTIONS(5568), + [anon_sym_virtual] = ACTIONS(5568), + [anon_sym_alignas] = ACTIONS(5568), + [anon_sym_explicit] = ACTIONS(5568), + [anon_sym_typename] = ACTIONS(5568), + [anon_sym_template] = ACTIONS(5568), + [anon_sym_operator] = ACTIONS(5568), + [anon_sym_friend] = ACTIONS(5568), + [anon_sym_public] = ACTIONS(5568), + [anon_sym_private] = ACTIONS(5568), + [anon_sym_protected] = ACTIONS(5568), + [anon_sym_using] = ACTIONS(5568), + [anon_sym_static_assert] = ACTIONS(5568), + }, + [2377] = { + [sym_identifier] = ACTIONS(5580), + [aux_sym_preproc_def_token1] = ACTIONS(5580), + [aux_sym_preproc_if_token1] = ACTIONS(5580), + [aux_sym_preproc_if_token2] = ACTIONS(5580), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5580), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5580), + [aux_sym_preproc_else_token1] = ACTIONS(5580), + [aux_sym_preproc_elif_token1] = ACTIONS(5580), + [sym_preproc_directive] = ACTIONS(5580), + [anon_sym_LPAREN2] = ACTIONS(5582), + [anon_sym_TILDE] = ACTIONS(5582), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_AMP_AMP] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5580), + [anon_sym___extension__] = ACTIONS(5580), + [anon_sym_typedef] = ACTIONS(5580), + [anon_sym_extern] = ACTIONS(5580), + [anon_sym___attribute__] = ACTIONS(5580), + [anon_sym_COLON_COLON] = ACTIONS(5582), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5582), + [anon_sym___declspec] = ACTIONS(5580), + [anon_sym___based] = ACTIONS(5580), + [anon_sym_signed] = ACTIONS(5580), + [anon_sym_unsigned] = ACTIONS(5580), + [anon_sym_long] = ACTIONS(5580), + [anon_sym_short] = ACTIONS(5580), + [anon_sym_LBRACK] = ACTIONS(5580), + [anon_sym_static] = ACTIONS(5580), + [anon_sym_register] = ACTIONS(5580), + [anon_sym_inline] = ACTIONS(5580), + [anon_sym___inline] = ACTIONS(5580), + [anon_sym___inline__] = ACTIONS(5580), + [anon_sym___forceinline] = ACTIONS(5580), + [anon_sym_thread_local] = ACTIONS(5580), + [anon_sym___thread] = ACTIONS(5580), + [anon_sym_const] = ACTIONS(5580), + [anon_sym_constexpr] = ACTIONS(5580), + [anon_sym_volatile] = ACTIONS(5580), + [anon_sym_restrict] = ACTIONS(5580), + [anon_sym___restrict__] = ACTIONS(5580), + [anon_sym__Atomic] = ACTIONS(5580), + [anon_sym__Noreturn] = ACTIONS(5580), + [anon_sym_noreturn] = ACTIONS(5580), + [anon_sym_mutable] = ACTIONS(5580), + [anon_sym_constinit] = ACTIONS(5580), + [anon_sym_consteval] = ACTIONS(5580), + [sym_primitive_type] = ACTIONS(5580), + [anon_sym_enum] = ACTIONS(5580), + [anon_sym_class] = ACTIONS(5580), + [anon_sym_struct] = ACTIONS(5580), + [anon_sym_union] = ACTIONS(5580), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5580), + [anon_sym_decltype] = ACTIONS(5580), + [anon_sym_virtual] = ACTIONS(5580), + [anon_sym_alignas] = ACTIONS(5580), + [anon_sym_explicit] = ACTIONS(5580), + [anon_sym_typename] = ACTIONS(5580), + [anon_sym_template] = ACTIONS(5580), + [anon_sym_operator] = ACTIONS(5580), + [anon_sym_friend] = ACTIONS(5580), + [anon_sym_public] = ACTIONS(5580), + [anon_sym_private] = ACTIONS(5580), + [anon_sym_protected] = ACTIONS(5580), + [anon_sym_using] = ACTIONS(5580), + [anon_sym_static_assert] = ACTIONS(5580), + }, + [2378] = { + [sym_identifier] = ACTIONS(5576), + [aux_sym_preproc_def_token1] = ACTIONS(5576), + [aux_sym_preproc_if_token1] = ACTIONS(5576), + [aux_sym_preproc_if_token2] = ACTIONS(5576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5576), + [aux_sym_preproc_else_token1] = ACTIONS(5576), + [aux_sym_preproc_elif_token1] = ACTIONS(5576), + [sym_preproc_directive] = ACTIONS(5576), + [anon_sym_LPAREN2] = ACTIONS(5578), + [anon_sym_TILDE] = ACTIONS(5578), + [anon_sym_STAR] = ACTIONS(5578), + [anon_sym_AMP_AMP] = ACTIONS(5578), + [anon_sym_AMP] = ACTIONS(5576), + [anon_sym___extension__] = ACTIONS(5576), + [anon_sym_typedef] = ACTIONS(5576), + [anon_sym_extern] = ACTIONS(5576), + [anon_sym___attribute__] = ACTIONS(5576), + [anon_sym_COLON_COLON] = ACTIONS(5578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5578), + [anon_sym___declspec] = ACTIONS(5576), + [anon_sym___based] = ACTIONS(5576), + [anon_sym_signed] = ACTIONS(5576), + [anon_sym_unsigned] = ACTIONS(5576), + [anon_sym_long] = ACTIONS(5576), + [anon_sym_short] = ACTIONS(5576), + [anon_sym_LBRACK] = ACTIONS(5576), + [anon_sym_static] = ACTIONS(5576), + [anon_sym_register] = ACTIONS(5576), + [anon_sym_inline] = ACTIONS(5576), + [anon_sym___inline] = ACTIONS(5576), + [anon_sym___inline__] = ACTIONS(5576), + [anon_sym___forceinline] = ACTIONS(5576), + [anon_sym_thread_local] = ACTIONS(5576), + [anon_sym___thread] = ACTIONS(5576), + [anon_sym_const] = ACTIONS(5576), + [anon_sym_constexpr] = ACTIONS(5576), + [anon_sym_volatile] = ACTIONS(5576), + [anon_sym_restrict] = ACTIONS(5576), + [anon_sym___restrict__] = ACTIONS(5576), + [anon_sym__Atomic] = ACTIONS(5576), + [anon_sym__Noreturn] = ACTIONS(5576), + [anon_sym_noreturn] = ACTIONS(5576), + [anon_sym_mutable] = ACTIONS(5576), + [anon_sym_constinit] = ACTIONS(5576), + [anon_sym_consteval] = ACTIONS(5576), + [sym_primitive_type] = ACTIONS(5576), + [anon_sym_enum] = ACTIONS(5576), + [anon_sym_class] = ACTIONS(5576), + [anon_sym_struct] = ACTIONS(5576), + [anon_sym_union] = ACTIONS(5576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5576), + [anon_sym_decltype] = ACTIONS(5576), + [anon_sym_virtual] = ACTIONS(5576), + [anon_sym_alignas] = ACTIONS(5576), + [anon_sym_explicit] = ACTIONS(5576), + [anon_sym_typename] = ACTIONS(5576), + [anon_sym_template] = ACTIONS(5576), + [anon_sym_operator] = ACTIONS(5576), + [anon_sym_friend] = ACTIONS(5576), + [anon_sym_public] = ACTIONS(5576), + [anon_sym_private] = ACTIONS(5576), + [anon_sym_protected] = ACTIONS(5576), + [anon_sym_using] = ACTIONS(5576), + [anon_sym_static_assert] = ACTIONS(5576), + }, + [2379] = { + [sym_identifier] = ACTIONS(5572), + [aux_sym_preproc_def_token1] = ACTIONS(5572), + [aux_sym_preproc_if_token1] = ACTIONS(5572), + [aux_sym_preproc_if_token2] = ACTIONS(5572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5572), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5572), + [aux_sym_preproc_else_token1] = ACTIONS(5572), + [aux_sym_preproc_elif_token1] = ACTIONS(5572), + [sym_preproc_directive] = ACTIONS(5572), + [anon_sym_LPAREN2] = ACTIONS(5574), + [anon_sym_TILDE] = ACTIONS(5574), + [anon_sym_STAR] = ACTIONS(5574), + [anon_sym_AMP_AMP] = ACTIONS(5574), + [anon_sym_AMP] = ACTIONS(5572), + [anon_sym___extension__] = ACTIONS(5572), + [anon_sym_typedef] = ACTIONS(5572), + [anon_sym_extern] = ACTIONS(5572), + [anon_sym___attribute__] = ACTIONS(5572), + [anon_sym_COLON_COLON] = ACTIONS(5574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5574), + [anon_sym___declspec] = ACTIONS(5572), + [anon_sym___based] = ACTIONS(5572), + [anon_sym_signed] = ACTIONS(5572), + [anon_sym_unsigned] = ACTIONS(5572), + [anon_sym_long] = ACTIONS(5572), + [anon_sym_short] = ACTIONS(5572), + [anon_sym_LBRACK] = ACTIONS(5572), + [anon_sym_static] = ACTIONS(5572), + [anon_sym_register] = ACTIONS(5572), + [anon_sym_inline] = ACTIONS(5572), + [anon_sym___inline] = ACTIONS(5572), + [anon_sym___inline__] = ACTIONS(5572), + [anon_sym___forceinline] = ACTIONS(5572), + [anon_sym_thread_local] = ACTIONS(5572), + [anon_sym___thread] = ACTIONS(5572), + [anon_sym_const] = ACTIONS(5572), + [anon_sym_constexpr] = ACTIONS(5572), + [anon_sym_volatile] = ACTIONS(5572), + [anon_sym_restrict] = ACTIONS(5572), + [anon_sym___restrict__] = ACTIONS(5572), + [anon_sym__Atomic] = ACTIONS(5572), + [anon_sym__Noreturn] = ACTIONS(5572), + [anon_sym_noreturn] = ACTIONS(5572), + [anon_sym_mutable] = ACTIONS(5572), + [anon_sym_constinit] = ACTIONS(5572), + [anon_sym_consteval] = ACTIONS(5572), + [sym_primitive_type] = ACTIONS(5572), + [anon_sym_enum] = ACTIONS(5572), + [anon_sym_class] = ACTIONS(5572), + [anon_sym_struct] = ACTIONS(5572), + [anon_sym_union] = ACTIONS(5572), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5572), + [anon_sym_decltype] = ACTIONS(5572), + [anon_sym_virtual] = ACTIONS(5572), + [anon_sym_alignas] = ACTIONS(5572), + [anon_sym_explicit] = ACTIONS(5572), + [anon_sym_typename] = ACTIONS(5572), + [anon_sym_template] = ACTIONS(5572), + [anon_sym_operator] = ACTIONS(5572), + [anon_sym_friend] = ACTIONS(5572), + [anon_sym_public] = ACTIONS(5572), + [anon_sym_private] = ACTIONS(5572), + [anon_sym_protected] = ACTIONS(5572), + [anon_sym_using] = ACTIONS(5572), + [anon_sym_static_assert] = ACTIONS(5572), + }, + [2380] = { + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [aux_sym_preproc_else_token1] = ACTIONS(2875), + [aux_sym_preproc_elif_token1] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym___extension__] = ACTIONS(2875), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym___inline] = ACTIONS(2875), + [anon_sym___inline__] = ACTIONS(2875), + [anon_sym___forceinline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym___thread] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym___restrict__] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym__Noreturn] = ACTIONS(2875), + [anon_sym_noreturn] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_alignas] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_friend] = ACTIONS(2875), + [anon_sym_public] = ACTIONS(2875), + [anon_sym_private] = ACTIONS(2875), + [anon_sym_protected] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + }, + [2381] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + }, + [2382] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5299), + [anon_sym_COMMA] = ACTIONS(5299), + [anon_sym_RPAREN] = ACTIONS(5299), + [anon_sym_LPAREN2] = ACTIONS(5299), + [anon_sym_DASH] = ACTIONS(5297), + [anon_sym_PLUS] = ACTIONS(5297), + [anon_sym_STAR] = ACTIONS(5297), + [anon_sym_SLASH] = ACTIONS(5297), + [anon_sym_PERCENT] = ACTIONS(5297), + [anon_sym_PIPE_PIPE] = ACTIONS(5299), + [anon_sym_AMP_AMP] = ACTIONS(5299), + [anon_sym_PIPE] = ACTIONS(5297), + [anon_sym_CARET] = ACTIONS(5297), + [anon_sym_AMP] = ACTIONS(5297), + [anon_sym_EQ_EQ] = ACTIONS(5299), + [anon_sym_BANG_EQ] = ACTIONS(5299), + [anon_sym_GT] = ACTIONS(5297), + [anon_sym_GT_EQ] = ACTIONS(5299), + [anon_sym_LT_EQ] = ACTIONS(5297), + [anon_sym_LT] = ACTIONS(5297), + [anon_sym_LT_LT] = ACTIONS(5297), + [anon_sym_GT_GT] = ACTIONS(5297), + [anon_sym_SEMI] = ACTIONS(5299), + [anon_sym_RBRACE] = ACTIONS(5299), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym_RBRACK] = ACTIONS(5299), + [anon_sym_EQ] = ACTIONS(5297), + [anon_sym_COLON] = ACTIONS(5299), + [anon_sym_QMARK] = ACTIONS(5299), + [anon_sym_STAR_EQ] = ACTIONS(5299), + [anon_sym_SLASH_EQ] = ACTIONS(5299), + [anon_sym_PERCENT_EQ] = ACTIONS(5299), + [anon_sym_PLUS_EQ] = ACTIONS(5299), + [anon_sym_DASH_EQ] = ACTIONS(5299), + [anon_sym_LT_LT_EQ] = ACTIONS(5299), + [anon_sym_GT_GT_EQ] = ACTIONS(5299), + [anon_sym_AMP_EQ] = ACTIONS(5299), + [anon_sym_CARET_EQ] = ACTIONS(5299), + [anon_sym_PIPE_EQ] = ACTIONS(5299), + [anon_sym_and_eq] = ACTIONS(5297), + [anon_sym_or_eq] = ACTIONS(5297), + [anon_sym_xor_eq] = ACTIONS(5297), + [anon_sym_LT_EQ_GT] = ACTIONS(5299), + [anon_sym_or] = ACTIONS(5297), + [anon_sym_and] = ACTIONS(5297), + [anon_sym_bitor] = ACTIONS(5297), + [anon_sym_xor] = ACTIONS(5297), + [anon_sym_bitand] = ACTIONS(5297), + [anon_sym_not_eq] = ACTIONS(5297), + [anon_sym_DASH_DASH] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(5299), + [anon_sym_DOT] = ACTIONS(5297), + [anon_sym_DOT_STAR] = ACTIONS(5299), + [anon_sym_DASH_GT] = ACTIONS(5299), + [anon_sym_L_DQUOTE] = ACTIONS(5299), + [anon_sym_u_DQUOTE] = ACTIONS(5299), + [anon_sym_U_DQUOTE] = ACTIONS(5299), + [anon_sym_u8_DQUOTE] = ACTIONS(5299), + [anon_sym_DQUOTE] = ACTIONS(5299), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5299), + [anon_sym_LR_DQUOTE] = ACTIONS(5299), + [anon_sym_uR_DQUOTE] = ACTIONS(5299), + [anon_sym_UR_DQUOTE] = ACTIONS(5299), + [anon_sym_u8R_DQUOTE] = ACTIONS(5299), + [sym_literal_suffix] = ACTIONS(5297), + }, + [2383] = { + [sym_identifier] = ACTIONS(3223), + [aux_sym_preproc_def_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token1] = ACTIONS(3223), + [aux_sym_preproc_if_token2] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3223), + [aux_sym_preproc_else_token1] = ACTIONS(3223), + [aux_sym_preproc_elif_token1] = ACTIONS(3223), + [sym_preproc_directive] = ACTIONS(3223), + [anon_sym_LPAREN2] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_AMP_AMP] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3223), + [anon_sym___extension__] = ACTIONS(3223), + [anon_sym_typedef] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym___attribute__] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3225), + [anon_sym___declspec] = ACTIONS(3223), + [anon_sym___based] = ACTIONS(3223), + [anon_sym_signed] = ACTIONS(3223), + [anon_sym_unsigned] = ACTIONS(3223), + [anon_sym_long] = ACTIONS(3223), + [anon_sym_short] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_register] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym___inline] = ACTIONS(3223), + [anon_sym___inline__] = ACTIONS(3223), + [anon_sym___forceinline] = ACTIONS(3223), + [anon_sym_thread_local] = ACTIONS(3223), + [anon_sym___thread] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_constexpr] = ACTIONS(3223), + [anon_sym_volatile] = ACTIONS(3223), + [anon_sym_restrict] = ACTIONS(3223), + [anon_sym___restrict__] = ACTIONS(3223), + [anon_sym__Atomic] = ACTIONS(3223), + [anon_sym__Noreturn] = ACTIONS(3223), + [anon_sym_noreturn] = ACTIONS(3223), + [anon_sym_mutable] = ACTIONS(3223), + [anon_sym_constinit] = ACTIONS(3223), + [anon_sym_consteval] = ACTIONS(3223), + [sym_primitive_type] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3223), + [anon_sym_decltype] = ACTIONS(3223), + [anon_sym_virtual] = ACTIONS(3223), + [anon_sym_alignas] = ACTIONS(3223), + [anon_sym_explicit] = ACTIONS(3223), + [anon_sym_typename] = ACTIONS(3223), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_operator] = ACTIONS(3223), + [anon_sym_friend] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_static_assert] = ACTIONS(3223), + }, + [2384] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2036), + [sym_identifier] = ACTIONS(5769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5766), + [aux_sym_preproc_if_token2] = ACTIONS(5766), + [aux_sym_preproc_else_token1] = ACTIONS(5766), + [aux_sym_preproc_elif_token1] = ACTIONS(5769), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5766), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5766), + [anon_sym_LPAREN2] = ACTIONS(5766), + [anon_sym_DASH] = ACTIONS(5769), + [anon_sym_PLUS] = ACTIONS(5769), + [anon_sym_STAR] = ACTIONS(5769), + [anon_sym_SLASH] = ACTIONS(5769), + [anon_sym_PERCENT] = ACTIONS(5769), + [anon_sym_PIPE_PIPE] = ACTIONS(5766), + [anon_sym_AMP_AMP] = ACTIONS(5766), + [anon_sym_PIPE] = ACTIONS(5769), + [anon_sym_CARET] = ACTIONS(5769), + [anon_sym_AMP] = ACTIONS(5769), + [anon_sym_EQ_EQ] = ACTIONS(5766), + [anon_sym_BANG_EQ] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5769), + [anon_sym_GT_EQ] = ACTIONS(5766), + [anon_sym_LT_EQ] = ACTIONS(5769), + [anon_sym_LT] = ACTIONS(5769), + [anon_sym_LT_LT] = ACTIONS(5769), + [anon_sym_GT_GT] = ACTIONS(5769), + [anon_sym___attribute__] = ACTIONS(5769), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_signed] = ACTIONS(5327), + [anon_sym_unsigned] = ACTIONS(5327), + [anon_sym_long] = ACTIONS(5327), + [anon_sym_short] = ACTIONS(5327), + [anon_sym_LBRACK] = ACTIONS(5766), + [anon_sym_EQ] = ACTIONS(5769), + [sym_primitive_type] = ACTIONS(5278), + [anon_sym_QMARK] = ACTIONS(5766), + [anon_sym_STAR_EQ] = ACTIONS(5766), + [anon_sym_SLASH_EQ] = ACTIONS(5766), + [anon_sym_PERCENT_EQ] = ACTIONS(5766), + [anon_sym_PLUS_EQ] = ACTIONS(5766), + [anon_sym_DASH_EQ] = ACTIONS(5766), + [anon_sym_LT_LT_EQ] = ACTIONS(5766), + [anon_sym_GT_GT_EQ] = ACTIONS(5766), + [anon_sym_AMP_EQ] = ACTIONS(5766), + [anon_sym_CARET_EQ] = ACTIONS(5766), + [anon_sym_PIPE_EQ] = ACTIONS(5766), + [anon_sym_and_eq] = ACTIONS(5769), + [anon_sym_or_eq] = ACTIONS(5769), + [anon_sym_xor_eq] = ACTIONS(5769), + [anon_sym_LT_EQ_GT] = ACTIONS(5766), + [anon_sym_or] = ACTIONS(5769), + [anon_sym_and] = ACTIONS(5769), + [anon_sym_bitor] = ACTIONS(5769), + [anon_sym_xor] = ACTIONS(5769), + [anon_sym_bitand] = ACTIONS(5769), + [anon_sym_not_eq] = ACTIONS(5769), + [anon_sym_DASH_DASH] = ACTIONS(5766), + [anon_sym_PLUS_PLUS] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5769), + [anon_sym_DOT_STAR] = ACTIONS(5766), + [anon_sym_DASH_GT] = ACTIONS(5766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5769), + [anon_sym_decltype] = ACTIONS(5769), + }, + [2385] = { + [sym_identifier] = ACTIONS(2949), + [aux_sym_preproc_def_token1] = ACTIONS(2949), + [aux_sym_preproc_if_token1] = ACTIONS(2949), + [aux_sym_preproc_if_token2] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), + [aux_sym_preproc_else_token1] = ACTIONS(2949), + [aux_sym_preproc_elif_token1] = ACTIONS(2949), + [sym_preproc_directive] = ACTIONS(2949), + [anon_sym_LPAREN2] = ACTIONS(2951), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym___extension__] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym___attribute__] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2951), + [anon_sym___declspec] = ACTIONS(2949), + [anon_sym___based] = ACTIONS(2949), + [anon_sym_signed] = ACTIONS(2949), + [anon_sym_unsigned] = ACTIONS(2949), + [anon_sym_long] = ACTIONS(2949), + [anon_sym_short] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_register] = ACTIONS(2949), + [anon_sym_inline] = ACTIONS(2949), + [anon_sym___inline] = ACTIONS(2949), + [anon_sym___inline__] = ACTIONS(2949), + [anon_sym___forceinline] = ACTIONS(2949), + [anon_sym_thread_local] = ACTIONS(2949), + [anon_sym___thread] = ACTIONS(2949), + [anon_sym_const] = ACTIONS(2949), + [anon_sym_constexpr] = ACTIONS(2949), + [anon_sym_volatile] = ACTIONS(2949), + [anon_sym_restrict] = ACTIONS(2949), + [anon_sym___restrict__] = ACTIONS(2949), + [anon_sym__Atomic] = ACTIONS(2949), + [anon_sym__Noreturn] = ACTIONS(2949), + [anon_sym_noreturn] = ACTIONS(2949), + [anon_sym_mutable] = ACTIONS(2949), + [anon_sym_constinit] = ACTIONS(2949), + [anon_sym_consteval] = ACTIONS(2949), + [sym_primitive_type] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_struct] = ACTIONS(2949), + [anon_sym_union] = ACTIONS(2949), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2949), + [anon_sym_decltype] = ACTIONS(2949), + [anon_sym_virtual] = ACTIONS(2949), + [anon_sym_alignas] = ACTIONS(2949), + [anon_sym_explicit] = ACTIONS(2949), + [anon_sym_typename] = ACTIONS(2949), + [anon_sym_template] = ACTIONS(2949), + [anon_sym_operator] = ACTIONS(2949), + [anon_sym_friend] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_protected] = ACTIONS(2949), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_static_assert] = ACTIONS(2949), + }, + [2386] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), + [anon_sym_COMMA] = ACTIONS(5272), + [anon_sym_RPAREN] = ACTIONS(5272), + [anon_sym_LPAREN2] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5270), + [anon_sym_STAR] = ACTIONS(5270), + [anon_sym_SLASH] = ACTIONS(5270), + [anon_sym_PERCENT] = ACTIONS(5270), + [anon_sym_PIPE_PIPE] = ACTIONS(5272), + [anon_sym_AMP_AMP] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(5270), + [anon_sym_CARET] = ACTIONS(5270), + [anon_sym_AMP] = ACTIONS(5270), + [anon_sym_EQ_EQ] = ACTIONS(5272), + [anon_sym_BANG_EQ] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(5270), + [anon_sym_GT_EQ] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(5270), + [anon_sym_LT] = ACTIONS(5270), + [anon_sym_LT_LT] = ACTIONS(5270), + [anon_sym_GT_GT] = ACTIONS(5270), + [anon_sym_SEMI] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5272), + [anon_sym_RBRACK] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_COLON] = ACTIONS(5272), + [anon_sym_QMARK] = ACTIONS(5272), + [anon_sym_STAR_EQ] = ACTIONS(5272), + [anon_sym_SLASH_EQ] = ACTIONS(5272), + [anon_sym_PERCENT_EQ] = ACTIONS(5272), + [anon_sym_PLUS_EQ] = ACTIONS(5272), + [anon_sym_DASH_EQ] = ACTIONS(5272), + [anon_sym_LT_LT_EQ] = ACTIONS(5272), + [anon_sym_GT_GT_EQ] = ACTIONS(5272), + [anon_sym_AMP_EQ] = ACTIONS(5272), + [anon_sym_CARET_EQ] = ACTIONS(5272), + [anon_sym_PIPE_EQ] = ACTIONS(5272), + [anon_sym_and_eq] = ACTIONS(5270), + [anon_sym_or_eq] = ACTIONS(5270), + [anon_sym_xor_eq] = ACTIONS(5270), + [anon_sym_LT_EQ_GT] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(5270), + [anon_sym_and] = ACTIONS(5270), + [anon_sym_bitor] = ACTIONS(5270), + [anon_sym_xor] = ACTIONS(5270), + [anon_sym_bitand] = ACTIONS(5270), + [anon_sym_not_eq] = ACTIONS(5270), + [anon_sym_DASH_DASH] = ACTIONS(5272), + [anon_sym_PLUS_PLUS] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(5270), + [anon_sym_DOT_STAR] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(5272), + [anon_sym_L_DQUOTE] = ACTIONS(5272), + [anon_sym_u_DQUOTE] = ACTIONS(5272), + [anon_sym_U_DQUOTE] = ACTIONS(5272), + [anon_sym_u8_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE] = ACTIONS(5272), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5272), + [anon_sym_LR_DQUOTE] = ACTIONS(5272), + [anon_sym_uR_DQUOTE] = ACTIONS(5272), + [anon_sym_UR_DQUOTE] = ACTIONS(5272), + [anon_sym_u8R_DQUOTE] = ACTIONS(5272), + [sym_literal_suffix] = ACTIONS(5270), + }, + [2387] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2305), + [sym_identifier] = ACTIONS(5903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_LPAREN2] = ACTIONS(5813), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5815), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_PERCENT] = ACTIONS(5815), + [anon_sym_PIPE_PIPE] = ACTIONS(5813), + [anon_sym_AMP_AMP] = ACTIONS(5813), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5815), + [anon_sym_AMP] = ACTIONS(5815), + [anon_sym_EQ_EQ] = ACTIONS(5813), + [anon_sym_BANG_EQ] = ACTIONS(5813), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_GT_EQ] = ACTIONS(5813), + [anon_sym_LT_EQ] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_LT_LT] = ACTIONS(5815), + [anon_sym_GT_GT] = ACTIONS(5815), + [anon_sym_SEMI] = ACTIONS(5813), + [anon_sym___attribute__] = ACTIONS(5815), + [anon_sym_LBRACE] = ACTIONS(5813), + [anon_sym_RBRACE] = ACTIONS(5813), + [anon_sym_signed] = ACTIONS(5905), + [anon_sym_unsigned] = ACTIONS(5905), + [anon_sym_long] = ACTIONS(5905), + [anon_sym_short] = ACTIONS(5905), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_EQ] = ACTIONS(5815), + [sym_primitive_type] = ACTIONS(5907), + [anon_sym_COLON] = ACTIONS(5813), + [anon_sym_QMARK] = ACTIONS(5813), + [anon_sym_STAR_EQ] = ACTIONS(5813), + [anon_sym_SLASH_EQ] = ACTIONS(5813), + [anon_sym_PERCENT_EQ] = ACTIONS(5813), + [anon_sym_PLUS_EQ] = ACTIONS(5813), + [anon_sym_DASH_EQ] = ACTIONS(5813), + [anon_sym_LT_LT_EQ] = ACTIONS(5813), + [anon_sym_GT_GT_EQ] = ACTIONS(5813), + [anon_sym_AMP_EQ] = ACTIONS(5813), + [anon_sym_CARET_EQ] = ACTIONS(5813), + [anon_sym_PIPE_EQ] = ACTIONS(5813), + [anon_sym_and_eq] = ACTIONS(5815), + [anon_sym_or_eq] = ACTIONS(5815), + [anon_sym_xor_eq] = ACTIONS(5815), + [anon_sym_LT_EQ_GT] = ACTIONS(5813), + [anon_sym_or] = ACTIONS(5815), + [anon_sym_and] = ACTIONS(5815), + [anon_sym_bitor] = ACTIONS(5815), + [anon_sym_xor] = ACTIONS(5815), + [anon_sym_bitand] = ACTIONS(5815), + [anon_sym_not_eq] = ACTIONS(5815), + [anon_sym_DASH_DASH] = ACTIONS(5813), + [anon_sym_PLUS_PLUS] = ACTIONS(5813), + [anon_sym_DOT] = ACTIONS(5815), + [anon_sym_DOT_STAR] = ACTIONS(5813), + [anon_sym_DASH_GT] = ACTIONS(5813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5815), + [anon_sym_decltype] = ACTIONS(5815), + }, + [2388] = { + [sym_identifier] = ACTIONS(3248), + [aux_sym_preproc_def_token1] = ACTIONS(3248), + [aux_sym_preproc_if_token1] = ACTIONS(3248), + [aux_sym_preproc_if_token2] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3248), + [aux_sym_preproc_else_token1] = ACTIONS(3248), + [aux_sym_preproc_elif_token1] = ACTIONS(3248), + [sym_preproc_directive] = ACTIONS(3248), + [anon_sym_LPAREN2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3248), + [anon_sym___extension__] = ACTIONS(3248), + [anon_sym_typedef] = ACTIONS(3248), + [anon_sym_extern] = ACTIONS(3248), + [anon_sym___attribute__] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(3250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3250), + [anon_sym___declspec] = ACTIONS(3248), + [anon_sym___based] = ACTIONS(3248), + [anon_sym_signed] = ACTIONS(3248), + [anon_sym_unsigned] = ACTIONS(3248), + [anon_sym_long] = ACTIONS(3248), + [anon_sym_short] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3248), + [anon_sym_register] = ACTIONS(3248), + [anon_sym_inline] = ACTIONS(3248), + [anon_sym___inline] = ACTIONS(3248), + [anon_sym___inline__] = ACTIONS(3248), + [anon_sym___forceinline] = ACTIONS(3248), + [anon_sym_thread_local] = ACTIONS(3248), + [anon_sym___thread] = ACTIONS(3248), + [anon_sym_const] = ACTIONS(3248), + [anon_sym_constexpr] = ACTIONS(3248), + [anon_sym_volatile] = ACTIONS(3248), + [anon_sym_restrict] = ACTIONS(3248), + [anon_sym___restrict__] = ACTIONS(3248), + [anon_sym__Atomic] = ACTIONS(3248), + [anon_sym__Noreturn] = ACTIONS(3248), + [anon_sym_noreturn] = ACTIONS(3248), + [anon_sym_mutable] = ACTIONS(3248), + [anon_sym_constinit] = ACTIONS(3248), + [anon_sym_consteval] = ACTIONS(3248), + [sym_primitive_type] = ACTIONS(3248), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3248), + [anon_sym_union] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3248), + [anon_sym_decltype] = ACTIONS(3248), + [anon_sym_virtual] = ACTIONS(3248), + [anon_sym_alignas] = ACTIONS(3248), + [anon_sym_explicit] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3248), + [anon_sym_template] = ACTIONS(3248), + [anon_sym_operator] = ACTIONS(3248), + [anon_sym_friend] = ACTIONS(3248), + [anon_sym_public] = ACTIONS(3248), + [anon_sym_private] = ACTIONS(3248), + [anon_sym_protected] = ACTIONS(3248), + [anon_sym_using] = ACTIONS(3248), + [anon_sym_static_assert] = ACTIONS(3248), + }, + [2389] = { + [sym_template_argument_list] = STATE(2172), + [aux_sym_sized_type_specifier_repeat1] = STATE(2517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4143), + [anon_sym_COMMA] = ACTIONS(4143), + [anon_sym_RPAREN] = ACTIONS(4143), + [anon_sym_LPAREN2] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4135), + [anon_sym_PLUS] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(4135), + [anon_sym_SLASH] = ACTIONS(4135), + [anon_sym_PERCENT] = ACTIONS(4135), + [anon_sym_PIPE_PIPE] = ACTIONS(4143), + [anon_sym_AMP_AMP] = ACTIONS(4143), + [anon_sym_PIPE] = ACTIONS(4135), + [anon_sym_CARET] = ACTIONS(4135), + [anon_sym_AMP] = ACTIONS(4135), + [anon_sym_EQ_EQ] = ACTIONS(4143), + [anon_sym_BANG_EQ] = ACTIONS(4143), + [anon_sym_GT] = ACTIONS(4135), + [anon_sym_GT_EQ] = ACTIONS(4143), + [anon_sym_LT_EQ] = ACTIONS(4135), + [anon_sym_LT] = ACTIONS(5399), + [anon_sym_LT_LT] = ACTIONS(4135), + [anon_sym_GT_GT] = ACTIONS(4135), + [anon_sym_SEMI] = ACTIONS(4143), + [anon_sym___attribute__] = ACTIONS(4143), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4143), + [anon_sym_RBRACE] = ACTIONS(4143), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(4143), + [anon_sym_RBRACK] = ACTIONS(4143), + [anon_sym_EQ] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(4135), + [anon_sym_QMARK] = ACTIONS(4143), + [anon_sym_STAR_EQ] = ACTIONS(4143), + [anon_sym_SLASH_EQ] = ACTIONS(4143), + [anon_sym_PERCENT_EQ] = ACTIONS(4143), + [anon_sym_PLUS_EQ] = ACTIONS(4143), + [anon_sym_DASH_EQ] = ACTIONS(4143), + [anon_sym_LT_LT_EQ] = ACTIONS(4143), + [anon_sym_GT_GT_EQ] = ACTIONS(4143), + [anon_sym_AMP_EQ] = ACTIONS(4143), + [anon_sym_CARET_EQ] = ACTIONS(4143), + [anon_sym_PIPE_EQ] = ACTIONS(4143), + [anon_sym_and_eq] = ACTIONS(4143), + [anon_sym_or_eq] = ACTIONS(4143), + [anon_sym_xor_eq] = ACTIONS(4143), + [anon_sym_LT_EQ_GT] = ACTIONS(4143), + [anon_sym_or] = ACTIONS(4135), + [anon_sym_and] = ACTIONS(4135), + [anon_sym_bitor] = ACTIONS(4143), + [anon_sym_xor] = ACTIONS(4135), + [anon_sym_bitand] = ACTIONS(4143), + [anon_sym_not_eq] = ACTIONS(4143), + [anon_sym_DASH_DASH] = ACTIONS(4143), + [anon_sym_PLUS_PLUS] = ACTIONS(4143), + [anon_sym_DOT] = ACTIONS(4135), + [anon_sym_DOT_STAR] = ACTIONS(4143), + [anon_sym_DASH_GT] = ACTIONS(4143), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4143), + [anon_sym_decltype] = ACTIONS(4143), + }, + [2390] = { + [sym_identifier] = ACTIONS(3227), + [aux_sym_preproc_def_token1] = ACTIONS(3227), + [aux_sym_preproc_if_token1] = ACTIONS(3227), + [aux_sym_preproc_if_token2] = ACTIONS(3227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3227), + [aux_sym_preproc_else_token1] = ACTIONS(3227), + [aux_sym_preproc_elif_token1] = ACTIONS(3227), + [sym_preproc_directive] = ACTIONS(3227), + [anon_sym_LPAREN2] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3227), + [anon_sym___extension__] = ACTIONS(3227), + [anon_sym_typedef] = ACTIONS(3227), + [anon_sym_extern] = ACTIONS(3227), + [anon_sym___attribute__] = ACTIONS(3227), + [anon_sym_COLON_COLON] = ACTIONS(3229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3229), + [anon_sym___declspec] = ACTIONS(3227), + [anon_sym___based] = ACTIONS(3227), + [anon_sym_signed] = ACTIONS(3227), + [anon_sym_unsigned] = ACTIONS(3227), + [anon_sym_long] = ACTIONS(3227), + [anon_sym_short] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_register] = ACTIONS(3227), + [anon_sym_inline] = ACTIONS(3227), + [anon_sym___inline] = ACTIONS(3227), + [anon_sym___inline__] = ACTIONS(3227), + [anon_sym___forceinline] = ACTIONS(3227), + [anon_sym_thread_local] = ACTIONS(3227), + [anon_sym___thread] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_constexpr] = ACTIONS(3227), + [anon_sym_volatile] = ACTIONS(3227), + [anon_sym_restrict] = ACTIONS(3227), + [anon_sym___restrict__] = ACTIONS(3227), + [anon_sym__Atomic] = ACTIONS(3227), + [anon_sym__Noreturn] = ACTIONS(3227), + [anon_sym_noreturn] = ACTIONS(3227), + [anon_sym_mutable] = ACTIONS(3227), + [anon_sym_constinit] = ACTIONS(3227), + [anon_sym_consteval] = ACTIONS(3227), + [sym_primitive_type] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_struct] = ACTIONS(3227), + [anon_sym_union] = ACTIONS(3227), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3227), + [anon_sym_decltype] = ACTIONS(3227), + [anon_sym_virtual] = ACTIONS(3227), + [anon_sym_alignas] = ACTIONS(3227), + [anon_sym_explicit] = ACTIONS(3227), + [anon_sym_typename] = ACTIONS(3227), + [anon_sym_template] = ACTIONS(3227), + [anon_sym_operator] = ACTIONS(3227), + [anon_sym_friend] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_static_assert] = ACTIONS(3227), + }, + [2391] = { + [sym_attribute_specifier] = STATE(2447), + [sym_identifier] = ACTIONS(5909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5911), + [anon_sym_COMMA] = ACTIONS(5911), + [anon_sym_RPAREN] = ACTIONS(5911), + [aux_sym_preproc_if_token2] = ACTIONS(5911), + [aux_sym_preproc_else_token1] = ACTIONS(5911), + [aux_sym_preproc_elif_token1] = ACTIONS(5909), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5911), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5911), + [anon_sym_LPAREN2] = ACTIONS(5911), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_PLUS] = ACTIONS(5909), + [anon_sym_STAR] = ACTIONS(5909), + [anon_sym_SLASH] = ACTIONS(5909), + [anon_sym_PERCENT] = ACTIONS(5909), + [anon_sym_PIPE_PIPE] = ACTIONS(5911), + [anon_sym_AMP_AMP] = ACTIONS(5911), + [anon_sym_PIPE] = ACTIONS(5909), + [anon_sym_CARET] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5909), + [anon_sym_EQ_EQ] = ACTIONS(5911), + [anon_sym_BANG_EQ] = ACTIONS(5911), + [anon_sym_GT] = ACTIONS(5909), + [anon_sym_GT_EQ] = ACTIONS(5911), + [anon_sym_LT_EQ] = ACTIONS(5909), + [anon_sym_LT] = ACTIONS(5909), + [anon_sym_LT_LT] = ACTIONS(5909), + [anon_sym_GT_GT] = ACTIONS(5909), + [anon_sym_SEMI] = ACTIONS(5911), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5911), + [anon_sym_RBRACE] = ACTIONS(5911), + [anon_sym_LBRACK] = ACTIONS(5911), + [anon_sym_RBRACK] = ACTIONS(5911), + [anon_sym_EQ] = ACTIONS(5909), + [anon_sym_COLON] = ACTIONS(5911), + [anon_sym_QMARK] = ACTIONS(5911), + [anon_sym_STAR_EQ] = ACTIONS(5911), + [anon_sym_SLASH_EQ] = ACTIONS(5911), + [anon_sym_PERCENT_EQ] = ACTIONS(5911), + [anon_sym_PLUS_EQ] = ACTIONS(5911), + [anon_sym_DASH_EQ] = ACTIONS(5911), + [anon_sym_LT_LT_EQ] = ACTIONS(5911), + [anon_sym_GT_GT_EQ] = ACTIONS(5911), + [anon_sym_AMP_EQ] = ACTIONS(5911), + [anon_sym_CARET_EQ] = ACTIONS(5911), + [anon_sym_PIPE_EQ] = ACTIONS(5911), + [anon_sym_and_eq] = ACTIONS(5909), + [anon_sym_or_eq] = ACTIONS(5909), + [anon_sym_xor_eq] = ACTIONS(5909), + [anon_sym_LT_EQ_GT] = ACTIONS(5911), + [anon_sym_or] = ACTIONS(5909), + [anon_sym_and] = ACTIONS(5909), + [anon_sym_bitor] = ACTIONS(5909), + [anon_sym_xor] = ACTIONS(5909), + [anon_sym_bitand] = ACTIONS(5909), + [anon_sym_not_eq] = ACTIONS(5909), + [anon_sym_DASH_DASH] = ACTIONS(5911), + [anon_sym_PLUS_PLUS] = ACTIONS(5911), + [anon_sym_DOT] = ACTIONS(5909), + [anon_sym_DOT_STAR] = ACTIONS(5911), + [anon_sym_DASH_GT] = ACTIONS(5911), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5909), + [anon_sym_decltype] = ACTIONS(5909), + }, + [2392] = { + [sym_identifier] = ACTIONS(3012), + [aux_sym_preproc_def_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token2] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3012), + [aux_sym_preproc_else_token1] = ACTIONS(3012), + [aux_sym_preproc_elif_token1] = ACTIONS(3012), + [sym_preproc_directive] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym___extension__] = ACTIONS(3012), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym___based] = ACTIONS(3012), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym___inline] = ACTIONS(3012), + [anon_sym___inline__] = ACTIONS(3012), + [anon_sym___forceinline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym___thread] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_alignas] = ACTIONS(3012), + [anon_sym_explicit] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_operator] = ACTIONS(3012), + [anon_sym_friend] = ACTIONS(3012), + [anon_sym_public] = ACTIONS(3012), + [anon_sym_private] = ACTIONS(3012), + [anon_sym_protected] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_static_assert] = ACTIONS(3012), + }, + [2393] = { + [sym_identifier] = ACTIONS(3078), + [aux_sym_preproc_def_token1] = ACTIONS(3078), + [aux_sym_preproc_if_token1] = ACTIONS(3078), + [aux_sym_preproc_if_token2] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3078), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3078), + [aux_sym_preproc_else_token1] = ACTIONS(3078), + [aux_sym_preproc_elif_token1] = ACTIONS(3078), + [sym_preproc_directive] = ACTIONS(3078), + [anon_sym_LPAREN2] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym___extension__] = ACTIONS(3078), + [anon_sym_typedef] = ACTIONS(3078), + [anon_sym_extern] = ACTIONS(3078), + [anon_sym___attribute__] = ACTIONS(3078), + [anon_sym_COLON_COLON] = ACTIONS(3080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3080), + [anon_sym___declspec] = ACTIONS(3078), + [anon_sym___based] = ACTIONS(3078), + [anon_sym_signed] = ACTIONS(3078), + [anon_sym_unsigned] = ACTIONS(3078), + [anon_sym_long] = ACTIONS(3078), + [anon_sym_short] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_static] = ACTIONS(3078), + [anon_sym_register] = ACTIONS(3078), + [anon_sym_inline] = ACTIONS(3078), + [anon_sym___inline] = ACTIONS(3078), + [anon_sym___inline__] = ACTIONS(3078), + [anon_sym___forceinline] = ACTIONS(3078), + [anon_sym_thread_local] = ACTIONS(3078), + [anon_sym___thread] = ACTIONS(3078), + [anon_sym_const] = ACTIONS(3078), + [anon_sym_constexpr] = ACTIONS(3078), + [anon_sym_volatile] = ACTIONS(3078), + [anon_sym_restrict] = ACTIONS(3078), + [anon_sym___restrict__] = ACTIONS(3078), + [anon_sym__Atomic] = ACTIONS(3078), + [anon_sym__Noreturn] = ACTIONS(3078), + [anon_sym_noreturn] = ACTIONS(3078), + [anon_sym_mutable] = ACTIONS(3078), + [anon_sym_constinit] = ACTIONS(3078), + [anon_sym_consteval] = ACTIONS(3078), + [sym_primitive_type] = ACTIONS(3078), + [anon_sym_enum] = ACTIONS(3078), + [anon_sym_class] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(3078), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3078), + [anon_sym_decltype] = ACTIONS(3078), + [anon_sym_virtual] = ACTIONS(3078), + [anon_sym_alignas] = ACTIONS(3078), + [anon_sym_explicit] = ACTIONS(3078), + [anon_sym_typename] = ACTIONS(3078), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_operator] = ACTIONS(3078), + [anon_sym_friend] = ACTIONS(3078), + [anon_sym_public] = ACTIONS(3078), + [anon_sym_private] = ACTIONS(3078), + [anon_sym_protected] = ACTIONS(3078), + [anon_sym_using] = ACTIONS(3078), + [anon_sym_static_assert] = ACTIONS(3078), + }, + [2394] = { + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token2] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [aux_sym_preproc_else_token1] = ACTIONS(3134), + [aux_sym_preproc_elif_token1] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_friend] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_protected] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), + }, + [2395] = { + [sym__declaration_modifiers] = STATE(4077), + [sym_attribute_specifier] = STATE(4077), + [sym_attribute_declaration] = STATE(4077), + [sym_ms_declspec_modifier] = STATE(4077), + [sym_storage_class_specifier] = STATE(4077), + [sym_type_qualifier] = STATE(4077), + [sym__type_specifier] = STATE(3194), + [sym_sized_type_specifier] = STATE(3623), + [sym_enum_specifier] = STATE(3623), + [sym_struct_specifier] = STATE(3623), + [sym_union_specifier] = STATE(3623), + [sym_placeholder_type_specifier] = STATE(3623), + [sym_decltype_auto] = STATE(3620), + [sym_decltype] = STATE(3389), + [sym_class_specifier] = STATE(3623), + [sym_virtual] = STATE(4077), + [sym_alignas_specifier] = STATE(4077), + [sym_dependent_type] = STATE(3623), + [sym_template_type] = STATE(3389), + [sym_dependent_type_identifier] = STATE(9043), + [sym__scope_resolution] = STATE(7076), + [sym_qualified_type_identifier] = STATE(4467), + [aux_sym__declaration_specifiers_repeat1] = STATE(4077), + [aux_sym_sized_type_specifier_repeat1] = STATE(3614), + [sym_identifier] = ACTIONS(5094), + [anon_sym___extension__] = ACTIONS(61), + [anon_sym_extern] = ACTIONS(57), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(53), + [anon_sym_unsigned] = ACTIONS(53), + [anon_sym_long] = ACTIONS(53), + [anon_sym_short] = ACTIONS(53), + [anon_sym_static] = ACTIONS(57), + [anon_sym_register] = ACTIONS(57), + [anon_sym_inline] = ACTIONS(57), + [anon_sym___inline] = ACTIONS(57), + [anon_sym___inline__] = ACTIONS(57), + [anon_sym___forceinline] = ACTIONS(57), + [anon_sym_thread_local] = ACTIONS(57), + [anon_sym___thread] = ACTIONS(57), + [anon_sym_const] = ACTIONS(61), + [anon_sym_constexpr] = ACTIONS(61), + [anon_sym_volatile] = ACTIONS(61), + [anon_sym_restrict] = ACTIONS(61), + [anon_sym___restrict__] = ACTIONS(61), + [anon_sym__Atomic] = ACTIONS(61), + [anon_sym__Noreturn] = ACTIONS(61), + [anon_sym_noreturn] = ACTIONS(61), + [anon_sym_mutable] = ACTIONS(61), + [anon_sym_constinit] = ACTIONS(61), + [anon_sym_consteval] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3058), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(117), + [anon_sym_decltype] = ACTIONS(119), + [anon_sym_virtual] = ACTIONS(121), + [anon_sym_alignas] = ACTIONS(123), + [anon_sym_typename] = ACTIONS(3066), + [anon_sym_template] = ACTIONS(1428), + }, + [2396] = { + [sym_attribute_specifier] = STATE(2452), + [sym_identifier] = ACTIONS(5913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5915), + [anon_sym_COMMA] = ACTIONS(5915), + [anon_sym_RPAREN] = ACTIONS(5915), + [aux_sym_preproc_if_token2] = ACTIONS(5915), + [aux_sym_preproc_else_token1] = ACTIONS(5915), + [aux_sym_preproc_elif_token1] = ACTIONS(5913), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5915), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5915), + [anon_sym_LPAREN2] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_PLUS] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5913), + [anon_sym_SLASH] = ACTIONS(5913), + [anon_sym_PERCENT] = ACTIONS(5913), + [anon_sym_PIPE_PIPE] = ACTIONS(5915), + [anon_sym_AMP_AMP] = ACTIONS(5915), + [anon_sym_PIPE] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5913), + [anon_sym_EQ_EQ] = ACTIONS(5915), + [anon_sym_BANG_EQ] = ACTIONS(5915), + [anon_sym_GT] = ACTIONS(5913), + [anon_sym_GT_EQ] = ACTIONS(5915), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_LT] = ACTIONS(5913), + [anon_sym_LT_LT] = ACTIONS(5913), + [anon_sym_GT_GT] = ACTIONS(5913), + [anon_sym_SEMI] = ACTIONS(5915), + [anon_sym___attribute__] = ACTIONS(5319), + [anon_sym_LBRACE] = ACTIONS(5915), + [anon_sym_RBRACE] = ACTIONS(5915), + [anon_sym_LBRACK] = ACTIONS(5915), + [anon_sym_RBRACK] = ACTIONS(5915), + [anon_sym_EQ] = ACTIONS(5913), + [anon_sym_COLON] = ACTIONS(5915), + [anon_sym_QMARK] = ACTIONS(5915), + [anon_sym_STAR_EQ] = ACTIONS(5915), + [anon_sym_SLASH_EQ] = ACTIONS(5915), + [anon_sym_PERCENT_EQ] = ACTIONS(5915), + [anon_sym_PLUS_EQ] = ACTIONS(5915), + [anon_sym_DASH_EQ] = ACTIONS(5915), + [anon_sym_LT_LT_EQ] = ACTIONS(5915), + [anon_sym_GT_GT_EQ] = ACTIONS(5915), + [anon_sym_AMP_EQ] = ACTIONS(5915), + [anon_sym_CARET_EQ] = ACTIONS(5915), + [anon_sym_PIPE_EQ] = ACTIONS(5915), + [anon_sym_and_eq] = ACTIONS(5913), + [anon_sym_or_eq] = ACTIONS(5913), + [anon_sym_xor_eq] = ACTIONS(5913), + [anon_sym_LT_EQ_GT] = ACTIONS(5915), + [anon_sym_or] = ACTIONS(5913), + [anon_sym_and] = ACTIONS(5913), + [anon_sym_bitor] = ACTIONS(5913), + [anon_sym_xor] = ACTIONS(5913), + [anon_sym_bitand] = ACTIONS(5913), + [anon_sym_not_eq] = ACTIONS(5913), + [anon_sym_DASH_DASH] = ACTIONS(5915), + [anon_sym_PLUS_PLUS] = ACTIONS(5915), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_DOT_STAR] = ACTIONS(5915), + [anon_sym_DASH_GT] = ACTIONS(5915), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5913), + [anon_sym_decltype] = ACTIONS(5913), + }, + [2397] = { + [sym_identifier] = ACTIONS(3134), + [aux_sym_preproc_def_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token1] = ACTIONS(3134), + [aux_sym_preproc_if_token2] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3134), + [aux_sym_preproc_else_token1] = ACTIONS(3134), + [aux_sym_preproc_elif_token1] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_LPAREN2] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3134), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym___attribute__] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3136), + [anon_sym___declspec] = ACTIONS(3134), + [anon_sym___based] = ACTIONS(3134), + [anon_sym_signed] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym___inline] = ACTIONS(3134), + [anon_sym___inline__] = ACTIONS(3134), + [anon_sym___forceinline] = ACTIONS(3134), + [anon_sym_thread_local] = ACTIONS(3134), + [anon_sym___thread] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym___restrict__] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym__Noreturn] = ACTIONS(3134), + [anon_sym_noreturn] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_constinit] = ACTIONS(3134), + [anon_sym_consteval] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3134), + [anon_sym_decltype] = ACTIONS(3134), + [anon_sym_virtual] = ACTIONS(3134), + [anon_sym_alignas] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_template] = ACTIONS(3134), + [anon_sym_operator] = ACTIONS(3134), + [anon_sym_friend] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_protected] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_static_assert] = ACTIONS(3134), + }, + [2398] = { + [sym_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [aux_sym_concatenated_string_repeat1] = STATE(2398), + [sym_identifier] = ACTIONS(5917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5208), + [anon_sym_COMMA] = ACTIONS(5208), + [anon_sym_LPAREN2] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5210), + [anon_sym_PLUS] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_SLASH] = ACTIONS(5210), + [anon_sym_PERCENT] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5208), + [anon_sym_AMP_AMP] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5210), + [anon_sym_CARET] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5210), + [anon_sym_EQ_EQ] = ACTIONS(5208), + [anon_sym_BANG_EQ] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5210), + [anon_sym_GT_GT] = ACTIONS(5210), + [anon_sym_LBRACK] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5210), + [anon_sym_QMARK] = ACTIONS(5208), + [anon_sym_STAR_EQ] = ACTIONS(5208), + [anon_sym_SLASH_EQ] = ACTIONS(5208), + [anon_sym_PERCENT_EQ] = ACTIONS(5208), + [anon_sym_PLUS_EQ] = ACTIONS(5208), + [anon_sym_DASH_EQ] = ACTIONS(5208), + [anon_sym_LT_LT_EQ] = ACTIONS(5208), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5208), + [anon_sym_CARET_EQ] = ACTIONS(5208), + [anon_sym_PIPE_EQ] = ACTIONS(5208), + [anon_sym_and_eq] = ACTIONS(5210), + [anon_sym_or_eq] = ACTIONS(5210), + [anon_sym_xor_eq] = ACTIONS(5210), + [anon_sym_LT_EQ_GT] = ACTIONS(5208), + [anon_sym_or] = ACTIONS(5210), + [anon_sym_and] = ACTIONS(5210), + [anon_sym_bitor] = ACTIONS(5210), + [anon_sym_xor] = ACTIONS(5210), + [anon_sym_bitand] = ACTIONS(5210), + [anon_sym_not_eq] = ACTIONS(5210), + [anon_sym_DASH_DASH] = ACTIONS(5208), + [anon_sym_PLUS_PLUS] = ACTIONS(5208), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DOT_STAR] = ACTIONS(5208), + [anon_sym_DASH_GT] = ACTIONS(5208), + [anon_sym_L_DQUOTE] = ACTIONS(5920), + [anon_sym_u_DQUOTE] = ACTIONS(5920), + [anon_sym_U_DQUOTE] = ACTIONS(5920), + [anon_sym_u8_DQUOTE] = ACTIONS(5920), + [anon_sym_DQUOTE] = ACTIONS(5920), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5208), + [anon_sym_R_DQUOTE] = ACTIONS(5923), + [anon_sym_LR_DQUOTE] = ACTIONS(5923), + [anon_sym_uR_DQUOTE] = ACTIONS(5923), + [anon_sym_UR_DQUOTE] = ACTIONS(5923), + [anon_sym_u8R_DQUOTE] = ACTIONS(5923), + [sym_literal_suffix] = ACTIONS(5210), + }, + [2399] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(2899), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(5348), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + }, + [2400] = { + [sym_identifier] = ACTIONS(2965), + [aux_sym_preproc_def_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token1] = ACTIONS(2965), + [aux_sym_preproc_if_token2] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2965), + [aux_sym_preproc_else_token1] = ACTIONS(2965), + [aux_sym_preproc_elif_token1] = ACTIONS(2965), + [sym_preproc_directive] = ACTIONS(2965), + [anon_sym_LPAREN2] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym___extension__] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym___attribute__] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2967), + [anon_sym___declspec] = ACTIONS(2965), + [anon_sym___based] = ACTIONS(2965), + [anon_sym_signed] = ACTIONS(2965), + [anon_sym_unsigned] = ACTIONS(2965), + [anon_sym_long] = ACTIONS(2965), + [anon_sym_short] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_register] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym___inline] = ACTIONS(2965), + [anon_sym___inline__] = ACTIONS(2965), + [anon_sym___forceinline] = ACTIONS(2965), + [anon_sym_thread_local] = ACTIONS(2965), + [anon_sym___thread] = ACTIONS(2965), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym___restrict__] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym__Noreturn] = ACTIONS(2965), + [anon_sym_noreturn] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_struct] = ACTIONS(2965), + [anon_sym_union] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2965), + [anon_sym_virtual] = ACTIONS(2965), + [anon_sym_alignas] = ACTIONS(2965), + [anon_sym_explicit] = ACTIONS(2965), + [anon_sym_typename] = ACTIONS(2965), + [anon_sym_template] = ACTIONS(2965), + [anon_sym_operator] = ACTIONS(2965), + [anon_sym_friend] = ACTIONS(2965), + [anon_sym_public] = ACTIONS(2965), + [anon_sym_private] = ACTIONS(2965), + [anon_sym_protected] = ACTIONS(2965), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_static_assert] = ACTIONS(2965), + }, + [2401] = { + [sym_identifier] = ACTIONS(3191), + [aux_sym_preproc_def_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token1] = ACTIONS(3191), + [aux_sym_preproc_if_token2] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3191), + [aux_sym_preproc_else_token1] = ACTIONS(3191), + [aux_sym_preproc_elif_token1] = ACTIONS(3191), + [sym_preproc_directive] = ACTIONS(3191), + [anon_sym_LPAREN2] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym___extension__] = ACTIONS(3191), + [anon_sym_typedef] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym___attribute__] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(3193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3193), + [anon_sym___declspec] = ACTIONS(3191), + [anon_sym___based] = ACTIONS(3191), + [anon_sym_signed] = ACTIONS(3191), + [anon_sym_unsigned] = ACTIONS(3191), + [anon_sym_long] = ACTIONS(3191), + [anon_sym_short] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_register] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym___inline] = ACTIONS(3191), + [anon_sym___inline__] = ACTIONS(3191), + [anon_sym___forceinline] = ACTIONS(3191), + [anon_sym_thread_local] = ACTIONS(3191), + [anon_sym___thread] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_constexpr] = ACTIONS(3191), + [anon_sym_volatile] = ACTIONS(3191), + [anon_sym_restrict] = ACTIONS(3191), + [anon_sym___restrict__] = ACTIONS(3191), + [anon_sym__Atomic] = ACTIONS(3191), + [anon_sym__Noreturn] = ACTIONS(3191), + [anon_sym_noreturn] = ACTIONS(3191), + [anon_sym_mutable] = ACTIONS(3191), + [anon_sym_constinit] = ACTIONS(3191), + [anon_sym_consteval] = ACTIONS(3191), + [sym_primitive_type] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3191), + [anon_sym_decltype] = ACTIONS(3191), + [anon_sym_virtual] = ACTIONS(3191), + [anon_sym_alignas] = ACTIONS(3191), + [anon_sym_explicit] = ACTIONS(3191), + [anon_sym_typename] = ACTIONS(3191), + [anon_sym_template] = ACTIONS(3191), + [anon_sym_operator] = ACTIONS(3191), + [anon_sym_friend] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_protected] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_static_assert] = ACTIONS(3191), + }, + [2402] = { + [sym_identifier] = ACTIONS(3219), + [aux_sym_preproc_def_token1] = ACTIONS(3219), + [aux_sym_preproc_if_token1] = ACTIONS(3219), + [aux_sym_preproc_if_token2] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3219), + [aux_sym_preproc_else_token1] = ACTIONS(3219), + [aux_sym_preproc_elif_token1] = ACTIONS(3219), + [sym_preproc_directive] = ACTIONS(3219), + [anon_sym_LPAREN2] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym___extension__] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym___attribute__] = ACTIONS(3219), + [anon_sym_COLON_COLON] = ACTIONS(3221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3221), + [anon_sym___declspec] = ACTIONS(3219), + [anon_sym___based] = ACTIONS(3219), + [anon_sym_signed] = ACTIONS(3219), + [anon_sym_unsigned] = ACTIONS(3219), + [anon_sym_long] = ACTIONS(3219), + [anon_sym_short] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_register] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym___inline] = ACTIONS(3219), + [anon_sym___inline__] = ACTIONS(3219), + [anon_sym___forceinline] = ACTIONS(3219), + [anon_sym_thread_local] = ACTIONS(3219), + [anon_sym___thread] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_constexpr] = ACTIONS(3219), + [anon_sym_volatile] = ACTIONS(3219), + [anon_sym_restrict] = ACTIONS(3219), + [anon_sym___restrict__] = ACTIONS(3219), + [anon_sym__Atomic] = ACTIONS(3219), + [anon_sym__Noreturn] = ACTIONS(3219), + [anon_sym_noreturn] = ACTIONS(3219), + [anon_sym_mutable] = ACTIONS(3219), + [anon_sym_constinit] = ACTIONS(3219), + [anon_sym_consteval] = ACTIONS(3219), + [sym_primitive_type] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3219), + [anon_sym_decltype] = ACTIONS(3219), + [anon_sym_virtual] = ACTIONS(3219), + [anon_sym_alignas] = ACTIONS(3219), + [anon_sym_explicit] = ACTIONS(3219), + [anon_sym_typename] = ACTIONS(3219), + [anon_sym_template] = ACTIONS(3219), + [anon_sym_operator] = ACTIONS(3219), + [anon_sym_friend] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_static_assert] = ACTIONS(3219), + }, + [2403] = { + [sym_identifier] = ACTIONS(2961), + [aux_sym_preproc_def_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token1] = ACTIONS(2961), + [aux_sym_preproc_if_token2] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2961), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2961), + [aux_sym_preproc_else_token1] = ACTIONS(2961), + [aux_sym_preproc_elif_token1] = ACTIONS(2961), + [sym_preproc_directive] = ACTIONS(2961), + [anon_sym_LPAREN2] = ACTIONS(2963), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym___extension__] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym___attribute__] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2963), + [anon_sym___declspec] = ACTIONS(2961), + [anon_sym___based] = ACTIONS(2961), + [anon_sym_signed] = ACTIONS(2961), + [anon_sym_unsigned] = ACTIONS(2961), + [anon_sym_long] = ACTIONS(2961), + [anon_sym_short] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_register] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym___inline] = ACTIONS(2961), + [anon_sym___inline__] = ACTIONS(2961), + [anon_sym___forceinline] = ACTIONS(2961), + [anon_sym_thread_local] = ACTIONS(2961), + [anon_sym___thread] = ACTIONS(2961), + [anon_sym_const] = ACTIONS(2961), + [anon_sym_constexpr] = ACTIONS(2961), + [anon_sym_volatile] = ACTIONS(2961), + [anon_sym_restrict] = ACTIONS(2961), + [anon_sym___restrict__] = ACTIONS(2961), + [anon_sym__Atomic] = ACTIONS(2961), + [anon_sym__Noreturn] = ACTIONS(2961), + [anon_sym_noreturn] = ACTIONS(2961), + [anon_sym_mutable] = ACTIONS(2961), + [anon_sym_constinit] = ACTIONS(2961), + [anon_sym_consteval] = ACTIONS(2961), + [sym_primitive_type] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_struct] = ACTIONS(2961), + [anon_sym_union] = ACTIONS(2961), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2961), + [anon_sym_decltype] = ACTIONS(2961), + [anon_sym_virtual] = ACTIONS(2961), + [anon_sym_alignas] = ACTIONS(2961), + [anon_sym_explicit] = ACTIONS(2961), + [anon_sym_typename] = ACTIONS(2961), + [anon_sym_template] = ACTIONS(2961), + [anon_sym_operator] = ACTIONS(2961), + [anon_sym_friend] = ACTIONS(2961), + [anon_sym_public] = ACTIONS(2961), + [anon_sym_private] = ACTIONS(2961), + [anon_sym_protected] = ACTIONS(2961), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_static_assert] = ACTIONS(2961), + }, + [2404] = { + [sym_identifier] = ACTIONS(5487), + [aux_sym_preproc_def_token1] = ACTIONS(5487), + [aux_sym_preproc_if_token1] = ACTIONS(5487), + [aux_sym_preproc_if_token2] = ACTIONS(5487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5487), + [aux_sym_preproc_else_token1] = ACTIONS(5487), + [aux_sym_preproc_elif_token1] = ACTIONS(5487), + [sym_preproc_directive] = ACTIONS(5487), + [anon_sym_LPAREN2] = ACTIONS(5489), + [anon_sym_TILDE] = ACTIONS(5489), + [anon_sym_STAR] = ACTIONS(5489), + [anon_sym_AMP_AMP] = ACTIONS(5489), + [anon_sym_AMP] = ACTIONS(5487), + [anon_sym___extension__] = ACTIONS(5487), + [anon_sym_typedef] = ACTIONS(5487), + [anon_sym_extern] = ACTIONS(5487), + [anon_sym___attribute__] = ACTIONS(5487), + [anon_sym_COLON_COLON] = ACTIONS(5489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5489), + [anon_sym___declspec] = ACTIONS(5487), + [anon_sym___based] = ACTIONS(5487), + [anon_sym_signed] = ACTIONS(5487), + [anon_sym_unsigned] = ACTIONS(5487), + [anon_sym_long] = ACTIONS(5487), + [anon_sym_short] = ACTIONS(5487), + [anon_sym_LBRACK] = ACTIONS(5487), + [anon_sym_static] = ACTIONS(5487), + [anon_sym_register] = ACTIONS(5487), + [anon_sym_inline] = ACTIONS(5487), + [anon_sym___inline] = ACTIONS(5487), + [anon_sym___inline__] = ACTIONS(5487), + [anon_sym___forceinline] = ACTIONS(5487), + [anon_sym_thread_local] = ACTIONS(5487), + [anon_sym___thread] = ACTIONS(5487), + [anon_sym_const] = ACTIONS(5487), + [anon_sym_constexpr] = ACTIONS(5487), + [anon_sym_volatile] = ACTIONS(5487), + [anon_sym_restrict] = ACTIONS(5487), + [anon_sym___restrict__] = ACTIONS(5487), + [anon_sym__Atomic] = ACTIONS(5487), + [anon_sym__Noreturn] = ACTIONS(5487), + [anon_sym_noreturn] = ACTIONS(5487), + [anon_sym_mutable] = ACTIONS(5487), + [anon_sym_constinit] = ACTIONS(5487), + [anon_sym_consteval] = ACTIONS(5487), + [sym_primitive_type] = ACTIONS(5487), + [anon_sym_enum] = ACTIONS(5487), + [anon_sym_class] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5487), + [anon_sym_union] = ACTIONS(5487), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5487), + [anon_sym_decltype] = ACTIONS(5487), + [anon_sym_virtual] = ACTIONS(5487), + [anon_sym_alignas] = ACTIONS(5487), + [anon_sym_explicit] = ACTIONS(5487), + [anon_sym_typename] = ACTIONS(5487), + [anon_sym_template] = ACTIONS(5487), + [anon_sym_operator] = ACTIONS(5487), + [anon_sym_friend] = ACTIONS(5487), + [anon_sym_public] = ACTIONS(5487), + [anon_sym_private] = ACTIONS(5487), + [anon_sym_protected] = ACTIONS(5487), + [anon_sym_using] = ACTIONS(5487), + [anon_sym_static_assert] = ACTIONS(5487), + }, + [2405] = { + [sym_identifier] = ACTIONS(5499), + [aux_sym_preproc_def_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token1] = ACTIONS(5499), + [aux_sym_preproc_if_token2] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5499), + [aux_sym_preproc_else_token1] = ACTIONS(5499), + [aux_sym_preproc_elif_token1] = ACTIONS(5499), + [sym_preproc_directive] = ACTIONS(5499), + [anon_sym_LPAREN2] = ACTIONS(5501), + [anon_sym_TILDE] = ACTIONS(5501), + [anon_sym_STAR] = ACTIONS(5501), + [anon_sym_AMP_AMP] = ACTIONS(5501), + [anon_sym_AMP] = ACTIONS(5499), + [anon_sym___extension__] = ACTIONS(5499), + [anon_sym_typedef] = ACTIONS(5499), + [anon_sym_extern] = ACTIONS(5499), + [anon_sym___attribute__] = ACTIONS(5499), + [anon_sym_COLON_COLON] = ACTIONS(5501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5501), + [anon_sym___declspec] = ACTIONS(5499), + [anon_sym___based] = ACTIONS(5499), + [anon_sym_signed] = ACTIONS(5499), + [anon_sym_unsigned] = ACTIONS(5499), + [anon_sym_long] = ACTIONS(5499), + [anon_sym_short] = ACTIONS(5499), + [anon_sym_LBRACK] = ACTIONS(5499), + [anon_sym_static] = ACTIONS(5499), + [anon_sym_register] = ACTIONS(5499), + [anon_sym_inline] = ACTIONS(5499), + [anon_sym___inline] = ACTIONS(5499), + [anon_sym___inline__] = ACTIONS(5499), + [anon_sym___forceinline] = ACTIONS(5499), + [anon_sym_thread_local] = ACTIONS(5499), + [anon_sym___thread] = ACTIONS(5499), + [anon_sym_const] = ACTIONS(5499), + [anon_sym_constexpr] = ACTIONS(5499), + [anon_sym_volatile] = ACTIONS(5499), + [anon_sym_restrict] = ACTIONS(5499), + [anon_sym___restrict__] = ACTIONS(5499), + [anon_sym__Atomic] = ACTIONS(5499), + [anon_sym__Noreturn] = ACTIONS(5499), + [anon_sym_noreturn] = ACTIONS(5499), + [anon_sym_mutable] = ACTIONS(5499), + [anon_sym_constinit] = ACTIONS(5499), + [anon_sym_consteval] = ACTIONS(5499), + [sym_primitive_type] = ACTIONS(5499), + [anon_sym_enum] = ACTIONS(5499), + [anon_sym_class] = ACTIONS(5499), + [anon_sym_struct] = ACTIONS(5499), + [anon_sym_union] = ACTIONS(5499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5499), + [anon_sym_decltype] = ACTIONS(5499), + [anon_sym_virtual] = ACTIONS(5499), + [anon_sym_alignas] = ACTIONS(5499), + [anon_sym_explicit] = ACTIONS(5499), + [anon_sym_typename] = ACTIONS(5499), + [anon_sym_template] = ACTIONS(5499), + [anon_sym_operator] = ACTIONS(5499), + [anon_sym_friend] = ACTIONS(5499), + [anon_sym_public] = ACTIONS(5499), + [anon_sym_private] = ACTIONS(5499), + [anon_sym_protected] = ACTIONS(5499), + [anon_sym_using] = ACTIONS(5499), + [anon_sym_static_assert] = ACTIONS(5499), + }, + [2406] = { + [sym_identifier] = ACTIONS(5443), + [aux_sym_preproc_def_token1] = ACTIONS(5443), + [aux_sym_preproc_if_token1] = ACTIONS(5443), + [aux_sym_preproc_if_token2] = ACTIONS(5443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5443), + [aux_sym_preproc_else_token1] = ACTIONS(5443), + [aux_sym_preproc_elif_token1] = ACTIONS(5443), + [sym_preproc_directive] = ACTIONS(5443), + [anon_sym_LPAREN2] = ACTIONS(5445), + [anon_sym_TILDE] = ACTIONS(5445), + [anon_sym_STAR] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_AMP] = ACTIONS(5443), + [anon_sym___extension__] = ACTIONS(5443), + [anon_sym_typedef] = ACTIONS(5443), + [anon_sym_extern] = ACTIONS(5443), + [anon_sym___attribute__] = ACTIONS(5443), + [anon_sym_COLON_COLON] = ACTIONS(5445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5445), + [anon_sym___declspec] = ACTIONS(5443), + [anon_sym___based] = ACTIONS(5443), + [anon_sym_signed] = ACTIONS(5443), + [anon_sym_unsigned] = ACTIONS(5443), + [anon_sym_long] = ACTIONS(5443), + [anon_sym_short] = ACTIONS(5443), + [anon_sym_LBRACK] = ACTIONS(5443), + [anon_sym_static] = ACTIONS(5443), + [anon_sym_register] = ACTIONS(5443), + [anon_sym_inline] = ACTIONS(5443), + [anon_sym___inline] = ACTIONS(5443), + [anon_sym___inline__] = ACTIONS(5443), + [anon_sym___forceinline] = ACTIONS(5443), + [anon_sym_thread_local] = ACTIONS(5443), + [anon_sym___thread] = ACTIONS(5443), + [anon_sym_const] = ACTIONS(5443), + [anon_sym_constexpr] = ACTIONS(5443), + [anon_sym_volatile] = ACTIONS(5443), + [anon_sym_restrict] = ACTIONS(5443), + [anon_sym___restrict__] = ACTIONS(5443), + [anon_sym__Atomic] = ACTIONS(5443), + [anon_sym__Noreturn] = ACTIONS(5443), + [anon_sym_noreturn] = ACTIONS(5443), + [anon_sym_mutable] = ACTIONS(5443), + [anon_sym_constinit] = ACTIONS(5443), + [anon_sym_consteval] = ACTIONS(5443), + [sym_primitive_type] = ACTIONS(5443), + [anon_sym_enum] = ACTIONS(5443), + [anon_sym_class] = ACTIONS(5443), + [anon_sym_struct] = ACTIONS(5443), + [anon_sym_union] = ACTIONS(5443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5443), + [anon_sym_decltype] = ACTIONS(5443), + [anon_sym_virtual] = ACTIONS(5443), + [anon_sym_alignas] = ACTIONS(5443), + [anon_sym_explicit] = ACTIONS(5443), + [anon_sym_typename] = ACTIONS(5443), + [anon_sym_template] = ACTIONS(5443), + [anon_sym_operator] = ACTIONS(5443), + [anon_sym_friend] = ACTIONS(5443), + [anon_sym_public] = ACTIONS(5443), + [anon_sym_private] = ACTIONS(5443), + [anon_sym_protected] = ACTIONS(5443), + [anon_sym_using] = ACTIONS(5443), + [anon_sym_static_assert] = ACTIONS(5443), + }, + [2407] = { + [sym_identifier] = ACTIONS(3298), + [aux_sym_preproc_def_token1] = ACTIONS(3298), + [aux_sym_preproc_if_token1] = ACTIONS(3298), + [aux_sym_preproc_if_token2] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3298), + [aux_sym_preproc_else_token1] = ACTIONS(3298), + [aux_sym_preproc_elif_token1] = ACTIONS(3298), + [sym_preproc_directive] = ACTIONS(3298), + [anon_sym_LPAREN2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym___extension__] = ACTIONS(3298), + [anon_sym_typedef] = ACTIONS(3298), + [anon_sym_extern] = ACTIONS(3298), + [anon_sym___attribute__] = ACTIONS(3298), + [anon_sym_COLON_COLON] = ACTIONS(3300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3300), + [anon_sym___declspec] = ACTIONS(3298), + [anon_sym___based] = ACTIONS(3298), + [anon_sym_signed] = ACTIONS(3298), + [anon_sym_unsigned] = ACTIONS(3298), + [anon_sym_long] = ACTIONS(3298), + [anon_sym_short] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_register] = ACTIONS(3298), + [anon_sym_inline] = ACTIONS(3298), + [anon_sym___inline] = ACTIONS(3298), + [anon_sym___inline__] = ACTIONS(3298), + [anon_sym___forceinline] = ACTIONS(3298), + [anon_sym_thread_local] = ACTIONS(3298), + [anon_sym___thread] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_constexpr] = ACTIONS(3298), + [anon_sym_volatile] = ACTIONS(3298), + [anon_sym_restrict] = ACTIONS(3298), + [anon_sym___restrict__] = ACTIONS(3298), + [anon_sym__Atomic] = ACTIONS(3298), + [anon_sym__Noreturn] = ACTIONS(3298), + [anon_sym_noreturn] = ACTIONS(3298), + [anon_sym_mutable] = ACTIONS(3298), + [anon_sym_constinit] = ACTIONS(3298), + [anon_sym_consteval] = ACTIONS(3298), + [sym_primitive_type] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_struct] = ACTIONS(3298), + [anon_sym_union] = ACTIONS(3298), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3298), + [anon_sym_decltype] = ACTIONS(3298), + [anon_sym_virtual] = ACTIONS(3298), + [anon_sym_alignas] = ACTIONS(3298), + [anon_sym_explicit] = ACTIONS(3298), + [anon_sym_typename] = ACTIONS(3298), + [anon_sym_template] = ACTIONS(3298), + [anon_sym_operator] = ACTIONS(3298), + [anon_sym_friend] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_static_assert] = ACTIONS(3298), + }, + [2408] = { + [sym_identifier] = ACTIONS(5635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5637), + [anon_sym_COMMA] = ACTIONS(5637), + [anon_sym_RPAREN] = ACTIONS(5637), + [aux_sym_preproc_if_token2] = ACTIONS(5637), + [aux_sym_preproc_else_token1] = ACTIONS(5637), + [aux_sym_preproc_elif_token1] = ACTIONS(5635), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5637), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(5637), + [anon_sym_DASH] = ACTIONS(5635), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_STAR] = ACTIONS(5637), + [anon_sym_SLASH] = ACTIONS(5635), + [anon_sym_PERCENT] = ACTIONS(5637), + [anon_sym_PIPE_PIPE] = ACTIONS(5637), + [anon_sym_AMP_AMP] = ACTIONS(5637), + [anon_sym_PIPE] = ACTIONS(5635), + [anon_sym_CARET] = ACTIONS(5637), + [anon_sym_AMP] = ACTIONS(5635), + [anon_sym_EQ_EQ] = ACTIONS(5637), + [anon_sym_BANG_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_LT] = ACTIONS(5637), + [anon_sym_GT_GT] = ACTIONS(5637), + [anon_sym_SEMI] = ACTIONS(5637), + [anon_sym___extension__] = ACTIONS(5635), + [anon_sym___attribute__] = ACTIONS(5635), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_RBRACK] = ACTIONS(5637), + [anon_sym_const] = ACTIONS(5635), + [anon_sym_constexpr] = ACTIONS(5635), + [anon_sym_volatile] = ACTIONS(5635), + [anon_sym_restrict] = ACTIONS(5635), + [anon_sym___restrict__] = ACTIONS(5635), + [anon_sym__Atomic] = ACTIONS(5635), + [anon_sym__Noreturn] = ACTIONS(5635), + [anon_sym_noreturn] = ACTIONS(5635), + [anon_sym_mutable] = ACTIONS(5635), + [anon_sym_constinit] = ACTIONS(5635), + [anon_sym_consteval] = ACTIONS(5635), + [anon_sym_COLON] = ACTIONS(5637), + [anon_sym_QMARK] = ACTIONS(5637), + [anon_sym_LT_EQ_GT] = ACTIONS(5637), + [anon_sym_or] = ACTIONS(5635), + [anon_sym_and] = ACTIONS(5635), + [anon_sym_bitor] = ACTIONS(5635), + [anon_sym_xor] = ACTIONS(5635), + [anon_sym_bitand] = ACTIONS(5635), + [anon_sym_not_eq] = ACTIONS(5635), + [anon_sym_DASH_DASH] = ACTIONS(5637), + [anon_sym_PLUS_PLUS] = ACTIONS(5637), + [anon_sym_DOT] = ACTIONS(5635), + [anon_sym_DOT_STAR] = ACTIONS(5637), + [anon_sym_DASH_GT] = ACTIONS(5637), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5635), + [anon_sym_decltype] = ACTIONS(5635), + [anon_sym_final] = ACTIONS(5635), + [anon_sym_override] = ACTIONS(5635), + [anon_sym_requires] = ACTIONS(5635), + }, + [2409] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token2] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [aux_sym_preproc_else_token1] = ACTIONS(5503), + [aux_sym_preproc_elif_token1] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), + }, + [2410] = { + [sym_identifier] = ACTIONS(5503), + [aux_sym_preproc_def_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token1] = ACTIONS(5503), + [aux_sym_preproc_if_token2] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5503), + [aux_sym_preproc_else_token1] = ACTIONS(5503), + [aux_sym_preproc_elif_token1] = ACTIONS(5503), + [sym_preproc_directive] = ACTIONS(5503), + [anon_sym_LPAREN2] = ACTIONS(5505), + [anon_sym_TILDE] = ACTIONS(5505), + [anon_sym_STAR] = ACTIONS(5505), + [anon_sym_AMP_AMP] = ACTIONS(5505), + [anon_sym_AMP] = ACTIONS(5503), + [anon_sym___extension__] = ACTIONS(5503), + [anon_sym_typedef] = ACTIONS(5503), + [anon_sym_extern] = ACTIONS(5503), + [anon_sym___attribute__] = ACTIONS(5503), + [anon_sym_COLON_COLON] = ACTIONS(5505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5505), + [anon_sym___declspec] = ACTIONS(5503), + [anon_sym___based] = ACTIONS(5503), + [anon_sym_signed] = ACTIONS(5503), + [anon_sym_unsigned] = ACTIONS(5503), + [anon_sym_long] = ACTIONS(5503), + [anon_sym_short] = ACTIONS(5503), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_static] = ACTIONS(5503), + [anon_sym_register] = ACTIONS(5503), + [anon_sym_inline] = ACTIONS(5503), + [anon_sym___inline] = ACTIONS(5503), + [anon_sym___inline__] = ACTIONS(5503), + [anon_sym___forceinline] = ACTIONS(5503), + [anon_sym_thread_local] = ACTIONS(5503), + [anon_sym___thread] = ACTIONS(5503), + [anon_sym_const] = ACTIONS(5503), + [anon_sym_constexpr] = ACTIONS(5503), + [anon_sym_volatile] = ACTIONS(5503), + [anon_sym_restrict] = ACTIONS(5503), + [anon_sym___restrict__] = ACTIONS(5503), + [anon_sym__Atomic] = ACTIONS(5503), + [anon_sym__Noreturn] = ACTIONS(5503), + [anon_sym_noreturn] = ACTIONS(5503), + [anon_sym_mutable] = ACTIONS(5503), + [anon_sym_constinit] = ACTIONS(5503), + [anon_sym_consteval] = ACTIONS(5503), + [sym_primitive_type] = ACTIONS(5503), + [anon_sym_enum] = ACTIONS(5503), + [anon_sym_class] = ACTIONS(5503), + [anon_sym_struct] = ACTIONS(5503), + [anon_sym_union] = ACTIONS(5503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5503), + [anon_sym_decltype] = ACTIONS(5503), + [anon_sym_virtual] = ACTIONS(5503), + [anon_sym_alignas] = ACTIONS(5503), + [anon_sym_explicit] = ACTIONS(5503), + [anon_sym_typename] = ACTIONS(5503), + [anon_sym_template] = ACTIONS(5503), + [anon_sym_operator] = ACTIONS(5503), + [anon_sym_friend] = ACTIONS(5503), + [anon_sym_public] = ACTIONS(5503), + [anon_sym_private] = ACTIONS(5503), + [anon_sym_protected] = ACTIONS(5503), + [anon_sym_using] = ACTIONS(5503), + [anon_sym_static_assert] = ACTIONS(5503), + }, + [2411] = { + [sym_identifier] = ACTIONS(5711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5713), + [anon_sym_COMMA] = ACTIONS(5713), + [anon_sym_RPAREN] = ACTIONS(5713), + [aux_sym_preproc_if_token2] = ACTIONS(5713), + [aux_sym_preproc_else_token1] = ACTIONS(5713), + [aux_sym_preproc_elif_token1] = ACTIONS(5711), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5713), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5713), + [anon_sym_LPAREN2] = ACTIONS(5713), + [anon_sym_DASH] = ACTIONS(5711), + [anon_sym_PLUS] = ACTIONS(5711), + [anon_sym_STAR] = ACTIONS(5711), + [anon_sym_SLASH] = ACTIONS(5711), + [anon_sym_PERCENT] = ACTIONS(5711), + [anon_sym_PIPE_PIPE] = ACTIONS(5713), + [anon_sym_AMP_AMP] = ACTIONS(5713), + [anon_sym_PIPE] = ACTIONS(5711), + [anon_sym_CARET] = ACTIONS(5711), + [anon_sym_AMP] = ACTIONS(5711), + [anon_sym_EQ_EQ] = ACTIONS(5713), + [anon_sym_BANG_EQ] = ACTIONS(5713), + [anon_sym_GT] = ACTIONS(5711), + [anon_sym_GT_EQ] = ACTIONS(5713), + [anon_sym_LT_EQ] = ACTIONS(5711), + [anon_sym_LT] = ACTIONS(5711), + [anon_sym_LT_LT] = ACTIONS(5711), + [anon_sym_GT_GT] = ACTIONS(5711), + [anon_sym_SEMI] = ACTIONS(5713), + [anon_sym___attribute__] = ACTIONS(5711), + [anon_sym_LBRACE] = ACTIONS(5713), + [anon_sym_RBRACE] = ACTIONS(5713), + [anon_sym_LBRACK] = ACTIONS(5713), + [anon_sym_RBRACK] = ACTIONS(5713), + [anon_sym_EQ] = ACTIONS(5711), + [anon_sym_COLON] = ACTIONS(5713), + [anon_sym_QMARK] = ACTIONS(5713), + [anon_sym_STAR_EQ] = ACTIONS(5713), + [anon_sym_SLASH_EQ] = ACTIONS(5713), + [anon_sym_PERCENT_EQ] = ACTIONS(5713), + [anon_sym_PLUS_EQ] = ACTIONS(5713), + [anon_sym_DASH_EQ] = ACTIONS(5713), + [anon_sym_LT_LT_EQ] = ACTIONS(5713), + [anon_sym_GT_GT_EQ] = ACTIONS(5713), + [anon_sym_AMP_EQ] = ACTIONS(5713), + [anon_sym_CARET_EQ] = ACTIONS(5713), + [anon_sym_PIPE_EQ] = ACTIONS(5713), + [anon_sym_and_eq] = ACTIONS(5711), + [anon_sym_or_eq] = ACTIONS(5711), + [anon_sym_xor_eq] = ACTIONS(5711), + [anon_sym_LT_EQ_GT] = ACTIONS(5713), + [anon_sym_or] = ACTIONS(5711), + [anon_sym_and] = ACTIONS(5711), + [anon_sym_bitor] = ACTIONS(5711), + [anon_sym_xor] = ACTIONS(5711), + [anon_sym_bitand] = ACTIONS(5711), + [anon_sym_not_eq] = ACTIONS(5711), + [anon_sym_DASH_DASH] = ACTIONS(5713), + [anon_sym_PLUS_PLUS] = ACTIONS(5713), + [anon_sym_DOT] = ACTIONS(5711), + [anon_sym_DOT_STAR] = ACTIONS(5713), + [anon_sym_DASH_GT] = ACTIONS(5713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5711), + [anon_sym_decltype] = ACTIONS(5711), + }, + [2412] = { + [sym_template_argument_list] = STATE(1974), + [aux_sym_sized_type_specifier_repeat1] = STATE(2728), + [sym_identifier] = ACTIONS(5593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5595), + [anon_sym_COMMA] = ACTIONS(5595), + [aux_sym_preproc_if_token2] = ACTIONS(5595), + [aux_sym_preproc_else_token1] = ACTIONS(5595), + [aux_sym_preproc_elif_token1] = 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___attribute__] = ACTIONS(5593), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(5595), + [anon_sym_signed] = ACTIONS(5926), + [anon_sym_unsigned] = ACTIONS(5926), + [anon_sym_long] = ACTIONS(5926), + [anon_sym_short] = ACTIONS(5926), + [anon_sym_LBRACK] = ACTIONS(5595), + [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), + [sym_auto] = ACTIONS(5593), + [anon_sym_decltype] = ACTIONS(5593), + }, + [2413] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + }, + [2414] = { + [sym_identifier] = ACTIONS(5661), + [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(5661), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5663), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [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(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5661), + [anon_sym_CARET] = ACTIONS(5661), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5661), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(5661), + [anon_sym_LT_LT] = ACTIONS(5661), + [anon_sym_GT_GT] = ACTIONS(5661), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5663), + [anon_sym_RBRACE] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_RBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5663), + [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(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [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(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5661), + [anon_sym_decltype] = ACTIONS(5661), + }, + [2415] = { + [sym_identifier] = ACTIONS(5689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5691), + [anon_sym_COMMA] = ACTIONS(5691), + [anon_sym_RPAREN] = ACTIONS(5691), + [aux_sym_preproc_if_token2] = ACTIONS(5691), + [aux_sym_preproc_else_token1] = ACTIONS(5691), + [aux_sym_preproc_elif_token1] = ACTIONS(5689), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5691), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5691), + [anon_sym_LPAREN2] = ACTIONS(5691), + [anon_sym_DASH] = ACTIONS(5689), + [anon_sym_PLUS] = ACTIONS(5689), + [anon_sym_STAR] = ACTIONS(5689), + [anon_sym_SLASH] = ACTIONS(5689), + [anon_sym_PERCENT] = ACTIONS(5689), + [anon_sym_PIPE_PIPE] = ACTIONS(5691), + [anon_sym_AMP_AMP] = ACTIONS(5691), + [anon_sym_PIPE] = ACTIONS(5689), + [anon_sym_CARET] = ACTIONS(5689), + [anon_sym_AMP] = ACTIONS(5689), + [anon_sym_EQ_EQ] = ACTIONS(5691), + [anon_sym_BANG_EQ] = ACTIONS(5691), + [anon_sym_GT] = ACTIONS(5689), + [anon_sym_GT_EQ] = ACTIONS(5691), + [anon_sym_LT_EQ] = ACTIONS(5689), + [anon_sym_LT] = ACTIONS(5689), + [anon_sym_LT_LT] = ACTIONS(5689), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_SEMI] = ACTIONS(5691), + [anon_sym___attribute__] = ACTIONS(5689), + [anon_sym_LBRACE] = ACTIONS(5691), + [anon_sym_RBRACE] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5691), + [anon_sym_RBRACK] = ACTIONS(5691), + [anon_sym_EQ] = ACTIONS(5689), + [anon_sym_COLON] = ACTIONS(5691), + [anon_sym_QMARK] = ACTIONS(5691), + [anon_sym_STAR_EQ] = ACTIONS(5691), + [anon_sym_SLASH_EQ] = ACTIONS(5691), + [anon_sym_PERCENT_EQ] = ACTIONS(5691), + [anon_sym_PLUS_EQ] = ACTIONS(5691), + [anon_sym_DASH_EQ] = ACTIONS(5691), + [anon_sym_LT_LT_EQ] = ACTIONS(5691), + [anon_sym_GT_GT_EQ] = ACTIONS(5691), + [anon_sym_AMP_EQ] = ACTIONS(5691), + [anon_sym_CARET_EQ] = ACTIONS(5691), + [anon_sym_PIPE_EQ] = ACTIONS(5691), + [anon_sym_and_eq] = ACTIONS(5689), + [anon_sym_or_eq] = ACTIONS(5689), + [anon_sym_xor_eq] = ACTIONS(5689), + [anon_sym_LT_EQ_GT] = ACTIONS(5691), + [anon_sym_or] = ACTIONS(5689), + [anon_sym_and] = ACTIONS(5689), + [anon_sym_bitor] = ACTIONS(5689), + [anon_sym_xor] = ACTIONS(5689), + [anon_sym_bitand] = ACTIONS(5689), + [anon_sym_not_eq] = ACTIONS(5689), + [anon_sym_DASH_DASH] = ACTIONS(5691), + [anon_sym_PLUS_PLUS] = ACTIONS(5691), + [anon_sym_DOT] = ACTIONS(5689), + [anon_sym_DOT_STAR] = ACTIONS(5691), + [anon_sym_DASH_GT] = ACTIONS(5691), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5689), + [anon_sym_decltype] = ACTIONS(5689), + }, + [2416] = { + [sym_identifier] = ACTIONS(2136), + [aux_sym_preproc_def_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token1] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2136), + [sym_preproc_directive] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym___extension__] = ACTIONS(2136), + [anon_sym_typedef] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym___attribute__] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2134), + [anon_sym___declspec] = ACTIONS(2136), + [anon_sym___based] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_signed] = ACTIONS(2136), + [anon_sym_unsigned] = ACTIONS(2136), + [anon_sym_long] = ACTIONS(2136), + [anon_sym_short] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_register] = ACTIONS(2136), + [anon_sym_inline] = ACTIONS(2136), + [anon_sym___inline] = ACTIONS(2136), + [anon_sym___inline__] = ACTIONS(2136), + [anon_sym___forceinline] = ACTIONS(2136), + [anon_sym_thread_local] = ACTIONS(2136), + [anon_sym___thread] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_constexpr] = ACTIONS(2136), + [anon_sym_volatile] = ACTIONS(2136), + [anon_sym_restrict] = ACTIONS(2136), + [anon_sym___restrict__] = ACTIONS(2136), + [anon_sym__Atomic] = ACTIONS(2136), + [anon_sym__Noreturn] = ACTIONS(2136), + [anon_sym_noreturn] = ACTIONS(2136), + [anon_sym_mutable] = ACTIONS(2136), + [anon_sym_constinit] = ACTIONS(2136), + [anon_sym_consteval] = ACTIONS(2136), + [sym_primitive_type] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_class] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2136), + [anon_sym_decltype] = ACTIONS(2136), + [anon_sym_virtual] = ACTIONS(2136), + [anon_sym_alignas] = ACTIONS(2136), + [anon_sym_explicit] = ACTIONS(2136), + [anon_sym_typename] = ACTIONS(2136), + [anon_sym_template] = ACTIONS(2136), + [anon_sym_operator] = ACTIONS(2136), + [anon_sym_friend] = ACTIONS(2136), + [anon_sym_public] = ACTIONS(2136), + [anon_sym_private] = ACTIONS(2136), + [anon_sym_protected] = ACTIONS(2136), + [anon_sym_using] = ACTIONS(2136), + [anon_sym_static_assert] = ACTIONS(2136), + [anon_sym_catch] = ACTIONS(2136), + }, + [2417] = { + [sym_identifier] = ACTIONS(5418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_RPAREN] = ACTIONS(5420), + [aux_sym_preproc_if_token2] = ACTIONS(5420), + [aux_sym_preproc_else_token1] = ACTIONS(5420), + [aux_sym_preproc_elif_token1] = ACTIONS(5418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5420), + [anon_sym_LPAREN2] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5418), + [anon_sym_STAR] = ACTIONS(5418), + [anon_sym_SLASH] = ACTIONS(5418), + [anon_sym_PERCENT] = ACTIONS(5418), + [anon_sym_PIPE_PIPE] = ACTIONS(5420), + [anon_sym_AMP_AMP] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5418), + [anon_sym_AMP] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_EQ] = ACTIONS(5418), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_LT_LT] = ACTIONS(5418), + [anon_sym_GT_GT] = ACTIONS(5418), + [anon_sym_SEMI] = ACTIONS(5420), + [anon_sym___attribute__] = ACTIONS(5418), + [anon_sym_LBRACE] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_RBRACK] = ACTIONS(5420), + [anon_sym_EQ] = ACTIONS(5418), + [anon_sym_COLON] = ACTIONS(5420), + [anon_sym_QMARK] = ACTIONS(5420), + [anon_sym_STAR_EQ] = ACTIONS(5420), + [anon_sym_SLASH_EQ] = ACTIONS(5420), + [anon_sym_PERCENT_EQ] = ACTIONS(5420), + [anon_sym_PLUS_EQ] = ACTIONS(5420), + [anon_sym_DASH_EQ] = ACTIONS(5420), + [anon_sym_LT_LT_EQ] = ACTIONS(5420), + [anon_sym_GT_GT_EQ] = ACTIONS(5420), + [anon_sym_AMP_EQ] = ACTIONS(5420), + [anon_sym_CARET_EQ] = ACTIONS(5420), + [anon_sym_PIPE_EQ] = ACTIONS(5420), + [anon_sym_and_eq] = ACTIONS(5418), + [anon_sym_or_eq] = ACTIONS(5418), + [anon_sym_xor_eq] = ACTIONS(5418), + [anon_sym_LT_EQ_GT] = ACTIONS(5420), + [anon_sym_or] = ACTIONS(5418), + [anon_sym_and] = ACTIONS(5418), + [anon_sym_bitor] = ACTIONS(5418), + [anon_sym_xor] = ACTIONS(5418), + [anon_sym_bitand] = ACTIONS(5418), + [anon_sym_not_eq] = ACTIONS(5418), + [anon_sym_DASH_DASH] = ACTIONS(5420), + [anon_sym_PLUS_PLUS] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_DOT_STAR] = ACTIONS(5420), + [anon_sym_DASH_GT] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5418), + [anon_sym_decltype] = ACTIONS(5418), + }, + [2418] = { + [sym_template_argument_list] = STATE(2546), + [sym_identifier] = ACTIONS(5014), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [aux_sym_preproc_if_token2] = ACTIONS(5019), + [aux_sym_preproc_else_token1] = ACTIONS(5019), + [aux_sym_preproc_elif_token1] = ACTIONS(5014), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5019), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5019), + [anon_sym_LPAREN2] = ACTIONS(5019), + [anon_sym_DASH] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5014), + [anon_sym_STAR] = ACTIONS(5014), + [anon_sym_SLASH] = ACTIONS(5014), + [anon_sym_PERCENT] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5019), + [anon_sym_AMP_AMP] = ACTIONS(5019), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_CARET] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_GT] = ACTIONS(5014), + [anon_sym_GT_EQ] = ACTIONS(5019), + [anon_sym_LT_EQ] = ACTIONS(5014), + [anon_sym_LT] = ACTIONS(5928), + [anon_sym_LT_LT] = ACTIONS(5014), + [anon_sym_GT_GT] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5019), + [anon_sym___attribute__] = ACTIONS(5014), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(5012), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_QMARK] = ACTIONS(5019), + [anon_sym_STAR_EQ] = ACTIONS(5019), + [anon_sym_SLASH_EQ] = ACTIONS(5019), + [anon_sym_PERCENT_EQ] = ACTIONS(5019), + [anon_sym_PLUS_EQ] = ACTIONS(5019), + [anon_sym_DASH_EQ] = ACTIONS(5019), + [anon_sym_LT_LT_EQ] = ACTIONS(5019), + [anon_sym_GT_GT_EQ] = ACTIONS(5019), + [anon_sym_AMP_EQ] = ACTIONS(5019), + [anon_sym_CARET_EQ] = ACTIONS(5019), + [anon_sym_PIPE_EQ] = ACTIONS(5019), + [anon_sym_and_eq] = ACTIONS(5014), + [anon_sym_or_eq] = ACTIONS(5014), + [anon_sym_xor_eq] = ACTIONS(5014), + [anon_sym_LT_EQ_GT] = ACTIONS(5019), + [anon_sym_or] = ACTIONS(5014), + [anon_sym_and] = ACTIONS(5014), + [anon_sym_bitor] = ACTIONS(5014), + [anon_sym_xor] = ACTIONS(5014), + [anon_sym_bitand] = ACTIONS(5014), + [anon_sym_not_eq] = ACTIONS(5014), + [anon_sym_DASH_DASH] = ACTIONS(5019), + [anon_sym_PLUS_PLUS] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5014), + [anon_sym_DOT_STAR] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5019), + [sym_comment] = ACTIONS(3), + }, + [2419] = { + [sym_identifier] = ACTIONS(2186), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token1] = ACTIONS(2186), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2186), + [sym_preproc_directive] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym___extension__] = ACTIONS(2186), + [anon_sym_typedef] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym___attribute__] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2184), + [anon_sym___declspec] = ACTIONS(2186), + [anon_sym___based] = ACTIONS(2186), + [anon_sym_signed] = ACTIONS(2186), + [anon_sym_unsigned] = ACTIONS(2186), + [anon_sym_long] = ACTIONS(2186), + [anon_sym_short] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_inline] = ACTIONS(2186), + [anon_sym___inline] = ACTIONS(2186), + [anon_sym___inline__] = ACTIONS(2186), + [anon_sym___forceinline] = ACTIONS(2186), + [anon_sym_thread_local] = ACTIONS(2186), + [anon_sym___thread] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_constexpr] = ACTIONS(2186), + [anon_sym_volatile] = ACTIONS(2186), + [anon_sym_restrict] = ACTIONS(2186), + [anon_sym___restrict__] = ACTIONS(2186), + [anon_sym__Atomic] = ACTIONS(2186), + [anon_sym__Noreturn] = ACTIONS(2186), + [anon_sym_noreturn] = ACTIONS(2186), + [anon_sym_mutable] = ACTIONS(2186), + [anon_sym_constinit] = ACTIONS(2186), + [anon_sym_consteval] = ACTIONS(2186), + [sym_primitive_type] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_class] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2186), + [anon_sym_decltype] = ACTIONS(2186), + [anon_sym_virtual] = ACTIONS(2186), + [anon_sym_alignas] = ACTIONS(2186), + [anon_sym_explicit] = ACTIONS(2186), + [anon_sym_typename] = ACTIONS(2186), + [anon_sym_template] = ACTIONS(2186), + [anon_sym_operator] = ACTIONS(2186), + [anon_sym_friend] = ACTIONS(2186), + [anon_sym_public] = ACTIONS(2186), + [anon_sym_private] = ACTIONS(2186), + [anon_sym_protected] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_static_assert] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + }, + [2420] = { + [sym_identifier] = ACTIONS(2136), + [aux_sym_preproc_def_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token1] = ACTIONS(2136), + [aux_sym_preproc_if_token2] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2136), + [sym_preproc_directive] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_AMP_AMP] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym___extension__] = ACTIONS(2136), + [anon_sym_typedef] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym___attribute__] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2134), + [anon_sym___declspec] = ACTIONS(2136), + [anon_sym___based] = ACTIONS(2136), + [anon_sym_signed] = ACTIONS(2136), + [anon_sym_unsigned] = ACTIONS(2136), + [anon_sym_long] = ACTIONS(2136), + [anon_sym_short] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_register] = ACTIONS(2136), + [anon_sym_inline] = ACTIONS(2136), + [anon_sym___inline] = ACTIONS(2136), + [anon_sym___inline__] = ACTIONS(2136), + [anon_sym___forceinline] = ACTIONS(2136), + [anon_sym_thread_local] = ACTIONS(2136), + [anon_sym___thread] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_constexpr] = ACTIONS(2136), + [anon_sym_volatile] = ACTIONS(2136), + [anon_sym_restrict] = ACTIONS(2136), + [anon_sym___restrict__] = ACTIONS(2136), + [anon_sym__Atomic] = ACTIONS(2136), + [anon_sym__Noreturn] = ACTIONS(2136), + [anon_sym_noreturn] = ACTIONS(2136), + [anon_sym_mutable] = ACTIONS(2136), + [anon_sym_constinit] = ACTIONS(2136), + [anon_sym_consteval] = ACTIONS(2136), + [sym_primitive_type] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_class] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2136), + [anon_sym_decltype] = ACTIONS(2136), + [anon_sym_virtual] = ACTIONS(2136), + [anon_sym_alignas] = ACTIONS(2136), + [anon_sym_explicit] = ACTIONS(2136), + [anon_sym_typename] = ACTIONS(2136), + [anon_sym_template] = ACTIONS(2136), + [anon_sym_operator] = ACTIONS(2136), + [anon_sym_friend] = ACTIONS(2136), + [anon_sym_public] = ACTIONS(2136), + [anon_sym_private] = ACTIONS(2136), + [anon_sym_protected] = ACTIONS(2136), + [anon_sym_using] = ACTIONS(2136), + [anon_sym_static_assert] = ACTIONS(2136), + [anon_sym_catch] = ACTIONS(2136), + }, + [2421] = { + [sym_argument_list] = STATE(2821), + [sym_initializer_list] = STATE(2821), + [sym_identifier] = ACTIONS(5931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5933), + [anon_sym_COMMA] = ACTIONS(5933), + [anon_sym_RPAREN] = ACTIONS(5933), + [aux_sym_preproc_if_token2] = ACTIONS(5933), + [aux_sym_preproc_else_token1] = ACTIONS(5933), + [aux_sym_preproc_elif_token1] = ACTIONS(5931), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5933), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5933), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5931), + [anon_sym_PLUS] = ACTIONS(5931), + [anon_sym_STAR] = ACTIONS(5931), + [anon_sym_SLASH] = ACTIONS(5931), + [anon_sym_PERCENT] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_CARET] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + [anon_sym_EQ_EQ] = ACTIONS(5933), + [anon_sym_BANG_EQ] = ACTIONS(5933), + [anon_sym_GT] = ACTIONS(5931), + [anon_sym_GT_EQ] = ACTIONS(5933), + [anon_sym_LT_EQ] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5931), + [anon_sym_LT_LT] = ACTIONS(5931), + [anon_sym_GT_GT] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5933), + [anon_sym___attribute__] = ACTIONS(5931), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(5933), + [anon_sym_LBRACK] = ACTIONS(5933), + [anon_sym_RBRACK] = ACTIONS(5933), + [anon_sym_EQ] = ACTIONS(5931), + [anon_sym_COLON] = ACTIONS(5933), + [anon_sym_QMARK] = ACTIONS(5933), + [anon_sym_STAR_EQ] = ACTIONS(5933), + [anon_sym_SLASH_EQ] = ACTIONS(5933), + [anon_sym_PERCENT_EQ] = ACTIONS(5933), + [anon_sym_PLUS_EQ] = ACTIONS(5933), + [anon_sym_DASH_EQ] = ACTIONS(5933), + [anon_sym_LT_LT_EQ] = ACTIONS(5933), + [anon_sym_GT_GT_EQ] = ACTIONS(5933), + [anon_sym_AMP_EQ] = ACTIONS(5933), + [anon_sym_CARET_EQ] = ACTIONS(5933), + [anon_sym_PIPE_EQ] = ACTIONS(5933), + [anon_sym_and_eq] = ACTIONS(5931), + [anon_sym_or_eq] = ACTIONS(5931), + [anon_sym_xor_eq] = ACTIONS(5931), + [anon_sym_LT_EQ_GT] = ACTIONS(5933), + [anon_sym_or] = ACTIONS(5931), + [anon_sym_and] = ACTIONS(5931), + [anon_sym_bitor] = ACTIONS(5931), + [anon_sym_xor] = ACTIONS(5931), + [anon_sym_bitand] = ACTIONS(5931), + [anon_sym_not_eq] = ACTIONS(5931), + [anon_sym_DASH_DASH] = ACTIONS(5933), + [anon_sym_PLUS_PLUS] = ACTIONS(5933), + [anon_sym_DOT] = ACTIONS(5931), + [anon_sym_DOT_STAR] = ACTIONS(5933), + [anon_sym_DASH_GT] = ACTIONS(5933), + [sym_comment] = ACTIONS(3), + }, + [2422] = { + [sym_identifier] = ACTIONS(5935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5937), + [anon_sym_COMMA] = ACTIONS(5937), + [anon_sym_RPAREN] = ACTIONS(5937), + [aux_sym_preproc_if_token2] = ACTIONS(5937), + [aux_sym_preproc_else_token1] = ACTIONS(5937), + [aux_sym_preproc_elif_token1] = ACTIONS(5935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5937), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5937), + [anon_sym_LPAREN2] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5935), + [anon_sym_PLUS] = ACTIONS(5935), + [anon_sym_STAR] = ACTIONS(5935), + [anon_sym_SLASH] = ACTIONS(5935), + [anon_sym_PERCENT] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_CARET] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + [anon_sym_EQ_EQ] = ACTIONS(5937), + [anon_sym_BANG_EQ] = ACTIONS(5937), + [anon_sym_GT] = ACTIONS(5935), + [anon_sym_GT_EQ] = ACTIONS(5937), + [anon_sym_LT_EQ] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5935), + [anon_sym_LT_LT] = ACTIONS(5935), + [anon_sym_GT_GT] = ACTIONS(5935), + [anon_sym_SEMI] = ACTIONS(5937), + [anon_sym___attribute__] = ACTIONS(5935), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5937), + [anon_sym_LBRACE] = ACTIONS(5937), + [anon_sym_RBRACE] = ACTIONS(5937), + [anon_sym_LBRACK] = ACTIONS(5935), + [anon_sym_RBRACK] = ACTIONS(5937), + [anon_sym_EQ] = ACTIONS(5935), + [anon_sym_COLON] = ACTIONS(5937), + [anon_sym_QMARK] = ACTIONS(5937), + [anon_sym_STAR_EQ] = ACTIONS(5937), + [anon_sym_SLASH_EQ] = ACTIONS(5937), + [anon_sym_PERCENT_EQ] = ACTIONS(5937), + [anon_sym_PLUS_EQ] = ACTIONS(5937), + [anon_sym_DASH_EQ] = ACTIONS(5937), + [anon_sym_LT_LT_EQ] = ACTIONS(5937), + [anon_sym_GT_GT_EQ] = ACTIONS(5937), + [anon_sym_AMP_EQ] = ACTIONS(5937), + [anon_sym_CARET_EQ] = ACTIONS(5937), + [anon_sym_PIPE_EQ] = ACTIONS(5937), + [anon_sym_and_eq] = ACTIONS(5935), + [anon_sym_or_eq] = ACTIONS(5935), + [anon_sym_xor_eq] = ACTIONS(5935), + [anon_sym_LT_EQ_GT] = ACTIONS(5937), + [anon_sym_or] = ACTIONS(5935), + [anon_sym_and] = ACTIONS(5935), + [anon_sym_bitor] = ACTIONS(5935), + [anon_sym_xor] = ACTIONS(5935), + [anon_sym_bitand] = ACTIONS(5935), + [anon_sym_not_eq] = ACTIONS(5935), + [anon_sym_DASH_DASH] = ACTIONS(5937), + [anon_sym_PLUS_PLUS] = ACTIONS(5937), + [anon_sym_DOT] = ACTIONS(5935), + [anon_sym_DOT_STAR] = ACTIONS(5937), + [anon_sym_DASH_GT] = ACTIONS(5937), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5935), + }, + [2423] = { + [sym_identifier] = ACTIONS(5939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5941), + [anon_sym_COMMA] = ACTIONS(5941), + [anon_sym_RPAREN] = ACTIONS(5941), + [aux_sym_preproc_if_token2] = ACTIONS(5941), + [aux_sym_preproc_else_token1] = ACTIONS(5941), + [aux_sym_preproc_elif_token1] = ACTIONS(5939), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5941), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5941), + [anon_sym_LPAREN2] = ACTIONS(5941), + [anon_sym_DASH] = ACTIONS(5939), + [anon_sym_PLUS] = ACTIONS(5939), + [anon_sym_STAR] = ACTIONS(5939), + [anon_sym_SLASH] = ACTIONS(5939), + [anon_sym_PERCENT] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_CARET] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + [anon_sym_EQ_EQ] = ACTIONS(5941), + [anon_sym_BANG_EQ] = ACTIONS(5941), + [anon_sym_GT] = ACTIONS(5939), + [anon_sym_GT_EQ] = ACTIONS(5941), + [anon_sym_LT_EQ] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(5939), + [anon_sym_LT_LT] = ACTIONS(5939), + [anon_sym_GT_GT] = ACTIONS(5939), + [anon_sym_SEMI] = ACTIONS(5941), + [anon_sym___attribute__] = ACTIONS(5939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5941), + [anon_sym_LBRACE] = ACTIONS(5941), + [anon_sym_RBRACE] = ACTIONS(5941), + [anon_sym_LBRACK] = ACTIONS(5939), + [anon_sym_RBRACK] = ACTIONS(5941), + [anon_sym_EQ] = ACTIONS(5939), + [anon_sym_COLON] = ACTIONS(5941), + [anon_sym_QMARK] = ACTIONS(5941), + [anon_sym_STAR_EQ] = ACTIONS(5941), + [anon_sym_SLASH_EQ] = ACTIONS(5941), + [anon_sym_PERCENT_EQ] = ACTIONS(5941), + [anon_sym_PLUS_EQ] = ACTIONS(5941), + [anon_sym_DASH_EQ] = ACTIONS(5941), + [anon_sym_LT_LT_EQ] = ACTIONS(5941), + [anon_sym_GT_GT_EQ] = ACTIONS(5941), + [anon_sym_AMP_EQ] = ACTIONS(5941), + [anon_sym_CARET_EQ] = ACTIONS(5941), + [anon_sym_PIPE_EQ] = ACTIONS(5941), + [anon_sym_and_eq] = ACTIONS(5939), + [anon_sym_or_eq] = ACTIONS(5939), + [anon_sym_xor_eq] = ACTIONS(5939), + [anon_sym_LT_EQ_GT] = ACTIONS(5941), + [anon_sym_or] = ACTIONS(5939), + [anon_sym_and] = ACTIONS(5939), + [anon_sym_bitor] = ACTIONS(5939), + [anon_sym_xor] = ACTIONS(5939), + [anon_sym_bitand] = ACTIONS(5939), + [anon_sym_not_eq] = ACTIONS(5939), + [anon_sym_DASH_DASH] = ACTIONS(5941), + [anon_sym_PLUS_PLUS] = ACTIONS(5941), + [anon_sym_DOT] = ACTIONS(5939), + [anon_sym_DOT_STAR] = ACTIONS(5941), + [anon_sym_DASH_GT] = ACTIONS(5941), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5939), + }, + [2424] = { + [sym_string_literal] = STATE(2232), + [sym_raw_string_literal] = STATE(2232), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4145), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_SEMI] = ACTIONS(4137), + [anon_sym___attribute__] = ACTIONS(4145), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4145), + [anon_sym_or_eq] = ACTIONS(4145), + [anon_sym_xor_eq] = ACTIONS(4145), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(5631), + [anon_sym_u_DQUOTE] = ACTIONS(5631), + [anon_sym_U_DQUOTE] = ACTIONS(5631), + [anon_sym_u8_DQUOTE] = ACTIONS(5631), + [anon_sym_DQUOTE] = ACTIONS(5631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(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), + [sym_literal_suffix] = ACTIONS(5392), + }, + [2425] = { + [sym_identifier] = ACTIONS(5297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5299), + [anon_sym_COMMA] = ACTIONS(5299), + [aux_sym_preproc_if_token2] = ACTIONS(5299), + [aux_sym_preproc_else_token1] = ACTIONS(5299), + [aux_sym_preproc_elif_token1] = ACTIONS(5299), + [anon_sym_LPAREN2] = ACTIONS(5299), + [anon_sym_DASH] = ACTIONS(5297), + [anon_sym_PLUS] = ACTIONS(5297), + [anon_sym_STAR] = ACTIONS(5297), + [anon_sym_SLASH] = ACTIONS(5297), + [anon_sym_PERCENT] = ACTIONS(5297), + [anon_sym_PIPE_PIPE] = ACTIONS(5299), + [anon_sym_AMP_AMP] = ACTIONS(5299), + [anon_sym_PIPE] = ACTIONS(5297), + [anon_sym_CARET] = ACTIONS(5297), + [anon_sym_AMP] = ACTIONS(5297), + [anon_sym_EQ_EQ] = ACTIONS(5299), + [anon_sym_BANG_EQ] = ACTIONS(5299), + [anon_sym_GT] = ACTIONS(5297), + [anon_sym_GT_EQ] = ACTIONS(5299), + [anon_sym_LT_EQ] = ACTIONS(5297), + [anon_sym_LT] = ACTIONS(5297), + [anon_sym_LT_LT] = ACTIONS(5297), + [anon_sym_GT_GT] = ACTIONS(5297), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym_EQ] = ACTIONS(5297), + [anon_sym_QMARK] = ACTIONS(5299), + [anon_sym_STAR_EQ] = ACTIONS(5299), + [anon_sym_SLASH_EQ] = ACTIONS(5299), + [anon_sym_PERCENT_EQ] = ACTIONS(5299), + [anon_sym_PLUS_EQ] = ACTIONS(5299), + [anon_sym_DASH_EQ] = ACTIONS(5299), + [anon_sym_LT_LT_EQ] = ACTIONS(5299), + [anon_sym_GT_GT_EQ] = ACTIONS(5299), + [anon_sym_AMP_EQ] = ACTIONS(5299), + [anon_sym_CARET_EQ] = ACTIONS(5299), + [anon_sym_PIPE_EQ] = ACTIONS(5299), + [anon_sym_and_eq] = ACTIONS(5297), + [anon_sym_or_eq] = ACTIONS(5297), + [anon_sym_xor_eq] = ACTIONS(5297), + [anon_sym_LT_EQ_GT] = ACTIONS(5299), + [anon_sym_or] = ACTIONS(5297), + [anon_sym_and] = ACTIONS(5297), + [anon_sym_bitor] = ACTIONS(5297), + [anon_sym_xor] = ACTIONS(5297), + [anon_sym_bitand] = ACTIONS(5297), + [anon_sym_not_eq] = ACTIONS(5297), + [anon_sym_DASH_DASH] = ACTIONS(5299), + [anon_sym_PLUS_PLUS] = ACTIONS(5299), + [anon_sym_DOT] = ACTIONS(5297), + [anon_sym_DOT_STAR] = ACTIONS(5299), + [anon_sym_DASH_GT] = ACTIONS(5299), + [anon_sym_L_DQUOTE] = ACTIONS(5299), + [anon_sym_u_DQUOTE] = ACTIONS(5299), + [anon_sym_U_DQUOTE] = ACTIONS(5299), + [anon_sym_u8_DQUOTE] = ACTIONS(5299), + [anon_sym_DQUOTE] = ACTIONS(5299), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5299), + [anon_sym_LR_DQUOTE] = ACTIONS(5299), + [anon_sym_uR_DQUOTE] = ACTIONS(5299), + [anon_sym_UR_DQUOTE] = ACTIONS(5299), + [anon_sym_u8R_DQUOTE] = ACTIONS(5299), + [sym_literal_suffix] = ACTIONS(5297), + }, + [2426] = { + [sym_identifier] = ACTIONS(5262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5264), + [anon_sym_COMMA] = ACTIONS(5264), + [aux_sym_preproc_if_token2] = ACTIONS(5264), + [aux_sym_preproc_else_token1] = ACTIONS(5264), + [aux_sym_preproc_elif_token1] = ACTIONS(5264), + [anon_sym_LPAREN2] = ACTIONS(5264), + [anon_sym_DASH] = ACTIONS(5262), + [anon_sym_PLUS] = ACTIONS(5262), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5262), + [anon_sym_PERCENT] = ACTIONS(5262), + [anon_sym_PIPE_PIPE] = ACTIONS(5264), + [anon_sym_AMP_AMP] = ACTIONS(5264), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_EQ_EQ] = ACTIONS(5264), + [anon_sym_BANG_EQ] = ACTIONS(5264), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5264), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(5262), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym_LBRACK] = ACTIONS(5264), + [anon_sym_EQ] = ACTIONS(5262), + [anon_sym_QMARK] = ACTIONS(5264), + [anon_sym_STAR_EQ] = ACTIONS(5264), + [anon_sym_SLASH_EQ] = ACTIONS(5264), + [anon_sym_PERCENT_EQ] = ACTIONS(5264), + [anon_sym_PLUS_EQ] = ACTIONS(5264), + [anon_sym_DASH_EQ] = ACTIONS(5264), + [anon_sym_LT_LT_EQ] = ACTIONS(5264), + [anon_sym_GT_GT_EQ] = ACTIONS(5264), + [anon_sym_AMP_EQ] = ACTIONS(5264), + [anon_sym_CARET_EQ] = ACTIONS(5264), + [anon_sym_PIPE_EQ] = ACTIONS(5264), + [anon_sym_and_eq] = ACTIONS(5262), + [anon_sym_or_eq] = ACTIONS(5262), + [anon_sym_xor_eq] = ACTIONS(5262), + [anon_sym_LT_EQ_GT] = ACTIONS(5264), + [anon_sym_or] = ACTIONS(5262), + [anon_sym_and] = ACTIONS(5262), + [anon_sym_bitor] = ACTIONS(5262), + [anon_sym_xor] = ACTIONS(5262), + [anon_sym_bitand] = ACTIONS(5262), + [anon_sym_not_eq] = ACTIONS(5262), + [anon_sym_DASH_DASH] = ACTIONS(5264), + [anon_sym_PLUS_PLUS] = ACTIONS(5264), + [anon_sym_DOT] = ACTIONS(5262), + [anon_sym_DOT_STAR] = ACTIONS(5264), + [anon_sym_DASH_GT] = ACTIONS(5264), + [anon_sym_L_DQUOTE] = ACTIONS(5264), + [anon_sym_u_DQUOTE] = ACTIONS(5264), + [anon_sym_U_DQUOTE] = ACTIONS(5264), + [anon_sym_u8_DQUOTE] = ACTIONS(5264), + [anon_sym_DQUOTE] = ACTIONS(5264), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5264), + [anon_sym_LR_DQUOTE] = ACTIONS(5264), + [anon_sym_uR_DQUOTE] = ACTIONS(5264), + [anon_sym_UR_DQUOTE] = ACTIONS(5264), + [anon_sym_u8R_DQUOTE] = ACTIONS(5264), + [sym_literal_suffix] = ACTIONS(5262), + }, + [2427] = { + [sym_identifier] = ACTIONS(5266), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5268), + [anon_sym_COMMA] = ACTIONS(5268), + [aux_sym_preproc_if_token2] = ACTIONS(5268), + [aux_sym_preproc_else_token1] = ACTIONS(5268), + [aux_sym_preproc_elif_token1] = ACTIONS(5268), + [anon_sym_LPAREN2] = ACTIONS(5268), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(5266), + [anon_sym_SLASH] = ACTIONS(5266), + [anon_sym_PERCENT] = ACTIONS(5266), + [anon_sym_PIPE_PIPE] = ACTIONS(5268), + [anon_sym_AMP_AMP] = ACTIONS(5268), + [anon_sym_PIPE] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(5266), + [anon_sym_EQ_EQ] = ACTIONS(5268), + [anon_sym_BANG_EQ] = ACTIONS(5268), + [anon_sym_GT] = ACTIONS(5266), + [anon_sym_GT_EQ] = ACTIONS(5268), + [anon_sym_LT_EQ] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5266), + [anon_sym_LT_LT] = ACTIONS(5266), + [anon_sym_GT_GT] = ACTIONS(5266), + [anon_sym_LBRACK] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(5266), + [anon_sym_QMARK] = ACTIONS(5268), + [anon_sym_STAR_EQ] = ACTIONS(5268), + [anon_sym_SLASH_EQ] = ACTIONS(5268), + [anon_sym_PERCENT_EQ] = ACTIONS(5268), + [anon_sym_PLUS_EQ] = ACTIONS(5268), + [anon_sym_DASH_EQ] = ACTIONS(5268), + [anon_sym_LT_LT_EQ] = ACTIONS(5268), + [anon_sym_GT_GT_EQ] = ACTIONS(5268), + [anon_sym_AMP_EQ] = ACTIONS(5268), + [anon_sym_CARET_EQ] = ACTIONS(5268), + [anon_sym_PIPE_EQ] = ACTIONS(5268), + [anon_sym_and_eq] = ACTIONS(5266), + [anon_sym_or_eq] = ACTIONS(5266), + [anon_sym_xor_eq] = ACTIONS(5266), + [anon_sym_LT_EQ_GT] = ACTIONS(5268), + [anon_sym_or] = ACTIONS(5266), + [anon_sym_and] = ACTIONS(5266), + [anon_sym_bitor] = ACTIONS(5266), + [anon_sym_xor] = ACTIONS(5266), + [anon_sym_bitand] = ACTIONS(5266), + [anon_sym_not_eq] = ACTIONS(5266), + [anon_sym_DASH_DASH] = ACTIONS(5268), + [anon_sym_PLUS_PLUS] = ACTIONS(5268), + [anon_sym_DOT] = ACTIONS(5266), + [anon_sym_DOT_STAR] = ACTIONS(5268), + [anon_sym_DASH_GT] = ACTIONS(5268), + [anon_sym_L_DQUOTE] = ACTIONS(5268), + [anon_sym_u_DQUOTE] = ACTIONS(5268), + [anon_sym_U_DQUOTE] = ACTIONS(5268), + [anon_sym_u8_DQUOTE] = ACTIONS(5268), + [anon_sym_DQUOTE] = ACTIONS(5268), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5268), + [anon_sym_LR_DQUOTE] = ACTIONS(5268), + [anon_sym_uR_DQUOTE] = ACTIONS(5268), + [anon_sym_UR_DQUOTE] = ACTIONS(5268), + [anon_sym_u8R_DQUOTE] = ACTIONS(5268), + [sym_literal_suffix] = ACTIONS(5266), + }, + [2428] = { + [sym_argument_list] = STATE(2783), + [sym_initializer_list] = STATE(2783), + [sym_identifier] = ACTIONS(5943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5945), + [anon_sym_COMMA] = ACTIONS(5945), + [anon_sym_RPAREN] = ACTIONS(5945), + [aux_sym_preproc_if_token2] = ACTIONS(5945), + [aux_sym_preproc_else_token1] = ACTIONS(5945), + [aux_sym_preproc_elif_token1] = ACTIONS(5943), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5945), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5945), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5943), + [anon_sym_PLUS] = ACTIONS(5943), + [anon_sym_STAR] = ACTIONS(5943), + [anon_sym_SLASH] = ACTIONS(5943), + [anon_sym_PERCENT] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5945), + [anon_sym_AMP_AMP] = ACTIONS(5945), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_CARET] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + [anon_sym_EQ_EQ] = ACTIONS(5945), + [anon_sym_BANG_EQ] = ACTIONS(5945), + [anon_sym_GT] = ACTIONS(5943), + [anon_sym_GT_EQ] = ACTIONS(5945), + [anon_sym_LT_EQ] = ACTIONS(5943), + [anon_sym_LT] = ACTIONS(5943), + [anon_sym_LT_LT] = ACTIONS(5943), + [anon_sym_GT_GT] = ACTIONS(5943), + [anon_sym_SEMI] = ACTIONS(5945), + [anon_sym___attribute__] = ACTIONS(5943), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(5945), + [anon_sym_LBRACK] = ACTIONS(5945), + [anon_sym_RBRACK] = ACTIONS(5945), + [anon_sym_EQ] = ACTIONS(5943), + [anon_sym_COLON] = ACTIONS(5945), + [anon_sym_QMARK] = ACTIONS(5945), + [anon_sym_STAR_EQ] = ACTIONS(5945), + [anon_sym_SLASH_EQ] = ACTIONS(5945), + [anon_sym_PERCENT_EQ] = ACTIONS(5945), + [anon_sym_PLUS_EQ] = ACTIONS(5945), + [anon_sym_DASH_EQ] = ACTIONS(5945), + [anon_sym_LT_LT_EQ] = ACTIONS(5945), + [anon_sym_GT_GT_EQ] = ACTIONS(5945), + [anon_sym_AMP_EQ] = ACTIONS(5945), + [anon_sym_CARET_EQ] = ACTIONS(5945), + [anon_sym_PIPE_EQ] = ACTIONS(5945), + [anon_sym_and_eq] = ACTIONS(5943), + [anon_sym_or_eq] = ACTIONS(5943), + [anon_sym_xor_eq] = ACTIONS(5943), + [anon_sym_LT_EQ_GT] = ACTIONS(5945), + [anon_sym_or] = ACTIONS(5943), + [anon_sym_and] = ACTIONS(5943), + [anon_sym_bitor] = ACTIONS(5943), + [anon_sym_xor] = ACTIONS(5943), + [anon_sym_bitand] = ACTIONS(5943), + [anon_sym_not_eq] = ACTIONS(5943), + [anon_sym_DASH_DASH] = ACTIONS(5945), + [anon_sym_PLUS_PLUS] = ACTIONS(5945), + [anon_sym_DOT] = ACTIONS(5943), + [anon_sym_DOT_STAR] = ACTIONS(5945), + [anon_sym_DASH_GT] = ACTIONS(5945), + [sym_comment] = ACTIONS(3), + }, + [2429] = { + [sym_identifier] = ACTIONS(5947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5949), + [anon_sym_COMMA] = ACTIONS(5949), + [anon_sym_RPAREN] = ACTIONS(5949), + [aux_sym_preproc_if_token2] = ACTIONS(5949), + [aux_sym_preproc_else_token1] = ACTIONS(5949), + [aux_sym_preproc_elif_token1] = ACTIONS(5947), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5949), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5949), + [anon_sym_LPAREN2] = ACTIONS(5949), + [anon_sym_DASH] = ACTIONS(5947), + [anon_sym_PLUS] = ACTIONS(5947), + [anon_sym_STAR] = ACTIONS(5947), + [anon_sym_SLASH] = ACTIONS(5947), + [anon_sym_PERCENT] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE] = ACTIONS(5947), + [anon_sym_CARET] = ACTIONS(5947), + [anon_sym_AMP] = ACTIONS(5947), + [anon_sym_EQ_EQ] = ACTIONS(5949), + [anon_sym_BANG_EQ] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5947), + [anon_sym_GT_EQ] = ACTIONS(5949), + [anon_sym_LT_EQ] = ACTIONS(5947), + [anon_sym_LT] = ACTIONS(5947), + [anon_sym_LT_LT] = ACTIONS(5947), + [anon_sym_GT_GT] = ACTIONS(5947), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym___attribute__] = ACTIONS(5947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5949), + [anon_sym_LBRACE] = ACTIONS(5949), + [anon_sym_RBRACE] = ACTIONS(5949), + [anon_sym_LBRACK] = ACTIONS(5947), + [anon_sym_RBRACK] = ACTIONS(5949), + [anon_sym_EQ] = ACTIONS(5947), + [anon_sym_COLON] = ACTIONS(5949), + [anon_sym_QMARK] = ACTIONS(5949), + [anon_sym_STAR_EQ] = ACTIONS(5949), + [anon_sym_SLASH_EQ] = ACTIONS(5949), + [anon_sym_PERCENT_EQ] = ACTIONS(5949), + [anon_sym_PLUS_EQ] = ACTIONS(5949), + [anon_sym_DASH_EQ] = ACTIONS(5949), + [anon_sym_LT_LT_EQ] = ACTIONS(5949), + [anon_sym_GT_GT_EQ] = ACTIONS(5949), + [anon_sym_AMP_EQ] = ACTIONS(5949), + [anon_sym_CARET_EQ] = ACTIONS(5949), + [anon_sym_PIPE_EQ] = ACTIONS(5949), + [anon_sym_and_eq] = ACTIONS(5947), + [anon_sym_or_eq] = ACTIONS(5947), + [anon_sym_xor_eq] = ACTIONS(5947), + [anon_sym_LT_EQ_GT] = ACTIONS(5949), + [anon_sym_or] = ACTIONS(5947), + [anon_sym_and] = ACTIONS(5947), + [anon_sym_bitor] = ACTIONS(5947), + [anon_sym_xor] = ACTIONS(5947), + [anon_sym_bitand] = ACTIONS(5947), + [anon_sym_not_eq] = ACTIONS(5947), + [anon_sym_DASH_DASH] = ACTIONS(5949), + [anon_sym_PLUS_PLUS] = ACTIONS(5949), + [anon_sym_DOT] = ACTIONS(5947), + [anon_sym_DOT_STAR] = ACTIONS(5949), + [anon_sym_DASH_GT] = ACTIONS(5949), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5947), + }, + [2430] = { + [sym_template_argument_list] = STATE(1974), + [sym_identifier] = ACTIONS(5007), + [anon_sym_LPAREN2] = ACTIONS(5012), + [anon_sym_TILDE] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5012), + [anon_sym_PIPE_PIPE] = ACTIONS(5012), + [anon_sym_AMP_AMP] = ACTIONS(5012), + [anon_sym_AMP] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5951), + [anon_sym___extension__] = ACTIONS(5007), + [anon_sym_extern] = ACTIONS(5007), + [anon_sym___attribute__] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5012), + [anon_sym___declspec] = ACTIONS(5007), + [anon_sym___based] = ACTIONS(5007), + [anon_sym___cdecl] = ACTIONS(5007), + [anon_sym___clrcall] = ACTIONS(5007), + [anon_sym___stdcall] = ACTIONS(5007), + [anon_sym___fastcall] = ACTIONS(5007), + [anon_sym___thiscall] = ACTIONS(5007), + [anon_sym___vectorcall] = ACTIONS(5007), + [anon_sym_signed] = ACTIONS(5007), + [anon_sym_unsigned] = ACTIONS(5007), + [anon_sym_long] = ACTIONS(5007), + [anon_sym_short] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_static] = ACTIONS(5007), + [anon_sym_register] = ACTIONS(5007), + [anon_sym_inline] = ACTIONS(5007), + [anon_sym___inline] = ACTIONS(5007), + [anon_sym___inline__] = ACTIONS(5007), + [anon_sym___forceinline] = ACTIONS(5007), + [anon_sym_thread_local] = ACTIONS(5007), + [anon_sym___thread] = ACTIONS(5007), + [anon_sym_const] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym___restrict__] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym__Noreturn] = ACTIONS(5007), + [anon_sym_noreturn] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_constinit] = ACTIONS(5007), + [anon_sym_consteval] = ACTIONS(5007), + [sym_primitive_type] = ACTIONS(5007), + [anon_sym_enum] = ACTIONS(5007), + [anon_sym_class] = ACTIONS(5007), + [anon_sym_struct] = ACTIONS(5007), + [anon_sym_union] = ACTIONS(5007), + [anon_sym_or] = ACTIONS(5007), + [anon_sym_and] = ACTIONS(5007), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5007), + [anon_sym_decltype] = ACTIONS(5007), + [anon_sym_virtual] = ACTIONS(5007), + [anon_sym_alignas] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_typename] = ACTIONS(5007), + [anon_sym_template] = ACTIONS(5007), + [anon_sym_operator] = ACTIONS(5007), + [anon_sym_friend] = ACTIONS(5007), + [anon_sym_using] = ACTIONS(5007), + [anon_sym_concept] = ACTIONS(5007), + }, + [2431] = { + [sym_identifier] = ACTIONS(5270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), + [anon_sym_COMMA] = ACTIONS(5272), + [aux_sym_preproc_if_token2] = ACTIONS(5272), + [aux_sym_preproc_else_token1] = ACTIONS(5272), + [aux_sym_preproc_elif_token1] = ACTIONS(5272), + [anon_sym_LPAREN2] = ACTIONS(5272), + [anon_sym_DASH] = ACTIONS(5270), + [anon_sym_PLUS] = ACTIONS(5270), + [anon_sym_STAR] = ACTIONS(5270), + [anon_sym_SLASH] = ACTIONS(5270), + [anon_sym_PERCENT] = ACTIONS(5270), + [anon_sym_PIPE_PIPE] = ACTIONS(5272), + [anon_sym_AMP_AMP] = ACTIONS(5272), + [anon_sym_PIPE] = ACTIONS(5270), + [anon_sym_CARET] = ACTIONS(5270), + [anon_sym_AMP] = ACTIONS(5270), + [anon_sym_EQ_EQ] = ACTIONS(5272), + [anon_sym_BANG_EQ] = ACTIONS(5272), + [anon_sym_GT] = ACTIONS(5270), + [anon_sym_GT_EQ] = ACTIONS(5272), + [anon_sym_LT_EQ] = ACTIONS(5270), + [anon_sym_LT] = ACTIONS(5270), + [anon_sym_LT_LT] = ACTIONS(5270), + [anon_sym_GT_GT] = ACTIONS(5270), + [anon_sym_LBRACK] = ACTIONS(5272), + [anon_sym_EQ] = ACTIONS(5270), + [anon_sym_QMARK] = ACTIONS(5272), + [anon_sym_STAR_EQ] = ACTIONS(5272), + [anon_sym_SLASH_EQ] = ACTIONS(5272), + [anon_sym_PERCENT_EQ] = ACTIONS(5272), + [anon_sym_PLUS_EQ] = ACTIONS(5272), + [anon_sym_DASH_EQ] = ACTIONS(5272), + [anon_sym_LT_LT_EQ] = ACTIONS(5272), + [anon_sym_GT_GT_EQ] = ACTIONS(5272), + [anon_sym_AMP_EQ] = ACTIONS(5272), + [anon_sym_CARET_EQ] = ACTIONS(5272), + [anon_sym_PIPE_EQ] = ACTIONS(5272), + [anon_sym_and_eq] = ACTIONS(5270), + [anon_sym_or_eq] = ACTIONS(5270), + [anon_sym_xor_eq] = ACTIONS(5270), + [anon_sym_LT_EQ_GT] = ACTIONS(5272), + [anon_sym_or] = ACTIONS(5270), + [anon_sym_and] = ACTIONS(5270), + [anon_sym_bitor] = ACTIONS(5270), + [anon_sym_xor] = ACTIONS(5270), + [anon_sym_bitand] = ACTIONS(5270), + [anon_sym_not_eq] = ACTIONS(5270), + [anon_sym_DASH_DASH] = ACTIONS(5272), + [anon_sym_PLUS_PLUS] = ACTIONS(5272), + [anon_sym_DOT] = ACTIONS(5270), + [anon_sym_DOT_STAR] = ACTIONS(5272), + [anon_sym_DASH_GT] = ACTIONS(5272), + [anon_sym_L_DQUOTE] = ACTIONS(5272), + [anon_sym_u_DQUOTE] = ACTIONS(5272), + [anon_sym_U_DQUOTE] = ACTIONS(5272), + [anon_sym_u8_DQUOTE] = ACTIONS(5272), + [anon_sym_DQUOTE] = ACTIONS(5272), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5272), + [anon_sym_LR_DQUOTE] = ACTIONS(5272), + [anon_sym_uR_DQUOTE] = ACTIONS(5272), + [anon_sym_UR_DQUOTE] = ACTIONS(5272), + [anon_sym_u8R_DQUOTE] = ACTIONS(5272), + [sym_literal_suffix] = ACTIONS(5270), + }, + [2432] = { + [sym_identifier] = ACTIONS(5807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [aux_sym_preproc_if_token2] = ACTIONS(5809), + [aux_sym_preproc_else_token1] = ACTIONS(5809), + [aux_sym_preproc_elif_token1] = ACTIONS(5807), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5809), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5809), + [anon_sym_LPAREN2] = ACTIONS(5809), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_PERCENT] = ACTIONS(5807), + [anon_sym_PIPE_PIPE] = ACTIONS(5809), + [anon_sym_AMP_AMP] = ACTIONS(5809), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym_AMP] = ACTIONS(5807), + [anon_sym_EQ_EQ] = ACTIONS(5809), + [anon_sym_BANG_EQ] = ACTIONS(5809), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_GT_EQ] = ACTIONS(5809), + [anon_sym_LT_EQ] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_LT_LT] = ACTIONS(5807), + [anon_sym_GT_GT] = ACTIONS(5807), + [anon_sym_SEMI] = ACTIONS(5809), + [anon_sym___attribute__] = ACTIONS(5807), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_RBRACE] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5809), + [anon_sym_QMARK] = ACTIONS(5809), + [anon_sym_STAR_EQ] = ACTIONS(5809), + [anon_sym_SLASH_EQ] = ACTIONS(5809), + [anon_sym_PERCENT_EQ] = ACTIONS(5809), + [anon_sym_PLUS_EQ] = ACTIONS(5809), + [anon_sym_DASH_EQ] = ACTIONS(5809), + [anon_sym_LT_LT_EQ] = ACTIONS(5809), + [anon_sym_GT_GT_EQ] = ACTIONS(5809), + [anon_sym_AMP_EQ] = ACTIONS(5809), + [anon_sym_CARET_EQ] = ACTIONS(5809), + [anon_sym_PIPE_EQ] = ACTIONS(5809), + [anon_sym_and_eq] = ACTIONS(5807), + [anon_sym_or_eq] = ACTIONS(5807), + [anon_sym_xor_eq] = ACTIONS(5807), + [anon_sym_LT_EQ_GT] = ACTIONS(5809), + [anon_sym_or] = ACTIONS(5807), + [anon_sym_and] = ACTIONS(5807), + [anon_sym_bitor] = ACTIONS(5807), + [anon_sym_xor] = ACTIONS(5807), + [anon_sym_bitand] = ACTIONS(5807), + [anon_sym_not_eq] = ACTIONS(5807), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_DOT_STAR] = ACTIONS(5809), + [anon_sym_DASH_GT] = ACTIONS(5809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5807), + [anon_sym_decltype] = ACTIONS(5807), + }, + [2433] = { + [sym_attribute_declaration] = STATE(2433), + [aux_sym_attributed_declarator_repeat1] = STATE(2433), + [sym_identifier] = ACTIONS(5953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5955), + [anon_sym_COMMA] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [aux_sym_preproc_if_token2] = ACTIONS(5955), + [aux_sym_preproc_else_token1] = ACTIONS(5955), + [aux_sym_preproc_elif_token1] = ACTIONS(5953), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5955), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5955), + [anon_sym_LPAREN2] = ACTIONS(5955), + [anon_sym_DASH] = ACTIONS(5953), + [anon_sym_PLUS] = ACTIONS(5953), + [anon_sym_STAR] = ACTIONS(5953), + [anon_sym_SLASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_CARET] = ACTIONS(5953), + [anon_sym_AMP] = ACTIONS(5953), + [anon_sym_EQ_EQ] = ACTIONS(5955), + [anon_sym_BANG_EQ] = ACTIONS(5955), + [anon_sym_GT] = ACTIONS(5953), + [anon_sym_GT_EQ] = ACTIONS(5955), + [anon_sym_LT_EQ] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(5953), + [anon_sym_LT_LT] = ACTIONS(5953), + [anon_sym_GT_GT] = ACTIONS(5953), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym___attribute__] = ACTIONS(5953), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5957), + [anon_sym_RBRACE] = ACTIONS(5955), + [anon_sym_LBRACK] = ACTIONS(5953), + [anon_sym_RBRACK] = ACTIONS(5955), + [anon_sym_EQ] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(5955), + [anon_sym_QMARK] = ACTIONS(5955), + [anon_sym_STAR_EQ] = ACTIONS(5955), + [anon_sym_SLASH_EQ] = ACTIONS(5955), + [anon_sym_PERCENT_EQ] = ACTIONS(5955), + [anon_sym_PLUS_EQ] = ACTIONS(5955), + [anon_sym_DASH_EQ] = ACTIONS(5955), + [anon_sym_LT_LT_EQ] = ACTIONS(5955), + [anon_sym_GT_GT_EQ] = ACTIONS(5955), + [anon_sym_AMP_EQ] = ACTIONS(5955), + [anon_sym_CARET_EQ] = ACTIONS(5955), + [anon_sym_PIPE_EQ] = ACTIONS(5955), + [anon_sym_and_eq] = ACTIONS(5953), + [anon_sym_or_eq] = ACTIONS(5953), + [anon_sym_xor_eq] = ACTIONS(5953), + [anon_sym_LT_EQ_GT] = ACTIONS(5955), + [anon_sym_or] = ACTIONS(5953), + [anon_sym_and] = ACTIONS(5953), + [anon_sym_bitor] = ACTIONS(5953), + [anon_sym_xor] = ACTIONS(5953), + [anon_sym_bitand] = ACTIONS(5953), + [anon_sym_not_eq] = ACTIONS(5953), + [anon_sym_DASH_DASH] = ACTIONS(5955), + [anon_sym_PLUS_PLUS] = ACTIONS(5955), + [anon_sym_DOT] = ACTIONS(5953), + [anon_sym_DOT_STAR] = ACTIONS(5955), + [anon_sym_DASH_GT] = ACTIONS(5955), + [sym_comment] = ACTIONS(3), + }, + [2434] = { + [sym_identifier] = ACTIONS(5418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_RPAREN] = ACTIONS(5420), + [aux_sym_preproc_if_token2] = ACTIONS(5420), + [aux_sym_preproc_else_token1] = ACTIONS(5420), + [aux_sym_preproc_elif_token1] = ACTIONS(5418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5420), + [anon_sym_LPAREN2] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5418), + [anon_sym_STAR] = ACTIONS(5418), + [anon_sym_SLASH] = ACTIONS(5418), + [anon_sym_PERCENT] = ACTIONS(5418), + [anon_sym_PIPE_PIPE] = ACTIONS(5420), + [anon_sym_AMP_AMP] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5418), + [anon_sym_AMP] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_EQ] = ACTIONS(5418), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_LT_LT] = ACTIONS(5418), + [anon_sym_GT_GT] = ACTIONS(5418), + [anon_sym_SEMI] = ACTIONS(5420), + [anon_sym___attribute__] = ACTIONS(5418), + [anon_sym_LBRACE] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_RBRACK] = ACTIONS(5420), + [anon_sym_EQ] = ACTIONS(5418), + [anon_sym_COLON] = ACTIONS(5420), + [anon_sym_QMARK] = ACTIONS(5420), + [anon_sym_STAR_EQ] = ACTIONS(5420), + [anon_sym_SLASH_EQ] = ACTIONS(5420), + [anon_sym_PERCENT_EQ] = ACTIONS(5420), + [anon_sym_PLUS_EQ] = ACTIONS(5420), + [anon_sym_DASH_EQ] = ACTIONS(5420), + [anon_sym_LT_LT_EQ] = ACTIONS(5420), + [anon_sym_GT_GT_EQ] = ACTIONS(5420), + [anon_sym_AMP_EQ] = ACTIONS(5420), + [anon_sym_CARET_EQ] = ACTIONS(5420), + [anon_sym_PIPE_EQ] = ACTIONS(5420), + [anon_sym_and_eq] = ACTIONS(5418), + [anon_sym_or_eq] = ACTIONS(5418), + [anon_sym_xor_eq] = ACTIONS(5418), + [anon_sym_LT_EQ_GT] = ACTIONS(5420), + [anon_sym_or] = ACTIONS(5418), + [anon_sym_and] = ACTIONS(5418), + [anon_sym_bitor] = ACTIONS(5418), + [anon_sym_xor] = ACTIONS(5418), + [anon_sym_bitand] = ACTIONS(5418), + [anon_sym_not_eq] = ACTIONS(5418), + [anon_sym_DASH_DASH] = ACTIONS(5420), + [anon_sym_PLUS_PLUS] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_DOT_STAR] = ACTIONS(5420), + [anon_sym_DASH_GT] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5418), + [anon_sym_decltype] = ACTIONS(5418), + }, + [2435] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5420), + [anon_sym_COMMA] = ACTIONS(5420), + [anon_sym_RPAREN] = ACTIONS(5420), + [anon_sym_LPAREN2] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5418), + [anon_sym_PLUS] = ACTIONS(5418), + [anon_sym_STAR] = ACTIONS(5420), + [anon_sym_SLASH] = ACTIONS(5418), + [anon_sym_PERCENT] = ACTIONS(5420), + [anon_sym_PIPE_PIPE] = ACTIONS(5420), + [anon_sym_AMP_AMP] = ACTIONS(5420), + [anon_sym_PIPE] = ACTIONS(5418), + [anon_sym_CARET] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(5418), + [anon_sym_EQ_EQ] = ACTIONS(5420), + [anon_sym_BANG_EQ] = ACTIONS(5420), + [anon_sym_GT] = ACTIONS(5418), + [anon_sym_GT_EQ] = ACTIONS(5420), + [anon_sym_LT_EQ] = ACTIONS(5418), + [anon_sym_LT] = ACTIONS(5418), + [anon_sym_LT_LT] = ACTIONS(5420), + [anon_sym_GT_GT] = ACTIONS(5420), + [anon_sym_SEMI] = ACTIONS(5420), + [anon_sym___extension__] = ACTIONS(5420), + [anon_sym___attribute__] = ACTIONS(5420), + [anon_sym_LBRACE] = ACTIONS(5420), + [anon_sym_RBRACE] = ACTIONS(5420), + [anon_sym_signed] = ACTIONS(5960), + [anon_sym_unsigned] = ACTIONS(5960), + [anon_sym_long] = ACTIONS(5960), + [anon_sym_short] = ACTIONS(5960), + [anon_sym_LBRACK] = ACTIONS(5420), + [anon_sym_RBRACK] = ACTIONS(5420), + [anon_sym_const] = ACTIONS(5418), + [anon_sym_constexpr] = ACTIONS(5420), + [anon_sym_volatile] = ACTIONS(5420), + [anon_sym_restrict] = ACTIONS(5420), + [anon_sym___restrict__] = ACTIONS(5420), + [anon_sym__Atomic] = ACTIONS(5420), + [anon_sym__Noreturn] = ACTIONS(5420), + [anon_sym_noreturn] = ACTIONS(5420), + [anon_sym_mutable] = ACTIONS(5420), + [anon_sym_constinit] = ACTIONS(5420), + [anon_sym_consteval] = ACTIONS(5420), + [anon_sym_COLON] = ACTIONS(5420), + [anon_sym_QMARK] = ACTIONS(5420), + [anon_sym_LT_EQ_GT] = ACTIONS(5420), + [anon_sym_or] = ACTIONS(5420), + [anon_sym_and] = ACTIONS(5420), + [anon_sym_bitor] = ACTIONS(5420), + [anon_sym_xor] = ACTIONS(5420), + [anon_sym_bitand] = ACTIONS(5420), + [anon_sym_not_eq] = ACTIONS(5420), + [anon_sym_DASH_DASH] = ACTIONS(5420), + [anon_sym_PLUS_PLUS] = ACTIONS(5420), + [anon_sym_DOT] = ACTIONS(5418), + [anon_sym_DOT_STAR] = ACTIONS(5420), + [anon_sym_DASH_GT] = ACTIONS(5420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5420), + [anon_sym_decltype] = ACTIONS(5420), + [anon_sym_final] = ACTIONS(5420), + [anon_sym_override] = ACTIONS(5420), + [anon_sym_requires] = ACTIONS(5420), + }, + [2436] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5962), + [anon_sym_COMMA] = ACTIONS(5962), + [anon_sym_RPAREN] = ACTIONS(5962), + [anon_sym_LPAREN2] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5964), + [anon_sym_PLUS] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(5962), + [anon_sym_SLASH] = ACTIONS(5964), + [anon_sym_PERCENT] = ACTIONS(5962), + [anon_sym_PIPE_PIPE] = ACTIONS(5962), + [anon_sym_AMP_AMP] = ACTIONS(5962), + [anon_sym_PIPE] = ACTIONS(5964), + [anon_sym_CARET] = ACTIONS(5962), + [anon_sym_AMP] = ACTIONS(5964), + [anon_sym_EQ_EQ] = ACTIONS(5962), + [anon_sym_BANG_EQ] = ACTIONS(5962), + [anon_sym_GT] = ACTIONS(5964), + [anon_sym_GT_EQ] = ACTIONS(5962), + [anon_sym_LT_EQ] = ACTIONS(5964), + [anon_sym_LT] = ACTIONS(5964), + [anon_sym_LT_LT] = ACTIONS(5962), + [anon_sym_GT_GT] = ACTIONS(5962), + [anon_sym_SEMI] = ACTIONS(5962), + [anon_sym___extension__] = ACTIONS(5962), + [anon_sym___attribute__] = ACTIONS(5962), + [anon_sym_LBRACE] = ACTIONS(5962), + [anon_sym_RBRACE] = ACTIONS(5962), + [anon_sym_signed] = ACTIONS(5966), + [anon_sym_unsigned] = ACTIONS(5966), + [anon_sym_long] = ACTIONS(5966), + [anon_sym_short] = ACTIONS(5966), + [anon_sym_LBRACK] = ACTIONS(5962), + [anon_sym_RBRACK] = ACTIONS(5962), + [anon_sym_const] = ACTIONS(5964), + [anon_sym_constexpr] = ACTIONS(5962), + [anon_sym_volatile] = ACTIONS(5962), + [anon_sym_restrict] = ACTIONS(5962), + [anon_sym___restrict__] = ACTIONS(5962), + [anon_sym__Atomic] = ACTIONS(5962), + [anon_sym__Noreturn] = ACTIONS(5962), + [anon_sym_noreturn] = ACTIONS(5962), + [anon_sym_mutable] = ACTIONS(5962), + [anon_sym_constinit] = ACTIONS(5962), + [anon_sym_consteval] = ACTIONS(5962), + [anon_sym_COLON] = ACTIONS(5962), + [anon_sym_QMARK] = ACTIONS(5962), + [anon_sym_LT_EQ_GT] = ACTIONS(5962), + [anon_sym_or] = ACTIONS(5962), + [anon_sym_and] = ACTIONS(5962), + [anon_sym_bitor] = ACTIONS(5962), + [anon_sym_xor] = ACTIONS(5962), + [anon_sym_bitand] = ACTIONS(5962), + [anon_sym_not_eq] = ACTIONS(5962), + [anon_sym_DASH_DASH] = ACTIONS(5962), + [anon_sym_PLUS_PLUS] = ACTIONS(5962), + [anon_sym_DOT] = ACTIONS(5964), + [anon_sym_DOT_STAR] = ACTIONS(5962), + [anon_sym_DASH_GT] = ACTIONS(5962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5962), + [anon_sym_decltype] = ACTIONS(5962), + [anon_sym_final] = ACTIONS(5962), + [anon_sym_override] = ACTIONS(5962), + [anon_sym_requires] = ACTIONS(5962), + }, + [2437] = { + [sym_identifier] = ACTIONS(5669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5671), + [anon_sym_COMMA] = ACTIONS(5671), + [anon_sym_RPAREN] = ACTIONS(5671), + [aux_sym_preproc_if_token2] = ACTIONS(5671), + [aux_sym_preproc_else_token1] = ACTIONS(5671), + [aux_sym_preproc_elif_token1] = ACTIONS(5669), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5671), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5671), + [anon_sym_LPAREN2] = ACTIONS(5671), + [anon_sym_DASH] = ACTIONS(5669), + [anon_sym_PLUS] = ACTIONS(5669), + [anon_sym_STAR] = ACTIONS(5669), + [anon_sym_SLASH] = ACTIONS(5669), + [anon_sym_PERCENT] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(5671), + [anon_sym_AMP_AMP] = ACTIONS(5671), + [anon_sym_PIPE] = ACTIONS(5669), + [anon_sym_CARET] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5669), + [anon_sym_EQ_EQ] = ACTIONS(5671), + [anon_sym_BANG_EQ] = ACTIONS(5671), + [anon_sym_GT] = ACTIONS(5669), + [anon_sym_GT_EQ] = ACTIONS(5671), + [anon_sym_LT_EQ] = ACTIONS(5669), + [anon_sym_LT] = ACTIONS(5669), + [anon_sym_LT_LT] = ACTIONS(5669), + [anon_sym_GT_GT] = ACTIONS(5669), + [anon_sym_SEMI] = ACTIONS(5671), + [anon_sym___attribute__] = ACTIONS(5669), + [anon_sym_LBRACE] = ACTIONS(5671), + [anon_sym_RBRACE] = ACTIONS(5671), + [anon_sym_LBRACK] = ACTIONS(5671), + [anon_sym_RBRACK] = ACTIONS(5671), + [anon_sym_EQ] = ACTIONS(5669), + [anon_sym_COLON] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5671), + [anon_sym_STAR_EQ] = ACTIONS(5671), + [anon_sym_SLASH_EQ] = ACTIONS(5671), + [anon_sym_PERCENT_EQ] = ACTIONS(5671), + [anon_sym_PLUS_EQ] = ACTIONS(5671), + [anon_sym_DASH_EQ] = ACTIONS(5671), + [anon_sym_LT_LT_EQ] = ACTIONS(5671), + [anon_sym_GT_GT_EQ] = ACTIONS(5671), + [anon_sym_AMP_EQ] = ACTIONS(5671), + [anon_sym_CARET_EQ] = ACTIONS(5671), + [anon_sym_PIPE_EQ] = ACTIONS(5671), + [anon_sym_and_eq] = ACTIONS(5669), + [anon_sym_or_eq] = ACTIONS(5669), + [anon_sym_xor_eq] = ACTIONS(5669), + [anon_sym_LT_EQ_GT] = ACTIONS(5671), + [anon_sym_or] = ACTIONS(5669), + [anon_sym_and] = ACTIONS(5669), + [anon_sym_bitor] = ACTIONS(5669), + [anon_sym_xor] = ACTIONS(5669), + [anon_sym_bitand] = ACTIONS(5669), + [anon_sym_not_eq] = ACTIONS(5669), + [anon_sym_DASH_DASH] = ACTIONS(5671), + [anon_sym_PLUS_PLUS] = ACTIONS(5671), + [anon_sym_DOT] = ACTIONS(5669), + [anon_sym_DOT_STAR] = ACTIONS(5671), + [anon_sym_DASH_GT] = ACTIONS(5671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5669), + [anon_sym_decltype] = ACTIONS(5669), + }, + [2438] = { + [sym_identifier] = ACTIONS(5673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5675), + [anon_sym_COMMA] = ACTIONS(5675), + [anon_sym_RPAREN] = ACTIONS(5675), + [aux_sym_preproc_if_token2] = ACTIONS(5675), + [aux_sym_preproc_else_token1] = ACTIONS(5675), + [aux_sym_preproc_elif_token1] = ACTIONS(5673), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5675), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5675), + [anon_sym_LPAREN2] = ACTIONS(5675), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5675), + [anon_sym_AMP_AMP] = ACTIONS(5675), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5675), + [anon_sym_BANG_EQ] = ACTIONS(5675), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5675), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(5673), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym_SEMI] = ACTIONS(5675), + [anon_sym___attribute__] = ACTIONS(5673), + [anon_sym_LBRACE] = ACTIONS(5675), + [anon_sym_RBRACE] = ACTIONS(5675), + [anon_sym_LBRACK] = ACTIONS(5675), + [anon_sym_RBRACK] = ACTIONS(5675), + [anon_sym_EQ] = ACTIONS(5673), + [anon_sym_COLON] = ACTIONS(5675), + [anon_sym_QMARK] = ACTIONS(5675), + [anon_sym_STAR_EQ] = ACTIONS(5675), + [anon_sym_SLASH_EQ] = ACTIONS(5675), + [anon_sym_PERCENT_EQ] = ACTIONS(5675), + [anon_sym_PLUS_EQ] = ACTIONS(5675), + [anon_sym_DASH_EQ] = ACTIONS(5675), + [anon_sym_LT_LT_EQ] = ACTIONS(5675), + [anon_sym_GT_GT_EQ] = ACTIONS(5675), + [anon_sym_AMP_EQ] = ACTIONS(5675), + [anon_sym_CARET_EQ] = ACTIONS(5675), + [anon_sym_PIPE_EQ] = ACTIONS(5675), + [anon_sym_and_eq] = ACTIONS(5673), + [anon_sym_or_eq] = ACTIONS(5673), + [anon_sym_xor_eq] = ACTIONS(5673), + [anon_sym_LT_EQ_GT] = ACTIONS(5675), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5675), + [anon_sym_PLUS_PLUS] = ACTIONS(5675), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5675), + [anon_sym_DASH_GT] = ACTIONS(5675), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5673), + [anon_sym_decltype] = ACTIONS(5673), + }, + [2439] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5764), + [anon_sym_COMMA] = ACTIONS(5764), + [anon_sym_RPAREN] = ACTIONS(5764), + [anon_sym_LPAREN2] = ACTIONS(5764), + [anon_sym_DASH] = ACTIONS(5762), + [anon_sym_PLUS] = ACTIONS(5762), + [anon_sym_STAR] = ACTIONS(5764), + [anon_sym_SLASH] = ACTIONS(5762), + [anon_sym_PERCENT] = ACTIONS(5764), + [anon_sym_PIPE_PIPE] = ACTIONS(5764), + [anon_sym_AMP_AMP] = ACTIONS(5764), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_CARET] = ACTIONS(5764), + [anon_sym_AMP] = ACTIONS(5762), + [anon_sym_EQ_EQ] = ACTIONS(5764), + [anon_sym_BANG_EQ] = ACTIONS(5764), + [anon_sym_GT] = ACTIONS(5762), + [anon_sym_GT_EQ] = ACTIONS(5764), + [anon_sym_LT_EQ] = ACTIONS(5762), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_LT_LT] = ACTIONS(5764), + [anon_sym_GT_GT] = ACTIONS(5764), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(5764), + [anon_sym___attribute__] = ACTIONS(5764), + [anon_sym_LBRACE] = ACTIONS(5764), + [anon_sym_RBRACE] = ACTIONS(5764), + [anon_sym_signed] = ACTIONS(5960), + [anon_sym_unsigned] = ACTIONS(5960), + [anon_sym_long] = ACTIONS(5960), + [anon_sym_short] = ACTIONS(5960), + [anon_sym_LBRACK] = ACTIONS(5764), + [anon_sym_RBRACK] = ACTIONS(5764), + [anon_sym_const] = ACTIONS(5762), + [anon_sym_constexpr] = ACTIONS(5764), + [anon_sym_volatile] = ACTIONS(5764), + [anon_sym_restrict] = ACTIONS(5764), + [anon_sym___restrict__] = ACTIONS(5764), + [anon_sym__Atomic] = ACTIONS(5764), + [anon_sym__Noreturn] = ACTIONS(5764), + [anon_sym_noreturn] = ACTIONS(5764), + [anon_sym_mutable] = ACTIONS(5764), + [anon_sym_constinit] = ACTIONS(5764), + [anon_sym_consteval] = ACTIONS(5764), + [anon_sym_COLON] = ACTIONS(5764), + [anon_sym_QMARK] = ACTIONS(5764), + [anon_sym_LT_EQ_GT] = ACTIONS(5764), + [anon_sym_or] = ACTIONS(5764), + [anon_sym_and] = ACTIONS(5764), + [anon_sym_bitor] = ACTIONS(5764), + [anon_sym_xor] = ACTIONS(5764), + [anon_sym_bitand] = ACTIONS(5764), + [anon_sym_not_eq] = ACTIONS(5764), + [anon_sym_DASH_DASH] = ACTIONS(5764), + [anon_sym_PLUS_PLUS] = ACTIONS(5764), + [anon_sym_DOT] = ACTIONS(5762), + [anon_sym_DOT_STAR] = ACTIONS(5764), + [anon_sym_DASH_GT] = ACTIONS(5764), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5764), + [anon_sym_decltype] = ACTIONS(5764), + [anon_sym_final] = ACTIONS(5764), + [anon_sym_override] = ACTIONS(5764), + [anon_sym_requires] = ACTIONS(5764), + }, + [2440] = { + [sym_identifier] = ACTIONS(5698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5700), + [anon_sym_COMMA] = ACTIONS(5700), + [anon_sym_RPAREN] = ACTIONS(5700), + [aux_sym_preproc_if_token2] = ACTIONS(5700), + [aux_sym_preproc_else_token1] = ACTIONS(5700), + [aux_sym_preproc_elif_token1] = ACTIONS(5698), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5700), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5700), + [anon_sym_LPAREN2] = ACTIONS(5700), + [anon_sym_DASH] = ACTIONS(5698), + [anon_sym_PLUS] = ACTIONS(5698), + [anon_sym_STAR] = ACTIONS(5698), + [anon_sym_SLASH] = ACTIONS(5698), + [anon_sym_PERCENT] = ACTIONS(5698), + [anon_sym_PIPE_PIPE] = ACTIONS(5700), + [anon_sym_AMP_AMP] = ACTIONS(5700), + [anon_sym_PIPE] = ACTIONS(5698), + [anon_sym_CARET] = ACTIONS(5698), + [anon_sym_AMP] = ACTIONS(5698), + [anon_sym_EQ_EQ] = ACTIONS(5700), + [anon_sym_BANG_EQ] = ACTIONS(5700), + [anon_sym_GT] = ACTIONS(5698), + [anon_sym_GT_EQ] = ACTIONS(5700), + [anon_sym_LT_EQ] = ACTIONS(5698), + [anon_sym_LT] = ACTIONS(5698), + [anon_sym_LT_LT] = ACTIONS(5698), + [anon_sym_GT_GT] = ACTIONS(5698), + [anon_sym_SEMI] = ACTIONS(5700), + [anon_sym___attribute__] = ACTIONS(5698), + [anon_sym_LBRACE] = ACTIONS(5700), + [anon_sym_RBRACE] = ACTIONS(5700), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_RBRACK] = ACTIONS(5700), + [anon_sym_EQ] = ACTIONS(5698), + [anon_sym_COLON] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5700), + [anon_sym_STAR_EQ] = ACTIONS(5700), + [anon_sym_SLASH_EQ] = ACTIONS(5700), + [anon_sym_PERCENT_EQ] = ACTIONS(5700), + [anon_sym_PLUS_EQ] = ACTIONS(5700), + [anon_sym_DASH_EQ] = ACTIONS(5700), + [anon_sym_LT_LT_EQ] = ACTIONS(5700), + [anon_sym_GT_GT_EQ] = ACTIONS(5700), + [anon_sym_AMP_EQ] = ACTIONS(5700), + [anon_sym_CARET_EQ] = ACTIONS(5700), + [anon_sym_PIPE_EQ] = ACTIONS(5700), + [anon_sym_and_eq] = ACTIONS(5698), + [anon_sym_or_eq] = ACTIONS(5698), + [anon_sym_xor_eq] = ACTIONS(5698), + [anon_sym_LT_EQ_GT] = ACTIONS(5700), + [anon_sym_or] = ACTIONS(5698), + [anon_sym_and] = ACTIONS(5698), + [anon_sym_bitor] = ACTIONS(5698), + [anon_sym_xor] = ACTIONS(5698), + [anon_sym_bitand] = ACTIONS(5698), + [anon_sym_not_eq] = ACTIONS(5698), + [anon_sym_DASH_DASH] = ACTIONS(5700), + [anon_sym_PLUS_PLUS] = ACTIONS(5700), + [anon_sym_DOT] = ACTIONS(5698), + [anon_sym_DOT_STAR] = ACTIONS(5700), + [anon_sym_DASH_GT] = ACTIONS(5700), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5698), + [anon_sym_decltype] = ACTIONS(5698), + }, + [2441] = { + [sym_identifier] = ACTIONS(5724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5726), + [anon_sym_COMMA] = ACTIONS(5726), + [anon_sym_RPAREN] = ACTIONS(5726), + [aux_sym_preproc_if_token2] = ACTIONS(5726), + [aux_sym_preproc_else_token1] = ACTIONS(5726), + [aux_sym_preproc_elif_token1] = ACTIONS(5724), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5726), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5726), + [anon_sym_LPAREN2] = ACTIONS(5726), + [anon_sym_DASH] = ACTIONS(5724), + [anon_sym_PLUS] = ACTIONS(5724), + [anon_sym_STAR] = ACTIONS(5724), + [anon_sym_SLASH] = ACTIONS(5724), + [anon_sym_PERCENT] = ACTIONS(5724), + [anon_sym_PIPE_PIPE] = ACTIONS(5726), + [anon_sym_AMP_AMP] = ACTIONS(5726), + [anon_sym_PIPE] = ACTIONS(5724), + [anon_sym_CARET] = ACTIONS(5724), + [anon_sym_AMP] = ACTIONS(5724), + [anon_sym_EQ_EQ] = ACTIONS(5726), + [anon_sym_BANG_EQ] = ACTIONS(5726), + [anon_sym_GT] = ACTIONS(5724), + [anon_sym_GT_EQ] = ACTIONS(5726), + [anon_sym_LT_EQ] = ACTIONS(5724), + [anon_sym_LT] = ACTIONS(5724), + [anon_sym_LT_LT] = ACTIONS(5724), + [anon_sym_GT_GT] = ACTIONS(5724), + [anon_sym_SEMI] = ACTIONS(5726), + [anon_sym___attribute__] = ACTIONS(5724), + [anon_sym_LBRACE] = ACTIONS(5726), + [anon_sym_RBRACE] = ACTIONS(5726), + [anon_sym_LBRACK] = ACTIONS(5726), + [anon_sym_RBRACK] = ACTIONS(5726), + [anon_sym_EQ] = ACTIONS(5724), + [anon_sym_COLON] = ACTIONS(5726), + [anon_sym_QMARK] = ACTIONS(5726), + [anon_sym_STAR_EQ] = ACTIONS(5726), + [anon_sym_SLASH_EQ] = ACTIONS(5726), + [anon_sym_PERCENT_EQ] = ACTIONS(5726), + [anon_sym_PLUS_EQ] = ACTIONS(5726), + [anon_sym_DASH_EQ] = ACTIONS(5726), + [anon_sym_LT_LT_EQ] = ACTIONS(5726), + [anon_sym_GT_GT_EQ] = ACTIONS(5726), + [anon_sym_AMP_EQ] = ACTIONS(5726), + [anon_sym_CARET_EQ] = ACTIONS(5726), + [anon_sym_PIPE_EQ] = ACTIONS(5726), + [anon_sym_and_eq] = ACTIONS(5724), + [anon_sym_or_eq] = ACTIONS(5724), + [anon_sym_xor_eq] = ACTIONS(5724), + [anon_sym_LT_EQ_GT] = ACTIONS(5726), + [anon_sym_or] = ACTIONS(5724), + [anon_sym_and] = ACTIONS(5724), + [anon_sym_bitor] = ACTIONS(5724), + [anon_sym_xor] = ACTIONS(5724), + [anon_sym_bitand] = ACTIONS(5724), + [anon_sym_not_eq] = ACTIONS(5724), + [anon_sym_DASH_DASH] = ACTIONS(5726), + [anon_sym_PLUS_PLUS] = ACTIONS(5726), + [anon_sym_DOT] = ACTIONS(5724), + [anon_sym_DOT_STAR] = ACTIONS(5726), + [anon_sym_DASH_GT] = ACTIONS(5726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5724), + [anon_sym_decltype] = ACTIONS(5724), + }, + [2442] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5968), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(5968), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(5968), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(5970), + [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(5968), + [anon_sym___attribute__] = ACTIONS(5968), + [anon_sym_LBRACE] = ACTIONS(5968), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_signed] = ACTIONS(5972), + [anon_sym_unsigned] = ACTIONS(5972), + [anon_sym_long] = ACTIONS(5972), + [anon_sym_short] = ACTIONS(5972), + [anon_sym_LBRACK] = ACTIONS(5968), + [anon_sym_RBRACK] = ACTIONS(5968), + [anon_sym_const] = ACTIONS(5970), + [anon_sym_constexpr] = ACTIONS(5968), + [anon_sym_volatile] = ACTIONS(5968), + [anon_sym_restrict] = ACTIONS(5968), + [anon_sym___restrict__] = ACTIONS(5968), + [anon_sym__Atomic] = ACTIONS(5968), + [anon_sym__Noreturn] = ACTIONS(5968), + [anon_sym_noreturn] = ACTIONS(5968), + [anon_sym_mutable] = ACTIONS(5968), + [anon_sym_constinit] = ACTIONS(5968), + [anon_sym_consteval] = ACTIONS(5968), + [anon_sym_COLON] = ACTIONS(5968), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5968), + [anon_sym_and] = ACTIONS(5968), + [anon_sym_bitor] = ACTIONS(5968), + [anon_sym_xor] = ACTIONS(5968), + [anon_sym_bitand] = ACTIONS(5968), + [anon_sym_not_eq] = ACTIONS(5968), + [anon_sym_DASH_DASH] = ACTIONS(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(5968), + [anon_sym_decltype] = ACTIONS(5968), + [anon_sym_final] = ACTIONS(5968), + [anon_sym_override] = ACTIONS(5968), + [anon_sym_requires] = ACTIONS(5968), + }, + [2443] = { + [sym_identifier] = ACTIONS(5707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5709), + [anon_sym_COMMA] = ACTIONS(5709), + [anon_sym_RPAREN] = ACTIONS(5709), + [aux_sym_preproc_if_token2] = ACTIONS(5709), + [aux_sym_preproc_else_token1] = ACTIONS(5709), + [aux_sym_preproc_elif_token1] = ACTIONS(5707), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5709), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5709), + [anon_sym_LPAREN2] = ACTIONS(5709), + [anon_sym_DASH] = ACTIONS(5707), + [anon_sym_PLUS] = ACTIONS(5707), + [anon_sym_STAR] = ACTIONS(5707), + [anon_sym_SLASH] = ACTIONS(5707), + [anon_sym_PERCENT] = ACTIONS(5707), + [anon_sym_PIPE_PIPE] = ACTIONS(5709), + [anon_sym_AMP_AMP] = ACTIONS(5709), + [anon_sym_PIPE] = ACTIONS(5707), + [anon_sym_CARET] = ACTIONS(5707), + [anon_sym_AMP] = ACTIONS(5707), + [anon_sym_EQ_EQ] = ACTIONS(5709), + [anon_sym_BANG_EQ] = ACTIONS(5709), + [anon_sym_GT] = ACTIONS(5707), + [anon_sym_GT_EQ] = ACTIONS(5709), + [anon_sym_LT_EQ] = ACTIONS(5707), + [anon_sym_LT] = ACTIONS(5707), + [anon_sym_LT_LT] = ACTIONS(5707), + [anon_sym_GT_GT] = ACTIONS(5707), + [anon_sym_SEMI] = ACTIONS(5709), + [anon_sym___attribute__] = ACTIONS(5707), + [anon_sym_LBRACE] = ACTIONS(5709), + [anon_sym_RBRACE] = ACTIONS(5709), + [anon_sym_LBRACK] = ACTIONS(5709), + [anon_sym_RBRACK] = ACTIONS(5709), + [anon_sym_EQ] = ACTIONS(5707), + [anon_sym_COLON] = ACTIONS(5709), + [anon_sym_QMARK] = ACTIONS(5709), + [anon_sym_STAR_EQ] = ACTIONS(5709), + [anon_sym_SLASH_EQ] = ACTIONS(5709), + [anon_sym_PERCENT_EQ] = ACTIONS(5709), + [anon_sym_PLUS_EQ] = ACTIONS(5709), + [anon_sym_DASH_EQ] = ACTIONS(5709), + [anon_sym_LT_LT_EQ] = ACTIONS(5709), + [anon_sym_GT_GT_EQ] = ACTIONS(5709), + [anon_sym_AMP_EQ] = ACTIONS(5709), + [anon_sym_CARET_EQ] = ACTIONS(5709), + [anon_sym_PIPE_EQ] = ACTIONS(5709), + [anon_sym_and_eq] = ACTIONS(5707), + [anon_sym_or_eq] = ACTIONS(5707), + [anon_sym_xor_eq] = ACTIONS(5707), + [anon_sym_LT_EQ_GT] = ACTIONS(5709), + [anon_sym_or] = ACTIONS(5707), + [anon_sym_and] = ACTIONS(5707), + [anon_sym_bitor] = ACTIONS(5707), + [anon_sym_xor] = ACTIONS(5707), + [anon_sym_bitand] = ACTIONS(5707), + [anon_sym_not_eq] = ACTIONS(5707), + [anon_sym_DASH_DASH] = ACTIONS(5709), + [anon_sym_PLUS_PLUS] = ACTIONS(5709), + [anon_sym_DOT] = ACTIONS(5707), + [anon_sym_DOT_STAR] = ACTIONS(5709), + [anon_sym_DASH_GT] = ACTIONS(5709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5707), + [anon_sym_decltype] = ACTIONS(5707), + }, + [2444] = { + [sym_identifier] = ACTIONS(5681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5683), + [anon_sym_COMMA] = ACTIONS(5683), + [anon_sym_RPAREN] = ACTIONS(5683), + [aux_sym_preproc_if_token2] = ACTIONS(5683), + [aux_sym_preproc_else_token1] = ACTIONS(5683), + [aux_sym_preproc_elif_token1] = ACTIONS(5681), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5683), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5683), + [anon_sym_LPAREN2] = ACTIONS(5683), + [anon_sym_DASH] = ACTIONS(5681), + [anon_sym_PLUS] = ACTIONS(5681), + [anon_sym_STAR] = ACTIONS(5681), + [anon_sym_SLASH] = ACTIONS(5681), + [anon_sym_PERCENT] = ACTIONS(5681), + [anon_sym_PIPE_PIPE] = ACTIONS(5683), + [anon_sym_AMP_AMP] = ACTIONS(5683), + [anon_sym_PIPE] = ACTIONS(5681), + [anon_sym_CARET] = ACTIONS(5681), + [anon_sym_AMP] = ACTIONS(5681), + [anon_sym_EQ_EQ] = ACTIONS(5683), + [anon_sym_BANG_EQ] = ACTIONS(5683), + [anon_sym_GT] = ACTIONS(5681), + [anon_sym_GT_EQ] = ACTIONS(5683), + [anon_sym_LT_EQ] = ACTIONS(5681), + [anon_sym_LT] = ACTIONS(5681), + [anon_sym_LT_LT] = ACTIONS(5681), + [anon_sym_GT_GT] = ACTIONS(5681), + [anon_sym_SEMI] = ACTIONS(5683), + [anon_sym___attribute__] = ACTIONS(5681), + [anon_sym_LBRACE] = ACTIONS(5683), + [anon_sym_RBRACE] = ACTIONS(5683), + [anon_sym_LBRACK] = ACTIONS(5683), + [anon_sym_RBRACK] = ACTIONS(5683), + [anon_sym_EQ] = ACTIONS(5681), + [anon_sym_COLON] = ACTIONS(5683), + [anon_sym_QMARK] = ACTIONS(5683), + [anon_sym_STAR_EQ] = ACTIONS(5683), + [anon_sym_SLASH_EQ] = ACTIONS(5683), + [anon_sym_PERCENT_EQ] = ACTIONS(5683), + [anon_sym_PLUS_EQ] = ACTIONS(5683), + [anon_sym_DASH_EQ] = ACTIONS(5683), + [anon_sym_LT_LT_EQ] = ACTIONS(5683), + [anon_sym_GT_GT_EQ] = ACTIONS(5683), + [anon_sym_AMP_EQ] = ACTIONS(5683), + [anon_sym_CARET_EQ] = ACTIONS(5683), + [anon_sym_PIPE_EQ] = ACTIONS(5683), + [anon_sym_and_eq] = ACTIONS(5681), + [anon_sym_or_eq] = ACTIONS(5681), + [anon_sym_xor_eq] = ACTIONS(5681), + [anon_sym_LT_EQ_GT] = ACTIONS(5683), + [anon_sym_or] = ACTIONS(5681), + [anon_sym_and] = ACTIONS(5681), + [anon_sym_bitor] = ACTIONS(5681), + [anon_sym_xor] = ACTIONS(5681), + [anon_sym_bitand] = ACTIONS(5681), + [anon_sym_not_eq] = ACTIONS(5681), + [anon_sym_DASH_DASH] = ACTIONS(5683), + [anon_sym_PLUS_PLUS] = ACTIONS(5683), + [anon_sym_DOT] = ACTIONS(5681), + [anon_sym_DOT_STAR] = ACTIONS(5683), + [anon_sym_DASH_GT] = ACTIONS(5683), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5681), + [anon_sym_decltype] = ACTIONS(5681), + }, + [2445] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5974), + [anon_sym_COMMA] = ACTIONS(5974), + [anon_sym_RPAREN] = ACTIONS(5974), + [anon_sym_LPAREN2] = ACTIONS(5974), + [anon_sym_DASH] = ACTIONS(5976), + [anon_sym_PLUS] = ACTIONS(5976), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(5976), + [anon_sym_PERCENT] = ACTIONS(5974), + [anon_sym_PIPE_PIPE] = ACTIONS(5974), + [anon_sym_AMP_AMP] = ACTIONS(5974), + [anon_sym_PIPE] = ACTIONS(5976), + [anon_sym_CARET] = ACTIONS(5974), + [anon_sym_AMP] = ACTIONS(5976), + [anon_sym_EQ_EQ] = ACTIONS(5974), + [anon_sym_BANG_EQ] = ACTIONS(5974), + [anon_sym_GT] = ACTIONS(5976), + [anon_sym_GT_EQ] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(5976), + [anon_sym_LT] = ACTIONS(5976), + [anon_sym_LT_LT] = ACTIONS(5974), + [anon_sym_GT_GT] = ACTIONS(5974), + [anon_sym_SEMI] = ACTIONS(5974), + [anon_sym___extension__] = ACTIONS(5974), + [anon_sym___attribute__] = ACTIONS(5974), + [anon_sym_LBRACE] = ACTIONS(5974), + [anon_sym_RBRACE] = ACTIONS(5974), + [anon_sym_signed] = ACTIONS(5978), + [anon_sym_unsigned] = ACTIONS(5978), + [anon_sym_long] = ACTIONS(5978), + [anon_sym_short] = ACTIONS(5978), + [anon_sym_LBRACK] = ACTIONS(5974), + [anon_sym_RBRACK] = ACTIONS(5974), + [anon_sym_const] = ACTIONS(5976), + [anon_sym_constexpr] = ACTIONS(5974), + [anon_sym_volatile] = ACTIONS(5974), + [anon_sym_restrict] = ACTIONS(5974), + [anon_sym___restrict__] = ACTIONS(5974), + [anon_sym__Atomic] = ACTIONS(5974), + [anon_sym__Noreturn] = ACTIONS(5974), + [anon_sym_noreturn] = ACTIONS(5974), + [anon_sym_mutable] = ACTIONS(5974), + [anon_sym_constinit] = ACTIONS(5974), + [anon_sym_consteval] = ACTIONS(5974), + [anon_sym_COLON] = ACTIONS(5974), + [anon_sym_QMARK] = ACTIONS(5974), + [anon_sym_LT_EQ_GT] = ACTIONS(5974), + [anon_sym_or] = ACTIONS(5974), + [anon_sym_and] = ACTIONS(5974), + [anon_sym_bitor] = ACTIONS(5974), + [anon_sym_xor] = ACTIONS(5974), + [anon_sym_bitand] = ACTIONS(5974), + [anon_sym_not_eq] = ACTIONS(5974), + [anon_sym_DASH_DASH] = ACTIONS(5974), + [anon_sym_PLUS_PLUS] = ACTIONS(5974), + [anon_sym_DOT] = ACTIONS(5976), + [anon_sym_DOT_STAR] = ACTIONS(5974), + [anon_sym_DASH_GT] = ACTIONS(5974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5974), + [anon_sym_decltype] = ACTIONS(5974), + [anon_sym_final] = ACTIONS(5974), + [anon_sym_override] = ACTIONS(5974), + [anon_sym_requires] = ACTIONS(5974), + }, + [2446] = { + [sym_identifier] = ACTIONS(5738), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5740), + [anon_sym_COMMA] = ACTIONS(5740), + [anon_sym_RPAREN] = ACTIONS(5740), + [aux_sym_preproc_if_token2] = ACTIONS(5740), + [aux_sym_preproc_else_token1] = ACTIONS(5740), + [aux_sym_preproc_elif_token1] = ACTIONS(5738), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5740), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5740), + [anon_sym_LPAREN2] = ACTIONS(5740), + [anon_sym_DASH] = ACTIONS(5738), + [anon_sym_PLUS] = ACTIONS(5738), + [anon_sym_STAR] = ACTIONS(5738), + [anon_sym_SLASH] = ACTIONS(5738), + [anon_sym_PERCENT] = ACTIONS(5738), + [anon_sym_PIPE_PIPE] = ACTIONS(5740), + [anon_sym_AMP_AMP] = ACTIONS(5740), + [anon_sym_PIPE] = ACTIONS(5738), + [anon_sym_CARET] = ACTIONS(5738), + [anon_sym_AMP] = ACTIONS(5738), + [anon_sym_EQ_EQ] = ACTIONS(5740), + [anon_sym_BANG_EQ] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(5738), + [anon_sym_GT_EQ] = ACTIONS(5740), + [anon_sym_LT_EQ] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5738), + [anon_sym_LT_LT] = ACTIONS(5738), + [anon_sym_GT_GT] = ACTIONS(5738), + [anon_sym_SEMI] = ACTIONS(5740), + [anon_sym___attribute__] = ACTIONS(5738), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5740), + [anon_sym_LBRACK] = ACTIONS(5740), + [anon_sym_RBRACK] = ACTIONS(5740), + [anon_sym_EQ] = ACTIONS(5738), + [anon_sym_COLON] = ACTIONS(5740), + [anon_sym_QMARK] = ACTIONS(5740), + [anon_sym_STAR_EQ] = ACTIONS(5740), + [anon_sym_SLASH_EQ] = ACTIONS(5740), + [anon_sym_PERCENT_EQ] = ACTIONS(5740), + [anon_sym_PLUS_EQ] = ACTIONS(5740), + [anon_sym_DASH_EQ] = ACTIONS(5740), + [anon_sym_LT_LT_EQ] = ACTIONS(5740), + [anon_sym_GT_GT_EQ] = ACTIONS(5740), + [anon_sym_AMP_EQ] = ACTIONS(5740), + [anon_sym_CARET_EQ] = ACTIONS(5740), + [anon_sym_PIPE_EQ] = ACTIONS(5740), + [anon_sym_and_eq] = ACTIONS(5738), + [anon_sym_or_eq] = ACTIONS(5738), + [anon_sym_xor_eq] = ACTIONS(5738), + [anon_sym_LT_EQ_GT] = ACTIONS(5740), + [anon_sym_or] = ACTIONS(5738), + [anon_sym_and] = ACTIONS(5738), + [anon_sym_bitor] = ACTIONS(5738), + [anon_sym_xor] = ACTIONS(5738), + [anon_sym_bitand] = ACTIONS(5738), + [anon_sym_not_eq] = ACTIONS(5738), + [anon_sym_DASH_DASH] = ACTIONS(5740), + [anon_sym_PLUS_PLUS] = ACTIONS(5740), + [anon_sym_DOT] = ACTIONS(5738), + [anon_sym_DOT_STAR] = ACTIONS(5740), + [anon_sym_DASH_GT] = ACTIONS(5740), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5738), + [anon_sym_decltype] = ACTIONS(5738), + }, + [2447] = { + [sym_identifier] = ACTIONS(5742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5744), + [anon_sym_COMMA] = ACTIONS(5744), + [anon_sym_RPAREN] = ACTIONS(5744), + [aux_sym_preproc_if_token2] = ACTIONS(5744), + [aux_sym_preproc_else_token1] = ACTIONS(5744), + [aux_sym_preproc_elif_token1] = ACTIONS(5742), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5744), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5744), + [anon_sym_LPAREN2] = ACTIONS(5744), + [anon_sym_DASH] = ACTIONS(5742), + [anon_sym_PLUS] = ACTIONS(5742), + [anon_sym_STAR] = ACTIONS(5742), + [anon_sym_SLASH] = ACTIONS(5742), + [anon_sym_PERCENT] = ACTIONS(5742), + [anon_sym_PIPE_PIPE] = ACTIONS(5744), + [anon_sym_AMP_AMP] = ACTIONS(5744), + [anon_sym_PIPE] = ACTIONS(5742), + [anon_sym_CARET] = ACTIONS(5742), + [anon_sym_AMP] = ACTIONS(5742), + [anon_sym_EQ_EQ] = ACTIONS(5744), + [anon_sym_BANG_EQ] = ACTIONS(5744), + [anon_sym_GT] = ACTIONS(5742), + [anon_sym_GT_EQ] = ACTIONS(5744), + [anon_sym_LT_EQ] = ACTIONS(5742), + [anon_sym_LT] = ACTIONS(5742), + [anon_sym_LT_LT] = ACTIONS(5742), + [anon_sym_GT_GT] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(5744), + [anon_sym___attribute__] = ACTIONS(5742), + [anon_sym_LBRACE] = ACTIONS(5744), + [anon_sym_RBRACE] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(5744), + [anon_sym_RBRACK] = ACTIONS(5744), + [anon_sym_EQ] = ACTIONS(5742), + [anon_sym_COLON] = ACTIONS(5744), + [anon_sym_QMARK] = ACTIONS(5744), + [anon_sym_STAR_EQ] = ACTIONS(5744), + [anon_sym_SLASH_EQ] = ACTIONS(5744), + [anon_sym_PERCENT_EQ] = ACTIONS(5744), + [anon_sym_PLUS_EQ] = ACTIONS(5744), + [anon_sym_DASH_EQ] = ACTIONS(5744), + [anon_sym_LT_LT_EQ] = ACTIONS(5744), + [anon_sym_GT_GT_EQ] = ACTIONS(5744), + [anon_sym_AMP_EQ] = ACTIONS(5744), + [anon_sym_CARET_EQ] = ACTIONS(5744), + [anon_sym_PIPE_EQ] = ACTIONS(5744), + [anon_sym_and_eq] = ACTIONS(5742), + [anon_sym_or_eq] = ACTIONS(5742), + [anon_sym_xor_eq] = ACTIONS(5742), + [anon_sym_LT_EQ_GT] = ACTIONS(5744), + [anon_sym_or] = ACTIONS(5742), + [anon_sym_and] = ACTIONS(5742), + [anon_sym_bitor] = ACTIONS(5742), + [anon_sym_xor] = ACTIONS(5742), + [anon_sym_bitand] = ACTIONS(5742), + [anon_sym_not_eq] = ACTIONS(5742), + [anon_sym_DASH_DASH] = ACTIONS(5744), + [anon_sym_PLUS_PLUS] = ACTIONS(5744), + [anon_sym_DOT] = ACTIONS(5742), + [anon_sym_DOT_STAR] = ACTIONS(5744), + [anon_sym_DASH_GT] = ACTIONS(5744), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5742), + [anon_sym_decltype] = ACTIONS(5742), + }, + [2448] = { + [sym_string_literal] = STATE(2902), + [sym_template_argument_list] = STATE(4130), + [sym_raw_string_literal] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(5982), + [anon_sym_SLASH_EQ] = ACTIONS(5982), + [anon_sym_PERCENT_EQ] = ACTIONS(5982), + [anon_sym_PLUS_EQ] = ACTIONS(5982), + [anon_sym_DASH_EQ] = ACTIONS(5982), + [anon_sym_LT_LT_EQ] = ACTIONS(5982), + [anon_sym_GT_GT_EQ] = ACTIONS(5982), + [anon_sym_AMP_EQ] = ACTIONS(5982), + [anon_sym_CARET_EQ] = ACTIONS(5982), + [anon_sym_PIPE_EQ] = ACTIONS(5982), + [anon_sym_and_eq] = ACTIONS(5982), + [anon_sym_or_eq] = ACTIONS(5982), + [anon_sym_xor_eq] = ACTIONS(5982), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4137), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4137), + [anon_sym_not_eq] = ACTIONS(4137), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4137), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + }, + [2449] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2485), + [sym_identifier] = ACTIONS(5964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5962), + [anon_sym_COMMA] = ACTIONS(5962), + [aux_sym_preproc_if_token2] = ACTIONS(5962), + [aux_sym_preproc_else_token1] = ACTIONS(5962), + [aux_sym_preproc_elif_token1] = ACTIONS(5964), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5962), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5962), + [anon_sym_LPAREN2] = ACTIONS(5962), + [anon_sym_DASH] = ACTIONS(5964), + [anon_sym_PLUS] = ACTIONS(5964), + [anon_sym_STAR] = ACTIONS(5964), + [anon_sym_SLASH] = ACTIONS(5964), + [anon_sym_PERCENT] = ACTIONS(5964), + [anon_sym_PIPE_PIPE] = ACTIONS(5962), + [anon_sym_AMP_AMP] = ACTIONS(5962), + [anon_sym_PIPE] = ACTIONS(5964), + [anon_sym_CARET] = ACTIONS(5964), + [anon_sym_AMP] = ACTIONS(5964), + [anon_sym_EQ_EQ] = ACTIONS(5962), + [anon_sym_BANG_EQ] = ACTIONS(5962), + [anon_sym_GT] = ACTIONS(5964), + [anon_sym_GT_EQ] = ACTIONS(5962), + [anon_sym_LT_EQ] = ACTIONS(5964), + [anon_sym_LT] = ACTIONS(5964), + [anon_sym_LT_LT] = ACTIONS(5964), + [anon_sym_GT_GT] = ACTIONS(5964), + [anon_sym___attribute__] = ACTIONS(5964), + [anon_sym_LBRACE] = ACTIONS(5962), + [anon_sym_signed] = ACTIONS(5984), + [anon_sym_unsigned] = ACTIONS(5984), + [anon_sym_long] = ACTIONS(5984), + [anon_sym_short] = ACTIONS(5984), + [anon_sym_LBRACK] = ACTIONS(5962), + [anon_sym_EQ] = ACTIONS(5964), + [anon_sym_QMARK] = ACTIONS(5962), + [anon_sym_STAR_EQ] = ACTIONS(5962), + [anon_sym_SLASH_EQ] = ACTIONS(5962), + [anon_sym_PERCENT_EQ] = ACTIONS(5962), + [anon_sym_PLUS_EQ] = ACTIONS(5962), + [anon_sym_DASH_EQ] = ACTIONS(5962), + [anon_sym_LT_LT_EQ] = ACTIONS(5962), + [anon_sym_GT_GT_EQ] = ACTIONS(5962), + [anon_sym_AMP_EQ] = ACTIONS(5962), + [anon_sym_CARET_EQ] = ACTIONS(5962), + [anon_sym_PIPE_EQ] = ACTIONS(5962), + [anon_sym_and_eq] = ACTIONS(5964), + [anon_sym_or_eq] = ACTIONS(5964), + [anon_sym_xor_eq] = ACTIONS(5964), + [anon_sym_LT_EQ_GT] = ACTIONS(5962), + [anon_sym_or] = ACTIONS(5964), + [anon_sym_and] = ACTIONS(5964), + [anon_sym_bitor] = ACTIONS(5964), + [anon_sym_xor] = ACTIONS(5964), + [anon_sym_bitand] = ACTIONS(5964), + [anon_sym_not_eq] = ACTIONS(5964), + [anon_sym_DASH_DASH] = ACTIONS(5962), + [anon_sym_PLUS_PLUS] = ACTIONS(5962), + [anon_sym_DOT] = ACTIONS(5964), + [anon_sym_DOT_STAR] = ACTIONS(5962), + [anon_sym_DASH_GT] = ACTIONS(5962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5964), + [anon_sym_decltype] = ACTIONS(5964), + }, + [2450] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2485), + [sym_identifier] = ACTIONS(5986), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5988), + [anon_sym_COMMA] = ACTIONS(5988), + [aux_sym_preproc_if_token2] = ACTIONS(5988), + [aux_sym_preproc_else_token1] = ACTIONS(5988), + [aux_sym_preproc_elif_token1] = ACTIONS(5986), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5988), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5988), + [anon_sym_LPAREN2] = ACTIONS(5988), + [anon_sym_DASH] = ACTIONS(5986), + [anon_sym_PLUS] = ACTIONS(5986), + [anon_sym_STAR] = ACTIONS(5986), + [anon_sym_SLASH] = ACTIONS(5986), + [anon_sym_PERCENT] = ACTIONS(5986), + [anon_sym_PIPE_PIPE] = ACTIONS(5988), + [anon_sym_AMP_AMP] = ACTIONS(5988), + [anon_sym_PIPE] = ACTIONS(5986), + [anon_sym_CARET] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5986), + [anon_sym_EQ_EQ] = ACTIONS(5988), + [anon_sym_BANG_EQ] = ACTIONS(5988), + [anon_sym_GT] = ACTIONS(5986), + [anon_sym_GT_EQ] = ACTIONS(5988), + [anon_sym_LT_EQ] = ACTIONS(5986), + [anon_sym_LT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_GT_GT] = ACTIONS(5986), + [anon_sym___attribute__] = ACTIONS(5986), + [anon_sym_LBRACE] = ACTIONS(5988), + [anon_sym_signed] = ACTIONS(5984), + [anon_sym_unsigned] = ACTIONS(5984), + [anon_sym_long] = ACTIONS(5984), + [anon_sym_short] = ACTIONS(5984), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5988), + [anon_sym_STAR_EQ] = ACTIONS(5988), + [anon_sym_SLASH_EQ] = ACTIONS(5988), + [anon_sym_PERCENT_EQ] = ACTIONS(5988), + [anon_sym_PLUS_EQ] = ACTIONS(5988), + [anon_sym_DASH_EQ] = ACTIONS(5988), + [anon_sym_LT_LT_EQ] = ACTIONS(5988), + [anon_sym_GT_GT_EQ] = ACTIONS(5988), + [anon_sym_AMP_EQ] = ACTIONS(5988), + [anon_sym_CARET_EQ] = ACTIONS(5988), + [anon_sym_PIPE_EQ] = ACTIONS(5988), + [anon_sym_and_eq] = ACTIONS(5986), + [anon_sym_or_eq] = ACTIONS(5986), + [anon_sym_xor_eq] = ACTIONS(5986), + [anon_sym_LT_EQ_GT] = ACTIONS(5988), + [anon_sym_or] = ACTIONS(5986), + [anon_sym_and] = ACTIONS(5986), + [anon_sym_bitor] = ACTIONS(5986), + [anon_sym_xor] = ACTIONS(5986), + [anon_sym_bitand] = ACTIONS(5986), + [anon_sym_not_eq] = ACTIONS(5986), + [anon_sym_DASH_DASH] = ACTIONS(5988), + [anon_sym_PLUS_PLUS] = ACTIONS(5988), + [anon_sym_DOT] = ACTIONS(5986), + [anon_sym_DOT_STAR] = ACTIONS(5988), + [anon_sym_DASH_GT] = ACTIONS(5988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5986), + [anon_sym_decltype] = ACTIONS(5986), + }, + [2451] = { + [sym_identifier] = ACTIONS(5746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5748), + [anon_sym_COMMA] = ACTIONS(5748), + [anon_sym_RPAREN] = ACTIONS(5748), + [aux_sym_preproc_if_token2] = ACTIONS(5748), + [aux_sym_preproc_else_token1] = ACTIONS(5748), + [aux_sym_preproc_elif_token1] = ACTIONS(5746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5748), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5748), + [anon_sym_LPAREN2] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(5746), + [anon_sym_PLUS] = ACTIONS(5746), + [anon_sym_STAR] = ACTIONS(5746), + [anon_sym_SLASH] = ACTIONS(5746), + [anon_sym_PERCENT] = ACTIONS(5746), + [anon_sym_PIPE_PIPE] = ACTIONS(5748), + [anon_sym_AMP_AMP] = ACTIONS(5748), + [anon_sym_PIPE] = ACTIONS(5746), + [anon_sym_CARET] = ACTIONS(5746), + [anon_sym_AMP] = ACTIONS(5746), + [anon_sym_EQ_EQ] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5748), + [anon_sym_GT] = ACTIONS(5746), + [anon_sym_GT_EQ] = ACTIONS(5748), + [anon_sym_LT_EQ] = ACTIONS(5746), + [anon_sym_LT] = ACTIONS(5746), + [anon_sym_LT_LT] = ACTIONS(5746), + [anon_sym_GT_GT] = ACTIONS(5746), + [anon_sym_SEMI] = ACTIONS(5748), + [anon_sym___attribute__] = ACTIONS(5746), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_LBRACK] = ACTIONS(5748), + [anon_sym_RBRACK] = ACTIONS(5748), + [anon_sym_EQ] = ACTIONS(5746), + [anon_sym_COLON] = ACTIONS(5748), + [anon_sym_QMARK] = ACTIONS(5748), + [anon_sym_STAR_EQ] = ACTIONS(5748), + [anon_sym_SLASH_EQ] = ACTIONS(5748), + [anon_sym_PERCENT_EQ] = ACTIONS(5748), + [anon_sym_PLUS_EQ] = ACTIONS(5748), + [anon_sym_DASH_EQ] = ACTIONS(5748), + [anon_sym_LT_LT_EQ] = ACTIONS(5748), + [anon_sym_GT_GT_EQ] = ACTIONS(5748), + [anon_sym_AMP_EQ] = ACTIONS(5748), + [anon_sym_CARET_EQ] = ACTIONS(5748), + [anon_sym_PIPE_EQ] = ACTIONS(5748), + [anon_sym_and_eq] = ACTIONS(5746), + [anon_sym_or_eq] = ACTIONS(5746), + [anon_sym_xor_eq] = ACTIONS(5746), + [anon_sym_LT_EQ_GT] = ACTIONS(5748), + [anon_sym_or] = ACTIONS(5746), + [anon_sym_and] = ACTIONS(5746), + [anon_sym_bitor] = ACTIONS(5746), + [anon_sym_xor] = ACTIONS(5746), + [anon_sym_bitand] = ACTIONS(5746), + [anon_sym_not_eq] = ACTIONS(5746), + [anon_sym_DASH_DASH] = ACTIONS(5748), + [anon_sym_PLUS_PLUS] = ACTIONS(5748), + [anon_sym_DOT] = ACTIONS(5746), + [anon_sym_DOT_STAR] = ACTIONS(5748), + [anon_sym_DASH_GT] = ACTIONS(5748), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5746), + [anon_sym_decltype] = ACTIONS(5746), + }, + [2452] = { + [sym_identifier] = ACTIONS(5750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5752), + [anon_sym_RPAREN] = ACTIONS(5752), + [aux_sym_preproc_if_token2] = ACTIONS(5752), + [aux_sym_preproc_else_token1] = ACTIONS(5752), + [aux_sym_preproc_elif_token1] = ACTIONS(5750), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5752), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5752), + [anon_sym_LPAREN2] = ACTIONS(5752), + [anon_sym_DASH] = ACTIONS(5750), + [anon_sym_PLUS] = ACTIONS(5750), + [anon_sym_STAR] = ACTIONS(5750), + [anon_sym_SLASH] = ACTIONS(5750), + [anon_sym_PERCENT] = ACTIONS(5750), + [anon_sym_PIPE_PIPE] = ACTIONS(5752), + [anon_sym_AMP_AMP] = ACTIONS(5752), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_CARET] = ACTIONS(5750), + [anon_sym_AMP] = ACTIONS(5750), + [anon_sym_EQ_EQ] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5752), + [anon_sym_GT] = ACTIONS(5750), + [anon_sym_GT_EQ] = ACTIONS(5752), + [anon_sym_LT_EQ] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(5750), + [anon_sym_LT_LT] = ACTIONS(5750), + [anon_sym_GT_GT] = ACTIONS(5750), + [anon_sym_SEMI] = ACTIONS(5752), + [anon_sym___attribute__] = ACTIONS(5750), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_RBRACE] = ACTIONS(5752), + [anon_sym_LBRACK] = ACTIONS(5752), + [anon_sym_RBRACK] = ACTIONS(5752), + [anon_sym_EQ] = ACTIONS(5750), + [anon_sym_COLON] = ACTIONS(5752), + [anon_sym_QMARK] = ACTIONS(5752), + [anon_sym_STAR_EQ] = ACTIONS(5752), + [anon_sym_SLASH_EQ] = ACTIONS(5752), + [anon_sym_PERCENT_EQ] = ACTIONS(5752), + [anon_sym_PLUS_EQ] = ACTIONS(5752), + [anon_sym_DASH_EQ] = ACTIONS(5752), + [anon_sym_LT_LT_EQ] = ACTIONS(5752), + [anon_sym_GT_GT_EQ] = ACTIONS(5752), + [anon_sym_AMP_EQ] = ACTIONS(5752), + [anon_sym_CARET_EQ] = ACTIONS(5752), + [anon_sym_PIPE_EQ] = ACTIONS(5752), + [anon_sym_and_eq] = ACTIONS(5750), + [anon_sym_or_eq] = ACTIONS(5750), + [anon_sym_xor_eq] = ACTIONS(5750), + [anon_sym_LT_EQ_GT] = ACTIONS(5752), + [anon_sym_or] = ACTIONS(5750), + [anon_sym_and] = ACTIONS(5750), + [anon_sym_bitor] = ACTIONS(5750), + [anon_sym_xor] = ACTIONS(5750), + [anon_sym_bitand] = ACTIONS(5750), + [anon_sym_not_eq] = ACTIONS(5750), + [anon_sym_DASH_DASH] = ACTIONS(5752), + [anon_sym_PLUS_PLUS] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5750), + [anon_sym_DOT_STAR] = ACTIONS(5752), + [anon_sym_DASH_GT] = ACTIONS(5752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5750), + [anon_sym_decltype] = ACTIONS(5750), + }, + [2453] = { + [sym_identifier] = ACTIONS(5754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5756), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_RPAREN] = ACTIONS(5756), + [aux_sym_preproc_if_token2] = ACTIONS(5756), + [aux_sym_preproc_else_token1] = ACTIONS(5756), + [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5756), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5756), + [anon_sym_LPAREN2] = ACTIONS(5756), + [anon_sym_DASH] = ACTIONS(5754), + [anon_sym_PLUS] = ACTIONS(5754), + [anon_sym_STAR] = ACTIONS(5754), + [anon_sym_SLASH] = ACTIONS(5754), + [anon_sym_PERCENT] = ACTIONS(5754), + [anon_sym_PIPE_PIPE] = ACTIONS(5756), + [anon_sym_AMP_AMP] = ACTIONS(5756), + [anon_sym_PIPE] = ACTIONS(5754), + [anon_sym_CARET] = ACTIONS(5754), + [anon_sym_AMP] = ACTIONS(5754), + [anon_sym_EQ_EQ] = ACTIONS(5756), + [anon_sym_BANG_EQ] = ACTIONS(5756), + [anon_sym_GT] = ACTIONS(5754), + [anon_sym_GT_EQ] = ACTIONS(5756), + [anon_sym_LT_EQ] = ACTIONS(5754), + [anon_sym_LT] = ACTIONS(5754), + [anon_sym_LT_LT] = ACTIONS(5754), + [anon_sym_GT_GT] = ACTIONS(5754), + [anon_sym_SEMI] = ACTIONS(5756), + [anon_sym___attribute__] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(5756), + [anon_sym_LBRACK] = ACTIONS(5756), + [anon_sym_RBRACK] = ACTIONS(5756), + [anon_sym_EQ] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5756), + [anon_sym_QMARK] = ACTIONS(5756), + [anon_sym_STAR_EQ] = ACTIONS(5756), + [anon_sym_SLASH_EQ] = ACTIONS(5756), + [anon_sym_PERCENT_EQ] = ACTIONS(5756), + [anon_sym_PLUS_EQ] = ACTIONS(5756), + [anon_sym_DASH_EQ] = ACTIONS(5756), + [anon_sym_LT_LT_EQ] = ACTIONS(5756), + [anon_sym_GT_GT_EQ] = ACTIONS(5756), + [anon_sym_AMP_EQ] = ACTIONS(5756), + [anon_sym_CARET_EQ] = ACTIONS(5756), + [anon_sym_PIPE_EQ] = ACTIONS(5756), + [anon_sym_and_eq] = ACTIONS(5754), + [anon_sym_or_eq] = ACTIONS(5754), + [anon_sym_xor_eq] = ACTIONS(5754), + [anon_sym_LT_EQ_GT] = ACTIONS(5756), + [anon_sym_or] = ACTIONS(5754), + [anon_sym_and] = ACTIONS(5754), + [anon_sym_bitor] = ACTIONS(5754), + [anon_sym_xor] = ACTIONS(5754), + [anon_sym_bitand] = ACTIONS(5754), + [anon_sym_not_eq] = ACTIONS(5754), + [anon_sym_DASH_DASH] = ACTIONS(5756), + [anon_sym_PLUS_PLUS] = ACTIONS(5756), + [anon_sym_DOT] = ACTIONS(5754), + [anon_sym_DOT_STAR] = ACTIONS(5756), + [anon_sym_DASH_GT] = ACTIONS(5756), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5754), + [anon_sym_decltype] = ACTIONS(5754), + }, + [2454] = { + [sym_identifier] = ACTIONS(5803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [aux_sym_preproc_if_token2] = ACTIONS(5805), + [aux_sym_preproc_else_token1] = ACTIONS(5805), + [aux_sym_preproc_elif_token1] = ACTIONS(5803), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5805), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5805), + [anon_sym_LPAREN2] = ACTIONS(5805), + [anon_sym_DASH] = ACTIONS(5803), + [anon_sym_PLUS] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_SLASH] = ACTIONS(5803), + [anon_sym_PERCENT] = ACTIONS(5803), + [anon_sym_PIPE_PIPE] = ACTIONS(5805), + [anon_sym_AMP_AMP] = ACTIONS(5805), + [anon_sym_PIPE] = ACTIONS(5803), + [anon_sym_CARET] = ACTIONS(5803), + [anon_sym_AMP] = ACTIONS(5803), + [anon_sym_EQ_EQ] = ACTIONS(5805), + [anon_sym_BANG_EQ] = ACTIONS(5805), + [anon_sym_GT] = ACTIONS(5803), + [anon_sym_GT_EQ] = ACTIONS(5805), + [anon_sym_LT_EQ] = ACTIONS(5803), + [anon_sym_LT] = ACTIONS(5803), + [anon_sym_LT_LT] = ACTIONS(5803), + [anon_sym_GT_GT] = ACTIONS(5803), + [anon_sym_SEMI] = ACTIONS(5805), + [anon_sym___attribute__] = ACTIONS(5803), + [anon_sym_LBRACE] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(5803), + [anon_sym_COLON] = ACTIONS(5805), + [anon_sym_QMARK] = ACTIONS(5805), + [anon_sym_STAR_EQ] = ACTIONS(5805), + [anon_sym_SLASH_EQ] = ACTIONS(5805), + [anon_sym_PERCENT_EQ] = ACTIONS(5805), + [anon_sym_PLUS_EQ] = ACTIONS(5805), + [anon_sym_DASH_EQ] = ACTIONS(5805), + [anon_sym_LT_LT_EQ] = ACTIONS(5805), + [anon_sym_GT_GT_EQ] = ACTIONS(5805), + [anon_sym_AMP_EQ] = ACTIONS(5805), + [anon_sym_CARET_EQ] = ACTIONS(5805), + [anon_sym_PIPE_EQ] = ACTIONS(5805), + [anon_sym_and_eq] = ACTIONS(5803), + [anon_sym_or_eq] = ACTIONS(5803), + [anon_sym_xor_eq] = ACTIONS(5803), + [anon_sym_LT_EQ_GT] = ACTIONS(5805), + [anon_sym_or] = ACTIONS(5803), + [anon_sym_and] = ACTIONS(5803), + [anon_sym_bitor] = ACTIONS(5803), + [anon_sym_xor] = ACTIONS(5803), + [anon_sym_bitand] = ACTIONS(5803), + [anon_sym_not_eq] = ACTIONS(5803), + [anon_sym_DASH_DASH] = ACTIONS(5805), + [anon_sym_PLUS_PLUS] = ACTIONS(5805), + [anon_sym_DOT] = ACTIONS(5803), + [anon_sym_DOT_STAR] = ACTIONS(5805), + [anon_sym_DASH_GT] = ACTIONS(5805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5803), + [anon_sym_decltype] = ACTIONS(5803), + }, + [2455] = { + [sym_template_argument_list] = STATE(1974), + [sym_identifier] = ACTIONS(5397), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_TILDE] = ACTIONS(4161), + [anon_sym_STAR] = ACTIONS(4161), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_AMP] = ACTIONS(5397), + [anon_sym_LT] = ACTIONS(5951), + [anon_sym___extension__] = ACTIONS(5397), + [anon_sym_extern] = ACTIONS(5397), + [anon_sym___attribute__] = ACTIONS(5397), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4161), + [anon_sym___declspec] = ACTIONS(5397), + [anon_sym___based] = ACTIONS(5397), + [anon_sym___cdecl] = ACTIONS(5397), + [anon_sym___clrcall] = ACTIONS(5397), + [anon_sym___stdcall] = ACTIONS(5397), + [anon_sym___fastcall] = ACTIONS(5397), + [anon_sym___thiscall] = ACTIONS(5397), + [anon_sym___vectorcall] = ACTIONS(5397), + [anon_sym_signed] = ACTIONS(5397), + [anon_sym_unsigned] = ACTIONS(5397), + [anon_sym_long] = ACTIONS(5397), + [anon_sym_short] = ACTIONS(5397), + [anon_sym_LBRACK] = ACTIONS(5397), + [anon_sym_static] = ACTIONS(5397), + [anon_sym_register] = ACTIONS(5397), + [anon_sym_inline] = ACTIONS(5397), + [anon_sym___inline] = ACTIONS(5397), + [anon_sym___inline__] = ACTIONS(5397), + [anon_sym___forceinline] = ACTIONS(5397), + [anon_sym_thread_local] = ACTIONS(5397), + [anon_sym___thread] = ACTIONS(5397), + [anon_sym_const] = ACTIONS(5397), + [anon_sym_constexpr] = ACTIONS(5397), + [anon_sym_volatile] = ACTIONS(5397), + [anon_sym_restrict] = ACTIONS(5397), + [anon_sym___restrict__] = ACTIONS(5397), + [anon_sym__Atomic] = ACTIONS(5397), + [anon_sym__Noreturn] = ACTIONS(5397), + [anon_sym_noreturn] = ACTIONS(5397), + [anon_sym_mutable] = ACTIONS(5397), + [anon_sym_constinit] = ACTIONS(5397), + [anon_sym_consteval] = ACTIONS(5397), + [sym_primitive_type] = ACTIONS(5397), + [anon_sym_enum] = ACTIONS(5397), + [anon_sym_class] = ACTIONS(5397), + [anon_sym_struct] = ACTIONS(5397), + [anon_sym_union] = ACTIONS(5397), + [anon_sym_or] = ACTIONS(5397), + [anon_sym_and] = ACTIONS(5397), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5397), + [anon_sym_decltype] = ACTIONS(5397), + [anon_sym_virtual] = ACTIONS(5397), + [anon_sym_alignas] = ACTIONS(5397), + [anon_sym_explicit] = ACTIONS(5397), + [anon_sym_typename] = ACTIONS(5397), + [anon_sym_template] = ACTIONS(5397), + [anon_sym_operator] = ACTIONS(5397), + [anon_sym_friend] = ACTIONS(5397), + [anon_sym_using] = ACTIONS(5397), + [anon_sym_concept] = ACTIONS(5397), + }, + [2456] = { + [sym_identifier] = ACTIONS(5730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), + [anon_sym_COMMA] = ACTIONS(5732), + [anon_sym_RPAREN] = ACTIONS(5732), + [aux_sym_preproc_if_token2] = ACTIONS(5732), + [aux_sym_preproc_else_token1] = ACTIONS(5732), + [aux_sym_preproc_elif_token1] = ACTIONS(5730), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5732), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5732), + [anon_sym_LPAREN2] = ACTIONS(5732), + [anon_sym_DASH] = ACTIONS(5730), + [anon_sym_PLUS] = ACTIONS(5730), + [anon_sym_STAR] = ACTIONS(5730), + [anon_sym_SLASH] = ACTIONS(5730), + [anon_sym_PERCENT] = ACTIONS(5730), + [anon_sym_PIPE_PIPE] = ACTIONS(5732), + [anon_sym_AMP_AMP] = ACTIONS(5732), + [anon_sym_PIPE] = ACTIONS(5730), + [anon_sym_CARET] = ACTIONS(5730), + [anon_sym_AMP] = ACTIONS(5730), + [anon_sym_EQ_EQ] = ACTIONS(5732), + [anon_sym_BANG_EQ] = ACTIONS(5732), + [anon_sym_GT] = ACTIONS(5730), + [anon_sym_GT_EQ] = ACTIONS(5732), + [anon_sym_LT_EQ] = ACTIONS(5730), + [anon_sym_LT] = ACTIONS(5730), + [anon_sym_LT_LT] = ACTIONS(5730), + [anon_sym_GT_GT] = ACTIONS(5730), + [anon_sym_SEMI] = ACTIONS(5732), + [anon_sym___attribute__] = ACTIONS(5730), + [anon_sym_LBRACE] = ACTIONS(5732), + [anon_sym_RBRACE] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5732), + [anon_sym_RBRACK] = ACTIONS(5732), + [anon_sym_EQ] = ACTIONS(5730), + [anon_sym_COLON] = ACTIONS(5732), + [anon_sym_QMARK] = ACTIONS(5732), + [anon_sym_STAR_EQ] = ACTIONS(5732), + [anon_sym_SLASH_EQ] = ACTIONS(5732), + [anon_sym_PERCENT_EQ] = ACTIONS(5732), + [anon_sym_PLUS_EQ] = ACTIONS(5732), + [anon_sym_DASH_EQ] = ACTIONS(5732), + [anon_sym_LT_LT_EQ] = ACTIONS(5732), + [anon_sym_GT_GT_EQ] = ACTIONS(5732), + [anon_sym_AMP_EQ] = ACTIONS(5732), + [anon_sym_CARET_EQ] = ACTIONS(5732), + [anon_sym_PIPE_EQ] = ACTIONS(5732), + [anon_sym_and_eq] = ACTIONS(5730), + [anon_sym_or_eq] = ACTIONS(5730), + [anon_sym_xor_eq] = ACTIONS(5730), + [anon_sym_LT_EQ_GT] = ACTIONS(5732), + [anon_sym_or] = ACTIONS(5730), + [anon_sym_and] = ACTIONS(5730), + [anon_sym_bitor] = ACTIONS(5730), + [anon_sym_xor] = ACTIONS(5730), + [anon_sym_bitand] = ACTIONS(5730), + [anon_sym_not_eq] = ACTIONS(5730), + [anon_sym_DASH_DASH] = ACTIONS(5732), + [anon_sym_PLUS_PLUS] = ACTIONS(5732), + [anon_sym_DOT] = ACTIONS(5730), + [anon_sym_DOT_STAR] = ACTIONS(5732), + [anon_sym_DASH_GT] = ACTIONS(5732), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5730), + [anon_sym_decltype] = ACTIONS(5730), + }, + [2457] = { + [sym_string_literal] = STATE(2243), + [sym_raw_string_literal] = STATE(2243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4137), + [anon_sym_COMMA] = ACTIONS(4137), + [anon_sym_RPAREN] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_SLASH] = ACTIONS(4145), + [anon_sym_PERCENT] = ACTIONS(4145), + [anon_sym_PIPE_PIPE] = ACTIONS(4137), + [anon_sym_AMP_AMP] = ACTIONS(4137), + [anon_sym_PIPE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_EQ_EQ] = ACTIONS(4137), + [anon_sym_BANG_EQ] = ACTIONS(4137), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_GT_EQ] = ACTIONS(4137), + [anon_sym_LT_EQ] = ACTIONS(4145), + [anon_sym_LT] = ACTIONS(4145), + [anon_sym_LT_LT] = ACTIONS(4145), + [anon_sym_GT_GT] = ACTIONS(4145), + [anon_sym_LBRACK] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_STAR_EQ] = ACTIONS(4137), + [anon_sym_SLASH_EQ] = ACTIONS(4137), + [anon_sym_PERCENT_EQ] = ACTIONS(4137), + [anon_sym_PLUS_EQ] = ACTIONS(4137), + [anon_sym_DASH_EQ] = ACTIONS(4137), + [anon_sym_LT_LT_EQ] = ACTIONS(4137), + [anon_sym_GT_GT_EQ] = ACTIONS(4137), + [anon_sym_AMP_EQ] = ACTIONS(4137), + [anon_sym_CARET_EQ] = ACTIONS(4137), + [anon_sym_PIPE_EQ] = ACTIONS(4137), + [anon_sym_and_eq] = ACTIONS(4145), + [anon_sym_or_eq] = ACTIONS(4145), + [anon_sym_xor_eq] = ACTIONS(4145), + [anon_sym_LT_EQ_GT] = ACTIONS(4137), + [anon_sym_or] = ACTIONS(4145), + [anon_sym_and] = ACTIONS(4145), + [anon_sym_bitor] = ACTIONS(4145), + [anon_sym_xor] = ACTIONS(4145), + [anon_sym_bitand] = ACTIONS(4145), + [anon_sym_not_eq] = ACTIONS(4145), + [anon_sym_DASH_DASH] = ACTIONS(4137), + [anon_sym_PLUS_PLUS] = ACTIONS(4137), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_DOT_STAR] = ACTIONS(4137), + [anon_sym_DASH_GT] = ACTIONS(4145), + [anon_sym_L_DQUOTE] = ACTIONS(5060), + [anon_sym_u_DQUOTE] = ACTIONS(5060), + [anon_sym_U_DQUOTE] = ACTIONS(5060), + [anon_sym_u8_DQUOTE] = ACTIONS(5060), + [anon_sym_DQUOTE] = ACTIONS(5060), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5062), + [anon_sym_LR_DQUOTE] = ACTIONS(5062), + [anon_sym_uR_DQUOTE] = ACTIONS(5062), + [anon_sym_UR_DQUOTE] = ACTIONS(5062), + [anon_sym_u8R_DQUOTE] = ACTIONS(5062), + [anon_sym_DASH_GT_STAR] = ACTIONS(4137), + [sym_literal_suffix] = ACTIONS(5990), + }, + [2458] = { + [sym_argument_list] = STATE(2832), + [sym_initializer_list] = STATE(2832), + [sym_identifier] = ACTIONS(5992), + [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(5992), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(5992), + [anon_sym_PLUS] = ACTIONS(5992), + [anon_sym_STAR] = ACTIONS(5992), + [anon_sym_SLASH] = ACTIONS(5992), + [anon_sym_PERCENT] = ACTIONS(5992), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(5994), + [anon_sym_PIPE] = ACTIONS(5992), + [anon_sym_CARET] = ACTIONS(5992), + [anon_sym_AMP] = ACTIONS(5992), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5992), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5992), + [anon_sym_LT] = ACTIONS(5992), + [anon_sym_LT_LT] = ACTIONS(5992), + [anon_sym_GT_GT] = ACTIONS(5992), + [anon_sym_SEMI] = ACTIONS(5994), + [anon_sym___attribute__] = ACTIONS(5992), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(5994), + [anon_sym_RBRACK] = ACTIONS(5994), + [anon_sym_EQ] = ACTIONS(5992), + [anon_sym_COLON] = ACTIONS(5994), + [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(5992), + [anon_sym_or_eq] = ACTIONS(5992), + [anon_sym_xor_eq] = ACTIONS(5992), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5992), + [anon_sym_and] = ACTIONS(5992), + [anon_sym_bitor] = ACTIONS(5992), + [anon_sym_xor] = ACTIONS(5992), + [anon_sym_bitand] = ACTIONS(5992), + [anon_sym_not_eq] = ACTIONS(5992), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5992), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + }, + [2459] = { + [sym_attribute_specifier] = STATE(3089), + [sym_field_declaration_list] = STATE(2961), + [sym_virtual_specifier] = STATE(7568), + [sym_base_class_clause] = STATE(8185), + [sym_identifier] = ACTIONS(5315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5317), + [anon_sym_COMMA] = ACTIONS(5317), + [aux_sym_preproc_if_token2] = ACTIONS(5317), + [aux_sym_preproc_else_token1] = ACTIONS(5317), + [aux_sym_preproc_elif_token1] = ACTIONS(5317), + [anon_sym_LPAREN2] = ACTIONS(5317), + [anon_sym_DASH] = ACTIONS(5315), + [anon_sym_PLUS] = ACTIONS(5315), + [anon_sym_STAR] = ACTIONS(5315), + [anon_sym_SLASH] = ACTIONS(5315), + [anon_sym_PERCENT] = ACTIONS(5315), + [anon_sym_PIPE_PIPE] = ACTIONS(5317), + [anon_sym_AMP_AMP] = ACTIONS(5317), + [anon_sym_PIPE] = ACTIONS(5315), + [anon_sym_CARET] = ACTIONS(5315), + [anon_sym_AMP] = ACTIONS(5315), + [anon_sym_EQ_EQ] = ACTIONS(5317), + [anon_sym_BANG_EQ] = ACTIONS(5317), + [anon_sym_GT] = ACTIONS(5315), + [anon_sym_GT_EQ] = ACTIONS(5317), + [anon_sym_LT_EQ] = ACTIONS(5315), + [anon_sym_LT] = ACTIONS(5315), + [anon_sym_LT_LT] = ACTIONS(5315), + [anon_sym_GT_GT] = ACTIONS(5315), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym_LBRACE] = ACTIONS(5998), + [anon_sym_LBRACK] = ACTIONS(5317), + [anon_sym_EQ] = ACTIONS(5315), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_QMARK] = ACTIONS(5317), + [anon_sym_STAR_EQ] = ACTIONS(5317), + [anon_sym_SLASH_EQ] = ACTIONS(5317), + [anon_sym_PERCENT_EQ] = ACTIONS(5317), + [anon_sym_PLUS_EQ] = ACTIONS(5317), + [anon_sym_DASH_EQ] = ACTIONS(5317), + [anon_sym_LT_LT_EQ] = ACTIONS(5317), + [anon_sym_GT_GT_EQ] = ACTIONS(5317), + [anon_sym_AMP_EQ] = ACTIONS(5317), + [anon_sym_CARET_EQ] = ACTIONS(5317), + [anon_sym_PIPE_EQ] = ACTIONS(5317), + [anon_sym_and_eq] = ACTIONS(5315), + [anon_sym_or_eq] = ACTIONS(5315), + [anon_sym_xor_eq] = ACTIONS(5315), + [anon_sym_LT_EQ_GT] = ACTIONS(5317), + [anon_sym_or] = ACTIONS(5315), + [anon_sym_and] = ACTIONS(5315), + [anon_sym_bitor] = ACTIONS(5315), + [anon_sym_xor] = ACTIONS(5315), + [anon_sym_bitand] = ACTIONS(5315), + [anon_sym_not_eq] = ACTIONS(5315), + [anon_sym_DASH_DASH] = ACTIONS(5317), + [anon_sym_PLUS_PLUS] = ACTIONS(5317), + [anon_sym_DOT] = ACTIONS(5315), + [anon_sym_DOT_STAR] = ACTIONS(5317), + [anon_sym_DASH_GT] = ACTIONS(5317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5315), + [anon_sym_decltype] = ACTIONS(5315), + [anon_sym_final] = ACTIONS(5325), + [anon_sym_override] = ACTIONS(5325), + }, + [2460] = { + [sym_identifier] = ACTIONS(5614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(5616), + [anon_sym_RPAREN] = ACTIONS(5616), + [aux_sym_preproc_if_token2] = ACTIONS(5616), + [aux_sym_preproc_else_token1] = ACTIONS(5616), + [aux_sym_preproc_elif_token1] = ACTIONS(5614), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5616), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5616), + [anon_sym_LPAREN2] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5614), + [anon_sym_STAR] = ACTIONS(5614), + [anon_sym_SLASH] = ACTIONS(5614), + [anon_sym_PERCENT] = ACTIONS(5614), + [anon_sym_PIPE_PIPE] = ACTIONS(5616), + [anon_sym_AMP_AMP] = ACTIONS(5616), + [anon_sym_PIPE] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5614), + [anon_sym_AMP] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5616), + [anon_sym_BANG_EQ] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5614), + [anon_sym_GT_EQ] = ACTIONS(5616), + [anon_sym_LT_EQ] = ACTIONS(5614), + [anon_sym_LT] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5614), + [anon_sym_GT_GT] = ACTIONS(5614), + [anon_sym_SEMI] = ACTIONS(5616), + [anon_sym___attribute__] = ACTIONS(5614), + [anon_sym_LBRACE] = ACTIONS(5616), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_RBRACK] = ACTIONS(5616), + [anon_sym_EQ] = ACTIONS(5614), + [anon_sym_COLON] = ACTIONS(5616), + [anon_sym_QMARK] = ACTIONS(5616), + [anon_sym_STAR_EQ] = ACTIONS(5616), + [anon_sym_SLASH_EQ] = ACTIONS(5616), + [anon_sym_PERCENT_EQ] = ACTIONS(5616), + [anon_sym_PLUS_EQ] = ACTIONS(5616), + [anon_sym_DASH_EQ] = ACTIONS(5616), + [anon_sym_LT_LT_EQ] = ACTIONS(5616), + [anon_sym_GT_GT_EQ] = ACTIONS(5616), + [anon_sym_AMP_EQ] = ACTIONS(5616), + [anon_sym_CARET_EQ] = ACTIONS(5616), + [anon_sym_PIPE_EQ] = ACTIONS(5616), + [anon_sym_and_eq] = ACTIONS(5614), + [anon_sym_or_eq] = ACTIONS(5614), + [anon_sym_xor_eq] = ACTIONS(5614), + [anon_sym_LT_EQ_GT] = ACTIONS(5616), + [anon_sym_or] = ACTIONS(5614), + [anon_sym_and] = ACTIONS(5614), + [anon_sym_bitor] = ACTIONS(5614), + [anon_sym_xor] = ACTIONS(5614), + [anon_sym_bitand] = ACTIONS(5614), + [anon_sym_not_eq] = ACTIONS(5614), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_DOT_STAR] = ACTIONS(5616), + [anon_sym_DASH_GT] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5614), + [anon_sym_decltype] = ACTIONS(5614), + }, + [2461] = { + [sym_identifier] = ACTIONS(6000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6002), + [anon_sym_COMMA] = ACTIONS(6002), + [anon_sym_RPAREN] = ACTIONS(6002), + [aux_sym_preproc_if_token2] = ACTIONS(6002), + [aux_sym_preproc_else_token1] = ACTIONS(6002), + [aux_sym_preproc_elif_token1] = ACTIONS(6000), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6002), + [anon_sym_LPAREN2] = ACTIONS(6002), + [anon_sym_DASH] = ACTIONS(6000), + [anon_sym_PLUS] = ACTIONS(6000), + [anon_sym_STAR] = ACTIONS(6000), + [anon_sym_SLASH] = ACTIONS(6000), + [anon_sym_PERCENT] = ACTIONS(6000), + [anon_sym_PIPE_PIPE] = ACTIONS(6002), + [anon_sym_AMP_AMP] = ACTIONS(6002), + [anon_sym_PIPE] = ACTIONS(6000), + [anon_sym_CARET] = ACTIONS(6000), + [anon_sym_AMP] = ACTIONS(6000), + [anon_sym_EQ_EQ] = ACTIONS(6002), + [anon_sym_BANG_EQ] = ACTIONS(6002), + [anon_sym_GT] = ACTIONS(6000), + [anon_sym_GT_EQ] = ACTIONS(6002), + [anon_sym_LT_EQ] = ACTIONS(6000), + [anon_sym_LT] = ACTIONS(6000), + [anon_sym_LT_LT] = ACTIONS(6000), + [anon_sym_GT_GT] = ACTIONS(6000), + [anon_sym_SEMI] = ACTIONS(6002), + [anon_sym___attribute__] = ACTIONS(6000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6002), + [anon_sym_LBRACE] = ACTIONS(6002), + [anon_sym_RBRACE] = ACTIONS(6002), + [anon_sym_LBRACK] = ACTIONS(6000), + [anon_sym_RBRACK] = ACTIONS(6002), + [anon_sym_EQ] = ACTIONS(6000), + [anon_sym_COLON] = ACTIONS(6002), + [anon_sym_QMARK] = ACTIONS(6002), + [anon_sym_STAR_EQ] = ACTIONS(6002), + [anon_sym_SLASH_EQ] = ACTIONS(6002), + [anon_sym_PERCENT_EQ] = ACTIONS(6002), + [anon_sym_PLUS_EQ] = ACTIONS(6002), + [anon_sym_DASH_EQ] = ACTIONS(6002), + [anon_sym_LT_LT_EQ] = ACTIONS(6002), + [anon_sym_GT_GT_EQ] = ACTIONS(6002), + [anon_sym_AMP_EQ] = ACTIONS(6002), + [anon_sym_CARET_EQ] = ACTIONS(6002), + [anon_sym_PIPE_EQ] = ACTIONS(6002), + [anon_sym_and_eq] = ACTIONS(6000), + [anon_sym_or_eq] = ACTIONS(6000), + [anon_sym_xor_eq] = ACTIONS(6000), + [anon_sym_LT_EQ_GT] = ACTIONS(6002), + [anon_sym_or] = ACTIONS(6000), + [anon_sym_and] = ACTIONS(6000), + [anon_sym_bitor] = ACTIONS(6000), + [anon_sym_xor] = ACTIONS(6000), + [anon_sym_bitand] = ACTIONS(6000), + [anon_sym_not_eq] = ACTIONS(6000), + [anon_sym_DASH_DASH] = ACTIONS(6002), + [anon_sym_PLUS_PLUS] = ACTIONS(6002), + [anon_sym_DOT] = ACTIONS(6000), + [anon_sym_DOT_STAR] = ACTIONS(6002), + [anon_sym_DASH_GT] = ACTIONS(6002), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6000), + }, + [2462] = { + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_friend] = ACTIONS(2863), + [anon_sym_public] = ACTIONS(2863), + [anon_sym_private] = ACTIONS(2863), + [anon_sym_protected] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), + [anon_sym_catch] = ACTIONS(2863), + }, + [2463] = { + [sym_identifier] = ACTIONS(5622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5624), + [aux_sym_preproc_if_token2] = ACTIONS(5624), + [aux_sym_preproc_else_token1] = ACTIONS(5624), + [aux_sym_preproc_elif_token1] = ACTIONS(5622), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5622), + [anon_sym_PLUS] = ACTIONS(5622), + [anon_sym_STAR] = ACTIONS(5622), + [anon_sym_SLASH] = ACTIONS(5622), + [anon_sym_PERCENT] = ACTIONS(5622), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5622), + [anon_sym_CARET] = ACTIONS(5622), + [anon_sym_AMP] = ACTIONS(5622), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5622), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5622), + [anon_sym_LT] = ACTIONS(5622), + [anon_sym_LT_LT] = ACTIONS(5622), + [anon_sym_GT_GT] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym___attribute__] = ACTIONS(5622), + [anon_sym_LBRACE] = ACTIONS(5624), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_RBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5622), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(5624), + [anon_sym_SLASH_EQ] = ACTIONS(5624), + [anon_sym_PERCENT_EQ] = ACTIONS(5624), + [anon_sym_PLUS_EQ] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_EQ] = ACTIONS(5624), + [anon_sym_AMP_EQ] = ACTIONS(5624), + [anon_sym_CARET_EQ] = ACTIONS(5624), + [anon_sym_PIPE_EQ] = ACTIONS(5624), + [anon_sym_and_eq] = ACTIONS(5622), + [anon_sym_or_eq] = ACTIONS(5622), + [anon_sym_xor_eq] = ACTIONS(5622), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5622), + [anon_sym_and] = ACTIONS(5622), + [anon_sym_bitor] = ACTIONS(5622), + [anon_sym_xor] = ACTIONS(5622), + [anon_sym_bitand] = ACTIONS(5622), + [anon_sym_not_eq] = ACTIONS(5622), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5622), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5622), + [anon_sym_decltype] = ACTIONS(5622), + }, + [2464] = { + [sym_identifier] = ACTIONS(5618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5620), + [anon_sym_COMMA] = ACTIONS(5620), + [anon_sym_RPAREN] = ACTIONS(5620), + [aux_sym_preproc_if_token2] = ACTIONS(5620), + [aux_sym_preproc_else_token1] = ACTIONS(5620), + [aux_sym_preproc_elif_token1] = ACTIONS(5618), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5620), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5620), + [anon_sym_LPAREN2] = ACTIONS(5620), + [anon_sym_DASH] = ACTIONS(5618), + [anon_sym_PLUS] = ACTIONS(5618), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PIPE_PIPE] = ACTIONS(5620), + [anon_sym_AMP_AMP] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5618), + [anon_sym_CARET] = ACTIONS(5618), + [anon_sym_AMP] = ACTIONS(5618), + [anon_sym_EQ_EQ] = ACTIONS(5620), + [anon_sym_BANG_EQ] = ACTIONS(5620), + [anon_sym_GT] = ACTIONS(5618), + [anon_sym_GT_EQ] = ACTIONS(5620), + [anon_sym_LT_EQ] = ACTIONS(5618), + [anon_sym_LT] = ACTIONS(5618), + [anon_sym_LT_LT] = ACTIONS(5618), + [anon_sym_GT_GT] = ACTIONS(5618), + [anon_sym_SEMI] = ACTIONS(5620), + [anon_sym___attribute__] = ACTIONS(5618), + [anon_sym_LBRACE] = ACTIONS(5620), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_LBRACK] = ACTIONS(5620), + [anon_sym_RBRACK] = ACTIONS(5620), + [anon_sym_EQ] = ACTIONS(5618), + [anon_sym_COLON] = ACTIONS(5620), + [anon_sym_QMARK] = ACTIONS(5620), + [anon_sym_STAR_EQ] = ACTIONS(5620), + [anon_sym_SLASH_EQ] = ACTIONS(5620), + [anon_sym_PERCENT_EQ] = ACTIONS(5620), + [anon_sym_PLUS_EQ] = ACTIONS(5620), + [anon_sym_DASH_EQ] = ACTIONS(5620), + [anon_sym_LT_LT_EQ] = ACTIONS(5620), + [anon_sym_GT_GT_EQ] = ACTIONS(5620), + [anon_sym_AMP_EQ] = ACTIONS(5620), + [anon_sym_CARET_EQ] = ACTIONS(5620), + [anon_sym_PIPE_EQ] = ACTIONS(5620), + [anon_sym_and_eq] = ACTIONS(5618), + [anon_sym_or_eq] = ACTIONS(5618), + [anon_sym_xor_eq] = ACTIONS(5618), + [anon_sym_LT_EQ_GT] = ACTIONS(5620), + [anon_sym_or] = ACTIONS(5618), + [anon_sym_and] = ACTIONS(5618), + [anon_sym_bitor] = ACTIONS(5618), + [anon_sym_xor] = ACTIONS(5618), + [anon_sym_bitand] = ACTIONS(5618), + [anon_sym_not_eq] = ACTIONS(5618), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DOT] = ACTIONS(5618), + [anon_sym_DOT_STAR] = ACTIONS(5620), + [anon_sym_DASH_GT] = ACTIONS(5620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5618), + [anon_sym_decltype] = ACTIONS(5618), + }, + [2465] = { + [sym_identifier] = ACTIONS(5685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5687), + [anon_sym_COMMA] = ACTIONS(5687), + [anon_sym_RPAREN] = ACTIONS(5687), + [aux_sym_preproc_if_token2] = ACTIONS(5687), + [aux_sym_preproc_else_token1] = ACTIONS(5687), + [aux_sym_preproc_elif_token1] = ACTIONS(5685), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5687), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5687), + [anon_sym_LPAREN2] = ACTIONS(5687), + [anon_sym_DASH] = ACTIONS(5685), + [anon_sym_PLUS] = ACTIONS(5685), + [anon_sym_STAR] = ACTIONS(5685), + [anon_sym_SLASH] = ACTIONS(5685), + [anon_sym_PERCENT] = ACTIONS(5685), + [anon_sym_PIPE_PIPE] = ACTIONS(5687), + [anon_sym_AMP_AMP] = ACTIONS(5687), + [anon_sym_PIPE] = ACTIONS(5685), + [anon_sym_CARET] = ACTIONS(5685), + [anon_sym_AMP] = ACTIONS(5685), + [anon_sym_EQ_EQ] = ACTIONS(5687), + [anon_sym_BANG_EQ] = ACTIONS(5687), + [anon_sym_GT] = ACTIONS(5685), + [anon_sym_GT_EQ] = ACTIONS(5687), + [anon_sym_LT_EQ] = ACTIONS(5685), + [anon_sym_LT] = ACTIONS(5685), + [anon_sym_LT_LT] = ACTIONS(5685), + [anon_sym_GT_GT] = ACTIONS(5685), + [anon_sym_SEMI] = ACTIONS(5687), + [anon_sym___attribute__] = ACTIONS(5685), + [anon_sym_LBRACE] = ACTIONS(5687), + [anon_sym_RBRACE] = ACTIONS(5687), + [anon_sym_LBRACK] = ACTIONS(5687), + [anon_sym_RBRACK] = ACTIONS(5687), + [anon_sym_EQ] = ACTIONS(5685), + [anon_sym_COLON] = ACTIONS(5687), + [anon_sym_QMARK] = ACTIONS(5687), + [anon_sym_STAR_EQ] = ACTIONS(5687), + [anon_sym_SLASH_EQ] = ACTIONS(5687), + [anon_sym_PERCENT_EQ] = ACTIONS(5687), + [anon_sym_PLUS_EQ] = ACTIONS(5687), + [anon_sym_DASH_EQ] = ACTIONS(5687), + [anon_sym_LT_LT_EQ] = ACTIONS(5687), + [anon_sym_GT_GT_EQ] = ACTIONS(5687), + [anon_sym_AMP_EQ] = ACTIONS(5687), + [anon_sym_CARET_EQ] = ACTIONS(5687), + [anon_sym_PIPE_EQ] = ACTIONS(5687), + [anon_sym_and_eq] = ACTIONS(5685), + [anon_sym_or_eq] = ACTIONS(5685), + [anon_sym_xor_eq] = ACTIONS(5685), + [anon_sym_LT_EQ_GT] = ACTIONS(5687), + [anon_sym_or] = ACTIONS(5685), + [anon_sym_and] = ACTIONS(5685), + [anon_sym_bitor] = ACTIONS(5685), + [anon_sym_xor] = ACTIONS(5685), + [anon_sym_bitand] = ACTIONS(5685), + [anon_sym_not_eq] = ACTIONS(5685), + [anon_sym_DASH_DASH] = ACTIONS(5687), + [anon_sym_PLUS_PLUS] = ACTIONS(5687), + [anon_sym_DOT] = ACTIONS(5685), + [anon_sym_DOT_STAR] = ACTIONS(5687), + [anon_sym_DASH_GT] = ACTIONS(5687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5685), + [anon_sym_decltype] = ACTIONS(5685), + }, + [2466] = { + [sym_identifier] = ACTIONS(5614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5616), + [anon_sym_COMMA] = ACTIONS(5616), + [anon_sym_RPAREN] = ACTIONS(5616), + [aux_sym_preproc_if_token2] = ACTIONS(5616), + [aux_sym_preproc_else_token1] = ACTIONS(5616), + [aux_sym_preproc_elif_token1] = ACTIONS(5614), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5616), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5616), + [anon_sym_LPAREN2] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5614), + [anon_sym_STAR] = ACTIONS(5614), + [anon_sym_SLASH] = ACTIONS(5614), + [anon_sym_PERCENT] = ACTIONS(5614), + [anon_sym_PIPE_PIPE] = ACTIONS(5616), + [anon_sym_AMP_AMP] = ACTIONS(5616), + [anon_sym_PIPE] = ACTIONS(5614), + [anon_sym_CARET] = ACTIONS(5614), + [anon_sym_AMP] = ACTIONS(5614), + [anon_sym_EQ_EQ] = ACTIONS(5616), + [anon_sym_BANG_EQ] = ACTIONS(5616), + [anon_sym_GT] = ACTIONS(5614), + [anon_sym_GT_EQ] = ACTIONS(5616), + [anon_sym_LT_EQ] = ACTIONS(5614), + [anon_sym_LT] = ACTIONS(5614), + [anon_sym_LT_LT] = ACTIONS(5614), + [anon_sym_GT_GT] = ACTIONS(5614), + [anon_sym_SEMI] = ACTIONS(5616), + [anon_sym___attribute__] = ACTIONS(5614), + [anon_sym_LBRACE] = ACTIONS(5616), + [anon_sym_RBRACE] = ACTIONS(5616), + [anon_sym_LBRACK] = ACTIONS(5616), + [anon_sym_RBRACK] = ACTIONS(5616), + [anon_sym_EQ] = ACTIONS(5614), + [anon_sym_COLON] = ACTIONS(5616), + [anon_sym_QMARK] = ACTIONS(5616), + [anon_sym_STAR_EQ] = ACTIONS(5616), + [anon_sym_SLASH_EQ] = ACTIONS(5616), + [anon_sym_PERCENT_EQ] = ACTIONS(5616), + [anon_sym_PLUS_EQ] = ACTIONS(5616), + [anon_sym_DASH_EQ] = ACTIONS(5616), + [anon_sym_LT_LT_EQ] = ACTIONS(5616), + [anon_sym_GT_GT_EQ] = ACTIONS(5616), + [anon_sym_AMP_EQ] = ACTIONS(5616), + [anon_sym_CARET_EQ] = ACTIONS(5616), + [anon_sym_PIPE_EQ] = ACTIONS(5616), + [anon_sym_and_eq] = ACTIONS(5614), + [anon_sym_or_eq] = ACTIONS(5614), + [anon_sym_xor_eq] = ACTIONS(5614), + [anon_sym_LT_EQ_GT] = ACTIONS(5616), + [anon_sym_or] = ACTIONS(5614), + [anon_sym_and] = ACTIONS(5614), + [anon_sym_bitor] = ACTIONS(5614), + [anon_sym_xor] = ACTIONS(5614), + [anon_sym_bitand] = ACTIONS(5614), + [anon_sym_not_eq] = ACTIONS(5614), + [anon_sym_DASH_DASH] = ACTIONS(5616), + [anon_sym_PLUS_PLUS] = ACTIONS(5616), + [anon_sym_DOT] = ACTIONS(5614), + [anon_sym_DOT_STAR] = ACTIONS(5616), + [anon_sym_DASH_GT] = ACTIONS(5616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5614), + [anon_sym_decltype] = ACTIONS(5614), + }, + [2467] = { + [sym_identifier] = ACTIONS(5677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5679), + [anon_sym_COMMA] = ACTIONS(5679), + [anon_sym_RPAREN] = ACTIONS(5679), + [aux_sym_preproc_if_token2] = ACTIONS(5679), + [aux_sym_preproc_else_token1] = ACTIONS(5679), + [aux_sym_preproc_elif_token1] = ACTIONS(5677), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5679), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5679), + [anon_sym_LPAREN2] = ACTIONS(5679), + [anon_sym_DASH] = ACTIONS(5677), + [anon_sym_PLUS] = ACTIONS(5677), + [anon_sym_STAR] = ACTIONS(5677), + [anon_sym_SLASH] = ACTIONS(5677), + [anon_sym_PERCENT] = ACTIONS(5677), + [anon_sym_PIPE_PIPE] = ACTIONS(5679), + [anon_sym_AMP_AMP] = ACTIONS(5679), + [anon_sym_PIPE] = ACTIONS(5677), + [anon_sym_CARET] = ACTIONS(5677), + [anon_sym_AMP] = ACTIONS(5677), + [anon_sym_EQ_EQ] = ACTIONS(5679), + [anon_sym_BANG_EQ] = ACTIONS(5679), + [anon_sym_GT] = ACTIONS(5677), + [anon_sym_GT_EQ] = ACTIONS(5679), + [anon_sym_LT_EQ] = ACTIONS(5677), + [anon_sym_LT] = ACTIONS(5677), + [anon_sym_LT_LT] = ACTIONS(5677), + [anon_sym_GT_GT] = ACTIONS(5677), + [anon_sym_SEMI] = ACTIONS(5679), + [anon_sym___attribute__] = ACTIONS(5677), + [anon_sym_LBRACE] = ACTIONS(5679), + [anon_sym_RBRACE] = ACTIONS(5679), + [anon_sym_LBRACK] = ACTIONS(5679), + [anon_sym_RBRACK] = ACTIONS(5679), + [anon_sym_EQ] = ACTIONS(5677), + [anon_sym_COLON] = ACTIONS(5679), + [anon_sym_QMARK] = ACTIONS(5679), + [anon_sym_STAR_EQ] = ACTIONS(5679), + [anon_sym_SLASH_EQ] = ACTIONS(5679), + [anon_sym_PERCENT_EQ] = ACTIONS(5679), + [anon_sym_PLUS_EQ] = ACTIONS(5679), + [anon_sym_DASH_EQ] = ACTIONS(5679), + [anon_sym_LT_LT_EQ] = ACTIONS(5679), + [anon_sym_GT_GT_EQ] = ACTIONS(5679), + [anon_sym_AMP_EQ] = ACTIONS(5679), + [anon_sym_CARET_EQ] = ACTIONS(5679), + [anon_sym_PIPE_EQ] = ACTIONS(5679), + [anon_sym_and_eq] = ACTIONS(5677), + [anon_sym_or_eq] = ACTIONS(5677), + [anon_sym_xor_eq] = ACTIONS(5677), + [anon_sym_LT_EQ_GT] = ACTIONS(5679), + [anon_sym_or] = ACTIONS(5677), + [anon_sym_and] = ACTIONS(5677), + [anon_sym_bitor] = ACTIONS(5677), + [anon_sym_xor] = ACTIONS(5677), + [anon_sym_bitand] = ACTIONS(5677), + [anon_sym_not_eq] = ACTIONS(5677), + [anon_sym_DASH_DASH] = ACTIONS(5679), + [anon_sym_PLUS_PLUS] = ACTIONS(5679), + [anon_sym_DOT] = ACTIONS(5677), + [anon_sym_DOT_STAR] = ACTIONS(5679), + [anon_sym_DASH_GT] = ACTIONS(5679), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5677), + [anon_sym_decltype] = ACTIONS(5677), + }, + [2468] = { + [sym_identifier] = ACTIONS(6004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6006), + [anon_sym_COMMA] = ACTIONS(6006), + [anon_sym_RPAREN] = ACTIONS(6006), + [aux_sym_preproc_if_token2] = ACTIONS(6006), + [aux_sym_preproc_else_token1] = ACTIONS(6006), + [aux_sym_preproc_elif_token1] = ACTIONS(6004), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6006), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6006), + [anon_sym_LPAREN2] = ACTIONS(6006), + [anon_sym_DASH] = ACTIONS(6004), + [anon_sym_PLUS] = ACTIONS(6004), + [anon_sym_STAR] = ACTIONS(6004), + [anon_sym_SLASH] = ACTIONS(6004), + [anon_sym_PERCENT] = ACTIONS(6004), + [anon_sym_PIPE_PIPE] = ACTIONS(6006), + [anon_sym_AMP_AMP] = ACTIONS(6006), + [anon_sym_PIPE] = ACTIONS(6004), + [anon_sym_CARET] = ACTIONS(6004), + [anon_sym_AMP] = ACTIONS(6004), + [anon_sym_EQ_EQ] = ACTIONS(6006), + [anon_sym_BANG_EQ] = ACTIONS(6006), + [anon_sym_GT] = ACTIONS(6004), + [anon_sym_GT_EQ] = ACTIONS(6006), + [anon_sym_LT_EQ] = ACTIONS(6004), + [anon_sym_LT] = ACTIONS(6004), + [anon_sym_LT_LT] = ACTIONS(6004), + [anon_sym_GT_GT] = ACTIONS(6004), + [anon_sym_SEMI] = ACTIONS(6006), + [anon_sym___attribute__] = ACTIONS(6004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6006), + [anon_sym_LBRACE] = ACTIONS(6006), + [anon_sym_RBRACE] = ACTIONS(6006), + [anon_sym_LBRACK] = ACTIONS(6004), + [anon_sym_RBRACK] = ACTIONS(6006), + [anon_sym_EQ] = ACTIONS(6004), + [anon_sym_COLON] = ACTIONS(6006), + [anon_sym_QMARK] = ACTIONS(6006), + [anon_sym_STAR_EQ] = ACTIONS(6006), + [anon_sym_SLASH_EQ] = ACTIONS(6006), + [anon_sym_PERCENT_EQ] = ACTIONS(6006), + [anon_sym_PLUS_EQ] = ACTIONS(6006), + [anon_sym_DASH_EQ] = ACTIONS(6006), + [anon_sym_LT_LT_EQ] = ACTIONS(6006), + [anon_sym_GT_GT_EQ] = ACTIONS(6006), + [anon_sym_AMP_EQ] = ACTIONS(6006), + [anon_sym_CARET_EQ] = ACTIONS(6006), + [anon_sym_PIPE_EQ] = ACTIONS(6006), + [anon_sym_and_eq] = ACTIONS(6004), + [anon_sym_or_eq] = ACTIONS(6004), + [anon_sym_xor_eq] = ACTIONS(6004), + [anon_sym_LT_EQ_GT] = ACTIONS(6006), + [anon_sym_or] = ACTIONS(6004), + [anon_sym_and] = ACTIONS(6004), + [anon_sym_bitor] = ACTIONS(6004), + [anon_sym_xor] = ACTIONS(6004), + [anon_sym_bitand] = ACTIONS(6004), + [anon_sym_not_eq] = ACTIONS(6004), + [anon_sym_DASH_DASH] = ACTIONS(6006), + [anon_sym_PLUS_PLUS] = ACTIONS(6006), + [anon_sym_DOT] = ACTIONS(6004), + [anon_sym_DOT_STAR] = ACTIONS(6006), + [anon_sym_DASH_GT] = ACTIONS(6006), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6004), + }, + [2469] = { + [sym_identifier] = ACTIONS(5665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5667), + [anon_sym_COMMA] = ACTIONS(5667), + [anon_sym_RPAREN] = ACTIONS(5667), + [aux_sym_preproc_if_token2] = ACTIONS(5667), + [aux_sym_preproc_else_token1] = ACTIONS(5667), + [aux_sym_preproc_elif_token1] = ACTIONS(5665), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5667), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5667), + [anon_sym_LPAREN2] = ACTIONS(5667), + [anon_sym_DASH] = ACTIONS(5665), + [anon_sym_PLUS] = ACTIONS(5665), + [anon_sym_STAR] = ACTIONS(5665), + [anon_sym_SLASH] = ACTIONS(5665), + [anon_sym_PERCENT] = ACTIONS(5665), + [anon_sym_PIPE_PIPE] = ACTIONS(5667), + [anon_sym_AMP_AMP] = ACTIONS(5667), + [anon_sym_PIPE] = ACTIONS(5665), + [anon_sym_CARET] = ACTIONS(5665), + [anon_sym_AMP] = ACTIONS(5665), + [anon_sym_EQ_EQ] = ACTIONS(5667), + [anon_sym_BANG_EQ] = ACTIONS(5667), + [anon_sym_GT] = ACTIONS(5665), + [anon_sym_GT_EQ] = ACTIONS(5667), + [anon_sym_LT_EQ] = ACTIONS(5665), + [anon_sym_LT] = ACTIONS(5665), + [anon_sym_LT_LT] = ACTIONS(5665), + [anon_sym_GT_GT] = ACTIONS(5665), + [anon_sym_SEMI] = ACTIONS(5667), + [anon_sym___attribute__] = ACTIONS(5665), + [anon_sym_LBRACE] = ACTIONS(5667), + [anon_sym_RBRACE] = ACTIONS(5667), + [anon_sym_LBRACK] = ACTIONS(5667), + [anon_sym_RBRACK] = ACTIONS(5667), + [anon_sym_EQ] = ACTIONS(5665), + [anon_sym_COLON] = ACTIONS(5667), + [anon_sym_QMARK] = ACTIONS(5667), + [anon_sym_STAR_EQ] = ACTIONS(5667), + [anon_sym_SLASH_EQ] = ACTIONS(5667), + [anon_sym_PERCENT_EQ] = ACTIONS(5667), + [anon_sym_PLUS_EQ] = ACTIONS(5667), + [anon_sym_DASH_EQ] = ACTIONS(5667), + [anon_sym_LT_LT_EQ] = ACTIONS(5667), + [anon_sym_GT_GT_EQ] = ACTIONS(5667), + [anon_sym_AMP_EQ] = ACTIONS(5667), + [anon_sym_CARET_EQ] = ACTIONS(5667), + [anon_sym_PIPE_EQ] = ACTIONS(5667), + [anon_sym_and_eq] = ACTIONS(5665), + [anon_sym_or_eq] = ACTIONS(5665), + [anon_sym_xor_eq] = ACTIONS(5665), + [anon_sym_LT_EQ_GT] = ACTIONS(5667), + [anon_sym_or] = ACTIONS(5665), + [anon_sym_and] = ACTIONS(5665), + [anon_sym_bitor] = ACTIONS(5665), + [anon_sym_xor] = ACTIONS(5665), + [anon_sym_bitand] = ACTIONS(5665), + [anon_sym_not_eq] = ACTIONS(5665), + [anon_sym_DASH_DASH] = ACTIONS(5667), + [anon_sym_PLUS_PLUS] = ACTIONS(5667), + [anon_sym_DOT] = ACTIONS(5665), + [anon_sym_DOT_STAR] = ACTIONS(5667), + [anon_sym_DASH_GT] = ACTIONS(5667), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5665), + }, + [2470] = { + [sym_identifier] = ACTIONS(6008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6010), + [anon_sym_COMMA] = ACTIONS(6010), + [anon_sym_RPAREN] = ACTIONS(6010), + [aux_sym_preproc_if_token2] = ACTIONS(6010), + [aux_sym_preproc_else_token1] = ACTIONS(6010), + [aux_sym_preproc_elif_token1] = ACTIONS(6008), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6010), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6010), + [anon_sym_LPAREN2] = ACTIONS(6010), + [anon_sym_DASH] = ACTIONS(6008), + [anon_sym_PLUS] = ACTIONS(6008), + [anon_sym_STAR] = ACTIONS(6008), + [anon_sym_SLASH] = ACTIONS(6008), + [anon_sym_PERCENT] = ACTIONS(6008), + [anon_sym_PIPE_PIPE] = ACTIONS(6010), + [anon_sym_AMP_AMP] = ACTIONS(6010), + [anon_sym_PIPE] = ACTIONS(6008), + [anon_sym_CARET] = ACTIONS(6008), + [anon_sym_AMP] = ACTIONS(6008), + [anon_sym_EQ_EQ] = ACTIONS(6010), + [anon_sym_BANG_EQ] = ACTIONS(6010), + [anon_sym_GT] = ACTIONS(6008), + [anon_sym_GT_EQ] = ACTIONS(6010), + [anon_sym_LT_EQ] = ACTIONS(6008), + [anon_sym_LT] = ACTIONS(6008), + [anon_sym_LT_LT] = ACTIONS(6008), + [anon_sym_GT_GT] = ACTIONS(6008), + [anon_sym_SEMI] = ACTIONS(6010), + [anon_sym___attribute__] = ACTIONS(6008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6010), + [anon_sym_LBRACE] = ACTIONS(6010), + [anon_sym_RBRACE] = ACTIONS(6010), + [anon_sym_LBRACK] = ACTIONS(6008), + [anon_sym_RBRACK] = ACTIONS(6010), + [anon_sym_EQ] = ACTIONS(6008), + [anon_sym_COLON] = ACTIONS(6010), + [anon_sym_QMARK] = ACTIONS(6010), + [anon_sym_STAR_EQ] = ACTIONS(6010), + [anon_sym_SLASH_EQ] = ACTIONS(6010), + [anon_sym_PERCENT_EQ] = ACTIONS(6010), + [anon_sym_PLUS_EQ] = ACTIONS(6010), + [anon_sym_DASH_EQ] = ACTIONS(6010), + [anon_sym_LT_LT_EQ] = ACTIONS(6010), + [anon_sym_GT_GT_EQ] = ACTIONS(6010), + [anon_sym_AMP_EQ] = ACTIONS(6010), + [anon_sym_CARET_EQ] = ACTIONS(6010), + [anon_sym_PIPE_EQ] = ACTIONS(6010), + [anon_sym_and_eq] = ACTIONS(6008), + [anon_sym_or_eq] = ACTIONS(6008), + [anon_sym_xor_eq] = ACTIONS(6008), + [anon_sym_LT_EQ_GT] = ACTIONS(6010), + [anon_sym_or] = ACTIONS(6008), + [anon_sym_and] = ACTIONS(6008), + [anon_sym_bitor] = ACTIONS(6008), + [anon_sym_xor] = ACTIONS(6008), + [anon_sym_bitand] = ACTIONS(6008), + [anon_sym_not_eq] = ACTIONS(6008), + [anon_sym_DASH_DASH] = ACTIONS(6010), + [anon_sym_PLUS_PLUS] = ACTIONS(6010), + [anon_sym_DOT] = ACTIONS(6008), + [anon_sym_DOT_STAR] = ACTIONS(6010), + [anon_sym_DASH_GT] = ACTIONS(6010), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6008), + }, + [2471] = { + [sym_identifier] = ACTIONS(6012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6014), + [anon_sym_COMMA] = ACTIONS(6014), + [anon_sym_RPAREN] = ACTIONS(6014), + [aux_sym_preproc_if_token2] = ACTIONS(6014), + [aux_sym_preproc_else_token1] = ACTIONS(6014), + [aux_sym_preproc_elif_token1] = ACTIONS(6012), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6014), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6014), + [anon_sym_LPAREN2] = ACTIONS(6014), + [anon_sym_DASH] = ACTIONS(6012), + [anon_sym_PLUS] = ACTIONS(6012), + [anon_sym_STAR] = ACTIONS(6012), + [anon_sym_SLASH] = ACTIONS(6012), + [anon_sym_PERCENT] = ACTIONS(6012), + [anon_sym_PIPE_PIPE] = ACTIONS(6014), + [anon_sym_AMP_AMP] = ACTIONS(6014), + [anon_sym_PIPE] = ACTIONS(6012), + [anon_sym_CARET] = ACTIONS(6012), + [anon_sym_AMP] = ACTIONS(6012), + [anon_sym_EQ_EQ] = ACTIONS(6014), + [anon_sym_BANG_EQ] = ACTIONS(6014), + [anon_sym_GT] = ACTIONS(6012), + [anon_sym_GT_EQ] = ACTIONS(6014), + [anon_sym_LT_EQ] = ACTIONS(6012), + [anon_sym_LT] = ACTIONS(6012), + [anon_sym_LT_LT] = ACTIONS(6012), + [anon_sym_GT_GT] = ACTIONS(6012), + [anon_sym_SEMI] = ACTIONS(6014), + [anon_sym___attribute__] = ACTIONS(6012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6014), + [anon_sym_LBRACE] = ACTIONS(6014), + [anon_sym_RBRACE] = ACTIONS(6014), + [anon_sym_LBRACK] = ACTIONS(6012), + [anon_sym_RBRACK] = ACTIONS(6014), + [anon_sym_EQ] = ACTIONS(6012), + [anon_sym_COLON] = ACTIONS(6014), + [anon_sym_QMARK] = ACTIONS(6014), + [anon_sym_STAR_EQ] = ACTIONS(6014), + [anon_sym_SLASH_EQ] = ACTIONS(6014), + [anon_sym_PERCENT_EQ] = ACTIONS(6014), + [anon_sym_PLUS_EQ] = ACTIONS(6014), + [anon_sym_DASH_EQ] = ACTIONS(6014), + [anon_sym_LT_LT_EQ] = ACTIONS(6014), + [anon_sym_GT_GT_EQ] = ACTIONS(6014), + [anon_sym_AMP_EQ] = ACTIONS(6014), + [anon_sym_CARET_EQ] = ACTIONS(6014), + [anon_sym_PIPE_EQ] = ACTIONS(6014), + [anon_sym_and_eq] = ACTIONS(6012), + [anon_sym_or_eq] = ACTIONS(6012), + [anon_sym_xor_eq] = ACTIONS(6012), + [anon_sym_LT_EQ_GT] = ACTIONS(6014), + [anon_sym_or] = ACTIONS(6012), + [anon_sym_and] = ACTIONS(6012), + [anon_sym_bitor] = ACTIONS(6012), + [anon_sym_xor] = ACTIONS(6012), + [anon_sym_bitand] = ACTIONS(6012), + [anon_sym_not_eq] = ACTIONS(6012), + [anon_sym_DASH_DASH] = ACTIONS(6014), + [anon_sym_PLUS_PLUS] = ACTIONS(6014), + [anon_sym_DOT] = ACTIONS(6012), + [anon_sym_DOT_STAR] = ACTIONS(6014), + [anon_sym_DASH_GT] = ACTIONS(6014), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6012), + }, + [2472] = { + [sym_identifier] = ACTIONS(5643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5645), + [anon_sym_COMMA] = ACTIONS(5645), + [anon_sym_RPAREN] = ACTIONS(5645), + [aux_sym_preproc_if_token2] = ACTIONS(5645), + [aux_sym_preproc_else_token1] = ACTIONS(5645), + [aux_sym_preproc_elif_token1] = ACTIONS(5643), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5645), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5645), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_DASH] = ACTIONS(5643), + [anon_sym_PLUS] = ACTIONS(5643), + [anon_sym_STAR] = ACTIONS(5643), + [anon_sym_SLASH] = ACTIONS(5643), + [anon_sym_PERCENT] = ACTIONS(5643), + [anon_sym_PIPE_PIPE] = ACTIONS(5645), + [anon_sym_AMP_AMP] = ACTIONS(5645), + [anon_sym_PIPE] = ACTIONS(5643), + [anon_sym_CARET] = ACTIONS(5643), + [anon_sym_AMP] = ACTIONS(5643), + [anon_sym_EQ_EQ] = ACTIONS(5645), + [anon_sym_BANG_EQ] = ACTIONS(5645), + [anon_sym_GT] = ACTIONS(5643), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5643), + [anon_sym_LT] = ACTIONS(5643), + [anon_sym_LT_LT] = ACTIONS(5643), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_SEMI] = ACTIONS(5645), + [anon_sym___attribute__] = ACTIONS(5643), + [anon_sym_LBRACE] = ACTIONS(5645), + [anon_sym_RBRACE] = ACTIONS(5645), + [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_RBRACK] = ACTIONS(5645), + [anon_sym_EQ] = ACTIONS(5643), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5645), + [anon_sym_STAR_EQ] = ACTIONS(5645), + [anon_sym_SLASH_EQ] = ACTIONS(5645), + [anon_sym_PERCENT_EQ] = ACTIONS(5645), + [anon_sym_PLUS_EQ] = ACTIONS(5645), + [anon_sym_DASH_EQ] = ACTIONS(5645), + [anon_sym_LT_LT_EQ] = ACTIONS(5645), + [anon_sym_GT_GT_EQ] = ACTIONS(5645), + [anon_sym_AMP_EQ] = ACTIONS(5645), + [anon_sym_CARET_EQ] = ACTIONS(5645), + [anon_sym_PIPE_EQ] = ACTIONS(5645), + [anon_sym_and_eq] = ACTIONS(5643), + [anon_sym_or_eq] = ACTIONS(5643), + [anon_sym_xor_eq] = ACTIONS(5643), + [anon_sym_LT_EQ_GT] = ACTIONS(5645), + [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(5645), + [anon_sym_PLUS_PLUS] = ACTIONS(5645), + [anon_sym_DOT] = ACTIONS(5643), + [anon_sym_DOT_STAR] = ACTIONS(5645), + [anon_sym_DASH_GT] = ACTIONS(5645), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5643), + [anon_sym_decltype] = ACTIONS(5643), + }, + [2473] = { + [sym_identifier] = ACTIONS(5651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5653), + [anon_sym_COMMA] = ACTIONS(5653), + [anon_sym_RPAREN] = ACTIONS(5653), + [aux_sym_preproc_if_token2] = ACTIONS(5653), + [aux_sym_preproc_else_token1] = ACTIONS(5653), + [aux_sym_preproc_elif_token1] = ACTIONS(5651), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5653), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5653), + [anon_sym_LPAREN2] = ACTIONS(5653), + [anon_sym_DASH] = ACTIONS(5651), + [anon_sym_PLUS] = ACTIONS(5651), + [anon_sym_STAR] = ACTIONS(5651), + [anon_sym_SLASH] = ACTIONS(5651), + [anon_sym_PERCENT] = ACTIONS(5651), + [anon_sym_PIPE_PIPE] = ACTIONS(5653), + [anon_sym_AMP_AMP] = ACTIONS(5653), + [anon_sym_PIPE] = ACTIONS(5651), + [anon_sym_CARET] = ACTIONS(5651), + [anon_sym_AMP] = ACTIONS(5651), + [anon_sym_EQ_EQ] = ACTIONS(5653), + [anon_sym_BANG_EQ] = ACTIONS(5653), + [anon_sym_GT] = ACTIONS(5651), + [anon_sym_GT_EQ] = ACTIONS(5653), + [anon_sym_LT_EQ] = ACTIONS(5651), + [anon_sym_LT] = ACTIONS(5651), + [anon_sym_LT_LT] = ACTIONS(5651), + [anon_sym_GT_GT] = ACTIONS(5651), + [anon_sym_SEMI] = ACTIONS(5653), + [anon_sym___attribute__] = ACTIONS(5651), + [anon_sym_LBRACE] = ACTIONS(5653), + [anon_sym_RBRACE] = ACTIONS(5653), + [anon_sym_LBRACK] = ACTIONS(5653), + [anon_sym_RBRACK] = ACTIONS(5653), + [anon_sym_EQ] = ACTIONS(5651), + [anon_sym_COLON] = ACTIONS(5653), + [anon_sym_QMARK] = ACTIONS(5653), + [anon_sym_STAR_EQ] = ACTIONS(5653), + [anon_sym_SLASH_EQ] = ACTIONS(5653), + [anon_sym_PERCENT_EQ] = ACTIONS(5653), + [anon_sym_PLUS_EQ] = ACTIONS(5653), + [anon_sym_DASH_EQ] = ACTIONS(5653), + [anon_sym_LT_LT_EQ] = ACTIONS(5653), + [anon_sym_GT_GT_EQ] = ACTIONS(5653), + [anon_sym_AMP_EQ] = ACTIONS(5653), + [anon_sym_CARET_EQ] = ACTIONS(5653), + [anon_sym_PIPE_EQ] = ACTIONS(5653), + [anon_sym_and_eq] = ACTIONS(5651), + [anon_sym_or_eq] = ACTIONS(5651), + [anon_sym_xor_eq] = ACTIONS(5651), + [anon_sym_LT_EQ_GT] = ACTIONS(5653), + [anon_sym_or] = ACTIONS(5651), + [anon_sym_and] = ACTIONS(5651), + [anon_sym_bitor] = ACTIONS(5651), + [anon_sym_xor] = ACTIONS(5651), + [anon_sym_bitand] = ACTIONS(5651), + [anon_sym_not_eq] = ACTIONS(5651), + [anon_sym_DASH_DASH] = ACTIONS(5653), + [anon_sym_PLUS_PLUS] = ACTIONS(5653), + [anon_sym_DOT] = ACTIONS(5651), + [anon_sym_DOT_STAR] = ACTIONS(5653), + [anon_sym_DASH_GT] = ACTIONS(5653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5651), + [anon_sym_decltype] = ACTIONS(5651), + }, + [2474] = { + [sym_identifier] = ACTIONS(5647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5649), + [anon_sym_COMMA] = ACTIONS(5649), + [anon_sym_RPAREN] = ACTIONS(5649), + [aux_sym_preproc_if_token2] = ACTIONS(5649), + [aux_sym_preproc_else_token1] = ACTIONS(5649), + [aux_sym_preproc_elif_token1] = ACTIONS(5647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5649), + [anon_sym_LPAREN2] = ACTIONS(5649), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5649), + [anon_sym_AMP_AMP] = ACTIONS(5649), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5649), + [anon_sym_BANG_EQ] = ACTIONS(5649), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5649), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(5647), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym_SEMI] = ACTIONS(5649), + [anon_sym___attribute__] = ACTIONS(5647), + [anon_sym_LBRACE] = ACTIONS(5649), + [anon_sym_RBRACE] = ACTIONS(5649), + [anon_sym_LBRACK] = ACTIONS(5649), + [anon_sym_RBRACK] = ACTIONS(5649), + [anon_sym_EQ] = ACTIONS(5647), + [anon_sym_COLON] = ACTIONS(5649), + [anon_sym_QMARK] = ACTIONS(5649), + [anon_sym_STAR_EQ] = ACTIONS(5649), + [anon_sym_SLASH_EQ] = ACTIONS(5649), + [anon_sym_PERCENT_EQ] = ACTIONS(5649), + [anon_sym_PLUS_EQ] = ACTIONS(5649), + [anon_sym_DASH_EQ] = ACTIONS(5649), + [anon_sym_LT_LT_EQ] = ACTIONS(5649), + [anon_sym_GT_GT_EQ] = ACTIONS(5649), + [anon_sym_AMP_EQ] = ACTIONS(5649), + [anon_sym_CARET_EQ] = ACTIONS(5649), + [anon_sym_PIPE_EQ] = ACTIONS(5649), + [anon_sym_and_eq] = ACTIONS(5647), + [anon_sym_or_eq] = ACTIONS(5647), + [anon_sym_xor_eq] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5649), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5647), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5647), + [anon_sym_not_eq] = ACTIONS(5647), + [anon_sym_DASH_DASH] = ACTIONS(5649), + [anon_sym_PLUS_PLUS] = ACTIONS(5649), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5649), + [anon_sym_DASH_GT] = ACTIONS(5649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5647), + [anon_sym_decltype] = ACTIONS(5647), + }, + [2475] = { + [sym_attribute_declaration] = STATE(2433), + [aux_sym_attributed_declarator_repeat1] = STATE(2433), + [sym_identifier] = ACTIONS(6016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6018), + [anon_sym_COMMA] = ACTIONS(6018), + [anon_sym_RPAREN] = ACTIONS(6018), + [aux_sym_preproc_if_token2] = ACTIONS(6018), + [aux_sym_preproc_else_token1] = ACTIONS(6018), + [aux_sym_preproc_elif_token1] = ACTIONS(6016), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6018), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6018), + [anon_sym_LPAREN2] = ACTIONS(6018), + [anon_sym_DASH] = ACTIONS(6016), + [anon_sym_PLUS] = ACTIONS(6016), + [anon_sym_STAR] = ACTIONS(6016), + [anon_sym_SLASH] = ACTIONS(6016), + [anon_sym_PERCENT] = ACTIONS(6016), + [anon_sym_PIPE_PIPE] = ACTIONS(6018), + [anon_sym_AMP_AMP] = ACTIONS(6018), + [anon_sym_PIPE] = ACTIONS(6016), + [anon_sym_CARET] = ACTIONS(6016), + [anon_sym_AMP] = ACTIONS(6016), + [anon_sym_EQ_EQ] = ACTIONS(6018), + [anon_sym_BANG_EQ] = ACTIONS(6018), + [anon_sym_GT] = ACTIONS(6016), + [anon_sym_GT_EQ] = ACTIONS(6018), + [anon_sym_LT_EQ] = ACTIONS(6016), + [anon_sym_LT] = ACTIONS(6016), + [anon_sym_LT_LT] = ACTIONS(6016), + [anon_sym_GT_GT] = ACTIONS(6016), + [anon_sym_SEMI] = ACTIONS(6018), + [anon_sym___attribute__] = ACTIONS(6016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5831), + [anon_sym_RBRACE] = ACTIONS(6018), + [anon_sym_LBRACK] = ACTIONS(6016), + [anon_sym_RBRACK] = ACTIONS(6018), + [anon_sym_EQ] = ACTIONS(6016), + [anon_sym_COLON] = ACTIONS(6018), + [anon_sym_QMARK] = ACTIONS(6018), + [anon_sym_STAR_EQ] = ACTIONS(6018), + [anon_sym_SLASH_EQ] = ACTIONS(6018), + [anon_sym_PERCENT_EQ] = ACTIONS(6018), + [anon_sym_PLUS_EQ] = ACTIONS(6018), + [anon_sym_DASH_EQ] = ACTIONS(6018), + [anon_sym_LT_LT_EQ] = ACTIONS(6018), + [anon_sym_GT_GT_EQ] = ACTIONS(6018), + [anon_sym_AMP_EQ] = ACTIONS(6018), + [anon_sym_CARET_EQ] = ACTIONS(6018), + [anon_sym_PIPE_EQ] = ACTIONS(6018), + [anon_sym_and_eq] = ACTIONS(6016), + [anon_sym_or_eq] = ACTIONS(6016), + [anon_sym_xor_eq] = ACTIONS(6016), + [anon_sym_LT_EQ_GT] = ACTIONS(6018), + [anon_sym_or] = ACTIONS(6016), + [anon_sym_and] = ACTIONS(6016), + [anon_sym_bitor] = ACTIONS(6016), + [anon_sym_xor] = ACTIONS(6016), + [anon_sym_bitand] = ACTIONS(6016), + [anon_sym_not_eq] = ACTIONS(6016), + [anon_sym_DASH_DASH] = ACTIONS(6018), + [anon_sym_PLUS_PLUS] = ACTIONS(6018), + [anon_sym_DOT] = ACTIONS(6016), + [anon_sym_DOT_STAR] = ACTIONS(6018), + [anon_sym_DASH_GT] = ACTIONS(6018), + [sym_comment] = ACTIONS(3), + }, + [2476] = { + [sym_identifier] = ACTIONS(5643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5645), + [anon_sym_COMMA] = ACTIONS(5645), + [anon_sym_RPAREN] = ACTIONS(5645), + [aux_sym_preproc_if_token2] = ACTIONS(5645), + [aux_sym_preproc_else_token1] = ACTIONS(5645), + [aux_sym_preproc_elif_token1] = ACTIONS(5643), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5645), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5645), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_DASH] = ACTIONS(5643), + [anon_sym_PLUS] = ACTIONS(5643), + [anon_sym_STAR] = ACTIONS(5643), + [anon_sym_SLASH] = ACTIONS(5643), + [anon_sym_PERCENT] = ACTIONS(5643), + [anon_sym_PIPE_PIPE] = ACTIONS(5645), + [anon_sym_AMP_AMP] = ACTIONS(5645), + [anon_sym_PIPE] = ACTIONS(5643), + [anon_sym_CARET] = ACTIONS(5643), + [anon_sym_AMP] = ACTIONS(5643), + [anon_sym_EQ_EQ] = ACTIONS(5645), + [anon_sym_BANG_EQ] = ACTIONS(5645), + [anon_sym_GT] = ACTIONS(5643), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5643), + [anon_sym_LT] = ACTIONS(5643), + [anon_sym_LT_LT] = ACTIONS(5643), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_SEMI] = ACTIONS(5645), + [anon_sym___attribute__] = ACTIONS(5643), + [anon_sym_LBRACE] = ACTIONS(5645), + [anon_sym_RBRACE] = ACTIONS(5645), + [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_RBRACK] = ACTIONS(5645), + [anon_sym_EQ] = ACTIONS(5643), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5645), + [anon_sym_STAR_EQ] = ACTIONS(5645), + [anon_sym_SLASH_EQ] = ACTIONS(5645), + [anon_sym_PERCENT_EQ] = ACTIONS(5645), + [anon_sym_PLUS_EQ] = ACTIONS(5645), + [anon_sym_DASH_EQ] = ACTIONS(5645), + [anon_sym_LT_LT_EQ] = ACTIONS(5645), + [anon_sym_GT_GT_EQ] = ACTIONS(5645), + [anon_sym_AMP_EQ] = ACTIONS(5645), + [anon_sym_CARET_EQ] = ACTIONS(5645), + [anon_sym_PIPE_EQ] = ACTIONS(5645), + [anon_sym_and_eq] = ACTIONS(5643), + [anon_sym_or_eq] = ACTIONS(5643), + [anon_sym_xor_eq] = ACTIONS(5643), + [anon_sym_LT_EQ_GT] = ACTIONS(5645), + [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(5645), + [anon_sym_PLUS_PLUS] = ACTIONS(5645), + [anon_sym_DOT] = ACTIONS(5643), + [anon_sym_DOT_STAR] = ACTIONS(5645), + [anon_sym_DASH_GT] = ACTIONS(5645), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5643), + [anon_sym_decltype] = ACTIONS(5643), + }, + [2477] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6020), + [anon_sym_COMMA] = ACTIONS(6020), + [anon_sym_RPAREN] = ACTIONS(6020), + [anon_sym_LPAREN2] = ACTIONS(6020), + [anon_sym_DASH] = ACTIONS(6022), + [anon_sym_PLUS] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(6020), + [anon_sym_SLASH] = ACTIONS(6022), + [anon_sym_PERCENT] = ACTIONS(6020), + [anon_sym_PIPE_PIPE] = ACTIONS(6020), + [anon_sym_AMP_AMP] = ACTIONS(6020), + [anon_sym_PIPE] = ACTIONS(6022), + [anon_sym_CARET] = ACTIONS(6020), + [anon_sym_AMP] = ACTIONS(6022), + [anon_sym_EQ_EQ] = ACTIONS(6020), + [anon_sym_BANG_EQ] = ACTIONS(6020), + [anon_sym_GT] = ACTIONS(6022), + [anon_sym_GT_EQ] = ACTIONS(6020), + [anon_sym_LT_EQ] = ACTIONS(6022), + [anon_sym_LT] = ACTIONS(6022), + [anon_sym_LT_LT] = ACTIONS(6020), + [anon_sym_GT_GT] = ACTIONS(6020), + [anon_sym_SEMI] = ACTIONS(6020), + [anon_sym___extension__] = ACTIONS(6020), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym_LBRACE] = ACTIONS(6020), + [anon_sym_RBRACE] = ACTIONS(6020), + [anon_sym_signed] = ACTIONS(5966), + [anon_sym_unsigned] = ACTIONS(5966), + [anon_sym_long] = ACTIONS(5966), + [anon_sym_short] = ACTIONS(5966), + [anon_sym_LBRACK] = ACTIONS(6020), + [anon_sym_RBRACK] = ACTIONS(6020), + [anon_sym_const] = ACTIONS(6022), + [anon_sym_constexpr] = ACTIONS(6020), + [anon_sym_volatile] = ACTIONS(6020), + [anon_sym_restrict] = ACTIONS(6020), + [anon_sym___restrict__] = ACTIONS(6020), + [anon_sym__Atomic] = ACTIONS(6020), + [anon_sym__Noreturn] = ACTIONS(6020), + [anon_sym_noreturn] = ACTIONS(6020), + [anon_sym_mutable] = ACTIONS(6020), + [anon_sym_constinit] = ACTIONS(6020), + [anon_sym_consteval] = ACTIONS(6020), + [anon_sym_COLON] = ACTIONS(6020), + [anon_sym_QMARK] = ACTIONS(6020), + [anon_sym_LT_EQ_GT] = ACTIONS(6020), + [anon_sym_or] = ACTIONS(6020), + [anon_sym_and] = ACTIONS(6020), + [anon_sym_bitor] = ACTIONS(6020), + [anon_sym_xor] = ACTIONS(6020), + [anon_sym_bitand] = ACTIONS(6020), + [anon_sym_not_eq] = ACTIONS(6020), + [anon_sym_DASH_DASH] = ACTIONS(6020), + [anon_sym_PLUS_PLUS] = ACTIONS(6020), + [anon_sym_DOT] = ACTIONS(6022), + [anon_sym_DOT_STAR] = ACTIONS(6020), + [anon_sym_DASH_GT] = ACTIONS(6020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6020), + [anon_sym_decltype] = ACTIONS(6020), + [anon_sym_final] = ACTIONS(6020), + [anon_sym_override] = ACTIONS(6020), + [anon_sym_requires] = ACTIONS(6020), + }, + [2478] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2449), + [sym_identifier] = ACTIONS(5762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5764), + [anon_sym_COMMA] = ACTIONS(5764), + [aux_sym_preproc_if_token2] = ACTIONS(5764), + [aux_sym_preproc_else_token1] = ACTIONS(5764), + [aux_sym_preproc_elif_token1] = ACTIONS(5762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5764), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5764), + [anon_sym_LPAREN2] = ACTIONS(5764), + [anon_sym_DASH] = ACTIONS(5762), + [anon_sym_PLUS] = ACTIONS(5762), + [anon_sym_STAR] = ACTIONS(5762), + [anon_sym_SLASH] = ACTIONS(5762), + [anon_sym_PERCENT] = ACTIONS(5762), + [anon_sym_PIPE_PIPE] = ACTIONS(5764), + [anon_sym_AMP_AMP] = ACTIONS(5764), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_CARET] = ACTIONS(5762), + [anon_sym_AMP] = ACTIONS(5762), + [anon_sym_EQ_EQ] = ACTIONS(5764), + [anon_sym_BANG_EQ] = ACTIONS(5764), + [anon_sym_GT] = ACTIONS(5762), + [anon_sym_GT_EQ] = ACTIONS(5764), + [anon_sym_LT_EQ] = ACTIONS(5762), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_LT_LT] = ACTIONS(5762), + [anon_sym_GT_GT] = ACTIONS(5762), + [anon_sym___attribute__] = ACTIONS(5762), + [anon_sym_LBRACE] = ACTIONS(5764), + [anon_sym_signed] = ACTIONS(6024), + [anon_sym_unsigned] = ACTIONS(6024), + [anon_sym_long] = ACTIONS(6024), + [anon_sym_short] = ACTIONS(6024), + [anon_sym_LBRACK] = ACTIONS(5764), + [anon_sym_EQ] = ACTIONS(5762), + [anon_sym_QMARK] = ACTIONS(5764), + [anon_sym_STAR_EQ] = ACTIONS(5764), + [anon_sym_SLASH_EQ] = ACTIONS(5764), + [anon_sym_PERCENT_EQ] = ACTIONS(5764), + [anon_sym_PLUS_EQ] = ACTIONS(5764), + [anon_sym_DASH_EQ] = ACTIONS(5764), + [anon_sym_LT_LT_EQ] = ACTIONS(5764), + [anon_sym_GT_GT_EQ] = ACTIONS(5764), + [anon_sym_AMP_EQ] = ACTIONS(5764), + [anon_sym_CARET_EQ] = ACTIONS(5764), + [anon_sym_PIPE_EQ] = ACTIONS(5764), + [anon_sym_and_eq] = ACTIONS(5762), + [anon_sym_or_eq] = ACTIONS(5762), + [anon_sym_xor_eq] = ACTIONS(5762), + [anon_sym_LT_EQ_GT] = ACTIONS(5764), + [anon_sym_or] = ACTIONS(5762), + [anon_sym_and] = ACTIONS(5762), + [anon_sym_bitor] = ACTIONS(5762), + [anon_sym_xor] = ACTIONS(5762), + [anon_sym_bitand] = ACTIONS(5762), + [anon_sym_not_eq] = ACTIONS(5762), + [anon_sym_DASH_DASH] = ACTIONS(5764), + [anon_sym_PLUS_PLUS] = ACTIONS(5764), + [anon_sym_DOT] = ACTIONS(5762), + [anon_sym_DOT_STAR] = ACTIONS(5764), + [anon_sym_DASH_GT] = ACTIONS(5764), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5762), + [anon_sym_decltype] = ACTIONS(5762), + }, + [2479] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2485), + [sym_identifier] = ACTIONS(6022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6020), + [anon_sym_COMMA] = ACTIONS(6020), + [aux_sym_preproc_if_token2] = ACTIONS(6020), + [aux_sym_preproc_else_token1] = ACTIONS(6020), + [aux_sym_preproc_elif_token1] = ACTIONS(6022), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6020), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6020), + [anon_sym_LPAREN2] = ACTIONS(6020), + [anon_sym_DASH] = ACTIONS(6022), + [anon_sym_PLUS] = ACTIONS(6022), + [anon_sym_STAR] = ACTIONS(6022), + [anon_sym_SLASH] = ACTIONS(6022), + [anon_sym_PERCENT] = ACTIONS(6022), + [anon_sym_PIPE_PIPE] = ACTIONS(6020), + [anon_sym_AMP_AMP] = ACTIONS(6020), + [anon_sym_PIPE] = ACTIONS(6022), + [anon_sym_CARET] = ACTIONS(6022), + [anon_sym_AMP] = ACTIONS(6022), + [anon_sym_EQ_EQ] = ACTIONS(6020), + [anon_sym_BANG_EQ] = ACTIONS(6020), + [anon_sym_GT] = ACTIONS(6022), + [anon_sym_GT_EQ] = ACTIONS(6020), + [anon_sym_LT_EQ] = ACTIONS(6022), + [anon_sym_LT] = ACTIONS(6022), + [anon_sym_LT_LT] = ACTIONS(6022), + [anon_sym_GT_GT] = ACTIONS(6022), + [anon_sym___attribute__] = ACTIONS(6022), + [anon_sym_LBRACE] = ACTIONS(6020), + [anon_sym_signed] = ACTIONS(5984), + [anon_sym_unsigned] = ACTIONS(5984), + [anon_sym_long] = ACTIONS(5984), + [anon_sym_short] = ACTIONS(5984), + [anon_sym_LBRACK] = ACTIONS(6020), + [anon_sym_EQ] = ACTIONS(6022), + [anon_sym_QMARK] = ACTIONS(6020), + [anon_sym_STAR_EQ] = ACTIONS(6020), + [anon_sym_SLASH_EQ] = ACTIONS(6020), + [anon_sym_PERCENT_EQ] = ACTIONS(6020), + [anon_sym_PLUS_EQ] = ACTIONS(6020), + [anon_sym_DASH_EQ] = ACTIONS(6020), + [anon_sym_LT_LT_EQ] = ACTIONS(6020), + [anon_sym_GT_GT_EQ] = ACTIONS(6020), + [anon_sym_AMP_EQ] = ACTIONS(6020), + [anon_sym_CARET_EQ] = ACTIONS(6020), + [anon_sym_PIPE_EQ] = ACTIONS(6020), + [anon_sym_and_eq] = ACTIONS(6022), + [anon_sym_or_eq] = ACTIONS(6022), + [anon_sym_xor_eq] = ACTIONS(6022), + [anon_sym_LT_EQ_GT] = ACTIONS(6020), + [anon_sym_or] = ACTIONS(6022), + [anon_sym_and] = ACTIONS(6022), + [anon_sym_bitor] = ACTIONS(6022), + [anon_sym_xor] = ACTIONS(6022), + [anon_sym_bitand] = ACTIONS(6022), + [anon_sym_not_eq] = ACTIONS(6022), + [anon_sym_DASH_DASH] = ACTIONS(6020), + [anon_sym_PLUS_PLUS] = ACTIONS(6020), + [anon_sym_DOT] = ACTIONS(6022), + [anon_sym_DOT_STAR] = ACTIONS(6020), + [anon_sym_DASH_GT] = ACTIONS(6020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6022), + [anon_sym_decltype] = ACTIONS(6022), + }, + [2480] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6026), + [anon_sym_COMMA] = ACTIONS(6026), + [anon_sym_RPAREN] = ACTIONS(6026), + [anon_sym_LPAREN2] = ACTIONS(6026), + [anon_sym_DASH] = ACTIONS(6028), + [anon_sym_PLUS] = ACTIONS(6028), + [anon_sym_STAR] = ACTIONS(6026), + [anon_sym_SLASH] = ACTIONS(6028), + [anon_sym_PERCENT] = ACTIONS(6026), + [anon_sym_PIPE_PIPE] = ACTIONS(6026), + [anon_sym_AMP_AMP] = ACTIONS(6026), + [anon_sym_PIPE] = ACTIONS(6028), + [anon_sym_CARET] = ACTIONS(6026), + [anon_sym_AMP] = ACTIONS(6028), + [anon_sym_EQ_EQ] = ACTIONS(6026), + [anon_sym_BANG_EQ] = ACTIONS(6026), + [anon_sym_GT] = ACTIONS(6028), + [anon_sym_GT_EQ] = ACTIONS(6026), + [anon_sym_LT_EQ] = ACTIONS(6028), + [anon_sym_LT] = ACTIONS(6028), + [anon_sym_LT_LT] = ACTIONS(6026), + [anon_sym_GT_GT] = ACTIONS(6026), + [anon_sym_SEMI] = ACTIONS(6026), + [anon_sym___extension__] = ACTIONS(6026), + [anon_sym___attribute__] = ACTIONS(6026), + [anon_sym_LBRACE] = ACTIONS(6026), + [anon_sym_RBRACE] = ACTIONS(6026), + [anon_sym_signed] = ACTIONS(5966), + [anon_sym_unsigned] = ACTIONS(5966), + [anon_sym_long] = ACTIONS(5966), + [anon_sym_short] = ACTIONS(5966), + [anon_sym_LBRACK] = ACTIONS(6026), + [anon_sym_RBRACK] = ACTIONS(6026), + [anon_sym_const] = ACTIONS(6028), + [anon_sym_constexpr] = ACTIONS(6026), + [anon_sym_volatile] = ACTIONS(6026), + [anon_sym_restrict] = ACTIONS(6026), + [anon_sym___restrict__] = ACTIONS(6026), + [anon_sym__Atomic] = ACTIONS(6026), + [anon_sym__Noreturn] = ACTIONS(6026), + [anon_sym_noreturn] = ACTIONS(6026), + [anon_sym_mutable] = ACTIONS(6026), + [anon_sym_constinit] = ACTIONS(6026), + [anon_sym_consteval] = ACTIONS(6026), + [anon_sym_COLON] = ACTIONS(6026), + [anon_sym_QMARK] = ACTIONS(6026), + [anon_sym_LT_EQ_GT] = ACTIONS(6026), + [anon_sym_or] = ACTIONS(6026), + [anon_sym_and] = ACTIONS(6026), + [anon_sym_bitor] = ACTIONS(6026), + [anon_sym_xor] = ACTIONS(6026), + [anon_sym_bitand] = ACTIONS(6026), + [anon_sym_not_eq] = ACTIONS(6026), + [anon_sym_DASH_DASH] = ACTIONS(6026), + [anon_sym_PLUS_PLUS] = ACTIONS(6026), + [anon_sym_DOT] = ACTIONS(6028), + [anon_sym_DOT_STAR] = ACTIONS(6026), + [anon_sym_DASH_GT] = ACTIONS(6026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6026), + [anon_sym_decltype] = ACTIONS(6026), + [anon_sym_final] = ACTIONS(6026), + [anon_sym_override] = ACTIONS(6026), + [anon_sym_requires] = ACTIONS(6026), + }, + [2481] = { + [sym_argument_list] = STATE(2808), + [sym_initializer_list] = STATE(2808), + [sym_identifier] = ACTIONS(6030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6032), + [anon_sym_COMMA] = ACTIONS(6032), + [anon_sym_RPAREN] = ACTIONS(6032), + [aux_sym_preproc_if_token2] = ACTIONS(6032), + [aux_sym_preproc_else_token1] = ACTIONS(6032), + [aux_sym_preproc_elif_token1] = ACTIONS(6030), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6032), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6032), + [anon_sym_LPAREN2] = ACTIONS(5354), + [anon_sym_DASH] = ACTIONS(6030), + [anon_sym_PLUS] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(6030), + [anon_sym_SLASH] = ACTIONS(6030), + [anon_sym_PERCENT] = ACTIONS(6030), + [anon_sym_PIPE_PIPE] = ACTIONS(6032), + [anon_sym_AMP_AMP] = ACTIONS(6032), + [anon_sym_PIPE] = ACTIONS(6030), + [anon_sym_CARET] = ACTIONS(6030), + [anon_sym_AMP] = ACTIONS(6030), + [anon_sym_EQ_EQ] = ACTIONS(6032), + [anon_sym_BANG_EQ] = ACTIONS(6032), + [anon_sym_GT] = ACTIONS(6030), + [anon_sym_GT_EQ] = ACTIONS(6032), + [anon_sym_LT_EQ] = ACTIONS(6030), + [anon_sym_LT] = ACTIONS(6030), + [anon_sym_LT_LT] = ACTIONS(6030), + [anon_sym_GT_GT] = ACTIONS(6030), + [anon_sym_SEMI] = ACTIONS(6032), + [anon_sym___attribute__] = ACTIONS(6030), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(6032), + [anon_sym_LBRACK] = ACTIONS(6032), + [anon_sym_RBRACK] = ACTIONS(6032), + [anon_sym_EQ] = ACTIONS(6030), + [anon_sym_COLON] = ACTIONS(6032), + [anon_sym_QMARK] = ACTIONS(6032), + [anon_sym_STAR_EQ] = ACTIONS(6032), + [anon_sym_SLASH_EQ] = ACTIONS(6032), + [anon_sym_PERCENT_EQ] = ACTIONS(6032), + [anon_sym_PLUS_EQ] = ACTIONS(6032), + [anon_sym_DASH_EQ] = ACTIONS(6032), + [anon_sym_LT_LT_EQ] = ACTIONS(6032), + [anon_sym_GT_GT_EQ] = ACTIONS(6032), + [anon_sym_AMP_EQ] = ACTIONS(6032), + [anon_sym_CARET_EQ] = ACTIONS(6032), + [anon_sym_PIPE_EQ] = ACTIONS(6032), + [anon_sym_and_eq] = ACTIONS(6030), + [anon_sym_or_eq] = ACTIONS(6030), + [anon_sym_xor_eq] = ACTIONS(6030), + [anon_sym_LT_EQ_GT] = ACTIONS(6032), + [anon_sym_or] = ACTIONS(6030), + [anon_sym_and] = ACTIONS(6030), + [anon_sym_bitor] = ACTIONS(6030), + [anon_sym_xor] = ACTIONS(6030), + [anon_sym_bitand] = ACTIONS(6030), + [anon_sym_not_eq] = ACTIONS(6030), + [anon_sym_DASH_DASH] = ACTIONS(6032), + [anon_sym_PLUS_PLUS] = ACTIONS(6032), + [anon_sym_DOT] = ACTIONS(6030), + [anon_sym_DOT_STAR] = ACTIONS(6032), + [anon_sym_DASH_GT] = ACTIONS(6032), + [sym_comment] = ACTIONS(3), + }, + [2482] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2485), + [sym_identifier] = ACTIONS(6028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6026), + [anon_sym_COMMA] = ACTIONS(6026), + [aux_sym_preproc_if_token2] = ACTIONS(6026), + [aux_sym_preproc_else_token1] = ACTIONS(6026), + [aux_sym_preproc_elif_token1] = ACTIONS(6028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6026), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6026), + [anon_sym_LPAREN2] = ACTIONS(6026), + [anon_sym_DASH] = ACTIONS(6028), + [anon_sym_PLUS] = ACTIONS(6028), + [anon_sym_STAR] = ACTIONS(6028), + [anon_sym_SLASH] = ACTIONS(6028), + [anon_sym_PERCENT] = ACTIONS(6028), + [anon_sym_PIPE_PIPE] = ACTIONS(6026), + [anon_sym_AMP_AMP] = ACTIONS(6026), + [anon_sym_PIPE] = ACTIONS(6028), + [anon_sym_CARET] = ACTIONS(6028), + [anon_sym_AMP] = ACTIONS(6028), + [anon_sym_EQ_EQ] = ACTIONS(6026), + [anon_sym_BANG_EQ] = ACTIONS(6026), + [anon_sym_GT] = ACTIONS(6028), + [anon_sym_GT_EQ] = ACTIONS(6026), + [anon_sym_LT_EQ] = ACTIONS(6028), + [anon_sym_LT] = ACTIONS(6028), + [anon_sym_LT_LT] = ACTIONS(6028), + [anon_sym_GT_GT] = ACTIONS(6028), + [anon_sym___attribute__] = ACTIONS(6028), + [anon_sym_LBRACE] = ACTIONS(6026), + [anon_sym_signed] = ACTIONS(5984), + [anon_sym_unsigned] = ACTIONS(5984), + [anon_sym_long] = ACTIONS(5984), + [anon_sym_short] = ACTIONS(5984), + [anon_sym_LBRACK] = ACTIONS(6026), + [anon_sym_EQ] = ACTIONS(6028), + [anon_sym_QMARK] = ACTIONS(6026), + [anon_sym_STAR_EQ] = ACTIONS(6026), + [anon_sym_SLASH_EQ] = ACTIONS(6026), + [anon_sym_PERCENT_EQ] = ACTIONS(6026), + [anon_sym_PLUS_EQ] = ACTIONS(6026), + [anon_sym_DASH_EQ] = ACTIONS(6026), + [anon_sym_LT_LT_EQ] = ACTIONS(6026), + [anon_sym_GT_GT_EQ] = ACTIONS(6026), + [anon_sym_AMP_EQ] = ACTIONS(6026), + [anon_sym_CARET_EQ] = ACTIONS(6026), + [anon_sym_PIPE_EQ] = ACTIONS(6026), + [anon_sym_and_eq] = ACTIONS(6028), + [anon_sym_or_eq] = ACTIONS(6028), + [anon_sym_xor_eq] = ACTIONS(6028), + [anon_sym_LT_EQ_GT] = ACTIONS(6026), + [anon_sym_or] = ACTIONS(6028), + [anon_sym_and] = ACTIONS(6028), + [anon_sym_bitor] = ACTIONS(6028), + [anon_sym_xor] = ACTIONS(6028), + [anon_sym_bitand] = ACTIONS(6028), + [anon_sym_not_eq] = ACTIONS(6028), + [anon_sym_DASH_DASH] = ACTIONS(6026), + [anon_sym_PLUS_PLUS] = ACTIONS(6026), + [anon_sym_DOT] = ACTIONS(6028), + [anon_sym_DOT_STAR] = ACTIONS(6026), + [anon_sym_DASH_GT] = ACTIONS(6026), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6028), + [anon_sym_decltype] = ACTIONS(6028), + }, + [2483] = { + [sym_identifier] = ACTIONS(5601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5603), + [anon_sym_COMMA] = ACTIONS(5603), + [anon_sym_RPAREN] = ACTIONS(5603), + [aux_sym_preproc_if_token2] = ACTIONS(5603), + [aux_sym_preproc_else_token1] = ACTIONS(5603), + [aux_sym_preproc_elif_token1] = ACTIONS(5601), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5603), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5603), + [anon_sym_LPAREN2] = ACTIONS(5603), + [anon_sym_DASH] = ACTIONS(5601), + [anon_sym_PLUS] = ACTIONS(5601), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_PERCENT] = ACTIONS(5601), + [anon_sym_PIPE_PIPE] = ACTIONS(5603), + [anon_sym_AMP_AMP] = ACTIONS(5603), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5601), + [anon_sym_AMP] = ACTIONS(5601), + [anon_sym_EQ_EQ] = ACTIONS(5603), + [anon_sym_BANG_EQ] = ACTIONS(5603), + [anon_sym_GT] = ACTIONS(5601), + [anon_sym_GT_EQ] = ACTIONS(5603), + [anon_sym_LT_EQ] = ACTIONS(5601), + [anon_sym_LT] = ACTIONS(5601), + [anon_sym_LT_LT] = ACTIONS(5601), + [anon_sym_GT_GT] = ACTIONS(5601), + [anon_sym_SEMI] = ACTIONS(5603), + [anon_sym___attribute__] = ACTIONS(5601), + [anon_sym_LBRACE] = ACTIONS(5603), + [anon_sym_RBRACE] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_RBRACK] = ACTIONS(5603), + [anon_sym_EQ] = ACTIONS(5601), + [anon_sym_COLON] = ACTIONS(5603), + [anon_sym_QMARK] = ACTIONS(5603), + [anon_sym_STAR_EQ] = ACTIONS(5603), + [anon_sym_SLASH_EQ] = ACTIONS(5603), + [anon_sym_PERCENT_EQ] = ACTIONS(5603), + [anon_sym_PLUS_EQ] = ACTIONS(5603), + [anon_sym_DASH_EQ] = ACTIONS(5603), + [anon_sym_LT_LT_EQ] = ACTIONS(5603), + [anon_sym_GT_GT_EQ] = ACTIONS(5603), + [anon_sym_AMP_EQ] = ACTIONS(5603), + [anon_sym_CARET_EQ] = ACTIONS(5603), + [anon_sym_PIPE_EQ] = ACTIONS(5603), + [anon_sym_and_eq] = ACTIONS(5601), + [anon_sym_or_eq] = ACTIONS(5601), + [anon_sym_xor_eq] = ACTIONS(5601), + [anon_sym_LT_EQ_GT] = ACTIONS(5603), + [anon_sym_or] = ACTIONS(5601), + [anon_sym_and] = ACTIONS(5601), + [anon_sym_bitor] = ACTIONS(5601), + [anon_sym_xor] = ACTIONS(5601), + [anon_sym_bitand] = ACTIONS(5601), + [anon_sym_not_eq] = ACTIONS(5601), + [anon_sym_DASH_DASH] = ACTIONS(5603), + [anon_sym_PLUS_PLUS] = ACTIONS(5603), + [anon_sym_DOT] = ACTIONS(5601), + [anon_sym_DOT_STAR] = ACTIONS(5603), + [anon_sym_DASH_GT] = ACTIONS(5603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5601), + [anon_sym_decltype] = ACTIONS(5601), + }, + [2484] = { + [sym_identifier] = ACTIONS(5643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5645), + [anon_sym_COMMA] = ACTIONS(5645), + [anon_sym_RPAREN] = ACTIONS(5645), + [aux_sym_preproc_if_token2] = ACTIONS(5645), + [aux_sym_preproc_else_token1] = ACTIONS(5645), + [aux_sym_preproc_elif_token1] = ACTIONS(5643), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5645), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5645), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_DASH] = ACTIONS(5643), + [anon_sym_PLUS] = ACTIONS(5643), + [anon_sym_STAR] = ACTIONS(5643), + [anon_sym_SLASH] = ACTIONS(5643), + [anon_sym_PERCENT] = ACTIONS(5643), + [anon_sym_PIPE_PIPE] = ACTIONS(5645), + [anon_sym_AMP_AMP] = ACTIONS(5645), + [anon_sym_PIPE] = ACTIONS(5643), + [anon_sym_CARET] = ACTIONS(5643), + [anon_sym_AMP] = ACTIONS(5643), + [anon_sym_EQ_EQ] = ACTIONS(5645), + [anon_sym_BANG_EQ] = ACTIONS(5645), + [anon_sym_GT] = ACTIONS(5643), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5643), + [anon_sym_LT] = ACTIONS(5643), + [anon_sym_LT_LT] = ACTIONS(5643), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_SEMI] = ACTIONS(5645), + [anon_sym___attribute__] = ACTIONS(5643), + [anon_sym_LBRACE] = ACTIONS(5645), + [anon_sym_RBRACE] = ACTIONS(5645), + [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_RBRACK] = ACTIONS(5645), + [anon_sym_EQ] = ACTIONS(5643), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5645), + [anon_sym_STAR_EQ] = ACTIONS(5645), + [anon_sym_SLASH_EQ] = ACTIONS(5645), + [anon_sym_PERCENT_EQ] = ACTIONS(5645), + [anon_sym_PLUS_EQ] = ACTIONS(5645), + [anon_sym_DASH_EQ] = ACTIONS(5645), + [anon_sym_LT_LT_EQ] = ACTIONS(5645), + [anon_sym_GT_GT_EQ] = ACTIONS(5645), + [anon_sym_AMP_EQ] = ACTIONS(5645), + [anon_sym_CARET_EQ] = ACTIONS(5645), + [anon_sym_PIPE_EQ] = ACTIONS(5645), + [anon_sym_and_eq] = ACTIONS(5643), + [anon_sym_or_eq] = ACTIONS(5643), + [anon_sym_xor_eq] = ACTIONS(5643), + [anon_sym_LT_EQ_GT] = ACTIONS(5645), + [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(5645), + [anon_sym_PLUS_PLUS] = ACTIONS(5645), + [anon_sym_DOT] = ACTIONS(5643), + [anon_sym_DOT_STAR] = ACTIONS(5645), + [anon_sym_DASH_GT] = ACTIONS(5645), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5643), + [anon_sym_decltype] = ACTIONS(5643), + }, + [2485] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2485), + [sym_identifier] = ACTIONS(5278), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5280), + [anon_sym_COMMA] = ACTIONS(5280), + [aux_sym_preproc_if_token2] = ACTIONS(5280), + [aux_sym_preproc_else_token1] = ACTIONS(5280), + [aux_sym_preproc_elif_token1] = ACTIONS(5278), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5280), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5280), + [anon_sym_LPAREN2] = ACTIONS(5280), + [anon_sym_DASH] = ACTIONS(5278), + [anon_sym_PLUS] = ACTIONS(5278), + [anon_sym_STAR] = ACTIONS(5278), + [anon_sym_SLASH] = ACTIONS(5278), + [anon_sym_PERCENT] = ACTIONS(5278), + [anon_sym_PIPE_PIPE] = ACTIONS(5280), + [anon_sym_AMP_AMP] = ACTIONS(5280), + [anon_sym_PIPE] = ACTIONS(5278), + [anon_sym_CARET] = ACTIONS(5278), + [anon_sym_AMP] = ACTIONS(5278), + [anon_sym_EQ_EQ] = ACTIONS(5280), + [anon_sym_BANG_EQ] = ACTIONS(5280), + [anon_sym_GT] = ACTIONS(5278), + [anon_sym_GT_EQ] = ACTIONS(5280), + [anon_sym_LT_EQ] = ACTIONS(5278), + [anon_sym_LT] = ACTIONS(5278), + [anon_sym_LT_LT] = ACTIONS(5278), + [anon_sym_GT_GT] = ACTIONS(5278), + [anon_sym___attribute__] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5280), + [anon_sym_signed] = ACTIONS(6034), + [anon_sym_unsigned] = ACTIONS(6034), + [anon_sym_long] = ACTIONS(6034), + [anon_sym_short] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(5280), + [anon_sym_EQ] = ACTIONS(5278), + [anon_sym_QMARK] = ACTIONS(5280), + [anon_sym_STAR_EQ] = ACTIONS(5280), + [anon_sym_SLASH_EQ] = ACTIONS(5280), + [anon_sym_PERCENT_EQ] = ACTIONS(5280), + [anon_sym_PLUS_EQ] = ACTIONS(5280), + [anon_sym_DASH_EQ] = ACTIONS(5280), + [anon_sym_LT_LT_EQ] = ACTIONS(5280), + [anon_sym_GT_GT_EQ] = ACTIONS(5280), + [anon_sym_AMP_EQ] = ACTIONS(5280), + [anon_sym_CARET_EQ] = ACTIONS(5280), + [anon_sym_PIPE_EQ] = ACTIONS(5280), + [anon_sym_and_eq] = ACTIONS(5278), + [anon_sym_or_eq] = ACTIONS(5278), + [anon_sym_xor_eq] = ACTIONS(5278), + [anon_sym_LT_EQ_GT] = ACTIONS(5280), + [anon_sym_or] = ACTIONS(5278), + [anon_sym_and] = ACTIONS(5278), + [anon_sym_bitor] = ACTIONS(5278), + [anon_sym_xor] = ACTIONS(5278), + [anon_sym_bitand] = ACTIONS(5278), + [anon_sym_not_eq] = ACTIONS(5278), + [anon_sym_DASH_DASH] = ACTIONS(5280), + [anon_sym_PLUS_PLUS] = ACTIONS(5280), + [anon_sym_DOT] = ACTIONS(5278), + [anon_sym_DOT_STAR] = ACTIONS(5280), + [anon_sym_DASH_GT] = ACTIONS(5280), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5278), + [anon_sym_decltype] = ACTIONS(5278), + }, + [2486] = { + [sym_identifier] = ACTIONS(5635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5637), + [anon_sym_COMMA] = ACTIONS(5637), + [anon_sym_RPAREN] = ACTIONS(5637), + [aux_sym_preproc_if_token2] = ACTIONS(5637), + [aux_sym_preproc_else_token1] = ACTIONS(5637), + [aux_sym_preproc_elif_token1] = ACTIONS(5635), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5637), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(5637), + [anon_sym_DASH] = ACTIONS(5635), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_STAR] = ACTIONS(5635), + [anon_sym_SLASH] = ACTIONS(5635), + [anon_sym_PERCENT] = ACTIONS(5635), + [anon_sym_PIPE_PIPE] = ACTIONS(5637), + [anon_sym_AMP_AMP] = ACTIONS(5637), + [anon_sym_PIPE] = ACTIONS(5635), + [anon_sym_CARET] = ACTIONS(5635), + [anon_sym_AMP] = ACTIONS(5635), + [anon_sym_EQ_EQ] = ACTIONS(5637), + [anon_sym_BANG_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_LT] = ACTIONS(5635), + [anon_sym_LT_LT] = ACTIONS(5635), + [anon_sym_GT_GT] = ACTIONS(5635), + [anon_sym_SEMI] = ACTIONS(5637), + [anon_sym___attribute__] = ACTIONS(5635), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_RBRACK] = ACTIONS(5637), + [anon_sym_EQ] = ACTIONS(5635), + [anon_sym_COLON] = ACTIONS(5637), + [anon_sym_QMARK] = ACTIONS(5637), + [anon_sym_STAR_EQ] = ACTIONS(5637), + [anon_sym_SLASH_EQ] = ACTIONS(5637), + [anon_sym_PERCENT_EQ] = ACTIONS(5637), + [anon_sym_PLUS_EQ] = ACTIONS(5637), + [anon_sym_DASH_EQ] = ACTIONS(5637), + [anon_sym_LT_LT_EQ] = ACTIONS(5637), + [anon_sym_GT_GT_EQ] = ACTIONS(5637), + [anon_sym_AMP_EQ] = ACTIONS(5637), + [anon_sym_CARET_EQ] = ACTIONS(5637), + [anon_sym_PIPE_EQ] = ACTIONS(5637), + [anon_sym_and_eq] = ACTIONS(5635), + [anon_sym_or_eq] = ACTIONS(5635), + [anon_sym_xor_eq] = ACTIONS(5635), + [anon_sym_LT_EQ_GT] = ACTIONS(5637), + [anon_sym_or] = ACTIONS(5635), + [anon_sym_and] = ACTIONS(5635), + [anon_sym_bitor] = ACTIONS(5635), + [anon_sym_xor] = ACTIONS(5635), + [anon_sym_bitand] = ACTIONS(5635), + [anon_sym_not_eq] = ACTIONS(5635), + [anon_sym_DASH_DASH] = ACTIONS(5637), + [anon_sym_PLUS_PLUS] = ACTIONS(5637), + [anon_sym_DOT] = ACTIONS(5635), + [anon_sym_DOT_STAR] = ACTIONS(5637), + [anon_sym_DASH_GT] = ACTIONS(5637), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5635), + [anon_sym_decltype] = ACTIONS(5635), + }, + [2487] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5988), + [anon_sym_COMMA] = ACTIONS(5988), + [anon_sym_RPAREN] = ACTIONS(5988), + [anon_sym_LPAREN2] = ACTIONS(5988), + [anon_sym_DASH] = ACTIONS(5986), + [anon_sym_PLUS] = ACTIONS(5986), + [anon_sym_STAR] = ACTIONS(5988), + [anon_sym_SLASH] = ACTIONS(5986), + [anon_sym_PERCENT] = ACTIONS(5988), + [anon_sym_PIPE_PIPE] = ACTIONS(5988), + [anon_sym_AMP_AMP] = ACTIONS(5988), + [anon_sym_PIPE] = ACTIONS(5986), + [anon_sym_CARET] = ACTIONS(5988), + [anon_sym_AMP] = ACTIONS(5986), + [anon_sym_EQ_EQ] = ACTIONS(5988), + [anon_sym_BANG_EQ] = ACTIONS(5988), + [anon_sym_GT] = ACTIONS(5986), + [anon_sym_GT_EQ] = ACTIONS(5988), + [anon_sym_LT_EQ] = ACTIONS(5986), + [anon_sym_LT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5988), + [anon_sym_GT_GT] = ACTIONS(5988), + [anon_sym_SEMI] = ACTIONS(5988), + [anon_sym___extension__] = ACTIONS(5988), + [anon_sym___attribute__] = ACTIONS(5988), + [anon_sym_LBRACE] = ACTIONS(5988), + [anon_sym_RBRACE] = ACTIONS(5988), + [anon_sym_signed] = ACTIONS(5966), + [anon_sym_unsigned] = ACTIONS(5966), + [anon_sym_long] = ACTIONS(5966), + [anon_sym_short] = ACTIONS(5966), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_RBRACK] = ACTIONS(5988), + [anon_sym_const] = ACTIONS(5986), + [anon_sym_constexpr] = ACTIONS(5988), + [anon_sym_volatile] = ACTIONS(5988), + [anon_sym_restrict] = ACTIONS(5988), + [anon_sym___restrict__] = ACTIONS(5988), + [anon_sym__Atomic] = ACTIONS(5988), + [anon_sym__Noreturn] = ACTIONS(5988), + [anon_sym_noreturn] = ACTIONS(5988), + [anon_sym_mutable] = ACTIONS(5988), + [anon_sym_constinit] = ACTIONS(5988), + [anon_sym_consteval] = ACTIONS(5988), + [anon_sym_COLON] = ACTIONS(5988), + [anon_sym_QMARK] = ACTIONS(5988), + [anon_sym_LT_EQ_GT] = ACTIONS(5988), + [anon_sym_or] = ACTIONS(5988), + [anon_sym_and] = ACTIONS(5988), + [anon_sym_bitor] = ACTIONS(5988), + [anon_sym_xor] = ACTIONS(5988), + [anon_sym_bitand] = ACTIONS(5988), + [anon_sym_not_eq] = ACTIONS(5988), + [anon_sym_DASH_DASH] = ACTIONS(5988), + [anon_sym_PLUS_PLUS] = ACTIONS(5988), + [anon_sym_DOT] = ACTIONS(5986), + [anon_sym_DOT_STAR] = ACTIONS(5988), + [anon_sym_DASH_GT] = ACTIONS(5988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5988), + [anon_sym_decltype] = ACTIONS(5988), + [anon_sym_final] = ACTIONS(5988), + [anon_sym_override] = ACTIONS(5988), + [anon_sym_requires] = ACTIONS(5988), + }, + [2488] = { + [sym_identifier] = ACTIONS(2863), + [aux_sym_preproc_def_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token1] = ACTIONS(2863), + [aux_sym_preproc_if_token2] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2863), + [sym_preproc_directive] = ACTIONS(2863), + [anon_sym_LPAREN2] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym___extension__] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym___attribute__] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2865), + [anon_sym___declspec] = ACTIONS(2863), + [anon_sym___based] = ACTIONS(2863), + [anon_sym_signed] = ACTIONS(2863), + [anon_sym_unsigned] = ACTIONS(2863), + [anon_sym_long] = ACTIONS(2863), + [anon_sym_short] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_register] = ACTIONS(2863), + [anon_sym_inline] = ACTIONS(2863), + [anon_sym___inline] = ACTIONS(2863), + [anon_sym___inline__] = ACTIONS(2863), + [anon_sym___forceinline] = ACTIONS(2863), + [anon_sym_thread_local] = ACTIONS(2863), + [anon_sym___thread] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_constexpr] = ACTIONS(2863), + [anon_sym_volatile] = ACTIONS(2863), + [anon_sym_restrict] = ACTIONS(2863), + [anon_sym___restrict__] = ACTIONS(2863), + [anon_sym__Atomic] = ACTIONS(2863), + [anon_sym__Noreturn] = ACTIONS(2863), + [anon_sym_noreturn] = ACTIONS(2863), + [anon_sym_mutable] = ACTIONS(2863), + [anon_sym_constinit] = ACTIONS(2863), + [anon_sym_consteval] = ACTIONS(2863), + [sym_primitive_type] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2863), + [anon_sym_decltype] = ACTIONS(2863), + [anon_sym_virtual] = ACTIONS(2863), + [anon_sym_alignas] = ACTIONS(2863), + [anon_sym_explicit] = ACTIONS(2863), + [anon_sym_typename] = ACTIONS(2863), + [anon_sym_template] = ACTIONS(2863), + [anon_sym_operator] = ACTIONS(2863), + [anon_sym_friend] = ACTIONS(2863), + [anon_sym_public] = ACTIONS(2863), + [anon_sym_private] = ACTIONS(2863), + [anon_sym_protected] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_static_assert] = ACTIONS(2863), + [anon_sym_catch] = ACTIONS(2863), + }, + [2489] = { + [sym_identifier] = ACTIONS(5799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5801), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_RPAREN] = ACTIONS(5801), + [aux_sym_preproc_if_token2] = ACTIONS(5801), + [aux_sym_preproc_else_token1] = ACTIONS(5801), + [aux_sym_preproc_elif_token1] = ACTIONS(5799), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5801), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5801), + [anon_sym_LPAREN2] = ACTIONS(5801), + [anon_sym_DASH] = ACTIONS(5799), + [anon_sym_PLUS] = ACTIONS(5799), + [anon_sym_STAR] = ACTIONS(5799), + [anon_sym_SLASH] = ACTIONS(5799), + [anon_sym_PERCENT] = ACTIONS(5799), + [anon_sym_PIPE_PIPE] = ACTIONS(5801), + [anon_sym_AMP_AMP] = ACTIONS(5801), + [anon_sym_PIPE] = ACTIONS(5799), + [anon_sym_CARET] = ACTIONS(5799), + [anon_sym_AMP] = ACTIONS(5799), + [anon_sym_EQ_EQ] = ACTIONS(5801), + [anon_sym_BANG_EQ] = ACTIONS(5801), + [anon_sym_GT] = ACTIONS(5799), + [anon_sym_GT_EQ] = ACTIONS(5801), + [anon_sym_LT_EQ] = ACTIONS(5799), + [anon_sym_LT] = ACTIONS(5799), + [anon_sym_LT_LT] = ACTIONS(5799), + [anon_sym_GT_GT] = ACTIONS(5799), + [anon_sym_SEMI] = ACTIONS(5801), + [anon_sym___attribute__] = ACTIONS(5799), + [anon_sym_LBRACE] = ACTIONS(5801), + [anon_sym_RBRACE] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_RBRACK] = ACTIONS(5801), + [anon_sym_EQ] = ACTIONS(5799), + [anon_sym_COLON] = ACTIONS(5801), + [anon_sym_QMARK] = ACTIONS(5801), + [anon_sym_STAR_EQ] = ACTIONS(5801), + [anon_sym_SLASH_EQ] = ACTIONS(5801), + [anon_sym_PERCENT_EQ] = ACTIONS(5801), + [anon_sym_PLUS_EQ] = ACTIONS(5801), + [anon_sym_DASH_EQ] = ACTIONS(5801), + [anon_sym_LT_LT_EQ] = ACTIONS(5801), + [anon_sym_GT_GT_EQ] = ACTIONS(5801), + [anon_sym_AMP_EQ] = ACTIONS(5801), + [anon_sym_CARET_EQ] = ACTIONS(5801), + [anon_sym_PIPE_EQ] = ACTIONS(5801), + [anon_sym_and_eq] = ACTIONS(5799), + [anon_sym_or_eq] = ACTIONS(5799), + [anon_sym_xor_eq] = ACTIONS(5799), + [anon_sym_LT_EQ_GT] = ACTIONS(5801), + [anon_sym_or] = ACTIONS(5799), + [anon_sym_and] = ACTIONS(5799), + [anon_sym_bitor] = ACTIONS(5799), + [anon_sym_xor] = ACTIONS(5799), + [anon_sym_bitand] = ACTIONS(5799), + [anon_sym_not_eq] = ACTIONS(5799), + [anon_sym_DASH_DASH] = ACTIONS(5801), + [anon_sym_PLUS_PLUS] = ACTIONS(5801), + [anon_sym_DOT] = ACTIONS(5799), + [anon_sym_DOT_STAR] = ACTIONS(5801), + [anon_sym_DASH_GT] = ACTIONS(5801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5799), + [anon_sym_decltype] = ACTIONS(5799), + }, + [2490] = { + [sym_identifier] = ACTIONS(5758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5760), + [anon_sym_COMMA] = ACTIONS(5760), + [anon_sym_RPAREN] = ACTIONS(5760), + [aux_sym_preproc_if_token2] = ACTIONS(5760), + [aux_sym_preproc_else_token1] = ACTIONS(5760), + [aux_sym_preproc_elif_token1] = ACTIONS(5758), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5760), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5760), + [anon_sym_LPAREN2] = ACTIONS(5760), + [anon_sym_DASH] = ACTIONS(5758), + [anon_sym_PLUS] = ACTIONS(5758), + [anon_sym_STAR] = ACTIONS(5758), + [anon_sym_SLASH] = ACTIONS(5758), + [anon_sym_PERCENT] = ACTIONS(5758), + [anon_sym_PIPE_PIPE] = ACTIONS(5760), + [anon_sym_AMP_AMP] = ACTIONS(5760), + [anon_sym_PIPE] = ACTIONS(5758), + [anon_sym_CARET] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(5758), + [anon_sym_EQ_EQ] = ACTIONS(5760), + [anon_sym_BANG_EQ] = ACTIONS(5760), + [anon_sym_GT] = ACTIONS(5758), + [anon_sym_GT_EQ] = ACTIONS(5760), + [anon_sym_LT_EQ] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5758), + [anon_sym_LT_LT] = ACTIONS(5758), + [anon_sym_GT_GT] = ACTIONS(5758), + [anon_sym_SEMI] = ACTIONS(5760), + [anon_sym___attribute__] = ACTIONS(5758), + [anon_sym_LBRACE] = ACTIONS(5760), + [anon_sym_RBRACE] = ACTIONS(5760), + [anon_sym_LBRACK] = ACTIONS(5760), + [anon_sym_RBRACK] = ACTIONS(5760), + [anon_sym_EQ] = ACTIONS(5758), + [anon_sym_COLON] = ACTIONS(5760), + [anon_sym_QMARK] = ACTIONS(5760), + [anon_sym_STAR_EQ] = ACTIONS(5760), + [anon_sym_SLASH_EQ] = ACTIONS(5760), + [anon_sym_PERCENT_EQ] = ACTIONS(5760), + [anon_sym_PLUS_EQ] = ACTIONS(5760), + [anon_sym_DASH_EQ] = ACTIONS(5760), + [anon_sym_LT_LT_EQ] = ACTIONS(5760), + [anon_sym_GT_GT_EQ] = ACTIONS(5760), + [anon_sym_AMP_EQ] = ACTIONS(5760), + [anon_sym_CARET_EQ] = ACTIONS(5760), + [anon_sym_PIPE_EQ] = ACTIONS(5760), + [anon_sym_and_eq] = ACTIONS(5758), + [anon_sym_or_eq] = ACTIONS(5758), + [anon_sym_xor_eq] = ACTIONS(5758), + [anon_sym_LT_EQ_GT] = ACTIONS(5760), + [anon_sym_or] = ACTIONS(5758), + [anon_sym_and] = ACTIONS(5758), + [anon_sym_bitor] = ACTIONS(5758), + [anon_sym_xor] = ACTIONS(5758), + [anon_sym_bitand] = ACTIONS(5758), + [anon_sym_not_eq] = ACTIONS(5758), + [anon_sym_DASH_DASH] = ACTIONS(5760), + [anon_sym_PLUS_PLUS] = ACTIONS(5760), + [anon_sym_DOT] = ACTIONS(5758), + [anon_sym_DOT_STAR] = ACTIONS(5760), + [anon_sym_DASH_GT] = ACTIONS(5760), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5758), + [anon_sym_decltype] = ACTIONS(5758), + }, + [2491] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(5970), + [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(5968), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(5970), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(5968), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(5970), + [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___attribute__] = ACTIONS(5970), + [anon_sym_LBRACE] = ACTIONS(5968), + [anon_sym_signed] = ACTIONS(6037), + [anon_sym_unsigned] = ACTIONS(6037), + [anon_sym_long] = ACTIONS(6037), + [anon_sym_short] = ACTIONS(6037), + [anon_sym_LBRACK] = ACTIONS(5968), + [anon_sym_EQ] = ACTIONS(5970), + [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), + [sym_auto] = ACTIONS(5970), + [anon_sym_decltype] = ACTIONS(5970), + }, + [2492] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2482), + [sym_identifier] = ACTIONS(5976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5974), + [anon_sym_COMMA] = ACTIONS(5974), + [aux_sym_preproc_if_token2] = ACTIONS(5974), + [aux_sym_preproc_else_token1] = ACTIONS(5974), + [aux_sym_preproc_elif_token1] = ACTIONS(5976), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5974), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5974), + [anon_sym_LPAREN2] = ACTIONS(5974), + [anon_sym_DASH] = ACTIONS(5976), + [anon_sym_PLUS] = ACTIONS(5976), + [anon_sym_STAR] = ACTIONS(5976), + [anon_sym_SLASH] = ACTIONS(5976), + [anon_sym_PERCENT] = ACTIONS(5976), + [anon_sym_PIPE_PIPE] = ACTIONS(5974), + [anon_sym_AMP_AMP] = ACTIONS(5974), + [anon_sym_PIPE] = ACTIONS(5976), + [anon_sym_CARET] = ACTIONS(5976), + [anon_sym_AMP] = ACTIONS(5976), + [anon_sym_EQ_EQ] = ACTIONS(5974), + [anon_sym_BANG_EQ] = ACTIONS(5974), + [anon_sym_GT] = ACTIONS(5976), + [anon_sym_GT_EQ] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(5976), + [anon_sym_LT] = ACTIONS(5976), + [anon_sym_LT_LT] = ACTIONS(5976), + [anon_sym_GT_GT] = ACTIONS(5976), + [anon_sym___attribute__] = ACTIONS(5976), + [anon_sym_LBRACE] = ACTIONS(5974), + [anon_sym_signed] = ACTIONS(6039), + [anon_sym_unsigned] = ACTIONS(6039), + [anon_sym_long] = ACTIONS(6039), + [anon_sym_short] = ACTIONS(6039), + [anon_sym_LBRACK] = ACTIONS(5974), + [anon_sym_EQ] = ACTIONS(5976), + [anon_sym_QMARK] = ACTIONS(5974), + [anon_sym_STAR_EQ] = ACTIONS(5974), + [anon_sym_SLASH_EQ] = ACTIONS(5974), + [anon_sym_PERCENT_EQ] = ACTIONS(5974), + [anon_sym_PLUS_EQ] = ACTIONS(5974), + [anon_sym_DASH_EQ] = ACTIONS(5974), + [anon_sym_LT_LT_EQ] = ACTIONS(5974), + [anon_sym_GT_GT_EQ] = ACTIONS(5974), + [anon_sym_AMP_EQ] = ACTIONS(5974), + [anon_sym_CARET_EQ] = ACTIONS(5974), + [anon_sym_PIPE_EQ] = ACTIONS(5974), + [anon_sym_and_eq] = ACTIONS(5976), + [anon_sym_or_eq] = ACTIONS(5976), + [anon_sym_xor_eq] = ACTIONS(5976), + [anon_sym_LT_EQ_GT] = ACTIONS(5974), + [anon_sym_or] = ACTIONS(5976), + [anon_sym_and] = ACTIONS(5976), + [anon_sym_bitor] = ACTIONS(5976), + [anon_sym_xor] = ACTIONS(5976), + [anon_sym_bitand] = ACTIONS(5976), + [anon_sym_not_eq] = ACTIONS(5976), + [anon_sym_DASH_DASH] = ACTIONS(5974), + [anon_sym_PLUS_PLUS] = ACTIONS(5974), + [anon_sym_DOT] = ACTIONS(5976), + [anon_sym_DOT_STAR] = ACTIONS(5974), + [anon_sym_DASH_GT] = ACTIONS(5974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5976), + [anon_sym_decltype] = ACTIONS(5976), + }, + [2493] = { + [sym_identifier] = ACTIONS(5762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5764), + [anon_sym_COMMA] = ACTIONS(5764), + [anon_sym_RPAREN] = ACTIONS(5764), + [aux_sym_preproc_if_token2] = ACTIONS(5764), + [aux_sym_preproc_else_token1] = ACTIONS(5764), + [aux_sym_preproc_elif_token1] = ACTIONS(5762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5764), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5764), + [anon_sym_LPAREN2] = ACTIONS(5764), + [anon_sym_DASH] = ACTIONS(5762), + [anon_sym_PLUS] = ACTIONS(5762), + [anon_sym_STAR] = ACTIONS(5762), + [anon_sym_SLASH] = ACTIONS(5762), + [anon_sym_PERCENT] = ACTIONS(5762), + [anon_sym_PIPE_PIPE] = ACTIONS(5764), + [anon_sym_AMP_AMP] = ACTIONS(5764), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_CARET] = ACTIONS(5762), + [anon_sym_AMP] = ACTIONS(5762), + [anon_sym_EQ_EQ] = ACTIONS(5764), + [anon_sym_BANG_EQ] = ACTIONS(5764), + [anon_sym_GT] = ACTIONS(5762), + [anon_sym_GT_EQ] = ACTIONS(5764), + [anon_sym_LT_EQ] = ACTIONS(5762), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_LT_LT] = ACTIONS(5762), + [anon_sym_GT_GT] = ACTIONS(5762), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___attribute__] = ACTIONS(5762), + [anon_sym_LBRACE] = ACTIONS(5764), + [anon_sym_RBRACE] = ACTIONS(5764), + [anon_sym_LBRACK] = ACTIONS(5764), + [anon_sym_RBRACK] = ACTIONS(5764), + [anon_sym_EQ] = ACTIONS(5762), + [anon_sym_COLON] = ACTIONS(5764), + [anon_sym_QMARK] = ACTIONS(5764), + [anon_sym_STAR_EQ] = ACTIONS(5764), + [anon_sym_SLASH_EQ] = ACTIONS(5764), + [anon_sym_PERCENT_EQ] = ACTIONS(5764), + [anon_sym_PLUS_EQ] = ACTIONS(5764), + [anon_sym_DASH_EQ] = ACTIONS(5764), + [anon_sym_LT_LT_EQ] = ACTIONS(5764), + [anon_sym_GT_GT_EQ] = ACTIONS(5764), + [anon_sym_AMP_EQ] = ACTIONS(5764), + [anon_sym_CARET_EQ] = ACTIONS(5764), + [anon_sym_PIPE_EQ] = ACTIONS(5764), + [anon_sym_and_eq] = ACTIONS(5762), + [anon_sym_or_eq] = ACTIONS(5762), + [anon_sym_xor_eq] = ACTIONS(5762), + [anon_sym_LT_EQ_GT] = ACTIONS(5764), + [anon_sym_or] = ACTIONS(5762), + [anon_sym_and] = ACTIONS(5762), + [anon_sym_bitor] = ACTIONS(5762), + [anon_sym_xor] = ACTIONS(5762), + [anon_sym_bitand] = ACTIONS(5762), + [anon_sym_not_eq] = ACTIONS(5762), + [anon_sym_DASH_DASH] = ACTIONS(5764), + [anon_sym_PLUS_PLUS] = ACTIONS(5764), + [anon_sym_DOT] = ACTIONS(5762), + [anon_sym_DOT_STAR] = ACTIONS(5764), + [anon_sym_DASH_GT] = ACTIONS(5764), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5762), + [anon_sym_decltype] = ACTIONS(5762), + }, + [2494] = { + [sym_identifier] = ACTIONS(5772), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5774), + [anon_sym_COMMA] = ACTIONS(5774), + [anon_sym_RPAREN] = ACTIONS(5774), + [aux_sym_preproc_if_token2] = ACTIONS(5774), + [aux_sym_preproc_else_token1] = ACTIONS(5774), + [aux_sym_preproc_elif_token1] = ACTIONS(5772), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5774), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5774), + [anon_sym_LPAREN2] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5772), + [anon_sym_PLUS] = ACTIONS(5772), + [anon_sym_STAR] = ACTIONS(5772), + [anon_sym_SLASH] = ACTIONS(5772), + [anon_sym_PERCENT] = ACTIONS(5772), + [anon_sym_PIPE_PIPE] = ACTIONS(5774), + [anon_sym_AMP_AMP] = ACTIONS(5774), + [anon_sym_PIPE] = ACTIONS(5772), + [anon_sym_CARET] = ACTIONS(5772), + [anon_sym_AMP] = ACTIONS(5772), + [anon_sym_EQ_EQ] = ACTIONS(5774), + [anon_sym_BANG_EQ] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5772), + [anon_sym_GT_EQ] = ACTIONS(5774), + [anon_sym_LT_EQ] = ACTIONS(5772), + [anon_sym_LT] = ACTIONS(5772), + [anon_sym_LT_LT] = ACTIONS(5772), + [anon_sym_GT_GT] = ACTIONS(5772), + [anon_sym_SEMI] = ACTIONS(5774), + [anon_sym___attribute__] = ACTIONS(5772), + [anon_sym_LBRACE] = ACTIONS(5774), + [anon_sym_RBRACE] = ACTIONS(5774), + [anon_sym_LBRACK] = ACTIONS(5774), + [anon_sym_RBRACK] = ACTIONS(5774), + [anon_sym_EQ] = ACTIONS(5772), + [anon_sym_COLON] = ACTIONS(5774), + [anon_sym_QMARK] = ACTIONS(5774), + [anon_sym_STAR_EQ] = ACTIONS(5774), + [anon_sym_SLASH_EQ] = ACTIONS(5774), + [anon_sym_PERCENT_EQ] = ACTIONS(5774), + [anon_sym_PLUS_EQ] = ACTIONS(5774), + [anon_sym_DASH_EQ] = ACTIONS(5774), + [anon_sym_LT_LT_EQ] = ACTIONS(5774), + [anon_sym_GT_GT_EQ] = ACTIONS(5774), + [anon_sym_AMP_EQ] = ACTIONS(5774), + [anon_sym_CARET_EQ] = ACTIONS(5774), + [anon_sym_PIPE_EQ] = ACTIONS(5774), + [anon_sym_and_eq] = ACTIONS(5772), + [anon_sym_or_eq] = ACTIONS(5772), + [anon_sym_xor_eq] = ACTIONS(5772), + [anon_sym_LT_EQ_GT] = ACTIONS(5774), + [anon_sym_or] = ACTIONS(5772), + [anon_sym_and] = ACTIONS(5772), + [anon_sym_bitor] = ACTIONS(5772), + [anon_sym_xor] = ACTIONS(5772), + [anon_sym_bitand] = ACTIONS(5772), + [anon_sym_not_eq] = ACTIONS(5772), + [anon_sym_DASH_DASH] = ACTIONS(5774), + [anon_sym_PLUS_PLUS] = ACTIONS(5774), + [anon_sym_DOT] = ACTIONS(5772), + [anon_sym_DOT_STAR] = ACTIONS(5774), + [anon_sym_DASH_GT] = ACTIONS(5774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5772), + [anon_sym_decltype] = ACTIONS(5772), + }, + [2495] = { + [sym_identifier] = ACTIONS(6041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6043), + [anon_sym_COMMA] = ACTIONS(6043), + [anon_sym_RPAREN] = ACTIONS(6043), + [aux_sym_preproc_if_token2] = ACTIONS(6043), + [aux_sym_preproc_else_token1] = ACTIONS(6043), + [aux_sym_preproc_elif_token1] = ACTIONS(6041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6043), + [anon_sym_LPAREN2] = ACTIONS(6043), + [anon_sym_DASH] = ACTIONS(6041), + [anon_sym_PLUS] = ACTIONS(6041), + [anon_sym_STAR] = ACTIONS(6041), + [anon_sym_SLASH] = ACTIONS(6041), + [anon_sym_PERCENT] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6041), + [anon_sym_CARET] = ACTIONS(6041), + [anon_sym_AMP] = ACTIONS(6041), + [anon_sym_EQ_EQ] = ACTIONS(6043), + [anon_sym_BANG_EQ] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6041), + [anon_sym_GT_EQ] = ACTIONS(6043), + [anon_sym_LT_EQ] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(6041), + [anon_sym_LT_LT] = ACTIONS(6041), + [anon_sym_GT_GT] = ACTIONS(6041), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym___attribute__] = ACTIONS(6041), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6043), + [anon_sym_LBRACE] = ACTIONS(6043), + [anon_sym_RBRACE] = ACTIONS(6043), + [anon_sym_LBRACK] = ACTIONS(6041), + [anon_sym_RBRACK] = ACTIONS(6043), + [anon_sym_EQ] = ACTIONS(6041), + [anon_sym_COLON] = ACTIONS(6043), + [anon_sym_QMARK] = ACTIONS(6043), + [anon_sym_STAR_EQ] = ACTIONS(6043), + [anon_sym_SLASH_EQ] = ACTIONS(6043), + [anon_sym_PERCENT_EQ] = ACTIONS(6043), + [anon_sym_PLUS_EQ] = ACTIONS(6043), + [anon_sym_DASH_EQ] = ACTIONS(6043), + [anon_sym_LT_LT_EQ] = ACTIONS(6043), + [anon_sym_GT_GT_EQ] = ACTIONS(6043), + [anon_sym_AMP_EQ] = ACTIONS(6043), + [anon_sym_CARET_EQ] = ACTIONS(6043), + [anon_sym_PIPE_EQ] = ACTIONS(6043), + [anon_sym_and_eq] = ACTIONS(6041), + [anon_sym_or_eq] = ACTIONS(6041), + [anon_sym_xor_eq] = ACTIONS(6041), + [anon_sym_LT_EQ_GT] = ACTIONS(6043), + [anon_sym_or] = ACTIONS(6041), + [anon_sym_and] = ACTIONS(6041), + [anon_sym_bitor] = ACTIONS(6041), + [anon_sym_xor] = ACTIONS(6041), + [anon_sym_bitand] = ACTIONS(6041), + [anon_sym_not_eq] = ACTIONS(6041), + [anon_sym_DASH_DASH] = ACTIONS(6043), + [anon_sym_PLUS_PLUS] = ACTIONS(6043), + [anon_sym_DOT] = ACTIONS(6041), + [anon_sym_DOT_STAR] = ACTIONS(6043), + [anon_sym_DASH_GT] = ACTIONS(6043), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6041), + }, + [2496] = { + [sym_identifier] = ACTIONS(6045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6047), + [anon_sym_COMMA] = ACTIONS(6047), + [anon_sym_RPAREN] = ACTIONS(6047), + [aux_sym_preproc_if_token2] = ACTIONS(6047), + [aux_sym_preproc_else_token1] = ACTIONS(6047), + [aux_sym_preproc_elif_token1] = ACTIONS(6045), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6047), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6047), + [anon_sym_LPAREN2] = ACTIONS(6047), + [anon_sym_DASH] = ACTIONS(6045), + [anon_sym_PLUS] = ACTIONS(6045), + [anon_sym_STAR] = ACTIONS(6045), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_PERCENT] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_CARET] = ACTIONS(6045), + [anon_sym_AMP] = ACTIONS(6045), + [anon_sym_EQ_EQ] = ACTIONS(6047), + [anon_sym_BANG_EQ] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6045), + [anon_sym_GT_EQ] = ACTIONS(6047), + [anon_sym_LT_EQ] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6045), + [anon_sym_LT_LT] = ACTIONS(6045), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym___attribute__] = ACTIONS(6045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6047), + [anon_sym_LBRACE] = ACTIONS(6047), + [anon_sym_RBRACE] = ACTIONS(6047), + [anon_sym_LBRACK] = ACTIONS(6045), + [anon_sym_RBRACK] = ACTIONS(6047), + [anon_sym_EQ] = ACTIONS(6045), + [anon_sym_COLON] = ACTIONS(6047), + [anon_sym_QMARK] = ACTIONS(6047), + [anon_sym_STAR_EQ] = ACTIONS(6047), + [anon_sym_SLASH_EQ] = ACTIONS(6047), + [anon_sym_PERCENT_EQ] = ACTIONS(6047), + [anon_sym_PLUS_EQ] = ACTIONS(6047), + [anon_sym_DASH_EQ] = ACTIONS(6047), + [anon_sym_LT_LT_EQ] = ACTIONS(6047), + [anon_sym_GT_GT_EQ] = ACTIONS(6047), + [anon_sym_AMP_EQ] = ACTIONS(6047), + [anon_sym_CARET_EQ] = ACTIONS(6047), + [anon_sym_PIPE_EQ] = ACTIONS(6047), + [anon_sym_and_eq] = ACTIONS(6045), + [anon_sym_or_eq] = ACTIONS(6045), + [anon_sym_xor_eq] = ACTIONS(6045), + [anon_sym_LT_EQ_GT] = ACTIONS(6047), + [anon_sym_or] = ACTIONS(6045), + [anon_sym_and] = ACTIONS(6045), + [anon_sym_bitor] = ACTIONS(6045), + [anon_sym_xor] = ACTIONS(6045), + [anon_sym_bitand] = ACTIONS(6045), + [anon_sym_not_eq] = ACTIONS(6045), + [anon_sym_DASH_DASH] = ACTIONS(6047), + [anon_sym_PLUS_PLUS] = ACTIONS(6047), + [anon_sym_DOT] = ACTIONS(6045), + [anon_sym_DOT_STAR] = ACTIONS(6047), + [anon_sym_DASH_GT] = ACTIONS(6047), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6045), + }, + [2497] = { + [sym_identifier] = ACTIONS(5776), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(5778), + [anon_sym_RPAREN] = ACTIONS(5778), + [aux_sym_preproc_if_token2] = ACTIONS(5778), + [aux_sym_preproc_else_token1] = ACTIONS(5778), + [aux_sym_preproc_elif_token1] = ACTIONS(5776), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5778), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5778), + [anon_sym_LPAREN2] = ACTIONS(5778), + [anon_sym_DASH] = ACTIONS(5776), + [anon_sym_PLUS] = ACTIONS(5776), + [anon_sym_STAR] = ACTIONS(5776), + [anon_sym_SLASH] = ACTIONS(5776), + [anon_sym_PERCENT] = ACTIONS(5776), + [anon_sym_PIPE_PIPE] = ACTIONS(5778), + [anon_sym_AMP_AMP] = ACTIONS(5778), + [anon_sym_PIPE] = ACTIONS(5776), + [anon_sym_CARET] = ACTIONS(5776), + [anon_sym_AMP] = ACTIONS(5776), + [anon_sym_EQ_EQ] = ACTIONS(5778), + [anon_sym_BANG_EQ] = ACTIONS(5778), + [anon_sym_GT] = ACTIONS(5776), + [anon_sym_GT_EQ] = ACTIONS(5778), + [anon_sym_LT_EQ] = ACTIONS(5776), + [anon_sym_LT] = ACTIONS(5776), + [anon_sym_LT_LT] = ACTIONS(5776), + [anon_sym_GT_GT] = ACTIONS(5776), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym___attribute__] = ACTIONS(5776), + [anon_sym_LBRACE] = ACTIONS(5778), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_LBRACK] = ACTIONS(5778), + [anon_sym_RBRACK] = ACTIONS(5778), + [anon_sym_EQ] = ACTIONS(5776), + [anon_sym_COLON] = ACTIONS(5778), + [anon_sym_QMARK] = ACTIONS(5778), + [anon_sym_STAR_EQ] = ACTIONS(5778), + [anon_sym_SLASH_EQ] = ACTIONS(5778), + [anon_sym_PERCENT_EQ] = ACTIONS(5778), + [anon_sym_PLUS_EQ] = ACTIONS(5778), + [anon_sym_DASH_EQ] = ACTIONS(5778), + [anon_sym_LT_LT_EQ] = ACTIONS(5778), + [anon_sym_GT_GT_EQ] = ACTIONS(5778), + [anon_sym_AMP_EQ] = ACTIONS(5778), + [anon_sym_CARET_EQ] = ACTIONS(5778), + [anon_sym_PIPE_EQ] = ACTIONS(5778), + [anon_sym_and_eq] = ACTIONS(5776), + [anon_sym_or_eq] = ACTIONS(5776), + [anon_sym_xor_eq] = ACTIONS(5776), + [anon_sym_LT_EQ_GT] = ACTIONS(5778), + [anon_sym_or] = ACTIONS(5776), + [anon_sym_and] = ACTIONS(5776), + [anon_sym_bitor] = ACTIONS(5776), + [anon_sym_xor] = ACTIONS(5776), + [anon_sym_bitand] = ACTIONS(5776), + [anon_sym_not_eq] = ACTIONS(5776), + [anon_sym_DASH_DASH] = ACTIONS(5778), + [anon_sym_PLUS_PLUS] = ACTIONS(5778), + [anon_sym_DOT] = ACTIONS(5776), + [anon_sym_DOT_STAR] = ACTIONS(5778), + [anon_sym_DASH_GT] = ACTIONS(5778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5776), + [anon_sym_decltype] = ACTIONS(5776), + }, + [2498] = { + [sym_identifier] = ACTIONS(5795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5797), + [anon_sym_COMMA] = ACTIONS(5797), + [anon_sym_RPAREN] = ACTIONS(5797), + [aux_sym_preproc_if_token2] = ACTIONS(5797), + [aux_sym_preproc_else_token1] = ACTIONS(5797), + [aux_sym_preproc_elif_token1] = ACTIONS(5795), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5797), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5797), + [anon_sym_LPAREN2] = ACTIONS(5797), + [anon_sym_DASH] = ACTIONS(5795), + [anon_sym_PLUS] = ACTIONS(5795), + [anon_sym_STAR] = ACTIONS(5795), + [anon_sym_SLASH] = ACTIONS(5795), + [anon_sym_PERCENT] = ACTIONS(5795), + [anon_sym_PIPE_PIPE] = ACTIONS(5797), + [anon_sym_AMP_AMP] = ACTIONS(5797), + [anon_sym_PIPE] = ACTIONS(5795), + [anon_sym_CARET] = ACTIONS(5795), + [anon_sym_AMP] = ACTIONS(5795), + [anon_sym_EQ_EQ] = ACTIONS(5797), + [anon_sym_BANG_EQ] = ACTIONS(5797), + [anon_sym_GT] = ACTIONS(5795), + [anon_sym_GT_EQ] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5795), + [anon_sym_LT] = ACTIONS(5795), + [anon_sym_LT_LT] = ACTIONS(5795), + [anon_sym_GT_GT] = ACTIONS(5795), + [anon_sym_SEMI] = ACTIONS(5797), + [anon_sym___attribute__] = ACTIONS(5795), + [anon_sym_LBRACE] = ACTIONS(5797), + [anon_sym_RBRACE] = ACTIONS(5797), + [anon_sym_LBRACK] = ACTIONS(5797), + [anon_sym_RBRACK] = ACTIONS(5797), + [anon_sym_EQ] = ACTIONS(5795), + [anon_sym_COLON] = ACTIONS(5797), + [anon_sym_QMARK] = ACTIONS(5797), + [anon_sym_STAR_EQ] = ACTIONS(5797), + [anon_sym_SLASH_EQ] = ACTIONS(5797), + [anon_sym_PERCENT_EQ] = ACTIONS(5797), + [anon_sym_PLUS_EQ] = ACTIONS(5797), + [anon_sym_DASH_EQ] = ACTIONS(5797), + [anon_sym_LT_LT_EQ] = ACTIONS(5797), + [anon_sym_GT_GT_EQ] = ACTIONS(5797), + [anon_sym_AMP_EQ] = ACTIONS(5797), + [anon_sym_CARET_EQ] = ACTIONS(5797), + [anon_sym_PIPE_EQ] = ACTIONS(5797), + [anon_sym_and_eq] = ACTIONS(5795), + [anon_sym_or_eq] = ACTIONS(5795), + [anon_sym_xor_eq] = ACTIONS(5795), + [anon_sym_LT_EQ_GT] = ACTIONS(5797), + [anon_sym_or] = ACTIONS(5795), + [anon_sym_and] = ACTIONS(5795), + [anon_sym_bitor] = ACTIONS(5795), + [anon_sym_xor] = ACTIONS(5795), + [anon_sym_bitand] = ACTIONS(5795), + [anon_sym_not_eq] = ACTIONS(5795), + [anon_sym_DASH_DASH] = ACTIONS(5797), + [anon_sym_PLUS_PLUS] = ACTIONS(5797), + [anon_sym_DOT] = ACTIONS(5795), + [anon_sym_DOT_STAR] = ACTIONS(5797), + [anon_sym_DASH_GT] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5795), + [anon_sym_decltype] = ACTIONS(5795), + }, + [2499] = { + [sym_identifier] = ACTIONS(6049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6051), + [anon_sym_COMMA] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [aux_sym_preproc_if_token2] = ACTIONS(6051), + [aux_sym_preproc_else_token1] = ACTIONS(6051), + [aux_sym_preproc_elif_token1] = ACTIONS(6049), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6051), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6051), + [anon_sym_LPAREN2] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6049), + [anon_sym_STAR] = ACTIONS(6049), + [anon_sym_SLASH] = ACTIONS(6049), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE] = ACTIONS(6049), + [anon_sym_CARET] = ACTIONS(6049), + [anon_sym_AMP] = ACTIONS(6049), + [anon_sym_EQ_EQ] = ACTIONS(6051), + [anon_sym_BANG_EQ] = ACTIONS(6051), + [anon_sym_GT] = ACTIONS(6049), + [anon_sym_GT_EQ] = ACTIONS(6051), + [anon_sym_LT_EQ] = ACTIONS(6049), + [anon_sym_LT] = ACTIONS(6049), + [anon_sym_LT_LT] = ACTIONS(6049), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym___attribute__] = ACTIONS(6049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6051), + [anon_sym_LBRACE] = ACTIONS(6051), + [anon_sym_RBRACE] = ACTIONS(6051), + [anon_sym_LBRACK] = ACTIONS(6049), + [anon_sym_RBRACK] = ACTIONS(6051), + [anon_sym_EQ] = ACTIONS(6049), + [anon_sym_COLON] = ACTIONS(6051), + [anon_sym_QMARK] = ACTIONS(6051), + [anon_sym_STAR_EQ] = ACTIONS(6051), + [anon_sym_SLASH_EQ] = ACTIONS(6051), + [anon_sym_PERCENT_EQ] = ACTIONS(6051), + [anon_sym_PLUS_EQ] = ACTIONS(6051), + [anon_sym_DASH_EQ] = ACTIONS(6051), + [anon_sym_LT_LT_EQ] = ACTIONS(6051), + [anon_sym_GT_GT_EQ] = ACTIONS(6051), + [anon_sym_AMP_EQ] = ACTIONS(6051), + [anon_sym_CARET_EQ] = ACTIONS(6051), + [anon_sym_PIPE_EQ] = ACTIONS(6051), + [anon_sym_and_eq] = ACTIONS(6049), + [anon_sym_or_eq] = ACTIONS(6049), + [anon_sym_xor_eq] = ACTIONS(6049), + [anon_sym_LT_EQ_GT] = ACTIONS(6051), + [anon_sym_or] = ACTIONS(6049), + [anon_sym_and] = ACTIONS(6049), + [anon_sym_bitor] = ACTIONS(6049), + [anon_sym_xor] = ACTIONS(6049), + [anon_sym_bitand] = ACTIONS(6049), + [anon_sym_not_eq] = ACTIONS(6049), + [anon_sym_DASH_DASH] = ACTIONS(6051), + [anon_sym_PLUS_PLUS] = ACTIONS(6051), + [anon_sym_DOT] = ACTIONS(6049), + [anon_sym_DOT_STAR] = ACTIONS(6051), + [anon_sym_DASH_GT] = ACTIONS(6051), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6049), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(5431), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [71] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3238), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3236), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2877), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2875), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [213] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2530), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6053), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5970), 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(5968), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [288] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6055), 1, + sym_identifier, + ACTIONS(6060), 1, + sym_primitive_type, + STATE(2513), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6058), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5815), 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_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + ACTIONS(5813), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3185), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3183), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3181), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3179), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3201), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3199), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3165), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3163), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5457), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(5455), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3161), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3159), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3153), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3151), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3147), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [935] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5278), 1, + sym_primitive_type, + STATE(2630), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6062), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5769), 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_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, + sym_auto, + anon_sym_decltype, + ACTIONS(5766), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [1012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2897), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2895), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2995), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2993), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1154] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6065), 1, + sym_identifier, + STATE(2533), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4194), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4196), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5222), 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(5220), 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, + [1233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 6, + STATE(2036), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6067), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5986), 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(5988), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [1308] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6069), 1, + sym_identifier, + STATE(2516), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4194), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4196), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5236), 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(5234), 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, + [1387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3006), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5467), 57, + anon_sym_RBRACE, + ACTIONS(3004), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -359033,20 +363294,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [71] = 3, + [1458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 6, + ACTIONS(3246), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5471), 57, + anon_sym_RBRACE, + ACTIONS(3244), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -359101,20 +363362,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [142] = 3, + [1529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 6, + ACTIONS(3006), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5475), 57, + anon_sym_RBRACE, + ACTIONS(3004), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -359169,10 +363430,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [213] = 3, + [1600] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(6071), 1, + anon_sym___attribute__, + ACTIONS(6073), 1, + anon_sym_LBRACE, + STATE(2216), 1, + sym_attribute_specifier, + STATE(2905), 1, + sym_field_declaration_list, + STATE(7406), 1, + sym_virtual_specifier, + STATE(8169), 1, + sym_base_class_clause, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5315), 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(5317), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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_requires, + [1687] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2036), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6067), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5964), 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(5962), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [1762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 7, + ACTIONS(2999), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -359180,7 +363587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3054), 56, + ACTIONS(2997), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -359237,17 +363644,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [284] = 3, + [1833] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2523), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6077), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5418), 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(5420), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [1908] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6079), 1, + sym_literal_suffix, + STATE(2304), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(5845), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5847), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4137), 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(4145), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [1987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5371), 6, + ACTIONS(5489), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5369), 57, + ACTIONS(5487), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -359305,17 +363854,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [355] = 3, + [2058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 6, + ACTIONS(5445), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5479), 57, + ACTIONS(5443), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -359373,10 +363922,428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [426] = 3, + [2129] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2036), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6067), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6028), 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(6026), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [2204] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2036), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6067), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6022), 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(6020), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [2279] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2523), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6077), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5762), 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(5764), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [2354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 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(5264), 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, + [2425] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6081), 1, + sym_identifier, + STATE(2533), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6084), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6087), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5210), 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(5208), 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, + [2504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5574), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(5572), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [2575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 7, + ACTIONS(3136), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -359384,7 +364351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2925), 56, + ACTIONS(3134), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -359441,10 +364408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [497] = 3, + [2646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 7, + ACTIONS(3136), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -359452,7 +364419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(5471), 56, + ACTIONS(3134), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -359509,10 +364476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [568] = 3, + [2717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 7, + ACTIONS(3225), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -359520,7 +364487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2917), 56, + ACTIONS(3223), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -359577,20 +364544,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [639] = 3, + [2788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 6, + STATE(2529), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6090), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5976), 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(5974), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [2863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5578), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5479), 57, + anon_sym_RBRACE, + ACTIONS(5576), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [2934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5582), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(5580), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3084), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3082), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -359645,10 +364818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [710] = 3, + [3076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 7, + ACTIONS(3312), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -359656,7 +364829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(5475), 56, + ACTIONS(3310), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -359713,10 +364886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [781] = 3, + [3147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 7, + ACTIONS(5489), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -359724,7 +364897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3090), 56, + ACTIONS(5487), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -359781,10 +364954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [852] = 3, + [3218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 7, + ACTIONS(3229), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -359792,7 +364965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3094), 56, + ACTIONS(3227), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -359849,10 +365022,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [923] = 3, + [3289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5297), 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(5299), 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, + [3360] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5048), 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_EQ, + anon_sym_COLON, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5041), 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_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, + [3433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5371), 7, + ACTIONS(5445), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -359860,7 +365170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(5369), 56, + ACTIONS(5443), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -359917,20 +365227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [994] = 3, + [3504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5371), 6, + ACTIONS(3014), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5369), 57, + anon_sym_RBRACE, + ACTIONS(3012), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -359985,10 +365295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [1065] = 3, + [3575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 7, + ACTIONS(3080), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -359996,7 +365306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(5479), 56, + ACTIONS(3078), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -360053,80 +365363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [1136] = 5, + [3646] = 3, ACTIONS(3), 1, sym_comment, - STATE(2593), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6026), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5590), 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(5592), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [1211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3114), 7, + ACTIONS(3189), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -360134,7 +365374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3112), 56, + ACTIONS(3187), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -360191,10 +365431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [1282] = 3, + [3717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 7, + ACTIONS(5570), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -360202,7 +365442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(5479), 56, + ACTIONS(5568), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -360259,18 +365499,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [1353] = 5, + [3788] = 8, ACTIONS(3), 1, sym_comment, - STATE(2468), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(6092), 1, + anon_sym_LT, + STATE(2728), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6017), 4, + STATE(2859), 1, + sym_template_argument_list, + ACTIONS(5926), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5535), 28, - aux_sym_preproc_elif_token1, + ACTIONS(4135), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360281,7 +365526,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, @@ -360298,13 +365542,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5537), 30, + ACTIONS(4143), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -360329,10 +365572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [1428] = 3, + [3869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2879), 7, + ACTIONS(5477), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -360340,7 +365583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2877), 56, + ACTIONS(5475), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -360397,10 +365640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [1499] = 3, + [3940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5371), 7, + ACTIONS(3173), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -360408,7 +365651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(5369), 56, + ACTIONS(3171), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -360465,10 +365708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [1570] = 3, + [4011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 7, + ACTIONS(5461), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -360476,7 +365719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3066), 56, + ACTIONS(5459), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -360533,10 +365776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [1641] = 3, + [4082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 7, + ACTIONS(5465), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -360544,7 +365787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3180), 56, + ACTIONS(5463), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -360601,10 +365844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [1712] = 3, + [4153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 7, + ACTIONS(5570), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -360612,7 +365855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3194), 56, + ACTIONS(5568), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -360669,10 +365912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [1783] = 3, + [4224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 7, + ACTIONS(5566), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -360680,7 +365923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2989), 56, + ACTIONS(5564), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -360737,10 +365980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [1854] = 3, + [4295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3253), 7, + ACTIONS(3193), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -360748,7 +365991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3251), 56, + ACTIONS(3191), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -360805,10 +366048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [1925] = 3, + [4366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 7, + ACTIONS(3221), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -360816,7 +366059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(5467), 56, + ACTIONS(3219), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -360873,164 +366116,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [1996] = 7, + [4437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6028), 1, - sym_identifier, - ACTIONS(6033), 1, - sym_primitive_type, - STATE(2506), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6031), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5638), 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_auto, - anon_sym_decltype, - ACTIONS(5636), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(5469), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_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, - [2075] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, anon_sym_COLON_COLON, - ACTIONS(6035), 1, - anon_sym_LT, - STATE(2692), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2816), 1, - sym_template_argument_list, - ACTIONS(6013), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(5467), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4137), 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_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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(4145), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [2156] = 6, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5246), 1, - sym_primitive_type, - STATE(2508), 1, + STATE(2449), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6037), 4, + ACTIONS(6024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5789), 28, + ACTIONS(5418), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361044,7 +366209,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -361059,12 +366223,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5786), 29, + ACTIONS(5420), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -361089,295 +366254,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2233] = 4, + [4583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5021), 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_EQ, - anon_sym_COLON, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5014), 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, + ACTIONS(3300), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, 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, - [2306] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2508), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6037), 4, + ACTIONS(3298), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5246), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_primitive_type, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_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_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5248), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [2381] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - 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(5263), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3284), 6, anon_sym_LPAREN2, - anon_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, - [2452] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5230), 27, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3282), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5232), 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___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_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, - [2523] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5501), 6, + ACTIONS(3157), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5499), 57, + anon_sym_RBRACE, + ACTIONS(3155), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -361432,20 +366458,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [2594] = 3, + [4796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5524), 6, + ACTIONS(3128), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5522), 57, + anon_sym_RBRACE, + ACTIONS(3126), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -361500,146 +366526,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [2665] = 3, + [4867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - 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(5259), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5473), 7, anon_sym_LPAREN2, - anon_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, - [2736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5253), 27, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(5471), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5255), 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___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_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, - [2807] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 7, + ACTIONS(3242), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -361647,7 +366605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3116), 56, + ACTIONS(3240), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -361704,20 +366662,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [2878] = 3, + [5009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3134), 7, + ACTIONS(3084), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3132), 56, + ACTIONS(3082), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -361772,17 +366730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [2949] = 3, + [5080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 6, + ACTIONS(3296), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3172), 57, + ACTIONS(3294), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -361840,82 +366798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [3020] = 7, + [5151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6040), 1, - sym_identifier, - STATE(2518), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6043), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6046), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5160), 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(5158), 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, - [3099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3150), 7, + ACTIONS(2963), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -361923,7 +366809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3148), 56, + ACTIONS(2961), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -361980,10 +366866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [3170] = 3, + [5222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2887), 7, + ACTIONS(2967), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -361991,7 +366877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2885), 56, + ACTIONS(2965), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -362048,17 +366934,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [3241] = 3, + [5293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5544), 6, + ACTIONS(3312), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5542), 57, + ACTIONS(3310), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -362116,17 +367002,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [3312] = 3, + [5364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2887), 6, + ACTIONS(3213), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2885), 57, + ACTIONS(3211), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -362184,20 +367070,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [3383] = 3, + [5435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5548), 6, + ACTIONS(5513), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5546), 57, + anon_sym_RBRACE, + ACTIONS(5511), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -362252,17 +367138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [3454] = 3, + [5506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 6, + ACTIONS(3264), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3116), 57, + ACTIONS(3262), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -362320,10 +367206,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [3525] = 3, + [5577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 7, + ACTIONS(5266), 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(5268), 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, + [5648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3124), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -362331,7 +367285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2921), 56, + ACTIONS(3122), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -362388,10 +367342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [3596] = 3, + [5719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 7, + ACTIONS(3112), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -362399,7 +367353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3259), 56, + ACTIONS(3110), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -362456,10 +367410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [3667] = 3, + [5790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3286), 7, + ACTIONS(3264), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -362467,7 +367421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3284), 56, + ACTIONS(3262), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -362524,10 +367478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [3738] = 3, + [5861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 7, + ACTIONS(5501), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -362535,7 +367489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3298), 56, + ACTIONS(5499), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -362592,160 +367546,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [3809] = 5, + [5932] = 3, ACTIONS(3), 1, sym_comment, - STATE(1993), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6049), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5995), 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(5993), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5485), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5483), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [3884] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1993), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6049), 4, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5991), 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(5989), 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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - [3959] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3304), 7, + ACTIONS(3217), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3302), 56, + ACTIONS(3215), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -362800,20 +367682,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4030] = 3, + [6074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 7, + ACTIONS(5493), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3306), 56, + ACTIONS(5491), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -362868,10 +367750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4101] = 3, + [6145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 7, + ACTIONS(5477), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -362879,7 +367761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3160), 56, + ACTIONS(5475), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -362936,20 +367818,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4172] = 3, + [6216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3276), 7, + ACTIONS(5497), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3274), 56, + ACTIONS(5495), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -363004,17 +367886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4243] = 3, + [6287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 6, + ACTIONS(5501), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2925), 57, + ACTIONS(5499), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -363072,17 +367954,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4314] = 3, + [6358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 6, + ACTIONS(5433), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2917), 57, + ACTIONS(5431), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -363140,17 +368022,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4385] = 3, + [6429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5552), 6, + ACTIONS(5505), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5550), 57, + ACTIONS(5503), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -363208,20 +368090,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4456] = 3, + [6500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 7, + ACTIONS(5433), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3160), 56, + ACTIONS(5431), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -363276,17 +368158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4527] = 3, + [6571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5556), 6, + ACTIONS(5505), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5554), 57, + ACTIONS(5503), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -363344,20 +368226,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4598] = 3, + [6642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 7, + ACTIONS(5437), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3203), 56, + ACTIONS(5435), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -363412,17 +368294,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4669] = 3, + [6713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 6, + ACTIONS(5441), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2921), 57, + ACTIONS(5439), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -363480,17 +368362,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4740] = 3, + [6784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5556), 6, + ACTIONS(5407), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5554), 57, + ACTIONS(5405), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -363548,17 +368430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4811] = 3, + [6855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5560), 6, + ACTIONS(5449), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5558), 57, + ACTIONS(5447), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -363616,179 +368498,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [4882] = 3, + [6926] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 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(5255), 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, - [4953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3154), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3152), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(47), 1, 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, + ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2122), 1, anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3122), 7, - anon_sym_LPAREN2, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, anon_sym_TILDE, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6098), 1, anon_sym_STAR, + ACTIONS(6100), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3120), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(6102), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(6106), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(3782), 1, + sym_parameter_list, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6348), 1, + sym__scope_resolution, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6904), 1, + sym__declarator, + STATE(6916), 1, + sym__abstract_declarator, + STATE(8593), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3218), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3848), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6096), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -363800,37 +368592,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [5095] = 3, + [7049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5394), 6, + ACTIONS(5407), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5392), 57, + ACTIONS(5405), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -363888,20 +368660,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [5166] = 3, + [7120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3221), 7, + ACTIONS(5501), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3219), 56, + ACTIONS(5499), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -363956,20 +368728,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [5237] = 3, + [7191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 7, + ACTIONS(5449), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3172), 56, + ACTIONS(5447), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -364024,17 +368796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [5308] = 3, + [7262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 6, + ACTIONS(5453), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5511), 57, + ACTIONS(5451), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -364092,20 +368864,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [5379] = 3, + [7333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5509), 6, + ACTIONS(5505), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5507), 57, + anon_sym_RBRACE, + ACTIONS(5503), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -364160,20 +368932,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [5450] = 3, + [7404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5505), 6, + ACTIONS(5505), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5503), 57, + anon_sym_RBRACE, + ACTIONS(5503), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -364228,20 +369000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [5521] = 3, + [7475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5497), 6, + ACTIONS(5501), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 57, + anon_sym_RBRACE, + ACTIONS(5499), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -364296,20 +369068,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [5592] = 3, + [7546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5497), 6, + ACTIONS(3284), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 57, + anon_sym_RBRACE, + ACTIONS(3282), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -364364,85 +369136,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [5663] = 3, + [7617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 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(5259), 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, - [5734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 6, + ACTIONS(3100), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5491), 57, + ACTIONS(3098), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -364500,20 +369204,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [5805] = 3, + [7688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3221), 7, + ACTIONS(5457), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3219), 56, + ACTIONS(5455), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -364568,17 +369272,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [5876] = 3, + [7759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 6, + ACTIONS(5461), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5487), 57, + ACTIONS(5459), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -364636,17 +369340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [5947] = 3, + [7830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 6, + ACTIONS(5465), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5483), 57, + ACTIONS(5463), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -364704,20 +369408,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [6018] = 3, + [7901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5544), 7, + ACTIONS(5469), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5542), 56, + ACTIONS(5467), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -364772,20 +369476,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [6089] = 3, + [7972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5548), 7, + ACTIONS(5473), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5546), 56, + ACTIONS(5471), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -364840,28 +369544,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [6160] = 7, + [8043] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6051), 1, - sym_identifier, - STATE(2518), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4214), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4216), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5200), 23, + ACTIONS(5319), 1, + anon_sym___attribute__, + ACTIONS(5659), 1, + anon_sym_LBRACE, + ACTIONS(6112), 1, + anon_sym_COLON, + STATE(2220), 1, + sym__enum_base_clause, + STATE(2396), 1, + sym_enumerator_list, + STATE(2494), 1, + sym_attribute_specifier, + ACTIONS(6108), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364876,6 +369575,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, @@ -364883,12 +369585,16 @@ 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(5198), 26, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6110), 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, @@ -364911,89 +369617,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, - [6239] = 3, + anon_sym_DASH_GT, + [8126] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5552), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5319), 1, + anon_sym___attribute__, + ACTIONS(5659), 1, + anon_sym_LBRACE, + ACTIONS(6112), 1, + anon_sym_COLON, + STATE(2263), 1, + sym__enum_base_clause, + STATE(2309), 1, + sym_enumerator_list, + STATE(2467), 1, + sym_attribute_specifier, + ACTIONS(6114), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5550), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6310] = 3, + ACTIONS(6116), 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, + [8209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 7, + ACTIONS(5477), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3164), 56, + ACTIONS(5475), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -365048,20 +369760,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [6381] = 3, + [8280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5556), 7, + ACTIONS(3242), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5554), 56, + ACTIONS(3240), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -365116,20 +369828,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [6452] = 3, + [8351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5556), 7, + ACTIONS(3238), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5554), 56, + ACTIONS(3236), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -365184,20 +369896,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [6523] = 3, + [8422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5560), 7, + ACTIONS(5477), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5558), 56, + ACTIONS(5475), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -365252,17 +369964,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [6594] = 3, + [8493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5465), 6, + ACTIONS(5481), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5463), 57, + ACTIONS(5479), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -365320,10 +370032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [6665] = 3, + [8564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3142), 7, + ACTIONS(5497), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -365331,7 +370043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3140), 56, + ACTIONS(5495), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -365388,156 +370100,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [6736] = 3, + [8635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5394), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5270), 27, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5392), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + 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_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3178), 7, + sym_literal_suffix, + ACTIONS(5272), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3176), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [6878] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [8706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3192), 7, + ACTIONS(2897), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3190), 56, + ACTIONS(2895), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -365592,20 +370236,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [6949] = 3, + [8777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 7, + ACTIONS(3300), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3227), 56, + ACTIONS(3298), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -365660,10 +370304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7020] = 3, + [8848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 7, + ACTIONS(5493), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -365671,7 +370315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3231), 56, + ACTIONS(5491), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -365728,17 +370372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7091] = 3, + [8919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5461), 6, + ACTIONS(3221), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5459), 57, + ACTIONS(3219), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -365796,20 +370440,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7162] = 3, + [8990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3282), 7, + ACTIONS(3193), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3280), 56, + ACTIONS(3191), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -365864,20 +370508,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7233] = 3, + [9061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 7, + ACTIONS(5509), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3292), 56, + ACTIONS(5507), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -365932,17 +370576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7304] = 3, + [9132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2879), 6, + ACTIONS(5403), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2877), 57, + ACTIONS(5401), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -366000,82 +370644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7375] = 7, + [9203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6053), 1, - sym_literal_suffix, - STATE(2319), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(5797), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5799), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4139), 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(4147), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - [7454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3213), 7, + ACTIONS(2877), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -366083,7 +370655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3211), 56, + ACTIONS(2875), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -366140,17 +370712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7525] = 3, + [9274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5446), 6, + ACTIONS(3136), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5444), 57, + ACTIONS(3134), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -366208,17 +370780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7596] = 3, + [9345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5434), 6, + ACTIONS(3136), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5432), 57, + ACTIONS(3134), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -366276,20 +370848,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7667] = 3, + [9416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 6, + STATE(2630), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6062), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5278), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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, + sym_primitive_type, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5280), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [9491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3197), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5428), 57, + anon_sym_RBRACE, + ACTIONS(3195), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -366344,20 +370986,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7738] = 3, + [9562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5434), 6, + ACTIONS(3217), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5432), 57, + anon_sym_RBRACE, + ACTIONS(3215), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -366412,87 +371054,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7809] = 5, + [9633] = 3, ACTIONS(3), 1, sym_comment, - STATE(2593), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6026), 4, + ACTIONS(3100), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3098), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5535), 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(5537), 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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - [7884] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 6, + ACTIONS(3080), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5428), 57, + ACTIONS(3078), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -366550,20 +371190,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7955] = 3, + [9775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5426), 6, + ACTIONS(5481), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5424), 57, + anon_sym_RBRACE, + ACTIONS(5479), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -366618,10 +371258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [8026] = 3, + [9846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 7, + ACTIONS(5485), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -366629,7 +371269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(5511), 56, + ACTIONS(5483), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -366686,17 +371326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [8097] = 3, + [9917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5422), 6, + ACTIONS(3014), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5420), 57, + ACTIONS(3012), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -366754,20 +371394,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [8168] = 3, + [9988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5509), 7, + ACTIONS(3229), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5507), 56, + ACTIONS(3227), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -366822,10 +371462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [8239] = 3, + [10059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5505), 7, + ACTIONS(5433), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -366833,7 +371473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(5503), 56, + ACTIONS(5431), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -366890,20 +371530,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [8310] = 3, + [10130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 7, + ACTIONS(3225), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2996), 56, + ACTIONS(3223), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -366958,87 +371598,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [8381] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1993), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6049), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5905), 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(5903), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [8456] = 3, + [10201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5409), 6, + ACTIONS(3149), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5407), 57, + ACTIONS(3147), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -367096,153 +371666,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [8527] = 3, + [10272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5426), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5270), 27, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5424), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - anon_sym___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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + 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_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8598] = 3, + sym_literal_suffix, + ACTIONS(5272), 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, + [10343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5497), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5266), 27, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5495), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - anon_sym___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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + 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_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [8669] = 3, + sym_literal_suffix, + ACTIONS(5268), 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, + [10414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5409), 6, + ACTIONS(3153), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5407), 57, + ACTIONS(3151), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -367300,20 +371870,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [8740] = 3, + [10485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5497), 7, + ACTIONS(3161), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5495), 56, + ACTIONS(3159), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -367368,20 +371938,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [8811] = 3, + [10556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 7, + ACTIONS(5513), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5491), 56, + ACTIONS(5511), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -367436,20 +372006,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [8882] = 3, + [10627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 7, + ACTIONS(3165), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5487), 56, + ACTIONS(3163), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -367504,17 +372074,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [8953] = 3, + [10698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 6, + ACTIONS(3181), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3292), 57, + ACTIONS(3179), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -367572,10 +372142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [9024] = 3, + [10769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 7, + ACTIONS(5509), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -367583,7 +372153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(5483), 56, + ACTIONS(5507), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -367640,20 +372210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [9095] = 3, + [10840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5465), 7, + ACTIONS(5566), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5463), 56, + ACTIONS(5564), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -367708,20 +372278,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [9166] = 3, + [10911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5461), 7, + ACTIONS(3185), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5459), 56, + ACTIONS(3183), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -367776,20 +372346,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [9237] = 3, + [10982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5524), 7, + ACTIONS(3197), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5522), 56, + ACTIONS(3195), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -367844,85 +372414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [9308] = 3, + [11053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 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(5232), 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, - [9379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3213), 6, + ACTIONS(5570), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3211), 57, + ACTIONS(5568), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -367980,20 +372482,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [9450] = 3, + [11124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5501), 7, + ACTIONS(5570), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5499), 56, + ACTIONS(5568), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -368048,87 +372550,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [9521] = 5, + [11195] = 3, ACTIONS(3), 1, sym_comment, - STATE(1993), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6049), 4, + ACTIONS(5453), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(5451), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5911), 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(5909), 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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - [9596] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 6, + ACTIONS(2951), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3164), 57, + ACTIONS(2949), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -368186,17 +372686,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [9667] = 3, + [11337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 6, + ACTIONS(3201), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3148), 57, + ACTIONS(3199), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -368254,85 +372754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [9738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5261), 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(5263), 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, - [9809] = 3, + [11408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3142), 6, + ACTIONS(5582), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3140), 57, + ACTIONS(5580), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -368390,17 +372822,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [9880] = 3, + [11479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3134), 6, + ACTIONS(5578), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3132), 57, + ACTIONS(5576), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -368458,10 +372890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [9951] = 3, + [11550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3237), 7, + ACTIONS(5403), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -368469,7 +372901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3235), 56, + ACTIONS(5401), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -368526,20 +372958,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10022] = 3, + [11621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 6, + ACTIONS(5437), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3066), 57, + anon_sym_RBRACE, + ACTIONS(5435), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -368594,10 +373026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10093] = 3, + [11692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 7, + ACTIONS(5441), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -368605,7 +373037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3239), 56, + ACTIONS(5439), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -368662,20 +373094,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10164] = 3, + [11763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 6, + ACTIONS(5407), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3054), 57, + anon_sym_RBRACE, + ACTIONS(5405), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -368730,17 +373162,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10235] = 3, + [11834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 6, + ACTIONS(3006), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3090), 57, + ACTIONS(3004), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -368798,17 +373230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10306] = 3, + [11905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 6, + ACTIONS(3250), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3094), 57, + ACTIONS(3248), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -368866,17 +373298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10377] = 3, + [11976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3114), 6, + ACTIONS(3006), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3112), 57, + ACTIONS(3004), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -368934,10 +373366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10448] = 3, + [12047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 7, + ACTIONS(5449), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -368945,7 +373377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3270), 56, + ACTIONS(5447), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -369002,23 +373434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10519] = 9, + [12118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5288), 1, - anon_sym___attribute__, - ACTIONS(5682), 1, - anon_sym_LBRACE, - ACTIONS(6059), 1, - anon_sym_COLON, - STATE(2232), 1, - sym__enum_base_clause, - STATE(2311), 1, - sym_enumerator_list, - STATE(2424), 1, - sym_attribute_specifier, - ACTIONS(6055), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5297), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369032,6 +373451,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_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -369044,21 +373464,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6057), 29, + sym_literal_suffix, + ACTIONS(5299), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, 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, @@ -369076,129 +373492,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10602] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6061), 1, - sym_identifier, - STATE(2562), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4214), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(4216), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5216), 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(5214), 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, - [10681] = 11, + [12189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6063), 1, - anon_sym___attribute__, - ACTIONS(6065), 1, - anon_sym_LBRACE, - STATE(2214), 1, - sym_attribute_specifier, - STATE(2870), 1, - sym_field_declaration_list, - STATE(7448), 1, - sym_virtual_specifier, - STATE(8156), 1, - sym_base_class_clause, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5284), 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(5286), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3246), 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3244), 57, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, - anon_sym_RBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_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, @@ -369209,35 +373550,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_requires, - [10768] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [12260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 6, + ACTIONS(5407), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3180), 57, + anon_sym_RBRACE, + ACTIONS(5405), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -369292,10 +373638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10839] = 3, + [12331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5446), 7, + ACTIONS(5449), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -369303,7 +373649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(5444), 56, + ACTIONS(5447), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -369360,17 +373706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10910] = 3, + [12402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 6, + ACTIONS(5574), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3194), 57, + ACTIONS(5572), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -369428,231 +373774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10981] = 5, + [12473] = 3, ACTIONS(3), 1, sym_comment, - STATE(2529), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6069), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5946), 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(5944), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [11056] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2530), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6071), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5940), 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(5938), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [11131] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5288), 1, - anon_sym___attribute__, - ACTIONS(5682), 1, - anon_sym_LBRACE, - ACTIONS(6059), 1, - anon_sym_COLON, - STATE(2208), 1, - sym__enum_base_clause, - STATE(2335), 1, - sym_enumerator_list, - STATE(2443), 1, - sym_attribute_specifier, - ACTIONS(6073), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6075), 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, - [11214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3221), 6, + ACTIONS(2999), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3219), 57, + ACTIONS(2997), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -369710,89 +373842,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11285] = 29, + [12544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, + ACTIONS(3250), 7, anon_sym_LPAREN2, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6081), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(6083), 1, anon_sym_AMP_AMP, - ACTIONS(6085), 1, - anon_sym_AMP, - ACTIONS(6087), 1, anon_sym_COLON_COLON, - ACTIONS(6089), 1, - anon_sym_LBRACK, - STATE(3802), 1, - sym_parameter_list, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6263), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6854), 1, - sym__declarator, - STATE(6956), 1, - sym__abstract_declarator, - STATE(8562), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3153), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3758), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(6079), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3248), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, anon_sym___extension__, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -369804,17 +373890,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [11408] = 3, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [12615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3221), 6, + ACTIONS(2963), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3219), 57, + ACTIONS(2961), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -369872,17 +373978,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11479] = 3, + [12686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 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_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + 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(5264), 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, + [12757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 6, + ACTIONS(2967), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2996), 57, + ACTIONS(2965), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -369940,20 +374114,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11550] = 3, + [12828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 6, + ACTIONS(3213), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2989), 57, + anon_sym_RBRACE, + ACTIONS(3211), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -370008,20 +374182,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11621] = 3, + [12899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 7, + ACTIONS(3112), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5428), 56, + ACTIONS(3110), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -370076,14 +374250,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11692] = 5, + [12970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5326), 1, + ACTIONS(5356), 1, anon_sym_LBRACK, - STATE(2725), 1, + STATE(2737), 1, sym_new_declarator, - ACTIONS(6091), 27, + ACTIONS(6118), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -370111,7 +374285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6093), 34, + ACTIONS(6120), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370146,17 +374320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11767] = 3, + [13045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3253), 6, + ACTIONS(3124), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3251), 57, + ACTIONS(3122), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -370214,20 +374388,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11838] = 3, + [13116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5434), 7, + ACTIONS(3189), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5432), 56, + ACTIONS(3187), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -370282,20 +374456,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11909] = 3, + [13187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 7, + ACTIONS(2995), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5428), 56, + ACTIONS(2993), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -370350,20 +374524,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11980] = 3, + [13258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5434), 7, + ACTIONS(3128), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5432), 56, + ACTIONS(3126), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -370418,20 +374592,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [12051] = 3, + [13329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3282), 6, + ACTIONS(2951), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3280), 57, + anon_sym_RBRACE, + ACTIONS(2949), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -370486,17 +374660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [12122] = 3, + [13400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 6, + ACTIONS(3157), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3270), 57, + ACTIONS(3155), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -370554,20 +374728,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [12193] = 3, + [13471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 6, + ACTIONS(3296), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3231), 57, + anon_sym_RBRACE, + ACTIONS(3294), 56, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -370622,17 +374796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [12264] = 3, + [13542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 6, + ACTIONS(3173), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3227), 57, + ACTIONS(3171), 57, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -370690,30 +374864,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [12335] = 3, + [13613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5297), 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_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_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(5299), 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, + [13683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 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(5264), 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, + [13753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5297), 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(5299), 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, + [13823] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2692), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6122), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5278), 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_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, + sym_auto, + anon_sym_decltype, + ACTIONS(5280), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [13897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3192), 6, + ACTIONS(2134), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3190), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2136), 55, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -370743,6 +375187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -370753,35 +375199,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [12406] = 3, + anon_sym_concept, + [13967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 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_LBRACK, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(4016), 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_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [14037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 6, + ACTIONS(4993), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3176), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(4991), 55, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -370811,6 +375321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -370821,35 +375333,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [12477] = 3, + anon_sym_concept, + [14107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3122), 6, + ACTIONS(5558), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3120), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(5556), 55, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -370879,6 +375388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -370889,35 +375400,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [12548] = 3, + anon_sym_concept, + [14177] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2697), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6125), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5280), 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(5278), 37, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [14251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 6, + ACTIONS(5030), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3152), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(5028), 55, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -370947,6 +375524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -370957,35 +375536,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [12619] = 3, + anon_sym_concept, + [14321] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2722), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5278), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6128), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5766), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_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(5769), 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_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, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [14397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 6, + ACTIONS(5005), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3160), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(5003), 55, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -371015,6 +375661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -371025,35 +375673,453 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [12690] = 3, + anon_sym_concept, + [14467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5297), 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(5299), 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, + [14537] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 6, + ACTIONS(5354), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6131), 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___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(6133), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + [14621] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2709), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6143), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5970), 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_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, + sym_auto, + anon_sym_decltype, + ACTIONS(5968), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [14695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6145), 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_LBRACK, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6147), 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_LBRACK_LBRACK, - ACTIONS(3160), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [14765] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2720), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6149), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5976), 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_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, + sym_auto, + anon_sym_decltype, + ACTIONS(5974), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [14839] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6151), 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___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(6153), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + [14923] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5533), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(5531), 55, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -371083,6 +376149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -371093,103 +376161,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [12761] = 3, + anon_sym_concept, + [14995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5266), 26, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3203), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + 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(5268), 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, + [15065] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2692), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6155), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + ACTIONS(6022), 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_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, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12832] = 3, + ACTIONS(6020), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [15139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5409), 7, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5562), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(5407), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(5560), 55, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -371219,6 +376353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -371229,103 +376365,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [12903] = 3, + anon_sym_concept, + [15211] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5409), 7, + STATE(2730), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6157), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5762), 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_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, + sym_auto, + anon_sym_decltype, + ACTIONS(5764), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [15285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4018), 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_LBRACK, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(4020), 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_COLON_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(5407), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [15355] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + STATE(1974), 1, + sym_template_argument_list, + STATE(2869), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6159), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(5593), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(5595), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [12974] = 3, + anon_sym_DASH_GT_STAR, + [15433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6161), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6163), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [15503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3276), 6, + ACTIONS(5026), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3274), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(5024), 55, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -371355,6 +376694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -371365,35 +376706,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [13045] = 3, + anon_sym_concept, + [15573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 6, + ACTIONS(5270), 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_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_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(5272), 36, + anon_sym_DOT_DOT_DOT, + 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_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, + [15643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5266), 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_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_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(5268), 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, + [15713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 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(5264), 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, + [15783] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, anon_sym_COLON_COLON, + ACTIONS(5562), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LBRACK_LBRACK, - ACTIONS(3306), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(5560), 55, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -371423,6 +376963,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -371433,103 +376975,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [13116] = 3, + anon_sym_concept, + [15855] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3304), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3302), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + STATE(2692), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6155), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + ACTIONS(6028), 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_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, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13187] = 3, + ACTIONS(6026), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [15929] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3300), 6, + ACTIONS(6169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6171), 1, + anon_sym_AMP_AMP, + ACTIONS(6173), 1, + anon_sym_or, + ACTIONS(6175), 1, + anon_sym_and, + ACTIONS(6167), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3298), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(6165), 53, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -371569,103 +377115,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [13258] = 3, + anon_sym_concept, + [16007] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3286), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3284), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + STATE(2722), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6128), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(5280), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_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(5278), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_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_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13329] = 3, + [16081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 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_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_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(5264), 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, + [16151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 6, + ACTIONS(5001), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3259), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(4999), 55, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -371695,6 +377306,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -371705,35 +377318,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [13400] = 3, + anon_sym_concept, + [16221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 6, + ACTIONS(5037), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3239), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(5035), 55, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -371763,6 +377373,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -371773,48 +377385,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [13471] = 3, + anon_sym_concept, + [16291] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3237), 6, + ACTIONS(5354), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6177), 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___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(6179), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3235), 57, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + [16375] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6185), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6181), 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_LBRACK, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6183), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_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, + [16447] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2692), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5986), 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___extension__, - anon_sym_typedef, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5988), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [16521] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6187), 1, + sym_identifier, + ACTIONS(6191), 1, + sym_primitive_type, + STATE(2744), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6189), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(5813), 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_static, - 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_GT2, + ACTIONS(5815), 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___extension__, + anon_sym___attribute__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -371826,50 +377657,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [16599] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2692), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5964), 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_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, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13542] = 3, + ACTIONS(5962), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [16673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5422), 7, + ACTIONS(2184), 7, 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_RBRACE, - ACTIONS(5420), 56, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2186), 55, anon_sym_AMP, anon_sym___extension__, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -371899,6 +377791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -371909,15 +377803,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [13613] = 3, + anon_sym_concept, + [16743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 28, + ACTIONS(6193), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371927,13 +377819,155 @@ 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___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(6195), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [16813] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6197), 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___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(6199), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [16895] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6205), 1, + anon_sym_LT, + STATE(2546), 1, + sym_template_argument_list, + ACTIONS(6201), 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_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -371945,16 +377979,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5232), 34, + ACTIONS(6203), 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -371962,6 +378005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -371970,25 +378014,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + [16969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 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(5272), 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_GT2, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [13683] = 5, + anon_sym_DASH_GT_STAR, + [17039] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6099), 1, + ACTIONS(6208), 1, + sym_identifier, + ACTIONS(6212), 1, + sym_primitive_type, + STATE(2699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6210), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5813), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_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(5815), 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_LT_EQ, anon_sym_LT, - STATE(2507), 1, - sym_template_argument_list, - ACTIONS(6095), 26, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6214), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -372000,6 +378167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, @@ -372015,7 +378183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6097), 34, + ACTIONS(6216), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -372030,6 +378198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -372050,10 +378219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [13757] = 3, + [17187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 7, + ACTIONS(5562), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -372061,7 +378230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4992), 55, + ACTIONS(5560), 55, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -372117,11 +378286,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_concept, - [13827] = 3, + [17257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6102), 27, - aux_sym_preproc_elif_token1, + ACTIONS(4997), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4995), 55, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [17327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5266), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372131,12 +378366,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -372148,26 +378384,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6104), 35, + sym_literal_suffix, + ACTIONS(5268), 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, + [17397] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(6092), 1, + anon_sym_LT, + STATE(2859), 1, + sym_template_argument_list, + ACTIONS(4161), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372184,10 +378459,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [13897] = 3, + ACTIONS(5397), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + 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, + [17473] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(6218), 1, + anon_sym___attribute__, + ACTIONS(6220), 1, + anon_sym_LBRACE, + STATE(3151), 1, + sym_field_declaration_list, + STATE(3377), 1, + sym_attribute_specifier, + STATE(7449), 1, + sym_virtual_specifier, + STATE(8403), 1, + sym_base_class_clause, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5315), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(5317), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [17559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6106), 28, + ACTIONS(6222), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -372203,7 +378584,6 @@ 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_and_eq, anon_sym_or_eq, @@ -372216,7 +378596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6108), 34, + ACTIONS(6224), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -372231,8 +378611,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -372251,28 +378632,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [13967] = 3, + [17629] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 26, + STATE(2697), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5278), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6125), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5766), 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(5769), 35, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -372280,17 +378697,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5255), 36, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17705] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(6226), 1, + anon_sym_LT, + STATE(2859), 1, + sym_template_argument_list, + ACTIONS(5012), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -372308,20 +378741,58 @@ 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, - [14037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5257), 26, + ACTIONS(5007), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + 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, + [17781] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6229), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372346,19 +378817,23 @@ 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(5259), 36, + sym_identifier, + ACTIONS(6231), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_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_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372371,32 +378846,21 @@ 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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [14107] = 3, + [17865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4966), 7, + ACTIONS(6171), 1, + anon_sym_AMP_AMP, + ACTIONS(6175), 1, + anon_sym_and, + ACTIONS(6235), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4964), 55, + ACTIONS(6233), 54, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -372439,7 +378903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, anon_sym_or, - anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -372452,10 +378915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_concept, - [14177] = 3, + [17939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 26, + ACTIONS(6237), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372470,6 +378934,7 @@ 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_and_eq, anon_sym_or_eq, @@ -372481,10 +378946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5232), 36, + sym_identifier, + ACTIONS(6239), 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, @@ -372492,7 +378962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372509,31 +378982,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [14247] = 7, + [18009] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - STATE(1935), 1, - sym_template_argument_list, - STATE(2863), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6110), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5566), 19, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6241), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372547,25 +379016,34 @@ 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_DOT, - anon_sym_DASH_GT, - ACTIONS(5568), 36, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6243), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372577,110 +379055,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [14325] = 3, + [18093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5270), 28, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5382), 55, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_GT, + anon_sym_GT_EQ, + anon_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_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [14395] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2704), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5246), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6112), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5786), 27, + sym_literal_suffix, + ACTIONS(5272), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -372689,7 +379104,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -372697,8 +379111,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - ACTIONS(5789), 28, + 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, + [18163] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6245), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372723,14 +379165,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [14471] = 3, + sym_identifier, + ACTIONS(6247), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [18245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 26, + ACTIONS(6249), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372744,6 +379214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -372755,19 +379227,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5232), 36, + sym_identifier, + ACTIONS(6251), 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_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372783,41 +379262,23 @@ 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, - [14541] = 7, + anon_sym_DASH_GT, + [18315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6115), 1, - sym_identifier, - ACTIONS(6119), 1, - sym_primitive_type, - STATE(2676), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6117), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5636), 27, + ACTIONS(5026), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -372835,8 +379296,8 @@ 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, - ACTIONS(5638), 28, + anon_sym_DASH_GT, + ACTIONS(5024), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372852,6 +379313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -372862,13 +379324,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - [14619] = 3, + anon_sym_final, + anon_sym_override, + [18384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 26, + ACTIONS(6253), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372894,10 +379359,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5263), 36, + sym_identifier, + ACTIONS(6255), 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, @@ -372905,7 +379375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372922,20 +379395,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, - [14689] = 3, + [18453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 28, + ACTIONS(5014), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372945,13 +379409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -372963,16 +379426,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5255), 34, + ACTIONS(5019), 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -372980,6 +379452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -372988,37 +379461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [14759] = 10, + [18522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6121), 26, + ACTIONS(6257), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -373044,8 +379490,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6123), 27, + ACTIONS(6259), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373053,6 +379500,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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -373060,7 +379508,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373073,93 +379523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [14843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5257), 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(5259), 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, - [14913] = 10, + [18591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6133), 26, + ACTIONS(5014), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -373185,8 +379556,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6135), 27, + ACTIONS(5019), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373194,6 +379566,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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -373201,7 +379574,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373214,17 +379589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [14997] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [18660] = 3, ACTIONS(3), 1, sym_comment, - STATE(2697), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6137), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5590), 28, + ACTIONS(5228), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373251,22 +379624,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5592), 29, + ACTIONS(5230), 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_elif_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373283,17 +379659,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15071] = 5, + [18729] = 9, ACTIONS(3), 1, sym_comment, - STATE(2687), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5995), 28, + ACTIONS(5996), 1, + anon_sym___attribute__, + ACTIONS(6261), 1, + anon_sym_LBRACE, + ACTIONS(6263), 1, + anon_sym_COLON, + STATE(2935), 1, + sym__enum_base_clause, + STATE(2949), 1, + sym_enumerator_list, + STATE(3076), 1, + sym_attribute_specifier, + ACTIONS(6114), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373307,7 +379688,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -373322,7 +379702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5993), 29, + ACTIONS(6116), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -373334,7 +379714,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, @@ -373352,17 +379731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15145] = 5, + [18810] = 5, ACTIONS(3), 1, sym_comment, - STATE(2687), 1, + STATE(2730), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6139), 4, + ACTIONS(6157), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5991), 28, + ACTIONS(5418), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373376,7 +379755,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -373391,7 +379769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5989), 29, + ACTIONS(5420), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -373421,17 +379799,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15219] = 5, + [18883] = 3, ACTIONS(3), 1, sym_comment, - STATE(2687), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6141), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5246), 28, + ACTIONS(6265), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373458,22 +379830,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5248), 29, + ACTIONS(6267), 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_elif_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373490,16 +379865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15293] = 6, + [18952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6035), 1, - anon_sym_LT, - STATE(2816), 1, - sym_template_argument_list, - ACTIONS(4163), 29, + ACTIONS(4993), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -373511,6 +379880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -373529,7 +379899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5338), 30, + ACTIONS(4991), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373540,6 +379910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, @@ -373560,17 +379931,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - [15369] = 5, + [19021] = 3, ACTIONS(3), 1, sym_comment, - STATE(2685), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6144), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5946), 28, + ACTIONS(6269), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373597,22 +379962,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5944), 29, + ACTIONS(6271), 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_elif_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373629,10 +379997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15443] = 3, + [19090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6146), 28, + ACTIONS(6273), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -373648,7 +380016,6 @@ 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_and_eq, anon_sym_or_eq, @@ -373661,7 +380028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6148), 34, + ACTIONS(6275), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373676,8 +380043,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -373696,86 +380063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15513] = 5, + [19159] = 3, ACTIONS(3), 1, sym_comment, - STATE(2686), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6150), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5940), 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_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, - sym_auto, - anon_sym_decltype, - ACTIONS(5938), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(6277), 27, aux_sym_preproc_elif_token1, - anon_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, - [15587] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2687), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5911), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373802,22 +380094,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5909), 29, + ACTIONS(6279), 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_elif_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -373834,146 +380129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5384), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(5382), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [15733] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5384), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(5382), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [15805] = 3, + [19228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 28, + ACTIONS(5416), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -373989,7 +380148,6 @@ 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_and_eq, anon_sym_or_eq, @@ -374002,7 +380160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4018), 34, + ACTIONS(5414), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -374017,8 +380175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -374037,16 +380195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15875] = 6, + [19297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6152), 1, - anon_sym_LT, - STATE(2816), 1, - sym_template_argument_list, - ACTIONS(4975), 29, + ACTIONS(5030), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -374058,6 +380210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -374076,7 +380229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4968), 30, + ACTIONS(5028), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374087,6 +380240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, @@ -374107,46 +380261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - [15951] = 5, + [19366] = 3, ACTIONS(3), 1, sym_comment, - STATE(2687), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5905), 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_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, - sym_auto, - anon_sym_decltype, - ACTIONS(5903), 29, + ACTIONS(5005), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -374158,6 +380276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -374176,24 +380295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [16025] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6155), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5003), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374209,6 +380311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -374218,213 +380321,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - ACTIONS(6157), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [16107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2142), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2144), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [16177] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2700), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6159), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5248), 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(5246), 37, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_requires, - [16251] = 3, + [19435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 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(5263), 34, + ACTIONS(4997), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -374433,43 +380352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_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, - [16321] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, + anon_sym_CARET_EQ, + anon_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(6162), 26, - aux_sym_preproc_elif_token1, + ACTIONS(4995), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374485,6 +380377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -374494,41 +380387,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6164), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [16403] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [19504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6166), 28, + ACTIONS(6281), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -374544,7 +380412,6 @@ 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_and_eq, anon_sym_or_eq, @@ -374557,7 +380424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6168), 34, + ACTIONS(6283), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -374572,8 +380439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -374592,26 +380459,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [16473] = 5, + [19573] = 3, ACTIONS(3), 1, sym_comment, - STATE(2704), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6112), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5248), 27, + ACTIONS(5001), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -374629,8 +380492,8 @@ 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, - ACTIONS(5246), 30, + anon_sym_DASH_GT, + ACTIONS(4999), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374646,7 +380509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - sym_primitive_type, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -374657,30 +380520,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_auto, anon_sym_decltype, - [16547] = 10, + anon_sym_final, + anon_sym_override, + [19642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6170), 26, + ACTIONS(2136), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -374706,8 +380554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6172), 27, + ACTIONS(2134), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -374715,6 +380564,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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -374722,7 +380572,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374735,65 +380587,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [16631] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [19711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 1, - sym_identifier, - ACTIONS(6178), 1, - sym_primitive_type, - STATE(2720), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6176), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5636), 20, + ACTIONS(5037), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_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_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, - anon_sym_GT2, - ACTIONS(5638), 35, + ACTIONS(5035), 31, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___extension__, anon_sym___attribute__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -374801,32 +380652,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_requires, - [16709] = 11, + [19780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6180), 1, - anon_sym___attribute__, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(3130), 1, - sym_field_declaration_list, - STATE(3344), 1, - sym_attribute_specifier, - STATE(7603), 1, - sym_virtual_specifier, - STATE(8366), 1, - sym_base_class_clause, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5284), 19, + ACTIONS(3924), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374840,23 +380675,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5286), 34, + sym_identifier, + ACTIONS(3920), 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -374868,25 +380718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [16795] = 4, + anon_sym_DASH_GT, + [19849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6184), 28, + ACTIONS(6285), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -374902,7 +380742,6 @@ 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_and_eq, anon_sym_or_eq, @@ -374915,7 +380754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6186), 33, + ACTIONS(6287), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -374931,6 +380770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -374949,10 +380789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [16867] = 3, + [19918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 26, + ACTIONS(6289), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374966,6 +380807,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_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -374977,19 +380819,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5263), 36, + sym_identifier, + ACTIONS(6291), 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375005,37 +380854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [16937] = 10, + anon_sym_DASH_GT, + [19987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6190), 26, + ACTIONS(6293), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -375061,8 +380884,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6192), 27, + ACTIONS(6295), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375070,6 +380894,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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -375077,7 +380902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -375090,672 +380917,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [17021] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6198), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6200), 1, - anon_sym_AMP_AMP, - ACTIONS(6202), 1, - anon_sym_or, - ACTIONS(6204), 1, - anon_sym_and, - ACTIONS(6196), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6194), 53, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17099] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5457), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(5455), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5010), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5008), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4990), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4988), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4998), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4996), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17381] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [20056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5000), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + STATE(2778), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6297), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5006), 7, + ACTIONS(5280), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5004), 55, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5380), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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(5278), 31, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5378), 55, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_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_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_EQ, sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + 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_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17591] = 3, + [20129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6300), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2148), 55, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - anon_sym___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, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, 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_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17661] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2700), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5246), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6159), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5786), 20, + ACTIONS(6302), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5789), 35, + [20198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6304), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___extension__, anon_sym___attribute__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -375763,84 +381085,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [17737] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6200), 1, - anon_sym_AMP_AMP, - ACTIONS(6204), 1, - anon_sym_and, - ACTIONS(6208), 6, + sym_identifier, + ACTIONS(6306), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6206), 54, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [17811] = 3, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [20267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 27, + ACTIONS(6308), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -375868,7 +381152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6212), 35, + ACTIONS(6310), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375883,7 +381167,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -375904,10 +381187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [17881] = 3, + [20336] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 28, + ACTIONS(6312), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6314), 1, + anon_sym_AMP_AMP, + ACTIONS(6316), 1, + anon_sym_or, + ACTIONS(6318), 1, + anon_sym_and, + ACTIONS(6165), 25, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -375923,20 +381214,17 @@ 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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4022), 34, + ACTIONS(6167), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375945,14 +381233,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -375971,26 +381257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [17951] = 10, + [20413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6214), 26, + ACTIONS(6320), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -376016,8 +381286,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6216), 27, + ACTIONS(6322), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -376025,6 +381296,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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -376032,7 +381304,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -376045,10 +381319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [18035] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [20482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 27, + ACTIONS(5179), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -376076,7 +381354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6220), 35, + ACTIONS(5181), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -376091,7 +381369,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -376112,10 +381389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [18105] = 3, + [20551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 26, + ACTIONS(6324), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376129,6 +381407,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_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -376140,19 +381419,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5259), 36, + sym_identifier, + ACTIONS(6326), 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -376168,21 +381454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [18175] = 3, + anon_sym_DASH_GT, + [20620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 26, + ACTIONS(5266), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376192,11 +381468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -376207,18 +381485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(5255), 36, + ACTIONS(5268), 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, @@ -376227,7 +381502,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -376235,21 +381509,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + anon_sym_GT2, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [18245] = 3, + [20689] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 27, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(6106), 1, + anon_sym_LBRACK, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_AMP, + STATE(4295), 1, + sym_parameter_list, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6348), 1, + sym__scope_resolution, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6904), 1, + sym__declarator, + STATE(7156), 1, + sym__abstract_declarator, + STATE(8593), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(6096), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3535), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3848), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [20810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6334), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -376277,7 +381644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6224), 35, + ACTIONS(6336), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -376292,7 +381659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -376313,10 +381679,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [18315] = 3, + [20879] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 27, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + STATE(1974), 1, + sym_template_argument_list, + STATE(2936), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6338), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5593), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376333,18 +381710,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(5255), 34, + ACTIONS(5595), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376352,6 +381722,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, @@ -376363,26 +381735,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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [18384] = 3, + [20956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 27, + ACTIONS(6340), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -376410,7 +381780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6228), 34, + ACTIONS(6342), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -376445,10 +381815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [18453] = 3, + [21025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 27, + ACTIONS(5348), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -376476,7 +381846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5182), 34, + ACTIONS(2899), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -376511,10 +381881,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [18522] = 3, + [21094] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 27, + STATE(2778), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5278), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6297), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5766), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(5769), 29, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376529,6 +381935,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_EQ, anon_sym_GT_GT_EQ, anon_sym_and_eq, @@ -376541,46 +381948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5259), 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, - [18591] = 3, + sym_auto, + anon_sym_decltype, + [21169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 27, + ACTIONS(6340), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -376608,7 +381981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6232), 34, + ACTIONS(6342), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -376643,76 +382016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [18660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4994), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_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(4992), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - 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, - [18729] = 3, + [21238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 27, + ACTIONS(6344), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -376740,7 +382047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6236), 34, + ACTIONS(6346), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -376775,10 +382082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [18798] = 3, + [21307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 27, + ACTIONS(2186), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -376806,7 +382113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6240), 34, + ACTIONS(2184), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -376841,41 +382148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [18867] = 3, + [21376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4966), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(6348), 27, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_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(4964), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376891,7 +382168,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -376903,28 +382179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [18936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5010), 30, + ACTIONS(6350), 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_elif_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_COLON_COLON, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -376941,60 +382214,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5008), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - 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, - [19005] = 7, + [21445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 1, - sym_identifier, - ACTIONS(6246), 1, - sym_primitive_type, - STATE(2782), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5636), 25, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5562), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -377004,6 +382240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -377012,8 +382249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5638), 29, + ACTIONS(5560), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377023,14 +382259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -377041,12 +382276,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - [19082] = 3, + anon_sym_final, + anon_sym_override, + [21516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 27, + ACTIONS(6352), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -377074,7 +382312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6250), 34, + ACTIONS(6354), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -377109,76 +382347,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [19151] = 3, + [21585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6252), 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, + ACTIONS(6360), 1, 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(6254), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [19220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6256), 27, + STATE(2835), 1, + sym_template_argument_list, + ACTIONS(6356), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -377190,7 +382366,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, @@ -377206,7 +382381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6258), 34, + ACTIONS(6358), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -377224,7 +382399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377241,10 +382415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [19289] = 3, + [21658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 27, + ACTIONS(5171), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -377272,7 +382446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6262), 34, + ACTIONS(5173), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -377307,10 +382481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [19358] = 3, + [21727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 30, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5562), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -377322,7 +382498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -377341,7 +382516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4988), 31, + ACTIONS(5560), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377373,10 +382548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - [19427] = 3, + [21798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6264), 27, + ACTIONS(5171), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -377404,7 +382579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6266), 34, + ACTIONS(5173), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -377439,24 +382614,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [19496] = 3, + [21867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 30, + ACTIONS(5175), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5177), 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_elif_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_COLON_COLON, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377473,7 +382680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4996), 31, + [21936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6363), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377489,7 +382700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -377501,28 +382711,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [19565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 30, + ACTIONS(6365), 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_elif_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_COLON_COLON, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377539,7 +382746,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5000), 31, + [22005] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(6106), 1, + anon_sym_LBRACK, + ACTIONS(6367), 1, + anon_sym_STAR, + ACTIONS(6369), 1, + anon_sym_AMP_AMP, + ACTIONS(6371), 1, + anon_sym_AMP, + STATE(4175), 1, + sym_parameter_list, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6348), 1, + sym__scope_resolution, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6904), 1, + sym__declarator, + STATE(7166), 1, + sym__abstract_declarator, + STATE(8593), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(6096), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3478), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3848), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [22126] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(6373), 1, + anon_sym___attribute__, + ACTIONS(6375), 1, + anon_sym_LBRACE, + STATE(3239), 1, + sym_field_declaration_list, + STATE(3520), 1, + sym_attribute_specifier, + STATE(7435), 1, + sym_virtual_specifier, + STATE(8405), 1, + sym_base_class_clause, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5315), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377549,32 +382868,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + 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_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5317), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [19634] = 3, + anon_sym_GT2, + [22211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 27, + ACTIONS(6377), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -377602,7 +382943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6270), 34, + ACTIONS(6379), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -377637,41 +382978,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [19703] = 3, + [22280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(6381), 27, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_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(5004), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377687,7 +382998,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -377699,28 +383009,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [19772] = 5, + ACTIONS(6383), 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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [22349] = 3, ACTIONS(3), 1, sym_comment, - STATE(2750), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6272), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5248), 25, + ACTIONS(5558), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -377730,6 +383069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -377738,8 +383078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5246), 31, + ACTIONS(5556), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377749,15 +383088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - sym_primitive_type, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -377771,27 +383108,24 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [19845] = 11, + anon_sym_final, + anon_sym_override, + [22418] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6275), 1, + ACTIONS(5996), 1, anon_sym___attribute__, - ACTIONS(6277), 1, + ACTIONS(6261), 1, anon_sym_LBRACE, - STATE(3160), 1, - sym_field_declaration_list, - STATE(3479), 1, + ACTIONS(6263), 1, + anon_sym_COLON, + STATE(2933), 1, + sym__enum_base_clause, + STATE(2951), 1, + sym_enumerator_list, + STATE(3123), 1, sym_attribute_specifier, - STATE(7403), 1, - sym_virtual_specifier, - STATE(8230), 1, - sym_base_class_clause, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5284), 20, + ACTIONS(6108), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377801,25 +383135,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_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(5286), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6110), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -377828,28 +383173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [19930] = 3, + [22499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6279), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5270), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377859,12 +383195,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -377875,26 +383212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6281), 34, + sym_literal_suffix, + ACTIONS(5272), 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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377902,7 +383229,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -377911,10 +383237,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [19999] = 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, + [22568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6283), 27, + ACTIONS(6385), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -377942,7 +383279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6285), 34, + ACTIONS(6387), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -377977,10 +383314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [20068] = 3, + [22637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 27, + ACTIONS(5195), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -378008,7 +383345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6289), 34, + ACTIONS(5197), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378043,11 +383380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [20137] = 3, + [22706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5297), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378057,12 +383393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -378073,26 +383410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6293), 34, + sym_literal_suffix, + ACTIONS(5299), 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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378100,7 +383427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -378109,10 +383435,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [20206] = 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, + [22775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 27, + ACTIONS(5246), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -378140,7 +383477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6297), 34, + ACTIONS(5248), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378175,10 +383512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [20275] = 3, + [22844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6299), 27, + ACTIONS(5171), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -378206,7 +383543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6301), 34, + ACTIONS(5173), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378241,10 +383578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [20344] = 3, + [22913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 27, + ACTIONS(6389), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -378272,7 +383609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6305), 34, + ACTIONS(6391), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378307,10 +383644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [20413] = 3, + [22982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 27, + ACTIONS(6393), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -378338,7 +383675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6309), 34, + ACTIONS(6395), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378373,82 +383710,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [20482] = 8, + [23051] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - STATE(2863), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2895), 1, - sym_template_argument_list, - ACTIONS(6110), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4137), 18, + ACTIONS(6071), 1, + anon_sym___attribute__, + ACTIONS(6397), 1, + anon_sym_LBRACE, + STATE(2267), 1, + sym_attribute_specifier, + STATE(2894), 1, + sym_enumerator_list, + ACTIONS(5788), 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_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_LT, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4145), 35, + ACTIONS(5790), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [20561] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [23128] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6313), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5659), 1, + anon_sym_LBRACE, + ACTIONS(6399), 1, + anon_sym___attribute__, + ACTIONS(6401), 1, + anon_sym_COLON, + STATE(2220), 1, + sym__enum_base_clause, + STATE(2396), 1, + sym_enumerator_list, + STATE(2494), 1, + sym_attribute_specifier, + ACTIONS(6108), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378462,27 +383809,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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6315), 34, + ACTIONS(6110), 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, @@ -378493,7 +383828,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378505,15 +383839,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, - [20630] = 3, + sym_auto, + anon_sym_decltype, + [23209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 27, + ACTIONS(6403), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -378541,7 +383883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4970), 34, + ACTIONS(6405), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378576,10 +383918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [20699] = 3, + [23278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 27, + ACTIONS(6407), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -378607,7 +383949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5388), 34, + ACTIONS(6409), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378642,10 +383984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [20768] = 3, + [23347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6317), 27, + ACTIONS(5183), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -378673,7 +384015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6319), 34, + ACTIONS(5185), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378708,142 +384050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [20837] = 3, + [23416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6321), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6323), 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, + ACTIONS(6314), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [20906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2148), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, + ACTIONS(6318), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(2146), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [20975] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6325), 27, + ACTIONS(6233), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -378864,14 +384078,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6327), 34, + ACTIONS(6235), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378881,7 +384094,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -378906,10 +384118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21044] = 3, + [23489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6329), 27, + ACTIONS(5201), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -378937,7 +384149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6331), 34, + ACTIONS(5203), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378972,10 +384184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21113] = 3, + [23558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6184), 27, + ACTIONS(6411), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -379003,7 +384215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6186), 34, + ACTIONS(6413), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379038,10 +384250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21182] = 3, + [23627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6333), 27, + ACTIONS(5167), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -379069,7 +384281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6335), 34, + ACTIONS(5169), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379104,10 +384316,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21251] = 3, + [23696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6337), 27, + ACTIONS(6415), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -379135,7 +384347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6339), 34, + ACTIONS(6417), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379170,10 +384382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21320] = 3, + [23765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 27, + ACTIONS(6419), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -379201,7 +384413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2142), 34, + ACTIONS(6421), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379236,10 +384448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21389] = 3, + [23834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6341), 27, + ACTIONS(5238), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -379267,7 +384479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6343), 34, + ACTIONS(5240), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379302,150 +384514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21458] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - ACTIONS(6345), 1, - anon_sym_LBRACE, - ACTIONS(6347), 1, - anon_sym_COLON, - STATE(2886), 1, - sym__enum_base_clause, - STATE(2939), 1, - sym_enumerator_list, - STATE(3056), 1, - sym_attribute_specifier, - ACTIONS(6073), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6075), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [21539] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2697), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6137), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5535), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5537), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [21612] = 3, + [23903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 27, + ACTIONS(6423), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -379473,7 +384545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5186), 34, + ACTIONS(6425), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379508,10 +384580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21681] = 3, + [23972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 27, + ACTIONS(6427), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -379539,7 +384611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5206), 34, + ACTIONS(6429), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379574,10 +384646,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21750] = 3, + [24041] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 27, + ACTIONS(6071), 1, + anon_sym___attribute__, + ACTIONS(6397), 1, + anon_sym_LBRACE, + STATE(2250), 1, + sym_attribute_specifier, + STATE(2864), 1, + sym_enumerator_list, + ACTIONS(5655), 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(5657), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6431), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -379605,7 +384747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3922), 34, + ACTIONS(6433), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379640,10 +384782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21819] = 3, + [24187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 27, + ACTIONS(6435), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -379671,7 +384813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5210), 34, + ACTIONS(6437), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379706,41 +384848,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21888] = 3, + [24256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(6439), 27, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_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(5378), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379756,7 +384868,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_COLON, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -379768,29 +384879,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [21957] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5384), 29, + ACTIONS(6441), 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_elif_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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -379807,7 +384914,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5382), 31, + [24325] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5990), 1, + sym_literal_suffix, + STATE(2518), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(4194), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4196), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4145), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379821,12 +384948,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_EQ, - anon_sym_COLON, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -379834,33 +384956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [22028] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2750), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5246), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6272), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5786), 25, + anon_sym_DASH_GT, + ACTIONS(4137), 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_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -379869,6 +384975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -379876,50 +384983,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, - ACTIONS(5789), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_auto, - anon_sym_decltype, - [22103] = 7, + anon_sym_DASH_GT_STAR, + [24402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6351), 1, - anon_sym_AMP_AMP, - ACTIONS(6353), 1, - anon_sym_or, - ACTIONS(6355), 1, - anon_sym_and, - ACTIONS(6194), 25, + ACTIONS(6443), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -379939,13 +385007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6196), 32, + ACTIONS(6445), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379954,6 +385024,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -379978,10 +385050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [22180] = 3, + [24471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 27, + ACTIONS(5014), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -380009,7 +385081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6359), 34, + ACTIONS(5019), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -380044,42 +385116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [22249] = 4, + [24540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5384), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - ACTIONS(5382), 31, + ACTIONS(5262), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380089,13 +385129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -380106,15 +385146,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [22320] = 3, + sym_literal_suffix, + ACTIONS(5264), 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, + [24609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 27, + ACTIONS(6181), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -380142,7 +385213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5178), 34, + ACTIONS(6183), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -380177,22 +385248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [22389] = 9, + [24678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - ACTIONS(6345), 1, - anon_sym_LBRACE, - ACTIONS(6347), 1, - anon_sym_COLON, - STATE(2910), 1, - sym__enum_base_clause, - STATE(2919), 1, - sym_enumerator_list, - STATE(3070), 1, - sym_attribute_specifier, - ACTIONS(6055), 27, + ACTIONS(5242), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380206,6 +385266,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_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -380218,21 +385279,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6057), 28, + ACTIONS(5244), 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_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -380249,10 +385314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [22470] = 3, + [24747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6361), 27, + ACTIONS(6447), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -380280,7 +385345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6363), 34, + ACTIONS(6449), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -380315,10 +385380,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [22539] = 3, + [24816] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 27, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(6451), 1, + anon_sym_LT, + STATE(2869), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2912), 1, + sym_template_argument_list, + ACTIONS(6159), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4135), 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(4143), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [24895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -380346,7 +385482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6367), 34, + ACTIONS(5019), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -380381,12 +385517,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [22608] = 4, + [24964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_COLON_COLON, - ACTIONS(5457), 29, + ACTIONS(5533), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -380416,7 +385552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5455), 31, + ACTIONS(5531), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380448,10 +385584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - [22679] = 3, + [25035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6337), 27, + ACTIONS(5250), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -380479,7 +385615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6339), 34, + ACTIONS(5252), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -380514,10 +385650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [22748] = 3, + [25104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6369), 27, + ACTIONS(6453), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -380545,7 +385681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6371), 34, + ACTIONS(6455), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -380580,10 +385716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [22817] = 3, + [25173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6373), 27, + ACTIONS(6457), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -380611,7 +385747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6375), 34, + ACTIONS(6459), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -380646,10 +385782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [22886] = 3, + [25242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 27, + ACTIONS(5224), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -380677,7 +385813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5194), 34, + ACTIONS(5226), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -380712,218 +385848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [22955] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5958), 1, - sym_literal_suffix, - STATE(2624), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(4214), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4216), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4147), 22, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4139), 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, - [23032] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5682), 1, - anon_sym_LBRACE, - ACTIONS(6377), 1, - anon_sym___attribute__, - ACTIONS(6379), 1, - anon_sym_COLON, - STATE(2208), 1, - sym__enum_base_clause, - STATE(2335), 1, - sym_enumerator_list, - STATE(2443), 1, - sym_attribute_specifier, - ACTIONS(6073), 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(6075), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [23113] = 3, + [25311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 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(5232), 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, - [23182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6381), 27, + ACTIONS(6461), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -380951,7 +385879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6383), 34, + ACTIONS(6463), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -380986,80 +385914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [23251] = 7, + [25380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, - anon_sym___attribute__, - ACTIONS(6385), 1, - anon_sym_LBRACE, - STATE(2245), 1, - sym_attribute_specifier, - STATE(2859), 1, - sym_enumerator_list, - ACTIONS(5678), 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(5680), 47, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [23328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5261), 27, + ACTIONS(5014), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381069,13 +385928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -381086,16 +385944,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5263), 34, + sym_identifier, + ACTIONS(5019), 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -381103,6 +385971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -381111,21 +385980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [23397] = 3, + [25449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 27, + ACTIONS(6465), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -381153,7 +386011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4970), 34, + ACTIONS(6467), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -381188,10 +386046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [23466] = 3, + [25518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6387), 27, + ACTIONS(6469), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -381219,7 +386077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6389), 34, + ACTIONS(6471), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -381254,10 +386112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [23535] = 3, + [25587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 27, + ACTIONS(6473), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -381285,7 +386143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4970), 34, + ACTIONS(6475), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -381320,10 +386178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [23604] = 3, + [25656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 27, + ACTIONS(6477), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -381351,7 +386209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5153), 34, + ACTIONS(6479), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -381386,10 +386244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [23673] = 3, + [25725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 27, + ACTIONS(6481), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -381417,7 +386275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5153), 34, + ACTIONS(6483), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -381452,11 +386310,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [23742] = 3, + [25794] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5659), 1, + anon_sym_LBRACE, + ACTIONS(6399), 1, + anon_sym___attribute__, + ACTIONS(6401), 1, + anon_sym_COLON, + STATE(2263), 1, + sym__enum_base_clause, + STATE(2309), 1, + sym_enumerator_list, + STATE(2467), 1, + sym_attribute_specifier, + ACTIONS(6114), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381470,27 +386339,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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5153), 34, + ACTIONS(6116), 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, @@ -381501,7 +386358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -381513,107 +386369,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [23811] = 29, + sym_auto, + anon_sym_decltype, + [25875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, + ACTIONS(5046), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_COLON_COLON, - ACTIONS(6089), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6391), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5039), 31, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(6393), 1, - anon_sym_AMP_AMP, - ACTIONS(6395), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(4309), 1, - sym_parameter_list, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6263), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6854), 1, - sym__declarator, - STATE(7135), 1, - sym__abstract_declarator, - STATE(8562), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(6079), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3351), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3758), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [23932] = 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + 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, + [25944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5316), 27, + ACTIONS(5014), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -381641,7 +386479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2871), 34, + ACTIONS(5019), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -381667,7 +386505,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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [26013] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6485), 1, + sym_identifier, + ACTIONS(6489), 1, + sym_primitive_type, + STATE(2792), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6487), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5813), 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_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, @@ -381676,18 +386553,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [24001] = 7, + anon_sym_GT2, + ACTIONS(5815), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + [26090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, + ACTIONS(6071), 1, anon_sym___attribute__, - ACTIONS(6385), 1, - anon_sym_LBRACE, - STATE(2181), 1, + STATE(2228), 1, sym_attribute_specifier, - STATE(2847), 1, - sym_enumerator_list, - ACTIONS(5733), 10, + ACTIONS(5883), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -381698,7 +386602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(5735), 47, + ACTIONS(5885), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -381715,6 +386619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -381746,88 +386651,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [24078] = 29, + [26162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, + STATE(2871), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6491), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5976), 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(5974), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(6397), 1, anon_sym_STAR, - ACTIONS(6399), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6401), 1, - anon_sym_AMP, - STATE(4159), 1, - sym_parameter_list, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6263), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6854), 1, - sym__declarator, - STATE(7124), 1, - sym__abstract_declarator, - STATE(8562), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(6079), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(3446), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3758), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -381838,77 +386700,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [24199] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [26234] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6403), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6071), 1, + anon_sym___attribute__, + STATE(2222), 1, + sym_attribute_specifier, + ACTIONS(5853), 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___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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6405), 34, + ACTIONS(5855), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [24268] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [26306] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 27, - aux_sym_preproc_elif_token1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(6493), 1, + anon_sym_LT, + STATE(2936), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2963), 1, + sym_template_argument_list, + ACTIONS(6338), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4135), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381918,42 +386811,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_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(5220), 34, + ACTIONS(4143), 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_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -381961,104 +386838,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, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [24337] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [26384] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6071), 1, + anon_sym___attribute__, + STATE(2247), 1, + sym_attribute_specifier, + ACTIONS(5835), 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___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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(4970), 34, + ACTIONS(5837), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [24406] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [26456] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 27, + ACTIONS(6495), 1, + sym_identifier, + STATE(2889), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3622), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3626), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5222), 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___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, @@ -382066,8 +386960,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4970), 34, + sym_literal_suffix, + ACTIONS(5220), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -382076,114 +386970,135 @@ 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_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [24475] = 3, + [26532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6407), 27, - aux_sym_preproc_elif_token1, + STATE(2879), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6497), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5762), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6409), 34, + ACTIONS(5764), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [24544] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [26604] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 30, + STATE(2722), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6499), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5986), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(5988), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -382197,104 +387112,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, - ACTIONS(5012), 31, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [26676] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2697), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6501), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6022), 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_const, + anon_sym_DOT, + ACTIONS(6020), 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___attribute__, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - [24613] = 7, + anon_sym_GT2, + anon_sym_requires, + [26748] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - STATE(1935), 1, - sym_template_argument_list, - STATE(2897), 1, + STATE(2697), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6411), 4, + ACTIONS(6501), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5566), 20, + ACTIONS(6028), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5568), 34, + ACTIONS(6026), 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___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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -382303,78 +387255,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [24690] = 3, + anon_sym_requires, + [26820] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6413), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(6503), 1, + anon_sym___attribute__, + ACTIONS(6505), 1, + anon_sym_LBRACE, + STATE(3150), 1, + sym_field_declaration_list, + STATE(3275), 1, + sym_attribute_specifier, + STATE(7540), 1, + sym_virtual_specifier, + STATE(8104), 1, + sym_base_class_clause, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5315), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5317), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [26904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6509), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6507), 54, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(6415), 34, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [26972] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6071), 1, + anon_sym___attribute__, + STATE(2255), 1, + sym_attribute_specifier, + ACTIONS(5849), 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(5851), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [24759] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [27044] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6417), 27, - aux_sym_preproc_elif_token1, + STATE(2880), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6511), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5970), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382388,38 +387488,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6419), 34, + anon_sym_DASH_GT, + ACTIONS(5968), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382431,16 +387518,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [24828] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [27116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 27, - aux_sym_preproc_elif_token1, + STATE(2722), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6499), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5964), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382454,38 +387555,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6423), 34, + anon_sym_DASH_GT, + ACTIONS(5962), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382497,16 +387585,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, - [24897] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [27188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5560), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382533,24 +387628,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5149), 34, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5562), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_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_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -382568,154 +387663,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [24966] = 3, + [27256] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6071), 1, + anon_sym___attribute__, + STATE(2231), 1, + sym_attribute_specifier, + ACTIONS(5864), 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___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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(5190), 34, + ACTIONS(5866), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [25035] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [27328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6425), 27, - aux_sym_preproc_elif_token1, + STATE(2697), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6501), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5964), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6427), 34, + ACTIONS(5962), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [25104] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [27400] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 1, - anon_sym_LBRACE, - ACTIONS(6377), 1, - anon_sym___attribute__, - ACTIONS(6379), 1, - anon_sym_COLON, - STATE(2232), 1, - sym__enum_base_clause, - STATE(2311), 1, - sym_enumerator_list, - STATE(2424), 1, - sym_attribute_specifier, - ACTIONS(6055), 18, + STATE(2722), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6499), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6022), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382734,7 +387826,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6057), 37, + anon_sym_DASH_GT, + ACTIONS(6020), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -382744,10 +387837,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382769,14 +387861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [25185] = 3, + anon_sym_DASH_GT_STAR, + [27472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6429), 27, - aux_sym_preproc_elif_token1, + STATE(2884), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5976), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382790,38 +387888,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6431), 34, + anon_sym_DASH_GT, + ACTIONS(5974), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382833,86 +387918,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, - [25254] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [27544] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6433), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6071), 1, + anon_sym___attribute__, + STATE(2219), 1, + sym_attribute_specifier, + ACTIONS(5879), 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___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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6435), 34, + ACTIONS(5881), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [25323] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [27616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_AMP_AMP, - ACTIONS(6355), 1, - anon_sym_and, - ACTIONS(6206), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5266), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382926,36 +388015,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_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, - ACTIONS(6208), 33, + sym_literal_suffix, + ACTIONS(5268), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382971,12 +388052,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, - [25396] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [27684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 27, - aux_sym_preproc_elif_token1, + STATE(2722), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6499), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6028), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382990,38 +388087,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5145), 34, + anon_sym_DASH_GT, + ACTIONS(6026), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -383033,20 +388117,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [25465] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [27756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6441), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(6515), 1, anon_sym_LT, - STATE(2745), 1, + STATE(2912), 1, sym_template_argument_list, - ACTIONS(6437), 26, - aux_sym_preproc_elif_token1, + ACTIONS(5007), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383059,37 +388152,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_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, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6439), 33, + anon_sym_DASH_GT, + ACTIONS(5012), 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_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -383101,82 +388183,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [25538] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [27830] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6071), 1, + anon_sym___attribute__, + STATE(2259), 1, + sym_attribute_specifier, + ACTIONS(5821), 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___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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6446), 34, + ACTIONS(5823), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [25607] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [27902] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 27, - aux_sym_preproc_elif_token1, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, + anon_sym_decltype, + STATE(3056), 1, + sym_decltype_auto, + STATE(3098), 1, + sym_new_declarator, + STATE(3560), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5350), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383190,7 +388299,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -383203,25 +388311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6450), 34, + ACTIONS(5352), 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, + aux_sym_preproc_elif_token1, anon_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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -383238,29 +388338,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [25676] = 3, + [27986] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + ACTIONS(4407), 1, + anon_sym_STAR, + ACTIONS(4409), 1, + anon_sym_AMP_AMP, + ACTIONS(4411), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6096), 1, + anon_sym_RPAREN, + ACTIONS(6106), 1, + anon_sym_LBRACK, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + STATE(4175), 1, + sym_parameter_list, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6297), 1, + sym__scope_resolution, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6912), 1, + sym__declarator, + STATE(7166), 1, + sym__abstract_declarator, + STATE(9234), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3587), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3887), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [28106] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 27, + ACTIONS(6528), 1, + sym_identifier, + STATE(2889), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6531), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6534), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5210), 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___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, @@ -383268,8 +388467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5170), 34, + sym_literal_suffix, + ACTIONS(5208), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -383278,37 +388477,37 @@ 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_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [25745] = 3, + [28182] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 27, - aux_sym_preproc_elif_token1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(6451), 1, + anon_sym_LT, + STATE(2912), 1, + sym_template_argument_list, + ACTIONS(5397), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383319,41 +388518,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_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, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5174), 34, + anon_sym_DASH_GT, + ACTIONS(4161), 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_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -383365,16 +388551,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [25814] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [28256] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 27, - aux_sym_preproc_elif_token1, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, + anon_sym_decltype, + STATE(3056), 1, + sym_decltype_auto, + STATE(3059), 1, + sym_new_declarator, + STATE(3481), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5364), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383388,7 +388600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -383401,25 +388612,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4970), 34, + ACTIONS(5366), 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, + aux_sym_preproc_elif_token1, anon_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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -383436,11 +388639,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [25883] = 3, + [28340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6539), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6537), 54, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [28408] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, + anon_sym_decltype, + STATE(3056), 1, + sym_decltype_auto, + STATE(3128), 1, + sym_new_declarator, + STATE(3482), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5385), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383454,7 +388738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -383467,25 +388750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6454), 34, + ACTIONS(5387), 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, + aux_sym_preproc_elif_token1, anon_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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -383502,142 +388777,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [25952] = 3, + [28492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6071), 1, + anon_sym___attribute__, + STATE(2248), 1, + sym_attribute_specifier, + ACTIONS(5909), 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___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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6458), 34, + ACTIONS(5911), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [26021] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [28564] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6071), 1, + anon_sym___attribute__, + STATE(2227), 1, + sym_attribute_specifier, + ACTIONS(5839), 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___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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6462), 34, + ACTIONS(5841), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [26090] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [28636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 24, + ACTIONS(5270), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383662,7 +388939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_identifier, sym_literal_suffix, - ACTIONS(5259), 36, + ACTIONS(5272), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -383699,32 +388976,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [26158] = 5, + [28704] = 5, ACTIONS(3), 1, sym_comment, - STATE(2700), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6464), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5995), 12, + ACTIONS(6071), 1, + anon_sym___attribute__, + STATE(2251), 1, + sym_attribute_specifier, + ACTIONS(5913), 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_DOT, - ACTIONS(5993), 43, + ACTIONS(5915), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -383733,11 +389006,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_GT_GT, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -383748,6 +389025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -383764,29 +389042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [26230] = 11, + [28776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, - anon_sym_LBRACE, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6468), 1, - anon_sym_LBRACK, - ACTIONS(6470), 1, - sym_auto, - ACTIONS(6472), 1, - anon_sym_decltype, - STATE(3051), 1, - sym_new_declarator, - STATE(3073), 1, - sym_decltype_auto, - STATE(3419), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5349), 25, + ACTIONS(5262), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383801,9 +389061,6 @@ 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, @@ -383811,18 +389068,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - ACTIONS(5351), 26, + sym_literal_suffix, + ACTIONS(5264), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -383838,18 +389097,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [26314] = 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [28844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6543), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6541), 54, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [28912] = 5, ACTIONS(3), 1, sym_comment, - STATE(2883), 1, + STATE(2876), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6474), 4, + ACTIONS(6545), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5940), 19, + ACTIONS(5762), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383869,7 +389203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5938), 36, + ACTIONS(5764), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -383906,82 +389240,153 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [26386] = 3, + [28984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 24, + STATE(2870), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6547), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5970), 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_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5263), 36, + ACTIONS(5968), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [29056] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6549), 1, + sym_identifier, + STATE(2867), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3622), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + ACTIONS(3626), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [26454] = 5, + ACTIONS(5236), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5234), 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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [29132] = 5, ACTIONS(3), 1, sym_comment, - STATE(2878), 1, + STATE(2697), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6476), 4, + ACTIONS(6501), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5590), 12, + ACTIONS(5986), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -383994,7 +389399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5592), 43, + ACTIONS(5988), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -384038,14 +389443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [26526] = 5, + [29204] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, + ACTIONS(6071), 1, anon_sym___attribute__, - STATE(2195), 1, + STATE(2204), 1, sym_attribute_specifier, - ACTIONS(5839), 10, + ACTIONS(5875), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -384056,7 +389461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(5841), 48, + ACTIONS(5877), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384105,14 +389510,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [26598] = 5, + [29276] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, + ACTIONS(6071), 1, anon_sym___attribute__, - STATE(2238), 1, + STATE(2203), 1, sym_attribute_specifier, - ACTIONS(5861), 10, + ACTIONS(5871), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -384123,7 +389528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(5863), 48, + ACTIONS(5873), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384172,151 +389577,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [26670] = 5, + [29348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, - anon_sym___attribute__, - STATE(2240), 1, - sym_attribute_specifier, - ACTIONS(5857), 10, + ACTIONS(5297), 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_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5859), 48, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5299), 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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_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, + [29416] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, + anon_sym_decltype, + STATE(3050), 1, + sym_new_declarator, + STATE(3056), 1, + sym_decltype_auto, + STATE(3537), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5381), 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_identifier, + ACTIONS(5383), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [26742] = 5, + [29500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, - anon_sym___attribute__, - STATE(2242), 1, - sym_attribute_specifier, - ACTIONS(5853), 10, + ACTIONS(5297), 23, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5855), 48, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5299), 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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [26814] = 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [29567] = 3, ACTIONS(3), 1, sym_comment, - STATE(2704), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6478), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5905), 19, + ACTIONS(5556), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384331,12 +389797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5903), 36, + ACTIONS(5558), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384347,6 +389814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -384372,18 +389840,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [26886] = 5, + [29634] = 5, ACTIONS(3), 1, sym_comment, - STATE(2848), 1, + STATE(2778), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6480), 4, + ACTIONS(6551), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5590), 19, + ACTIONS(6022), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384393,26 +389863,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(5592), 36, + ACTIONS(6020), 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, @@ -384423,7 +389892,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -384437,40 +389905,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [26958] = 7, + anon_sym_GT2, + [29705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 1, - sym_identifier, - STATE(2855), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3654), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3658), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5216), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5262), 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, @@ -384478,186 +389934,120 @@ 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(5214), 29, + ACTIONS(5264), 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_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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, - [27034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6486), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6484), 54, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [27102] = 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [29772] = 3, ACTIONS(3), 1, sym_comment, - STATE(2876), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6488), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5940), 12, + ACTIONS(5039), 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5938), 43, + anon_sym_DASH_GT, + ACTIONS(5046), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [27174] = 8, + anon_sym_DASH_GT_STAR, + [29839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6490), 1, - anon_sym_LT, - STATE(2897), 1, + STATE(2922), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2933), 1, - sym_template_argument_list, - ACTIONS(6411), 4, + ACTIONS(6553), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4137), 19, + ACTIONS(5762), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384669,6 +390059,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, @@ -384677,7 +390068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4145), 33, + ACTIONS(5764), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -384685,6 +390076,7 @@ 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, @@ -384711,153 +390103,158 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [27252] = 5, + [29910] = 6, ACTIONS(3), 1, sym_comment, - STATE(2700), 1, + STATE(2921), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6464), 4, + ACTIONS(5278), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6555), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5911), 12, + ACTIONS(5769), 25, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + 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, - ACTIONS(5909), 43, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + ACTIONS(5766), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [27324] = 7, + anon_sym_DASH_GT_STAR, + [29983] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6492), 1, - sym_identifier, - STATE(2875), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3654), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3658), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5200), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6218), 1, + anon_sym___attribute__, + ACTIONS(6558), 1, + anon_sym_LBRACE, + ACTIONS(6560), 1, + anon_sym_COLON, + STATE(2972), 1, + sym__enum_base_clause, + STATE(3043), 1, + sym_enumerator_list, + STATE(3303), 1, + sym_attribute_specifier, + ACTIONS(6108), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_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(5198), 29, + anon_sym_DASH_GT, + ACTIONS(6110), 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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [27400] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [30062] = 7, ACTIONS(3), 1, sym_comment, - STATE(2869), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + STATE(1974), 1, + sym_template_argument_list, + STATE(2999), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6494), 4, + ACTIONS(6562), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5946), 19, + ACTIONS(5593), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384872,12 +390269,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(5944), 36, + ACTIONS(5595), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -384901,11 +390295,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, @@ -384914,194 +390308,128 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [27472] = 3, + [30137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5422), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6496), 54, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [27540] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6063), 1, - anon_sym___attribute__, - STATE(2249), 1, - sym_attribute_specifier, - ACTIONS(5849), 10, + ACTIONS(5531), 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_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5851), 48, + anon_sym_DASH_GT, + ACTIONS(5533), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [27612] = 5, + anon_sym_DASH_GT_STAR, + [30206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, - anon_sym___attribute__, - STATE(2210), 1, - sym_attribute_specifier, - ACTIONS(5882), 10, + STATE(2778), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6551), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6028), 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(5884), 48, + ACTIONS(6026), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -385110,80 +390438,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [27684] = 5, + anon_sym_GT2, + [30277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, - anon_sym___attribute__, - STATE(2177), 1, - sym_attribute_specifier, - ACTIONS(5827), 10, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 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_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5829), 48, + anon_sym_DASH_GT, + ACTIONS(5562), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [27756] = 3, + anon_sym_DASH_GT_STAR, + [30346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 24, + STATE(2918), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6564), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5976), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385193,31 +390524,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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5232), 36, + ACTIONS(5974), 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, @@ -385226,29 +390553,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, - [27824] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [30417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 24, + STATE(2921), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6555), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5278), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385262,7 +390594,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_EQ, + sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -385272,8 +390606,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - sym_literal_suffix, - ACTIONS(5255), 36, + sym_auto, + anon_sym_decltype, + ACTIONS(5280), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -385283,6 +390618,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, @@ -385299,28 +390635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [27892] = 5, + [30488] = 5, ACTIONS(3), 1, sym_comment, - STATE(2704), 1, + STATE(2778), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6478), 4, + ACTIONS(6551), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5911), 19, + ACTIONS(5964), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385330,26 +390656,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(5909), 36, + ACTIONS(5962), 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, @@ -385360,7 +390685,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -385374,19 +390698,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [27964] = 6, + anon_sym_GT2, + [30559] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6311), 1, - anon_sym_LT, - STATE(2895), 1, - sym_template_argument_list, - ACTIONS(5338), 19, + ACTIONS(6218), 1, + anon_sym___attribute__, + ACTIONS(6558), 1, + anon_sym_LBRACE, + ACTIONS(6560), 1, + anon_sym_COLON, + STATE(3011), 1, + sym__enum_base_clause, + STATE(3124), 1, + sym_enumerator_list, + STATE(3366), 1, + sym_attribute_specifier, + ACTIONS(6114), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385397,16 +390728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4163), 38, + ACTIONS(6116), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -385416,8 +390747,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -385442,86 +390771,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [28038] = 5, + [30638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, - anon_sym___attribute__, - STATE(2180), 1, - sym_attribute_specifier, - ACTIONS(5831), 10, + ACTIONS(5270), 23, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5833), 48, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5272), 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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [28110] = 6, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [30705] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6500), 1, - anon_sym_LT, - STATE(2895), 1, - sym_template_argument_list, - ACTIONS(4968), 19, + ACTIONS(6566), 1, + sym_identifier, + ACTIONS(6570), 1, + sym_primitive_type, + STATE(2914), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6568), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5815), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385532,16 +390861,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_EQ, - anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4975), 38, + sym_auto, + anon_sym_decltype, + ACTIONS(5813), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -385551,7 +390886,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -385565,109 +390899,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [28184] = 5, + [30780] = 5, ACTIONS(3), 1, sym_comment, - STATE(2839), 1, + STATE(2876), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6503), 4, + ACTIONS(6545), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5946), 12, + ACTIONS(5418), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, 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(5944), 43, + anon_sym_DASH_GT, + ACTIONS(5420), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [28256] = 11, + anon_sym_DASH_GT_STAR, + [30851] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, - anon_sym_LBRACE, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6468), 1, - anon_sym_LBRACK, - ACTIONS(6470), 1, - sym_auto, - ACTIONS(6472), 1, - anon_sym_decltype, - STATE(3073), 1, - sym_decltype_auto, - STATE(3091), 1, - sym_new_declarator, - STATE(3455), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5320), 25, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(6493), 1, + anon_sym_LT, + STATE(2963), 1, + sym_template_argument_list, + ACTIONS(5397), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385677,33 +390989,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, + 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(5322), 26, + ACTIONS(4161), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_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, @@ -385711,26 +391018,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [28340] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [30924] = 5, ACTIONS(3), 1, sym_comment, - STATE(2704), 1, + STATE(2910), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6478), 4, + ACTIONS(6572), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5995), 19, + ACTIONS(5970), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385740,26 +391057,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(5993), 36, + ACTIONS(5968), 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, @@ -385770,7 +391086,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -385784,65 +391099,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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [28412] = 5, + anon_sym_GT2, + [30995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, - anon_sym___attribute__, - STATE(2194), 1, - sym_attribute_specifier, - ACTIONS(5835), 10, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(6574), 1, + anon_sym_LT, + STATE(2963), 1, + sym_template_argument_list, + ACTIONS(5007), 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_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5837), 48, + ACTIONS(5012), 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___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -385853,29 +391169,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_requires, - [28484] = 5, + anon_sym_GT2, + [31068] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, - anon_sym___attribute__, - STATE(2219), 1, - sym_attribute_specifier, - ACTIONS(5895), 10, + STATE(2879), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6497), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5418), 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(5897), 48, + ACTIONS(5420), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -385884,15 +391204,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___extension__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -385903,7 +391218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -385920,28 +391234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [28556] = 11, + [31139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, - anon_sym_LBRACE, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6468), 1, - anon_sym_LBRACK, - ACTIONS(6470), 1, - sym_auto, - ACTIONS(6472), 1, - anon_sym_decltype, - STATE(3032), 1, - sym_new_declarator, - STATE(3073), 1, - sym_decltype_auto, - STATE(3391), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5356), 25, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385956,28 +391256,25 @@ 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_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(5358), 26, + anon_sym_DASH_GT, + ACTIONS(5562), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_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, @@ -385989,15 +391286,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [28640] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [31208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 30, + ACTIONS(5266), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386011,11 +391318,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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -386023,26 +391326,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5384), 30, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5268), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -386058,103 +391354,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, - [28708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6507), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6505), 54, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [28776] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6509), 1, - sym_identifier, - STATE(2875), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6512), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(6515), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5160), 17, - aux_sym_preproc_elif_token1, + anon_sym_DASH_GT_STAR, + [31275] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5996), 1, + anon_sym___attribute__, + ACTIONS(6261), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_enumerator_list, + STATE(3145), 1, + sym_attribute_specifier, + ACTIONS(5655), 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, @@ -386162,87 +391401,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5158), 29, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5657), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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, - [28852] = 5, + [31350] = 11, ACTIONS(3), 1, sym_comment, - STATE(2700), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6464), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5991), 12, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(6577), 1, + anon_sym___attribute__, + ACTIONS(6579), 1, + anon_sym_LBRACE, + STATE(3456), 1, + sym_field_declaration_list, + STATE(3868), 1, + sym_attribute_specifier, + STATE(7630), 1, + sym_virtual_specifier, + STATE(8376), 1, + sym_base_class_clause, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5315), 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(5989), 43, + anon_sym_DASH_GT, + ACTIONS(5317), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -386253,135 +391502,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, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [28924] = 5, + anon_sym_DASH_GT_STAR, + [31433] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, + ACTIONS(5996), 1, anon_sym___attribute__, - STATE(2233), 1, + ACTIONS(6261), 1, + anon_sym_LBRACE, + STATE(2945), 1, + sym_enumerator_list, + STATE(3131), 1, sym_attribute_specifier, - ACTIONS(5821), 10, + ACTIONS(5788), 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_const, + 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(5823), 48, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5790), 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_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [28996] = 5, + [31508] = 5, ACTIONS(3), 1, sym_comment, - STATE(2700), 1, + STATE(2778), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6464), 4, + ACTIONS(6551), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5905), 12, + ACTIONS(5986), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5903), 43, + ACTIONS(5988), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -386390,189 +391638,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [29068] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, - anon_sym_LPAREN2, - ACTIONS(4409), 1, - anon_sym_STAR, - ACTIONS(4411), 1, - anon_sym_AMP_AMP, - ACTIONS(4413), 1, - anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6079), 1, - anon_sym_RPAREN, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - STATE(4159), 1, - sym_parameter_list, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6228), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6911), 1, - sym__declarator, - STATE(7124), 1, - sym__abstract_declarator, - STATE(9206), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3577), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3924), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [29188] = 5, + [31579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, - anon_sym___attribute__, - STATE(2217), 1, - sym_attribute_specifier, - ACTIONS(5817), 10, + ACTIONS(5560), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + 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(5819), 48, + anon_sym_DASH_GT, + ACTIONS(5562), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [29260] = 11, + anon_sym_DASH_GT_STAR, + [31645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, - anon_sym_LBRACE, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6468), 1, - anon_sym_LBRACK, - ACTIONS(6470), 1, - sym_auto, - ACTIONS(6472), 1, - anon_sym_decltype, - STATE(3073), 1, - sym_decltype_auto, - STATE(3092), 1, - sym_new_declarator, - STATE(3460), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5363), 25, + ACTIONS(5996), 1, + anon_sym___attribute__, + STATE(3112), 1, + sym_attribute_specifier, + ACTIONS(5853), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386598,17 +391735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5365), 26, + sym_auto, + anon_sym_decltype, + ACTIONS(5855), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_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, @@ -386625,90 +391767,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [29344] = 11, + [31715] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6520), 1, - anon_sym___attribute__, - ACTIONS(6522), 1, + ACTIONS(2254), 1, anon_sym_LBRACE, - STATE(3035), 1, - sym_field_declaration_list, - STATE(3297), 1, - sym_attribute_specifier, - STATE(7303), 1, - sym_virtual_specifier, - STATE(8396), 1, - sym_base_class_clause, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5284), 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(5286), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6581), 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__, + ACTIONS(6583), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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(6585), 1, sym_auto, + ACTIONS(6587), 1, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [29428] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2704), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6478), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5991), 19, + STATE(3286), 1, + sym_new_declarator, + STATE(3353), 1, + sym_decltype_auto, + STATE(3727), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5364), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386728,19 +391807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5989), 36, + ACTIONS(5366), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -386762,13 +391837,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [29500] = 3, + [31797] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 23, + ACTIONS(2254), 1, + anon_sym_LBRACE, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6583), 1, + anon_sym_LBRACK, + ACTIONS(6585), 1, + sym_auto, + ACTIONS(6587), 1, + anon_sym_decltype, + STATE(3332), 1, + sym_new_declarator, + STATE(3353), 1, + sym_decltype_auto, + STATE(3861), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5385), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386785,24 +391875,18 @@ 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(5263), 36, + ACTIONS(5387), 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, @@ -386814,97 +391898,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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, - [29567] = 3, + [31879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 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(5232), 36, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6589), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5280), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5278), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_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, - [29634] = 7, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [31949] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, + ACTIONS(5996), 1, anon_sym___attribute__, - ACTIONS(6345), 1, - anon_sym_LBRACE, - STATE(2925), 1, - sym_enumerator_list, - STATE(3034), 1, + STATE(3088), 1, sym_attribute_specifier, - ACTIONS(5678), 27, + ACTIONS(5879), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386932,7 +392009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5680), 28, + ACTIONS(5881), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -386944,6 +392021,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, @@ -386961,10 +392039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [29709] = 3, + [32019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 20, + ACTIONS(5039), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386980,12 +392058,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5380), 39, + ACTIONS(5046), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -386995,6 +392070,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_COLON, anon_sym_LBRACE, @@ -387010,11 +392086,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, @@ -387024,21 +392100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [29776] = 6, + [32085] = 5, ACTIONS(3), 1, sym_comment, - STATE(2891), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5246), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6524), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5789), 25, + ACTIONS(5996), 1, + anon_sym___attribute__, + STATE(3075), 1, + sym_attribute_specifier, + ACTIONS(5883), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387052,8 +392123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -387061,13 +392134,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_auto, anon_sym_decltype, - ACTIONS(5786), 27, + ACTIONS(5885), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -387091,22 +392166,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, - [29849] = 7, + anon_sym_DASH_GT, + [32155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - STATE(1935), 1, - sym_template_argument_list, - STATE(2989), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6527), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5566), 16, + ACTIONS(5996), 1, + anon_sym___attribute__, + STATE(3133), 1, + sym_attribute_specifier, + ACTIONS(5909), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387121,19 +392189,31 @@ 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(5568), 36, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5911), 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_elif_token1, anon_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, @@ -387148,29 +392228,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [29924] = 5, + anon_sym_DASH_GT, + [32225] = 9, ACTIONS(3), 1, sym_comment, - STATE(2750), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6529), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5991), 20, + ACTIONS(6373), 1, + anon_sym___attribute__, + ACTIONS(6592), 1, + anon_sym_LBRACE, + ACTIONS(6594), 1, + anon_sym_COLON, + STATE(3092), 1, + sym__enum_base_clause, + STATE(3165), 1, + sym_enumerator_list, + STATE(3479), 1, + sym_attribute_specifier, + ACTIONS(6108), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387191,7 +392268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5989), 34, + ACTIONS(6110), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -387199,8 +392276,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -387226,17 +392301,78 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [29995] = 5, + [32303] = 6, ACTIONS(3), 1, sym_comment, - STATE(2891), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6524), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5246), 27, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(6596), 1, + anon_sym_LT, + STATE(3038), 1, + sym_template_argument_list, + ACTIONS(4161), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5397), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [32375] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387246,34 +392382,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, - sym_primitive_type, + anon_sym_COLON, + 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_auto, - anon_sym_decltype, - ACTIONS(5248), 27, + ACTIONS(5562), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -387283,31 +392412,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30066] = 9, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [32443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, + ACTIONS(5996), 1, anon_sym___attribute__, - ACTIONS(6531), 1, - anon_sym_LBRACE, - ACTIONS(6533), 1, - anon_sym_COLON, - STATE(2972), 1, - sym__enum_base_clause, - STATE(3037), 1, - sym_enumerator_list, - STATE(3251), 1, + STATE(3130), 1, sym_attribute_specifier, - ACTIONS(6073), 19, + ACTIONS(5849), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387322,21 +392453,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6075), 34, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5851), 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_elif_token1, anon_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, @@ -387349,30 +392491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [30145] = 5, + anon_sym_DASH_GT, + [32513] = 5, ACTIONS(3), 1, sym_comment, - STATE(2750), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6529), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5995), 20, + ACTIONS(5996), 1, + anon_sym___attribute__, + STATE(3121), 1, + sym_attribute_specifier, + ACTIONS(5821), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387382,26 +392513,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_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(5993), 34, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5823), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -387411,27 +392552,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [30216] = 3, + [32583] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 23, + ACTIONS(5996), 1, + anon_sym___attribute__, + STATE(3146), 1, + sym_attribute_specifier, + ACTIONS(5913), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387446,6 +392583,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, @@ -387453,18 +392593,22 @@ 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(5255), 36, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5915), 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_elif_token1, anon_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, @@ -387481,21 +392625,28 @@ 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, - [30283] = 3, + anon_sym_DASH_GT, + [32653] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 20, + ACTIONS(2254), 1, + anon_sym_LBRACE, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6583), 1, + anon_sym_LBRACK, + ACTIONS(6585), 1, + sym_auto, + ACTIONS(6587), 1, + anon_sym_decltype, + STATE(3353), 1, + sym_decltype_auto, + STATE(3355), 1, + sym_new_declarator, + STATE(3906), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5381), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387510,26 +392661,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5019), 39, + ACTIONS(5383), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -387551,22 +392696,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [30350] = 5, + [32735] = 11, ACTIONS(3), 1, sym_comment, - STATE(2848), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6480), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5535), 19, + ACTIONS(2254), 1, + anon_sym_LBRACE, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6583), 1, + anon_sym_LBRACK, + ACTIONS(6585), 1, + sym_auto, + ACTIONS(6587), 1, + anon_sym_decltype, + STATE(3343), 1, + sym_new_declarator, + STATE(3353), 1, + sym_decltype_auto, + STATE(3910), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5350), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387586,18 +392737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5537), 35, + ACTIONS(5352), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -387619,20 +392767,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [30421] = 5, + [32817] = 9, ACTIONS(3), 1, sym_comment, - STATE(2750), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6529), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5911), 20, + ACTIONS(6373), 1, + anon_sym___attribute__, + ACTIONS(6592), 1, + anon_sym_LBRACE, + ACTIONS(6594), 1, + anon_sym_COLON, + STATE(3067), 1, + sym__enum_base_clause, + STATE(3243), 1, + sym_enumerator_list, + STATE(3529), 1, + sym_attribute_specifier, + ACTIONS(6114), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387653,7 +392804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5909), 34, + ACTIONS(6116), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -387661,8 +392812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -387688,16 +392837,80 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [30492] = 6, + [32895] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(6490), 1, + ACTIONS(6596), 1, anon_sym_LT, - STATE(2933), 1, + STATE(3038), 1, sym_template_argument_list, - ACTIONS(5338), 20, + ACTIONS(5012), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5007), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [32967] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5996), 1, + anon_sym___attribute__, + STATE(3111), 1, + sym_attribute_specifier, + ACTIONS(5864), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387707,26 +392920,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - 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(4163), 36, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5866), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -387736,36 +392959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [30565] = 5, + [33037] = 3, ACTIONS(3), 1, sym_comment, - STATE(2890), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6535), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5940), 20, + ACTIONS(5556), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387781,12 +392987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5938), 34, + ACTIONS(5558), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -387795,6 +393002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -387820,18 +393028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [30636] = 5, + [33103] = 4, ACTIONS(3), 1, sym_comment, - STATE(2893), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6537), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5946), 20, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387847,12 +393052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5944), 34, + ACTIONS(5562), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -387886,56 +393092,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [30707] = 5, + [33171] = 8, ACTIONS(3), 1, sym_comment, - STATE(2878), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(6598), 1, + anon_sym_LT, + STATE(2943), 1, + sym_template_argument_list, + STATE(2999), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6476), 4, + ACTIONS(6562), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5535), 12, + ACTIONS(4135), 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_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(5537), 42, + anon_sym_DASH_GT, + ACTIONS(4143), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -387946,23 +393160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [30778] = 6, + anon_sym_DASH_GT_STAR, + [33247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(5422), 1, anon_sym_COLON_COLON, - ACTIONS(6539), 1, - anon_sym_LT, - STATE(2933), 1, - sym_template_argument_list, - ACTIONS(4968), 20, + ACTIONS(5531), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -387974,6 +393180,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, @@ -387983,7 +393190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4975), 36, + ACTIONS(5533), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -388020,12 +393227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - [30851] = 4, + [33315] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5455), 20, + ACTIONS(5996), 1, + anon_sym___attribute__, + STATE(3140), 1, + sym_attribute_specifier, + ACTIONS(5871), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388040,23 +393249,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_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(5457), 38, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5873), 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_elif_token1, anon_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, @@ -388070,37 +393287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [30920] = 9, + anon_sym_DASH_GT, + [33385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, + ACTIONS(5996), 1, anon_sym___attribute__, - ACTIONS(6531), 1, - anon_sym_LBRACE, - ACTIONS(6533), 1, - anon_sym_COLON, - STATE(3002), 1, - sym__enum_base_clause, - STATE(3127), 1, - sym_enumerator_list, - STATE(3338), 1, + STATE(3129), 1, sym_attribute_specifier, - ACTIONS(6055), 19, + ACTIONS(5835), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388115,21 +393314,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6057), 34, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5837), 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_elif_token1, anon_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, @@ -388142,30 +393352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [30999] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [33455] = 3, ACTIONS(3), 1, sym_comment, - STATE(2750), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6529), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5905), 20, + ACTIONS(5039), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388181,12 +393376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5903), 34, + ACTIONS(5046), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -388195,6 +393391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -388220,13 +393417,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [31070] = 4, + [33521] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5382), 20, + ACTIONS(5996), 1, + anon_sym___attribute__, + STATE(3141), 1, + sym_attribute_specifier, + ACTIONS(5875), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388241,23 +393442,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_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(5384), 38, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5877), 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_elif_token1, anon_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, @@ -388271,25 +393480,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [31139] = 3, + anon_sym_DASH_GT, + [33591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 23, + ACTIONS(5996), 1, + anon_sym___attribute__, + STATE(3126), 1, + sym_attribute_specifier, + ACTIONS(5839), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388304,6 +393507,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, @@ -388311,18 +393517,22 @@ 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(5259), 36, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5841), 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_elif_token1, anon_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, @@ -388339,28 +393549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [31206] = 5, + anon_sym_DASH_GT, + [33661] = 5, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, + STATE(2922), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6542), 4, + ACTIONS(6553), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5590), 20, + ACTIONS(5418), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388381,7 +393581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5592), 34, + ACTIONS(5420), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -388389,7 +393589,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -388416,12 +393615,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [31277] = 4, + [33731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5382), 20, + STATE(2921), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6600), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6028), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388436,13 +393640,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5384), 38, + ACTIONS(6026), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -388466,11 +393666,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, @@ -388478,21 +393678,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [31346] = 7, + [33800] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - ACTIONS(6345), 1, - anon_sym_LBRACE, - STATE(2937), 1, - sym_enumerator_list, - STATE(3050), 1, - sym_attribute_specifier, - ACTIONS(5733), 27, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, + anon_sym_decltype, + STATE(3056), 1, + sym_decltype_auto, + ACTIONS(5548), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388518,9 +393714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5735), 28, + ACTIONS(5550), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -388532,6 +393726,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, @@ -388549,133 +393744,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [31421] = 7, + [33871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 1, - sym_identifier, - ACTIONS(6548), 1, - sym_primitive_type, - STATE(2888), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6546), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5638), 25, + ACTIONS(5028), 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(5030), 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_EQ, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - ACTIONS(5636), 27, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [33936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5003), 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_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(5005), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [31496] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6550), 1, - anon_sym___attribute__, - ACTIONS(6552), 1, - anon_sym_LBRACE, - STATE(3470), 1, - sym_field_declaration_list, - STATE(3886), 1, - sym_attribute_specifier, - STATE(7304), 1, - sym_virtual_specifier, - STATE(8207), 1, - sym_base_class_clause, - ACTIONS(6067), 2, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(5284), 16, + anon_sym_GT2, + anon_sym_requires, + [34001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4995), 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_const, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5286), 34, + ACTIONS(4997), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -388686,17 +393923,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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [31579] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [34066] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, + ACTIONS(6218), 1, anon_sym___attribute__, - STATE(3046), 1, + ACTIONS(6558), 1, + anon_sym_LBRACE, + STATE(3091), 1, + sym_enumerator_list, + STATE(3260), 1, sym_attribute_specifier, - ACTIONS(5839), 27, + ACTIONS(5655), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388711,32 +393956,21 @@ 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, - sym_auto, - anon_sym_decltype, - ACTIONS(5841), 29, + anon_sym_DASH_GT, + ACTIONS(5657), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -388749,64 +393983,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [31649] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [34139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5382), 21, + ACTIONS(5024), 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_const, anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5384), 36, + ACTIONS(5026), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -388818,88 +394057,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - [31717] = 6, + anon_sym_requires, + [34204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6554), 1, + ACTIONS(4999), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(3081), 1, - sym_template_argument_list, - ACTIONS(4975), 27, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(5001), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4968), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - sym_this, - [31789] = 9, + [34269] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, - anon_sym___attribute__, - ACTIONS(6556), 1, + ACTIONS(2628), 1, anon_sym_LBRACE, - ACTIONS(6558), 1, - anon_sym_COLON, - STATE(3016), 1, - sym__enum_base_clause, - STATE(3203), 1, - sym_enumerator_list, - STATE(3440), 1, - sym_attribute_specifier, - ACTIONS(6073), 20, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(6604), 1, + anon_sym_LBRACK, + ACTIONS(6606), 1, + sym_auto, + ACTIONS(6608), 1, + anon_sym_decltype, + STATE(3488), 1, + sym_new_declarator, + STATE(3565), 1, + sym_decltype_auto, + STATE(4063), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5350), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388920,15 +394161,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6075), 32, + ACTIONS(5352), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -388950,17 +394189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [31867] = 5, + [34350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - STATE(3058), 1, - sym_attribute_specifier, - ACTIONS(5827), 27, + ACTIONS(5665), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -388974,6 +394207,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_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -388988,7 +394222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5829), 29, + ACTIONS(5667), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -389018,47 +394252,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [31937] = 5, + [34415] = 7, ACTIONS(3), 1, sym_comment, - STATE(2918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6560), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5248), 13, + ACTIONS(6503), 1, + anon_sym___attribute__, + ACTIONS(6610), 1, + anon_sym_LBRACE, + STATE(3114), 1, + sym_enumerator_list, + STATE(3296), 1, + sym_attribute_specifier, + ACTIONS(5655), 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(5657), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5246), 40, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_extern, - 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, @@ -389069,183 +394300,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [32007] = 5, + [34488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - STATE(3052), 1, - sym_attribute_specifier, - ACTIONS(5831), 27, + ACTIONS(5035), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5833), 29, + ACTIONS(5037), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [32077] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2226), 1, - anon_sym_LBRACE, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6565), 1, - anon_sym_LBRACK, - ACTIONS(6567), 1, sym_auto, - ACTIONS(6569), 1, anon_sym_decltype, - STATE(3290), 1, - sym_decltype_auto, - STATE(3332), 1, - sym_new_declarator, - STATE(3844), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5363), 19, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [34553] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5531), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5365), 30, + ACTIONS(5533), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [32159] = 6, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [34620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6554), 1, + ACTIONS(5262), 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, - STATE(3081), 1, - sym_template_argument_list, - ACTIONS(4163), 27, + 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(5264), 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_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_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -389256,60 +394505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5338), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [32231] = 5, + [34685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - STATE(3018), 1, - sym_attribute_specifier, - ACTIONS(5895), 27, + ACTIONS(5270), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -389318,46 +394526,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5897), 29, + sym_literal_suffix, + ACTIONS(5272), 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_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [32301] = 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, + [34750] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - STATE(3047), 1, - sym_attribute_specifier, - ACTIONS(5835), 27, + STATE(3002), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6612), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5762), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389372,31 +394592,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, - sym_auto, - anon_sym_decltype, - ACTIONS(5837), 29, + anon_sym_DASH_GT, + ACTIONS(5764), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -389411,21 +394619,29 @@ 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, - [32371] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [34819] = 5, ACTIONS(3), 1, sym_comment, - STATE(2905), 1, + STATE(2921), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6542), 4, + ACTIONS(6600), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5535), 20, + ACTIONS(6022), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389435,25 +394651,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(5537), 33, + anon_sym_DASH_GT, + ACTIONS(6020), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -389463,31 +394678,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [32441] = 5, + anon_sym_DASH_GT_STAR, + [34888] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - STATE(3019), 1, - sym_attribute_specifier, - ACTIONS(5882), 27, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6616), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6624), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6626), 1, + anon_sym_AMP_AMP, + ACTIONS(6638), 1, + anon_sym_GT_EQ, + ACTIONS(6642), 1, + anon_sym_QMARK, + ACTIONS(6644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6646), 1, + anon_sym_or, + ACTIONS(6648), 1, + anon_sym_and, + ACTIONS(6650), 1, + anon_sym_not_eq, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6628), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6632), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6622), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6614), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(6618), 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, + [35001] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2628), 1, + anon_sym_LBRACE, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(6604), 1, + anon_sym_LBRACK, + ACTIONS(6606), 1, + sym_auto, + ACTIONS(6608), 1, + anon_sym_decltype, + STATE(3458), 1, + sym_new_declarator, + STATE(3565), 1, + sym_decltype_auto, + STATE(4085), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5385), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389497,38 +394811,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5884), 29, + ACTIONS(5387), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, @@ -389536,31 +394836,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [32511] = 9, + anon_sym_GT2, + [35082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, - anon_sym___attribute__, - ACTIONS(6556), 1, + ACTIONS(4016), 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(6558), 1, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4014), 43, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - STATE(3079), 1, - sym__enum_base_clause, - STATE(3154), 1, - sym_enumerator_list, - STATE(3482), 1, - sym_attribute_specifier, - ACTIONS(6055), 20, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_requires, + [35147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5560), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389581,7 +394937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6057), 32, + ACTIONS(5562), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -389589,7 +394945,10 @@ 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -389613,87 +394972,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [32589] = 3, + [35212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 19, + ACTIONS(4991), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5384), 39, + ACTIONS(4993), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [32655] = 8, + anon_sym_GT2, + anon_sym_requires, + [35277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6571), 1, - anon_sym_LT, - STATE(2931), 1, - sym_template_argument_list, - STATE(2989), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6527), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4137), 15, + ACTIONS(5754), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389704,15 +395051,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_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(4145), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5756), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -389733,131 +395095,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [32731] = 4, + anon_sym_DASH_GT, + [35342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5455), 21, + ACTIONS(5266), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - 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(5457), 36, + sym_identifier, + sym_literal_suffix, + ACTIONS(5268), 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___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [32799] = 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, + [35407] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, - anon_sym_LBRACE, - ACTIONS(6563), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6565), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6567), 1, - sym_auto, - ACTIONS(6569), 1, - anon_sym_decltype, - STATE(3240), 1, - sym_new_declarator, - STATE(3290), 1, - sym_decltype_auto, - STATE(3903), 2, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6624), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6626), 1, + anon_sym_AMP_AMP, + ACTIONS(6638), 1, + anon_sym_GT_EQ, + ACTIONS(6644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6646), 1, + anon_sym_or, + ACTIONS(6648), 1, + anon_sym_and, + ACTIONS(6650), 1, + anon_sym_not_eq, + STATE(2790), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(5356), 19, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6628), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6630), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6632), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6622), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6636), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6652), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5358), 30, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(6654), 17, 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, + 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, @@ -389869,21 +395245,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, + [35516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5297), 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(5299), 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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [32881] = 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, + [35581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 17, + STATE(2983), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6656), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5970), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389898,10 +395332,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5019), 41, + ACTIONS(5968), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -389911,9 +395344,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_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -389939,31 +395370,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [32947] = 11, + [35650] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, + ACTIONS(2628), 1, anon_sym_LBRACE, - ACTIONS(6563), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6565), 1, + ACTIONS(6604), 1, anon_sym_LBRACK, - ACTIONS(6567), 1, + ACTIONS(6606), 1, sym_auto, - ACTIONS(6569), 1, + ACTIONS(6608), 1, anon_sym_decltype, - STATE(3275), 1, + STATE(3502), 1, sym_new_declarator, - STATE(3290), 1, + STATE(3565), 1, sym_decltype_auto, - STATE(3892), 2, + STATE(4042), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5320), 19, + ACTIONS(5381), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -389973,25 +395401,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(5322), 30, + ACTIONS(5383), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -389999,7 +395426,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -390013,11 +395439,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, - [33029] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [35731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 21, + STATE(2967), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6658), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5976), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390027,28 +395461,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_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5019), 37, + anon_sym_DASH_GT, + ACTIONS(5974), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -390058,74 +395488,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [35800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4020), 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_DASH_GT, + anon_sym_GT2, + ACTIONS(4018), 43, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [33095] = 5, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_requires, + [35865] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - STATE(3028), 1, - sym_attribute_specifier, - ACTIONS(5861), 27, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6624), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6626), 1, + anon_sym_AMP_AMP, + ACTIONS(6638), 1, + anon_sym_GT_EQ, + ACTIONS(6644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6646), 1, + anon_sym_or, + ACTIONS(6648), 1, + anon_sym_and, + ACTIONS(6650), 1, + anon_sym_not_eq, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6628), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6630), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6632), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6622), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6636), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6660), 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_auto, - anon_sym_decltype, - ACTIONS(5863), 29, + ACTIONS(6662), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -390137,32 +395651,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [33165] = 11, + [35974] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, + ACTIONS(2628), 1, anon_sym_LBRACE, - ACTIONS(6563), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6565), 1, + ACTIONS(6604), 1, anon_sym_LBRACK, - ACTIONS(6567), 1, + ACTIONS(6606), 1, sym_auto, - ACTIONS(6569), 1, + ACTIONS(6608), 1, anon_sym_decltype, - STATE(3227), 1, + STATE(3507), 1, sym_new_declarator, - STATE(3290), 1, + STATE(3565), 1, sym_decltype_auto, - STATE(3917), 2, + STATE(4028), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5349), 19, + ACTIONS(5364), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390172,25 +395681,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(5351), 30, + ACTIONS(5366), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -390198,7 +395706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -390212,11 +395719,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, - [33247] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [36055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 21, + STATE(2921), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6600), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5986), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390226,28 +395741,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_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5380), 37, + anon_sym_DASH_GT, + ACTIONS(5988), 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, @@ -390257,96 +395768,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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [33313] = 5, + anon_sym_DASH_GT_STAR, + [36124] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, + ACTIONS(6503), 1, anon_sym___attribute__, - STATE(3033), 1, + ACTIONS(6610), 1, + anon_sym_LBRACE, + STATE(3082), 1, + sym_enumerator_list, + STATE(3267), 1, sym_attribute_specifier, - ACTIONS(5853), 27, + ACTIONS(5788), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5855), 29, + ACTIONS(5790), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_LT_LT, + anon_sym___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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [33383] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(5382), 21, + ACTIONS(6598), 1, + anon_sym_LT, + STATE(2943), 1, + sym_template_argument_list, + ACTIONS(5397), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390356,26 +395870,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_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5384), 36, + anon_sym_DASH_GT, + ACTIONS(4161), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, @@ -390386,33 +395897,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [33451] = 5, + anon_sym_DASH_GT_STAR, + [36268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - STATE(3040), 1, - sym_attribute_specifier, - ACTIONS(5849), 27, + STATE(2921), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6600), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5964), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390427,31 +395941,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, - sym_auto, - anon_sym_decltype, - ACTIONS(5851), 29, + anon_sym_DASH_GT, + ACTIONS(5962), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -390466,18 +395968,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_DASH_GT, - [33521] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [36337] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - STATE(3067), 1, - sym_attribute_specifier, - ACTIONS(5817), 27, + ACTIONS(6664), 1, + anon_sym_LPAREN2, + ACTIONS(6666), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6668), 1, + anon_sym_LBRACK, + STATE(3364), 1, + sym_parameter_list, + STATE(3103), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5893), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390503,22 +396020,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5819), 29, + ACTIONS(5895), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -390535,14 +396047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [33591] = 5, + [36412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - STATE(3071), 1, - sym_attribute_specifier, - ACTIONS(5821), 27, + ACTIONS(5601), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390556,6 +396064,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_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -390570,7 +396079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5823), 29, + ACTIONS(5603), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -390600,14 +396109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [33661] = 5, + [36477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym___attribute__, - STATE(3031), 1, - sym_attribute_specifier, - ACTIONS(5857), 27, + ACTIONS(5762), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -390621,6 +396126,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_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -390635,7 +396141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5859), 29, + ACTIONS(5764), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -390665,334 +396171,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [33731] = 19, + [36542] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6589), 1, - anon_sym_not_eq, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6577), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6579), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 12, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - sym_identifier, - ACTIONS(6172), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [33828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4018), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6664), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(6666), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4016), 43, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_requires, - [33893] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6668), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6589), 1, - anon_sym_not_eq, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6573), 2, + STATE(3364), 1, + sym_parameter_list, + STATE(3103), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5887), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6577), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6579), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6591), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 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(6172), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [33992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5378), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5380), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [34057] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6589), 1, - anon_sym_not_eq, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6579), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 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, @@ -391002,16 +396208,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6172), 19, + ACTIONS(5889), 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, + aux_sym_preproc_elif_token1, 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, @@ -391023,113 +396233,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [34152] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, anon_sym_LT_EQ_GT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 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(6172), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [34243] = 14, + [36617] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6587), 1, - anon_sym_LT_EQ_GT, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6573), 2, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6585), 2, + ACTIONS(6640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6575), 3, + ACTIONS(6622), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 18, + ACTIONS(6151), 18, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, @@ -391148,7 +396286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6172), 22, + ACTIONS(6153), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -391171,10 +396309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [34330] = 3, + anon_sym_LT_EQ_GT, + [36702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 13, + ACTIONS(5039), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -391188,7 +396327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(5006), 44, + ACTIONS(5046), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -391233,77 +396372,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [34395] = 3, + [36767] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 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_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5002), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5354), 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_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(6135), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - 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(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, 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, - [34460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5578), 28, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6622), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 20, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -391312,7 +396408,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -391323,24 +396418,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_auto, - anon_sym_decltype, - ACTIONS(5580), 29, + ACTIONS(6153), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -391353,25 +396443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [34525] = 8, + [36850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym_LPAREN2, - ACTIONS(6595), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACK, - STATE(3230), 1, - sym_parameter_list, - STATE(3039), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5878), 25, + ACTIONS(5544), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391397,17 +396472,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5880), 26, + sym_auto, + anon_sym_decltype, + ACTIONS(5546), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -391424,27 +396505,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [34600] = 11, + [36915] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, + ACTIONS(6218), 1, + anon_sym___attribute__, + ACTIONS(6558), 1, anon_sym_LBRACE, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(6601), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - sym_auto, - ACTIONS(6605), 1, - anon_sym_decltype, - STATE(3448), 1, - sym_new_declarator, - STATE(3513), 1, - sym_decltype_auto, - STATE(3994), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5320), 20, + STATE(3052), 1, + sym_enumerator_list, + STATE(3293), 1, + sym_attribute_specifier, + ACTIONS(5788), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391454,24 +396526,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(5322), 28, + anon_sym_DASH_GT, + ACTIONS(5790), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -391479,6 +396554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -391492,12 +396568,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_GT2, - [34681] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [36988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 28, + ACTIONS(5795), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391526,7 +396603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5592), 29, + ACTIONS(5797), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -391556,43 +396633,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [34746] = 13, + [37053] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6575), 3, + ACTIONS(6622), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 18, + ACTIONS(6151), 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_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -391604,7 +396679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6172), 23, + ACTIONS(6153), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -391628,33 +396703,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [34831] = 12, + [37134] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(2791), 1, + ACTIONS(6644), 1, + anon_sym_LT_EQ_GT, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6573), 2, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6575), 3, + ACTIONS(6640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6622), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 20, + ACTIONS(6151), 18, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, @@ -391662,8 +396742,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -391675,7 +396753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6172), 23, + ACTIONS(6153), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -391698,11 +396776,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, - [34914] = 3, + [37221] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 28, + ACTIONS(6664), 1, + anon_sym_LPAREN2, + ACTIONS(6666), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6668), 1, + anon_sym_LBRACK, + STATE(3364), 1, + sym_parameter_list, + STATE(3103), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5897), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -391716,7 +396804,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -391729,22 +396816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5609), 29, + ACTIONS(5899), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -391761,103 +396843,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [34979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 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_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4998), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [35044] = 11, + [37296] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(2791), 1, + ACTIONS(6638), 1, + anon_sym_GT_EQ, + ACTIONS(6644), 1, + anon_sym_LT_EQ_GT, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6575), 3, + ACTIONS(6620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6622), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 22, + ACTIONS(6636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 15, 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_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -391869,7 +396896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6172), 23, + ACTIONS(6153), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -391880,7 +396907,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -391892,130 +396918,72 @@ 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, - [35125] = 25, + [37387] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6583), 1, + ACTIONS(6638), 1, anon_sym_GT_EQ, - ACTIONS(6587), 1, + ACTIONS(6644), 1, anon_sym_LT_EQ_GT, - ACTIONS(6589), 1, + ACTIONS(6650), 1, anon_sym_not_eq, - ACTIONS(6611), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6613), 1, - anon_sym_AMP_AMP, - ACTIONS(6617), 1, - anon_sym_or, - ACTIONS(6619), 1, - anon_sym_and, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6573), 2, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6577), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6579), 2, + ACTIONS(6634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6585), 2, + ACTIONS(6640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6591), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6615), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6575), 3, + ACTIONS(6622), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6581), 3, + ACTIONS(6636), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6607), 6, + ACTIONS(6151), 14, aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, sym_identifier, - ACTIONS(6609), 17, + ACTIONS(6153), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [35234] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6621), 1, - anon_sym_LT, - STATE(2931), 1, - sym_template_argument_list, - ACTIONS(4968), 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_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4975), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -392027,85 +396995,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [35305] = 23, + [37482] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6583), 1, + ACTIONS(6638), 1, anon_sym_GT_EQ, - ACTIONS(6587), 1, + ACTIONS(6644), 1, anon_sym_LT_EQ_GT, - ACTIONS(6589), 1, + ACTIONS(6650), 1, anon_sym_not_eq, - ACTIONS(6613), 1, - anon_sym_AMP_AMP, - ACTIONS(6619), 1, - anon_sym_and, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6573), 2, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6577), 2, + ACTIONS(6632), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6579), 2, + ACTIONS(6634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6585), 2, + ACTIONS(6640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6591), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6615), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6575), 3, + ACTIONS(6622), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6581), 3, + ACTIONS(6636), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 7, + ACTIONS(6151), 12, aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, sym_identifier, - ACTIONS(6172), 18, + ACTIONS(6153), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -392113,57 +397061,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [35410] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2981), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5946), 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(5944), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -392175,92 +397073,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [35479] = 25, + [37579] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6583), 1, + ACTIONS(6638), 1, anon_sym_GT_EQ, - ACTIONS(6587), 1, + ACTIONS(6644), 1, anon_sym_LT_EQ_GT, - ACTIONS(6589), 1, + ACTIONS(6650), 1, anon_sym_not_eq, - ACTIONS(6611), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6613), 1, - anon_sym_AMP_AMP, - ACTIONS(6617), 1, - anon_sym_or, - ACTIONS(6619), 1, - anon_sym_and, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6573), 2, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6577), 2, + ACTIONS(6630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6632), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6579), 2, + ACTIONS(6634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6585), 2, + ACTIONS(6640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6591), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6615), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6575), 3, + ACTIONS(6622), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6581), 3, + ACTIONS(6636), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6626), 6, + ACTIONS(6151), 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(6628), 17, + ACTIONS(6153), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -392272,82 +397152,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35588] = 27, + [37678] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6583), 1, + ACTIONS(6638), 1, anon_sym_GT_EQ, - ACTIONS(6587), 1, + ACTIONS(6644), 1, anon_sym_LT_EQ_GT, - ACTIONS(6589), 1, + ACTIONS(6650), 1, anon_sym_not_eq, - ACTIONS(6611), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6613), 1, - anon_sym_AMP_AMP, - ACTIONS(6617), 1, - anon_sym_or, - ACTIONS(6619), 1, - anon_sym_and, - ACTIONS(6632), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6636), 1, - anon_sym_QMARK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6573), 2, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6577), 2, + ACTIONS(6628), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6632), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6579), 2, + ACTIONS(6634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6585), 2, + ACTIONS(6640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6591), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6615), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6575), 3, + ACTIONS(6622), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6581), 3, + ACTIONS(6636), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6630), 6, + ACTIONS(6151), 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(6634), 15, + ACTIONS(6153), 19, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -392358,116 +397232,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35701] = 11, + [37779] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, - anon_sym_LBRACE, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6601), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6603), 1, - sym_auto, - ACTIONS(6605), 1, - anon_sym_decltype, - STATE(3385), 1, - sym_new_declarator, - STATE(3513), 1, - sym_decltype_auto, - STATE(4042), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5356), 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(6139), 1, anon_sym_DOT, - ACTIONS(5358), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(6626), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(6638), 1, + anon_sym_GT_EQ, + ACTIONS(6644), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, + ACTIONS(6648), 1, + anon_sym_and, + ACTIONS(6650), 1, anon_sym_not_eq, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [35782] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2891), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5905), 16, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6628), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6630), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6632), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6622), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6636), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6151), 7, + aux_sym_preproc_elif_token1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5903), 36, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + sym_identifier, + ACTIONS(6153), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -392479,93 +397314,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [35851] = 25, + [37884] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6589), 1, - anon_sym_not_eq, - ACTIONS(6611), 1, + ACTIONS(6616), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6624), 1, anon_sym_PIPE_PIPE, - ACTIONS(6613), 1, + ACTIONS(6626), 1, anon_sym_AMP_AMP, - ACTIONS(6617), 1, + ACTIONS(6638), 1, + anon_sym_GT_EQ, + ACTIONS(6642), 1, + anon_sym_QMARK, + ACTIONS(6644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6646), 1, anon_sym_or, - ACTIONS(6619), 1, + ACTIONS(6648), 1, anon_sym_and, - STATE(2791), 1, + ACTIONS(6650), 1, + anon_sym_not_eq, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6573), 2, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6577), 2, + ACTIONS(6628), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6632), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6579), 2, + ACTIONS(6634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6585), 2, + ACTIONS(6640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6591), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6615), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6575), 3, + ACTIONS(6622), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6581), 3, + ACTIONS(6636), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6640), 6, + ACTIONS(6469), 6, aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, sym_identifier, - ACTIONS(6642), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(6471), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -392576,119 +397400,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35960] = 3, + [37997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 28, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5781), 29, + ACTIONS(5562), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, - [36025] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2968), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6644), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5590), 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(5592), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -392699,21 +397456,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [36094] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38064] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, - anon_sym___attribute__, - ACTIONS(6531), 1, - anon_sym_LBRACE, - STATE(3026), 1, - sym_enumerator_list, - STATE(3247), 1, - sym_attribute_specifier, - ACTIONS(5678), 19, + ACTIONS(6664), 1, + anon_sym_LPAREN2, + ACTIONS(6666), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6668), 1, + anon_sym_LBRACK, + STATE(3364), 1, + sym_parameter_list, + STATE(3103), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5825), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392728,22 +397492,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5680), 34, + sym_identifier, + ACTIONS(5827), 26, 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_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -392755,40 +397525,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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [36167] = 11, + anon_sym_DASH_GT, + [38139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, - anon_sym_LBRACE, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(6601), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - sym_auto, - ACTIONS(6605), 1, - anon_sym_decltype, - STATE(3411), 1, - sym_new_declarator, - STATE(3513), 1, - sym_decltype_auto, - STATE(3986), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5349), 20, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(6670), 1, + anon_sym_LT, + STATE(2943), 1, + sym_template_argument_list, + ACTIONS(5007), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -392798,24 +397549,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_COLON, anon_sym_DOT, - ACTIONS(5351), 28, + anon_sym_DASH_GT, + ACTIONS(5012), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -392823,260 +397576,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [36248] = 27, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [38210] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6589), 1, - anon_sym_not_eq, - ACTIONS(6611), 1, + ACTIONS(6624), 1, anon_sym_PIPE_PIPE, - ACTIONS(6613), 1, + ACTIONS(6626), 1, anon_sym_AMP_AMP, - ACTIONS(6617), 1, - anon_sym_or, - ACTIONS(6619), 1, - anon_sym_and, - ACTIONS(6632), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6636), 1, - anon_sym_QMARK, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6577), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6579), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6591), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6615), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6307), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6309), 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, - [36361] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6583), 1, + ACTIONS(6638), 1, anon_sym_GT_EQ, - ACTIONS(6587), 1, + ACTIONS(6644), 1, anon_sym_LT_EQ_GT, - ACTIONS(6589), 1, - anon_sym_not_eq, - ACTIONS(6611), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6613), 1, - anon_sym_AMP_AMP, - ACTIONS(6617), 1, + ACTIONS(6646), 1, anon_sym_or, - ACTIONS(6619), 1, + ACTIONS(6648), 1, anon_sym_and, - STATE(2791), 1, + ACTIONS(6650), 1, + anon_sym_not_eq, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6573), 2, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6577), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6579), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6591), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6615), 2, + ACTIONS(6628), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(6575), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6646), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6648), 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, - [36470] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6589), 1, - anon_sym_not_eq, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6573), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6577), 2, + ACTIONS(6630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6632), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6579), 2, + ACTIONS(6634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6585), 2, + ACTIONS(6640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6591), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6615), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6575), 3, + ACTIONS(6622), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6581), 3, + ACTIONS(6636), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 8, + ACTIONS(6673), 6, aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, sym_identifier, - ACTIONS(6172), 19, + ACTIONS(6675), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -393088,12 +397679,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36571] = 4, + [38319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_COLON_COLON, - ACTIONS(5382), 13, + ACTIONS(5560), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -393107,7 +397698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(5384), 43, + ACTIONS(5562), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -393151,76 +397742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [36638] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2984), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6650), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5940), 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(5938), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [36707] = 4, + [38386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5382), 13, + ACTIONS(5556), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -393234,7 +397759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(5384), 43, + ACTIONS(5558), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -393248,6 +397773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -393278,21 +397804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [36774] = 8, + [38451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6593), 1, - anon_sym_LPAREN2, - ACTIONS(6595), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACK, - STATE(3230), 1, - sym_parameter_list, - STATE(3039), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5845), 25, + ACTIONS(5711), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393306,6 +397821,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_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -393318,17 +397834,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5847), 26, + sym_auto, + anon_sym_decltype, + ACTIONS(5713), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_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, @@ -393345,17 +397866,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [36849] = 5, + [38516] = 4, ACTIONS(3), 1, sym_comment, - STATE(2891), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5995), 16, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5418), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393370,19 +397886,31 @@ 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(5993), 36, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5420), 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_elif_token1, anon_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, @@ -393397,69 +397925,169 @@ 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, + [38583] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6616), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6624), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6626), 1, + anon_sym_AMP_AMP, + ACTIONS(6638), 1, + anon_sym_GT_EQ, + ACTIONS(6642), 1, + anon_sym_QMARK, + ACTIONS(6644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6646), 1, + anon_sym_or, + ACTIONS(6648), 1, + anon_sym_and, + ACTIONS(6650), 1, + anon_sym_not_eq, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6620), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6628), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6630), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6632), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6622), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6636), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6677), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(6679), 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, + [38696] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6624), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6626), 1, + anon_sym_AMP_AMP, + ACTIONS(6638), 1, + anon_sym_GT_EQ, + ACTIONS(6644), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6646), 1, anon_sym_or, + ACTIONS(6648), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(6650), 1, anon_sym_not_eq, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [36918] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6593), 1, - anon_sym_LPAREN2, - ACTIONS(6595), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACK, - STATE(3230), 1, - sym_parameter_list, - STATE(3039), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5801), 25, + anon_sym_DASH_GT, + ACTIONS(6620), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6628), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6630), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6632), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6640), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6622), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6636), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6681), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(5803), 26, + ACTIONS(6683), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -393471,15 +398099,10 @@ 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, - [36993] = 3, + [38805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 27, + ACTIONS(5698), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393507,7 +398130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5398), 30, + ACTIONS(5700), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -393519,7 +398142,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -393538,17 +398160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [37058] = 5, + [38869] = 3, ACTIONS(3), 1, sym_comment, - STATE(2891), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5991), 16, + ACTIONS(4999), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393563,9 +398178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5989), 36, + ACTIONS(5001), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393576,6 +398192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -393601,93 +398218,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [37127] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6593), 1, - anon_sym_LPAREN2, - ACTIONS(6595), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6597), 1, - anon_sym_LBRACK, - STATE(3230), 1, - sym_parameter_list, - STATE(3039), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5811), 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_identifier, - ACTIONS(5813), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - [37202] = 3, + [38933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 14, + ACTIONS(5026), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(4020), 43, + ACTIONS(5024), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -393715,28 +398267,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, anon_sym_template, anon_sym_operator, anon_sym_try, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_requires, - [37267] = 4, + [38997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 27, + ACTIONS(5531), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393751,31 +398302,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_COLON, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5537), 29, + anon_sym_DASH_GT, + ACTIONS(5533), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -393790,56 +398330,6 @@ 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, - [37334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 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_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5019), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -393849,24 +398339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [37399] = 5, + anon_sym_DASH_GT_STAR, + [39063] = 4, ACTIONS(3), 1, sym_comment, - STATE(2891), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5911), 16, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393881,9 +398364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5909), 36, + ACTIONS(5562), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393919,59 +398403,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [37468] = 3, + [39129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5039), 28, anon_sym_DASH, 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_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - sym_literal_suffix, - ACTIONS(5263), 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_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5046), 28, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + 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, @@ -393982,51 +398467,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [37533] = 3, + [39193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 13, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, anon_sym_COLON, anon_sym_DOT, - ACTIONS(4990), 44, + anon_sym_DASH_GT, + ACTIONS(5562), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -394037,120 +398524,65 @@ 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, - [37598] = 3, + anon_sym_DASH_GT_STAR, + [39259] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 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_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(5010), 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(6577), 1, anon_sym___attribute__, - anon_sym_COLON_COLON, + ACTIONS(6685), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [37663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4964), 13, + ACTIONS(6687), 1, + anon_sym_COLON, + STATE(3357), 1, + sym__enum_base_clause, + STATE(3475), 1, + sym_enumerator_list, + STATE(3877), 1, + sym_attribute_specifier, + ACTIONS(6114), 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_COLON, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4966), 44, + anon_sym_DASH_GT, + ACTIONS(6116), 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_COLON_COLON, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -394161,17 +398593,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [37728] = 3, + anon_sym_DASH_GT_STAR, + [39335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 28, + ACTIONS(5392), 1, + sym_literal_suffix, + ACTIONS(4145), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394185,7 +398616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -394198,21 +398628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5717), 29, + ACTIONS(4137), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_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, @@ -394230,82 +398658,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [37793] = 27, + [39401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6583), 1, - anon_sym_GT_EQ, - ACTIONS(6587), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6589), 1, - anon_sym_not_eq, - ACTIONS(6611), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6613), 1, - anon_sym_AMP_AMP, - ACTIONS(6617), 1, - anon_sym_or, - ACTIONS(6619), 1, - anon_sym_and, - ACTIONS(6632), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6636), 1, - anon_sym_QMARK, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6573), 2, + ACTIONS(5807), 27, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6577), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6579), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6591), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6615), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6581), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6652), 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, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6654), 15, + sym_auto, + anon_sym_decltype, + ACTIONS(5809), 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, + aux_sym_preproc_elif_token1, + anon_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, @@ -394316,10 +398714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37906] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [39465] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 20, + ACTIONS(6218), 1, + anon_sym___attribute__, + STATE(3317), 1, + sym_attribute_specifier, + ACTIONS(5913), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394329,29 +398736,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5384), 37, + anon_sym_DASH_GT, + ACTIONS(5915), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -394359,6 +398765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -394372,227 +398779,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, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [37971] = 4, + anon_sym_DASH_GT_STAR, + [39533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5455), 13, + ACTIONS(5418), 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_const, - 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(5457), 43, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5420), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_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_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [38038] = 7, + [39597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - ACTIONS(6656), 1, - anon_sym_LBRACE, - STATE(3111), 1, - sym_enumerator_list, - STATE(3268), 1, - sym_attribute_specifier, - ACTIONS(5678), 12, + ACTIONS(5669), 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_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5680), 41, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [38111] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - ACTIONS(6656), 1, - anon_sym_LBRACE, - STATE(3125), 1, - sym_enumerator_list, - STATE(3286), 1, - sym_attribute_specifier, - ACTIONS(5733), 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(5735), 41, + ACTIONS(5671), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [38184] = 3, + [39661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 13, + ACTIONS(6689), 28, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(6691), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4994), 44, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [39725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6302), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -394601,122 +398980,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_GT_GT, + anon_sym_SEMI, anon_sym_COLON_COLON, + 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_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [38249] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2298), 1, - anon_sym_LBRACE, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(6601), 1, - anon_sym_LBRACK, - ACTIONS(6603), 1, - sym_auto, - ACTIONS(6605), 1, - anon_sym_decltype, - STATE(3473), 1, - sym_new_declarator, - STATE(3513), 1, - sym_decltype_auto, - STATE(4008), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5363), 20, + ACTIONS(6300), 30, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5365), 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_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [38330] = 7, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [39789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, - anon_sym___attribute__, - ACTIONS(6531), 1, - anon_sym_LBRACE, - STATE(3048), 1, - sym_enumerator_list, - STATE(3270), 1, - sym_attribute_specifier, - ACTIONS(5733), 19, + ACTIONS(5673), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394731,21 +399044,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5735), 34, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5675), 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_elif_token1, anon_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, @@ -394758,91 +399082,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [38403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5257), 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(5259), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [38468] = 6, + [39853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6571), 1, - anon_sym_LT, - STATE(2931), 1, - sym_template_argument_list, - ACTIONS(5338), 16, + ACTIONS(6218), 1, + anon_sym___attribute__, + STATE(3365), 1, + sym_attribute_specifier, + ACTIONS(5883), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394853,13 +399105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4163), 38, + ACTIONS(5885), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394869,7 +399124,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -394883,11 +399137,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, @@ -394895,13 +399149,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [38539] = 3, + [39921] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5759), 28, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + STATE(3540), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5943), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394915,7 +399174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -394928,21 +399186,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5761), 29, + ACTIONS(5945), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -394960,78 +399214,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [38604] = 3, + [39991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 18, - aux_sym_preproc_elif_token1, + ACTIONS(6257), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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, - sym_identifier, - sym_literal_suffix, - ACTIONS(5232), 39, + ACTIONS(6259), 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_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_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, - [38669] = 6, + anon_sym_try, + [40055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6470), 1, - sym_auto, - ACTIONS(6472), 1, - anon_sym_decltype, - STATE(3073), 1, - sym_decltype_auto, - ACTIONS(5436), 25, + ACTIONS(6218), 1, + anon_sym___attribute__, + STATE(3321), 1, + sym_attribute_specifier, + ACTIONS(5909), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395046,23 +399297,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5438), 29, + anon_sym_DASH_GT, + ACTIONS(5911), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -395082,24 +399325,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, - [38740] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [40123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5724), 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, @@ -395108,53 +399367,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5255), 39, + sym_auto, + anon_sym_decltype, + ACTIONS(5726), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_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, - [38805] = 4, + [40187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5382), 17, + ACTIONS(6218), 1, + anon_sym___attribute__, + STATE(3374), 1, + sym_attribute_specifier, + ACTIONS(5879), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395169,10 +399421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5384), 38, + ACTIONS(5881), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395182,7 +399436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -395196,11 +399449,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, @@ -395208,13 +399461,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [38871] = 3, + [40255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 28, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5562), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5560), 28, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -395243,51 +399524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - ACTIONS(6660), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [38935] = 9, + [40321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - anon_sym___attribute__, - ACTIONS(6662), 1, - anon_sym_LBRACE, - ACTIONS(6664), 1, - anon_sym_COLON, - STATE(3231), 1, - sym__enum_base_clause, - STATE(3486), 1, - sym_enumerator_list, - STATE(3909), 1, - sym_attribute_specifier, - ACTIONS(6055), 16, + ACTIONS(5803), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395302,18 +399542,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6057), 34, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5805), 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_elif_token1, anon_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, @@ -395327,87 +399581,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [39011] = 5, + anon_sym_DASH_GT, + [40385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - STATE(3292), 1, - sym_attribute_specifier, - ACTIONS(5827), 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(5829), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5562), 27, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_AMP, + anon_sym_SEMI, 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5560), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [39079] = 4, + sym_this, + [40451] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5455), 17, + ACTIONS(6218), 1, + anon_sym___attribute__, + STATE(3328), 1, + sym_attribute_specifier, + ACTIONS(5835), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395422,10 +399669,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5457), 38, + ACTIONS(5837), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395435,7 +399684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -395449,11 +399697,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, @@ -395461,13 +399709,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [39145] = 3, + [40519] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 19, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + STATE(3516), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5931), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395481,88 +399734,30 @@ 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(4970), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [39209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4977), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(4970), 37, + sym_identifier, + ACTIONS(5933), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -395574,74 +399769,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_try, - [39273] = 7, + [40589] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, + ACTIONS(6503), 1, anon_sym___attribute__, - ACTIONS(6556), 1, - anon_sym_LBRACE, - STATE(3219), 1, - sym_enumerator_list, - STATE(3406), 1, + STATE(3279), 1, sym_attribute_specifier, - ACTIONS(5678), 20, + ACTIONS(5879), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5680), 32, + ACTIONS(5881), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -395650,15 +399833,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [39345] = 5, + anon_sym_requires, + [40657] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, + ACTIONS(6503), 1, anon_sym___attribute__, - STATE(3287), 1, + STATE(3289), 1, sym_attribute_specifier, - ACTIONS(5831), 12, + ACTIONS(5883), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -395671,7 +399857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5833), 42, + ACTIONS(5885), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -395714,10 +399900,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [39413] = 3, + [40725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5556), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5558), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [40789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 27, + ACTIONS(5418), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395745,7 +399992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5705), 29, + ACTIONS(5420), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -395775,10 +400022,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [39477] = 3, + [40853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 27, + ACTIONS(6218), 1, + anon_sym___attribute__, + STATE(3330), 1, + sym_attribute_specifier, + ACTIONS(5839), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395793,25 +400044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5686), 29, + anon_sym_DASH_GT, + ACTIONS(5841), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -395831,81 +400072,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, - [39541] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5384), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5382), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [39607] = 5, + anon_sym_DASH_GT_STAR, + [40921] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, + ACTIONS(6577), 1, anon_sym___attribute__, - STATE(3281), 1, + ACTIONS(6685), 1, + anon_sym_LBRACE, + ACTIONS(6687), 1, + anon_sym_COLON, + STATE(3360), 1, + sym__enum_base_clause, + STATE(3461), 1, + sym_enumerator_list, + STATE(3742), 1, sym_attribute_specifier, - ACTIONS(5895), 19, + ACTIONS(6108), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395920,12 +400115,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(5897), 35, + ACTIONS(6110), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395935,7 +400127,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, @@ -395948,11 +400139,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, @@ -395961,10 +400152,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [39675] = 3, + [40997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 12, + ACTIONS(6503), 1, + anon_sym___attribute__, + STATE(3294), 1, + sym_attribute_specifier, + ACTIONS(5913), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -395977,7 +400172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5384), 44, + ACTIONS(5915), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -395990,7 +400185,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -396003,7 +400197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -396022,10 +400215,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [39739] = 3, + [41065] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 19, + ACTIONS(6373), 1, + anon_sym___attribute__, + ACTIONS(6592), 1, + anon_sym_LBRACE, + STATE(3209), 1, + sym_enumerator_list, + STATE(3469), 1, + sym_attribute_specifier, + ACTIONS(5788), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396035,31 +400236,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4970), 37, + ACTIONS(5790), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_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_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -396067,7 +400263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -396082,137 +400277,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [39803] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [41137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4992), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, + ACTIONS(6693), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, anon_sym_asm, anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [39867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5751), 27, - anon_sym_DASH, - anon_sym_PLUS, + sym_this, + ACTIONS(6695), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5753), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [39931] = 5, + 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, + [41201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, - anon_sym___attribute__, - STATE(3280), 1, - sym_attribute_specifier, - ACTIONS(5882), 19, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396226,13 +400358,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(5884), 35, + ACTIONS(5019), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396242,8 +400374,11 @@ 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_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -396265,13 +400400,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, + anon_sym_DASH_GT, + anon_sym_try, + [41265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2909), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [39999] = 3, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(2911), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [41329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 14, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5562), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396281,12 +400478,11 @@ static const uint16_t ts_small_parse_table[] = { 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(5382), 42, + ACTIONS(5560), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -396329,10 +400525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [40063] = 3, + [41395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 27, + ACTIONS(6697), 1, + anon_sym_LBRACK_LBRACK, + STATE(3072), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5953), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396346,6 +400547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -396358,9 +400560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5757), 29, + ACTIONS(5955), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -396372,8 +400572,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -396390,10 +400588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [40127] = 3, + [41463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 19, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396413,7 +400611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4970), 37, + ACTIONS(5019), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396451,198 +400649,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_try, - [40191] = 5, + [41527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6666), 1, - anon_sym_LBRACK_LBRACK, - STATE(3030), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5970), 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_LBRACK, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5972), 27, + ACTIONS(6326), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, - [40259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5763), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5765), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_COLON_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [40323] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2180), 1, - anon_sym_LBRACE, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - STATE(3453), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 25, + ACTIONS(6324), 30, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6003), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [40393] = 3, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [41591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 27, + ACTIONS(5685), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396670,7 +400741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5769), 29, + ACTIONS(5687), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -396700,10 +400771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [40457] = 3, + [41655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 27, + ACTIONS(5677), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396731,7 +400802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5773), 29, + ACTIONS(5679), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -396761,76 +400832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [40521] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - STATE(3282), 1, - sym_attribute_specifier, - ACTIONS(5835), 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(5837), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [40589] = 4, + [41719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5021), 20, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396846,12 +400851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5014), 34, + ACTIONS(5019), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396863,7 +400867,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -396886,14 +400892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [40655] = 5, + anon_sym_try, + [41783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, - anon_sym___attribute__, - STATE(3250), 1, - sym_attribute_specifier, - ACTIONS(5849), 19, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396907,13 +400910,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(5851), 35, + ACTIONS(5019), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396923,8 +400926,11 @@ 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_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -396946,13 +400952,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, + anon_sym_try, + [41847] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5562), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5560), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [40723] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [41913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 19, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396972,7 +401039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4970), 37, + ACTIONS(5019), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397010,199 +401077,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_try, - [40787] = 5, + [41977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6595), 1, - anon_sym_LBRACK_LBRACK, - STATE(3030), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5954), 26, + ACTIONS(5560), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - sym_identifier, - ACTIONS(5956), 27, + ACTIONS(5562), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [40855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5775), 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5777), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [40919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6669), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - sym_this, - ACTIONS(6671), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [40983] = 5, + [42041] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, + ACTIONS(6503), 1, anon_sym___attribute__, - STATE(3279), 1, + STATE(3297), 1, sym_attribute_specifier, - ACTIONS(5839), 12, + ACTIONS(5909), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -397215,7 +401158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5841), 42, + ACTIONS(5911), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -397258,10 +401201,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [41051] = 3, + [42109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 27, + ACTIONS(6700), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397287,21 +401231,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5731), 29, + sym_literal_suffix, + ACTIONS(6702), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_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, @@ -397319,10 +401262,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [41115] = 3, + [42173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4997), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4995), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [42237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5005), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5003), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [42301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 27, + ACTIONS(5643), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397350,7 +401415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5615), 29, + ACTIONS(5645), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -397380,12 +401445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [41179] = 4, + [42365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5384), 13, + ACTIONS(5030), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397395,11 +401458,12 @@ static const uint16_t ts_small_parse_table[] = { 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(5382), 42, + ACTIONS(5028), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -397442,10 +401506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [41245] = 3, + [42429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 27, + ACTIONS(5651), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397473,7 +401537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5623), 29, + ACTIONS(5653), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -397503,10 +401567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [41309] = 3, + [42493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 27, + ACTIONS(5647), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397534,7 +401598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5619), 29, + ACTIONS(5649), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -397564,12 +401628,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [41373] = 5, + [42557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5562), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5560), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [42621] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym___attribute__, - STATE(3232), 1, + STATE(3380), 1, sym_attribute_specifier, ACTIONS(5853), 19, anon_sym_DASH, @@ -397627,10 +401752,18 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [41441] = 3, + [42689] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 27, + ACTIONS(6373), 1, + anon_sym___attribute__, + ACTIONS(6592), 1, + anon_sym_LBRACE, + STATE(3204), 1, + sym_enumerator_list, + STATE(3448), 1, + sym_attribute_specifier, + ACTIONS(5655), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397640,37 +401773,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, - sym_auto, - anon_sym_decltype, - ACTIONS(5615), 29, + ACTIONS(5657), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -397679,19 +401800,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [41505] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [42761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 27, + ACTIONS(4991), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397706,31 +401835,21 @@ 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_COLON, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5600), 29, + anon_sym_DASH_GT, + ACTIONS(4993), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -397745,21 +401864,24 @@ 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, - [41569] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [42825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, - anon_sym_LBRACE, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - STATE(3459), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5997), 25, + ACTIONS(5028), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397774,28 +401896,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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(5999), 27, + anon_sym_DASH_GT, + ACTIONS(5030), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_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, @@ -397809,14 +401925,24 @@ 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, - [41639] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [42889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5594), 27, + ACTIONS(5003), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397831,31 +401957,21 @@ 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_COLON, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5596), 29, + anon_sym_DASH_GT, + ACTIONS(5005), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -397870,14 +401986,24 @@ 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, - [41703] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [42953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 19, + ACTIONS(5643), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397891,27 +402017,34 @@ 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(4970), 37, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5645), 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_elif_token1, anon_sym_LPAREN2, anon_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_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -397923,26 +402056,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [41767] = 5, + [43017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, - anon_sym___attribute__, - STATE(3306), 1, - sym_attribute_specifier, - ACTIONS(5857), 19, + ACTIONS(5643), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397957,15 +402079,25 @@ 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(5859), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5645), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -397985,27 +402117,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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [41835] = 5, + anon_sym_DASH_GT, + [43081] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, - anon_sym___attribute__, - STATE(3225), 1, - sym_attribute_specifier, - ACTIONS(5861), 19, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + STATE(3483), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6030), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398020,22 +402147,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5863), 35, + sym_identifier, + ACTIONS(6032), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -398048,23 +402181,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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [41903] = 3, + anon_sym_DASH_GT, + [43151] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 27, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(5012), 1, + anon_sym_LBRACE, + ACTIONS(6704), 1, + anon_sym_LT, + STATE(3208), 1, + sym_template_argument_list, + ACTIONS(5014), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398075,7 +402208,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, @@ -398090,9 +402222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5588), 29, + ACTIONS(5019), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -398104,7 +402234,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, @@ -398122,14 +402251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [41967] = 5, + [43223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, + ACTIONS(6503), 1, anon_sym___attribute__, - STATE(3298), 1, + STATE(3262), 1, sym_attribute_specifier, - ACTIONS(5817), 12, + ACTIONS(5821), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -398142,7 +402271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5819), 42, + ACTIONS(5823), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -398185,10 +402314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [42035] = 3, + [43291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 27, + ACTIONS(6218), 1, + anon_sym___attribute__, + STATE(3372), 1, + sym_attribute_specifier, + ACTIONS(5864), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398203,25 +402336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5584), 29, + anon_sym_DASH_GT, + ACTIONS(5866), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -398241,57 +402364,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, - [42099] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [43359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - STATE(3303), 1, - sym_attribute_specifier, - ACTIONS(5821), 12, + ACTIONS(4995), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(5823), 42, + anon_sym_DASH_GT, + ACTIONS(4997), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -398302,17 +402433,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [42167] = 3, + anon_sym_DASH_GT_STAR, + [43423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 27, + ACTIONS(6666), 1, + anon_sym_LBRACK_LBRACK, + STATE(3072), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6016), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398326,6 +402460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -398338,9 +402473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5725), 29, + ACTIONS(6018), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -398352,8 +402485,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -398370,72 +402501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [42231] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5457), 27, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5455), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [42297] = 3, + [43491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 27, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398449,34 +402518,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5537), 29, + ACTIONS(5019), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -398488,137 +402550,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [42361] = 3, + anon_sym_try, + [43555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6315), 26, + ACTIONS(5024), 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_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5026), 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_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_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, - ACTIONS(6313), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [43619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5037), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5035), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [43683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5001), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4999), 42, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym___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_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_typename, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, anon_sym_template, - [42425] = 3, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [43747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 27, + ACTIONS(6503), 1, + anon_sym___attribute__, + STATE(3310), 1, + sym_attribute_specifier, + ACTIONS(5864), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5663), 29, + ACTIONS(5866), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [42489] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [43815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 27, + ACTIONS(5035), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398633,31 +402826,21 @@ 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_COLON, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5663), 29, + anon_sym_DASH_GT, + ACTIONS(5037), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -398672,14 +402855,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, - [42553] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [43879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 27, + ACTIONS(5046), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5048), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398693,34 +402889,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5693), 29, + ACTIONS(5041), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -398732,15 +402920,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, - [42617] = 3, + [43945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 27, + ACTIONS(5689), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398768,7 +402962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5701), 29, + ACTIONS(5691), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -398798,7 +402992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [42681] = 3, + [44009] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5661), 27, @@ -398859,35 +403053,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [42745] = 5, + [44073] = 4, ACTIONS(3), 1, sym_comment, - STATE(1933), 1, - sym_string_literal, - ACTIONS(6677), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6675), 6, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5533), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(6673), 44, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5531), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -398908,85 +403099,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [42813] = 3, + anon_sym_try, + anon_sym_requires, + [44139] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 27, + ACTIONS(6503), 1, + anon_sym___attribute__, + STATE(3308), 1, + sym_attribute_specifier, + ACTIONS(5853), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5855), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - ACTIONS(5721), 29, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [44207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6483), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [42877] = 3, + ACTIONS(6481), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [44271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 27, + ACTIONS(6218), 1, + anon_sym___attribute__, + STATE(3309), 1, + sym_attribute_specifier, + ACTIONS(5821), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399001,25 +403261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5739), 29, + anon_sym_DASH_GT, + ACTIONS(5823), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -399039,15 +403289,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, - [42941] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [44339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6679), 28, + ACTIONS(2945), 28, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -399076,7 +403334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - ACTIONS(6681), 28, + ACTIONS(2947), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -399105,10 +403363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [43005] = 3, + [44403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 27, + ACTIONS(5635), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399136,7 +403394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5564), 29, + ACTIONS(5637), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -399166,196 +403424,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [43069] = 5, + [44467] = 3, ACTIONS(3), 1, sym_comment, - STATE(2968), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6644), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5535), 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(5537), 35, + ACTIONS(6413), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [43137] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5382), 17, + anon_sym_DASH_GT, + ACTIONS(6411), 30, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_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(5384), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [43203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2933), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_DOT, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_typename, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(2935), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + [44531] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1968), 1, + sym_string_literal, + ACTIONS(6711), 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, - [43267] = 3, + ACTIONS(6709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6707), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [44599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5745), 27, + ACTIONS(5776), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399383,7 +403579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5747), 29, + ACTIONS(5778), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -399413,10 +403609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [43331] = 3, + [44663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5741), 27, + ACTIONS(5707), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399444,7 +403640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5743), 29, + ACTIONS(5709), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -399474,18 +403670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [43395] = 7, + [44727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, - anon_sym___attribute__, - ACTIONS(6556), 1, - anon_sym_LBRACE, - STATE(3213), 1, - sym_enumerator_list, - STATE(3438), 1, - sym_attribute_specifier, - ACTIONS(5733), 20, + ACTIONS(5772), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399495,25 +403683,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_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(5735), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5774), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -399522,345 +403722,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [43467] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5384), 27, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5382), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [43533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5019), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [43597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6683), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(6685), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [43661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4966), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4964), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [43725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5010), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5008), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [43789] = 9, + [44791] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, + ACTIONS(6218), 1, anon_sym___attribute__, - ACTIONS(6662), 1, - anon_sym_LBRACE, - ACTIONS(6664), 1, - anon_sym_COLON, - STATE(3226), 1, - sym__enum_base_clause, - STATE(3405), 1, - sym_enumerator_list, - STATE(3812), 1, + STATE(3295), 1, sym_attribute_specifier, - ACTIONS(6073), 16, + ACTIONS(5849), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399875,9 +403753,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(6075), 34, + ACTIONS(5851), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -399887,6 +403768,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, @@ -399899,11 +403781,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, @@ -399912,133 +403794,73 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [43865] = 3, + [44859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_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(4988), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(6503), 1, 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [43929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6389), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6387), 30, + STATE(3298), 1, + sym_attribute_specifier, + ACTIONS(5835), 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_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_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5837), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [43993] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [44927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 27, - aux_sym_preproc_elif_token1, + ACTIONS(5681), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400064,20 +403886,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(6689), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(5683), 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, + aux_sym_preproc_elif_token1, anon_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, @@ -400095,10 +403918,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [44057] = 3, + [44991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6713), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(6715), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [45055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 27, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + STATE(3538), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5992), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400124,21 +404015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5713), 29, + ACTIONS(5994), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_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, @@ -400156,10 +404043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [44121] = 3, + [45125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 27, + ACTIONS(5738), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400187,7 +404074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5709), 29, + ACTIONS(5740), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -400217,17 +404104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [44185] = 6, + [45189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, - anon_sym_LBRACE, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - STATE(3478), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5966), 25, + ACTIONS(5758), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400253,17 +404133,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5968), 27, + sym_auto, + anon_sym_decltype, + ACTIONS(5760), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_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, @@ -400281,17 +404165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [44255] = 6, + [45253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, - anon_sym_LBRACE, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - STATE(3487), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5950), 25, + ACTIONS(5799), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400317,17 +404194,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5952), 27, + sym_auto, + anon_sym_decltype, + ACTIONS(5801), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_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, @@ -400345,71 +404226,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [44325] = 3, + [45317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 28, + ACTIONS(5556), 17, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(5384), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, + 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(5558), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_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, - [44389] = 3, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [45381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 27, + ACTIONS(5742), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400437,7 +404318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5537), 29, + ACTIONS(5744), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -400467,25 +404348,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [44453] = 5, + [45445] = 5, ACTIONS(3), 1, sym_comment, - STATE(1931), 1, + STATE(1964), 1, sym_string_literal, - ACTIONS(6677), 5, + ACTIONS(6711), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(6675), 6, + ACTIONS(6709), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6673), 44, + ACTIONS(6707), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -400530,10 +404411,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [44521] = 3, + [45513] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5533), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5531), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [45579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6717), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(6719), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [45643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 27, + ACTIONS(5614), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400561,7 +404565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5697), 29, + ACTIONS(5616), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -400591,13 +404595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [44585] = 4, + [45707] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 1, - sym_literal_suffix, - ACTIONS(4147), 26, - aux_sym_preproc_elif_token1, + STATE(3002), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6612), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5418), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400612,30 +404620,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(4139), 29, + anon_sym_DASH_GT, + ACTIONS(5420), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -400649,75 +404646,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [44651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4998), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4996), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [44715] = 3, + anon_sym_DASH_GT_STAR, + [45775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 28, + ACTIONS(6721), 28, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -400746,7 +404690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - ACTIONS(5380), 28, + ACTIONS(6723), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -400775,195 +404719,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [44779] = 5, + [45839] = 3, ACTIONS(3), 1, sym_comment, - STATE(1934), 1, - sym_string_literal, - ACTIONS(6677), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6675), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5618), 27, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6673), 44, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [44847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 14, + ACTIONS(5620), 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_elif_token1, 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_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5000), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [45903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 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_asm, - anon_sym___asm__, + 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_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [44911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5006), 14, + ACTIONS(5624), 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_elif_token1, 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_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5004), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [44975] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [45967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 17, + ACTIONS(5614), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -400978,21 +404859,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_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(5380), 39, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5616), 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_elif_token1, anon_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, @@ -401007,46 +404898,39 @@ 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_DASH_GT_STAR, - [45039] = 4, + anon_sym_DASH_GT, + [46031] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5457), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1966), 1, + sym_string_literal, + ACTIONS(6711), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6709), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5455), 42, + ACTIONS(6707), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -401067,93 +404951,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [45105] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6180), 1, - anon_sym___attribute__, - STATE(3337), 1, - sym_attribute_specifier, - ACTIONS(5821), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(5823), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [45173] = 5, + [46099] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, + ACTIONS(6503), 1, anon_sym___attribute__, - STATE(3255), 1, + STATE(3299), 1, sym_attribute_specifier, - ACTIONS(5895), 12, + ACTIONS(5839), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -401166,7 +404985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5897), 42, + ACTIONS(5841), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -401209,14 +405028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [45241] = 5, + [46167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, - anon_sym___attribute__, - STATE(3343), 1, - sym_attribute_specifier, - ACTIONS(5817), 19, + ACTIONS(5746), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401231,15 +405046,25 @@ 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(5819), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5748), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -401259,23 +405084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [45309] = 3, + anon_sym_DASH_GT, + [46231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 19, + ACTIONS(5750), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401289,27 +405106,34 @@ 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(6240), 37, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5752), 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_elif_token1, anon_sym_LPAREN2, anon_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_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -401321,148 +405145,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [45373] = 3, + [46295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 28, + ACTIONS(6503), 1, + anon_sym___attribute__, + STATE(3273), 1, + sym_attribute_specifier, + ACTIONS(5875), 12, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4994), 28, + anon_sym_SLASH, + anon_sym_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(5877), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + 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, - [45437] = 3, + 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, + [46363] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 28, + ACTIONS(6503), 1, + anon_sym___attribute__, + STATE(3266), 1, + sym_attribute_specifier, + ACTIONS(5849), 12, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, + anon_sym_SLASH, + anon_sym_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(5851), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - sym_this, - ACTIONS(2987), 28, + [46431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4993), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4991), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [45501] = 5, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [46495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, + ACTIONS(6503), 1, anon_sym___attribute__, - STATE(3256), 1, + STATE(3270), 1, sym_attribute_specifier, - ACTIONS(5882), 12, + ACTIONS(5871), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -401475,7 +405357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5884), 42, + ACTIONS(5873), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -401518,14 +405400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [45569] = 5, + [46563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, + ACTIONS(6218), 1, anon_sym___attribute__, - STATE(3243), 1, + STATE(3284), 1, sym_attribute_specifier, - ACTIONS(5827), 19, + ACTIONS(5871), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -401545,7 +405427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5829), 35, + ACTIONS(5873), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -401581,71 +405463,73 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [45637] = 3, + [46631] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4964), 28, + ACTIONS(6218), 1, + anon_sym___attribute__, + STATE(3276), 1, + sym_attribute_specifier, + ACTIONS(5875), 19, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4966), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5877), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_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, - [45701] = 3, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [46699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 28, + ACTIONS(4991), 28, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -401674,7 +405558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - ACTIONS(5010), 28, + ACTIONS(4993), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -401703,10 +405587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [45765] = 3, + [46763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 28, + ACTIONS(5035), 28, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -401735,7 +405619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - ACTIONS(4990), 28, + ACTIONS(5037), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -401764,71 +405648,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [45829] = 3, + [46827] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 28, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - ACTIONS(4998), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + STATE(1967), 1, + sym_string_literal, + ACTIONS(6711), 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, - [45893] = 3, + ACTIONS(6709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6707), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [46895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 28, + ACTIONS(4999), 28, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -401857,7 +405743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - ACTIONS(5002), 28, + ACTIONS(5001), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -401886,71 +405772,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [45957] = 3, + [46959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6250), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1965), 1, + sym_string_literal, + ACTIONS(6711), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6709), 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_SEMI, anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6248), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_LBRACK_LBRACK, + ACTIONS(6707), 44, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_primitive_type, anon_sym_enum, anon_sym_class, anon_sym_struct, anon_sym_union, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, anon_sym_typename, anon_sym_template, - [46021] = 3, + anon_sym_operator, + [47027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 28, + ACTIONS(5024), 28, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -401979,7 +405867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - ACTIONS(5006), 28, + ACTIONS(5026), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -402008,73 +405896,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [46085] = 5, + [47091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - STATE(3258), 1, - sym_attribute_specifier, - ACTIONS(5861), 12, + ACTIONS(5730), 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_const, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5863), 42, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5732), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [46153] = 3, + [47155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 28, + ACTIONS(5560), 28, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -402103,7 +405989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - ACTIONS(6693), 28, + ACTIONS(5562), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -402132,583 +406018,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [46217] = 5, + [47219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - STATE(3261), 1, - sym_attribute_specifier, - ACTIONS(5857), 12, + ACTIONS(4995), 28, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(5859), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [46285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5380), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5378), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, anon_sym_asm, anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [46349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6228), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6226), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [46413] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - STATE(3265), 1, - sym_attribute_specifier, - ACTIONS(5853), 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(5855), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [46481] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1932), 1, - sym_string_literal, - ACTIONS(6677), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6675), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6673), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, anon_sym_typename, anon_sym_template, - anon_sym_operator, - [46549] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6180), 1, - anon_sym___attribute__, - STATE(3254), 1, - sym_attribute_specifier, - ACTIONS(5831), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(5833), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [46617] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(6695), 1, - anon_sym_LT, - STATE(3223), 1, - sym_template_argument_list, - ACTIONS(4977), 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_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(4970), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [46689] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - STATE(3269), 1, - sym_attribute_specifier, - ACTIONS(5849), 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(5851), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [46757] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6180), 1, - anon_sym___attribute__, - STATE(3307), 1, - sym_attribute_specifier, - ACTIONS(5835), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(5837), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [46825] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5384), 27, + sym_this, + ACTIONS(4997), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, @@ -402730,7 +406079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5382), 28, + [47283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5003), 28, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, @@ -402756,101 +406108,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_delete, anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [46891] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6180), 1, - anon_sym___attribute__, - STATE(3310), 1, - sym_attribute_specifier, - ACTIONS(5839), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(5841), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5005), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [46959] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1930), 1, - sym_string_literal, - ACTIONS(6677), 5, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(6675), 6, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [47347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5558), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6673), 44, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5556), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -402871,24 +406185,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [47027] = 3, + anon_sym_try, + anon_sym_requires, + [47411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 28, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5030), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [47475] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 19, + ACTIONS(6373), 1, + anon_sym___attribute__, + STATE(3449), 1, + sym_attribute_specifier, + ACTIONS(5913), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -402898,27 +406279,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(5609), 36, + ACTIONS(5915), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -402928,7 +406307,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -402942,248 +406320,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [47090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 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(5717), 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___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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [47153] = 12, + [47542] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6698), 2, + ACTIONS(6373), 1, + anon_sym___attribute__, + STATE(3441), 1, + sym_attribute_specifier, + ACTIONS(5835), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6704), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6700), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 19, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6172), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - [47234] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6714), 1, - anon_sym_AMP, - ACTIONS(6720), 1, anon_sym_GT_EQ, - ACTIONS(6724), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6726), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6710), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6712), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6172), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - [47329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(5717), 36, + ACTIONS(5837), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -403193,7 +406369,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -403207,152 +406382,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [47392] = 20, + anon_sym_GT2, + [47609] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6714), 1, - anon_sym_AMP, - ACTIONS(6720), 1, - anon_sym_GT_EQ, - ACTIONS(6724), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6726), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6710), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6728), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6712), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 4, - anon_sym_PIPE, + ACTIONS(6614), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6172), 23, + ACTIONS(6616), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6729), 1, anon_sym_PIPE_PIPE, + ACTIONS(6731), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - [47489] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6714), 1, + ACTIONS(6733), 1, + anon_sym_PIPE, + ACTIONS(6737), 1, anon_sym_AMP, - ACTIONS(6720), 1, + ACTIONS(6743), 1, anon_sym_GT_EQ, - ACTIONS(6724), 1, + ACTIONS(6747), 1, + anon_sym_QMARK, + ACTIONS(6749), 1, anon_sym_LT_EQ_GT, - ACTIONS(6726), 1, - anon_sym_bitand, - ACTIONS(6730), 1, - anon_sym_PIPE, - ACTIONS(6732), 1, + ACTIONS(6751), 1, + anon_sym_or, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, anon_sym_bitor, - STATE(2791), 1, + ACTIONS(6757), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6710), 2, + ACTIONS(6725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6728), 2, + ACTIONS(6735), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6170), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6712), 3, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6716), 3, + ACTIONS(6739), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6718), 3, + ACTIONS(6741), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 22, - anon_sym_DOT_DOT_DOT, + ACTIONS(6618), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -403366,216 +406471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [47590] = 13, + [47722] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6734), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6700), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6170), 17, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(6469), 1, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_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(6172), 22, + ACTIONS(6616), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(6729), 1, anon_sym_PIPE_PIPE, + ACTIONS(6731), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - [47673] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6714), 1, + ACTIONS(6733), 1, + anon_sym_PIPE, + ACTIONS(6737), 1, anon_sym_AMP, - ACTIONS(6720), 1, + ACTIONS(6743), 1, anon_sym_GT_EQ, - ACTIONS(6724), 1, + ACTIONS(6747), 1, + anon_sym_QMARK, + ACTIONS(6749), 1, anon_sym_LT_EQ_GT, - ACTIONS(6726), 1, - anon_sym_bitand, - ACTIONS(6730), 1, - anon_sym_PIPE, - ACTIONS(6732), 1, - anon_sym_bitor, - ACTIONS(6736), 1, - anon_sym_AMP_AMP, - ACTIONS(6738), 1, + ACTIONS(6751), 1, + anon_sym_or, + ACTIONS(6753), 1, anon_sym_and, - STATE(2791), 1, + ACTIONS(6755), 1, + anon_sym_bitor, + ACTIONS(6757), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6170), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(6710), 2, + ACTIONS(6725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6728), 2, + ACTIONS(6735), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6712), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [47778] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6720), 1, - anon_sym_GT_EQ, - ACTIONS(6724), 1, - anon_sym_LT_EQ_GT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6710), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6722), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6712), 3, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6716), 3, + ACTIONS(6739), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6718), 3, + ACTIONS(6741), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6172), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(6471), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -403589,34 +406556,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - [47869] = 11, + [47835] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(2830), 1, + anon_sym_LBRACE, + ACTIONS(6759), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6761), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, + ACTIONS(6763), 1, + sym_auto, + ACTIONS(6765), 1, + anon_sym_decltype, + STATE(3756), 1, + sym_new_declarator, + STATE(3941), 1, + sym_decltype_auto, + STATE(4198), 2, sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6712), 3, + sym_initializer_list, + ACTIONS(5381), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -403626,10 +406591,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(6172), 29, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5383), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -403638,9 +406602,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -403652,56 +406613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [47948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5396), 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(5398), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -403712,208 +406623,63 @@ 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, - [48011] = 16, + anon_sym_DASH_GT_STAR, + [47914] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(6720), 1, - anon_sym_GT_EQ, - ACTIONS(6724), 1, - anon_sym_LT_EQ_GT, - STATE(2791), 1, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6710), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6712), 3, + ACTIONS(6767), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6172), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [48100] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6724), 1, - anon_sym_LT_EQ_GT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6710), 2, + ACTIONS(6151), 21, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6712), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6170), 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(6172), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [48185] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6710), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6712), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6170), 12, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6172), 29, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6153), 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_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -403925,79 +406691,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [48266] = 5, + [47993] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, - anon_sym___attribute__, - STATE(3441), 1, - sym_attribute_specifier, - ACTIONS(5827), 20, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6777), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6779), 1, + anon_sym_COMMA, + ACTIONS(6781), 1, + anon_sym_RPAREN, + ACTIONS(6783), 1, anon_sym_DASH, + ACTIONS(6785), 1, anon_sym_PLUS, + ACTIONS(6787), 1, anon_sym_STAR, + ACTIONS(6789), 1, anon_sym_SLASH, + ACTIONS(6791), 1, anon_sym_PERCENT, + ACTIONS(6793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6795), 1, + anon_sym_AMP_AMP, + ACTIONS(6797), 1, anon_sym_PIPE, + ACTIONS(6799), 1, anon_sym_CARET, + ACTIONS(6801), 1, anon_sym_AMP, + ACTIONS(6803), 1, + anon_sym_EQ_EQ, + ACTIONS(6805), 1, + anon_sym_BANG_EQ, + ACTIONS(6807), 1, anon_sym_GT, + ACTIONS(6809), 1, anon_sym_GT_EQ, + ACTIONS(6811), 1, anon_sym_LT_EQ, + ACTIONS(6813), 1, anon_sym_LT, + ACTIONS(6815), 1, anon_sym_LT_LT, + ACTIONS(6817), 1, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5829), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, + ACTIONS(6819), 1, anon_sym_LBRACK, + ACTIONS(6821), 1, + anon_sym_EQ, + ACTIONS(6823), 1, anon_sym_QMARK, + ACTIONS(6825), 1, anon_sym_STAR_EQ, + ACTIONS(6827), 1, anon_sym_SLASH_EQ, + ACTIONS(6829), 1, anon_sym_PERCENT_EQ, + ACTIONS(6831), 1, anon_sym_PLUS_EQ, + ACTIONS(6833), 1, anon_sym_DASH_EQ, + ACTIONS(6835), 1, anon_sym_LT_LT_EQ, + ACTIONS(6837), 1, + anon_sym_GT_GT_EQ, + ACTIONS(6839), 1, anon_sym_AMP_EQ, + ACTIONS(6841), 1, anon_sym_CARET_EQ, + ACTIONS(6843), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(6847), 1, anon_sym_LT_EQ_GT, + ACTIONS(6849), 1, + anon_sym_or, + ACTIONS(6851), 1, + anon_sym_and, + ACTIONS(6853), 1, anon_sym_bitor, + ACTIONS(6855), 1, + anon_sym_xor, + ACTIONS(6857), 1, anon_sym_bitand, + ACTIONS(6859), 1, anon_sym_not_eq, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(6863), 2, + anon_sym_DOT, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [48333] = 3, + ACTIONS(6845), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [48154] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5759), 19, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_DOT, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6775), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6245), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404012,24 +406832,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5761), 36, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6247), 24, 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_elif_token1, 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, @@ -404041,71 +406864,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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [48396] = 13, + [48229] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - STATE(2791), 1, + ACTIONS(6871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6873), 1, + anon_sym_AMP_AMP, + ACTIONS(6885), 1, + anon_sym_GT_EQ, + ACTIONS(6889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6891), 1, + anon_sym_or, + ACTIONS(6893), 1, + anon_sym_and, + ACTIONS(6895), 1, + anon_sym_not_eq, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6710), 2, + ACTIONS(6869), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6722), 2, + ACTIONS(6875), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6879), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6712), 3, + ACTIONS(6767), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 10, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(6673), 5, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6172), 29, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(6675), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -404117,49 +406949,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [48479] = 3, + [48336] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, anon_sym_DOT, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6771), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6775), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5398), 36, + ACTIONS(6231), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -404171,109 +406990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [48542] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, - anon_sym_LPAREN2, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6081), 1, - anon_sym_STAR, - ACTIONS(6083), 1, - anon_sym_AMP_AMP, - ACTIONS(6085), 1, - anon_sym_AMP, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(6089), 1, - anon_sym_LBRACK, - STATE(3802), 1, - sym_parameter_list, - STATE(6263), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6807), 1, - sym__declarator, - STATE(6890), 1, - sym__abstract_declarator, - STATE(8562), 1, - sym_ms_based_modifier, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(6740), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [48649] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6275), 1, - anon_sym___attribute__, - STATE(3439), 1, - sym_attribute_specifier, - ACTIONS(5831), 20, + ACTIONS(6229), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404282,94 +407000,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5833), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_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, + sym_identifier, + [48413] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [48716] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(4985), 1, - anon_sym_LT, - STATE(3335), 1, - sym_template_argument_list, - ACTIONS(4977), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4970), 32, + ACTIONS(6153), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -404388,82 +407084,74 @@ 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, - [48787] = 28, + [48492] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6632), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6652), 1, - anon_sym_EQ, - ACTIONS(6714), 1, + ACTIONS(6731), 1, + anon_sym_AMP_AMP, + ACTIONS(6733), 1, + anon_sym_PIPE, + ACTIONS(6737), 1, anon_sym_AMP, - ACTIONS(6720), 1, + ACTIONS(6743), 1, anon_sym_GT_EQ, - ACTIONS(6724), 1, + ACTIONS(6749), 1, anon_sym_LT_EQ_GT, - ACTIONS(6726), 1, - anon_sym_bitand, - ACTIONS(6730), 1, - anon_sym_PIPE, - ACTIONS(6732), 1, - anon_sym_bitor, - ACTIONS(6736), 1, - anon_sym_AMP_AMP, - ACTIONS(6738), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6742), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6744), 1, - anon_sym_QMARK, - ACTIONS(6746), 1, - anon_sym_or, - STATE(2791), 1, + ACTIONS(6755), 1, + anon_sym_bitor, + ACTIONS(6757), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6710), 2, + ACTIONS(6151), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(6725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6728), 2, + ACTIONS(6735), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6712), 3, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6716), 3, + ACTIONS(6739), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6718), 3, + ACTIONS(6741), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6654), 18, + ACTIONS(6153), 21, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -404477,78 +407165,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [48900] = 4, + [48597] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5535), 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, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(5537), 42, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6771), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6775), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6243), 22, 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_elif_token1, anon_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_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_GT_EQ, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6241), 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, + sym_identifier, + [48674] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_DOT, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6775), 2, 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, - [48965] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5367), 1, - sym_literal_suffix, - ACTIONS(4147), 24, + ACTIONS(6869), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6767), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 19, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -404567,22 +407277,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4139), 30, + sym_identifier, + ACTIONS(6153), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -404595,31 +407301,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + [48755] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_DOT, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [49030] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6468), 1, - anon_sym_LBRACK, - STATE(3322), 1, - sym_new_declarator, - ACTIONS(6091), 25, + ACTIONS(6869), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6767), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 17, anon_sym_PIPE, anon_sym_CARET, anon_sym_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, @@ -404630,21 +407347,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6093), 28, + ACTIONS(6153), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -404657,18 +407371,23 @@ 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, - [49097] = 5, + [48838] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, - anon_sym___attribute__, - STATE(3435), 1, - sym_attribute_specifier, - ACTIONS(5835), 20, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_DOT, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6775), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6197), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404678,27 +407397,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5837), 33, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6199), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -404706,80 +407430,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [49164] = 11, + [48913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(6748), 1, - anon_sym_LPAREN2, - ACTIONS(6750), 1, - anon_sym_LBRACK, - ACTIONS(6752), 1, - sym_auto, - ACTIONS(6754), 1, - anon_sym_decltype, - STATE(3870), 1, - sym_new_declarator, - STATE(3934), 1, - sym_decltype_auto, - STATE(4170), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5356), 16, + ACTIONS(5711), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5358), 30, + ACTIONS(5713), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -404790,73 +407490,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [49243] = 26, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [48976] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6640), 1, - anon_sym_EQ, - ACTIONS(6714), 1, + ACTIONS(6733), 1, + anon_sym_PIPE, + ACTIONS(6737), 1, anon_sym_AMP, - ACTIONS(6720), 1, + ACTIONS(6743), 1, anon_sym_GT_EQ, - ACTIONS(6724), 1, + ACTIONS(6749), 1, anon_sym_LT_EQ_GT, - ACTIONS(6726), 1, - anon_sym_bitand, - ACTIONS(6730), 1, - anon_sym_PIPE, - ACTIONS(6732), 1, + ACTIONS(6755), 1, anon_sym_bitor, - ACTIONS(6736), 1, - anon_sym_AMP_AMP, - ACTIONS(6738), 1, - anon_sym_and, - ACTIONS(6742), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6746), 1, - anon_sym_or, - STATE(2791), 1, + ACTIONS(6757), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6710), 2, + ACTIONS(6725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6728), 2, + ACTIONS(6735), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6712), 3, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6151), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6716), 3, + ACTIONS(6739), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6718), 3, + ACTIONS(6741), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6642), 20, + ACTIONS(6153), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, @@ -404874,14 +407576,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [49352] = 5, + [49077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, - anon_sym___attribute__, - STATE(3428), 1, - sym_attribute_specifier, - ACTIONS(5839), 20, + ACTIONS(5304), 4, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(5306), 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(4137), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(4145), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404891,66 +407626,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5841), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [49419] = 8, + anon_sym_DOT, + sym_identifier, + [49144] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6756), 1, + ACTIONS(6897), 1, anon_sym_LPAREN2, - ACTIONS(6758), 1, + ACTIONS(6899), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6760), 1, + ACTIONS(6901), 1, anon_sym_LBRACK, - STATE(3608), 1, + STATE(3720), 1, sym_parameter_list, - STATE(3228), 2, + STATE(3382), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(5878), 19, + ACTIONS(5893), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -404970,7 +407672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5880), 30, + ACTIONS(5895), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -405001,107 +407703,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [49492] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5312), 1, - anon_sym_virtual, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6766), 1, - sym_auto, - ACTIONS(6768), 1, - anon_sym_decltype, - STATE(3589), 1, - sym_decltype_auto, - ACTIONS(6762), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5302), 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(3437), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(6764), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5300), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [49577] = 10, + [49217] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(3408), 1, + ACTIONS(6737), 1, + anon_sym_AMP, + ACTIONS(6743), 1, + anon_sym_GT_EQ, + ACTIONS(6749), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6757), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(3409), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6704), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6192), 22, + ACTIONS(6725), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6727), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6739), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6741), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6153), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -405113,8 +407775,14 @@ 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, - ACTIONS(6190), 24, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [49312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5665), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -405129,90 +407797,25 @@ 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, - [49654] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, anon_sym_DOT, - ACTIONS(6770), 1, + anon_sym_DASH_GT, + ACTIONS(5667), 36, anon_sym_DOT_DOT_DOT, - ACTIONS(6772), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, anon_sym_AMP_AMP, - ACTIONS(6786), 1, - anon_sym_GT_EQ, - ACTIONS(6788), 1, - anon_sym_QMARK, - ACTIONS(6790), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6792), 1, - anon_sym_or, - ACTIONS(6794), 1, - anon_sym_and, - ACTIONS(6796), 1, - anon_sym_not_eq, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6734), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6776), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6778), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6780), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6782), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6700), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6784), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6652), 5, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6654), 14, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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, @@ -405223,36 +407826,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [49765] = 10, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [49375] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(3408), 1, + ACTIONS(6743), 1, + anon_sym_GT_EQ, + ACTIONS(6749), 1, + anon_sym_LT_EQ_GT, + STATE(2790), 1, sym_argument_list, - STATE(3409), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6704), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6172), 22, + ACTIONS(6725), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6727), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6739), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6741), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6153), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -405264,36 +407908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6170), 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, - sym_identifier, - [49842] = 3, + [49466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 12, + ACTIONS(5544), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -405306,7 +407929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5580), 43, + ACTIONS(5546), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -405319,7 +407942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -405350,41 +407973,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [49905] = 8, + [49529] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6756), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6760), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - STATE(3608), 1, - sym_parameter_list, - STATE(3228), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5811), 19, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6743), 1, + anon_sym_GT_EQ, + ACTIONS(6749), 1, + anon_sym_LT_EQ_GT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6725), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6741), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6151), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5813), 30, + ACTIONS(6153), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -405392,7 +408026,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_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -405407,24 +408043,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_STAR, - [49978] = 6, + [49618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6798), 1, - sym_auto, - ACTIONS(6800), 1, - anon_sym_decltype, - STATE(3308), 1, - sym_decltype_auto, - ACTIONS(5436), 12, + ACTIONS(5754), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -405437,7 +408062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5438), 40, + ACTIONS(5756), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -405450,6 +408075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -405474,30 +408100,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [50047] = 10, + [49681] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(3408), 1, + ACTIONS(6749), 1, + anon_sym_LT_EQ_GT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6725), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6727), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6151), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6153), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [49766] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_DOT, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6704), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6216), 22, + ACTIONS(6179), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -405520,7 +408219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6214), 24, + ACTIONS(6177), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -405545,26 +408244,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - [50124] = 8, + [49843] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6756), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6760), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - STATE(3608), 1, - sym_parameter_list, - STATE(3228), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5801), 19, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6725), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -405577,9 +408283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5803), 30, + ACTIONS(6153), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -405588,6 +408292,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -405606,51 +408313,102 @@ 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, - [50197] = 11, + [49924] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(6748), 1, - anon_sym_LPAREN2, - ACTIONS(6750), 1, - anon_sym_LBRACK, - ACTIONS(6752), 1, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5344), 1, + anon_sym_virtual, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(6907), 1, sym_auto, - ACTIONS(6754), 1, + ACTIONS(6909), 1, anon_sym_decltype, - STATE(3762), 1, - sym_new_declarator, - STATE(3934), 1, + STATE(3682), 1, sym_decltype_auto, - STATE(4202), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5349), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6903), 6, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(5334), 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(3566), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6905), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5332), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [50009] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, anon_sym_DOT, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6771), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6775), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5351), 30, + ACTIONS(6153), 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_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -405668,139 +408426,94 @@ 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, - [50276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5759), 12, + ACTIONS(6151), 24, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5761), 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___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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_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, - [50339] = 26, + sym_identifier, + [50086] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6646), 1, + ACTIONS(6673), 1, anon_sym_EQ, - ACTIONS(6714), 1, + ACTIONS(6729), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6731), 1, + anon_sym_AMP_AMP, + ACTIONS(6733), 1, + anon_sym_PIPE, + ACTIONS(6737), 1, anon_sym_AMP, - ACTIONS(6720), 1, + ACTIONS(6743), 1, anon_sym_GT_EQ, - ACTIONS(6724), 1, + ACTIONS(6749), 1, anon_sym_LT_EQ_GT, - ACTIONS(6726), 1, - anon_sym_bitand, - ACTIONS(6730), 1, - anon_sym_PIPE, - ACTIONS(6732), 1, - anon_sym_bitor, - ACTIONS(6736), 1, - anon_sym_AMP_AMP, - ACTIONS(6738), 1, - anon_sym_and, - ACTIONS(6742), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6746), 1, + ACTIONS(6751), 1, anon_sym_or, - STATE(2791), 1, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_bitor, + ACTIONS(6757), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6710), 2, + ACTIONS(6725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6728), 2, + ACTIONS(6735), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6712), 3, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6716), 3, + ACTIONS(6739), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6718), 3, + ACTIONS(6741), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6648), 20, + ACTIONS(6675), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -405821,78 +408534,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [50448] = 28, + [50195] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(2830), 1, + anon_sym_LBRACE, + ACTIONS(6759), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6761), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6630), 1, + ACTIONS(6763), 1, + sym_auto, + ACTIONS(6765), 1, + anon_sym_decltype, + STATE(3786), 1, + sym_new_declarator, + STATE(3941), 1, + sym_decltype_auto, + STATE(4242), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5350), 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(6632), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5352), 30, anon_sym_DOT_DOT_DOT, - ACTIONS(6714), 1, - anon_sym_AMP, - ACTIONS(6720), 1, - anon_sym_GT_EQ, - ACTIONS(6724), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6726), 1, - anon_sym_bitand, - ACTIONS(6730), 1, - anon_sym_PIPE, - ACTIONS(6732), 1, - anon_sym_bitor, - ACTIONS(6736), 1, - anon_sym_AMP_AMP, - ACTIONS(6738), 1, - anon_sym_and, - ACTIONS(6742), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6744), 1, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, - ACTIONS(6746), 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, anon_sym_or, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, + 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(6131), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6710), 2, + anon_sym_DASH_GT_STAR, + [50274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5711), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6728), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6712), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6718), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6634), 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(5713), 36, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -405903,35 +408649,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, - [50561] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6704), 2, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_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(6708), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6700), 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [50337] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5392), 1, + sym_literal_suffix, + ACTIONS(4145), 24, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 21, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -405950,18 +408691,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - ACTIONS(6172), 22, + anon_sym_DOT, + ACTIONS(4137), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -405974,77 +408719,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [50640] = 25, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [50402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(5601), 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(5603), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6702), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [50465] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6772), 1, + ACTIONS(6681), 1, + anon_sym_EQ, + ACTIONS(6729), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6731), 1, anon_sym_AMP_AMP, - ACTIONS(6786), 1, + ACTIONS(6733), 1, + anon_sym_PIPE, + ACTIONS(6737), 1, + anon_sym_AMP, + ACTIONS(6743), 1, anon_sym_GT_EQ, - ACTIONS(6790), 1, + ACTIONS(6749), 1, anon_sym_LT_EQ_GT, - ACTIONS(6792), 1, + ACTIONS(6751), 1, anon_sym_or, - ACTIONS(6794), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6796), 1, - anon_sym_not_eq, - STATE(3408), 1, + ACTIONS(6755), 1, + anon_sym_bitor, + ACTIONS(6757), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(3409), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6734), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6776), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6778), 2, + ACTIONS(6725), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6735), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6780), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6700), 3, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6784), 3, + ACTIONS(6739), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6741), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6640), 5, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6642), 16, + ACTIONS(6683), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -406056,80 +408863,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [50747] = 27, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [50574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(6770), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6786), 1, - anon_sym_GT_EQ, - ACTIONS(6788), 1, - anon_sym_QMARK, - ACTIONS(6790), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6792), 1, - anon_sym_or, - ACTIONS(6794), 1, - anon_sym_and, - ACTIONS(6796), 1, - anon_sym_not_eq, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6698), 2, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5418), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6704), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6734), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6776), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6778), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6780), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6700), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6784), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6630), 5, + 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(6634), 14, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5420), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_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, @@ -406140,77 +408914,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [50858] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6786), 1, - anon_sym_GT_EQ, - ACTIONS(6790), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(6792), 1, - anon_sym_or, - ACTIONS(6794), 1, - anon_sym_and, - ACTIONS(6796), 1, + anon_sym_bitor, + anon_sym_bitand, anon_sym_not_eq, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6734), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6776), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6778), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6780), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6700), 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [50639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 25, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6784), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6626), 5, + 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(6628), 16, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(6702), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -406222,125 +408982,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [50965] = 14, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [50702] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(6373), 1, anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5312), 1, - anon_sym_virtual, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6766), 1, - sym_auto, - ACTIONS(6768), 1, - anon_sym_decltype, - STATE(3589), 1, - sym_decltype_auto, - ACTIONS(6802), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5302), 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(3514), 9, - sym__declaration_modifiers, + STATE(3428), 1, sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(6804), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5300), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [51050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5590), 12, + ACTIONS(5853), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5592), 43, + ACTIONS(5855), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -406349,18 +409048,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [51113] = 5, + [50769] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, - anon_sym___attribute__, - STATE(3480), 1, - sym_attribute_specifier, - ACTIONS(5817), 20, + ACTIONS(2830), 1, + anon_sym_LBRACE, + ACTIONS(6759), 1, + anon_sym_LPAREN2, + ACTIONS(6761), 1, + anon_sym_LBRACK, + ACTIONS(6763), 1, + sym_auto, + ACTIONS(6765), 1, + anon_sym_decltype, + STATE(3800), 1, + sym_new_declarator, + STATE(3941), 1, + sym_decltype_auto, + STATE(4277), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5364), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406370,27 +409079,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5819), 33, + anon_sym_DASH_GT, + ACTIONS(5366), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -406398,92 +409102,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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [51180] = 26, + anon_sym_DASH_GT_STAR, + [50848] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(6607), 1, - anon_sym_EQ, - ACTIONS(6714), 1, - anon_sym_AMP, - ACTIONS(6720), 1, - anon_sym_GT_EQ, - ACTIONS(6724), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6726), 1, - anon_sym_bitand, - ACTIONS(6730), 1, - anon_sym_PIPE, - ACTIONS(6732), 1, - anon_sym_bitor, - ACTIONS(6736), 1, - anon_sym_AMP_AMP, - ACTIONS(6738), 1, - anon_sym_and, - ACTIONS(6742), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6746), 1, - anon_sym_or, - STATE(2791), 1, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6710), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6728), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6712), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6718), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6609), 20, + ACTIONS(6133), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, @@ -406495,77 +409158,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, - [51289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5607), 12, + anon_sym_LT_EQ_GT, + ACTIONS(6131), 24, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5609), 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___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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + 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_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, - [51352] = 5, + sym_identifier, + [50925] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, + ACTIONS(6373), 1, anon_sym___attribute__, - STATE(3483), 1, + STATE(3436), 1, sym_attribute_specifier, - ACTIONS(5821), 20, + ACTIONS(5839), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406586,7 +409212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5823), 33, + ACTIONS(5841), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -406620,44 +409246,26 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [51419] = 14, + [50992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(6790), 1, - anon_sym_LT_EQ_GT, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6698), 2, + ACTIONS(5046), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5048), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6704), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6734), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6700), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 17, anon_sym_PIPE, anon_sym_CARET, anon_sym_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, @@ -406668,18 +409276,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6172), 21, + ACTIONS(5041), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -406691,18 +409302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [51504] = 7, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [51057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(4982), 1, - anon_sym_LT, - STATE(3036), 1, - sym_template_argument_list, - ACTIONS(4977), 18, + ACTIONS(6373), 1, + anon_sym___attribute__, + STATE(3442), 1, + sym_attribute_specifier, + ACTIONS(5909), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -406712,16 +409324,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(4970), 33, + ACTIONS(5911), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -406729,10 +409343,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -406740,7 +409352,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -406755,132 +409366,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [51575] = 28, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [51124] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6307), 1, - anon_sym_EQ, - ACTIONS(6632), 1, + ACTIONS(6777), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6714), 1, - anon_sym_AMP, - ACTIONS(6720), 1, - anon_sym_GT_EQ, - ACTIONS(6724), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6726), 1, - anon_sym_bitand, - ACTIONS(6730), 1, - anon_sym_PIPE, - ACTIONS(6732), 1, - anon_sym_bitor, - ACTIONS(6736), 1, - anon_sym_AMP_AMP, - ACTIONS(6738), 1, - anon_sym_and, - ACTIONS(6742), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6744), 1, - anon_sym_QMARK, - ACTIONS(6746), 1, - anon_sym_or, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6710), 2, + ACTIONS(6779), 1, + anon_sym_COMMA, + ACTIONS(6783), 1, anon_sym_DASH, + ACTIONS(6785), 1, anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6728), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6712), 3, + ACTIONS(6787), 1, anon_sym_STAR, + ACTIONS(6789), 1, anon_sym_SLASH, + ACTIONS(6791), 1, anon_sym_PERCENT, - ACTIONS(6716), 3, + ACTIONS(6793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6795), 1, + anon_sym_AMP_AMP, + ACTIONS(6797), 1, + anon_sym_PIPE, + ACTIONS(6799), 1, + anon_sym_CARET, + ACTIONS(6801), 1, + anon_sym_AMP, + ACTIONS(6803), 1, anon_sym_EQ_EQ, + ACTIONS(6805), 1, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6718), 3, + ACTIONS(6807), 1, anon_sym_GT, + ACTIONS(6809), 1, + anon_sym_GT_EQ, + ACTIONS(6811), 1, anon_sym_LT_EQ, + ACTIONS(6813), 1, anon_sym_LT, - ACTIONS(6309), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(6815), 1, + anon_sym_LT_LT, + ACTIONS(6817), 1, + anon_sym_GT_GT, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6821), 1, + anon_sym_EQ, + ACTIONS(6823), 1, + anon_sym_QMARK, + ACTIONS(6825), 1, anon_sym_STAR_EQ, + ACTIONS(6827), 1, anon_sym_SLASH_EQ, + ACTIONS(6829), 1, anon_sym_PERCENT_EQ, + ACTIONS(6831), 1, anon_sym_PLUS_EQ, + ACTIONS(6833), 1, anon_sym_DASH_EQ, + ACTIONS(6835), 1, anon_sym_LT_LT_EQ, + ACTIONS(6837), 1, anon_sym_GT_GT_EQ, + ACTIONS(6839), 1, anon_sym_AMP_EQ, + ACTIONS(6841), 1, anon_sym_CARET_EQ, + ACTIONS(6843), 1, anon_sym_PIPE_EQ, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 1, + anon_sym_or, + ACTIONS(6851), 1, + anon_sym_and, + ACTIONS(6853), 1, + anon_sym_bitor, + ACTIONS(6855), 1, + anon_sym_xor, + ACTIONS(6857), 1, + anon_sym_bitand, + ACTIONS(6859), 1, + anon_sym_not_eq, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(6911), 1, + anon_sym_RPAREN, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6861), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6845), 3, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [51688] = 6, + [51285] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6567), 1, - sym_auto, - ACTIONS(6569), 1, - anon_sym_decltype, - STATE(3290), 1, - sym_decltype_auto, - ACTIONS(5436), 19, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6737), 1, + anon_sym_AMP, + ACTIONS(6743), 1, + anon_sym_GT_EQ, + ACTIONS(6749), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6757), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6725), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6735), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6739), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6741), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6151), 4, + anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5438), 33, + ACTIONS(6153), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -406895,18 +409554,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_STAR, - [51757] = 3, + [51382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 12, + ACTIONS(5665), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -406919,7 +409571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5781), 43, + ACTIONS(5667), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -406963,75 +409615,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [51820] = 26, + [51445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6626), 1, - anon_sym_EQ, - ACTIONS(6714), 1, - anon_sym_AMP, - ACTIONS(6720), 1, - anon_sym_GT_EQ, - ACTIONS(6724), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6726), 1, - anon_sym_bitand, - ACTIONS(6730), 1, - anon_sym_PIPE, - ACTIONS(6732), 1, - anon_sym_bitor, - ACTIONS(6736), 1, - anon_sym_AMP_AMP, - ACTIONS(6738), 1, - anon_sym_and, - ACTIONS(6742), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6746), 1, - anon_sym_or, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6710), 2, + ACTIONS(6373), 1, + anon_sym___attribute__, + STATE(3425), 1, + sym_attribute_specifier, + ACTIONS(5864), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6722), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6728), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6712), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6716), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6718), 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(6628), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5866), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -407039,17 +409660,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, - [51929] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [51512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 19, + ACTIONS(5754), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -407069,7 +409700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5592), 36, + ACTIONS(5756), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -407106,68 +409737,75 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [51992] = 16, + [51575] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6786), 1, + ACTIONS(6652), 1, + anon_sym_EQ, + ACTIONS(6729), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6731), 1, + anon_sym_AMP_AMP, + ACTIONS(6733), 1, + anon_sym_PIPE, + ACTIONS(6737), 1, + anon_sym_AMP, + ACTIONS(6743), 1, anon_sym_GT_EQ, - ACTIONS(6790), 1, + ACTIONS(6749), 1, anon_sym_LT_EQ_GT, - STATE(3408), 1, + ACTIONS(6751), 1, + anon_sym_or, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, + anon_sym_bitor, + ACTIONS(6757), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(3409), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6734), 2, + ACTIONS(6725), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6735), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6700), 3, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6784), 3, + ACTIONS(6739), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6741), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 14, - 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(6172), 20, + ACTIONS(6654), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -407179,10 +409817,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52081] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [51684] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 19, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(5012), 1, + anon_sym_LBRACE, + ACTIONS(5032), 1, + anon_sym_LT, + STATE(3110), 1, + sym_template_argument_list, + ACTIONS(5014), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -407193,28 +409842,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(5781), 36, + ACTIONS(5019), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -407236,55 +409883,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [52144] = 11, + anon_sym_DASH_GT, + [51755] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(6748), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6750), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6752), 1, - sym_auto, - ACTIONS(6754), 1, - anon_sym_decltype, - STATE(3773), 1, - sym_new_declarator, - STATE(3934), 1, - sym_decltype_auto, - STATE(4182), 2, + ACTIONS(6773), 1, + anon_sym_DOT, + ACTIONS(6871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6873), 1, + anon_sym_AMP_AMP, + ACTIONS(6885), 1, + anon_sym_GT_EQ, + ACTIONS(6889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6891), 1, + anon_sym_or, + ACTIONS(6893), 1, + anon_sym_and, + ACTIONS(6895), 1, + anon_sym_not_eq, + STATE(3498), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(5320), 16, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6771), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6775), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6869), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6875), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6879), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6767), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6681), 5, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5322), 30, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(6683), 16, 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, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -407296,82 +409966,162 @@ 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, - [52223] = 18, + [51862] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4405), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6098), 1, + anon_sym_STAR, + ACTIONS(6100), 1, + anon_sym_AMP_AMP, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(6106), 1, + anon_sym_LBRACK, + STATE(3782), 1, + sym_parameter_list, + STATE(6348), 1, + sym__scope_resolution, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6893), 1, + sym__declarator, + STATE(6969), 1, + sym__abstract_declarator, + STATE(8593), 1, + sym_ms_based_modifier, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6913), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [51969] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(6786), 1, + ACTIONS(6871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6873), 1, + anon_sym_AMP_AMP, + ACTIONS(6885), 1, anon_sym_GT_EQ, - ACTIONS(6790), 1, + ACTIONS(6889), 1, anon_sym_LT_EQ_GT, - ACTIONS(6796), 1, + ACTIONS(6891), 1, + anon_sym_or, + ACTIONS(6893), 1, + anon_sym_and, + ACTIONS(6895), 1, anon_sym_not_eq, - STATE(3408), 1, + ACTIONS(6915), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6917), 1, + anon_sym_QMARK, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6734), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6782), 2, + ACTIONS(6869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6875), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6879), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6700), 3, + ACTIONS(6887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6767), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6784), 3, + ACTIONS(6883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6469), 5, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, sym_identifier, - ACTIONS(6172), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6471), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -407382,58 +410132,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52316] = 9, + [52080] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - STATE(3408), 1, + ACTIONS(6873), 1, + anon_sym_AMP_AMP, + ACTIONS(6885), 1, + anon_sym_GT_EQ, + ACTIONS(6889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6893), 1, + anon_sym_and, + ACTIONS(6895), 1, + anon_sym_not_eq, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6708), 2, + ACTIONS(6771), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6162), 24, + ACTIONS(6869), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6875), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6879), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6767), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6151), 6, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_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(6164), 24, + ACTIONS(6153), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, 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, @@ -407444,81 +410211,74 @@ 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [52391] = 25, + anon_sym_PIPE_EQ, + [52183] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6786), 1, + ACTIONS(6885), 1, anon_sym_GT_EQ, - ACTIONS(6790), 1, + ACTIONS(6889), 1, anon_sym_LT_EQ_GT, - ACTIONS(6792), 1, - anon_sym_or, - ACTIONS(6794), 1, - anon_sym_and, - ACTIONS(6796), 1, + ACTIONS(6895), 1, anon_sym_not_eq, - STATE(3408), 1, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6734), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6776), 2, + ACTIONS(6869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6875), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(6778), 2, + ACTIONS(6877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6780), 2, + ACTIONS(6879), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6782), 2, + ACTIONS(6881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6700), 3, + ACTIONS(6887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6767), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6784), 3, + ACTIONS(6883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6646), 5, + ACTIONS(6151), 7, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, sym_identifier, - ACTIONS(6648), 16, + ACTIONS(6153), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -407530,26 +410290,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52498] = 10, + [52282] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - STATE(3408), 1, + ACTIONS(6885), 1, + anon_sym_GT_EQ, + ACTIONS(6889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6895), 1, + anon_sym_not_eq, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6704), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6123), 22, + ACTIONS(6869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6879), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6767), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 9, + 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(6153), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -407557,9 +410356,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, 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, @@ -407571,78 +410367,113 @@ 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, - ACTIONS(6121), 24, + [52379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5418), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5420), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - [52575] = 19, + 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, + [52444] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(6786), 1, + ACTIONS(6885), 1, anon_sym_GT_EQ, - ACTIONS(6790), 1, + ACTIONS(6889), 1, anon_sym_LT_EQ_GT, - ACTIONS(6796), 1, + ACTIONS(6895), 1, anon_sym_not_eq, - STATE(3408), 1, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6734), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6780), 2, + ACTIONS(6869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6879), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6782), 2, + ACTIONS(6881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6700), 3, + ACTIONS(6887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6767), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6784), 3, + ACTIONS(6883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 11, + ACTIONS(6151), 11, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, @@ -407654,7 +410485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, sym_identifier, - ACTIONS(6172), 18, + ACTIONS(6153), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -407673,14 +410504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52670] = 5, + [52539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, - anon_sym___attribute__, - STATE(3407), 1, - sym_attribute_specifier, - ACTIONS(5849), 20, + ACTIONS(6585), 1, + sym_auto, + ACTIONS(6587), 1, + anon_sym_decltype, + STATE(3353), 1, + sym_decltype_auto, + ACTIONS(5548), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -407690,25 +410523,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(5851), 33, + anon_sym_DASH_GT, + ACTIONS(5550), 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, @@ -407718,6 +410552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -407731,60 +410566,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [52737] = 20, + anon_sym_DASH_GT_STAR, + [52608] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(6786), 1, + ACTIONS(6885), 1, anon_sym_GT_EQ, - ACTIONS(6790), 1, + ACTIONS(6889), 1, anon_sym_LT_EQ_GT, - ACTIONS(6796), 1, + ACTIONS(6895), 1, anon_sym_not_eq, - STATE(3408), 1, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6734), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6778), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6780), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6782), 2, + ACTIONS(6869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6700), 3, + ACTIONS(6887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6767), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6784), 3, + ACTIONS(6883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 9, + ACTIONS(6151), 13, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -407792,8 +410620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, sym_identifier, - ACTIONS(6172), 18, + ACTIONS(6153), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -407812,66 +410642,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52834] = 21, + [52701] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(6786), 1, + ACTIONS(6885), 1, anon_sym_GT_EQ, - ACTIONS(6790), 1, + ACTIONS(6889), 1, anon_sym_LT_EQ_GT, - ACTIONS(6796), 1, - anon_sym_not_eq, - STATE(3408), 1, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6734), 2, + ACTIONS(6869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6776), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6778), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6780), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6700), 3, + ACTIONS(6767), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6784), 3, + ACTIONS(6883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 7, + ACTIONS(6151), 14, + 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(6172), 18, + ACTIONS(6153), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -407879,6 +410702,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, 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, @@ -407890,75 +410715,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52933] = 23, + [52790] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6786), 1, - anon_sym_GT_EQ, - ACTIONS(6790), 1, + ACTIONS(6889), 1, anon_sym_LT_EQ_GT, - ACTIONS(6794), 1, - anon_sym_and, - ACTIONS(6796), 1, - anon_sym_not_eq, - STATE(3408), 1, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6734), 2, + ACTIONS(6869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6776), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6778), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6780), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6700), 3, + ACTIONS(6767), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6784), 3, + ACTIONS(6151), 17, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 6, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_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(6172), 17, + ACTIONS(6153), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, 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, @@ -407970,80 +410786,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53036] = 27, + [52875] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6770), 1, + ACTIONS(6616), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6772), 1, + ACTIONS(6677), 1, + anon_sym_EQ, + ACTIONS(6729), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6731), 1, anon_sym_AMP_AMP, - ACTIONS(6786), 1, + ACTIONS(6733), 1, + anon_sym_PIPE, + ACTIONS(6737), 1, + anon_sym_AMP, + ACTIONS(6743), 1, anon_sym_GT_EQ, - ACTIONS(6788), 1, + ACTIONS(6747), 1, anon_sym_QMARK, - ACTIONS(6790), 1, + ACTIONS(6749), 1, anon_sym_LT_EQ_GT, - ACTIONS(6792), 1, + ACTIONS(6751), 1, anon_sym_or, - ACTIONS(6794), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(6796), 1, - anon_sym_not_eq, - STATE(3408), 1, + ACTIONS(6755), 1, + anon_sym_bitor, + ACTIONS(6757), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(3409), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6734), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6776), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(6778), 2, + ACTIONS(6725), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6735), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6780), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(6782), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6700), 3, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6784), 3, + ACTIONS(6739), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6741), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6307), 5, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6309), 14, + ACTIONS(6679), 18, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -408054,36 +410868,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53147] = 10, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [52988] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - STATE(3408), 1, + ACTIONS(6871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6873), 1, + anon_sym_AMP_AMP, + ACTIONS(6885), 1, + anon_sym_GT_EQ, + ACTIONS(6889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6891), 1, + anon_sym_or, + ACTIONS(6893), 1, + anon_sym_and, + ACTIONS(6895), 1, + anon_sym_not_eq, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6704), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6135), 22, + ACTIONS(6869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6875), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6877), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6879), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6767), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6883), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6660), 5, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(6662), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - 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, @@ -408095,104 +410953,80 @@ 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, - ACTIONS(6133), 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, - sym_identifier, - [53224] = 25, + [53095] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(6772), 1, + ACTIONS(6871), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(6873), 1, anon_sym_AMP_AMP, - ACTIONS(6786), 1, + ACTIONS(6885), 1, anon_sym_GT_EQ, - ACTIONS(6790), 1, + ACTIONS(6889), 1, anon_sym_LT_EQ_GT, - ACTIONS(6792), 1, + ACTIONS(6891), 1, anon_sym_or, - ACTIONS(6794), 1, + ACTIONS(6893), 1, anon_sym_and, - ACTIONS(6796), 1, + ACTIONS(6895), 1, anon_sym_not_eq, - STATE(3408), 1, + ACTIONS(6915), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6917), 1, + anon_sym_QMARK, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6698), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6704), 2, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6734), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6776), 2, + ACTIONS(6869), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6875), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(6778), 2, + ACTIONS(6877), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6780), 2, + ACTIONS(6879), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6782), 2, + ACTIONS(6881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6700), 3, + ACTIONS(6887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6767), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6784), 3, + ACTIONS(6883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6607), 5, + ACTIONS(6677), 5, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, sym_identifier, - ACTIONS(6609), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(6679), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -408203,50 +411037,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53331] = 3, + [53206] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 25, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_DOT, + ACTIONS(6871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6873), 1, + anon_sym_AMP_AMP, + ACTIONS(6885), 1, + anon_sym_GT_EQ, + ACTIONS(6889), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6891), 1, + anon_sym_or, + ACTIONS(6893), 1, + anon_sym_and, + ACTIONS(6895), 1, + anon_sym_not_eq, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6771), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6775), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6869), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6875), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6879), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6887), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6767), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6652), 5, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_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(6689), 30, + sym_identifier, + ACTIONS(6654), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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_COLON, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -408258,110 +411119,80 @@ 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, - [53394] = 5, + [53313] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5277), 4, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(5279), 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(4139), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(6518), 1, anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_DOT, + ACTIONS(6871), 1, anon_sym_PIPE_PIPE, + ACTIONS(6873), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6885), 1, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(6889), 1, anon_sym_LT_EQ_GT, + ACTIONS(6891), 1, + anon_sym_or, + ACTIONS(6893), 1, + anon_sym_and, + ACTIONS(6895), 1, + anon_sym_not_eq, + ACTIONS(6915), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6917), 1, + anon_sym_QMARK, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6771), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4147), 22, - aux_sym_preproc_elif_token1, + ACTIONS(6869), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6875), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6877), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6879), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_bitand, + ACTIONS(6881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6887), 2, 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, - [53461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5578), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6767), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6883), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6614), 5, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5580), 36, - anon_sym_DOT_DOT_DOT, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(6618), 14, anon_sym_COMMA, - anon_sym_RPAREN, - anon_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, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -408372,57 +411203,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, + [53424] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [53524] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6275), 1, - anon_sym___attribute__, - STATE(3402), 1, - sym_attribute_specifier, - ACTIONS(5853), 20, + anon_sym_DASH_GT, + ACTIONS(6725), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 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(5855), 33, + ACTIONS(6153), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -408430,6 +411262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -408440,115 +411273,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [53591] = 8, + [53507] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6756), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6760), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - STATE(3608), 1, - sym_parameter_list, - STATE(3228), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5845), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(6139), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5847), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6660), 1, + anon_sym_EQ, + ACTIONS(6729), 1, anon_sym_PIPE_PIPE, + ACTIONS(6731), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6733), 1, + anon_sym_PIPE, + ACTIONS(6737), 1, + anon_sym_AMP, + ACTIONS(6743), 1, anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(6749), 1, anon_sym_LT_EQ_GT, + ACTIONS(6751), 1, + anon_sym_or, + ACTIONS(6753), 1, + anon_sym_and, + ACTIONS(6755), 1, anon_sym_bitor, + ACTIONS(6757), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [53664] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5535), 19, + anon_sym_DASH_GT, + ACTIONS(6725), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6735), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6739), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6741), 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(5537), 35, + ACTIONS(6662), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -408563,24 +411356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [53729] = 5, + [53616] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, - anon_sym___attribute__, - STATE(3401), 1, - sym_attribute_specifier, - ACTIONS(5857), 20, + ACTIONS(6520), 1, + anon_sym_LBRACK, + STATE(3271), 1, + sym_new_declarator, + ACTIONS(6118), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408590,27 +411373,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5859), 33, + sym_identifier, + ACTIONS(6120), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, @@ -408618,31 +411409,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [53796] = 5, + [53683] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, + ACTIONS(6373), 1, anon_sym___attribute__, - STATE(3399), 1, + STATE(3457), 1, sym_attribute_specifier, - ACTIONS(5861), 20, + ACTIONS(5875), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408663,7 +411446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5863), 33, + ACTIONS(5877), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -408697,14 +411480,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [53863] = 5, + [53750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, - anon_sym___attribute__, - STATE(3381), 1, - sym_attribute_specifier, - ACTIONS(5895), 20, + ACTIONS(5544), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408714,25 +411493,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(5897), 33, + anon_sym_DASH_GT, + ACTIONS(5546), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -408742,6 +411523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -408755,18 +411537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [53930] = 5, + anon_sym_DASH_GT_STAR, + [53813] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6275), 1, + ACTIONS(6373), 1, anon_sym___attribute__, - STATE(3382), 1, + STATE(3460), 1, sym_attribute_specifier, - ACTIONS(5882), 20, + ACTIONS(5871), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408787,7 +411568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5884), 33, + ACTIONS(5873), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -408821,76 +411602,92 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [53997] = 9, + [53880] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6155), 24, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5344), 1, + anon_sym_virtual, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(6907), 1, + sym_auto, + ACTIONS(6909), 1, + anon_sym_decltype, + STATE(3682), 1, + sym_decltype_auto, + ACTIONS(6919), 6, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___based, + anon_sym_LBRACK, sym_identifier, - ACTIONS(6157), 24, + anon_sym_template, + anon_sym_operator, + ACTIONS(5334), 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(3418), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6921), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [54072] = 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5332), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [53965] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 16, + ACTIONS(6897), 1, + anon_sym_LPAREN2, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6901), 1, + anon_sym_LBRACK, + STATE(3720), 1, + sym_parameter_list, + STATE(3382), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5897), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -408905,22 +411702,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(5384), 39, + ACTIONS(5899), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -408932,78 +411727,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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DASH_GT_STAR, - [54135] = 11, + [54038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(6748), 1, - anon_sym_LPAREN2, - ACTIONS(6750), 1, - anon_sym_LBRACK, - ACTIONS(6752), 1, - sym_auto, - ACTIONS(6754), 1, - anon_sym_decltype, - STATE(3838), 1, - sym_new_declarator, - STATE(3934), 1, - sym_decltype_auto, - STATE(4149), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5363), 16, + ACTIONS(5762), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5365), 30, + ACTIONS(5764), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -409014,14 +411791,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, - [54214] = 4, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [54101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5021), 25, + ACTIONS(6373), 1, + anon_sym___attribute__, + STATE(3470), 1, + sym_attribute_specifier, + ACTIONS(5849), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409031,34 +411815,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5014), 28, + ACTIONS(5851), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -409067,19 +411843,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54279] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5751), 19, + ACTIONS(6373), 1, + anon_sym___attribute__, + STATE(3480), 1, + sym_attribute_specifier, + ACTIONS(5821), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409089,26 +411877,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(5753), 35, + ACTIONS(5823), 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, @@ -409118,7 +411905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -409132,80 +411918,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [54341] = 3, + anon_sym_GT2, + [54235] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 19, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6777), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6779), 1, + anon_sym_COMMA, + ACTIONS(6783), 1, anon_sym_DASH, + ACTIONS(6785), 1, anon_sym_PLUS, + ACTIONS(6787), 1, anon_sym_STAR, + ACTIONS(6789), 1, anon_sym_SLASH, + ACTIONS(6791), 1, anon_sym_PERCENT, + ACTIONS(6793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6795), 1, + anon_sym_AMP_AMP, + ACTIONS(6797), 1, anon_sym_PIPE, + ACTIONS(6799), 1, anon_sym_CARET, + ACTIONS(6801), 1, anon_sym_AMP, + ACTIONS(6803), 1, + anon_sym_EQ_EQ, + ACTIONS(6805), 1, + anon_sym_BANG_EQ, + ACTIONS(6807), 1, anon_sym_GT, + ACTIONS(6809), 1, + anon_sym_GT_EQ, + ACTIONS(6811), 1, anon_sym_LT_EQ, + ACTIONS(6813), 1, anon_sym_LT, + ACTIONS(6815), 1, anon_sym_LT_LT, + ACTIONS(6817), 1, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5757), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + ACTIONS(6819), 1, anon_sym_LBRACK, + ACTIONS(6821), 1, + anon_sym_EQ, + ACTIONS(6823), 1, anon_sym_QMARK, + ACTIONS(6825), 1, anon_sym_STAR_EQ, + ACTIONS(6827), 1, anon_sym_SLASH_EQ, + ACTIONS(6829), 1, anon_sym_PERCENT_EQ, + ACTIONS(6831), 1, anon_sym_PLUS_EQ, + ACTIONS(6833), 1, anon_sym_DASH_EQ, + ACTIONS(6835), 1, anon_sym_LT_LT_EQ, + ACTIONS(6837), 1, anon_sym_GT_GT_EQ, + ACTIONS(6839), 1, anon_sym_AMP_EQ, + ACTIONS(6841), 1, anon_sym_CARET_EQ, + ACTIONS(6843), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(6847), 1, anon_sym_LT_EQ_GT, + ACTIONS(6849), 1, + anon_sym_or, + ACTIONS(6851), 1, + anon_sym_and, + ACTIONS(6853), 1, anon_sym_bitor, + ACTIONS(6855), 1, + anon_sym_xor, + ACTIONS(6857), 1, anon_sym_bitand, + ACTIONS(6859), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6865), 1, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + ACTIONS(6867), 1, anon_sym_DASH_GT_STAR, - [54403] = 7, + ACTIONS(6923), 1, + anon_sym_RPAREN, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6861), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6845), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [54396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - anon_sym___attribute__, - ACTIONS(6662), 1, - anon_sym_LBRACE, - STATE(3358), 1, - sym_enumerator_list, - STATE(3729), 1, - sym_attribute_specifier, - ACTIONS(5678), 16, + ACTIONS(5560), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409222,7 +412051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5680), 34, + ACTIONS(5562), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -409232,7 +412061,10 @@ 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -409256,18 +412088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DASH_GT_STAR, - [54473] = 6, + [54459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, - anon_sym_LBRACE, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - STATE(3845), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5997), 19, + ACTIONS(5601), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409287,15 +412114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5999), 31, + ACTIONS(5603), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -409318,16 +412148,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [54541] = 5, + [54522] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6758), 1, - anon_sym_LBRACK_LBRACK, - STATE(3248), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5954), 20, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(5012), 1, + anon_sym_LBRACE, + ACTIONS(5021), 1, + anon_sym_LT, + STATE(3349), 1, + sym_template_argument_list, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409338,7 +412173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, @@ -409348,7 +412182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5956), 31, + ACTIONS(5019), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -409358,6 +412192,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, @@ -409380,10 +412215,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [54607] = 3, + [54593] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 20, + ACTIONS(2830), 1, + anon_sym_LBRACE, + ACTIONS(6759), 1, + anon_sym_LPAREN2, + ACTIONS(6761), 1, + anon_sym_LBRACK, + ACTIONS(6763), 1, + sym_auto, + ACTIONS(6765), 1, + anon_sym_decltype, + STATE(3818), 1, + sym_new_declarator, + STATE(3941), 1, + sym_decltype_auto, + STATE(4270), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5385), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409393,28 +412245,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(5781), 34, + anon_sym_DASH_GT, + ACTIONS(5387), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -409422,27 +412268,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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54669] = 3, + anon_sym_DASH_GT_STAR, + [54672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 26, + ACTIONS(5762), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409456,32 +412300,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5936), 28, + anon_sym_DASH_GT, + ACTIONS(5764), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -409493,61 +412330,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, - [54731] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [54735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - anon_sym___attribute__, - ACTIONS(6662), 1, - anon_sym_LBRACE, - STATE(3400), 1, - sym_enumerator_list, - STATE(3801), 1, - sym_attribute_specifier, - ACTIONS(5733), 16, + ACTIONS(5795), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5735), 34, + ACTIONS(5797), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -409558,13 +412396,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [54801] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [54798] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 19, + ACTIONS(6897), 1, + anon_sym_LPAREN2, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6901), 1, + anon_sym_LBRACK, + STATE(3720), 1, + sym_parameter_list, + STATE(3382), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5887), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409584,18 +412437,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5769), 35, + ACTIONS(5889), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -409617,13 +412467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [54863] = 3, + [54871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 19, + ACTIONS(6373), 1, + anon_sym___attribute__, + STATE(3522), 1, + sym_attribute_specifier, + ACTIONS(5879), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409633,26 +412485,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(5697), 35, + ACTIONS(5881), 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, @@ -409662,7 +412513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -409676,13 +412526,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [54925] = 3, + anon_sym_GT2, + [54938] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 20, + ACTIONS(6925), 1, + sym_auto, + ACTIONS(6927), 1, + anon_sym_decltype, + STATE(3356), 1, + sym_decltype_auto, + ACTIONS(5548), 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(5550), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_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, + [55007] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6373), 1, + anon_sym___attribute__, + STATE(3531), 1, + sym_attribute_specifier, + ACTIONS(5883), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409703,7 +412621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5609), 34, + ACTIONS(5885), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -409711,7 +412629,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -409738,78 +412655,130 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [54987] = 8, + [55074] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(6806), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6808), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6810), 1, - anon_sym_LBRACK, - STATE(3919), 1, - sym_parameter_list, - STATE(3540), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5811), 20, + ACTIONS(6777), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6779), 1, + anon_sym_COMMA, + ACTIONS(6783), 1, anon_sym_DASH, + ACTIONS(6785), 1, anon_sym_PLUS, + ACTIONS(6787), 1, anon_sym_STAR, + ACTIONS(6789), 1, anon_sym_SLASH, + ACTIONS(6791), 1, anon_sym_PERCENT, + ACTIONS(6793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6795), 1, + anon_sym_AMP_AMP, + ACTIONS(6797), 1, anon_sym_PIPE, + ACTIONS(6799), 1, anon_sym_CARET, + ACTIONS(6801), 1, anon_sym_AMP, + ACTIONS(6803), 1, + anon_sym_EQ_EQ, + ACTIONS(6805), 1, + anon_sym_BANG_EQ, + ACTIONS(6807), 1, anon_sym_GT, + ACTIONS(6809), 1, anon_sym_GT_EQ, + ACTIONS(6811), 1, anon_sym_LT_EQ, + ACTIONS(6813), 1, anon_sym_LT, + ACTIONS(6815), 1, anon_sym_LT_LT, + ACTIONS(6817), 1, anon_sym_GT_GT, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6821), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5813), 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, + ACTIONS(6823), 1, anon_sym_QMARK, + ACTIONS(6825), 1, anon_sym_STAR_EQ, + ACTIONS(6827), 1, anon_sym_SLASH_EQ, + ACTIONS(6829), 1, anon_sym_PERCENT_EQ, + ACTIONS(6831), 1, anon_sym_PLUS_EQ, + ACTIONS(6833), 1, anon_sym_DASH_EQ, + ACTIONS(6835), 1, anon_sym_LT_LT_EQ, + ACTIONS(6837), 1, + anon_sym_GT_GT_EQ, + ACTIONS(6839), 1, anon_sym_AMP_EQ, + ACTIONS(6841), 1, anon_sym_CARET_EQ, + ACTIONS(6843), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(6847), 1, anon_sym_LT_EQ_GT, + ACTIONS(6849), 1, + anon_sym_or, + ACTIONS(6851), 1, + anon_sym_and, + ACTIONS(6853), 1, anon_sym_bitor, + ACTIONS(6855), 1, + anon_sym_xor, + ACTIONS(6857), 1, anon_sym_bitand, + ACTIONS(6859), 1, anon_sym_not_eq, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(6929), 1, + anon_sym_RPAREN, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(6863), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_GT2, - [55059] = 5, + ACTIONS(6845), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [55235] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 1, - anon_sym_LT, - STATE(3506), 1, - sym_template_argument_list, - ACTIONS(6437), 24, + ACTIONS(6897), 1, + anon_sym_LPAREN2, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6901), 1, + anon_sym_LBRACK, + STATE(3720), 1, + sym_parameter_list, + STATE(3382), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5825), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409820,33 +412789,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6439), 28, + anon_sym_DASH_GT, + ACTIONS(5827), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, @@ -409858,15 +412818,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, - [55125] = 3, + anon_sym_DASH_GT_STAR, + [55308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 19, + ACTIONS(5795), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409886,7 +412852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5537), 35, + ACTIONS(5797), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -409896,6 +412862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -409922,10 +412889,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [55187] = 3, + [55371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 25, + ACTIONS(4995), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -409951,7 +412918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4994), 29, + ACTIONS(4997), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -409981,80 +412948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [55249] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5367), 1, - sym_literal_suffix, - STATE(2850), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3654), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3658), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4147), 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(4139), 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, - [55319] = 6, + [55433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, - anon_sym_LBRACE, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - STATE(3893), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 19, + ACTIONS(5746), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410074,15 +412971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6003), 31, + ACTIONS(5748), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -410105,17 +413004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [55387] = 5, + [55495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6821), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6819), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(6817), 20, - anon_sym_BANG, + ACTIONS(5730), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410130,19 +413025,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(6815), 31, + ACTIONS(5732), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -410156,23 +413056,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_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [55453] = 4, + [55557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, - sym_literal_suffix, - ACTIONS(4147), 25, + ACTIONS(5776), 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(5778), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [55619] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6931), 1, + anon_sym_LT, + STATE(3517), 1, + sym_template_argument_list, + ACTIONS(6356), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410183,7 +413143,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, @@ -410198,7 +413157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4139), 28, + ACTIONS(6358), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410227,10 +413186,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [55517] = 3, + [55685] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 19, + ACTIONS(6934), 1, + anon_sym_LPAREN2, + ACTIONS(6936), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6938), 1, + anon_sym_LBRACK, + STATE(3797), 1, + sym_parameter_list, + STATE(3466), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5887), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410240,28 +413210,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(5584), 35, + ACTIONS(5889), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -410269,7 +413235,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -410283,19 +413248,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [55579] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [55757] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3954), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6823), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(3934), 20, - anon_sym_BANG, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(5012), 1, + anon_sym_LBRACE, + ACTIONS(5368), 1, + anon_sym_LT, + STATE(3408), 1, + sym_template_argument_list, + ACTIONS(5014), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410306,23 +413272,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_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3932), 31, + ACTIONS(5019), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -410336,128 +413305,179 @@ 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, - [55645] = 5, + [55827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6831), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6829), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(6827), 20, - anon_sym_BANG, + ACTIONS(5758), 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_not, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5760), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_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(6825), 31, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [55889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5799), 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(5801), 42, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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___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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [55711] = 3, + 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, + [55951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 20, + ACTIONS(5643), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5592), 34, + ACTIONS(5645), 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___attribute__, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -410466,75 +413486,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [55773] = 3, + anon_sym_requires, + [56013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 19, + ACTIONS(5614), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5616), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5773), 35, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [56075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 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(5620), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [55835] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [56137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6833), 1, - anon_sym_LBRACK_LBRACK, - STATE(3248), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5970), 20, + ACTIONS(6214), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410548,23 +413625,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5972), 31, + sym_identifier, + ACTIONS(6216), 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_elif_token1, anon_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, @@ -410576,21 +413662,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_STAR, - [55901] = 3, + anon_sym_DASH_GT, + [56199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 19, + ACTIONS(5614), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410610,7 +413690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5537), 35, + ACTIONS(5616), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -410646,192 +413726,187 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [55963] = 3, + [56261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 19, + ACTIONS(5622), 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_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5777), 35, + ACTIONS(5624), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [56025] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [56323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 19, + ACTIONS(5643), 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_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5588), 35, + ACTIONS(5645), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [56087] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [56385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6806), 1, - anon_sym_LPAREN2, - ACTIONS(6808), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6810), 1, - anon_sym_LBRACK, - STATE(3919), 1, - sym_parameter_list, - STATE(3540), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5801), 20, + ACTIONS(5647), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5803), 28, + ACTIONS(5649), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [56159] = 3, + anon_sym_requires, + [56447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 20, + ACTIONS(5622), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410841,26 +413916,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(5580), 34, + anon_sym_DASH_GT, + ACTIONS(5624), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -410870,6 +413945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -410883,14 +413959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [56221] = 3, + anon_sym_DASH_GT_STAR, + [56509] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5594), 19, + ACTIONS(6946), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6944), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(6942), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -410905,24 +413986,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(5596), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(6940), 31, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -410936,20 +414012,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [56283] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [56575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 12, + ACTIONS(5614), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -410962,7 +414039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5705), 42, + ACTIONS(5616), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -411005,10 +414082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [56345] = 3, + [56637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 12, + ACTIONS(5651), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -411021,7 +414098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5686), 42, + ACTIONS(5653), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -411064,10 +414141,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [56407] = 3, + [56699] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5418), 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(5420), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5751), 12, + ACTIONS(5643), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -411080,7 +414217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5753), 42, + ACTIONS(5645), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -411123,10 +414260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [56469] = 3, + [56825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 12, + ACTIONS(5677), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -411139,7 +414276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5757), 42, + ACTIONS(5679), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -411182,10 +414319,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [56531] = 3, + [56887] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 19, + ACTIONS(6954), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6952), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(6950), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(6948), 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, + [56953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411205,7 +414403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5709), 35, + ACTIONS(5620), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -411241,10 +414439,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [56593] = 3, + [57015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 19, + ACTIONS(5614), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411264,7 +414462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5713), 35, + ACTIONS(5616), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -411300,10 +414498,190 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [56655] = 3, + [57077] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2254), 1, + anon_sym_LBRACE, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + STATE(3757), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5931), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(5933), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [57145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5544), 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(5546), 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_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_GT2, + [57207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5947), 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_LBRACK, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5949), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [57269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 12, + ACTIONS(5685), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -411316,7 +414694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5765), 42, + ACTIONS(5687), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -411359,10 +414737,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [56717] = 3, + [57331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5741), 19, + ACTIONS(5730), 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(5732), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [57393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6045), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411376,24 +414813,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5743), 35, + sym_identifier, + ACTIONS(6047), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -411405,23 +414850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [56779] = 3, + anon_sym_DASH_GT, + [57455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5745), 19, + ACTIONS(6041), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411435,24 +414872,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5747), 35, + sym_identifier, + ACTIONS(6043), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -411464,29 +414909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [56841] = 5, + anon_sym_DASH_GT, + [57517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6842), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6840), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(6838), 20, - anon_sym_BANG, + ACTIONS(5799), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411501,19 +414932,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(6836), 31, + ACTIONS(5801), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -411527,21 +414963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [56907] = 3, + [57579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 12, + ACTIONS(5750), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -411554,7 +414989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5769), 42, + ACTIONS(5752), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -411597,16 +415032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [56969] = 5, + [57641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6850), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6848), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(6846), 20, - anon_sym_BANG, + ACTIONS(5758), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -411621,19 +415050,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(6844), 31, + ACTIONS(5760), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -411647,80 +415081,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [57035] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6166), 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_LBRACK, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6168), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [57097] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [57703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 12, + ACTIONS(5746), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -411733,7 +415107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5773), 42, + ACTIONS(5748), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -411776,10 +415150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [57159] = 3, + [57765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 12, + ACTIONS(5742), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -411792,7 +415166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5777), 42, + ACTIONS(5744), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -411835,69 +415209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [57221] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5598), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(5600), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [57283] = 3, + [57827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 12, + ACTIONS(5738), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -411910,7 +415225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5731), 42, + ACTIONS(5740), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -411953,10 +415268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [57345] = 3, + [57889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 12, + ACTIONS(5681), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -411969,7 +415284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5615), 42, + ACTIONS(5683), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -412012,10 +415327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [57407] = 3, + [57951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5985), 26, + ACTIONS(5807), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412029,32 +415344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5987), 28, + anon_sym_DASH_GT, + ACTIONS(5809), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_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, @@ -412066,15 +415373,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, - [57469] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [58013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5981), 26, + ACTIONS(5418), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412088,32 +415403,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5983), 28, + anon_sym_DASH_GT, + ACTIONS(5420), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_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, @@ -412125,22 +415432,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, - [57531] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [58075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, - anon_sym_LBRACE, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - STATE(3835), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5966), 19, + ACTIONS(6145), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412154,22 +415462,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5968), 31, + sym_identifier, + ACTIONS(6147), 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_elif_token1, + anon_sym_LPAREN2, anon_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, @@ -412181,27 +415499,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_STAR, - [57599] = 5, + anon_sym_DASH_GT, + [58137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6858), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6856), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(6854), 20, - anon_sym_BANG, + ACTIONS(5772), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412216,19 +415522,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(6852), 31, + ACTIONS(5774), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -412242,80 +415553,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [57665] = 3, + [58199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6106), 26, + ACTIONS(5707), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - sym_identifier, - ACTIONS(6108), 28, + ACTIONS(5709), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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___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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [57727] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [58261] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6009), 26, + ACTIONS(6962), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6960), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(6958), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412329,33 +415645,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_not, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6011), 28, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(6956), 31, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -412366,15 +415669,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_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, - [57789] = 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [58327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 12, + ACTIONS(5772), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -412387,7 +415699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5623), 42, + ACTIONS(5774), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -412430,10 +415742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [57851] = 3, + [58389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 19, + ACTIONS(6964), 1, + anon_sym_LBRACK_LBRACK, + STATE(3307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5953), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412447,13 +415764,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(5686), 35, + ACTIONS(5955), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -412463,8 +415781,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -412486,13 +415802,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 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(5663), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [57913] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [58517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 19, + ACTIONS(5776), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412512,7 +415885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5705), 35, + ACTIONS(5778), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -412548,10 +415921,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [57975] = 3, + [58579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 12, + ACTIONS(5689), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -412564,7 +415937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5619), 42, + ACTIONS(5691), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -412607,69 +415980,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [58037] = 3, + [58641] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 12, + ACTIONS(3952), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6967), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(3932), 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, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5615), 42, - 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(3930), 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__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [58099] = 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [58707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 26, + ACTIONS(5626), 1, + sym_literal_suffix, + ACTIONS(4145), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412683,7 +416060,6 @@ 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, @@ -412696,7 +416072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6007), 28, + ACTIONS(4137), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -412708,7 +416084,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, @@ -412725,10 +416101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [58161] = 3, + [58771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4964), 25, + ACTIONS(5418), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412743,31 +416119,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4966), 29, + anon_sym_DASH_GT, + ACTIONS(5420), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -412779,15 +416147,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, - [58223] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [58833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 12, + ACTIONS(5724), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -412800,7 +416176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5600), 42, + ACTIONS(5726), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -412843,10 +416219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [58285] = 3, + [58895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5594), 12, + ACTIONS(5698), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -412859,7 +416235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5596), 42, + ACTIONS(5700), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -412902,10 +416278,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [58347] = 3, + [58957] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 25, + ACTIONS(6606), 1, + sym_auto, + ACTIONS(6608), 1, + anon_sym_decltype, + STATE(3565), 1, + sym_decltype_auto, + ACTIONS(5548), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412915,36 +416297,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(5010), 29, + ACTIONS(5550), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -412952,19 +416325,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, - [58409] = 3, + anon_sym_GT2, + [59025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 25, + ACTIONS(5750), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -412979,31 +416358,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4990), 29, + anon_sym_DASH_GT, + ACTIONS(5752), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -413015,15 +416386,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [58471] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [59087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 19, + ACTIONS(6969), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6181), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413037,24 +416418,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5564), 35, + sym_identifier, + ACTIONS(6183), 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_elif_token1, anon_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, @@ -413066,23 +416454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [58533] = 3, + anon_sym_DASH_GT, + [59151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 12, + ACTIONS(5673), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -413095,7 +416475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5588), 42, + ACTIONS(5675), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -413138,69 +416518,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [58595] = 3, + [59213] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 12, + ACTIONS(6934), 1, + anon_sym_LPAREN2, + ACTIONS(6936), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6938), 1, + anon_sym_LBRACK, + STATE(3797), 1, + sym_parameter_list, + STATE(3466), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5893), 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(5584), 42, + ACTIONS(5895), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [58657] = 3, + [59285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 26, + ACTIONS(5742), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413214,32 +416599,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5964), 28, + anon_sym_DASH_GT, + ACTIONS(5744), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_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, @@ -413251,15 +416628,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, - [58719] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [59347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 12, + ACTIONS(5418), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -413272,7 +416657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5663), 42, + ACTIONS(5420), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -413315,10 +416700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [58781] = 3, + [59409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 12, + ACTIONS(5669), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -413331,7 +416716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5663), 42, + ACTIONS(5671), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -413374,12 +416759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [58843] = 4, + [59471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5535), 20, + ACTIONS(5669), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413389,25 +416772,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(5537), 33, + anon_sym_DASH_GT, + ACTIONS(5671), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -413417,6 +416801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -413430,191 +416815,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [58907] = 3, + anon_sym_DASH_GT_STAR, + [59533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 12, + ACTIONS(5673), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, 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(5693), 42, + anon_sym_DASH_GT, + ACTIONS(5675), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [58969] = 3, + anon_sym_DASH_GT_STAR, + [59595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 12, + ACTIONS(6977), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6975), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(6973), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(6971), 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, + [59661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5698), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, 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(5701), 42, + anon_sym_DASH_GT, + ACTIONS(5700), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [59031] = 3, + anon_sym_DASH_GT_STAR, + [59723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 12, + ACTIONS(5738), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, 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(5663), 42, + anon_sym_DASH_GT, + ACTIONS(5740), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [59093] = 3, + anon_sym_DASH_GT_STAR, + [59785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 25, + ACTIONS(5724), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413629,31 +417074,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4998), 29, + anon_sym_DASH_GT, + ACTIONS(5726), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -413665,74 +417102,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, - [59155] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [59847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 12, + ACTIONS(5681), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, 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(5721), 42, + anon_sym_DASH_GT, + ACTIONS(5683), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [59217] = 3, + anon_sym_DASH_GT_STAR, + [59909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 26, + ACTIONS(5707), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413746,32 +417191,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4022), 28, + anon_sym_DASH_GT, + ACTIONS(5709), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_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, @@ -413783,74 +417220,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [59279] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [59971] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 12, + ACTIONS(2254), 1, + anon_sym_LBRACE, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + STATE(3909), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5992), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, 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(5739), 42, + anon_sym_DASH_GT, + ACTIONS(5994), 31, 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, + [60039] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3960), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6979), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(3956), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [59341] = 3, + ACTIONS(3954), 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, + [60105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 19, + ACTIONS(6987), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(6985), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(6983), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413865,24 +417380,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(5615), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(6981), 31, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -413896,20 +417406,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [59403] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [60171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 25, + ACTIONS(6012), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413923,6 +417434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -413935,7 +417447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5002), 29, + ACTIONS(6014), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -413947,8 +417459,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_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -413965,10 +417476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [59465] = 3, + [60233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 19, + ACTIONS(6008), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -413982,24 +417493,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5765), 35, + sym_identifier, + ACTIONS(6010), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -414011,23 +417530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [59527] = 3, + anon_sym_DASH_GT, + [60295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 19, + ACTIONS(6004), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414041,24 +417552,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5619), 35, + sym_identifier, + ACTIONS(6006), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -414070,93 +417589,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [59589] = 3, + anon_sym_DASH_GT, + [60357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 12, + ACTIONS(6000), 26, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + 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(5564), 42, + sym_identifier, + ACTIONS(6002), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_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_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, 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, - [59651] = 8, + [60419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6806), 1, - anon_sym_LPAREN2, - ACTIONS(6808), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6810), 1, - anon_sym_LBRACK, - STATE(3919), 1, - sym_parameter_list, - STATE(3540), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5845), 20, + ACTIONS(5711), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414177,13 +417677,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5847), 28, + ACTIONS(5713), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -414205,11 +417709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [59723] = 3, + [60481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 19, + ACTIONS(5935), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414223,24 +417729,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5623), 35, + sym_identifier, + ACTIONS(5937), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -414252,23 +417766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [59785] = 3, + anon_sym_DASH_GT, + [60543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 25, + ACTIONS(5939), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414282,6 +417788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -414294,7 +417801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5006), 29, + ACTIONS(5941), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -414306,8 +417813,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_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -414324,10 +417830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [59847] = 3, + [60605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5741), 12, + ACTIONS(5418), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -414340,7 +417846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5743), 42, + ACTIONS(5420), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -414383,10 +417889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [59909] = 3, + [60667] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 19, + ACTIONS(2254), 1, + anon_sym_LBRACE, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + STATE(3788), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6030), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414406,17 +417919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5615), 35, + ACTIONS(6032), 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, @@ -414439,13 +417950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [59971] = 3, + [60735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 12, + ACTIONS(5807), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -414458,7 +417967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(5713), 42, + ACTIONS(5809), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -414501,53 +418010,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [60033] = 3, + [60797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 12, + ACTIONS(5665), 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(5709), 42, + ACTIONS(5667), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -414556,18 +418068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [60095] = 5, + [60859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6860), 1, - anon_sym_LT, - STATE(3223), 1, - sym_template_argument_list, - ACTIONS(6095), 24, + ACTIONS(5035), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414578,6 +418083,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, @@ -414592,7 +418098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6097), 28, + ACTIONS(5037), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -414605,6 +418111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -414621,10 +418128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [60161] = 3, + [60921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6146), 26, + ACTIONS(4999), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414638,7 +418145,6 @@ 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, @@ -414651,7 +418157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6148), 28, + ACTIONS(5001), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -414663,7 +418169,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_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -414680,139 +418187,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [60223] = 3, + [60983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 12, + ACTIONS(5024), 25, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5537), 42, + sym_identifier, + ACTIONS(5026), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_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_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [60285] = 3, + [61045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 12, + ACTIONS(5046), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5048), 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(5697), 42, + anon_sym_DASH_GT, + ACTIONS(5041), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [60347] = 8, + anon_sym_DASH_GT_STAR, + [61109] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6806), 1, + ACTIONS(6934), 1, anon_sym_LPAREN2, - ACTIONS(6808), 1, + ACTIONS(6936), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6810), 1, + ACTIONS(6938), 1, anon_sym_LBRACK, - STATE(3919), 1, + STATE(3797), 1, sym_parameter_list, - STATE(3540), 2, + STATE(3466), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(5878), 20, + ACTIONS(5825), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414833,7 +418341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5880), 28, + ACTIONS(5827), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -414862,10 +418370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [60419] = 3, + [61181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 20, + ACTIONS(6237), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414875,28 +418383,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, 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, - ACTIONS(5717), 34, + sym_identifier, + ACTIONS(6239), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, 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_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -414904,27 +418420,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [60481] = 3, + [61243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 25, + ACTIONS(6989), 1, + anon_sym_LT, + STATE(3208), 1, + sym_template_argument_list, + ACTIONS(6201), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414935,7 +418447,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, @@ -414950,7 +418461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6220), 29, + ACTIONS(6203), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -414962,7 +418473,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, @@ -414980,16 +418490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [60543] = 6, + [61309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6603), 1, - sym_auto, - ACTIONS(6605), 1, - anon_sym_decltype, - STATE(3513), 1, - sym_decltype_auto, - ACTIONS(5436), 20, + ACTIONS(5803), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -414999,25 +418503,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(5438), 31, + anon_sym_DASH_GT, + ACTIONS(5805), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -415027,6 +418532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -415040,12 +418546,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_GT2, - [60611] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [61371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 26, + ACTIONS(5795), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415055,36 +418562,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_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(5917), 28, + ACTIONS(5797), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -415092,19 +418591,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [60673] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [61433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5919), 26, + ACTIONS(2254), 1, + anon_sym_LBRACE, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + STATE(3763), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5943), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415118,32 +418632,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5921), 28, + anon_sym_DASH_GT, + ACTIONS(5945), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -415155,54 +418659,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [60735] = 3, + anon_sym_DASH_GT_STAR, + [61501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5923), 26, + ACTIONS(5803), 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_const, + anon_sym_DOT, + ACTIONS(5805), 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_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_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, + [61563] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6577), 1, + anon_sym___attribute__, + ACTIONS(6685), 1, + anon_sym_LBRACE, + STATE(3468), 1, + sym_enumerator_list, + STATE(3735), 1, + sym_attribute_specifier, + ACTIONS(5788), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(5925), 28, + anon_sym_DASH_GT, + ACTIONS(5790), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_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, @@ -415215,14 +418780,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [60797] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [61633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5927), 26, + ACTIONS(5762), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415232,36 +418805,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_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(5929), 28, + ACTIONS(5764), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -415269,62 +418834,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [60859] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [61695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 12, + ACTIONS(5601), 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(5537), 42, + ACTIONS(5603), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -415333,16 +418909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [60921] = 4, + [61757] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6863), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6184), 26, + ACTIONS(6577), 1, + anon_sym___attribute__, + ACTIONS(6685), 1, + anon_sym_LBRACE, + STATE(3543), 1, + sym_enumerator_list, + STATE(3805), 1, + sym_attribute_specifier, + ACTIONS(5655), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415356,31 +418935,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6186), 27, + anon_sym_DASH_GT, + ACTIONS(5657), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -415393,22 +418961,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [60985] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [61827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(5353), 1, - anon_sym_LT, - STATE(3457), 1, - sym_template_argument_list, - ACTIONS(4977), 18, + ACTIONS(4991), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415419,18 +418987,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_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(4970), 32, + sym_identifier, + ACTIONS(4993), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -415438,6 +419015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -415449,64 +419027,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_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, - [61055] = 3, + anon_sym_DASH_GT, + [61889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5745), 12, + ACTIONS(5754), 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(5747), 42, + ACTIONS(5756), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -415515,21 +419090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [61117] = 6, + [61951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, - anon_sym_LBRACE, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - STATE(3827), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5950), 19, + ACTIONS(5635), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415549,15 +419114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5952), 31, + ACTIONS(5637), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -415580,17 +419147,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [61185] = 5, + [62013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3962), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(6865), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(3958), 20, - anon_sym_BANG, + ACTIONS(6049), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415604,20 +419167,33 @@ 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(3956), 31, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6051), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_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, @@ -415628,24 +419204,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_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, - [61251] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [62075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 19, + ACTIONS(5685), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415665,7 +419232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5731), 35, + ACTIONS(5687), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -415701,13 +419268,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [61313] = 4, + [62137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5021), 20, + ACTIONS(5677), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415721,14 +419285,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(5014), 32, + ACTIONS(5679), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -415738,7 +419301,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, @@ -415760,11 +419324,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [61377] = 3, + [62199] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 19, + ACTIONS(6934), 1, + anon_sym_LPAREN2, + ACTIONS(6936), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6938), 1, + anon_sym_LBRACK, + STATE(3797), 1, + sym_parameter_list, + STATE(3466), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5897), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415774,28 +419351,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(5725), 35, + ACTIONS(5899), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -415803,7 +419376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -415817,13 +419389,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [61439] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [62271] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 19, + ACTIONS(5392), 1, + sym_literal_suffix, + STATE(2902), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3622), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3626), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4145), 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(4137), 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, + [62341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4018), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415837,24 +419471,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5739), 35, + sym_identifier, + ACTIONS(4020), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -415866,23 +419508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [61501] = 3, + anon_sym_DASH_GT, + [62403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 19, + ACTIONS(5643), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -415902,7 +419536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5721), 35, + ACTIONS(5645), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -415938,56 +419572,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [61563] = 3, + [62465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 20, + ACTIONS(5635), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(5398), 34, + ACTIONS(5637), 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_COLON_COLON, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -415996,11 +419627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [61625] = 3, + anon_sym_requires, + [62527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 26, + ACTIONS(5689), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416014,32 +419648,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4018), 28, + anon_sym_DASH_GT, + ACTIONS(5691), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_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, @@ -416051,15 +419677,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, - [61687] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [62589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 26, + ACTIONS(6700), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416086,7 +419720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(6689), 28, + ACTIONS(6702), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -416115,10 +419749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [61749] = 3, + [62651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 19, + ACTIONS(5651), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416138,7 +419772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5663), 35, + ACTIONS(5653), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -416174,10 +419808,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [61811] = 3, + [62713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 19, + ACTIONS(6249), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416191,24 +419825,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5701), 35, + sym_identifier, + ACTIONS(6251), 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_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -416220,23 +419862,74 @@ 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, + [62775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 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_LBRACK, + 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_DOT, + sym_identifier, + ACTIONS(4016), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [61873] = 3, + anon_sym_DASH_GT, + [62837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 19, + ACTIONS(5647), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416256,7 +419949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5693), 35, + ACTIONS(5649), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -416292,69 +419985,69 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [61935] = 3, + [62899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 12, + ACTIONS(5028), 25, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5725), 42, + sym_identifier, + ACTIONS(5030), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_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_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [61997] = 3, + [62961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5759), 20, + ACTIONS(5643), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416364,26 +420057,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(5761), 34, + anon_sym_DASH_GT, + ACTIONS(5645), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -416393,6 +420086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -416406,11 +420100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [62059] = 3, + anon_sym_DASH_GT_STAR, + [63023] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5661), 19, @@ -416469,10 +420162,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [62121] = 3, + [63085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 19, + ACTIONS(5643), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416492,7 +420185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5663), 35, + ACTIONS(5645), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -416528,10 +420221,15 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [62183] = 3, + [63147] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6425), 25, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + STATE(3307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6016), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416545,31 +420243,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6427), 28, + anon_sym_DASH_GT, + ACTIONS(6018), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -416581,15 +420271,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, - [62244] = 3, + anon_sym_DASH_GT_STAR, + [63213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 20, + ACTIONS(5003), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416599,27 +420295,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_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(5713), 33, + sym_identifier, + ACTIONS(5005), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -416627,107 +420332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [62305] = 25, + [63275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, - anon_sym_LPAREN2, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(6391), 1, - anon_sym_STAR, - ACTIONS(6393), 1, - anon_sym_AMP_AMP, - ACTIONS(6395), 1, - anon_sym_AMP, - STATE(4309), 1, - sym_parameter_list, - STATE(6263), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6807), 1, - sym__declarator, - STATE(7139), 1, - sym__abstract_declarator, - STATE(8562), 1, - sym_ms_based_modifier, - ACTIONS(6740), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [62410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5184), 25, + ACTIONS(2186), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416753,7 +420370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5186), 28, + ACTIONS(2184), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -416782,15 +420399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [62471] = 5, + [63336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6867), 1, - anon_sym_LBRACK_LBRACK, - STATE(3353), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5970), 21, + ACTIONS(5014), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416800,26 +420412,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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, - ACTIONS(5972), 29, + sym_identifier, + ACTIONS(5019), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -416827,25 +420448,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_GT2, - [62536] = 3, + [63397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 25, + ACTIONS(5183), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416871,7 +420486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3922), 28, + ACTIONS(5185), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -416900,14 +420515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [62597] = 5, + [63458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - anon_sym___attribute__, - STATE(3699), 1, - sym_attribute_specifier, - ACTIONS(5895), 16, + ACTIONS(5201), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416922,19 +420533,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5897), 35, + sym_identifier, + ACTIONS(5203), 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_elif_token1, anon_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, @@ -416948,26 +420569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62662] = 5, + anon_sym_DASH_GT, + [63519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6870), 1, - anon_sym_LT, - STATE(3036), 1, - sym_template_argument_list, - ACTIONS(6095), 18, + ACTIONS(5167), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -416978,26 +420587,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_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(6097), 33, + sym_identifier, + ACTIONS(5169), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_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, @@ -417009,23 +420626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [62727] = 4, + [63580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_COLON_COLON, - ACTIONS(5537), 12, + ACTIONS(5420), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -417038,7 +420649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5535), 40, + ACTIONS(5418), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -417079,14 +420690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [62790] = 5, + [63643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - anon_sym___attribute__, - STATE(3701), 1, - sym_attribute_specifier, - ACTIONS(5882), 16, + ACTIONS(6348), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -417101,19 +420708,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5884), 35, + sym_identifier, + ACTIONS(6350), 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_elif_token1, anon_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, @@ -417127,29 +420744,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [62855] = 4, + anon_sym_DASH_GT, + [63704] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6873), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6184), 20, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -417158,24 +420783,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(6186), 32, + ACTIONS(6153), 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, @@ -417194,27 +420814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [62918] = 8, + [63783] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - STATE(3750), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4165), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5568), 12, + ACTIONS(6907), 1, + sym_auto, + ACTIONS(6909), 1, + anon_sym_decltype, + STATE(3682), 1, + sym_decltype_auto, + ACTIONS(5550), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -417223,11 +420833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5566), 33, + ACTIONS(5548), 37, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -417254,101 +420865,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [62989] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6879), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6877), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [63050] = 7, + anon_sym_try, + anon_sym_requires, + [63850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6881), 1, - sym_identifier, - STATE(3364), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3734), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3742), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5216), 16, + ACTIONS(6269), 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, @@ -417356,35 +420904,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5214), 23, + sym_identifier, + ACTIONS(6271), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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, - [63119] = 3, + [63911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6373), 25, + ACTIONS(3924), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -417410,7 +420963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6375), 28, + ACTIONS(3920), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -417439,77 +420992,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [63180] = 7, + [63972] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6883), 1, - sym_identifier, - STATE(3447), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3734), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3742), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5200), 16, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7000), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6151), 10, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5198), 23, + ACTIONS(6153), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [64053] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6614), 1, + anon_sym_EQ, + ACTIONS(6777), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6823), 1, + anon_sym_QMARK, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7004), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7006), 1, + anon_sym_AMP_AMP, + ACTIONS(7008), 1, + anon_sym_PIPE, + ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7018), 1, + anon_sym_GT_EQ, + ACTIONS(7022), 1, + anon_sym_or, + ACTIONS(7024), 1, + anon_sym_and, + ACTIONS(7026), 1, + anon_sym_bitor, + ACTIONS(7028), 1, + anon_sym_bitand, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6992), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7010), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7020), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6994), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7014), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7016), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6618), 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, + [64164] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(6863), 2, + anon_sym_DOT, anon_sym_DASH_GT, - [63249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6333), 25, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -417519,30 +421178,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, - sym_identifier, - ACTIONS(6335), 28, + ACTIONS(6153), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, @@ -417554,15 +421201,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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [63310] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [64241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 25, + ACTIONS(5246), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -417588,7 +421238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5206), 28, + ACTIONS(5248), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -417617,10 +421267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [63371] = 3, + [64302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 25, + ACTIONS(5195), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -417646,7 +421296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5210), 28, + ACTIONS(5197), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -417675,50 +421325,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [63432] = 9, + [64363] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, + ACTIONS(6139), 1, anon_sym_DOT, + ACTIONS(6469), 1, + anon_sym_EQ, + ACTIONS(6616), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7032), 1, + anon_sym_AMP_AMP, + ACTIONS(7034), 1, + anon_sym_PIPE, + ACTIONS(7038), 1, + anon_sym_AMP, + ACTIONS(7044), 1, + anon_sym_GT_EQ, + ACTIONS(7046), 1, + anon_sym_QMARK, + ACTIONS(7048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7050), 1, + anon_sym_or, + ACTIONS(7052), 1, + anon_sym_and, + ACTIONS(7054), 1, + anon_sym_bitor, + ACTIONS(7056), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6155), 17, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7036), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7040), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7042), 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(6157), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(6471), 16, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -417732,55 +421408,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [64474] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7032), 1, + anon_sym_AMP_AMP, + ACTIONS(7034), 1, + anon_sym_PIPE, + ACTIONS(7038), 1, + anon_sym_AMP, + ACTIONS(7044), 1, + anon_sym_GT_EQ, + ACTIONS(7048), 1, anon_sym_LT_EQ_GT, + ACTIONS(7052), 1, + anon_sym_and, + ACTIONS(7054), 1, anon_sym_bitor, + ACTIONS(7056), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [63505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6317), 25, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6151), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7036), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7040), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7042), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6319), 28, + ACTIONS(6153), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -417792,20 +421484,36 @@ 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [64577] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [63566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6337), 25, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -417815,30 +421523,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(6339), 28, + ACTIONS(6153), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -417850,15 +421547,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, - [63627] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [64656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 20, + ACTIONS(6389), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -417868,26 +421567,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(5537), 33, + sym_identifier, + ACTIONS(6391), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -417896,43 +421603,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [63688] = 10, + [64717] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6133), 17, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6131), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -417950,7 +421649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6135), 27, + ACTIONS(6133), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -417978,52 +421677,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [63763] = 10, + [64792] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, + ACTIONS(6139), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, + ACTIONS(7034), 1, + anon_sym_PIPE, + ACTIONS(7038), 1, + anon_sym_AMP, + ACTIONS(7044), 1, + anon_sym_GT_EQ, + ACTIONS(7048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7054), 1, + anon_sym_bitor, + ACTIONS(7056), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6121), 17, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7036), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6151), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7040), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7042), 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(6123), 27, + ACTIONS(6153), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418038,53 +421754,66 @@ 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, - [63838] = 3, + [64891] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6321), 25, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7038), 1, + anon_sym_AMP, + ACTIONS(7044), 1, + anon_sym_GT_EQ, + ACTIONS(7048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7056), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7036), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7040), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7042), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6151), 4, + 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, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6323), 28, + ACTIONS(6153), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418096,53 +421825,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [64986] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7038), 1, + anon_sym_AMP, + ACTIONS(7044), 1, + anon_sym_GT_EQ, + ACTIONS(7048), 1, anon_sym_LT_EQ_GT, + ACTIONS(7056), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [63899] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6226), 25, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7040), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7042), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6151), 6, + 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_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6228), 28, + ACTIONS(6153), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418154,15 +421899,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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [63960] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [65079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 25, + ACTIONS(5046), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5048), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418177,23 +421924,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5190), 28, + anon_sym_DASH_GT, + ACTIONS(5041), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -418212,53 +421951,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [64021] = 3, + anon_sym_DASH_GT_STAR, + [65142] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 25, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7020), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 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, - ACTIONS(5145), 28, + ACTIONS(6153), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, @@ -418270,53 +422022,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_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, + [65223] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7044), 1, + anon_sym_GT_EQ, + ACTIONS(7048), 1, anon_sym_LT_EQ_GT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5316), 25, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7040), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7042), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6151), 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, - ACTIONS(2871), 28, + ACTIONS(6153), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418328,53 +422097,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_bitor, + anon_sym_bitand, + [65312] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7044), 1, + anon_sym_GT_EQ, + ACTIONS(7048), 1, anon_sym_LT_EQ_GT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5168), 25, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7042), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6151), 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, - ACTIONS(5170), 28, + ACTIONS(6153), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418386,19 +422167,20 @@ 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, - [64204] = 5, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [65399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, + ACTIONS(6577), 1, anon_sym___attribute__, - STATE(3723), 1, + STATE(3859), 1, sym_attribute_specifier, - ACTIONS(5861), 16, + ACTIONS(5883), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418415,7 +422197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5863), 35, + ACTIONS(5885), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -418451,40 +422233,58 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [64269] = 3, + [65464] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 20, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7048), 1, + anon_sym_LT_EQ_GT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 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(5705), 33, + ACTIONS(6153), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418492,57 +422292,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [65547] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [64330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5684), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5686), 33, + ACTIONS(6153), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418550,6 +422357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -418560,75 +422368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [64391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5537), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - ACTIONS(5535), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [64452] = 3, + [65624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 25, + ACTIONS(6419), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418654,7 +422397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6309), 28, + ACTIONS(6421), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -418683,45 +422426,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64513] = 6, + [65685] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, - anon_sym_LBRACE, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - STATE(4043), 2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6673), 1, + anon_sym_EQ, + ACTIONS(7030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7032), 1, + anon_sym_AMP_AMP, + ACTIONS(7034), 1, + anon_sym_PIPE, + ACTIONS(7038), 1, + anon_sym_AMP, + ACTIONS(7044), 1, + anon_sym_GT_EQ, + ACTIONS(7048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7050), 1, + anon_sym_or, + ACTIONS(7052), 1, + anon_sym_and, + ACTIONS(7054), 1, + anon_sym_bitor, + ACTIONS(7056), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 20, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7036), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7040), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7042), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6675), 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, + [65792] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + sym_identifier, + STATE(3471), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3846), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3854), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5222), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6003), 29, + sym_literal_suffix, + ACTIONS(5220), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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, + [65861] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5344), 1, + anon_sym_virtual, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7060), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(5334), 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(3445), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7062), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5332), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [65938] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6681), 1, + anon_sym_EQ, + ACTIONS(7030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7032), 1, + anon_sym_AMP_AMP, + ACTIONS(7034), 1, + anon_sym_PIPE, + ACTIONS(7038), 1, + anon_sym_AMP, + ACTIONS(7044), 1, + anon_sym_GT_EQ, + ACTIONS(7048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7050), 1, + anon_sym_or, + ACTIONS(7052), 1, + anon_sym_and, + ACTIONS(7054), 1, + anon_sym_bitor, + ACTIONS(7056), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6998), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7036), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7000), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7040), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7042), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6683), 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, @@ -418729,29 +422709,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_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [64580] = 5, + [66045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - anon_sym___attribute__, - STATE(3724), 1, - sym_attribute_specifier, - ACTIONS(5857), 16, + ACTIONS(6407), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418766,19 +422734,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5859), 35, + sym_identifier, + ACTIONS(6409), 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_elif_token1, anon_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, @@ -418792,26 +422770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [64645] = 5, + anon_sym_DASH_GT, + [66106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6893), 1, - anon_sym_AMP_AMP, - ACTIONS(6895), 1, - anon_sym_and, - ACTIONS(6206), 24, + ACTIONS(6300), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418830,13 +422796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6208), 27, + ACTIONS(6302), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -418844,6 +422811,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -418864,72 +422832,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64710] = 26, + [66167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6646), 1, - anon_sym_EQ, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(6901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, - anon_sym_AMP_AMP, - ACTIONS(6905), 1, - anon_sym_PIPE, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6915), 1, - anon_sym_GT_EQ, - ACTIONS(6919), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6921), 1, - anon_sym_or, - ACTIONS(6923), 1, - anon_sym_and, - ACTIONS(6925), 1, - anon_sym_bitor, - ACTIONS(6927), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + ACTIONS(6453), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6907), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6917), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6911), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6913), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6648), 18, + 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(6455), 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_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -418941,14 +422885,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_DASH_GT_STAR, - [64817] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [66228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 25, + ACTIONS(6447), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -418974,7 +422919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5182), 28, + ACTIONS(6449), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -419003,10 +422948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64878] = 3, + [66289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 25, + ACTIONS(6461), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419032,7 +422977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5194), 28, + ACTIONS(6463), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -419061,10 +423006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [64939] = 3, + [66350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 25, + ACTIONS(5689), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419074,34 +423019,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6446), 28, + ACTIONS(5691), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -419110,23 +423047,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [65000] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [66411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6929), 1, - anon_sym_LT, - STATE(2040), 1, - sym_template_argument_list, - ACTIONS(6095), 19, + ACTIONS(6583), 1, + anon_sym_LBRACK, + STATE(3664), 1, + sym_new_declarator, + ACTIONS(6118), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419137,16 +423082,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(6097), 32, + ACTIONS(6120), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -419156,7 +423101,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_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -419179,23 +423124,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65065] = 9, + [66476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6162), 17, + ACTIONS(6577), 1, + anon_sym___attribute__, + STATE(3871), 1, + sym_attribute_specifier, + ACTIONS(5879), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419210,18 +423146,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6164), 29, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5881), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -419233,86 +423171,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [65138] = 11, + [66541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - STATE(3653), 1, - sym_attribute_specifier, - STATE(4349), 1, - sym_field_declaration_list, - STATE(7356), 1, - sym_virtual_specifier, - STATE(8245), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5286), 12, + ACTIONS(5661), 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(5663), 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, - ACTIONS(5284), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [65215] = 3, + anon_sym_GT2, + [66602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 25, + ACTIONS(6253), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419338,7 +423271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2146), 28, + ACTIONS(6255), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -419367,35 +423300,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [65276] = 7, + [66663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 1, - sym_literal_suffix, - STATE(2850), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3654), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3658), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4147), 15, + ACTIONS(5348), 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, @@ -419403,36 +423328,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4139), 25, + sym_identifier, + ACTIONS(2899), 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_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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, - [65345] = 3, + [66724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5751), 20, + ACTIONS(6469), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419442,26 +423371,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(5753), 33, + sym_identifier, + ACTIONS(6471), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -419470,29 +423407,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [65406] = 4, + [66785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6936), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6184), 19, + ACTIONS(7064), 1, + anon_sym_LT, + STATE(3349), 1, + sym_template_argument_list, + ACTIONS(6201), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419503,7 +423434,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, @@ -419512,18 +423442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6186), 33, + anon_sym_DASH_GT, + ACTIONS(6203), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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, @@ -419545,41 +423475,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, - [65469] = 3, + anon_sym_DASH_GT_STAR, + [66850] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 20, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6660), 1, + anon_sym_EQ, + ACTIONS(7030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7032), 1, + anon_sym_AMP_AMP, + ACTIONS(7034), 1, + anon_sym_PIPE, + ACTIONS(7038), 1, + anon_sym_AMP, + ACTIONS(7044), 1, + anon_sym_GT_EQ, + ACTIONS(7048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7050), 1, + anon_sym_or, + ACTIONS(7052), 1, + anon_sym_and, + ACTIONS(7054), 1, + anon_sym_bitor, + ACTIONS(7056), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7036), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7040), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7042), 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(5757), 33, + ACTIONS(6662), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -419587,31 +423550,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_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [65530] = 5, + [66957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - anon_sym___attribute__, - STATE(3725), 1, - sym_attribute_specifier, - ACTIONS(5853), 16, + ACTIONS(6340), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419626,19 +423575,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5855), 35, + sym_identifier, + ACTIONS(6342), 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_elif_token1, anon_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, @@ -419652,22 +423611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [65595] = 3, + anon_sym_DASH_GT, + [67018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 20, + ACTIONS(5707), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419688,7 +423639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5765), 33, + ACTIONS(5709), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -419722,10 +423673,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [65656] = 3, + [67079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 20, + ACTIONS(5681), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419746,7 +423697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5769), 33, + ACTIONS(5683), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -419780,10 +423731,93 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [65717] = 3, + [67140] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6616), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6677), 1, + anon_sym_EQ, + ACTIONS(7030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7032), 1, + anon_sym_AMP_AMP, + ACTIONS(7034), 1, + anon_sym_PIPE, + ACTIONS(7038), 1, + anon_sym_AMP, + ACTIONS(7044), 1, + anon_sym_GT_EQ, + ACTIONS(7046), 1, + anon_sym_QMARK, + ACTIONS(7048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7050), 1, + anon_sym_or, + ACTIONS(7052), 1, + anon_sym_and, + ACTIONS(7054), 1, + anon_sym_bitor, + ACTIONS(7056), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6998), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7036), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7000), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7040), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7042), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6679), 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, + [67251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 25, + ACTIONS(5224), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419809,7 +423843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5220), 28, + ACTIONS(5226), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -419838,10 +423872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [65778] = 3, + [67312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 25, + ACTIONS(5250), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419867,7 +423901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5149), 28, + ACTIONS(5252), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -419896,14 +423930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [65839] = 5, + [67373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - anon_sym___attribute__, - STATE(3730), 1, - sym_attribute_specifier, - ACTIONS(5849), 16, + ACTIONS(6439), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419918,19 +423948,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5851), 35, + sym_identifier, + ACTIONS(6441), 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_elif_token1, anon_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, @@ -419944,22 +423984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [65904] = 3, + anon_sym_DASH_GT, + [67434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 20, + ACTIONS(5738), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -419980,7 +424012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5773), 33, + ACTIONS(5740), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -420014,10 +424046,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [65965] = 3, + [67495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 20, + ACTIONS(5742), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420038,7 +424070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5777), 33, + ACTIONS(5744), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -420072,106 +424104,73 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [66026] = 3, + [67556] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6337), 25, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6652), 1, + anon_sym_EQ, + ACTIONS(7030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7032), 1, + anon_sym_AMP_AMP, + ACTIONS(7034), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7038), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(7044), 1, + anon_sym_GT_EQ, + ACTIONS(7048), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7050), 1, anon_sym_or, + ACTIONS(7052), 1, anon_sym_and, + ACTIONS(7054), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7056), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6339), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6369), 25, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7002), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7036), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7040), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7042), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6371), 28, + ACTIONS(6654), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -420183,15 +424182,18 @@ 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, - [66148] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [67663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 25, + ACTIONS(7067), 1, + anon_sym_LBRACK_LBRACK, + STATE(3444), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5953), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420201,35 +424203,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(2142), 28, + ACTIONS(5955), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -420237,26 +424230,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66209] = 6, + anon_sym_GT2, + [67728] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, - anon_sym_LBRACE, - ACTIONS(6599), 1, + ACTIONS(7080), 1, + anon_sym___attribute__, + ACTIONS(7083), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7086), 1, + anon_sym___declspec, + ACTIONS(7089), 1, + anon_sym_virtual, + ACTIONS(7092), 1, + anon_sym_alignas, + ACTIONS(7070), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(7077), 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(3445), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7072), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(4010), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5997), 20, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7074), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [67805] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7095), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6181), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420266,25 +424326,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(5999), 29, + anon_sym_DASH_GT, + ACTIONS(6183), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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, @@ -420292,6 +424355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -420305,12 +424369,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, - [66276] = 3, + anon_sym_DASH_GT_STAR, + [67868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 25, + ACTIONS(5242), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420336,7 +424399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6305), 28, + ACTIONS(5244), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -420365,10 +424428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66337] = 3, + [67929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 25, + ACTIONS(5746), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420378,34 +424441,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6289), 28, + ACTIONS(5748), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -420414,19 +424469,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66398] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [67990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6283), 25, + ACTIONS(5750), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420436,34 +424499,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6285), 28, + ACTIONS(5752), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -420472,19 +424527,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66459] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [68051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6341), 25, + ACTIONS(6265), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420510,7 +424573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6343), 28, + ACTIONS(6267), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -420539,10 +424602,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66520] = 3, + [68112] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 25, + ACTIONS(6577), 1, + anon_sym___attribute__, + STATE(3731), 1, + sym_attribute_specifier, + ACTIONS(5875), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420557,29 +424624,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(6262), 28, + anon_sym_DASH_GT, + ACTIONS(5877), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -420593,44 +424650,82 @@ 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, - [66581] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [68177] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 20, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7006), 1, + anon_sym_AMP_AMP, + ACTIONS(7008), 1, + anon_sym_PIPE, + ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7018), 1, + anon_sym_GT_EQ, + ACTIONS(7024), 1, + anon_sym_and, + ACTIONS(7026), 1, + anon_sym_bitor, + ACTIONS(7028), 1, + anon_sym_bitand, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6151), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(6861), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7010), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7020), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7014), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7016), 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(5725), 33, + ACTIONS(6153), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -420638,27 +424733,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [66642] = 3, + anon_sym_DASH_GT_STAR, + [68280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 25, + ACTIONS(5730), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420668,34 +424754,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6258), 28, + ACTIONS(5732), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -420704,19 +424782,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66703] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [68341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6361), 25, + ACTIONS(5238), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420742,7 +424828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6363), 28, + ACTIONS(5240), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -420771,10 +424857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66764] = 3, + [68402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6387), 25, + ACTIONS(5614), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420784,34 +424870,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6389), 28, + ACTIONS(5616), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -420820,80 +424898,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66825] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6766), 1, sym_auto, - ACTIONS(6768), 1, anon_sym_decltype, - STATE(3589), 1, - sym_decltype_auto, - ACTIONS(5438), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(5436), 37, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [66892] = 3, + [68463] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 25, + ACTIONS(6577), 1, + anon_sym___attribute__, + STATE(3729), 1, + sym_attribute_specifier, + ACTIONS(5871), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420908,29 +424937,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(6383), 28, + anon_sym_DASH_GT, + ACTIONS(5873), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -420944,14 +424963,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [66953] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [68528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 20, + ACTIONS(5622), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -420972,7 +424999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5731), 33, + ACTIONS(5624), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -421006,76 +425033,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [67014] = 11, + [68589] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6948), 1, - anon_sym___attribute__, - ACTIONS(6951), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6954), 1, - anon_sym___declspec, - ACTIONS(6957), 1, - anon_sym_virtual, - ACTIONS(6960), 1, - anon_sym_alignas, - ACTIONS(6938), 7, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(6945), 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(3424), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(6940), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2628), 1, + anon_sym_LBRACE, + ACTIONS(6602), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6942), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [67091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5613), 20, + STATE(4043), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5992), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421096,15 +425064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5615), 33, + ACTIONS(5994), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -421127,13 +425093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [67152] = 3, + [68656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 25, + ACTIONS(6281), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421159,7 +425123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6359), 28, + ACTIONS(6283), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -421188,14 +425152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67213] = 5, + [68717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6929), 1, - anon_sym_LT, - STATE(3335), 1, - sym_template_argument_list, - ACTIONS(6095), 19, + ACTIONS(5618), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421205,27 +425165,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(6097), 32, + ACTIONS(5620), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -421233,7 +425193,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -421247,11 +425206,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, - [67278] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [68778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 20, + ACTIONS(6577), 1, + anon_sym___attribute__, + STATE(3803), 1, + sym_attribute_specifier, + ACTIONS(5913), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421261,25 +425227,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(5623), 33, + anon_sym_DASH_GT, + ACTIONS(5915), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -421289,27 +425253,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [67339] = 3, + anon_sym_DASH_GT_STAR, + [68843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 25, + ACTIONS(6352), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421335,7 +425299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6293), 28, + ACTIONS(6354), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -421364,10 +425328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67400] = 3, + [68904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 25, + ACTIONS(6411), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421393,7 +425357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5153), 28, + ACTIONS(6413), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -421422,10 +425386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67461] = 3, + [68965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 25, + ACTIONS(5614), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421435,34 +425399,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5153), 28, + ACTIONS(5616), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -421471,102 +425427,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [67522] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6632), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6652), 1, - anon_sym_EQ, - ACTIONS(6967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6969), 1, - anon_sym_AMP_AMP, - ACTIONS(6971), 1, - anon_sym_PIPE, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_GT_EQ, - ACTIONS(6985), 1, - anon_sym_QMARK, - ACTIONS(6987), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6989), 1, - anon_sym_or, - ACTIONS(6991), 1, - anon_sym_and, - ACTIONS(6993), 1, anon_sym_bitor, - ACTIONS(6995), 1, anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6963), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6973), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6983), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6977), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6979), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6654), 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, - [67633] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [69026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 25, + ACTIONS(6443), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421592,7 +425473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5153), 28, + ACTIONS(6445), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -421621,91 +425502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67694] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6646), 1, - anon_sym_EQ, - ACTIONS(6967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6969), 1, - anon_sym_AMP_AMP, - ACTIONS(6971), 1, - anon_sym_PIPE, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_GT_EQ, - ACTIONS(6987), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6989), 1, - anon_sym_or, - ACTIONS(6991), 1, - anon_sym_and, - ACTIONS(6993), 1, - anon_sym_bitor, - ACTIONS(6995), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6963), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6973), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6983), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6977), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6979), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6648), 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, - [67801] = 3, + [69087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 20, + ACTIONS(6936), 1, + anon_sym_LBRACK_LBRACK, + STATE(3444), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6016), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421720,13 +425525,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(5619), 33, + ACTIONS(6018), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -421734,8 +425540,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -421757,13 +425561,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_GT2, + [69152] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + STATE(3710), 1, + sym_attribute_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(7532), 1, + sym_virtual_specifier, + STATE(8075), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5317), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5315), 32, + anon_sym_AMP, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [67862] = 3, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [69229] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 20, + ACTIONS(6577), 1, + anon_sym___attribute__, + STATE(3806), 1, + sym_attribute_specifier, + ACTIONS(5909), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421773,25 +425645,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(5615), 33, + anon_sym_DASH_GT, + ACTIONS(5911), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -421801,93 +425671,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [67923] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5312), 1, - anon_sym_virtual, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6997), 7, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(5302), 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(3424), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(6999), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5300), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [68000] = 3, + anon_sym_DASH_GT_STAR, + [69294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 20, + ACTIONS(5799), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421908,7 +425712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5600), 33, + ACTIONS(5801), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -421942,10 +425746,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [68061] = 3, + [69355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5594), 20, + ACTIONS(5758), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -421966,7 +425770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5596), 33, + ACTIONS(5760), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -422000,68 +425804,134 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [68122] = 3, + [69416] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 20, + ACTIONS(7101), 1, + sym_identifier, + STATE(3471), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7104), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7107), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5210), 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(5588), 33, + sym_literal_suffix, + ACTIONS(5208), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, + [69485] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5392), 1, + sym_literal_suffix, + STATE(2902), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3622), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3626), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4145), 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(4137), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [68183] = 3, + [69554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 20, + ACTIONS(5418), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422082,7 +425952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5584), 33, + ACTIONS(5420), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -422116,10 +425986,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [68244] = 3, + [69615] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6417), 25, + ACTIONS(6577), 1, + anon_sym___attribute__, + STATE(3811), 1, + sym_attribute_specifier, + ACTIONS(5835), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422134,29 +426008,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(6419), 28, + anon_sym_DASH_GT, + ACTIONS(5837), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -422170,14 +426034,26 @@ 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, - [68305] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [69680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6407), 25, + ACTIONS(6577), 1, + anon_sym___attribute__, + STATE(3737), 1, + sym_attribute_specifier, + ACTIONS(5849), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422192,29 +426068,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(6409), 28, + anon_sym_DASH_GT, + ACTIONS(5851), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -422228,14 +426094,26 @@ 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, - [68366] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [69745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6102), 25, + ACTIONS(6577), 1, + anon_sym___attribute__, + STATE(3813), 1, + sym_attribute_specifier, + ACTIONS(5839), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422250,29 +426128,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(6104), 28, + anon_sym_DASH_GT, + ACTIONS(5841), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -422286,14 +426154,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [68427] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [69810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6413), 25, + ACTIONS(6431), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422319,7 +426195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6415), 28, + ACTIONS(6433), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -422348,62 +426224,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [68488] = 25, + [69871] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(4407), 1, + ACTIONS(4405), 1, anon_sym_LPAREN2, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(6089), 1, + ACTIONS(6106), 1, anon_sym_LBRACK, - ACTIONS(6397), 1, + ACTIONS(6367), 1, anon_sym_STAR, - ACTIONS(6399), 1, + ACTIONS(6369), 1, anon_sym_AMP_AMP, - ACTIONS(6401), 1, + ACTIONS(6371), 1, anon_sym_AMP, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6263), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(6807), 1, + STATE(6893), 1, sym__declarator, - STATE(7148), 1, + STATE(7160), 1, sym__abstract_declarator, - STATE(8562), 1, + STATE(8593), 1, sym_ms_based_modifier, - ACTIONS(6740), 2, + ACTIONS(6913), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(5574), 2, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6616), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -422415,7 +426291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -422428,79 +426304,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [68593] = 7, + [69976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7001), 1, - sym_identifier, - STATE(3447), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(7004), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7007), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5160), 16, + ACTIONS(5772), 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(5158), 23, + ACTIONS(5774), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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, - [68662] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [70037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, - anon_sym_LBRACE, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - STATE(3965), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5966), 20, + ACTIONS(5776), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422521,13 +426386,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5968), 29, + ACTIONS(5778), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -422550,19 +426417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [68729] = 7, + [70098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4975), 1, - anon_sym_LBRACE, - ACTIONS(5402), 1, - anon_sym_LT, - STATE(3650), 1, - sym_template_argument_list, - ACTIONS(4977), 19, + ACTIONS(6363), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422572,24 +426433,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(4970), 30, + sym_identifier, + ACTIONS(6365), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -422598,88 +426469,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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [68798] = 26, + [70159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6640), 1, - anon_sym_EQ, - ACTIONS(6967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6969), 1, - anon_sym_AMP_AMP, - ACTIONS(6971), 1, - anon_sym_PIPE, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_GT_EQ, - ACTIONS(6987), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6989), 1, - anon_sym_or, - ACTIONS(6991), 1, - anon_sym_and, - ACTIONS(6993), 1, - anon_sym_bitor, - ACTIONS(6995), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6963), 2, + ACTIONS(6385), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6973), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6983), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6965), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6977), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6979), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6642), 18, + 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(6387), 28, 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_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -422691,13 +426531,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, - [68905] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [70220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 25, + ACTIONS(6381), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422723,7 +426565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5174), 28, + ACTIONS(6383), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -422752,76 +426594,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [68966] = 28, + [70281] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6630), 1, + ACTIONS(6660), 1, anon_sym_EQ, - ACTIONS(6632), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6967), 1, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7004), 1, anon_sym_PIPE_PIPE, - ACTIONS(6969), 1, + ACTIONS(7006), 1, anon_sym_AMP_AMP, - ACTIONS(6971), 1, + ACTIONS(7008), 1, anon_sym_PIPE, - ACTIONS(6975), 1, + ACTIONS(7012), 1, anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7018), 1, anon_sym_GT_EQ, - ACTIONS(6985), 1, - anon_sym_QMARK, - ACTIONS(6987), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6989), 1, + ACTIONS(7022), 1, anon_sym_or, - ACTIONS(6991), 1, + ACTIONS(7024), 1, anon_sym_and, - ACTIONS(6993), 1, + ACTIONS(7026), 1, anon_sym_bitor, - ACTIONS(6995), 1, + ACTIONS(7028), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(3774), 1, sym_argument_list, - STATE(2792), 1, + STATE(3776), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + ACTIONS(6863), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6963), 2, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6973), 2, + ACTIONS(7010), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6983), 2, + ACTIONS(7020), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6965), 3, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6977), 3, + ACTIONS(7014), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6979), 3, + ACTIONS(7016), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6634), 16, + ACTIONS(6662), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RPAREN, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -422835,131 +426674,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [69077] = 3, + anon_sym_DASH_GT_STAR, + [70388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 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_identifier, - ACTIONS(6462), 28, - anon_sym_DOT_DOT_DOT, + ACTIONS(5420), 11, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + ACTIONS(5418), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [69138] = 26, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [70449] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6607), 1, - anon_sym_EQ, - ACTIONS(6885), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(6901), 1, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6614), 1, + anon_sym_EQ, + ACTIONS(6616), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7030), 1, anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, + ACTIONS(7032), 1, anon_sym_AMP_AMP, - ACTIONS(6905), 1, + ACTIONS(7034), 1, anon_sym_PIPE, - ACTIONS(6909), 1, + ACTIONS(7038), 1, anon_sym_AMP, - ACTIONS(6915), 1, + ACTIONS(7044), 1, anon_sym_GT_EQ, - ACTIONS(6919), 1, + ACTIONS(7046), 1, + anon_sym_QMARK, + ACTIONS(7048), 1, anon_sym_LT_EQ_GT, - ACTIONS(6921), 1, + ACTIONS(7050), 1, anon_sym_or, - ACTIONS(6923), 1, + ACTIONS(7052), 1, anon_sym_and, - ACTIONS(6925), 1, + ACTIONS(7054), 1, anon_sym_bitor, - ACTIONS(6927), 1, + ACTIONS(7056), 1, anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(2790), 1, sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6998), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6907), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6917), 2, + ACTIONS(7002), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6899), 3, + ACTIONS(7036), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7000), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6911), 3, + ACTIONS(7040), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6913), 3, + ACTIONS(7042), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6609), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6618), 16, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -422973,11 +426816,23 @@ 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, - [69245] = 3, + [70560] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 25, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6245), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -422992,30 +426847,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, - sym_identifier, - ACTIONS(6458), 28, + ACTIONS(6247), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, @@ -423027,15 +426870,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, - [69306] = 3, + anon_sym_DASH_GT_STAR, + [70633] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 25, + ACTIONS(2628), 1, + anon_sym_LBRACE, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + STATE(4029), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6030), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423045,34 +426900,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6240), 28, + ACTIONS(6032), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -423081,22 +426926,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [69367] = 4, + anon_sym_GT2, + [70700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5021), 19, + ACTIONS(7110), 1, + anon_sym_LT, + STATE(3110), 1, + sym_template_argument_list, + ACTIONS(6201), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423107,26 +426959,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(5014), 32, + ACTIONS(6203), 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, @@ -423148,15 +427000,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_STAR, - [69430] = 5, + anon_sym_DASH_GT, + [70765] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + STATE(3867), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4163), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5595), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5593), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [70836] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, STATE(3774), 1, - sym_attribute_specifier, - ACTIONS(5839), 16, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6177), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423171,20 +427098,18 @@ 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(5841), 35, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6179), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -423196,23 +427121,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [69495] = 3, + [70911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6252), 25, + ACTIONS(7115), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6181), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423226,31 +427148,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6254), 28, + ACTIONS(6183), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_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, @@ -423262,15 +427177,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, - [69556] = 3, + [70974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 25, + ACTIONS(6324), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423296,7 +427217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6236), 28, + ACTIONS(6326), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -423325,10 +427246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [69617] = 3, + [71035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 25, + ACTIONS(6257), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423354,7 +427275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6250), 28, + ACTIONS(6259), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -423383,10 +427304,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [69678] = 3, + [71096] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6681), 1, + anon_sym_EQ, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7004), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7006), 1, + anon_sym_AMP_AMP, + ACTIONS(7008), 1, + anon_sym_PIPE, + ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7018), 1, + anon_sym_GT_EQ, + ACTIONS(7022), 1, + anon_sym_or, + ACTIONS(7024), 1, + anon_sym_and, + ACTIONS(7026), 1, + anon_sym_bitor, + ACTIONS(7028), 1, + anon_sym_bitand, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6992), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7010), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7020), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6994), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7014), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7016), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6683), 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, + [71203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 25, + ACTIONS(2136), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423412,7 +427414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6232), 28, + ACTIONS(2134), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -423441,52 +427443,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [69739] = 7, + [71264] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6893), 1, - anon_sym_AMP_AMP, - ACTIONS(6895), 1, - anon_sym_and, - ACTIONS(7010), 1, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6652), 1, + anon_sym_EQ, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7004), 1, anon_sym_PIPE_PIPE, + ACTIONS(7006), 1, + anon_sym_AMP_AMP, + ACTIONS(7008), 1, + anon_sym_PIPE, ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7018), 1, + anon_sym_GT_EQ, + ACTIONS(7022), 1, anon_sym_or, - ACTIONS(6194), 23, + ACTIONS(7024), 1, + anon_sym_and, + ACTIONS(7026), 1, + anon_sym_bitor, + ACTIONS(7028), 1, + anon_sym_bitand, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7010), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7020), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7014), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7016), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6196), 26, + ACTIONS(6654), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -423498,15 +427520,14 @@ 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, - [69808] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [71371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 25, + ACTIONS(6340), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423532,7 +427553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6423), 28, + ACTIONS(6342), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -423561,73 +427582,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [69869] = 28, + [71432] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6652), 1, + ACTIONS(6677), 1, anon_sym_EQ, - ACTIONS(6885), 1, + ACTIONS(6777), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6823), 1, + anon_sym_QMARK, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - ACTIONS(6901), 1, + ACTIONS(7004), 1, anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, + ACTIONS(7006), 1, anon_sym_AMP_AMP, - ACTIONS(6905), 1, + ACTIONS(7008), 1, anon_sym_PIPE, - ACTIONS(6909), 1, + ACTIONS(7012), 1, anon_sym_AMP, - ACTIONS(6915), 1, + ACTIONS(7018), 1, anon_sym_GT_EQ, - ACTIONS(6919), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6921), 1, + ACTIONS(7022), 1, anon_sym_or, - ACTIONS(6923), 1, + ACTIONS(7024), 1, anon_sym_and, - ACTIONS(6925), 1, + ACTIONS(7026), 1, anon_sym_bitor, - ACTIONS(6927), 1, + ACTIONS(7028), 1, anon_sym_bitand, - ACTIONS(7014), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7016), 1, - anon_sym_QMARK, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6907), 2, + ACTIONS(7010), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6917), 2, + ACTIONS(7020), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6899), 3, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6911), 3, + ACTIONS(7014), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6913), 3, + ACTIONS(7016), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6654), 16, + ACTIONS(6679), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_EQ, @@ -423644,10 +427665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [69980] = 3, + [71543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6403), 25, + ACTIONS(6473), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423673,7 +427694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6405), 28, + ACTIONS(6475), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -423702,32 +427723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [70041] = 11, + [71604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6965), 3, + ACTIONS(6477), 25, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -423737,19 +427741,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6172), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6479), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_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, @@ -423761,62 +427776,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [70118] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6963), 2, + [71665] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2628), 1, + anon_sym_LBRACE, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + STATE(3976), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5943), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6965), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 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(6172), 27, + anon_sym_DOT, + ACTIONS(5945), 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, @@ -423824,7 +427827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -423835,56 +427837,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [70197] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6963), 2, + anon_sym_GT2, + [71732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6377), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6983), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6965), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 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, - ACTIONS(6172), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6379), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_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, @@ -423896,21 +427895,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, - [70278] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [71793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, + ACTIONS(5546), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5544), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - STATE(3782), 1, - sym_attribute_specifier, - ACTIONS(5835), 16, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [71854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6457), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -423925,19 +427976,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5837), 35, + sym_identifier, + ACTIONS(6459), 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_elif_token1, anon_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, @@ -423951,105 +428012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [70343] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6307), 1, - anon_sym_EQ, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(6901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, - anon_sym_AMP_AMP, - ACTIONS(6905), 1, - anon_sym_PIPE, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6915), 1, - anon_sym_GT_EQ, - ACTIONS(6919), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6921), 1, - anon_sym_or, - ACTIONS(6923), 1, - anon_sym_and, - ACTIONS(6925), 1, - anon_sym_bitor, - ACTIONS(6927), 1, - anon_sym_bitand, - ACTIONS(7014), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7016), 1, - anon_sym_QMARK, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6891), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6907), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6917), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6911), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6913), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6309), 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, - [70454] = 3, + [71915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 25, + ACTIONS(6577), 1, + anon_sym___attribute__, + STATE(3744), 1, + sym_attribute_specifier, + ACTIONS(5821), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424064,29 +428038,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(5178), 28, + anon_sym_DASH_GT, + ACTIONS(5823), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -424100,21 +428064,29 @@ 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, - [70515] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [71980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, + ACTIONS(2628), 1, anon_sym_LBRACE, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - STATE(3974), 2, + STATE(3985), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5950), 20, + ACTIONS(5931), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424135,7 +428107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5952), 29, + ACTIONS(5933), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -424165,14 +428137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [70582] = 5, + [72047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6565), 1, - anon_sym_LBRACK, - STATE(3584), 1, - sym_new_declarator, - ACTIONS(6091), 19, + ACTIONS(6273), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424187,22 +428155,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6093), 32, + sym_identifier, + ACTIONS(6275), 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_elif_token1, anon_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, @@ -424214,21 +428190,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_STAR, - [70647] = 3, + anon_sym_DASH_GT, + [72108] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6433), 25, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6197), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424243,30 +428226,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, - sym_identifier, - ACTIONS(6435), 28, + ACTIONS(6199), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, @@ -424278,15 +428249,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, - [70708] = 3, + anon_sym_DASH_GT_STAR, + [72181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 20, + ACTIONS(6277), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424296,26 +428272,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(5663), 33, + sym_identifier, + ACTIONS(6279), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -424324,27 +428308,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [70769] = 3, + [72242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 20, + ACTIONS(5643), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424365,7 +428341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5663), 33, + ACTIONS(5645), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -424399,10 +428375,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [70830] = 3, + [72303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 25, + ACTIONS(6193), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424428,7 +428404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6367), 28, + ACTIONS(6195), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -424457,10 +428433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [70891] = 3, + [72364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 20, + ACTIONS(6222), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424470,26 +428446,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(5693), 33, + sym_identifier, + ACTIONS(6224), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -424498,27 +428482,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [70952] = 3, + [72425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 20, + ACTIONS(5643), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424539,7 +428515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5701), 33, + ACTIONS(5645), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -424573,10 +428549,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [71013] = 3, + [72486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 20, + ACTIONS(6289), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424586,26 +428562,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(5663), 33, + sym_identifier, + ACTIONS(6291), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -424614,27 +428598,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [71074] = 3, + [72547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 20, + ACTIONS(6403), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424644,26 +428620,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(5721), 33, + sym_identifier, + ACTIONS(6405), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -424672,27 +428656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [71135] = 3, + [72608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 20, + ACTIONS(6435), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424702,26 +428678,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(5739), 33, + sym_identifier, + ACTIONS(6437), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -424730,193 +428714,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [71196] = 26, + [72669] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6640), 1, - anon_sym_EQ, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - ACTIONS(6901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, - anon_sym_AMP_AMP, - ACTIONS(6905), 1, - anon_sym_PIPE, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6915), 1, - anon_sym_GT_EQ, - ACTIONS(6919), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6921), 1, - anon_sym_or, - ACTIONS(6923), 1, - anon_sym_and, - ACTIONS(6925), 1, - anon_sym_bitor, - ACTIONS(6927), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6907), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6917), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6911), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6913), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6642), 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, - [71303] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6626), 1, - anon_sym_EQ, - ACTIONS(6967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6969), 1, - anon_sym_AMP_AMP, - ACTIONS(6971), 1, - anon_sym_PIPE, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_GT_EQ, - ACTIONS(6987), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6989), 1, - anon_sym_or, - ACTIONS(6991), 1, - anon_sym_and, - ACTIONS(6993), 1, - anon_sym_bitor, - ACTIONS(6995), 1, - anon_sym_bitand, - STATE(2791), 1, + STATE(3774), 1, sym_argument_list, - STATE(2792), 1, + STATE(3776), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + ACTIONS(6863), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6963), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6973), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6983), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6977), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6979), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6628), 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, - [71410] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6550), 1, - anon_sym___attribute__, - STATE(3807), 1, - sym_attribute_specifier, - ACTIONS(5831), 16, + ACTIONS(6151), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424931,20 +428757,18 @@ 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(5833), 35, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6153), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -424956,23 +428780,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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [71475] = 3, + [72744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6329), 25, + ACTIONS(6293), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -424998,7 +428817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6331), 28, + ACTIONS(6295), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -425027,10 +428846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [71536] = 3, + [72805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6313), 25, + ACTIONS(5647), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425040,34 +428859,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6315), 28, + ACTIONS(5649), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -425076,19 +428887,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [71597] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [72866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6325), 25, + ACTIONS(6393), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425114,7 +428933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6327), 28, + ACTIONS(6395), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -425143,14 +428962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [71658] = 5, + [72927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - anon_sym___attribute__, - STATE(3813), 1, - sym_attribute_specifier, - ACTIONS(5827), 16, + ACTIONS(5651), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425160,23 +428975,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(5829), 35, + ACTIONS(5653), 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, @@ -425186,27 +429003,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [71723] = 3, + anon_sym_GT2, + [72988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 25, + ACTIONS(5643), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425216,34 +429033,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5388), 28, + ACTIONS(5645), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -425252,23 +429061,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [71784] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [73049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6870), 1, - anon_sym_LT, - STATE(1907), 1, - sym_template_argument_list, - ACTIONS(6095), 18, + ACTIONS(6308), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425279,26 +429092,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_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(6097), 33, + sym_identifier, + ACTIONS(6310), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_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, @@ -425310,43 +429131,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, - [71849] = 11, + [73110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6899), 3, + ACTIONS(5171), 25, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -425356,18 +429154,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6172), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5173), 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_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -425379,38 +429189,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_GT_STAR, - [71926] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [73171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5398), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7119), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5396), 40, + ACTIONS(7117), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -425431,24 +429235,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [71987] = 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [73232] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 25, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(5012), 1, + anon_sym_LBRACE, + ACTIONS(5526), 1, + anon_sym_LT, + STATE(3599), 1, + sym_template_argument_list, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425458,34 +429273,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6297), 28, + ACTIONS(5019), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -425494,67 +429299,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [72048] = 14, + anon_sym_GT2, + [73301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6987), 1, - anon_sym_LT_EQ_GT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6963), 2, + ACTIONS(5175), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6983), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6965), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 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, - ACTIONS(6172), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5177), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_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, @@ -425566,16 +429367,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [72131] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [73362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 25, + ACTIONS(5677), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425585,34 +429385,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(4970), 28, + ACTIONS(5679), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_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, @@ -425621,70 +429413,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [72192] = 16, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [73423] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6469), 1, + anon_sym_EQ, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6777), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6981), 1, - anon_sym_GT_EQ, - ACTIONS(6987), 1, + ACTIONS(6823), 1, + anon_sym_QMARK, + ACTIONS(6847), 1, anon_sym_LT_EQ_GT, - STATE(2791), 1, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7004), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7006), 1, + anon_sym_AMP_AMP, + ACTIONS(7008), 1, + anon_sym_PIPE, + ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7018), 1, + anon_sym_GT_EQ, + ACTIONS(7022), 1, + anon_sym_or, + ACTIONS(7024), 1, + anon_sym_and, + ACTIONS(7026), 1, + anon_sym_bitor, + ACTIONS(7028), 1, + anon_sym_bitand, + STATE(3774), 1, sym_argument_list, - STATE(2792), 1, + STATE(3776), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + ACTIONS(6863), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6963), 2, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6983), 2, + ACTIONS(7010), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7020), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6965), 3, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6979), 3, + ACTIONS(7014), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7016), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6172), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(6471), 16, 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_RPAREN, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -425698,29 +429512,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [72279] = 10, + anon_sym_DASH_GT_STAR, + [73534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6170), 17, + ACTIONS(5685), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425730,23 +429526,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(6172), 27, + anon_sym_DOT, + ACTIONS(5687), 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, @@ -425754,7 +429554,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -425765,49 +429564,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [72354] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [73595] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 25, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7018), 1, + anon_sym_GT_EQ, + ACTIONS(7028), 1, + anon_sym_bitand, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7010), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7020), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7014), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7016), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6151), 4, + 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, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(4970), 28, + ACTIONS(6153), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, @@ -425819,15 +429641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [72415] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_DASH_GT_STAR, + [73690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 25, + ACTIONS(5171), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425853,7 +429675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4970), 28, + ACTIONS(5173), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -425882,48 +429704,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [72476] = 3, + [73751] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 25, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7018), 1, + anon_sym_GT_EQ, + ACTIONS(7028), 1, + anon_sym_bitand, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7020), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7014), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7016), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6151), 6, + 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_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6212), 28, + ACTIONS(6153), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, @@ -425935,15 +429773,158 @@ 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, - [72537] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_DASH_GT_STAR, + [73844] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 25, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(6106), 1, + anon_sym_LBRACK, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_AMP, + STATE(4295), 1, + sym_parameter_list, + STATE(6348), 1, + sym__scope_resolution, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6893), 1, + sym__declarator, + STATE(7181), 1, + sym__abstract_declarator, + STATE(8593), 1, + sym_ms_based_modifier, + ACTIONS(6913), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [73949] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + STATE(4124), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5593), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7121), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5595), 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_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [74020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6423), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -425969,7 +429950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6224), 28, + ACTIONS(6425), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -425998,10 +429979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [72598] = 3, + [74081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 25, + ACTIONS(6427), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426027,7 +430008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4970), 28, + ACTIONS(6429), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -426056,10 +430037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [72659] = 3, + [74142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 25, + ACTIONS(5171), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426085,7 +430066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4970), 28, + ACTIONS(5173), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -426114,10 +430095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [72720] = 3, + [74203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6264), 25, + ACTIONS(6320), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426143,7 +430124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6266), 28, + ACTIONS(6322), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -426172,75 +430153,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [72781] = 28, + [74264] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6630), 1, - anon_sym_EQ, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - ACTIONS(6901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, - anon_sym_AMP_AMP, - ACTIONS(6905), 1, - anon_sym_PIPE, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6915), 1, + ACTIONS(7018), 1, anon_sym_GT_EQ, - ACTIONS(6919), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6921), 1, - anon_sym_or, - ACTIONS(6923), 1, - anon_sym_and, - ACTIONS(6925), 1, - anon_sym_bitor, - ACTIONS(6927), 1, - anon_sym_bitand, - ACTIONS(7014), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7016), 1, - anon_sym_QMARK, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6907), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6917), 2, + ACTIONS(7020), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6899), 3, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6911), 3, + ACTIONS(7014), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6913), 3, + ACTIONS(7016), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6634), 16, + ACTIONS(6151), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6153), 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, @@ -426254,11 +430222,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, anon_sym_DASH_GT_STAR, - [72892] = 3, + [74353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 25, + ACTIONS(5416), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426284,7 +430254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4970), 28, + ACTIONS(5414), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -426313,10 +430283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [72953] = 3, + [74414] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6279), 25, + ACTIONS(6577), 1, + anon_sym___attribute__, + STATE(3904), 1, + sym_attribute_specifier, + ACTIONS(5853), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426331,29 +430305,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(6281), 28, + anon_sym_DASH_GT, + ACTIONS(5855), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -426367,14 +430331,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [73014] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [74479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 25, + ACTIONS(6304), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426400,7 +430372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6270), 28, + ACTIONS(6306), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -426429,10 +430401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [73075] = 3, + [74540] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6299), 25, + ACTIONS(7123), 1, + anon_sym_AMP_AMP, + ACTIONS(7125), 1, + anon_sym_and, + ACTIONS(6233), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426451,14 +430427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6301), 28, + ACTIONS(6235), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -426466,7 +430441,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -426487,89 +430461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [73136] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(6903), 1, - anon_sym_AMP_AMP, - ACTIONS(6905), 1, - anon_sym_PIPE, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6915), 1, - anon_sym_GT_EQ, - ACTIONS(6919), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6923), 1, - anon_sym_and, - ACTIONS(6925), 1, - anon_sym_bitor, - ACTIONS(6927), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6170), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6907), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6917), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6911), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6913), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [73239] = 3, + [74605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 20, + ACTIONS(5807), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426590,7 +430485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5564), 33, + ACTIONS(5809), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -426624,92 +430519,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [73300] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5312), 1, - anon_sym_virtual, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(7018), 7, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(5302), 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(3424), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7020), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5300), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [73377] = 10, + [74666] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6214), 17, + ACTIONS(7110), 1, + anon_sym_LT, + STATE(1941), 1, + sym_template_argument_list, + ACTIONS(6201), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426720,22 +430537,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6216), 27, + anon_sym_DOT, + ACTIONS(6203), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -426754,11 +430575,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [73452] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [74731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6184), 25, + ACTIONS(6577), 1, + anon_sym___attribute__, + STATE(3897), 1, + sym_attribute_specifier, + ACTIONS(5864), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -426773,29 +430601,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(6186), 28, + anon_sym_DASH_GT, + ACTIONS(5866), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, @@ -426809,72 +430627,64 @@ 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, - [73513] = 22, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [74796] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - ACTIONS(6905), 1, - anon_sym_PIPE, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6915), 1, - anon_sym_GT_EQ, - ACTIONS(6919), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6925), 1, - anon_sym_bitor, - ACTIONS(6927), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6241), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6907), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6917), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6170), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6911), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6913), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6243), 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, @@ -426889,66 +430699,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, - [73612] = 20, + [74871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6915), 1, - anon_sym_GT_EQ, - ACTIONS(6919), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6927), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + ACTIONS(5228), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6907), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6917), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6911), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6913), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 4, - 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, - ACTIONS(6172), 21, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5230), 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_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -426960,69 +430757,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - [73707] = 19, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [74932] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6915), 1, - anon_sym_GT_EQ, - ACTIONS(6919), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6927), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6229), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6917), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6911), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6913), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 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(6172), 21, + ACTIONS(6231), 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, @@ -427037,12 +430822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [73800] = 3, + [75007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5745), 20, + ACTIONS(6334), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427052,26 +430840,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(5747), 33, + sym_identifier, + ACTIONS(6336), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -427080,27 +430876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [73861] = 3, + [75068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5741), 20, + ACTIONS(5014), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427110,26 +430898,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(5743), 33, + sym_identifier, + ACTIONS(5019), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -427138,27 +430934,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [73922] = 3, + [75129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 25, + ACTIONS(6161), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427184,7 +430972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6450), 28, + ACTIONS(6163), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -427213,61 +431001,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [73983] = 17, + [75190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(6915), 1, - anon_sym_GT_EQ, - ACTIONS(6919), 1, - anon_sym_LT_EQ_GT, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + ACTIONS(6285), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6917), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6911), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6913), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6172), 22, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6287), 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_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -427279,65 +431054,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_bitor, - anon_sym_bitand, - anon_sym_DASH_GT_STAR, - [74072] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(6915), 1, - anon_sym_GT_EQ, - ACTIONS(6919), 1, anon_sym_LT_EQ_GT, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [75251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5635), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6917), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6913), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 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(6172), 25, + anon_sym_DOT, + ACTIONS(5637), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -427345,68 +431100,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_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, - [74159] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(6919), 1, - anon_sym_LT_EQ_GT, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [75312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6917), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 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, - ACTIONS(6172), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5019), 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_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -427418,17 +431170,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [74242] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [75373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 20, + ACTIONS(5014), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427438,26 +431188,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(5709), 33, + sym_identifier, + ACTIONS(5019), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -427466,50 +431224,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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [74303] = 12, + [75434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + ACTIONS(5014), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -427519,18 +431251,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(6172), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5019), 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_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -427542,18 +431286,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_GT_STAR, - [74382] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [75495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6429), 25, + ACTIONS(6344), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427579,7 +431320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6431), 28, + ACTIONS(6346), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -427608,45 +431349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [74443] = 5, + [75556] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5345), 4, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(5347), 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(4139), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(7123), 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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(4147), 21, + ACTIONS(7125), 1, + anon_sym_and, + ACTIONS(7127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7129), 1, + anon_sym_or, + ACTIONS(6165), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427660,18 +431374,47 @@ 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_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - [74508] = 3, + ACTIONS(6167), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [75625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 20, + ACTIONS(5014), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427681,26 +431424,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(5537), 33, + sym_identifier, + ACTIONS(5019), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -427709,89 +431460,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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [74569] = 26, + [75686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6626), 1, - anon_sym_EQ, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(6901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6903), 1, - anon_sym_AMP_AMP, - ACTIONS(6905), 1, - anon_sym_PIPE, - ACTIONS(6909), 1, - anon_sym_AMP, - ACTIONS(6915), 1, - anon_sym_GT_EQ, - ACTIONS(6919), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6921), 1, - anon_sym_or, - ACTIONS(6923), 1, - anon_sym_and, - ACTIONS(6925), 1, - anon_sym_bitor, - ACTIONS(6927), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + ACTIONS(5179), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6907), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6917), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6911), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6913), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6628), 18, + 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(5181), 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_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -427803,14 +431522,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_DASH_GT_STAR, - [74676] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [75747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 20, + ACTIONS(5418), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -427831,7 +431551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5697), 33, + ACTIONS(5420), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -427865,55 +431585,40 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [74737] = 13, + [75808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6897), 2, + ACTIONS(5803), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6917), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 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(6172), 27, + anon_sym_DOT, + ACTIONS(5805), 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, @@ -427921,7 +431626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -427932,49 +431636,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [74818] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [75869] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - STATE(3976), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5566), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(7022), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5568), 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_extern, + ACTIONS(5336), 1, anon_sym___attribute__, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(5344), 1, + anon_sym_virtual, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7131), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(5334), 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(3445), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7133), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5332), 12, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -427985,168 +431709,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [74889] = 26, + [75946] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6607), 1, - anon_sym_EQ, - ACTIONS(6967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6969), 1, - anon_sym_AMP_AMP, - ACTIONS(6971), 1, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7008), 1, anon_sym_PIPE, - ACTIONS(6975), 1, + ACTIONS(7012), 1, anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7018), 1, anon_sym_GT_EQ, - ACTIONS(6987), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6989), 1, - anon_sym_or, - ACTIONS(6991), 1, - anon_sym_and, - ACTIONS(6993), 1, + ACTIONS(7026), 1, anon_sym_bitor, - ACTIONS(6995), 1, + ACTIONS(7028), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(3774), 1, sym_argument_list, - STATE(2792), 1, + STATE(3776), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + ACTIONS(6863), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6963), 2, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6973), 2, + ACTIONS(7010), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6983), 2, + ACTIONS(7020), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6965), 3, + ACTIONS(6151), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6977), 3, + ACTIONS(7014), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6979), 3, + ACTIONS(7016), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6609), 18, + ACTIONS(6153), 20, 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, - [74996] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6307), 1, - anon_sym_EQ, - ACTIONS(6632), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6967), 1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6969), 1, anon_sym_AMP_AMP, - ACTIONS(6971), 1, - anon_sym_PIPE, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_GT_EQ, - ACTIONS(6985), 1, anon_sym_QMARK, - ACTIONS(6987), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6989), 1, - anon_sym_or, - ACTIONS(6991), 1, - anon_sym_and, - ACTIONS(6993), 1, - anon_sym_bitor, - ACTIONS(6995), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6963), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6973), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6983), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6977), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6979), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6309), 16, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -428160,10 +431785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [75107] = 3, + anon_sym_DASH_GT_STAR, + [76045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 25, + ACTIONS(6181), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -428189,7 +431815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6454), 28, + ACTIONS(6183), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -428218,63 +431844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75168] = 17, + [76106] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6981), 1, - anon_sym_GT_EQ, - ACTIONS(6987), 1, - anon_sym_LT_EQ_GT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6963), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6983), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6977), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6979), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5377), 4, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6172), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(5379), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -428285,94 +431863,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_bitor, - anon_sym_bitand, - [75257] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, + ACTIONS(4137), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(6987), 1, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(6995), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6963), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6983), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6977), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6979), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6172), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_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, - [75350] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6808), 1, - anon_sym_LBRACK_LBRACK, - STATE(3353), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5954), 21, + ACTIONS(4145), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -428382,56 +431892,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(5956), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_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, - [75415] = 5, + anon_sym_DOT, + sym_identifier, + [76171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - anon_sym___attribute__, - STATE(3911), 1, - sym_attribute_specifier, - ACTIONS(5821), 16, + ACTIONS(6465), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -428446,19 +431922,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5823), 35, + sym_identifier, + ACTIONS(6467), 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_elif_token1, anon_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, @@ -428472,83 +431958,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [75480] = 24, + anon_sym_DASH_GT, + [76232] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6969), 1, - anon_sym_AMP_AMP, - ACTIONS(6971), 1, - anon_sym_PIPE, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_GT_EQ, - ACTIONS(6987), 1, + ACTIONS(6847), 1, anon_sym_LT_EQ_GT, - ACTIONS(6991), 1, - anon_sym_and, - ACTIONS(6993), 1, - anon_sym_bitor, - ACTIONS(6995), 1, - anon_sym_bitand, - STATE(2791), 1, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7018), 1, + anon_sym_GT_EQ, + STATE(3774), 1, sym_argument_list, - STATE(2792), 1, + STATE(3776), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + ACTIONS(6863), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6170), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(6963), 2, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6973), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6983), 2, + ACTIONS(7020), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6965), 3, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6977), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6979), 3, + ACTIONS(7016), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 19, + ACTIONS(6151), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6153), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -428563,44 +432029,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [75583] = 10, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [76319] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6891), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6190), 17, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6992), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7020), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6994), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 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(6192), 27, + ACTIONS(6153), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -428623,74 +432098,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [75658] = 22, + [76402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6971), 1, - anon_sym_PIPE, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_GT_EQ, - ACTIONS(6987), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6993), 1, - anon_sym_bitor, - ACTIONS(6995), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6963), 2, + ACTIONS(6415), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6973), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(6983), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6170), 3, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, - ACTIONS(6965), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6977), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(6979), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 20, + anon_sym_DOT, + sym_identifier, + ACTIONS(6417), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, @@ -428702,69 +432155,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, - [75757] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_GT_EQ, - ACTIONS(6987), 1, anon_sym_LT_EQ_GT, - ACTIONS(6995), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6131), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6963), 2, + [76463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6481), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6973), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6983), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6965), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6977), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6979), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 4, - 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, - ACTIONS(6172), 21, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6483), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, @@ -428776,78 +432213,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - [75852] = 5, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [76524] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - anon_sym___attribute__, - STATE(3887), 1, - sym_attribute_specifier, - ACTIONS(5817), 16, + ACTIONS(7135), 1, + sym_identifier, + STATE(3417), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3846), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3854), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5236), 16, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5819), 35, + sym_literal_suffix, + ACTIONS(5234), 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_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [75917] = 5, + anon_sym_DASH_GT, + [76593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 1, - anon_sym_LBRACK, - STATE(3905), 1, - sym_new_declarator, - ACTIONS(6091), 20, + ACTIONS(5724), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -428868,7 +432304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6093), 30, + ACTIONS(5726), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -428877,6 +432313,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, @@ -428898,17 +432335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [75981] = 6, + [76654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5526), 1, - anon_sym_LPAREN2, - ACTIONS(5532), 1, - anon_sym_LBRACK, - ACTIONS(4147), 18, + ACTIONS(5698), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -428918,25 +432351,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(4139), 31, + ACTIONS(5700), 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_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -428944,7 +432379,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -428959,95 +432393,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76047] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7024), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7032), 1, - anon_sym_AMP_AMP, - ACTIONS(7034), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_QMARK, - ACTIONS(7050), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7052), 1, - anon_sym_or, - ACTIONS(7054), 1, - anon_sym_and, - ACTIONS(7056), 1, - anon_sym_bitor, - ACTIONS(7058), 1, - anon_sym_bitand, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(6652), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7026), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7036), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7044), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7028), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7040), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7042), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6654), 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, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [76155] = 5, + [76715] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7066), 1, + ACTIONS(7064), 1, anon_sym_LT, - STATE(2106), 1, + STATE(2039), 1, sym_template_argument_list, - ACTIONS(6095), 18, + ACTIONS(6201), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429060,13 +432416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6097), 32, + ACTIONS(6203), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -429076,7 +432433,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, @@ -429099,16 +432456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76219] = 6, + [76780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6752), 1, - sym_auto, - ACTIONS(6754), 1, - anon_sym_decltype, - STATE(3934), 1, - sym_decltype_auto, - ACTIONS(5436), 16, + ACTIONS(5673), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429118,23 +432469,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(5438), 33, + ACTIONS(5675), 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, @@ -429144,27 +432497,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [76285] = 4, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [76841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7069), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6184), 20, + ACTIONS(5669), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429174,27 +432527,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(6186), 31, + ACTIONS(5671), 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, @@ -429202,7 +432555,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -429216,27 +432568,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, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [76902] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6673), 1, + anon_sym_EQ, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6847), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7004), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7006), 1, + anon_sym_AMP_AMP, + ACTIONS(7008), 1, + anon_sym_PIPE, + ACTIONS(7012), 1, + anon_sym_AMP, + ACTIONS(7018), 1, + anon_sym_GT_EQ, + ACTIONS(7022), 1, + anon_sym_or, + ACTIONS(7024), 1, + anon_sym_and, + ACTIONS(7026), 1, + anon_sym_bitor, + ACTIONS(7028), 1, + anon_sym_bitand, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6861), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6992), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7010), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7020), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6994), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7014), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7016), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6675), 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, - [76347] = 10, + [77009] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7060), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6214), 19, + ACTIONS(6131), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429256,7 +432692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6216), 24, + ACTIONS(6133), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -429281,16 +432717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [76421] = 6, + [77083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5526), 1, - anon_sym_LPAREN2, - ACTIONS(5532), 1, - anon_sym_LBRACK, - ACTIONS(4147), 18, + ACTIONS(4014), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429304,21 +432734,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(4139), 31, + anon_sym_DASH_GT, + ACTIONS(4016), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -429340,11 +432773,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, - [76487] = 3, + anon_sym_DASH_GT_STAR, + [77143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 13, + ACTIONS(5691), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -429358,7 +432791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5661), 39, + ACTIONS(5689), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -429398,12 +432831,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [76547] = 4, + [77203] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5535), 16, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6177), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429413,14 +432860,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_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(6179), 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, + [77277] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7064), 1, + anon_sym_LT, + STATE(1935), 1, + sym_template_argument_list, + ACTIONS(6201), 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(5537), 35, + ACTIONS(6203), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -429430,7 +432931,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, @@ -429443,23 +432943,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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [76609] = 3, + [77341] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + ACTIONS(4407), 1, + anon_sym_STAR, + ACTIONS(4409), 1, + anon_sym_AMP_AMP, + ACTIONS(4411), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6106), 1, + anon_sym_LBRACK, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + ACTIONS(6913), 1, + anon_sym_RPAREN, + STATE(4175), 1, + sym_parameter_list, + STATE(6297), 1, + sym__scope_resolution, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6956), 1, + sym__declarator, + STATE(7160), 1, + sym__abstract_declarator, + STATE(9234), 1, + sym_ms_based_modifier, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [77445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 13, + ACTIONS(5616), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -429473,7 +433050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5535), 39, + ACTIONS(5614), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -429513,24 +433090,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [76669] = 3, + [77505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5615), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(5562), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT2, - ACTIONS(5613), 39, + ACTIONS(5560), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -429557,6 +433133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, sym_identifier, @@ -429566,14 +433144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [76729] = 3, + [77565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 13, + ACTIONS(5624), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -429587,7 +433164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5617), 39, + ACTIONS(5622), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -429627,10 +433204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [76789] = 3, + [77625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 20, + ACTIONS(5014), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429651,7 +433228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5964), 32, + ACTIONS(5019), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -429684,21 +433261,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76849] = 7, + [77685] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5056), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5532), 1, - anon_sym_LBRACK, - ACTIONS(5526), 2, - anon_sym_RPAREN, + ACTIONS(5515), 1, anon_sym_LPAREN2, - ACTIONS(5030), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4147), 19, + ACTIONS(5521), 1, + anon_sym_LBRACK, + ACTIONS(4145), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429717,8 +433289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4139), 26, + ACTIONS(4137), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -429726,6 +433297,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_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -429737,6 +433310,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -429744,70 +433320,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, - [76917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7073), 25, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(7071), 27, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_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, - [76977] = 4, + anon_sym_DASH_GT, + [77751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 1, - sym_literal_suffix, - ACTIONS(4147), 25, + ACTIONS(6257), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429821,29 +433338,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_and_eq, - anon_sym_or_eq, - anon_sym_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(4139), 26, + anon_sym_DASH_GT, + ACTIONS(6259), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -429855,15 +433367,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, - [77039] = 3, + anon_sym_DASH_GT_STAR, + [77811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5623), 13, + ACTIONS(5740), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -429877,7 +433395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5621), 39, + ACTIONS(5738), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -429917,10 +433435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [77099] = 3, + [77871] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5981), 20, + ACTIONS(5056), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5515), 1, + anon_sym_LPAREN2, + ACTIONS(5521), 1, + anon_sym_LBRACK, + ACTIONS(4145), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429934,24 +433458,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(5983), 32, + ACTIONS(4137), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -429973,11 +433494,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, - [77159] = 3, + anon_sym_DASH_GT, + [77937] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5985), 20, + ACTIONS(4169), 1, + anon_sym_EQ, + ACTIONS(4173), 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(4145), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -429991,14 +433528,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(5987), 32, + ACTIONS(4137), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -430008,33 +433542,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [78001] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7145), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7147), 1, + anon_sym_COMMA, + ACTIONS(7149), 1, + anon_sym_RPAREN, + ACTIONS(7151), 1, + anon_sym_DASH, + ACTIONS(7153), 1, + anon_sym_PLUS, + ACTIONS(7155), 1, + anon_sym_STAR, + ACTIONS(7157), 1, + anon_sym_SLASH, + ACTIONS(7159), 1, + anon_sym_PERCENT, + ACTIONS(7161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7163), 1, + anon_sym_AMP_AMP, + ACTIONS(7165), 1, + anon_sym_PIPE, + ACTIONS(7167), 1, + anon_sym_CARET, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7171), 1, + anon_sym_EQ_EQ, + ACTIONS(7173), 1, + anon_sym_BANG_EQ, + ACTIONS(7175), 1, + anon_sym_GT, + ACTIONS(7177), 1, + anon_sym_GT_EQ, + ACTIONS(7179), 1, + anon_sym_LT_EQ, + ACTIONS(7181), 1, + anon_sym_LT, + ACTIONS(7183), 1, + anon_sym_LT_LT, + ACTIONS(7185), 1, + anon_sym_GT_GT, + ACTIONS(7187), 1, + anon_sym_EQ, + ACTIONS(7189), 1, anon_sym_QMARK, + ACTIONS(7191), 1, anon_sym_STAR_EQ, + ACTIONS(7193), 1, anon_sym_SLASH_EQ, + ACTIONS(7195), 1, anon_sym_PERCENT_EQ, + ACTIONS(7197), 1, anon_sym_PLUS_EQ, + ACTIONS(7199), 1, anon_sym_DASH_EQ, + ACTIONS(7201), 1, anon_sym_LT_LT_EQ, + ACTIONS(7203), 1, anon_sym_GT_GT_EQ, + ACTIONS(7205), 1, anon_sym_AMP_EQ, + ACTIONS(7207), 1, anon_sym_CARET_EQ, + ACTIONS(7209), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, + ACTIONS(7213), 1, + anon_sym_or, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7217), 1, anon_sym_bitor, + ACTIONS(7219), 1, + anon_sym_xor, + ACTIONS(7221), 1, anon_sym_bitand, + ACTIONS(7223), 1, anon_sym_not_eq, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [77219] = 3, + [78157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 13, + ACTIONS(5683), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -430048,7 +433676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5729), 39, + ACTIONS(5681), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -430088,143 +433716,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [77279] = 51, + [78217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7077), 1, - anon_sym_COMMA, - ACTIONS(7079), 1, - anon_sym_RPAREN, - ACTIONS(7081), 1, + ACTIONS(5046), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5048), 20, anon_sym_DASH, - ACTIONS(7083), 1, anon_sym_PLUS, - ACTIONS(7085), 1, anon_sym_STAR, - ACTIONS(7087), 1, anon_sym_SLASH, - ACTIONS(7089), 1, anon_sym_PERCENT, - ACTIONS(7091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, - anon_sym_AMP_AMP, - ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(7097), 1, anon_sym_CARET, - ACTIONS(7099), 1, anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_EQ_EQ, - ACTIONS(7103), 1, - anon_sym_BANG_EQ, - ACTIONS(7105), 1, anon_sym_GT, - ACTIONS(7107), 1, anon_sym_GT_EQ, - ACTIONS(7109), 1, anon_sym_LT_EQ, - ACTIONS(7111), 1, anon_sym_LT, - ACTIONS(7113), 1, anon_sym_LT_LT, - ACTIONS(7115), 1, anon_sym_GT_GT, - ACTIONS(7117), 1, anon_sym_EQ, - ACTIONS(7119), 1, - anon_sym_QMARK, - ACTIONS(7121), 1, - anon_sym_STAR_EQ, - ACTIONS(7123), 1, - anon_sym_SLASH_EQ, - ACTIONS(7125), 1, - anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, - anon_sym_PLUS_EQ, - ACTIONS(7129), 1, - anon_sym_DASH_EQ, - ACTIONS(7131), 1, - anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, - anon_sym_AMP_EQ, - ACTIONS(7137), 1, - anon_sym_CARET_EQ, - ACTIONS(7139), 1, - anon_sym_PIPE_EQ, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, anon_sym_or, - ACTIONS(7145), 1, anon_sym_and, - ACTIONS(7147), 1, - anon_sym_bitor, - ACTIONS(7149), 1, anon_sym_xor, - ACTIONS(7151), 1, - anon_sym_bitand, - ACTIONS(7153), 1, - anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [77435] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5759), 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(5761), 36, + ACTIONS(5041), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -430233,27 +433759,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [77495] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [78279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 13, + ACTIONS(5645), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -430267,7 +433791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5703), 39, + ACTIONS(5643), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -430307,10 +433831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [77555] = 3, + [78339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5686), 13, + ACTIONS(5645), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -430324,7 +433848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5684), 39, + ACTIONS(5643), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -430364,36 +433888,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [77615] = 7, + [78399] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_const, - ACTIONS(5023), 1, - anon_sym_AMP, - ACTIONS(5016), 7, - anon_sym_DOT_DOT_DOT, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5278), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6589), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5766), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - ACTIONS(5021), 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(5019), 15, + ACTIONS(5769), 35, + anon_sym_AMP, anon_sym___extension__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_extern, + 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, @@ -430404,88 +433938,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, - ACTIONS(5014), 18, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [77683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4020), 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(4022), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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, - [77743] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [78465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 13, + ACTIONS(5709), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -430499,7 +433965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5751), 39, + ACTIONS(5707), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -430539,255 +434005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [77803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 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(5717), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [77863] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7077), 1, - anon_sym_COMMA, - ACTIONS(7081), 1, - anon_sym_DASH, - ACTIONS(7083), 1, - anon_sym_PLUS, - ACTIONS(7085), 1, - anon_sym_STAR, - ACTIONS(7087), 1, - anon_sym_SLASH, - ACTIONS(7089), 1, - anon_sym_PERCENT, - ACTIONS(7091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, - anon_sym_AMP_AMP, - ACTIONS(7095), 1, - anon_sym_PIPE, - ACTIONS(7097), 1, - anon_sym_CARET, - ACTIONS(7099), 1, - anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_EQ_EQ, - ACTIONS(7103), 1, - anon_sym_BANG_EQ, - ACTIONS(7105), 1, - anon_sym_GT, - ACTIONS(7107), 1, - anon_sym_GT_EQ, - ACTIONS(7109), 1, - anon_sym_LT_EQ, - ACTIONS(7111), 1, - anon_sym_LT, - ACTIONS(7113), 1, - anon_sym_LT_LT, - ACTIONS(7115), 1, - anon_sym_GT_GT, - ACTIONS(7117), 1, - anon_sym_EQ, - ACTIONS(7119), 1, - anon_sym_QMARK, - ACTIONS(7121), 1, - anon_sym_STAR_EQ, - ACTIONS(7123), 1, - anon_sym_SLASH_EQ, - ACTIONS(7125), 1, - anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, - anon_sym_PLUS_EQ, - ACTIONS(7129), 1, - anon_sym_DASH_EQ, - ACTIONS(7131), 1, - anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, - anon_sym_AMP_EQ, - ACTIONS(7137), 1, - anon_sym_CARET_EQ, - ACTIONS(7139), 1, - anon_sym_PIPE_EQ, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, - anon_sym_or, - ACTIONS(7145), 1, - anon_sym_and, - ACTIONS(7147), 1, - anon_sym_bitor, - ACTIONS(7149), 1, - anon_sym_xor, - ACTIONS(7151), 1, - anon_sym_bitand, - ACTIONS(7153), 1, - anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7161), 1, - anon_sym_RPAREN, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [78019] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, - anon_sym_LPAREN2, - ACTIONS(4409), 1, - anon_sym_STAR, - ACTIONS(4411), 1, - anon_sym_AMP_AMP, - ACTIONS(4413), 1, - anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - ACTIONS(6740), 1, - anon_sym_RPAREN, - STATE(4159), 1, - sym_parameter_list, - STATE(6228), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6922), 1, - sym__declarator, - STATE(7148), 1, - sym__abstract_declarator, - STATE(9206), 1, - sym_ms_based_modifier, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [78123] = 5, + [78525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6870), 1, + ACTIONS(7110), 1, anon_sym_LT, - STATE(1898), 1, + STATE(1933), 1, sym_template_argument_list, - ACTIONS(6095), 17, + ACTIONS(6201), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -430805,7 +434030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6097), 33, + ACTIONS(6203), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -430839,756 +434064,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [78187] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6009), 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(6011), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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, - [78247] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7032), 1, - anon_sym_AMP_AMP, - ACTIONS(7034), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7050), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7052), 1, - anon_sym_or, - ACTIONS(7054), 1, - anon_sym_and, - ACTIONS(7056), 1, - anon_sym_bitor, - ACTIONS(7058), 1, - anon_sym_bitand, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(6640), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7026), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7036), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7044), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7028), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7040), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7042), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6642), 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, - [78351] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7077), 1, - anon_sym_COMMA, - ACTIONS(7081), 1, - anon_sym_DASH, - ACTIONS(7083), 1, - anon_sym_PLUS, - ACTIONS(7085), 1, - anon_sym_STAR, - ACTIONS(7087), 1, - anon_sym_SLASH, - ACTIONS(7089), 1, - anon_sym_PERCENT, - ACTIONS(7091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, - anon_sym_AMP_AMP, - ACTIONS(7095), 1, - anon_sym_PIPE, - ACTIONS(7097), 1, - anon_sym_CARET, - ACTIONS(7099), 1, - anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_EQ_EQ, - ACTIONS(7103), 1, - anon_sym_BANG_EQ, - ACTIONS(7105), 1, - anon_sym_GT, - ACTIONS(7107), 1, - anon_sym_GT_EQ, - ACTIONS(7109), 1, - anon_sym_LT_EQ, - ACTIONS(7111), 1, - anon_sym_LT, - ACTIONS(7113), 1, - anon_sym_LT_LT, - ACTIONS(7115), 1, - anon_sym_GT_GT, - ACTIONS(7117), 1, - anon_sym_EQ, - ACTIONS(7119), 1, - anon_sym_QMARK, - ACTIONS(7121), 1, - anon_sym_STAR_EQ, - ACTIONS(7123), 1, - anon_sym_SLASH_EQ, - ACTIONS(7125), 1, - anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, - anon_sym_PLUS_EQ, - ACTIONS(7129), 1, - anon_sym_DASH_EQ, - ACTIONS(7131), 1, - anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, - anon_sym_AMP_EQ, - ACTIONS(7137), 1, - anon_sym_CARET_EQ, - ACTIONS(7139), 1, - anon_sym_PIPE_EQ, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, - anon_sym_or, - ACTIONS(7145), 1, - anon_sym_and, - ACTIONS(7147), 1, - anon_sym_bitor, - ACTIONS(7149), 1, - anon_sym_xor, - ACTIONS(7151), 1, - anon_sym_bitand, - ACTIONS(7153), 1, - anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7163), 1, - anon_sym_RPAREN, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [78507] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6005), 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(6007), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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, - [78567] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7077), 1, - anon_sym_COMMA, - ACTIONS(7081), 1, - anon_sym_DASH, - ACTIONS(7083), 1, - anon_sym_PLUS, - ACTIONS(7085), 1, - anon_sym_STAR, - ACTIONS(7087), 1, - anon_sym_SLASH, - ACTIONS(7089), 1, - anon_sym_PERCENT, - ACTIONS(7091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, - anon_sym_AMP_AMP, - ACTIONS(7095), 1, - anon_sym_PIPE, - ACTIONS(7097), 1, - anon_sym_CARET, - ACTIONS(7099), 1, - anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_EQ_EQ, - ACTIONS(7103), 1, - anon_sym_BANG_EQ, - ACTIONS(7105), 1, - anon_sym_GT, - ACTIONS(7107), 1, - anon_sym_GT_EQ, - ACTIONS(7109), 1, - anon_sym_LT_EQ, - ACTIONS(7111), 1, - anon_sym_LT, - ACTIONS(7113), 1, - anon_sym_LT_LT, - ACTIONS(7115), 1, - anon_sym_GT_GT, - ACTIONS(7117), 1, - anon_sym_EQ, - ACTIONS(7119), 1, - anon_sym_QMARK, - ACTIONS(7121), 1, - anon_sym_STAR_EQ, - ACTIONS(7123), 1, - anon_sym_SLASH_EQ, - ACTIONS(7125), 1, - anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, - anon_sym_PLUS_EQ, - ACTIONS(7129), 1, - anon_sym_DASH_EQ, - ACTIONS(7131), 1, - anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, - anon_sym_AMP_EQ, - ACTIONS(7137), 1, - anon_sym_CARET_EQ, - ACTIONS(7139), 1, - anon_sym_PIPE_EQ, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, - anon_sym_or, - ACTIONS(7145), 1, - anon_sym_and, - ACTIONS(7147), 1, - anon_sym_bitor, - ACTIONS(7149), 1, - anon_sym_xor, - ACTIONS(7151), 1, - anon_sym_bitand, - ACTIONS(7153), 1, - anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7165), 1, - anon_sym_RPAREN, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [78723] = 3, + [78589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 19, + ACTIONS(5416), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(6220), 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, - [78783] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - STATE(1935), 1, - sym_template_argument_list, - STATE(4083), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7167), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5566), 20, - 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___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5568), 25, + ACTIONS(5414), 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_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, - [78851] = 3, + [78649] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5757), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5354), 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_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5755), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6135), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [78911] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7024), 1, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6616), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7030), 1, + ACTIONS(6729), 1, anon_sym_PIPE_PIPE, - ACTIONS(7032), 1, + ACTIONS(6731), 1, anon_sym_AMP_AMP, - ACTIONS(7034), 1, + ACTIONS(6733), 1, anon_sym_PIPE, - ACTIONS(7038), 1, + ACTIONS(6737), 1, anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, + ACTIONS(6743), 1, + anon_sym_GT_EQ, + ACTIONS(6747), 1, anon_sym_QMARK, - ACTIONS(7050), 1, + ACTIONS(6749), 1, anon_sym_LT_EQ_GT, - ACTIONS(7052), 1, + ACTIONS(6751), 1, anon_sym_or, - ACTIONS(7054), 1, + ACTIONS(6753), 1, anon_sym_and, - ACTIONS(7056), 1, + ACTIONS(6755), 1, anon_sym_bitor, - ACTIONS(7058), 1, + ACTIONS(6757), 1, anon_sym_bitand, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, + ACTIONS(6929), 1, + anon_sym_RPAREN, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(7229), 1, + anon_sym_EQ, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6630), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7026), 2, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6725), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7036), 2, + ACTIONS(6735), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7044), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7028), 3, + ACTIONS(6727), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7040), 3, + ACTIONS(6739), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7042), 4, + ACTIONS(6741), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6634), 14, - anon_sym_COMMA, + ACTIONS(6845), 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, - anon_sym_GT2, - [79019] = 3, + [78763] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 20, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7145), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7147), 1, + anon_sym_COMMA, + ACTIONS(7151), 1, anon_sym_DASH, + ACTIONS(7153), 1, anon_sym_PLUS, + ACTIONS(7155), 1, anon_sym_STAR, + ACTIONS(7157), 1, anon_sym_SLASH, + ACTIONS(7159), 1, anon_sym_PERCENT, + ACTIONS(7161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7163), 1, + anon_sym_AMP_AMP, + ACTIONS(7165), 1, anon_sym_PIPE, + ACTIONS(7167), 1, anon_sym_CARET, + ACTIONS(7169), 1, anon_sym_AMP, + ACTIONS(7171), 1, + anon_sym_EQ_EQ, + ACTIONS(7173), 1, + anon_sym_BANG_EQ, + ACTIONS(7175), 1, anon_sym_GT, + ACTIONS(7177), 1, + anon_sym_GT_EQ, + ACTIONS(7179), 1, anon_sym_LT_EQ, + ACTIONS(7181), 1, anon_sym_LT, + ACTIONS(7183), 1, anon_sym_LT_LT, + ACTIONS(7185), 1, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(7187), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4970), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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(7189), 1, anon_sym_QMARK, + ACTIONS(7191), 1, anon_sym_STAR_EQ, + ACTIONS(7193), 1, anon_sym_SLASH_EQ, + ACTIONS(7195), 1, anon_sym_PERCENT_EQ, + ACTIONS(7197), 1, anon_sym_PLUS_EQ, + ACTIONS(7199), 1, anon_sym_DASH_EQ, + ACTIONS(7201), 1, anon_sym_LT_LT_EQ, + ACTIONS(7203), 1, anon_sym_GT_GT_EQ, + ACTIONS(7205), 1, anon_sym_AMP_EQ, + ACTIONS(7207), 1, anon_sym_CARET_EQ, + ACTIONS(7209), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, + ACTIONS(7213), 1, + anon_sym_or, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7217), 1, anon_sym_bitor, + ACTIONS(7219), 1, + anon_sym_xor, + ACTIONS(7221), 1, anon_sym_bitand, + ACTIONS(7223), 1, anon_sym_not_eq, + ACTIONS(7231), 1, + anon_sym_RPAREN, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [79079] = 3, + [78919] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 13, + ACTIONS(5039), 1, + anon_sym_const, + ACTIONS(5050), 1, + anon_sym_AMP, + ACTIONS(5043), 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_LBRACK, anon_sym_GT2, - ACTIONS(5562), 39, - anon_sym_AMP, + ACTIONS(5048), 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(5046), 15, anon_sym___extension__, - anon_sym_extern, - 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_COLON_COLON, + anon_sym_LBRACE, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -431599,80 +434350,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [79139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4977), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(5041), 18, anon_sym_PERCENT, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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_DOT, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4970), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + [78987] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7239), 1, anon_sym_PIPE_PIPE, + ACTIONS(7241), 1, anon_sym_AMP_AMP, + ACTIONS(7243), 1, + anon_sym_PIPE, + ACTIONS(7247), 1, + anon_sym_AMP, + ACTIONS(7255), 1, + anon_sym_QMARK, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7259), 1, + anon_sym_or, + ACTIONS(7261), 1, + anon_sym_and, + ACTIONS(7263), 1, + anon_sym_bitor, + ACTIONS(7265), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(6614), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7251), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6618), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [79199] = 3, + anon_sym_GT2, + [79095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 20, + ACTIONS(6604), 1, + anon_sym_LBRACK, + STATE(3945), 1, + sym_new_declarator, + ACTIONS(6118), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431682,28 +434469,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4970), 32, + ACTIONS(6120), 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_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -431711,7 +434496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -431725,29 +434509,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [79259] = 7, + anon_sym_DASH_GT, + anon_sym_GT2, + [79159] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(7267), 1, sym_identifier, - STATE(3592), 3, + STATE(3611), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(7172), 5, + ACTIONS(7270), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(7175), 5, + ACTIONS(7273), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5160), 17, + ACTIONS(5210), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -431765,7 +434550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5158), 21, + ACTIONS(5208), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -431787,10 +434572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [79327] = 3, + [79227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 20, + ACTIONS(5754), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431804,14 +434589,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(4970), 32, + ACTIONS(5756), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -431821,7 +434602,9 @@ 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -431833,21 +434616,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [79387] = 3, + [79287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5774), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5772), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [79347] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7276), 1, + sym_identifier, + ACTIONS(7281), 1, + sym_primitive_type, + STATE(3690), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7279), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5813), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5815), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [79415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5616), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5614), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [79475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6106), 20, + ACTIONS(5392), 1, + sym_literal_suffix, + ACTIONS(4145), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431861,24 +434823,29 @@ 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, - ACTIONS(6108), 32, + ACTIONS(4137), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -431890,100 +434857,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_STAR, - [79447] = 25, + anon_sym_DASH_GT, + [79537] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(4169), 1, + anon_sym_EQ, + ACTIONS(5056), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5515), 1, anon_sym_LPAREN2, - ACTIONS(7030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7032), 1, - anon_sym_AMP_AMP, - ACTIONS(7034), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_AMP, - ACTIONS(7046), 1, + ACTIONS(5521), 1, anon_sym_LBRACK, - ACTIONS(7050), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7052), 1, - anon_sym_or, - ACTIONS(7054), 1, - anon_sym_and, - ACTIONS(7056), 1, - anon_sym_bitor, - ACTIONS(7058), 1, - anon_sym_bitand, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(6626), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7026), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7036), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7044), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7028), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7040), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7042), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6628), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, + ACTIONS(4173), 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, - anon_sym_GT2, - [79551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4977), 20, + ACTIONS(4145), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -431997,38 +434901,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(4970), 32, + ACTIONS(4137), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_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, @@ -432036,11 +434923,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, - [79611] = 3, + anon_sym_DASH_GT, + [79607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 20, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5418), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -432054,14 +434943,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(4970), 32, + ACTIONS(5420), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -432071,7 +434956,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, @@ -432083,21 +434969,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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [79671] = 3, + [79669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5603), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5601), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [79729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5765), 13, + ACTIONS(5809), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -432111,7 +435056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5763), 39, + ACTIONS(5807), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -432151,10 +435096,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [79731] = 3, + [79789] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5626), 1, + sym_literal_suffix, + STATE(3575), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3846), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3854), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4145), 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_identifier, + ACTIONS(4137), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [79857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 20, + ACTIONS(6700), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -432168,24 +435174,30 @@ 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, - ACTIONS(4018), 32, + sym_literal_suffix, + ACTIONS(6702), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -432197,47 +435209,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_STAR, - [79791] = 6, + anon_sym_DASH_GT, + [79917] = 3, ACTIONS(3), 1, sym_comment, - STATE(2918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5246), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(6560), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5786), 10, + ACTIONS(5420), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5789), 35, + ACTIONS(5418), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -432260,137 +435260,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_asm, anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [79857] = 51, + [79977] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(7283), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7077), 1, - anon_sym_COMMA, - ACTIONS(7081), 1, - anon_sym_DASH, - ACTIONS(7083), 1, - anon_sym_PLUS, - ACTIONS(7085), 1, - anon_sym_STAR, - ACTIONS(7087), 1, - anon_sym_SLASH, - ACTIONS(7089), 1, - anon_sym_PERCENT, - ACTIONS(7091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, - anon_sym_AMP_AMP, - ACTIONS(7095), 1, - anon_sym_PIPE, - ACTIONS(7097), 1, - anon_sym_CARET, - ACTIONS(7099), 1, - anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_EQ_EQ, - ACTIONS(7103), 1, - anon_sym_BANG_EQ, - ACTIONS(7105), 1, - anon_sym_GT, - ACTIONS(7107), 1, - anon_sym_GT_EQ, - ACTIONS(7109), 1, - anon_sym_LT_EQ, - ACTIONS(7111), 1, - anon_sym_LT, - ACTIONS(7113), 1, - anon_sym_LT_LT, - ACTIONS(7115), 1, - anon_sym_GT_GT, - ACTIONS(7117), 1, - anon_sym_EQ, - ACTIONS(7119), 1, - anon_sym_QMARK, - ACTIONS(7121), 1, - anon_sym_STAR_EQ, - ACTIONS(7123), 1, - anon_sym_SLASH_EQ, - ACTIONS(7125), 1, - anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, - anon_sym_PLUS_EQ, - ACTIONS(7129), 1, - anon_sym_DASH_EQ, - ACTIONS(7131), 1, - anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, - anon_sym_AMP_EQ, - ACTIONS(7137), 1, - anon_sym_CARET_EQ, - ACTIONS(7139), 1, - anon_sym_PIPE_EQ, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, - anon_sym_or, - ACTIONS(7145), 1, - anon_sym_and, - ACTIONS(7147), 1, - anon_sym_bitor, - ACTIONS(7149), 1, - anon_sym_xor, - ACTIONS(7151), 1, - anon_sym_bitand, - ACTIONS(7153), 1, - anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7178), 1, - anon_sym_RPAREN, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(2793), 1, sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [80013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 13, + STATE(3802), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4293), 1, + sym_initializer_list, + ACTIONS(7286), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5420), 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_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5590), 39, + ACTIONS(5418), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -432417,128 +435327,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [80073] = 51, + [80049] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5990), 1, + sym_literal_suffix, + ACTIONS(4145), 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, + anon_sym_DASH_GT, + ACTIONS(4137), 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, + [80111] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(7075), 1, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7145), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7077), 1, + ACTIONS(7147), 1, anon_sym_COMMA, - ACTIONS(7081), 1, + ACTIONS(7151), 1, anon_sym_DASH, - ACTIONS(7083), 1, + ACTIONS(7153), 1, anon_sym_PLUS, - ACTIONS(7085), 1, + ACTIONS(7155), 1, anon_sym_STAR, - ACTIONS(7087), 1, + ACTIONS(7157), 1, anon_sym_SLASH, - ACTIONS(7089), 1, + ACTIONS(7159), 1, anon_sym_PERCENT, - ACTIONS(7091), 1, + ACTIONS(7161), 1, anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7095), 1, + ACTIONS(7165), 1, anon_sym_PIPE, - ACTIONS(7097), 1, + ACTIONS(7167), 1, anon_sym_CARET, - ACTIONS(7099), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(7171), 1, + anon_sym_EQ_EQ, + ACTIONS(7173), 1, + anon_sym_BANG_EQ, + ACTIONS(7175), 1, + anon_sym_GT, + ACTIONS(7177), 1, + anon_sym_GT_EQ, + ACTIONS(7179), 1, + anon_sym_LT_EQ, + ACTIONS(7181), 1, + anon_sym_LT, + ACTIONS(7183), 1, + anon_sym_LT_LT, + ACTIONS(7185), 1, + anon_sym_GT_GT, + ACTIONS(7187), 1, + anon_sym_EQ, + ACTIONS(7189), 1, + anon_sym_QMARK, + ACTIONS(7191), 1, + anon_sym_STAR_EQ, + ACTIONS(7193), 1, + anon_sym_SLASH_EQ, + ACTIONS(7195), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7197), 1, + anon_sym_PLUS_EQ, + ACTIONS(7199), 1, + anon_sym_DASH_EQ, + ACTIONS(7201), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7203), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7205), 1, + anon_sym_AMP_EQ, + ACTIONS(7207), 1, + anon_sym_CARET_EQ, + ACTIONS(7209), 1, + anon_sym_PIPE_EQ, + ACTIONS(7211), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7213), 1, + anon_sym_or, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7217), 1, + anon_sym_bitor, + ACTIONS(7219), 1, + anon_sym_xor, + ACTIONS(7221), 1, + anon_sym_bitand, + ACTIONS(7223), 1, + anon_sym_not_eq, + ACTIONS(7288), 1, + anon_sym_RPAREN, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [80267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5711), 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(5713), 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, - ACTIONS(7103), 1, anon_sym_BANG_EQ, - ACTIONS(7105), 1, - anon_sym_GT, - ACTIONS(7107), 1, anon_sym_GT_EQ, - ACTIONS(7109), 1, - anon_sym_LT_EQ, - ACTIONS(7111), 1, - anon_sym_LT, - ACTIONS(7113), 1, - anon_sym_LT_LT, - ACTIONS(7115), 1, - anon_sym_GT_GT, - ACTIONS(7117), 1, - anon_sym_EQ, - ACTIONS(7119), 1, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(7121), 1, anon_sym_STAR_EQ, - ACTIONS(7123), 1, anon_sym_SLASH_EQ, - ACTIONS(7125), 1, anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, anon_sym_PLUS_EQ, - ACTIONS(7129), 1, anon_sym_DASH_EQ, - ACTIONS(7131), 1, anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, anon_sym_AMP_EQ, - ACTIONS(7137), 1, anon_sym_CARET_EQ, - ACTIONS(7139), 1, anon_sym_PIPE_EQ, - ACTIONS(7141), 1, anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, anon_sym_or, - ACTIONS(7145), 1, anon_sym_and, - ACTIONS(7147), 1, anon_sym_bitor, - ACTIONS(7149), 1, anon_sym_xor, - ACTIONS(7151), 1, anon_sym_bitand, - ACTIONS(7153), 1, anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7180), 1, - anon_sym_RPAREN, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [80229] = 3, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [80327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5615), 13, + ACTIONS(5732), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -432552,7 +435571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5613), 39, + ACTIONS(5730), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -432592,174 +435611,380 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [80289] = 51, + [80387] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7241), 1, + anon_sym_AMP_AMP, + ACTIONS(7243), 1, + anon_sym_PIPE, + ACTIONS(7247), 1, + anon_sym_AMP, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7259), 1, + anon_sym_or, + ACTIONS(7261), 1, + anon_sym_and, + ACTIONS(7263), 1, + anon_sym_bitor, + ACTIONS(7265), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(6652), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7251), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6654), 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, + [80491] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(7075), 1, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7145), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7077), 1, + ACTIONS(7147), 1, anon_sym_COMMA, - ACTIONS(7081), 1, + ACTIONS(7151), 1, anon_sym_DASH, - ACTIONS(7083), 1, + ACTIONS(7153), 1, anon_sym_PLUS, - ACTIONS(7085), 1, + ACTIONS(7155), 1, anon_sym_STAR, - ACTIONS(7087), 1, + ACTIONS(7157), 1, anon_sym_SLASH, - ACTIONS(7089), 1, + ACTIONS(7159), 1, anon_sym_PERCENT, - ACTIONS(7091), 1, + ACTIONS(7161), 1, anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7095), 1, + ACTIONS(7165), 1, anon_sym_PIPE, - ACTIONS(7097), 1, + ACTIONS(7167), 1, anon_sym_CARET, - ACTIONS(7099), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(7171), 1, anon_sym_EQ_EQ, - ACTIONS(7103), 1, + ACTIONS(7173), 1, anon_sym_BANG_EQ, - ACTIONS(7105), 1, + ACTIONS(7175), 1, anon_sym_GT, - ACTIONS(7107), 1, + ACTIONS(7177), 1, anon_sym_GT_EQ, - ACTIONS(7109), 1, + ACTIONS(7179), 1, anon_sym_LT_EQ, - ACTIONS(7111), 1, + ACTIONS(7181), 1, anon_sym_LT, - ACTIONS(7113), 1, + ACTIONS(7183), 1, anon_sym_LT_LT, - ACTIONS(7115), 1, + ACTIONS(7185), 1, anon_sym_GT_GT, - ACTIONS(7117), 1, + ACTIONS(7187), 1, anon_sym_EQ, - ACTIONS(7119), 1, + ACTIONS(7189), 1, anon_sym_QMARK, - ACTIONS(7121), 1, + ACTIONS(7191), 1, anon_sym_STAR_EQ, - ACTIONS(7123), 1, + ACTIONS(7193), 1, anon_sym_SLASH_EQ, - ACTIONS(7125), 1, + ACTIONS(7195), 1, anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, + ACTIONS(7197), 1, anon_sym_PLUS_EQ, - ACTIONS(7129), 1, + ACTIONS(7199), 1, anon_sym_DASH_EQ, - ACTIONS(7131), 1, + ACTIONS(7201), 1, anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, + ACTIONS(7203), 1, anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, + ACTIONS(7205), 1, anon_sym_AMP_EQ, - ACTIONS(7137), 1, + ACTIONS(7207), 1, anon_sym_CARET_EQ, - ACTIONS(7139), 1, + ACTIONS(7209), 1, anon_sym_PIPE_EQ, - ACTIONS(7141), 1, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, + ACTIONS(7213), 1, anon_sym_or, - ACTIONS(7145), 1, + ACTIONS(7215), 1, anon_sym_and, - ACTIONS(7147), 1, + ACTIONS(7217), 1, anon_sym_bitor, - ACTIONS(7149), 1, + ACTIONS(7219), 1, anon_sym_xor, - ACTIONS(7151), 1, + ACTIONS(7221), 1, anon_sym_bitand, - ACTIONS(7153), 1, + ACTIONS(7223), 1, anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7182), 1, + ACTIONS(7290), 1, anon_sym_RPAREN, - STATE(1878), 1, + STATE(1856), 1, sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - STATE(9194), 1, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, sym__fold_operator, - ACTIONS(6887), 2, + ACTIONS(6863), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7155), 2, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [80445] = 5, + [80647] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4171), 1, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7241), 1, + anon_sym_AMP_AMP, + ACTIONS(7243), 1, + anon_sym_PIPE, + ACTIONS(7247), 1, + anon_sym_AMP, + ACTIONS(7255), 1, + anon_sym_QMARK, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7259), 1, + anon_sym_or, + ACTIONS(7261), 1, + anon_sym_and, + ACTIONS(7263), 1, + anon_sym_bitor, + ACTIONS(7265), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(6677), 2, anon_sym_EQ, - ACTIONS(4175), 13, + anon_sym_GT_GT_EQ, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7251), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6679), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(4147), 17, + anon_sym_GT2, + [80755] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7145), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7147), 1, + anon_sym_COMMA, + ACTIONS(7151), 1, anon_sym_DASH, + ACTIONS(7153), 1, anon_sym_PLUS, + ACTIONS(7155), 1, anon_sym_STAR, + ACTIONS(7157), 1, anon_sym_SLASH, + ACTIONS(7159), 1, anon_sym_PERCENT, + ACTIONS(7161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7163), 1, + anon_sym_AMP_AMP, + ACTIONS(7165), 1, anon_sym_PIPE, + ACTIONS(7167), 1, anon_sym_CARET, + ACTIONS(7169), 1, anon_sym_AMP, + ACTIONS(7171), 1, + anon_sym_EQ_EQ, + ACTIONS(7173), 1, + anon_sym_BANG_EQ, + ACTIONS(7175), 1, anon_sym_GT, + ACTIONS(7177), 1, + anon_sym_GT_EQ, + ACTIONS(7179), 1, anon_sym_LT_EQ, + ACTIONS(7181), 1, anon_sym_LT, + ACTIONS(7183), 1, anon_sym_LT_LT, + ACTIONS(7185), 1, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4139), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(7187), 1, + anon_sym_EQ, + ACTIONS(7189), 1, anon_sym_QMARK, + ACTIONS(7191), 1, + anon_sym_STAR_EQ, + ACTIONS(7193), 1, + anon_sym_SLASH_EQ, + ACTIONS(7195), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7197), 1, + anon_sym_PLUS_EQ, + ACTIONS(7199), 1, + anon_sym_DASH_EQ, + ACTIONS(7201), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7203), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7205), 1, + anon_sym_AMP_EQ, + ACTIONS(7207), 1, + anon_sym_CARET_EQ, + ACTIONS(7209), 1, + anon_sym_PIPE_EQ, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, + ACTIONS(7213), 1, + anon_sym_or, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7217), 1, anon_sym_bitor, + ACTIONS(7219), 1, + anon_sym_xor, + ACTIONS(7221), 1, anon_sym_bitand, + ACTIONS(7223), 1, anon_sym_not_eq, + ACTIONS(7292), 1, + anon_sym_RPAREN, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [80509] = 3, + [80911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5761), 13, + ACTIONS(5801), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -432773,7 +435998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5759), 39, + ACTIONS(5799), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -432813,10 +436038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [80569] = 3, + [80971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 20, + ACTIONS(5939), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -432837,7 +436062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5936), 32, + ACTIONS(5941), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -432870,14 +436095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80629] = 5, + [81031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7066), 1, - anon_sym_LT, - STATE(3457), 1, - sym_template_argument_list, - ACTIONS(6095), 18, + ACTIONS(5935), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -432888,15 +436109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6097), 32, + ACTIONS(5937), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -432906,7 +436129,65 @@ 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [81091] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7294), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6181), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_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(6183), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -432929,10 +436210,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80693] = 3, + [81153] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7241), 1, + anon_sym_AMP_AMP, + ACTIONS(7243), 1, + anon_sym_PIPE, + ACTIONS(7247), 1, + anon_sym_AMP, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7259), 1, + anon_sym_or, + ACTIONS(7261), 1, + anon_sym_and, + ACTIONS(7263), 1, + anon_sym_bitor, + ACTIONS(7265), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(6660), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7251), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6662), 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, + [81257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 13, + ACTIONS(5744), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -432946,7 +436306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5607), 39, + ACTIONS(5742), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -432986,10 +436346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [80753] = 3, + [81317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 13, + ACTIONS(5645), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433003,7 +436363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5707), 39, + ACTIONS(5643), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -433043,10 +436403,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [80813] = 3, + [81377] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5521), 1, + anon_sym_LBRACK, + ACTIONS(5515), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4145), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(4137), 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, + [81443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6000), 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(6002), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, + [81503] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7145), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7147), 1, + anon_sym_COMMA, + ACTIONS(7151), 1, + anon_sym_DASH, + ACTIONS(7153), 1, + anon_sym_PLUS, + ACTIONS(7155), 1, + anon_sym_STAR, + ACTIONS(7157), 1, + anon_sym_SLASH, + ACTIONS(7159), 1, + anon_sym_PERCENT, + ACTIONS(7161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7163), 1, + anon_sym_AMP_AMP, + ACTIONS(7165), 1, + anon_sym_PIPE, + ACTIONS(7167), 1, + anon_sym_CARET, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7171), 1, + anon_sym_EQ_EQ, + ACTIONS(7173), 1, + anon_sym_BANG_EQ, + ACTIONS(7175), 1, + anon_sym_GT, + ACTIONS(7177), 1, + anon_sym_GT_EQ, + ACTIONS(7179), 1, + anon_sym_LT_EQ, + ACTIONS(7181), 1, + anon_sym_LT, + ACTIONS(7183), 1, + anon_sym_LT_LT, + ACTIONS(7185), 1, + anon_sym_GT_GT, + ACTIONS(7187), 1, + anon_sym_EQ, + ACTIONS(7189), 1, + anon_sym_QMARK, + ACTIONS(7191), 1, + anon_sym_STAR_EQ, + ACTIONS(7193), 1, + anon_sym_SLASH_EQ, + ACTIONS(7195), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7197), 1, + anon_sym_PLUS_EQ, + ACTIONS(7199), 1, + anon_sym_DASH_EQ, + ACTIONS(7201), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7203), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7205), 1, + anon_sym_AMP_EQ, + ACTIONS(7207), 1, + anon_sym_CARET_EQ, + ACTIONS(7209), 1, + anon_sym_PIPE_EQ, + ACTIONS(7211), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7213), 1, + anon_sym_or, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7217), 1, + anon_sym_bitor, + ACTIONS(7219), 1, + anon_sym_xor, + ACTIONS(7221), 1, + anon_sym_bitand, + ACTIONS(7223), 1, + anon_sym_not_eq, + ACTIONS(7296), 1, + anon_sym_RPAREN, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [81659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5739), 13, + ACTIONS(5663), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433060,7 +436642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5737), 39, + ACTIONS(5661), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -433100,10 +436682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [80873] = 3, + [81719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 13, + ACTIONS(5687), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433117,7 +436699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5719), 39, + ACTIONS(5685), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -433157,141 +436739,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [80933] = 51, + [81779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7081), 1, + ACTIONS(6181), 19, anon_sym_DASH, - ACTIONS(7083), 1, anon_sym_PLUS, - ACTIONS(7085), 1, anon_sym_STAR, - ACTIONS(7087), 1, anon_sym_SLASH, - ACTIONS(7089), 1, anon_sym_PERCENT, - ACTIONS(7091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, - anon_sym_AMP_AMP, - ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(7097), 1, anon_sym_CARET, - ACTIONS(7099), 1, anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_EQ_EQ, - ACTIONS(7103), 1, - anon_sym_BANG_EQ, - ACTIONS(7105), 1, anon_sym_GT, - ACTIONS(7107), 1, - anon_sym_GT_EQ, - ACTIONS(7109), 1, anon_sym_LT_EQ, - ACTIONS(7111), 1, anon_sym_LT, - ACTIONS(7113), 1, anon_sym_LT_LT, - ACTIONS(7115), 1, anon_sym_GT_GT, - ACTIONS(7117), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(7119), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6183), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, - ACTIONS(7121), 1, anon_sym_STAR_EQ, - ACTIONS(7123), 1, anon_sym_SLASH_EQ, - ACTIONS(7125), 1, anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, anon_sym_PLUS_EQ, - ACTIONS(7129), 1, anon_sym_DASH_EQ, - ACTIONS(7131), 1, anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, anon_sym_AMP_EQ, - ACTIONS(7137), 1, anon_sym_CARET_EQ, - ACTIONS(7139), 1, anon_sym_PIPE_EQ, - ACTIONS(7141), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, - anon_sym_or, - ACTIONS(7145), 1, - anon_sym_and, - ACTIONS(7147), 1, anon_sym_bitor, - ACTIONS(7149), 1, - anon_sym_xor, - ACTIONS(7151), 1, anon_sym_bitand, - ACTIONS(7153), 1, anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7184), 1, - anon_sym_COMMA, - ACTIONS(7186), 1, - anon_sym_RPAREN, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [81089] = 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [81839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(7188), 1, - anon_sym_LPAREN2, - STATE(2771), 1, - sym_argument_list, - STATE(3825), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4305), 1, - sym_initializer_list, - ACTIONS(7191), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5537), 10, + ACTIONS(5760), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(5535), 33, + anon_sym_GT2, + ACTIONS(5758), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -433318,17 +436840,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [81161] = 3, + anon_sym_try, + anon_sym_requires, + [81899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5580), 13, + ACTIONS(5764), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433342,7 +436870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5578), 39, + ACTIONS(5762), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -433382,71 +436910,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [81221] = 7, + [81959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, - sym_literal_suffix, - STATE(3362), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3734), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3742), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4147), 16, + ACTIONS(5544), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(4139), 23, + anon_sym_DASH_GT, + ACTIONS(5546), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, - [81289] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [82019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 13, + ACTIONS(5748), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433460,7 +436984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5661), 39, + ACTIONS(5746), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -433500,10 +437024,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [81349] = 3, + [82079] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6184), 19, + ACTIONS(6763), 1, + sym_auto, + ACTIONS(6765), 1, + anon_sym_decltype, + STATE(3941), 1, + sym_decltype_auto, + ACTIONS(5548), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433517,24 +437047,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(6186), 33, + anon_sym_DASH_GT, + ACTIONS(5550), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -433546,308 +437073,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [81409] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6687), 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_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(6689), 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, - [81469] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7060), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6190), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_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(6192), 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, - [81543] = 3, + anon_sym_DASH_GT_STAR, + [82145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 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(5580), 36, + ACTIONS(5752), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5750), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [81603] = 51, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [82205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(7075), 1, + ACTIONS(5620), 13, anon_sym_DOT_DOT_DOT, - ACTIONS(7081), 1, - anon_sym_DASH, - ACTIONS(7083), 1, - anon_sym_PLUS, - ACTIONS(7085), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(7087), 1, - anon_sym_SLASH, - ACTIONS(7089), 1, - anon_sym_PERCENT, - ACTIONS(7091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, anon_sym_AMP_AMP, - ACTIONS(7095), 1, - anon_sym_PIPE, - ACTIONS(7097), 1, - anon_sym_CARET, - ACTIONS(7099), 1, - anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_EQ_EQ, - ACTIONS(7103), 1, - anon_sym_BANG_EQ, - ACTIONS(7105), 1, - anon_sym_GT, - ACTIONS(7107), 1, - anon_sym_GT_EQ, - ACTIONS(7109), 1, - anon_sym_LT_EQ, - ACTIONS(7111), 1, - anon_sym_LT, - ACTIONS(7113), 1, - anon_sym_LT_LT, - ACTIONS(7115), 1, - anon_sym_GT_GT, - ACTIONS(7117), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(7119), 1, - anon_sym_QMARK, - ACTIONS(7121), 1, - anon_sym_STAR_EQ, - ACTIONS(7123), 1, - anon_sym_SLASH_EQ, - ACTIONS(7125), 1, - anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, - anon_sym_PLUS_EQ, - ACTIONS(7129), 1, - anon_sym_DASH_EQ, - ACTIONS(7131), 1, - anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, - anon_sym_AMP_EQ, - ACTIONS(7137), 1, - anon_sym_CARET_EQ, - ACTIONS(7139), 1, - anon_sym_PIPE_EQ, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, - anon_sym_or, - ACTIONS(7145), 1, - anon_sym_and, - ACTIONS(7147), 1, - anon_sym_bitor, - ACTIONS(7149), 1, - anon_sym_xor, - ACTIONS(7151), 1, - anon_sym_bitand, - ACTIONS(7153), 1, - anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7184), 1, - anon_sym_COMMA, - ACTIONS(7193), 1, - anon_sym_RPAREN, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [81759] = 5, + anon_sym_GT2, + ACTIONS(5618), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [82265] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6929), 1, - anon_sym_LT, - STATE(1906), 1, - sym_template_argument_list, - ACTIONS(6095), 18, + ACTIONS(5056), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5521), 1, + anon_sym_LBRACK, + ACTIONS(5515), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4145), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433858,6 +437219,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, @@ -433866,17 +437228,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6097), 32, + ACTIONS(4137), 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, @@ -433899,10 +437258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81823] = 3, + [82331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5781), 13, + ACTIONS(5653), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433916,7 +437275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5779), 39, + ACTIONS(5651), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -433956,10 +437315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [81883] = 3, + [82391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 13, + ACTIONS(5756), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433973,7 +437332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5745), 39, + ACTIONS(5754), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -434013,10 +437372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [81943] = 3, + [82451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 16, + ACTIONS(5947), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434030,10 +437389,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(5592), 36, + ACTIONS(5949), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434043,9 +437406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -434057,68 +437418,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, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [82003] = 13, + [82511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7026), 2, + ACTIONS(4018), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7044), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6172), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4020), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, @@ -434126,6 +437471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -434136,34 +437482,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [82083] = 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82571] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7026), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7060), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7028), 3, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 14, + ACTIONS(6151), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -434171,14 +437523,12 @@ 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(6172), 24, + ACTIONS(6153), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -434203,38 +437553,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [82161] = 14, + [82651] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7050), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7026), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7044), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7060), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7028), 3, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 12, + ACTIONS(6151), 14, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -434242,12 +437587,14 @@ 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(6172), 23, + ACTIONS(6153), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -434267,83 +437614,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_GT2, - [82243] = 15, + [82729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7050), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7026), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7044), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7028), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7042), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 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(6172), 23, + ACTIONS(5778), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [82327] = 3, + ACTIONS(5776), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [82789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6166), 20, + ACTIONS(5014), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434364,7 +437700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6168), 32, + ACTIONS(5019), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434397,282 +437733,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82387] = 16, + [82849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7050), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7026), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7044), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7028), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7040), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7042), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 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(6172), 20, + ACTIONS(5797), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [82473] = 18, + ACTIONS(5795), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [82909] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7038), 1, - anon_sym_AMP, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7050), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7058), 1, - anon_sym_bitand, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7026), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7044), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7060), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7028), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7040), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7042), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 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(6172), 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, - [82563] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7038), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7050), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7058), 1, - anon_sym_bitand, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7026), 2, + ACTIONS(7235), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7036), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7044), 2, + ACTIONS(7253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7028), 3, + ACTIONS(7237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7040), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7042), 4, + ACTIONS(6151), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 5, - anon_sym_PIPE, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6172), 19, + anon_sym_xor, + ACTIONS(6153), 23, 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, - [82655] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7034), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7050), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7056), 1, - anon_sym_bitor, - ACTIONS(7058), 1, - anon_sym_bitand, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7026), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7036), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7044), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7028), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7040), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6170), 4, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7042), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 18, - 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, @@ -434686,104 +437854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [82751] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7032), 1, - anon_sym_AMP_AMP, - ACTIONS(7034), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7050), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7054), 1, - anon_sym_and, - ACTIONS(7056), 1, anon_sym_bitor, - ACTIONS(7058), 1, anon_sym_bitand, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7026), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7036), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7044), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6170), 3, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - ACTIONS(7028), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7040), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7042), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_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, - [82851] = 10, + [82991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6170), 19, + ACTIONS(6214), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434793,23 +437871,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6172), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6216), 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, @@ -434817,6 +437900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -434827,33 +437911,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [82925] = 11, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83051] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7028), 3, + ACTIONS(6197), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 16, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -434868,7 +437951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6172), 24, + ACTIONS(6199), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -434892,68 +437975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_GT2, - [83001] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5743), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5741), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [83061] = 3, + [83123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5717), 13, + ACTIONS(5726), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434967,7 +437995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5715), 39, + ACTIONS(5724), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -435007,10 +438035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [83121] = 3, + [83183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 13, + ACTIONS(5700), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435024,7 +438052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5711), 39, + ACTIONS(5698), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -435064,10 +438092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [83181] = 3, + [83243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 20, + ACTIONS(5014), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435088,7 +438116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5917), 32, + ACTIONS(5019), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435121,10 +438149,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [83241] = 3, + [83303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5665), 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(5667), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [83363] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + STATE(1974), 1, + sym_template_argument_list, + STATE(4006), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7298), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5593), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5595), 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, + [83431] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7251), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 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(6153), 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, + [83515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 16, + ACTIONS(5601), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435141,7 +438356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5609), 36, + ACTIONS(5603), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435178,10 +438393,80 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [83301] = 3, + [83575] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7251), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 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(6153), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_GT2, + [83661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 20, + ACTIONS(5014), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435202,7 +438487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6240), 32, + ACTIONS(5019), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435235,41 +438520,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [83361] = 3, + [83721] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5919), 20, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7247), 1, + anon_sym_AMP, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7265), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7251), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 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(6153), 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, + [83811] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7247), 1, anon_sym_AMP, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7265), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7251), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(6151), 5, + anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, + ACTIONS(6153), 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, + [83903] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, anon_sym_DOT, + ACTIONS(7243), 1, + anon_sym_PIPE, + ACTIONS(7247), 1, + anon_sym_AMP, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7263), 1, + anon_sym_bitor, + ACTIONS(7265), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5921), 32, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6151), 4, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7251), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_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, + [83999] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7241), 1, + anon_sym_AMP_AMP, + ACTIONS(7243), 1, + anon_sym_PIPE, + ACTIONS(7247), 1, + anon_sym_AMP, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7261), 1, + anon_sym_and, + ACTIONS(7263), 1, + anon_sym_bitor, + ACTIONS(7265), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6151), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(7237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7251), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435277,25 +438810,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT2, + [84099] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5923), 20, + anon_sym_DASH_GT, + ACTIONS(6151), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435305,28 +438846,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5925), 32, + ACTIONS(6153), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435334,7 +438870,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -435345,45 +438880,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_GT2, + [84173] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5927), 20, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(7237), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5929), 32, + ACTIONS(6153), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435391,7 +438935,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -435402,78 +438945,182 @@ 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, - [83541] = 7, + anon_sym_GT2, + [84249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7195), 1, - sym_identifier, - STATE(3592), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5648), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5650), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5200), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5675), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5673), 39, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym___extension__, + anon_sym_extern, 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(5198), 21, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [84309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5805), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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(5803), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [83609] = 4, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [84369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 2, + ACTIONS(5671), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(5021), 20, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5669), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [84429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6008), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435483,26 +439130,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(5014), 30, + anon_sym_DASH_GT, + ACTIONS(6010), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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, @@ -435510,6 +439159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -435523,12 +439173,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, - [83671] = 3, + anon_sym_DASH_GT_STAR, + [84489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 16, + ACTIONS(5762), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435545,7 +439194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5398), 36, + ACTIONS(5764), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435555,7 +439204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -435582,139 +439231,115 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [83731] = 5, + [84549] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(7197), 1, - anon_sym_LT, - STATE(3804), 1, - sym_template_argument_list, - ACTIONS(6437), 18, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7145), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7147), 1, + anon_sym_COMMA, + ACTIONS(7151), 1, anon_sym_DASH, + ACTIONS(7153), 1, anon_sym_PLUS, + ACTIONS(7155), 1, anon_sym_STAR, + ACTIONS(7157), 1, anon_sym_SLASH, + ACTIONS(7159), 1, anon_sym_PERCENT, + ACTIONS(7161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7163), 1, + anon_sym_AMP_AMP, + ACTIONS(7165), 1, anon_sym_PIPE, + ACTIONS(7167), 1, anon_sym_CARET, + ACTIONS(7169), 1, anon_sym_AMP, + ACTIONS(7171), 1, + anon_sym_EQ_EQ, + ACTIONS(7173), 1, + anon_sym_BANG_EQ, + ACTIONS(7175), 1, anon_sym_GT, + ACTIONS(7177), 1, + anon_sym_GT_EQ, + ACTIONS(7179), 1, anon_sym_LT_EQ, + ACTIONS(7181), 1, + anon_sym_LT, + ACTIONS(7183), 1, anon_sym_LT_LT, + ACTIONS(7185), 1, anon_sym_GT_GT, + ACTIONS(7187), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6439), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + ACTIONS(7189), 1, anon_sym_QMARK, + ACTIONS(7191), 1, anon_sym_STAR_EQ, + ACTIONS(7193), 1, anon_sym_SLASH_EQ, + ACTIONS(7195), 1, anon_sym_PERCENT_EQ, + ACTIONS(7197), 1, anon_sym_PLUS_EQ, + ACTIONS(7199), 1, anon_sym_DASH_EQ, + ACTIONS(7201), 1, anon_sym_LT_LT_EQ, + ACTIONS(7203), 1, anon_sym_GT_GT_EQ, + ACTIONS(7205), 1, anon_sym_AMP_EQ, + ACTIONS(7207), 1, anon_sym_CARET_EQ, + ACTIONS(7209), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, + ACTIONS(7213), 1, + anon_sym_or, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7217), 1, anon_sym_bitor, + ACTIONS(7219), 1, + anon_sym_xor, + ACTIONS(7221), 1, anon_sym_bitand, + ACTIONS(7223), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [83795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5693), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7300), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5691), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [83855] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, sym_argument_list, - STATE(3948), 1, + STATE(3776), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6863), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6155), 19, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [84705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6012), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435724,23 +439349,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6157), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6014), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, @@ -435748,6 +439378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -435760,11 +439391,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [83927] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [84765] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6433), 19, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6241), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435774,28 +439422,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(6435), 33, + ACTIONS(6243), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435803,7 +439446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -435814,14 +439456,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_GT2, + [84839] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7139), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [83987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6433), 20, + ACTIONS(6229), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435831,28 +439486,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6435), 32, + ACTIONS(6231), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -435860,7 +439510,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -435871,71 +439520,20 @@ 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, - [84047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5777), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(5775), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [84107] = 3, + [84913] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5701), 13, + ACTIONS(5278), 1, + sym_primitive_type, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6589), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5766), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435949,7 +439547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5699), 39, + ACTIONS(5769), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -435976,23 +439574,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [84167] = 3, + [84979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 13, + ACTIONS(5713), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -436006,7 +439598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5661), 39, + ACTIONS(5711), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -436046,104 +439638,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [84227] = 27, + [85039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7024), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7032), 1, - anon_sym_AMP_AMP, - ACTIONS(7034), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_AMP, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7048), 1, - anon_sym_QMARK, - ACTIONS(7050), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7052), 1, - anon_sym_or, - ACTIONS(7054), 1, - anon_sym_and, - ACTIONS(7056), 1, - anon_sym_bitor, - ACTIONS(7058), 1, - anon_sym_bitand, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(6307), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7026), 2, + ACTIONS(5795), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7036), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7044), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7028), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7040), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7042), 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(6309), 14, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5797), 36, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_GT2, - [84335] = 3, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [85099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 12, + ACTIONS(5679), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, - ACTIONS(5382), 40, + ACTIONS(5677), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -436170,8 +439739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, sym_identifier, @@ -436181,186 +439748,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [84395] = 51, + [85159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7077), 1, - anon_sym_COMMA, - ACTIONS(7081), 1, + ACTIONS(5014), 20, anon_sym_DASH, - ACTIONS(7083), 1, anon_sym_PLUS, - ACTIONS(7085), 1, anon_sym_STAR, - ACTIONS(7087), 1, anon_sym_SLASH, - ACTIONS(7089), 1, anon_sym_PERCENT, - ACTIONS(7091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, - anon_sym_AMP_AMP, - ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(7097), 1, anon_sym_CARET, - ACTIONS(7099), 1, anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_EQ_EQ, - ACTIONS(7103), 1, - anon_sym_BANG_EQ, - ACTIONS(7105), 1, anon_sym_GT, - ACTIONS(7107), 1, - anon_sym_GT_EQ, - ACTIONS(7109), 1, anon_sym_LT_EQ, - ACTIONS(7111), 1, anon_sym_LT, - ACTIONS(7113), 1, anon_sym_LT_LT, - ACTIONS(7115), 1, anon_sym_GT_GT, - ACTIONS(7117), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(7119), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5019), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, - ACTIONS(7121), 1, anon_sym_STAR_EQ, - ACTIONS(7123), 1, anon_sym_SLASH_EQ, - ACTIONS(7125), 1, anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, anon_sym_PLUS_EQ, - ACTIONS(7129), 1, anon_sym_DASH_EQ, - ACTIONS(7131), 1, anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, anon_sym_AMP_EQ, - ACTIONS(7137), 1, anon_sym_CARET_EQ, - ACTIONS(7139), 1, anon_sym_PIPE_EQ, - ACTIONS(7141), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, - anon_sym_or, - ACTIONS(7145), 1, - anon_sym_and, - ACTIONS(7147), 1, anon_sym_bitor, - ACTIONS(7149), 1, - anon_sym_xor, - ACTIONS(7151), 1, anon_sym_bitand, - ACTIONS(7153), 1, anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7200), 1, - anon_sym_RPAREN, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [84551] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7202), 1, - sym_identifier, - ACTIONS(7206), 1, - sym_primitive_type, - STATE(3600), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7204), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5636), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5638), 35, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [84619] = 6, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5532), 1, - anon_sym_LBRACK, - ACTIONS(5526), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(4147), 19, + ACTIONS(6181), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436374,20 +439826,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(4139), 29, + ACTIONS(6183), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, @@ -436410,27 +439866,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84685] = 3, + [85279] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 26, + ACTIONS(7302), 1, + sym_identifier, + STATE(3611), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5784), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5786), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5222), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -436438,19 +439904,94 @@ 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(6689), 26, + ACTIONS(5220), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [85347] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7241), 1, + anon_sym_AMP_AMP, + ACTIONS(7243), 1, + anon_sym_PIPE, + ACTIONS(7247), 1, + anon_sym_AMP, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7259), 1, + anon_sym_or, + ACTIONS(7261), 1, + anon_sym_and, + ACTIONS(7263), 1, + anon_sym_bitor, + ACTIONS(7265), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(6673), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7251), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6675), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436458,306 +439999,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_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, - [84745] = 51, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [85451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(7306), 25, anon_sym_LPAREN2, - ACTIONS(6885), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7077), 1, - anon_sym_COMMA, - ACTIONS(7081), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(7304), 27, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_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, + [85511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6045), 20, anon_sym_DASH, - ACTIONS(7083), 1, anon_sym_PLUS, - ACTIONS(7085), 1, anon_sym_STAR, - ACTIONS(7087), 1, anon_sym_SLASH, - ACTIONS(7089), 1, anon_sym_PERCENT, - ACTIONS(7091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, - anon_sym_AMP_AMP, - ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(7097), 1, anon_sym_CARET, - ACTIONS(7099), 1, anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_EQ_EQ, - ACTIONS(7103), 1, - anon_sym_BANG_EQ, - ACTIONS(7105), 1, anon_sym_GT, - ACTIONS(7107), 1, - anon_sym_GT_EQ, - ACTIONS(7109), 1, anon_sym_LT_EQ, - ACTIONS(7111), 1, anon_sym_LT, - ACTIONS(7113), 1, anon_sym_LT_LT, - ACTIONS(7115), 1, anon_sym_GT_GT, - ACTIONS(7117), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(7119), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6047), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, - ACTIONS(7121), 1, anon_sym_STAR_EQ, - ACTIONS(7123), 1, anon_sym_SLASH_EQ, - ACTIONS(7125), 1, anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, anon_sym_PLUS_EQ, - ACTIONS(7129), 1, anon_sym_DASH_EQ, - ACTIONS(7131), 1, anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, anon_sym_AMP_EQ, - ACTIONS(7137), 1, anon_sym_CARET_EQ, - ACTIONS(7139), 1, anon_sym_PIPE_EQ, - ACTIONS(7141), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, - anon_sym_or, - ACTIONS(7145), 1, - anon_sym_and, - ACTIONS(7147), 1, anon_sym_bitor, - ACTIONS(7149), 1, - anon_sym_xor, - ACTIONS(7151), 1, anon_sym_bitand, - ACTIONS(7153), 1, anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7208), 1, - anon_sym_RPAREN, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [84901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5771), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [84961] = 51, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85571] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7077), 1, - anon_sym_COMMA, - ACTIONS(7081), 1, + ACTIONS(7141), 1, + anon_sym_DOT, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6245), 19, anon_sym_DASH, - ACTIONS(7083), 1, anon_sym_PLUS, - ACTIONS(7085), 1, anon_sym_STAR, - ACTIONS(7087), 1, anon_sym_SLASH, - ACTIONS(7089), 1, anon_sym_PERCENT, - ACTIONS(7091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, - anon_sym_AMP_AMP, - ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(7097), 1, anon_sym_CARET, - ACTIONS(7099), 1, anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_EQ_EQ, - ACTIONS(7103), 1, - anon_sym_BANG_EQ, - ACTIONS(7105), 1, anon_sym_GT, - ACTIONS(7107), 1, anon_sym_GT_EQ, - ACTIONS(7109), 1, anon_sym_LT_EQ, - ACTIONS(7111), 1, anon_sym_LT, - ACTIONS(7113), 1, anon_sym_LT_LT, - ACTIONS(7115), 1, anon_sym_GT_GT, - ACTIONS(7117), 1, anon_sym_EQ, - ACTIONS(7119), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6247), 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, - ACTIONS(7121), 1, anon_sym_STAR_EQ, - ACTIONS(7123), 1, anon_sym_SLASH_EQ, - ACTIONS(7125), 1, anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, anon_sym_PLUS_EQ, - ACTIONS(7129), 1, anon_sym_DASH_EQ, - ACTIONS(7131), 1, anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, - anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, anon_sym_AMP_EQ, - ACTIONS(7137), 1, anon_sym_CARET_EQ, - ACTIONS(7139), 1, anon_sym_PIPE_EQ, - ACTIONS(7141), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, - anon_sym_or, - ACTIONS(7145), 1, - anon_sym_and, - ACTIONS(7147), 1, anon_sym_bitor, - ACTIONS(7149), 1, - anon_sym_xor, - ACTIONS(7151), 1, anon_sym_bitand, - ACTIONS(7153), 1, anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7210), 1, - anon_sym_RPAREN, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [85117] = 3, + anon_sym_GT2, + [85643] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5584), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(7308), 1, + sym_identifier, + ACTIONS(7312), 1, + sym_primitive_type, + STATE(3602), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5813), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5582), 39, + ACTIONS(5815), 35, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -436780,28 +440236,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_asm, anon_sym___asm__, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_template, - anon_sym_operator, anon_sym_try, anon_sym_requires, - [85177] = 6, + [85711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5532), 1, - anon_sym_LBRACK, - ACTIONS(5526), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(4147), 19, + ACTIONS(6477), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436815,20 +440261,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(4139), 29, + ACTIONS(6479), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, @@ -436851,32 +440301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85243] = 8, + [85771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4171), 1, - anon_sym_EQ, - ACTIONS(5026), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5526), 1, - anon_sym_LPAREN2, - ACTIONS(5532), 1, - anon_sym_LBRACK, - ACTIONS(4175), 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(4147), 17, + ACTIONS(6237), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436890,138 +440318,50 @@ 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(4139), 18, + anon_sym_DASH_GT, + ACTIONS(6239), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [85313] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7081), 1, - anon_sym_DASH, - ACTIONS(7083), 1, - anon_sym_PLUS, - ACTIONS(7085), 1, - anon_sym_STAR, - ACTIONS(7087), 1, - anon_sym_SLASH, - ACTIONS(7089), 1, - anon_sym_PERCENT, - ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, anon_sym_AMP_AMP, - ACTIONS(7095), 1, - anon_sym_PIPE, - ACTIONS(7097), 1, - anon_sym_CARET, - ACTIONS(7099), 1, - anon_sym_AMP, - ACTIONS(7101), 1, anon_sym_EQ_EQ, - ACTIONS(7103), 1, anon_sym_BANG_EQ, - ACTIONS(7105), 1, - anon_sym_GT, - ACTIONS(7107), 1, anon_sym_GT_EQ, - ACTIONS(7109), 1, - anon_sym_LT_EQ, - ACTIONS(7111), 1, - anon_sym_LT, - ACTIONS(7113), 1, - anon_sym_LT_LT, - ACTIONS(7115), 1, - anon_sym_GT_GT, - ACTIONS(7117), 1, - anon_sym_EQ, - ACTIONS(7119), 1, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, - ACTIONS(7121), 1, anon_sym_STAR_EQ, - ACTIONS(7123), 1, anon_sym_SLASH_EQ, - ACTIONS(7125), 1, anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, anon_sym_PLUS_EQ, - ACTIONS(7129), 1, anon_sym_DASH_EQ, - ACTIONS(7131), 1, anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, anon_sym_AMP_EQ, - ACTIONS(7137), 1, anon_sym_CARET_EQ, - ACTIONS(7139), 1, anon_sym_PIPE_EQ, - ACTIONS(7141), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, - anon_sym_or, - ACTIONS(7145), 1, - anon_sym_and, - ACTIONS(7147), 1, anon_sym_bitor, - ACTIONS(7149), 1, - anon_sym_xor, - ACTIONS(7151), 1, anon_sym_bitand, - ACTIONS(7153), 1, anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7184), 1, - anon_sym_COMMA, - ACTIONS(7212), 1, - anon_sym_RPAREN, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [85469] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6146), 20, + ACTIONS(6041), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437042,7 +440382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6148), 32, + ACTIONS(6043), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -437075,134 +440415,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85529] = 11, + [85891] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(7214), 1, - anon_sym___attribute__, - ACTIONS(7216), 1, - anon_sym_LBRACE, - STATE(4317), 1, - sym_field_declaration_list, - STATE(4519), 1, - sym_attribute_specifier, - STATE(7475), 1, - sym_virtual_specifier, - STATE(8128), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5284), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7233), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7241), 1, + anon_sym_AMP_AMP, + ACTIONS(7243), 1, anon_sym_PIPE, + ACTIONS(7247), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(7255), 1, + anon_sym_QMARK, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7259), 1, anon_sym_or, + ACTIONS(7261), 1, anon_sym_and, + ACTIONS(7263), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7265), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5286), 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, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(6469), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(7249), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7251), 4, + anon_sym_GT, 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, - [85605] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 13, - anon_sym_DOT_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6471), 14, anon_sym_COMMA, - anon_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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_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, - ACTIONS(5586), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [85665] = 4, + [85999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5958), 1, - sym_literal_suffix, - ACTIONS(4147), 25, + ACTIONS(7314), 1, + anon_sym_LT, + STATE(3408), 1, + sym_template_argument_list, + ACTIONS(6201), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437213,22 +440514,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_and_eq, - anon_sym_or_eq, - anon_sym_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(4139), 26, + ACTIONS(6203), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -437250,95 +440544,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_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, - [85727] = 10, + [86063] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7060), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, + ACTIONS(6865), 1, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6133), 19, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7145), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7147), 1, + anon_sym_COMMA, + ACTIONS(7151), 1, anon_sym_DASH, + ACTIONS(7153), 1, anon_sym_PLUS, + ACTIONS(7155), 1, anon_sym_STAR, + ACTIONS(7157), 1, anon_sym_SLASH, + ACTIONS(7159), 1, anon_sym_PERCENT, + ACTIONS(7161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7163), 1, + anon_sym_AMP_AMP, + ACTIONS(7165), 1, anon_sym_PIPE, + ACTIONS(7167), 1, anon_sym_CARET, + ACTIONS(7169), 1, anon_sym_AMP, + ACTIONS(7171), 1, + anon_sym_EQ_EQ, + ACTIONS(7173), 1, + anon_sym_BANG_EQ, + ACTIONS(7175), 1, anon_sym_GT, + ACTIONS(7177), 1, anon_sym_GT_EQ, + ACTIONS(7179), 1, anon_sym_LT_EQ, + ACTIONS(7181), 1, anon_sym_LT, + ACTIONS(7183), 1, anon_sym_LT_LT, + ACTIONS(7185), 1, anon_sym_GT_GT, + ACTIONS(7187), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6135), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7189), 1, anon_sym_QMARK, + ACTIONS(7191), 1, anon_sym_STAR_EQ, + ACTIONS(7193), 1, anon_sym_SLASH_EQ, + ACTIONS(7195), 1, anon_sym_PERCENT_EQ, + ACTIONS(7197), 1, anon_sym_PLUS_EQ, + ACTIONS(7199), 1, anon_sym_DASH_EQ, + ACTIONS(7201), 1, anon_sym_LT_LT_EQ, + ACTIONS(7203), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7205), 1, anon_sym_AMP_EQ, + ACTIONS(7207), 1, anon_sym_CARET_EQ, + ACTIONS(7209), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, + ACTIONS(7213), 1, + anon_sym_or, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7217), 1, anon_sym_bitor, + ACTIONS(7219), 1, + anon_sym_xor, + ACTIONS(7221), 1, anon_sym_bitand, + ACTIONS(7223), 1, anon_sym_not_eq, - anon_sym_GT2, - [85801] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, + ACTIONS(7317), 1, + anon_sym_RPAREN, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, sym_argument_list, - STATE(3948), 1, + STATE(3776), 1, sym_subscript_argument_list, - ACTIONS(7060), 2, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6121), 19, + [86219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6249), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437348,23 +440673,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6123), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6251), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, @@ -437372,6 +440702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -437382,116 +440713,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [85875] = 51, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86279] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7081), 1, + ACTIONS(7314), 1, + anon_sym_LT, + STATE(2099), 1, + sym_template_argument_list, + ACTIONS(6201), 18, anon_sym_DASH, - ACTIONS(7083), 1, anon_sym_PLUS, - ACTIONS(7085), 1, anon_sym_STAR, - ACTIONS(7087), 1, anon_sym_SLASH, - ACTIONS(7089), 1, anon_sym_PERCENT, - ACTIONS(7091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, - anon_sym_AMP_AMP, - ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(7097), 1, anon_sym_CARET, - ACTIONS(7099), 1, anon_sym_AMP, - ACTIONS(7101), 1, - anon_sym_EQ_EQ, - ACTIONS(7103), 1, - anon_sym_BANG_EQ, - ACTIONS(7105), 1, anon_sym_GT, - ACTIONS(7107), 1, - anon_sym_GT_EQ, - ACTIONS(7109), 1, anon_sym_LT_EQ, - ACTIONS(7111), 1, - anon_sym_LT, - ACTIONS(7113), 1, anon_sym_LT_LT, - ACTIONS(7115), 1, anon_sym_GT_GT, - ACTIONS(7117), 1, anon_sym_EQ, - ACTIONS(7119), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6203), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_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(7121), 1, anon_sym_STAR_EQ, - ACTIONS(7123), 1, anon_sym_SLASH_EQ, - ACTIONS(7125), 1, anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, anon_sym_PLUS_EQ, - ACTIONS(7129), 1, anon_sym_DASH_EQ, - ACTIONS(7131), 1, anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, anon_sym_AMP_EQ, - ACTIONS(7137), 1, anon_sym_CARET_EQ, - ACTIONS(7139), 1, anon_sym_PIPE_EQ, - ACTIONS(7141), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, - anon_sym_or, - ACTIONS(7145), 1, - anon_sym_and, - ACTIONS(7147), 1, anon_sym_bitor, - ACTIONS(7149), 1, - anon_sym_xor, - ACTIONS(7151), 1, anon_sym_bitand, - ACTIONS(7153), 1, anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7184), 1, - anon_sym_COMMA, - ACTIONS(7218), 1, - anon_sym_RPAREN, - STATE(1878), 1, - sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - STATE(9194), 1, - sym__fold_operator, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [86031] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 13, + ACTIONS(5649), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -437505,7 +440793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5767), 39, + ACTIONS(5647), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -437545,131 +440833,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [86091] = 7, + [86403] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(7220), 1, - sym_identifier, - ACTIONS(7225), 1, - sym_primitive_type, - STATE(3682), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7223), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5636), 13, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7145), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7147), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(7151), 1, + anon_sym_DASH, + ACTIONS(7153), 1, + anon_sym_PLUS, + ACTIONS(7155), 1, anon_sym_STAR, + ACTIONS(7157), 1, + anon_sym_SLASH, + ACTIONS(7159), 1, + anon_sym_PERCENT, + ACTIONS(7161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5638), 32, + ACTIONS(7165), 1, + anon_sym_PIPE, + ACTIONS(7167), 1, + anon_sym_CARET, + ACTIONS(7169), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [86159] = 6, + ACTIONS(7171), 1, + anon_sym_EQ_EQ, + ACTIONS(7173), 1, + anon_sym_BANG_EQ, + ACTIONS(7175), 1, + anon_sym_GT, + ACTIONS(7177), 1, + anon_sym_GT_EQ, + ACTIONS(7179), 1, + anon_sym_LT_EQ, + ACTIONS(7181), 1, + anon_sym_LT, + ACTIONS(7183), 1, + anon_sym_LT_LT, + ACTIONS(7185), 1, + anon_sym_GT_GT, + ACTIONS(7187), 1, + anon_sym_EQ, + ACTIONS(7189), 1, + anon_sym_QMARK, + ACTIONS(7191), 1, + anon_sym_STAR_EQ, + ACTIONS(7193), 1, + anon_sym_SLASH_EQ, + ACTIONS(7195), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7197), 1, + anon_sym_PLUS_EQ, + ACTIONS(7199), 1, + anon_sym_DASH_EQ, + ACTIONS(7201), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7203), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7205), 1, + anon_sym_AMP_EQ, + ACTIONS(7207), 1, + anon_sym_CARET_EQ, + ACTIONS(7209), 1, + anon_sym_PIPE_EQ, + ACTIONS(7211), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7213), 1, + anon_sym_or, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7217), 1, + anon_sym_bitor, + ACTIONS(7219), 1, + anon_sym_xor, + ACTIONS(7221), 1, + anon_sym_bitand, + ACTIONS(7223), 1, + anon_sym_not_eq, + ACTIONS(7319), 1, + anon_sym_RPAREN, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [86559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5246), 1, - sym_primitive_type, - STATE(2918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6560), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5786), 13, + ACTIONS(5014), 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(5019), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5789), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [86225] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 13, + ACTIONS(5667), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -437683,7 +441012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5594), 39, + ACTIONS(5665), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -437723,10 +441052,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [86285] = 3, + [86679] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(7321), 1, + anon_sym___attribute__, + ACTIONS(7323), 1, + anon_sym_LBRACE, + STATE(4380), 1, + sym_field_declaration_list, + STATE(4556), 1, + sym_attribute_specifier, + STATE(7615), 1, + sym_virtual_specifier, + STATE(8331), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5315), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5317), 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, + [86755] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6184), 20, + ACTIONS(7325), 1, + anon_sym_LT, + STATE(3794), 1, + sym_template_argument_list, + ACTIONS(6356), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437737,17 +441135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6186), 32, + ACTIONS(6358), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -437757,7 +441153,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, @@ -437780,28 +441176,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [86345] = 7, + [86819] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7241), 1, + anon_sym_AMP_AMP, + ACTIONS(7243), 1, + anon_sym_PIPE, + ACTIONS(7247), 1, + anon_sym_AMP, + ACTIONS(7257), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7259), 1, + anon_sym_or, + ACTIONS(7261), 1, + anon_sym_and, + ACTIONS(7263), 1, + anon_sym_bitor, + ACTIONS(7265), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(6681), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7139), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7245), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7237), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7251), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6683), 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, + [86923] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7328), 1, sym_identifier, - STATE(3649), 3, + STATE(3696), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(5648), 5, + ACTIONS(5784), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(5650), 5, + ACTIONS(5786), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5216), 17, + ACTIONS(5236), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -437819,7 +441294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5214), 21, + ACTIONS(5234), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -437841,71 +441316,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [86413] = 25, + [86991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7032), 1, - anon_sym_AMP_AMP, - ACTIONS(7034), 1, + ACTIONS(6145), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7038), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7046), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(7050), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7052), 1, + anon_sym_EQ, anon_sym_or, - ACTIONS(7054), 1, anon_sym_and, - ACTIONS(7056), 1, - anon_sym_bitor, - ACTIONS(7058), 1, - anon_sym_bitand, - ACTIONS(7062), 1, + anon_sym_xor, anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(6646), 2, - anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(6147), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, - ACTIONS(7026), 2, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [87051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5416), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7036), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(7044), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7060), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5414), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, - ACTIONS(7064), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7028), 3, + anon_sym_DASH_GT_STAR, + [87111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6049), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7040), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7042), 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(6648), 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(6051), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, @@ -437913,74 +441472,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_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, - [86517] = 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, + [87171] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 13, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7145), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7147), 1, anon_sym_COMMA, + ACTIONS(7151), 1, + anon_sym_DASH, + ACTIONS(7153), 1, + anon_sym_PLUS, + ACTIONS(7155), 1, + anon_sym_STAR, + ACTIONS(7157), 1, + anon_sym_SLASH, + ACTIONS(7159), 1, + anon_sym_PERCENT, + ACTIONS(7161), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7163), 1, + anon_sym_AMP_AMP, + ACTIONS(7165), 1, + anon_sym_PIPE, + ACTIONS(7167), 1, + anon_sym_CARET, + ACTIONS(7169), 1, + anon_sym_AMP, + ACTIONS(7171), 1, + anon_sym_EQ_EQ, + ACTIONS(7173), 1, + anon_sym_BANG_EQ, + ACTIONS(7175), 1, + anon_sym_GT, + ACTIONS(7177), 1, + anon_sym_GT_EQ, + ACTIONS(7179), 1, + anon_sym_LT_EQ, + ACTIONS(7181), 1, + anon_sym_LT, + ACTIONS(7183), 1, + anon_sym_LT_LT, + ACTIONS(7185), 1, + anon_sym_GT_GT, + ACTIONS(7187), 1, + anon_sym_EQ, + ACTIONS(7189), 1, + anon_sym_QMARK, + ACTIONS(7191), 1, + anon_sym_STAR_EQ, + ACTIONS(7193), 1, + anon_sym_SLASH_EQ, + ACTIONS(7195), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7197), 1, + anon_sym_PLUS_EQ, + ACTIONS(7199), 1, + anon_sym_DASH_EQ, + ACTIONS(7201), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7203), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7205), 1, + anon_sym_AMP_EQ, + ACTIONS(7207), 1, + anon_sym_CARET_EQ, + ACTIONS(7209), 1, + anon_sym_PIPE_EQ, + ACTIONS(7211), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7213), 1, + anon_sym_or, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7217), 1, + anon_sym_bitor, + ACTIONS(7219), 1, + anon_sym_xor, + ACTIONS(7221), 1, + anon_sym_bitand, + ACTIONS(7223), 1, + anon_sym_not_eq, + ACTIONS(7330), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5598), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86577] = 3, + STATE(1856), 1, + sym__binary_fold_operator, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, + sym__fold_operator, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [87327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 19, + ACTIONS(6477), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438000,7 +441615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5388), 33, + ACTIONS(6479), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -438034,23 +441649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [86637] = 9, + [87387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6162), 19, + ACTIONS(6004), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438060,23 +441662,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6164), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6006), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, @@ -438084,6 +441691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -438096,68 +441704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [86709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5697), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5695), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86769] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 16, + ACTIONS(6700), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438172,9 +441724,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, anon_sym_DASH_GT, - ACTIONS(5781), 36, + sym_literal_suffix, + ACTIONS(6702), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438184,8 +441746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -438199,127 +441759,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [86829] = 51, + [87507] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(7075), 1, + ACTIONS(6865), 1, + anon_sym_DOT_STAR, + ACTIONS(6867), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7145), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7077), 1, + ACTIONS(7147), 1, anon_sym_COMMA, - ACTIONS(7081), 1, + ACTIONS(7151), 1, anon_sym_DASH, - ACTIONS(7083), 1, + ACTIONS(7153), 1, anon_sym_PLUS, - ACTIONS(7085), 1, + ACTIONS(7155), 1, anon_sym_STAR, - ACTIONS(7087), 1, + ACTIONS(7157), 1, anon_sym_SLASH, - ACTIONS(7089), 1, + ACTIONS(7159), 1, anon_sym_PERCENT, - ACTIONS(7091), 1, + ACTIONS(7161), 1, anon_sym_PIPE_PIPE, - ACTIONS(7093), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7095), 1, + ACTIONS(7165), 1, anon_sym_PIPE, - ACTIONS(7097), 1, + ACTIONS(7167), 1, anon_sym_CARET, - ACTIONS(7099), 1, + ACTIONS(7169), 1, anon_sym_AMP, - ACTIONS(7101), 1, + ACTIONS(7171), 1, anon_sym_EQ_EQ, - ACTIONS(7103), 1, + ACTIONS(7173), 1, anon_sym_BANG_EQ, - ACTIONS(7105), 1, + ACTIONS(7175), 1, anon_sym_GT, - ACTIONS(7107), 1, + ACTIONS(7177), 1, anon_sym_GT_EQ, - ACTIONS(7109), 1, + ACTIONS(7179), 1, anon_sym_LT_EQ, - ACTIONS(7111), 1, + ACTIONS(7181), 1, anon_sym_LT, - ACTIONS(7113), 1, + ACTIONS(7183), 1, anon_sym_LT_LT, - ACTIONS(7115), 1, + ACTIONS(7185), 1, anon_sym_GT_GT, - ACTIONS(7117), 1, + ACTIONS(7187), 1, anon_sym_EQ, - ACTIONS(7119), 1, + ACTIONS(7189), 1, anon_sym_QMARK, - ACTIONS(7121), 1, + ACTIONS(7191), 1, anon_sym_STAR_EQ, - ACTIONS(7123), 1, + ACTIONS(7193), 1, anon_sym_SLASH_EQ, - ACTIONS(7125), 1, + ACTIONS(7195), 1, anon_sym_PERCENT_EQ, - ACTIONS(7127), 1, + ACTIONS(7197), 1, anon_sym_PLUS_EQ, - ACTIONS(7129), 1, + ACTIONS(7199), 1, anon_sym_DASH_EQ, - ACTIONS(7131), 1, + ACTIONS(7201), 1, anon_sym_LT_LT_EQ, - ACTIONS(7133), 1, + ACTIONS(7203), 1, anon_sym_GT_GT_EQ, - ACTIONS(7135), 1, + ACTIONS(7205), 1, anon_sym_AMP_EQ, - ACTIONS(7137), 1, + ACTIONS(7207), 1, anon_sym_CARET_EQ, - ACTIONS(7139), 1, + ACTIONS(7209), 1, anon_sym_PIPE_EQ, - ACTIONS(7141), 1, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, - ACTIONS(7143), 1, + ACTIONS(7213), 1, anon_sym_or, - ACTIONS(7145), 1, + ACTIONS(7215), 1, anon_sym_and, - ACTIONS(7147), 1, + ACTIONS(7217), 1, anon_sym_bitor, - ACTIONS(7149), 1, + ACTIONS(7219), 1, anon_sym_xor, - ACTIONS(7151), 1, + ACTIONS(7221), 1, anon_sym_bitand, - ACTIONS(7153), 1, + ACTIONS(7223), 1, anon_sym_not_eq, - ACTIONS(7157), 1, - anon_sym_DOT_STAR, - ACTIONS(7159), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(7229), 1, + ACTIONS(7332), 1, anon_sym_RPAREN, - STATE(1878), 1, + STATE(1856), 1, sym__binary_fold_operator, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - STATE(9194), 1, + STATE(3776), 1, + sym_subscript_argument_list, + STATE(9013), 1, sym__fold_operator, - ACTIONS(6887), 2, + ACTIONS(6863), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7155), 2, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [87663] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7338), 1, + anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7350), 1, + anon_sym_bitand, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [86985] = 3, + ACTIONS(7334), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7336), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6153), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [87754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 20, + ACTIONS(6363), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438333,14 +441957,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(5388), 32, + ACTIONS(6365), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438350,7 +441973,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, @@ -438373,71 +441996,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [87045] = 25, + [87813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5614), 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(5616), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7030), 1, anon_sym_PIPE_PIPE, - ACTIONS(7032), 1, anon_sym_AMP_AMP, - ACTIONS(7034), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_AMP, - ACTIONS(7046), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7050), 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, - ACTIONS(7052), 1, anon_sym_or, - ACTIONS(7054), 1, anon_sym_and, - ACTIONS(7056), 1, anon_sym_bitor, - ACTIONS(7058), 1, - anon_sym_bitand, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(6607), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7026), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7036), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(7044), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7060), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7064), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7028), 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [87872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7040), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7042), 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(6609), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5620), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -438445,17 +442091,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, - [87149] = 3, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [87931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 21, + ACTIONS(6407), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438465,27 +442121,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(5917), 30, + anon_sym_DASH_GT, + ACTIONS(6409), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -438493,6 +442149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -438506,12 +442163,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, - [87208] = 3, + anon_sym_DASH_GT_STAR, + [87990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6283), 19, + ACTIONS(5622), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438526,12 +442182,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(6285), 32, + ACTIONS(5624), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438541,6 +442194,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, @@ -438553,106 +442207,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [87267] = 24, + [88049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(7231), 1, + ACTIONS(5635), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(7233), 1, - anon_sym_AMP_AMP, - ACTIONS(7235), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7237), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5637), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6309), 1, - sym__scope_resolution, - STATE(7051), 1, - sym__declarator, - STATE(8622), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3901), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4556), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [87368] = 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, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [88108] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 16, + ACTIONS(7356), 1, + sym_identifier, + STATE(3733), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7359), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7362), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5210), 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, @@ -438661,10 +442316,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5263), 35, + ACTIONS(5208), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -438673,34 +442327,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [87427] = 3, + anon_sym_GT2, + [88175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 16, + ACTIONS(5614), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438717,7 +442356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5705), 35, + ACTIONS(5616), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438753,10 +442392,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [87486] = 3, + [88234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 19, + ACTIONS(5799), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438771,12 +442410,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(6258), 32, + ACTIONS(5801), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438786,6 +442422,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, @@ -438798,21 +442435,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [87545] = 3, + [88293] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5278), 1, + sym_primitive_type, + STATE(2012), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5282), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5769), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5766), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [88358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 16, + ACTIONS(5758), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438829,7 +442527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5686), 35, + ACTIONS(5760), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438865,10 +442563,26 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [87604] = 3, + [88417] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6313), 19, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6151), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438886,19 +442600,14 @@ 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(6315), 32, + ACTIONS(6153), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -438917,76 +442626,87 @@ 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, - [87663] = 9, + [88490] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(7241), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - STATE(3825), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3859), 1, - sym_argument_list, - STATE(4184), 1, - sym_initializer_list, - ACTIONS(7191), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5537), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7338), 1, + anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7350), 1, + anon_sym_bitand, + ACTIONS(7352), 1, + anon_sym_DOT, + ACTIONS(7365), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(7367), 1, + anon_sym_PIPE, + ACTIONS(7371), 1, + anon_sym_and, + ACTIONS(7373), 1, + anon_sym_bitor, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6151), 2, anon_sym_EQ, - ACTIONS(5535), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [87734] = 3, + anon_sym_or, + ACTIONS(7334), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7369), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7336), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [88591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 19, + ACTIONS(5730), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439001,12 +442721,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(4970), 32, + ACTIONS(5732), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439016,6 +442733,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, @@ -439028,22 +442746,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [87793] = 3, + [88650] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 21, - aux_sym_preproc_elif_token1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + STATE(1974), 1, + sym_template_argument_list, + STATE(2487), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5058), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5593), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -439052,26 +442782,12 @@ 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_COLON, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5153), 30, + ACTIONS(5595), 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, @@ -439084,21 +442800,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [87852] = 3, + sym_auto, + anon_sym_decltype, + [88717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6429), 19, + ACTIONS(5772), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439113,12 +442837,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(6431), 32, + ACTIONS(5774), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439128,6 +442849,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, @@ -439140,123 +442862,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [87911] = 3, + [88776] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 21, - aux_sym_preproc_elif_token1, + ACTIONS(7375), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7377), 1, + anon_sym_AMP_AMP, + ACTIONS(7379), 1, + anon_sym_or, + ACTIONS(7381), 1, + anon_sym_and, + ACTIONS(6165), 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_or, - anon_sym_and, - anon_sym_bitor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5153), 30, + anon_sym_DASH_GT, + ACTIONS(6167), 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_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [87970] = 14, + anon_sym_DASH_GT_STAR, + [88843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7250), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, + ACTIONS(5776), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7248), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7246), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 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(6172), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5778), 35, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439268,96 +442978,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, - [88051] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7256), 1, - anon_sym_typedef, - ACTIONS(3474), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3472), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [88112] = 12, + anon_sym_DASH_GT_STAR, + [88902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, + ACTIONS(5179), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7246), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -439370,14 +443012,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6172), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5181), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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, @@ -439396,10 +443043,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [88189] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88961] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 19, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6177), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439417,19 +443084,14 @@ 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(4970), 32, + ACTIONS(6179), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439448,14 +443110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [88248] = 3, + [89034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 19, + ACTIONS(5175), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439475,7 +443133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4970), 32, + ACTIONS(5177), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439508,66 +443166,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [88307] = 3, + [89093] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 19, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7383), 1, + anon_sym_LT, + STATE(2278), 1, + sym_template_argument_list, + STATE(2487), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5058), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4135), 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_xor, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4970), 32, + ACTIONS(4143), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [88366] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [89162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 19, + ACTIONS(6012), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439577,27 +443240,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(4970), 32, + ACTIONS(6014), 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, @@ -439605,7 +443268,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -439619,11 +443281,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, - [88425] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [89221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 19, + ACTIONS(6008), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439633,27 +443296,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(4970), 32, + ACTIONS(6010), 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, @@ -439661,7 +443324,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -439675,55 +443337,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, - [88484] = 13, + anon_sym_DASH_GT, + anon_sym_GT2, + [89280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, + ACTIONS(6004), 21, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7248), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7246), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 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_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6172), 25, + anon_sym_DOT, + ACTIONS(6006), 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, @@ -439731,7 +443380,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -439742,10 +443390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [88563] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [89339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 19, + ACTIONS(6000), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439755,27 +443408,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(6454), 32, + ACTIONS(6002), 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, @@ -439783,7 +443436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -439797,41 +443449,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, - [88622] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [89398] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 21, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7336), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4022), 30, + ACTIONS(6153), 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_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -439839,6 +443504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -439849,76 +443515,23 @@ 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, - [88681] = 8, + [89473] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(7258), 1, + ACTIONS(7385), 1, anon_sym_LT, - STATE(3750), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4097), 1, + STATE(2278), 1, sym_template_argument_list, - ACTIONS(4165), 4, + STATE(4006), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7298), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4145), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4137), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [88750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5151), 21, + ACTIONS(4135), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -439927,8 +443540,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_or, anon_sym_and, anon_sym_bitor, @@ -439937,13 +443548,11 @@ 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(5153), 30, + sym_auto, + anon_sym_decltype, + ACTIONS(4143), 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, @@ -439959,99 +443568,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [88809] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7260), 1, - anon_sym_STAR, - ACTIONS(7262), 1, - anon_sym_AMP_AMP, - ACTIONS(7264), 1, - anon_sym_AMP, - ACTIONS(7266), 1, - anon_sym_COLON_COLON, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6227), 1, - sym__scope_resolution, - STATE(6694), 1, - sym__declarator, - STATE(8480), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4584), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5441), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [88910] = 3, + [89542] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5751), 16, + ACTIONS(7387), 1, + anon_sym_LT, + STATE(3599), 1, + sym_template_argument_list, + ACTIONS(6201), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440061,24 +443593,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(5753), 35, + ACTIONS(6203), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -440087,27 +443619,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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [88969] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [89605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 16, + ACTIONS(2830), 1, + anon_sym_LBRACE, + ACTIONS(6759), 1, + anon_sym_LPAREN2, + STATE(4253), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5943), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440124,17 +443661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5757), 35, + ACTIONS(5945), 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, @@ -440157,13 +443692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [89028] = 3, + [89670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 16, + ACTIONS(6403), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440178,9 +443711,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(5765), 35, + ACTIONS(6405), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -440190,7 +443726,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, @@ -440203,52 +443738,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [89087] = 3, + [89729] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 16, + ACTIONS(7390), 1, + sym_identifier, + ACTIONS(7395), 1, + sym_primitive_type, + STATE(3736), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5815), 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_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(5769), 35, + sym_auto, + anon_sym_decltype, + ACTIONS(5813), 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [89796] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6469), 1, + anon_sym_EQ, + ACTIONS(6616), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7338), 1, + anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7350), 1, + anon_sym_bitand, + ACTIONS(7352), 1, + anon_sym_DOT, + ACTIONS(7365), 1, + anon_sym_AMP_AMP, + ACTIONS(7367), 1, + anon_sym_PIPE, + ACTIONS(7371), 1, + anon_sym_and, + ACTIONS(7373), 1, + anon_sym_bitor, + ACTIONS(7397), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7399), 1, + anon_sym_QMARK, + ACTIONS(7401), 1, + anon_sym_or, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7334), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7369), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7336), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6471), 14, + anon_sym_COLON, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -440259,102 +443887,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, + [89905] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6681), 1, + anon_sym_EQ, + ACTIONS(7338), 1, + anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, anon_sym_LT_EQ_GT, - anon_sym_or, + ACTIONS(7350), 1, + anon_sym_bitand, + ACTIONS(7352), 1, + anon_sym_DOT, + ACTIONS(7365), 1, + anon_sym_AMP_AMP, + ACTIONS(7367), 1, + anon_sym_PIPE, + ACTIONS(7371), 1, anon_sym_and, + ACTIONS(7373), 1, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7397), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7401), 1, + anon_sym_or, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7334), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7354), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [89146] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7268), 1, + anon_sym_DASH_GT, + ACTIONS(7369), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7336), 3, anon_sym_STAR, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - ACTIONS(7272), 1, - anon_sym_AMP, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6263), 1, - sym__scope_resolution, - STATE(6807), 1, - sym__declarator, - STATE(8562), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3781), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4559), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [89247] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5644), 1, - anon_sym_EQ, - ACTIONS(5646), 13, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6683), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -440368,7 +443969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(4147), 17, + [90010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6439), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440382,42 +443986,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, - ACTIONS(4139), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT, - [89310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6689), 24, + ACTIONS(6441), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -440426,35 +444010,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(6687), 27, + anon_sym_DASH_GT_STAR, + [90069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2186), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -440462,11 +444046,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - [89369] = 3, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(2184), 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_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, + [90128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 16, + ACTIONS(6320), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440481,9 +444099,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(5773), 35, + ACTIONS(6322), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -440493,7 +444114,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, @@ -440506,23 +444126,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [89428] = 3, + [90187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 16, + ACTIONS(7110), 1, + anon_sym_LT, + STATE(1944), 1, + sym_template_argument_list, + ACTIONS(6201), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440533,13 +444155,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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5777), 35, + ACTIONS(6203), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -440549,7 +444172,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, @@ -440562,51 +444184,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [89487] = 4, + anon_sym_DASH_GT, + [90250] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7274), 1, - anon_sym_namespace, - ACTIONS(6675), 6, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, anon_sym_LPAREN2, + ACTIONS(3042), 1, anon_sym_TILDE, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(7403), 1, anon_sym_STAR, + ACTIONS(7405), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6673), 44, + ACTIONS(7407), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(7409), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6359), 1, + sym__scope_resolution, + STATE(7119), 1, + sym__declarator, + STATE(8653), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3819), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4614), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -440618,80 +444272,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [89548] = 3, + [90351] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 21, - aux_sym_preproc_elif_token1, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6245), 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_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5186), 30, + ACTIONS(6247), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [89607] = 3, + [90422] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, + anon_sym_STAR, + ACTIONS(7415), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_AMP, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6348), 1, + sym__scope_resolution, + STATE(6614), 1, + sym__declarator, + STATE(8879), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3830), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4587), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 19, + ACTIONS(6419), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440711,7 +444434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6250), 32, + ACTIONS(6421), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -440744,123 +444467,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [89666] = 3, + [90582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 21, - aux_sym_preproc_elif_token1, + ACTIONS(6249), 21, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5194), 30, + ACTIONS(6251), 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_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [89725] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7276), 1, - anon_sym_typedef, - ACTIONS(3474), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3472), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [89786] = 3, + anon_sym_GT2, + [90641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 21, + ACTIONS(5201), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -440882,7 +444548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5182), 30, + ACTIONS(5203), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -440913,10 +444579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [89845] = 3, + [90700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 19, + ACTIONS(6269), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440936,7 +444602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 32, + ACTIONS(6271), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -440969,222 +444635,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [89904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5257), 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(5259), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [89963] = 5, + [90759] = 26, ACTIONS(3), 1, sym_comment, - STATE(3739), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7278), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5248), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5354), 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_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5246), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6135), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [90026] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3868), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7281), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5944), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(6673), 1, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5946), 33, + ACTIONS(7338), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [90089] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7350), 1, + anon_sym_bitand, + ACTIONS(7352), 1, anon_sym_DOT, - STATE(2791), 1, + ACTIONS(7365), 1, + anon_sym_AMP_AMP, + ACTIONS(7367), 1, + anon_sym_PIPE, + ACTIONS(7371), 1, + anon_sym_and, + ACTIONS(7373), 1, + anon_sym_bitor, + ACTIONS(7397), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7401), 1, + anon_sym_or, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6214), 17, + ACTIONS(7334), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7369), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7336), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7342), 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(6216), 25, + ACTIONS(6675), 16, 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -441200,61 +444714,66 @@ 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, - [90162] = 16, + [90864] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7250), 1, + ACTIONS(7338), 1, + anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, + ACTIONS(7350), 1, + anon_sym_bitand, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - STATE(2791), 1, + ACTIONS(7367), 1, + anon_sym_PIPE, + ACTIONS(7373), 1, + anon_sym_bitor, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, + ACTIONS(7334), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7248), 2, + ACTIONS(7346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7246), 3, + ACTIONS(7369), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6151), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7336), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7283), 3, + ACTIONS(7340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7342), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6172), 23, + ACTIONS(6153), 18, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -441270,75 +444789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [90247] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3825), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7191), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5592), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5590), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [90310] = 5, + [90961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6870), 1, - anon_sym_LT, - STATE(1910), 1, - sym_template_argument_list, - ACTIONS(6095), 17, + ACTIONS(6340), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441349,6 +444803,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, @@ -441356,7 +444811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6097), 32, + anon_sym_DASH_GT, + ACTIONS(6342), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441388,84 +444844,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, - [90373] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7287), 1, - anon_sym_namespace, - ACTIONS(6675), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6673), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [90434] = 10, + anon_sym_DASH_GT_STAR, + [91020] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6190), 17, + ACTIONS(6229), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441483,7 +444882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6192), 25, + ACTIONS(6231), 25, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -441509,10 +444908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [90507] = 3, + [91093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6102), 19, + ACTIONS(6377), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441532,7 +444931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6104), 32, + ACTIONS(6379), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441565,207 +444964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [90566] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7289), 1, - sym_identifier, - STATE(3766), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5058), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5060), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5216), 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(5214), 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, - [90633] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6626), 1, - anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, - anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - ACTIONS(7291), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7293), 1, - anon_sym_AMP_AMP, - ACTIONS(7295), 1, - anon_sym_PIPE, - ACTIONS(7299), 1, - anon_sym_AMP, - ACTIONS(7303), 1, - anon_sym_or, - ACTIONS(7305), 1, - anon_sym_and, - ACTIONS(7307), 1, - anon_sym_bitor, - ACTIONS(7309), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7248), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7297), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7246), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7283), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7301), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6628), 16, - anon_sym_DOT_DOT_DOT, - 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, - [90738] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3739), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7311), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5909), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5911), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [90801] = 3, + [91152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6317), 19, + ACTIONS(5228), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441785,7 +444987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6319), 32, + ACTIONS(5230), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441818,59 +445020,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [90860] = 24, + [91211] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(5298), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(7231), 1, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7233), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7235), 1, + ACTIONS(7417), 1, anon_sym_AMP, - ACTIONS(7237), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(5775), 1, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(6309), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(7109), 1, + STATE(6655), 1, sym__declarator, - STATE(8622), 1, + STATE(8879), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3847), 2, + STATE(3968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4571), 2, + STATE(4623), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -441882,7 +445084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -441895,10 +445097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [90961] = 3, + [91312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6333), 19, + ACTIONS(7419), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6181), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441908,27 +445112,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6335), 32, + ACTIONS(6183), 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, @@ -441936,7 +445139,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -441950,67 +445152,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [91020] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [91373] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 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_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(5210), 30, + STATE(3804), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6020), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_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_RBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6022), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [91079] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [91436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 19, + ACTIONS(6340), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442030,7 +445235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6240), 32, + ACTIONS(6342), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -442063,142 +445268,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [91138] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7313), 1, - anon_sym_STAR, - ACTIONS(7315), 1, - anon_sym_AMP_AMP, - ACTIONS(7317), 1, - anon_sym_AMP, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6263), 1, - sym__scope_resolution, - STATE(6644), 1, - sym__declarator, - STATE(9289), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4578), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5441), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [91239] = 26, + [91495] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(61), 1, anon_sym_const, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7329), 1, + ACTIONS(7433), 1, anon_sym_LBRACK, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7342), 1, + ACTIONS(7445), 1, anon_sym_requires, - STATE(5294), 1, + STATE(5310), 1, sym__function_attributes_start, - STATE(5388), 1, + STATE(5412), 1, sym_ref_qualifier, - STATE(6340), 1, + STATE(6374), 1, sym__function_attributes_end, - STATE(6508), 1, + STATE(6493), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7335), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(4731), 2, + STATE(4766), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5252), 2, + STATE(5312), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6595), 2, + STATE(6656), 2, sym__function_postfix, sym_requires_clause, - STATE(5814), 3, + STATE(5852), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7319), 8, + ACTIONS(7423), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -442207,85 +445335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [91344] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7268), 1, - anon_sym_STAR, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - ACTIONS(7272), 1, - anon_sym_AMP, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6263), 1, - sym__scope_resolution, - STATE(6807), 1, - sym__declarator, - STATE(8562), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4559), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5441), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(7429), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -442296,10 +445347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [91445] = 3, + [91600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 21, + ACTIONS(5183), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -442321,7 +445372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5149), 30, + ACTIONS(5185), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -442352,230 +445403,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [91504] = 3, + [91659] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5206), 30, + STATE(3804), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6026), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [91563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4016), 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(4018), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_GT2, - [91622] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(6748), 1, - anon_sym_LPAREN2, - STATE(4150), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5997), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6028), 33, anon_sym_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(5999), 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___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [91687] = 24, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [91722] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7260), 1, + ACTIONS(7447), 1, anon_sym_STAR, - ACTIONS(7262), 1, + ACTIONS(7449), 1, anon_sym_AMP_AMP, - ACTIONS(7264), 1, + ACTIONS(7451), 1, anon_sym_AMP, - ACTIONS(7266), 1, + ACTIONS(7453), 1, anon_sym_COLON_COLON, - STATE(5775), 1, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(6227), 1, + STATE(6354), 1, sym__scope_resolution, - STATE(6694), 1, + STATE(6639), 1, sym__declarator, - STATE(8480), 1, + STATE(8511), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3877), 2, + STATE(3882), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4584), 2, + STATE(4611), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -442587,7 +445525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -442600,10 +445538,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [91788] = 3, + [91823] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 16, + ACTIONS(2830), 1, + anon_sym_LBRACE, + ACTIONS(6759), 1, + anon_sym_LPAREN2, + STATE(4278), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6030), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442620,17 +445565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5725), 35, + ACTIONS(6032), 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, @@ -442653,13 +445596,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [91847] = 3, + [91888] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 19, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6241), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442677,19 +445634,14 @@ 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(6305), 32, + ACTIONS(6243), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442708,123 +445660,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [91906] = 7, + [91961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, - sym_identifier, - STATE(3858), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5058), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5060), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5200), 18, + ACTIONS(6381), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5198), 19, + anon_sym_DASH_GT, + ACTIONS(6383), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [91973] = 17, + anon_sym_DASH_GT_STAR, + [92020] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7250), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7248), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7246), 3, + ACTIONS(6197), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7283), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7301), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6170), 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(6172), 20, + ACTIONS(6199), 27, 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -442840,12 +445772,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, - [92060] = 3, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [92091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6373), 19, + ACTIONS(5195), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442865,7 +445801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6375), 32, + ACTIONS(5197), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -442898,69 +445834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [92119] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5246), 1, - sym_primitive_type, - STATE(1982), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5250), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5789), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5786), 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, - [92184] = 3, + [92150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 16, + ACTIONS(6257), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442975,9 +445852,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(5731), 35, + ACTIONS(6259), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -442987,7 +445867,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, @@ -443000,79 +445879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [92243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5172), 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_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(5174), 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_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, - [92302] = 3, + [92209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 16, + ACTIONS(6193), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443087,9 +445908,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(5615), 35, + ACTIONS(6195), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443099,7 +445923,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, @@ -443112,30 +445935,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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [92361] = 6, + [92268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(6748), 1, - anon_sym_LPAREN2, - STATE(4211), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5966), 16, + ACTIONS(5246), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443150,12 +445964,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5968), 31, + ACTIONS(5248), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -443173,21 +445991,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, - [92426] = 3, + [92327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 16, + ACTIONS(6435), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443202,9 +446020,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(5623), 35, + ACTIONS(6437), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443214,7 +446035,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, @@ -443227,23 +446047,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [92485] = 3, + [92386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6299), 19, + ACTIONS(6443), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443263,7 +446081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6301), 32, + ACTIONS(6445), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443296,10 +446114,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [92544] = 3, + [92445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 19, + ACTIONS(5780), 1, + anon_sym_EQ, + ACTIONS(5782), 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(4145), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443313,37 +446147,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6289), 32, + ACTIONS(4137), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -443351,13 +446171,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, - [92603] = 4, + anon_sym_DASH_GT, + [92508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7347), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6184), 21, + ACTIONS(6049), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443379,7 +446197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6186), 29, + ACTIONS(6051), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -443387,6 +446205,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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -443409,17 +446228,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [92664] = 5, + [92567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7455), 1, + anon_sym_typedef, + ACTIONS(3590), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3588), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [92628] = 8, ACTIONS(3), 1, sym_comment, - STATE(3865), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LT, + STATE(3867), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7349), 4, + STATE(4129), 1, + sym_template_argument_list, + ACTIONS(4163), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5938), 13, + ACTIONS(4143), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443427,13 +446309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5940), 33, + ACTIONS(4135), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -443467,10 +446346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [92727] = 3, + [92697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6279), 19, + ACTIONS(2830), 1, + anon_sym_LBRACE, + ACTIONS(6759), 1, + anon_sym_LPAREN2, + STATE(4240), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5931), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443485,16 +446371,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(6281), 32, + ACTIONS(5933), 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, @@ -443512,151 +446394,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [92786] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6630), 1, - anon_sym_EQ, - ACTIONS(6632), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7250), 1, anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, - anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - ACTIONS(7291), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7293), 1, - anon_sym_AMP_AMP, - ACTIONS(7295), 1, - anon_sym_PIPE, - ACTIONS(7299), 1, - anon_sym_AMP, - ACTIONS(7303), 1, anon_sym_or, - ACTIONS(7305), 1, anon_sym_and, - ACTIONS(7307), 1, anon_sym_bitor, - ACTIONS(7309), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7351), 1, - anon_sym_QMARK, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7248), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7254), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7297), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7246), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7283), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7301), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6634), 14, - 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, - [92895] = 24, + anon_sym_DASH_GT_STAR, + [92762] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(5330), 1, sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7268), 1, + ACTIONS(7403), 1, anon_sym_STAR, - ACTIONS(7270), 1, + ACTIONS(7405), 1, anon_sym_AMP_AMP, - ACTIONS(7272), 1, + ACTIONS(7407), 1, anon_sym_AMP, - STATE(5775), 1, + ACTIONS(7409), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(6263), 1, + STATE(6359), 1, sym__scope_resolution, - STATE(6805), 1, + STATE(7115), 1, sym__declarator, - STATE(8562), 1, + STATE(8653), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4553), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5441), 2, + STATE(3908), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, + STATE(4610), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -443668,8 +446469,59 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92863] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3804), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5962), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5964), 33, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + 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, @@ -443681,10 +446533,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [92996] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [92926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 16, + ACTIONS(5750), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443701,7 +446560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5619), 35, + ACTIONS(5752), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443737,10 +446596,68 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [93055] = 3, + [92985] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3804), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7459), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5280), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5278), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [93048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 16, + ACTIONS(5746), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443757,7 +446674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5615), 35, + ACTIONS(5748), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443793,10 +446710,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [93114] = 3, + [93107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 19, + ACTIONS(5742), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443811,12 +446728,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(6262), 32, + ACTIONS(5744), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443826,6 +446740,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, @@ -443838,81 +446753,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [93173] = 26, + [93166] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6640), 1, - anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, - anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - ACTIONS(7291), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7293), 1, - anon_sym_AMP_AMP, - ACTIONS(7295), 1, - anon_sym_PIPE, - ACTIONS(7299), 1, + ACTIONS(7338), 1, anon_sym_AMP, - ACTIONS(7303), 1, - anon_sym_or, - ACTIONS(7305), 1, - anon_sym_and, - ACTIONS(7307), 1, - anon_sym_bitor, - ACTIONS(7309), 1, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7350), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, + ACTIONS(7334), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7248), 2, + ACTIONS(7346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7297), 2, + ACTIONS(7369), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7246), 3, + ACTIONS(7336), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7283), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7301), 3, + ACTIONS(7340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6642), 16, + ACTIONS(7342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6153), 19, anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -443928,136 +446838,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [93278] = 24, + anon_sym_bitor, + [93259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(5179), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7268), 1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5181), 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, - ACTIONS(7270), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7272), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [93318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6181), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6263), 1, - sym__scope_resolution, - STATE(6854), 1, - sym__declarator, - STATE(8562), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3758), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4579), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [93379] = 24, + anon_sym_GT, + anon_sym_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(6183), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [93377] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7447), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7449), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7451), 1, anon_sym_AMP, - STATE(5775), 1, + ACTIONS(7453), 1, + anon_sym_COLON_COLON, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(6263), 1, + STATE(6354), 1, sym__scope_resolution, - STATE(6692), 1, + STATE(6639), 1, sym__declarator, - STATE(9289), 1, + STATE(8511), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3809), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4594), 2, + STATE(4611), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -444069,7 +447015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -444082,59 +447028,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93480] = 24, + [93478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 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(5740), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [93537] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(7239), 1, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7260), 1, + ACTIONS(7462), 1, anon_sym_STAR, - ACTIONS(7262), 1, + ACTIONS(7464), 1, anon_sym_AMP_AMP, - ACTIONS(7264), 1, + ACTIONS(7466), 1, anon_sym_AMP, - ACTIONS(7266), 1, - anon_sym_COLON_COLON, - STATE(5775), 1, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(6227), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(6621), 1, + STATE(6893), 1, sym__declarator, - STATE(8480), 1, + STATE(8593), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3721), 2, + STATE(3948), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4568), 2, + STATE(4619), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -444146,7 +447148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -444159,82 +447161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93581] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7250), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, - anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - ACTIONS(7299), 1, - anon_sym_AMP, - ACTIONS(7309), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7248), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7246), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7283), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7301), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6170), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6172), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - [93672] = 3, + [93638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 21, + ACTIONS(5681), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444244,164 +447174,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(6007), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [93731] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6053), 1, - sym_literal_suffix, - ACTIONS(4139), 24, + ACTIONS(5683), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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(4147), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - [93792] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7250), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, - anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - ACTIONS(7299), 1, - anon_sym_AMP, - ACTIONS(7309), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7248), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7297), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7246), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7283), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7301), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6170), 4, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6172), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444413,113 +447204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - [93885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5962), 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(5964), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [93944] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - STATE(1935), 1, - sym_template_argument_list, - STATE(2391), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5028), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5566), 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(5568), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -444530,88 +447214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [94011] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7250), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, - anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - ACTIONS(7295), 1, - anon_sym_PIPE, - ACTIONS(7299), 1, - anon_sym_AMP, - ACTIONS(7307), 1, - anon_sym_bitor, - ACTIONS(7309), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7248), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7297), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6170), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7246), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7283), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7301), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6172), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [94108] = 3, + anon_sym_DASH_GT_STAR, + [93697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 19, + ACTIONS(5707), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444626,12 +447235,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(6212), 32, + ACTIONS(5709), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -444641,6 +447247,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, @@ -444653,98 +447260,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [94167] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, + sym_auto, anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, - anon_sym_STAR, - ACTIONS(7357), 1, - anon_sym_AMP_AMP, - ACTIONS(7359), 1, - anon_sym_AMP, - ACTIONS(7361), 1, - anon_sym_COLON_COLON, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6317), 1, - sym__scope_resolution, - STATE(6911), 1, - sym__declarator, - STATE(8492), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3817), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4587), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [94268] = 3, + anon_sym_DASH_GT_STAR, + [93756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 19, + ACTIONS(6393), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444764,7 +447296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5178), 32, + ACTIONS(6395), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -444797,69 +447329,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [94327] = 24, + [93815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7250), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, - anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - ACTIONS(7293), 1, - anon_sym_AMP_AMP, - ACTIONS(7295), 1, - anon_sym_PIPE, - ACTIONS(7299), 1, - anon_sym_AMP, - ACTIONS(7305), 1, - anon_sym_and, - ACTIONS(7307), 1, - anon_sym_bitor, - ACTIONS(7309), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6170), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7244), 2, + ACTIONS(7387), 1, + anon_sym_LT, + STATE(2249), 1, + sym_template_argument_list, + ACTIONS(6201), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7248), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7297), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7246), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7283), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7301), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6172), 17, + 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(6203), 30, 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -444867,17 +447372,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, - [94428] = 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, + [93878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 21, + ACTIONS(5224), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -444899,7 +447412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5220), 30, + ACTIONS(5226), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -444930,10 +447443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [94487] = 3, + [93937] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 16, + ACTIONS(2830), 1, + anon_sym_LBRACE, + ACTIONS(6759), 1, + anon_sym_LPAREN2, + STATE(4196), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5992), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -444950,17 +447470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5600), 35, + ACTIONS(5994), 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, @@ -444983,78 +447501,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [94546] = 26, + [94002] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7321), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(7403), 1, + anon_sym_STAR, + ACTIONS(7405), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7407), 1, anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7329), 1, + ACTIONS(7409), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7333), 1, - anon_sym_DASH_GT, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7365), 1, - anon_sym_requires, - STATE(5284), 1, - sym__function_attributes_start, - STATE(5383), 1, - sym_ref_qualifier, - STATE(6342), 1, - sym__function_attributes_end, - STATE(6496), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(4731), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5252), 2, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6359), 1, + sym__scope_resolution, + STATE(7098), 1, + sym__declarator, + STATE(8653), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4589), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6595), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5815), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 8, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94103] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2830), 1, + anon_sym_LBRACE, + ACTIONS(7468), 1, + anon_sym_LPAREN2, + STATE(3781), 1, + sym_argument_list, + STATE(3802), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4248), 1, + sym_initializer_list, + ACTIONS(7286), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5420), 9, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + 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_try, - ACTIONS(7325), 11, + ACTIONS(5418), 33, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + 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, @@ -445065,66 +447634,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94651] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [94174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 19, + ACTIONS(5167), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, anon_sym_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(6270), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5169), 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_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [94710] = 3, + anon_sym_DASH_GT, + [94233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6264), 19, + ACTIONS(6324), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445144,7 +447720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6266), 32, + ACTIONS(6326), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445177,68 +447753,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [94769] = 5, + [94292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, - anon_sym_LT, - STATE(2186), 1, - sym_template_argument_list, - ACTIONS(6095), 19, + ACTIONS(5250), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_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(6097), 30, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5252), 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_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_AMP_EQ, - anon_sym_CARET_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, + [94351] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7471), 1, + anon_sym_namespace, + ACTIONS(6709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6707), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [94412] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7473), 1, + sym_identifier, + STATE(3733), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5090), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5092), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5222), 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(5220), 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, - [94832] = 3, + [94479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 19, + ACTIONS(6431), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445258,7 +447949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6224), 32, + ACTIONS(6433), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445291,10 +447982,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [94891] = 3, + [94538] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, + anon_sym_STAR, + ACTIONS(7479), 1, + anon_sym_AMP_AMP, + ACTIONS(7481), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_COLON_COLON, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6332), 1, + sym__scope_resolution, + STATE(6912), 1, + sym__declarator, + STATE(8520), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3947), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4633), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5594), 16, + ACTIONS(6161), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445309,9 +448077,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(5596), 35, + ACTIONS(6163), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445321,7 +448092,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, @@ -445334,23 +448104,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [94950] = 3, + [94698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 19, + ACTIONS(6281), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445370,7 +448138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6359), 32, + ACTIONS(6283), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445403,59 +448171,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [95009] = 24, + [94757] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7417), 1, anon_sym_AMP, - STATE(5775), 1, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(6263), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(6626), 1, + STATE(6655), 1, + sym__declarator, + STATE(8879), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4623), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [94858] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(3044), 1, + anon_sym_STAR, + ACTIONS(3046), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6297), 1, + sym__scope_resolution, + STATE(6919), 1, sym__declarator, - STATE(9289), 1, + STATE(9234), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4599), 2, + STATE(4607), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5441), 2, + STATE(5485), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -445467,7 +448312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -445480,10 +448325,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [95110] = 3, + [94959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6079), 1, + sym_literal_suffix, + ACTIONS(4137), 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(4145), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [95020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 19, + ACTIONS(6453), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445503,7 +448405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6293), 32, + ACTIONS(6455), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445536,26 +448438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [95169] = 10, + [95079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6170), 17, + ACTIONS(5171), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445573,14 +448459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6172), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5173), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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, @@ -445599,10 +448490,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [95242] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5175), 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_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(5177), 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_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, + [95197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 16, + ACTIONS(5171), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445617,9 +448568,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(5588), 35, + ACTIONS(5173), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445629,7 +448583,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, @@ -445642,23 +448595,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [95301] = 3, + [95256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 16, + ACTIONS(5171), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445673,9 +448624,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(5584), 35, + ACTIONS(5173), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445685,7 +448639,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, @@ -445698,23 +448651,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5242), 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_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(5244), 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_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [95360] = 3, + anon_sym_DASH_GT, + [95374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 19, + ACTIONS(6265), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445734,7 +448741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6450), 32, + ACTIONS(6267), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445767,10 +448774,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [95419] = 3, + [95433] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7485), 1, + anon_sym_namespace, + ACTIONS(6709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6707), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [95494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 19, + ACTIONS(6253), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445790,7 +448854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6297), 32, + ACTIONS(6255), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445823,10 +448887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [95478] = 3, + [95553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6325), 19, + ACTIONS(6222), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445846,7 +448910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6327), 32, + ACTIONS(6224), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -445879,87 +448943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [95537] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, - anon_sym_STAR, - ACTIONS(7357), 1, - anon_sym_AMP_AMP, - ACTIONS(7359), 1, - anon_sym_AMP, - ACTIONS(7361), 1, - anon_sym_COLON_COLON, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6317), 1, - sym__scope_resolution, - STATE(6922), 1, - sym__declarator, - STATE(8492), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4595), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5441), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [95638] = 3, + [95612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6387), 19, + ACTIONS(6447), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445979,7 +448966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6389), 32, + ACTIONS(6449), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -446012,10 +448999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [95697] = 3, + [95671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6369), 19, + ACTIONS(4014), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446025,27 +449012,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(6371), 32, + ACTIONS(4016), 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, @@ -446053,7 +449040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -446067,11 +449053,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, - [95756] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [95730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6337), 19, + ACTIONS(6237), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446081,27 +449068,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(6339), 32, + ACTIONS(6239), 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, @@ -446109,7 +449096,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -446123,33 +449109,94 @@ 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, - [95815] = 11, + anon_sym_DASH_GT, + anon_sym_GT2, + [95789] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7246), 3, + ACTIONS(7447), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6170), 14, + ACTIONS(7449), 1, + anon_sym_AMP_AMP, + ACTIONS(7451), 1, + anon_sym_AMP, + ACTIONS(7453), 1, + anon_sym_COLON_COLON, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6354), 1, + sym__scope_resolution, + STATE(6725), 1, + sym__declarator, + STATE(8511), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3810), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4622), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [95890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5348), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -446162,14 +449209,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6172), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2899), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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, @@ -446188,59 +449240,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [95890] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95949] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(7355), 1, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7462), 1, anon_sym_STAR, - ACTIONS(7357), 1, + ACTIONS(7464), 1, anon_sym_AMP_AMP, - ACTIONS(7359), 1, + ACTIONS(7466), 1, anon_sym_AMP, - ACTIONS(7361), 1, - anon_sym_COLON_COLON, - STATE(5775), 1, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(6317), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(6922), 1, + STATE(6893), 1, sym__declarator, - STATE(8492), 1, + STATE(8593), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3904), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4595), 2, + STATE(4619), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -446252,8 +449308,121 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96050] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7334), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7336), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6153), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + [96137] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7487), 1, + anon_sym_typedef, + ACTIONS(3590), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3588), 44, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -446265,74 +449434,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [95991] = 28, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [96198] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6632), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6652), 1, - anon_sym_EQ, - ACTIONS(7250), 1, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - ACTIONS(7291), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7293), 1, - anon_sym_AMP_AMP, - ACTIONS(7295), 1, - anon_sym_PIPE, - ACTIONS(7299), 1, - anon_sym_AMP, - ACTIONS(7303), 1, - anon_sym_or, - ACTIONS(7305), 1, - anon_sym_and, - ACTIONS(7307), 1, - anon_sym_bitor, - ACTIONS(7309), 1, - anon_sym_bitand, - ACTIONS(7351), 1, - anon_sym_QMARK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, + ACTIONS(7334), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7248), 2, + ACTIONS(7346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7297), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7246), 3, + ACTIONS(7336), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7283), 3, + ACTIONS(7342), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7301), 3, + ACTIONS(6151), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6153), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6654), 14, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -446346,18 +449514,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [96100] = 7, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [96283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7370), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7372), 1, - anon_sym_AMP_AMP, - ACTIONS(7374), 1, - anon_sym_or, - ACTIONS(7376), 1, - anon_sym_and, - ACTIONS(6194), 17, + ACTIONS(6469), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446372,14 +449535,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6196), 30, + ACTIONS(6471), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -446406,145 +449573,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [96167] = 5, + [96342] = 3, ACTIONS(3), 1, sym_comment, - STATE(3739), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7311), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5903), 13, + ACTIONS(5171), 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_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(5173), 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_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5905), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [96230] = 24, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [96401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(6702), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(3020), 1, + 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(6700), 27, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3022), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(5298), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_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, + [96460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5171), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5173), 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, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6228), 1, - sym__scope_resolution, - STATE(6922), 1, - sym__declarator, - STATE(9206), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3882), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4570), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [96331] = 3, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [96519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6329), 19, + ACTIONS(6457), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446564,7 +449764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6331), 32, + ACTIONS(6459), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -446597,10 +449797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [96390] = 3, + [96578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5981), 21, + ACTIONS(5939), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446622,7 +449822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5983), 30, + ACTIONS(5941), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446653,10 +449853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96449] = 3, + [96637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5985), 21, + ACTIONS(5935), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446678,7 +449878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5987), 30, + ACTIONS(5937), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446709,10 +449909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96508] = 3, + [96696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 19, + ACTIONS(5685), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446727,12 +449927,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5186), 32, + ACTIONS(5687), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -446742,6 +449939,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, @@ -446754,85 +449952,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, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [96567] = 28, + [96755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6307), 1, - anon_sym_EQ, - ACTIONS(6632), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7250), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, - anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - ACTIONS(7291), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7293), 1, - anon_sym_AMP_AMP, - ACTIONS(7295), 1, - anon_sym_PIPE, - ACTIONS(7299), 1, - anon_sym_AMP, - ACTIONS(7303), 1, - anon_sym_or, - ACTIONS(7305), 1, - anon_sym_and, - ACTIONS(7307), 1, - anon_sym_bitor, - ACTIONS(7309), 1, - anon_sym_bitand, - ACTIONS(7351), 1, - anon_sym_QMARK, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, + ACTIONS(5643), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7248), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7297), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7246), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7283), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7301), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5645), 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_not_eq, - ACTIONS(6309), 14, - anon_sym_COLON, + 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, @@ -446843,13 +450008,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, - [96676] = 3, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [96814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6166), 21, + ACTIONS(6385), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446859,27 +450034,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(6168), 30, + anon_sym_DASH_GT, + ACTIONS(6387), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -446887,6 +450062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -446900,69 +450076,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, - [96735] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7378), 1, - anon_sym_typedef, - ACTIONS(3474), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3472), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [96796] = 3, + anon_sym_DASH_GT_STAR, + [96873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6321), 19, + ACTIONS(5238), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446982,7 +450100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6323), 32, + ACTIONS(5240), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -447015,10 +450133,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [96855] = 3, + [96932] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7492), 1, + anon_sym_requires, + STATE(5323), 1, + sym__function_attributes_start, + STATE(5422), 1, + sym_ref_qualifier, + STATE(6369), 1, + sym__function_attributes_end, + STATE(6536), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7489), 2, + anon_sym_final, + anon_sym_override, + STATE(4766), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5312), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6656), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5856), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 19, + ACTIONS(5643), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447033,12 +450230,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(6367), 32, + ACTIONS(5645), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -447048,6 +450242,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, @@ -447060,77 +450255,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [96914] = 3, + [97096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6407), 19, + ACTIONS(5171), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, anon_sym_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(6409), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5173), 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_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [96973] = 3, + anon_sym_DASH_GT, + [97155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6413), 19, + ACTIONS(6411), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447150,7 +450347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6415), 32, + ACTIONS(6413), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -447183,17 +450380,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [97032] = 6, + [97214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(6748), 1, + STATE(3804), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5988), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(4245), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5950), 16, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5986), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [97277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5647), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447210,15 +450458,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5952), 31, + ACTIONS(5649), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -447241,90 +450491,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [97097] = 26, + [97336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(7495), 1, + anon_sym_typedef, + ACTIONS(3590), 6, anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6607), 1, - anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, - anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - ACTIONS(7291), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7293), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7295), 1, - anon_sym_PIPE, - ACTIONS(7299), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3588), 44, anon_sym_AMP, - ACTIONS(7303), 1, - anon_sym_or, - ACTIONS(7305), 1, - anon_sym_and, - ACTIONS(7307), 1, - anon_sym_bitor, - ACTIONS(7309), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7248), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7297), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7246), 3, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [97397] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7497), 1, + anon_sym_typedef, + ACTIONS(3590), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7283), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7301), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6609), 16, - anon_sym_DOT_DOT_DOT, - 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, - [97202] = 3, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3588), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [97458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 19, + ACTIONS(5651), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447339,12 +450626,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(5174), 32, + ACTIONS(5653), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -447354,6 +450638,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, @@ -447366,30 +450651,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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [97261] = 4, + [97517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7380), 1, - anon_sym_namespace, - ACTIONS(6675), 6, + ACTIONS(7499), 1, + anon_sym_typedef, + ACTIONS(3590), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6673), 44, + ACTIONS(3588), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -447434,40 +450721,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [97322] = 3, + [97578] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 19, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7348), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7334), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7336), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6423), 32, + ACTIONS(6153), 24, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -447482,27 +450785,22 @@ 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, - [97381] = 4, + [97659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7382), 1, - anon_sym_namespace, - ACTIONS(6675), 6, + ACTIONS(7501), 1, + anon_sym_typedef, + ACTIONS(3590), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6673), 44, + ACTIONS(3588), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -447547,10 +450845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [97442] = 3, + [97720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 19, + ACTIONS(6308), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447570,7 +450868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6236), 32, + ACTIONS(6310), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -447603,10 +450901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [97501] = 3, + [97779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6252), 19, + ACTIONS(5643), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447621,12 +450919,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(6254), 32, + ACTIONS(5645), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -447636,6 +450931,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, @@ -447648,21 +450944,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [97560] = 3, + [97838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6009), 21, + ACTIONS(5677), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447672,27 +450970,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(6011), 30, + anon_sym_DASH_GT, + ACTIONS(5679), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -447700,102 +450996,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [97619] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, + sym_auto, anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(7231), 1, - anon_sym_STAR, - ACTIONS(7233), 1, - anon_sym_AMP_AMP, - ACTIONS(7235), 1, - anon_sym_AMP, - ACTIONS(7237), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6309), 1, - sym__scope_resolution, - STATE(7054), 1, - sym__declarator, - STATE(8622), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4575), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5441), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [97720] = 3, + anon_sym_DASH_GT_STAR, + [97897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6403), 19, + ACTIONS(5242), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -447815,7 +451036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6405), 32, + ACTIONS(5244), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -447848,19 +451069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [97779] = 4, + [97956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7384), 1, - anon_sym_namespace, - ACTIONS(6675), 6, + ACTIONS(7503), 1, + anon_sym_typedef, + ACTIONS(3590), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6673), 44, + ACTIONS(3588), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -447905,10 +451126,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [97840] = 3, + [98017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 16, + ACTIONS(5195), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447917,6 +451139,7 @@ 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, @@ -447924,11 +451147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5232), 35, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5197), 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, @@ -447941,6 +451171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -447951,33 +451182,143 @@ 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, - [97899] = 8, + [98076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5183), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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(5185), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [98135] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7447), 1, + anon_sym_STAR, + ACTIONS(7449), 1, + anon_sym_AMP_AMP, + ACTIONS(7451), 1, + anon_sym_AMP, + ACTIONS(7453), 1, + anon_sym_COLON_COLON, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6354), 1, + sym__scope_resolution, + STATE(6691), 1, + sym__declarator, + STATE(8511), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4629), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7386), 1, - anon_sym_LT, - STATE(2229), 1, - sym_template_argument_list, - STATE(4083), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7167), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4137), 18, + ACTIONS(5228), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -447986,6 +451327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -447994,11 +451337,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4145), 25, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5230), 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, @@ -448014,76 +451359,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [97968] = 5, + [98295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7388), 1, - anon_sym_LT, - STATE(4061), 1, - sym_template_argument_list, - ACTIONS(6437), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_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(6439), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(7377), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [98031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5204), 19, + ACTIONS(7381), 1, + anon_sym_and, + ACTIONS(6233), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448099,17 +451394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5206), 32, + ACTIONS(6235), 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, @@ -448136,19 +451429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [98090] = 4, + [98358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 1, + ACTIONS(7505), 1, anon_sym_typedef, - ACTIONS(3474), 6, + ACTIONS(3590), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3472), 44, + ACTIONS(3588), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -448193,10 +451486,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [98151] = 3, + [98419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 19, + ACTIONS(7507), 1, + anon_sym_typedef, + ACTIONS(3590), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3588), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [98480] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(3044), 1, + anon_sym_STAR, + ACTIONS(3046), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6297), 1, + sym__scope_resolution, + STATE(6956), 1, + sym__declarator, + STATE(9234), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4625), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5201), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448216,7 +451643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5210), 32, + ACTIONS(5203), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -448249,10 +451676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [98210] = 3, + [98640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 19, + ACTIONS(6348), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448272,7 +451699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6232), 32, + ACTIONS(6350), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -448305,130 +451732,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [98269] = 7, + [98699] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, - sym_identifier, - ACTIONS(7398), 1, - sym_primitive_type, - STATE(3769), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7396), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5638), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_auto, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5636), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(3040), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(7411), 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, - [98336] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7400), 1, + ACTIONS(7475), 1, sym_identifier, - STATE(3858), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(7403), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7406), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5160), 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(5158), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7477), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7479), 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, - [98403] = 3, + ACTIONS(7481), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_COLON_COLON, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6332), 1, + sym__scope_resolution, + STATE(6956), 1, + sym__declarator, + STATE(8520), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3950), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4601), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6337), 19, + ACTIONS(6389), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448448,7 +451832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6339), 32, + ACTIONS(6391), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -448481,23 +451865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [98462] = 9, + [98859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6155), 17, + ACTIONS(6304), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448515,14 +451886,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6157), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6306), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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, @@ -448543,26 +451919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [98533] = 10, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [98918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6133), 17, + ACTIONS(2136), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448580,14 +451942,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6135), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2134), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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, @@ -448606,23 +451973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [98606] = 9, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [98977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6162), 17, + ACTIONS(6145), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448632,22 +451990,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(6164), 27, + anon_sym_DOT, + ACTIONS(6147), 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, @@ -448655,7 +452018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -448668,10 +452030,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [98677] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [99036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 19, + ACTIONS(3924), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448691,7 +452056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5153), 32, + ACTIONS(3920), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -448724,10 +452089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [98736] = 3, + [99095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 19, + ACTIONS(5167), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448747,7 +452112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5153), 32, + ACTIONS(5169), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -448780,68 +452145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [98795] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3739), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7311), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5989), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5991), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [98858] = 3, + [99154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 19, + ACTIONS(5689), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448856,12 +452163,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(2142), 32, + ACTIONS(5691), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -448871,6 +452175,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, @@ -448883,21 +452188,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [98917] = 3, + [99213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 19, + ACTIONS(5250), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448917,7 +452224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5153), 32, + ACTIONS(5252), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -448950,68 +452257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [98976] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3739), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7311), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5993), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5995), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [99039] = 3, + [99272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6146), 21, + ACTIONS(5224), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449021,27 +452270,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(6148), 30, + anon_sym_DASH_GT, + ACTIONS(5226), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449049,6 +452298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -449062,24 +452312,34 @@ 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, - [99098] = 6, + anon_sym_DASH_GT_STAR, + [99331] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(6748), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - STATE(4183), 2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 16, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7334), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7336), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -449089,18 +452349,17 @@ 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(6003), 31, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6153), 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_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449112,21 +452371,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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [99163] = 3, + [99408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6433), 19, + ACTIONS(6481), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449146,7 +452401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6435), 32, + ACTIONS(6483), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -449179,96 +452434,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [99222] = 3, + [99467] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 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(5663), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5354), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + ACTIONS(6135), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [99281] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5188), 19, + ACTIONS(7334), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7336), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5190), 32, + ACTIONS(6153), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449287,33 +452500,37 @@ 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, - [99340] = 4, + [99546] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7409), 1, - anon_sym_typedef, - ACTIONS(3474), 6, + STATE(3784), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7509), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5974), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3472), 44, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5976), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -449334,24 +452551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [99401] = 3, + [99609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5919), 21, + ACTIONS(5661), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449361,27 +452571,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(5921), 30, + anon_sym_DASH_GT, + ACTIONS(5663), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449389,26 +452597,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [99460] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [99668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 21, - aux_sym_preproc_elif_token1, + ACTIONS(5266), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -449417,7 +452626,6 @@ 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, @@ -449425,18 +452633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5190), 30, + sym_literal_suffix, + ACTIONS(5268), 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, @@ -449449,7 +452650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -449460,87 +452660,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [99519] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7260), 1, - anon_sym_STAR, - ACTIONS(7262), 1, - anon_sym_AMP_AMP, - ACTIONS(7264), 1, - anon_sym_AMP, - ACTIONS(7266), 1, - anon_sym_COLON_COLON, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6227), 1, - sym__scope_resolution, - STATE(6594), 1, - sym__declarator, - STATE(8480), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4552), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5441), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [99620] = 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, + [99727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5923), 21, + ACTIONS(6423), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449550,81 +452683,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(5925), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [99679] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7372), 1, - anon_sym_AMP_AMP, - ACTIONS(7376), 1, - anon_sym_and, - ACTIONS(6206), 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_xor, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6208), 31, + ACTIONS(6425), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -449651,171 +452726,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [99742] = 3, + [99786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 16, + ACTIONS(5246), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5663), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [99801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5927), 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(5929), 30, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5248), 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_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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [99860] = 24, + [99845] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(3020), 1, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(7403), 1, anon_sym_STAR, - ACTIONS(3022), 1, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7407), 1, anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6518), 1, + ACTIONS(7409), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - STATE(5775), 1, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(6228), 1, + STATE(6359), 1, sym__scope_resolution, - STATE(6947), 1, + STATE(7119), 1, sym__declarator, - STATE(9206), 1, + STATE(8653), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4586), 2, + STATE(4614), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5441), 2, + STATE(5485), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -449827,7 +452846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -449840,66 +452859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5143), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(5145), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [100020] = 3, + [99946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 19, + ACTIONS(6427), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449919,7 +452882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5170), 32, + ACTIONS(6429), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -449952,14 +452915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [100079] = 4, + [100005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4147), 19, + ACTIONS(6344), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449979,7 +452938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4139), 29, + ACTIONS(6346), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450001,6 +452960,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -450009,10 +452971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [100140] = 3, + [100064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 16, + ACTIONS(4018), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450022,25 +452984,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(5693), 35, + ACTIONS(4020), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -450048,27 +453012,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [100199] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [100123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 16, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450083,9 +453045,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(5701), 35, + ACTIONS(5019), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450095,7 +453060,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, @@ -450108,23 +453072,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [100258] = 3, + [100182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 16, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450139,9 +453101,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(5697), 35, + ACTIONS(5019), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450151,7 +453116,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, @@ -450164,23 +453128,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [100317] = 3, + [100241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 21, + ACTIONS(5238), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -450202,7 +453164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5145), 30, + ACTIONS(5240), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450233,10 +453195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [100376] = 3, + [100300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5316), 19, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450256,7 +453218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2871), 32, + ACTIONS(5019), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450289,10 +453251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [100435] = 3, + [100359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 16, + ACTIONS(7511), 1, + anon_sym_LT, + STATE(4055), 1, + sym_template_argument_list, + ACTIONS(6356), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450302,24 +453268,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(5537), 35, + ACTIONS(6358), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -450328,27 +453294,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [100494] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [100422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 19, + ACTIONS(6041), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450358,27 +453322,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(6458), 32, + ACTIONS(6043), 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, @@ -450386,7 +453350,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -450400,11 +453363,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, - [100553] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [100481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 19, + ACTIONS(6045), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450414,27 +453378,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(6462), 32, + ACTIONS(6047), 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, @@ -450442,7 +453406,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -450456,11 +453419,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, - [100612] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [100540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6425), 19, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450480,7 +453444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6427), 32, + ACTIONS(5019), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450513,10 +453477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [100671] = 3, + [100599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 19, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450536,7 +453500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6309), 32, + ACTIONS(5019), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450569,10 +453533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [100730] = 3, + [100658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6417), 19, + ACTIONS(6273), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450592,7 +453556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6419), 32, + ACTIONS(6275), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450625,199 +453589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [100789] = 3, + [100717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 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_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(5170), 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_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, - [100848] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(3020), 1, - anon_sym_STAR, - ACTIONS(3022), 1, - anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6228), 1, - sym__scope_resolution, - STATE(6911), 1, - sym__declarator, - STATE(9206), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3924), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4555), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [100949] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5253), 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(5255), 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_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [101008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6381), 19, + ACTIONS(5014), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450837,7 +453612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6383), 32, + ACTIONS(5019), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -450870,59 +453645,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [101067] = 24, + [100776] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(7231), 1, + ACTIONS(3044), 1, anon_sym_STAR, - ACTIONS(7233), 1, - anon_sym_AMP_AMP, - ACTIONS(7235), 1, + ACTIONS(3046), 1, anon_sym_AMP, - ACTIONS(7237), 1, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6526), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - STATE(5775), 1, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(6309), 1, + STATE(6297), 1, sym__scope_resolution, - STATE(7109), 1, + STATE(6956), 1, sym__declarator, - STATE(8622), 1, + STATE(9234), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4571), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5441), 2, + STATE(3831), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, + STATE(4625), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -450934,7 +453709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -450947,66 +453722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101168] = 3, + [100877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 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(5663), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [101227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6444), 19, + ACTIONS(6334), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451026,7 +453745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6446), 32, + ACTIONS(6336), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -451059,59 +453778,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [101286] = 24, + [100936] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, + ACTIONS(3044), 1, anon_sym_STAR, - ACTIONS(7357), 1, - anon_sym_AMP_AMP, - ACTIONS(7359), 1, + ACTIONS(3046), 1, anon_sym_AMP, - ACTIONS(7361), 1, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6526), 1, anon_sym_COLON_COLON, - STATE(5775), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(6317), 1, + STATE(6297), 1, sym__scope_resolution, - STATE(6947), 1, + STATE(6912), 1, sym__declarator, - STATE(8492), 1, + STATE(9234), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4581), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5441), 2, + STATE(3887), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, + STATE(4615), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -451123,7 +453842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -451136,10 +453855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101387] = 3, + [101037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 20, + ACTIONS(6477), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451149,26 +453868,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(6220), 31, + anon_sym_DASH_GT, + ACTIONS(6479), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -451177,6 +453896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -451190,12 +453910,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, - anon_sym_GT2, - [101446] = 3, + anon_sym_DASH_GT_STAR, + [101096] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 19, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6131), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451213,19 +453948,14 @@ 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(2146), 32, + ACTIONS(6133), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451244,71 +453974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [101505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7411), 1, - anon_sym_typedef, - ACTIONS(3474), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3472), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [101566] = 3, + [101169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 19, + ACTIONS(6461), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451328,7 +453997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5149), 32, + ACTIONS(6463), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -451361,10 +454030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [101625] = 3, + [101228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 16, + ACTIONS(6415), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451379,121 +454048,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5721), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [101684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5176), 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_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(5178), 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_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, - [101743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5737), 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(5739), 35, + ACTIONS(6417), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -451503,7 +454063,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, @@ -451516,82 +454075,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, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [101802] = 26, + [101287] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6646), 1, + ACTIONS(6660), 1, anon_sym_EQ, - ACTIONS(7250), 1, + ACTIONS(7338), 1, + anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, anon_sym_LT_EQ_GT, - ACTIONS(7252), 1, + ACTIONS(7350), 1, + anon_sym_bitand, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_GT_EQ, - ACTIONS(7291), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7293), 1, + ACTIONS(7365), 1, anon_sym_AMP_AMP, - ACTIONS(7295), 1, + ACTIONS(7367), 1, anon_sym_PIPE, - ACTIONS(7299), 1, - anon_sym_AMP, - ACTIONS(7303), 1, - anon_sym_or, - ACTIONS(7305), 1, + ACTIONS(7371), 1, anon_sym_and, - ACTIONS(7307), 1, + ACTIONS(7373), 1, anon_sym_bitor, - ACTIONS(7309), 1, - anon_sym_bitand, - STATE(2791), 1, + ACTIONS(7397), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7401), 1, + anon_sym_or, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6127), 2, + ACTIONS(6137), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7244), 2, + ACTIONS(7334), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7248), 2, + ACTIONS(7346), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7297), 2, + ACTIONS(7369), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7246), 3, + ACTIONS(7336), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7283), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7301), 3, + ACTIONS(7340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6648), 16, + ACTIONS(7342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6662), 16, anon_sym_DOT_DOT_DOT, anon_sym_COLON, anon_sym_QMARK, @@ -451608,66 +454165,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [101907] = 3, + [101392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 19, + ACTIONS(5297), 16, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5220), 32, + sym_literal_suffix, + ACTIONS(5299), 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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [101966] = 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, + [101451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6106), 21, + ACTIONS(5947), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451689,7 +454246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6108), 30, + ACTIONS(5949), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -451720,10 +454277,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [102025] = 3, + [101510] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3780), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7514), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5968), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5970), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [101573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 21, + ACTIONS(2136), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -451745,7 +454360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(2146), 30, + ACTIONS(2134), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -451776,10 +454391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [102084] = 3, + [101632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 19, + ACTIONS(6277), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451799,7 +454414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6228), 32, + ACTIONS(6279), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -451832,10 +454447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [102143] = 3, + [101691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6361), 19, + ACTIONS(6300), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451855,7 +454470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6363), 32, + ACTIONS(6302), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -451888,29 +454503,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [102202] = 4, + [101750] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7413), 1, - anon_sym_typedef, - ACTIONS(3474), 6, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6616), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6677), 1, + anon_sym_EQ, + ACTIONS(7338), 1, + anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7350), 1, + anon_sym_bitand, + ACTIONS(7352), 1, + anon_sym_DOT, + ACTIONS(7365), 1, + anon_sym_AMP_AMP, + ACTIONS(7367), 1, + anon_sym_PIPE, + ACTIONS(7371), 1, + anon_sym_and, + ACTIONS(7373), 1, + anon_sym_bitor, + ACTIONS(7397), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7399), 1, + anon_sym_QMARK, + ACTIONS(7401), 1, + anon_sym_or, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7334), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7369), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7336), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6679), 14, + 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, + [101859] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6652), 1, + anon_sym_EQ, + ACTIONS(7338), 1, + anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7350), 1, + anon_sym_bitand, + ACTIONS(7352), 1, + anon_sym_DOT, + ACTIONS(7365), 1, + anon_sym_AMP_AMP, + ACTIONS(7367), 1, + anon_sym_PIPE, + ACTIONS(7371), 1, + anon_sym_and, + ACTIONS(7373), 1, + anon_sym_bitor, + ACTIONS(7397), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7401), 1, + anon_sym_or, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7334), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7369), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7336), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6654), 16, + anon_sym_DOT_DOT_DOT, + 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, + [101964] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6614), 1, + anon_sym_EQ, + ACTIONS(6616), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7338), 1, + anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_GT_EQ, + ACTIONS(7348), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7350), 1, + anon_sym_bitand, + ACTIONS(7352), 1, + anon_sym_DOT, + ACTIONS(7365), 1, + anon_sym_AMP_AMP, + ACTIONS(7367), 1, + anon_sym_PIPE, + ACTIONS(7371), 1, + anon_sym_and, + ACTIONS(7373), 1, + anon_sym_bitor, + ACTIONS(7397), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7399), 1, + anon_sym_QMARK, + ACTIONS(7401), 1, + anon_sym_or, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6137), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7334), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7346), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7369), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7336), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7342), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6618), 14, + 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, + [102073] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3802), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7286), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5764), 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(3472), 44, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5762), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -451931,24 +454795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [102263] = 3, + [102136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 21, + ACTIONS(5803), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451958,27 +454815,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(5936), 30, + anon_sym_DASH_GT, + ACTIONS(5805), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451986,38 +454841,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [102322] = 8, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [102195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7415), 1, - anon_sym_LT, - STATE(2229), 1, - sym_template_argument_list, - STATE(2391), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5028), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4137), 9, + ACTIONS(5262), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452025,9 +454869,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_COLON, + 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(4145), 34, + sym_literal_suffix, + ACTIONS(5264), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452043,29 +454894,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [102391] = 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, + [102254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 16, + ACTIONS(5807), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452082,7 +454934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5537), 35, + ACTIONS(5809), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452118,10 +454970,87 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [102450] = 3, + [102313] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 19, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7462), 1, + anon_sym_STAR, + ACTIONS(7464), 1, + anon_sym_AMP_AMP, + ACTIONS(7466), 1, + anon_sym_AMP, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6348), 1, + sym__scope_resolution, + STATE(6904), 1, + sym__declarator, + STATE(8593), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3848), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4595), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6214), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452131,26 +455060,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(5388), 32, + ACTIONS(6216), 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, @@ -452159,7 +455088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -452173,116 +455101,194 @@ 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, - [102509] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [102473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 21, - aux_sym_preproc_elif_token1, + ACTIONS(6352), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(2142), 30, + anon_sym_DASH_GT, + ACTIONS(6354), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [102568] = 24, + anon_sym_DASH_GT_STAR, + [102532] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(3020), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, anon_sym_STAR, - ACTIONS(3022), 1, + ACTIONS(7479), 1, + anon_sym_AMP_AMP, + ACTIONS(7481), 1, anon_sym_AMP, - ACTIONS(5298), 1, + ACTIONS(7483), 1, + anon_sym_COLON_COLON, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6332), 1, + sym__scope_resolution, + STATE(6956), 1, + sym__declarator, + STATE(8520), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4601), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102633] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6518), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - STATE(5775), 1, + ACTIONS(7462), 1, + anon_sym_STAR, + ACTIONS(7464), 1, + anon_sym_AMP_AMP, + ACTIONS(7466), 1, + anon_sym_AMP, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(6228), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(6922), 1, + STATE(6870), 1, sym__declarator, - STATE(9206), 1, + STATE(8593), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4570), 2, + STATE(4576), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5441), 2, + STATE(5485), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3458), 3, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -452294,7 +455300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -452307,10 +455313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102669] = 3, + [102734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6341), 19, + ACTIONS(5418), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452325,12 +455331,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(6343), 32, + ACTIONS(5420), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452340,6 +455343,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, @@ -452352,184 +455356,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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [102728] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7417), 1, - anon_sym_typedef, - ACTIONS(3474), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3472), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [102789] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7419), 1, - anon_sym_typedef, - ACTIONS(3474), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3472), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [102850] = 24, + anon_sym_DASH_GT_STAR, + [102793] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7479), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7481), 1, anon_sym_AMP, - STATE(5775), 1, + ACTIONS(7483), 1, + anon_sym_COLON_COLON, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(6263), 1, + STATE(6332), 1, sym__scope_resolution, - STATE(6626), 1, + STATE(6919), 1, sym__declarator, - STATE(9289), 1, + STATE(8520), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3756), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4599), 2, + STATE(4591), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -452541,7 +455433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -452554,77 +455446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102951] = 10, + [102894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6127), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6121), 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(6123), 25, - 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_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(5705), 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, - [103024] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7367), 1, - anon_sym_LT, - STATE(3650), 1, - sym_template_argument_list, - ACTIONS(6095), 19, + ACTIONS(4145), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452634,68 +455463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6097), 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, - [103087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5707), 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(5709), 35, + ACTIONS(4137), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452705,7 +455483,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, @@ -452719,134 +455496,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [103146] = 3, + [102955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 16, + ACTIONS(5270), 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(5713), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [103205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5741), 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(5743), 35, + sym_literal_suffix, + ACTIONS(5272), 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_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [103264] = 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, + [103014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 16, + ACTIONS(6465), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452861,65 +455577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5564), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [103323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5745), 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(5747), 35, + ACTIONS(6467), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452929,7 +455592,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, @@ -452942,23 +455604,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, anon_sym_DASH_GT_STAR, - [103382] = 3, + [103073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 19, + ACTIONS(5416), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452978,7 +455638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5182), 32, + ACTIONS(5414), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453011,66 +455671,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [103441] = 3, + [103132] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6184), 19, + ACTIONS(7516), 1, + sym_identifier, + STATE(3825), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5090), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5092), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5236), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6186), 32, + sym_literal_suffix, + ACTIONS(5234), 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_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_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_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, - [103500] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [103199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 19, + ACTIONS(6293), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453090,7 +455754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5194), 32, + ACTIONS(6295), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453123,23 +455787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [103559] = 9, + [103258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6155), 14, + ACTIONS(5418), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453154,15 +455805,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6157), 29, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5420), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453183,11 +455839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [103629] = 3, + [103317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6433), 20, + ACTIONS(6289), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453197,25 +455856,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(6435), 30, + anon_sym_DASH_GT, + ACTIONS(6291), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453224,6 +455884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -453237,12 +455898,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, - [103687] = 3, + anon_sym_DASH_GT_STAR, + [103376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 20, + ACTIONS(2186), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453252,25 +455912,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(5170), 30, + anon_sym_DASH_GT, + ACTIONS(2184), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453279,6 +455940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -453292,12 +455954,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, - [103745] = 3, + anon_sym_DASH_GT_STAR, + [103435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6321), 20, + ACTIONS(5669), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453307,25 +455968,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(6323), 30, + anon_sym_DASH_GT, + ACTIONS(5671), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453334,33 +455994,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [103803] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [103494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7423), 1, + ACTIONS(7518), 1, + anon_sym_namespace, + ACTIONS(6709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7425), 1, - anon_sym_or, - ACTIONS(7427), 1, - anon_sym_and, - ACTIONS(6194), 18, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6707), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [103555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453370,21 +456081,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_xor, anon_sym_DOT, - ACTIONS(6196), 28, + anon_sym_DASH_GT, + ACTIONS(5675), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453393,25 +456107,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [103869] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [103614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6337), 20, + ACTIONS(5698), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453421,25 +456137,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(6339), 30, + anon_sym_DASH_GT, + ACTIONS(5700), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453448,25 +456163,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [103927] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [103673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 20, + ACTIONS(6285), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453476,25 +456193,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(5178), 30, + anon_sym_DASH_GT, + ACTIONS(6287), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453503,6 +456221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -453516,15 +456235,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, - [103985] = 4, + anon_sym_DASH_GT_STAR, + [103732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5021), 16, + ACTIONS(5724), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453541,7 +456256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5014), 32, + ACTIONS(5726), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453551,6 +456266,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, @@ -453573,51 +456289,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [104045] = 11, + [103791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(7327), 1, - anon_sym___attribute__, - STATE(3653), 1, - sym_attribute_specifier, - STATE(4347), 1, - sym_field_declaration_list, - STATE(7309), 1, - sym_virtual_specifier, - STATE(8077), 1, - sym_base_class_clause, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5284), 4, + ACTIONS(7520), 1, + anon_sym_namespace, + ACTIONS(6709), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6707), 44, anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, - ACTIONS(5286), 37, - 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [103852] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7522), 1, + anon_sym_namespace, + ACTIONS(6709), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6707), 44, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym___declspec, - anon_sym_EQ, + 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, @@ -453628,129 +456392,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [104119] = 3, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [103913] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6369), 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(6371), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [104177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5188), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7413), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5190), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [104235] = 3, + ACTIONS(7417), 1, + anon_sym_AMP, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6348), 1, + sym__scope_resolution, + STATE(6615), 1, + sym__declarator, + STATE(8879), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4632), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [104014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 20, + ACTIONS(6473), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453760,25 +456496,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(5388), 30, + anon_sym_DASH_GT, + ACTIONS(6475), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453787,6 +456524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -453800,102 +456538,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, - [104293] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7329), 1, - anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7431), 1, - anon_sym___attribute__, - ACTIONS(7434), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7439), 1, - anon_sym_DASH_GT, - ACTIONS(7441), 1, - anon_sym_requires, - STATE(5305), 1, - sym__function_attributes_start, - STATE(5442), 1, - sym_ref_qualifier, - STATE(6258), 1, - sym__function_attributes_end, - STATE(6327), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4950), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5364), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5834), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [104397] = 5, + anon_sym_DASH_GT_STAR, + [104073] = 5, ACTIONS(3), 1, sym_comment, - STATE(2918), 1, + STATE(4090), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5991), 4, + ACTIONS(5762), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, - ACTIONS(7443), 4, + ACTIONS(7524), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5989), 41, + ACTIONS(5764), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -453937,10 +456596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [104459] = 3, + [104135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 20, + ACTIONS(6324), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453961,7 +456620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6423), 30, + ACTIONS(6326), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -453992,42 +456651,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [104517] = 5, + [104193] = 10, ACTIONS(3), 1, sym_comment, - STATE(2918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5995), 4, - anon_sym_AMP, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LT, + ACTIONS(7526), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(7443), 4, + STATE(3867), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4520), 1, + sym_template_argument_list, + ACTIONS(4158), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4163), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5993), 41, + ACTIONS(4143), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(4135), 32, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, + 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, @@ -454038,43 +456706,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [104579] = 11, + anon_sym_template, + anon_sym_operator, + [104265] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7155), 2, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7445), 3, + ACTIONS(6241), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6170), 11, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -454084,7 +456747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6172), 27, + ACTIONS(6243), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454112,26 +456775,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [104653] = 10, + [104337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6265), 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(6267), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6885), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(6889), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + anon_sym_DASH_GT, + anon_sym_GT2, + [104395] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7155), 2, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6170), 14, + ACTIONS(6229), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454146,7 +456864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6172), 27, + ACTIONS(6231), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454174,10 +456892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [104725] = 3, + [104467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6102), 20, + ACTIONS(6320), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454198,7 +456916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6104), 30, + ACTIONS(6322), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -454229,69 +456947,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [104783] = 24, + [104525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, - anon_sym_EQ, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, - anon_sym_PIPE, - ACTIONS(7453), 1, - anon_sym_CARET, - ACTIONS(7455), 1, - anon_sym_AMP, - ACTIONS(7461), 1, - anon_sym_GT_EQ, - ACTIONS(7465), 1, - anon_sym_bitor, - ACTIONS(7467), 1, - anon_sym_xor, - ACTIONS(7469), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + ACTIONS(5014), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7463), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7445), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7457), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7459), 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(6172), 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(5019), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -454299,16 +456987,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_DASH_GT_STAR, - [104883] = 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, + [104583] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6337), 20, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6197), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454318,26 +457028,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6339), 30, + ACTIONS(6199), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -454345,119 +457049,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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [104941] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6940), 1, - anon_sym_COLON_COLON, - ACTIONS(7477), 1, - anon_sym___attribute__, - ACTIONS(7480), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7483), 1, - anon_sym___declspec, - ACTIONS(7486), 1, - anon_sym_virtual, - ACTIONS(7489), 1, - anon_sym_alignas, - ACTIONS(7474), 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(3960), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7471), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6938), 14, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [105015] = 15, + anon_sym_DASH_GT_STAR, + [104653] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5312), 1, + ACTIONS(5344), 1, anon_sym_virtual, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6766), 1, + ACTIONS(6907), 1, sym_auto, - ACTIONS(6768), 1, + ACTIONS(6909), 1, anon_sym_decltype, - ACTIONS(7492), 1, + ACTIONS(7529), 1, anon_sym_SEMI, - STATE(3589), 1, + STATE(3682), 1, sym_decltype_auto, - ACTIONS(6764), 5, + ACTIONS(6921), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(6762), 6, + ACTIONS(6919), 6, anon_sym_AMP, anon_sym___based, anon_sym_LBRACK, sym_identifier, anon_sym_template, anon_sym_operator, - ACTIONS(5302), 9, + ACTIONS(5334), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -454467,7 +457107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(3437), 9, + STATE(3418), 9, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -454477,7 +457117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_virtual, sym_alignas_specifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(5300), 12, + ACTIONS(5332), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -454490,10 +457130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105097] = 3, + [104735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6387), 20, + ACTIONS(5014), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454514,7 +457154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6389), 30, + ACTIONS(5019), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -454545,136 +457185,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [105155] = 23, + [104793] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, - anon_sym_EQ, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6673), 1, + anon_sym_EQ, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - ACTIONS(7141), 1, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, + ACTIONS(7539), 1, anon_sym_PIPE, - ACTIONS(7453), 1, + ACTIONS(7541), 1, anon_sym_CARET, - ACTIONS(7455), 1, + ACTIONS(7543), 1, anon_sym_AMP, - ACTIONS(7461), 1, + ACTIONS(7549), 1, anon_sym_GT_EQ, - ACTIONS(7465), 1, + ACTIONS(7553), 1, anon_sym_bitor, - ACTIONS(7467), 1, + ACTIONS(7555), 1, anon_sym_xor, - ACTIONS(7469), 1, + ACTIONS(7557), 1, anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7155), 2, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + ACTIONS(7531), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7463), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7457), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7459), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7535), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_or, + ACTIONS(7537), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_DASH_GT_STAR, - [105253] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7455), 1, - anon_sym_AMP, - ACTIONS(7461), 1, - anon_sym_GT_EQ, - ACTIONS(7469), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7463), 2, + ACTIONS(7551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6170), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(7445), 3, + ACTIONS(7533), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7457), 3, + ACTIONS(7545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7459), 3, + ACTIONS(7547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 21, + ACTIONS(6675), 15, 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, @@ -454686,15 +457261,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, anon_sym_DASH_GT_STAR, - [105343] = 3, + [104895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 20, + ACTIONS(5175), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454715,7 +457286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6367), 30, + ACTIONS(5177), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -454746,118 +457317,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [105401] = 17, + [104953] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7461), 1, - anon_sym_GT_EQ, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + ACTIONS(6245), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7463), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7445), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7457), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7459), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(6172), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_DASH_GT_STAR, - [105487] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7461), 1, - anon_sym_GT_EQ, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7463), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7459), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6172), 25, + ACTIONS(6247), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454865,6 +457356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -454876,48 +457368,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT_STAR, - [105571] = 15, + [105023] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5312), 1, + ACTIONS(5344), 1, anon_sym_virtual, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6766), 1, + ACTIONS(6907), 1, sym_auto, - ACTIONS(6768), 1, + ACTIONS(6909), 1, anon_sym_decltype, - ACTIONS(7494), 1, + ACTIONS(7559), 1, anon_sym_SEMI, - STATE(3589), 1, + STATE(3682), 1, sym_decltype_auto, - ACTIONS(6764), 5, + ACTIONS(6921), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(6762), 6, + ACTIONS(6919), 6, anon_sym_AMP, anon_sym___based, anon_sym_LBRACK, sym_identifier, anon_sym_template, anon_sym_operator, - ACTIONS(5302), 9, + ACTIONS(5334), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -454927,7 +457422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(3437), 9, + STATE(3418), 9, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -454937,7 +457432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_virtual, sym_alignas_specifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(5300), 12, + ACTIONS(5332), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -454948,135 +457443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [105653] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4036), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5535), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(7496), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5537), 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_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [105715] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7463), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6170), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(6172), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [105795] = 3, + anon_sym_constinit, + anon_sym_consteval, + [105105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 20, + ACTIONS(6403), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455097,7 +457469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5186), 30, + ACTIONS(6405), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -455128,37 +457500,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [105853] = 3, + [105163] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4018), 6, + STATE(4110), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5976), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7561), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5974), 41, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4016), 44, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455169,24 +457546,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [105911] = 3, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [105225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 20, + ACTIONS(6931), 1, + anon_sym_LT, + STATE(2835), 1, + sym_template_argument_list, + ACTIONS(6356), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455196,26 +457574,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(3922), 30, + ACTIONS(6358), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455223,6 +457599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -455237,11 +457614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [105969] = 3, + [105287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6329), 20, + ACTIONS(6443), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455262,7 +457638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6331), 30, + ACTIONS(6445), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -455293,86 +457669,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [106027] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6170), 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(6172), 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, - [106103] = 5, + [105345] = 5, ACTIONS(3), 1, sym_comment, - STATE(2918), 1, + STATE(4090), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5911), 4, + ACTIONS(5418), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, - ACTIONS(7443), 4, + ACTIONS(7524), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5909), 41, + ACTIONS(5420), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -455414,65 +457726,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [106165] = 3, + [105407] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6325), 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(6327), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7573), 1, + anon_sym___attribute__, + ACTIONS(7576), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7579), 1, + anon_sym___declspec, + ACTIONS(7582), 1, + anon_sym_virtual, + ACTIONS(7585), 1, + anon_sym_alignas, + ACTIONS(7588), 1, + anon_sym_explicit, + ACTIONS(7565), 5, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + ACTIONS(7563), 7, + anon_sym_AMP, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [106223] = 3, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(7570), 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(3990), 11, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + ACTIONS(7567), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [105483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6184), 20, + ACTIONS(6407), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455493,7 +457814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6186), 30, + ACTIONS(6409), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -455524,10 +457845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [106281] = 3, + [105541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 20, + ACTIONS(6253), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455548,7 +457869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6450), 30, + ACTIONS(6255), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -455579,37 +457900,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [106339] = 3, + [105599] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 6, + STATE(4109), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5970), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7591), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5968), 41, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7498), 44, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455620,24 +457946,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [106397] = 3, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [105661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 20, + ACTIONS(6161), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455658,7 +457981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6297), 30, + ACTIONS(6163), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -455689,75 +458012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [106455] = 13, + [105719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7463), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6170), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(6172), 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, - [106533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6341), 20, + ACTIONS(5167), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455778,7 +458036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6343), 30, + ACTIONS(5169), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -455809,26 +458067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [106591] = 5, + [105777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 1, - anon_sym_EQ, - ACTIONS(5659), 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(4147), 17, + ACTIONS(5171), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455838,15 +458080,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(4139), 19, + ACTIONS(5173), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -455854,101 +458099,33 @@ 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_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [106653] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6307), 1, - anon_sym_EQ, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7119), 1, anon_sym_QMARK, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, - anon_sym_PIPE, - ACTIONS(7453), 1, - anon_sym_CARET, - ACTIONS(7455), 1, - anon_sym_AMP, - ACTIONS(7461), 1, - anon_sym_GT_EQ, - ACTIONS(7465), 1, - anon_sym_bitor, - ACTIONS(7467), 1, - anon_sym_xor, - ACTIONS(7469), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7463), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7502), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7457), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7459), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6309), 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, - [106759] = 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, + [105835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6361), 20, + ACTIONS(5171), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455969,7 +458146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6363), 30, + ACTIONS(5173), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -456000,87 +458177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [106817] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6626), 1, - anon_sym_EQ, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, - anon_sym_PIPE, - ACTIONS(7453), 1, - anon_sym_CARET, - ACTIONS(7455), 1, - anon_sym_AMP, - ACTIONS(7461), 1, - anon_sym_GT_EQ, - ACTIONS(7465), 1, - anon_sym_bitor, - ACTIONS(7467), 1, - anon_sym_xor, - ACTIONS(7469), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7463), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7502), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7457), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7459), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6628), 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, - [106919] = 3, + [105893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 20, + ACTIONS(5171), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456101,7 +458201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5174), 30, + ACTIONS(5173), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -456132,10 +458232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [106977] = 3, + [105951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 20, + ACTIONS(5014), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456156,7 +458256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4970), 30, + ACTIONS(5019), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -456187,17 +458287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [107035] = 5, + [106009] = 5, ACTIONS(3), 1, sym_comment, - STATE(4053), 1, + STATE(4106), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7504), 4, + ACTIONS(7593), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5946), 20, + ACTIONS(5970), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -456218,7 +458318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5944), 25, + ACTIONS(5968), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -456244,67 +458344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107097] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4036), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5590), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(7496), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5592), 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_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [107159] = 3, + [106071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 20, + ACTIONS(5014), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456325,7 +458368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5149), 30, + ACTIONS(5019), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -456356,10 +458399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [107217] = 3, + [106129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6279), 20, + ACTIONS(5014), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456380,7 +458423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6281), 30, + ACTIONS(5019), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -456411,10 +458454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [107275] = 3, + [106187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 20, + ACTIONS(5228), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456435,7 +458478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6458), 30, + ACTIONS(5230), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -456466,10 +458509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [107333] = 3, + [106245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 20, + ACTIONS(6285), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456490,7 +458533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5220), 30, + ACTIONS(6287), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -456521,127 +458564,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [107391] = 3, + [106303] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6299), 20, + STATE(4121), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7595), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5976), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6301), 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5974), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [107449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6403), 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(6405), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [107507] = 5, + [106365] = 5, ACTIONS(3), 1, sym_comment, - STATE(4055), 1, + STATE(4075), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7506), 4, + ACTIONS(7597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5940), 20, + ACTIONS(5986), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -456662,7 +458652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5938), 25, + ACTIONS(5988), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -456688,10 +458678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107569] = 3, + [106427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 20, + ACTIONS(6304), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456712,7 +458702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6383), 30, + ACTIONS(6306), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -456743,97 +458733,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [107627] = 3, + [106485] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 20, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(7599), 1, + anon_sym___attribute__, + ACTIONS(7601), 1, + anon_sym_LBRACE, + STATE(4549), 1, + sym_field_declaration_list, + STATE(4645), 1, + sym_attribute_specifier, + STATE(7589), 1, + sym_virtual_specifier, + STATE(8246), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5315), 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(6232), 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5317), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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, - [107685] = 10, + [106559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7258), 1, - anon_sym_LT, - ACTIONS(7508), 1, - anon_sym_LBRACK, - STATE(3750), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4530), 1, - sym_template_argument_list, - ACTIONS(4160), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4165), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4145), 6, + ACTIONS(5637), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4137), 32, + anon_sym_GT2, + ACTIONS(5635), 37, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -456853,48 +458840,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [107757] = 5, + [106617] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6750), 1, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6660), 1, + anon_sym_EQ, + ACTIONS(6819), 1, anon_sym_LBRACK, - STATE(4132), 1, - sym_new_declarator, - ACTIONS(6091), 16, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7211), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7539), 1, + anon_sym_PIPE, + ACTIONS(7541), 1, + anon_sym_CARET, + ACTIONS(7543), 1, + anon_sym_AMP, + ACTIONS(7549), 1, + anon_sym_GT_EQ, + ACTIONS(7553), 1, + anon_sym_bitor, + ACTIONS(7555), 1, + anon_sym_xor, + ACTIONS(7557), 1, + anon_sym_bitand, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7531), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7537), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7533), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7545), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7547), 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(6093), 32, + ACTIONS(6662), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456906,79 +458927,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_DASH_GT_STAR, - [107819] = 6, + [106719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7386), 1, - anon_sym_LT, - STATE(2229), 1, - sym_template_argument_list, - ACTIONS(5338), 22, - aux_sym_preproc_elif_token1, + ACTIONS(5348), 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___attribute__, - anon_sym_COLON, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4163), 25, + ACTIONS(2899), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107883] = 3, + anon_sym_GT2, + [106777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 20, + ACTIONS(6348), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456999,7 +459007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6305), 30, + ACTIONS(6350), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457030,10 +459038,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [107941] = 3, + [106835] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5344), 1, + anon_sym_virtual, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(6907), 1, + sym_auto, + ACTIONS(6909), 1, + anon_sym_decltype, + ACTIONS(7603), 1, + anon_sym_SEMI, + STATE(3682), 1, + sym_decltype_auto, + ACTIONS(6921), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(6919), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(5334), 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(3418), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5332), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5297), 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(5299), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [106975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 20, + ACTIONS(5416), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457054,7 +459184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4970), 30, + ACTIONS(5414), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457085,21 +459215,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [107999] = 7, + [107033] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - STATE(1935), 1, - sym_template_argument_list, - STATE(4221), 1, + STATE(4075), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7511), 4, + ACTIONS(7597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5566), 19, + ACTIONS(5964), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -457119,12 +459246,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5568), 24, + ACTIONS(5962), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -457144,27 +459272,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108065] = 7, + [107095] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7607), 1, + anon_sym___attribute__, + ACTIONS(7610), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(7615), 1, + anon_sym_DASH_GT, + ACTIONS(7620), 1, + anon_sym_requires, + STATE(5337), 1, + sym__function_attributes_start, + STATE(5448), 1, + sym_ref_qualifier, + STATE(6268), 1, + sym_trailing_return_type, + STATE(6309), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7617), 2, + anon_sym_final, + anon_sym_override, + STATE(4979), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6390), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5870), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107199] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 1, + ACTIONS(5392), 1, sym_literal_suffix, - STATE(3685), 2, + STATE(3717), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(5648), 5, + ACTIONS(5784), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(5650), 5, + ACTIONS(5786), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4147), 16, + ACTIONS(4145), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -457181,7 +459387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4139), 21, + ACTIONS(4137), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457203,10 +459409,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108131] = 3, + [107265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 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(5264), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [107323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 20, + ACTIONS(6389), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457227,7 +459488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6236), 30, + ACTIONS(6391), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457258,41 +459519,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [108189] = 15, + [107381] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5312), 1, + ACTIONS(5344), 1, anon_sym_virtual, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6766), 1, + ACTIONS(6907), 1, sym_auto, - ACTIONS(6768), 1, + ACTIONS(6909), 1, anon_sym_decltype, - ACTIONS(7513), 1, + ACTIONS(7623), 1, anon_sym_SEMI, - STATE(3589), 1, + STATE(3682), 1, sym_decltype_auto, - ACTIONS(6764), 5, + ACTIONS(6921), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(6762), 6, + ACTIONS(6919), 6, anon_sym_AMP, anon_sym___based, anon_sym_LBRACK, sym_identifier, anon_sym_template, anon_sym_operator, - ACTIONS(5302), 9, + ACTIONS(5334), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -457302,7 +459563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(3437), 9, + STATE(3418), 9, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -457312,7 +459573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_virtual, sym_alignas_specifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(5300), 12, + ACTIONS(5332), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -457325,10 +459586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [108271] = 3, + [107463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6252), 20, + ACTIONS(6377), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457349,7 +459610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6254), 30, + ACTIONS(6379), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457380,14 +459641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [108329] = 5, + [107521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7423), 1, - anon_sym_AMP_AMP, - ACTIONS(7427), 1, - anon_sym_and, - ACTIONS(6206), 19, + ACTIONS(6340), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457405,13 +459662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, + anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6208), 29, + ACTIONS(6342), 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, @@ -457437,10 +459696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [108391] = 3, + [107579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6313), 20, + ACTIONS(6352), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457461,7 +459720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6315), 30, + ACTIONS(6354), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457492,10 +459751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [108449] = 3, + [107637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 20, + ACTIONS(6461), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457516,7 +459775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6289), 30, + ACTIONS(6463), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457547,65 +459806,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [108507] = 3, + [107695] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6283), 20, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + STATE(1974), 1, + sym_template_argument_list, + STATE(4204), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7625), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5593), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6285), 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5595), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_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, + [107761] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6681), 1, + anon_sym_EQ, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7211), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7539), 1, + anon_sym_PIPE, + ACTIONS(7541), 1, + anon_sym_CARET, + ACTIONS(7543), 1, + anon_sym_AMP, + ACTIONS(7549), 1, + anon_sym_GT_EQ, + ACTIONS(7553), 1, + anon_sym_bitor, + ACTIONS(7555), 1, + anon_sym_xor, + ACTIONS(7557), 1, + anon_sym_bitand, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7531), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7537), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7533), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7545), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7547), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6683), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [108565] = 3, + anon_sym_DASH_GT_STAR, + [107863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6317), 20, + ACTIONS(6363), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457626,7 +459966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6319), 30, + ACTIONS(6365), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457657,10 +459997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [108623] = 3, + [107921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 20, + ACTIONS(6381), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457681,7 +460021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4970), 30, + ACTIONS(6383), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457712,10 +460052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [108681] = 3, + [107979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 20, + ACTIONS(2136), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457736,7 +460076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4970), 30, + ACTIONS(2134), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457767,14 +460107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [108739] = 5, + [108037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 1, - anon_sym_LT, - STATE(2745), 1, - sym_template_argument_list, - ACTIONS(6437), 17, + ACTIONS(5195), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457784,24 +460120,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(6439), 31, + ACTIONS(5197), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457809,7 +460147,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -457824,10 +460161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108801] = 3, + anon_sym_GT2, + [108095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 20, + ACTIONS(5246), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457848,7 +460186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4970), 30, + ACTIONS(5248), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457879,10 +460217,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [108859] = 3, + [108153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 20, + ACTIONS(4016), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4014), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [108211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2186), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457903,7 +460296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5206), 30, + ACTIONS(2184), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457934,10 +460327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [108917] = 3, + [108269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 20, + ACTIONS(6393), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457958,7 +460351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6262), 30, + ACTIONS(6395), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457989,10 +460382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [108975] = 3, + [108327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 20, + ACTIONS(6300), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458013,7 +460406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6258), 30, + ACTIONS(6302), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -458044,10 +460437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [109033] = 3, + [108385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 20, + ACTIONS(6193), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458068,7 +460461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4970), 30, + ACTIONS(6195), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -458099,23 +460492,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [109091] = 9, + [108443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LT, + STATE(4129), 1, + sym_template_argument_list, + ACTIONS(4161), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6885), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5397), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6162), 14, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [108507] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5344), 1, + anon_sym_virtual, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(6907), 1, + sym_auto, + ACTIONS(6909), 1, + anon_sym_decltype, + ACTIONS(7627), 1, + anon_sym_SEMI, + STATE(3682), 1, + sym_decltype_auto, + ACTIONS(6921), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(6919), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(5334), 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(3418), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5332), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5201), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458125,20 +460630,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6164), 29, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5203), 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, @@ -458146,79 +460657,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [109161] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [108647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 20, + ACTIONS(5266), 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(6359), 30, + sym_identifier, + sym_literal_suffix, + ACTIONS(5268), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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, - [109219] = 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, + [108705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 20, + ACTIONS(6423), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458239,7 +460751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5210), 30, + ACTIONS(6425), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -458270,10 +460782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [109277] = 3, + [108763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 20, + ACTIONS(6427), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458294,7 +460806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6250), 30, + ACTIONS(6429), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -458325,10 +460837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [109335] = 3, + [108821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 20, + ACTIONS(6269), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458349,7 +460861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6293), 30, + ACTIONS(6271), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -458380,74 +460892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [109393] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4076), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7515), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5590), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5592), 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, - [109455] = 3, + [108879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 6, + ACTIONS(7631), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4020), 44, + ACTIONS(7629), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -458492,71 +460947,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [109513] = 25, + [108937] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6646), 1, - anon_sym_EQ, - ACTIONS(6885), 1, + ACTIONS(6761), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, - anon_sym_PIPE, - ACTIONS(7453), 1, - anon_sym_CARET, - ACTIONS(7455), 1, - anon_sym_AMP, - ACTIONS(7461), 1, - anon_sym_GT_EQ, - ACTIONS(7465), 1, - anon_sym_bitor, - ACTIONS(7467), 1, - anon_sym_xor, - ACTIONS(7469), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + STATE(4148), 1, + sym_new_declarator, + ACTIONS(6118), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7463), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7502), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7445), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7457), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7459), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6648), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6120), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458568,42 +460993,52 @@ 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, - [109615] = 15, + [108999] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5312), 1, + ACTIONS(5344), 1, anon_sym_virtual, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6766), 1, + ACTIONS(6907), 1, sym_auto, - ACTIONS(6768), 1, + ACTIONS(6909), 1, anon_sym_decltype, - ACTIONS(7517), 1, + ACTIONS(7633), 1, anon_sym_SEMI, - STATE(3589), 1, + STATE(3682), 1, sym_decltype_auto, - ACTIONS(6764), 5, + ACTIONS(6921), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(6762), 6, + ACTIONS(6919), 6, anon_sym_AMP, anon_sym___based, anon_sym_LBRACK, sym_identifier, anon_sym_template, anon_sym_operator, - ACTIONS(5302), 9, + ACTIONS(5334), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -458613,7 +461048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(3437), 9, + STATE(3418), 9, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -458623,7 +461058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_virtual, sym_alignas_specifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(5300), 12, + ACTIONS(5332), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -458636,134 +461071,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109697] = 5, + [109081] = 3, ACTIONS(3), 1, sym_comment, - STATE(4033), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7519), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5246), 20, - aux_sym_preproc_elif_token1, + ACTIONS(6477), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5248), 25, + ACTIONS(6479), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [109759] = 15, + anon_sym_GT2, + [109139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5312), 1, - anon_sym_virtual, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6766), 1, - sym_auto, - ACTIONS(6768), 1, - anon_sym_decltype, - ACTIONS(7522), 1, - anon_sym_SEMI, - STATE(3589), 1, - sym_decltype_auto, - ACTIONS(6764), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6465), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(6762), 6, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___based, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6467), 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, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5302), 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(3437), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5300), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [109841] = 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, + [109197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 20, + ACTIONS(6411), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458784,7 +461205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5153), 30, + ACTIONS(6413), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -458815,84 +461236,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [109899] = 5, + [109255] = 3, ACTIONS(3), 1, sym_comment, - STATE(2918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5905), 4, + ACTIONS(6340), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(7443), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5903), 41, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6342), 30, + 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_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [109961] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(7524), 1, - anon_sym___attribute__, - ACTIONS(7526), 1, - anon_sym_LBRACE, - STATE(4498), 1, - sym_field_declaration_list, - STATE(4620), 1, - sym_attribute_specifier, - STATE(7365), 1, - sym_virtual_specifier, - STATE(8094), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5284), 18, + 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, + [109313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -458909,9 +461311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5286), 23, + sym_literal_suffix, + ACTIONS(5272), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -458935,10 +461336,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [110035] = 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, + [109371] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 20, + ACTIONS(5610), 1, + anon_sym_EQ, + ACTIONS(5612), 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(4145), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458948,18 +461375,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(5145), 30, + ACTIONS(4137), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -458967,20 +461391,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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -458989,101 +461403,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [110093] = 3, + [109433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7530), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5046), 2, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7528), 44, + anon_sym_LBRACE, + ACTIONS(5048), 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [110151] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5054), 2, + 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, - ACTIONS(5056), 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(4139), 18, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5041), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_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, - anon_sym_GT2, - ACTIONS(4147), 18, + anon_sym_DASH_GT_STAR, + [109493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6435), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459098,14 +461477,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - [110213] = 3, + ACTIONS(6437), 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, + [109551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6333), 20, + ACTIONS(6439), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459126,7 +461538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6335), 30, + ACTIONS(6441), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -459157,10 +461569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [110271] = 3, + [109609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 20, + ACTIONS(3924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459181,7 +461593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6446), 30, + ACTIONS(3920), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -459212,10 +461624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [110329] = 3, + [109667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 20, + ACTIONS(6222), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459236,7 +461648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6462), 30, + ACTIONS(6224), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -459267,30 +461679,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [110387] = 5, + [109725] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7635), 1, + anon_sym_LT, + STATE(2278), 1, + sym_template_argument_list, + ACTIONS(5007), 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5012), 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, + [109789] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LT, + STATE(4129), 1, + sym_template_argument_list, + ACTIONS(5012), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5007), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [109853] = 10, ACTIONS(3), 1, sym_comment, - STATE(3825), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LT, + ACTIONS(7640), 1, + anon_sym_EQ, + STATE(3867), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7191), 4, + STATE(4129), 1, + sym_template_argument_list, + ACTIONS(7638), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(4163), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5537), 12, + ACTIONS(4143), 6, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_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(5535), 33, + ACTIONS(4135), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -459324,10 +461857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [110449] = 3, + [109925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 20, + ACTIONS(6415), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459348,7 +461881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5153), 30, + ACTIONS(6417), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -459379,77 +461912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [110507] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5312), 1, - anon_sym_virtual, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6766), 1, - sym_auto, - ACTIONS(6768), 1, - anon_sym_decltype, - ACTIONS(7532), 1, - anon_sym_SEMI, - STATE(3589), 1, - sym_decltype_auto, - ACTIONS(6764), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(6762), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5302), 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(3437), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5300), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [110589] = 3, + [109983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 20, + ACTIONS(6344), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459470,7 +461936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5153), 30, + ACTIONS(6346), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -459501,65 +461967,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [110647] = 21, + [110041] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6469), 1, + anon_sym_EQ, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - ACTIONS(7141), 1, + ACTIONS(7145), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7189), 1, + anon_sym_QMARK, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, - ACTIONS(7453), 1, + ACTIONS(7539), 1, + anon_sym_PIPE, + ACTIONS(7541), 1, anon_sym_CARET, - ACTIONS(7455), 1, + ACTIONS(7543), 1, anon_sym_AMP, - ACTIONS(7461), 1, + ACTIONS(7549), 1, anon_sym_GT_EQ, - ACTIONS(7467), 1, + ACTIONS(7553), 1, + anon_sym_bitor, + ACTIONS(7555), 1, anon_sym_xor, - ACTIONS(7469), 1, + ACTIONS(7557), 1, anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6170), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(6887), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7155), 2, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + ACTIONS(7531), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7463), 2, + ACTIONS(7535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7537), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7445), 3, + ACTIONS(7533), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7457), 3, + ACTIONS(7545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7459), 3, + ACTIONS(7547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(6471), 13, 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, @@ -459570,75 +462045,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, anon_sym_DASH_GT_STAR, - [110741] = 25, + [110147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6607), 1, - anon_sym_EQ, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, - anon_sym_PIPE, - ACTIONS(7453), 1, - anon_sym_CARET, - ACTIONS(7455), 1, - anon_sym_AMP, - ACTIONS(7461), 1, - anon_sym_GT_EQ, - ACTIONS(7465), 1, - anon_sym_bitor, - ACTIONS(7467), 1, - anon_sym_xor, - ACTIONS(7469), 1, - anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + ACTIONS(6447), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7463), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7502), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7445), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7457), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7459), 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(6609), 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(6449), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459646,79 +462086,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [110843] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7544), 1, - anon_sym___attribute__, - ACTIONS(7547), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7550), 1, - anon_sym___declspec, - ACTIONS(7553), 1, - anon_sym_virtual, - ACTIONS(7556), 1, - anon_sym_alignas, - ACTIONS(7559), 1, - anon_sym_explicit, - ACTIONS(7536), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(7534), 7, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(7541), 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(4050), 11, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - ACTIONS(7538), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [110919] = 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, + [110205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 20, + ACTIONS(6469), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459739,7 +462125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6212), 30, + ACTIONS(6471), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -459770,10 +462156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [110977] = 3, + [110263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 20, + ACTIONS(6334), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459794,7 +462180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(2146), 30, + ACTIONS(6336), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -459825,17 +462211,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [111035] = 5, + [110321] = 6, ACTIONS(3), 1, sym_comment, - STATE(4033), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7562), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5995), 20, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7385), 1, + anon_sym_LT, + STATE(2278), 1, + sym_template_argument_list, + ACTIONS(5397), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -459844,8 +462229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -459856,7 +462241,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5993), 25, + anon_sym_final, + anon_sym_override, + ACTIONS(4161), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -459882,49 +462269,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [111097] = 6, + [110385] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7571), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7567), 4, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7569), 5, + ACTIONS(7427), 1, anon_sym_AMP, - anon_sym___based, + ACTIONS(7433), 1, anon_sym_LBRACK, - anon_sym_explicit, - anon_sym_operator, - ACTIONS(7574), 11, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_auto, - anon_sym_typename, - ACTIONS(7564), 28, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7607), 1, 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, + ACTIONS(7610), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7613), 1, anon_sym_const, + ACTIONS(7615), 1, + anon_sym_DASH_GT, + ACTIONS(7642), 1, + anon_sym_requires, + STATE(5367), 1, + sym__function_attributes_start, + STATE(5487), 1, + sym_ref_qualifier, + STATE(6243), 1, + sym_trailing_return_type, + STATE(6281), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4979), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6390), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5872), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(7605), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -459935,134 +462347,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - [111161] = 5, + [110489] = 3, ACTIONS(3), 1, sym_comment, - STATE(4033), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7562), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5991), 20, - aux_sym_preproc_elif_token1, + ACTIONS(5183), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5989), 25, + ACTIONS(5185), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [111223] = 25, + anon_sym_GT2, + [110547] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6640), 1, + ACTIONS(6614), 1, anon_sym_EQ, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - ACTIONS(7141), 1, + ACTIONS(7145), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7189), 1, + anon_sym_QMARK, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, + ACTIONS(7539), 1, anon_sym_PIPE, - ACTIONS(7453), 1, + ACTIONS(7541), 1, anon_sym_CARET, - ACTIONS(7455), 1, + ACTIONS(7543), 1, anon_sym_AMP, - ACTIONS(7461), 1, + ACTIONS(7549), 1, anon_sym_GT_EQ, - ACTIONS(7465), 1, + ACTIONS(7553), 1, anon_sym_bitor, - ACTIONS(7467), 1, + ACTIONS(7555), 1, anon_sym_xor, - ACTIONS(7469), 1, + ACTIONS(7557), 1, anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7155), 2, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + ACTIONS(7531), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, + ACTIONS(7535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7537), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7463), 2, + ACTIONS(7551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7502), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7445), 3, + ACTIONS(7533), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7457), 3, + ACTIONS(7545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7459), 3, + ACTIONS(7547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6642), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(6618), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -460074,88 +462481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_DASH_GT_STAR, - [111325] = 26, + [110653] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7644), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7329), 1, - anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7431), 1, - anon_sym___attribute__, - ACTIONS(7434), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7439), 1, - anon_sym_DASH_GT, - ACTIONS(7579), 1, - anon_sym_requires, - STATE(5308), 1, - sym__function_attributes_start, - STATE(5453), 1, - sym_ref_qualifier, - STATE(6226), 1, - sym__function_attributes_end, - STATE(6231), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7576), 2, - anon_sym_final, - anon_sym_override, - STATE(4950), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5364), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5842), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5316), 20, + ACTIONS(7646), 1, + anon_sym_and, + ACTIONS(6233), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460173,15 +462506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(2871), 30, + ACTIONS(6235), 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, @@ -460207,34 +462538,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [111487] = 6, + [110715] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(7655), 2, anon_sym_COLON_COLON, - ACTIONS(7258), 1, - anon_sym_LT, - STATE(4097), 1, - sym_template_argument_list, - ACTIONS(4975), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(7651), 4, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7653), 5, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(7658), 11, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_auto, + anon_sym_typename, + ACTIONS(7648), 28, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + [110779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6709), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4968), 36, + ACTIONS(6707), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -460255,52 +462637,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - [111551] = 5, + [110837] = 5, ACTIONS(3), 1, sym_comment, - STATE(3954), 1, + STATE(4075), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5946), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(7582), 4, + ACTIONS(7660), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5944), 41, + ACTIONS(5278), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5280), 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_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_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, + [110899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6257), 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(6259), 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, + [110957] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7072), 1, + anon_sym_COLON_COLON, + ACTIONS(7669), 1, anon_sym___attribute__, + ACTIONS(7672), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7675), 1, anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7678), 1, + anon_sym_virtual, + ACTIONS(7681), 1, + anon_sym_alignas, + ACTIONS(7666), 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(4077), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7663), 12, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -460311,21 +462811,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(7070), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [111031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5179), 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(5181), 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, + [111089] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7644), 1, + anon_sym_AMP_AMP, + ACTIONS(7646), 1, + anon_sym_and, + ACTIONS(7684), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7686), 1, + anon_sym_or, + ACTIONS(6165), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6167), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_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, - [111613] = 3, + [111155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6264), 20, + ACTIONS(5224), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460346,7 +462964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6266), 30, + ACTIONS(5226), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -460377,10 +462995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [111671] = 3, + [111213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 20, + ACTIONS(5250), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460401,7 +463019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6309), 30, + ACTIONS(5252), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -460432,10 +463050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [111729] = 3, + [111271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 20, + ACTIONS(6453), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460456,7 +463074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5194), 30, + ACTIONS(6455), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -460487,10 +463105,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [111787] = 3, + [111329] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5086), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5088), 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(4137), 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(4145), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [111391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6429), 20, + ACTIONS(6419), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460511,7 +463186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6431), 30, + ACTIONS(6421), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -460542,10 +463217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [111845] = 3, + [111449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6417), 20, + ACTIONS(6385), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460566,7 +463241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6419), 30, + ACTIONS(6387), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -460597,89 +463272,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [111903] = 27, + [111507] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7431), 1, + anon_sym___attribute__, + STATE(3710), 1, + sym_attribute_specifier, + STATE(4350), 1, + sym_field_declaration_list, + STATE(7332), 1, + sym_virtual_specifier, + STATE(8295), 1, + sym_base_class_clause, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5315), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5317), 37, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6630), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_EQ, - ACTIONS(6885), 1, - anon_sym_LBRACK, - ACTIONS(6889), 1, - anon_sym_DOT_STAR, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7119), 1, - anon_sym_QMARK, - ACTIONS(7141), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [111581] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4016), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7688), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5762), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(7453), 1, - anon_sym_CARET, - ACTIONS(7455), 1, anon_sym_AMP, - ACTIONS(7461), 1, - anon_sym_GT_EQ, - ACTIONS(7465), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(7467), 1, anon_sym_xor, - ACTIONS(7469), 1, anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, - sym_argument_list, - ACTIONS(6887), 2, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7155), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7463), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7502), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7445), 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5764), 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_SLASH, anon_sym_PERCENT, - ACTIONS(7457), 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(7459), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6634), 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, - [112009] = 3, + 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, + [111643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6452), 20, + ACTIONS(6481), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460700,7 +463416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6454), 30, + ACTIONS(6483), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -460731,63 +463447,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [112067] = 15, + [111701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5312), 1, - anon_sym_virtual, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6766), 1, - sym_auto, - ACTIONS(6768), 1, - anon_sym_decltype, - ACTIONS(7584), 1, - anon_sym_SEMI, - STATE(3589), 1, - sym_decltype_auto, - ACTIONS(6764), 5, + ACTIONS(4020), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(6762), 6, + anon_sym_LBRACK_LBRACK, + ACTIONS(4018), 44, anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - ACTIONS(5302), 9, + [111759] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5964), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7690), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5962), 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_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(3437), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5300), 12, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -460798,31 +463548,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [112149] = 10, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [111821] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7155), 2, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6121), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7533), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -460832,7 +463594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6123), 27, + ACTIONS(6153), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460860,10 +463622,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [112221] = 3, + [111895] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6407), 20, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6151), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460873,26 +463651,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6409), 30, + ACTIONS(6153), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -460900,54 +463672,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [112279] = 3, + anon_sym_DASH_GT_STAR, + [111967] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6413), 20, + ACTIONS(6151), 1, + anon_sym_EQ, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7211), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7539), 1, + anon_sym_PIPE, + ACTIONS(7541), 1, + anon_sym_CARET, + ACTIONS(7543), 1, + anon_sym_AMP, + ACTIONS(7549), 1, + anon_sym_GT_EQ, + ACTIONS(7553), 1, + anon_sym_bitor, + ACTIONS(7555), 1, + anon_sym_xor, + ACTIONS(7557), 1, + anon_sym_bitand, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7531), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7537), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7533), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7545), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7547), 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(6415), 30, + ACTIONS(6153), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -460955,54 +463754,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_or, + anon_sym_DASH_GT_STAR, + [112067] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6151), 1, + anon_sym_EQ, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, + ACTIONS(7539), 1, + anon_sym_PIPE, + ACTIONS(7541), 1, + anon_sym_CARET, + ACTIONS(7543), 1, + anon_sym_AMP, + ACTIONS(7549), 1, + anon_sym_GT_EQ, + ACTIONS(7553), 1, anon_sym_bitor, + ACTIONS(7555), 1, + anon_sym_xor, + ACTIONS(7557), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [112337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5180), 20, + ACTIONS(7531), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7533), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7545), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7547), 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(5182), 30, + ACTIONS(6153), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461010,54 +463828,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_or, + anon_sym_and, + anon_sym_DASH_GT_STAR, + [112165] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(7541), 1, + anon_sym_CARET, + ACTIONS(7543), 1, + anon_sym_AMP, + ACTIONS(7549), 1, + anon_sym_GT_EQ, + ACTIONS(7555), 1, + anon_sym_xor, + ACTIONS(7557), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6151), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [112395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6238), 20, + ACTIONS(7531), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7533), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7545), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7547), 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(6240), 30, + ACTIONS(6153), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461065,89 +463900,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_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [112453] = 27, + anon_sym_DASH_GT_STAR, + [112259] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6652), 1, - anon_sym_EQ, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - ACTIONS(7075), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7119), 1, - anon_sym_QMARK, - ACTIONS(7141), 1, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, - ACTIONS(7451), 1, - anon_sym_PIPE, - ACTIONS(7453), 1, - anon_sym_CARET, - ACTIONS(7455), 1, + ACTIONS(7543), 1, anon_sym_AMP, - ACTIONS(7461), 1, + ACTIONS(7549), 1, anon_sym_GT_EQ, - ACTIONS(7465), 1, - anon_sym_bitor, - ACTIONS(7467), 1, - anon_sym_xor, - ACTIONS(7469), 1, + ACTIONS(7557), 1, anon_sym_bitand, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7155), 2, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7447), 2, + ACTIONS(7531), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7449), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7463), 2, + ACTIONS(7551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7502), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7445), 3, + ACTIONS(6151), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(7533), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7457), 3, + ACTIONS(7545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7459), 3, + ACTIONS(7547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6654), 13, + ACTIONS(6153), 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, @@ -461158,156 +463974,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_DASH_GT_STAR, - [112559] = 5, + [112349] = 17, ACTIONS(3), 1, sym_comment, - STATE(3952), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5940), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(7586), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5938), 41, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6581), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [112621] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4033), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7562), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5905), 20, - aux_sym_preproc_elif_token1, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7211), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7549), 1, + anon_sym_GT_EQ, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7531), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7533), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(7545), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7547), 3, 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5903), 25, + ACTIONS(6151), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(6153), 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_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [112683] = 15, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_DASH_GT_STAR, + [112435] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5312), 1, + ACTIONS(5344), 1, anon_sym_virtual, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6766), 1, + ACTIONS(6907), 1, sym_auto, - ACTIONS(6768), 1, + ACTIONS(6909), 1, anon_sym_decltype, - ACTIONS(7588), 1, + ACTIONS(7692), 1, anon_sym_SEMI, - STATE(3589), 1, + STATE(3682), 1, sym_decltype_auto, - ACTIONS(6764), 5, + ACTIONS(6921), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(6762), 6, + ACTIONS(6919), 6, anon_sym_AMP, anon_sym___based, anon_sym_LBRACK, sym_identifier, anon_sym_template, anon_sym_operator, - ACTIONS(5302), 9, + ACTIONS(5334), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -461317,7 +464092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(3437), 9, + STATE(3418), 9, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -461327,8 +464102,58 @@ static const uint16_t ts_small_parse_table[] = { sym_virtual, sym_alignas_specifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(5300), 12, + ACTIONS(5332), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112517] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3802), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7286), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5420), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5418), 33, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + 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, @@ -461340,152 +464165,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [112765] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [112579] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 17, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7211), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7549), 1, + anon_sym_GT_EQ, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7531), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7533), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(7547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(6151), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(6153), 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_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(5255), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_DASH_GT_STAR, + [112663] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 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, + ACTIONS(6819), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7211), 1, anon_sym_LT_EQ_GT, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [112823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5257), 17, + ACTIONS(7531), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7533), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6151), 7, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_EQ, + ACTIONS(6153), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [112743] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + ACTIONS(6652), 1, + anon_sym_EQ, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7211), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7539), 1, + anon_sym_PIPE, + ACTIONS(7541), 1, + anon_sym_CARET, + ACTIONS(7543), 1, + anon_sym_AMP, + ACTIONS(7549), 1, + anon_sym_GT_EQ, + ACTIONS(7553), 1, + anon_sym_bitor, + ACTIONS(7555), 1, + anon_sym_xor, + ACTIONS(7557), 1, + anon_sym_bitand, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5259), 33, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7531), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7537), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7533), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7545), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7547), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6654), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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, + [112845] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6581), 1, anon_sym_LPAREN2, + ACTIONS(6819), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7225), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7531), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7533), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 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(6153), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_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, - [112881] = 10, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [112921] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7258), 1, - anon_sym_LT, - ACTIONS(7592), 1, - anon_sym_EQ, - STATE(3750), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4097), 1, - sym_template_argument_list, - ACTIONS(7590), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(4165), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4145), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5344), 1, + anon_sym_virtual, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(6907), 1, + sym_auto, + ACTIONS(6909), 1, + anon_sym_decltype, + ACTIONS(7694), 1, + anon_sym_SEMI, + STATE(3682), 1, + sym_decltype_auto, + ACTIONS(6921), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4137), 33, + anon_sym_COLON_COLON, + ACTIONS(6919), 6, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(5334), 9, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -461494,6 +464491,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + STATE(3418), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5332), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -461505,41 +464514,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [112953] = 6, + [113003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7258), 1, - anon_sym_LT, - STATE(4097), 1, - sym_template_argument_list, - ACTIONS(4163), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7698), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5338), 36, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7696), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -461560,85 +464555,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - [113017] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7594), 1, - anon_sym_LT, - STATE(2229), 1, - sym_template_argument_list, - ACTIONS(4968), 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_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4975), 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, - [113081] = 5, + [113061] = 5, ACTIONS(3), 1, sym_comment, - STATE(4033), 1, + STATE(4075), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7562), 4, + ACTIONS(7597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5911), 20, + ACTIONS(6022), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -461659,7 +464600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5909), 25, + ACTIONS(6020), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -461685,96 +464626,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [113143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6675), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6673), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [113201] = 10, + [113123] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7155), 2, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6190), 14, + ACTIONS(7531), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7533), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6151), 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(6192), 27, + ACTIONS(6153), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -461802,10 +464691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [113273] = 3, + [113201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 20, + ACTIONS(6181), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461826,7 +464715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6224), 30, + ACTIONS(6183), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -461857,118 +464746,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [113331] = 3, + [113259] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6022), 4, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6270), 30, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7690), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6020), 41, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [113389] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(5308), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, anon_sym___declspec, - ACTIONS(5312), 1, - anon_sym_virtual, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6766), 1, + anon_sym_LBRACE, + anon_sym_EQ, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_auto, - ACTIONS(6768), 1, anon_sym_decltype, - ACTIONS(7597), 1, - anon_sym_SEMI, - STATE(3589), 1, - sym_decltype_auto, - ACTIONS(6764), 5, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [113321] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6028), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7690), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6026), 41, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(6762), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5302), 9, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(3437), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5300), 12, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -461979,10 +464849,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [113471] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [113383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6425), 20, + ACTIONS(6308), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462003,7 +464884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6427), 30, + ACTIONS(6310), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -462034,175 +464915,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [113529] = 3, + [113441] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6581), 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_LBRACE, + ACTIONS(6677), 1, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5723), 37, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6819), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [113587] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5230), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6996), 1, + anon_sym_DOT_STAR, + ACTIONS(7145), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7189), 1, + anon_sym_QMARK, + ACTIONS(7211), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7539), 1, anon_sym_PIPE, + ACTIONS(7541), 1, + anon_sym_CARET, + ACTIONS(7543), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(7549), 1, + anon_sym_GT_EQ, + ACTIONS(7553), 1, anon_sym_bitor, + ACTIONS(7555), 1, anon_sym_xor, + ACTIONS(7557), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3774), 1, + sym_argument_list, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5232), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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_GT, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [113645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5261), 17, + ACTIONS(7531), 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(7535), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(7537), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5263), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(7551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7533), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(7545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_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, - [113703] = 3, + anon_sym_not_eq, + ACTIONS(7547), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6679), 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, + [113547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 20, + ACTIONS(6293), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462223,7 +465018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(2142), 30, + ACTIONS(6295), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -462254,26 +465049,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [113761] = 10, + [113605] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(6819), 1, anon_sym_LBRACK, - ACTIONS(6889), 1, + ACTIONS(6996), 1, anon_sym_DOT_STAR, - STATE(3819), 1, - sym_subscript_argument_list, - STATE(3820), 1, + STATE(3774), 1, sym_argument_list, - ACTIONS(6887), 2, + STATE(3776), 1, + sym_subscript_argument_list, + ACTIONS(6863), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7155), 2, + ACTIONS(7225), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6133), 14, + ACTIONS(6131), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462288,7 +465083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6135), 27, + ACTIONS(6133), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -462316,10 +465111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [113833] = 3, + [113677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 20, + ACTIONS(6289), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462340,7 +465135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6228), 30, + ACTIONS(6291), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -462371,10 +465166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [113891] = 3, + [113735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6373), 20, + ACTIONS(5242), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462395,7 +465190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6375), 30, + ACTIONS(5244), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -462426,817 +465221,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [113949] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5019), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5012), 36, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [114006] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7329), 1, - anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7434), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7604), 1, - anon_sym_DASH_GT, - STATE(5357), 1, - sym__function_attributes_start, - STATE(5513), 1, - sym_ref_qualifier, - STATE(6237), 1, - sym__function_attributes_end, - STATE(6327), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7601), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4950), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5364), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5881), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [114109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7530), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7528), 36, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [114166] = 7, + [113793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6053), 1, - sym_literal_suffix, - STATE(3748), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(5058), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5060), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4147), 17, + ACTIONS(6277), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4139), 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, - [114231] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7329), 1, - anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7606), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7609), 1, - anon_sym_DASH_GT, - ACTIONS(7611), 1, - anon_sym_requires, - STATE(5369), 1, - sym__function_attributes_start, - STATE(5507), 1, - sym_ref_qualifier, - STATE(6281), 1, - sym__function_attributes_end, - STATE(6300), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7576), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7601), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4731), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5252), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5867), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_try, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [114334] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5246), 1, - sym_primitive_type, - STATE(4107), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7614), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5789), 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_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5786), 24, + ACTIONS(6279), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [114397] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7617), 1, - anon_sym_LT, - STATE(4221), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4283), 1, - sym_template_argument_list, - ACTIONS(7511), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4137), 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4145), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [114464] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(7619), 1, - anon_sym_LBRACE, - ACTIONS(7621), 1, - anon_sym_COLON, - STATE(3613), 1, - sym_attribute_specifier, - STATE(4218), 1, - sym__enum_base_clause, - STATE(4334), 1, - sym_enumerator_list, - ACTIONS(6057), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(6055), 32, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [114533] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7329), 1, - anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7434), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7623), 1, - anon_sym_DASH_GT, - STATE(5350), 1, - sym__function_attributes_start, - STATE(5518), 1, - sym_ref_qualifier, - STATE(6327), 1, - sym_trailing_return_type, - STATE(6389), 1, - sym__function_attributes_end, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4950), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5364), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5868), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [114636] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - ACTIONS(5338), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4163), 41, - 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_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [114699] = 5, + [113851] = 3, ACTIONS(3), 1, sym_comment, - STATE(4107), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7614), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5246), 20, + ACTIONS(6273), 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__, - sym_primitive_type, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5248), 24, + ACTIONS(6275), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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, - [114760] = 3, + anon_sym_GT2, + [113909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 18, + ACTIONS(6457), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5263), 31, + ACTIONS(6459), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [114817] = 9, + anon_sym_GT2, + [113967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, - anon_sym___attribute__, - ACTIONS(7625), 1, - anon_sym_LBRACE, - ACTIONS(7627), 1, - anon_sym_COLON, - STATE(4284), 1, - sym__enum_base_clause, - STATE(4333), 1, - sym_enumerator_list, - STATE(4506), 1, - sym_attribute_specifier, - ACTIONS(6073), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6473), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6075), 24, + ACTIONS(6475), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [114886] = 5, + anon_sym_GT2, + [114025] = 5, ACTIONS(3), 1, sym_comment, - STATE(4076), 1, + STATE(4075), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7515), 4, + ACTIONS(7597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5535), 19, + ACTIONS(6028), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -463246,6 +465461,7 @@ 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, @@ -463256,7 +465472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5537), 25, + ACTIONS(6026), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -463282,94 +465498,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [114947] = 7, + [114087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, - sym_identifier, - ACTIONS(7634), 1, - sym_primitive_type, - STATE(4102), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7632), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5638), 18, + ACTIONS(5014), 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_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_auto, - anon_sym_decltype, - ACTIONS(5636), 24, + ACTIONS(5019), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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, - [115012] = 8, + anon_sym_GT2, + [114145] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7258), 1, - anon_sym_LT, - ACTIONS(7592), 1, - anon_sym_EQ, - STATE(4097), 1, - sym_template_argument_list, - ACTIONS(7590), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(4163), 7, - anon_sym_DOT_DOT_DOT, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5344), 1, + anon_sym_virtual, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(6907), 1, + sym_auto, + ACTIONS(6909), 1, + anon_sym_decltype, + ACTIONS(7700), 1, + anon_sym_SEMI, + STATE(3682), 1, + sym_decltype_auto, + ACTIONS(6921), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(5338), 36, + anon_sym_COLON_COLON, + ACTIONS(6919), 6, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(5334), 9, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -463378,6 +465597,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + STATE(3418), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5332), 12, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -463389,83 +465620,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [115079] = 26, + [114227] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5986), 4, anon_sym_AMP, - ACTIONS(7329), 1, anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7434), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, + anon_sym___inline, anon_sym_const, - ACTIONS(7579), 1, - anon_sym_requires, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7623), 1, - anon_sym_DASH_GT, - STATE(5354), 1, - sym__function_attributes_start, - STATE(5528), 1, - sym_ref_qualifier, - STATE(6231), 1, - sym_trailing_return_type, - STATE(6431), 1, - sym__function_attributes_end, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7576), 2, - anon_sym_final, - anon_sym_override, - STATE(4950), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5364), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5872), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 6, + ACTIONS(7690), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5988), 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_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(7429), 11, - anon_sym___extension__, + 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, @@ -463476,10 +465666,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115182] = 3, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 23, + ACTIONS(6281), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463489,30 +465690,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(6689), 26, + ACTIONS(6283), 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, @@ -463521,86 +465717,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_STAR, - [115239] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(7619), 1, - anon_sym_LBRACE, - ACTIONS(7621), 1, - anon_sym_COLON, - STATE(3675), 1, - sym_attribute_specifier, - STATE(4226), 1, - sym__enum_base_clause, - STATE(4362), 1, - sym_enumerator_list, - ACTIONS(6075), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(6073), 32, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [115308] = 6, + [114347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5532), 1, - anon_sym_LBRACK, - ACTIONS(5526), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(4147), 16, + ACTIONS(5238), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463610,21 +465745,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(4139), 29, + ACTIONS(5240), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -463632,79 +465772,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [115371] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [114405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 18, + ACTIONS(6431), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5232), 31, + ACTIONS(6433), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [115428] = 3, + anon_sym_GT2, + [114463] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7702), 1, + anon_sym_LBRACE, + ACTIONS(7704), 1, + anon_sym_COLON, + STATE(3613), 1, + sym_attribute_specifier, + STATE(4282), 1, + sym__enum_base_clause, + STATE(4351), 1, + sym_enumerator_list, + ACTIONS(6110), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6108), 32, + anon_sym_AMP, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [114532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 13, + ACTIONS(5046), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -463718,7 +465919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(7498), 36, + ACTIONS(5039), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -463747,80 +465948,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_COLON, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [115485] = 26, + [114589] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5048), 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_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(5041), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [114648] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(61), 1, anon_sym_const, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7329), 1, + ACTIONS(7433), 1, anon_sym_LBRACK, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7606), 1, + ACTIONS(7706), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7636), 1, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(7638), 1, + ACTIONS(7711), 1, anon_sym_requires, - STATE(5352), 1, + STATE(5376), 1, sym__function_attributes_start, - STATE(5532), 1, + STATE(5551), 1, sym_ref_qualifier, - STATE(6234), 1, + STATE(6333), 1, sym_trailing_return_type, - STATE(6385), 1, + STATE(6408), 1, sym__function_attributes_end, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(4731), 2, + ACTIONS(7617), 2, + anon_sym_final, + anon_sym_override, + STATE(4766), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5252), 2, + STATE(5312), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, + STATE(6390), 2, sym__function_postfix, sym_requires_clause, - STATE(5866), 3, + STATE(5891), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7319), 6, + ACTIONS(7423), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(7325), 11, + ACTIONS(7429), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -463832,72 +466088,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115588] = 26, + [114751] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7321), 1, + anon_sym___attribute__, + ACTIONS(7714), 1, + anon_sym_LBRACE, + ACTIONS(7716), 1, + anon_sym_COLON, + STATE(4313), 1, + sym__enum_base_clause, + STATE(4374), 1, + sym_enumerator_list, + STATE(4550), 1, + sym_attribute_specifier, + ACTIONS(6114), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6116), 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, + [114820] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(61), 1, anon_sym_const, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7329), 1, + ACTIONS(7433), 1, anon_sym_LBRACK, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7606), 1, + ACTIONS(7706), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7609), 1, - anon_sym_DASH_GT, - ACTIONS(7638), 1, + ACTIONS(7711), 1, anon_sym_requires, - STATE(5349), 1, + ACTIONS(7721), 1, + anon_sym_DASH_GT, + STATE(5392), 1, sym__function_attributes_start, - STATE(5483), 1, + STATE(5540), 1, sym_ref_qualifier, - STATE(6233), 1, + STATE(6305), 1, sym__function_attributes_end, - STATE(6234), 1, + STATE(6333), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(7617), 2, anon_sym_final, anon_sym_override, - ACTIONS(7601), 2, + ACTIONS(7718), 2, anon_sym_asm, anon_sym___asm__, - STATE(4731), 2, + STATE(4766), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5252), 2, + STATE(5312), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, + STATE(6390), 2, sym__function_postfix, sym_requires_clause, - STATE(5875), 3, + STATE(5888), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7319), 6, + ACTIONS(7423), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - ACTIONS(7325), 11, + ACTIONS(7429), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -463909,21 +466225,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115691] = 3, + [114923] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4964), 23, - aux_sym_preproc_elif_token1, + ACTIONS(6079), 1, + sym_literal_suffix, + STATE(3955), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(5090), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5092), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4145), 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___attribute__, - anon_sym_COLON, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -463931,18 +466263,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4966), 26, + ACTIONS(4137), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -463951,11 +466274,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_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -463963,12 +466282,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [115748] = 4, + anon_sym_GT2, + [114988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5382), 23, + STATE(4016), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7688), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5418), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -463978,8 +466303,6 @@ 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, @@ -463990,9 +466313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5384), 25, + ACTIONS(5420), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -464018,10 +466339,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [115807] = 3, + [115049] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7610), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(7620), 1, + anon_sym_requires, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7725), 1, + anon_sym_DASH_GT, + STATE(5396), 1, + sym__function_attributes_start, + STATE(5556), 1, + sym_ref_qualifier, + STATE(6268), 1, + sym_trailing_return_type, + STATE(6420), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7617), 2, + anon_sym_final, + anon_sym_override, + STATE(4979), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6390), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5915), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + ACTIONS(5007), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5012), 41, + 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_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [115215] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LT, + ACTIONS(7640), 1, + anon_sym_EQ, + STATE(4129), 1, + sym_template_argument_list, + ACTIONS(7638), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(4161), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5397), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [115282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 23, + ACTIONS(5028), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -464045,7 +466559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(5006), 26, + ACTIONS(5030), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -464072,10 +466586,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [115864] = 3, + [115339] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 23, + ACTIONS(7321), 1, + anon_sym___attribute__, + ACTIONS(7714), 1, + anon_sym_LBRACE, + ACTIONS(7716), 1, + anon_sym_COLON, + STATE(4317), 1, + sym__enum_base_clause, + STATE(4369), 1, + sym_enumerator_list, + STATE(4538), 1, + sym_attribute_specifier, + ACTIONS(6108), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -464085,8 +466611,6 @@ 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, @@ -464097,9 +466621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5002), 26, + ACTIONS(6110), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -464117,8 +466639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -464126,10 +466646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [115921] = 3, + [115408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 23, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5531), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -464153,7 +466675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(4998), 26, + ACTIONS(5533), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -464171,7 +466693,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -464180,43 +466701,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [115978] = 6, + [115467] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - ACTIONS(4968), 5, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, anon_sym_AMP, + ACTIONS(7433), 1, anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7610), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7613), 1, anon_sym_const, - anon_sym_COLON, - ACTIONS(4975), 41, - anon_sym_DOT_DOT_DOT, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7727), 1, + anon_sym_DASH_GT, + STATE(5384), 1, + sym__function_attributes_start, + STATE(5543), 1, + sym_ref_qualifier, + STATE(6243), 1, + sym_trailing_return_type, + STATE(6277), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7718), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4979), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6390), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5890), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 6, 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_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(7605), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -464227,36 +466778,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [115570] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7729), 1, + sym_identifier, + ACTIONS(7734), 1, + sym_primitive_type, + STATE(4145), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7732), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5815), 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_or, anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [116041] = 4, + ACTIONS(5813), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [115635] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5958), 1, - sym_literal_suffix, - ACTIONS(4147), 22, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7736), 1, + anon_sym_LT, + STATE(4204), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4294), 1, + sym_template_argument_list, + ACTIONS(7625), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4135), 17, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -464264,39 +466867,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4139), 26, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(4143), 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_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [116100] = 3, + anon_sym_DASH_GT, + [115702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 23, - aux_sym_preproc_elif_token1, + ACTIONS(5278), 1, + sym_primitive_type, + STATE(4146), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7738), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5769), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -464306,7 +466917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -464317,15 +466927,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5380), 26, + ACTIONS(5766), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -464337,7 +466944,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -464346,11 +466952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116157] = 3, + [115765] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 23, - aux_sym_preproc_elif_token1, + STATE(4146), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7738), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5278), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -464360,7 +466972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, + sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -464371,15 +466983,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4990), 26, + ACTIONS(5280), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -464391,7 +467000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -464400,26 +467008,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116214] = 5, + [115826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, - anon_sym_EQ, - ACTIONS(5901), 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(4147), 17, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + ACTIONS(5397), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4161), 41, + 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_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [115889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6214), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464433,34 +467082,47 @@ 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(4139), 18, + anon_sym_DASH_GT, + ACTIONS(6216), 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_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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [116275] = 3, + anon_sym_DASH_GT_STAR, + [115946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 23, - aux_sym_preproc_elif_token1, + ACTIONS(5297), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -464470,7 +467132,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -464479,17 +467140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5010), 26, + sym_literal_suffix, + ACTIONS(5299), 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, @@ -464501,8 +467155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -464510,10 +467163,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116332] = 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, + [116003] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7610), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7725), 1, + anon_sym_DASH_GT, + STATE(5385), 1, + sym__function_attributes_start, + STATE(5531), 1, + sym_ref_qualifier, + STATE(6243), 1, + sym_trailing_return_type, + STATE(6387), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4979), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6390), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5905), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 16, + ACTIONS(6700), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464528,9 +467268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6220), 33, + sym_literal_suffix, + ACTIONS(6702), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -464540,7 +467287,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, @@ -464554,22 +467300,93 @@ 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, - [116389] = 4, + [116163] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7706), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7709), 1, + anon_sym_DASH_GT, + ACTIONS(7741), 1, + anon_sym_requires, + STATE(5380), 1, + sym__function_attributes_start, + STATE(5527), 1, + sym_ref_qualifier, + STATE(6282), 1, + sym_trailing_return_type, + STATE(6405), 1, + sym__function_attributes_end, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4766), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5312), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6390), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5913), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_COLON_COLON, - ACTIONS(5455), 23, + ACTIONS(5560), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -464593,7 +467410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(5457), 25, + ACTIONS(5562), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -464619,10 +467436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116448] = 3, + [116325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 18, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -464632,6 +467452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -464640,10 +467461,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5259), 31, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5562), 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, @@ -464655,7 +467483,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, @@ -464663,87 +467491,178 @@ 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, - [116505] = 4, + [116384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, + ACTIONS(7631), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(5382), 23, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7629), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [116441] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5980), 1, + anon_sym_EQ, + ACTIONS(5982), 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(4145), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5384), 25, + ACTIONS(4137), 18, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, 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, - [116564] = 9, + [116502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, - anon_sym___attribute__, - ACTIONS(7625), 1, + ACTIONS(7698), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(7627), 1, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7696), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - STATE(4261), 1, - sym__enum_base_clause, - STATE(4363), 1, - sym_enumerator_list, - STATE(4493), 1, - sym_attribute_specifier, - ACTIONS(6055), 19, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [116559] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7743), 1, + anon_sym_LBRACK, + STATE(4283), 1, + sym_new_declarator, + ACTIONS(6118), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -464753,6 +467672,7 @@ 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, @@ -464761,11 +467681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6057), 24, + ACTIONS(6120), 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, @@ -464781,17 +467700,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_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116633] = 3, + [116620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 18, + ACTIONS(5270), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -464810,7 +467733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(5255), 31, + ACTIONS(5272), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -464842,126 +467765,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [116690] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4992), 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_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4994), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [116747] = 26, + [116677] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7329), 1, + ACTIONS(7433), 1, anon_sym_LBRACK, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7434), 1, + ACTIONS(7610), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(7579), 1, + ACTIONS(7620), 1, anon_sym_requires, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7604), 1, + ACTIONS(7727), 1, anon_sym_DASH_GT, - STATE(5363), 1, + STATE(5386), 1, sym__function_attributes_start, - STATE(5539), 1, + STATE(5521), 1, sym_ref_qualifier, - STATE(6231), 1, + STATE(6268), 1, sym_trailing_return_type, - STATE(6277), 1, + STATE(6275), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7576), 2, + ACTIONS(7617), 2, anon_sym_final, anon_sym_override, - ACTIONS(7601), 2, + ACTIONS(7718), 2, anon_sym_asm, anon_sym___asm__, - STATE(4950), 2, + STATE(4979), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5364), 2, + STATE(5383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, + STATE(6390), 2, sym__function_postfix, sym_requires_clause, - STATE(5863), 3, + STATE(5901), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7319), 6, + ACTIONS(7423), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(7429), 11, + ACTIONS(7605), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -464973,14 +467842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116850] = 5, + [116780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7640), 1, - anon_sym_LBRACK, - STATE(4173), 1, - sym_new_declarator, - ACTIONS(6091), 18, + ACTIONS(4991), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -464991,6 +467856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -464999,10 +467865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6093), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(4993), 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, @@ -465018,101 +467887,19 @@ 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_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_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, - [116911] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7329), 1, - anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7606), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7611), 1, - anon_sym_requires, - ACTIONS(7636), 1, - anon_sym_DASH_GT, - STATE(5359), 1, - sym__function_attributes_start, - STATE(5529), 1, - sym_ref_qualifier, - STATE(6300), 1, - sym_trailing_return_type, - STATE(6371), 1, - sym__function_attributes_end, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7576), 2, - anon_sym_final, - anon_sym_override, - STATE(4731), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5252), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5887), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [117014] = 4, + [116837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5021), 19, + ACTIONS(5556), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -465132,10 +467919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5014), 28, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5558), 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, @@ -465151,20 +467941,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + 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, - [117073] = 3, + [116894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 16, + ACTIONS(5990), 1, + sym_literal_suffix, + ACTIONS(4145), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465179,9 +467970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3922), 32, + ACTIONS(4137), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465204,27 +468001,15 @@ 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, - [117129] = 5, + [116953] = 3, ACTIONS(3), 1, sym_comment, - STATE(4198), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7642), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5905), 19, + ACTIONS(5003), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -465234,6 +468019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -465244,12 +468030,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5903), 24, + anon_sym_final, + anon_sym_override, + ACTIONS(5005), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -465261,6 +468050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -465269,185 +468059,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [117189] = 3, + [117010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 16, + ACTIONS(4995), 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_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(5149), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(4997), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [117245] = 3, + anon_sym_DASH_GT, + [117067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 16, + ACTIONS(5024), 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_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(6232), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5026), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [117301] = 3, + anon_sym_DASH_GT, + [117124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 16, + ACTIONS(5266), 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_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(2146), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(5268), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [117357] = 10, + 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, + [117181] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7433), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7706), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6121), 17, + ACTIONS(7741), 1, + anon_sym_requires, + STATE(5389), 1, + sym__function_attributes_start, + STATE(5569), 1, + sym_ref_qualifier, + STATE(6282), 1, + sym_trailing_return_type, + STATE(6328), 1, + sym__function_attributes_end, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7718), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4766), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5312), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6390), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5911), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4999), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -465458,21 +468312,27 @@ static const uint16_t ts_small_parse_table[] = { 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, sym_identifier, - ACTIONS(6123), 22, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5001), 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, @@ -465483,139 +468343,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [117427] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [117341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 16, + ACTIONS(5035), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(6236), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + anon_sym___attribute__, + anon_sym_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_STAR, - [117483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6252), 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(6254), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5037), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [117539] = 11, + anon_sym_DASH_GT, + [117398] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7702), 1, anon_sym_LBRACE, - ACTIONS(7640), 1, - anon_sym_LBRACK, - ACTIONS(7646), 1, + ACTIONS(7704), 1, + anon_sym_COLON, + STATE(3693), 1, + sym_attribute_specifier, + STATE(4233), 1, + sym__enum_base_clause, + STATE(4392), 1, + sym_enumerator_list, + ACTIONS(6116), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7648), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6114), 32, + anon_sym_AMP, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(7650), 1, anon_sym_decltype, - STATE(4367), 1, - sym_new_declarator, - STATE(4494), 1, - sym_decltype_auto, - STATE(4272), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5349), 17, - aux_sym_preproc_elif_token1, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [117467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -465624,6 +468478,7 @@ 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, @@ -465632,13 +468487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5351), 22, + sym_literal_suffix, + ACTIONS(5264), 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, @@ -465649,26 +468502,54 @@ 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, - [117611] = 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, + [117524] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 19, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(7743), 1, + anon_sym_LBRACK, + ACTIONS(7745), 1, + anon_sym_LPAREN2, + ACTIONS(7747), 1, + sym_auto, + ACTIONS(7749), 1, + anon_sym_decltype, + STATE(4383), 1, + sym_new_declarator, + STATE(4540), 1, + sym_decltype_auto, + STATE(4331), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5364), 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, @@ -465677,11 +468558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5263), 29, + ACTIONS(5366), 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, @@ -465689,29 +468572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [117667] = 3, + [117596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 16, + ACTIONS(5195), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465728,7 +468601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5220), 32, + ACTIONS(5197), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465761,71 +468634,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [117723] = 26, + [117652] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(61), 1, anon_sym_const, - ACTIONS(7321), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7329), 1, + ACTIONS(7433), 1, anon_sym_LBRACK, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7606), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7652), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(7654), 1, + ACTIONS(7753), 1, anon_sym_requires, - STATE(5378), 1, + STATE(5408), 1, sym__function_attributes_start, - STATE(5583), 1, + STATE(5619), 1, sym_ref_qualifier, - STATE(6438), 1, - sym__function_attributes_end, STATE(6600), 1, + sym__function_attributes_end, + STATE(6657), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(4731), 2, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(4766), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5252), 2, + STATE(5312), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6656), 2, sym__function_postfix, sym_requires_clause, - STATE(5901), 3, + STATE(5928), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7319), 5, + ACTIONS(7423), 5, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7325), 11, + ACTIONS(7429), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -465837,65 +468710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117825] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4198), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7642), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5995), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5993), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [117885] = 3, + [117754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 16, + ACTIONS(6277), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465912,7 +468730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5178), 32, + ACTIONS(6279), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465945,17 +468763,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [117941] = 5, + [117810] = 6, ACTIONS(3), 1, sym_comment, - STATE(4198), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7642), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5991), 19, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7736), 1, + anon_sym_LT, + STATE(4294), 1, + sym_template_argument_list, + ACTIONS(5397), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -465963,8 +468780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -465975,7 +468792,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5989), 24, + anon_sym_final, + anon_sym_override, + ACTIONS(4161), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -466000,16 +468819,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [118001] = 5, + [117872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7656), 2, - anon_sym_PIPE_PIPE, + ACTIONS(6443), 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_or, - ACTIONS(7658), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(6194), 16, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6445), 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_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, + [117928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466026,11 +468892,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6196), 28, + ACTIONS(6463), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -466047,6 +468915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -466055,104 +468925,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [118061] = 26, + [117984] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7383), 1, + anon_sym_LT, + STATE(2278), 1, + sym_template_argument_list, + ACTIONS(5397), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7329), 1, - anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7660), 1, - anon_sym_DASH_GT, - ACTIONS(7662), 1, - anon_sym_requires, - STATE(5397), 1, - sym__function_attributes_start, - STATE(5629), 1, - sym_ref_qualifier, - STATE(6580), 1, - sym__function_attributes_end, - STATE(6593), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(4731), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5252), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6595), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5892), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 5, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4161), 36, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [118163] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(7640), 1, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(7646), 1, - anon_sym_LPAREN2, - ACTIONS(7648), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, - ACTIONS(7650), 1, anon_sym_decltype, - STATE(4345), 1, - sym_new_declarator, - STATE(4494), 1, - sym_decltype_auto, - STATE(4297), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5363), 17, - aux_sym_preproc_elif_token1, + anon_sym_final, + anon_sym_override, + [118046] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7755), 1, + anon_sym_LT, + STATE(4294), 1, + sym_template_argument_list, + ACTIONS(5007), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -466160,7 +468998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -466169,13 +469008,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5365), 22, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5012), 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, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -466186,69 +469029,73 @@ 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, - [118235] = 3, + [118108] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 16, + STATE(4182), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7758), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5278), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_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_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(5206), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5280), 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_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [118291] = 3, + anon_sym_DASH_GT, + [118168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6313), 16, + ACTIONS(6465), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466265,7 +469112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6315), 32, + ACTIONS(6467), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -466298,10 +469145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [118347] = 3, + [118224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 16, + ACTIONS(7761), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7763), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6165), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466318,13 +469171,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6450), 32, + ACTIONS(6167), 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, @@ -466341,8 +469192,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -466351,36 +469200,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [118403] = 12, + [118284] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6131), 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___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6133), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + [118354] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7664), 1, + ACTIONS(7767), 1, anon_sym_SEMI, - STATE(3653), 1, + STATE(3710), 1, sym_attribute_specifier, - STATE(4349), 1, + STATE(4391), 1, sym_field_declaration_list, - STATE(7356), 1, + STATE(7532), 1, sym_virtual_specifier, - STATE(8245), 1, + STATE(8075), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - ACTIONS(5286), 6, + ACTIONS(5317), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5284), 32, + ACTIONS(5315), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -466413,63 +469322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [118477] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5172), 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(5174), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [118533] = 3, + [118428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5316), 18, + ACTIONS(5560), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -466488,10 +469344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2871), 30, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5562), 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, @@ -466507,11 +469366,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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -466519,95 +469375,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [118589] = 8, + [118484] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - STATE(3976), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4137), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(7022), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4145), 36, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7431), 1, anon_sym___attribute__, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7706), 1, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(7769), 1, + anon_sym_DASH_GT, + ACTIONS(7771), 1, + anon_sym_requires, + STATE(5418), 1, + sym__function_attributes_start, + STATE(5632), 1, + sym_ref_qualifier, + STATE(6521), 1, + sym__function_attributes_end, + STATE(6628), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7617), 2, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [118655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5255), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + STATE(4766), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5312), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6390), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5948), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5253), 45, + anon_sym_try, + ACTIONS(7429), 11, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - 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, @@ -466618,75 +469451,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [118711] = 3, + [118586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 19, + ACTIONS(6308), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5232), 29, + anon_sym_DASH_GT, + ACTIONS(6310), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, - [118767] = 3, + anon_sym_DASH_GT_STAR, + [118642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 16, + ACTIONS(6304), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466703,7 +469524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6446), 32, + ACTIONS(6306), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -466736,89 +469557,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [118823] = 3, + [118698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 17, + ACTIONS(6293), 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_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(5259), 31, + anon_sym_DASH_GT, + ACTIONS(6295), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [118879] = 11, + anon_sym_DASH_GT_STAR, + [118754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(7640), 1, - anon_sym_LBRACK, - ACTIONS(7646), 1, - anon_sym_LPAREN2, - ACTIONS(7648), 1, - sym_auto, - ACTIONS(7650), 1, - anon_sym_decltype, - STATE(4368), 1, - sym_new_declarator, - STATE(4494), 1, - sym_decltype_auto, - STATE(4308), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5356), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5297), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -466827,13 +469632,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5358), 22, + sym_literal_suffix, + ACTIONS(5299), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -466841,19 +469644,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [118951] = 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, + [118810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 18, + ACTIONS(6415), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -466872,7 +469685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6220), 30, + ACTIONS(6417), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -466903,47 +469716,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119007] = 6, + [118866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7666), 1, - anon_sym_LT, - STATE(2229), 1, - sym_template_argument_list, - ACTIONS(4968), 9, + ACTIONS(6415), 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_COLON, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4975), 36, + anon_sym_DASH_GT, + ACTIONS(6417), 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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -466954,24 +469768,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [119069] = 3, + anon_sym_DASH_GT_STAR, + [118922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 17, + ACTIONS(5262), 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_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -466979,8 +469790,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_literal_suffix, - ACTIONS(5232), 31, + ACTIONS(5264), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466991,10 +469803,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, @@ -467007,84 +469816,69 @@ 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, - [119125] = 3, + [118978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 17, + ACTIONS(6427), 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_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(5255), 31, + anon_sym_DASH_GT, + ACTIONS(6429), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [119181] = 10, + anon_sym_DASH_GT_STAR, + [119034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6190), 17, + ACTIONS(5348), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -467101,8 +469895,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6192), 22, + ACTIONS(2899), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467110,6 +469905,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, @@ -467121,14 +469917,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [119251] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [119090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 16, + ACTIONS(6423), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467145,7 +469948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5190), 32, + ACTIONS(6425), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467178,64 +469981,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [119307] = 4, + [119146] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7658), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6206), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7774), 1, + anon_sym_SEMI, + STATE(3710), 1, + sym_attribute_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(7532), 1, + sym_virtual_specifier, + STATE(8075), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5317), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5315), 32, anon_sym_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(6208), 30, - 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___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [119365] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [119220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 16, + ACTIONS(2186), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467252,7 +470063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5145), 32, + ACTIONS(2184), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467285,116 +470096,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [119421] = 3, + [119276] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 16, + STATE(4182), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7776), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5964), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_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(5170), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_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, - [119477] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6456), 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(6458), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5962), 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_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_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_STAR, - [119533] = 3, + anon_sym_DASH_GT, + [119336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 16, + ACTIONS(6289), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467411,7 +470171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6462), 32, + ACTIONS(6291), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467444,10 +470204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [119589] = 3, + [119392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6373), 16, + ACTIONS(6285), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467464,7 +470224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6375), 32, + ACTIONS(6287), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467497,69 +470257,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [119645] = 3, + [119448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 16, + STATE(4182), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7776), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5986), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_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_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(2142), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5988), 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_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [119508] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4215), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7778), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5976), 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_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5974), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_STAR, - [119701] = 6, + anon_sym_DASH_GT, + [119568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7669), 1, - anon_sym_LT, - STATE(4283), 1, - sym_template_argument_list, - ACTIONS(4968), 21, + STATE(4216), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7780), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5970), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467567,8 +470385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -467579,9 +470397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4975), 24, + ACTIONS(5968), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -467606,10 +470422,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119763] = 3, + [119628] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7782), 1, + anon_sym_SEMI, + STATE(3710), 1, + sym_attribute_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(7532), 1, + sym_virtual_specifier, + STATE(8075), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5317), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5315), 32, + anon_sym_AMP, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [119702] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7784), 1, + anon_sym_SEMI, + STATE(3710), 1, + sym_attribute_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(7532), 1, + sym_virtual_specifier, + STATE(8075), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5317), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5315), 32, + anon_sym_AMP, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [119776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6387), 16, + ACTIONS(6273), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467626,7 +470566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6389), 32, + ACTIONS(6275), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467659,10 +470599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [119819] = 3, + [119832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6425), 16, + ACTIONS(2136), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467679,7 +470619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6427), 32, + ACTIONS(2134), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467712,10 +470652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [119875] = 3, + [119888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6417), 16, + ACTIONS(5167), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467732,7 +470672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6419), 32, + ACTIONS(5169), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467765,10 +470705,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [119931] = 3, + [119944] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6151), 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___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6153), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + [120014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 16, + ACTIONS(5183), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467785,7 +470785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6250), 32, + ACTIONS(5185), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467818,10 +470818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [119987] = 3, + [120070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 16, + ACTIONS(6457), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467838,7 +470838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6309), 32, + ACTIONS(6459), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467871,24 +470871,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [120043] = 9, + [120126] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6155), 17, - aux_sym_preproc_elif_token1, + STATE(4182), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7776), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6028), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467904,15 +470897,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6157), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(6026), 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, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -467923,17 +470918,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_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [120111] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120186] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 17, + STATE(4182), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7776), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6022), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467950,10 +470953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5263), 31, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6020), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -467965,7 +470973,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, @@ -467973,143 +470981,82 @@ 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, - [120167] = 3, + [120246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 16, + STATE(4201), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7786), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5762), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_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(6383), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + anon_sym___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_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, - [120223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6421), 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(6423), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5764), 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_elif_token1, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [120279] = 11, + anon_sym_DASH_GT, + [120306] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - ACTIONS(7640), 1, + ACTIONS(7743), 1, anon_sym_LBRACK, - ACTIONS(7646), 1, + ACTIONS(7745), 1, anon_sym_LPAREN2, - ACTIONS(7648), 1, + ACTIONS(7747), 1, sym_auto, - ACTIONS(7650), 1, + ACTIONS(7749), 1, anon_sym_decltype, - STATE(4353), 1, + STATE(4359), 1, sym_new_declarator, - STATE(4494), 1, + STATE(4540), 1, sym_decltype_auto, - STATE(4301), 2, + STATE(4288), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5320), 17, + ACTIONS(5385), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -468127,7 +471074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5322), 22, + ACTIONS(5387), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -468150,79 +471097,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120351] = 12, + [120378] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7672), 1, - anon_sym_SEMI, - STATE(3653), 1, - sym_attribute_specifier, - STATE(4349), 1, - sym_field_declaration_list, - STATE(7356), 1, - sym_virtual_specifier, - STATE(8245), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5286), 6, + ACTIONS(5354), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5284), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6135), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [120425] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4198), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7674), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5246), 19, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6245), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -468238,17 +471130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5248), 24, + ACTIONS(6247), 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_elif_token1, - anon_sym_LPAREN2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -468259,80 +471149,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [120485] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7677), 1, - anon_sym_SEMI, - STATE(3653), 1, - sym_attribute_specifier, - STATE(4349), 1, - sym_field_declaration_list, - STATE(7356), 1, - sym_virtual_specifier, - STATE(8245), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5286), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5284), 32, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [120559] = 3, + [120446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6413), 16, + ACTIONS(6473), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468349,7 +471176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6415), 32, + ACTIONS(6475), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -468382,10 +471209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [120615] = 3, + [120502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6407), 16, + ACTIONS(6253), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468402,7 +471229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6409), 32, + ACTIONS(6255), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -468435,132 +471262,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [120671] = 3, + [120558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6361), 16, + ACTIONS(5266), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6363), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(5268), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_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, + [120614] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6197), 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___attribute__, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + sym_identifier, + ACTIONS(6199), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [120727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5259), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(5257), 45, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [120783] = 5, + [120682] = 3, ACTIONS(3), 1, sym_comment, - STATE(4157), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7679), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5940), 19, + ACTIONS(5270), 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_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -468569,14 +471396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5938), 24, + sym_literal_suffix, + ACTIONS(5272), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -468585,10 +471408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -468596,10 +471416,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120843] = 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, + [120738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 18, + ACTIONS(6352), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -468618,7 +471449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6383), 30, + ACTIONS(6354), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -468649,17 +471480,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120899] = 5, + [120794] = 11, ACTIONS(3), 1, sym_comment, - STATE(4144), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7681), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5590), 19, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(7743), 1, + anon_sym_LBRACK, + ACTIONS(7745), 1, + anon_sym_LPAREN2, + ACTIONS(7747), 1, + sym_auto, + ACTIONS(7749), 1, + anon_sym_decltype, + STATE(4348), 1, + sym_new_declarator, + STATE(4540), 1, + sym_decltype_auto, + STATE(4305), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5350), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -468668,7 +471510,6 @@ 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, @@ -468677,15 +471518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5592), 24, + ACTIONS(5352), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -468696,18 +471535,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120959] = 3, + [120866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 16, + ACTIONS(6443), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468724,7 +471561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6228), 32, + ACTIONS(6445), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -468757,142 +471594,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [121015] = 3, + [120922] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + STATE(4124), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4135), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(7121), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4143), 36, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [120988] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7751), 1, + anon_sym_DASH_GT, + ACTIONS(7788), 1, + anon_sym_requires, + STATE(5432), 1, + sym__function_attributes_start, + STATE(5652), 1, + sym_ref_qualifier, + STATE(6579), 1, + sym__function_attributes_end, + STATE(6721), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7489), 2, + anon_sym_final, + anon_sym_override, + STATE(4766), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5312), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6656), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5920), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [121090] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7791), 1, + anon_sym_SEMI, + STATE(3710), 1, + sym_attribute_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(7532), 1, + sym_virtual_specifier, + STATE(8075), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5317), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5315), 32, + anon_sym_AMP, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [121164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6317), 16, + ACTIONS(5297), 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___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(6319), 32, + sym_literal_suffix, + ACTIONS(5299), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [121071] = 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, + [121220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 16, + ACTIONS(5262), 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___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(5210), 32, + sym_literal_suffix, + ACTIONS(5264), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [121127] = 12, + 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, + [121276] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7683), 1, - anon_sym_SEMI, - STATE(3653), 1, - sym_attribute_specifier, - STATE(4349), 1, - sym_field_declaration_list, - STATE(7356), 1, - sym_virtual_specifier, - STATE(8245), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5286), 6, + ACTIONS(7702), 1, + anon_sym_LBRACE, + STATE(3633), 1, + sym_attribute_specifier, + STATE(4349), 1, + sym_enumerator_list, + ACTIONS(5790), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5284), 32, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5788), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -468925,10 +471953,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [121201] = 3, + [121340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 16, + ACTIONS(7763), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6233), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468945,13 +471976,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6367), 32, + ACTIONS(6235), 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, @@ -468969,7 +471999,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -468978,10 +472007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [121257] = 3, + [121398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6341), 16, + ACTIONS(6324), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468998,7 +472027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6343), 32, + ACTIONS(6326), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -469031,48 +472060,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [121313] = 3, + [121454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 16, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7793), 1, + anon_sym_LT, + STATE(2278), 1, + sym_template_argument_list, + ACTIONS(5007), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6305), 32, + ACTIONS(5012), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -469083,64 +472111,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, - [121369] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [121516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6299), 16, + ACTIONS(5266), 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___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(6301), 32, + sym_literal_suffix, + ACTIONS(5268), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_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, + [121572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 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_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5272), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [121425] = 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, + [121628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 16, + ACTIONS(6481), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469157,7 +472242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6289), 32, + ACTIONS(6483), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -469190,10 +472275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [121481] = 3, + [121684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6283), 16, + ACTIONS(6403), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469210,7 +472295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6285), 32, + ACTIONS(6405), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -469243,143 +472328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [121537] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7329), 1, - anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7606), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7652), 1, - anon_sym_DASH_GT, - ACTIONS(7685), 1, - anon_sym_requires, - STATE(5384), 1, - sym__function_attributes_start, - STATE(5586), 1, - sym_ref_qualifier, - STATE(6444), 1, - sym__function_attributes_end, - STATE(6674), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7576), 2, - anon_sym_final, - anon_sym_override, - STATE(4731), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5252), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5895), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [121639] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(7619), 1, - anon_sym_LBRACE, - STATE(3687), 1, - sym_attribute_specifier, - STATE(4346), 1, - sym_enumerator_list, - ACTIONS(5735), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5733), 32, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [121703] = 3, + [121740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6333), 16, + ACTIONS(6447), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469396,7 +472348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6335), 32, + ACTIONS(6449), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -469429,10 +472381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [121759] = 3, + [121796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 16, + ACTIONS(6344), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469449,7 +472401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5153), 32, + ACTIONS(6346), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -469482,17 +472434,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [121815] = 5, + [121852] = 10, ACTIONS(3), 1, sym_comment, - STATE(4198), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7642), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5911), 19, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6241), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -469508,17 +472470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5909), 24, + ACTIONS(6243), 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_elif_token1, - anon_sym_LPAREN2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -469529,18 +472489,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + [121922] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7796), 1, + anon_sym_SEMI, + STATE(3710), 1, + sym_attribute_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(7532), 1, + sym_virtual_specifier, + STATE(8075), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5317), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5315), 32, + anon_sym_AMP, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [121996] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [121875] = 3, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6229), 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___attribute__, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6231), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + [122066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 16, + ACTIONS(6334), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469557,7 +472636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5153), 32, + ACTIONS(6336), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -469590,10 +472669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [121931] = 3, + [122122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 16, + ACTIONS(6453), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469610,7 +472689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5153), 32, + ACTIONS(6455), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -469643,65 +472722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [121987] = 5, + [122178] = 3, ACTIONS(3), 1, sym_comment, - STATE(4155), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7688), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5946), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5944), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [122047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6279), 16, + ACTIONS(6419), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469718,7 +472742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6281), 32, + ACTIONS(6421), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -469751,31 +472775,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [122103] = 7, + [122234] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(7619), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - STATE(3667), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7798), 1, + anon_sym_SEMI, + STATE(3710), 1, sym_attribute_specifier, - STATE(4365), 1, - sym_enumerator_list, - ACTIONS(5680), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(4391), 1, + sym_field_declaration_list, + STATE(7532), 1, + sym_virtual_specifier, + STATE(8075), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5317), 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_EQ, - anon_sym_GT2, - ACTIONS(5678), 32, + ACTIONS(5315), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -469808,155 +472837,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [122167] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7329), 1, - anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7660), 1, - anon_sym_DASH_GT, - ACTIONS(7690), 1, - anon_sym_requires, - STATE(5386), 1, - sym__function_attributes_start, - STATE(5632), 1, - sym_ref_qualifier, - STATE(6533), 1, - sym__function_attributes_end, - STATE(6679), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(4731), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5252), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6595), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5888), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [122269] = 3, + [122308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6325), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5175), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(6327), 30, + anon_sym_DASH_GT, + ACTIONS(5177), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [122325] = 10, + anon_sym_DASH_GT_STAR, + [122364] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(7743), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, + ACTIONS(7745), 1, + anon_sym_LPAREN2, + ACTIONS(7747), 1, + sym_auto, + ACTIONS(7749), 1, + anon_sym_decltype, + STATE(4390), 1, + sym_new_declarator, + STATE(4540), 1, + sym_decltype_auto, + STATE(4284), 2, sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6133), 17, + sym_initializer_list, + ACTIONS(5381), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -469966,18 +472920,17 @@ 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, sym_identifier, - ACTIONS(6135), 22, + ACTIONS(5383), 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, @@ -469992,47 +472945,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_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [122395] = 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [122436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7693), 1, - anon_sym_SEMI, - STATE(3653), 1, - sym_attribute_specifier, - STATE(4349), 1, - sym_field_declaration_list, - STATE(7356), 1, - sym_virtual_specifier, - STATE(8245), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5286), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5268), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5284), 32, - anon_sym_AMP, + anon_sym_LBRACE, + ACTIONS(5266), 45, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -470052,17 +472992,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [122469] = 3, + [122492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 16, + ACTIONS(6320), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470079,7 +473024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6262), 32, + ACTIONS(6322), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -470112,125 +473057,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [122525] = 3, + [122548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5179), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(6232), 30, + anon_sym_DASH_GT, + ACTIONS(5181), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [122581] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7695), 1, - anon_sym_SEMI, - STATE(3653), 1, - sym_attribute_specifier, - STATE(4349), 1, - sym_field_declaration_list, - STATE(7356), 1, - sym_virtual_specifier, - STATE(8245), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5286), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5284), 32, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [122655] = 3, + anon_sym_DASH_GT_STAR, + [122604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 16, + ACTIONS(5201), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470247,7 +473130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6258), 32, + ACTIONS(5203), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -470280,175 +473163,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [122711] = 3, + [122660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 19, + ACTIONS(3924), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5255), 29, + anon_sym_DASH_GT, + ACTIONS(3920), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, - [122767] = 3, + anon_sym_DASH_GT_STAR, + [122716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 22, - aux_sym_preproc_elif_token1, + ACTIONS(6269), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5384), 26, + anon_sym_DASH_GT, + ACTIONS(6271), 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_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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [122823] = 9, + anon_sym_DASH_GT_STAR, + [122772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6162), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5228), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5230), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, - sym_identifier, - ACTIONS(6164), 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [122828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6431), 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(6433), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [122891] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [122884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 16, + ACTIONS(6281), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470465,7 +473395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6359), 32, + ACTIONS(6283), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -470498,10 +473428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [122947] = 3, + [122940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 16, + ACTIONS(6265), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470518,7 +473448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6293), 32, + ACTIONS(6267), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -470551,103 +473481,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [123003] = 6, + [122996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7617), 1, - anon_sym_LT, - STATE(4283), 1, - sym_template_argument_list, - ACTIONS(5338), 21, + ACTIONS(5171), 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___attribute__, - anon_sym_COLON, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5173), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [123052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5171), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4163), 24, + anon_sym_DASH_GT, + ACTIONS(5173), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [123065] = 6, + anon_sym_DASH_GT_STAR, + [123108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7415), 1, - anon_sym_LT, - STATE(2229), 1, - sym_template_argument_list, - ACTIONS(5338), 9, + ACTIONS(5171), 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_COLON, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4163), 36, + anon_sym_DASH_GT, + ACTIONS(5173), 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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -470658,15 +473639,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [123127] = 3, + anon_sym_DASH_GT_STAR, + [123164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 16, + ACTIONS(6300), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470683,7 +473660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5186), 32, + ACTIONS(6302), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -470716,102 +473693,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [123183] = 10, + [123220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6170), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5348), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6172), 22, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2899), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [123253] = 12, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [123276] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7697), 1, - anon_sym_SEMI, - STATE(3653), 1, - sym_attribute_specifier, - STATE(4349), 1, - sym_field_declaration_list, - STATE(7356), 1, - sym_virtual_specifier, - STATE(8245), 1, - sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7706), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7769), 1, + anon_sym_DASH_GT, + ACTIONS(7800), 1, + anon_sym_requires, + STATE(5403), 1, + sym__function_attributes_start, + STATE(5663), 1, + sym_ref_qualifier, + STATE(6480), 1, + sym__function_attributes_end, + STATE(6641), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(5286), 6, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4766), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5312), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6390), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5942), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [123378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5272), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5284), 32, - anon_sym_AMP, + anon_sym_LBRACE, + ACTIONS(5270), 45, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -470831,17 +473863,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [123327] = 3, + [123434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6329), 16, + ACTIONS(6469), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470858,7 +473895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6331), 32, + ACTIONS(6471), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -470891,10 +473928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [123383] = 3, + [123490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6325), 16, + ACTIONS(6385), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470911,7 +473948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6327), 32, + ACTIONS(6387), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -470944,89 +473981,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [123439] = 3, + [123546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 19, + ACTIONS(5238), 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_DOT, + anon_sym_DASH_GT, + ACTIONS(5240), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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, + [123602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5242), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5259), 29, + anon_sym_DASH_GT, + ACTIONS(5244), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, - [123495] = 12, + anon_sym_DASH_GT_STAR, + [123658] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7699), 1, + ACTIONS(7802), 1, anon_sym_SEMI, - STATE(3653), 1, + STATE(3710), 1, sym_attribute_specifier, - STATE(4349), 1, + STATE(4391), 1, sym_field_declaration_list, - STATE(7356), 1, + STATE(7532), 1, sym_virtual_specifier, - STATE(8245), 1, + STATE(8075), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - ACTIONS(5286), 6, + ACTIONS(5317), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5284), 32, + ACTIONS(5315), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -471059,89 +474149,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [123569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5180), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5182), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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, - [123625] = 12, + [123732] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7701), 1, + ACTIONS(7804), 1, anon_sym_SEMI, - STATE(3653), 1, + STATE(3710), 1, sym_attribute_specifier, - STATE(4349), 1, + STATE(4391), 1, sym_field_declaration_list, - STATE(7356), 1, + STATE(7532), 1, sym_virtual_specifier, - STATE(8245), 1, + STATE(8075), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - ACTIONS(5286), 6, + ACTIONS(5317), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5284), 32, + ACTIONS(5315), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -471174,10 +474211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [123699] = 3, + [123806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5316), 16, + ACTIONS(6352), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -471194,7 +474231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2871), 32, + ACTIONS(6354), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -471227,10 +474264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [123755] = 3, + [123862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 16, + ACTIONS(6411), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -471247,7 +474284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6297), 32, + ACTIONS(6413), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -471280,10 +474317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [123811] = 3, + [123918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 16, + ACTIONS(6363), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -471300,7 +474337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5194), 32, + ACTIONS(6365), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -471333,302 +474370,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [123867] = 3, + [123974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 18, - aux_sym_preproc_elif_token1, + ACTIONS(6381), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(6423), 29, + anon_sym_DASH_GT, + ACTIONS(6383), 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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [123922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5378), 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___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5380), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [123977] = 3, + anon_sym_DASH_GT_STAR, + [124030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 18, + ACTIONS(5224), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_EQ, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5232), 29, + anon_sym_DASH_GT, + ACTIONS(5226), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, - [124032] = 4, + anon_sym_DASH_GT_STAR, + [124086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5455), 22, + ACTIONS(5250), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5457), 24, + anon_sym_DASH_GT, + ACTIONS(5252), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [124089] = 3, + anon_sym_DASH_GT_STAR, + [124142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6333), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5246), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(6335), 29, + anon_sym_DASH_GT, + ACTIONS(5248), 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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [124144] = 7, + anon_sym_DASH_GT_STAR, + [124198] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(7619), 1, + ACTIONS(7702), 1, anon_sym_LBRACE, - STATE(3667), 1, + STATE(3649), 1, sym_attribute_specifier, - STATE(4361), 1, + STATE(4398), 1, sym_enumerator_list, - ACTIONS(5678), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5680), 39, + ACTIONS(5657), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5655), 32, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_EQ, + 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, @@ -471639,21 +474632,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [124207] = 3, + anon_sym_template, + anon_sym_operator, + [124262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 22, + ACTIONS(6214), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471663,7 +474653,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -471672,16 +474661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4994), 25, + ACTIONS(6216), 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_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -471693,27 +474680,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124262] = 7, + [124318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, - anon_sym___attribute__, - ACTIONS(7625), 1, - anon_sym_LBRACE, - STATE(4331), 1, - sym_enumerator_list, - STATE(4503), 1, - sym_attribute_specifier, - ACTIONS(5733), 19, + ACTIONS(6423), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -471723,6 +474705,7 @@ 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, @@ -471731,11 +474714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5735), 24, + ACTIONS(6425), 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, @@ -471751,37 +474733,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_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124325] = 8, + [124373] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(6875), 1, + ACTIONS(4161), 1, + anon_sym_SEMI, + ACTIONS(7113), 1, anon_sym_LT, - STATE(3750), 1, + STATE(3867), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4097), 1, + STATE(4129), 1, sym_template_argument_list, - ACTIONS(4165), 4, + ACTIONS(4163), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4145), 6, + ACTIONS(4143), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4137), 33, + ACTIONS(4135), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -471815,17 +474802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [124390] = 5, + [124440] = 5, ACTIONS(3), 1, sym_comment, - STATE(4144), 1, + STATE(4201), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7681), 4, + ACTIONS(7786), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5535), 18, + ACTIONS(5418), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471844,7 +474831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5537), 24, + ACTIONS(5420), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -471869,22 +474856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124449] = 9, + [124499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - ACTIONS(7703), 1, - anon_sym_LBRACE, - ACTIONS(7705), 1, - anon_sym_COLON, - STATE(4446), 1, - sym__enum_base_clause, - STATE(4496), 1, - sym_enumerator_list, - STATE(4614), 1, - sym_attribute_specifier, - ACTIONS(6055), 18, + ACTIONS(6453), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471893,6 +474869,7 @@ 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, @@ -471901,14 +474878,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6057), 23, + ACTIONS(6455), 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_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -471920,19 +474897,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124516] = 4, + [124554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5382), 22, + ACTIONS(6385), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471942,7 +474922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -471951,16 +474930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5384), 24, + ACTIONS(6387), 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_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -471972,20 +474949,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, - [124573] = 4, + [124609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5382), 22, + ACTIONS(3924), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471995,7 +474974,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -472004,16 +474982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5384), 24, + ACTIONS(3920), 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_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -472025,7 +475001,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [124664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 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(5264), 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, + [124719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5266), 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(5268), 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, @@ -472033,10 +475105,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124630] = 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, + [124774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 18, + ACTIONS(6320), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472055,7 +475138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6258), 29, + ACTIONS(6322), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -472085,10 +475168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124685] = 3, + [124829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6329), 18, + ACTIONS(6419), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472107,7 +475190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6331), 29, + ACTIONS(6421), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -472137,10 +475220,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124740] = 3, + [124884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5039), 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___attribute__, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5046), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [124939] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(7808), 1, + anon_sym_requires, + STATE(5465), 1, + sym__function_attributes_start, + STATE(5813), 1, + sym_ref_qualifier, + STATE(6618), 1, + sym__function_attributes_end, + STATE(6878), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(4766), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5312), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6656), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5962), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [125040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6413), 18, + ACTIONS(6461), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472159,7 +475369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6415), 29, + ACTIONS(6463), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -472189,10 +475399,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124795] = 3, + [125095] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(7810), 1, + anon_sym_requires, + STATE(5454), 1, + sym__function_attributes_start, + STATE(5770), 1, + sym_ref_qualifier, + STATE(6695), 1, + sym__function_attributes_end, + STATE(6896), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7489), 2, + anon_sym_final, + anon_sym_override, + STATE(4766), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5312), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6656), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5957), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7423), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [125196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6317), 18, + ACTIONS(6427), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472211,7 +475496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6319), 29, + ACTIONS(6429), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -472241,20 +475526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124850] = 3, + [125251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4964), 22, + ACTIONS(5270), 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_COLON, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -472262,17 +475547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4966), 25, + sym_literal_suffix, + ACTIONS(5272), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -472281,11 +475559,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_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -472293,10 +475567,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124905] = 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, + [125306] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7702), 1, + anon_sym_LBRACE, + STATE(3649), 1, + sym_attribute_specifier, + STATE(4353), 1, + sym_enumerator_list, + ACTIONS(5655), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5657), 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_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [125369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6361), 18, + ACTIONS(6431), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472315,7 +475656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6363), 29, + ACTIONS(6433), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -472345,10 +475686,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [124960] = 3, + [125424] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 22, + ACTIONS(7599), 1, + anon_sym___attribute__, + ACTIONS(7813), 1, + anon_sym_LBRACE, + ACTIONS(7815), 1, + anon_sym_COLON, + STATE(4438), 1, + sym__enum_base_clause, + STATE(4553), 1, + sym_enumerator_list, + STATE(4654), 1, + sym_attribute_specifier, + ACTIONS(6114), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472357,8 +475710,6 @@ 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, @@ -472369,9 +475720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5010), 25, + ACTIONS(6116), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -472388,8 +475737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -472397,22 +475744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125015] = 9, + [125491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - ACTIONS(7703), 1, - anon_sym_LBRACE, - ACTIONS(7705), 1, - anon_sym_COLON, - STATE(4417), 1, - sym__enum_base_clause, - STATE(4540), 1, - sym_enumerator_list, - STATE(4638), 1, - sym_attribute_specifier, - ACTIONS(6073), 18, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472421,6 +475758,8 @@ 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, @@ -472431,7 +475770,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6075), 23, + anon_sym_final, + anon_sym_override, + ACTIONS(5562), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -472448,6 +475789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -472455,95 +475797,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125082] = 26, + [125548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7329), 1, - anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(7709), 1, - anon_sym_requires, - STATE(5444), 1, - sym__function_attributes_start, - STATE(5714), 1, - sym_ref_qualifier, - STATE(6584), 1, - sym__function_attributes_end, - STATE(6857), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(4731), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5252), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6595), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5930), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5253), 18, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -472551,10 +475820,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5255), 29, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5562), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -472563,7 +475839,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, @@ -472571,21 +475850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [125238] = 3, + [125605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 22, + ACTIONS(6344), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472595,7 +475864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -472604,16 +475872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(4990), 25, + ACTIONS(6346), 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_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -472625,19 +475891,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125293] = 3, + [125660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 22, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5531), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472660,7 +475930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(4998), 25, + ACTIONS(5533), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -472677,7 +475947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -472686,10 +475955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125348] = 3, + [125717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6425), 18, + ACTIONS(6465), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472708,7 +475977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6427), 29, + ACTIONS(6467), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -472738,62 +476007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5257), 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(5259), 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, - [125458] = 3, + [125772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6279), 18, + ACTIONS(6281), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472812,7 +476029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6281), 29, + ACTIONS(6283), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -472842,34 +476059,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125513] = 11, + [125827] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(5026), 1, + ACTIONS(5056), 1, anon_sym_SEMI, - ACTIONS(6875), 1, + ACTIONS(7113), 1, anon_sym_LT, - ACTIONS(7508), 1, + ACTIONS(7526), 1, anon_sym_LBRACK, - STATE(3750), 1, + STATE(3867), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4530), 1, + STATE(4520), 1, sym_template_argument_list, - ACTIONS(4160), 2, + ACTIONS(4158), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(4145), 3, + ACTIONS(4143), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(4165), 4, + ACTIONS(4163), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4137), 32, + ACTIONS(4135), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -472902,70 +476119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [125584] = 3, + [125898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 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___attribute__, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5019), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [125639] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7214), 1, - anon_sym___attribute__, - ACTIONS(7625), 1, - anon_sym_LBRACE, - STATE(4323), 1, - sym_enumerator_list, - STATE(4510), 1, - sym_attribute_specifier, - ACTIONS(5678), 19, + ACTIONS(6308), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472975,6 +476132,7 @@ 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, @@ -472983,11 +476141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5680), 24, + ACTIONS(6310), 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, @@ -473003,17 +476160,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125702] = 3, + [125953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 18, + ACTIONS(6447), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -473032,7 +476193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6262), 29, + ACTIONS(6449), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -473062,10 +476223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125757] = 3, + [126008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 18, + ACTIONS(6304), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -473084,7 +476245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6297), 29, + ACTIONS(6306), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -473114,10 +476275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125812] = 3, + [126063] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 22, + ACTIONS(7321), 1, + anon_sym___attribute__, + ACTIONS(7714), 1, + anon_sym_LBRACE, + STATE(4365), 1, + sym_enumerator_list, + STATE(4534), 1, + sym_attribute_specifier, + ACTIONS(5788), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473126,8 +476296,6 @@ 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, @@ -473138,14 +476306,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5002), 25, + ACTIONS(5790), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -473157,8 +476324,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -473166,10 +476331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125867] = 3, + [126126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 18, + ACTIONS(6273), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -473188,7 +476353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6305), 29, + ACTIONS(6275), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -473218,22 +476383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [125922] = 9, + [126181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, - anon_sym___attribute__, - ACTIONS(6385), 1, - anon_sym_LBRACE, - ACTIONS(7712), 1, - anon_sym_COLON, - STATE(2178), 1, - sym_attribute_specifier, - STATE(2799), 1, - sym__enum_base_clause, - STATE(2858), 1, - sym_enumerator_list, - ACTIONS(6073), 9, + ACTIONS(6293), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473242,11 +476396,23 @@ 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(6075), 32, + sym_identifier, + ACTIONS(6295), 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, @@ -473262,25 +476428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [125989] = 3, + [126236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6341), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5556), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473290,6 +476448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -473298,14 +476457,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6343), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5558), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -473317,33 +476478,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_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126044] = 9, + [126291] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, + ACTIONS(7321), 1, anon_sym___attribute__, - ACTIONS(6385), 1, + ACTIONS(7714), 1, anon_sym_LBRACE, - ACTIONS(7712), 1, - anon_sym_COLON, - STATE(2226), 1, - sym_attribute_specifier, - STATE(2809), 1, - sym__enum_base_clause, - STATE(2865), 1, + STATE(4362), 1, sym_enumerator_list, - ACTIONS(6055), 9, + STATE(4564), 1, + sym_attribute_specifier, + ACTIONS(5655), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473352,11 +476508,23 @@ 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(6057), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5657), 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, @@ -473368,28 +476536,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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [126111] = 3, + [126354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6283), 18, + ACTIONS(6265), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -473408,7 +476565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6285), 29, + ACTIONS(6267), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -473438,20 +476595,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126166] = 3, + [126409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6407), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5297), 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_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -473459,15 +476616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6409), 29, + sym_literal_suffix, + ACTIONS(5299), 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, @@ -473476,45 +476628,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_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126221] = 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, + [126464] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(4163), 1, - anon_sym_SEMI, - ACTIONS(6875), 1, + ACTIONS(7113), 1, anon_sym_LT, - STATE(3750), 1, + STATE(3867), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4097), 1, + STATE(4129), 1, sym_template_argument_list, - ACTIONS(4165), 4, + ACTIONS(4163), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4145), 5, + ACTIONS(4143), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4137), 33, + ACTIONS(4135), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -473548,10 +476704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [126288] = 3, + [126529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 18, + ACTIONS(6469), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -473570,7 +476726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6289), 29, + ACTIONS(6471), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -473600,10 +476756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126343] = 3, + [126584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 18, + ACTIONS(6285), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -473622,7 +476778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6462), 29, + ACTIONS(6287), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -473652,11 +476808,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126398] = 3, + [126639] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 18, - aux_sym_preproc_elif_token1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + STATE(1974), 1, + sym_template_argument_list, + STATE(2903), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5084), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5593), 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(5595), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [126702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4991), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473666,6 +476877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -473674,14 +476886,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6236), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(4993), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -473693,22 +476907,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_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126453] = 3, + [126757] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 18, - aux_sym_preproc_elif_token1, + ACTIONS(6071), 1, + anon_sym___attribute__, + ACTIONS(6397), 1, + anon_sym_LBRACE, + ACTIONS(7817), 1, + anon_sym_COLON, + STATE(2226), 1, + sym_attribute_specifier, + STATE(2819), 1, + sym__enum_base_clause, + STATE(2874), 1, + sym_enumerator_list, + ACTIONS(6114), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473717,23 +476940,11 @@ 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, - sym_identifier, - ACTIONS(6309), 29, + ACTIONS(6116), 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, @@ -473749,17 +476960,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126508] = 3, + sym_auto, + anon_sym_decltype, + [126824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6299), 18, + ACTIONS(6277), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -473778,7 +476996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6301), 29, + ACTIONS(6279), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -473808,10 +477026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126563] = 3, + [126879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 18, + ACTIONS(6381), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -473830,7 +477048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6450), 29, + ACTIONS(6383), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -473860,11 +477078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126618] = 3, + [126934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5028), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473874,6 +477091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -473882,14 +477100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6458), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5030), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -473901,22 +477121,19 @@ 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_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126673] = 3, + [126989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6417), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5003), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473926,6 +477143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -473934,14 +477152,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6419), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5005), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -473953,21 +477173,78 @@ 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_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126728] = 3, + [127044] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(7526), 1, + anon_sym_LBRACK, + STATE(3867), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4765), 1, + sym_template_argument_list, + ACTIONS(4158), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4143), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(4163), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4135), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [127113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6252), 18, + ACTIONS(6363), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -473986,7 +477263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6254), 29, + ACTIONS(6365), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -474016,11 +477293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126783] = 3, + [127168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 18, - aux_sym_preproc_elif_token1, + ACTIONS(4995), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474030,6 +477306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -474038,14 +477315,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6367), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(4997), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474057,21 +477336,19 @@ 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_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126838] = 3, + [127223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6373), 18, + ACTIONS(6334), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -474090,7 +477367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6375), 29, + ACTIONS(6336), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -474120,94 +477397,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126893] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(7508), 1, - anon_sym_LBRACK, - STATE(3750), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4714), 1, - sym_template_argument_list, - ACTIONS(4160), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4145), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4165), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4137), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [126962] = 7, + [127278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - STATE(1935), 1, - sym_template_argument_list, - STATE(2854), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5052), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5566), 11, + ACTIONS(6457), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5568), 29, + sym_identifier, + ACTIONS(6459), 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, @@ -474216,30 +477435,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [127025] = 3, + [127333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5024), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474249,6 +477462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute__, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -474257,14 +477471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6446), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5026), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474276,109 +477492,32 @@ 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_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127080] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7329), 1, - anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(7714), 1, - anon_sym_requires, - STATE(5413), 1, - sym__function_attributes_start, - STATE(5711), 1, - sym_ref_qualifier, - STATE(6641), 1, - sym__function_attributes_end, - STATE(6869), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(4731), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5252), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6595), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5929), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7319), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [127181] = 7, + [127388] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7619), 1, + ACTIONS(7702), 1, anon_sym_LBRACE, - STATE(3687), 1, + STATE(3633), 1, sym_attribute_specifier, - STATE(4348), 1, + STATE(4389), 1, sym_enumerator_list, - ACTIONS(5733), 4, + ACTIONS(5788), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, - ACTIONS(5735), 39, + ACTIONS(5790), 39, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -474418,11 +477557,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [127244] = 3, + [127451] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 18, - aux_sym_preproc_elif_token1, + ACTIONS(6071), 1, + anon_sym___attribute__, + ACTIONS(6397), 1, + anon_sym_LBRACE, + ACTIONS(7817), 1, + anon_sym_COLON, + STATE(2258), 1, + sym_attribute_specifier, + STATE(2833), 1, + sym__enum_base_clause, + STATE(2897), 1, + sym_enumerator_list, + ACTIONS(6108), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474431,23 +477581,11 @@ 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, - sym_identifier, - ACTIONS(6359), 29, + ACTIONS(6110), 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, @@ -474463,18 +477601,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127299] = 3, + sym_auto, + anon_sym_decltype, + [127518] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 18, - aux_sym_preproc_elif_token1, + ACTIONS(7599), 1, + anon_sym___attribute__, + ACTIONS(7813), 1, + anon_sym_LBRACE, + ACTIONS(7815), 1, + anon_sym_COLON, + STATE(4471), 1, + sym__enum_base_clause, + STATE(4523), 1, + sym_enumerator_list, + STATE(4678), 1, + sym_attribute_specifier, + ACTIONS(6108), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474483,7 +477639,6 @@ 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, @@ -474492,14 +477647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3922), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6110), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474511,21 +477666,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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127354] = 3, + [127585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 22, + ACTIONS(4999), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474548,7 +477699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(5006), 25, + ACTIONS(5001), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -474574,10 +477725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127409] = 3, + [127640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 18, + ACTIONS(6253), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -474596,7 +477747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6293), 29, + ACTIONS(6255), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -474626,20 +477777,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127464] = 3, + [127695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 18, + ACTIONS(6473), 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_or, anon_sym_and, anon_sym_bitor, @@ -474647,10 +477798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5263), 29, + sym_identifier, + ACTIONS(6475), 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, @@ -474659,87 +477815,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_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, - [127519] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - STATE(3669), 1, - sym_attribute_specifier, - ACTIONS(5829), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5827), 32, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [127577] = 5, + [127750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, - anon_sym___attribute__, - STATE(4529), 1, - sym_attribute_specifier, - ACTIONS(5835), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5035), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474748,6 +477841,8 @@ 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, @@ -474758,13 +477853,14 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5837), 25, + anon_sym_final, + anon_sym_override, + ACTIONS(5037), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474776,6 +477872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -474784,27 +477881,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127635] = 11, + [127805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, - anon_sym_LBRACE, - ACTIONS(7716), 1, - anon_sym_LPAREN2, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - sym_auto, - ACTIONS(7722), 1, - anon_sym_decltype, - STATE(4622), 1, - sym_new_declarator, - STATE(4635), 1, - sym_decltype_auto, - STATE(4805), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5356), 16, + ACTIONS(6403), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474813,6 +477894,7 @@ 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, @@ -474821,12 +477903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5358), 21, + ACTIONS(6405), 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_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -474837,33 +477922,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127705] = 11, + [127860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, - anon_sym_LBRACE, - ACTIONS(7716), 1, - anon_sym_LPAREN2, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - sym_auto, - ACTIONS(7722), 1, - anon_sym_decltype, - STATE(4635), 1, - sym_decltype_auto, - STATE(4642), 1, - sym_new_declarator, - STATE(4898), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5349), 16, + ACTIONS(6289), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474872,6 +477946,7 @@ 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, @@ -474880,12 +477955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5351), 21, + ACTIONS(6291), 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_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -474896,20 +477974,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127775] = 5, + [127915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, - anon_sym___attribute__, - STATE(4534), 1, - sym_attribute_specifier, - ACTIONS(5895), 19, + ACTIONS(6269), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -474919,6 +477998,7 @@ 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, @@ -474927,11 +478007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5897), 25, + ACTIONS(6271), 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, @@ -474947,88 +478026,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, - [127833] = 5, + [127970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - STATE(4495), 1, + STATE(3594), 1, sym_attribute_specifier, - ACTIONS(5821), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5835), 4, 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, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5837), 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_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, - ACTIONS(5823), 25, - anon_sym_DOT_DOT_DOT, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [128028] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym___attribute__, + STATE(3590), 1, + sym_attribute_specifier, + ACTIONS(5875), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5877), 40, anon_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___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, 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, - [127891] = 11, + anon_sym_EQ, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [128086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - ACTIONS(7716), 1, + ACTIONS(7745), 1, anon_sym_LPAREN2, - ACTIONS(7718), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - sym_auto, - ACTIONS(7722), 1, - anon_sym_decltype, - STATE(4628), 1, - sym_new_declarator, - STATE(4635), 1, - sym_decltype_auto, - STATE(4839), 2, + STATE(4327), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5320), 16, + ACTIONS(6030), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475045,12 +478171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5322), 21, + ACTIONS(6032), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -475061,86 +478188,195 @@ 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_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, - [127961] = 5, + [128146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - STATE(4532), 1, + STATE(3638), 1, sym_attribute_specifier, - ACTIONS(5882), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5911), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5909), 32, 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___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5884), 25, - anon_sym_DOT_DOT_DOT, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [128204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym___attribute__, + STATE(3652), 1, + sym_attribute_specifier, + ACTIONS(5871), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5873), 40, anon_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___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, + anon_sym_EQ, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [128262] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + STATE(3651), 1, + sym_attribute_specifier, + ACTIONS(5915), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5913), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [128019] = 11, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [128320] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(7640), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, + ACTIONS(7819), 1, anon_sym_LPAREN2, - ACTIONS(7726), 1, + ACTIONS(7821), 1, + anon_sym_LBRACK, + ACTIONS(7823), 1, sym_auto, - ACTIONS(7728), 1, + ACTIONS(7825), 1, anon_sym_decltype, - STATE(2172), 1, - sym_decltype_auto, - STATE(4649), 1, + STATE(4658), 1, sym_new_declarator, - STATE(4297), 2, + STATE(4671), 1, + sym_decltype_auto, + STATE(4946), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5363), 9, + ACTIONS(5381), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475149,11 +478385,20 @@ 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(5365), 28, + sym_identifier, + ACTIONS(5383), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -475164,99 +478409,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128089] = 8, + [128390] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym___attribute__, + STATE(3643), 1, + sym_attribute_specifier, + ACTIONS(5853), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5855), 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_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [128448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7730), 1, - anon_sym_LT, - STATE(2854), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2988), 1, - sym_template_argument_list, - ACTIONS(5052), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4137), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7431), 1, + anon_sym___attribute__, + STATE(3646), 1, + sym_attribute_specifier, + ACTIONS(5849), 4, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4145), 28, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5851), 40, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, 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_EQ, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, anon_sym_GT2, - [128153] = 6, + anon_sym_try, + anon_sym_requires, + [128506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(4097), 1, - sym_template_argument_list, - ACTIONS(4163), 7, + ACTIONS(5336), 1, + anon_sym___attribute__, + STATE(3660), 1, + sym_attribute_specifier, + ACTIONS(5823), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(5338), 36, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5821), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -475279,24 +478567,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_alignas, anon_sym_template, anon_sym_operator, - [128213] = 5, + [128564] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - STATE(3612), 1, + STATE(3644), 1, sym_attribute_specifier, - ACTIONS(5823), 12, + ACTIONS(5885), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -475309,7 +478594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5821), 32, + ACTIONS(5883), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -475342,27 +478627,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [128271] = 11, + [128622] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(7716), 1, + ACTIONS(7819), 1, anon_sym_LPAREN2, - ACTIONS(7718), 1, + ACTIONS(7821), 1, anon_sym_LBRACK, - ACTIONS(7720), 1, + ACTIONS(7823), 1, sym_auto, - ACTIONS(7722), 1, + ACTIONS(7825), 1, anon_sym_decltype, - STATE(4606), 1, + STATE(4643), 1, sym_new_declarator, - STATE(4635), 1, + STATE(4671), 1, sym_decltype_auto, - STATE(4742), 2, + STATE(4945), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5363), 16, + ACTIONS(5350), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475379,7 +478664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5365), 21, + ACTIONS(5352), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -475401,14 +478686,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128341] = 5, + [128692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - STATE(4513), 1, + STATE(3584), 1, sym_attribute_specifier, - ACTIONS(5861), 19, + ACTIONS(5864), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5866), 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_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_EQ, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [128750] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(7745), 1, + anon_sym_LPAREN2, + STATE(4298), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5992), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -475426,16 +478767,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5863), 25, + ACTIONS(5994), 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, @@ -475446,23 +478784,36 @@ 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_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, - [128399] = 5, + [128810] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, - anon_sym___attribute__, - STATE(4512), 1, - sym_attribute_specifier, - ACTIONS(5857), 19, - aux_sym_preproc_elif_token1, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(7743), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + ACTIONS(7829), 1, + sym_auto, + ACTIONS(7831), 1, + anon_sym_decltype, + STATE(2272), 1, + sym_decltype_auto, + STATE(4679), 1, + sym_new_declarator, + STATE(4331), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5364), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475471,24 +478822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5859), 25, + ACTIONS(5366), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -475499,22 +478837,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128457] = 5, + [128880] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, + ACTIONS(7321), 1, anon_sym___attribute__, - STATE(4511), 1, + STATE(4515), 1, sym_attribute_specifier, - ACTIONS(5853), 19, + ACTIONS(5839), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -475534,7 +478879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5855), 25, + ACTIONS(5841), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -475560,14 +478905,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128515] = 5, + [128938] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, + ACTIONS(7321), 1, anon_sym___attribute__, - STATE(4479), 1, + STATE(4521), 1, sym_attribute_specifier, - ACTIONS(5817), 19, + ACTIONS(5853), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -475587,7 +478932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5819), 25, + ACTIONS(5855), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -475613,14 +478958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128573] = 5, + [128996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, + ACTIONS(7321), 1, anon_sym___attribute__, - STATE(4509), 1, + STATE(4513), 1, sym_attribute_specifier, - ACTIONS(5849), 19, + ACTIONS(5835), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -475640,7 +478985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5851), 25, + ACTIONS(5837), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -475666,14 +479011,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128631] = 5, + [129054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - STATE(3683), 1, + STATE(3584), 1, sym_attribute_specifier, - ACTIONS(5833), 12, + ACTIONS(5866), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -475686,7 +479031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5831), 32, + ACTIONS(5864), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -475719,27 +479064,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [128689] = 11, + [129112] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(7640), 1, - anon_sym_LBRACK, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - ACTIONS(7726), 1, - sym_auto, - ACTIONS(7728), 1, - anon_sym_decltype, - STATE(2172), 1, - sym_decltype_auto, - STATE(4647), 1, - sym_new_declarator, - STATE(4308), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5356), 9, + ACTIONS(7321), 1, + anon_sym___attribute__, + STATE(4510), 1, + sym_attribute_specifier, + ACTIONS(5909), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475748,11 +479081,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5358), 28, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5911), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -475763,42 +479109,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [129170] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7321), 1, + anon_sym___attribute__, + STATE(4508), 1, + sym_attribute_specifier, + ACTIONS(5864), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5866), 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, - [128759] = 11, + [129228] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - ACTIONS(7640), 1, + ACTIONS(7743), 1, anon_sym_LBRACK, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(7726), 1, + ACTIONS(7829), 1, sym_auto, - ACTIONS(7728), 1, + ACTIONS(7831), 1, anon_sym_decltype, - STATE(2172), 1, + STATE(2272), 1, sym_decltype_auto, - STATE(4604), 1, + STATE(4662), 1, sym_new_declarator, - STATE(4272), 2, + STATE(4284), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5349), 9, + ACTIONS(5381), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475808,7 +479200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5351), 28, + ACTIONS(5383), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -475837,19 +479229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128829] = 5, + [129298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - STATE(3657), 1, + STATE(3598), 1, sym_attribute_specifier, - ACTIONS(5849), 4, + ACTIONS(5839), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, - ACTIONS(5851), 40, + ACTIONS(5841), 40, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -475890,10 +479282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [128887] = 3, + [129356] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 21, + ACTIONS(7321), 1, + anon_sym___attribute__, + STATE(4509), 1, + sym_attribute_specifier, + ACTIONS(5913), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475902,7 +479299,6 @@ 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, @@ -475913,14 +479309,66 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5384), 25, + ACTIONS(5915), 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, + [129414] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7321), 1, + anon_sym___attribute__, + STATE(4543), 1, + sym_attribute_specifier, + ACTIONS(5821), 19, aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5823), 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, @@ -475934,21 +479382,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128941] = 5, + [129472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, + ACTIONS(7321), 1, anon_sym___attribute__, - STATE(4480), 1, + STATE(4554), 1, sym_attribute_specifier, - ACTIONS(5839), 19, + ACTIONS(5879), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -475968,7 +479415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5841), 25, + ACTIONS(5881), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -475994,19 +479441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128999] = 5, + [129530] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - STATE(3586), 1, + STATE(3660), 1, sym_attribute_specifier, - ACTIONS(5861), 4, + ACTIONS(5821), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, - ACTIONS(5863), 40, + ACTIONS(5823), 40, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -476047,27 +479494,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [129057] = 11, + [129588] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - ACTIONS(7640), 1, + ACTIONS(7743), 1, anon_sym_LBRACK, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(7726), 1, + ACTIONS(7829), 1, sym_auto, - ACTIONS(7728), 1, + ACTIONS(7831), 1, anon_sym_decltype, - STATE(2172), 1, + STATE(2272), 1, sym_decltype_auto, - STATE(4646), 1, + STATE(4655), 1, sym_new_declarator, - STATE(4301), 2, + STATE(4288), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5320), 9, + ACTIONS(5385), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -476077,7 +479524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5322), 28, + ACTIONS(5387), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -476106,176 +479553,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [129127] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - STATE(3598), 1, - sym_attribute_specifier, - ACTIONS(5857), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5859), 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_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [129185] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - STATE(3564), 1, - sym_attribute_specifier, - ACTIONS(5839), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5841), 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_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [129243] = 5, + [129658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(7321), 1, anon_sym___attribute__, - STATE(3598), 1, + STATE(4535), 1, sym_attribute_specifier, - ACTIONS(5859), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5857), 32, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [129301] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(7646), 1, - anon_sym_LPAREN2, - STATE(4268), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5950), 17, + ACTIONS(5849), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -476293,13 +479578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5952), 25, + sym_auto, + anon_sym_decltype, + ACTIONS(5851), 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, @@ -476310,182 +479598,75 @@ 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_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, - [129361] = 5, + [129716] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(7321), 1, anon_sym___attribute__, - STATE(3680), 1, + STATE(4548), 1, sym_attribute_specifier, - ACTIONS(5855), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5853), 32, + ACTIONS(5883), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - anon_sym_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_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [129419] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - STATE(3559), 1, - sym_attribute_specifier, - ACTIONS(5835), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5837), 40, + ACTIONS(5885), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - 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_EQ, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [129477] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - STATE(3680), 1, - sym_attribute_specifier, - ACTIONS(5853), 4, - anon_sym_AMP, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5855), 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_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [129535] = 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, + [129774] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - STATE(3559), 1, + STATE(3590), 1, sym_attribute_specifier, - ACTIONS(5837), 12, + ACTIONS(5877), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -476498,7 +479679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5835), 32, + ACTIONS(5875), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -476531,59 +479712,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [129593] = 25, + [129832] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7734), 1, + ACTIONS(7835), 1, anon_sym_RPAREN, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(7777), 1, + STATE(7852), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -476604,40 +479785,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129691] = 6, + [129930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(4097), 1, - sym_template_argument_list, - ACTIONS(4975), 7, + ACTIONS(7431), 1, + anon_sym___attribute__, + STATE(3644), 1, + sym_attribute_specifier, + ACTIONS(5883), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(5885), 40, + 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, - ACTIONS(4968), 36, - anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -476648,29 +479827,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [129751] = 5, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [129988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - STATE(3683), 1, + STATE(3654), 1, sym_attribute_specifier, - ACTIONS(5831), 4, + ACTIONS(5879), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, - ACTIONS(5833), 40, + ACTIONS(5881), 40, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -476711,17 +479891,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [129809] = 6, + [130046] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(7646), 1, + ACTIONS(7321), 1, + anon_sym___attribute__, + STATE(4531), 1, + sym_attribute_specifier, + ACTIONS(5871), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5873), 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, - STATE(4304), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5966), 17, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [130104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7321), 1, + anon_sym___attribute__, + STATE(4530), 1, + sym_attribute_specifier, + ACTIONS(5875), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -476739,13 +479969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5968), 25, + sym_auto, + anon_sym_decltype, + ACTIONS(5877), 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, @@ -476756,23 +479989,22 @@ 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_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, - [129869] = 5, + [130162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - STATE(3570), 1, + STATE(3654), 1, sym_attribute_specifier, - ACTIONS(5897), 12, + ACTIONS(5881), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -476785,7 +480017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5895), 32, + ACTIONS(5879), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -476818,12 +480050,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [129927] = 5, + [130220] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(7745), 1, + anon_sym_LPAREN2, + STATE(4343), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5931), 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(5933), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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_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, + [130280] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(7819), 1, + anon_sym_LPAREN2, + ACTIONS(7821), 1, + anon_sym_LBRACK, + ACTIONS(7823), 1, + sym_auto, + ACTIONS(7825), 1, + anon_sym_decltype, + STATE(4657), 1, + sym_new_declarator, + STATE(4671), 1, + sym_decltype_auto, + STATE(4785), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5385), 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_identifier, + ACTIONS(5387), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [130350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - STATE(3564), 1, + STATE(3598), 1, sym_attribute_specifier, ACTIONS(5841), 12, anon_sym_DOT_DOT_DOT, @@ -476871,67 +480216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [129985] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - STATE(3612), 1, - sym_attribute_specifier, - ACTIONS(5821), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5823), 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_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_EQ, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [130043] = 5, + [130408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - STATE(3586), 1, + STATE(3594), 1, sym_attribute_specifier, - ACTIONS(5863), 12, + ACTIONS(5837), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -476944,7 +480236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5861), 32, + ACTIONS(5835), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -476977,68 +480269,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [130101] = 5, + [130466] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - STATE(3669), 1, - sym_attribute_specifier, - ACTIONS(5827), 4, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7841), 1, + anon_sym_LT, + STATE(2903), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3008), 1, + sym_template_argument_list, + ACTIONS(5084), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4135), 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, - ACTIONS(5829), 40, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4143), 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___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, - anon_sym_EQ, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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_virtual, - anon_sym_alignas, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [130159] = 5, + [130530] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7214), 1, - anon_sym___attribute__, - STATE(4508), 1, - sym_attribute_specifier, - ACTIONS(5827), 19, - aux_sym_preproc_elif_token1, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(7819), 1, + anon_sym_LPAREN2, + ACTIONS(7821), 1, + anon_sym_LBRACK, + ACTIONS(7823), 1, + sym_auto, + ACTIONS(7825), 1, + anon_sym_decltype, + STATE(4671), 1, + sym_decltype_auto, + STATE(4677), 1, + sym_new_declarator, + STATE(4937), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5364), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -477055,16 +480362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5829), 25, + ACTIONS(5366), 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, + aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -477075,27 +480378,25 @@ 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, - [130217] = 5, + [130600] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - STATE(3570), 1, + STATE(3638), 1, sym_attribute_specifier, - ACTIONS(5895), 4, + ACTIONS(5909), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, - ACTIONS(5897), 40, + ACTIONS(5911), 40, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -477136,120 +480437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [130275] = 5, + [130658] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - STATE(3571), 1, - sym_attribute_specifier, - ACTIONS(5882), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(5884), 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_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + ACTIONS(3614), 1, anon_sym_LBRACE, - anon_sym_EQ, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [130333] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - STATE(3657), 1, - sym_attribute_specifier, - ACTIONS(5851), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7745), 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, - ACTIONS(5849), 32, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [130391] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7214), 1, - anon_sym___attribute__, - STATE(4505), 1, - sym_attribute_specifier, - ACTIONS(5831), 19, + STATE(4292), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5943), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -477267,16 +480465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5833), 25, + ACTIONS(5945), 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, @@ -477287,22 +480482,23 @@ 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_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, - [130449] = 5, + [130718] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - STATE(3658), 1, + STATE(3652), 1, sym_attribute_specifier, - ACTIONS(5819), 12, + ACTIONS(5873), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -477315,7 +480511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5817), 32, + ACTIONS(5871), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -477348,14 +480544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [130507] = 5, + [130776] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - STATE(3571), 1, + STATE(3646), 1, sym_attribute_specifier, - ACTIONS(5884), 12, + ACTIONS(5851), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -477368,7 +480564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5882), 32, + ACTIONS(5849), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -477401,19 +480597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [130565] = 5, + [130834] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - STATE(3658), 1, + STATE(3651), 1, sym_attribute_specifier, - ACTIONS(5817), 4, + ACTIONS(5913), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, - ACTIONS(5819), 40, + ACTIONS(5915), 40, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -477454,18 +480650,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [130623] = 6, + [130892] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - ACTIONS(7646), 1, + ACTIONS(7743), 1, + anon_sym_LBRACK, + ACTIONS(7827), 1, anon_sym_LPAREN2, - STATE(4303), 2, + ACTIONS(7829), 1, + sym_auto, + ACTIONS(7831), 1, + anon_sym_decltype, + STATE(2272), 1, + sym_decltype_auto, + STATE(4676), 1, + sym_new_declarator, + STATE(4305), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5997), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5350), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -477474,21 +480679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5999), 25, + ACTIONS(5352), 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_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -477499,27 +480694,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_RBRACK, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [130683] = 6, + [130962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(7646), 1, - anon_sym_LPAREN2, - STATE(4296), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5560), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -477528,6 +480721,7 @@ 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, @@ -477536,13 +480730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6003), 25, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5562), 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, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -477553,8 +480751,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_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -477562,66 +480760,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [130743] = 24, + [131016] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2088), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(4129), 1, + sym_template_argument_list, + ACTIONS(4161), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5397), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, sym_auto, - ACTIONS(2090), 1, anon_sym_decltype, - ACTIONS(7740), 1, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [131076] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(4129), 1, + sym_template_argument_list, + ACTIONS(5012), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5007), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, sym_identifier, - ACTIONS(7742), 1, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [131136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + STATE(3643), 1, + sym_attribute_specifier, + ACTIONS(5855), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(7746), 1, - sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, - sym_decltype_auto, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(5859), 1, - sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6406), 1, - sym__type_definition_type, - STATE(7025), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(2137), 2, - sym_decltype, - sym_template_type, - STATE(4504), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5853), 32, + anon_sym_AMP, anon_sym___extension__, + 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, @@ -477633,57 +480914,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130838] = 24, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [131194] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, ACTIONS(2088), 1, - sym_auto, + anon_sym_class, ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(5570), 1, sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6358), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9159), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4539), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -477704,57 +480992,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130933] = 24, + [131289] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5570), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8877), 1, + STATE(9017), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4539), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -477775,68 +481063,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131028] = 26, + [131384] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7329), 1, + ACTIONS(7433), 1, anon_sym_LBRACK, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7437), 1, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7662), 1, + ACTIONS(7753), 1, anon_sym_requires, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, + ACTIONS(7845), 1, anon_sym_DASH_GT, - STATE(5561), 1, + STATE(5623), 1, sym__function_attributes_start, - STATE(5844), 1, + STATE(5876), 1, sym_ref_qualifier, - STATE(6593), 1, + STATE(6657), 1, sym_trailing_return_type, - STATE(6834), 1, + STATE(6881), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7319), 2, + ACTIONS(7423), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(4950), 2, + STATE(4979), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5364), 2, + STATE(5383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6595), 2, + STATE(6656), 2, sym__function_postfix, sym_requires_clause, - STATE(5942), 3, + STATE(5985), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7429), 11, + ACTIONS(7605), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -477848,57 +481136,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131127] = 24, + [131483] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7853), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5515), 1, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6439), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(8898), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4500), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -477919,57 +481207,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131222] = 24, + [131578] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3940), 1, - sym_primitive_type, - ACTIONS(7762), 1, - sym_identifier, - ACTIONS(7764), 1, - anon_sym_COLON_COLON, - ACTIONS(7766), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(7768), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(7770), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(7772), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(7774), 1, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(2120), 1, anon_sym_typename, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(3663), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, + ACTIONS(7833), 1, + sym_identifier, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(7839), 1, + sym_primitive_type, + STATE(2273), 1, sym_decltype_auto, - STATE(4881), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(5405), 1, sym__type_specifier, - STATE(6407), 1, - sym_type_descriptor, - STATE(7018), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(8643), 1, + sym_type_descriptor, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4544), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3938), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3557), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -477990,57 +481278,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131317] = 24, + [131673] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(7865), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7871), 1, sym_primitive_type, - ACTIONS(7748), 1, + ACTIONS(7873), 1, anon_sym_enum, - ACTIONS(7750), 1, + ACTIONS(7875), 1, anon_sym_class, - ACTIONS(7752), 1, + ACTIONS(7877), 1, anon_sym_struct, - ACTIONS(7754), 1, + ACTIONS(7879), 1, anon_sym_union, - ACTIONS(7756), 1, + ACTIONS(7881), 1, + sym_auto, + ACTIONS(7883), 1, + anon_sym_decltype, + ACTIONS(7885), 1, anon_sym_typename, - STATE(2216), 1, - sym_decltype_auto, - STATE(3383), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5859), 1, - sym__type_specifier, - STATE(5879), 1, + STATE(4924), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6357), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(5359), 1, + sym__type_specifier, + STATE(5507), 1, + sym_decltype_auto, + STATE(6466), 1, + sym_type_descriptor, + STATE(7046), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4561), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(7869), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(5463), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -478061,43 +481349,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131412] = 8, + [131768] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, + ACTIONS(2088), 1, + anon_sym_class, + ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, + sym_identifier, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(4979), 1, - anon_sym_LBRACK, - ACTIONS(7258), 1, - anon_sym_LT, - STATE(4530), 1, - sym_template_argument_list, - ACTIONS(4972), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4975), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(4968), 32, - anon_sym_AMP, + ACTIONS(7839), 1, + sym_primitive_type, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(5405), 1, + sym__type_specifier, + STATE(7068), 1, + sym__scope_resolution, + STATE(8987), 1, + sym_type_descriptor, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, + sym_decltype, + sym_template_type, + STATE(4532), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2080), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2271), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_extern, - 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, @@ -478109,47 +481420,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + [131863] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, sym_auto, + ACTIONS(119), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, + ACTIONS(1428), 1, anon_sym_template, - anon_sym_operator, - [131475] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, + ACTIONS(3938), 1, + sym_primitive_type, + ACTIONS(7887), 1, + sym_identifier, + ACTIONS(7889), 1, anon_sym_COLON_COLON, - ACTIONS(5457), 1, - anon_sym_LBRACE, - ACTIONS(5537), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(5535), 33, - anon_sym_AMP, + ACTIONS(7891), 1, + anon_sym_enum, + ACTIONS(7893), 1, + anon_sym_class, + ACTIONS(7895), 1, + anon_sym_struct, + ACTIONS(7897), 1, + anon_sym_union, + ACTIONS(7899), 1, + anon_sym_typename, + STATE(3485), 1, + sym_qualified_type_identifier, + STATE(3620), 1, + sym_decltype_auto, + STATE(3701), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4793), 1, + sym__type_specifier, + STATE(6466), 1, + sym_type_descriptor, + STATE(7042), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3389), 2, + sym_decltype, + sym_template_type, + STATE(4565), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3936), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3623), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_extern, - 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, @@ -478161,64 +481491,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [131532] = 24, + [131958] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7853), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6462), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(8771), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -478239,57 +481562,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131627] = 24, + [132053] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7776), 1, + ACTIONS(7871), 1, + sym_primitive_type, + ACTIONS(7881), 1, + sym_auto, + ACTIONS(7883), 1, + anon_sym_decltype, + ACTIONS(7901), 1, sym_identifier, - ACTIONS(7778), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(7782), 1, - sym_primitive_type, - ACTIONS(7784), 1, + ACTIONS(7905), 1, anon_sym_enum, - ACTIONS(7786), 1, + ACTIONS(7907), 1, anon_sym_class, - ACTIONS(7788), 1, + ACTIONS(7909), 1, anon_sym_struct, - ACTIONS(7790), 1, + ACTIONS(7911), 1, anon_sym_union, - ACTIONS(7792), 1, - sym_auto, - ACTIONS(7794), 1, - anon_sym_decltype, - ACTIONS(7796), 1, + ACTIONS(7913), 1, anon_sym_typename, - STATE(3383), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(4908), 1, + STATE(4821), 1, sym__type_specifier, - STATE(4912), 1, + STATE(4924), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5418), 1, + STATE(5507), 1, sym_decltype_auto, - STATE(6407), 1, + STATE(6466), 1, sym_type_descriptor, - STATE(7045), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - STATE(4481), 2, + STATE(4575), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7780), 4, + ACTIONS(7869), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5419), 7, + STATE(5463), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -478310,57 +481633,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131722] = 24, + [132148] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7853), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6395), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(8613), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -478381,57 +481704,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131817] = 24, + [132243] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7853), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6455), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(8563), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -478452,107 +481775,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5759), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5761), 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, - [131965] = 24, + [132338] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7776), 1, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7778), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7782), 1, + ACTIONS(7853), 1, sym_primitive_type, - ACTIONS(7784), 1, + ACTIONS(7855), 1, anon_sym_enum, - ACTIONS(7786), 1, + ACTIONS(7857), 1, anon_sym_class, - ACTIONS(7788), 1, + ACTIONS(7859), 1, anon_sym_struct, - ACTIONS(7790), 1, + ACTIONS(7861), 1, anon_sym_union, - ACTIONS(7792), 1, - sym_auto, - ACTIONS(7794), 1, - anon_sym_decltype, - ACTIONS(7796), 1, + ACTIONS(7863), 1, anon_sym_typename, - STATE(3383), 1, + STATE(2273), 1, + sym_decltype_auto, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(4662), 1, - sym__type_specifier, - STATE(4912), 1, + STATE(5882), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5418), 1, - sym_decltype_auto, - STATE(6407), 1, - sym_type_descriptor, - STATE(7045), 1, + STATE(5895), 1, + sym__type_specifier, + STATE(6445), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4518), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7780), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5419), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -478573,57 +481846,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132060] = 24, + [132433] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5570), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8056), 1, + STATE(8929), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4539), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -478644,10 +481917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132155] = 3, + [132528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 20, + ACTIONS(5544), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -478657,7 +481930,6 @@ 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, @@ -478668,7 +481940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5717), 25, + ACTIONS(5546), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -478686,6 +481958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -478694,57 +481967,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [132208] = 24, + [132581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6709), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6707), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [132634] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8788), 1, + STATE(8926), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -478765,57 +482088,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132303] = 24, + [132729] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7610), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(7917), 1, + anon_sym_requires, + STATE(5647), 1, + sym__function_attributes_start, + STATE(5871), 1, + sym_ref_qualifier, + STATE(6825), 1, + sym__function_attributes_end, + STATE(6950), 1, + sym_trailing_return_type, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7423), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7617), 2, + anon_sym_final, + anon_sym_override, + STATE(4979), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6390), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5981), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [132828] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7853), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5515), 1, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6382), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(9125), 1, - sym_type_descriptor, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4500), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -478836,57 +482232,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132398] = 24, + [132923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7119), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7117), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [132976] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8970), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9049), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -478907,57 +482353,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132493] = 24, + [133071] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7853), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6465), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(8459), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -478978,57 +482424,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132588] = 24, + [133166] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, + ACTIONS(7871), 1, + sym_primitive_type, + ACTIONS(7881), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(7883), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(7901), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, - sym_primitive_type, - ACTIONS(7748), 1, + ACTIONS(7905), 1, anon_sym_enum, - ACTIONS(7750), 1, + ACTIONS(7907), 1, anon_sym_class, - ACTIONS(7752), 1, + ACTIONS(7909), 1, anon_sym_struct, - ACTIONS(7754), 1, + ACTIONS(7911), 1, anon_sym_union, - ACTIONS(7756), 1, + ACTIONS(7913), 1, anon_sym_typename, - STATE(2216), 1, - sym_decltype_auto, - STATE(3383), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(4719), 1, sym__type_specifier, - STATE(5879), 1, + STATE(4924), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6348), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(5507), 1, + sym_decltype_auto, + STATE(6466), 1, + sym_type_descriptor, + STATE(7036), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4512), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(7869), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(5463), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -479049,57 +482495,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132683] = 24, + [133261] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5533), 1, + anon_sym_LBRACE, + ACTIONS(5420), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(5418), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [133318] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8987), 1, + STATE(8594), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -479120,57 +482618,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132778] = 24, + [133413] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(7871), 1, + sym_primitive_type, + ACTIONS(7881), 1, + sym_auto, + ACTIONS(7883), 1, + anon_sym_decltype, + ACTIONS(7901), 1, + sym_identifier, + ACTIONS(7903), 1, + anon_sym_COLON_COLON, + ACTIONS(7905), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(7907), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(7909), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(7911), 1, anon_sym_union, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(7913), 1, anon_sym_typename, - ACTIONS(7732), 1, - sym_identifier, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(7738), 1, - sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(4695), 1, sym__type_specifier, - STATE(7043), 1, - sym__scope_resolution, - STATE(8434), 1, + STATE(4924), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5507), 1, + sym_decltype_auto, + STATE(6466), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(7036), 1, + sym__scope_resolution, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4559), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7869), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(5463), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -479191,57 +482689,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132873] = 24, + [133508] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5138), 1, + STATE(5405), 1, sym__type_specifier, - STATE(6708), 1, - sym_type_descriptor, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9352), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4497), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -479262,57 +482760,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132968] = 24, + [133603] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7788), 1, + anon_sym_requires, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + STATE(5624), 1, + sym__function_attributes_start, + STATE(5880), 1, + sym_ref_qualifier, + STATE(6721), 1, + sym_trailing_return_type, + STATE(6862), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7423), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7489), 2, + anon_sym_final, + anon_sym_override, + STATE(4979), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6656), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5992), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [133702] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(3928), 1, + sym_identifier, + ACTIONS(3934), 1, + anon_sym_COLON_COLON, + ACTIONS(3938), 1, + sym_primitive_type, + ACTIONS(3940), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(3942), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(3944), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(3946), 1, anon_sym_union, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(3948), 1, anon_sym_typename, - ACTIONS(7732), 1, - sym_identifier, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(7738), 1, - sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(3620), 1, + sym_decltype_auto, + STATE(3701), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4982), 1, sym__type_specifier, - STATE(7043), 1, - sym__scope_resolution, - STATE(8847), 1, + STATE(6466), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(7038), 1, + sym__scope_resolution, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4563), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(3936), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(3623), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -479333,57 +482904,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133063] = 24, + [133797] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8856), 1, + STATE(8324), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -479404,69 +482975,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133158] = 26, + [133892] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7329), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(5016), 1, anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7434), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(7800), 1, - anon_sym_requires, - STATE(5556), 1, - sym__function_attributes_start, - STATE(5840), 1, - sym_ref_qualifier, - STATE(6785), 1, - sym__function_attributes_end, - STATE(6916), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7319), 2, + ACTIONS(7457), 1, + anon_sym_LT, + STATE(4520), 1, + sym_template_argument_list, + ACTIONS(5009), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4950), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5364), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5973), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7429), 11, + anon_sym_LBRACK_LBRACK, + ACTIONS(5012), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + ACTIONS(5007), 32, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + 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, @@ -479477,57 +483023,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133257] = 24, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [133955] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, ACTIONS(2088), 1, - sym_auto, + anon_sym_class, ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(5405), 1, sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6430), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9154), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -479548,57 +483101,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133352] = 24, + [134050] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8426), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9071), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -479619,110 +483172,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133447] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7648), 1, - sym_auto, - ACTIONS(7650), 1, - anon_sym_decltype, - STATE(4494), 1, - sym_decltype_auto, - ACTIONS(5436), 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(5438), 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, - [133506] = 24, + [134145] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5570), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9025), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9141), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4539), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -479743,57 +483243,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133601] = 24, + [134240] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5515), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9030), 1, + STATE(8473), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4500), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -479814,57 +483314,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133696] = 24, + [134335] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3340), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(3342), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(3344), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(3346), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(3370), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(3372), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(3374), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7802), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7804), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7806), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2706), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3319), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3328), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5257), 1, + STATE(5405), 1, sym__type_specifier, - STATE(6708), 1, - sym_type_descriptor, - STATE(7029), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(8803), 1, + sym_type_descriptor, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3157), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4537), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3336), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3318), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -479885,57 +483385,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133791] = 24, + [134430] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, ACTIONS(2088), 1, - sym_auto, + anon_sym_class, ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(5405), 1, sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6381), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(8998), 1, + sym_type_descriptor, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -479956,57 +483456,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133886] = 24, + [134525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5665), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5667), 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, + [134578] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8946), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9136), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -480027,57 +483577,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133981] = 24, + [134673] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7599), 1, + anon_sym___attribute__, + ACTIONS(7813), 1, + anon_sym_LBRACE, + STATE(4528), 1, + sym_enumerator_list, + STATE(4672), 1, + sym_attribute_specifier, + ACTIONS(5788), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5790), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [134734] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9047), 1, + STATE(8525), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -480098,57 +483702,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134076] = 24, + [134829] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7782), 1, - sym_primitive_type, - ACTIONS(7792), 1, - sym_auto, - ACTIONS(7794), 1, - anon_sym_decltype, - ACTIONS(7808), 1, - sym_identifier, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - ACTIONS(7812), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(7814), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(7816), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(7818), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(7820), 1, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(2120), 1, anon_sym_typename, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(4912), 1, + ACTIONS(7833), 1, + sym_identifier, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(7839), 1, + sym_primitive_type, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5339), 1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(5405), 1, sym__type_specifier, - STATE(5418), 1, - sym_decltype_auto, - STATE(6407), 1, - sym_type_descriptor, - STATE(7031), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(9362), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4531), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7780), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5419), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -480169,57 +483773,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134171] = 24, + [134924] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, ACTIONS(2088), 1, - sym_auto, + anon_sym_class, ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(5405), 1, sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6392), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9081), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -480240,57 +483844,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134266] = 24, + [135019] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5515), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9052), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9384), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4500), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -480311,57 +483915,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134361] = 24, + [135114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5795), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5797), 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, + [135167] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7853), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6457), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(8838), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -480382,57 +484036,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134456] = 24, + [135262] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5515), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(9301), 1, + STATE(8908), 1, sym_type_descriptor, - STATE(2137), 2, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4500), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -480453,57 +484107,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134551] = 24, + [135357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3588), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [135410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5711), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5713), 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, + [135463] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(9136), 1, + STATE(8708), 1, sym_type_descriptor, - STATE(2137), 2, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -480524,128 +484278,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134646] = 24, + [135558] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7920), 1, + anon_sym_LT, + STATE(3008), 1, + sym_template_argument_list, + ACTIONS(5007), 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_GT_GT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(5012), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [135617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5762), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5764), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [135670] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, - sym_identifier, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(7738), 1, - sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(5385), 1, - sym__type_specifier, - STATE(7043), 1, - sym__scope_resolution, - STATE(9068), 1, - sym_type_descriptor, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(2137), 2, - sym_decltype, - sym_template_type, - STATE(4525), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [134741] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(7822), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7824), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7828), 1, + ACTIONS(7853), 1, sym_primitive_type, - ACTIONS(7830), 1, + ACTIONS(7855), 1, anon_sym_enum, - ACTIONS(7832), 1, + ACTIONS(7857), 1, anon_sym_class, - ACTIONS(7834), 1, + ACTIONS(7859), 1, anon_sym_struct, - ACTIONS(7836), 1, + ACTIONS(7861), 1, anon_sym_union, - ACTIONS(7838), 1, - sym_auto, - ACTIONS(7840), 1, - anon_sym_decltype, - ACTIONS(7842), 1, + ACTIONS(7863), 1, anon_sym_typename, - STATE(4734), 1, - sym__type_specifier, - STATE(5075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5685), 1, - sym_qualified_type_identifier, - STATE(5778), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(6708), 1, - sym_type_descriptor, - STATE(7022), 1, + STATE(3485), 1, + sym_qualified_type_identifier, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, + sym__type_specifier, + STATE(6401), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(4485), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5622), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - ACTIONS(7826), 4, + STATE(4542), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5773), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -480666,57 +484452,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134836] = 24, + [135765] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8651), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9240), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -480737,57 +484523,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134931] = 24, + [135860] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7841), 1, + anon_sym_LT, + STATE(3008), 1, + sym_template_argument_list, + ACTIONS(5397), 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_GT_GT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4161), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [135919] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8498), 1, + STATE(8701), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -480808,57 +484647,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135026] = 24, + [136014] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, ACTIONS(2088), 1, - sym_auto, + anon_sym_class, ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(5405), 1, sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6435), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9255), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -480879,18 +484718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135121] = 7, + [136109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - ACTIONS(7703), 1, - anon_sym_LBRACE, - STATE(4491), 1, - sym_enumerator_list, - STATE(4615), 1, - sym_attribute_specifier, - ACTIONS(5678), 18, + ACTIONS(5601), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -480899,6 +484731,7 @@ 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, @@ -480909,12 +484742,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5680), 23, + ACTIONS(5603), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -480926,6 +484760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -480933,57 +484768,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [135182] = 24, + [136162] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7853), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6437), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(8578), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -481004,69 +484839,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135277] = 26, + [136257] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7329), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7434), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(7844), 1, - anon_sym_requires, - STATE(5584), 1, - sym__function_attributes_start, - STATE(5849), 1, - sym_ref_qualifier, - STATE(6779), 1, - sym__function_attributes_end, - STATE(6931), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7319), 2, + STATE(3867), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5093), 1, + sym_template_argument_list, + ACTIONS(4158), 2, anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7576), 2, - anon_sym_final, - anon_sym_override, - STATE(4950), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5364), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6387), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5993), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7429), 11, + anon_sym_LBRACK_LBRACK, + ACTIONS(4143), 3, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(4163), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4135), 31, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, + 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, @@ -481077,57 +484890,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135376] = 24, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [136324] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, ACTIONS(2088), 1, - sym_auto, + anon_sym_class, ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(5405), 1, sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6416), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(8706), 1, + sym_type_descriptor, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -481148,169 +484967,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135471] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(7619), 1, - anon_sym_LBRACE, - ACTIONS(7847), 1, - anon_sym_COLON, - STATE(3613), 1, - sym_attribute_specifier, - STATE(4218), 1, - sym__enum_base_clause, - STATE(4334), 1, - sym_enumerator_list, - ACTIONS(6057), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6055), 32, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [135536] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(7619), 1, - anon_sym_LBRACE, - ACTIONS(7847), 1, - anon_sym_COLON, - STATE(3675), 1, - sym_attribute_specifier, - STATE(4226), 1, - sym__enum_base_clause, - STATE(4362), 1, - sym_enumerator_list, - ACTIONS(6075), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6073), 32, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [135601] = 24, + [136419] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7776), 1, - sym_identifier, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(7782), 1, - sym_primitive_type, - ACTIONS(7784), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(7786), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(7788), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(7790), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(7792), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(7794), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7796), 1, + ACTIONS(2120), 1, anon_sym_typename, - STATE(3383), 1, + ACTIONS(7833), 1, + sym_identifier, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(7839), 1, + sym_primitive_type, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(4658), 1, + STATE(5405), 1, sym__type_specifier, - STATE(4912), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5418), 1, - sym_decltype_auto, - STATE(6407), 1, - sym_type_descriptor, - STATE(7045), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(9228), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4490), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7780), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5419), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -481331,57 +485038,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135696] = 24, + [136514] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(6407), 1, - sym_type_descriptor, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(8746), 1, + sym_type_descriptor, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -481402,57 +485109,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135791] = 24, + [136609] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3940), 1, - sym_primitive_type, - ACTIONS(7762), 1, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7764), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7766), 1, + ACTIONS(7853), 1, + sym_primitive_type, + ACTIONS(7855), 1, anon_sym_enum, - ACTIONS(7768), 1, + ACTIONS(7857), 1, anon_sym_class, - ACTIONS(7770), 1, + ACTIONS(7859), 1, anon_sym_struct, - ACTIONS(7772), 1, + ACTIONS(7861), 1, anon_sym_union, - ACTIONS(7774), 1, + ACTIONS(7863), 1, anon_sym_typename, - STATE(3383), 1, + STATE(2273), 1, + sym_decltype_auto, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(3663), 1, + STATE(5882), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, - sym_decltype_auto, - STATE(4690), 1, + STATE(5895), 1, sym__type_specifier, - STATE(6407), 1, - sym_type_descriptor, - STATE(7018), 1, + STATE(6444), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4482), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3938), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3557), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -481473,57 +485180,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135886] = 24, + [136704] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, ACTIONS(2088), 1, - sym_auto, + anon_sym_class, ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(5570), 1, sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6360), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9123), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4539), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -481544,57 +485251,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135981] = 24, + [136799] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5515), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, - sym__scope_resolution, - STATE(9073), 1, + STATE(6466), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(7068), 1, + sym__scope_resolution, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4500), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -481615,57 +485322,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136076] = 24, + [136894] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(9087), 1, + STATE(9118), 1, sym_type_descriptor, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -481686,57 +485393,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136171] = 24, + [136989] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7853), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5515), 1, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6433), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(9092), 1, - sym_type_descriptor, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4500), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -481757,57 +485464,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136266] = 24, + [137084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5420), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5418), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [137137] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(9105), 1, + STATE(8782), 1, sym_type_descriptor, - STATE(2137), 2, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -481828,57 +485585,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136361] = 24, + [137232] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7853), 1, sym_primitive_type, - ACTIONS(7748), 1, + ACTIONS(7855), 1, anon_sym_enum, - ACTIONS(7750), 1, + ACTIONS(7857), 1, anon_sym_class, - ACTIONS(7752), 1, + ACTIONS(7859), 1, anon_sym_struct, - ACTIONS(7754), 1, + ACTIONS(7861), 1, anon_sym_union, - ACTIONS(7756), 1, + ACTIONS(7863), 1, anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5859), 1, - sym__type_specifier, - STATE(5879), 1, + STATE(5882), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6380), 1, + STATE(5895), 1, + sym__type_specifier, + STATE(6414), 1, sym__type_definition_type, - STATE(7025), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -481899,10 +485656,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136456] = 3, + [137327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 20, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5418), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -481912,7 +485671,6 @@ 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, @@ -481923,7 +485681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5580), 25, + ACTIONS(5420), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -481949,199 +485707,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [136509] = 24, + [137382] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7599), 1, + anon_sym___attribute__, + ACTIONS(7813), 1, + anon_sym_LBRACE, + STATE(4566), 1, + sym_enumerator_list, + STATE(4647), 1, + sym_attribute_specifier, + ACTIONS(5655), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(7738), 1, - sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(5515), 1, - sym__type_specifier, - STATE(7043), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(9110), 1, - sym_type_descriptor, - STATE(2137), 2, - sym_decltype, - sym_template_type, - STATE(4500), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136604] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, sym_auto, - ACTIONS(2090), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, - sym_identifier, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(7738), 1, - sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(5385), 1, - sym__type_specifier, - STATE(7043), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(9183), 1, - sym_type_descriptor, - STATE(2137), 2, - sym_decltype, - sym_template_type, - STATE(4525), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136699] = 24, + ACTIONS(5657), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [137443] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7853), 1, sym_primitive_type, - ACTIONS(7748), 1, + ACTIONS(7855), 1, anon_sym_enum, - ACTIONS(7750), 1, + ACTIONS(7857), 1, anon_sym_class, - ACTIONS(7752), 1, + ACTIONS(7859), 1, anon_sym_struct, - ACTIONS(7754), 1, + ACTIONS(7861), 1, anon_sym_union, - ACTIONS(7756), 1, + ACTIONS(7863), 1, anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5859), 1, - sym__type_specifier, - STATE(5879), 1, + STATE(5882), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6401), 1, + STATE(5895), 1, + sym__type_specifier, + STATE(6396), 1, sym__type_definition_type, - STATE(7025), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -482162,69 +485832,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136794] = 26, + [137538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(5533), 1, + anon_sym_LBRACE, + ACTIONS(5420), 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, - ACTIONS(7323), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(5418), 33, anon_sym_AMP, - ACTIONS(7329), 1, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7437), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7690), 1, - anon_sym_requires, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, - anon_sym_DASH_GT, - STATE(5603), 1, - sym__function_attributes_start, - STATE(5835), 1, - sym_ref_qualifier, - STATE(6679), 1, - sym_trailing_return_type, - STATE(6821), 1, - sym__function_attributes_end, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7319), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7335), 2, - anon_sym_final, - anon_sym_override, - STATE(4950), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5364), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6595), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5968), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7429), 11, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -482235,57 +485876,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136893] = 24, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [137593] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(9123), 1, + STATE(8728), 1, sym_type_descriptor, - STATE(2137), 2, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -482306,157 +485954,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136988] = 3, + [137688] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2116), 1, sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(5398), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [137041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5590), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(7847), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5592), 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, - [137094] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(7849), 1, + anon_sym_COLON_COLON, + ACTIONS(7853), 1, + sym_primitive_type, + ACTIONS(7855), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(7857), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(7859), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(7861), 1, anon_sym_union, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(7863), 1, anon_sym_typename, - ACTIONS(7732), 1, - sym_identifier, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(7738), 1, - sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6418), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(9181), 1, - sym_type_descriptor, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -482477,57 +486025,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137189] = 24, + [137783] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7853), 1, sym_primitive_type, - ACTIONS(7748), 1, + ACTIONS(7855), 1, anon_sym_enum, - ACTIONS(7750), 1, + ACTIONS(7857), 1, anon_sym_class, - ACTIONS(7752), 1, + ACTIONS(7859), 1, anon_sym_struct, - ACTIONS(7754), 1, + ACTIONS(7861), 1, anon_sym_union, - ACTIONS(7756), 1, + ACTIONS(7863), 1, anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5859), 1, - sym__type_specifier, - STATE(5879), 1, + STATE(5882), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6424), 1, + STATE(5895), 1, + sym__type_specifier, + STATE(6394), 1, sym__type_definition_type, - STATE(7025), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -482548,57 +486096,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137284] = 24, + [137878] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7853), 1, sym_primitive_type, - ACTIONS(7748), 1, + ACTIONS(7855), 1, anon_sym_enum, - ACTIONS(7750), 1, + ACTIONS(7857), 1, anon_sym_class, - ACTIONS(7752), 1, + ACTIONS(7859), 1, anon_sym_struct, - ACTIONS(7754), 1, + ACTIONS(7861), 1, anon_sym_union, - ACTIONS(7756), 1, + ACTIONS(7863), 1, anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5859), 1, - sym__type_specifier, - STATE(5879), 1, + STATE(5882), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6403), 1, + STATE(5895), 1, + sym__type_specifier, + STATE(6434), 1, sym__type_definition_type, - STATE(7025), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -482619,57 +486167,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137379] = 24, + [137973] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(3938), 1, + sym_primitive_type, + ACTIONS(7887), 1, + sym_identifier, + ACTIONS(7889), 1, + anon_sym_COLON_COLON, + ACTIONS(7891), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(7893), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(7895), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(7897), 1, anon_sym_union, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(7899), 1, anon_sym_typename, - ACTIONS(7732), 1, - sym_identifier, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(7738), 1, - sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5515), 1, + STATE(3620), 1, + sym_decltype_auto, + STATE(3701), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4696), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6466), 1, + sym_type_descriptor, + STATE(7042), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(9128), 1, - sym_type_descriptor, - STATE(2137), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - STATE(4500), 2, + STATE(4574), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(3936), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(3623), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -482690,57 +486238,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137474] = 24, + [138068] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(9096), 1, + STATE(9044), 1, sym_type_descriptor, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -482761,161 +486309,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5607), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5609), 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, - [137622] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - ACTIONS(7703), 1, - anon_sym_LBRACE, - STATE(4543), 1, - sym_enumerator_list, - STATE(4634), 1, - sym_attribute_specifier, - ACTIONS(5733), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5735), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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, - [137683] = 24, + [138163] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, ACTIONS(2088), 1, - sym_auto, + anon_sym_class, ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(5570), 1, sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6433), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9104), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4539), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -482936,57 +486380,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137778] = 24, + [138258] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, ACTIONS(2088), 1, - sym_auto, + anon_sym_class, ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(5405), 1, sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6411), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9032), 1, + sym_type_descriptor, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -483007,57 +486451,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137873] = 24, + [138353] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(7925), 1, + sym_identifier, + ACTIONS(7927), 1, + anon_sym_COLON_COLON, + ACTIONS(7931), 1, + sym_primitive_type, + ACTIONS(7933), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(7935), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(7937), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(7939), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(7941), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(7943), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(7945), 1, anon_sym_typename, - ACTIONS(7732), 1, - sym_identifier, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(7738), 1, - sym_primitive_type, - STATE(2200), 1, + STATE(4762), 1, + sym__type_specifier, + STATE(5241), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, + STATE(5702), 1, sym_qualified_type_identifier, - STATE(5385), 1, - sym__type_specifier, - STATE(7043), 1, + STATE(5819), 1, + sym_decltype_auto, + STATE(6719), 1, + sym_type_descriptor, + STATE(7050), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(9090), 1, - sym_type_descriptor, - STATE(2137), 2, - sym_decltype, - sym_template_type, - STATE(4525), 2, + STATE(4544), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + STATE(5655), 2, + sym_decltype, + sym_template_type, + ACTIONS(7929), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(5818), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -483078,57 +486522,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137968] = 24, + [138448] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7853), 1, sym_primitive_type, - ACTIONS(7748), 1, + ACTIONS(7855), 1, anon_sym_enum, - ACTIONS(7750), 1, + ACTIONS(7857), 1, anon_sym_class, - ACTIONS(7752), 1, + ACTIONS(7859), 1, anon_sym_struct, - ACTIONS(7754), 1, + ACTIONS(7861), 1, anon_sym_union, - ACTIONS(7756), 1, + ACTIONS(7863), 1, anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5859), 1, - sym__type_specifier, - STATE(5879), 1, + STATE(5882), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6404), 1, + STATE(5895), 1, + sym__type_specifier, + STATE(6397), 1, sym__type_definition_type, - STATE(7025), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -483149,311 +486593,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6675), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6673), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [138116] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5535), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5537), 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, - [138171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3474), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3472), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [138224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6879), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6877), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [138277] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7730), 1, - anon_sym_LT, - STATE(2988), 1, - sym_template_argument_list, - ACTIONS(5338), 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_GT_GT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4163), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [138336] = 24, + [138543] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8617), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9093), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -483474,57 +486664,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138431] = 24, + [138638] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5368), 1, + STATE(5405), 1, sym__type_specifier, - STATE(6708), 1, - sym_type_descriptor, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9099), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4522), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -483545,57 +486735,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138526] = 24, + [138733] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(7740), 1, - sym_identifier, - ACTIONS(7742), 1, - anon_sym_COLON_COLON, - ACTIONS(7746), 1, - sym_primitive_type, - ACTIONS(7748), 1, + ACTIONS(3342), 1, anon_sym_enum, - ACTIONS(7750), 1, + ACTIONS(3344), 1, anon_sym_class, - ACTIONS(7752), 1, + ACTIONS(3346), 1, anon_sym_struct, - ACTIONS(7754), 1, + ACTIONS(3348), 1, anon_sym_union, - ACTIONS(7756), 1, + ACTIONS(3372), 1, + sym_auto, + ACTIONS(3374), 1, + anon_sym_decltype, + ACTIONS(3376), 1, anon_sym_typename, - STATE(2216), 1, - sym_decltype_auto, - STATE(3383), 1, + ACTIONS(7947), 1, + sym_identifier, + ACTIONS(7949), 1, + anon_sym_COLON_COLON, + ACTIONS(7951), 1, + sym_primitive_type, + STATE(2729), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(3344), 1, + sym_decltype_auto, + STATE(5316), 1, sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6410), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(6719), 1, + sym_type_descriptor, + STATE(7064), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(3223), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4571), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(3338), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(3342), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -483616,57 +486806,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138621] = 24, + [138828] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7702), 1, + anon_sym_LBRACE, + ACTIONS(7953), 1, + anon_sym_COLON, + STATE(3613), 1, + sym_attribute_specifier, + STATE(4282), 1, + sym__enum_base_clause, + STATE(4351), 1, + sym_enumerator_list, + ACTIONS(6110), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6108), 32, + anon_sym_AMP, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [138893] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7853), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6426), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(8708), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -483687,57 +486933,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138716] = 24, + [138988] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8603), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -483758,57 +487004,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138811] = 24, + [139083] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7853), 1, sym_primitive_type, - ACTIONS(7748), 1, + ACTIONS(7855), 1, anon_sym_enum, - ACTIONS(7750), 1, + ACTIONS(7857), 1, anon_sym_class, - ACTIONS(7752), 1, + ACTIONS(7859), 1, anon_sym_struct, - ACTIONS(7754), 1, + ACTIONS(7861), 1, anon_sym_union, - ACTIONS(7756), 1, + ACTIONS(7863), 1, anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5859), 1, - sym__type_specifier, - STATE(5879), 1, + STATE(5882), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6409), 1, + STATE(5895), 1, + sym__type_specifier, + STATE(6417), 1, sym__type_definition_type, - STATE(7025), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -483829,107 +487075,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5779), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5781), 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, - [138959] = 24, + [139178] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3930), 1, - sym_identifier, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(3940), 1, - sym_primitive_type, - ACTIONS(3942), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(3944), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(3946), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(3948), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(3950), 1, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(2120), 1, anon_sym_typename, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(3663), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, + ACTIONS(7833), 1, + sym_identifier, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(7839), 1, + sym_primitive_type, + STATE(2273), 1, sym_decltype_auto, - STATE(4975), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(5405), 1, sym__type_specifier, - STATE(6407), 1, - sym_type_descriptor, - STATE(7036), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(8609), 1, + sym_type_descriptor, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4528), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3938), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3557), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -483950,114 +487146,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139054] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(7849), 1, - anon_sym_LBRACK, - STATE(3750), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5004), 1, - sym_template_argument_list, - ACTIONS(4160), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4145), 3, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4165), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4137), 31, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [139121] = 24, + [139273] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8787), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9254), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -484078,57 +487217,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139216] = 24, + [139368] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7853), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5895), 1, sym__type_specifier, - STATE(7043), 1, + STATE(6428), 1, + sym__type_definition_type, + STATE(7058), 1, sym__scope_resolution, - STATE(8631), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -484149,57 +487288,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139311] = 24, + [139463] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(7847), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7853), 1, sym_primitive_type, - ACTIONS(7748), 1, + ACTIONS(7855), 1, anon_sym_enum, - ACTIONS(7750), 1, + ACTIONS(7857), 1, anon_sym_class, - ACTIONS(7752), 1, + ACTIONS(7859), 1, anon_sym_struct, - ACTIONS(7754), 1, + ACTIONS(7861), 1, anon_sym_union, - ACTIONS(7756), 1, + ACTIONS(7863), 1, anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(5859), 1, - sym__type_specifier, - STATE(5879), 1, + STATE(5882), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6350), 1, + STATE(5895), 1, + sym__type_specifier, + STATE(6377), 1, sym__type_definition_type, - STATE(7025), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -484220,66 +487359,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139406] = 24, + [139558] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(7747), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(7749), 1, anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, + STATE(4540), 1, + sym_decltype_auto, + ACTIONS(5548), 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(7736), 1, + ACTIONS(5550), 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, + [139617] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7702), 1, + anon_sym_LBRACE, + ACTIONS(7953), 1, + anon_sym_COLON, + STATE(3693), 1, + sym_attribute_specifier, + STATE(4233), 1, + sym__enum_base_clause, + STATE(4392), 1, + sym_enumerator_list, + ACTIONS(6116), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(7738), 1, - sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(5385), 1, - sym__type_specifier, - STATE(7043), 1, - sym__scope_resolution, - STATE(8981), 1, - sym_type_descriptor, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(2137), 2, - sym_decltype, - sym_template_type, - STATE(4525), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + anon_sym_LBRACK_LBRACK, + ACTIONS(6114), 32, + anon_sym_AMP, anon_sym___extension__, + 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, @@ -484291,57 +487461,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139501] = 24, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [139682] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5139), 1, sym__type_specifier, - STATE(7043), 1, - sym__scope_resolution, - STATE(8988), 1, + STATE(6719), 1, sym_type_descriptor, - STATE(9084), 1, + STATE(7068), 1, + sym__scope_resolution, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4522), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -484351,7 +487528,80 @@ static const uint16_t ts_small_parse_table[] = { sym_dependent_type, ACTIONS(61), 12, anon_sym___extension__, - anon_sym_const, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [139777] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7433), 1, + anon_sym_LBRACK, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7610), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(7955), 1, + anon_sym_requires, + STATE(5618), 1, + sym__function_attributes_start, + STATE(5867), 1, + sym_ref_qualifier, + STATE(6816), 1, + sym__function_attributes_end, + STATE(6977), 1, + sym_trailing_return_type, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7423), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4979), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6390), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5998), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7605), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -484362,57 +487612,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139596] = 24, + [139876] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5570), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8633), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9083), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4539), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -484433,57 +487683,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139691] = 24, + [139971] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8936), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9078), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -484504,108 +487754,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139786] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5457), 1, - anon_sym_LBRACE, - ACTIONS(5537), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(5535), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [139841] = 24, + [140066] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, ACTIONS(2088), 1, - sym_auto, + anon_sym_class, ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(5405), 1, sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6398), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9057), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -484626,57 +487825,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139936] = 24, + [140161] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, ACTIONS(2088), 1, - sym_auto, + anon_sym_class, ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7742), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5859), 1, + STATE(5405), 1, sym__type_specifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6413), 1, - sym__type_definition_type, - STATE(7025), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9270), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4504), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -484697,160 +487896,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5537), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5535), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [140084] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7851), 1, - anon_sym_LT, - STATE(2988), 1, - sym_template_argument_list, - ACTIONS(4968), 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_GT_GT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4975), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [140143] = 24, + [140256] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5385), 1, + STATE(5405), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(8575), 1, - sym_type_descriptor, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(9056), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(4525), 2, + STATE(4532), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -484871,202 +487967,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140238] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5751), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5753), 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, - [140290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5699), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5701), 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, - [140342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5621), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5623), 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, - [140394] = 23, + [140351] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7776), 1, - sym_identifier, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(7782), 1, - sym_primitive_type, - ACTIONS(7784), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(7786), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(7788), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(7790), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(7792), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(7794), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7796), 1, + ACTIONS(2120), 1, anon_sym_typename, - STATE(3383), 1, + ACTIONS(7833), 1, + sym_identifier, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(7839), 1, + sym_primitive_type, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(4765), 1, + STATE(5570), 1, sym__type_specifier, - STATE(4912), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5418), 1, - sym_decltype_auto, - STATE(7045), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(9061), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(5440), 2, + STATE(4539), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7780), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5419), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -485087,55 +488038,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140486] = 23, + [140446] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3940), 1, - sym_primitive_type, - ACTIONS(7762), 1, - sym_identifier, - ACTIONS(7764), 1, - anon_sym_COLON_COLON, - ACTIONS(7766), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(7768), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(7770), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(7772), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(7774), 1, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(2120), 1, anon_sym_typename, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(3663), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, + ACTIONS(7833), 1, + sym_identifier, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(7839), 1, + sym_primitive_type, + STATE(2273), 1, sym_decltype_auto, - STATE(4685), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(5570), 1, sym__type_specifier, - STATE(7018), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(9332), 1, + sym_type_descriptor, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(5440), 2, + STATE(4539), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3938), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3557), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -485156,65 +488109,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140578] = 5, + [140541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - STATE(4617), 1, - sym_attribute_specifier, - ACTIONS(5895), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5897), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(5754), 20, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [140634] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - STATE(4639), 1, - sym_attribute_specifier, - ACTIONS(5827), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -485223,6 +488122,7 @@ 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, @@ -485233,12 +488133,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5829), 24, + ACTIONS(5756), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -485258,55 +488159,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [140690] = 23, + [140594] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7822), 1, - sym_identifier, - ACTIONS(7824), 1, - anon_sym_COLON_COLON, - ACTIONS(7828), 1, - sym_primitive_type, - ACTIONS(7830), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(7832), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(7834), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(7836), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(7838), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(7840), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7842), 1, + ACTIONS(2120), 1, anon_sym_typename, - STATE(4711), 1, - sym__type_specifier, - STATE(5075), 1, + ACTIONS(7833), 1, + sym_identifier, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(7839), 1, + sym_primitive_type, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5685), 1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5778), 1, - sym_decltype_auto, - STATE(7022), 1, + STATE(5388), 1, + sym__type_specifier, + STATE(6719), 1, + sym_type_descriptor, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5622), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - ACTIONS(7826), 4, + STATE(4562), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5773), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -485327,36 +488230,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140782] = 9, + [140689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - ACTIONS(6656), 1, - anon_sym_LBRACE, - ACTIONS(7854), 1, - anon_sym_COLON, - STATE(2999), 1, - sym__enum_base_clause, - STATE(3017), 1, - sym_enumerator_list, - STATE(3301), 1, - sym_attribute_specifier, - ACTIONS(6055), 11, + ACTIONS(5689), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6057), 27, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5691), 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, @@ -485365,27 +488268,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [140846] = 3, + [140741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5741), 19, + ACTIONS(5750), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -485405,7 +488302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5743), 25, + ACTIONS(5752), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -485431,10 +488328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [140898] = 3, + [140793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 19, + ACTIONS(5742), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -485454,7 +488351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5615), 25, + ACTIONS(5744), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -485480,36 +488377,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [140950] = 3, + [140845] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5745), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6503), 1, + anon_sym___attribute__, + ACTIONS(6610), 1, + anon_sym_LBRACE, + ACTIONS(7957), 1, + anon_sym_COLON, + STATE(2977), 1, + sym__enum_base_clause, + STATE(3066), 1, + sym_enumerator_list, + STATE(3306), 1, + sym_attribute_specifier, + ACTIONS(6108), 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_auto, - anon_sym_decltype, - ACTIONS(5747), 25, + ACTIONS(6110), 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, @@ -485518,66 +488415,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_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, - [141002] = 23, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [140909] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7776), 1, + ACTIONS(7871), 1, + sym_primitive_type, + ACTIONS(7881), 1, + sym_auto, + ACTIONS(7883), 1, + anon_sym_decltype, + ACTIONS(7901), 1, sym_identifier, - ACTIONS(7778), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(7782), 1, - sym_primitive_type, - ACTIONS(7784), 1, + ACTIONS(7905), 1, anon_sym_enum, - ACTIONS(7786), 1, + ACTIONS(7907), 1, anon_sym_class, - ACTIONS(7788), 1, + ACTIONS(7909), 1, anon_sym_struct, - ACTIONS(7790), 1, + ACTIONS(7911), 1, anon_sym_union, - ACTIONS(7792), 1, - sym_auto, - ACTIONS(7794), 1, - anon_sym_decltype, - ACTIONS(7796), 1, + ACTIONS(7913), 1, anon_sym_typename, - STATE(3383), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(4698), 1, + STATE(4704), 1, sym__type_specifier, - STATE(4912), 1, + STATE(4924), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5418), 1, + STATE(5507), 1, sym_decltype_auto, - STATE(7045), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7780), 4, + ACTIONS(7869), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5419), 7, + STATE(5463), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -485598,14 +488501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [141094] = 5, + [141001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - STATE(4611), 1, - sym_attribute_specifier, - ACTIONS(5882), 18, + ACTIONS(5738), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -485624,12 +488524,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5884), 24, + ACTIONS(5740), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -485649,36 +488550,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141150] = 9, + [141053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - ACTIONS(6656), 1, - anon_sym_LBRACE, - ACTIONS(7854), 1, - anon_sym_COLON, - STATE(2998), 1, - sym__enum_base_clause, - STATE(3129), 1, - sym_enumerator_list, - STATE(3291), 1, - sym_attribute_specifier, - ACTIONS(6073), 11, + ACTIONS(5724), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6075), 27, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5726), 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, @@ -485687,27 +488588,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [141214] = 3, + [141105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 19, + ACTIONS(5681), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -485727,7 +488622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5721), 25, + ACTIONS(5683), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -485753,10 +488648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141266] = 3, + [141157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 19, + ACTIONS(5707), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -485776,7 +488671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5564), 25, + ACTIONS(5709), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -485802,10 +488697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141318] = 3, + [141209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 19, + ACTIONS(5698), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -485825,7 +488720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5739), 25, + ACTIONS(5700), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -485851,14 +488746,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141370] = 5, + [141261] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - STATE(4636), 1, - sym_attribute_specifier, - ACTIONS(5831), 18, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(7743), 1, + anon_sym_LBRACK, + ACTIONS(7745), 1, + anon_sym_LPAREN2, + ACTIONS(7829), 1, + sym_auto, + ACTIONS(7831), 1, + anon_sym_decltype, + STATE(2272), 1, + sym_decltype_auto, + STATE(4390), 1, + sym_new_declarator, + STATE(4284), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5381), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -485867,23 +488775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5833), 24, + ACTIONS(5383), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -485894,72 +488789,60 @@ 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_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141426] = 23, + [141329] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2080), 1, - anon_sym_enum, - ACTIONS(2082), 1, - anon_sym_class, - ACTIONS(2084), 1, - anon_sym_struct, - ACTIONS(2086), 1, - anon_sym_union, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(2092), 1, - anon_sym_typename, - ACTIONS(7732), 1, - sym_identifier, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(7738), 1, - sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(5172), 1, - sym__type_specifier, - STATE(7043), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(2137), 2, - sym_decltype, - sym_template_type, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7097), 1, + anon_sym_LBRACE, + STATE(3710), 1, + sym_attribute_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(7532), 1, + sym_virtual_specifier, + STATE(8075), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5317), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(5315), 30, + anon_sym_AMP, anon_sym___extension__, + 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, @@ -485971,65 +488854,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [141518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - STATE(4632), 1, - sym_attribute_specifier, - ACTIONS(5835), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5837), 24, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [141397] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5041), 1, + anon_sym_SEMI, + ACTIONS(5050), 1, + anon_sym_LBRACK, + ACTIONS(5043), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5046), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [141574] = 5, + anon_sym_COLON_COLON, + anon_sym_EQ, + ACTIONS(5039), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [141455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - STATE(4630), 1, - sym_attribute_specifier, - ACTIONS(5839), 18, + ACTIONS(5661), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -486048,12 +488935,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5841), 24, + ACTIONS(5663), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -486073,55 +488961,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141630] = 23, + [141507] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(2120), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7839), 1, sym_primitive_type, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5496), 1, + STATE(5214), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -486142,68 +489030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [141722] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(7640), 1, - anon_sym_LBRACK, - ACTIONS(7646), 1, - anon_sym_LPAREN2, - ACTIONS(7726), 1, - sym_auto, - ACTIONS(7728), 1, - anon_sym_decltype, - STATE(2172), 1, - sym_decltype_auto, - STATE(4367), 1, - sym_new_declarator, - STATE(4272), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5349), 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(5351), 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, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [141790] = 3, + [141599] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 19, - aux_sym_preproc_elif_token1, + ACTIONS(7599), 1, + anon_sym___attribute__, + STATE(4649), 1, + sym_attribute_specifier, + ACTIONS(5913), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -486222,62 +489056,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5615), 25, + ACTIONS(5915), 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_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, - [141842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5598), 19, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5600), 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, @@ -486297,79 +489081,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141894] = 23, + [141655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(7740), 1, - sym_identifier, - ACTIONS(7742), 1, - anon_sym_COLON_COLON, - ACTIONS(7746), 1, - sym_primitive_type, - ACTIONS(7748), 1, - anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, - anon_sym_typename, - STATE(2216), 1, - sym_decltype_auto, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(5879), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5883), 1, - sym__type_specifier, - STATE(7025), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(2137), 2, - sym_decltype, - sym_template_type, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7744), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [141986] = 3, + ACTIONS(5673), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5675), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [141707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5594), 19, + ACTIONS(5669), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -486389,7 +489153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5596), 25, + ACTIONS(5671), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -486415,10 +489179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142038] = 3, + [141759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 19, + ACTIONS(5730), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -486438,7 +489202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5588), 25, + ACTIONS(5732), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -486464,27 +489228,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142090] = 11, + [141811] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - ACTIONS(7640), 1, + ACTIONS(7743), 1, anon_sym_LBRACK, - ACTIONS(7646), 1, + ACTIONS(7745), 1, anon_sym_LPAREN2, - ACTIONS(7726), 1, + ACTIONS(7829), 1, sym_auto, - ACTIONS(7728), 1, + ACTIONS(7831), 1, anon_sym_decltype, - STATE(2172), 1, + STATE(2272), 1, sym_decltype_auto, - STATE(4368), 1, + STATE(4348), 1, sym_new_declarator, - STATE(4308), 2, + STATE(4305), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5356), 9, + ACTIONS(5350), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -486494,7 +489258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5358), 26, + ACTIONS(5352), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -486521,11 +489285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142158] = 3, + [141879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 19, - aux_sym_preproc_elif_token1, + ACTIONS(7599), 1, + anon_sym___attribute__, + STATE(4644), 1, + sym_attribute_specifier, + ACTIONS(5909), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -486544,13 +489311,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5584), 25, + ACTIONS(5911), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -486570,10 +489336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142210] = 3, + [141935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 19, + ACTIONS(5614), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -486593,7 +489359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5777), 25, + ACTIONS(5616), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -486619,10 +489385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142262] = 3, + [141987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 19, + ACTIONS(5622), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -486642,7 +489408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5773), 25, + ACTIONS(5624), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -486668,10 +489434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142314] = 3, + [142039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 19, + ACTIONS(5618), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -486691,7 +489457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5769), 25, + ACTIONS(5620), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -486717,10 +489483,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142366] = 3, + [142091] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, + ACTIONS(2088), 1, + anon_sym_class, + ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, + sym_identifier, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(7839), 1, + sym_primitive_type, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(5421), 1, + sym__type_specifier, + STATE(7068), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, + sym_decltype, + sym_template_type, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2080), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2271), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 19, + ACTIONS(5614), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -486740,7 +489575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5765), 25, + ACTIONS(5616), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -486766,10 +489601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142418] = 3, + [142235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 19, + ACTIONS(5799), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -486789,7 +489624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5757), 25, + ACTIONS(5801), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -486815,10 +489650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142470] = 3, + [142287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 19, + ACTIONS(5758), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -486838,7 +489673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5731), 25, + ACTIONS(5760), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -486864,68 +489699,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142522] = 11, + [142339] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7702), 1, anon_sym_LBRACE, - ACTIONS(7640), 1, + ACTIONS(7959), 1, + anon_sym_COLON, + STATE(3693), 1, + sym_attribute_specifier, + STATE(4336), 1, + sym__enum_base_clause, + STATE(4354), 1, + sym_enumerator_list, + ACTIONS(6114), 4, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(7646), 1, + anon_sym___inline, + anon_sym_const, + ACTIONS(6116), 34, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7726), 1, - sym_auto, - ACTIONS(7728), 1, - anon_sym_decltype, - STATE(2172), 1, - sym_decltype_auto, - STATE(4345), 1, - sym_new_declarator, - STATE(4297), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5363), 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(5365), 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, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [142590] = 3, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [142403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 19, - aux_sym_preproc_elif_token1, + ACTIONS(7599), 1, + anon_sym___attribute__, + STATE(4642), 1, + sym_attribute_specifier, + ACTIONS(5835), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -486944,13 +489780,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5709), 25, + ACTIONS(5837), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -486970,10 +489805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142642] = 3, + [142459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 19, + ACTIONS(5772), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -486993,7 +489828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5663), 25, + ACTIONS(5774), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -487019,55 +489854,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142694] = 23, + [142511] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7776), 1, - sym_identifier, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(7782), 1, - sym_primitive_type, - ACTIONS(7784), 1, + ACTIONS(2086), 1, anon_sym_enum, - ACTIONS(7786), 1, + ACTIONS(2088), 1, anon_sym_class, - ACTIONS(7788), 1, + ACTIONS(2090), 1, anon_sym_struct, - ACTIONS(7790), 1, + ACTIONS(2092), 1, anon_sym_union, - ACTIONS(7792), 1, + ACTIONS(2116), 1, sym_auto, - ACTIONS(7794), 1, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(7796), 1, + ACTIONS(2120), 1, anon_sym_typename, - STATE(3383), 1, + ACTIONS(7833), 1, + sym_identifier, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(7839), 1, + sym_primitive_type, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(4667), 1, + STATE(5513), 1, sym__type_specifier, - STATE(4912), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5418), 1, - sym_decltype_auto, - STATE(7045), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7780), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5419), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -487088,10 +489923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [142786] = 3, + [142603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 19, + ACTIONS(5803), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -487111,7 +489946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5693), 25, + ACTIONS(5805), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -487137,10 +489972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142838] = 3, + [142655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 19, + ACTIONS(5418), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -487160,7 +489995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5663), 25, + ACTIONS(5420), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -487186,14 +490021,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142890] = 5, + [142707] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - STATE(4619), 1, - sym_attribute_specifier, - ACTIONS(5817), 18, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(7847), 1, + sym_identifier, + ACTIONS(7849), 1, + anon_sym_COLON_COLON, + ACTIONS(7853), 1, + sym_primitive_type, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2273), 1, + sym_decltype_auto, + STATE(3485), 1, + sym_qualified_type_identifier, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5912), 1, + sym__type_specifier, + STATE(7058), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, + sym_decltype, + sym_template_type, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7851), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2271), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [142799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5776), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487212,12 +490113,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5819), 24, + ACTIONS(5778), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -487237,55 +490139,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142946] = 23, + [142851] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(7925), 1, + sym_identifier, + ACTIONS(7927), 1, + anon_sym_COLON_COLON, + ACTIONS(7931), 1, + sym_primitive_type, + ACTIONS(7933), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(7935), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(7937), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(7939), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(7941), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(7943), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(7945), 1, anon_sym_typename, - ACTIONS(7732), 1, - sym_identifier, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(7738), 1, - sym_primitive_type, - STATE(2200), 1, + STATE(4736), 1, + sym__type_specifier, + STATE(5241), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, + STATE(5702), 1, sym_qualified_type_identifier, - STATE(5348), 1, - sym__type_specifier, - STATE(7043), 1, + STATE(5819), 1, + sym_decltype_auto, + STATE(7050), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, - sym_decltype, - sym_template_type, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + STATE(5655), 2, + sym_decltype, + sym_template_type, + ACTIONS(7929), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(5818), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -487306,27 +490208,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [143038] = 11, + [142943] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(7640), 1, - anon_sym_LBRACK, - ACTIONS(7646), 1, - anon_sym_LPAREN2, - ACTIONS(7726), 1, - sym_auto, - ACTIONS(7728), 1, - anon_sym_decltype, - STATE(2172), 1, - sym_decltype_auto, - STATE(4353), 1, - sym_new_declarator, - STATE(4301), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5320), 9, + ACTIONS(7599), 1, + anon_sym___attribute__, + STATE(4664), 1, + sym_attribute_specifier, + ACTIONS(5875), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487335,10 +490224,23 @@ 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(5322), 26, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5877), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -487349,25 +490251,22 @@ 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_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, - [143106] = 3, + [142999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 19, - aux_sym_preproc_elif_token1, + ACTIONS(7599), 1, + anon_sym___attribute__, + STATE(4640), 1, + sym_attribute_specifier, + ACTIONS(5839), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487386,13 +490285,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5663), 25, + ACTIONS(5841), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -487412,55 +490310,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143158] = 23, + [143055] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(3342), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(3344), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(3346), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(3348), 1, anon_sym_union, - ACTIONS(2088), 1, + ACTIONS(3372), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(3374), 1, anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(3376), 1, anon_sym_typename, - ACTIONS(7732), 1, + ACTIONS(7947), 1, sym_identifier, - ACTIONS(7736), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(7738), 1, + ACTIONS(7951), 1, sym_primitive_type, - STATE(2200), 1, + STATE(2729), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(5403), 1, + STATE(3344), 1, + sym_decltype_auto, + STATE(5423), 1, sym__type_specifier, - STATE(7043), 1, + STATE(7064), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(3223), 2, sym_decltype, sym_template_type, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2074), 4, + ACTIONS(3338), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(3342), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -487481,14 +490379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [143250] = 5, + [143147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - STATE(4613), 1, - sym_attribute_specifier, - ACTIONS(5821), 18, + ACTIONS(5685), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487507,12 +490402,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5823), 24, + ACTIONS(5687), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -487532,148 +490428,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143306] = 23, + [143199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(3340), 1, - anon_sym_enum, - ACTIONS(3342), 1, - anon_sym_class, - ACTIONS(3344), 1, - anon_sym_struct, - ACTIONS(3346), 1, - anon_sym_union, - ACTIONS(3370), 1, - sym_auto, - ACTIONS(3372), 1, - anon_sym_decltype, - ACTIONS(3374), 1, - anon_sym_typename, - ACTIONS(7802), 1, + ACTIONS(7599), 1, + anon_sym___attribute__, + STATE(4665), 1, + sym_attribute_specifier, + ACTIONS(5871), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(7804), 1, - anon_sym_COLON_COLON, - ACTIONS(7806), 1, - sym_primitive_type, - STATE(2706), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3319), 1, - sym_decltype_auto, - STATE(3328), 1, - sym_qualified_type_identifier, - STATE(5375), 1, - sym__type_specifier, - STATE(7029), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3157), 2, - sym_decltype, - sym_template_type, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3336), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3318), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [143398] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, sym_auto, - ACTIONS(119), 1, anon_sym_decltype, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(3930), 1, - sym_identifier, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(3940), 1, - sym_primitive_type, - ACTIONS(3942), 1, - anon_sym_enum, - ACTIONS(3944), 1, - anon_sym_class, - ACTIONS(3946), 1, - anon_sym_struct, - ACTIONS(3948), 1, - anon_sym_union, - ACTIONS(3950), 1, - anon_sym_typename, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(3663), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, - sym_decltype_auto, - STATE(5019), 1, - sym__type_specifier, - STATE(7036), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3357), 2, - sym_decltype, - sym_template_type, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3938), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3557), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [143490] = 3, + ACTIONS(5873), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [143255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 19, + ACTIONS(5677), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -487693,7 +490502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5619), 25, + ACTIONS(5679), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -487719,131 +490528,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143542] = 6, + [143307] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 1, - anon_sym_SEMI, - ACTIONS(5023), 1, - anon_sym_LBRACK, - ACTIONS(5016), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5019), 7, + ACTIONS(6503), 1, + anon_sym___attribute__, + ACTIONS(6610), 1, + anon_sym_LBRACE, + ACTIONS(7957), 1, + anon_sym_COLON, + STATE(3000), 1, + sym__enum_base_clause, + STATE(3148), 1, + sym_enumerator_list, + STATE(3282), 1, + sym_attribute_specifier, + ACTIONS(6114), 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(6116), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - ACTIONS(5012), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [143600] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(7782), 1, - sym_primitive_type, - ACTIONS(7792), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, sym_auto, - ACTIONS(7794), 1, anon_sym_decltype, - ACTIONS(7808), 1, - sym_identifier, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - ACTIONS(7812), 1, - anon_sym_enum, - ACTIONS(7814), 1, - anon_sym_class, - ACTIONS(7816), 1, - anon_sym_struct, - ACTIONS(7818), 1, - anon_sym_union, - ACTIONS(7820), 1, - anon_sym_typename, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(4912), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5329), 1, - sym__type_specifier, - STATE(5418), 1, - sym_decltype_auto, - STATE(7031), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3357), 2, - sym_decltype, - sym_template_type, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7780), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5419), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [143692] = 3, + anon_sym_GT2, + [143371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 19, + ACTIONS(5643), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -487863,7 +490606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5686), 25, + ACTIONS(5645), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -487889,14 +490632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143744] = 5, + [143423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, + ACTIONS(7599), 1, anon_sym___attribute__, - STATE(4609), 1, + STATE(4673), 1, sym_attribute_specifier, - ACTIONS(5861), 18, + ACTIONS(5849), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487915,7 +490658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5863), 24, + ACTIONS(5851), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -487940,10 +490683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143800] = 3, + [143479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 19, + ACTIONS(5651), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -487963,7 +490706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5705), 25, + ACTIONS(5653), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -487989,14 +490732,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143852] = 5, + [143531] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, + ACTIONS(7599), 1, anon_sym___attribute__, - STATE(4610), 1, + STATE(4680), 1, sym_attribute_specifier, - ACTIONS(5857), 18, + ACTIONS(5821), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -488015,7 +490758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5859), 24, + ACTIONS(5823), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -488040,134 +490783,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143908] = 9, + [143587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7619), 1, - anon_sym_LBRACE, - ACTIONS(7856), 1, - anon_sym_COLON, - STATE(3613), 1, - sym_attribute_specifier, - STATE(4310), 1, - sym__enum_base_clause, - STATE(4352), 1, - sym_enumerator_list, - ACTIONS(6055), 4, + ACTIONS(5647), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6057), 34, - anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5649), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [143972] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(3340), 1, - anon_sym_enum, - ACTIONS(3342), 1, - anon_sym_class, - ACTIONS(3344), 1, - anon_sym_struct, - ACTIONS(3346), 1, - anon_sym_union, - ACTIONS(3370), 1, - sym_auto, - ACTIONS(3372), 1, - anon_sym_decltype, - ACTIONS(3374), 1, - anon_sym_typename, - ACTIONS(7802), 1, - sym_identifier, - ACTIONS(7804), 1, - anon_sym_COLON_COLON, - ACTIONS(7806), 1, - sym_primitive_type, - STATE(2706), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3319), 1, - sym_decltype_auto, - STATE(3328), 1, - sym_qualified_type_identifier, - STATE(5251), 1, - sym__type_specifier, - STATE(7029), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3157), 2, - sym_decltype, - sym_template_type, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3336), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3318), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [144064] = 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_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, + [143639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 19, + ACTIONS(5807), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -488187,7 +490855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5697), 25, + ACTIONS(5809), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -488213,10 +490881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144116] = 3, + [143691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 19, + ACTIONS(5643), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -488236,7 +490904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5537), 25, + ACTIONS(5645), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -488262,14 +490930,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144168] = 5, + [143743] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - STATE(4616), 1, - sym_attribute_specifier, - ACTIONS(5849), 18, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(7871), 1, + sym_primitive_type, + ACTIONS(7881), 1, + sym_auto, + ACTIONS(7883), 1, + anon_sym_decltype, + ACTIONS(7901), 1, + sym_identifier, + ACTIONS(7903), 1, + anon_sym_COLON_COLON, + ACTIONS(7905), 1, + anon_sym_enum, + ACTIONS(7907), 1, + anon_sym_class, + ACTIONS(7909), 1, + anon_sym_struct, + ACTIONS(7911), 1, + anon_sym_union, + ACTIONS(7913), 1, + anon_sym_typename, + STATE(3485), 1, + sym_qualified_type_identifier, + STATE(4731), 1, + sym__type_specifier, + STATE(4924), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5507), 1, + sym_decltype_auto, + STATE(7036), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3389), 2, + sym_decltype, + sym_template_type, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7869), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5463), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [143835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5643), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -488288,12 +491022,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5851), 24, + ACTIONS(5645), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -488313,46 +491048,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144224] = 11, + [143887] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(6932), 1, - anon_sym_LBRACE, - STATE(3653), 1, - sym_attribute_specifier, - STATE(4349), 1, - sym_field_declaration_list, - STATE(7356), 1, - sym_virtual_specifier, - STATE(8245), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5286), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(5284), 30, - anon_sym_AMP, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(7865), 1, + sym_identifier, + ACTIONS(7867), 1, + anon_sym_COLON_COLON, + ACTIONS(7871), 1, + sym_primitive_type, + ACTIONS(7873), 1, + anon_sym_enum, + ACTIONS(7875), 1, + anon_sym_class, + ACTIONS(7877), 1, + anon_sym_struct, + ACTIONS(7879), 1, + anon_sym_union, + ACTIONS(7881), 1, + sym_auto, + ACTIONS(7883), 1, + anon_sym_decltype, + ACTIONS(7885), 1, + anon_sym_typename, + STATE(3485), 1, + sym_qualified_type_identifier, + STATE(4924), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5364), 1, + sym__type_specifier, + STATE(5507), 1, + sym_decltype_auto, + STATE(7046), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3389), 2, + sym_decltype, + sym_template_type, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7869), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5463), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, - 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, @@ -488364,49 +491117,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [144292] = 9, + [143979] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7619), 1, - anon_sym_LBRACE, - ACTIONS(7856), 1, - anon_sym_COLON, - STATE(3675), 1, - sym_attribute_specifier, - STATE(4259), 1, - sym__enum_base_clause, - STATE(4337), 1, - sym_enumerator_list, - ACTIONS(6073), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(6075), 34, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, + ACTIONS(2088), 1, + anon_sym_class, + ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, + sym_identifier, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(7839), 1, + sym_primitive_type, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(5381), 1, + sym__type_specifier, + STATE(7068), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, + sym_decltype, + sym_template_type, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2080), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2271), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -488417,22 +491186,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [144071] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, sym_auto, + ACTIONS(119), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_try, - anon_sym_requires, - [144356] = 5, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(3928), 1, + sym_identifier, + ACTIONS(3934), 1, + anon_sym_COLON_COLON, + ACTIONS(3938), 1, + sym_primitive_type, + ACTIONS(3940), 1, + anon_sym_enum, + ACTIONS(3942), 1, + anon_sym_class, + ACTIONS(3944), 1, + anon_sym_struct, + ACTIONS(3946), 1, + anon_sym_union, + ACTIONS(3948), 1, + anon_sym_typename, + STATE(3485), 1, + sym_qualified_type_identifier, + STATE(3620), 1, + sym_decltype_auto, + STATE(3701), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5020), 1, + sym__type_specifier, + STATE(7038), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3389), 2, + sym_decltype, + sym_template_type, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3936), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3623), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [144163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7524), 1, - anon_sym___attribute__, - STATE(4612), 1, - sym_attribute_specifier, - ACTIONS(5853), 18, + ACTIONS(5746), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -488451,12 +491278,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5855), 24, + ACTIONS(5748), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -488476,7 +491304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144412] = 23, + [144215] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, @@ -488485,46 +491313,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3940), 1, + ACTIONS(3938), 1, sym_primitive_type, - ACTIONS(7762), 1, + ACTIONS(7887), 1, sym_identifier, - ACTIONS(7764), 1, + ACTIONS(7889), 1, anon_sym_COLON_COLON, - ACTIONS(7766), 1, + ACTIONS(7891), 1, anon_sym_enum, - ACTIONS(7768), 1, + ACTIONS(7893), 1, anon_sym_class, - ACTIONS(7770), 1, + ACTIONS(7895), 1, anon_sym_struct, - ACTIONS(7772), 1, + ACTIONS(7897), 1, anon_sym_union, - ACTIONS(7774), 1, + ACTIONS(7899), 1, anon_sym_typename, - STATE(3383), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(3663), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, + STATE(3620), 1, sym_decltype_auto, - STATE(4887), 1, + STATE(3701), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4911), 1, sym__type_specifier, - STATE(7018), 1, + STATE(7042), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3938), 4, + ACTIONS(3936), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3557), 7, + STATE(3623), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -488545,11 +491373,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [144504] = 3, + [144307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 19, - aux_sym_preproc_elif_token1, + ACTIONS(7599), 1, + anon_sym___attribute__, + STATE(4668), 1, + sym_attribute_specifier, + ACTIONS(5853), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -488568,13 +491399,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5713), 25, + ACTIONS(5855), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -488594,179 +491424,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144556] = 3, + [144363] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 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, + ACTIONS(7431), 1, anon_sym___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5592), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_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(7702), 1, 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, - [144607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6226), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7959), 1, + anon_sym_COLON, + STATE(3613), 1, + sym_attribute_specifier, + STATE(4300), 1, + sym__enum_base_clause, + STATE(4393), 1, + sym_enumerator_list, + ACTIONS(6108), 4, 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(6228), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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, - [144658] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, + anon_sym___inline, + anon_sym_const, + ACTIONS(6110), 34, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(6391), 1, anon_sym_STAR, - ACTIONS(7858), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7862), 1, anon_sym_AMP_AMP, - ACTIONS(7864), 1, - anon_sym_AMP, - ACTIONS(7866), 1, - anon_sym_EQ, - STATE(4309), 1, - sym_parameter_list, - STATE(6263), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6974), 1, - sym__declarator, - STATE(7207), 1, - sym__abstract_declarator, - STATE(7220), 1, - sym_abstract_reference_declarator, - STATE(7871), 1, - sym_variadic_reference_declarator, - STATE(7873), 1, - sym_variadic_declarator, - STATE(8562), 1, - sym_ms_based_modifier, - ACTIONS(7860), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [144759] = 3, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_try, + anon_sym_requires, + [144427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 19, + ACTIONS(7599), 1, + anon_sym___attribute__, + STATE(4661), 1, + sym_attribute_specifier, + ACTIONS(5864), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -488775,7 +491495,6 @@ 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, @@ -488786,7 +491505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5609), 24, + ACTIONS(5866), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -488811,39 +491530,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144810] = 11, + [144483] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - ACTIONS(6798), 1, + ACTIONS(7743), 1, + anon_sym_LBRACK, + ACTIONS(7745), 1, + anon_sym_LPAREN2, + ACTIONS(7829), 1, sym_auto, - ACTIONS(6800), 1, + ACTIONS(7831), 1, anon_sym_decltype, - ACTIONS(7868), 1, - anon_sym_LPAREN2, - ACTIONS(7870), 1, - anon_sym_LBRACK, - STATE(3308), 1, + STATE(2272), 1, sym_decltype_auto, - STATE(4913), 1, + STATE(4383), 1, sym_new_declarator, - STATE(5286), 2, + STATE(4331), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5363), 11, + ACTIONS(5364), 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(5365), 23, + ACTIONS(5366), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -488853,7 +491570,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_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -488866,11 +491587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [144877] = 3, + [144551] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 19, + ACTIONS(7599), 1, + anon_sym___attribute__, + STATE(4656), 1, + sym_attribute_specifier, + ACTIONS(5883), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -488879,7 +491603,6 @@ 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, @@ -488890,7 +491613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5580), 24, + ACTIONS(5885), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -488915,124 +491638,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144928] = 20, + [144607] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(3342), 1, + anon_sym_enum, + ACTIONS(3344), 1, + anon_sym_class, + ACTIONS(3346), 1, + anon_sym_struct, + ACTIONS(3348), 1, + anon_sym_union, + ACTIONS(3372), 1, + sym_auto, + ACTIONS(3374), 1, anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(3376), 1, + anon_sym_typename, + ACTIONS(7947), 1, sym_identifier, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7260), 1, - anon_sym_STAR, - ACTIONS(7262), 1, - anon_sym_AMP_AMP, - ACTIONS(7264), 1, - anon_sym_AMP, - ACTIONS(7266), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - STATE(6227), 1, + ACTIONS(7951), 1, + sym_primitive_type, + STATE(2729), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3344), 1, + sym_decltype_auto, + STATE(5289), 1, + sym__type_specifier, + STATE(7064), 1, sym__scope_resolution, - STATE(6703), 1, - sym__declarator, - STATE(8480), 1, - sym_ms_based_modifier, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3223), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [145013] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7268), 1, - anon_sym_STAR, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - ACTIONS(7272), 1, - anon_sym_AMP, - STATE(6263), 1, - sym__scope_resolution, - STATE(6840), 1, - sym__declarator, - STATE(8562), 1, - sym_ms_based_modifier, - STATE(5574), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3338), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3342), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -489045,12 +491707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [145098] = 4, + [144699] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5535), 18, + ACTIONS(7599), 1, + anon_sym___attribute__, + STATE(4646), 1, + sym_attribute_specifier, + ACTIONS(5879), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -489069,7 +491733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5537), 24, + ACTIONS(5881), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -489094,59 +491758,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145151] = 20, + [144755] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(7743), 1, + anon_sym_LBRACK, + ACTIONS(7745), 1, + anon_sym_LPAREN2, + ACTIONS(7829), 1, + sym_auto, + ACTIONS(7831), 1, + anon_sym_decltype, + STATE(2272), 1, + sym_decltype_auto, + STATE(4359), 1, + sym_new_declarator, + STATE(4288), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5385), 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(5387), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [144823] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(3020), 1, - anon_sym_STAR, - ACTIONS(3022), 1, - anon_sym_AMP, - ACTIONS(5298), 1, + ACTIONS(3938), 1, + sym_primitive_type, + ACTIONS(7887), 1, sym_identifier, - ACTIONS(6518), 1, + ACTIONS(7889), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6228), 1, + ACTIONS(7891), 1, + anon_sym_enum, + ACTIONS(7893), 1, + anon_sym_class, + ACTIONS(7895), 1, + anon_sym_struct, + ACTIONS(7897), 1, + anon_sym_union, + ACTIONS(7899), 1, + anon_sym_typename, + STATE(3485), 1, + sym_qualified_type_identifier, + STATE(3620), 1, + sym_decltype_auto, + STATE(3701), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4706), 1, + sym__type_specifier, + STATE(7042), 1, sym__scope_resolution, - STATE(6922), 1, - sym__declarator, - STATE(9206), 1, - sym_ms_based_modifier, - STATE(5574), 2, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3389), 2, + sym_decltype, + sym_template_type, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + ACTIONS(3936), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3623), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [144915] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(7871), 1, + sym_primitive_type, + ACTIONS(7881), 1, + sym_auto, + ACTIONS(7883), 1, + anon_sym_decltype, + ACTIONS(7901), 1, + sym_identifier, + ACTIONS(7903), 1, + anon_sym_COLON_COLON, + ACTIONS(7905), 1, + anon_sym_enum, + ACTIONS(7907), 1, + anon_sym_class, + ACTIONS(7909), 1, + anon_sym_struct, + ACTIONS(7911), 1, + anon_sym_union, + ACTIONS(7913), 1, + anon_sym_typename, + STATE(3485), 1, + sym_qualified_type_identifier, + STATE(4801), 1, + sym__type_specifier, + STATE(4924), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5507), 1, + sym_decltype_auto, + STATE(7036), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3389), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7869), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5463), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -489159,47 +491953,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [145236] = 20, + [145007] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(5298), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(7231), 1, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7462), 1, anon_sym_STAR, - ACTIONS(7233), 1, + ACTIONS(7464), 1, anon_sym_AMP_AMP, - ACTIONS(7235), 1, + ACTIONS(7466), 1, anon_sym_AMP, - ACTIONS(7237), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6309), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(7109), 1, + STATE(6894), 1, sym__declarator, - STATE(8622), 1, + STATE(8593), 1, sym_ms_based_modifier, - STATE(5574), 2, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -489211,7 +492005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -489224,119 +492018,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [145321] = 27, + [145092] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7876), 1, + ACTIONS(7965), 1, anon_sym_SLASH, - ACTIONS(7878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7880), 1, - anon_sym_AMP_AMP, - ACTIONS(7884), 1, - anon_sym_CARET, - ACTIONS(7892), 1, + ACTIONS(7973), 1, anon_sym_GT_EQ, - ACTIONS(7896), 1, + ACTIONS(7977), 1, anon_sym_LT_EQ_GT, - ACTIONS(7898), 1, - anon_sym_or, - ACTIONS(7900), 1, - anon_sym_and, - ACTIONS(7902), 1, - anon_sym_xor, - ACTIONS(7904), 1, + ACTIONS(7979), 1, anon_sym_not_eq, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6607), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, + ACTIONS(7961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7874), 2, + ACTIONS(7963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7882), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7886), 2, + ACTIONS(7967), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(7888), 2, + ACTIONS(7969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7894), 2, + ACTIONS(7975), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7890), 3, + ACTIONS(7971), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6609), 7, + ACTIONS(6151), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + sym_identifier, + ACTIONS(6153), 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, - [145420] = 12, + [145177] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7876), 1, + ACTIONS(7965), 1, anon_sym_SLASH, - STATE(2791), 1, + ACTIONS(7973), 1, + anon_sym_GT_EQ, + ACTIONS(7977), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7979), 1, + anon_sym_not_eq, + ACTIONS(7981), 1, + anon_sym_AMP_AMP, + ACTIONS(7985), 1, + anon_sym_CARET, + ACTIONS(7987), 1, + anon_sym_and, + ACTIONS(7989), 1, + anon_sym_xor, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7874), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6170), 15, - aux_sym_preproc_elif_token1, + ACTIONS(7961), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, + ACTIONS(7963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7967), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7975), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6151), 3, + aux_sym_preproc_elif_token1, + anon_sym_or, + sym_identifier, + ACTIONS(7971), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6172), 16, + ACTIONS(6153), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -489344,183 +492152,150 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [145489] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7268), 1, - anon_sym_STAR, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - ACTIONS(7272), 1, - anon_sym_AMP, - STATE(6263), 1, - sym__scope_resolution, - STATE(6805), 1, - sym__declarator, - STATE(8562), 1, - sym_ms_based_modifier, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [145574] = 29, + [145272] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7876), 1, + ACTIONS(7965), 1, anon_sym_SLASH, - ACTIONS(7878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7880), 1, - anon_sym_AMP_AMP, - ACTIONS(7884), 1, - anon_sym_CARET, - ACTIONS(7892), 1, + ACTIONS(7973), 1, anon_sym_GT_EQ, - ACTIONS(7896), 1, + ACTIONS(7977), 1, anon_sym_LT_EQ_GT, - ACTIONS(7898), 1, - anon_sym_or, - ACTIONS(7900), 1, - anon_sym_and, - ACTIONS(7902), 1, - anon_sym_xor, - ACTIONS(7904), 1, + ACTIONS(7979), 1, anon_sym_not_eq, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7908), 1, - anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(7985), 1, + anon_sym_CARET, + ACTIONS(7989), 1, + anon_sym_xor, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6652), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, + ACTIONS(7961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7874), 2, + ACTIONS(7963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7882), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7886), 2, + ACTIONS(7967), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(7888), 2, + ACTIONS(7969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7894), 2, + ACTIONS(7975), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7890), 3, + ACTIONS(7983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7971), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6654), 5, + ACTIONS(6151), 4, + aux_sym_preproc_elif_token1, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(6153), 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, - [145677] = 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + [145363] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7876), 1, + ACTIONS(7965), 1, anon_sym_SLASH, - STATE(2791), 1, + ACTIONS(7973), 1, + anon_sym_GT_EQ, + ACTIONS(7977), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7979), 1, + anon_sym_not_eq, + ACTIONS(7985), 1, + anon_sym_CARET, + ACTIONS(7989), 1, + anon_sym_xor, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, + ACTIONS(7961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7874), 2, + ACTIONS(7963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6170), 13, + ACTIONS(7967), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7975), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7971), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + sym_identifier, + ACTIONS(6153), 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, + [145452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6300), 17, aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -489532,14 +492307,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6172), 16, + ACTIONS(6302), 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, @@ -489548,158 +492327,205 @@ 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_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [145748] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [145503] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7876), 1, + ACTIONS(7965), 1, anon_sym_SLASH, - ACTIONS(7878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7880), 1, - anon_sym_AMP_AMP, - ACTIONS(7884), 1, - anon_sym_CARET, - ACTIONS(7892), 1, + ACTIONS(7973), 1, anon_sym_GT_EQ, - ACTIONS(7896), 1, + ACTIONS(7977), 1, anon_sym_LT_EQ_GT, - ACTIONS(7898), 1, - anon_sym_or, - ACTIONS(7900), 1, - anon_sym_and, - ACTIONS(7902), 1, - anon_sym_xor, - ACTIONS(7904), 1, + ACTIONS(7979), 1, anon_sym_not_eq, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6646), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, + ACTIONS(7961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7874), 2, + ACTIONS(7963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7882), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7886), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7888), 2, + ACTIONS(7969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7894), 2, + ACTIONS(7975), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7890), 3, + ACTIONS(7971), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6648), 7, + ACTIONS(6151), 9, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + sym_identifier, + ACTIONS(6153), 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, - [145847] = 29, + [145586] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7876), 1, + ACTIONS(7965), 1, anon_sym_SLASH, - ACTIONS(7878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7880), 1, - anon_sym_AMP_AMP, - ACTIONS(7884), 1, - anon_sym_CARET, - ACTIONS(7892), 1, + ACTIONS(7973), 1, anon_sym_GT_EQ, - ACTIONS(7896), 1, + ACTIONS(7977), 1, anon_sym_LT_EQ_GT, - ACTIONS(7898), 1, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7975), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7971), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 10, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_or, - ACTIONS(7900), 1, anon_sym_and, - ACTIONS(7902), 1, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7904), 1, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(7906), 1, + sym_identifier, + ACTIONS(6153), 12, anon_sym_DOT_DOT_DOT, - ACTIONS(7908), 1, + anon_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, - STATE(2791), 1, + [145665] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7965), 1, + anon_sym_SLASH, + ACTIONS(7977), 1, + anon_sym_LT_EQ_GT, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6307), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, + ACTIONS(7961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7874), 2, + ACTIONS(7963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7882), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7886), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7888), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7894), 2, + ACTIONS(7975), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7890), 3, + ACTIONS(6151), 13, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6309), 5, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6153), 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, - [145950] = 3, + anon_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, + [145740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 18, + ACTIONS(5754), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -489708,6 +492534,7 @@ 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, @@ -489718,7 +492545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5398), 25, + ACTIONS(5756), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -489735,7 +492562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -489744,316 +492570,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [146001] = 29, + [145791] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7876), 1, + ACTIONS(7965), 1, anon_sym_SLASH, - ACTIONS(7878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7880), 1, - anon_sym_AMP_AMP, - ACTIONS(7884), 1, - anon_sym_CARET, - ACTIONS(7892), 1, + ACTIONS(7973), 1, anon_sym_GT_EQ, - ACTIONS(7896), 1, + ACTIONS(7977), 1, anon_sym_LT_EQ_GT, - ACTIONS(7898), 1, - anon_sym_or, - ACTIONS(7900), 1, + ACTIONS(7979), 1, + anon_sym_not_eq, + ACTIONS(7981), 1, + anon_sym_AMP_AMP, + ACTIONS(7985), 1, + anon_sym_CARET, + ACTIONS(7987), 1, anon_sym_and, - ACTIONS(7902), 1, + ACTIONS(7989), 1, anon_sym_xor, - ACTIONS(7904), 1, - anon_sym_not_eq, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7908), 1, - anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(7991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7993), 1, + anon_sym_or, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(6673), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, + ACTIONS(7961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7874), 2, + ACTIONS(7963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7882), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7886), 2, + ACTIONS(7967), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(7888), 2, + ACTIONS(7969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7894), 2, + ACTIONS(7975), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7910), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(7890), 3, + ACTIONS(7983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7971), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7912), 5, + ACTIONS(6675), 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, - [146104] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(6798), 1, - sym_auto, - ACTIONS(6800), 1, - anon_sym_decltype, - ACTIONS(7868), 1, - anon_sym_LPAREN2, - ACTIONS(7870), 1, - anon_sym_LBRACK, - STATE(3308), 1, - sym_decltype_auto, - STATE(4810), 1, - sym_new_declarator, - STATE(5300), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5356), 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(5358), 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, - [146171] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(6798), 1, - sym_auto, - ACTIONS(6800), 1, - anon_sym_decltype, - ACTIONS(7868), 1, - anon_sym_LPAREN2, - ACTIONS(7870), 1, - anon_sym_LBRACK, - STATE(3308), 1, - sym_decltype_auto, - STATE(4886), 1, - sym_new_declarator, - STATE(5274), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5320), 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(5322), 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, - [146238] = 20, + [145890] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7260), 1, - anon_sym_STAR, - ACTIONS(7262), 1, - anon_sym_AMP_AMP, - ACTIONS(7264), 1, - anon_sym_AMP, - ACTIONS(7266), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - STATE(6227), 1, - sym__scope_resolution, - STATE(6694), 1, - sym__declarator, - STATE(8480), 1, - sym_ms_based_modifier, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [146323] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, - anon_sym_LPAREN2, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6081), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(6083), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(6085), 1, + ACTIONS(7417), 1, anon_sym_AMP, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(7858), 1, - anon_sym_DOT_DOT_DOT, - STATE(3802), 1, - sym_parameter_list, - STATE(6263), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6844), 1, - sym__declarator, - STATE(6955), 1, - sym__abstract_declarator, - STATE(7763), 1, - sym_variadic_declarator, - STATE(8562), 1, + STATE(6348), 1, + sym__scope_resolution, + STATE(6655), 1, + sym__declarator, + STATE(8879), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(7914), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -490065,47 +492694,111 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [146418] = 20, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145975] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(7823), 1, + sym_auto, + ACTIONS(7825), 1, + anon_sym_decltype, + STATE(4671), 1, + sym_decltype_auto, + ACTIONS(5548), 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_identifier, + ACTIONS(5550), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_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, + [146032] = 20, + ACTIONS(3), 1, + sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(3020), 1, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(7403), 1, anon_sym_STAR, - ACTIONS(3022), 1, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7407), 1, anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6518), 1, + ACTIONS(7409), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - STATE(6228), 1, + STATE(6359), 1, sym__scope_resolution, - STATE(6947), 1, + STATE(7103), 1, sym__declarator, - STATE(9206), 1, + STATE(8653), 1, sym_ms_based_modifier, - STATE(5574), 2, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -490117,7 +492810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -490130,47 +492823,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [146503] = 20, + [146117] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5418), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5420), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [146170] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(5298), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7475), 1, sym_identifier, - ACTIONS(7231), 1, + ACTIONS(7477), 1, anon_sym_STAR, - ACTIONS(7233), 1, + ACTIONS(7479), 1, anon_sym_AMP_AMP, - ACTIONS(7235), 1, + ACTIONS(7481), 1, anon_sym_AMP, - ACTIONS(7237), 1, + ACTIONS(7483), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6309), 1, + STATE(6332), 1, sym__scope_resolution, - STATE(7054), 1, + STATE(6920), 1, sym__declarator, - STATE(8622), 1, + STATE(8520), 1, sym_ms_based_modifier, - STATE(5574), 2, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -490182,7 +492924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -490195,72 +492937,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [146588] = 16, + [146255] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym___inline, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7918), 1, - anon_sym___declspec, - ACTIONS(7920), 1, + ACTIONS(3886), 1, + anon_sym_LBRACE, + ACTIONS(6925), 1, sym_auto, - ACTIONS(7922), 1, + ACTIONS(6927), 1, anon_sym_decltype, - ACTIONS(7924), 1, - anon_sym_virtual, - ACTIONS(7926), 1, - anon_sym_alignas, - STATE(3589), 1, + ACTIONS(7995), 1, + anon_sym_LPAREN2, + ACTIONS(7997), 1, + anon_sym_LBRACK, + STATE(3356), 1, sym_decltype_auto, - ACTIONS(6762), 2, + STATE(4838), 1, + sym_new_declarator, + STATE(5333), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5350), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(6764), 3, - anon_sym_LPAREN2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5352), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7916), 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, - STATE(4717), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [146665] = 3, + 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, + [146322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5601), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -490269,6 +493005,7 @@ 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, @@ -490277,13 +493014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6250), 26, + sym_auto, + anon_sym_decltype, + ACTIONS(5603), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -490295,47 +493033,42 @@ 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_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, - [146716] = 14, + [146373] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7876), 1, + ACTIONS(7965), 1, anon_sym_SLASH, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7874), 2, + ACTIONS(7963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7894), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6170), 13, + ACTIONS(6151), 15, aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -490348,7 +493081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6172), 14, + ACTIONS(6153), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -490361,49 +493094,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [146789] = 20, + [146442] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(5298), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(7231), 1, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7462), 1, anon_sym_STAR, - ACTIONS(7233), 1, + ACTIONS(7464), 1, anon_sym_AMP_AMP, - ACTIONS(7235), 1, + ACTIONS(7466), 1, anon_sym_AMP, - ACTIONS(7237), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6309), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(7075), 1, + STATE(6893), 1, sym__declarator, - STATE(8622), 1, + STATE(8593), 1, sym_ms_based_modifier, - STATE(5574), 2, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -490415,7 +493150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -490428,89 +493163,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [146874] = 28, + [146527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(5762), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, + ACTIONS(5764), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(6397), 1, anon_sym_STAR, - ACTIONS(7858), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7862), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7864), 1, - anon_sym_AMP, - ACTIONS(7928), 1, - anon_sym_EQ, - STATE(4159), 1, - sym_parameter_list, - STATE(6263), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6995), 1, - sym__declarator, - STATE(7210), 1, - sym__abstract_declarator, - STATE(7226), 1, - sym_abstract_reference_declarator, - STATE(7871), 1, - sym_variadic_reference_declarator, - STATE(7873), 1, - sym_variadic_declarator, - STATE(8562), 1, - sym_ms_based_modifier, - ACTIONS(7860), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [146975] = 6, + anon_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, + [146578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7720), 1, - sym_auto, - ACTIONS(7722), 1, - anon_sym_decltype, - STATE(4635), 1, - sym_decltype_auto, - ACTIONS(5436), 16, + ACTIONS(5544), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -490527,7 +493231,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5438), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(5546), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -490544,6 +493250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -490552,47 +493259,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147032] = 20, + [146629] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7965), 1, + anon_sym_SLASH, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6151), 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(6153), 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, + [146700] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7965), 1, + anon_sym_SLASH, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7975), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6151), 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(6153), 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, + [146773] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym___inline, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8001), 1, + anon_sym___declspec, + ACTIONS(8003), 1, + sym_auto, + ACTIONS(8005), 1, + anon_sym_decltype, + ACTIONS(8007), 1, + anon_sym_virtual, + ACTIONS(8009), 1, + anon_sym_alignas, + STATE(3682), 1, + sym_decltype_auto, + ACTIONS(6919), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(6921), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7999), 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, + STATE(4738), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [146850] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7479), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7481), 1, anon_sym_AMP, - STATE(6263), 1, + ACTIONS(7483), 1, + anon_sym_COLON_COLON, + STATE(6332), 1, sym__scope_resolution, - STATE(6683), 1, + STATE(6919), 1, sym__declarator, - STATE(9289), 1, + STATE(8520), 1, sym_ms_based_modifier, - STATE(5574), 2, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -490604,7 +493489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -490617,47 +493502,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [147117] = 20, + [146935] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(6106), 1, anon_sym_LBRACK, - ACTIONS(7268), 1, + ACTIONS(6367), 1, anon_sym_STAR, - ACTIONS(7270), 1, + ACTIONS(8011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8015), 1, anon_sym_AMP_AMP, - ACTIONS(7272), 1, + ACTIONS(8017), 1, anon_sym_AMP, - STATE(6263), 1, + ACTIONS(8019), 1, + anon_sym_EQ, + STATE(4175), 1, + sym_parameter_list, + STATE(6348), 1, sym__scope_resolution, - STATE(6807), 1, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7016), 1, sym__declarator, - STATE(8562), 1, + STATE(7218), 1, + sym__abstract_declarator, + STATE(7280), 1, + sym_abstract_reference_declarator, + STATE(8032), 1, + sym_variadic_reference_declarator, + STATE(8040), 1, + sym_variadic_declarator, + STATE(8593), 1, sym_ms_based_modifier, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -490669,24 +493575,156 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [147202] = 3, + [147036] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7965), 1, + anon_sym_SLASH, + ACTIONS(7973), 1, + anon_sym_GT_EQ, + ACTIONS(7977), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7979), 1, + anon_sym_not_eq, + ACTIONS(7981), 1, + anon_sym_AMP_AMP, + ACTIONS(7985), 1, + anon_sym_CARET, + ACTIONS(7987), 1, + anon_sym_and, + ACTIONS(7989), 1, + anon_sym_xor, + ACTIONS(7991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7993), 1, + anon_sym_or, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8027), 1, + anon_sym_QMARK, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7967), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7975), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8021), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(7971), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(8025), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [147139] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6387), 17, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7965), 1, + anon_sym_SLASH, + ACTIONS(7973), 1, + anon_sym_GT_EQ, + ACTIONS(7977), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7979), 1, + anon_sym_not_eq, + ACTIONS(7981), 1, + anon_sym_AMP_AMP, + ACTIONS(7985), 1, + anon_sym_CARET, + ACTIONS(7987), 1, + anon_sym_and, + ACTIONS(7989), 1, + anon_sym_xor, + ACTIONS(7991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7993), 1, + anon_sym_or, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6660), 2, aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7967), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7969), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7975), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7971), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6662), 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, + [147238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5795), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -490695,6 +493733,7 @@ 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, @@ -490703,13 +493742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6389), 26, + sym_auto, + anon_sym_decltype, + ACTIONS(5797), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -490721,56 +493761,111 @@ 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_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, - [147253] = 20, + [147289] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3886), 1, + anon_sym_LBRACE, + ACTIONS(6925), 1, + sym_auto, + ACTIONS(6927), 1, + anon_sym_decltype, + ACTIONS(7995), 1, + anon_sym_LPAREN2, + ACTIONS(7997), 1, + anon_sym_LBRACK, + STATE(3356), 1, + sym_decltype_auto, + STATE(4800), 1, + sym_new_declarator, + STATE(5294), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5381), 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(5383), 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, + [147356] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, + ACTIONS(3044), 1, anon_sym_STAR, - ACTIONS(7357), 1, - anon_sym_AMP_AMP, - ACTIONS(7359), 1, + ACTIONS(3046), 1, anon_sym_AMP, - ACTIONS(7361), 1, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6526), 1, anon_sym_COLON_COLON, - STATE(6317), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(6297), 1, sym__scope_resolution, - STATE(6926), 1, + STATE(6920), 1, sym__declarator, - STATE(8492), 1, + STATE(9234), 1, sym_ms_based_modifier, - STATE(5574), 2, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -490782,7 +493877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -490795,40 +493890,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [147338] = 15, + [147441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7876), 1, - anon_sym_SLASH, - ACTIONS(7896), 1, - anon_sym_LT_EQ_GT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, + ACTIONS(6481), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7874), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7894), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6170), 13, - aux_sym_preproc_elif_token1, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -490840,25 +493909,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6172), 13, + ACTIONS(6483), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - [147413] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [147492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6313), 17, + ACTIONS(6324), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -490876,7 +493959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6315), 26, + ACTIONS(6326), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -490903,47 +493986,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147464] = 20, + [147543] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(5330), 1, sym_identifier, - ACTIONS(7239), 1, + ACTIONS(7403), 1, + anon_sym_STAR, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7407), 1, + anon_sym_AMP, + ACTIONS(7409), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(6359), 1, + sym__scope_resolution, + STATE(7119), 1, + sym__declarator, + STATE(8653), 1, + sym_ms_based_modifier, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147628] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7260), 1, + ACTIONS(7447), 1, anon_sym_STAR, - ACTIONS(7262), 1, + ACTIONS(7449), 1, anon_sym_AMP_AMP, - ACTIONS(7264), 1, + ACTIONS(7451), 1, anon_sym_AMP, - ACTIONS(7266), 1, + ACTIONS(7453), 1, anon_sym_COLON_COLON, - STATE(6227), 1, + STATE(6354), 1, sym__scope_resolution, - STATE(6594), 1, + STATE(6691), 1, sym__declarator, - STATE(8480), 1, + STATE(8511), 1, sym_ms_based_modifier, - STATE(5574), 2, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -490955,7 +494103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -490968,119 +494116,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [147549] = 27, + [147713] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4405), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(6106), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7876), 1, - anon_sym_SLASH, - ACTIONS(7878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7880), 1, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(8011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8015), 1, anon_sym_AMP_AMP, - ACTIONS(7884), 1, - anon_sym_CARET, - ACTIONS(7892), 1, - anon_sym_GT_EQ, - ACTIONS(7896), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7898), 1, - anon_sym_or, - ACTIONS(7900), 1, - anon_sym_and, - ACTIONS(7902), 1, - anon_sym_xor, - ACTIONS(7904), 1, - anon_sym_not_eq, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6640), 2, + ACTIONS(8017), 1, + anon_sym_AMP, + ACTIONS(8029), 1, + anon_sym_EQ, + STATE(4295), 1, + sym_parameter_list, + STATE(6348), 1, + sym__scope_resolution, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7019), 1, + sym__declarator, + STATE(7214), 1, + sym__abstract_declarator, + STATE(7282), 1, + sym_abstract_reference_declarator, + STATE(8032), 1, + sym_variadic_reference_declarator, + STATE(8040), 1, + sym_variadic_declarator, + STATE(8593), 1, + sym_ms_based_modifier, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [147814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6411), 17, aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7874), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7882), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7886), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7888), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7894), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7890), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6642), 7, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6413), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - [147648] = 20, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [147865] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(3020), 1, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(7403), 1, anon_sym_STAR, - ACTIONS(3022), 1, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7407), 1, anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6518), 1, + ACTIONS(7409), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - STATE(6228), 1, + STATE(6359), 1, sym__scope_resolution, - STATE(6926), 1, + STATE(7098), 1, sym__declarator, - STATE(9206), 1, + STATE(8653), 1, sym_ms_based_modifier, - STATE(5574), 2, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -491092,7 +494289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -491105,47 +494302,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [147733] = 20, + [147950] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, + ACTIONS(3044), 1, anon_sym_STAR, - ACTIONS(7357), 1, - anon_sym_AMP_AMP, - ACTIONS(7359), 1, + ACTIONS(3046), 1, anon_sym_AMP, - ACTIONS(7361), 1, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6526), 1, anon_sym_COLON_COLON, - STATE(6317), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(6297), 1, sym__scope_resolution, - STATE(6922), 1, + STATE(6956), 1, sym__declarator, - STATE(8492), 1, + STATE(9234), 1, sym_ms_based_modifier, - STATE(5574), 2, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -491157,7 +494354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -491170,427 +494367,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [147818] = 17, + [148035] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7876), 1, + ACTIONS(7965), 1, anon_sym_SLASH, - ACTIONS(7892), 1, + ACTIONS(7973), 1, anon_sym_GT_EQ, - ACTIONS(7896), 1, + ACTIONS(7977), 1, anon_sym_LT_EQ_GT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7874), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7894), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7890), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 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, + ACTIONS(7979), 1, anon_sym_not_eq, - sym_identifier, - ACTIONS(6172), 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, + ACTIONS(7981), 1, anon_sym_AMP_AMP, + ACTIONS(7985), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - [147897] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7876), 1, - anon_sym_SLASH, - ACTIONS(7892), 1, - anon_sym_GT_EQ, - ACTIONS(7896), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7904), 1, - anon_sym_not_eq, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7874), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7888), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7894), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7890), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 9, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, + ACTIONS(7987), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(7989), 1, anon_sym_xor, - anon_sym_bitand, - sym_identifier, - ACTIONS(6172), 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, + ACTIONS(7991), 1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(7993), 1, + anon_sym_or, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8027), 1, anon_sym_QMARK, - [147980] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7876), 1, - anon_sym_SLASH, - ACTIONS(7892), 1, - anon_sym_GT_EQ, - ACTIONS(7896), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7904), 1, - anon_sym_not_eq, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(6469), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, + ACTIONS(7961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7874), 2, + ACTIONS(7963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7886), 2, + ACTIONS(7967), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(7888), 2, + ACTIONS(7969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7894), 2, + ACTIONS(7975), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7890), 3, + ACTIONS(7983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7971), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 7, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - sym_identifier, - ACTIONS(6172), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(6471), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - [148065] = 22, + [148138] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7876), 1, + ACTIONS(7965), 1, anon_sym_SLASH, - ACTIONS(7884), 1, - anon_sym_CARET, - ACTIONS(7892), 1, + ACTIONS(7973), 1, anon_sym_GT_EQ, - ACTIONS(7896), 1, + ACTIONS(7977), 1, anon_sym_LT_EQ_GT, - ACTIONS(7902), 1, + ACTIONS(7979), 1, + anon_sym_not_eq, + ACTIONS(7981), 1, + anon_sym_AMP_AMP, + ACTIONS(7985), 1, + anon_sym_CARET, + ACTIONS(7987), 1, + anon_sym_and, + ACTIONS(7989), 1, anon_sym_xor, - ACTIONS(7904), 1, - anon_sym_not_eq, - STATE(2791), 1, + ACTIONS(7991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7993), 1, + anon_sym_or, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8027), 1, + anon_sym_QMARK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(6677), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, + ACTIONS(7961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7874), 2, + ACTIONS(7963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7886), 2, + ACTIONS(7967), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(7888), 2, + ACTIONS(7969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7894), 2, + ACTIONS(7975), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7890), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 6, - aux_sym_preproc_elif_token1, + ACTIONS(7983), 2, anon_sym_PIPE, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - sym_identifier, - ACTIONS(6172), 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, - [148154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7971), 3, 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5717), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(6679), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [148205] = 29, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [148241] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7876), 1, + ACTIONS(7965), 1, anon_sym_SLASH, - ACTIONS(7878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7880), 1, - anon_sym_AMP_AMP, - ACTIONS(7884), 1, - anon_sym_CARET, - ACTIONS(7892), 1, + ACTIONS(7973), 1, anon_sym_GT_EQ, - ACTIONS(7896), 1, + ACTIONS(7977), 1, anon_sym_LT_EQ_GT, - ACTIONS(7898), 1, - anon_sym_or, - ACTIONS(7900), 1, + ACTIONS(7979), 1, + anon_sym_not_eq, + ACTIONS(7981), 1, + anon_sym_AMP_AMP, + ACTIONS(7985), 1, + anon_sym_CARET, + ACTIONS(7987), 1, anon_sym_and, - ACTIONS(7902), 1, + ACTIONS(7989), 1, anon_sym_xor, - ACTIONS(7904), 1, - anon_sym_not_eq, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7908), 1, - anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(7991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7993), 1, + anon_sym_or, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6630), 2, + ACTIONS(6652), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, + ACTIONS(7961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7874), 2, + ACTIONS(7963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7882), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7886), 2, + ACTIONS(7967), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(7888), 2, + ACTIONS(7969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7894), 2, + ACTIONS(7975), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7890), 3, + ACTIONS(7983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7971), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6634), 5, + ACTIONS(6654), 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, - [148308] = 20, + anon_sym_QMARK, + [148340] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7462), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7464), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7466), 1, anon_sym_AMP, - STATE(6263), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(6626), 1, + STATE(6870), 1, sym__declarator, - STATE(9289), 1, + STATE(8593), 1, sym_ms_based_modifier, - STATE(5574), 2, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -491602,7 +494639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -491615,47 +494652,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [148393] = 20, + [148425] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(7355), 1, + ACTIONS(6098), 1, anon_sym_STAR, - ACTIONS(7357), 1, + ACTIONS(6100), 1, anon_sym_AMP_AMP, - ACTIONS(7359), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(7361), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - STATE(6317), 1, + ACTIONS(6106), 1, + anon_sym_LBRACK, + ACTIONS(8011), 1, + anon_sym_DOT_DOT_DOT, + STATE(3782), 1, + sym_parameter_list, + STATE(6348), 1, sym__scope_resolution, - STATE(6947), 1, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6903), 1, sym__declarator, - STATE(8492), 1, + STATE(6913), 1, + sym__abstract_declarator, + STATE(7876), 1, + sym_variadic_declarator, + STATE(8593), 1, sym_ms_based_modifier, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + ACTIONS(8031), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -491667,23 +494722,10 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [148478] = 3, + [148520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 19, + ACTIONS(5711), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491703,7 +494745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5781), 24, + ACTIONS(5713), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -491728,57 +494770,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [148529] = 16, + [148571] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym___inline, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7918), 1, - anon_sym___declspec, - ACTIONS(7920), 1, - sym_auto, - ACTIONS(7922), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7924), 1, - anon_sym_virtual, - ACTIONS(7926), 1, - anon_sym_alignas, - STATE(3589), 1, - sym_decltype_auto, - ACTIONS(6802), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(6804), 3, + ACTIONS(3040), 1, anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7447), 1, anon_sym_STAR, + ACTIONS(7449), 1, anon_sym_AMP_AMP, - ACTIONS(7916), 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, - STATE(4704), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(7451), 1, + anon_sym_AMP, + ACTIONS(7453), 1, + anon_sym_COLON_COLON, + STATE(6354), 1, + sym__scope_resolution, + STATE(6639), 1, + sym__declarator, + STATE(8511), 1, + sym_ms_based_modifier, + STATE(5580), 2, sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7325), 11, + aux_sym__type_definition_type_repeat1, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -491789,115 +494835,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [148606] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7876), 1, - anon_sym_SLASH, - ACTIONS(7884), 1, - anon_sym_CARET, - ACTIONS(7892), 1, - anon_sym_GT_EQ, - ACTIONS(7896), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7902), 1, - anon_sym_xor, - ACTIONS(7904), 1, - anon_sym_not_eq, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7874), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7882), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7886), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7888), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7894), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7890), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 4, - aux_sym_preproc_elif_token1, - anon_sym_or, - anon_sym_and, - sym_identifier, - ACTIONS(6172), 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, - [148697] = 20, + [148656] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7417), 1, anon_sym_AMP, - STATE(6263), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(6644), 1, + STATE(6615), 1, sym__declarator, - STATE(9289), 1, + STATE(8879), 1, sym_ms_based_modifier, - STATE(5574), 2, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -491909,7 +494887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -491922,27 +494900,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [148782] = 11, + [148741] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 1, + ACTIONS(3886), 1, anon_sym_LBRACE, - ACTIONS(6798), 1, + ACTIONS(6925), 1, sym_auto, - ACTIONS(6800), 1, + ACTIONS(6927), 1, anon_sym_decltype, - ACTIONS(7868), 1, + ACTIONS(7995), 1, anon_sym_LPAREN2, - ACTIONS(7870), 1, + ACTIONS(7997), 1, anon_sym_LBRACK, - STATE(3308), 1, + STATE(3356), 1, sym_decltype_auto, - STATE(4855), 1, + STATE(4860), 1, sym_new_declarator, - STATE(5293), 2, + STATE(5326), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5349), 11, + ACTIONS(5364), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491954,7 +494932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5351), 23, + ACTIONS(5366), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -491978,189 +494956,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [148849] = 3, + [148808] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5759), 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_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(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5761), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(3040), 1, anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(3044), 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_LBRACE, + ACTIONS(3046), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 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, - [148900] = 25, + STATE(6297), 1, + sym__scope_resolution, + STATE(6919), 1, + sym__declarator, + STATE(9234), 1, + sym_ms_based_modifier, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [148893] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7876), 1, + ACTIONS(7965), 1, anon_sym_SLASH, - ACTIONS(7880), 1, - anon_sym_AMP_AMP, - ACTIONS(7884), 1, - anon_sym_CARET, - ACTIONS(7892), 1, + ACTIONS(7973), 1, anon_sym_GT_EQ, - ACTIONS(7896), 1, + ACTIONS(7977), 1, anon_sym_LT_EQ_GT, - ACTIONS(7900), 1, - anon_sym_and, - ACTIONS(7902), 1, - anon_sym_xor, - ACTIONS(7904), 1, + ACTIONS(7979), 1, anon_sym_not_eq, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7874), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7882), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7886), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7888), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7894), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6170), 3, - aux_sym_preproc_elif_token1, - anon_sym_or, - sym_identifier, - ACTIONS(7890), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 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, - [148995] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7876), 1, - anon_sym_SLASH, - ACTIONS(7878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7880), 1, + ACTIONS(7981), 1, anon_sym_AMP_AMP, - ACTIONS(7884), 1, + ACTIONS(7985), 1, anon_sym_CARET, - ACTIONS(7892), 1, - anon_sym_GT_EQ, - ACTIONS(7896), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7898), 1, - anon_sym_or, - ACTIONS(7900), 1, + ACTIONS(7987), 1, anon_sym_and, - ACTIONS(7902), 1, + ACTIONS(7989), 1, anon_sym_xor, - ACTIONS(7904), 1, - anon_sym_not_eq, - STATE(2791), 1, + ACTIONS(7991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7993), 1, + anon_sym_or, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6626), 2, + ACTIONS(6681), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7872), 2, + ACTIONS(7961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7874), 2, + ACTIONS(7963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7882), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7886), 2, + ACTIONS(7967), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(7888), 2, + ACTIONS(7969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7894), 2, + ACTIONS(7975), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7890), 3, + ACTIONS(7983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(7971), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6628), 7, + ACTIONS(6683), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -492168,370 +495093,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_QMARK, - [149094] = 6, + [148992] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3886), 1, anon_sym_LBRACE, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(4303), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5997), 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(5999), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [149150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5741), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + ACTIONS(6925), 1, sym_auto, + ACTIONS(6927), 1, anon_sym_decltype, - ACTIONS(5743), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(7995), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + ACTIONS(7997), 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, - [149200] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3716), 1, - anon_sym_LBRACE, - ACTIONS(7716), 1, - anon_sym_LPAREN2, - STATE(4832), 2, + STATE(3356), 1, + sym_decltype_auto, + STATE(4912), 1, + sym_new_declarator, + STATE(5283), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5950), 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_identifier, - ACTIONS(5952), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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, - [149256] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5723), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5725), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [149306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5751), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5753), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [149356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5755), 18, + ACTIONS(5385), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5757), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [149406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5763), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5765), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [149456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5684), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5686), 24, + ACTIONS(5387), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -492539,68 +495135,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - [149506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5767), 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_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5769), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [149556] = 3, + anon_sym_GT2, + [149059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 18, + ACTIONS(5665), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -492609,6 +495161,7 @@ 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, @@ -492619,7 +495172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5739), 24, + ACTIONS(5667), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -492644,371 +495197,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149606] = 3, + [149110] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 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_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(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5721), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [149656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5771), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5773), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + ACTIONS(7411), 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, - [149706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5775), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5777), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(7447), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7449), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [149756] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5703), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7451), 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, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5705), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [149806] = 3, + ACTIONS(7453), 1, + anon_sym_COLON_COLON, + STATE(6354), 1, + sym__scope_resolution, + STATE(6666), 1, + sym__declarator, + STATE(8511), 1, + sym_ms_based_modifier, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [149195] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5663), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + ACTIONS(6135), 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, - [149856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5699), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7965), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, + ACTIONS(7973), 1, + anon_sym_GT_EQ, + ACTIONS(7977), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7979), 1, + anon_sym_not_eq, + ACTIONS(7981), 1, + anon_sym_AMP_AMP, + ACTIONS(7985), 1, + anon_sym_CARET, + ACTIONS(7987), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(7989), 1, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5701), 24, + ACTIONS(7991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7993), 1, + anon_sym_or, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(8027), 1, + anon_sym_QMARK, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6614), 2, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + sym_identifier, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7963), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(7967), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(7969), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(7975), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [149906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5691), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(7983), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_bitor, + ACTIONS(7971), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5693), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(6618), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [149956] = 9, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [149298] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4970), 1, - anon_sym_SEMI, - ACTIONS(4979), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym___inline, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8001), 1, + anon_sym___declspec, + ACTIONS(8003), 1, + sym_auto, + ACTIONS(8005), 1, + anon_sym_decltype, + ACTIONS(8007), 1, + anon_sym_virtual, + ACTIONS(8009), 1, + anon_sym_alignas, + STATE(3682), 1, + sym_decltype_auto, + ACTIONS(6903), 2, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(4530), 1, - sym_template_argument_list, - ACTIONS(4972), 2, + ACTIONS(6905), 3, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4975), 3, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(4968), 32, - anon_sym_AMP, - anon_sym___extension__, + ACTIONS(7999), 8, anon_sym_extern, - 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, + STATE(4748), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7429), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -493019,24 +495397,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, + [149375] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, anon_sym_template, + ACTIONS(2122), 1, anon_sym_operator, - [150018] = 6, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, + anon_sym_STAR, + ACTIONS(7415), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_AMP, + STATE(6348), 1, + sym__scope_resolution, + STATE(6700), 1, + sym__declarator, + STATE(8879), 1, + sym_ms_based_modifier, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [149460] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, - anon_sym_LBRACE, - ACTIONS(7716), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, anon_sym_LPAREN2, - STATE(4841), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 16, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, + anon_sym_STAR, + ACTIONS(7479), 1, + anon_sym_AMP_AMP, + ACTIONS(7481), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_COLON_COLON, + STATE(6332), 1, + sym__scope_resolution, + STATE(6956), 1, + sym__declarator, + STATE(8520), 1, + sym_ms_based_modifier, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [149545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5418), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493053,12 +495547,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6003), 22, + sym_auto, + anon_sym_decltype, + ACTIONS(5420), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -493069,6 +495566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -493076,10 +495574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150074] = 3, + [149595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 18, + ACTIONS(5643), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493098,7 +495596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5663), 24, + ACTIONS(5645), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493123,10 +495621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150124] = 3, + [149645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 18, + ACTIONS(5669), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493145,7 +495643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5663), 24, + ACTIONS(5671), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493170,10 +495668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150174] = 3, + [149695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 18, + ACTIONS(5673), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493192,7 +495690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5537), 24, + ACTIONS(5675), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493217,58 +495715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150224] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7930), 1, - anon_sym_typedef, - ACTIONS(3474), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3472), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [150276] = 3, + [149745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 18, + ACTIONS(5698), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493287,7 +495737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5731), 24, + ACTIONS(5700), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493312,17 +495762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150326] = 6, + [149795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, - anon_sym_LBRACE, - ACTIONS(7716), 1, - anon_sym_LPAREN2, - STATE(4807), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5966), 16, + ACTIONS(5707), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493339,12 +495782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5968), 22, + sym_auto, + anon_sym_decltype, + ACTIONS(5709), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -493355,6 +495801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -493362,10 +495809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150382] = 3, + [149845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 18, + ACTIONS(5681), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493384,7 +495831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5615), 24, + ACTIONS(5683), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493409,10 +495856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150432] = 3, + [149895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 18, + ACTIONS(5724), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493431,7 +495878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5623), 24, + ACTIONS(5726), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493456,62 +495903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150482] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4979), 1, - anon_sym_LBRACK, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(4714), 1, - sym_template_argument_list, - ACTIONS(4972), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4975), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4968), 32, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [150542] = 3, + [149945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 18, + ACTIONS(5738), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493530,7 +495925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5619), 24, + ACTIONS(5740), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493555,10 +495950,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150592] = 3, + [149995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 18, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(7819), 1, + anon_sym_LPAREN2, + STATE(4828), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6030), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493575,15 +495977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5615), 24, + ACTIONS(6032), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -493594,7 +495993,6 @@ 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, @@ -493602,10 +496000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150642] = 3, + [150051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 18, + ACTIONS(5742), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493624,7 +496022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5600), 24, + ACTIONS(5744), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493649,10 +496047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150692] = 3, + [150101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 18, + ACTIONS(5647), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493671,7 +496069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5564), 24, + ACTIONS(5649), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493696,10 +496094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150742] = 3, + [150151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5594), 18, + ACTIONS(5651), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493718,7 +496116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5596), 24, + ACTIONS(5653), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493743,10 +496141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150792] = 3, + [150201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 18, + ACTIONS(5746), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493765,7 +496163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5697), 24, + ACTIONS(5748), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493790,10 +496188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150842] = 3, + [150251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 18, + ACTIONS(5643), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493812,7 +496210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5588), 24, + ACTIONS(5645), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493837,10 +496235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150892] = 3, + [150301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 18, + ACTIONS(5750), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493859,7 +496257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5584), 24, + ACTIONS(5752), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493884,12 +496282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150942] = 4, + [150351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 1, - sym_literal_suffix, - ACTIONS(4147), 17, + ACTIONS(6700), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -493907,7 +496303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4139), 24, + sym_literal_suffix, + ACTIONS(6702), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493932,10 +496329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150994] = 3, + [150401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 18, + ACTIONS(5635), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493954,7 +496351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5713), 24, + ACTIONS(5637), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -493979,60 +496376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151044] = 6, + [150451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, - anon_sym_LBRACE, - ACTIONS(7716), 1, - anon_sym_LPAREN2, - STATE(4823), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5997), 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_identifier, - ACTIONS(5999), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(5392), 1, + sym_literal_suffix, + ACTIONS(4145), 17, aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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, - [151100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5707), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -494049,14 +496399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5709), 24, + ACTIONS(4137), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -494068,7 +496417,6 @@ 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, @@ -494076,23 +496424,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151150] = 4, + [150503] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7932), 1, - anon_sym_typedef, - ACTIONS(3474), 2, + ACTIONS(4156), 1, anon_sym_COLON_COLON, + ACTIONS(5016), 1, + anon_sym_LBRACK, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(4765), 1, + sym_template_argument_list, + ACTIONS(5009), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(3472), 39, + ACTIONS(5012), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(5007), 32, + anon_sym_AMP, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -494112,23 +496469,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_typename, anon_sym_template, - [151202] = 3, + anon_sym_operator, + [150563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5677), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -494145,14 +496496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(6689), 24, + sym_auto, + anon_sym_decltype, + ACTIONS(5679), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -494164,74 +496515,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, - anon_sym_DASH_GT, - [151252] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 1, anon_sym_LBRACE, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(4304), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5966), 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(5968), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151308] = 6, + [150613] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - STATE(4296), 2, + STATE(4298), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6001), 9, + ACTIONS(5992), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -494241,7 +496543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6003), 29, + ACTIONS(5994), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -494271,10 +496573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151364] = 3, + [150669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 18, + ACTIONS(5685), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -494293,7 +496595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5537), 24, + ACTIONS(5687), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -494318,60 +496620,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151414] = 6, + [150719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(7724), 1, + ACTIONS(7819), 1, anon_sym_LPAREN2, - STATE(4268), 2, + STATE(4932), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5950), 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(5952), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [151470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5745), 18, + ACTIONS(5992), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -494388,15 +496647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5747), 24, + ACTIONS(5994), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -494407,224 +496663,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [151520] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6652), 1, - sym_identifier, - ACTIONS(6702), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(7934), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - ACTIONS(7942), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7948), 1, - anon_sym_CARET, - ACTIONS(7956), 1, - anon_sym_GT_EQ, - ACTIONS(7960), 1, anon_sym_QMARK, - ACTIONS(7962), 1, anon_sym_LT_EQ_GT, - ACTIONS(7964), 1, - anon_sym_or, - ACTIONS(7966), 1, - anon_sym_and, - ACTIONS(7968), 1, - anon_sym_xor, - ACTIONS(7970), 1, - anon_sym_not_eq, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7946), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7950), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7952), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7958), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7972), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6654), 4, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [151621] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - ACTIONS(7948), 1, - anon_sym_CARET, - ACTIONS(7956), 1, - anon_sym_GT_EQ, - ACTIONS(7962), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7968), 1, - anon_sym_xor, - ACTIONS(7970), 1, - anon_sym_not_eq, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7946), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7950), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7952), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7958), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7972), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6170), 3, - anon_sym_or, - anon_sym_and, - sym_identifier, - ACTIONS(7954), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - [151710] = 9, + [150775] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(7619), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(7974), 1, - anon_sym_COLON, - STATE(3613), 1, - sym_attribute_specifier, - STATE(4218), 1, - sym__enum_base_clause, - STATE(4334), 1, - sym_enumerator_list, - ACTIONS(6057), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(6055), 30, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [151771] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, + ACTIONS(7819), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - STATE(3408), 1, + STATE(4926), 2, sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7972), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6133), 15, + sym_initializer_list, + ACTIONS(5943), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -494639,8 +496695,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6135), 17, + ACTIONS(5945), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -494656,120 +496713,17 @@ 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, - [151834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7978), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7976), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [151883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3118), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3116), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [151932] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7972), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6121), 15, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [150831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5643), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -494784,392 +496738,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6123), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [151995] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7984), 1, - anon_sym_STAR, - ACTIONS(7986), 1, - anon_sym_AMP_AMP, - ACTIONS(7988), 1, - anon_sym_AMP, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(7992), 1, sym_auto, - ACTIONS(7994), 1, anon_sym_decltype, - STATE(4057), 1, - sym_parameter_list, - STATE(5427), 1, - sym_decltype_auto, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6561), 1, - sym__abstract_declarator, - STATE(5021), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(7980), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [152072] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6630), 1, - sym_identifier, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(7934), 1, + ACTIONS(5645), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - ACTIONS(7942), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7948), 1, - anon_sym_CARET, - ACTIONS(7956), 1, - anon_sym_GT_EQ, - ACTIONS(7960), 1, - anon_sym_QMARK, - ACTIONS(7962), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7964), 1, - anon_sym_or, - ACTIONS(7966), 1, - anon_sym_and, - ACTIONS(7968), 1, - anon_sym_xor, - ACTIONS(7970), 1, - anon_sym_not_eq, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7946), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7950), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7952), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7958), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7972), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6634), 4, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [152173] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, anon_sym_LPAREN2, - ACTIONS(6640), 1, - sym_identifier, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - ACTIONS(7942), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7948), 1, - anon_sym_CARET, - ACTIONS(7956), 1, - anon_sym_GT_EQ, - ACTIONS(7962), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7964), 1, - anon_sym_or, - ACTIONS(7966), 1, - anon_sym_and, - ACTIONS(7968), 1, - anon_sym_xor, - ACTIONS(7970), 1, - anon_sym_not_eq, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7938), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7946), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7950), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7952), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7958), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7972), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6642), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_QMARK, - [152270] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6307), 1, - sym_identifier, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(7934), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - ACTIONS(7942), 1, anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7948), 1, - anon_sym_CARET, - ACTIONS(7956), 1, - anon_sym_GT_EQ, - ACTIONS(7960), 1, - anon_sym_QMARK, - ACTIONS(7962), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7964), 1, - anon_sym_or, - ACTIONS(7966), 1, - anon_sym_and, - ACTIONS(7968), 1, - anon_sym_xor, - ACTIONS(7970), 1, - anon_sym_not_eq, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7946), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7950), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7952), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7958), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7972), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6309), 4, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [152371] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(7992), 1, - sym_auto, - ACTIONS(7994), 1, - anon_sym_decltype, - ACTIONS(7996), 1, - anon_sym_STAR, - ACTIONS(7998), 1, - anon_sym_AMP_AMP, - ACTIONS(8000), 1, - anon_sym_AMP, - STATE(4139), 1, - sym_parameter_list, - STATE(5427), 1, - sym_decltype_auto, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6530), 1, - sym__abstract_declarator, - STATE(4974), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(7980), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [152448] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 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, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - ACTIONS(7962), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7936), 2, + [150881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5730), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7938), 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, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5732), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7958), 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(7972), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6170), 12, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [150931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5689), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -495181,110 +496832,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6172), 12, + sym_auto, + anon_sym_decltype, + ACTIONS(5691), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_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, - [152521] = 27, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [150981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(6646), 1, - sym_identifier, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(7940), 1, + STATE(4292), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5943), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(7942), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5945), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, anon_sym_AMP_AMP, - ACTIONS(7948), 1, anon_sym_CARET, - ACTIONS(7956), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7962), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7964), 1, anon_sym_or, - ACTIONS(7966), 1, anon_sym_and, - ACTIONS(7968), 1, + anon_sym_bitor, anon_sym_xor, - ACTIONS(7970), 1, + anon_sym_bitand, anon_sym_not_eq, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7936), 2, + [151037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5614), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7946), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7950), 2, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7952), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5616), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_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(7958), 2, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7972), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [151087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5622), 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, - ACTIONS(6648), 6, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5624), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_QMARK, - [152618] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, anon_sym_LPAREN2, - ACTIONS(6702), 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_LBRACE, anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7972), 2, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6190), 15, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [151137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -495299,13 +497023,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6192), 17, + sym_auto, + anon_sym_decltype, + ACTIONS(5620), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -495316,15 +497044,23 @@ 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, - [152681] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [151187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 2, + ACTIONS(8033), 1, + anon_sym_typedef, + ACTIONS(3590), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3172), 39, + ACTIONS(3588), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -495364,83 +497100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_typename, anon_sym_template, - [152730] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(7992), 1, - sym_auto, - ACTIONS(7994), 1, - anon_sym_decltype, - ACTIONS(7996), 1, - anon_sym_STAR, - ACTIONS(7998), 1, - anon_sym_AMP_AMP, - ACTIONS(8000), 1, - anon_sym_AMP, - STATE(4139), 1, - sym_parameter_list, - STATE(5427), 1, - sym_decltype_auto, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6525), 1, - sym__abstract_declarator, - STATE(5034), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8002), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [152807] = 9, + [151239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6162), 15, + ACTIONS(5614), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -495455,13 +497118,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6164), 19, + sym_auto, + anon_sym_decltype, + ACTIONS(5616), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -495472,17 +497139,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, - [152868] = 4, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [151289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5021), 16, + ACTIONS(5661), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -495499,7 +497167,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5014), 23, + sym_auto, + anon_sym_decltype, + ACTIONS(5663), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -495516,6 +497186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -495523,82 +497194,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [152919] = 29, + [151339] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(5016), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(7910), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - ACTIONS(7942), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7948), 1, - anon_sym_CARET, - ACTIONS(7956), 1, - anon_sym_GT_EQ, - ACTIONS(7960), 1, - anon_sym_QMARK, - ACTIONS(7962), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7964), 1, - anon_sym_or, - ACTIONS(7966), 1, - anon_sym_and, - ACTIONS(7968), 1, - anon_sym_xor, - ACTIONS(7970), 1, - anon_sym_not_eq, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7938), 2, + ACTIONS(5019), 1, + anon_sym_SEMI, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(4520), 1, + sym_template_argument_list, + ACTIONS(5009), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5012), 3, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7946), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7950), 2, + anon_sym_AMP_AMP, + ACTIONS(5007), 32, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7952), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7958), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7972), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7912), 4, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [153020] = 3, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [151401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 16, + ACTIONS(5807), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -495614,11 +497266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(6689), 25, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5809), 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_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -495630,130 +497286,54 @@ 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_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, - [153069] = 27, + [151451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6607), 1, - sym_identifier, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - ACTIONS(7942), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7948), 1, - anon_sym_CARET, - ACTIONS(7956), 1, - anon_sym_GT_EQ, - ACTIONS(7962), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7964), 1, - anon_sym_or, - ACTIONS(7966), 1, - anon_sym_and, - ACTIONS(7968), 1, - anon_sym_xor, - ACTIONS(7970), 1, - anon_sym_not_eq, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7936), 2, + ACTIONS(5803), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7946), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7950), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7952), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7958), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7972), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6609), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_QMARK, - [153166] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8004), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8006), 1, - anon_sym_AMP_AMP, - ACTIONS(8008), 1, anon_sym_or, - ACTIONS(8010), 1, anon_sym_and, - ACTIONS(6194), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6196), 22, + sym_auto, + anon_sym_decltype, + ACTIONS(5805), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_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, @@ -495761,156 +497341,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153223] = 25, + [151501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, - anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7948), 1, - anon_sym_CARET, - ACTIONS(7956), 1, - anon_sym_GT_EQ, - ACTIONS(7962), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7966), 1, - anon_sym_and, - ACTIONS(7968), 1, - anon_sym_xor, - ACTIONS(7970), 1, - anon_sym_not_eq, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6170), 2, - anon_sym_or, - sym_identifier, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7936), 2, + ACTIONS(5799), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7946), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7950), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7952), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7958), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7972), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 7, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5801), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - [153316] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8012), 1, - anon_sym_COMMA, - ACTIONS(8018), 1, - anon_sym_SLASH, - ACTIONS(8024), 1, - anon_sym_PIPE, - ACTIONS(8028), 1, - anon_sym_AMP, - ACTIONS(8034), 1, - anon_sym_GT_EQ, - ACTIONS(8038), 1, - anon_sym_SEMI, - ACTIONS(8040), 1, - anon_sym_QMARK, - ACTIONS(8042), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, - anon_sym_bitor, - ACTIONS(8046), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - STATE(7230), 1, - aux_sym_field_declaration_repeat1, - STATE(9242), 1, - sym_attribute_specifier, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8016), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8020), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8022), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8026), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8036), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8030), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8032), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [153419] = 5, + 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, + [151551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8006), 1, - anon_sym_AMP_AMP, - ACTIONS(8010), 1, - anon_sym_and, - ACTIONS(6206), 16, - aux_sym_preproc_elif_token1, + ACTIONS(5758), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -495920,29 +497401,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6208), 23, + sym_auto, + anon_sym_decltype, + ACTIONS(5760), 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, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_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, @@ -495950,12 +497435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153472] = 4, + [151601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 1, - sym_literal_suffix, - ACTIONS(4147), 15, + ACTIONS(5418), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -495971,10 +497454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4139), 25, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5420), 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_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -495986,24 +497474,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_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153523] = 3, + [151651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 2, + ACTIONS(8035), 1, + anon_sym_typedef, + ACTIONS(3590), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2925), 39, + ACTIONS(3588), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -496043,218 +497530,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_typename, anon_sym_template, - [153572] = 23, + [151703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6081), 1, - anon_sym_STAR, - ACTIONS(6083), 1, - anon_sym_AMP_AMP, - ACTIONS(6085), 1, + STATE(4327), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6030), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(6089), 1, - anon_sym_LBRACK, - STATE(3802), 1, - sym_parameter_list, - STATE(6263), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6844), 1, - sym__declarator, - STATE(6955), 1, - sym__abstract_declarator, - STATE(8562), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(7914), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [153661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2887), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2885), 39, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_typename, - anon_sym_template, - [153710] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_DOT, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7906), 1, + ACTIONS(6032), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(8012), 1, anon_sym_COMMA, - ACTIONS(8018), 1, - anon_sym_SLASH, - ACTIONS(8024), 1, - anon_sym_PIPE, - ACTIONS(8028), 1, - anon_sym_AMP, - ACTIONS(8034), 1, + 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, - ACTIONS(8040), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(8042), 1, anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8046), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8048), 1, - anon_sym_SEMI, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - STATE(7217), 1, - aux_sym_field_declaration_repeat1, - STATE(8542), 1, - sym_attribute_specifier, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [151759] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(7819), 1, + anon_sym_LPAREN2, + STATE(4854), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5931), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 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, + sym_identifier, + ACTIONS(5933), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8020), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8022), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8026), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8036), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8030), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8032), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [153813] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7972), 2, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6170), 14, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [151815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5772), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -496266,13 +497648,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6172), 15, + sym_auto, + anon_sym_decltype, + ACTIONS(5774), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -496281,67 +497669,118 @@ 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, - [153880] = 9, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [151865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(7619), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - ACTIONS(7974), 1, - anon_sym_COLON, - STATE(3675), 1, - sym_attribute_specifier, - STATE(4226), 1, - sym__enum_base_clause, - STATE(4362), 1, - sym_enumerator_list, - ACTIONS(6075), 5, + ACTIONS(7827), 1, anon_sym_LPAREN2, + STATE(4343), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5931), 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(5933), 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_LBRACK_LBRACK, - ACTIONS(6073), 30, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [151921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5776), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, + 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_virtual, - anon_sym_alignas, - anon_sym_operator, - [153941] = 3, + ACTIONS(5778), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [151971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3320), 2, + ACTIONS(3250), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3318), 39, + ACTIONS(3248), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -496381,76 +497820,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_typename, anon_sym_template, - [153990] = 17, + [152020] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7920), 1, - sym_auto, - ACTIONS(7922), 1, - anon_sym_decltype, - ACTIONS(7982), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(8050), 1, - anon_sym_STAR, - ACTIONS(8052), 1, - anon_sym_AMP_AMP, - ACTIONS(8054), 1, - anon_sym_AMP, - STATE(3589), 1, - sym_decltype_auto, - STATE(4101), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6521), 1, - sym__abstract_declarator, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8002), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [154067] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8056), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8058), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6194), 9, + ACTIONS(6773), 1, + anon_sym_DOT, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6775), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6197), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -496459,56 +497845,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(6196), 28, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6199), 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_elif_token1, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, 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, + [152081] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_DOT, + ACTIONS(8041), 1, + anon_sym_SLASH, + ACTIONS(8047), 1, + anon_sym_GT_EQ, + ACTIONS(8051), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8053), 1, + anon_sym_not_eq, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154120] = 10, + ACTIONS(8037), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8039), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8045), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 8, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + sym_identifier, + ACTIONS(6153), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + [152162] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - STATE(3408), 1, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7972), 2, + ACTIONS(8055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6170), 15, + ACTIONS(6241), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -496524,7 +497969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6172), 17, + ACTIONS(6243), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -496542,78 +497987,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [154183] = 22, + [152225] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - ACTIONS(7948), 1, - anon_sym_CARET, - ACTIONS(7956), 1, - anon_sym_GT_EQ, - ACTIONS(7962), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7968), 1, - anon_sym_xor, - ACTIONS(7970), 1, - anon_sym_not_eq, - STATE(3408), 1, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7936), 2, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6229), 15, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7950), 2, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7952), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7958), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7972), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 5, - anon_sym_PIPE, anon_sym_or, anon_sym_and, anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, sym_identifier, - ACTIONS(6172), 8, + ACTIONS(6231), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_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, - [154270] = 4, + anon_sym_LT_EQ_GT, + [152288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8058), 2, + ACTIONS(8057), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8059), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(6206), 9, + ACTIONS(6165), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -496623,14 +498059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6208), 30, + ACTIONS(6167), 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_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -496645,7 +498080,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -496654,126 +498088,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154321] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7920), 1, - sym_auto, - ACTIONS(7922), 1, - anon_sym_decltype, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8050), 1, - anon_sym_STAR, - ACTIONS(8052), 1, - anon_sym_AMP_AMP, - ACTIONS(8054), 1, - anon_sym_AMP, - STATE(3589), 1, - sym_decltype_auto, - STATE(4101), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6534), 1, - sym__abstract_declarator, - STATE(4969), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(7980), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [154398] = 9, + [152341] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6614), 1, + sym_identifier, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - STATE(3408), 1, + ACTIONS(8041), 1, + anon_sym_SLASH, + ACTIONS(8047), 1, + anon_sym_GT_EQ, + ACTIONS(8051), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8053), 1, + anon_sym_not_eq, + ACTIONS(8061), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8065), 1, + anon_sym_AMP_AMP, + ACTIONS(8069), 1, + anon_sym_CARET, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_or, + ACTIONS(8077), 1, + anon_sym_and, + ACTIONS(8079), 1, + anon_sym_xor, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6155), 15, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8039), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8067), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8071), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8045), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6157), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(6618), 4, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_STAR, - anon_sym_PERCENT, + [152442] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6652), 1, + sym_identifier, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_DOT, + ACTIONS(8041), 1, + anon_sym_SLASH, + ACTIONS(8047), 1, + anon_sym_GT_EQ, + ACTIONS(8051), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8053), 1, + anon_sym_not_eq, + ACTIONS(8063), 1, anon_sym_PIPE_PIPE, + ACTIONS(8065), 1, anon_sym_AMP_AMP, + ACTIONS(8069), 1, anon_sym_CARET, + ACTIONS(8075), 1, + anon_sym_or, + ACTIONS(8077), 1, + anon_sym_and, + ACTIONS(8079), 1, + anon_sym_xor, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6775), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8037), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8039), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(8049), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(8055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [154459] = 5, + ACTIONS(8067), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8071), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8045), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6654), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_QMARK, + [152539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7718), 1, - anon_sym_LBRACK, - STATE(4724), 1, - sym_new_declarator, - ACTIONS(6091), 16, + ACTIONS(8081), 1, + anon_sym_AMP_AMP, + ACTIONS(8083), 1, + anon_sym_and, + ACTIONS(6233), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -496783,117 +498248,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6093), 23, + ACTIONS(6235), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_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, - [154512] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8012), 1, - anon_sym_COMMA, - ACTIONS(8018), 1, - anon_sym_SLASH, - ACTIONS(8024), 1, - anon_sym_PIPE, - ACTIONS(8028), 1, - anon_sym_AMP, - ACTIONS(8034), 1, - anon_sym_GT_EQ, - ACTIONS(8040), 1, - anon_sym_QMARK, - ACTIONS(8042), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, - anon_sym_bitor, - ACTIONS(8046), 1, - anon_sym_bitand, - ACTIONS(8060), 1, - anon_sym_SEMI, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - STATE(7232), 1, - aux_sym_field_declaration_repeat1, - STATE(8757), 1, - sym_attribute_specifier, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8016), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8020), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8022), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8026), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8036), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8030), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8032), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [154615] = 3, + [152592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 2, + ACTIONS(3197), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2917), 39, + ACTIONS(3195), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -496933,249 +498324,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_typename, anon_sym_template, - [154664] = 30, + [152641] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6677), 1, + sym_identifier, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8012), 1, - anon_sym_COMMA, - ACTIONS(8018), 1, + ACTIONS(8041), 1, anon_sym_SLASH, - ACTIONS(8024), 1, - anon_sym_PIPE, - ACTIONS(8028), 1, - anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(8047), 1, anon_sym_GT_EQ, - ACTIONS(8040), 1, - anon_sym_QMARK, - ACTIONS(8042), 1, + ACTIONS(8051), 1, anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, - anon_sym_bitor, - ACTIONS(8046), 1, - anon_sym_bitand, - ACTIONS(8062), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8053), 1, + anon_sym_not_eq, + ACTIONS(8061), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8065), 1, + anon_sym_AMP_AMP, + ACTIONS(8069), 1, + anon_sym_CARET, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_or, + ACTIONS(8077), 1, + anon_sym_and, + ACTIONS(8079), 1, + anon_sym_xor, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - STATE(7289), 1, - aux_sym_field_declaration_repeat1, - STATE(8927), 1, - sym_attribute_specifier, - ACTIONS(6131), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8039), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8020), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8022), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8026), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8036), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8030), 3, + ACTIONS(8043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8032), 3, + ACTIONS(8049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8067), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8071), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8045), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [154767] = 27, + ACTIONS(6679), 4, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [152742] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6626), 1, - sym_identifier, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - ACTIONS(7942), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7944), 1, - anon_sym_AMP_AMP, - ACTIONS(7948), 1, - anon_sym_CARET, - ACTIONS(7956), 1, - anon_sym_GT_EQ, - ACTIONS(7962), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7964), 1, - anon_sym_or, - ACTIONS(7966), 1, - anon_sym_and, - ACTIONS(7968), 1, - anon_sym_xor, - ACTIONS(7970), 1, - anon_sym_not_eq, - STATE(3408), 1, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7936), 2, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6131), 15, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7946), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(7950), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7952), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7958), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7972), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6628), 6, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6133), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, - [154864] = 20, + anon_sym_LT_EQ_GT, + [152805] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6660), 1, + sym_identifier, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(7940), 1, + ACTIONS(8041), 1, anon_sym_SLASH, - ACTIONS(7956), 1, + ACTIONS(8047), 1, anon_sym_GT_EQ, - ACTIONS(7962), 1, + ACTIONS(8051), 1, anon_sym_LT_EQ_GT, - ACTIONS(7970), 1, + ACTIONS(8053), 1, anon_sym_not_eq, - STATE(3408), 1, + ACTIONS(8063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8065), 1, + anon_sym_AMP_AMP, + ACTIONS(8069), 1, + anon_sym_CARET, + ACTIONS(8075), 1, + anon_sym_or, + ACTIONS(8077), 1, + anon_sym_and, + ACTIONS(8079), 1, + anon_sym_xor, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7936), 2, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7938), 2, + ACTIONS(8039), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7950), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(7952), 2, + ACTIONS(8043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7958), 2, + ACTIONS(8049), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7972), 2, + ACTIONS(8055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, + ACTIONS(8067), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8071), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8045), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6170), 6, - anon_sym_PIPE, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - sym_identifier, - ACTIONS(6172), 9, + ACTIONS(6662), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_QMARK, - [154947] = 17, + [152902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, + ACTIONS(2897), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2895), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [152951] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7984), 1, + ACTIONS(8089), 1, anon_sym_STAR, - ACTIONS(7986), 1, + ACTIONS(8091), 1, anon_sym_AMP_AMP, - ACTIONS(7988), 1, + ACTIONS(8093), 1, anon_sym_AMP, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(7992), 1, + ACTIONS(8097), 1, sym_auto, - ACTIONS(7994), 1, + ACTIONS(8099), 1, anon_sym_decltype, - STATE(4057), 1, + STATE(4160), 1, sym_parameter_list, - STATE(5427), 1, + STATE(5496), 1, sym_decltype_auto, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6556), 1, + STATE(6557), 1, sym__abstract_declarator, - STATE(4977), 2, + STATE(4960), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7429), 11, + ACTIONS(7605), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -497187,111 +498613,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8002), 11, + ACTIONS(8085), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [153028] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(8003), 1, + sym_auto, + ACTIONS(8005), 1, + anon_sym_decltype, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8101), 1, + anon_sym_STAR, + ACTIONS(8103), 1, + anon_sym_AMP_AMP, + ACTIONS(8105), 1, + anon_sym_AMP, + STATE(3682), 1, + sym_decltype_auto, + STATE(4133), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6584), 1, + sym__abstract_declarator, + STATE(4971), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8085), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [155024] = 19, + [153105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2951), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2949), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [153154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2967), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2965), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [153203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3320), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3318), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [153252] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6673), 1, + sym_identifier, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(7940), 1, + ACTIONS(8041), 1, anon_sym_SLASH, - ACTIONS(7956), 1, + ACTIONS(8047), 1, anon_sym_GT_EQ, - ACTIONS(7962), 1, + ACTIONS(8051), 1, anon_sym_LT_EQ_GT, - ACTIONS(7970), 1, + ACTIONS(8053), 1, anon_sym_not_eq, - STATE(3408), 1, + ACTIONS(8063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8065), 1, + anon_sym_AMP_AMP, + ACTIONS(8069), 1, + anon_sym_CARET, + ACTIONS(8075), 1, + anon_sym_or, + ACTIONS(8077), 1, + anon_sym_and, + ACTIONS(8079), 1, + anon_sym_xor, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7936), 2, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7938), 2, + ACTIONS(8039), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7952), 2, + ACTIONS(8043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7958), 2, + ACTIONS(8049), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7972), 2, + ACTIONS(8055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6170), 8, + ACTIONS(8067), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8071), 2, + anon_sym_AMP, anon_sym_bitand, - sym_identifier, - ACTIONS(6172), 9, + ACTIONS(8045), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6675), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_QMARK, - [155105] = 14, + [153349] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(7821), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, - anon_sym_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - STATE(3408), 1, - sym_argument_list, - STATE(3409), 1, - sym_subscript_argument_list, - ACTIONS(6708), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7936), 2, + STATE(4769), 1, + sym_new_declarator, + ACTIONS(6118), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7958), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7972), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6170), 12, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -497303,49 +498915,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(6172), 13, + ACTIONS(6120), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_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_QMARK, anon_sym_LT_EQ_GT, - [155176] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [153402] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - STATE(3408), 1, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7936), 2, + ACTIONS(6245), 15, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7972), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6170), 12, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -497358,12 +498973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6172), 15, + ACTIONS(6247), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -497374,47 +498991,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [155245] = 17, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [153463] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6466), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6702), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6706), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(7940), 1, - anon_sym_SLASH, - ACTIONS(7956), 1, - anon_sym_GT_EQ, - ACTIONS(7962), 1, - anon_sym_LT_EQ_GT, - STATE(3408), 1, + STATE(3498), 1, sym_argument_list, - STATE(3409), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6708), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7938), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7958), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7972), 2, + ACTIONS(8055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7954), 3, + ACTIONS(6151), 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, - ACTIONS(6170), 9, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -497422,25 +499028,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6172), 11, + ACTIONS(6153), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_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, - [155322] = 3, + anon_sym_LT_EQ_GT, + [153526] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8097), 1, + sym_auto, + ACTIONS(8099), 1, + anon_sym_decltype, + ACTIONS(8109), 1, + anon_sym_STAR, + ACTIONS(8111), 1, + anon_sym_AMP_AMP, + ACTIONS(8113), 1, + anon_sym_AMP, + STATE(4017), 1, + sym_parameter_list, + STATE(5496), 1, + sym_decltype_auto, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6549), 1, + sym__abstract_declarator, + STATE(5019), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8107), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [153603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 2, + ACTIONS(2963), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2921), 39, + ACTIONS(2961), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -497480,50 +499152,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_typename, anon_sym_template, - [155371] = 13, + [153652] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym___inline, ACTIONS(61), 1, anon_sym_const, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7918), 1, - anon_sym___declspec, - ACTIONS(7924), 1, - anon_sym_virtual, - ACTIONS(7926), 1, - anon_sym_alignas, - ACTIONS(7018), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(7020), 3, + ACTIONS(8003), 1, + sym_auto, + ACTIONS(8005), 1, + anon_sym_decltype, + ACTIONS(8087), 1, anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8101), 1, anon_sym_STAR, + ACTIONS(8103), 1, anon_sym_AMP_AMP, - ACTIONS(7916), 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, - STATE(4707), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(8105), 1, + anon_sym_AMP, + STATE(3682), 1, + sym_decltype_auto, + STATE(4133), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6607), 1, + sym__abstract_declarator, + STATE(5006), 2, sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7325), 11, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7429), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -497535,269 +499200,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [155439] = 24, + ACTIONS(8107), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [153729] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8059), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6233), 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(6235), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + 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, + [153780] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8068), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8115), 1, + anon_sym_COMMA, + ACTIONS(8121), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8127), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8131), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8137), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8141), 1, + anon_sym_SEMI, + ACTIONS(8143), 1, + anon_sym_QMARK, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8147), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8149), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7258), 1, + aux_sym_field_declaration_repeat1, + STATE(8579), 1, + sym_attribute_specifier, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8123), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8125), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8129), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8135), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6628), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [155529] = 12, + [153883] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8066), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6170), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 21, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8115), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [155595] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7471), 1, - anon_sym_const, - ACTIONS(7474), 1, - anon_sym___inline, - ACTIONS(8100), 1, - anon_sym___attribute__, - ACTIONS(8103), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8106), 1, - anon_sym___declspec, - ACTIONS(8109), 1, - anon_sym_virtual, - ACTIONS(8112), 1, - anon_sym_alignas, - ACTIONS(6938), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(6940), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(8097), 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, - STATE(4707), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(8094), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [155663] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(8068), 1, + ACTIONS(8121), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8127), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8131), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8137), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8143), 1, + anon_sym_QMARK, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8147), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8149), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8151), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7288), 1, + aux_sym_field_declaration_repeat1, + STATE(9235), 1, + sym_attribute_specifier, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8072), 2, + ACTIONS(8123), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8125), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8129), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8135), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - [155751] = 8, + [153986] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4977), 1, - anon_sym_LBRACK, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(5004), 1, - sym_template_argument_list, - ACTIONS(4972), 2, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7702), 1, + anon_sym_LBRACE, + ACTIONS(8153), 1, + anon_sym_COLON, + STATE(3613), 1, + sym_attribute_specifier, + STATE(4282), 1, + sym__enum_base_clause, + STATE(4351), 1, + sym_enumerator_list, + ACTIONS(6110), 5, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4975), 3, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(4968), 31, + anon_sym_LBRACK_LBRACK, + ACTIONS(6108), 30, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_static, @@ -497825,273 +499457,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_alignas, anon_sym_operator, - [155809] = 22, + [154047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(8068), 1, + ACTIONS(5392), 1, + sym_literal_suffix, + ACTIONS(4145), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8074), 1, anon_sym_PIPE, - ACTIONS(8078), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 10, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(4137), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [155895] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, anon_sym_LPAREN2, - ACTIONS(8115), 1, anon_sym_STAR, - ACTIONS(8117), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8119), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8125), 1, - sym_auto, - ACTIONS(8127), 1, - anon_sym_decltype, - STATE(3757), 1, - sym_parameter_list, - STATE(5730), 1, - sym_decltype_auto, - STATE(6605), 1, - sym__abstract_declarator, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(5125), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8002), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [155971] = 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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [154098] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6681), 1, + sym_identifier, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(6170), 1, - anon_sym_PIPE, - ACTIONS(8068), 1, + ACTIONS(8041), 1, anon_sym_SLASH, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8047), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8051), 1, anon_sym_LT_EQ_GT, - ACTIONS(8092), 1, - anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8053), 1, + anon_sym_not_eq, + ACTIONS(8063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8065), 1, + anon_sym_AMP_AMP, + ACTIONS(8069), 1, + anon_sym_CARET, + ACTIONS(8075), 1, + anon_sym_or, + ACTIONS(8077), 1, + anon_sym_and, + ACTIONS(8079), 1, + anon_sym_xor, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8039), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8067), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8071), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8045), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 11, + ACTIONS(6683), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [156055] = 20, + [154195] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6170), 1, - anon_sym_PIPE, - ACTIONS(8068), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8115), 1, + anon_sym_COMMA, + ACTIONS(8121), 1, anon_sym_SLASH, - ACTIONS(8078), 1, + ACTIONS(8127), 1, + anon_sym_PIPE, + ACTIONS(8131), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8137), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8143), 1, + anon_sym_QMARK, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - ACTIONS(8092), 1, + ACTIONS(8147), 1, + anon_sym_bitor, + ACTIONS(8149), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8155), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7286), 1, + aux_sym_field_declaration_repeat1, + STATE(8625), 1, + sym_attribute_specifier, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8086), 2, + ACTIONS(8123), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8125), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8129), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8135), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - [156137] = 5, + [154298] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5023), 1, - anon_sym_LBRACK, - ACTIONS(5016), 2, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(7702), 1, + anon_sym_LBRACE, + ACTIONS(8153), 1, + anon_sym_COLON, + STATE(3693), 1, + sym_attribute_specifier, + STATE(4233), 1, + sym__enum_base_clause, + STATE(4392), 1, + sym_enumerator_list, + ACTIONS(6116), 5, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5019), 5, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(5012), 32, + anon_sym_LBRACK_LBRACK, + ACTIONS(6114), 30, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_static, @@ -498118,183 +499698,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_virtual, anon_sym_alignas, - anon_sym_template, anon_sym_operator, - [156189] = 29, + [154359] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8021), 1, + sym_identifier, + ACTIONS(8041), 1, anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8047), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8051), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8129), 1, - anon_sym_COMMA, - ACTIONS(8131), 1, - anon_sym_SEMI, - ACTIONS(8133), 1, - anon_sym_RBRACE, - ACTIONS(8135), 1, + ACTIONS(8053), 1, + anon_sym_not_eq, + ACTIONS(8061), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8065), 1, + anon_sym_AMP_AMP, + ACTIONS(8069), 1, + anon_sym_CARET, + ACTIONS(8073), 1, anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(8075), 1, + anon_sym_or, + ACTIONS(8077), 1, + anon_sym_and, + ACTIONS(8079), 1, + anon_sym_xor, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - STATE(7823), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8039), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8067), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8071), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8045), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [156289] = 18, + ACTIONS(8025), 4, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [154460] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(8068), 1, + ACTIONS(8041), 1, anon_sym_SLASH, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - STATE(2791), 1, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6170), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8039), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8086), 2, + ACTIONS(8049), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6151), 12, + 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(6153), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [154531] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8081), 1, + anon_sym_AMP_AMP, + ACTIONS(8083), 1, + anon_sym_and, + ACTIONS(8157), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8159), 1, + anon_sym_or, + ACTIONS(6165), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8082), 3, + anon_sym_DOT, + sym_identifier, + ACTIONS(6167), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [154588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 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, - ACTIONS(6172), 14, + 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(6702), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - [156367] = 13, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [154637] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym___inline, - ACTIONS(61), 1, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7918), 1, - anon_sym___declspec, - ACTIONS(7924), 1, - anon_sym_virtual, - ACTIONS(7926), 1, - anon_sym_alignas, - ACTIONS(6997), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(6999), 3, + ACTIONS(8087), 1, anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8097), 1, + sym_auto, + ACTIONS(8099), 1, + anon_sym_decltype, + ACTIONS(8109), 1, anon_sym_STAR, + ACTIONS(8111), 1, anon_sym_AMP_AMP, - ACTIONS(7916), 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, - STATE(4707), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(8113), 1, + anon_sym_AMP, + STATE(4017), 1, + sym_parameter_list, + STATE(5496), 1, + sym_decltype_auto, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6544), 1, + sym__abstract_declarator, + STATE(5047), 2, sym_type_qualifier, - sym_virtual, - sym_alignas_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7325), 11, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7605), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -498306,74 +499972,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [156435] = 17, + ACTIONS(8085), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [154714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(8068), 1, + ACTIONS(5046), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5048), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6170), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8082), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 17, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5041), 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_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + 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_LBRACK, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [156511] = 4, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [154765] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, - sym_literal_suffix, - ACTIONS(4147), 16, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_DOT, + ACTIONS(8041), 1, + anon_sym_SLASH, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6775), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8039), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6151), 12, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -498385,17 +500070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(4139), 23, + ACTIONS(6153), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -498404,447 +500085,610 @@ 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, - anon_sym_DASH_GT, - [156561] = 26, + [154834] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6469), 1, + sym_identifier, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8041), 1, anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8047), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8051), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8053), 1, + anon_sym_not_eq, + ACTIONS(8061), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8063), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8065), 1, + anon_sym_AMP_AMP, + ACTIONS(8069), 1, + anon_sym_CARET, + ACTIONS(8073), 1, anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(8075), 1, + anon_sym_or, + ACTIONS(8077), 1, + anon_sym_and, + ACTIONS(8079), 1, + anon_sym_xor, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8039), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8067), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8071), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8045), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6654), 4, + ACTIONS(6471), 4, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [154935] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6098), 1, + anon_sym_STAR, + ACTIONS(6100), 1, + anon_sym_AMP_AMP, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(6106), 1, + anon_sym_LBRACK, + STATE(3782), 1, + sym_parameter_list, + STATE(6348), 1, + sym__scope_resolution, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6903), 1, + sym__declarator, + STATE(6913), 1, + sym__abstract_declarator, + STATE(8593), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8031), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [156655] = 15, + anon_sym_EQ, + anon_sym_GT2, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [155024] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(8068), 1, + ACTIONS(8041), 1, anon_sym_SLASH, - ACTIONS(8088), 1, + ACTIONS(8051), 1, anon_sym_LT_EQ_GT, - STATE(2791), 1, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8039), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8086), 2, + ACTIONS(8049), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6170), 5, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6151), 12, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 18, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6153), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_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, - [156727] = 24, + [155097] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(8068), 1, + ACTIONS(8041), 1, anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8047), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8051), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8053), 1, + anon_sym_not_eq, + ACTIONS(8065), 1, + anon_sym_AMP_AMP, + ACTIONS(8069), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_and, + ACTIONS(8079), 1, + anon_sym_xor, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6151), 2, + anon_sym_or, + sym_identifier, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8039), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8067), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8071), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8045), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6609), 6, + ACTIONS(6153), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, anon_sym_QMARK, - [156817] = 13, + [155190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8163), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8161), 39, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_typename, + anon_sym_template, + [155239] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(8068), 1, + ACTIONS(8041), 1, anon_sym_SLASH, - STATE(2791), 1, + ACTIONS(8047), 1, + anon_sym_GT_EQ, + ACTIONS(8051), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8053), 1, + anon_sym_not_eq, + ACTIONS(8069), 1, + anon_sym_CARET, + ACTIONS(8079), 1, + anon_sym_xor, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8039), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6170), 5, + ACTIONS(8043), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8067), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8071), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6151), 3, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(8045), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 21, + ACTIONS(6153), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_QMARK, + [155328] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_DOT, + ACTIONS(8041), 1, + anon_sym_SLASH, + ACTIONS(8047), 1, + anon_sym_GT_EQ, + ACTIONS(8051), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8053), 1, + anon_sym_not_eq, + ACTIONS(8069), 1, anon_sym_CARET, + ACTIONS(8079), 1, + anon_sym_xor, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6775), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8037), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8039), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(8049), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8071), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8045), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6151), 5, + anon_sym_PIPE, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [156885] = 3, + sym_identifier, + ACTIONS(6153), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + [155415] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 16, + ACTIONS(6518), 1, + anon_sym_LPAREN2, + ACTIONS(6769), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_DOT, + ACTIONS(8041), 1, + anon_sym_SLASH, + ACTIONS(8047), 1, + anon_sym_GT_EQ, + ACTIONS(8051), 1, + anon_sym_LT_EQ_GT, + STATE(3498), 1, + sym_argument_list, + STATE(3503), 1, + sym_subscript_argument_list, + ACTIONS(6775), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8039), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8045), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(6151), 9, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6220), 24, + ACTIONS(6153), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_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, - [156933] = 26, + [155492] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8041), 1, anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8047), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8051), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(8053), 1, + anon_sym_not_eq, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8037), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8039), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8043), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6309), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [157027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6687), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8049), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8055), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8071), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8045), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(6151), 6, + anon_sym_PIPE, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(6689), 23, + ACTIONS(6153), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_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, - [157075] = 5, + [155575] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5457), 1, - anon_sym_SEMI, - ACTIONS(5537), 5, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(8089), 1, anon_sym_STAR, + ACTIONS(8091), 1, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(5535), 33, + ACTIONS(8093), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(8095), 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, + ACTIONS(8097), 1, + sym_auto, + ACTIONS(8099), 1, + anon_sym_decltype, + STATE(4160), 1, + sym_parameter_list, + STATE(5496), 1, + sym_decltype_auto, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6594), 1, + sym__abstract_declarator, + STATE(4964), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7605), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -498855,165 +500699,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [157127] = 26, + ACTIONS(8107), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [155652] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8115), 1, + anon_sym_COMMA, + ACTIONS(8121), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8127), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8131), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8137), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8143), 1, + anon_sym_QMARK, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8147), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8149), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(8165), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7303), 1, + aux_sym_field_declaration_repeat1, + STATE(8814), 1, + sym_attribute_specifier, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8123), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8125), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8129), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8135), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6634), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [157221] = 14, + [155755] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6769), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6773), 1, anon_sym_DOT, - ACTIONS(8068), 1, + ACTIONS(8041), 1, anon_sym_SLASH, - STATE(2791), 1, + STATE(3498), 1, sym_argument_list, - STATE(2792), 1, + STATE(3503), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6775), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(8039), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8055), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(6151), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6170), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 19, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6153), 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_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, + [155822] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(8179), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [157291] = 8, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6683), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [155912] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(7258), 1, + ACTIONS(7457), 1, anon_sym_LT, - STATE(1935), 1, + STATE(1974), 1, sym_template_argument_list, - STATE(3976), 1, + STATE(5246), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(4137), 3, + ACTIONS(4135), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(7022), 4, + anon_sym_COLON, + ACTIONS(8197), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4145), 29, + ACTIONS(4143), 28, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -499033,27 +500953,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_try, + anon_sym_requires, + [155970] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(8199), 1, + anon_sym_STAR, + ACTIONS(8201), 1, + anon_sym_AMP_AMP, + ACTIONS(8203), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(8209), 1, + sym_auto, + ACTIONS(8211), 1, + anon_sym_decltype, + STATE(3863), 1, + sym_parameter_list, + STATE(5803), 1, + sym_decltype_auto, + STATE(6624), 1, + sym__abstract_declarator, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(5202), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8107), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [157349] = 8, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [156046] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [156132] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym___inline, ACTIONS(61), 1, anon_sym_const, - ACTIONS(8139), 2, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8001), 1, + anon_sym___declspec, + ACTIONS(8007), 1, + anon_sym_virtual, + ACTIONS(8009), 1, + anon_sym_alignas, + ACTIONS(7060), 2, anon_sym_AMP, anon_sym_LBRACK, - STATE(5255), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5268), 2, + ACTIONS(7062), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7999), 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, + STATE(4746), 9, + sym__declaration_modifiers, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6236), 2, sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7325), 11, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7429), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -499065,52 +501133,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8137), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [157407] = 8, + [156200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(6875), 1, + ACTIONS(7457), 1, anon_sym_LT, - STATE(1935), 1, + STATE(1974), 1, sym_template_argument_list, - STATE(5069), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5566), 4, + ACTIONS(5007), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym_COLON, - ACTIONS(8141), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5568), 28, + ACTIONS(5012), 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__, @@ -499128,27 +501170,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + 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, - [157465] = 4, + [156254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5457), 1, + ACTIONS(5533), 1, anon_sym_SEMI, - ACTIONS(5537), 6, + ACTIONS(5420), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5535), 33, + ACTIONS(5418), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -499182,55 +501227,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym_template, anon_sym_operator, - [157515] = 17, + [156304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5533), 1, + anon_sym_SEMI, + ACTIONS(5420), 5, anon_sym_LPAREN2, - ACTIONS(8115), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(8117), 1, anon_sym_AMP_AMP, - ACTIONS(8119), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5418), 33, anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8125), 1, - sym_auto, - ACTIONS(8127), 1, - anon_sym_decltype, - STATE(3757), 1, - sym_parameter_list, - STATE(5730), 1, - sym_decltype_auto, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6677), 1, - sym__abstract_declarator, - STATE(5098), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7980), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - ACTIONS(8121), 11, anon_sym___extension__, + anon_sym_extern, + 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, @@ -499241,28 +501267,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [157591] = 8, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [156356] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(7258), 1, + ACTIONS(7113), 1, anon_sym_LT, - STATE(1935), 1, + STATE(1974), 1, sym_template_argument_list, - STATE(5069), 1, + STATE(5246), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(4137), 4, + ACTIONS(5593), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym_COLON, - ACTIONS(8141), 4, + ACTIONS(8197), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4145), 28, + ACTIONS(5595), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -499291,147 +501324,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [157649] = 24, + [156414] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(6151), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6648), 6, + ACTIONS(6153), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [157739] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7258), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - ACTIONS(5338), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4163), 33, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, anon_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___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACE, + anon_sym_QMARK, 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, - [157793] = 6, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [156486] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(7258), 1, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(7113), 1, anon_sym_LT, - STATE(1935), 1, + STATE(5093), 1, sym_template_argument_list, - ACTIONS(4968), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4975), 33, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5009), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5012), 3, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, + ACTIONS(5007), 31, + anon_sym_AMP, anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + 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, @@ -499442,156 +501425,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [157847] = 24, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [156544] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6642), 6, + ACTIONS(6675), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, - [157937] = 3, + [156634] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6299), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7663), 1, + anon_sym_const, + ACTIONS(7666), 1, + anon_sym___inline, + ACTIONS(8219), 1, + anon_sym___attribute__, + ACTIONS(8222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8225), 1, + anon_sym___declspec, + ACTIONS(8228), 1, + anon_sym_virtual, + ACTIONS(8231), 1, + anon_sym_alignas, + ACTIONS(7070), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6301), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK, + ACTIONS(7072), 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, + ACTIONS(8216), 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, + STATE(4746), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(8213), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [156702] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [157984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5316), 16, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6151), 5, 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(2871), 23, + ACTIONS(6153), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -499600,404 +501597,253 @@ 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_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, - [158031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6234), 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_identifier, - ACTIONS(6236), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + [156770] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym___inline, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8001), 1, + anon_sym___declspec, + ACTIONS(8007), 1, + anon_sym_virtual, + ACTIONS(8009), 1, + anon_sym_alignas, + ACTIONS(7131), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(7133), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [158078] = 26, + ACTIONS(7999), 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, + STATE(4746), 9, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_alignas_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [156838] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8018), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8024), 1, - anon_sym_PIPE, - ACTIONS(8028), 1, - anon_sym_AMP, - ACTIONS(8034), 1, - anon_sym_GT_EQ, - ACTIONS(8040), 1, - anon_sym_QMARK, - ACTIONS(8042), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, - anon_sym_bitor, - ACTIONS(8046), 1, - anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8020), 2, + ACTIONS(6151), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8022), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8026), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8036), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6634), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(8030), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8032), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [158171] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8133), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(8135), 1, anon_sym_QMARK, - ACTIONS(8143), 1, - anon_sym_COMMA, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - STATE(7823), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [158268] = 28, + [156904] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8145), 1, - anon_sym_COMMA, - ACTIONS(8147), 1, - anon_sym_RBRACE, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7892), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(6151), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [158365] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(6153), 19, anon_sym_DOT_DOT_DOT, - ACTIONS(8149), 1, anon_sym_COMMA, - ACTIONS(8155), 1, - anon_sym_SLASH, - ACTIONS(8161), 1, - anon_sym_PIPE, - ACTIONS(8165), 1, - anon_sym_AMP, - ACTIONS(8171), 1, + 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, - ACTIONS(8175), 1, - anon_sym_RBRACK, - ACTIONS(8177), 1, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - ACTIONS(8179), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, - anon_sym_bitor, - ACTIONS(8183), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - STATE(7664), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8153), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8157), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8167), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8169), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [158462] = 28, + [156974] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8185), 1, - anon_sym_COMMA, - ACTIONS(8187), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7665), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [158559] = 3, + ACTIONS(6679), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [157068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 16, + ACTIONS(6700), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500014,7 +501860,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6232), 23, + sym_literal_suffix, + ACTIONS(6702), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -500038,1019 +501885,642 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [158606] = 28, + [157116] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8149), 1, - anon_sym_COMMA, - ACTIONS(8155), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8189), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8191), 1, - anon_sym_RBRACK, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, + anon_sym_COMMA, + ACTIONS(8238), 1, + anon_sym_SEMI, + ACTIONS(8240), 1, + anon_sym_RBRACE, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7638), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(6131), 2, + STATE(7741), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [158703] = 28, + [157216] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8231), 1, - anon_sym_GT2, - STATE(3944), 1, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(8002), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [158800] = 28, + ACTIONS(6153), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + [157304] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8235), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7889), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(6151), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [158897] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1874), 1, - sym__fold_operator, - ACTIONS(8239), 13, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8169), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(8237), 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, - [158946] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6313), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6315), 23, + ACTIONS(6153), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [158993] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - ACTIONS(8193), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, - anon_sym_SLASH, - ACTIONS(8207), 1, - anon_sym_PIPE, - ACTIONS(8211), 1, - anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - ACTIONS(8223), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, - anon_sym_bitor, - ACTIONS(8227), 1, - anon_sym_bitand, - ACTIONS(8241), 1, - anon_sym_GT2, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - STATE(7731), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8203), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [159090] = 28, + [157380] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8243), 1, - anon_sym_COMMA, - ACTIONS(8245), 1, - anon_sym_RBRACE, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7748), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [159187] = 28, + ACTIONS(6662), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [157470] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, - anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(6151), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, - anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8247), 1, - anon_sym_GT2, - STATE(3944), 1, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7704), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8203), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8205), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8209), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8229), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [159284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2148), 16, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(2146), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(8179), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8189), 2, 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, - [159331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5151), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5153), 28, + ACTIONS(6153), 11, 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_LBRACK, + 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [159378] = 28, + [157554] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8249), 1, - anon_sym_COMMA, - ACTIONS(8251), 1, - anon_sym_RBRACK, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7697), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [159475] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(8018), 1, - anon_sym_SLASH, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8016), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8036), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6170), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6471), 4, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [159544] = 28, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [157648] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8253), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7751), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [159641] = 28, + ACTIONS(6618), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [157742] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8255), 1, - anon_sym_GT2, - STATE(3944), 1, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7970), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [159738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6248), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6250), 23, + ACTIONS(6654), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [159785] = 28, + [157832] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(6151), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8185), 1, - anon_sym_COMMA, - ACTIONS(8257), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7688), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [159882] = 17, + ACTIONS(6153), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [157914] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(7992), 1, - sym_auto, - ACTIONS(7994), 1, - anon_sym_decltype, - ACTIONS(8259), 1, + ACTIONS(8199), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8201), 1, anon_sym_AMP_AMP, - ACTIONS(8263), 1, + ACTIONS(8203), 1, anon_sym_AMP, - STATE(4113), 1, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(8209), 1, + sym_auto, + ACTIONS(8211), 1, + anon_sym_decltype, + STATE(3863), 1, sym_parameter_list, - STATE(5427), 1, + STATE(5803), 1, sym_decltype_auto, - STATE(6377), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(6754), 1, + STATE(6698), 1, sym__abstract_declarator, - STATE(5248), 2, + STATE(5107), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8002), 9, + ACTIONS(8085), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - ACTIONS(7429), 11, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -501062,111 +502532,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [159957] = 28, + [157990] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8265), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7657), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(6151), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [160054] = 13, + ACTIONS(6153), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [158068] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + STATE(4124), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4135), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(7121), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4143), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6125), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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, + [158126] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(8018), 1, - anon_sym_SLASH, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, + ACTIONS(5043), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5046), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + ACTIONS(5039), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [158178] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(8244), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(5300), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6312), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8242), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [158236] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5626), 1, + sym_literal_suffix, + ACTIONS(4145), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6170), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 20, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(4137), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -501175,124 +502778,273 @@ 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [158286] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + ACTIONS(5397), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4161), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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, + [158340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6214), 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, - [160121] = 28, + anon_sym_DOT, + sym_identifier, + ACTIONS(6216), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [158388] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8233), 1, + ACTIONS(8246), 1, anon_sym_COMMA, - ACTIONS(8267), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8248), 1, + anon_sym_RBRACE, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7956), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + STATE(7783), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [160218] = 15, + [158485] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8018), 1, + ACTIONS(6151), 1, + anon_sym_PIPE, + ACTIONS(8121), 1, anon_sym_SLASH, - ACTIONS(8042), 1, + ACTIONS(8131), 1, + anon_sym_AMP, + ACTIONS(8137), 1, + anon_sym_GT_EQ, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - STATE(2791), 1, + ACTIONS(8149), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8036), 2, + ACTIONS(8139), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8133), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8135), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [158566] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8121), 1, + anon_sym_SLASH, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8117), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8119), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6170), 5, + ACTIONS(6151), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 17, + ACTIONS(6153), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -501304,350 +503056,608 @@ static const uint16_t ts_small_parse_table[] = { 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, - [160289] = 28, + [158635] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8217), 1, + ACTIONS(8274), 1, anon_sym_LT_LT, - ACTIONS(8219), 1, + ACTIONS(8276), 1, anon_sym_GT_GT, - ACTIONS(8221), 1, + ACTIONS(8278), 1, anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8269), 1, + ACTIONS(8288), 1, anon_sym_GT2, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - STATE(7993), 1, + STATE(4023), 1, + sym_argument_list, + STATE(7914), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, + ACTIONS(8286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8272), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [160386] = 28, + [158732] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8185), 1, + ACTIONS(8290), 1, anon_sym_COMMA, - ACTIONS(8271), 1, + ACTIONS(8292), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7997), 1, + STATE(7710), 1, aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [160483] = 17, + [158829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(8018), 1, + ACTIONS(6324), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8034), 1, - anon_sym_GT_EQ, - ACTIONS(8042), 1, - anon_sym_LT_EQ_GT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6170), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8016), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8036), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8032), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 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, + ACTIONS(6326), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [160558] = 28, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [158876] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8273), 1, - anon_sym_COMMA, - ACTIONS(8275), 1, - anon_sym_RBRACE, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + ACTIONS(8294), 1, + anon_sym_GT2, + STATE(4022), 1, sym_subscript_argument_list, - STATE(7982), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + STATE(7863), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [160655] = 28, + [158973] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8296), 1, + sym_identifier, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8300), 1, + anon_sym_STAR, + ACTIONS(8302), 1, + anon_sym_AMP_AMP, + ACTIONS(8304), 1, + anon_sym_AMP, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7117), 1, + sym__field_declarator, + STATE(7241), 1, + sym_operator_name, + STATE(8724), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4797), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5561), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6935), 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(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [159050] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1842), 1, + sym__fold_operator, + ACTIONS(8308), 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(8306), 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, + [159099] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8310), 1, + anon_sym_COMMA, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8336), 1, + anon_sym_RBRACK, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8185), 1, - anon_sym_COMMA, - ACTIONS(8277), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7929), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, + STATE(7795), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [159196] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8346), 1, + sym_identifier, + ACTIONS(8348), 1, + anon_sym_STAR, + ACTIONS(8350), 1, + anon_sym_AMP_AMP, + ACTIONS(8352), 1, + anon_sym_AMP, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6732), 1, + sym__field_declarator, + STATE(6840), 1, + sym_operator_name, + STATE(8771), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5515), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6935), 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(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [159273] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(6106), 1, + anon_sym_LBRACK, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_AMP, + STATE(4295), 1, + sym_parameter_list, + STATE(6348), 1, + sym__scope_resolution, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6903), 1, + sym__declarator, + STATE(7149), 1, + sym__abstract_declarator, + STATE(8593), 1, + sym_ms_based_modifier, + ACTIONS(8031), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [159360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6465), 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, - [160752] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6467), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [159407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 11, + ACTIONS(5195), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501659,7 +503669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5153), 28, + ACTIONS(5197), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -501688,10 +503698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [160799] = 3, + [159454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 11, + ACTIONS(5246), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501703,7 +503713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5153), 28, + ACTIONS(5248), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -501732,529 +503742,819 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [160846] = 18, + [159501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(8018), 1, + ACTIONS(6385), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8034), 1, - anon_sym_GT_EQ, - ACTIONS(8042), 1, - anon_sym_LT_EQ_GT, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6170), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8016), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8036), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8030), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8032), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 13, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6387), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - [160923] = 20, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [159548] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6170), 1, - anon_sym_PIPE, - ACTIONS(8018), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8028), 1, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8042), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8046), 1, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8036), 2, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8030), 3, + ACTIONS(8354), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8032), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - [161004] = 21, + [159643] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6170), 1, - anon_sym_PIPE, - ACTIONS(8018), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8310), 1, + anon_sym_COMMA, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8028), 1, + ACTIONS(8322), 1, + anon_sym_PIPE, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8042), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8046), 1, + ACTIONS(8342), 1, + anon_sym_bitor, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8356), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7966), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8026), 2, + ACTIONS(8318), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8320), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8036), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8030), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8032), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + [159740] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8296), 1, + sym_identifier, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8300), 1, + anon_sym_STAR, + ACTIONS(8302), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [161087] = 22, + ACTIONS(8304), 1, + anon_sym_AMP, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7117), 1, + sym__field_declarator, + STATE(7241), 1, + sym_operator_name, + STATE(8724), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5561), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6935), 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(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [159817] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8018), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8024), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8028), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8042), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8046), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8358), 1, + anon_sym_COMMA, + ACTIONS(8360), 1, + anon_sym_RBRACE, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7872), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8026), 2, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8036), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8030), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8032), 3, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [159914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6453), 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, - ACTIONS(6172), 9, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6455), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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_AMP_AMP, + anon_sym_CARET, + anon_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_or, - anon_sym_and, - [161172] = 28, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [159961] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8233), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8279), 1, + ACTIONS(8364), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7987), 1, + STATE(7943), 1, aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161269] = 26, + [160058] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8018), 1, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8024), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8028), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8034), 1, - anon_sym_GT_EQ, - ACTIONS(8040), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, anon_sym_QMARK, - ACTIONS(8042), 1, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8046), 1, + ACTIONS(8284), 1, anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + ACTIONS(8366), 1, + anon_sym_GT2, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + STATE(7780), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8020), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8022), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8026), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8036), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8030), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8032), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(8281), 3, + [160155] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(8003), 1, + sym_auto, + ACTIONS(8005), 1, + anon_sym_decltype, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8368), 1, + anon_sym_STAR, + ACTIONS(8370), 1, + anon_sym_AMP_AMP, + ACTIONS(8372), 1, + anon_sym_AMP, + STATE(3682), 1, + sym_decltype_auto, + STATE(4131), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6809), 1, + sym__abstract_declarator, + STATE(5282), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8085), 9, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [161362] = 28, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [160230] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8233), 1, + ACTIONS(8290), 1, anon_sym_COMMA, - ACTIONS(8283), 1, + ACTIONS(8374), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7700), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + STATE(7757), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161459] = 28, + [160327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - ACTIONS(8193), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(5183), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8207), 1, anon_sym_PIPE, - ACTIONS(8211), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(8221), 1, + anon_sym_DOT, + ACTIONS(5185), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(8223), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8227), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8285), 1, - anon_sym_GT2, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - STATE(7684), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [160374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2186), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 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, + sym_identifier, + ACTIONS(2184), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8205), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8209), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8215), 4, + 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, + [160421] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8296), 1, + sym_identifier, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8300), 1, + anon_sym_STAR, + ACTIONS(8302), 1, + anon_sym_AMP_AMP, + ACTIONS(8304), 1, + anon_sym_AMP, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7135), 1, + sym__field_declarator, + STATE(7241), 1, + sym_operator_name, + STATE(8724), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5571), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6935), 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(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [160498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5201), 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, - [161556] = 3, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5203), 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, + [160545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 11, + ACTIONS(5167), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -502266,7 +504566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5174), 28, + ACTIONS(5169), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -502295,693 +504595,823 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [161603] = 27, + [160592] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(3886), 1, + anon_sym_LBRACE, + ACTIONS(7995), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + STATE(5319), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5943), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8074), 1, anon_sym_PIPE, - ACTIONS(8078), 1, anon_sym_AMP, - ACTIONS(8084), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8088), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5945), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8092), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [160645] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8097), 1, + sym_auto, + ACTIONS(8099), 1, + anon_sym_decltype, + ACTIONS(8376), 1, + anon_sym_STAR, + ACTIONS(8378), 1, + anon_sym_AMP_AMP, + ACTIONS(8380), 1, + anon_sym_AMP, + STATE(4136), 1, + sym_parameter_list, + STATE(5496), 1, + sym_decltype_auto, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6779), 1, + sym__abstract_declarator, + STATE(5298), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8107), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [160720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6447), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 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, + sym_identifier, + ACTIONS(6449), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8289), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(8080), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 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, + anon_sym_DASH_GT, + [160767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6481), 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, - [161698] = 28, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6483), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [160814] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8233), 1, + ACTIONS(8290), 1, anon_sym_COMMA, - ACTIONS(8291), 1, + ACTIONS(8382), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7702), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + STATE(7986), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161795] = 24, + [160911] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8018), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8024), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8028), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8042), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8046), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8290), 1, + anon_sym_COMMA, + ACTIONS(8384), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7964), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8020), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8022), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8026), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8036), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8030), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8032), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6642), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [161884] = 28, + [161008] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8293), 1, - anon_sym_GT2, - STATE(3944), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(8386), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7785), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + STATE(7641), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [161981] = 28, + [161105] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8249), 1, + ACTIONS(8388), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8390), 1, anon_sym_RBRACK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7632), 1, + STATE(7721), 1, aux_sym_subscript_argument_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162078] = 3, + [161202] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8250), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, + ACTIONS(8264), 1, anon_sym_PIPE, + ACTIONS(8268), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8282), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8284), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6423), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(8392), 1, + anon_sym_GT2, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + STATE(7650), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8262), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8266), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8272), 4, + anon_sym_GT, 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, - [162125] = 23, + anon_sym_LT_EQ, + anon_sym_LT, + [161299] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8018), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8024), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8028), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8042), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8046), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8396), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8022), 2, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8026), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8036), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8030), 3, + ACTIONS(8394), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8032), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 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, - [162212] = 12, + [161394] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8018), 1, + ACTIONS(8250), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8016), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6170), 7, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8264), 1, anon_sym_PIPE, + ACTIONS(8268), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(8274), 1, anon_sym_LT_LT, + ACTIONS(8276), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(8278), 1, anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8282), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8284), 1, anon_sym_bitand, - anon_sym_not_eq, - [162277] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2144), 16, + ACTIONS(8398), 1, + anon_sym_GT2, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + STATE(7959), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(2142), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8262), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8266), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8272), 4, + anon_sym_GT, 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, - [162324] = 28, + anon_sym_LT_EQ, + anon_sym_LT, + [161491] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8185), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8400), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7937), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, + STATE(7839), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162421] = 28, + [161588] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8299), 1, - anon_sym_RPAREN, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + ACTIONS(8402), 1, + anon_sym_GT2, + STATE(4022), 1, sym_subscript_argument_list, - STATE(7608), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + STATE(7738), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [162518] = 3, + [161685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 16, + ACTIONS(5179), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -502998,7 +505428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5178), 23, + ACTIONS(5181), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -503022,18 +505452,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [162565] = 7, + [161732] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8301), 1, + ACTIONS(8404), 1, anon_sym_PIPE_PIPE, - ACTIONS(8303), 1, + ACTIONS(8406), 1, anon_sym_AMP_AMP, - ACTIONS(8305), 1, + ACTIONS(8408), 1, anon_sym_or, - ACTIONS(8307), 1, + ACTIONS(8410), 1, anon_sym_and, - ACTIONS(6194), 14, + ACTIONS(6165), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503048,7 +505478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6196), 21, + ACTIONS(6167), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -503070,349 +505500,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [162620] = 28, + [161787] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8309), 1, - anon_sym_GT2, - STATE(3944), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8412), 1, + anon_sym_COMMA, + ACTIONS(8414), 1, + anon_sym_RBRACE, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7708), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + STATE(7910), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [162717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6413), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6415), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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, - [162764] = 28, + [161884] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8311), 1, + ACTIONS(8416), 1, anon_sym_RPAREN, - ACTIONS(8313), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7905), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [162861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5172), 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_identifier, - ACTIONS(5174), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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, - [162908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6407), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6409), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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, - [162955] = 28, + [161981] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8249), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8315), 1, - anon_sym_RBRACK, - STATE(2791), 1, + ACTIONS(8418), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7941), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6131), 2, + STATE(7870), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [163052] = 3, + [162078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 16, + ACTIONS(5228), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503429,7 +505727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6446), 23, + ACTIONS(5230), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -503453,79 +505751,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [163099] = 28, + [162125] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8149), 1, - anon_sym_COMMA, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8317), 1, - anon_sym_RBRACK, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8420), 1, + anon_sym_COMMA, + ACTIONS(8422), 1, + anon_sym_RBRACE, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7638), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(6131), 2, + STATE(7811), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [163196] = 3, + [162222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 16, + ACTIONS(2136), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503542,7 +505840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6367), 23, + ACTIONS(2134), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -503566,262 +505864,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [163243] = 26, + [162269] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8097), 1, + sym_auto, + ACTIONS(8099), 1, + anon_sym_decltype, + ACTIONS(8376), 1, + anon_sym_STAR, + ACTIONS(8378), 1, + anon_sym_AMP_AMP, + ACTIONS(8380), 1, + anon_sym_AMP, + STATE(4136), 1, + sym_parameter_list, + STATE(5496), 1, + sym_decltype_auto, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6743), 1, + sym__abstract_declarator, + STATE(5332), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8085), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162344] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8018), 1, + ACTIONS(8121), 1, anon_sym_SLASH, - ACTIONS(8024), 1, - anon_sym_PIPE, - ACTIONS(8028), 1, - anon_sym_AMP, - ACTIONS(8034), 1, - anon_sym_GT_EQ, - ACTIONS(8040), 1, - anon_sym_QMARK, - ACTIONS(8042), 1, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, - anon_sym_bitor, - ACTIONS(8046), 1, - anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8020), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8022), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8026), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8036), 2, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6654), 3, + ACTIONS(6151), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 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__, - ACTIONS(8030), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8032), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [163336] = 28, + [162415] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8121), 1, anon_sym_SLASH, - ACTIONS(8161), 1, - anon_sym_PIPE, - ACTIONS(8165), 1, - anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8137), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, - anon_sym_bitor, - ACTIONS(8183), 1, - anon_sym_bitand, - ACTIONS(8249), 1, - anon_sym_COMMA, - ACTIONS(8319), 1, - anon_sym_RBRACK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7718), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(6151), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8159), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8163), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8169), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [163433] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(7868), 1, - anon_sym_LPAREN2, - STATE(5289), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6001), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8135), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6003), 24, + ACTIONS(6153), 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_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_GT2, - [163486] = 28, + [162490] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8185), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8321), 1, + ACTIONS(8424), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7802), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, + STATE(7660), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [163583] = 3, + [162587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 16, + ACTIONS(5171), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503838,7 +506125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5153), 23, + ACTIONS(5173), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -503862,10 +506149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [163630] = 3, + [162634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 16, + ACTIONS(5171), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503882,7 +506169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5153), 23, + ACTIONS(5173), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -503906,10 +506193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [163677] = 3, + [162681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 16, + ACTIONS(5171), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503926,7 +506213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5153), 23, + ACTIONS(5173), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -503950,113 +506237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [163724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8325), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(8323), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [163771] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8327), 1, - sym_identifier, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8331), 1, - anon_sym_STAR, - ACTIONS(8333), 1, - anon_sym_AMP_AMP, - ACTIONS(8335), 1, - anon_sym_AMP, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6592), 1, - sym__field_declarator, - STATE(6872), 1, - sym_operator_name, - STATE(8907), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5441), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5506), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6886), 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(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [163848] = 3, + [162728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 16, + ACTIONS(6381), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504073,7 +506257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6309), 23, + ACTIONS(6383), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -504097,489 +506281,515 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [163895] = 3, + [162775] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6387), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8250), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, + ACTIONS(8264), 1, anon_sym_PIPE, + ACTIONS(8268), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8282), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8284), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6389), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(8426), 1, + anon_sym_GT2, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + STATE(8020), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8262), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8266), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8272), 4, + anon_sym_GT, 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, - [163942] = 26, + anon_sym_LT_EQ, + anon_sym_LT, + [162872] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8018), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8024), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8028), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8040), 1, - anon_sym_QMARK, - ACTIONS(8042), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8046), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8238), 1, + anon_sym_SEMI, + ACTIONS(8428), 1, + anon_sym_COMMA, + ACTIONS(8431), 1, + anon_sym_RBRACE, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8020), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8022), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8026), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8036), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6309), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(8030), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8032), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164035] = 18, + [162969] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8327), 1, - sym_identifier, - ACTIONS(8329), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(8331), 1, - anon_sym_STAR, - ACTIONS(8333), 1, - anon_sym_AMP_AMP, - ACTIONS(8335), 1, - anon_sym_AMP, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6592), 1, - sym__field_declarator, - STATE(6872), 1, - sym_operator_name, - STATE(8907), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4917), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5506), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6886), 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(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [164112] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5147), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, + ACTIONS(8177), 1, anon_sym_PIPE, + ACTIONS(8181), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8187), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5149), 28, - anon_sym_DOT_DOT_DOT, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8240), 1, + anon_sym_RBRACE, + ACTIONS(8433), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + STATE(7741), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [164159] = 28, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [163066] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8337), 1, - anon_sym_COMMA, - ACTIONS(8339), 1, - anon_sym_RBRACE, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + ACTIONS(8435), 1, + anon_sym_GT2, + STATE(4022), 1, sym_subscript_argument_list, - STATE(7681), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + STATE(7938), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [164256] = 3, + [163163] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6252), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, + ACTIONS(8177), 1, anon_sym_PIPE, + ACTIONS(8181), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8195), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6254), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8362), 1, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(8437), 1, + anon_sym_RPAREN, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + STATE(7828), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8189), 2, 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, - [164303] = 28, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [163260] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8217), 1, + ACTIONS(8274), 1, anon_sym_LT_LT, - ACTIONS(8219), 1, + ACTIONS(8276), 1, anon_sym_GT_GT, - ACTIONS(8221), 1, + ACTIONS(8278), 1, anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8341), 1, + ACTIONS(8439), 1, anon_sym_GT2, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - STATE(7820), 1, + STATE(4023), 1, + sym_argument_list, + STATE(7815), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, + ACTIONS(8286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8272), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [164400] = 28, + [163357] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8343), 1, - anon_sym_GT2, - STATE(3944), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8290), 1, + anon_sym_COMMA, + ACTIONS(8441), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7984), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + STATE(7689), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [164497] = 3, + [163454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 11, + ACTIONS(6281), 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(5220), 28, + sym_identifier, + ACTIONS(6283), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -504588,28 +506798,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [163501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6431), 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_identifier, + ACTIONS(6433), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [164544] = 3, + [163548] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 11, + ACTIONS(3886), 1, + anon_sym_LBRACE, + ACTIONS(7995), 1, + anon_sym_LPAREN2, + STATE(5280), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6030), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504621,10 +506874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5178), 28, + ACTIONS(6032), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -504646,196 +506898,366 @@ 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, - [164591] = 28, + [163601] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8345), 1, - anon_sym_GT2, - STATE(3944), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(8443), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7964), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + STATE(7768), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [164688] = 3, + [163698] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(6106), 1, + anon_sym_LBRACK, + ACTIONS(6367), 1, + anon_sym_STAR, + ACTIONS(6369), 1, + anon_sym_AMP_AMP, + ACTIONS(6371), 1, + anon_sym_AMP, + STATE(4175), 1, + sym_parameter_list, + STATE(6348), 1, + sym__scope_resolution, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6903), 1, + sym__declarator, + STATE(7169), 1, + sym__abstract_declarator, + STATE(8593), 1, + sym_ms_based_modifier, + ACTIONS(8031), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163785] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8121), 1, anon_sym_SLASH, + ACTIONS(8137), 1, + anon_sym_GT_EQ, + ACTIONS(8145), 1, + anon_sym_LT_EQ_GT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6151), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8117), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8119), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8139), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8133), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8135), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2142), 28, + ACTIONS(6153), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_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_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_GT2, - anon_sym_requires, - [164735] = 28, + [163862] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, + ACTIONS(7227), 1, anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8347), 1, - anon_sym_GT2, - STATE(3944), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8445), 1, + anon_sym_RPAREN, + ACTIONS(8447), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7611), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [164832] = 3, + [163959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5420), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(5418), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_template, + anon_sym_operator, + [164008] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8451), 1, + anon_sym_LPAREN2, + ACTIONS(8453), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8449), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [164057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 16, + ACTIONS(8406), 1, + anon_sym_AMP_AMP, + ACTIONS(8410), 1, + anon_sym_and, + ACTIONS(6233), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504845,14 +507267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5186), 23, + ACTIONS(6235), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -504862,7 +507283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -504876,10 +507296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [164879] = 3, + [164108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6329), 16, + ACTIONS(6265), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504896,7 +507316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6331), 23, + ACTIONS(6267), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -504920,79 +507340,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [164926] = 28, + [164155] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8349), 1, - anon_sym_RPAREN, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + ACTIONS(8455), 1, + anon_sym_GT2, + STATE(4022), 1, sym_subscript_argument_list, - STATE(7678), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + STATE(7704), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [165023] = 3, + [164252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6325), 16, + ACTIONS(6411), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505009,7 +507429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6327), 23, + ACTIONS(6413), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -505033,231 +507453,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [165070] = 28, + [164299] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8131), 1, - anon_sym_SEMI, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8351), 1, + ACTIONS(8388), 1, anon_sym_COMMA, - ACTIONS(8354), 1, - anon_sym_RBRACE, - STATE(2791), 1, + ACTIONS(8457), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7895), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165167] = 28, + [164396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(3924), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8074), 1, anon_sym_PIPE, - ACTIONS(8078), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8289), 1, - anon_sym_SEMI, - ACTIONS(8356), 1, - anon_sym_COMMA, - ACTIONS(8359), 1, - anon_sym_RBRACE, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [165264] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, anon_sym_DOT, - ACTIONS(7906), 1, + sym_identifier, + ACTIONS(3920), 23, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8361), 1, anon_sym_COMMA, - ACTIONS(8363), 1, - anon_sym_RBRACE, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - STATE(7717), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [165361] = 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, + anon_sym_DASH_GT, + [164443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 11, + ACTIONS(6269), 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(5194), 28, + sym_identifier, + ACTIONS(6271), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505266,28 +507600,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [165408] = 3, + [164490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 16, + ACTIONS(6334), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505304,7 +507630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6458), 23, + ACTIONS(6336), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -505328,24 +507654,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [165455] = 3, + [164537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 11, + ACTIONS(5238), 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(5182), 28, + sym_identifier, + ACTIONS(5240), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -505354,28 +507688,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [165502] = 3, + [164584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 16, + ACTIONS(6403), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505392,7 +507718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6462), 23, + ACTIONS(6405), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -505407,19 +507733,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [165549] = 3, + 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, + [164631] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8250), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, + anon_sym_SLASH, + ACTIONS(8264), 1, + anon_sym_PIPE, + ACTIONS(8268), 1, + anon_sym_AMP, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8282), 1, + anon_sym_bitor, + ACTIONS(8284), 1, + anon_sym_bitand, + ACTIONS(8459), 1, + anon_sym_GT2, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + STATE(7820), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8272), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [164728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 16, + ACTIONS(5242), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505436,7 +507831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5149), 23, + ACTIONS(5244), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -505460,167 +507855,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [165596] = 28, + [164775] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8233), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8365), 1, + ACTIONS(8461), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7833), 1, + STATE(7974), 1, aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165693] = 24, + [164872] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8018), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8024), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8028), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8042), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8046), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8388), 1, + anon_sym_COMMA, + ACTIONS(8463), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7756), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8020), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8022), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8026), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8036), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8030), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8032), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6609), 5, + [164969] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, anon_sym_QMARK, - [165782] = 3, + ACTIONS(8465), 1, + anon_sym_COMMA, + ACTIONS(8467), 1, + anon_sym_RBRACE, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + STATE(7901), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [165066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 16, + ACTIONS(3886), 1, + anon_sym_LBRACE, + ACTIONS(7995), 1, + anon_sym_LPAREN2, + STATE(5290), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5931), 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(5220), 23, + ACTIONS(5933), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -505628,124 +508094,129 @@ static const uint16_t ts_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, - [165829] = 28, + anon_sym_GT2, + [165119] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8367), 1, - anon_sym_COMMA, - ACTIONS(8369), 1, - anon_sym_RBRACE, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + ACTIONS(8469), 1, + anon_sym_GT2, + STATE(4022), 1, sym_subscript_argument_list, - STATE(7834), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + STATE(7882), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [165926] = 18, + [165216] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8371), 1, + ACTIONS(8296), 1, sym_identifier, - ACTIONS(8373), 1, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8300), 1, anon_sym_STAR, - ACTIONS(8375), 1, + ACTIONS(8302), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, + ACTIONS(8304), 1, anon_sym_AMP, - STATE(5775), 1, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(7100), 1, + STATE(7090), 1, sym__field_declarator, - STATE(7164), 1, + STATE(7241), 1, sym_operator_name, - STATE(8978), 1, + STATE(8724), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5441), 2, + STATE(4788), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5481), 2, + STATE(5548), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6886), 7, + STATE(6935), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -505753,7 +508224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -505766,282 +508237,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [166003] = 28, + [165293] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8121), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8127), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8131), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8137), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8143), 1, + anon_sym_QMARK, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8147), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8149), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8379), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7709), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8123), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8125), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8129), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8135), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166100] = 28, + ACTIONS(8471), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [165386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, - anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(6151), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8121), 1, + anon_sym_SLASH, + ACTIONS(8131), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8137), 1, + anon_sym_GT_EQ, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, - anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8149), 1, anon_sym_bitand, - ACTIONS(8381), 1, - anon_sym_GT2, - STATE(3944), 1, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7838), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8205), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8129), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8139), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8135), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [166197] = 28, + ACTIONS(6153), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [165469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(6461), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8074), 1, anon_sym_PIPE, - ACTIONS(8078), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8092), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8233), 1, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6463), 23, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(8383), 1, - anon_sym_RPAREN, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - STATE(7737), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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(8064), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [165516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6457), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 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, + sym_identifier, + ACTIONS(6459), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 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, + anon_sym_DASH_GT, + [165563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6273), 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, - [166294] = 24, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6275), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [165610] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8018), 1, + ACTIONS(8250), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8024), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8028), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8034), 1, - anon_sym_GT_EQ, - ACTIONS(8042), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8046), 1, + ACTIONS(8284), 1, anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + ACTIONS(8473), 1, + anon_sym_GT2, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + STATE(7980), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8020), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8022), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8026), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8036), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8030), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8032), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6628), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [166383] = 3, + [165707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 16, + ACTIONS(5250), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -506058,7 +508587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6293), 23, + ACTIONS(5252), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -506082,10 +508611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [166430] = 3, + [165754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 16, + ACTIONS(5224), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -506102,7 +508631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6359), 23, + ACTIONS(5226), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -506126,95 +508655,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [166477] = 23, + [165801] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(6089), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6397), 1, - anon_sym_STAR, - ACTIONS(6399), 1, - anon_sym_AMP_AMP, - ACTIONS(6401), 1, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, anon_sym_AMP, - STATE(4159), 1, - sym_parameter_list, - STATE(6263), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6844), 1, - sym__declarator, - STATE(7128), 1, - sym__abstract_declarator, - STATE(8562), 1, - sym_ms_based_modifier, - ACTIONS(7914), 2, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8362), 1, anon_sym_COMMA, + ACTIONS(8475), 1, anon_sym_RPAREN, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [166564] = 6, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + STATE(7727), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [165898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(7868), 1, - anon_sym_LPAREN2, - STATE(5287), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5997), 11, + ACTIONS(6277), 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(5999), 24, + sym_identifier, + ACTIONS(6279), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -506222,47 +508758,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_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [166617] = 3, + [165945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 16, + ACTIONS(5179), 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(6305), 23, + ACTIONS(5181), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -506271,89 +508794,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [166664] = 28, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [165992] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8233), 1, + ACTIONS(8477), 1, anon_sym_COMMA, - ACTIONS(8385), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8479), 1, + anon_sym_RBRACE, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7617), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + STATE(7694), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166761] = 3, + [166089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 16, + ACTIONS(6289), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -506370,7 +508901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5194), 23, + ACTIONS(6291), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -506394,10 +508925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [166808] = 3, + [166136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 16, + ACTIONS(6293), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -506414,7 +508945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5182), 23, + ACTIONS(6295), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -506438,82 +508969,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [166855] = 23, + [166183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, + ACTIONS(5224), 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(5226), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(6391), 1, anon_sym_STAR, - ACTIONS(6393), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6395), 1, + 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, + [166230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5250), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(4309), 1, - sym_parameter_list, - STATE(6263), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6844), 1, - sym__declarator, - STATE(7137), 1, - sym__abstract_declarator, - STATE(8562), 1, - sym_ms_based_modifier, - ACTIONS(7914), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5252), 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, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [166942] = 4, + anon_sym_requires, + [166277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8389), 1, + ACTIONS(8483), 6, anon_sym_LPAREN2, - ACTIONS(8391), 5, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(8387), 33, + ACTIONS(8481), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_extern, @@ -506547,10 +509101,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [166991] = 3, + [166324] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8346), 1, + sym_identifier, + ACTIONS(8348), 1, + anon_sym_STAR, + ACTIONS(8350), 1, + anon_sym_AMP_AMP, + ACTIONS(8352), 1, + anon_sym_AMP, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6629), 1, + sym__field_declarator, + STATE(6840), 1, + sym_operator_name, + STATE(8771), 1, + sym_ms_based_modifier, + ACTIONS(3464), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4894), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5555), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6935), 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(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [166401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 16, + ACTIONS(6308), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -506567,7 +509180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6297), 23, + ACTIONS(6310), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -506591,10 +509204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [167038] = 3, + [166448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 16, + ACTIONS(6300), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -506611,7 +509224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6228), 23, + ACTIONS(6302), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -506635,355 +509248,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [167085] = 28, + [166495] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8233), 1, + ACTIONS(8485), 1, anon_sym_COMMA, - ACTIONS(8393), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8487), 1, + anon_sym_RBRACE, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7959), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + STATE(7709), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167182] = 28, + [166592] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8395), 1, - anon_sym_GT2, - STATE(3944), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(8489), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7961), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + STATE(7733), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [167279] = 28, + [166689] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8217), 1, + ACTIONS(8274), 1, anon_sym_LT_LT, - ACTIONS(8219), 1, + ACTIONS(8276), 1, anon_sym_GT_GT, - ACTIONS(8221), 1, + ACTIONS(8278), 1, anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8397), 1, + ACTIONS(8491), 1, anon_sym_GT2, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - STATE(7852), 1, + STATE(4023), 1, + sym_argument_list, + STATE(7888), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, + ACTIONS(8286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8272), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [167376] = 28, + [166786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(5228), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8074), 1, anon_sym_PIPE, - ACTIONS(8078), 1, anon_sym_AMP, - ACTIONS(8084), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8399), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5230), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(8401), 1, - anon_sym_RBRACE, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - STATE(7829), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 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(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [167473] = 28, + anon_sym_DASH_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, + [166833] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8403), 1, - anon_sym_GT2, - STATE(3944), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8354), 1, + anon_sym_SEMI, + ACTIONS(8493), 1, + anon_sym_COMMA, + ACTIONS(8496), 1, + anon_sym_RBRACE, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7944), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [167570] = 3, + [166930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 16, + ACTIONS(6443), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -507000,7 +509588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6258), 23, + ACTIONS(6445), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -507024,75 +509612,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [167617] = 24, + [166977] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8018), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8121), 1, anon_sym_SLASH, - ACTIONS(8024), 1, + ACTIONS(8127), 1, anon_sym_PIPE, - ACTIONS(8028), 1, + ACTIONS(8131), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(8137), 1, anon_sym_GT_EQ, - ACTIONS(8042), 1, + ACTIONS(8143), 1, + anon_sym_QMARK, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, + ACTIONS(8147), 1, anon_sym_bitor, - ACTIONS(8046), 1, + ACTIONS(8149), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8020), 2, + ACTIONS(8123), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8022), 2, + ACTIONS(8125), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8026), 2, + ACTIONS(8129), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8036), 2, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8030), 3, + ACTIONS(6679), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8032), 3, + ACTIONS(8135), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6648), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [167706] = 3, + [167070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 16, + ACTIONS(6352), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -507109,7 +509699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6262), 23, + ACTIONS(6354), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -507133,126 +509723,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [167753] = 28, + [167117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2136), 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(2134), 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, + [167164] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8233), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8405), 1, + ACTIONS(8498), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7721), 1, + STATE(7903), 1, aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167850] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(4883), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5246), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(8407), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5786), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5789), 23, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [167903] = 3, + [167261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6317), 16, + ACTIONS(6415), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -507269,7 +509856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6319), 23, + ACTIONS(6417), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -507293,45 +509880,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [167950] = 18, + [167308] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(8329), 1, + ACTIONS(8298), 1, anon_sym_LPAREN2, - ACTIONS(8371), 1, + ACTIONS(8346), 1, sym_identifier, - ACTIONS(8373), 1, + ACTIONS(8348), 1, anon_sym_STAR, - ACTIONS(8375), 1, + ACTIONS(8350), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, + ACTIONS(8352), 1, anon_sym_AMP, - STATE(5775), 1, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(7095), 1, + STATE(6660), 1, sym__field_declarator, - STATE(7164), 1, + STATE(6840), 1, sym_operator_name, - STATE(8978), 1, + STATE(8771), 1, sym_ms_based_modifier, - ACTIONS(3460), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4903), 2, + STATE(5485), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5491), 2, + STATE(5528), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6886), 7, + STATE(6935), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -507339,7 +509926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3456), 12, + ACTIONS(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -507352,381 +509939,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168027] = 18, + [167385] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8327), 1, - sym_identifier, - ACTIONS(8329), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(8331), 1, - anon_sym_STAR, - ACTIONS(8333), 1, - anon_sym_AMP_AMP, - ACTIONS(8335), 1, - anon_sym_AMP, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6634), 1, - sym__field_declarator, - STATE(6872), 1, - sym_operator_name, - STATE(8907), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4816), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5482), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6886), 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(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [168104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6283), 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, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, anon_sym_DOT, - sym_identifier, - ACTIONS(6285), 23, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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, - [168151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6333), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, + ACTIONS(8264), 1, anon_sym_PIPE, + ACTIONS(8268), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8282), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8284), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6335), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(8500), 1, + anon_sym_GT2, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + STATE(7807), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8262), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8266), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8272), 4, + anon_sym_GT, 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, - [168198] = 3, + anon_sym_LT_EQ, + anon_sym_LT, + [167482] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6417), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, + ACTIONS(8177), 1, anon_sym_PIPE, + ACTIONS(8181), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8195), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6419), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8362), 1, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(8502), 1, + anon_sym_RPAREN, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + STATE(7686), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8189), 2, 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, - [168245] = 28, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [167579] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8185), 1, + ACTIONS(8290), 1, anon_sym_COMMA, - ACTIONS(8410), 1, + ACTIONS(8504), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7741), 1, + STATE(7812), 1, aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [168342] = 17, + [167676] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7920), 1, - sym_auto, - ACTIONS(7922), 1, - anon_sym_decltype, - ACTIONS(7982), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(8412), 1, - anon_sym_STAR, - ACTIONS(8414), 1, - anon_sym_AMP_AMP, - ACTIONS(8416), 1, - anon_sym_AMP, - STATE(3589), 1, - sym_decltype_auto, - STATE(4141), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6749), 1, - sym__abstract_declarator, - STATE(5276), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7980), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [168417] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8303), 1, - anon_sym_AMP_AMP, - ACTIONS(8307), 1, - anon_sym_and, - ACTIONS(6206), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8121), 1, anon_sym_SLASH, + ACTIONS(8127), 1, anon_sym_PIPE, + ACTIONS(8131), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, + ACTIONS(8137), 1, + anon_sym_GT_EQ, + ACTIONS(8145), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8147), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8149), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6208), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8117), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8123), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8125), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8129), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(8133), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8135), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6683), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [168468] = 5, + [167765] = 5, ACTIONS(3), 1, sym_comment, - STATE(4883), 1, + STATE(4899), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8407), 4, + ACTIONS(8506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5248), 9, + ACTIONS(5280), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -507736,7 +510231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(5246), 25, + ACTIONS(5278), 25, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -507762,24 +510257,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [168519] = 3, + [167816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 11, + ACTIONS(5167), 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(5186), 28, + sym_identifier, + ACTIONS(5169), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -507788,108 +510291,43 @@ static const uint16_t ts_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [168566] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8371), 1, - sym_identifier, - ACTIONS(8373), 1, - anon_sym_STAR, - ACTIONS(8375), 1, - anon_sym_AMP_AMP, - ACTIONS(8377), 1, - anon_sym_AMP, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7071), 1, - sym__field_declarator, - STATE(7164), 1, - sym_operator_name, - STATE(8978), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4847), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5486), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6886), 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(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [168643] = 6, + [167863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(7868), 1, - anon_sym_LPAREN2, - STATE(5279), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5966), 11, + ACTIONS(5201), 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(5968), 24, + sym_identifier, + ACTIONS(5203), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -507897,127 +510335,85 @@ static const uint16_t ts_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, - [168696] = 17, + [167910] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7920), 1, - sym_auto, - ACTIONS(7922), 1, - anon_sym_decltype, - ACTIONS(7982), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(8412), 1, - anon_sym_STAR, - ACTIONS(8414), 1, - anon_sym_AMP_AMP, - ACTIONS(8416), 1, - anon_sym_AMP, - STATE(3589), 1, - sym_decltype_auto, - STATE(4141), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6738), 1, - sym__abstract_declarator, - STATE(5258), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8002), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [168771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5168), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8121), 1, anon_sym_SLASH, + ACTIONS(8127), 1, anon_sym_PIPE, + ACTIONS(8131), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8137), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5170), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8145), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8147), 1, + anon_sym_bitor, + ACTIONS(8149), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8117), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8123), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8125), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8129), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8139), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [168818] = 3, + ACTIONS(8135), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6675), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [167999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6425), 16, + ACTIONS(5183), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -508034,7 +510430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6427), 23, + ACTIONS(5185), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -508058,145 +510454,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [168865] = 3, + [168046] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8121), 1, anon_sym_SLASH, + ACTIONS(8127), 1, anon_sym_PIPE, + ACTIONS(8131), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8137), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5145), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8145), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8147), 1, + anon_sym_bitor, + ACTIONS(8149), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8117), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8123), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8125), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8129), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8139), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [168912] = 28, + ACTIONS(8135), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6662), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [168135] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8233), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8418), 1, + ACTIONS(8509), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7849), 1, + STATE(7696), 1, aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169009] = 3, + [168232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 16, + ACTIONS(5242), 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(6383), 23, + ACTIONS(5244), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -508205,20 +510614,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [169056] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [168279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 16, + ACTIONS(5246), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -508235,7 +510652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5170), 23, + ACTIONS(5248), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -508259,10 +510676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [169103] = 3, + [168326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 16, + ACTIONS(5195), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -508279,7 +510696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5145), 23, + ACTIONS(5197), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -508303,32 +510720,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [169150] = 3, + [168373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6373), 16, + ACTIONS(5175), 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(6375), 23, + ACTIONS(5177), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -508337,42 +510746,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [169197] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [168420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 16, + ACTIONS(5238), 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(5190), 23, + ACTIONS(5240), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -508381,43 +510790,107 @@ static const uint16_t ts_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, - [169244] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [168467] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(8003), 1, + sym_auto, + ACTIONS(8005), 1, + anon_sym_decltype, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8368), 1, + anon_sym_STAR, + ACTIONS(8370), 1, + anon_sym_AMP_AMP, + ACTIONS(8372), 1, + anon_sym_AMP, + STATE(3682), 1, + sym_decltype_auto, + STATE(4131), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6817), 1, + sym__abstract_declarator, + STATE(5324), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8107), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 16, + ACTIONS(3886), 1, + anon_sym_LBRACE, + ACTIONS(7995), 1, + anon_sym_LPAREN2, + STATE(5296), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5992), 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(6289), 23, + ACTIONS(5994), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -508425,108 +510898,208 @@ static const uint16_t ts_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, - [169291] = 3, + anon_sym_GT2, + [168595] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6361), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8250), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, + ACTIONS(8264), 1, anon_sym_PIPE, + ACTIONS(8268), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8282), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8284), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6363), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(8511), 1, + anon_sym_GT2, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + STATE(8000), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8262), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8266), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8272), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [168692] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8121), 1, + anon_sym_SLASH, + ACTIONS(8127), 1, + anon_sym_PIPE, + ACTIONS(8131), 1, + anon_sym_AMP, + ACTIONS(8137), 1, + anon_sym_GT_EQ, + ACTIONS(8143), 1, anon_sym_QMARK, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8147), 1, + anon_sym_bitor, + ACTIONS(8149), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [169338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5188), 11, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8117), 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(5190), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8123), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8125), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8129), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8139), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6618), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(8135), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [168785] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4899), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5278), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(8506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5766), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5769), 23, + anon_sym_AMP, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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, - [169385] = 3, + [168838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6279), 16, + ACTIONS(5175), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -508543,7 +511116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6281), 23, + ACTIONS(5177), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -508567,10 +511140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [169432] = 3, + [168885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 16, + ACTIONS(6253), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -508587,7 +511160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5210), 23, + ACTIONS(6255), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -508611,10 +511184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [169479] = 3, + [168932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 16, + ACTIONS(5348), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -508631,7 +511204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5206), 23, + ACTIONS(2899), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -508655,571 +511228,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [169526] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8371), 1, - sym_identifier, - ACTIONS(8373), 1, - anon_sym_STAR, - ACTIONS(8375), 1, - anon_sym_AMP_AMP, - ACTIONS(8377), 1, - anon_sym_AMP, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7071), 1, - sym__field_declarator, - STATE(7164), 1, - sym_operator_name, - STATE(8978), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5441), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5486), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6886), 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(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [169603] = 28, + [168979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - ACTIONS(8193), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(6419), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8207), 1, anon_sym_PIPE, - ACTIONS(8211), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8227), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8420), 1, - anon_sym_GT2, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - STATE(7878), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8199), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6421), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8205), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8209), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8215), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [169700] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - ACTIONS(8193), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, - anon_sym_SLASH, - ACTIONS(8207), 1, - anon_sym_PIPE, - ACTIONS(8211), 1, - anon_sym_AMP, - ACTIONS(8217), 1, anon_sym_LT_LT, - ACTIONS(8219), 1, anon_sym_GT_GT, - ACTIONS(8221), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(8223), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, - anon_sym_bitor, - ACTIONS(8227), 1, - anon_sym_bitand, - ACTIONS(8422), 1, - anon_sym_GT2, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - STATE(7923), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8203), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8205), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8209), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8229), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [169797] = 27, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [169026] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8426), 1, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(8513), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7690), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8424), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169892] = 28, + [169123] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8310), 1, + anon_sym_COMMA, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8428), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8517), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7605), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + STATE(7795), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169989] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(7992), 1, - sym_auto, - ACTIONS(7994), 1, - anon_sym_decltype, - ACTIONS(8259), 1, - anon_sym_STAR, - ACTIONS(8261), 1, - anon_sym_AMP_AMP, - ACTIONS(8263), 1, - anon_sym_AMP, - STATE(4113), 1, - sym_parameter_list, - STATE(5427), 1, - sym_decltype_auto, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6767), 1, - sym__abstract_declarator, - STATE(5259), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7980), 9, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [170064] = 28, + [169220] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8185), 1, + ACTIONS(8388), 1, anon_sym_COMMA, - ACTIONS(8430), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8519), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7868), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6131), 2, + STATE(8004), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170161] = 3, + [169317] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8121), 1, anon_sym_SLASH, + ACTIONS(8127), 1, anon_sym_PIPE, + ACTIONS(8131), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8137), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2146), 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, + ACTIONS(8143), 1, anon_sym_QMARK, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8147), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8149), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [170208] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5537), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8117), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8119), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8123), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8125), 2, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(5535), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_extern, + anon_sym_and, + ACTIONS(8129), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8139), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8133), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8135), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(8521), 3, + anon_sym_COMMA, + anon_sym_SEMI, 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_template, - anon_sym_operator, - [170257] = 7, + [169410] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8432), 1, + ACTIONS(8523), 1, sym_identifier, - ACTIONS(8436), 1, + ACTIONS(8527), 1, sym_primitive_type, - STATE(4873), 1, + STATE(4915), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8434), 4, + ACTIONS(8525), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5636), 9, + ACTIONS(5813), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -509229,7 +511570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(5638), 23, + ACTIONS(5815), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -509253,40 +511594,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [170312] = 6, + [169465] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(7868), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - STATE(5275), 2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8121), 1, + anon_sym_SLASH, + STATE(2790), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(5950), 11, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8119), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6151), 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(5952), 24, + ACTIONS(6153), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, 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, @@ -509295,254 +511648,117 @@ 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, - [170365] = 28, + [169532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - ACTIONS(8193), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(8201), 1, + ACTIONS(6320), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8207), 1, anon_sym_PIPE, - ACTIONS(8211), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8227), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8438), 1, - anon_sym_GT2, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - STATE(7902), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8199), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6322), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8205), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8209), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8215), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [170462] = 26, + 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, + [169579] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8018), 1, + ACTIONS(8121), 1, anon_sym_SLASH, - ACTIONS(8024), 1, + ACTIONS(8127), 1, anon_sym_PIPE, - ACTIONS(8028), 1, + ACTIONS(8131), 1, anon_sym_AMP, - ACTIONS(8034), 1, + ACTIONS(8137), 1, anon_sym_GT_EQ, - ACTIONS(8040), 1, - anon_sym_QMARK, - ACTIONS(8042), 1, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - ACTIONS(8044), 1, + ACTIONS(8147), 1, anon_sym_bitor, - ACTIONS(8046), 1, + ACTIONS(8149), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8014), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8016), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8020), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8022), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8026), 2, + ACTIONS(8129), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8036), 2, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8030), 3, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8032), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(8440), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [170555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3926), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8135), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(3922), 23, + ACTIONS(6153), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [170602] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8327), 1, - sym_identifier, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8331), 1, - anon_sym_STAR, - ACTIONS(8333), 1, - anon_sym_AMP_AMP, - ACTIONS(8335), 1, - anon_sym_AMP, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6705), 1, - sym__field_declarator, - STATE(6872), 1, - sym_operator_name, - STATE(8907), 1, - sym_ms_based_modifier, - ACTIONS(3460), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5441), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5526), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3458), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6886), 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(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [170679] = 3, + anon_sym_or, + anon_sym_and, + [169664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 11, + ACTIONS(2186), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -509554,7 +511770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5206), 28, + ACTIONS(2184), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -509583,54 +511799,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [170726] = 3, + [169711] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6341), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, + ACTIONS(8177), 1, anon_sym_PIPE, + ACTIONS(8181), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8195), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(6343), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8290), 1, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(8529), 1, + anon_sym_RPAREN, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + STATE(8018), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [169808] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8250), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, + anon_sym_SLASH, + ACTIONS(8264), 1, + anon_sym_PIPE, + ACTIONS(8268), 1, + anon_sym_AMP, + ACTIONS(8274), 1, anon_sym_LT_LT, + ACTIONS(8276), 1, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(8278), 1, anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8282), 1, + anon_sym_bitor, + ACTIONS(8284), 1, + anon_sym_bitand, + ACTIONS(8531), 1, + anon_sym_GT2, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + STATE(7817), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [170773] = 3, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8272), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [169905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 16, + ACTIONS(6473), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -509647,7 +511957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6450), 23, + ACTIONS(6475), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -509671,24 +511981,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [170820] = 3, + [169952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 11, + ACTIONS(6427), 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(5210), 28, + sym_identifier, + ACTIONS(6429), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -509697,566 +512015,408 @@ static const uint16_t ts_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [170867] = 28, + [169999] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8233), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8442), 1, + ACTIONS(8533), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - STATE(7830), 1, + STATE(7896), 1, aux_sym_argument_list_repeat1, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170964] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(7996), 1, - anon_sym_STAR, - ACTIONS(7998), 1, - anon_sym_AMP_AMP, - ACTIONS(8000), 1, - anon_sym_AMP, - STATE(4139), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6514), 1, - sym__abstract_declarator, - STATE(5336), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6740), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [171032] = 27, + [170096] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7218), 1, - anon_sym_RPAREN, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8121), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8127), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8131), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8137), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8147), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8149), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8125), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8129), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8135), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [171126] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8444), 1, - sym_identifier, - ACTIONS(8446), 1, - anon_sym_LPAREN2, - ACTIONS(8448), 1, - anon_sym_STAR, - ACTIONS(8456), 1, - sym_primitive_type, - STATE(3235), 1, - sym__type_declarator, - STATE(3881), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8646), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4942), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5595), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8454), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3875), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [171200] = 27, + ACTIONS(6153), 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, + [170183] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8458), 1, + ACTIONS(8535), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7904), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [171294] = 27, + [170280] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8460), 1, - anon_sym_COMMA, - ACTIONS(8462), 1, - anon_sym_RPAREN, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + ACTIONS(8537), 1, + anon_sym_GT2, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + STATE(8014), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [171388] = 17, + [170377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8444), 1, + ACTIONS(6363), 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_identifier, - ACTIONS(8446), 1, + ACTIONS(6365), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - ACTIONS(8448), 1, anon_sym_STAR, - ACTIONS(8456), 1, - sym_primitive_type, - STATE(3320), 1, - sym__type_declarator, - STATE(3881), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8646), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4945), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5581), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8454), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3875), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [171462] = 27, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [170424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(6304), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8074), 1, anon_sym_PIPE, - ACTIONS(8078), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8092), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8287), 1, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6306), 23, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(8464), 1, - anon_sym_RPAREN, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [171556] = 14, + 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, + [170471] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8155), 1, + ACTIONS(8121), 1, anon_sym_SLASH, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6170), 5, + ACTIONS(6151), 7, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 17, + ACTIONS(6153), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -510265,7 +512425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -510274,182 +512437,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [171624] = 27, + [170536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(5171), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8074), 1, anon_sym_PIPE, - ACTIONS(8078), 1, anon_sym_AMP, - ACTIONS(8084), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8287), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5173), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(8466), 1, - anon_sym_SEMI, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [171718] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - ACTIONS(8201), 1, - anon_sym_SLASH, - ACTIONS(8207), 1, - anon_sym_PIPE, - ACTIONS(8211), 1, - anon_sym_AMP, - ACTIONS(8217), 1, anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8223), 1, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8227), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7064), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [170583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5171), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 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(5173), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8205), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8209), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6642), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(8215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [171806] = 17, + anon_sym_requires, + [170630] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8298), 1, anon_sym_LPAREN2, - ACTIONS(8472), 1, + ACTIONS(8346), 1, + sym_identifier, + ACTIONS(8348), 1, anon_sym_STAR, - ACTIONS(8476), 1, - sym_primitive_type, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(5865), 1, + ACTIONS(8350), 1, + anon_sym_AMP_AMP, + ACTIONS(8352), 1, + anon_sym_AMP, + STATE(5820), 1, sym_ms_unaligned_ptr_modifier, - STATE(7153), 1, - sym__type_declarator, - STATE(9022), 1, + STATE(6660), 1, + sym__field_declarator, + STATE(6840), 1, + sym_operator_name, + STATE(8771), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(3464), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5624), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5660), 2, + STATE(4780), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, + STATE(5528), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3462), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + STATE(6935), 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(3460), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -510462,590 +512584,605 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [171880] = 26, + [170707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5171), 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(5173), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6125), 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(6129), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [170754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6285), 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, - ACTIONS(7906), 1, + sym_identifier, + ACTIONS(6287), 23, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [170801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6344), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8074), 1, anon_sym_PIPE, - ACTIONS(8078), 1, anon_sym_AMP, - ACTIONS(8084), 1, + 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(6346), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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(8088), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [170848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6423), 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, - ACTIONS(8092), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8135), 1, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6425), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [170895] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8121), 1, + anon_sym_SLASH, + ACTIONS(8127), 1, + anon_sym_PIPE, + ACTIONS(8131), 1, + anon_sym_AMP, + ACTIONS(8137), 1, + anon_sym_GT_EQ, + ACTIONS(8143), 1, anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(8145), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8147), 1, + anon_sym_bitor, + ACTIONS(8149), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8123), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8125), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8129), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8478), 2, + ACTIONS(6471), 3, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8080), 3, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8135), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [170988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6469), 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, - [171972] = 26, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6471), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [171035] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8121), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8127), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8131), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8137), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8145), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8147), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8149), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8119), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8123), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8125), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8129), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8139), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8478), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8080), 3, + ACTIONS(8133), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8135), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172064] = 27, + ACTIONS(6654), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [171124] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8131), 1, - anon_sym_SEMI, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - STATE(2791), 1, + ACTIONS(8539), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(7747), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172158] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8480), 1, - anon_sym_STAR, - STATE(2361), 1, - sym__type_declarator, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9156), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5003), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5591), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [172232] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8482), 1, - sym_identifier, - ACTIONS(8484), 1, - anon_sym_LPAREN2, - ACTIONS(8486), 1, - anon_sym_STAR, - ACTIONS(8490), 1, - sym_primitive_type, - STATE(2980), 1, - sym__type_declarator, - STATE(3327), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8484), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5610), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8488), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3325), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [172306] = 26, + [171221] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(3944), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8290), 1, + anon_sym_COMMA, + ACTIONS(8541), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6634), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7064), 2, + STATE(7774), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [172398] = 24, + [171318] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8201), 1, + ACTIONS(8250), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8217), 1, + ACTIONS(8274), 1, anon_sym_LT_LT, - ACTIONS(8219), 1, + ACTIONS(8276), 1, anon_sym_GT_GT, - ACTIONS(8223), 1, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8284), 1, anon_sym_bitand, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + ACTIONS(8543), 1, + anon_sym_GT2, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + STATE(4023), 1, + sym_argument_list, + STATE(8034), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, + ACTIONS(8286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6628), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(8215), 4, + ACTIONS(8272), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [172486] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5367), 1, - sym_literal_suffix, - ACTIONS(4147), 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___attribute__, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4139), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [172534] = 17, + [171415] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8444), 1, + ACTIONS(8545), 1, sym_identifier, - ACTIONS(8446), 1, + ACTIONS(8547), 1, anon_sym_LPAREN2, - ACTIONS(8448), 1, + ACTIONS(8549), 1, anon_sym_STAR, - ACTIONS(8456), 1, + ACTIONS(8557), 1, sym_primitive_type, - STATE(3320), 1, + STATE(3024), 1, sym__type_declarator, - STATE(3881), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8646), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5581), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8454), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3875), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [172608] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, + STATE(3338), 1, sym_pointer_type_declarator, - STATE(5865), 1, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(6860), 1, - sym__type_declarator, - STATE(8865), 1, + STATE(8958), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5037), 2, + STATE(4986), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5582), 2, + STATE(5581), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8474), 4, + ACTIONS(8555), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(3336), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -511063,364 +513200,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [172682] = 27, + [171489] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8494), 1, - anon_sym_SEMI, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(6654), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [172776] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8444), 1, - sym_identifier, - ACTIONS(8446), 1, - anon_sym_LPAREN2, - ACTIONS(8448), 1, - anon_sym_STAR, - ACTIONS(8456), 1, - sym_primitive_type, - STATE(3309), 1, - sym__type_declarator, - STATE(3881), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8646), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5578), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8454), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3875), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [172850] = 27, + [171577] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8496), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8559), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172944] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6860), 1, - sym__type_declarator, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5582), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [173018] = 27, + [171671] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8498), 1, - anon_sym_SEMI, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(6471), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [173112] = 14, + [171763] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(61), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(8050), 1, + ACTIONS(8101), 1, anon_sym_STAR, - ACTIONS(8052), 1, + ACTIONS(8103), 1, anon_sym_AMP_AMP, - ACTIONS(8054), 1, + ACTIONS(8105), 1, anon_sym_AMP, - STATE(4101), 1, + STATE(4133), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6581), 1, + STATE(6587), 1, sym__abstract_declarator, - STATE(5183), 2, + STATE(5163), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8500), 11, + ACTIONS(6913), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -511432,23 +513439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [173180] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(8139), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(5346), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5367), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6332), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, ACTIONS(7429), 11, anon_sym___extension__, anon_sym_constexpr, @@ -511461,244 +513451,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8137), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - 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, - [173236] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - STATE(5310), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5566), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8502), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5568), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [173292] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8480), 1, - anon_sym_STAR, - STATE(2361), 1, - sym__type_declarator, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9156), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5591), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [173366] = 27, + [171831] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8504), 1, - anon_sym_RPAREN, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(6683), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [173460] = 17, + [171919] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8506), 1, - sym_identifier, - ACTIONS(8508), 1, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(8510), 1, + ACTIONS(8089), 1, anon_sym_STAR, - ACTIONS(8514), 1, - sym_primitive_type, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6745), 1, - sym__type_declarator, - STATE(6753), 1, - sym_pointer_type_declarator, - STATE(8592), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5646), 2, + ACTIONS(8091), 1, + anon_sym_AMP_AMP, + ACTIONS(8093), 1, + anon_sym_AMP, + ACTIONS(8095), 1, + anon_sym_LBRACK, + STATE(4160), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6581), 1, + sym__abstract_declarator, + STATE(4963), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8512), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6751), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6096), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7605), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -511709,291 +513569,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [173534] = 5, + [171987] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7870), 1, - anon_sym_LBRACK, - STATE(5139), 1, - sym_new_declarator, - ACTIONS(6091), 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(6093), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, anon_sym_LPAREN2, + ACTIONS(8089), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8091), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(8093), 1, + anon_sym_AMP, + ACTIONS(8095), 1, + anon_sym_LBRACK, + STATE(4160), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6595), 1, + sym__abstract_declarator, + STATE(5361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8561), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, 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, - [173584] = 27, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [172055] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8516), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8563), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173678] = 26, + [172149] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(3944), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6654), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8203), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8205), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8209), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8229), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [173770] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - ACTIONS(8201), 1, - anon_sym_SLASH, - ACTIONS(8207), 1, - anon_sym_PIPE, - ACTIONS(8211), 1, - anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8223), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, - anon_sym_bitor, - ACTIONS(8227), 1, - anon_sym_bitand, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(8025), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6609), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(8215), 4, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [173858] = 14, + [172241] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8050), 1, + ACTIONS(8089), 1, anon_sym_STAR, - ACTIONS(8052), 1, + ACTIONS(8091), 1, anon_sym_AMP_AMP, - ACTIONS(8054), 1, + ACTIONS(8093), 1, anon_sym_AMP, - STATE(4101), 1, + ACTIONS(8095), 1, + anon_sym_LBRACK, + STATE(4160), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6519), 1, + STATE(6576), 1, sym__abstract_declarator, - STATE(5183), 2, + STATE(5361), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6740), 11, + ACTIONS(6913), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7325), 11, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [172309] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8089), 1, + anon_sym_STAR, + ACTIONS(8091), 1, + anon_sym_AMP_AMP, + ACTIONS(8093), 1, + anon_sym_AMP, + ACTIONS(8095), 1, + anon_sym_LBRACK, + STATE(4160), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6560), 1, + sym__abstract_declarator, + STATE(5361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7605), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -512005,583 +513852,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [173926] = 27, + ACTIONS(8565), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [172377] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8518), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8567), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174020] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8472), 1, - anon_sym_STAR, - ACTIONS(8476), 1, - sym_primitive_type, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7143), 1, - sym__type_declarator, - STATE(9022), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4933), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [174094] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8472), 1, - anon_sym_STAR, - ACTIONS(8476), 1, - sym_primitive_type, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7143), 1, - sym__type_declarator, - STATE(9022), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5633), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [174168] = 6, + [172469] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5526), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(5532), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(4147), 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(6139), 1, anon_sym_DOT, - ACTIONS(4139), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(7227), 1, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - [174220] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8313), 1, + ACTIONS(8569), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174314] = 27, + [172563] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8520), 1, - anon_sym_COMMA, - ACTIONS(8522), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8496), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174408] = 13, + [172655] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8155), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - STATE(2791), 1, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8571), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6170), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8189), 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(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [174474] = 26, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [172749] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(3944), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8478), 2, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8431), 2, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8213), 3, + anon_sym_RBRACE, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [174566] = 26, + [172841] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(3944), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8573), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8478), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [174658] = 14, + [172935] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(61), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(8050), 1, + ACTIONS(8101), 1, anon_sym_STAR, - ACTIONS(8052), 1, + ACTIONS(8103), 1, anon_sym_AMP_AMP, - ACTIONS(8054), 1, + ACTIONS(8105), 1, anon_sym_AMP, - STATE(4101), 1, + STATE(4133), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6524), 1, + STATE(6611), 1, sym__abstract_declarator, - STATE(5183), 2, + STATE(5163), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7325), 11, + ACTIONS(7429), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -512593,7 +514305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8524), 11, + ACTIONS(8561), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -512605,171 +514317,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [174726] = 15, + [173003] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8155), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8179), 1, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - STATE(2791), 1, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8575), 1, + anon_sym_COMMA, + ACTIONS(8577), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6170), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [174796] = 26, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [173097] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 1, + anon_sym_STAR, + ACTIONS(8587), 1, + sym_primitive_type, + STATE(2290), 1, + sym__type_declarator, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9031), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5005), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [173171] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8101), 1, + anon_sym_STAR, + ACTIONS(8103), 1, + anon_sym_AMP_AMP, + ACTIONS(8105), 1, + anon_sym_AMP, + STATE(4133), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6602), 1, + sym__abstract_declarator, + STATE(4957), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6096), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [173239] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8526), 2, + ACTIONS(8589), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174888] = 14, + [173331] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8591), 1, + sym_identifier, + ACTIONS(8593), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(7996), 1, + ACTIONS(8595), 1, anon_sym_STAR, - ACTIONS(7998), 1, - anon_sym_AMP_AMP, - ACTIONS(8000), 1, - anon_sym_AMP, - STATE(4139), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6529), 1, - sym__abstract_declarator, - STATE(4923), 2, + ACTIONS(8599), 1, + sym_primitive_type, + STATE(3252), 1, + sym__type_declarator, + STATE(3641), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8794), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5053), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5674), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6079), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7429), 11, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3684), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -512780,50 +514618,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [174956] = 14, + [173405] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8545), 1, + sym_identifier, + ACTIONS(8547), 1, + anon_sym_LPAREN2, + ACTIONS(8549), 1, + anon_sym_STAR, + ACTIONS(8557), 1, + sym_primitive_type, + STATE(3024), 1, + sym__type_declarator, + STATE(3338), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8958), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5581), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8555), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3336), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, anon_sym_const, - ACTIONS(7982), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [173479] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(8050), 1, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + anon_sym_SLASH, + ACTIONS(8322), 1, + anon_sym_PIPE, + ACTIONS(8326), 1, + anon_sym_AMP, + ACTIONS(8332), 1, + anon_sym_GT_EQ, + ACTIONS(8340), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8342), 1, + anon_sym_bitor, + ACTIONS(8344), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8312), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8314), 2, anon_sym_STAR, - ACTIONS(8052), 1, + anon_sym_PERCENT, + ACTIONS(8318), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8320), 2, anon_sym_AMP_AMP, - ACTIONS(8054), 1, + anon_sym_and, + ACTIONS(8324), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8328), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8330), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6675), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [173567] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8244), 2, anon_sym_AMP, - STATE(4101), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6532), 1, - sym__abstract_declarator, - STATE(4959), 2, + anon_sym_LBRACK, + STATE(5390), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5391), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6079), 11, + STATE(6364), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8242), 18, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, 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, - ACTIONS(7325), 11, + [173623] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 1, + anon_sym_STAR, + ACTIONS(8587), 1, + sym_primitive_type, + STATE(2290), 1, + sym__type_declarator, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9031), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5608), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -512834,38 +514844,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [175024] = 14, + [173697] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8545), 1, + sym_identifier, + ACTIONS(8547), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(7996), 1, + ACTIONS(8549), 1, anon_sym_STAR, - ACTIONS(7998), 1, - anon_sym_AMP_AMP, - ACTIONS(8000), 1, - anon_sym_AMP, - STATE(4139), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6526), 1, - sym__abstract_declarator, - STATE(5336), 2, + ACTIONS(8557), 1, + sym_primitive_type, + STATE(3006), 1, + sym__type_declarator, + STATE(3338), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8958), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4977), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5601), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7429), 11, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8555), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3336), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -512876,55 +514901,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8524), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [175092] = 17, + [173771] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(61), 1, anon_sym_const, - ACTIONS(7920), 1, + ACTIONS(8003), 1, sym_auto, - ACTIONS(7922), 1, + ACTIONS(8005), 1, anon_sym_decltype, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(8528), 1, + ACTIONS(8601), 1, anon_sym_STAR, - ACTIONS(8530), 1, + ACTIONS(8603), 1, anon_sym_AMP_AMP, - ACTIONS(8532), 1, + ACTIONS(8605), 1, anon_sym_AMP, - STATE(3589), 1, + STATE(3682), 1, sym_decltype_auto, - STATE(4217), 1, + STATE(4188), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6842), 1, + STATE(6857), 1, sym__abstract_declarator, - STATE(5333), 2, + STATE(5366), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7980), 8, + ACTIONS(8085), 8, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -512933,7 +514946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7325), 11, + ACTIONS(7429), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -512945,88 +514958,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [175166] = 10, + [173845] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6190), 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(6192), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8611), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [175226] = 14, + ACTIONS(8615), 1, + sym_primitive_type, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6741), 1, + sym__type_declarator, + STATE(6746), 1, + sym_pointer_type_declarator, + STATE(8572), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5630), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8613), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6756), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [173919] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8617), 1, + sym_identifier, + ACTIONS(8619), 1, + anon_sym_LPAREN2, + ACTIONS(8621), 1, + anon_sym_STAR, + ACTIONS(8625), 1, + sym_primitive_type, + STATE(3264), 1, + sym__type_declarator, + STATE(3752), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8683), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5014), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5629), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3750), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, anon_sym_const, - ACTIONS(7982), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [173993] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(7984), 1, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, anon_sym_STAR, - ACTIONS(7986), 1, - anon_sym_AMP_AMP, - ACTIONS(7988), 1, - anon_sym_AMP, - ACTIONS(7990), 1, - anon_sym_LBRACK, - STATE(4057), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6553), 1, - sym__abstract_declarator, - STATE(5336), 2, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6900), 1, + sym__type_declarator, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5035), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5645), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7429), 11, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -513037,341 +515129,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8500), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [175294] = 9, + [174067] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8545), 1, + sym_identifier, + ACTIONS(8547), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(8549), 1, + anon_sym_STAR, + ACTIONS(8557), 1, + sym_primitive_type, + STATE(3015), 1, + sym__type_declarator, + STATE(3338), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8958), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5661), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8555), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3336), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [174141] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + ACTIONS(8250), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8258), 1, + anon_sym_SLASH, + ACTIONS(8264), 1, + anon_sym_PIPE, + ACTIONS(8268), 1, + anon_sym_AMP, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8282), 1, + anon_sym_bitor, + ACTIONS(8284), 1, + anon_sym_bitand, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6155), 10, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8629), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8272), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [174233] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8258), 1, anon_sym_SLASH, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8280), 1, + anon_sym_LT_EQ_GT, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6151), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6157), 21, + ACTIONS(6153), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_GT2, - [175352] = 27, + [174305] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8534), 1, - anon_sym_SEMI, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8629), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [175446] = 27, + [174397] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8536), 1, - anon_sym_COMMA, - ACTIONS(8538), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [175540] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6133), 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(6135), 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, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [175600] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6121), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8330), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6123), 19, + ACTIONS(6683), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_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, - [175660] = 17, + [174485] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8482), 1, + ACTIONS(8591), 1, sym_identifier, - ACTIONS(8484), 1, + ACTIONS(8593), 1, anon_sym_LPAREN2, - ACTIONS(8486), 1, + ACTIONS(8595), 1, anon_sym_STAR, - ACTIONS(8490), 1, + ACTIONS(8599), 1, sym_primitive_type, - STATE(2953), 1, + STATE(3241), 1, sym__type_declarator, - STATE(3327), 1, + STATE(3641), 1, sym_pointer_type_declarator, - STATE(5865), 1, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(8484), 1, + STATE(8794), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4938), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5585), 2, + STATE(5651), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8488), 4, + ACTIONS(8597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3325), 4, + STATE(3684), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -513389,792 +515495,1154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [175734] = 17, + [174559] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8482), 1, - sym_identifier, - ACTIONS(8484), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(8486), 1, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8258), 1, + anon_sym_SLASH, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8256), 2, anon_sym_STAR, - ACTIONS(8490), 1, - sym_primitive_type, - STATE(2953), 1, - sym__type_declarator, - STATE(3327), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8484), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5585), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8488), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3325), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [175808] = 26, + anon_sym_PERCENT, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6151), 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, + anon_sym_GT_GT, + ACTIONS(6153), 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, + [174623] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(8631), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8424), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175900] = 24, + [174717] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8155), 1, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6151), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8161), 1, anon_sym_PIPE, - ACTIONS(8165), 1, anon_sym_AMP, - ACTIONS(8171), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(6153), 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, + [174777] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8316), 1, + anon_sym_SLASH, + ACTIONS(8322), 1, + anon_sym_PIPE, + ACTIONS(8326), 1, + anon_sym_AMP, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8179), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(6471), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6628), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [175988] = 26, + [174869] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8193), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8201), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8217), 1, + ACTIONS(8274), 1, anon_sym_LT_LT, - ACTIONS(8219), 1, + ACTIONS(8276), 1, anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8284), 1, anon_sym_bitand, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, + ACTIONS(8286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8540), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8213), 3, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8272), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [176080] = 17, + ACTIONS(6153), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_GT2, + [174955] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8155), 1, - anon_sym_SLASH, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - STATE(2791), 1, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8633), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6170), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [175049] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8258), 1, + anon_sym_SLASH, + ACTIONS(8264), 1, + anon_sym_PIPE, + ACTIONS(8268), 1, + anon_sym_AMP, + ACTIONS(8274), 1, anon_sym_LT_LT, + ACTIONS(8276), 1, anon_sym_GT_GT, - ACTIONS(8169), 3, + ACTIONS(8280), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8282), 1, + anon_sym_bitor, + ACTIONS(8284), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 15, + ACTIONS(6153), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [176154] = 18, + anon_sym_GT2, + [175133] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8155), 1, - anon_sym_SLASH, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - STATE(2791), 1, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8635), 1, + anon_sym_COMMA, + ACTIONS(8637), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6170), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [175227] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6151), 1, + anon_sym_PIPE, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8258), 1, + anon_sym_SLASH, + ACTIONS(8268), 1, + anon_sym_AMP, + ACTIONS(8274), 1, anon_sym_LT_LT, + ACTIONS(8276), 1, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8280), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8284), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 12, + ACTIONS(6153), 9, 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, - [176230] = 20, + anon_sym_GT2, + [175309] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6170), 1, - anon_sym_PIPE, - ACTIONS(8155), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8165), 1, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8183), 1, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [175403] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6151), 1, + anon_sym_PIPE, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8258), 1, + anon_sym_SLASH, + ACTIONS(8268), 1, + anon_sym_AMP, + ACTIONS(8274), 1, anon_sym_LT_LT, + ACTIONS(8276), 1, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8280), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8284), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 11, + ACTIONS(6153), 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, - [176310] = 21, + anon_sym_GT2, + [175483] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(6170), 1, - anon_sym_PIPE, - ACTIONS(8155), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8165), 1, - anon_sym_AMP, - ACTIONS(8171), 1, - anon_sym_GT_EQ, - ACTIONS(8179), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8183), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(6151), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8163), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 9, + ACTIONS(6153), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_CARET, anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, - [176392] = 22, + anon_sym_xor, + anon_sym_bitand, + anon_sym_GT2, + [175559] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8155), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8161), 1, - anon_sym_PIPE, - ACTIONS(8165), 1, - anon_sym_AMP, - ACTIONS(8171), 1, - anon_sym_GT_EQ, - ACTIONS(8179), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, - anon_sym_bitor, - ACTIONS(8183), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(6151), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8163), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8167), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 8, + ACTIONS(6153), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_or, anon_sym_and, - [176476] = 23, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [175633] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 1, + anon_sym_STAR, + ACTIONS(8587), 1, + sym_primitive_type, + STATE(2347), 1, + sym__type_declarator, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9031), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5592), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175707] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8101), 1, + anon_sym_STAR, + ACTIONS(8103), 1, + anon_sym_AMP_AMP, + ACTIONS(8105), 1, + anon_sym_AMP, + STATE(4133), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6586), 1, + sym__abstract_declarator, + STATE(5163), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8565), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [175775] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8155), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8641), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8159), 2, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - [176562] = 26, + [175869] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(8643), 1, + anon_sym_COMMA, + ACTIONS(8645), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8542), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176654] = 27, + [175963] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8544), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8647), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176748] = 15, + [176057] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8201), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8217), 1, + ACTIONS(8274), 1, anon_sym_LT_LT, - ACTIONS(8219), 1, + ACTIONS(8276), 1, anon_sym_GT_GT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8229), 2, + ACTIONS(8286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6170), 6, + ACTIONS(6151), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 16, + ACTIONS(6153), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -514191,98 +516659,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [176818] = 27, + [176127] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8546), 1, - anon_sym_SEMI, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8611), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [176912] = 12, + ACTIONS(8615), 1, + sym_primitive_type, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6741), 1, + sym__type_declarator, + STATE(6746), 1, + sym_pointer_type_declarator, + STATE(8572), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5076), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5630), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8613), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6756), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176201] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 1, + anon_sym_STAR, + ACTIONS(8587), 1, + sym_primitive_type, + STATE(2330), 1, + sym__type_declarator, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9031), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4980), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5582), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176275] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6170), 7, + ACTIONS(6151), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -514290,7 +516805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 19, + ACTIONS(6153), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -514310,277 +516825,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [176976] = 13, + [176339] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8617), 1, + sym_identifier, + ACTIONS(8619), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(8621), 1, + anon_sym_STAR, + ACTIONS(8625), 1, + sym_primitive_type, + STATE(3350), 1, + sym__type_declarator, + STATE(3752), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8683), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5594), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8623), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3750), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176413] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8201), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - STATE(3944), 1, + ACTIONS(8322), 1, + anon_sym_PIPE, + ACTIONS(8326), 1, + anon_sym_AMP, + ACTIONS(8332), 1, + anon_sym_GT_EQ, + ACTIONS(8340), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8342), 1, + anon_sym_bitor, + ACTIONS(8344), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6170), 7, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8320), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8324), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8328), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8330), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6172), 17, + ACTIONS(6153), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [177042] = 16, + [176499] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8201), 1, - anon_sym_SLASH, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8223), 1, - anon_sym_LT_EQ_GT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(6245), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6170), 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(6172), 15, + anon_sym_GT_GT, + ACTIONS(6247), 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, - [177114] = 17, + [176557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - ACTIONS(8201), 1, + ACTIONS(5046), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5048), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8223), 1, - anon_sym_LT_EQ_GT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(6170), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8215), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 15, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5041), 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, - [177188] = 18, + [176605] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8201), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8223), 1, + ACTIONS(8322), 1, + anon_sym_PIPE, + ACTIONS(8326), 1, + anon_sym_AMP, + ACTIONS(8332), 1, + anon_sym_GT_EQ, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - STATE(3944), 1, + ACTIONS(8342), 1, + anon_sym_bitor, + ACTIONS(8344), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6170), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8324), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8330), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 12, + ACTIONS(6153), 8, 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, - anon_sym_GT2, - [177264] = 17, + [176689] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8480), 1, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8109), 1, anon_sym_STAR, - STATE(2322), 1, - sym__type_declarator, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9156), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5566), 2, + ACTIONS(8111), 1, + anon_sym_AMP_AMP, + ACTIONS(8113), 1, + anon_sym_AMP, + STATE(4017), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6552), 1, + sym__abstract_declarator, + STATE(5361), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7605), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -514591,35 +517142,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177338] = 5, + ACTIONS(8565), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [176757] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5021), 1, - anon_sym_LBRACK, - ACTIONS(5016), 2, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(8003), 1, + sym_auto, + ACTIONS(8005), 1, + anon_sym_decltype, + ACTIONS(8087), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5019), 4, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8601), 1, anon_sym_STAR, + ACTIONS(8603), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(5012), 31, + ACTIONS(8605), 1, anon_sym_AMP, + STATE(3682), 1, + sym_decltype_auto, + STATE(4188), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6844), 1, + sym__abstract_declarator, + STATE(5369), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8107), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7429), 11, anon_sym___extension__, - anon_sym_extern, - 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, @@ -514630,345 +517211,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_alignas, - anon_sym_operator, - [177388] = 20, + [176831] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, - anon_sym_PIPE, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8201), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8211), 1, + ACTIONS(8264), 1, + anon_sym_PIPE, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8217), 1, + ACTIONS(8274), 1, anon_sym_LT_LT, - ACTIONS(8219), 1, + ACTIONS(8276), 1, anon_sym_GT_GT, - ACTIONS(8223), 1, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8227), 1, + ACTIONS(8282), 1, + anon_sym_bitor, + ACTIONS(8284), 1, anon_sym_bitand, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8229), 2, + ACTIONS(8260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(6675), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8272), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 11, + [176919] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(6151), 1, + anon_sym_PIPE, + ACTIONS(8316), 1, + anon_sym_SLASH, + ACTIONS(8326), 1, + anon_sym_AMP, + ACTIONS(8332), 1, + anon_sym_GT_EQ, + ACTIONS(8340), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8344), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8312), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8314), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8324), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8328), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8330), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 9, 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_GT2, - [177468] = 27, + [177001] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(6151), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8316), 1, + anon_sym_SLASH, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8548), 1, - anon_sym_COMMA, - ACTIONS(8550), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177562] = 21, + ACTIONS(6153), 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, + [177081] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, - anon_sym_PIPE, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8201), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8211), 1, - anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8223), 1, + ACTIONS(8332), 1, + anon_sym_GT_EQ, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8227), 1, - anon_sym_bitand, - STATE(3944), 1, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(6151), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8209), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8330), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 9, + ACTIONS(6153), 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_GT2, - [177644] = 22, + anon_sym_xor, + anon_sym_bitand, + [177157] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8201), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8207), 1, - anon_sym_PIPE, - ACTIONS(8211), 1, - anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8223), 1, + ACTIONS(8332), 1, + anon_sym_GT_EQ, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, - anon_sym_bitor, - ACTIONS(8227), 1, - anon_sym_bitand, - STATE(3944), 1, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(6151), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8209), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8330), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 8, + ACTIONS(6153), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_or, anon_sym_and, - anon_sym_GT2, - [177728] = 23, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [177231] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8201), 1, - anon_sym_SLASH, - ACTIONS(8207), 1, - anon_sym_PIPE, - ACTIONS(8211), 1, - anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8223), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, - anon_sym_bitor, - ACTIONS(8227), 1, - anon_sym_bitand, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8205), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8209), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8229), 2, + ACTIONS(8286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(6229), 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(6172), 6, + anon_sym_GT_GT, + ACTIONS(6231), 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, - [177814] = 10, + [177291] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + STATE(5339), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5593), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(8649), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5595), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7046), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [177347] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8229), 2, + ACTIONS(8286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6170), 10, + ACTIONS(6241), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -514979,7 +517639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(6172), 19, + ACTIONS(6243), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -514999,41 +517659,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [177874] = 12, + [177407] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8109), 1, + anon_sym_STAR, + ACTIONS(8111), 1, + anon_sym_AMP_AMP, + ACTIONS(8113), 1, + anon_sym_AMP, + STATE(4017), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6551), 1, + sym__abstract_declarator, + STATE(5361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6913), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177475] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8201), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - STATE(3944), 1, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8229), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6170), 9, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8314), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6151), 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(6172), 17, + ACTIONS(6153), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -515041,7 +517754,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, @@ -515050,47 +517766,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [177938] = 17, + [177541] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8506), 1, + ACTIONS(8617), 1, sym_identifier, - ACTIONS(8508), 1, + ACTIONS(8619), 1, anon_sym_LPAREN2, - ACTIONS(8510), 1, + ACTIONS(8621), 1, anon_sym_STAR, - ACTIONS(8514), 1, + ACTIONS(8625), 1, sym_primitive_type, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6744), 1, + STATE(3350), 1, sym__type_declarator, - STATE(6753), 1, + STATE(3752), 1, sym_pointer_type_declarator, - STATE(8592), 1, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8683), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4954), 2, + STATE(5094), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5545), 2, + STATE(5594), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8512), 4, + ACTIONS(8623), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6751), 4, + STATE(3750), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -515108,46 +517823,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178012] = 17, + [177615] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6131), 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(6133), 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, + [177675] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + anon_sym_SLASH, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8312), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8314), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6151), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [177743] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8651), 1, + anon_sym_COMMA, + ACTIONS(8653), 1, + anon_sym_RPAREN, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [177837] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8506), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8508), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8510), 1, - anon_sym_STAR, - ACTIONS(8514), 1, + ACTIONS(8587), 1, sym_primitive_type, - STATE(5865), 1, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(6737), 1, + STATE(6845), 1, sym__type_declarator, - STATE(6753), 1, - sym_pointer_type_declarator, - STATE(8592), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5032), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5602), 2, + STATE(5611), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8512), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6751), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -515165,207 +518051,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178086] = 14, + [177911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(7997), 1, + anon_sym_LBRACK, + STATE(5240), 1, + sym_new_declarator, + ACTIONS(6118), 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(6120), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7984), 1, anon_sym_STAR, - ACTIONS(7986), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7988), 1, + 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, + [177961] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5392), 1, + sym_literal_suffix, + ACTIONS(4145), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7990), 1, - anon_sym_LBRACK, - STATE(4057), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6555), 1, - sym__abstract_declarator, - STATE(5336), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6740), 11, + 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(4137), 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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [178154] = 26, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [178009] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(8655), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178246] = 24, + [178103] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8201), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8217), 1, - anon_sym_LT_LT, - ACTIONS(8219), 1, - anon_sym_GT_GT, - ACTIONS(8223), 1, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(3944), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8657), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(3948), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6648), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(8215), 4, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [178334] = 9, + [178197] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6162), 10, + ACTIONS(6197), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -515376,7 +518301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(6164), 21, + ACTIONS(6199), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -515398,119 +518323,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_GT2, - [178392] = 26, + [178255] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8659), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6634), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178484] = 17, + [178349] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7920), 1, - sym_auto, - ACTIONS(7922), 1, - anon_sym_decltype, - ACTIONS(7982), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(8528), 1, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, anon_sym_STAR, - ACTIONS(8530), 1, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, - ACTIONS(8532), 1, - anon_sym_AMP, - STATE(3589), 1, - sym_decltype_auto, - STATE(4217), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6847), 1, - sym__abstract_declarator, - STATE(5337), 2, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8661), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [178441] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6845), 1, + sym__type_declarator, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5090), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5611), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8002), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7325), 11, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -515521,104 +518513,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178558] = 27, + [178515] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8554), 1, + ACTIONS(8447), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178652] = 14, + [178609] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + anon_sym_SLASH, + ACTIONS(8340), 1, + anon_sym_LT_EQ_GT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8312), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8314), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6151), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 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_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [178679] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_LPAREN2, + ACTIONS(8615), 1, + sym_primitive_type, + ACTIONS(8663), 1, + anon_sym_STAR, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6570), 1, + sym__type_declarator, + STATE(6746), 1, + sym_pointer_type_declarator, + STATE(8930), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5634), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8613), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6756), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178753] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7984), 1, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8109), 1, anon_sym_STAR, - ACTIONS(7986), 1, + ACTIONS(8111), 1, anon_sym_AMP_AMP, - ACTIONS(7988), 1, + ACTIONS(8113), 1, anon_sym_AMP, - ACTIONS(7990), 1, - anon_sym_LBRACK, - STATE(4057), 1, + STATE(4017), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6557), 1, + STATE(6545), 1, sym__abstract_declarator, - STATE(5336), 2, + STATE(5361), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7429), 11, + ACTIONS(7605), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -515630,7 +518734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8524), 11, + ACTIONS(8561), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -515642,46 +518746,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [178720] = 17, + [178821] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8506), 1, + ACTIONS(8607), 1, sym_identifier, - ACTIONS(8508), 1, + ACTIONS(8609), 1, anon_sym_LPAREN2, - ACTIONS(8514), 1, + ACTIONS(8615), 1, sym_primitive_type, - ACTIONS(8556), 1, + ACTIONS(8663), 1, anon_sym_STAR, - STATE(5865), 1, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(6520), 1, + STATE(6570), 1, sym__type_declarator, - STATE(6753), 1, + STATE(6746), 1, sym_pointer_type_declarator, - STATE(8872), 1, + STATE(8930), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, + STATE(5079), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, STATE(5634), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8512), 4, + ACTIONS(8613), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6751), 4, + STATE(6756), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -515699,180 +518803,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178794] = 27, + [178895] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8558), 1, - anon_sym_COMMA, - ACTIONS(8560), 1, - anon_sym_RPAREN, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8274), 1, anon_sym_LT_LT, + ACTIONS(8276), 1, anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [178888] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8562), 1, - anon_sym_SEMI, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8665), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [178982] = 17, + [178987] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8591), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8593), 1, anon_sym_LPAREN2, - ACTIONS(8472), 1, + ACTIONS(8595), 1, anon_sym_STAR, - ACTIONS(8476), 1, + ACTIONS(8599), 1, sym_primitive_type, - STATE(2396), 1, + STATE(3257), 1, + sym__type_declarator, + STATE(3641), 1, sym_pointer_type_declarator, - STATE(5865), 1, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(7118), 1, - sym__type_declarator, - STATE(9022), 1, + STATE(8794), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4962), 2, + STATE(4991), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5630), 2, + STATE(5585), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8474), 4, + ACTIONS(8597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(3684), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -515890,113 +518926,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179056] = 27, + [179061] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4405), 1, + anon_sym_LPAREN2, + ACTIONS(4407), 1, + anon_sym_STAR, + ACTIONS(4409), 1, + anon_sym_AMP_AMP, + ACTIONS(4411), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6106), 1, + anon_sym_LBRACK, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + ACTIONS(8031), 1, + anon_sym_RPAREN, + STATE(4175), 1, + sym_parameter_list, + STATE(6297), 1, + sym__scope_resolution, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6941), 1, + sym__declarator, + STATE(7169), 1, + sym__abstract_declarator, + STATE(9234), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [179147] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8250), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8284), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8564), 1, - anon_sym_COMMA, - ACTIONS(8566), 1, - anon_sym_RPAREN, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(6618), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8272), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [179150] = 17, + [179239] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8568), 1, + ACTIONS(8591), 1, sym_identifier, - ACTIONS(8570), 1, + ACTIONS(8593), 1, anon_sym_LPAREN2, - ACTIONS(8572), 1, + ACTIONS(8595), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8599), 1, sym_primitive_type, - STATE(3170), 1, + STATE(3257), 1, sym__type_declarator, - STATE(3648), 1, + STATE(3641), 1, sym_pointer_type_declarator, - STATE(5865), 1, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(9001), 1, + STATE(8794), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5035), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5612), 2, + STATE(5585), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8574), 4, + ACTIONS(8597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3646), 4, + STATE(3684), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -516014,296 +519112,439 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179224] = 3, + [179313] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 17, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, + ACTIONS(8177), 1, anon_sym_PIPE, + ACTIONS(8181), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_or, - anon_sym_and, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8195), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(6689), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8234), 1, + anon_sym_QMARK, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(8394), 2, + anon_sym_COMMA, anon_sym_SEMI, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [179405] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8250), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8258), 1, + anon_sym_SLASH, + ACTIONS(8264), 1, + anon_sym_PIPE, + ACTIONS(8268), 1, + anon_sym_AMP, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8278), 1, anon_sym_QMARK, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8282), 1, + anon_sym_bitor, + ACTIONS(8284), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [179270] = 26, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8667), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8272), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [179497] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8669), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7167), 1, + sym__type_declarator, + STATE(9053), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5067), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5649), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [179571] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8578), 2, + ACTIONS(8671), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179362] = 27, + [179663] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8580), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8673), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179456] = 27, + [179757] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8582), 1, - anon_sym_COMMA, - ACTIONS(8584), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8675), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179550] = 17, + [179851] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8506), 1, - sym_identifier, - ACTIONS(8508), 1, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(8510), 1, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8109), 1, anon_sym_STAR, - ACTIONS(8514), 1, - sym_primitive_type, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6744), 1, - sym__type_declarator, - STATE(6753), 1, - sym_pointer_type_declarator, - STATE(8592), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5545), 2, + ACTIONS(8111), 1, + anon_sym_AMP_AMP, + ACTIONS(8113), 1, + anon_sym_AMP, + STATE(4017), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6578), 1, + sym__abstract_declarator, + STATE(5029), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8512), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6751), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6096), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7605), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -516314,167 +519555,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179624] = 27, + [179919] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, + ACTIONS(8677), 1, anon_sym_COMMA, - ACTIONS(8586), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8679), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179718] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(7996), 1, - anon_sym_STAR, - ACTIONS(7998), 1, - anon_sym_AMP_AMP, - ACTIONS(8000), 1, - anon_sym_AMP, - STATE(4139), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6522), 1, - sym__abstract_declarator, - STATE(5336), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8500), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [179786] = 17, + [180013] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8568), 1, + ACTIONS(8607), 1, sym_identifier, - ACTIONS(8570), 1, + ACTIONS(8609), 1, anon_sym_LPAREN2, - ACTIONS(8572), 1, + ACTIONS(8611), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8615), 1, sym_primitive_type, - STATE(3164), 1, - sym__type_declarator, - STATE(3648), 1, - sym_pointer_type_declarator, - STATE(5865), 1, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(9001), 1, + STATE(6746), 1, + sym_pointer_type_declarator, + STATE(6776), 1, + sym__type_declarator, + STATE(8572), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5607), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5660), 2, + STATE(4983), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, + STATE(5666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8574), 4, + ACTIONS(8613), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3646), 4, + STATE(6756), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -516492,169 +519679,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179860] = 26, + [180087] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(8681), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8588), 2, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [180181] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8683), 1, anon_sym_COMMA, + ACTIONS(8685), 1, anon_sym_RPAREN, - ACTIONS(8080), 3, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179952] = 17, + [180275] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8607), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8609), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8615), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8663), 1, anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(5865), 1, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(6803), 1, + STATE(6561), 1, sym__type_declarator, - STATE(8865), 1, + STATE(6746), 1, + sym_pointer_type_declarator, + STATE(8930), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5552), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5660), 2, + STATE(5046), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180026] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8568), 1, - sym_identifier, - ACTIONS(8570), 1, - anon_sym_LPAREN2, - ACTIONS(8572), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - sym_primitive_type, - STATE(3214), 1, - sym__type_declarator, - STATE(3648), 1, - sym_pointer_type_declarator, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(9001), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5568), 2, + STATE(5665), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8574), 4, + ACTIONS(8613), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3646), 4, + STATE(6756), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -516672,110 +519870,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180100] = 24, + [180349] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8155), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8687), 1, + anon_sym_COMMA, + ACTIONS(8689), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6642), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [180188] = 17, + [180443] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8568), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8570), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8572), 1, - anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8587), 1, sym_primitive_type, - STATE(3164), 1, - sym__type_declarator, - STATE(3648), 1, + ACTIONS(8669), 1, + anon_sym_STAR, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(5865), 1, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(9001), 1, + STATE(7159), 1, + sym__type_declarator, + STATE(9053), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5038), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5607), 2, + STATE(5641), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8574), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3646), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -516793,46 +519994,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180262] = 17, + [180517] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8480), 1, + ACTIONS(8669), 1, anon_sym_STAR, - STATE(2272), 1, - sym__type_declarator, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(5865), 1, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(9156), 1, + STATE(7159), 1, + sym__type_declarator, + STATE(9053), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4952), 2, + STATE(5080), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5589), 2, + STATE(5641), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -516850,300 +520051,491 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180336] = 27, + [180591] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8590), 1, + ACTIONS(8691), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180430] = 26, + [180685] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8693), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8592), 2, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [180779] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7227), 1, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8167), 3, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8695), 1, + anon_sym_SEMI, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180522] = 14, + [180873] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7984), 1, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8238), 1, + anon_sym_SEMI, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, anon_sym_STAR, - ACTIONS(7986), 1, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, - ACTIONS(7988), 1, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [180967] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + anon_sym_SLASH, + ACTIONS(8322), 1, + anon_sym_PIPE, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(7990), 1, + ACTIONS(8332), 1, + anon_sym_GT_EQ, + ACTIONS(8340), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8342), 1, + anon_sym_bitor, + ACTIONS(8344), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8312), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8314), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8318), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8320), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8324), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8328), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8330), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6662), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [181055] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5515), 1, + anon_sym_LPAREN2, + ACTIONS(5521), 1, anon_sym_LBRACK, - STATE(4057), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6559), 1, - sym__abstract_declarator, - STATE(5014), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6079), 11, + ACTIONS(4145), 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(4137), 26, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180590] = 27, + 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, + [181107] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, + ACTIONS(8697), 1, anon_sym_COMMA, - ACTIONS(8594), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8699), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180684] = 17, + [181201] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8482), 1, + ACTIONS(8607), 1, sym_identifier, - ACTIONS(8484), 1, + ACTIONS(8609), 1, anon_sym_LPAREN2, - ACTIONS(8486), 1, + ACTIONS(8611), 1, anon_sym_STAR, - ACTIONS(8490), 1, + ACTIONS(8615), 1, sym_primitive_type, - STATE(2985), 1, - sym__type_declarator, - STATE(3327), 1, - sym_pointer_type_declarator, - STATE(5865), 1, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(8484), 1, + STATE(6746), 1, + sym_pointer_type_declarator, + STATE(6824), 1, + sym__type_declarator, + STATE(8572), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4984), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5562), 2, + STATE(5653), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8488), 4, + ACTIONS(8613), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3325), 4, + STATE(6756), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -517161,113 +520553,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180758] = 27, + [181275] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8258), 1, + anon_sym_SLASH, + ACTIONS(8264), 1, + anon_sym_PIPE, + ACTIONS(8268), 1, + anon_sym_AMP, + ACTIONS(8274), 1, + anon_sym_LT_LT, + ACTIONS(8276), 1, + anon_sym_GT_GT, + ACTIONS(8280), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8282), 1, + anon_sym_bitor, + ACTIONS(8284), 1, + anon_sym_bitand, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6662), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8272), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [181363] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8596), 1, - anon_sym_COMMA, - ACTIONS(8598), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8701), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180852] = 17, + [181457] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8607), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8609), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8615), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8663), 1, anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(5865), 1, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(6811), 1, + STATE(6563), 1, sym__type_declarator, - STATE(8865), 1, + STATE(6746), 1, + sym_pointer_type_declarator, + STATE(8930), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4947), 2, + STATE(5603), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5796), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5611), 2, + ACTIONS(8551), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8613), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6756), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [181531] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8669), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7148), 1, + sym__type_declarator, + STATE(9053), 1, + sym_ms_based_modifier, + ACTIONS(8553), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5628), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -517285,92 +520798,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180926] = 27, + [181605] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, + ACTIONS(8703), 1, anon_sym_COMMA, - ACTIONS(8600), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8705), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181020] = 4, + [181699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(5021), 11, + ACTIONS(6700), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5014), 25, + sym_literal_suffix, + ACTIONS(6702), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -517381,659 +520897,521 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [181068] = 27, + [181745] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8602), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8629), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181162] = 26, + [181837] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8354), 2, + ACTIONS(8629), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8080), 3, + anon_sym_RPAREN, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181254] = 27, + [181929] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8604), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [181348] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6599), 1, - anon_sym_LPAREN2, - ACTIONS(7046), 1, - anon_sym_LBRACK, - ACTIONS(7062), 1, - anon_sym_DOT, - ACTIONS(8193), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8201), 1, - anon_sym_SLASH, - ACTIONS(8207), 1, - anon_sym_PIPE, - ACTIONS(8211), 1, - anon_sym_AMP, - ACTIONS(8217), 1, + ACTIONS(8334), 2, anon_sym_LT_LT, - ACTIONS(8219), 1, anon_sym_GT_GT, - ACTIONS(8221), 1, - anon_sym_QMARK, - ACTIONS(8223), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, - anon_sym_bitor, - ACTIONS(8227), 1, - anon_sym_bitand, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, - sym_subscript_argument_list, - ACTIONS(6309), 2, + ACTIONS(8707), 2, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7064), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(8197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8203), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8205), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8209), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8229), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8213), 3, + anon_sym_RBRACK, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8330), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [181440] = 26, + [182021] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7912), 2, + ACTIONS(7227), 1, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [181532] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - STATE(2791), 1, + ACTIONS(8709), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8359), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181624] = 27, + [182115] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8287), 1, - anon_sym_COMMA, - ACTIONS(8606), 1, + ACTIONS(8711), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181718] = 27, + [182209] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8608), 1, - anon_sym_COMMA, - ACTIONS(8610), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8667), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181812] = 26, + [182301] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(6679), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8612), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181904] = 17, + [182393] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8506), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8508), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8514), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8556), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(5865), 1, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(5896), 1, sym_ms_unaligned_ptr_modifier, - STATE(6543), 1, + STATE(6876), 1, sym__type_declarator, - STATE(6753), 1, - sym_pointer_type_declarator, - STATE(8872), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5064), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5592), 2, + STATE(5589), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8512), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6751), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -518051,235 +521429,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181978] = 26, + [182467] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6309), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182070] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8506), 1, - sym_identifier, - ACTIONS(8508), 1, - anon_sym_LPAREN2, - ACTIONS(8514), 1, - sym_primitive_type, - ACTIONS(8556), 1, - anon_sym_STAR, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6573), 1, - sym__type_declarator, - STATE(6753), 1, - sym_pointer_type_declarator, - STATE(8872), 1, - sym_ms_based_modifier, - ACTIONS(8452), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5022), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5631), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8450), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8512), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6751), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [182144] = 26, + ACTIONS(6654), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [182555] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6654), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8713), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182236] = 17, + [182647] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 1, + anon_sym_LBRACK, + ACTIONS(5043), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5046), 4, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + ACTIONS(5039), 31, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_extern, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_alignas, + anon_sym_operator, + [182697] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8506), 1, + ACTIONS(8617), 1, sym_identifier, - ACTIONS(8508), 1, + ACTIONS(8619), 1, anon_sym_LPAREN2, - ACTIONS(8514), 1, - sym_primitive_type, - ACTIONS(8556), 1, + ACTIONS(8621), 1, anon_sym_STAR, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6573), 1, + ACTIONS(8625), 1, + sym_primitive_type, + STATE(3367), 1, sym__type_declarator, - STATE(6753), 1, + STATE(3752), 1, sym_pointer_type_declarator, - STATE(8872), 1, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8683), 1, sym_ms_based_modifier, - ACTIONS(8452), 2, + ACTIONS(8553), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5631), 2, + STATE(5675), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5660), 2, + STATE(5796), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(8450), 3, + ACTIONS(8551), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8512), 4, + ACTIONS(8623), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6751), 4, + STATE(3750), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -518297,2279 +521661,1958 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [182310] = 26, + [182771] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6599), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - ACTIONS(7046), 1, + ACTIONS(7137), 1, anon_sym_LBRACK, - ACTIONS(7062), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(8193), 1, + ACTIONS(8258), 1, + anon_sym_SLASH, + STATE(4022), 1, + sym_subscript_argument_list, + STATE(4023), 1, + sym_argument_list, + ACTIONS(7143), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8286), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6151), 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(6153), 17, anon_sym_DOT_DOT_DOT, - ACTIONS(8201), 1, + 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, + [182837] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(8250), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8258), 1, anon_sym_SLASH, - ACTIONS(8207), 1, + ACTIONS(8264), 1, anon_sym_PIPE, - ACTIONS(8211), 1, + ACTIONS(8268), 1, anon_sym_AMP, - ACTIONS(8217), 1, + ACTIONS(8274), 1, anon_sym_LT_LT, - ACTIONS(8219), 1, + ACTIONS(8276), 1, anon_sym_GT_GT, - ACTIONS(8221), 1, + ACTIONS(8278), 1, anon_sym_QMARK, - ACTIONS(8223), 1, + ACTIONS(8280), 1, anon_sym_LT_EQ_GT, - ACTIONS(8225), 1, + ACTIONS(8282), 1, anon_sym_bitor, - ACTIONS(8227), 1, + ACTIONS(8284), 1, anon_sym_bitand, - STATE(3944), 1, - sym_argument_list, - STATE(3948), 1, + STATE(4022), 1, sym_subscript_argument_list, - ACTIONS(7064), 2, + STATE(4023), 1, + sym_argument_list, + ACTIONS(6679), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7143), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8197), 2, + ACTIONS(8254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8199), 2, + ACTIONS(8256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8203), 2, + ACTIONS(8260), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8205), 2, + ACTIONS(8262), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8209), 2, + ACTIONS(8266), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8229), 2, + ACTIONS(8286), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8552), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8213), 3, + ACTIONS(8270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8215), 4, + ACTIONS(8272), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [182402] = 24, + [182929] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8155), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8179), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(6618), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6648), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [182490] = 24, + [183021] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(8155), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8179), 1, + ACTIONS(8739), 1, + anon_sym_COLON, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8747), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6609), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [182578] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4407), 1, - anon_sym_LPAREN2, - ACTIONS(4409), 1, - anon_sym_STAR, - ACTIONS(4411), 1, - anon_sym_AMP_AMP, - ACTIONS(4413), 1, - anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6089), 1, - anon_sym_LBRACK, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - ACTIONS(7914), 1, - anon_sym_RPAREN, - STATE(4159), 1, - sym_parameter_list, - STATE(6228), 1, - sym__scope_resolution, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6906), 1, - sym__declarator, - STATE(7128), 1, - sym__abstract_declarator, - STATE(9206), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [182664] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4883), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5911), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(8614), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5909), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [182713] = 26, + [183112] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4687), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8616), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [182804] = 26, + [183203] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8618), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(6229), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6231), 20, + anon_sym_DOT_DOT_DOT, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [182895] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4883), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5995), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(8614), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5993), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [182944] = 26, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [183262] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8620), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8749), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183035] = 26, + [183353] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4671), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8622), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183126] = 7, + [183444] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8624), 1, - sym_identifier, - ACTIONS(8628), 1, - sym_primitive_type, - STATE(5085), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8626), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5636), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5354), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6135), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5638), 20, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6241), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [183179] = 26, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6243), 20, + 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_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, + [183503] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8630), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8751), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183270] = 26, + [183594] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8632), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8753), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183361] = 26, + [183685] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, + ACTIONS(4851), 1, anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183452] = 26, + [183776] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(8199), 1, + anon_sym_STAR, + ACTIONS(8201), 1, + anon_sym_AMP_AMP, + ACTIONS(8203), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + STATE(3863), 1, + sym_parameter_list, + STATE(6626), 1, + sym__abstract_declarator, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(5617), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8561), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [183843] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8634), 1, + ACTIONS(8755), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183543] = 26, + [183934] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8636), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8757), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183634] = 5, + [184025] = 9, ACTIONS(3), 1, sym_comment, - STATE(5104), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5590), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(8638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5592), 29, - anon_sym_COMMA, + ACTIONS(5354), 1, anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6245), 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(6247), 22, + anon_sym_DOT_DOT_DOT, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_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_mutable, - anon_sym_constinit, - anon_sym_consteval, + anon_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_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [183683] = 26, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [184082] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8664), 1, - anon_sym_COLON, - ACTIONS(8666), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8515), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8759), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183774] = 26, + [184173] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8674), 1, + ACTIONS(8761), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183865] = 26, + [184264] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8676), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8763), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [183956] = 6, + [184355] = 9, ACTIONS(3), 1, sym_comment, - STATE(5094), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5246), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(8678), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5786), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5354), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6135), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5789), 20, + ACTIONS(7352), 1, + anon_sym_DOT, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6197), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [184007] = 26, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6199), 22, + 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_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, + [184412] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4773), 1, + ACTIONS(4705), 1, anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [184098] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4883), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5991), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(8614), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5989), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [184147] = 26, + [184503] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8765), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [184238] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6053), 1, - sym_literal_suffix, - ACTIONS(4147), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8185), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4139), 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, - [184285] = 26, + [184594] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4799), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8767), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [184376] = 26, + [184685] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4636), 1, + ACTIONS(4909), 1, anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [184467] = 26, + [184776] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4805), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8769), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [184558] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8115), 1, - anon_sym_STAR, - ACTIONS(8117), 1, - anon_sym_AMP_AMP, - ACTIONS(8119), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - STATE(3757), 1, - sym_parameter_list, - STATE(6620), 1, - sym__abstract_declarator, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(5122), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6079), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184625] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5094), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8678), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5248), 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(5246), 22, - anon_sym_AMP, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [184674] = 9, + [184867] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(2791), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8771), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6155), 8, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 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(6157), 22, - anon_sym_DOT_DOT_DOT, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8189), 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(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [184731] = 9, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [184958] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7619), 1, - anon_sym_LBRACE, - ACTIONS(8681), 1, - anon_sym_COLON, - STATE(3675), 1, - sym_attribute_specifier, - STATE(4259), 1, - sym__enum_base_clause, - STATE(4337), 1, - sym_enumerator_list, - ACTIONS(6073), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6075), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5354), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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, - [184788] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7619), 1, - anon_sym_LBRACE, - ACTIONS(8681), 1, - anon_sym_COLON, - STATE(3613), 1, - sym_attribute_specifier, - STATE(4310), 1, - sym__enum_base_clause, - STATE(4352), 1, - sym_enumerator_list, - ACTIONS(6055), 3, - anon_sym_AMP, + ACTIONS(6135), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6057), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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, - [184845] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8115), 1, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8773), 1, + anon_sym_COMMA, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, anon_sym_STAR, - ACTIONS(8117), 1, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, - ACTIONS(8119), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - STATE(3757), 1, - sym_parameter_list, - STATE(6606), 1, - sym__abstract_declarator, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(5559), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8524), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184912] = 26, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [185049] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 1, + ACTIONS(4887), 1, anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185003] = 26, + [185140] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8683), 1, + ACTIONS(8775), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185094] = 5, + [185231] = 26, ACTIONS(3), 1, sym_comment, - STATE(5072), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5946), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(8685), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5944), 29, - anon_sym_COMMA, + ACTIONS(4911), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [185143] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5087), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5940), 3, - anon_sym_AMP, + ACTIONS(6135), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(8687), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5938), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8316), 1, + anon_sym_SLASH, + ACTIONS(8322), 1, + anon_sym_PIPE, + ACTIONS(8326), 1, + anon_sym_AMP, + ACTIONS(8332), 1, + anon_sym_GT_EQ, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8342), 1, + anon_sym_bitor, + ACTIONS(8344), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8312), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8314), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8318), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8320), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [185192] = 26, + anon_sym_and, + ACTIONS(8324), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8328), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8330), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [185322] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8689), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8777), 1, + anon_sym_COMMA, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185283] = 5, + [185413] = 6, ACTIONS(3), 1, sym_comment, - STATE(4883), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5905), 3, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(8779), 1, + anon_sym_LT, + STATE(5373), 1, + sym_template_argument_list, + ACTIONS(5007), 3, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(8614), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5903), 29, + anon_sym_COLON, + ACTIONS(5012), 31, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -520581,1616 +523624,1723 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [185332] = 26, + [185464] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8691), 1, + ACTIONS(8781), 1, anon_sym_RBRACK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185423] = 5, + [185555] = 26, ACTIONS(3), 1, sym_comment, - STATE(5104), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5535), 3, - anon_sym_AMP, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(8638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5537), 29, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8783), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [185472] = 26, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [185646] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4807), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8785), 1, + anon_sym_COMMA, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185563] = 26, + [185737] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8693), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8787), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185654] = 26, + [185828] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4853), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8695), 1, - anon_sym_RBRACK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185745] = 10, + [185919] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(2791), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8789), 1, + anon_sym_COMMA, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6133), 8, + ACTIONS(8167), 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(6135), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [186010] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8791), 1, + anon_sym_COMMA, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(8179), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [185804] = 26, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [186101] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8697), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8793), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185895] = 26, + [186192] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4821), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [185986] = 26, + [186283] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8699), 1, + ACTIONS(8797), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186077] = 26, + [186374] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(4820), 1, anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186168] = 26, + [186465] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8701), 1, + ACTIONS(8799), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186259] = 10, + [186556] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(7829), 1, + sym_auto, + ACTIONS(7831), 1, + anon_sym_decltype, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(8801), 1, + anon_sym_STAR, + ACTIONS(8803), 1, + anon_sym_AMP_AMP, + ACTIONS(8805), 1, + anon_sym_AMP, + STATE(2272), 1, + sym_decltype_auto, + STATE(4229), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6944), 1, + sym__abstract_declarator, + STATE(5374), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8085), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186629] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4689), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(2791), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8316), 1, + anon_sym_SLASH, + ACTIONS(8322), 1, + anon_sym_PIPE, + ACTIONS(8326), 1, + anon_sym_AMP, + ACTIONS(8332), 1, + anon_sym_GT_EQ, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8342), 1, + anon_sym_bitor, + ACTIONS(8344), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6121), 8, + ACTIONS(8312), 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(6123), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8320), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8324), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8330), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [186720] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4893), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8316), 1, + anon_sym_SLASH, + ACTIONS(8322), 1, + anon_sym_PIPE, + ACTIONS(8326), 1, + anon_sym_AMP, + ACTIONS(8332), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(8338), 1, anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, + ACTIONS(8342), 1, + anon_sym_bitor, + ACTIONS(8344), 1, + anon_sym_bitand, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8312), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8314), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8318), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(8320), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(8324), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8328), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [186318] = 26, + ACTIONS(8330), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [186811] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8703), 1, + ACTIONS(8807), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186409] = 26, + [186902] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8705), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8809), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186500] = 26, + [186993] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, + ACTIONS(8741), 1, anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8811), 1, anon_sym_COLON, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186591] = 9, + [187084] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(2791), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8813), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6162), 8, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 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(6164), 22, - anon_sym_DOT_DOT_DOT, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8189), 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(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [186648] = 26, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [187175] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8709), 1, + ACTIONS(8815), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186739] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8115), 1, - anon_sym_STAR, - ACTIONS(8117), 1, - anon_sym_AMP_AMP, - ACTIONS(8119), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - STATE(3757), 1, - sym_parameter_list, - STATE(6585), 1, - sym__abstract_declarator, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(5559), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6740), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [186806] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(8711), 1, - anon_sym_LT, - STATE(5310), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5332), 1, - sym_template_argument_list, - ACTIONS(4137), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8502), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4145), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [186861] = 26, + [187266] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8713), 1, + ACTIONS(8817), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [186952] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8115), 1, - anon_sym_STAR, - ACTIONS(8117), 1, - anon_sym_AMP_AMP, - ACTIONS(8119), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - STATE(3757), 1, - sym_parameter_list, - STATE(6614), 1, - sym__abstract_declarator, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(5559), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8500), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187019] = 26, + [187357] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4827), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8715), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187110] = 26, + [187448] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8717), 1, + ACTIONS(8819), 1, anon_sym_RBRACK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187201] = 26, + [187539] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8719), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8821), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187292] = 26, + [187630] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4847), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8721), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187383] = 26, + [187721] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8723), 1, - anon_sym_COMMA, - STATE(2791), 1, + ACTIONS(8823), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187474] = 6, + [187812] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(8711), 1, + ACTIONS(8779), 1, anon_sym_LT, - STATE(5332), 1, + STATE(5339), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5373), 1, sym_template_argument_list, - ACTIONS(4968), 3, + ACTIONS(4135), 2, anon_sym_AMP, anon_sym_const, - anon_sym_COLON, - ACTIONS(4975), 31, + ACTIONS(8649), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4143), 27, 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, @@ -522204,8 +525354,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -522213,441 +525361,603 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [187525] = 26, + [187867] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8825), 1, + anon_sym_RPAREN, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [187958] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8827), 1, + anon_sym_SEMI, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [188049] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4889), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8155), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8189), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8725), 1, - anon_sym_RBRACK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187616] = 26, + [188140] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8727), 1, + ACTIONS(8829), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187707] = 26, + [188231] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8729), 1, + ACTIONS(8831), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187798] = 26, + [188322] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4822), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8731), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187889] = 26, + [188413] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8733), 1, - anon_sym_RBRACK, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8833), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [187980] = 26, + [188504] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8735), 1, + ACTIONS(8835), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188071] = 17, + [188595] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(7726), 1, - sym_auto, - ACTIONS(7728), 1, - anon_sym_decltype, - ACTIONS(8123), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(8737), 1, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8837), 1, + anon_sym_RPAREN, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, anon_sym_STAR, - ACTIONS(8739), 1, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, - ACTIONS(8741), 1, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [188686] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8842), 1, + anon_sym_const, + ACTIONS(5424), 2, anon_sym_AMP, - STATE(2172), 1, - sym_decltype_auto, - STATE(4227), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6942), 1, - sym__abstract_declarator, - STATE(5360), 2, + anon_sym_LBRACK, + STATE(5163), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7980), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8121), 11, + ACTIONS(8839), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -522659,2141 +525969,2430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [188144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6218), 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(6220), 26, + ACTIONS(5426), 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_LT_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [188189] = 26, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [188737] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8743), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8845), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188280] = 26, + [188828] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8745), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8847), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188371] = 26, + [188919] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5243), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5762), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(8849), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5764), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [188968] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8747), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8851), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188462] = 26, + [189059] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, - anon_sym_SLASH, - ACTIONS(8161), 1, - anon_sym_PIPE, - ACTIONS(8165), 1, - anon_sym_AMP, - ACTIONS(8171), 1, - anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, - anon_sym_bitor, - ACTIONS(8183), 1, - anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(6151), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 20, + anon_sym_DOT_DOT_DOT, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8159), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8163), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8167), 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(8169), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [188553] = 26, + [189118] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, + ACTIONS(8741), 1, anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8749), 1, + ACTIONS(8853), 1, anon_sym_COLON, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188644] = 26, + [189209] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4701), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8855), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188735] = 26, + [189300] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8751), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8857), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188826] = 26, + [189391] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8753), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8859), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [188917] = 26, + [189482] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8755), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8861), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189008] = 26, + [189573] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4899), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6022), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(8863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6020), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [189622] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8757), 1, + ACTIONS(8865), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189099] = 26, + [189713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4784), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + STATE(4899), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6028), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(8863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6026), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [189762] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8396), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189190] = 26, + [189853] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8759), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8867), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189281] = 26, + [189944] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(8199), 1, + anon_sym_STAR, + ACTIONS(8201), 1, + anon_sym_AMP_AMP, + ACTIONS(8203), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + STATE(3863), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6650), 1, + sym__abstract_declarator, + STATE(5203), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6096), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [190011] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8761), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8869), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189372] = 26, + [190102] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4915), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8763), 1, - anon_sym_COLON, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189463] = 26, + [190193] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, - anon_sym_SLASH, - ACTIONS(8161), 1, - anon_sym_PIPE, - ACTIONS(8165), 1, - anon_sym_AMP, - ACTIONS(8171), 1, - anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, - anon_sym_bitor, - ACTIONS(8183), 1, - anon_sym_bitand, - ACTIONS(8765), 1, - anon_sym_RBRACK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(6131), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6133), 20, + anon_sym_DOT_DOT_DOT, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8159), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8163), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8167), 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(8169), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [189554] = 26, + [190252] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8767), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8871), 1, + anon_sym_RBRACE, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189645] = 26, + [190343] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4703), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8769), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189736] = 26, + [190434] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189827] = 26, + [190525] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4780), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8875), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189918] = 10, + [190616] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - STATE(2791), 1, + ACTIONS(8719), 1, + anon_sym_SLASH, + ACTIONS(8725), 1, + anon_sym_PIPE, + ACTIONS(8729), 1, + anon_sym_AMP, + ACTIONS(8735), 1, + anon_sym_GT_EQ, + ACTIONS(8743), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8745), 1, + anon_sym_bitor, + ACTIONS(8747), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6190), 8, + ACTIONS(8715), 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(6192), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8723), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8727), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6675), 3, + anon_sym_DOT_DOT_DOT, 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(8731), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [189977] = 26, + ACTIONS(8733), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [190703] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8771), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8877), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [190068] = 26, + [190794] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8773), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8879), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [190159] = 26, + [190885] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8775), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8881), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [190250] = 26, + [190976] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7702), 1, + anon_sym_LBRACE, + ACTIONS(8883), 1, + anon_sym_COLON, + STATE(3693), 1, + sym_attribute_specifier, + STATE(4336), 1, + sym__enum_base_clause, + STATE(4354), 1, + sym_enumerator_list, + ACTIONS(6114), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6116), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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, + [191033] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8777), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8885), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [190341] = 26, + [191124] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7702), 1, + anon_sym_LBRACE, + ACTIONS(8883), 1, + anon_sym_COLON, + STATE(3613), 1, + sym_attribute_specifier, + STATE(4300), 1, + sym__enum_base_clause, + STATE(4393), 1, + sym_enumerator_list, + ACTIONS(6108), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6110), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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, + [191181] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8779), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8887), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [190432] = 26, + [191272] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8781), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8889), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [190523] = 10, + [191363] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(2791), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8891), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6170), 8, + ACTIONS(8167), 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(6172), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8189), 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(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [190582] = 26, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [191454] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8783), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8893), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [190673] = 26, + [191545] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8785), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8895), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [190764] = 26, + [191636] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8787), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8897), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [190855] = 26, + [191727] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(8779), 1, + anon_sym_LT, + STATE(5373), 1, + sym_template_argument_list, + ACTIONS(5397), 3, anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8789), 1, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4161), 31, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8070), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [190946] = 26, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [191778] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4879), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8791), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [191037] = 17, + [191869] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(7726), 1, - sym_auto, - ACTIONS(7728), 1, - anon_sym_decltype, - ACTIONS(8123), 1, + ACTIONS(8199), 1, + anon_sym_STAR, + ACTIONS(8201), 1, + anon_sym_AMP_AMP, + ACTIONS(8203), 1, + anon_sym_AMP, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(8737), 1, + STATE(3863), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6738), 1, + sym__abstract_declarator, + STATE(5617), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8565), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [191936] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(8199), 1, anon_sym_STAR, - ACTIONS(8739), 1, + ACTIONS(8201), 1, anon_sym_AMP_AMP, - ACTIONS(8741), 1, + ACTIONS(8203), 1, anon_sym_AMP, - STATE(2172), 1, - sym_decltype_auto, - STATE(4227), 1, + ACTIONS(8207), 1, + anon_sym_LBRACK, + STATE(3863), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(6896), 1, + STATE(6737), 1, sym__abstract_declarator, - STATE(5366), 2, + STATE(5617), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6616), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8002), 7, + ACTIONS(6913), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(8121), 11, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -524805,634 +528404,701 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [191110] = 24, + [192003] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8899), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6609), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [191197] = 26, + [192094] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6309), 1, - anon_sym_COLON, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8901), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [191288] = 12, + [192185] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8719), 1, anon_sym_SLASH, - STATE(2791), 1, + ACTIONS(8725), 1, + anon_sym_PIPE, + ACTIONS(8729), 1, + anon_sym_AMP, + ACTIONS(8735), 1, + anon_sym_GT_EQ, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8745), 1, + anon_sym_bitor, + ACTIONS(8747), 1, + anon_sym_bitand, + ACTIONS(8903), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8642), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6170), 7, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(8717), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8723), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8727), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8737), 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(8731), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [191351] = 26, + ACTIONS(8733), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [192276] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8793), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8905), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [191442] = 23, + [192367] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8668), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8747), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8907), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8648), 2, + ACTIONS(8721), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - [191527] = 22, + [192458] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8909), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8652), 2, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [191610] = 26, + [192549] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8795), 1, + ACTIONS(8911), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [191701] = 21, + [192640] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4895), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6170), 1, - anon_sym_PIPE, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8654), 1, + ACTIONS(8322), 1, + anon_sym_PIPE, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8668), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8672), 1, + ACTIONS(8342), 1, + anon_sym_bitor, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8652), 2, + ACTIONS(8318), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8320), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [191782] = 26, + [192731] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8797), 1, + ACTIONS(8913), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [191873] = 20, + [192822] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6170), 1, - anon_sym_PIPE, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8654), 1, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8672), 1, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8915), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8662), 2, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 10, - anon_sym_DOT_DOT_DOT, - 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, - [191952] = 6, + [192913] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8802), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(5515), 2, - anon_sym_AMP, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(7829), 1, + sym_auto, + ACTIONS(7831), 1, + anon_sym_decltype, + ACTIONS(8207), 1, anon_sym_LBRACK, - STATE(5183), 2, + ACTIONS(8801), 1, + anon_sym_STAR, + ACTIONS(8803), 1, + anon_sym_AMP_AMP, + ACTIONS(8805), 1, + anon_sym_AMP, + STATE(2272), 1, + sym_decltype_auto, + STATE(4229), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6979), 1, + sym__abstract_declarator, + STATE(5382), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8799), 11, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8107), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -525444,481 +529110,552 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5517), 21, - 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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [192003] = 18, + [192986] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4804), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8660), 1, + ACTIONS(8322), 1, + anon_sym_PIPE, + ACTIONS(8326), 1, + anon_sym_AMP, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8668), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - STATE(2791), 1, + ACTIONS(8342), 1, + anon_sym_bitor, + ACTIONS(8344), 1, + anon_sym_bitand, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6170), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8662), 2, + ACTIONS(8318), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8320), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8324), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 11, - anon_sym_DOT_DOT_DOT, - 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, - [192078] = 26, + [193077] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4769), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + ACTIONS(8741), 1, anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8747), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8917), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [192169] = 26, + [193168] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4802), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8805), 1, - anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [192260] = 26, + [193259] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8807), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8919), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [192351] = 17, + [193350] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8660), 1, + ACTIONS(8725), 1, + anon_sym_PIPE, + ACTIONS(8729), 1, + anon_sym_AMP, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8668), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - STATE(2791), 1, + ACTIONS(8745), 1, + anon_sym_bitor, + ACTIONS(8747), 1, + anon_sym_bitand, + ACTIONS(8921), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6170), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8662), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8658), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8723), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8727), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8737), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8731), 3, 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, - [192424] = 15, + ACTIONS(8733), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [193441] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8668), 1, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - STATE(2791), 1, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8923), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8662), 2, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6170), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6172), 15, + [193532] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(7352), 1, + anon_sym_DOT, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8719), 1, + anon_sym_SLASH, + ACTIONS(8725), 1, + anon_sym_PIPE, + ACTIONS(8729), 1, + anon_sym_AMP, + ACTIONS(8735), 1, anon_sym_GT_EQ, - anon_sym_COLON, + ACTIONS(8741), 1, anon_sym_QMARK, + ACTIONS(8743), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8745), 1, + anon_sym_bitor, + ACTIONS(8747), 1, + anon_sym_bitand, + ACTIONS(8925), 1, + anon_sym_COLON, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(7354), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8715), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8717), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8721), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(8723), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(8727), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8737), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8731), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [192493] = 26, + ACTIONS(8733), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [193623] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8809), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8927), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [192584] = 6, + [193714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(8711), 1, - anon_sym_LT, - STATE(5332), 1, - sym_template_argument_list, - ACTIONS(5338), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4163), 31, + STATE(5223), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8929), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5280), 10, 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_GT2, + ACTIONS(5278), 22, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -525929,2458 +529666,2465 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, + sym_primitive_type, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [192635] = 13, + [193763] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8642), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6170), 5, + ACTIONS(8177), 1, anon_sym_PIPE, + ACTIONS(8181), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8187), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8193), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8195), 1, anon_sym_bitand, - anon_sym_not_eq, - [192700] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_DOT, - ACTIONS(8644), 1, - anon_sym_SLASH, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8932), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8662), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6170), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6172), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [192767] = 24, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [193854] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8934), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6628), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [192854] = 26, + [193945] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6634), 1, - anon_sym_COLON, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, + ACTIONS(8741), 1, anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8747), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8936), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [192945] = 26, + [194036] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, + ACTIONS(8741), 1, anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8811), 1, + ACTIONS(8938), 1, anon_sym_COLON, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [193036] = 26, + [194127] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8813), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8940), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [193127] = 26, + [194218] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8815), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8942), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [193218] = 24, + [194309] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8944), 1, + anon_sym_COMMA, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6642), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [193305] = 26, + [194400] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6654), 1, - anon_sym_COLON, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, + ACTIONS(8338), 1, anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8344), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8946), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [193396] = 26, + [194491] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8817), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8948), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [193487] = 26, + [194582] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6618), 1, + anon_sym_COLON, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8819), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [194673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 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, - [193578] = 26, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(6702), 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, + [194718] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8821), 1, - anon_sym_COMMA, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(6654), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [193669] = 26, + [194805] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6679), 1, + anon_sym_COLON, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8823), 1, - anon_sym_COMMA, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [193760] = 26, + [194896] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8825), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(6662), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [193851] = 26, + [194983] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + STATE(5223), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5278), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(8929), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5766), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6125), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5769), 20, + anon_sym_AMP, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [195034] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5243), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5418), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(8849), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5420), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [195083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6214), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8074), 1, anon_sym_PIPE, - ACTIONS(8078), 1, anon_sym_AMP, - ACTIONS(8084), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8827), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6216), 26, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 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(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [193942] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [195128] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8950), 1, + sym_identifier, + ACTIONS(8954), 1, + sym_primitive_type, + STATE(5238), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8952), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5813), 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(5815), 20, + anon_sym_AMP, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [195181] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8829), 1, - anon_sym_COMMA, - STATE(2791), 1, + ACTIONS(8956), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [194033] = 26, + [195272] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4811), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + STATE(4899), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5964), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(8863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5962), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [195321] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8958), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [194124] = 26, + [195412] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8831), 1, - anon_sym_COMMA, - STATE(2791), 1, + ACTIONS(8960), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [194215] = 26, + [195503] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4899), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5986), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(8863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5988), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [195552] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8833), 1, - anon_sym_COMMA, - STATE(2791), 1, + ACTIONS(8962), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [194306] = 26, + [195643] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8835), 1, + ACTIONS(8964), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [194397] = 26, + [195734] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8837), 1, - anon_sym_RBRACE, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(6151), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [194488] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(6153), 16, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, - anon_sym_SLASH, - ACTIONS(8161), 1, - anon_sym_PIPE, - ACTIONS(8165), 1, - anon_sym_AMP, - ACTIONS(8171), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(8177), 1, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(8179), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, - anon_sym_bitor, - ACTIONS(8183), 1, - anon_sym_bitand, - ACTIONS(8839), 1, - anon_sym_RBRACK, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8153), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8157), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8167), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8169), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [194579] = 26, + [195801] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8841), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8966), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [194670] = 26, + [195892] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8843), 1, + ACTIONS(8968), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [194761] = 24, + [195983] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(8644), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8650), 1, - anon_sym_PIPE, - ACTIONS(8654), 1, - anon_sym_AMP, - ACTIONS(8660), 1, - anon_sym_GT_EQ, - ACTIONS(8668), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, - anon_sym_bitor, - ACTIONS(8672), 1, - anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(6151), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 18, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8648), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8652), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8662), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6648), 3, - anon_sym_DOT_DOT_DOT, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(8656), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + 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(8658), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [194848] = 26, + [196048] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8845), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(6151), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [194939] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(6153), 15, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8426), 1, - anon_sym_RPAREN, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8070), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_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, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [195030] = 26, + [196117] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8161), 1, - anon_sym_PIPE, - ACTIONS(8165), 1, - anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, - anon_sym_bitor, - ACTIONS(8183), 1, - anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6151), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8737), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8733), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 14, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8159), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8163), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8167), 3, 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, - ACTIONS(8169), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [195121] = 26, + [196190] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8650), 1, - anon_sym_PIPE, - ACTIONS(8654), 1, - anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, - anon_sym_bitor, - ACTIONS(8672), 1, - anon_sym_bitand, - ACTIONS(8847), 1, - anon_sym_COLON, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6151), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8648), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8652), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [195212] = 26, + ACTIONS(6153), 11, + anon_sym_DOT_DOT_DOT, + 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, + [196265] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6151), 1, + anon_sym_PIPE, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8849), 1, - anon_sym_COMMA, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [195303] = 26, + ACTIONS(6153), 10, + anon_sym_DOT_DOT_DOT, + 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, + [196344] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4801), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8195), 1, anon_sym_bitand, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8970), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [195394] = 26, + [196435] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8851), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8972), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [195485] = 26, + [196526] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(4881), 1, + anon_sym_RBRACK, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8853), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [195576] = 26, + [196617] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6151), 1, + anon_sym_PIPE, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8650), 1, - anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, - anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8855), 1, - anon_sym_COLON, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8648), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [195667] = 26, + ACTIONS(6153), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [196698] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8857), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8974), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [195758] = 26, + [196789] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8650), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8654), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8660), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8672), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8859), 1, - anon_sym_COLON, - STATE(2791), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8976), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(7254), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8642), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8646), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8648), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8652), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8662), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8656), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8658), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [195849] = 26, + [196880] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8861), 1, - anon_sym_RBRACK, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8159), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [195940] = 26, + ACTIONS(6153), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [196963] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8863), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8978), 1, + anon_sym_COLON, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [196031] = 3, + [197054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 18, + ACTIONS(6079), 1, + sym_literal_suffix, + ACTIONS(4145), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -528398,8 +532142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(6689), 19, + ACTIONS(4137), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -528419,1050 +532162,828 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [196076] = 26, + [197101] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8865), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [196167] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4660), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(6153), 5, anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, - anon_sym_SLASH, - ACTIONS(8161), 1, - anon_sym_PIPE, - ACTIONS(8165), 1, - anon_sym_AMP, - ACTIONS(8171), 1, - anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, - anon_sym_bitor, - ACTIONS(8183), 1, - anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8153), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8157), 2, anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_or, - ACTIONS(8159), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8163), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8167), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8169), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [196258] = 26, + [197186] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8867), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(8980), 1, + anon_sym_SEMI, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [196349] = 26, + [197277] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(7252), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8644), 1, - anon_sym_SLASH, - ACTIONS(8650), 1, - anon_sym_PIPE, - ACTIONS(8654), 1, + STATE(5174), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5970), 3, anon_sym_AMP, - ACTIONS(8660), 1, - anon_sym_GT_EQ, - ACTIONS(8666), 1, - anon_sym_QMARK, - ACTIONS(8668), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8670), 1, - anon_sym_bitor, - ACTIONS(8672), 1, - anon_sym_bitand, - ACTIONS(8869), 1, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(8982), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5968), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(7254), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8640), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8642), 2, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [197326] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5176), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5976), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(8984), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5974), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8646), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8648), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8652), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8662), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8656), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8658), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [196440] = 26, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [197375] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8871), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8986), 1, + anon_sym_COMMA, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [196531] = 26, + [197466] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8873), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(6151), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6153), 18, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [196622] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, - anon_sym_SLASH, - ACTIONS(8161), 1, - anon_sym_PIPE, - ACTIONS(8165), 1, - anon_sym_AMP, - ACTIONS(8171), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(8179), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, - anon_sym_bitor, - ACTIONS(8183), 1, - anon_sym_bitand, - ACTIONS(8875), 1, - anon_sym_RBRACK, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8153), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8157), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8167), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(8169), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [196713] = 26, + [197529] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6471), 1, + anon_sym_COLON, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8741), 1, + anon_sym_QMARK, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8747), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8877), 1, - anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [196804] = 26, + [197620] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4823), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(7352), 1, anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(8719), 1, anon_sym_SLASH, - ACTIONS(8161), 1, + ACTIONS(8725), 1, anon_sym_PIPE, - ACTIONS(8165), 1, + ACTIONS(8729), 1, anon_sym_AMP, - ACTIONS(8171), 1, + ACTIONS(8735), 1, anon_sym_GT_EQ, - ACTIONS(8177), 1, - anon_sym_QMARK, - ACTIONS(8179), 1, + ACTIONS(8743), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + ACTIONS(8745), 1, anon_sym_bitor, - ACTIONS(8183), 1, + ACTIONS(8747), 1, anon_sym_bitand, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(7354), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + ACTIONS(8715), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 2, + ACTIONS(8717), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, + ACTIONS(8721), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8159), 2, + ACTIONS(8723), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8163), 2, + ACTIONS(8727), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8173), 2, + ACTIONS(8737), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8167), 3, + ACTIONS(6683), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(8731), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8169), 3, + ACTIONS(8733), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [196895] = 26, + [197707] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8879), 1, + ACTIONS(8988), 1, anon_sym_SEMI, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [196986] = 26, + [197798] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8171), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8177), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8181), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8187), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8191), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8193), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8195), 1, anon_sym_bitand, - ACTIONS(8135), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8881), 1, + ACTIONS(8990), 1, anon_sym_RPAREN, - STATE(2791), 1, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8167), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8169), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8173), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8175), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8179), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8189), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8183), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8185), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [197077] = 26, + [197889] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - ACTIONS(6125), 1, + ACTIONS(6135), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(7906), 1, + ACTIONS(8023), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(8316), 1, anon_sym_SLASH, - ACTIONS(8074), 1, + ACTIONS(8322), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8326), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8332), 1, anon_sym_GT_EQ, - ACTIONS(8088), 1, + ACTIONS(8338), 1, + anon_sym_QMARK, + ACTIONS(8340), 1, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + ACTIONS(8342), 1, anon_sym_bitor, - ACTIONS(8092), 1, + ACTIONS(8344), 1, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8883), 1, - anon_sym_SEMI, - STATE(2791), 1, + ACTIONS(8992), 1, + anon_sym_RBRACK, + STATE(2790), 1, sym_argument_list, - STATE(2792), 1, + STATE(2807), 1, sym_subscript_argument_list, - ACTIONS(6131), 2, + ACTIONS(6141), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7644), 2, + ACTIONS(7765), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + ACTIONS(8312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 2, + ACTIONS(8314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, + ACTIONS(8318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8072), 2, + ACTIONS(8320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8076), 2, + ACTIONS(8324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8086), 2, + ACTIONS(8334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8080), 3, + ACTIONS(8328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8082), 3, + ACTIONS(8330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [197168] = 26, + [197980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, + ACTIONS(3924), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8074), 1, anon_sym_PIPE, - ACTIONS(8078), 1, anon_sym_AMP, - ACTIONS(8084), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8885), 1, - anon_sym_SEMI, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3920), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [197259] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, - anon_sym_SLASH, - ACTIONS(8161), 1, - anon_sym_PIPE, - ACTIONS(8165), 1, - anon_sym_AMP, - ACTIONS(8171), 1, - anon_sym_GT_EQ, - ACTIONS(8177), 1, anon_sym_QMARK, - ACTIONS(8179), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8183), 1, + anon_sym_xor, anon_sym_bitand, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [198024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6419), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 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(6421), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8159), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8163), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8167), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8169), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [197350] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8155), 1, - anon_sym_SLASH, - ACTIONS(8161), 1, - anon_sym_PIPE, - ACTIONS(8165), 1, - anon_sym_AMP, - ACTIONS(8171), 1, - anon_sym_GT_EQ, - ACTIONS(8177), 1, anon_sym_QMARK, - ACTIONS(8179), 1, anon_sym_LT_EQ_GT, - ACTIONS(8181), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8183), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8887), 1, - anon_sym_RBRACK, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8151), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [198068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6481), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8153), 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(6483), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8157), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8159), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8163), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8173), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8167), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8169), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [197441] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8092), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - ACTIONS(8889), 1, - anon_sym_SEMI, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [198112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6381), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8066), 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(6383), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8070), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 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(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [197532] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [198156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 11, + ACTIONS(5348), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -529474,7 +532995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6250), 25, + ACTIONS(2899), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -529500,45 +533021,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [197576] = 14, + [198200] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(8259), 1, + ACTIONS(8368), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8370), 1, anon_sym_AMP_AMP, - ACTIONS(8263), 1, + ACTIONS(8372), 1, anon_sym_AMP, - STATE(4113), 1, + STATE(4131), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6723), 1, + STATE(6815), 1, sym__abstract_declarator, - STATE(5336), 2, + STATE(5163), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8500), 9, - anon_sym_SEMI, + ACTIONS(8561), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, ACTIONS(7429), 11, anon_sym___extension__, @@ -529552,10 +533073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [197642] = 3, + [198266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6313), 11, + ACTIONS(6385), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -529567,7 +533088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6315), 25, + ACTIONS(6387), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -529593,188 +533114,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [197686] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8259), 1, - anon_sym_STAR, - ACTIONS(8261), 1, - anon_sym_AMP_AMP, - ACTIONS(8263), 1, - anon_sym_AMP, - STATE(4113), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6727), 1, - sym__abstract_declarator, - STATE(5336), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6740), 9, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197752] = 17, + [198310] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(6798), 1, - sym_auto, - ACTIONS(6800), 1, - anon_sym_decltype, - ACTIONS(8123), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(8891), 1, + ACTIONS(8368), 1, anon_sym_STAR, - ACTIONS(8893), 1, + ACTIONS(8370), 1, anon_sym_AMP_AMP, - ACTIONS(8895), 1, + ACTIONS(8372), 1, anon_sym_AMP, - STATE(3308), 1, - sym_decltype_auto, - STATE(4275), 1, + STATE(4131), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6977), 1, + STATE(6810), 1, sym__abstract_declarator, - STATE(5377), 2, + STATE(5314), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6616), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8002), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197824] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(8139), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(5183), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8137), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(6096), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [197874] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - STATE(2391), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5566), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5028), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5568), 25, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7429), 11, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -529785,15 +533166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [197928] = 3, + [198376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6387), 11, + ACTIONS(6415), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -529805,7 +533181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6389), 25, + ACTIONS(6417), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -529831,54 +533207,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [197972] = 6, + [198420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(8899), 2, + ACTIONS(6411), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - STATE(5183), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(8897), 20, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6413), 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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + 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_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [198022] = 3, + [198464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 11, + ACTIONS(6324), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -529890,7 +533263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6228), 25, + ACTIONS(6326), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -529916,155 +533289,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [198066] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(6798), 1, - sym_auto, - ACTIONS(6800), 1, - anon_sym_decltype, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8891), 1, - anon_sym_STAR, - ACTIONS(8893), 1, - anon_sym_AMP_AMP, - ACTIONS(8895), 1, - anon_sym_AMP, - STATE(3308), 1, - sym_decltype_auto, - STATE(4275), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6991), 1, - sym__abstract_declarator, - STATE(5396), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7980), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [198138] = 14, + [198508] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8412), 1, - anon_sym_STAR, - ACTIONS(8414), 1, - anon_sym_AMP_AMP, - ACTIONS(8416), 1, - anon_sym_AMP, - STATE(4141), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6735), 1, - sym__abstract_declarator, - STATE(5183), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8500), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(8994), 1, anon_sym_LBRACE, - anon_sym_EQ, + STATE(5409), 1, + sym_field_declaration_list, + STATE(5460), 1, + sym_attribute_specifier, + STATE(7427), 1, + sym_virtual_specifier, + STATE(8368), 1, + sym_base_class_clause, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [198204] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7437), 1, + ACTIONS(5315), 3, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(5317), 24, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8259), 1, anon_sym_STAR, - ACTIONS(8261), 1, anon_sym_AMP_AMP, - ACTIONS(8263), 1, - anon_sym_AMP, - STATE(4113), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6755), 1, - sym__abstract_declarator, - STATE(5336), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8524), 9, anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7429), 11, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -530075,110 +533332,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [198270] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(6125), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_DOT, - ACTIONS(7906), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8068), 1, - anon_sym_SLASH, - ACTIONS(8074), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_EQ, - ACTIONS(8088), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8090), 1, - anon_sym_bitor, - ACTIONS(8092), 1, - anon_sym_bitand, - ACTIONS(8135), 1, - anon_sym_QMARK, - STATE(2791), 1, - sym_argument_list, - STATE(2792), 1, - sym_subscript_argument_list, - ACTIONS(6131), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8064), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8066), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8070), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8072), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8076), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8086), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8080), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8082), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [198358] = 14, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [198568] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(6925), 1, + sym_auto, + ACTIONS(6927), 1, + anon_sym_decltype, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(8412), 1, + ACTIONS(8996), 1, anon_sym_STAR, - ACTIONS(8414), 1, + ACTIONS(8998), 1, anon_sym_AMP_AMP, - ACTIONS(8416), 1, + ACTIONS(9000), 1, anon_sym_AMP, - STATE(4141), 1, + STATE(3356), 1, + sym_decltype_auto, + STATE(4297), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(6736), 1, + STATE(7000), 1, sym__abstract_declarator, - STATE(5183), 2, + STATE(5406), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6740), 9, + ACTIONS(8107), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(7325), 11, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -530190,10 +533393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [198424] = 3, + [198640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6325), 11, + ACTIONS(6403), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530205,7 +533408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6327), 25, + ACTIONS(6405), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530231,10 +533434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [198468] = 3, + [198684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 11, + ACTIONS(9002), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6233), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530246,14 +533452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6305), 25, + ACTIONS(6235), 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, @@ -530262,7 +533467,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -530272,10 +533476,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [198512] = 3, + [198730] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(6135), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_DOT, + ACTIONS(8023), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8171), 1, + anon_sym_SLASH, + ACTIONS(8177), 1, + anon_sym_PIPE, + ACTIONS(8181), 1, + anon_sym_AMP, + ACTIONS(8187), 1, + anon_sym_GT_EQ, + ACTIONS(8191), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8193), 1, + anon_sym_bitor, + ACTIONS(8195), 1, + anon_sym_bitand, + ACTIONS(8234), 1, + anon_sym_QMARK, + STATE(2790), 1, + sym_argument_list, + STATE(2807), 1, + sym_subscript_argument_list, + ACTIONS(6141), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7765), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8167), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8169), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8179), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8189), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8183), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8185), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [198818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6299), 11, + ACTIONS(6300), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530287,7 +533554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6301), 25, + ACTIONS(6302), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530313,10 +533580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [198556] = 3, + [198862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6287), 11, + ACTIONS(6423), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530328,7 +533595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6289), 25, + ACTIONS(6425), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530354,10 +533621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [198600] = 3, + [198906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6283), 11, + ACTIONS(6447), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530369,7 +533636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6285), 25, + ACTIONS(6449), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530395,10 +533662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [198644] = 3, + [198950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6427), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530410,7 +533677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6281), 25, + ACTIONS(6429), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530436,29 +533703,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [198688] = 5, + [198994] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, - anon_sym___attribute__, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(8903), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(8901), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8087), 1, anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8376), 1, + anon_sym_STAR, + ACTIONS(8378), 1, anon_sym_AMP_AMP, + ACTIONS(8380), 1, + anon_sym_AMP, + STATE(4136), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6789), 1, + sym__abstract_declarator, + STATE(5361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6913), 9, anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7605), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -530469,20 +533755,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + [199060] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8376), 1, + anon_sym_STAR, + ACTIONS(8378), 1, + anon_sym_AMP_AMP, + ACTIONS(8380), 1, + anon_sym_AMP, + STATE(4136), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6805), 1, + sym__abstract_declarator, + STATE(5361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8565), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [198736] = 3, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [199126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 11, + ACTIONS(6269), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530494,7 +533822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6262), 25, + ACTIONS(6271), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530520,51 +533848,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [198780] = 3, + [199170] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(9006), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6258), 25, + anon_sym_LBRACK, + STATE(5163), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(9004), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_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_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [198824] = 3, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [199220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 11, + ACTIONS(6443), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530576,7 +533907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6359), 25, + ACTIONS(6445), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530602,10 +533933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [198868] = 3, + [199264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 11, + ACTIONS(6253), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530617,7 +533948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6293), 25, + ACTIONS(6255), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530643,10 +533974,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [198912] = 3, + [199308] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8376), 1, + anon_sym_STAR, + ACTIONS(8378), 1, + anon_sym_AMP_AMP, + ACTIONS(8380), 1, + anon_sym_AMP, + STATE(4136), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6796), 1, + sym__abstract_declarator, + STATE(5297), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6096), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [199374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 11, + ACTIONS(6453), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530658,7 +534041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6297), 25, + ACTIONS(6455), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530684,10 +534067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [198956] = 3, + [199418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6456), 11, + ACTIONS(6461), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530699,7 +534082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6458), 25, + ACTIONS(6463), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530725,10 +534108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199000] = 3, + [199462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6329), 11, + ACTIONS(6473), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530740,7 +534123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6331), 25, + ACTIONS(6475), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530766,48 +534149,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199044] = 14, + [199506] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + STATE(2487), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5593), 3, + anon_sym_AMP, anon_sym_const, - ACTIONS(7982), 1, + anon_sym_COLON, + ACTIONS(5058), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5595), 25, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8412), 1, anon_sym_STAR, - ACTIONS(8414), 1, anon_sym_AMP_AMP, - ACTIONS(8416), 1, - anon_sym_AMP, - STATE(4141), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6743), 1, - sym__abstract_declarator, - STATE(5183), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8524), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(7325), 11, + anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -530818,62 +534190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [199110] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - anon_sym_const, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8412), 1, - anon_sym_STAR, - ACTIONS(8414), 1, - anon_sym_AMP_AMP, - ACTIONS(8416), 1, - anon_sym_AMP, - STATE(4141), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6748), 1, - sym__abstract_declarator, - STATE(5261), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6079), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - ACTIONS(7325), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [199176] = 3, + [199560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5316), 11, + ACTIONS(6457), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530885,7 +534210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2871), 25, + ACTIONS(6459), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530911,10 +534236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199220] = 3, + [199604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 11, + ACTIONS(6465), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -530926,7 +534251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6367), 25, + ACTIONS(6467), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -530952,51 +534277,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199264] = 3, + [199648] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6407), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6409), 25, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7445), 1, + anon_sym_requires, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(5429), 1, + sym_ref_qualifier, + STATE(6375), 1, + sym__function_attributes_end, + STATE(6532), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5837), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9008), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [199730] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9016), 1, + anon_sym___attribute__, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(9014), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(9012), 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_LT_LT, + anon_sym_SEMI, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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, + [199778] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(61), 1, + anon_sym_const, + ACTIONS(8244), 2, + anon_sym_AMP, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + STATE(5163), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7429), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8242), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [199308] = 3, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [199828] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6413), 11, + ACTIONS(9002), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9019), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6165), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531008,14 +534445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6415), 25, + ACTIONS(6167), 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, @@ -531023,8 +534458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -531034,45 +534467,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199352] = 14, + [199876] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(8259), 1, + ACTIONS(8368), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8370), 1, anon_sym_AMP_AMP, - ACTIONS(8263), 1, + ACTIONS(8372), 1, anon_sym_AMP, - STATE(4113), 1, + STATE(4131), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6769), 1, + STATE(6822), 1, sym__abstract_declarator, - STATE(5250), 2, + STATE(5163), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6079), 9, - anon_sym_SEMI, + ACTIONS(6913), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, ACTIONS(7429), 11, anon_sym___extension__, @@ -531086,10 +534519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [199418] = 3, + [199942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 11, + ACTIONS(6352), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531101,7 +534534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6423), 25, + ACTIONS(6354), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531127,152 +534560,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199462] = 22, + [199986] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7333), 1, - anon_sym_DASH_GT, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7365), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - STATE(5373), 1, - sym_ref_qualifier, - STATE(6334), 1, - sym__function_attributes_end, - STATE(6474), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5830), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [199544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6230), 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(6232), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, anon_sym_LPAREN2, + ACTIONS(6925), 1, + sym_auto, + ACTIONS(6927), 1, + anon_sym_decltype, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(8996), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8998), 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, - [199588] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6234), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(9000), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6236), 25, + STATE(3356), 1, + sym_decltype_auto, + STATE(4297), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7023), 1, + sym__abstract_declarator, + STATE(5417), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8085), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_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, - [199632] = 3, + anon_sym_requires, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [200058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6252), 11, + ACTIONS(6285), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531284,7 +534630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6254), 25, + ACTIONS(6287), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531310,52 +534656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199676] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8912), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6206), 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(6208), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [199722] = 3, + [200102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6460), 11, + ACTIONS(6431), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531367,7 +534671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6462), 25, + ACTIONS(6433), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531393,10 +534697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199766] = 3, + [200146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6425), 11, + ACTIONS(6320), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531408,7 +534712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6427), 25, + ACTIONS(6322), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531434,10 +534738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199810] = 3, + [200190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6417), 11, + ACTIONS(6281), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531449,7 +534753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6419), 25, + ACTIONS(6283), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531475,10 +534779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199854] = 3, + [200234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 11, + ACTIONS(6289), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531490,7 +534794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6383), 25, + ACTIONS(6291), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531516,10 +534820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199898] = 3, + [200278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6361), 11, + ACTIONS(6277), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531531,7 +534835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6363), 25, + ACTIONS(6279), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531557,58 +534861,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199942] = 22, + [200322] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8917), 1, + ACTIONS(9024), 1, anon_sym_requires, - STATE(5398), 1, + STATE(5404), 1, sym_ref_qualifier, - STATE(6335), 1, + STATE(6368), 1, sym__function_attributes_end, - STATE(6509), 1, + STATE(6505), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8914), 2, + ACTIONS(9021), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - STATE(5823), 3, + STATE(5853), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 8, + ACTIONS(9008), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -531617,39 +534921,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [200024] = 11, + [200404] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(8920), 1, - anon_sym_LBRACE, - STATE(5394), 1, - sym_field_declaration_list, - STATE(5437), 1, - sym_attribute_specifier, - STATE(7397), 1, - sym_virtual_specifier, - STATE(8289), 1, - sym_base_class_clause, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5284), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(5286), 24, - anon_sym_COMMA, + ACTIONS(8087), 1, anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8368), 1, anon_sym_STAR, + ACTIONS(8370), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(8372), 1, + anon_sym_AMP, + STATE(4131), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6826), 1, + sym__abstract_declarator, + STATE(5163), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8565), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(7429), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -531660,16 +534973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [200084] = 3, + [200470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6317), 11, + ACTIONS(6273), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531681,7 +534988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6319), 25, + ACTIONS(6275), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531707,10 +535014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [200128] = 3, + [200514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6341), 11, + ACTIONS(6363), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531722,7 +535029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6343), 25, + ACTIONS(6365), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531748,10 +535055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [200172] = 3, + [200558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6333), 11, + ACTIONS(6293), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531763,7 +535070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6335), 25, + ACTIONS(6295), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531789,10 +535096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [200216] = 3, + [200602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6373), 11, + ACTIONS(6304), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531804,7 +535111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6375), 25, + ACTIONS(6306), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531830,10 +535137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [200260] = 3, + [200646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 11, + ACTIONS(6308), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531845,7 +535152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6446), 25, + ACTIONS(6310), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531871,16 +535178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [200304] = 5, + [200690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8912), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8922), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6194), 11, + ACTIONS(6334), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531892,12 +535193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6196), 21, + ACTIONS(6336), 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, @@ -531905,6 +535208,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -531914,10 +535219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [200352] = 3, + [200734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 11, + ACTIONS(6265), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531929,7 +535234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3922), 25, + ACTIONS(6267), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531955,10 +535260,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [200396] = 3, + [200778] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8376), 1, + anon_sym_STAR, + ACTIONS(8378), 1, + anon_sym_AMP_AMP, + ACTIONS(8380), 1, + anon_sym_AMP, + STATE(4136), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6757), 1, + sym__abstract_declarator, + STATE(5361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8561), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [200844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6448), 11, + ACTIONS(6344), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531970,7 +535327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6450), 25, + ACTIONS(6346), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -531996,10 +535353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [200440] = 3, + [200888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 11, + ACTIONS(6469), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -532011,7 +535368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6309), 25, + ACTIONS(6471), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -532037,82 +535394,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [200484] = 22, + [200932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7439), 1, - anon_sym_DASH_GT, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8924), 1, - anon_sym___attribute__, - ACTIONS(8927), 1, - anon_sym_LBRACK_LBRACK, - STATE(5469), 1, - sym_ref_qualifier, - STATE(6316), 1, - sym__function_attributes_end, - STATE(6325), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5839), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [200565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5723), 3, + ACTIONS(4999), 3, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(5725), 32, + anon_sym_COLON, + ACTIONS(5001), 32, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -532124,38 +535425,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [200608] = 9, + [200975] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(8930), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - ACTIONS(8932), 1, + ACTIONS(9029), 1, anon_sym_COLON, - STATE(5371), 1, + STATE(5400), 1, sym__enum_base_clause, - STATE(5399), 1, + STATE(5407), 1, sym_enumerator_list, - STATE(5433), 1, + STATE(5503), 1, sym_attribute_specifier, - ACTIONS(6055), 3, + ACTIONS(6108), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(6057), 26, + ACTIONS(6110), 26, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -532182,58 +535480,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [200663] = 22, + [201030] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7439), 1, + ACTIONS(7615), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8924), 1, + ACTIONS(9031), 1, anon_sym___attribute__, - ACTIONS(8927), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8937), 1, + ACTIONS(9040), 1, anon_sym_requires, - STATE(5423), 1, + STATE(5489), 1, sym_ref_qualifier, - STATE(6219), 1, - sym__function_attributes_end, - STATE(6326), 1, + STATE(6240), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(6356), 1, + sym__function_attributes_end, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8934), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5836), 3, + STATE(5868), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 7, + ACTIONS(9008), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -532241,31 +535539,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [200744] = 5, + [201111] = 3, ACTIONS(3), 1, sym_comment, - STATE(5094), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5905), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8940), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5903), 28, + ACTIONS(3590), 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___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3588), 22, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -532276,27 +535571,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, + 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, - [200791] = 5, + [201154] = 5, ACTIONS(3), 1, sym_comment, - STATE(5094), 1, + STATE(5223), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5911), 2, + ACTIONS(5986), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(8940), 4, + ACTIONS(9043), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5909), 28, + ACTIONS(5988), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -532325,33 +535621,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [200838] = 9, + [201201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(8930), 1, - anon_sym_LBRACE, - ACTIONS(8932), 1, - anon_sym_COLON, - STATE(5358), 1, - sym__enum_base_clause, - STATE(5390), 1, - sym_enumerator_list, - STATE(5448), 1, - sym_attribute_specifier, - ACTIONS(6073), 3, + ACTIONS(9045), 1, + anon_sym_SEMI, + ACTIONS(6453), 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(6455), 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, + [201246] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5346), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5976), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(6075), 26, + ACTIONS(9047), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5974), 28, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -532363,28 +535697,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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, - [200893] = 5, + [201293] = 5, ACTIONS(3), 1, sym_comment, - STATE(5316), 1, + STATE(5347), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5940), 2, + ACTIONS(5970), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(8942), 4, + ACTIONS(9049), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5938), 28, + ACTIONS(5968), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -532413,24 +535746,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [200940] = 5, + [201340] = 4, ACTIONS(3), 1, sym_comment, - STATE(5317), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5946), 2, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(8944), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5944), 28, + anon_sym_COLON, + ACTIONS(5562), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, @@ -532448,6 +535778,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, anon_sym_final, @@ -532455,24 +535787,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [200987] = 3, + [201385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6146), 3, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5560), 3, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(6148), 32, - anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + ACTIONS(5562), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -532484,25 +535819,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [201030] = 3, + [201430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 3, + ACTIONS(4991), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(4994), 32, + ACTIONS(4993), 32, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -532535,20 +535868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [201073] = 5, + [201473] = 5, ACTIONS(3), 1, sym_comment, - STATE(5094), 1, + STATE(5223), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5991), 2, + ACTIONS(6028), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(8940), 4, + ACTIONS(9043), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5989), 28, + ACTIONS(6026), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -532577,20 +535910,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [201120] = 5, + [201520] = 5, ACTIONS(3), 1, sym_comment, - STATE(5094), 1, + STATE(5223), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5995), 2, + ACTIONS(6022), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(8940), 4, + ACTIONS(9043), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5993), 28, + ACTIONS(6020), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -532619,20 +535952,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [201167] = 5, + [201567] = 5, ACTIONS(3), 1, sym_comment, - STATE(5309), 1, + STATE(5371), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5590), 2, + ACTIONS(5762), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(8946), 4, + ACTIONS(9051), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5592), 28, + ACTIONS(5764), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -532661,14 +535994,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [201214] = 3, + [201614] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(9053), 1, + anon_sym_LT, + STATE(2278), 1, + sym_template_argument_list, + STATE(2487), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4135), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5058), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4143), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [201667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5030), 32, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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, + [201710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 3, + ACTIONS(5003), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(5380), 32, + ACTIONS(5005), 32, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -532701,14 +536119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [201257] = 3, + [201753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4964), 3, + ACTIONS(4995), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(4966), 32, + ACTIONS(4997), 32, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -532741,14 +536159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [201300] = 3, + [201796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 3, + ACTIONS(5024), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(5010), 32, + ACTIONS(5026), 32, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -532781,26 +536199,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [201343] = 3, + [201839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 3, + ACTIONS(5635), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - ACTIONS(4990), 32, + ACTIONS(5637), 32, 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_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -532812,23 +536227,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [201386] = 3, + [201882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 3, + ACTIONS(5035), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(4998), 32, + ACTIONS(5037), 32, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -532861,26 +536279,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [201429] = 3, + [201925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 3, + ACTIONS(6249), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - ACTIONS(5002), 32, + ACTIONS(6251), 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___attribute__, - anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -532892,129 +536308,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + anon_sym_COLON, + 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, - [201472] = 3, + [201968] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 3, - anon_sym_AMP, + ACTIONS(61), 1, anon_sym_const, - anon_sym_COLON, - ACTIONS(5006), 32, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8087), 1, anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8601), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(8603), 1, 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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, - [201515] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5382), 3, + ACTIONS(8605), 1, anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5384), 31, - anon_sym_COMMA, + STATE(4188), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6837), 1, + sym__abstract_declarator, + STATE(5163), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6913), 8, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - 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, - [201560] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(8948), 1, - anon_sym___attribute__, - ACTIONS(8950), 1, - anon_sym_LBRACE, - STATE(5504), 1, - sym_field_declaration_list, - STATE(5690), 1, - sym_attribute_specifier, - STATE(7564), 1, - sym_virtual_specifier, - STATE(8175), 1, - sym_base_class_clause, - ACTIONS(5284), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5286), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7429), 11, anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -533025,21 +536370,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [201619] = 4, + [202033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_COLON_COLON, - ACTIONS(5382), 3, + ACTIONS(5531), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(5384), 31, + ACTIONS(5533), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -533071,49 +536411,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [201664] = 17, + [202078] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(7992), 1, + ACTIONS(8097), 1, sym_auto, - ACTIONS(7994), 1, + ACTIONS(8099), 1, anon_sym_decltype, - ACTIONS(8952), 1, + ACTIONS(9055), 1, anon_sym_STAR, - ACTIONS(8954), 1, + ACTIONS(9057), 1, anon_sym_AMP_AMP, - ACTIONS(8956), 1, + ACTIONS(9059), 1, anon_sym_AMP, - STATE(4419), 1, + STATE(4416), 1, sym_parameter_list, - STATE(5427), 1, + STATE(5496), 1, sym_decltype_auto, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(7049), 1, + STATE(7044), 1, sym__abstract_declarator, - STATE(5406), 2, + STATE(5468), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8002), 5, + ACTIONS(8085), 5, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7429), 11, + ACTIONS(7605), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -533125,27 +536465,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [201735] = 4, + [202149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5455), 3, + ACTIONS(6145), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - ACTIONS(5457), 31, + ACTIONS(6147), 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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -533157,55 +536494,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + anon_sym_COLON, + 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, - [201780] = 14, + [202192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, + ACTIONS(9064), 1, anon_sym_const, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8528), 1, - anon_sym_STAR, - ACTIONS(8530), 1, - anon_sym_AMP_AMP, - ACTIONS(8532), 1, + ACTIONS(5424), 2, anon_sym_AMP, - STATE(4217), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6856), 1, - sym__abstract_declarator, - STATE(5335), 2, + anon_sym_LBRACK, + STATE(5361), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6079), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7325), 11, + ACTIONS(9061), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -533217,77 +536528,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [201845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(5019), 32, + ACTIONS(5426), 19, 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_LBRACK_LBRACK, 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + anon_sym_COLON, + 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, - [201888] = 14, + [202241] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(61), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(8528), 1, + ACTIONS(8601), 1, anon_sym_STAR, - ACTIONS(8530), 1, + ACTIONS(8603), 1, anon_sym_AMP_AMP, - ACTIONS(8532), 1, + ACTIONS(8605), 1, anon_sym_AMP, - STATE(4217), 1, + STATE(4188), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6848), 1, + STATE(6854), 1, sym__abstract_declarator, - STATE(5183), 2, + STATE(5357), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8524), 8, + ACTIONS(6096), 8, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -533296,7 +536587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7325), 11, + ACTIONS(7429), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -533308,26 +536599,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [201953] = 8, + [202306] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(6875), 1, + ACTIONS(7113), 1, anon_sym_LT, - STATE(1935), 1, + STATE(1974), 1, sym_template_argument_list, - STATE(2854), 1, + STATE(2903), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5566), 2, + ACTIONS(5593), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5052), 4, + ACTIONS(5084), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5568), 25, + ACTIONS(5595), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -533353,46 +536644,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [202006] = 14, + [202359] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(8528), 1, + ACTIONS(8097), 1, + sym_auto, + ACTIONS(8099), 1, + anon_sym_decltype, + ACTIONS(9055), 1, anon_sym_STAR, - ACTIONS(8530), 1, + ACTIONS(9057), 1, anon_sym_AMP_AMP, - ACTIONS(8532), 1, + ACTIONS(9059), 1, anon_sym_AMP, - STATE(4217), 1, + STATE(4416), 1, sym_parameter_list, - STATE(6377), 1, + STATE(5496), 1, + sym_decltype_auto, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6831), 1, + STATE(7077), 1, sym__abstract_declarator, - STATE(5183), 2, + STATE(5475), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6740), 8, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(8107), 5, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7325), 11, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7605), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -533404,19 +536698,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [202071] = 6, + [202430] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8961), 1, - anon_sym_const, - ACTIONS(5515), 2, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(9029), 1, + anon_sym_COLON, + STATE(5378), 1, + sym__enum_base_clause, + STATE(5402), 1, + sym_enumerator_list, + STATE(5484), 1, + sym_attribute_specifier, + ACTIONS(6114), 3, anon_sym_AMP, anon_sym_LBRACK, - STATE(5336), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8958), 11, + anon_sym_const, + ACTIONS(6116), 26, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -533427,57 +536736,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5517), 19, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [202120] = 14, + [202485] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(61), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(8528), 1, + ACTIONS(8601), 1, anon_sym_STAR, - ACTIONS(8530), 1, + ACTIONS(8603), 1, anon_sym_AMP_AMP, - ACTIONS(8532), 1, + ACTIONS(8605), 1, anon_sym_AMP, - STATE(4217), 1, + STATE(4188), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6801), 1, + STATE(6848), 1, sym__abstract_declarator, - STATE(5183), 2, + STATE(5163), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8500), 8, + ACTIONS(8561), 8, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -533486,7 +536783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7325), 11, + ACTIONS(7429), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -533498,89 +536795,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [202185] = 4, + [202550] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8964), 1, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7615), 1, + anon_sym_DASH_GT, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9031), 1, + anon_sym___attribute__, + ACTIONS(9034), 1, + anon_sym_LBRACK_LBRACK, + STATE(5477), 1, + sym_ref_qualifier, + STATE(6239), 1, + sym_trailing_return_type, + STATE(6298), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5865), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9008), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(6333), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [202631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5556), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(6335), 25, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5558), 32, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [202230] = 17, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [202674] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, + ACTIONS(61), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(7992), 1, - sym_auto, - ACTIONS(7994), 1, - anon_sym_decltype, - ACTIONS(8952), 1, + ACTIONS(8601), 1, anon_sym_STAR, - ACTIONS(8954), 1, + ACTIONS(8603), 1, anon_sym_AMP_AMP, - ACTIONS(8956), 1, + ACTIONS(8605), 1, anon_sym_AMP, - STATE(4419), 1, + STATE(4188), 1, sym_parameter_list, - STATE(5427), 1, - sym_decltype_auto, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(7003), 1, + STATE(6835), 1, sym__abstract_declarator, - STATE(5412), 2, + STATE(5163), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7980), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, + ACTIONS(8565), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, ACTIONS(7429), 11, anon_sym___extension__, anon_sym_constexpr, @@ -533593,27 +536945,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [202301] = 8, + [202739] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(8966), 1, - anon_sym_LT, - STATE(2229), 1, - sym_template_argument_list, - STATE(2391), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4137), 3, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(9067), 1, + anon_sym___attribute__, + ACTIONS(9069), 1, + anon_sym_LBRACE, + STATE(5547), 1, + sym_field_declaration_list, + STATE(5785), 1, + sym_attribute_specifier, + STATE(7597), 1, + sym_virtual_specifier, + STATE(8271), 1, + sym_base_class_clause, + ACTIONS(5315), 2, anon_sym_AMP, anon_sym_const, - anon_sym_COLON, - ACTIONS(5028), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4145), 24, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5317), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -533621,8 +536976,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -533635,31 +536990,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [202354] = 3, + [202798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 13, - anon_sym_DOT_DOT_DOT, + STATE(5223), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5964), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(9043), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5962), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3472), 22, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -533670,22 +537028,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [202397] = 3, + [202845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6166), 3, + ACTIONS(6237), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(6168), 32, + ACTIONS(6239), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -533718,24 +537075,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [202440] = 3, + [202888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6106), 3, + ACTIONS(5039), 3, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(6108), 32, - anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + ACTIONS(5046), 32, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -533747,48 +537106,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [202483] = 14, + [202931] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(8737), 1, + ACTIONS(8801), 1, anon_sym_STAR, - ACTIONS(8739), 1, + ACTIONS(8803), 1, anon_sym_AMP_AMP, - ACTIONS(8741), 1, + ACTIONS(8805), 1, anon_sym_AMP, - STATE(4227), 1, + STATE(4229), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(6917), 1, + STATE(6974), 1, sym__abstract_declarator, - STATE(5559), 2, + STATE(5617), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6616), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6740), 7, + ACTIONS(8561), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -533796,7 +537153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8121), 11, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -533808,13 +537165,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [202547] = 3, + [202995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 2, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(9053), 1, + anon_sym_LT, + STATE(2278), 1, + sym_template_argument_list, + ACTIONS(5397), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(5384), 32, + anon_sym_COLON, + ACTIONS(4161), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -533826,7 +537190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -533837,29 +537200,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, 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, - [202589] = 6, + [203043] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(8899), 2, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, anon_sym_AMP, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7709), 1, + anon_sym_DASH_GT, + ACTIONS(9010), 1, anon_sym_LBRACK, - STATE(5336), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7429), 11, + ACTIONS(9071), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9074), 1, + anon_sym_requires, + STATE(5558), 1, + sym_ref_qualifier, + STATE(6335), 1, + sym_trailing_return_type, + STATE(6415), 1, + sym__function_attributes_end, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9037), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5904), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9008), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [203123] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(9077), 1, + anon_sym_LT, + STATE(3008), 1, + sym_template_argument_list, + ACTIONS(5007), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5012), 28, + 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, @@ -533870,48 +537299,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8897), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, + anon_sym_GT2, anon_sym_requires, - [202637] = 5, + [203171] = 7, ACTIONS(3), 1, sym_comment, - STATE(5309), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5535), 2, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(9027), 1, + anon_sym_LBRACE, + STATE(5415), 1, + sym_enumerator_list, + STATE(5488), 1, + sym_attribute_specifier, + ACTIONS(5788), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(8946), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5537), 27, + ACTIONS(5790), 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_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -533923,55 +537341,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + 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, - [202683] = 17, + [203221] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(7726), 1, - sym_auto, - ACTIONS(7728), 1, - anon_sym_decltype, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(8968), 1, + ACTIONS(8801), 1, anon_sym_STAR, - ACTIONS(8970), 1, + ACTIONS(8803), 1, anon_sym_AMP_AMP, - ACTIONS(8972), 1, + ACTIONS(8805), 1, anon_sym_AMP, - ACTIONS(8976), 1, - anon_sym_const, - STATE(2172), 1, - sym_decltype_auto, - STATE(4436), 1, + STATE(4229), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7077), 1, + STATE(6949), 1, sym__abstract_declarator, - STATE(5535), 2, + STATE(5617), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8002), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6616), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8974), 11, + ACTIONS(6913), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -533983,339 +537400,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [202753] = 22, + [203285] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7609), 1, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(7638), 1, + ACTIONS(7741), 1, anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8978), 1, + ACTIONS(9071), 1, anon_sym_LBRACK_LBRACK, - STATE(5492), 1, + STATE(5562), 1, sym_ref_qualifier, - STATE(6268), 1, - sym__function_attributes_end, - STATE(6304), 1, + STATE(6318), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(6393), 1, + sym__function_attributes_end, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(8981), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5874), 3, + STATE(5884), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 6, + ACTIONS(9008), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [203365] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(7829), 1, + sym_auto, + ACTIONS(7831), 1, + anon_sym_decltype, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9079), 1, + anon_sym_STAR, + ACTIONS(9081), 1, + anon_sym_AMP_AMP, + ACTIONS(9083), 1, + anon_sym_AMP, + ACTIONS(9087), 1, + anon_sym_const, + STATE(2272), 1, + sym_decltype_auto, + STATE(4426), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7105), 1, + sym__abstract_declarator, + STATE(5560), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8107), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9085), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [203435] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(8801), 1, + anon_sym_STAR, + ACTIONS(8803), 1, + anon_sym_AMP_AMP, + ACTIONS(8805), 1, + anon_sym_AMP, + STATE(4229), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6955), 1, + sym__abstract_declarator, + STATE(5617), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8565), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [203499] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, + anon_sym_const, + ACTIONS(8244), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(5361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7605), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(8242), 18, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_try, - [202833] = 22, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [203547] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7441), 1, + ACTIONS(7642), 1, anon_sym_requires, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7623), 1, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - STATE(5510), 1, + STATE(5512), 1, sym_ref_qualifier, - STATE(6325), 1, + STATE(6239), 1, sym_trailing_return_type, - STATE(6378), 1, + STATE(6317), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(9089), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5873), 3, + STATE(5899), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 6, + ACTIONS(9008), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - [202913] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(8984), 1, - anon_sym_LT, - STATE(2988), 1, - sym_template_argument_list, - ACTIONS(5338), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4163), 28, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [202961] = 22, + [203627] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7636), 1, - anon_sym_DASH_GT, - ACTIONS(7638), 1, + ACTIONS(7642), 1, anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7725), 1, + anon_sym_DASH_GT, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8978), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - STATE(5511), 1, + STATE(5541), 1, sym_ref_qualifier, - STATE(6304), 1, + STATE(6239), 1, sym_trailing_return_type, - STATE(6375), 1, + STATE(6448), 1, sym__function_attributes_end, - STATE(7198), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5860), 3, + STATE(5917), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9008), 6, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [203041] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8948), 1, - anon_sym___attribute__, - ACTIONS(8986), 1, - anon_sym_LBRACE, - ACTIONS(8988), 1, anon_sym_COLON, - STATE(5445), 1, - sym__enum_base_clause, - STATE(5523), 1, - sym_enumerator_list, - STATE(5684), 1, - sym_attribute_specifier, - ACTIONS(6073), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6075), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [203095] = 22, + [203707] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7623), 1, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8937), 1, + ACTIONS(9040), 1, anon_sym_requires, - STATE(5541), 1, + STATE(5522), 1, sym_ref_qualifier, - STATE(6326), 1, + STATE(6240), 1, sym_trailing_return_type, - STATE(6397), 1, + STATE(6283), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8934), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + ACTIONS(9089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5858), 3, + STATE(5914), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 6, + ACTIONS(9008), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - [203175] = 6, + [203787] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(8966), 1, + ACTIONS(9053), 1, anon_sym_LT, - STATE(2229), 1, + STATE(2278), 1, sym_template_argument_list, - ACTIONS(4968), 3, + ACTIONS(5007), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(4975), 28, + ACTIONS(5012), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -534344,45 +537819,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [203223] = 14, + [203835] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(7829), 1, + sym_auto, + ACTIONS(7831), 1, + anon_sym_decltype, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(8737), 1, + ACTIONS(9079), 1, anon_sym_STAR, - ACTIONS(8739), 1, + ACTIONS(9081), 1, anon_sym_AMP_AMP, - ACTIONS(8741), 1, + ACTIONS(9083), 1, anon_sym_AMP, - STATE(4227), 1, + ACTIONS(9087), 1, + anon_sym_const, + STATE(2272), 1, + sym_decltype_auto, + STATE(4426), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(6920), 1, + STATE(7141), 1, sym__abstract_declarator, - STATE(5344), 2, + STATE(5535), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6616), 5, + ACTIONS(8085), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6079), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8121), 11, + ACTIONS(9085), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -534394,87 +537872,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [203287] = 22, + [203905] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7338), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7604), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9071), 1, anon_sym_LBRACK_LBRACK, - STATE(5543), 1, + STATE(5572), 1, sym_ref_qualifier, - STATE(6289), 1, - sym__function_attributes_end, - STATE(6325), 1, + STATE(6318), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(6342), 1, + sym__function_attributes_end, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(8981), 2, + ACTIONS(9089), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5880), 3, + STATE(5908), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 6, + ACTIONS(9008), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [203367] = 7, + anon_sym_try, + [203985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(9092), 1, anon_sym___attribute__, - ACTIONS(8930), 1, - anon_sym_LBRACE, - STATE(5372), 1, - sym_enumerator_list, - STATE(5463), 1, + STATE(5390), 2, sym_attribute_specifier, - ACTIONS(5678), 3, + aux_sym_type_definition_repeat1, + ACTIONS(9014), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5680), 27, + ACTIONS(9012), 28, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -534489,148 +537964,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_try, - anon_sym_requires, - [203417] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, anon_sym_noexcept, - ACTIONS(7340), 1, anon_sym_throw, - ACTIONS(7636), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8978), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8990), 1, anon_sym_requires, - STATE(5493), 1, - sym_ref_qualifier, - STATE(6302), 1, - sym_trailing_return_type, - STATE(6368), 1, - sym__function_attributes_end, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8934), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5885), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [203497] = 14, + [204031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8737), 1, - anon_sym_STAR, - ACTIONS(8739), 1, - anon_sym_AMP_AMP, - ACTIONS(8741), 1, + ACTIONS(9006), 2, anon_sym_AMP, - STATE(4227), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6897), 1, - sym__abstract_declarator, - STATE(5559), 2, + anon_sym_LBRACK, + STATE(5361), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8524), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203561] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8948), 1, - anon_sym___attribute__, - ACTIONS(8986), 1, - anon_sym_LBRACE, - ACTIONS(8988), 1, - anon_sym_COLON, - STATE(5417), 1, - sym__enum_base_clause, - STATE(5503), 1, - sym_enumerator_list, - STATE(5710), 1, - sym_attribute_specifier, - ACTIONS(6055), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6057), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7605), 11, anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -534641,126 +537994,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [203615] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(8966), 1, - anon_sym_LT, - STATE(2229), 1, - sym_template_argument_list, - ACTIONS(5338), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4163), 28, + ACTIONS(9004), 18, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + anon_sym_EQ, + anon_sym_COLON, + 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, - [203663] = 22, + [204079] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7338), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7604), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9071), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8937), 1, + ACTIONS(9074), 1, anon_sym_requires, - STATE(5499), 1, + STATE(5525), 1, sym_ref_qualifier, - STATE(6239), 1, + STATE(6303), 1, sym__function_attributes_end, - STATE(6326), 1, + STATE(6335), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(8934), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - ACTIONS(8981), 2, + ACTIONS(9089), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5886), 3, + STATE(5894), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 6, + ACTIONS(9008), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [203743] = 6, + anon_sym_try, + [204159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(8139), 2, + ACTIONS(5560), 2, anon_sym_AMP, - anon_sym_LBRACK, - STATE(5336), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7429), 11, + anon_sym_const, + ACTIONS(5562), 32, + 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, @@ -534771,39 +538100,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8137), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [203791] = 6, + [204201] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(8984), 1, + ACTIONS(9077), 1, anon_sym_LT, - STATE(2988), 1, + STATE(3008), 1, sym_template_argument_list, - ACTIONS(4968), 3, + ACTIONS(5397), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(4975), 28, + ACTIONS(4161), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -534832,140 +538152,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [203839] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8737), 1, - anon_sym_STAR, - ACTIONS(8739), 1, - anon_sym_AMP_AMP, - ACTIONS(8741), 1, - anon_sym_AMP, - STATE(4227), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6901), 1, - sym__abstract_declarator, - STATE(5559), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8500), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203903] = 5, + [204249] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8993), 1, + ACTIONS(9067), 1, anon_sym___attribute__, - STATE(5367), 2, + ACTIONS(9095), 1, + anon_sym_LBRACE, + ACTIONS(9097), 1, + anon_sym_COLON, + STATE(5453), 1, + sym__enum_base_clause, + STATE(5549), 1, + sym_enumerator_list, + STATE(5794), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(8903), 3, + ACTIONS(6114), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(8901), 28, + ACTIONS(6116), 26, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - 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, - [203949] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(7726), 1, - sym_auto, - ACTIONS(7728), 1, - anon_sym_decltype, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8968), 1, anon_sym_STAR, - ACTIONS(8970), 1, anon_sym_AMP_AMP, - ACTIONS(8972), 1, - anon_sym_AMP, - ACTIONS(8976), 1, - anon_sym_const, - STATE(2172), 1, - sym_decltype_auto, - STATE(4436), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7112), 1, - sym__abstract_declarator, - STATE(5521), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7980), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8974), 11, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -534976,65 +538190,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [204019] = 22, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [204303] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7609), 1, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7725), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8978), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8990), 1, + ACTIONS(9040), 1, anon_sym_requires, - STATE(5527), 1, + STATE(5538), 1, sym_ref_qualifier, - STATE(6284), 1, - sym__function_attributes_end, - STATE(6302), 1, + STATE(6240), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(6385), 1, + sym__function_attributes_end, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(8934), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8981), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + ACTIONS(9037), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5852), 3, + STATE(5893), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 6, - anon_sym_COMMA, + ACTIONS(9008), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [204099] = 24, + [204383] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, @@ -535053,32 +538274,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(2042), 1, anon_sym_typename, - ACTIONS(3032), 1, + ACTIONS(3056), 1, sym_primitive_type, - ACTIONS(5045), 1, + ACTIONS(5077), 1, anon_sym_COLON_COLON, - ACTIONS(8996), 1, + ACTIONS(9099), 1, sym_identifier, - ACTIONS(8998), 1, + ACTIONS(9101), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9002), 1, + ACTIONS(9105), 1, anon_sym_EQ, - STATE(3421), 1, + STATE(3392), 1, sym__type_specifier, - STATE(3681), 1, + STATE(3614), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, + STATE(3620), 1, sym_decltype_auto, - STATE(4475), 1, + STATE(4467), 1, sym_qualified_type_identifier, - STATE(7046), 1, + STATE(7073), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - ACTIONS(9000), 2, + ACTIONS(9103), 2, anon_sym_COMMA, anon_sym_GT2, - STATE(3357), 2, + STATE(3389), 2, sym_decltype, sym_template_type, ACTIONS(53), 4, @@ -535086,7 +538307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3557), 7, + STATE(3623), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -535094,29 +538315,33 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [204183] = 7, + [204467] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(9067), 1, anon_sym___attribute__, - ACTIONS(8930), 1, + ACTIONS(9095), 1, anon_sym_LBRACE, - STATE(5389), 1, + ACTIONS(9097), 1, + anon_sym_COLON, + STATE(5494), 1, + sym__enum_base_clause, + STATE(5536), 1, sym_enumerator_list, - STATE(5454), 1, + STATE(5765), 1, sym_attribute_specifier, - ACTIONS(5733), 3, + ACTIONS(6108), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(5735), 27, + ACTIONS(6110), 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_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -535128,35 +538353,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - 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, - [204233] = 5, + [204521] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - STATE(5474), 1, - sym_attribute_specifier, - ACTIONS(5882), 3, + STATE(5371), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5418), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(5884), 28, + ACTIONS(9051), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5420), 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_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -535168,81 +538394,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - 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, - [204278] = 19, + [204567] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7333), 1, - anon_sym_DASH_GT, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7365), 1, - anon_sym_requires, - ACTIONS(9006), 1, - anon_sym_LBRACK, - STATE(6338), 1, - sym__function_attributes_end, - STATE(6446), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6587), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5827), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9004), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(9027), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [204351] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - STATE(5475), 1, + STATE(5433), 1, + sym_enumerator_list, + STATE(5438), 1, sym_attribute_specifier, - ACTIONS(5895), 3, + ACTIONS(5655), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5897), 28, + ACTIONS(5657), 27, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -535250,7 +538424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___extension__, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -535271,47 +538444,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [204396] = 17, + [204617] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(6798), 1, - sym_auto, - ACTIONS(6800), 1, - anon_sym_decltype, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(9008), 1, + ACTIONS(8801), 1, anon_sym_STAR, - ACTIONS(9010), 1, + ACTIONS(8803), 1, anon_sym_AMP_AMP, - ACTIONS(9012), 1, + ACTIONS(8805), 1, anon_sym_AMP, - STATE(3308), 1, - sym_decltype_auto, - STATE(4309), 1, + STATE(4229), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7146), 1, + STATE(6964), 1, sym__abstract_declarator, - STATE(5645), 2, + STATE(5379), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8002), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6616), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8121), 11, + ACTIONS(6096), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -535323,27 +538494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [204465] = 6, + [204681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, - sym_auto, - ACTIONS(7994), 1, - anon_sym_decltype, - STATE(5427), 1, - sym_decltype_auto, - ACTIONS(5436), 3, + ACTIONS(7723), 1, + anon_sym___attribute__, + STATE(5491), 1, + sym_attribute_specifier, + ACTIONS(5849), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5438), 27, + ACTIONS(5851), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -535360,154 +538528,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [204512] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8891), 1, - anon_sym_STAR, - ACTIONS(8893), 1, - anon_sym_AMP_AMP, - ACTIONS(8895), 1, - anon_sym_AMP, - STATE(4275), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6968), 1, - sym__abstract_declarator, - STATE(5559), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8500), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [204575] = 22, + [204726] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7652), 1, + ACTIONS(7769), 1, anon_sym_DASH_GT, - ACTIONS(7654), 1, + ACTIONS(7800), 1, anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8978), 1, + ACTIONS(9071), 1, anon_sym_LBRACK_LBRACK, - STATE(5627), 1, + STATE(5596), 1, sym_ref_qualifier, - STATE(6475), 1, + STATE(6523), 1, sym__function_attributes_end, - STATE(6636), 1, + STATE(6676), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5917), 3, + STATE(5933), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9008), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [204805] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9114), 1, + anon_sym_requires, + STATE(6367), 1, + sym__function_attributes_end, + STATE(6478), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9111), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5835), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 5, + ACTIONS(9107), 8, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [204654] = 14, + [204878] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8891), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(8893), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(8895), 1, + ACTIONS(5075), 1, anon_sym_AMP, - STATE(4275), 1, + ACTIONS(7829), 1, + sym_auto, + ACTIONS(7831), 1, + anon_sym_decltype, + ACTIONS(8207), 1, + anon_sym_LBRACK, + STATE(2272), 1, + sym_decltype_auto, + STATE(4175), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(6971), 1, + STATE(7170), 1, sym__abstract_declarator, - STATE(5559), 2, + STATE(5621), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6616), 5, + ACTIONS(8085), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6740), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8121), 11, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -535519,76 +538697,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [204717] = 14, + [204947] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(8891), 1, + ACTIONS(8996), 1, anon_sym_STAR, - ACTIONS(8893), 1, + ACTIONS(8998), 1, anon_sym_AMP_AMP, - ACTIONS(8895), 1, + ACTIONS(9000), 1, anon_sym_AMP, - STATE(4275), 1, + STATE(4297), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(6982), 1, + STATE(7006), 1, sym__abstract_declarator, - STATE(5379), 2, + STATE(5617), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6616), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6079), 6, + ACTIONS(8565), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [204780] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - STATE(5404), 1, - sym_attribute_specifier, - ACTIONS(5861), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5863), 28, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8205), 11, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -535599,27 +538746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [204825] = 5, + [205010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - STATE(5466), 1, + STATE(5457), 1, sym_attribute_specifier, - ACTIONS(5857), 3, + ACTIONS(5913), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5859), 28, + ACTIONS(5915), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -535648,238 +538786,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [204870] = 19, + [205055] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7333), 1, - anon_sym_DASH_GT, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7365), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - STATE(6334), 1, - sym__function_attributes_end, - STATE(6474), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5830), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [204943] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7652), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8978), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9014), 1, + ACTIONS(7753), 1, anon_sym_requires, - STATE(5600), 1, - sym_ref_qualifier, - STATE(6513), 1, - sym__function_attributes_end, - STATE(6670), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8934), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5905), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [205022] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(7726), 1, - sym_auto, - ACTIONS(7728), 1, - anon_sym_decltype, - ACTIONS(8123), 1, - anon_sym_LBRACK, - STATE(2172), 1, - sym_decltype_auto, - STATE(4159), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7155), 1, - sym__abstract_declarator, - STATE(5596), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7980), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [205091] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7660), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9017), 1, - anon_sym_requires, - STATE(5606), 1, + STATE(5604), 1, sym_ref_qualifier, - STATE(6527), 1, + STATE(6564), 1, sym__function_attributes_end, - STATE(6589), 1, + STATE(6696), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8914), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - STATE(5900), 3, + STATE(5926), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 5, + ACTIONS(9008), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [205170] = 5, + [205134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - STATE(5436), 1, + STATE(5459), 1, sym_attribute_specifier, - ACTIONS(5817), 3, + ACTIONS(5871), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5819), 28, + ACTIONS(5873), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -535908,72 +538883,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [205215] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7333), 1, - anon_sym_DASH_GT, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8917), 1, - anon_sym_requires, - STATE(6335), 1, - sym__function_attributes_end, - STATE(6509), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8914), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5823), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [205288] = 5, + [205179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - STATE(5465), 1, + STATE(5504), 1, sym_attribute_specifier, - ACTIONS(5853), 3, + ACTIONS(5821), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5855), 28, + ACTIONS(5823), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -536002,18 +538923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [205333] = 5, + [205224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - STATE(5462), 1, + STATE(5452), 1, sym_attribute_specifier, - ACTIONS(5849), 3, + ACTIONS(5875), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5851), 28, + ACTIONS(5877), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -536042,86 +538963,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [205378] = 27, + [205269] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5045), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(8998), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9002), 1, - anon_sym_EQ, - ACTIONS(9020), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(3611), 1, - sym__class_declaration, - STATE(3642), 1, - sym__class_declaration_item, - STATE(4364), 1, - sym_field_declaration_list, - STATE(6054), 1, - sym_ms_declspec_modifier, - STATE(7046), 1, - sym__scope_resolution, - STATE(7480), 1, - sym_virtual_specifier, - STATE(8325), 1, - sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7445), 1, + anon_sym_requires, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(6375), 1, + sym__function_attributes_end, + STATE(6532), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - ACTIONS(9000), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3394), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6056), 2, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5809), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [205467] = 5, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5837), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9008), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [205342] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - STATE(5458), 1, - sym_attribute_specifier, - ACTIONS(5839), 3, + ACTIONS(8097), 1, + sym_auto, + ACTIONS(8099), 1, + anon_sym_decltype, + STATE(5496), 1, + sym_decltype_auto, + ACTIONS(5548), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5841), 28, + ACTIONS(5550), 27, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -536138,20 +539054,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [205512] = 3, + [205389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 3, + ACTIONS(3588), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(3474), 30, + ACTIONS(3590), 30, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -536182,18 +539096,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [205553] = 5, + [205430] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - STATE(5457), 1, + STATE(5440), 1, sym_attribute_specifier, - ACTIONS(5835), 3, + ACTIONS(5909), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5837), 28, + ACTIONS(5911), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -536222,27 +539136,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [205598] = 5, + [205475] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - STATE(5432), 1, - sym_attribute_specifier, - ACTIONS(5821), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(5823), 28, - anon_sym_COMMA, + ACTIONS(5069), 1, anon_sym_LPAREN2, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(8996), 1, anon_sym_STAR, + ACTIONS(8998), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(9000), 1, + anon_sym_AMP, + STATE(4297), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7005), 1, + sym__abstract_declarator, + STATE(5617), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6913), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8205), 11, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -536253,53 +539185,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [205643] = 14, + [205538] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(8891), 1, + ACTIONS(8996), 1, anon_sym_STAR, - ACTIONS(8893), 1, + ACTIONS(8998), 1, anon_sym_AMP_AMP, - ACTIONS(8895), 1, + ACTIONS(9000), 1, anon_sym_AMP, - STATE(4275), 1, + STATE(4297), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(6978), 1, + STATE(6999), 1, sym__abstract_declarator, - STATE(5559), 2, + STATE(5617), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6616), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8524), 6, + ACTIONS(8561), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8121), 11, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -536311,514 +539234,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [205706] = 22, + [205601] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7660), 1, + ACTIONS(7769), 1, anon_sym_DASH_GT, - ACTIONS(7662), 1, - anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - STATE(5569), 1, + ACTIONS(9071), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9117), 1, + anon_sym_requires, + STATE(5670), 1, sym_ref_qualifier, - STATE(6568), 1, + STATE(6485), 1, sym__function_attributes_end, - STATE(6635), 1, + STATE(6631), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5897), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [205785] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7333), 1, - anon_sym_DASH_GT, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9025), 1, - anon_sym_requires, - STATE(6337), 1, - sym__function_attributes_end, - STATE(6512), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9022), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5826), 3, + STATE(5945), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9004), 8, - anon_sym_COMMA, + ACTIONS(9008), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [205858] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - STATE(5451), 1, - sym_attribute_specifier, - ACTIONS(5831), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5833), 28, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [205903] = 17, + [205680] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(6798), 1, - sym_auto, - ACTIONS(6800), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(9008), 1, - anon_sym_STAR, - ACTIONS(9010), 1, - anon_sym_AMP_AMP, - ACTIONS(9012), 1, - anon_sym_AMP, - STATE(3308), 1, - sym_decltype_auto, - STATE(4309), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7130), 1, - sym__abstract_declarator, - STATE(5571), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7980), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [205972] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, + ACTIONS(5077), 1, anon_sym_COLON_COLON, - ACTIONS(8984), 1, - anon_sym_LT, - STATE(2854), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2988), 1, - sym_template_argument_list, - ACTIONS(4137), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5052), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4145), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [206023] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - STATE(5447), 1, - sym_attribute_specifier, - ACTIONS(5827), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5829), 28, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7097), 1, 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_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(7099), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [206068] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(7726), 1, - sym_auto, - ACTIONS(7728), 1, - anon_sym_decltype, - ACTIONS(8123), 1, - anon_sym_LBRACK, - STATE(2172), 1, - sym_decltype_auto, - STATE(4159), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7122), 1, - sym__abstract_declarator, - STATE(5575), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8002), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [206137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5755), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5757), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(9101), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9105), 1, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [206177] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8952), 1, - anon_sym_STAR, - ACTIONS(8954), 1, - anon_sym_AMP_AMP, - ACTIONS(8956), 1, - anon_sym_AMP, - STATE(4419), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(7037), 1, - sym__abstract_declarator, - STATE(5407), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6079), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [206239] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7437), 1, - anon_sym_const, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8952), 1, - anon_sym_STAR, - ACTIONS(8954), 1, - anon_sym_AMP_AMP, - ACTIONS(8956), 1, - anon_sym_AMP, - STATE(4419), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(7007), 1, - sym__abstract_declarator, - STATE(5336), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8500), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, + ACTIONS(9120), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(3681), 1, + sym__class_declaration_item, + STATE(3683), 1, + sym__class_declaration, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6138), 1, + sym_ms_declspec_modifier, + STATE(7073), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8443), 1, + sym_base_class_clause, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7429), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [206301] = 14, + ACTIONS(9103), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3467), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6136), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5836), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [205769] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(8952), 1, + ACTIONS(8996), 1, anon_sym_STAR, - ACTIONS(8954), 1, + ACTIONS(8998), 1, anon_sym_AMP_AMP, - ACTIONS(8956), 1, + ACTIONS(9000), 1, anon_sym_AMP, - STATE(4419), 1, + STATE(4297), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7001), 1, + STATE(6996), 1, sym__abstract_declarator, - STATE(5336), 2, + STATE(5416), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6740), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6382), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7429), 11, + ACTIONS(6096), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -536830,271 +539402,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [206363] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(3370), 1, - sym_auto, - ACTIONS(3372), 1, - anon_sym_decltype, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - ACTIONS(7806), 1, - sym_primitive_type, - ACTIONS(9028), 1, - sym_identifier, - ACTIONS(9030), 1, - anon_sym_COLON_COLON, - ACTIONS(9032), 1, - anon_sym_enum, - ACTIONS(9034), 1, - anon_sym_class, - ACTIONS(9036), 1, - anon_sym_struct, - ACTIONS(9038), 1, - anon_sym_union, - ACTIONS(9040), 1, - anon_sym_typename, - STATE(2706), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3319), 1, - sym_decltype_auto, - STATE(3328), 1, - sym_qualified_type_identifier, - STATE(4566), 1, - sym__type_specifier, - STATE(5553), 1, - sym_argument_list, - STATE(7027), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3157), 2, - sym_decltype, - sym_template_type, - ACTIONS(3336), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3318), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [206443] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - ACTIONS(9042), 1, - sym_identifier, - ACTIONS(9044), 1, - anon_sym_COLON_COLON, - ACTIONS(9048), 1, - sym_primitive_type, - ACTIONS(9050), 1, - anon_sym_enum, - ACTIONS(9052), 1, - anon_sym_class, - ACTIONS(9054), 1, - anon_sym_struct, - ACTIONS(9056), 1, - anon_sym_union, - ACTIONS(9058), 1, - sym_auto, - ACTIONS(9060), 1, - anon_sym_decltype, - ACTIONS(9062), 1, - anon_sym_typename, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(3857), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4172), 1, - sym__type_specifier, - STATE(4538), 1, - sym_decltype_auto, - STATE(5614), 1, - sym_argument_list, - STATE(7041), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(4452), 2, - sym_decltype, - sym_template_type, - ACTIONS(9046), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4539), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [206523] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - ACTIONS(9042), 1, - sym_identifier, - ACTIONS(9044), 1, - anon_sym_COLON_COLON, - ACTIONS(9048), 1, - sym_primitive_type, - ACTIONS(9050), 1, - anon_sym_enum, - ACTIONS(9052), 1, - anon_sym_class, - ACTIONS(9054), 1, - anon_sym_struct, - ACTIONS(9056), 1, - anon_sym_union, - ACTIONS(9058), 1, - sym_auto, - ACTIONS(9060), 1, - anon_sym_decltype, - ACTIONS(9062), 1, - anon_sym_typename, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(3857), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4151), 1, - sym__type_specifier, - STATE(4538), 1, - sym_decltype_auto, - STATE(5635), 1, - sym_argument_list, - STATE(7041), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(4452), 2, - sym_decltype, - sym_template_type, - ACTIONS(9046), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4539), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [206603] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - ACTIONS(9064), 1, - sym_identifier, - ACTIONS(9066), 1, - anon_sym_COLON_COLON, - ACTIONS(9070), 1, - sym_primitive_type, - ACTIONS(9072), 1, - anon_sym_enum, - ACTIONS(9074), 1, - anon_sym_class, - ACTIONS(9076), 1, - anon_sym_struct, - ACTIONS(9078), 1, - anon_sym_union, - ACTIONS(9080), 1, - sym_auto, - ACTIONS(9082), 1, - anon_sym_decltype, - ACTIONS(9084), 1, - anon_sym_typename, - STATE(2678), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2935), 1, - sym__type_specifier, - STATE(3233), 1, - sym_decltype_auto, - STATE(3249), 1, - sym_qualified_type_identifier, - STATE(5570), 1, - sym_argument_list, - STATE(7002), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3215), 2, - sym_decltype, - sym_template_type, - ACTIONS(9068), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3237), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [206683] = 14, + [205832] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(7982), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8952), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(8954), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(8956), 1, + ACTIONS(5075), 1, anon_sym_AMP, - STATE(4419), 1, + ACTIONS(7829), 1, + sym_auto, + ACTIONS(7831), 1, + anon_sym_decltype, + ACTIONS(8207), 1, + anon_sym_LBRACK, + STATE(2272), 1, + sym_decltype_auto, + STATE(4175), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7047), 1, + STATE(7174), 1, sym__abstract_declarator, - STATE(5336), 2, + STATE(5662), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8524), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6382), 5, + ACTIONS(8107), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7429), 11, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -537106,150 +539454,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [206745] = 22, + [205901] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(7714), 1, - anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - STATE(5796), 1, - sym_ref_qualifier, - STATE(6654), 1, + ACTIONS(9024), 1, + anon_sym_requires, + STATE(6368), 1, sym__function_attributes_end, - STATE(6864), 1, + STATE(6505), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(9021), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - STATE(5923), 3, + STATE(5853), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(9008), 8, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [206823] = 23, + anon_sym_try, + [205974] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2088), 1, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(6925), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(6927), 1, anon_sym_decltype, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - ACTIONS(7738), 1, - sym_primitive_type, - ACTIONS(9086), 1, - sym_identifier, - ACTIONS(9088), 1, - anon_sym_COLON_COLON, - ACTIONS(9090), 1, - anon_sym_enum, - ACTIONS(9092), 1, - anon_sym_class, - ACTIONS(9094), 1, - anon_sym_struct, - ACTIONS(9096), 1, - anon_sym_union, - ACTIONS(9098), 1, - anon_sym_typename, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(4507), 1, - sym__type_specifier, - STATE(5639), 1, - sym_argument_list, - STATE(7040), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(2137), 2, - sym_decltype, - sym_template_type, - ACTIONS(2074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [206903] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6065), 1, - anon_sym_LBRACE, - STATE(2214), 1, - sym_attribute_specifier, - STATE(5889), 1, - sym_field_declaration_list, - STATE(7314), 1, - sym_virtual_specifier, - STATE(8164), 1, - sym_base_class_clause, - ACTIONS(5286), 2, - anon_sym_LPAREN2, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9122), 1, anon_sym_STAR, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5284), 21, + ACTIONS(9124), 1, + anon_sym_AMP_AMP, + ACTIONS(9126), 1, + anon_sym_AMP, + STATE(3356), 1, + sym_decltype_auto, + STATE(4295), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7163), 1, + sym__abstract_declarator, + STATE(5673), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8107), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8205), 11, anon_sym___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, @@ -537260,90 +539560,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [206959] = 23, + [206043] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(9100), 1, - sym_identifier, - ACTIONS(9102), 1, - anon_sym_COLON_COLON, - ACTIONS(9106), 1, - sym_primitive_type, - ACTIONS(9108), 1, - anon_sym_enum, - ACTIONS(9110), 1, - anon_sym_class, - ACTIONS(9112), 1, - anon_sym_struct, - ACTIONS(9114), 1, - anon_sym_union, - ACTIONS(9116), 1, + ACTIONS(6925), 1, sym_auto, - ACTIONS(9118), 1, + ACTIONS(6927), 1, anon_sym_decltype, - ACTIONS(9120), 1, - anon_sym_typename, - STATE(2035), 1, - sym__type_specifier, - STATE(2356), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2404), 1, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9122), 1, + anon_sym_STAR, + ACTIONS(9124), 1, + anon_sym_AMP_AMP, + ACTIONS(9126), 1, + anon_sym_AMP, + STATE(3356), 1, sym_decltype_auto, - STATE(2409), 1, - sym_qualified_type_identifier, - STATE(5615), 1, - sym_argument_list, - STATE(7028), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(2316), 2, - sym_decltype, - sym_template_type, - ACTIONS(9104), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2387), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [207039] = 7, + STATE(4295), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7164), 1, + sym__abstract_declarator, + STATE(5598), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8085), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [206112] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(8986), 1, - anon_sym_LBRACE, - STATE(5544), 1, - sym_enumerator_list, - STATE(5746), 1, + STATE(5495), 1, sym_attribute_specifier, - ACTIONS(5733), 2, + ACTIONS(5883), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5735), 26, + ACTIONS(5885), 28, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -537355,28 +539643,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + 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, - [207087] = 3, + [206157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 3, + ACTIONS(7723), 1, + anon_sym___attribute__, + STATE(5497), 1, + sym_attribute_specifier, + ACTIONS(5835), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5697), 29, + ACTIONS(5837), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -537399,21 +539692,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [207127] = 3, + [206202] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 3, + ACTIONS(7723), 1, + anon_sym___attribute__, + STATE(5434), 1, + sym_attribute_specifier, + ACTIONS(5879), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5537), 29, + ACTIONS(5881), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -537436,21 +539732,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [207167] = 3, + [206247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 3, + ACTIONS(7723), 1, + anon_sym___attribute__, + STATE(5458), 1, + sym_attribute_specifier, + ACTIONS(5864), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5709), 29, + ACTIONS(5866), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -537473,21 +539772,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [207207] = 3, + [206292] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 3, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7445), 1, + anon_sym_requires, + ACTIONS(9109), 1, + anon_sym_LBRACK, + STATE(6372), 1, + sym__function_attributes_end, + STATE(6492), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5849), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9107), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [206365] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 1, + anon_sym___attribute__, + STATE(5474), 1, + sym_attribute_specifier, + ACTIONS(5839), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5713), 29, + ACTIONS(5841), 28, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -537510,24 +539866,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [207247] = 3, + [206410] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5741), 3, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(9077), 1, + anon_sym_LT, + STATE(2903), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3008), 1, + sym_template_argument_list, + ACTIONS(4135), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(5743), 29, + ACTIONS(5084), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4143), 23, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -537538,76 +539903,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [207287] = 19, + [206461] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7439), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9122), 1, - anon_sym___attribute__, - ACTIONS(9125), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9131), 1, + ACTIONS(9128), 1, anon_sym_requires, - STATE(6208), 1, - sym_trailing_return_type, - STATE(6216), 1, + STATE(5612), 1, + sym_ref_qualifier, + STATE(6590), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(6726), 1, + sym_trailing_return_type, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9128), 2, + ACTIONS(9021), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - STATE(5837), 3, + STATE(5923), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9004), 7, + ACTIONS(9008), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [206540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 1, + anon_sym___attribute__, + STATE(5451), 1, + sym_attribute_specifier, + ACTIONS(5853), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5855), 28, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, anon_sym_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_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, - [207359] = 3, + anon_sym_requires, + [206585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5745), 3, + ACTIONS(5651), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5747), 29, + ACTIONS(5653), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -537637,56 +540043,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [207399] = 23, + [206625] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(9100), 1, + ACTIONS(7839), 1, + sym_primitive_type, + ACTIONS(9131), 1, sym_identifier, - ACTIONS(9102), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9106), 1, - sym_primitive_type, - ACTIONS(9108), 1, + ACTIONS(9135), 1, anon_sym_enum, - ACTIONS(9110), 1, + ACTIONS(9137), 1, anon_sym_class, - ACTIONS(9112), 1, + ACTIONS(9139), 1, anon_sym_struct, - ACTIONS(9114), 1, + ACTIONS(9141), 1, anon_sym_union, - ACTIONS(9116), 1, - sym_auto, - ACTIONS(9118), 1, - anon_sym_decltype, - ACTIONS(9120), 1, + ACTIONS(9143), 1, anon_sym_typename, - STATE(2031), 1, - sym__type_specifier, - STATE(2356), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2404), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2409), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(5599), 1, + STATE(4527), 1, + sym__type_specifier, + STATE(5590), 1, sym_argument_list, - STATE(7028), 1, + STATE(7066), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2316), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - ACTIONS(9104), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2387), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -537694,56 +540100,93 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207479] = 23, + [206705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2088), 1, + ACTIONS(5698), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5700), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, - ACTIONS(2090), 1, anon_sym_decltype, - ACTIONS(7724), 1, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [206745] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(7738), 1, - sym_primitive_type, - ACTIONS(9086), 1, + ACTIONS(9145), 1, sym_identifier, - ACTIONS(9088), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9090), 1, + ACTIONS(9151), 1, + sym_primitive_type, + ACTIONS(9153), 1, anon_sym_enum, - ACTIONS(9092), 1, + ACTIONS(9155), 1, anon_sym_class, - ACTIONS(9094), 1, + ACTIONS(9157), 1, anon_sym_struct, - ACTIONS(9096), 1, + ACTIONS(9159), 1, anon_sym_union, - ACTIONS(9098), 1, + ACTIONS(9161), 1, + sym_auto, + ACTIONS(9163), 1, + anon_sym_decltype, + ACTIONS(9165), 1, anon_sym_typename, - STATE(2200), 1, + STATE(2925), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(3249), 1, + sym__type_specifier, + STATE(3943), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3957), 1, sym_qualified_type_identifier, - STATE(4501), 1, - sym__type_specifier, - STATE(5588), 1, + STATE(5591), 1, sym_argument_list, - STATE(7040), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(3618), 2, sym_decltype, sym_template_type, - ACTIONS(2074), 4, + ACTIONS(9149), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(3949), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -537751,14 +540194,14 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207559] = 3, + [206825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 3, + ACTIONS(5746), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5564), 29, + ACTIONS(5748), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -537788,14 +540231,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [207599] = 3, + [206865] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5426), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(8842), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(5424), 15, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [206909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5759), 3, + ACTIONS(5742), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5761), 29, + ACTIONS(5744), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -537825,113 +540307,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [207639] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - ACTIONS(7738), 1, - sym_primitive_type, - ACTIONS(9086), 1, - sym_identifier, - ACTIONS(9088), 1, - anon_sym_COLON_COLON, - ACTIONS(9090), 1, - anon_sym_enum, - ACTIONS(9092), 1, - anon_sym_class, - ACTIONS(9094), 1, - anon_sym_struct, - ACTIONS(9096), 1, - anon_sym_union, - ACTIONS(9098), 1, - anon_sym_typename, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(4336), 1, - sym__type_specifier, - STATE(5560), 1, - sym_argument_list, - STATE(7040), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(2137), 2, - sym_decltype, - sym_template_type, - ACTIONS(2074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [207719] = 23, + [206949] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(9064), 1, + ACTIONS(9167), 1, sym_identifier, - ACTIONS(9066), 1, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9070), 1, + ACTIONS(9173), 1, sym_primitive_type, - ACTIONS(9072), 1, + ACTIONS(9175), 1, anon_sym_enum, - ACTIONS(9074), 1, + ACTIONS(9177), 1, anon_sym_class, - ACTIONS(9076), 1, + ACTIONS(9179), 1, anon_sym_struct, - ACTIONS(9078), 1, + ACTIONS(9181), 1, anon_sym_union, - ACTIONS(9080), 1, + ACTIONS(9183), 1, sym_auto, - ACTIONS(9082), 1, + ACTIONS(9185), 1, anon_sym_decltype, - ACTIONS(9084), 1, + ACTIONS(9187), 1, anon_sym_typename, - STATE(2678), 1, + STATE(4143), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2930), 1, + STATE(4384), 1, sym__type_specifier, - STATE(3233), 1, + STATE(4670), 1, sym_decltype_auto, - STATE(3249), 1, + STATE(4674), 1, sym_qualified_type_identifier, - STATE(5572), 1, + STATE(5642), 1, sym_argument_list, - STATE(7002), 1, + STATE(7057), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3215), 2, + STATE(4590), 2, sym_decltype, sym_template_type, - ACTIONS(9068), 4, + ACTIONS(9171), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3237), 7, + STATE(4634), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -537939,56 +540364,56 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207799] = 23, + [207029] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(9134), 1, + ACTIONS(9145), 1, sym_identifier, - ACTIONS(9136), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9140), 1, + ACTIONS(9151), 1, sym_primitive_type, - ACTIONS(9142), 1, + ACTIONS(9153), 1, anon_sym_enum, - ACTIONS(9144), 1, + ACTIONS(9155), 1, anon_sym_class, - ACTIONS(9146), 1, + ACTIONS(9157), 1, anon_sym_struct, - ACTIONS(9148), 1, + ACTIONS(9159), 1, anon_sym_union, - ACTIONS(9150), 1, + ACTIONS(9161), 1, sym_auto, - ACTIONS(9152), 1, + ACTIONS(9163), 1, anon_sym_decltype, - ACTIONS(9154), 1, + ACTIONS(9165), 1, anon_sym_typename, - STATE(2911), 1, + STATE(2925), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3161), 1, + STATE(3197), 1, sym__type_specifier, - STATE(3888), 1, + STATE(3943), 1, sym_decltype_auto, - STATE(3921), 1, + STATE(3957), 1, sym_qualified_type_identifier, - STATE(5638), 1, + STATE(5667), 1, sym_argument_list, - STATE(7023), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3556), 2, + STATE(3618), 2, sym_decltype, sym_template_type, - ACTIONS(9138), 4, + ACTIONS(9149), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3891), 7, + STATE(3949), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -537996,14 +540421,14 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207879] = 3, + [207109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 3, + ACTIONS(5673), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5739), 29, + ACTIONS(5675), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -538033,14 +540458,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [207919] = 3, + [207149] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(3372), 1, + sym_auto, + ACTIONS(3374), 1, + anon_sym_decltype, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + ACTIONS(7951), 1, + sym_primitive_type, + ACTIONS(9189), 1, + sym_identifier, + ACTIONS(9191), 1, + anon_sym_COLON_COLON, + ACTIONS(9193), 1, + anon_sym_enum, + ACTIONS(9195), 1, + anon_sym_class, + ACTIONS(9197), 1, + anon_sym_struct, + ACTIONS(9199), 1, + anon_sym_union, + ACTIONS(9201), 1, + anon_sym_typename, + STATE(2729), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3344), 1, + sym_decltype_auto, + STATE(4592), 1, + sym__type_specifier, + STATE(5576), 1, + sym_argument_list, + STATE(7067), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3223), 2, + sym_decltype, + sym_template_type, + ACTIONS(3338), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3342), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [207229] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + ACTIONS(7839), 1, + sym_primitive_type, + ACTIONS(9131), 1, + sym_identifier, + ACTIONS(9133), 1, + anon_sym_COLON_COLON, + ACTIONS(9135), 1, + anon_sym_enum, + ACTIONS(9137), 1, + anon_sym_class, + ACTIONS(9139), 1, + anon_sym_struct, + ACTIONS(9141), 1, + anon_sym_union, + ACTIONS(9143), 1, + anon_sym_typename, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(4394), 1, + sym__type_specifier, + STATE(5606), 1, + sym_argument_list, + STATE(7066), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, + sym_decltype, + sym_template_type, + ACTIONS(2080), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2271), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [207309] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + ACTIONS(9203), 1, + sym_identifier, + ACTIONS(9205), 1, + anon_sym_COLON_COLON, + ACTIONS(9209), 1, + sym_primitive_type, + ACTIONS(9211), 1, + anon_sym_enum, + ACTIONS(9213), 1, + anon_sym_class, + ACTIONS(9215), 1, + anon_sym_struct, + ACTIONS(9217), 1, + anon_sym_union, + ACTIONS(9219), 1, + sym_auto, + ACTIONS(9221), 1, + anon_sym_decltype, + ACTIONS(9223), 1, + anon_sym_typename, + STATE(2736), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2940), 1, + sym__type_specifier, + STATE(3300), 1, + sym_decltype_auto, + STATE(3313), 1, + sym_qualified_type_identifier, + STATE(5646), 1, + sym_argument_list, + STATE(7053), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3202), 2, + sym_decltype, + sym_template_type, + ACTIONS(9207), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3301), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [207389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 3, + ACTIONS(5730), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5721), 29, + ACTIONS(5732), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -538070,88 +540666,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [207959] = 3, + [207429] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 3, - anon_sym_AMP, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7615), 1, + anon_sym_DASH_GT, + ACTIONS(9010), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5717), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(9031), 1, anon_sym___attribute__, + ACTIONS(9034), 1, 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + ACTIONS(9040), 1, + anon_sym_requires, + STATE(6240), 1, + sym_trailing_return_type, + STATE(6356), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - sym_auto, - anon_sym_decltype, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [207999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5663), 29, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5868), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9008), 7, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_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_mutable, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [208039] = 3, + [207501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 3, + ACTIONS(5643), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5701), 29, + ACTIONS(5645), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -538181,14 +540756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [208079] = 3, + [207541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 3, + ACTIONS(5669), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5693), 29, + ACTIONS(5671), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -538218,7 +540793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [208119] = 3, + [207581] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5661), 3, @@ -538255,14 +540830,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [208159] = 3, + [207621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 3, + ACTIONS(5622), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5663), 29, + ACTIONS(5624), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -538292,275 +540867,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [208199] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5517), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(8802), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5515), 15, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [208243] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(5775), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(9163), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5441), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(9160), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(9158), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(9156), 18, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [208291] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7439), 1, - anon_sym_DASH_GT, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8924), 1, - anon_sym___attribute__, - ACTIONS(8927), 1, - anon_sym_LBRACK_LBRACK, - STATE(6316), 1, - sym__function_attributes_end, - STATE(6325), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5839), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 7, + [207661] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9067), 1, + anon_sym___attribute__, + ACTIONS(9095), 1, + anon_sym_LBRACE, + STATE(5532), 1, + sym_enumerator_list, + STATE(5751), 1, + sym_attribute_specifier, + ACTIONS(5788), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5790), 26, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [208363] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(3370), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(3372), 1, anon_sym_decltype, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - ACTIONS(7806), 1, - sym_primitive_type, - ACTIONS(9028), 1, - sym_identifier, - ACTIONS(9030), 1, - anon_sym_COLON_COLON, - ACTIONS(9032), 1, - anon_sym_enum, - ACTIONS(9034), 1, - anon_sym_class, - ACTIONS(9036), 1, - anon_sym_struct, - ACTIONS(9038), 1, - anon_sym_union, - ACTIONS(9040), 1, - anon_sym_typename, - STATE(2706), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3319), 1, - sym_decltype_auto, - STATE(3328), 1, - sym_qualified_type_identifier, - STATE(4600), 1, - sym__type_specifier, - STATE(5577), 1, - sym_argument_list, - STATE(7027), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3157), 2, - sym_decltype, - sym_template_type, - ACTIONS(3336), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3318), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [208443] = 22, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [207709] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7707), 1, + ACTIONS(7806), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9166), 1, + ACTIONS(9225), 1, anon_sym_requires, - STATE(5650), 1, + STATE(5783), 1, sym_ref_qualifier, - STATE(6627), 1, + STATE(6692), 1, sym__function_attributes_end, - STATE(6868), 1, + STATE(6850), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8914), 2, + ACTIONS(9021), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - STATE(5928), 3, + STATE(5953), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 4, + ACTIONS(9008), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [208521] = 7, + [207787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, + ACTIONS(5665), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5667), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(8986), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(5534), 1, - sym_enumerator_list, - STATE(5679), 1, - sym_attribute_specifier, - ACTIONS(5678), 2, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [207827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5643), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5680), 26, + ACTIONS(5645), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [207867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5750), 3, + anon_sym_AMP, anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5752), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -538572,21 +541066,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + 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, - [208569] = 3, + [207907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 3, + ACTIONS(5689), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5580), 29, + ACTIONS(5691), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -538616,14 +541112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [208609] = 3, + [207947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5582), 3, + ACTIONS(5618), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5584), 29, + ACTIONS(5620), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -538653,14 +541149,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [208649] = 3, + [207987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 3, + ACTIONS(5647), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5588), 29, + ACTIONS(5649), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -538690,56 +541186,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [208689] = 23, + [208027] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(9169), 1, + ACTIONS(9228), 1, sym_identifier, - ACTIONS(9171), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(9175), 1, + ACTIONS(9234), 1, sym_primitive_type, - ACTIONS(9177), 1, + ACTIONS(9236), 1, anon_sym_enum, - ACTIONS(9179), 1, + ACTIONS(9238), 1, anon_sym_class, - ACTIONS(9181), 1, + ACTIONS(9240), 1, anon_sym_struct, - ACTIONS(9183), 1, + ACTIONS(9242), 1, anon_sym_union, - ACTIONS(9185), 1, + ACTIONS(9244), 1, sym_auto, - ACTIONS(9187), 1, + ACTIONS(9246), 1, anon_sym_decltype, - ACTIONS(9189), 1, + ACTIONS(9248), 1, anon_sym_typename, - STATE(4111), 1, + STATE(2861), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4318), 1, + STATE(2975), 1, sym__type_specifier, - STATE(4625), 1, + STATE(3473), 1, sym_qualified_type_identifier, - STATE(4637), 1, + STATE(3546), 1, sym_decltype_auto, - STATE(5550), 1, + STATE(5633), 1, sym_argument_list, - STATE(7006), 1, + STATE(7040), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(4554), 2, + STATE(3280), 2, sym_decltype, sym_template_type, - ACTIONS(9173), 4, + ACTIONS(9232), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4648), 7, + STATE(3564), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -538747,51 +541243,71 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [208769] = 3, + [208107] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(5592), 29, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(3372), 1, sym_auto, + ACTIONS(3374), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [208809] = 3, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + ACTIONS(7951), 1, + sym_primitive_type, + ACTIONS(9189), 1, + sym_identifier, + ACTIONS(9191), 1, + anon_sym_COLON_COLON, + ACTIONS(9193), 1, + anon_sym_enum, + ACTIONS(9195), 1, + anon_sym_class, + ACTIONS(9197), 1, + anon_sym_struct, + ACTIONS(9199), 1, + anon_sym_union, + ACTIONS(9201), 1, + anon_sym_typename, + STATE(2729), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3344), 1, + sym_decltype_auto, + STATE(4627), 1, + sym__type_specifier, + STATE(5626), 1, + sym_argument_list, + STATE(7067), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3223), 2, + sym_decltype, + sym_template_type, + ACTIONS(3338), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3342), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [208187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5594), 3, + ACTIONS(5418), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5596), 29, + ACTIONS(5420), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -538821,56 +541337,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [208849] = 23, + [208227] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(9169), 1, + ACTIONS(9250), 1, sym_identifier, - ACTIONS(9171), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9175), 1, + ACTIONS(9256), 1, sym_primitive_type, - ACTIONS(9177), 1, + ACTIONS(9258), 1, anon_sym_enum, - ACTIONS(9179), 1, + ACTIONS(9260), 1, anon_sym_class, - ACTIONS(9181), 1, + ACTIONS(9262), 1, anon_sym_struct, - ACTIONS(9183), 1, + ACTIONS(9264), 1, anon_sym_union, - ACTIONS(9185), 1, + ACTIONS(9266), 1, sym_auto, - ACTIONS(9187), 1, + ACTIONS(9268), 1, anon_sym_decltype, - ACTIONS(9189), 1, + ACTIONS(9270), 1, anon_sym_typename, - STATE(4111), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4319), 1, + STATE(2059), 1, sym__type_specifier, - STATE(4625), 1, + STATE(2311), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2417), 1, sym_qualified_type_identifier, - STATE(4637), 1, + STATE(2432), 1, sym_decltype_auto, - STATE(5564), 1, + STATE(5587), 1, sym_argument_list, - STATE(7006), 1, + STATE(7033), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(4554), 2, + STATE(2336), 2, sym_decltype, sym_template_type, - ACTIONS(9173), 4, + ACTIONS(9254), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4648), 7, + STATE(2434), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -538878,67 +541394,70 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [208929] = 19, + [208307] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7439), 1, + ACTIONS(7806), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8924), 1, - anon_sym___attribute__, - ACTIONS(8927), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8937), 1, + ACTIONS(7808), 1, anon_sym_requires, - STATE(6219), 1, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(5791), 1, + sym_ref_qualifier, + STATE(6729), 1, sym__function_attributes_end, - STATE(6326), 1, + STATE(6865), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8934), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - STATE(5836), 3, + STATE(5961), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 7, + ACTIONS(9008), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [209001] = 3, + anon_sym_GT2, + [208385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 3, + ACTIONS(5614), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5600), 29, + ACTIONS(5616), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -538968,24 +541487,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [209041] = 3, + [208425] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + ACTIONS(7839), 1, + sym_primitive_type, + ACTIONS(9131), 1, + sym_identifier, + ACTIONS(9133), 1, + anon_sym_COLON_COLON, + ACTIONS(9135), 1, + anon_sym_enum, + ACTIONS(9137), 1, + anon_sym_class, + ACTIONS(9139), 1, + anon_sym_struct, + ACTIONS(9141), 1, + anon_sym_union, + ACTIONS(9143), 1, + anon_sym_typename, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(4373), 1, + sym__type_specifier, + STATE(5668), 1, + sym_argument_list, + STATE(7066), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, + sym_decltype, + sym_template_type, + ACTIONS(2080), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2271), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [208505] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(5609), 29, - anon_sym_COMMA, + ACTIONS(8087), 1, anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(9055), 1, anon_sym_STAR, + ACTIONS(9057), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(9059), 1, + anon_sym_AMP, + STATE(4416), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(7070), 1, + sym__abstract_declarator, + STATE(5361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8561), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7605), 11, anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [208567] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(6073), 1, anon_sym_LBRACE, - anon_sym_EQ, + STATE(2216), 1, + sym_attribute_specifier, + STATE(5951), 1, + sym_field_declaration_list, + STATE(7362), 1, + sym_virtual_specifier, + STATE(8150), 1, + sym_base_class_clause, + ACTIONS(5317), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5315), 21, + 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, @@ -538996,33 +541633,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [209081] = 3, + [208623] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(5615), 29, - anon_sym_COMMA, + ACTIONS(8087), 1, anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(9055), 1, anon_sym_STAR, + ACTIONS(9057), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(9059), 1, + anon_sym_AMP, + STATE(4416), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(7069), 1, + sym__abstract_declarator, + STATE(5361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6913), 5, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7605), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -539033,23 +541685,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [209121] = 3, + [208685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 3, + ACTIONS(5614), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5619), 29, + ACTIONS(5616), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -539079,14 +541722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [209161] = 3, + [208725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 3, + ACTIONS(5601), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5623), 29, + ACTIONS(5603), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -539116,14 +541759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [209201] = 3, + [208765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 3, + ACTIONS(5724), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5615), 29, + ACTIONS(5726), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -539153,14 +541796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [209241] = 3, + [208805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 3, + ACTIONS(5681), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5731), 29, + ACTIONS(5683), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -539190,24 +541833,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [209281] = 3, + [208845] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(5781), 29, - anon_sym_COMMA, + ACTIONS(8087), 1, anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(9055), 1, anon_sym_STAR, + ACTIONS(9057), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(9059), 1, + anon_sym_AMP, + STATE(4416), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(7071), 1, + sym__abstract_declarator, + STATE(5361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8565), 5, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7605), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -539218,23 +541881,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + [208907] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + ACTIONS(9252), 1, + anon_sym_COLON_COLON, + ACTIONS(9260), 1, + anon_sym_class, + ACTIONS(9262), 1, + anon_sym_struct, + ACTIONS(9264), 1, + anon_sym_union, + ACTIONS(9266), 1, sym_auto, + ACTIONS(9268), 1, anon_sym_decltype, + ACTIONS(9272), 1, + sym_identifier, + ACTIONS(9276), 1, + sym_primitive_type, + ACTIONS(9278), 1, + anon_sym_enum, + ACTIONS(9280), 1, + anon_sym_typename, + STATE(2059), 1, + sym__type_specifier, + STATE(2387), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2417), 1, + sym_qualified_type_identifier, + STATE(2432), 1, + sym_decltype_auto, + STATE(5676), 1, + sym_argument_list, + STATE(7033), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2336), 2, + sym_decltype, + sym_template_type, + ACTIONS(9274), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2434), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [208987] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7615), 1, + anon_sym_DASH_GT, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9282), 1, + anon_sym___attribute__, + ACTIONS(9285), 1, + anon_sym_LBRACK_LBRACK, + STATE(6313), 1, + sym__function_attributes_end, + STATE(6331), 1, + sym_trailing_return_type, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5877), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9107), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [209321] = 3, + [209059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5775), 3, + ACTIONS(5643), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5777), 29, + ACTIONS(5645), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -539264,24 +542028,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [209361] = 3, + [209099] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(7613), 1, anon_sym_const, - ACTIONS(5773), 29, - anon_sym_COMMA, + ACTIONS(8087), 1, anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(9055), 1, anon_sym_STAR, + ACTIONS(9057), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(9059), 1, + anon_sym_AMP, + STATE(4416), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(7079), 1, + sym__abstract_declarator, + STATE(5470), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6096), 5, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7605), 11, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -539292,65 +542076,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + [209161] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + ACTIONS(9250), 1, + sym_identifier, + ACTIONS(9252), 1, + anon_sym_COLON_COLON, + ACTIONS(9256), 1, + sym_primitive_type, + ACTIONS(9258), 1, + anon_sym_enum, + ACTIONS(9260), 1, + anon_sym_class, + ACTIONS(9262), 1, + anon_sym_struct, + ACTIONS(9264), 1, + anon_sym_union, + ACTIONS(9266), 1, sym_auto, + ACTIONS(9268), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [209401] = 23, + ACTIONS(9270), 1, + anon_sym_typename, + STATE(2069), 1, + sym__type_specifier, + STATE(2311), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2417), 1, + sym_qualified_type_identifier, + STATE(2432), 1, + sym_decltype_auto, + STATE(5588), 1, + sym_argument_list, + STATE(7033), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2336), 2, + sym_decltype, + sym_template_type, + ACTIONS(9254), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2434), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [209241] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(9102), 1, + ACTIONS(9228), 1, + sym_identifier, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(9110), 1, + ACTIONS(9234), 1, + sym_primitive_type, + ACTIONS(9236), 1, + anon_sym_enum, + ACTIONS(9238), 1, anon_sym_class, - ACTIONS(9112), 1, + ACTIONS(9240), 1, anon_sym_struct, - ACTIONS(9114), 1, + ACTIONS(9242), 1, anon_sym_union, - ACTIONS(9116), 1, + ACTIONS(9244), 1, sym_auto, - ACTIONS(9118), 1, + ACTIONS(9246), 1, anon_sym_decltype, - ACTIONS(9191), 1, + ACTIONS(9248), 1, + anon_sym_typename, + STATE(2861), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2985), 1, + sym__type_specifier, + STATE(3473), 1, + sym_qualified_type_identifier, + STATE(3546), 1, + sym_decltype_auto, + STATE(5648), 1, + sym_argument_list, + STATE(7040), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3280), 2, + sym_decltype, + sym_template_type, + ACTIONS(9232), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3564), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [209321] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + ACTIONS(9203), 1, sym_identifier, - ACTIONS(9195), 1, + ACTIONS(9205), 1, + anon_sym_COLON_COLON, + ACTIONS(9209), 1, sym_primitive_type, - ACTIONS(9197), 1, + ACTIONS(9211), 1, anon_sym_enum, - ACTIONS(9199), 1, + ACTIONS(9213), 1, + anon_sym_class, + ACTIONS(9215), 1, + anon_sym_struct, + ACTIONS(9217), 1, + anon_sym_union, + ACTIONS(9219), 1, + sym_auto, + ACTIONS(9221), 1, + anon_sym_decltype, + ACTIONS(9223), 1, anon_sym_typename, - STATE(2035), 1, - sym__type_specifier, - STATE(2360), 1, + STATE(2736), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2404), 1, + STATE(2953), 1, + sym__type_specifier, + STATE(3300), 1, sym_decltype_auto, - STATE(2409), 1, + STATE(3313), 1, sym_qualified_type_identifier, - STATE(5623), 1, + STATE(5600), 1, sym_argument_list, - STATE(7028), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2316), 2, + STATE(3202), 2, sym_decltype, sym_template_type, - ACTIONS(9193), 4, + ACTIONS(9207), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2387), 7, + STATE(3301), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -539358,14 +542247,14 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [209481] = 3, + [209401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 3, + ACTIONS(5707), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5769), 29, + ACTIONS(5709), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -539395,14 +542284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [209521] = 3, + [209441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 3, + ACTIONS(5677), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5765), 29, + ACTIONS(5679), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -539432,33 +542321,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [209561] = 8, + [209481] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + STATE(5820), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(9295), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5485), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9292), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9290), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - STATE(5069), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4137), 4, + anon_sym_LBRACK, + ACTIONS(9288), 18, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [209529] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9298), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6249), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - ACTIONS(8141), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4145), 20, + ACTIONS(6251), 27, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_AMP_AMP, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -539469,19 +542390,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + anon_sym_COLON, + 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, + [209571] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7615), 1, + anon_sym_DASH_GT, + ACTIONS(7642), 1, anon_sym_requires, - [209611] = 3, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9031), 1, + anon_sym___attribute__, + ACTIONS(9034), 1, + anon_sym_LBRACK_LBRACK, + STATE(6239), 1, + sym_trailing_return_type, + STATE(6298), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5865), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9008), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [209643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5751), 3, + ACTIONS(5799), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5753), 29, + ACTIONS(5801), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -539511,52 +542490,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [209651] = 19, + [209683] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7439), 1, + ACTIONS(7615), 1, anon_sym_DASH_GT, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9122), 1, + ACTIONS(9282), 1, anon_sym___attribute__, - ACTIONS(9125), 1, + ACTIONS(9285), 1, anon_sym_LBRACK_LBRACK, - STATE(6232), 1, + ACTIONS(9304), 1, + anon_sym_requires, + STATE(6261), 1, sym_trailing_return_type, - STATE(6290), 1, + STATE(6353), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + ACTIONS(9301), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - STATE(5838), 3, + STATE(5874), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9004), 7, + ACTIONS(9107), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -539564,56 +542543,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [209723] = 23, + [209755] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(9102), 1, + ACTIONS(9307), 1, + sym_identifier, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(9110), 1, + ACTIONS(9313), 1, + sym_primitive_type, + ACTIONS(9315), 1, + anon_sym_enum, + ACTIONS(9317), 1, anon_sym_class, - ACTIONS(9112), 1, + ACTIONS(9319), 1, anon_sym_struct, - ACTIONS(9114), 1, + ACTIONS(9321), 1, anon_sym_union, - ACTIONS(9116), 1, + ACTIONS(9323), 1, sym_auto, - ACTIONS(9118), 1, + ACTIONS(9325), 1, anon_sym_decltype, - ACTIONS(9191), 1, - sym_identifier, - ACTIONS(9195), 1, - sym_primitive_type, - ACTIONS(9197), 1, - anon_sym_enum, - ACTIONS(9199), 1, + ACTIONS(9327), 1, anon_sym_typename, - STATE(2031), 1, - sym__type_specifier, - STATE(2360), 1, + STATE(2504), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2404), 1, + STATE(2893), 1, + sym__type_specifier, + STATE(3042), 1, sym_decltype_auto, - STATE(2409), 1, + STATE(3063), 1, sym_qualified_type_identifier, - STATE(5573), 1, + STATE(5660), 1, sym_argument_list, - STATE(7028), 1, + STATE(7059), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2316), 2, + STATE(3030), 2, sym_decltype, sym_template_type, - ACTIONS(9193), 4, + ACTIONS(9311), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2387), 7, + STATE(3044), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -539621,113 +542600,93 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [209803] = 23, + [209835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(5758), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5760), 29, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9201), 1, - sym_identifier, - ACTIONS(9203), 1, - anon_sym_COLON_COLON, - ACTIONS(9207), 1, - sym_primitive_type, - ACTIONS(9209), 1, - anon_sym_enum, - ACTIONS(9211), 1, - anon_sym_class, - ACTIONS(9213), 1, - anon_sym_struct, - ACTIONS(9215), 1, - anon_sym_union, - ACTIONS(9217), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, - ACTIONS(9219), 1, anon_sym_decltype, - ACTIONS(9221), 1, - anon_sym_typename, - STATE(2504), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2840), 1, - sym__type_specifier, - STATE(3062), 1, - sym_qualified_type_identifier, - STATE(3096), 1, - sym_decltype_auto, - STATE(5626), 1, - sym_argument_list, - STATE(7024), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(2987), 2, - sym_decltype, - sym_template_type, - ACTIONS(9205), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3094), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [209883] = 23, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [209875] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(9201), 1, + ACTIONS(9329), 1, sym_identifier, - ACTIONS(9203), 1, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(9207), 1, + ACTIONS(9335), 1, sym_primitive_type, - ACTIONS(9209), 1, + ACTIONS(9337), 1, anon_sym_enum, - ACTIONS(9211), 1, + ACTIONS(9339), 1, anon_sym_class, - ACTIONS(9213), 1, + ACTIONS(9341), 1, anon_sym_struct, - ACTIONS(9215), 1, + ACTIONS(9343), 1, anon_sym_union, - ACTIONS(9217), 1, + ACTIONS(9345), 1, sym_auto, - ACTIONS(9219), 1, + ACTIONS(9347), 1, anon_sym_decltype, - ACTIONS(9221), 1, + ACTIONS(9349), 1, anon_sym_typename, - STATE(2504), 1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(3758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2872), 1, + STATE(4226), 1, sym__type_specifier, - STATE(3062), 1, - sym_qualified_type_identifier, - STATE(3096), 1, + STATE(4557), 1, sym_decltype_auto, - STATE(5554), 1, + STATE(5616), 1, sym_argument_list, - STATE(7024), 1, + STATE(7055), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2987), 2, + STATE(4470), 2, sym_decltype, sym_template_type, - ACTIONS(9205), 4, + ACTIONS(9333), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3094), 7, + STATE(4541), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -539735,71 +542694,129 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [209963] = 23, + [209955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(5762), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5764), 29, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9134), 1, - sym_identifier, - ACTIONS(9136), 1, - anon_sym_COLON_COLON, - ACTIONS(9140), 1, - sym_primitive_type, - ACTIONS(9142), 1, - anon_sym_enum, - ACTIONS(9144), 1, - anon_sym_class, - ACTIONS(9146), 1, - anon_sym_struct, - ACTIONS(9148), 1, - anon_sym_union, - ACTIONS(9150), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, sym_auto, - ACTIONS(9152), 1, anon_sym_decltype, - ACTIONS(9154), 1, - anon_sym_typename, - STATE(2911), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3174), 1, - sym__type_specifier, - STATE(3888), 1, - sym_decltype_auto, - STATE(3921), 1, - sym_qualified_type_identifier, - STATE(5580), 1, - sym_argument_list, - STATE(7023), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3556), 2, - sym_decltype, - sym_template_type, - ACTIONS(9138), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3891), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [209995] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9067), 1, + anon_sym___attribute__, + ACTIONS(9095), 1, + anon_sym_LBRACE, + STATE(5524), 1, + sym_enumerator_list, + STATE(5726), 1, + sym_attribute_specifier, + ACTIONS(5655), 2, + anon_sym_AMP, + 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, [210043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 3, + ACTIONS(5685), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5687), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [210083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5803), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5686), 29, + ACTIONS(5805), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -539829,14 +542846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [210083] = 3, + [210123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 3, + ACTIONS(5738), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(5705), 29, + ACTIONS(5740), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -539866,56 +542883,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [210123] = 23, + [210163] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(7738), 1, - sym_primitive_type, - ACTIONS(9086), 1, + ACTIONS(9307), 1, sym_identifier, - ACTIONS(9088), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(9090), 1, + ACTIONS(9313), 1, + sym_primitive_type, + ACTIONS(9315), 1, anon_sym_enum, - ACTIONS(9092), 1, + ACTIONS(9317), 1, anon_sym_class, - ACTIONS(9094), 1, + ACTIONS(9319), 1, anon_sym_struct, - ACTIONS(9096), 1, + ACTIONS(9321), 1, anon_sym_union, - ACTIONS(9098), 1, + ACTIONS(9323), 1, + sym_auto, + ACTIONS(9325), 1, + anon_sym_decltype, + ACTIONS(9327), 1, anon_sym_typename, - STATE(2200), 1, + STATE(2504), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2887), 1, + sym__type_specifier, + STATE(3042), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3063), 1, sym_qualified_type_identifier, - STATE(4335), 1, - sym__type_specifier, - STATE(5601), 1, + STATE(5627), 1, sym_argument_list, - STATE(7040), 1, + STATE(7059), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(3030), 2, sym_decltype, sym_template_type, - ACTIONS(2074), 4, + ACTIONS(9311), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(3044), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -539923,56 +542940,93 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [210203] = 23, + [210243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5711), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5713), 29, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [210283] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(9223), 1, + ACTIONS(9167), 1, sym_identifier, - ACTIONS(9225), 1, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9229), 1, + ACTIONS(9173), 1, sym_primitive_type, - ACTIONS(9231), 1, + ACTIONS(9175), 1, anon_sym_enum, - ACTIONS(9233), 1, + ACTIONS(9177), 1, anon_sym_class, - ACTIONS(9235), 1, + ACTIONS(9179), 1, anon_sym_struct, - ACTIONS(9237), 1, + ACTIONS(9181), 1, anon_sym_union, - ACTIONS(9239), 1, + ACTIONS(9183), 1, sym_auto, - ACTIONS(9241), 1, + ACTIONS(9185), 1, anon_sym_decltype, - ACTIONS(9243), 1, + ACTIONS(9187), 1, anon_sym_typename, - STATE(2739), 1, + STATE(4143), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2967), 1, + STATE(4357), 1, sym__type_specifier, - STATE(3371), 1, - sym_qualified_type_identifier, - STATE(3532), 1, + STATE(4670), 1, sym_decltype_auto, - STATE(5579), 1, + STATE(4674), 1, + sym_qualified_type_identifier, + STATE(5605), 1, sym_argument_list, - STATE(7032), 1, + STATE(7057), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3296), 2, + STATE(4590), 2, sym_decltype, sym_template_type, - ACTIONS(9227), 4, + ACTIONS(9171), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3530), 7, + STATE(4634), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -539980,94 +543034,113 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [210283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9245), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6106), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6108), 27, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - 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, - [210325] = 23, + [210363] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7724), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(9223), 1, + ACTIONS(9329), 1, sym_identifier, - ACTIONS(9225), 1, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(9229), 1, + ACTIONS(9335), 1, sym_primitive_type, - ACTIONS(9231), 1, + ACTIONS(9337), 1, anon_sym_enum, - ACTIONS(9233), 1, + ACTIONS(9339), 1, anon_sym_class, - ACTIONS(9235), 1, + ACTIONS(9341), 1, anon_sym_struct, - ACTIONS(9237), 1, + ACTIONS(9343), 1, anon_sym_union, - ACTIONS(9239), 1, + ACTIONS(9345), 1, sym_auto, - ACTIONS(9241), 1, + ACTIONS(9347), 1, anon_sym_decltype, - ACTIONS(9243), 1, + ACTIONS(9349), 1, anon_sym_typename, - STATE(2739), 1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(3758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2973), 1, + STATE(4218), 1, + sym__type_specifier, + STATE(4557), 1, + sym_decltype_auto, + STATE(5659), 1, + sym_argument_list, + STATE(7055), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(4470), 2, + sym_decltype, + sym_template_type, + ACTIONS(9333), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4541), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [210443] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + ACTIONS(9252), 1, + anon_sym_COLON_COLON, + ACTIONS(9260), 1, + anon_sym_class, + ACTIONS(9262), 1, + anon_sym_struct, + ACTIONS(9264), 1, + anon_sym_union, + ACTIONS(9266), 1, + sym_auto, + ACTIONS(9268), 1, + anon_sym_decltype, + ACTIONS(9272), 1, + sym_identifier, + ACTIONS(9276), 1, + sym_primitive_type, + ACTIONS(9278), 1, + anon_sym_enum, + ACTIONS(9280), 1, + anon_sym_typename, + STATE(2069), 1, sym__type_specifier, - STATE(3371), 1, + STATE(2387), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2417), 1, sym_qualified_type_identifier, - STATE(3532), 1, + STATE(2432), 1, sym_decltype_auto, - STATE(5576), 1, + STATE(5639), 1, sym_argument_list, - STATE(7032), 1, + STATE(7033), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3296), 2, + STATE(2336), 2, sym_decltype, sym_template_type, - ACTIONS(9227), 4, + ACTIONS(9274), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3530), 7, + STATE(2434), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -540075,26 +543148,23 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [210405] = 5, + [210523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, - anon_sym___attribute__, - STATE(5694), 1, - sym_attribute_specifier, - ACTIONS(5861), 2, + ACTIONS(5772), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5863), 27, + ACTIONS(5774), 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_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -540106,50 +543176,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + 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, - [210448] = 14, + [210563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8329), 1, + ACTIONS(5776), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5778), 29, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8371), 1, - sym_identifier, - ACTIONS(8373), 1, anon_sym_STAR, - ACTIONS(8375), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, - anon_sym_AMP, - STATE(7062), 1, - sym__field_declarator, - STATE(7164), 1, - sym_operator_name, - STATE(8978), 1, - sym_ms_based_modifier, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6886), 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(3456), 12, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -540160,43 +543213,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [210509] = 14, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [210603] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8327), 1, - sym_identifier, - ACTIONS(8329), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + STATE(5246), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4135), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_COLON, + ACTIONS(8197), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4143), 20, anon_sym_LPAREN2, - ACTIONS(8331), 1, anon_sym_STAR, - ACTIONS(8333), 1, anon_sym_AMP_AMP, - ACTIONS(8335), 1, - anon_sym_AMP, - STATE(6592), 1, - sym__field_declarator, - STATE(6872), 1, - sym_operator_name, - STATE(8907), 1, - sym_ms_based_modifier, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6886), 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(3456), 12, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -540207,84 +543259,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [210570] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7609), 1, - anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8978), 1, - anon_sym_LBRACK_LBRACK, - STATE(6268), 1, - sym__function_attributes_end, - STATE(6304), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(8981), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5874), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [210641] = 9, + anon_sym_requires, + [210653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - ACTIONS(6656), 1, - anon_sym_LBRACE, - ACTIONS(9248), 1, - anon_sym_COLON, - STATE(2998), 1, - sym__enum_base_clause, - STATE(3129), 1, - sym_enumerator_list, - STATE(3291), 1, - sym_attribute_specifier, - ACTIONS(6073), 2, + ACTIONS(5795), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(6075), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(5797), 29, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -540295,102 +543292,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, + 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, - [210692] = 20, + [210693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7313), 1, - anon_sym_STAR, - ACTIONS(7315), 1, - anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(5807), 3, anon_sym_AMP, - STATE(6263), 1, - sym__scope_resolution, - STATE(6428), 1, - sym__declarator, - STATE(7655), 1, - sym_init_declarator, - STATE(8654), 1, - sym__declaration_declarator, - STATE(9289), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [210765] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8329), 1, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5809), 29, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8371), 1, - sym_identifier, - ACTIONS(8373), 1, anon_sym_STAR, - ACTIONS(8375), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, - anon_sym_AMP, - STATE(7100), 1, - sym__field_declarator, - STATE(7164), 1, - sym_operator_name, - STATE(8978), 1, - sym_ms_based_modifier, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6886), 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(3456), 12, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -540401,28 +543329,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [210826] = 6, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [210733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(8966), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - ACTIONS(4163), 3, + ACTIONS(5754), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5756), 29, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(5338), 25, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -540433,77 +543366,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, anon_sym_COLON, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - [210871] = 20, + anon_sym_try, + anon_sym_requires, + [210773] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(7839), 1, + sym_primitive_type, + ACTIONS(9131), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7313), 1, - anon_sym_STAR, - ACTIONS(7315), 1, - anon_sym_AMP_AMP, - ACTIONS(7317), 1, - anon_sym_AMP, - STATE(6136), 1, - sym__declarator, - STATE(6263), 1, + ACTIONS(9135), 1, + anon_sym_enum, + ACTIONS(9137), 1, + anon_sym_class, + ACTIONS(9139), 1, + anon_sym_struct, + ACTIONS(9141), 1, + anon_sym_union, + ACTIONS(9143), 1, + anon_sym_typename, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(4573), 1, + sym__type_specifier, + STATE(5631), 1, + sym_argument_list, + STATE(7066), 1, sym__scope_resolution, - STATE(7655), 1, - sym_init_declarator, - STATE(8486), 1, - sym__declaration_declarator, - STATE(9289), 1, - sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, sym_decltype, sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [210944] = 5, + ACTIONS(2080), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2271), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [210853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, + ACTIONS(9067), 1, anon_sym___attribute__, - STATE(5712), 1, + STATE(5721), 1, sym_attribute_specifier, - ACTIONS(5821), 2, + ACTIONS(5839), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5823), 27, + ACTIONS(5841), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -540531,17 +543470,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [210987] = 5, + [210896] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, + ACTIONS(6071), 1, anon_sym___attribute__, - STATE(5691), 1, + ACTIONS(6397), 1, + anon_sym_LBRACE, + ACTIONS(9351), 1, + anon_sym_COLON, + STATE(2258), 1, sym_attribute_specifier, - ACTIONS(5817), 2, + STATE(2833), 1, + sym__enum_base_clause, + STATE(2897), 1, + sym_enumerator_list, + ACTIONS(6108), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5819), 27, + ACTIONS(6110), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -540549,9 +543496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -540566,305 +543511,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [211030] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8371), 1, - sym_identifier, - ACTIONS(8373), 1, - anon_sym_STAR, - ACTIONS(8375), 1, - anon_sym_AMP_AMP, - ACTIONS(8377), 1, - anon_sym_AMP, - STATE(7071), 1, - sym__field_declarator, - STATE(7164), 1, - sym_operator_name, - STATE(8978), 1, - sym_ms_based_modifier, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6886), 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(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [211091] = 19, + [210947] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7609), 1, - anon_sym_DASH_GT, - ACTIONS(7638), 1, + ACTIONS(7642), 1, anon_sym_requires, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9250), 1, - anon_sym_LBRACK_LBRACK, - STATE(6271), 1, - sym__function_attributes_end, - STATE(6314), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9253), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5884), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9004), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [211162] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7636), 1, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9250), 1, + ACTIONS(9285), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9256), 1, - anon_sym_requires, - STATE(6303), 1, + STATE(6331), 1, sym_trailing_return_type, - STATE(6367), 1, + STATE(6339), 1, sym__function_attributes_end, - STATE(7198), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9128), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + ACTIONS(9353), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - STATE(5876), 3, + STATE(5900), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9004), 6, + ACTIONS(9107), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [211233] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7313), 1, - anon_sym_STAR, - ACTIONS(7315), 1, - anon_sym_AMP_AMP, - ACTIONS(7317), 1, - anon_sym_AMP, - STATE(6263), 1, - sym__scope_resolution, - STATE(6376), 1, - sym__declarator, - STATE(7655), 1, - sym_init_declarator, - STATE(8758), 1, - sym__declaration_declarator, - STATE(9289), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211306] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7313), 1, - anon_sym_STAR, - ACTIONS(7315), 1, - anon_sym_AMP_AMP, - ACTIONS(7317), 1, - anon_sym_AMP, - STATE(6263), 1, - sym__scope_resolution, - STATE(6376), 1, - sym__declarator, - STATE(7655), 1, - sym_init_declarator, - STATE(8464), 1, - sym__declaration_declarator, - STATE(9289), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211379] = 17, + anon_sym_COLON, + [211018] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(7726), 1, + ACTIONS(7829), 1, sym_auto, - ACTIONS(7728), 1, + ACTIONS(7831), 1, anon_sym_decltype, - ACTIONS(8002), 1, + ACTIONS(8107), 1, anon_sym_COLON, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(8976), 1, + ACTIONS(9087), 1, anon_sym_const, - ACTIONS(9259), 1, + ACTIONS(9356), 1, anon_sym_STAR, - ACTIONS(9261), 1, + ACTIONS(9358), 1, anon_sym_AMP_AMP, - ACTIONS(9263), 1, + ACTIONS(9360), 1, anon_sym_AMP, - STATE(2172), 1, + STATE(2272), 1, sym_decltype_auto, - STATE(4372), 1, + STATE(4401), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7258), 1, + STATE(7278), 1, sym__abstract_declarator, - STATE(5816), 2, + STATE(5834), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6616), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8974), 11, + ACTIONS(9085), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -540876,228 +543614,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [211446] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7313), 1, - anon_sym_STAR, - ACTIONS(7315), 1, - anon_sym_AMP_AMP, - ACTIONS(7317), 1, - anon_sym_AMP, - STATE(6263), 1, - sym__scope_resolution, - STATE(6376), 1, - sym__declarator, - STATE(7655), 1, - sym_init_declarator, - STATE(8486), 1, - sym__declaration_declarator, - STATE(9289), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211519] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7260), 1, - anon_sym_STAR, - ACTIONS(7262), 1, - anon_sym_AMP_AMP, - ACTIONS(7264), 1, - anon_sym_AMP, - ACTIONS(7266), 1, - anon_sym_COLON_COLON, - STATE(6227), 1, - sym__scope_resolution, - STATE(6336), 1, - sym__declarator, - STATE(7655), 1, - sym_init_declarator, - STATE(8480), 1, - sym_ms_based_modifier, - STATE(8654), 1, - sym__declaration_declarator, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211592] = 19, + [211085] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7599), 1, + ACTIONS(6071), 1, anon_sym___attribute__, - ACTIONS(7604), 1, - anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9125), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9131), 1, - anon_sym_requires, - STATE(6208), 1, - sym_trailing_return_type, - STATE(6241), 1, - sym__function_attributes_end, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(9128), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9253), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5851), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9004), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(6397), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(9351), 1, anon_sym_COLON, - [211663] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7313), 1, - anon_sym_STAR, - ACTIONS(7315), 1, - anon_sym_AMP_AMP, - ACTIONS(7317), 1, - anon_sym_AMP, - STATE(6180), 1, - sym__declarator, - STATE(6263), 1, - sym__scope_resolution, - STATE(7655), 1, - sym_init_declarator, - STATE(8765), 1, - sym__declaration_declarator, - STATE(9289), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [211736] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8948), 1, - anon_sym___attribute__, - STATE(5683), 1, + STATE(2226), 1, sym_attribute_specifier, - ACTIONS(5827), 2, + STATE(2819), 1, + sym__enum_base_clause, + STATE(2874), 1, + sym_enumerator_list, + ACTIONS(6114), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5829), 27, + ACTIONS(6116), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -541105,9 +543640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -541122,121 +543655,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [211779] = 20, + [211136] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(8298), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(8346), 1, sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(8348), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(8350), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(8352), 1, anon_sym_AMP, - STATE(6161), 1, - sym__declarator, - STATE(6263), 1, - sym__scope_resolution, - STATE(7655), 1, - sym_init_declarator, - STATE(9004), 1, - sym__declaration_declarator, - STATE(9289), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, + STATE(6669), 1, + sym__field_declarator, + STATE(6840), 1, sym_operator_name, - [211852] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8948), 1, - anon_sym___attribute__, - STATE(5740), 1, - sym_attribute_specifier, - ACTIONS(5831), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5833), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(8771), 1, + sym_ms_based_modifier, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6935), 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(3460), 12, 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [211895] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8948), 1, - anon_sym___attribute__, - STATE(5753), 1, - sym_attribute_specifier, - ACTIONS(5835), 2, - anon_sym_AMP, anon_sym_const, - ACTIONS(5837), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -541247,88 +543703,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [211938] = 5, + [211197] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, - anon_sym___attribute__, - STATE(5762), 1, - sym_attribute_specifier, - ACTIONS(5839), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5841), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5069), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, + ACTIONS(8207), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [211981] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8327), 1, - sym_identifier, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8331), 1, + ACTIONS(9079), 1, anon_sym_STAR, - ACTIONS(8333), 1, + ACTIONS(9081), 1, anon_sym_AMP_AMP, - ACTIONS(8335), 1, + ACTIONS(9083), 1, anon_sym_AMP, - STATE(6705), 1, - sym__field_declarator, - STATE(6872), 1, - sym_operator_name, - STATE(8907), 1, - sym_ms_based_modifier, - STATE(5574), 2, + ACTIONS(9087), 1, + anon_sym_const, + STATE(4426), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7097), 1, + sym__abstract_declarator, + STATE(5557), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6886), 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(3456), 12, + ACTIONS(6096), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9085), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -541336,103 +543747,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [212042] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7609), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8978), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8990), 1, - anon_sym_requires, - STATE(6284), 1, - sym__function_attributes_end, - STATE(6302), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(8934), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8981), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5852), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [212113] = 20, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [211258] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7417), 1, anon_sym_AMP, - STATE(6141), 1, + STATE(6178), 1, sym__declarator, - STATE(6263), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(7655), 1, + STATE(7994), 1, sym_init_declarator, - STATE(8626), 1, + STATE(8744), 1, sym__declaration_declarator, - STATE(9289), 1, + STATE(8879), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -541444,48 +543803,148 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [212186] = 20, + [211331] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7417), 1, + anon_sym_AMP, + STATE(6348), 1, + sym__scope_resolution, + STATE(6429), 1, + sym__declarator, + STATE(7994), 1, + sym_init_declarator, + STATE(8680), 1, + sym__declaration_declarator, + STATE(8879), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [211404] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9362), 1, + anon_sym_STAR, + ACTIONS(9364), 1, + anon_sym_AMP_AMP, + ACTIONS(9366), 1, + anon_sym_AMP, + STATE(3782), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6969), 1, + sym__abstract_declarator, + STATE(5617), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6913), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [211465] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, + anon_sym_STAR, + ACTIONS(7415), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, anon_sym_AMP, - STATE(6167), 1, + STATE(6228), 1, sym__declarator, - STATE(6263), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(7655), 1, + STATE(7994), 1, sym_init_declarator, - STATE(8464), 1, + STATE(8457), 1, sym__declaration_declarator, - STATE(9289), 1, + STATE(8879), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -541497,152 +543956,280 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [212259] = 19, + [211538] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7623), 1, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9125), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - STATE(6232), 1, + ACTIONS(9040), 1, + anon_sym_requires, + STATE(6240), 1, sym_trailing_return_type, - STATE(6353), 1, + STATE(6283), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(9089), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5869), 3, + STATE(5914), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9004), 6, + ACTIONS(9008), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - [212330] = 19, + [211609] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7636), 1, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9250), 1, + ACTIONS(9285), 1, anon_sym_LBRACK_LBRACK, - STATE(6314), 1, + ACTIONS(9304), 1, + anon_sym_requires, + STATE(6261), 1, sym_trailing_return_type, - STATE(6374), 1, + STATE(6290), 1, sym__function_attributes_end, - STATE(7198), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(9353), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - STATE(5853), 3, + STATE(5916), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9004), 6, + ACTIONS(9107), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [211680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9067), 1, + anon_sym___attribute__, + STATE(5715), 1, + sym_attribute_specifier, + ACTIONS(5864), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5866), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [211723] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9067), 1, + anon_sym___attribute__, + STATE(5717), 1, + sym_attribute_specifier, + ACTIONS(5853), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5855), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [212401] = 20, + anon_sym_try, + anon_sym_requires, + [211766] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7721), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9368), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9371), 1, + anon_sym_requires, + STATE(6295), 1, + sym__function_attributes_end, + STATE(6336), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(9301), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9353), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5887), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9107), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [211837] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7417), 1, anon_sym_AMP, - STATE(6120), 1, + STATE(6172), 1, sym__declarator, - STATE(6263), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(7655), 1, + STATE(7994), 1, sym_init_declarator, - STATE(8913), 1, + STATE(8804), 1, sym__declaration_declarator, - STATE(9289), 1, + STATE(8879), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -541654,140 +544241,95 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [212474] = 19, + [211910] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7604), 1, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9071), 1, anon_sym_LBRACK_LBRACK, - STATE(6289), 1, - sym__function_attributes_end, - STATE(6325), 1, + STATE(6318), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(6393), 1, + sym__function_attributes_end, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(8981), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5880), 3, + STATE(5884), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 6, + ACTIONS(9008), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [212545] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6520), 1, - anon_sym___attribute__, - ACTIONS(6656), 1, - anon_sym_LBRACE, - ACTIONS(9248), 1, - anon_sym_COLON, - STATE(2999), 1, - sym__enum_base_clause, - STATE(3017), 1, - sym_enumerator_list, - STATE(3301), 1, - sym_attribute_specifier, - ACTIONS(6055), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6057), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [212596] = 17, + [211981] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8298), 1, anon_sym_LPAREN2, - ACTIONS(7726), 1, - sym_auto, - ACTIONS(7728), 1, - anon_sym_decltype, - ACTIONS(7980), 1, - anon_sym_COLON, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8976), 1, - anon_sym_const, - ACTIONS(9259), 1, + ACTIONS(8346), 1, + sym_identifier, + ACTIONS(8348), 1, anon_sym_STAR, - ACTIONS(9261), 1, + ACTIONS(8350), 1, anon_sym_AMP_AMP, - ACTIONS(9263), 1, + ACTIONS(8352), 1, anon_sym_AMP, - STATE(2172), 1, - sym_decltype_auto, - STATE(4372), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7247), 1, - sym__abstract_declarator, - STATE(5833), 2, + STATE(6732), 1, + sym__field_declarator, + STATE(6840), 1, + sym_operator_name, + STATE(8771), 1, + sym_ms_based_modifier, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8974), 11, + STATE(6935), 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(3460), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -541798,48 +544340,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [212663] = 20, + [212042] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7417), 1, anon_sym_AMP, - STATE(6263), 1, - sym__scope_resolution, - STATE(6376), 1, + STATE(6209), 1, sym__declarator, - STATE(7655), 1, + STATE(6348), 1, + sym__scope_resolution, + STATE(7994), 1, sym_init_declarator, - STATE(8878), 1, + STATE(8656), 1, sym__declaration_declarator, - STATE(9289), 1, + STATE(8879), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -541851,43 +544393,27 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [212736] = 14, + [212115] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(9067), 1, + anon_sym___attribute__, + STATE(5759), 1, + sym_attribute_specifier, + ACTIONS(5835), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5837), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(9265), 1, anon_sym_STAR, - ACTIONS(9267), 1, anon_sym_AMP_AMP, - ACTIONS(9269), 1, - anon_sym_AMP, - STATE(3802), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6890), 1, - sym__abstract_declarator, - STATE(5559), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6740), 4, anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_try, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8121), 11, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -541898,69 +544424,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [212797] = 19, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [212158] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7441), 1, + ACTIONS(7642), 1, anon_sym_requires, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7623), 1, + ACTIONS(7725), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - STATE(6325), 1, + STATE(6239), 1, sym_trailing_return_type, - STATE(6378), 1, + STATE(6448), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5873), 3, + STATE(5917), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 6, + ACTIONS(9008), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [212868] = 5, + [212229] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, + ACTIONS(9067), 1, anon_sym___attribute__, - STATE(5689), 1, + STATE(5724), 1, sym_attribute_specifier, - ACTIONS(5895), 2, + ACTIONS(5909), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5897), 27, + ACTIONS(5911), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -541988,33 +544521,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [212911] = 9, + [212272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, - anon_sym___attribute__, - ACTIONS(6385), 1, - anon_sym_LBRACE, - ACTIONS(9271), 1, - anon_sym_COLON, - STATE(2226), 1, - sym_attribute_specifier, - STATE(2809), 1, - sym__enum_base_clause, - STATE(2865), 1, - sym_enumerator_list, - ACTIONS(6055), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6057), 23, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(9053), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + ACTIONS(5012), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(5007), 25, anon_sym___extension__, - anon_sym_LBRACK, + 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, @@ -542025,48 +544553,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_requires, - [212962] = 14, + [212317] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(9053), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + ACTIONS(4161), 3, anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8968), 1, anon_sym_STAR, - ACTIONS(8970), 1, - anon_sym_AMP_AMP, - ACTIONS(8972), 1, - anon_sym_AMP, - ACTIONS(8976), 1, - anon_sym_const, - STATE(4436), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7076), 1, - sym__abstract_declarator, - STATE(5936), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8524), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8974), 11, + anon_sym_LBRACE, + ACTIONS(5397), 25, anon_sym___extension__, + 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, @@ -542077,42 +544592,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [213023] = 14, + sym_primitive_type, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [212362] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(8968), 1, + ACTIONS(9079), 1, anon_sym_STAR, - ACTIONS(8970), 1, + ACTIONS(9081), 1, anon_sym_AMP_AMP, - ACTIONS(8972), 1, + ACTIONS(9083), 1, anon_sym_AMP, - ACTIONS(8976), 1, + ACTIONS(9087), 1, anon_sym_const, - STATE(4436), 1, + STATE(4426), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7072), 1, + STATE(7104), 1, sym__abstract_declarator, - STATE(5540), 2, + STATE(5964), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6079), 4, + ACTIONS(8561), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - STATE(6616), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8974), 11, + ACTIONS(9085), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -542124,17 +544646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [213084] = 5, + [212423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, + ACTIONS(9067), 1, anon_sym___attribute__, - STATE(5791), 1, + STATE(5727), 1, sym_attribute_specifier, - ACTIONS(5849), 2, + ACTIONS(5913), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5851), 27, + ACTIONS(5915), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -542162,48 +544684,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [213127] = 20, + [212466] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7417), 1, anon_sym_AMP, - STATE(6263), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(6376), 1, + STATE(6429), 1, sym__declarator, - STATE(7655), 1, + STATE(7994), 1, sym_init_declarator, - STATE(8654), 1, - sym__declaration_declarator, - STATE(9289), 1, + STATE(8879), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(8890), 1, + sym__declaration_declarator, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -542215,48 +544737,100 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213200] = 20, + [212539] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7725), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9285), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9304), 1, + anon_sym_requires, + STATE(6261), 1, + sym_trailing_return_type, + STATE(6421), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9301), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5886), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9107), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [212610] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7417), 1, anon_sym_AMP, - STATE(6118), 1, - sym__declarator, - STATE(6263), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(7655), 1, + STATE(6429), 1, + sym__declarator, + STATE(7994), 1, sym_init_declarator, - STATE(9027), 1, + STATE(8804), 1, sym__declaration_declarator, - STATE(9289), 1, + STATE(8879), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -542268,251 +544842,242 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213273] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8327), 1, - sym_identifier, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8331), 1, - anon_sym_STAR, - ACTIONS(8333), 1, - anon_sym_AMP_AMP, - ACTIONS(8335), 1, - anon_sym_AMP, - STATE(6619), 1, - sym__field_declarator, - STATE(6872), 1, - sym_operator_name, - STATE(8907), 1, - sym_ms_based_modifier, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6886), 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(3456), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [213334] = 19, + [212683] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7609), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9250), 1, + ACTIONS(9071), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9256), 1, + ACTIONS(9074), 1, anon_sym_requires, - STATE(6286), 1, - sym__function_attributes_end, STATE(6303), 1, + sym__function_attributes_end, + STATE(6335), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(9128), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9253), 2, + ACTIONS(9089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5857), 3, + STATE(5894), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9004), 6, + ACTIONS(9008), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [213405] = 19, + [212754] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7623), 1, + ACTIONS(7725), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9285), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8937), 1, - anon_sym_requires, - STATE(6326), 1, + STATE(6331), 1, sym_trailing_return_type, - STATE(6397), 1, + STATE(6454), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8934), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - STATE(5858), 3, + STATE(5892), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 6, + ACTIONS(9107), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [213476] = 19, + [212825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(9067), 1, anon_sym___attribute__, - ACTIONS(7338), 1, + STATE(5740), 1, + sym_attribute_specifier, + ACTIONS(5875), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5877), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [212868] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7636), 1, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8978), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8990), 1, - anon_sym_requires, - STATE(6302), 1, + STATE(6239), 1, sym_trailing_return_type, - STATE(6368), 1, + STATE(6317), 1, sym__function_attributes_end, - STATE(7198), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8934), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + ACTIONS(9089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5885), 3, + STATE(5899), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 6, + ACTIONS(9008), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [213547] = 20, + anon_sym_COLON, + [212939] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7417), 1, anon_sym_AMP, STATE(6159), 1, sym__declarator, - STATE(6263), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(7655), 1, + STATE(7994), 1, sym_init_declarator, - STATE(8758), 1, - sym__declaration_declarator, - STATE(9289), 1, + STATE(8879), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9046), 1, + sym__declaration_declarator, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -542524,48 +545089,95 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213620] = 20, + [213012] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9362), 1, + anon_sym_STAR, + ACTIONS(9364), 1, + anon_sym_AMP_AMP, + ACTIONS(9366), 1, + anon_sym_AMP, + STATE(3782), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6916), 1, + sym__abstract_declarator, + STATE(5519), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6096), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [213073] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7417), 1, anon_sym_AMP, - STATE(6156), 1, - sym__declarator, - STATE(6263), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(7655), 1, + STATE(6429), 1, + sym__declarator, + STATE(7994), 1, sym_init_declarator, - STATE(8878), 1, - sym__declaration_declarator, - STATE(9289), 1, + STATE(8879), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(8956), 1, + sym__declaration_declarator, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -542577,69 +545189,17 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213693] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7636), 1, - anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8978), 1, - anon_sym_LBRACK_LBRACK, - STATE(6304), 1, - sym_trailing_return_type, - STATE(6375), 1, - sym__function_attributes_end, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5860), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [213764] = 5, + [213146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, + ACTIONS(9067), 1, anon_sym___attribute__, - STATE(5657), 1, + STATE(5744), 1, sym_attribute_specifier, - ACTIONS(5857), 2, + ACTIONS(5871), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5859), 27, + ACTIONS(5873), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -542667,17 +545227,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [213807] = 5, + [213189] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8296), 1, + sym_identifier, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8300), 1, + anon_sym_STAR, + ACTIONS(8302), 1, + anon_sym_AMP_AMP, + ACTIONS(8304), 1, + anon_sym_AMP, + STATE(7117), 1, + sym__field_declarator, + STATE(7241), 1, + sym_operator_name, + STATE(8724), 1, + sym_ms_based_modifier, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6935), 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(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [213250] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9067), 1, anon_sym___attribute__, - STATE(5682), 1, + STATE(5758), 1, sym_attribute_specifier, - ACTIONS(5882), 2, + ACTIONS(5849), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5884), 27, + ACTIONS(5851), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -542705,43 +545312,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [213850] = 14, + [213293] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(9067), 1, + anon_sym___attribute__, + STATE(5766), 1, + sym_attribute_specifier, + ACTIONS(5821), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5823), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8968), 1, anon_sym_STAR, - ACTIONS(8970), 1, anon_sym_AMP_AMP, - ACTIONS(8972), 1, - anon_sym_AMP, - ACTIONS(8976), 1, - anon_sym_const, - STATE(4436), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7107), 1, - sym__abstract_declarator, - STATE(5936), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8500), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8974), 11, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -542752,75 +545343,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [213911] = 14, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [213336] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7709), 1, + anon_sym_DASH_GT, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9071), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9074), 1, + anon_sym_requires, + STATE(6335), 1, + sym_trailing_return_type, + STATE(6415), 1, + sym__function_attributes_end, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9037), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5904), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9008), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [213407] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(9265), 1, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(9267), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(9269), 1, + ACTIONS(7417), 1, anon_sym_AMP, - STATE(3802), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6956), 1, - sym__abstract_declarator, - STATE(5517), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6079), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [213972] = 6, + STATE(6348), 1, + sym__scope_resolution, + STATE(6407), 1, + sym__declarator, + STATE(7994), 1, + sym_init_declarator, + STATE(8680), 1, + sym__declaration_declarator, + STATE(8879), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213480] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(8966), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - ACTIONS(4975), 3, + ACTIONS(6503), 1, + anon_sym___attribute__, + ACTIONS(6610), 1, + anon_sym_LBRACE, + ACTIONS(9374), 1, + anon_sym_COLON, + STATE(2977), 1, + sym__enum_base_clause, + STATE(3066), 1, + sym_enumerator_list, + STATE(3306), 1, + sym_attribute_specifier, + ACTIONS(6108), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6110), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(4968), 25, + anon_sym_AMP_AMP, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -542831,55 +545491,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - anon_sym_COLON, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - [214017] = 20, + anon_sym_GT2, + anon_sym_requires, + [213531] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7417), 1, anon_sym_AMP, - STATE(6263), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(6376), 1, + STATE(6429), 1, sym__declarator, - STATE(7655), 1, + STATE(7994), 1, sym_init_declarator, - STATE(9004), 1, - sym__declaration_declarator, - STATE(9289), 1, + STATE(8879), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9311), 1, + sym__declaration_declarator, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -542891,94 +545550,141 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [214090] = 19, + [213604] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8346), 1, + sym_identifier, + ACTIONS(8348), 1, + anon_sym_STAR, + ACTIONS(8350), 1, + anon_sym_AMP_AMP, + ACTIONS(8352), 1, + anon_sym_AMP, + STATE(6660), 1, + sym__field_declarator, + STATE(6840), 1, + sym_operator_name, + STATE(8771), 1, + sym_ms_based_modifier, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6935), 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(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [213665] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7604), 1, + ACTIONS(7725), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8937), 1, + ACTIONS(9040), 1, anon_sym_requires, - STATE(6239), 1, - sym__function_attributes_end, - STATE(6326), 1, + STATE(6240), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(6385), 1, + sym__function_attributes_end, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(8934), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8981), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + ACTIONS(9037), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5886), 3, + STATE(5893), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 6, - anon_sym_COMMA, + ACTIONS(9008), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [214161] = 14, + anon_sym_try, + [213736] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(8968), 1, + ACTIONS(9079), 1, anon_sym_STAR, - ACTIONS(8970), 1, + ACTIONS(9081), 1, anon_sym_AMP_AMP, - ACTIONS(8972), 1, + ACTIONS(9083), 1, anon_sym_AMP, - ACTIONS(8976), 1, + ACTIONS(9087), 1, anon_sym_const, - STATE(4436), 1, + STATE(4426), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7104), 1, + STATE(7129), 1, sym__abstract_declarator, - STATE(5936), 2, + STATE(5964), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6740), 4, + ACTIONS(6913), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - STATE(6616), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8974), 11, + ACTIONS(9085), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -542990,77 +545696,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [214222] = 19, + [213797] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7623), 1, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9125), 1, + ACTIONS(9368), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9131), 1, + ACTIONS(9371), 1, anon_sym_requires, - STATE(6208), 1, + STATE(6336), 1, sym_trailing_return_type, - STATE(6365), 1, + STATE(6425), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9128), 2, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - STATE(5870), 3, + STATE(5906), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9004), 6, + ACTIONS(9107), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [214293] = 9, + anon_sym_GT2, + [213868] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, + ACTIONS(9067), 1, anon_sym___attribute__, - ACTIONS(6385), 1, - anon_sym_LBRACE, - ACTIONS(9271), 1, - anon_sym_COLON, - STATE(2178), 1, + STATE(5787), 1, sym_attribute_specifier, - STATE(2799), 1, - sym__enum_base_clause, - STATE(2858), 1, - sym_enumerator_list, - ACTIONS(6073), 2, + ACTIONS(5879), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6075), 23, + ACTIONS(5881), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -543068,7 +545766,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -543083,70 +545783,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [214344] = 19, + [213911] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7441), 1, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9079), 1, + anon_sym_STAR, + ACTIONS(9081), 1, + anon_sym_AMP_AMP, + ACTIONS(9083), 1, + anon_sym_AMP, + ACTIONS(9087), 1, + anon_sym_const, + STATE(4426), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7139), 1, + sym__abstract_declarator, + STATE(5964), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8565), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_requires, - ACTIONS(7599), 1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9085), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [213972] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8296), 1, + sym_identifier, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8300), 1, + anon_sym_STAR, + ACTIONS(8302), 1, + anon_sym_AMP_AMP, + ACTIONS(8304), 1, + anon_sym_AMP, + STATE(7135), 1, + sym__field_declarator, + STATE(7241), 1, + sym_operator_name, + STATE(8724), 1, + sym_ms_based_modifier, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6935), 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(3460), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [214033] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7604), 1, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9125), 1, + ACTIONS(9368), 1, anon_sym_LBRACK_LBRACK, - STATE(6232), 1, + STATE(6350), 1, sym_trailing_return_type, - STATE(6313), 1, + STATE(6388), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(9253), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - STATE(5861), 3, + STATE(5903), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9004), 6, + ACTIONS(9107), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [214415] = 5, + anon_sym_GT2, + [214104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, + ACTIONS(9067), 1, anon_sym___attribute__, - STATE(5793), 1, + STATE(5795), 1, sym_attribute_specifier, - ACTIONS(5853), 2, + ACTIONS(5883), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5855), 27, + ACTIONS(5885), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -543174,549 +545970,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [214458] = 13, + [214147] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8506), 1, - sym_identifier, - ACTIONS(8508), 1, - anon_sym_LPAREN2, - ACTIONS(8510), 1, - anon_sym_STAR, - ACTIONS(8514), 1, - sym_primitive_type, - STATE(6745), 1, - sym__type_declarator, - STATE(6753), 1, - sym_pointer_type_declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8512), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6751), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [214516] = 21, - ACTIONS(3), 1, - sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7776), 1, - sym_identifier, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(7782), 1, - sym_primitive_type, - ACTIONS(7784), 1, - anon_sym_enum, - ACTIONS(7786), 1, - anon_sym_class, - ACTIONS(7788), 1, - anon_sym_struct, - ACTIONS(7790), 1, - anon_sym_union, - ACTIONS(7792), 1, - sym_auto, - ACTIONS(7794), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7796), 1, - anon_sym_typename, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(4912), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5376), 1, - sym__type_specifier, - STATE(5418), 1, - sym_decltype_auto, - STATE(7045), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3357), 2, - sym_decltype, - sym_template_type, - ACTIONS(7780), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5419), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [214590] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(9064), 1, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(9066), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(9070), 1, - sym_primitive_type, - ACTIONS(9072), 1, - anon_sym_enum, - ACTIONS(9074), 1, - anon_sym_class, - ACTIONS(9076), 1, - anon_sym_struct, - ACTIONS(9078), 1, - anon_sym_union, - ACTIONS(9080), 1, - sym_auto, - ACTIONS(9082), 1, - anon_sym_decltype, - ACTIONS(9084), 1, - anon_sym_typename, - STATE(2678), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3191), 1, - sym__type_specifier, - STATE(3233), 1, - sym_decltype_auto, - STATE(3249), 1, - sym_qualified_type_identifier, - STATE(7002), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, + anon_sym_STAR, + ACTIONS(7415), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_AMP, + STATE(6348), 1, sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3215), 2, + STATE(6429), 1, + sym__declarator, + STATE(7994), 1, + sym_init_declarator, + STATE(8457), 1, + sym__declaration_declarator, + STATE(8879), 1, + sym_ms_based_modifier, + STATE(9043), 3, sym_decltype, sym_template_type, - ACTIONS(9068), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3237), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [214664] = 21, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [214220] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7782), 1, - sym_primitive_type, - ACTIONS(7792), 1, - sym_auto, - ACTIONS(7794), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7808), 1, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(7810), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(7812), 1, - anon_sym_enum, - ACTIONS(7814), 1, - anon_sym_class, - ACTIONS(7816), 1, - anon_sym_struct, - ACTIONS(7818), 1, - anon_sym_union, - ACTIONS(7820), 1, - anon_sym_typename, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(4912), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5376), 1, - sym__type_specifier, - STATE(5418), 1, - sym_decltype_auto, - STATE(7031), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, + anon_sym_STAR, + ACTIONS(7415), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_AMP, + STATE(6197), 1, + sym__declarator, + STATE(6348), 1, sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3357), 2, + STATE(7994), 1, + sym_init_declarator, + STATE(8879), 1, + sym_ms_based_modifier, + STATE(9311), 1, + sym__declaration_declarator, + STATE(9043), 3, sym_decltype, sym_template_type, - ACTIONS(7780), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5419), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [214738] = 21, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [214293] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7738), 1, - sym_primitive_type, - ACTIONS(9086), 1, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(9088), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(9090), 1, - anon_sym_enum, - ACTIONS(9092), 1, - anon_sym_class, - ACTIONS(9094), 1, - anon_sym_struct, - ACTIONS(9096), 1, - anon_sym_union, - ACTIONS(9098), 1, - anon_sym_typename, - STATE(2099), 1, - sym__type_specifier, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(7040), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, + anon_sym_STAR, + ACTIONS(7415), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_AMP, + STATE(6235), 1, + sym__declarator, + STATE(6348), 1, sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(2137), 2, + STATE(7994), 1, + sym_init_declarator, + STATE(8879), 1, + sym_ms_based_modifier, + STATE(9312), 1, + sym__declaration_declarator, + STATE(9043), 3, sym_decltype, sym_template_type, - ACTIONS(2074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [214812] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(9169), 1, - sym_identifier, - ACTIONS(9171), 1, - anon_sym_COLON_COLON, - ACTIONS(9175), 1, - sym_primitive_type, - ACTIONS(9177), 1, - anon_sym_enum, - ACTIONS(9179), 1, - anon_sym_class, - ACTIONS(9181), 1, - anon_sym_struct, - ACTIONS(9183), 1, - anon_sym_union, - ACTIONS(9185), 1, - sym_auto, - ACTIONS(9187), 1, - anon_sym_decltype, - ACTIONS(9189), 1, - anon_sym_typename, - STATE(4111), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4322), 1, - sym__type_specifier, - STATE(4625), 1, - sym_qualified_type_identifier, - STATE(4637), 1, - sym_decltype_auto, - STATE(7006), 1, - sym__scope_resolution, - STATE(9084), 1, sym_dependent_type_identifier, - STATE(4554), 2, - sym_decltype, - sym_template_type, - ACTIONS(9173), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4648), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [214886] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - STATE(4159), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7148), 1, - sym__abstract_declarator, - STATE(5559), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6740), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [214946] = 13, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [214366] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(6837), 1, - sym__type_declarator, - STATE(8865), 1, - sym_ms_based_modifier, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [215004] = 21, - ACTIONS(3), 1, - sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3370), 1, - sym_auto, - ACTIONS(3372), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7806), 1, - sym_primitive_type, - ACTIONS(9028), 1, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(9030), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(9032), 1, - anon_sym_enum, - ACTIONS(9034), 1, - anon_sym_class, - ACTIONS(9036), 1, - anon_sym_struct, - ACTIONS(9038), 1, - anon_sym_union, - ACTIONS(9040), 1, - anon_sym_typename, - STATE(2706), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3319), 1, - sym_decltype_auto, - STATE(3328), 1, - sym_qualified_type_identifier, - STATE(4567), 1, - sym__type_specifier, - STATE(7027), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, + anon_sym_STAR, + ACTIONS(7415), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_AMP, + STATE(6195), 1, + sym__declarator, + STATE(6348), 1, sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3157), 2, + STATE(7994), 1, + sym_init_declarator, + STATE(8879), 1, + sym_ms_based_modifier, + STATE(8956), 1, + sym__declaration_declarator, + STATE(9043), 3, sym_decltype, sym_template_type, - ACTIONS(3336), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3318), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [215078] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(9201), 1, - sym_identifier, - ACTIONS(9203), 1, - anon_sym_COLON_COLON, - ACTIONS(9207), 1, - sym_primitive_type, - ACTIONS(9209), 1, - anon_sym_enum, - ACTIONS(9211), 1, - anon_sym_class, - ACTIONS(9213), 1, - anon_sym_struct, - ACTIONS(9215), 1, - anon_sym_union, - ACTIONS(9217), 1, - sym_auto, - ACTIONS(9219), 1, - anon_sym_decltype, - ACTIONS(9221), 1, - anon_sym_typename, - STATE(2504), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2868), 1, - sym__type_specifier, - STATE(3062), 1, - sym_qualified_type_identifier, - STATE(3096), 1, - sym_decltype_auto, - STATE(7024), 1, - sym__scope_resolution, - STATE(9084), 1, sym_dependent_type_identifier, - STATE(2987), 2, - sym_decltype, - sym_template_type, - ACTIONS(9205), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3094), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [215152] = 14, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [214439] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(6503), 1, + anon_sym___attribute__, + ACTIONS(6610), 1, + anon_sym_LBRACE, + ACTIONS(9374), 1, + anon_sym_COLON, + STATE(3000), 1, + sym__enum_base_clause, + STATE(3148), 1, + sym_enumerator_list, + STATE(3282), 1, + sym_attribute_specifier, + ACTIONS(6114), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(6116), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(9008), 1, anon_sym_STAR, - ACTIONS(9010), 1, anon_sym_AMP_AMP, - ACTIONS(9012), 1, - anon_sym_AMP, - STATE(4309), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7139), 1, - sym__abstract_declarator, - STATE(5559), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6740), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8121), 11, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -543727,113 +546218,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [215212] = 22, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [214490] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7338), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7798), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(7800), 1, + ACTIONS(7741), 1, anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9071), 1, anon_sym_LBRACK_LBRACK, - STATE(5848), 1, - sym_ref_qualifier, - STATE(6791), 1, - sym__function_attributes_end, - STATE(6908), 1, + STATE(6318), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(6342), 1, + sym__function_attributes_end, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(9089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8908), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6123), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5981), 3, + STATE(5908), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [215288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5396), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5398), 28, + ACTIONS(9008), 6, 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [215326] = 3, + [214561] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5781), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5069), 1, anon_sym_LPAREN2, + ACTIONS(7829), 1, + sym_auto, + ACTIONS(7831), 1, + anon_sym_decltype, + ACTIONS(8085), 1, + anon_sym_COLON, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9087), 1, + anon_sym_const, + ACTIONS(9356), 1, anon_sym_STAR, + ACTIONS(9358), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(9360), 1, + anon_sym_AMP, + STATE(2272), 1, + sym_decltype_auto, + STATE(4401), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7245), 1, + sym__abstract_declarator, + STATE(5839), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9085), 11, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -543844,25 +546326,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [215364] = 6, + [214628] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8296), 1, + sym_identifier, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8300), 1, + anon_sym_STAR, + ACTIONS(8302), 1, + anon_sym_AMP_AMP, + ACTIONS(8304), 1, anon_sym_AMP, - ACTIONS(9276), 1, - anon_sym_const, - STATE(5559), 2, + STATE(7134), 1, + sym__field_declarator, + STATE(7241), 1, + sym_operator_name, + STATE(8724), 1, + sym_ms_based_modifier, + STATE(5580), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(9273), 11, + STATE(6935), 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(3460), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -543873,220 +546373,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5517), 15, - 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [215408] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(7738), 1, - sym_primitive_type, - ACTIONS(9086), 1, - sym_identifier, - ACTIONS(9088), 1, - anon_sym_COLON_COLON, - ACTIONS(9090), 1, - anon_sym_enum, - ACTIONS(9092), 1, - anon_sym_class, - ACTIONS(9094), 1, - anon_sym_struct, - ACTIONS(9096), 1, - anon_sym_union, - ACTIONS(9098), 1, - anon_sym_typename, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(4324), 1, - sym__type_specifier, - STATE(7040), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(2137), 2, - sym_decltype, - sym_template_type, - ACTIONS(2074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [215482] = 22, + [214689] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7338), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7662), 1, - anon_sym_requires, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9109), 1, anon_sym_LBRACK, - STATE(5847), 1, - sym_ref_qualifier, - STATE(6635), 1, - sym_trailing_return_type, - STATE(6874), 1, + ACTIONS(9368), 1, + anon_sym_LBRACK_LBRACK, + STATE(6343), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(6350), 1, + sym_trailing_return_type, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(8908), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6123), 2, + ACTIONS(9353), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - STATE(5954), 3, + STATE(5883), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [215558] = 13, + ACTIONS(9107), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [214760] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8482), 1, - sym_identifier, - ACTIONS(8484), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(8486), 1, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(8490), 1, - sym_primitive_type, - STATE(2953), 1, - sym__type_declarator, - STATE(3327), 1, - sym_pointer_type_declarator, - STATE(8484), 1, + ACTIONS(7415), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_AMP, + STATE(6177), 1, + sym__declarator, + STATE(6348), 1, + sym__scope_resolution, + STATE(7994), 1, + sym_init_declarator, + STATE(8879), 1, sym_ms_based_modifier, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8488), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3325), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [215616] = 21, + STATE(8890), 1, + sym__declaration_declarator, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [214833] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9100), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(9102), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7447), 1, + anon_sym_STAR, + ACTIONS(7449), 1, + anon_sym_AMP_AMP, + ACTIONS(7451), 1, + anon_sym_AMP, + ACTIONS(7453), 1, anon_sym_COLON_COLON, - ACTIONS(9106), 1, - sym_primitive_type, - ACTIONS(9108), 1, + STATE(6354), 1, + sym__scope_resolution, + STATE(6365), 1, + sym__declarator, + STATE(7994), 1, + sym_init_declarator, + STATE(8511), 1, + sym_ms_based_modifier, + STATE(8680), 1, + sym__declaration_declarator, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [214906] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(3342), 1, anon_sym_enum, - ACTIONS(9110), 1, + ACTIONS(3344), 1, anon_sym_class, - ACTIONS(9112), 1, + ACTIONS(3346), 1, anon_sym_struct, - ACTIONS(9114), 1, + ACTIONS(3348), 1, anon_sym_union, - ACTIONS(9116), 1, + ACTIONS(3372), 1, sym_auto, - ACTIONS(9118), 1, + ACTIONS(3374), 1, anon_sym_decltype, - ACTIONS(9120), 1, + ACTIONS(3376), 1, anon_sym_typename, - STATE(2268), 1, - sym__type_specifier, - STATE(2356), 1, + ACTIONS(7947), 1, + sym_identifier, + ACTIONS(7949), 1, + anon_sym_COLON_COLON, + ACTIONS(7951), 1, + sym_primitive_type, + STATE(2729), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2404), 1, - sym_decltype_auto, - STATE(2409), 1, + STATE(3254), 1, + sym__type_specifier, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(7028), 1, + STATE(3344), 1, + sym_decltype_auto, + STATE(7064), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2316), 2, + STATE(3223), 2, sym_decltype, sym_template_type, - ACTIONS(9104), 4, + ACTIONS(3338), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2387), 7, + STATE(3342), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -544094,52 +546584,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [215690] = 21, + [214980] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9169), 1, + ACTIONS(3372), 1, + sym_auto, + ACTIONS(3374), 1, + anon_sym_decltype, + ACTIONS(7951), 1, + sym_primitive_type, + ACTIONS(9189), 1, sym_identifier, - ACTIONS(9171), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(9175), 1, - sym_primitive_type, - ACTIONS(9177), 1, + ACTIONS(9193), 1, anon_sym_enum, - ACTIONS(9179), 1, + ACTIONS(9195), 1, anon_sym_class, - ACTIONS(9181), 1, + ACTIONS(9197), 1, anon_sym_struct, - ACTIONS(9183), 1, + ACTIONS(9199), 1, anon_sym_union, - ACTIONS(9185), 1, - sym_auto, - ACTIONS(9187), 1, - anon_sym_decltype, - ACTIONS(9189), 1, + ACTIONS(9201), 1, anon_sym_typename, - STATE(4111), 1, + STATE(2729), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4328), 1, - sym__type_specifier, - STATE(4625), 1, + STATE(3322), 1, sym_qualified_type_identifier, - STATE(4637), 1, + STATE(3344), 1, sym_decltype_auto, - STATE(7006), 1, + STATE(4624), 1, + sym__type_specifier, + STATE(7067), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(4554), 2, + STATE(3223), 2, sym_decltype, sym_template_type, - ACTIONS(9173), 4, + ACTIONS(3338), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4648), 7, + STATE(3342), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -544147,7 +546637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [215764] = 21, + [215054] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, @@ -544156,43 +546646,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3940), 1, + ACTIONS(3056), 1, sym_primitive_type, - ACTIONS(7762), 1, - sym_identifier, - ACTIONS(7764), 1, - anon_sym_COLON_COLON, - ACTIONS(7766), 1, + ACTIONS(3058), 1, anon_sym_enum, - ACTIONS(7768), 1, + ACTIONS(3060), 1, anon_sym_class, - ACTIONS(7770), 1, + ACTIONS(3062), 1, anon_sym_struct, - ACTIONS(7772), 1, + ACTIONS(3064), 1, anon_sym_union, - ACTIONS(7774), 1, + ACTIONS(3066), 1, anon_sym_typename, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(3663), 1, + ACTIONS(5094), 1, + sym_identifier, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + STATE(3392), 1, + sym__type_specifier, + STATE(3614), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, + STATE(3620), 1, sym_decltype_auto, - STATE(7018), 1, + STATE(4467), 1, + sym_qualified_type_identifier, + STATE(7076), 1, sym__scope_resolution, - STATE(7250), 1, - sym__type_specifier, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - ACTIONS(3938), 4, + ACTIONS(53), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3557), 7, + STATE(3623), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -544200,97 +546690,105 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [215838] = 13, + [215128] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2086), 1, + anon_sym_enum, + ACTIONS(2088), 1, + anon_sym_class, + ACTIONS(2090), 1, + anon_sym_struct, + ACTIONS(2092), 1, + anon_sym_union, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(2120), 1, + anon_sym_typename, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(8480), 1, - anon_sym_STAR, - STATE(2267), 1, - sym__type_declarator, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(9156), 1, - sym_ms_based_modifier, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8474), 4, + STATE(2168), 1, + sym__type_specifier, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(7068), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, + sym_decltype, + sym_template_type, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [215896] = 21, + STATE(2271), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [215202] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9169), 1, + ACTIONS(3938), 1, + sym_primitive_type, + ACTIONS(7887), 1, sym_identifier, - ACTIONS(9171), 1, + ACTIONS(7889), 1, anon_sym_COLON_COLON, - ACTIONS(9175), 1, - sym_primitive_type, - ACTIONS(9177), 1, + ACTIONS(7891), 1, anon_sym_enum, - ACTIONS(9179), 1, + ACTIONS(7893), 1, anon_sym_class, - ACTIONS(9181), 1, + ACTIONS(7895), 1, anon_sym_struct, - ACTIONS(9183), 1, + ACTIONS(7897), 1, anon_sym_union, - ACTIONS(9185), 1, - sym_auto, - ACTIONS(9187), 1, - anon_sym_decltype, - ACTIONS(9189), 1, + ACTIONS(7899), 1, anon_sym_typename, - STATE(4111), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4577), 1, + STATE(3392), 1, sym__type_specifier, - STATE(4625), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(4637), 1, + STATE(3620), 1, sym_decltype_auto, - STATE(7006), 1, + STATE(3701), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7042), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(4554), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - ACTIONS(9173), 4, + ACTIONS(3936), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4648), 7, + STATE(3623), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -544298,34 +546796,71 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [215970] = 13, + [215276] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5580), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5424), 6, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(5426), 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_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(9376), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [215318] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8568), 1, + ACTIONS(8545), 1, sym_identifier, - ACTIONS(8570), 1, + ACTIONS(8547), 1, anon_sym_LPAREN2, - ACTIONS(8572), 1, + ACTIONS(8549), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8557), 1, sym_primitive_type, - STATE(3173), 1, + STATE(3015), 1, sym__type_declarator, - STATE(3648), 1, + STATE(3338), 1, sym_pointer_type_declarator, - STATE(9001), 1, + STATE(8958), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8574), 4, + ACTIONS(8555), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3646), 4, + STATE(3336), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -544343,146 +546878,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [216028] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7660), 1, - anon_sym_DASH_GT, - ACTIONS(7662), 1, - anon_sym_requires, - ACTIONS(9006), 1, - anon_sym_LBRACK, - STATE(6569), 1, - sym__function_attributes_end, - STATE(6590), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6587), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5904), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9004), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [216098] = 21, + [215376] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(9064), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(9066), 1, - anon_sym_COLON_COLON, - ACTIONS(9070), 1, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8583), 1, + anon_sym_STAR, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(9072), 1, - anon_sym_enum, - ACTIONS(9074), 1, - anon_sym_class, - ACTIONS(9076), 1, - anon_sym_struct, - ACTIONS(9078), 1, - anon_sym_union, - ACTIONS(9080), 1, - sym_auto, - ACTIONS(9082), 1, - anon_sym_decltype, - ACTIONS(9084), 1, - anon_sym_typename, - STATE(2678), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2920), 1, - sym__type_specifier, - STATE(3233), 1, - sym_decltype_auto, - STATE(3249), 1, - sym_qualified_type_identifier, - STATE(7002), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3215), 2, - sym_decltype, - sym_template_type, - ACTIONS(9068), 4, + STATE(2290), 1, + sym__type_declarator, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(9031), 1, + sym_ms_based_modifier, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3237), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [216172] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(9008), 1, - anon_sym_STAR, - ACTIONS(9010), 1, - anon_sym_AMP_AMP, - ACTIONS(9012), 1, - anon_sym_AMP, - STATE(4309), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7129), 1, - sym__abstract_declarator, - STATE(5559), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8524), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8121), 11, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -544493,52 +546923,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [216232] = 21, + [215434] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9064), 1, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(7839), 1, + sym_primitive_type, + ACTIONS(9131), 1, sym_identifier, - ACTIONS(9066), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9070), 1, - sym_primitive_type, - ACTIONS(9072), 1, + ACTIONS(9135), 1, anon_sym_enum, - ACTIONS(9074), 1, + ACTIONS(9137), 1, anon_sym_class, - ACTIONS(9076), 1, + ACTIONS(9139), 1, anon_sym_struct, - ACTIONS(9078), 1, + ACTIONS(9141), 1, anon_sym_union, - ACTIONS(9080), 1, - sym_auto, - ACTIONS(9082), 1, - anon_sym_decltype, - ACTIONS(9084), 1, + ACTIONS(9143), 1, anon_sym_typename, - STATE(2678), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2932), 1, + STATE(2168), 1, sym__type_specifier, - STATE(3233), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(3249), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(7002), 1, + STATE(7066), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3215), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - ACTIONS(9068), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3237), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -544546,52 +546976,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [216306] = 21, + [215508] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9102), 1, + ACTIONS(3928), 1, + sym_identifier, + ACTIONS(3934), 1, anon_sym_COLON_COLON, - ACTIONS(9110), 1, + ACTIONS(3938), 1, + sym_primitive_type, + ACTIONS(3940), 1, + anon_sym_enum, + ACTIONS(3942), 1, anon_sym_class, - ACTIONS(9112), 1, + ACTIONS(3944), 1, anon_sym_struct, - ACTIONS(9114), 1, + ACTIONS(3946), 1, anon_sym_union, - ACTIONS(9116), 1, - sym_auto, - ACTIONS(9118), 1, - anon_sym_decltype, - ACTIONS(9191), 1, - sym_identifier, - ACTIONS(9195), 1, - sym_primitive_type, - ACTIONS(9197), 1, - anon_sym_enum, - ACTIONS(9199), 1, + ACTIONS(3948), 1, anon_sym_typename, - STATE(2038), 1, + STATE(3392), 1, sym__type_specifier, - STATE(2360), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2404), 1, - sym_decltype_auto, - STATE(2409), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(7028), 1, + STATE(3620), 1, + sym_decltype_auto, + STATE(3701), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7038), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2316), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - ACTIONS(9193), 4, + ACTIONS(3936), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2387), 7, + STATE(3623), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -544599,31 +547029,39 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [216380] = 5, + [215582] = 13, ACTIONS(3), 1, sym_comment, - STATE(5574), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5515), 6, - anon_sym_AMP, + ACTIONS(47), 1, anon_sym___based, + ACTIONS(8591), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(5517), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8593), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(8595), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(9276), 12, + ACTIONS(8599), 1, + sym_primitive_type, + STATE(3241), 1, + sym__type_declarator, + STATE(3641), 1, + sym_pointer_type_declarator, + STATE(8794), 1, + sym_ms_based_modifier, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3684), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -544636,41 +547074,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [216422] = 14, + [215640] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9122), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(9124), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(9126), 1, anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - STATE(4159), 1, + STATE(4295), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7115), 1, + STATE(7156), 1, sym__abstract_declarator, - STATE(5559), 2, + STATE(5593), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8500), 3, + ACTIONS(6096), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(6616), 5, + anon_sym_GT2, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8121), 11, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -544682,52 +547120,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [216482] = 21, + [215700] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9223), 1, + ACTIONS(9250), 1, sym_identifier, - ACTIONS(9225), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9229), 1, + ACTIONS(9256), 1, sym_primitive_type, - ACTIONS(9231), 1, + ACTIONS(9258), 1, anon_sym_enum, - ACTIONS(9233), 1, + ACTIONS(9260), 1, anon_sym_class, - ACTIONS(9235), 1, + ACTIONS(9262), 1, anon_sym_struct, - ACTIONS(9237), 1, + ACTIONS(9264), 1, anon_sym_union, - ACTIONS(9239), 1, + ACTIONS(9266), 1, sym_auto, - ACTIONS(9241), 1, + ACTIONS(9268), 1, anon_sym_decltype, - ACTIONS(9243), 1, + ACTIONS(9270), 1, anon_sym_typename, - STATE(2739), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3001), 1, + STATE(2061), 1, sym__type_specifier, - STATE(3371), 1, + STATE(2311), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2417), 1, sym_qualified_type_identifier, - STATE(3532), 1, + STATE(2432), 1, sym_decltype_auto, - STATE(7032), 1, + STATE(7033), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3296), 2, + STATE(2336), 2, sym_decltype, sym_template_type, - ACTIONS(9227), 4, + ACTIONS(9254), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3530), 7, + STATE(2434), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -544735,52 +547173,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [216556] = 21, + [215774] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3370), 1, - sym_auto, - ACTIONS(3372), 1, - anon_sym_decltype, - ACTIONS(7806), 1, - sym_primitive_type, - ACTIONS(9028), 1, + ACTIONS(9250), 1, sym_identifier, - ACTIONS(9030), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9032), 1, + ACTIONS(9256), 1, + sym_primitive_type, + ACTIONS(9258), 1, anon_sym_enum, - ACTIONS(9034), 1, + ACTIONS(9260), 1, anon_sym_class, - ACTIONS(9036), 1, + ACTIONS(9262), 1, anon_sym_struct, - ACTIONS(9038), 1, + ACTIONS(9264), 1, anon_sym_union, - ACTIONS(9040), 1, + ACTIONS(9266), 1, + sym_auto, + ACTIONS(9268), 1, + anon_sym_decltype, + ACTIONS(9270), 1, anon_sym_typename, - STATE(2706), 1, + STATE(2068), 1, + sym__type_specifier, + STATE(2311), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3319), 1, - sym_decltype_auto, - STATE(3328), 1, + STATE(2417), 1, sym_qualified_type_identifier, - STATE(4550), 1, - sym__type_specifier, - STATE(7027), 1, + STATE(2432), 1, + sym_decltype_auto, + STATE(7033), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3157), 2, + STATE(2336), 2, sym_decltype, sym_template_type, - ACTIONS(3336), 4, + ACTIONS(9254), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3318), 7, + STATE(2434), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -544788,34 +547226,34 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [216630] = 13, + [215848] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8444), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8446), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8448), 1, - anon_sym_STAR, - ACTIONS(8456), 1, + ACTIONS(8587), 1, sym_primitive_type, - STATE(3252), 1, - sym__type_declarator, - STATE(3881), 1, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(8646), 1, + STATE(6897), 1, + sym__type_declarator, + STATE(8896), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8454), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3875), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -544833,52 +547271,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [216688] = 21, + [215906] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9223), 1, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(7839), 1, + sym_primitive_type, + ACTIONS(9131), 1, sym_identifier, - ACTIONS(9225), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9229), 1, - sym_primitive_type, - ACTIONS(9231), 1, + ACTIONS(9135), 1, anon_sym_enum, - ACTIONS(9233), 1, + ACTIONS(9137), 1, anon_sym_class, - ACTIONS(9235), 1, + ACTIONS(9139), 1, anon_sym_struct, - ACTIONS(9237), 1, + ACTIONS(9141), 1, anon_sym_union, - ACTIONS(9239), 1, - sym_auto, - ACTIONS(9241), 1, - anon_sym_decltype, - ACTIONS(9243), 1, + ACTIONS(9143), 1, anon_sym_typename, - STATE(2739), 1, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2954), 1, - sym__type_specifier, - STATE(3371), 1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(3532), 1, - sym_decltype_auto, - STATE(7032), 1, + STATE(4569), 1, + sym__type_specifier, + STATE(7066), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3296), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - ACTIONS(9227), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3530), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -544886,52 +547324,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [216762] = 21, + [215980] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9134), 1, + ACTIONS(9145), 1, sym_identifier, - ACTIONS(9136), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9140), 1, + ACTIONS(9151), 1, sym_primitive_type, - ACTIONS(9142), 1, + ACTIONS(9153), 1, anon_sym_enum, - ACTIONS(9144), 1, + ACTIONS(9155), 1, anon_sym_class, - ACTIONS(9146), 1, + ACTIONS(9157), 1, anon_sym_struct, - ACTIONS(9148), 1, + ACTIONS(9159), 1, anon_sym_union, - ACTIONS(9150), 1, + ACTIONS(9161), 1, sym_auto, - ACTIONS(9152), 1, + ACTIONS(9163), 1, anon_sym_decltype, - ACTIONS(9154), 1, + ACTIONS(9165), 1, anon_sym_typename, - STATE(2911), 1, + STATE(2925), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3222), 1, + STATE(3169), 1, sym__type_specifier, - STATE(3888), 1, + STATE(3943), 1, sym_decltype_auto, - STATE(3921), 1, + STATE(3957), 1, sym_qualified_type_identifier, - STATE(7023), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3556), 2, + STATE(3618), 2, sym_decltype, sym_template_type, - ACTIONS(9138), 4, + ACTIONS(9149), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3891), 7, + STATE(3949), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -544939,34 +547377,34 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [216836] = 13, + [216054] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8444), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8446), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8448), 1, + ACTIONS(8583), 1, anon_sym_STAR, - ACTIONS(8456), 1, + ACTIONS(8587), 1, sym_primitive_type, - STATE(3309), 1, + STATE(2338), 1, sym__type_declarator, - STATE(3881), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(8646), 1, + STATE(9031), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8454), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3875), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -544984,41 +547422,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [216894] = 13, + [216112] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9122), 1, anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(6803), 1, - sym__type_declarator, - STATE(8865), 1, - sym_ms_based_modifier, - STATE(5440), 2, + ACTIONS(9124), 1, + anon_sym_AMP_AMP, + ACTIONS(9126), 1, + anon_sym_AMP, + STATE(4295), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7181), 1, + sym__abstract_declarator, + STATE(5617), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + ACTIONS(6913), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8205), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -545029,139 +547468,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [216952] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7652), 1, - anon_sym_DASH_GT, - ACTIONS(7654), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8978), 1, - anon_sym_LBRACK_LBRACK, - STATE(6475), 1, - sym__function_attributes_end, - STATE(6636), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5917), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [217022] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8927), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9279), 1, - anon_sym_requires, - STATE(5843), 1, - sym_ref_qualifier, - STATE(6789), 1, - sym__function_attributes_end, - STATE(6948), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8908), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(8934), 2, - anon_sym_final, - anon_sym_override, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5986), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [217098] = 13, + [216172] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8482), 1, + ACTIONS(8617), 1, sym_identifier, - ACTIONS(8484), 1, + ACTIONS(8619), 1, anon_sym_LPAREN2, - ACTIONS(8486), 1, + ACTIONS(8621), 1, anon_sym_STAR, - ACTIONS(8490), 1, + ACTIONS(8625), 1, sym_primitive_type, - STATE(2980), 1, + STATE(3367), 1, sym__type_declarator, - STATE(3327), 1, + STATE(3752), 1, sym_pointer_type_declarator, - STATE(8484), 1, + STATE(8683), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8488), 4, + ACTIONS(8623), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3325), 4, + STATE(3750), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -545179,75 +547513,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [217156] = 19, + [216230] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(7847), 1, + sym_identifier, + ACTIONS(7849), 1, + anon_sym_COLON_COLON, + ACTIONS(7853), 1, + sym_primitive_type, + ACTIONS(7855), 1, + anon_sym_enum, + ACTIONS(7857), 1, + anon_sym_class, + ACTIONS(7859), 1, + anon_sym_struct, + ACTIONS(7861), 1, + anon_sym_union, + ACTIONS(7863), 1, + anon_sym_typename, + STATE(2168), 1, + sym__type_specifier, + STATE(2273), 1, + sym_decltype_auto, + STATE(3485), 1, + sym_qualified_type_identifier, + STATE(5882), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7058), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2081), 2, + sym_decltype, + sym_template_type, + ACTIONS(7851), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2271), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [216304] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7652), 1, + ACTIONS(7769), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(7800), 1, + anon_sym_requires, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(8978), 1, + ACTIONS(9368), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9014), 1, - anon_sym_requires, - STATE(6513), 1, + STATE(6483), 1, sym__function_attributes_end, - STATE(6670), 1, + STATE(6694), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8934), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - STATE(5905), 3, + STATE(5936), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 5, + ACTIONS(9107), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [217226] = 3, + [216374] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 2, - anon_sym_AMP, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(7871), 1, + sym_primitive_type, + ACTIONS(7881), 1, + sym_auto, + ACTIONS(7883), 1, + anon_sym_decltype, + ACTIONS(7901), 1, + sym_identifier, + ACTIONS(7903), 1, + anon_sym_COLON_COLON, + ACTIONS(7905), 1, + anon_sym_enum, + ACTIONS(7907), 1, + anon_sym_class, + ACTIONS(7909), 1, + anon_sym_struct, + ACTIONS(7911), 1, + anon_sym_union, + ACTIONS(7913), 1, + anon_sym_typename, + STATE(3485), 1, + sym_qualified_type_identifier, + STATE(4924), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5413), 1, + sym__type_specifier, + STATE(5507), 1, + sym_decltype_auto, + STATE(7036), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3389), 2, + sym_decltype, + sym_template_type, + ACTIONS(7869), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5463), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [216448] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(5609), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5069), 1, anon_sym_LPAREN2, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9122), 1, anon_sym_STAR, + ACTIONS(9124), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(9126), 1, + anon_sym_AMP, + STATE(4295), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7162), 1, + sym__abstract_declarator, + STATE(5617), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8561), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8205), 11, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -545258,59 +547716,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [216508] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, sym_auto, + ACTIONS(119), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [217264] = 21, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(3938), 1, + sym_primitive_type, + ACTIONS(7887), 1, + sym_identifier, + ACTIONS(7889), 1, + anon_sym_COLON_COLON, + ACTIONS(7891), 1, + anon_sym_enum, + ACTIONS(7893), 1, + anon_sym_class, + ACTIONS(7895), 1, + anon_sym_struct, + ACTIONS(7897), 1, + anon_sym_union, + ACTIONS(7899), 1, + anon_sym_typename, + STATE(3485), 1, + sym_qualified_type_identifier, + STATE(3620), 1, + sym_decltype_auto, + STATE(3701), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7042), 1, + sym__scope_resolution, + STATE(7252), 1, + sym__type_specifier, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3389), 2, + sym_decltype, + sym_template_type, + ACTIONS(3936), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3623), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [216582] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(7738), 1, - sym_primitive_type, - ACTIONS(9086), 1, + ACTIONS(9203), 1, sym_identifier, - ACTIONS(9088), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9090), 1, + ACTIONS(9209), 1, + sym_primitive_type, + ACTIONS(9211), 1, anon_sym_enum, - ACTIONS(9092), 1, + ACTIONS(9213), 1, anon_sym_class, - ACTIONS(9094), 1, + ACTIONS(9215), 1, anon_sym_struct, - ACTIONS(9096), 1, + ACTIONS(9217), 1, anon_sym_union, - ACTIONS(9098), 1, + ACTIONS(9219), 1, + sym_auto, + ACTIONS(9221), 1, + anon_sym_decltype, + ACTIONS(9223), 1, anon_sym_typename, - STATE(2200), 1, + STATE(2736), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2939), 1, + sym__type_specifier, + STATE(3300), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(3313), 1, sym_qualified_type_identifier, - STATE(4515), 1, - sym__type_specifier, - STATE(7040), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(3202), 2, sym_decltype, sym_template_type, - ACTIONS(2074), 4, + ACTIONS(9207), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(3301), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -545318,34 +547822,34 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [217338] = 13, + [216656] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8545), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8547), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8480), 1, + ACTIONS(8549), 1, anon_sym_STAR, - STATE(2361), 1, + ACTIONS(8557), 1, + sym_primitive_type, + STATE(3024), 1, sym__type_declarator, - STATE(2396), 1, + STATE(3338), 1, sym_pointer_type_declarator, - STATE(9156), 1, + STATE(8958), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8474), 4, + ACTIONS(8555), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(3336), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -545363,117 +547867,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [217396] = 6, + [216714] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8125), 1, + ACTIONS(65), 1, + anon_sym_enum, + ACTIONS(67), 1, + anon_sym_class, + ACTIONS(69), 1, + anon_sym_struct, + ACTIONS(71), 1, + anon_sym_union, + ACTIONS(117), 1, sym_auto, - ACTIONS(8127), 1, + ACTIONS(119), 1, anon_sym_decltype, - STATE(5730), 1, - sym_decltype_auto, - ACTIONS(5436), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5438), 25, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [217440] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(127), 1, + anon_sym_typename, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(3056), 1, sym_primitive_type, - ACTIONS(8480), 1, - anon_sym_STAR, - STATE(2322), 1, - sym__type_declarator, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(9156), 1, - sym_ms_based_modifier, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8474), 4, + ACTIONS(5094), 1, + sym_identifier, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + STATE(3392), 1, + sym__type_specifier, + STATE(3614), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3620), 1, + sym_decltype_auto, + STATE(4467), 1, + sym_qualified_type_identifier, + STATE(7076), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3389), 2, + sym_decltype, + sym_template_type, + ACTIONS(53), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [217498] = 13, + STATE(3623), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [216788] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8506), 1, + ACTIONS(8607), 1, sym_identifier, - ACTIONS(8508), 1, + ACTIONS(8609), 1, anon_sym_LPAREN2, - ACTIONS(8514), 1, + ACTIONS(8615), 1, sym_primitive_type, - ACTIONS(8556), 1, + ACTIONS(8663), 1, anon_sym_STAR, - STATE(6573), 1, + STATE(6562), 1, sym__type_declarator, - STATE(6753), 1, + STATE(6746), 1, sym_pointer_type_declarator, - STATE(8872), 1, + STATE(8930), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8512), 4, + ACTIONS(8613), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6751), 4, + STATE(6756), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -545491,52 +547965,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [217556] = 21, + [216846] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7751), 1, + anon_sym_DASH_GT, + ACTIONS(7753), 1, + anon_sym_requires, + ACTIONS(9109), 1, + anon_sym_LBRACK, + STATE(6596), 1, + sym__function_attributes_end, + STATE(6636), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5925), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9107), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [216916] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9102), 1, + ACTIONS(9167), 1, + sym_identifier, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9110), 1, + ACTIONS(9173), 1, + sym_primitive_type, + ACTIONS(9175), 1, + anon_sym_enum, + ACTIONS(9177), 1, anon_sym_class, - ACTIONS(9112), 1, + ACTIONS(9179), 1, anon_sym_struct, - ACTIONS(9114), 1, + ACTIONS(9181), 1, anon_sym_union, - ACTIONS(9116), 1, + ACTIONS(9183), 1, sym_auto, - ACTIONS(9118), 1, + ACTIONS(9185), 1, anon_sym_decltype, - ACTIONS(9191), 1, - sym_identifier, - ACTIONS(9195), 1, + ACTIONS(9187), 1, + anon_sym_typename, + STATE(4143), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4388), 1, + sym__type_specifier, + STATE(4670), 1, + sym_decltype_auto, + STATE(4674), 1, + sym_qualified_type_identifier, + STATE(7057), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(4590), 2, + sym_decltype, + sym_template_type, + ACTIONS(9171), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4634), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [216990] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(9197), 1, + ACTIONS(9131), 1, + sym_identifier, + ACTIONS(9133), 1, + anon_sym_COLON_COLON, + ACTIONS(9135), 1, anon_sym_enum, - ACTIONS(9199), 1, + ACTIONS(9137), 1, + anon_sym_class, + ACTIONS(9139), 1, + anon_sym_struct, + ACTIONS(9141), 1, + anon_sym_union, + ACTIONS(9143), 1, anon_sym_typename, - STATE(2268), 1, - sym__type_specifier, - STATE(2360), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2404), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2409), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(7028), 1, + STATE(4360), 1, + sym__type_specifier, + STATE(7066), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2316), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - ACTIONS(9193), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2387), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -545544,24 +548122,34 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [217630] = 3, + [217064] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 2, + ACTIONS(3886), 1, + anon_sym_LBRACE, + ACTIONS(9379), 1, + anon_sym_LPAREN2, + STATE(2879), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4051), 1, + sym_argument_list, + STATE(5278), 1, + sym_initializer_list, + ACTIONS(5418), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5592), 28, + ACTIONS(6497), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5420), 19, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -545574,39 +548162,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [217668] = 13, + [217114] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8444), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8446), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8448), 1, + ACTIONS(8583), 1, anon_sym_STAR, - ACTIONS(8456), 1, + ACTIONS(8587), 1, sym_primitive_type, - STATE(3320), 1, + STATE(2347), 1, sym__type_declarator, - STATE(3881), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(8646), 1, + STATE(9031), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8454), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3875), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -545624,42 +548208,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [217726] = 14, + [217172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(8209), 1, + sym_auto, + ACTIONS(8211), 1, + anon_sym_decltype, + STATE(5803), 1, + sym_decltype_auto, + ACTIONS(5548), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5550), 25, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5039), 1, anon_sym_STAR, - ACTIONS(5041), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4159), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7132), 1, - sym__abstract_declarator, - STATE(5559), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8524), 3, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [217216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5544), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5546), 28, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8121), 11, anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [217254] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(6876), 1, + sym__type_declarator, + STATE(8896), 1, + sym_ms_based_modifier, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -545670,105 +548326,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [217786] = 21, + [217312] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7751), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9382), 1, + anon_sym_requires, + STATE(6554), 1, + sym__function_attributes_end, + STATE(6664), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9111), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5918), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9107), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [217382] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3370), 1, - sym_auto, - ACTIONS(3372), 1, - anon_sym_decltype, - ACTIONS(7806), 1, - sym_primitive_type, - ACTIONS(9028), 1, + ACTIONS(9203), 1, sym_identifier, - ACTIONS(9030), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9032), 1, + ACTIONS(9209), 1, + sym_primitive_type, + ACTIONS(9211), 1, anon_sym_enum, - ACTIONS(9034), 1, + ACTIONS(9213), 1, anon_sym_class, - ACTIONS(9036), 1, + ACTIONS(9215), 1, anon_sym_struct, - ACTIONS(9038), 1, + ACTIONS(9217), 1, anon_sym_union, - ACTIONS(9040), 1, - anon_sym_typename, - STATE(2706), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3171), 1, - sym__type_specifier, - STATE(3319), 1, - sym_decltype_auto, - STATE(3328), 1, - sym_qualified_type_identifier, - STATE(7027), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3157), 2, - sym_decltype, - sym_template_type, - ACTIONS(3336), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3318), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [217860] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, + ACTIONS(9219), 1, sym_auto, - ACTIONS(119), 1, + ACTIONS(9221), 1, anon_sym_decltype, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2012), 1, - anon_sym_enum, - ACTIONS(2014), 1, - anon_sym_class, - ACTIONS(2016), 1, - anon_sym_struct, - ACTIONS(2018), 1, - anon_sym_union, - ACTIONS(2042), 1, + ACTIONS(9223), 1, anon_sym_typename, - ACTIONS(3032), 1, - sym_primitive_type, - ACTIONS(5035), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_COLON_COLON, - STATE(3421), 1, - sym__type_specifier, - STATE(3681), 1, + STATE(2736), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, + STATE(3225), 1, + sym__type_specifier, + STATE(3300), 1, sym_decltype_auto, - STATE(4475), 1, + STATE(3313), 1, sym_qualified_type_identifier, - STATE(7046), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(3202), 2, sym_decltype, sym_template_type, - ACTIONS(53), 4, + ACTIONS(9207), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3557), 7, + STATE(3301), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -545776,52 +548430,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [217934] = 21, + [217456] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9100), 1, + ACTIONS(9167), 1, sym_identifier, - ACTIONS(9102), 1, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9106), 1, + ACTIONS(9173), 1, sym_primitive_type, - ACTIONS(9108), 1, + ACTIONS(9175), 1, anon_sym_enum, - ACTIONS(9110), 1, + ACTIONS(9177), 1, anon_sym_class, - ACTIONS(9112), 1, + ACTIONS(9179), 1, anon_sym_struct, - ACTIONS(9114), 1, + ACTIONS(9181), 1, anon_sym_union, - ACTIONS(9116), 1, + ACTIONS(9183), 1, sym_auto, - ACTIONS(9118), 1, + ACTIONS(9185), 1, anon_sym_decltype, - ACTIONS(9120), 1, + ACTIONS(9187), 1, anon_sym_typename, - STATE(2038), 1, - sym__type_specifier, - STATE(2356), 1, + STATE(4143), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2404), 1, + STATE(4588), 1, + sym__type_specifier, + STATE(4670), 1, sym_decltype_auto, - STATE(2409), 1, + STATE(4674), 1, sym_qualified_type_identifier, - STATE(7028), 1, + STATE(7057), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2316), 2, + STATE(4590), 2, sym_decltype, sym_template_type, - ACTIONS(9104), 4, + ACTIONS(9171), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2387), 7, + STATE(4634), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -545829,103 +548483,87 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [218008] = 19, + [217530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7652), 1, - anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9250), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9282), 1, - anon_sym_requires, - STATE(6459), 1, - sym__function_attributes_end, - STATE(6663), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9128), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5913), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9004), 5, + ACTIONS(5711), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5713), 28, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [218078] = 21, + anon_sym_requires, + [217568] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(7738), 1, - sym_primitive_type, - ACTIONS(9086), 1, + ACTIONS(9329), 1, sym_identifier, - ACTIONS(9088), 1, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(9090), 1, + ACTIONS(9335), 1, + sym_primitive_type, + ACTIONS(9337), 1, anon_sym_enum, - ACTIONS(9092), 1, + ACTIONS(9339), 1, anon_sym_class, - ACTIONS(9094), 1, + ACTIONS(9341), 1, anon_sym_struct, - ACTIONS(9096), 1, + ACTIONS(9343), 1, anon_sym_union, - ACTIONS(9098), 1, + ACTIONS(9345), 1, + sym_auto, + ACTIONS(9347), 1, + anon_sym_decltype, + ACTIONS(9349), 1, anon_sym_typename, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(4341), 1, + STATE(3758), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4173), 1, sym__type_specifier, - STATE(7040), 1, + STATE(4557), 1, + sym_decltype_auto, + STATE(7055), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(4470), 2, sym_decltype, sym_template_type, - ACTIONS(2074), 4, + ACTIONS(9333), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(4541), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -545933,41 +548571,18 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [218152] = 13, + [217642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8506), 1, - sym_identifier, - ACTIONS(8508), 1, - anon_sym_LPAREN2, - ACTIONS(8510), 1, - anon_sym_STAR, - ACTIONS(8514), 1, - sym_primitive_type, - STATE(6744), 1, - sym__type_declarator, - STATE(6753), 1, - sym_pointer_type_declarator, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(5440), 2, + ACTIONS(5424), 1, + anon_sym_AMP, + ACTIONS(9376), 1, + anon_sym_const, + STATE(5617), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8512), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6751), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + ACTIONS(9385), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -545978,106 +548593,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [218210] = 22, + ACTIONS(5426), 15, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [217686] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(7425), 1, anon_sym_AMP_AMP, - ACTIONS(7323), 1, + ACTIONS(7427), 1, anon_sym_AMP, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, + ACTIONS(7915), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(9017), 1, + ACTIONS(7955), 1, anon_sym_requires, - STATE(5845), 1, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9034), 1, + anon_sym_LBRACK_LBRACK, + STATE(5879), 1, sym_ref_qualifier, - STATE(6589), 1, - sym_trailing_return_type, - STATE(6816), 1, + STATE(6797), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(6988), 1, + sym_trailing_return_type, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8908), 2, + ACTIONS(9008), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(8914), 2, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5974), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [217762] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7751), 1, + anon_sym_DASH_GT, + ACTIONS(7753), 1, + anon_sym_requires, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(6564), 1, + sym__function_attributes_end, + STATE(6696), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - STATE(5967), 3, + STATE(5926), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [218286] = 21, + ACTIONS(9008), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [217832] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(65), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(9329), 1, + sym_identifier, + ACTIONS(9331), 1, + anon_sym_COLON_COLON, + ACTIONS(9335), 1, + sym_primitive_type, + ACTIONS(9337), 1, anon_sym_enum, - ACTIONS(67), 1, + ACTIONS(9339), 1, anon_sym_class, - ACTIONS(69), 1, + ACTIONS(9341), 1, anon_sym_struct, - ACTIONS(71), 1, + ACTIONS(9343), 1, anon_sym_union, - ACTIONS(117), 1, + ACTIONS(9345), 1, sym_auto, - ACTIONS(119), 1, + ACTIONS(9347), 1, anon_sym_decltype, - ACTIONS(127), 1, + ACTIONS(9349), 1, anon_sym_typename, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(3032), 1, - sym_primitive_type, - ACTIONS(5062), 1, - sym_identifier, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - STATE(3421), 1, - sym__type_specifier, - STATE(3681), 1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(3758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, + STATE(4495), 1, + sym__type_specifier, + STATE(4557), 1, sym_decltype_auto, - STATE(4475), 1, - sym_qualified_type_identifier, - STATE(7030), 1, + STATE(7055), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(4470), 2, sym_decltype, sym_template_type, - ACTIONS(53), 4, + ACTIONS(9333), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3557), 7, + STATE(4541), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -546085,52 +548767,98 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [218360] = 21, + [217906] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + STATE(4175), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7173), 1, + sym__abstract_declarator, + STATE(5617), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8561), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [217966] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9223), 1, + ACTIONS(7925), 1, sym_identifier, - ACTIONS(9225), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(9229), 1, + ACTIONS(7931), 1, sym_primitive_type, - ACTIONS(9231), 1, + ACTIONS(7933), 1, anon_sym_enum, - ACTIONS(9233), 1, + ACTIONS(7935), 1, anon_sym_class, - ACTIONS(9235), 1, + ACTIONS(7937), 1, anon_sym_struct, - ACTIONS(9237), 1, + ACTIONS(7939), 1, anon_sym_union, - ACTIONS(9239), 1, + ACTIONS(7941), 1, sym_auto, - ACTIONS(9241), 1, + ACTIONS(7943), 1, anon_sym_decltype, - ACTIONS(9243), 1, + ACTIONS(7945), 1, anon_sym_typename, - STATE(2739), 1, + STATE(5241), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3323), 1, + STATE(5609), 1, sym__type_specifier, - STATE(3371), 1, + STATE(5702), 1, sym_qualified_type_identifier, - STATE(3532), 1, + STATE(5819), 1, sym_decltype_auto, - STATE(7032), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3296), 2, + STATE(5655), 2, sym_decltype, sym_template_type, - ACTIONS(9227), 4, + ACTIONS(7929), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3530), 7, + STATE(5818), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -546138,120 +548866,150 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [218434] = 19, + [218040] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7753), 1, + anon_sym_requires, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(5873), 1, + sym_ref_qualifier, + STATE(6696), 1, + sym_trailing_return_type, + STATE(6834), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9008), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5996), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [218116] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7660), 1, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7845), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9285), 1, + ACTIONS(9128), 1, anon_sym_requires, - STATE(6560), 1, - sym__function_attributes_end, - STATE(6689), 1, + STATE(5878), 1, + sym_ref_qualifier, + STATE(6726), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(6879), 1, + sym__function_attributes_end, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9022), 2, + ACTIONS(9008), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9021), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - STATE(5890), 3, + STATE(5989), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9004), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [218504] = 13, + [218192] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8568), 1, - sym_identifier, - ACTIONS(8570), 1, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8572), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(8576), 1, - sym_primitive_type, - STATE(3214), 1, - sym__type_declarator, - STATE(3648), 1, - sym_pointer_type_declarator, - STATE(9001), 1, - sym_ms_based_modifier, - STATE(5440), 2, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + STATE(4175), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7166), 1, + sym__abstract_declarator, + STATE(5672), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8574), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3646), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [218562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5759), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5761), 28, + ACTIONS(6096), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8205), 11, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -546262,92 +549020,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [218600] = 19, + [218252] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(3372), 1, + sym_auto, + ACTIONS(3374), 1, anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(7951), 1, + sym_primitive_type, + ACTIONS(9189), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7313), 1, - anon_sym_STAR, - ACTIONS(7315), 1, - anon_sym_AMP_AMP, - ACTIONS(7317), 1, - anon_sym_AMP, - STATE(6263), 1, + ACTIONS(9193), 1, + anon_sym_enum, + ACTIONS(9195), 1, + anon_sym_class, + ACTIONS(9197), 1, + anon_sym_struct, + ACTIONS(9199), 1, + anon_sym_union, + ACTIONS(9201), 1, + anon_sym_typename, + STATE(2729), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3344), 1, + sym_decltype_auto, + STATE(4606), 1, + sym__type_specifier, + STATE(7067), 1, sym__scope_resolution, - STATE(6489), 1, - sym__declarator, - STATE(8136), 1, - sym_init_declarator, - STATE(9289), 1, - sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3223), 2, sym_decltype, sym_template_type, + ACTIONS(3338), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3342), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [218326] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(9307), 1, + sym_identifier, + ACTIONS(9309), 1, + anon_sym_COLON_COLON, + ACTIONS(9313), 1, + sym_primitive_type, + ACTIONS(9315), 1, + anon_sym_enum, + ACTIONS(9317), 1, + anon_sym_class, + ACTIONS(9319), 1, + anon_sym_struct, + ACTIONS(9321), 1, + anon_sym_union, + ACTIONS(9323), 1, + sym_auto, + ACTIONS(9325), 1, + anon_sym_decltype, + ACTIONS(9327), 1, + anon_sym_typename, + STATE(2504), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2891), 1, + sym__type_specifier, + STATE(3042), 1, + sym_decltype_auto, + STATE(3063), 1, + sym_qualified_type_identifier, + STATE(7059), 1, + sym__scope_resolution, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [218670] = 13, + STATE(3030), 2, + sym_decltype, + sym_template_type, + ACTIONS(9311), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3044), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [218400] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8482), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8484), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8486), 1, - anon_sym_STAR, - ACTIONS(8490), 1, + ACTIONS(8587), 1, sym_primitive_type, - STATE(2982), 1, - sym__type_declarator, - STATE(3327), 1, + ACTIONS(8669), 1, + anon_sym_STAR, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(8484), 1, + STATE(7165), 1, + sym__type_declarator, + STATE(9053), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8488), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3325), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -546365,34 +549171,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [218728] = 13, + [218458] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8617), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8619), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8621), 1, anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(6860), 1, + ACTIONS(8625), 1, + sym_primitive_type, + STATE(3350), 1, sym__type_declarator, - STATE(8865), 1, + STATE(3752), 1, + sym_pointer_type_declarator, + STATE(8683), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8474), 4, + ACTIONS(8623), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(3750), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -546410,34 +549216,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [218786] = 13, + [218516] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8568), 1, + ACTIONS(8607), 1, sym_identifier, - ACTIONS(8570), 1, + ACTIONS(8609), 1, anon_sym_LPAREN2, - ACTIONS(8572), 1, + ACTIONS(8611), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8615), 1, sym_primitive_type, - STATE(3164), 1, - sym__type_declarator, - STATE(3648), 1, + STATE(6746), 1, sym_pointer_type_declarator, - STATE(9001), 1, + STATE(6824), 1, + sym__type_declarator, + STATE(8572), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8574), 4, + ACTIONS(8613), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3646), 4, + STATE(6756), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -546455,105 +549261,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [218844] = 21, + [218574] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3032), 1, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(7839), 1, sym_primitive_type, - ACTIONS(3034), 1, - anon_sym_enum, - ACTIONS(3036), 1, - anon_sym_class, - ACTIONS(3038), 1, - anon_sym_struct, - ACTIONS(3040), 1, - anon_sym_union, - ACTIONS(3042), 1, - anon_sym_typename, - ACTIONS(5062), 1, - sym_identifier, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - STATE(3421), 1, - sym__type_specifier, - STATE(3681), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, - sym_decltype_auto, - STATE(4475), 1, - sym_qualified_type_identifier, - STATE(7030), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(3357), 2, - sym_decltype, - sym_template_type, - ACTIONS(53), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3557), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [218918] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(9042), 1, + ACTIONS(9131), 1, sym_identifier, - ACTIONS(9044), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9048), 1, - sym_primitive_type, - ACTIONS(9050), 1, + ACTIONS(9135), 1, anon_sym_enum, - ACTIONS(9052), 1, + ACTIONS(9137), 1, anon_sym_class, - ACTIONS(9054), 1, + ACTIONS(9139), 1, anon_sym_struct, - ACTIONS(9056), 1, + ACTIONS(9141), 1, anon_sym_union, - ACTIONS(9058), 1, - sym_auto, - ACTIONS(9060), 1, - anon_sym_decltype, - ACTIONS(9062), 1, + ACTIONS(9143), 1, anon_sym_typename, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(3857), 1, + STATE(2273), 1, + sym_decltype_auto, + STATE(2282), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4196), 1, + STATE(2301), 1, + sym_qualified_type_identifier, + STATE(4518), 1, sym__type_specifier, - STATE(4538), 1, - sym_decltype_auto, - STATE(7041), 1, + STATE(7066), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(4452), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - ACTIONS(9046), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4539), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -546561,52 +549314,103 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [218992] = 21, + [218648] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7769), 1, + anon_sym_DASH_GT, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9071), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9117), 1, + anon_sym_requires, + STATE(6485), 1, + sym__function_attributes_end, + STATE(6631), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9037), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5945), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9008), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [218718] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9100), 1, + ACTIONS(9228), 1, sym_identifier, - ACTIONS(9102), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(9106), 1, + ACTIONS(9234), 1, sym_primitive_type, - ACTIONS(9108), 1, + ACTIONS(9236), 1, anon_sym_enum, - ACTIONS(9110), 1, + ACTIONS(9238), 1, anon_sym_class, - ACTIONS(9112), 1, + ACTIONS(9240), 1, anon_sym_struct, - ACTIONS(9114), 1, + ACTIONS(9242), 1, anon_sym_union, - ACTIONS(9116), 1, + ACTIONS(9244), 1, sym_auto, - ACTIONS(9118), 1, + ACTIONS(9246), 1, anon_sym_decltype, - ACTIONS(9120), 1, + ACTIONS(9248), 1, anon_sym_typename, - STATE(2024), 1, - sym__type_specifier, - STATE(2356), 1, + STATE(2861), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2404), 1, - sym_decltype_auto, - STATE(2409), 1, + STATE(2998), 1, + sym__type_specifier, + STATE(3473), 1, sym_qualified_type_identifier, - STATE(7028), 1, + STATE(3546), 1, + sym_decltype_auto, + STATE(7040), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2316), 2, + STATE(3280), 2, sym_decltype, sym_template_type, - ACTIONS(9104), 4, + ACTIONS(9232), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2387), 7, + STATE(3564), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -546614,34 +549418,41 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [219066] = 9, + [218792] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(9288), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, anon_sym_LPAREN2, - STATE(2878), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3959), 1, - sym_argument_list, - STATE(5299), 1, - sym_initializer_list, - ACTIONS(5535), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6476), 4, + ACTIONS(8615), 1, + sym_primitive_type, + ACTIONS(8663), 1, + anon_sym_STAR, + STATE(6563), 1, + sym__type_declarator, + STATE(6746), 1, + sym_pointer_type_declarator, + STATE(8930), 1, + sym_ms_based_modifier, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8613), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5537), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_AMP_AMP, + STATE(6756), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -546652,45 +549463,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [219116] = 14, + [218850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(5795), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5797), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5039), 1, anon_sym_STAR, - ACTIONS(5041), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - STATE(4159), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7124), 1, - sym__abstract_declarator, - STATE(5551), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6079), 3, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8121), 11, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -546701,52 +549491,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [219176] = 21, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [218888] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(9228), 1, + sym_identifier, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9234), 1, + sym_primitive_type, + ACTIONS(9236), 1, + anon_sym_enum, + ACTIONS(9238), 1, + anon_sym_class, + ACTIONS(9240), 1, + anon_sym_struct, + ACTIONS(9242), 1, + anon_sym_union, + ACTIONS(9244), 1, sym_auto, - ACTIONS(119), 1, + ACTIONS(9246), 1, anon_sym_decltype, + ACTIONS(9248), 1, + anon_sym_typename, + STATE(2861), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3316), 1, + sym__type_specifier, + STATE(3473), 1, + sym_qualified_type_identifier, + STATE(3546), 1, + sym_decltype_auto, + STATE(7040), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3280), 2, + sym_decltype, + sym_template_type, + ACTIONS(9232), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3564), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [218962] = 21, + ACTIONS(3), 1, + sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3940), 1, + ACTIONS(3372), 1, + sym_auto, + ACTIONS(3374), 1, + anon_sym_decltype, + ACTIONS(7951), 1, sym_primitive_type, - ACTIONS(7762), 1, + ACTIONS(9189), 1, sym_identifier, - ACTIONS(7764), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(7766), 1, + ACTIONS(9193), 1, anon_sym_enum, - ACTIONS(7768), 1, + ACTIONS(9195), 1, anon_sym_class, - ACTIONS(7770), 1, + ACTIONS(9197), 1, anon_sym_struct, - ACTIONS(7772), 1, + ACTIONS(9199), 1, anon_sym_union, - ACTIONS(7774), 1, + ACTIONS(9201), 1, anon_sym_typename, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(3663), 1, + STATE(2729), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, + STATE(3254), 1, + sym__type_specifier, + STATE(3322), 1, + sym_qualified_type_identifier, + STATE(3344), 1, sym_decltype_auto, - STATE(7018), 1, + STATE(7067), 1, sym__scope_resolution, - STATE(7237), 1, - sym__type_specifier, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(3223), 2, sym_decltype, sym_template_type, - ACTIONS(3938), 4, + ACTIONS(3338), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3557), 7, + STATE(3342), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -546754,13 +549604,13 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [219250] = 3, + [219036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 2, + ACTIONS(5762), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5717), 28, + ACTIONS(5764), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -546789,52 +549639,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [219288] = 21, + [219074] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, + ACTIONS(9252), 1, + anon_sym_COLON_COLON, + ACTIONS(9260), 1, + anon_sym_class, + ACTIONS(9262), 1, + anon_sym_struct, + ACTIONS(9264), 1, + anon_sym_union, + ACTIONS(9266), 1, sym_auto, - ACTIONS(2090), 1, + ACTIONS(9268), 1, anon_sym_decltype, - ACTIONS(7740), 1, + ACTIONS(9272), 1, sym_identifier, - ACTIONS(7742), 1, - anon_sym_COLON_COLON, - ACTIONS(7746), 1, + ACTIONS(9276), 1, sym_primitive_type, - ACTIONS(7748), 1, + ACTIONS(9278), 1, anon_sym_enum, - ACTIONS(7750), 1, - anon_sym_class, - ACTIONS(7752), 1, - anon_sym_struct, - ACTIONS(7754), 1, - anon_sym_union, - ACTIONS(7756), 1, + ACTIONS(9280), 1, anon_sym_typename, - STATE(2099), 1, + STATE(2068), 1, sym__type_specifier, - STATE(2216), 1, - sym_decltype_auto, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(5879), 1, + STATE(2387), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7025), 1, + STATE(2417), 1, + sym_qualified_type_identifier, + STATE(2432), 1, + sym_decltype_auto, + STATE(7033), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2336), 2, sym_decltype, sym_template_type, - ACTIONS(7744), 4, + ACTIONS(9274), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2434), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -546842,52 +549692,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [219362] = 21, + [219148] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(7822), 1, + ACTIONS(9145), 1, sym_identifier, - ACTIONS(7824), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(7828), 1, + ACTIONS(9151), 1, sym_primitive_type, - ACTIONS(7830), 1, + ACTIONS(9153), 1, anon_sym_enum, - ACTIONS(7832), 1, + ACTIONS(9155), 1, anon_sym_class, - ACTIONS(7834), 1, + ACTIONS(9157), 1, anon_sym_struct, - ACTIONS(7836), 1, + ACTIONS(9159), 1, anon_sym_union, - ACTIONS(7838), 1, + ACTIONS(9161), 1, sym_auto, - ACTIONS(7840), 1, + ACTIONS(9163), 1, anon_sym_decltype, - ACTIONS(7842), 1, + ACTIONS(9165), 1, anon_sym_typename, - STATE(5075), 1, + STATE(2925), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5590), 1, + STATE(3650), 1, sym__type_specifier, - STATE(5685), 1, - sym_qualified_type_identifier, - STATE(5778), 1, + STATE(3943), 1, sym_decltype_auto, - STATE(7022), 1, + STATE(3957), 1, + sym_qualified_type_identifier, + STATE(7041), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(5622), 2, + STATE(3618), 2, sym_decltype, sym_template_type, - ACTIONS(7826), 4, + ACTIONS(9149), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5773), 7, + STATE(3949), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -546895,25 +549745,41 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [219436] = 4, + [219222] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5535), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5537), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, anon_sym_LPAREN2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8669), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(7148), 1, + sym__type_declarator, + STATE(9053), 1, + sym_ms_based_modifier, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -546924,59 +549790,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [219476] = 21, + [219280] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9102), 1, + ACTIONS(9167), 1, + sym_identifier, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9110), 1, + ACTIONS(9173), 1, + sym_primitive_type, + ACTIONS(9175), 1, + anon_sym_enum, + ACTIONS(9177), 1, anon_sym_class, - ACTIONS(9112), 1, + ACTIONS(9179), 1, anon_sym_struct, - ACTIONS(9114), 1, + ACTIONS(9181), 1, anon_sym_union, - ACTIONS(9116), 1, + ACTIONS(9183), 1, sym_auto, - ACTIONS(9118), 1, + ACTIONS(9185), 1, anon_sym_decltype, - ACTIONS(9191), 1, - sym_identifier, - ACTIONS(9195), 1, - sym_primitive_type, - ACTIONS(9197), 1, - anon_sym_enum, - ACTIONS(9199), 1, + ACTIONS(9187), 1, anon_sym_typename, - STATE(2024), 1, - sym__type_specifier, - STATE(2360), 1, + STATE(4143), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2404), 1, + STATE(4352), 1, + sym__type_specifier, + STATE(4670), 1, sym_decltype_auto, - STATE(2409), 1, + STATE(4674), 1, sym_qualified_type_identifier, - STATE(7028), 1, + STATE(7057), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2316), 2, + STATE(4590), 2, sym_decltype, sym_template_type, - ACTIONS(9193), 4, + ACTIONS(9171), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2387), 7, + STATE(4634), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -546984,58 +549843,66 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [219550] = 13, + [219354] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(9252), 1, + anon_sym_COLON_COLON, + ACTIONS(9260), 1, + anon_sym_class, + ACTIONS(9262), 1, + anon_sym_struct, + ACTIONS(9264), 1, + anon_sym_union, + ACTIONS(9266), 1, + sym_auto, + ACTIONS(9268), 1, + anon_sym_decltype, + ACTIONS(9272), 1, sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8472), 1, - anon_sym_STAR, - ACTIONS(8476), 1, + ACTIONS(9276), 1, sym_primitive_type, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(7160), 1, - sym__type_declarator, - STATE(9022), 1, - sym_ms_based_modifier, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8474), 4, + ACTIONS(9278), 1, + anon_sym_enum, + ACTIONS(9280), 1, + anon_sym_typename, + STATE(2313), 1, + sym__type_specifier, + STATE(2387), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2417), 1, + sym_qualified_type_identifier, + STATE(2432), 1, + sym_decltype_auto, + STATE(7033), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2336), 2, + sym_decltype, + sym_template_type, + ACTIONS(9274), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [219608] = 3, + STATE(2434), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [219428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5578), 2, + ACTIONS(5601), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5580), 28, + ACTIONS(5603), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -547064,52 +549931,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [219646] = 21, + [219466] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(6845), 1, + sym__type_declarator, + STATE(8896), 1, + sym_ms_based_modifier, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [219524] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9201), 1, - sym_identifier, ACTIONS(9203), 1, + sym_identifier, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9207), 1, - sym_primitive_type, ACTIONS(9209), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(9211), 1, - anon_sym_class, + anon_sym_enum, ACTIONS(9213), 1, - anon_sym_struct, + anon_sym_class, ACTIONS(9215), 1, - anon_sym_union, + anon_sym_struct, ACTIONS(9217), 1, - sym_auto, + anon_sym_union, ACTIONS(9219), 1, - anon_sym_decltype, + sym_auto, ACTIONS(9221), 1, + anon_sym_decltype, + ACTIONS(9223), 1, anon_sym_typename, - STATE(2504), 1, + STATE(2736), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2881), 1, + STATE(2952), 1, sym__type_specifier, - STATE(3062), 1, - sym_qualified_type_identifier, - STATE(3096), 1, + STATE(3300), 1, sym_decltype_auto, - STATE(7024), 1, + STATE(3313), 1, + sym_qualified_type_identifier, + STATE(7053), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2987), 2, + STATE(3202), 2, sym_decltype, sym_template_type, - ACTIONS(9205), 4, + ACTIONS(9207), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3094), 7, + STATE(3301), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -547117,103 +550029,106 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [219720] = 19, + [219598] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7425), 1, + anon_sym_AMP_AMP, + ACTIONS(7427), 1, + anon_sym_AMP, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7652), 1, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7915), 1, anon_sym_DASH_GT, - ACTIONS(7654), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9250), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - STATE(6448), 1, + ACTIONS(9388), 1, + anon_sym_requires, + STATE(5864), 1, + sym_ref_qualifier, + STATE(6742), 1, sym__function_attributes_end, - STATE(6702), 1, + STATE(6908), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + ACTIONS(9008), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9037), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5915), 3, + STATE(5979), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9004), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [219790] = 21, + [219674] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3340), 1, + ACTIONS(9228), 1, + sym_identifier, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9234), 1, + sym_primitive_type, + ACTIONS(9236), 1, anon_sym_enum, - ACTIONS(3342), 1, + ACTIONS(9238), 1, anon_sym_class, - ACTIONS(3344), 1, + ACTIONS(9240), 1, anon_sym_struct, - ACTIONS(3346), 1, + ACTIONS(9242), 1, anon_sym_union, - ACTIONS(3370), 1, + ACTIONS(9244), 1, sym_auto, - ACTIONS(3372), 1, + ACTIONS(9246), 1, anon_sym_decltype, - ACTIONS(3374), 1, + ACTIONS(9248), 1, anon_sym_typename, - ACTIONS(7802), 1, - sym_identifier, - ACTIONS(7804), 1, - anon_sym_COLON_COLON, - ACTIONS(7806), 1, - sym_primitive_type, - STATE(2706), 1, + STATE(2861), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3171), 1, + STATE(2994), 1, sym__type_specifier, - STATE(3319), 1, - sym_decltype_auto, - STATE(3328), 1, + STATE(3473), 1, sym_qualified_type_identifier, - STATE(7029), 1, + STATE(3546), 1, + sym_decltype_auto, + STATE(7040), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3157), 2, + STATE(3280), 2, sym_decltype, sym_template_type, - ACTIONS(3336), 4, + ACTIONS(9232), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3318), 7, + STATE(3564), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -547221,85 +550136,34 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [219864] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7660), 1, - anon_sym_DASH_GT, - ACTIONS(7662), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - STATE(6568), 1, - sym__function_attributes_end, - STATE(6635), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5897), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [219934] = 13, + [219748] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8472), 1, - anon_sym_STAR, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - STATE(2396), 1, + ACTIONS(8669), 1, + anon_sym_STAR, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(7143), 1, + STATE(7159), 1, sym__type_declarator, - STATE(9022), 1, + STATE(9053), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -547317,34 +550181,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [219992] = 13, + [219806] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(7865), 1, + sym_identifier, + ACTIONS(7867), 1, + anon_sym_COLON_COLON, + ACTIONS(7871), 1, + sym_primitive_type, + ACTIONS(7873), 1, + anon_sym_enum, + ACTIONS(7875), 1, + anon_sym_class, + ACTIONS(7877), 1, + anon_sym_struct, + ACTIONS(7879), 1, + anon_sym_union, + ACTIONS(7881), 1, + sym_auto, + ACTIONS(7883), 1, + anon_sym_decltype, + ACTIONS(7885), 1, + anon_sym_typename, + STATE(3485), 1, + sym_qualified_type_identifier, + STATE(4924), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5413), 1, + sym__type_specifier, + STATE(5507), 1, + sym_decltype_auto, + STATE(7046), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(3389), 2, + sym_decltype, + sym_template_type, + ACTIONS(7869), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5463), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [219880] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8506), 1, + ACTIONS(8591), 1, sym_identifier, - ACTIONS(8508), 1, + ACTIONS(8593), 1, anon_sym_LPAREN2, - ACTIONS(8514), 1, - sym_primitive_type, - ACTIONS(8556), 1, + ACTIONS(8595), 1, anon_sym_STAR, - STATE(6520), 1, + ACTIONS(8599), 1, + sym_primitive_type, + STATE(3184), 1, sym__type_declarator, - STATE(6753), 1, + STATE(3641), 1, sym_pointer_type_declarator, - STATE(8872), 1, + STATE(8794), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8512), 4, + ACTIONS(8597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6751), 4, + STATE(3684), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -547362,85 +550279,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [220050] = 19, + [219938] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7660), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9017), 1, + ACTIONS(9128), 1, anon_sym_requires, - STATE(6527), 1, + STATE(6590), 1, sym__function_attributes_end, - STATE(6589), 1, + STATE(6726), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8914), 2, + ACTIONS(9021), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - STATE(5900), 3, + STATE(5923), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(8908), 5, + ACTIONS(9008), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [220120] = 13, + [220008] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8607), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8609), 1, anon_sym_LPAREN2, - ACTIONS(8472), 1, + ACTIONS(8611), 1, anon_sym_STAR, - ACTIONS(8476), 1, + ACTIONS(8615), 1, sym_primitive_type, - STATE(2396), 1, + STATE(6746), 1, sym_pointer_type_declarator, - STATE(7153), 1, + STATE(6821), 1, sym__type_declarator, - STATE(9022), 1, + STATE(8572), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8474), 4, + ACTIONS(8613), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(6756), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -547458,41 +550375,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [220178] = 13, + [220066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8506), 1, - sym_identifier, - ACTIONS(8508), 1, + ACTIONS(5754), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5756), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8514), 1, - sym_primitive_type, - ACTIONS(8556), 1, anon_sym_STAR, - STATE(6536), 1, - sym__type_declarator, - STATE(6753), 1, - sym_pointer_type_declarator, - STATE(8872), 1, - sym_ms_based_modifier, - STATE(5440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8512), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6751), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(61), 12, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [220104] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5418), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5420), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [220144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5665), 2, + anon_sym_AMP, anon_sym_const, + ACTIONS(5667), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -547503,52 +550474,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [220236] = 21, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [220182] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9042), 1, - sym_identifier, - ACTIONS(9044), 1, - anon_sym_COLON_COLON, - ACTIONS(9048), 1, - sym_primitive_type, - ACTIONS(9050), 1, + ACTIONS(2012), 1, anon_sym_enum, - ACTIONS(9052), 1, + ACTIONS(2014), 1, anon_sym_class, - ACTIONS(9054), 1, + ACTIONS(2016), 1, anon_sym_struct, - ACTIONS(9056), 1, + ACTIONS(2018), 1, anon_sym_union, - ACTIONS(9058), 1, - sym_auto, - ACTIONS(9060), 1, - anon_sym_decltype, - ACTIONS(9062), 1, + ACTIONS(2042), 1, anon_sym_typename, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(3857), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4160), 1, + ACTIONS(3056), 1, + sym_primitive_type, + ACTIONS(5067), 1, + sym_identifier, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + STATE(3392), 1, sym__type_specifier, - STATE(4538), 1, + STATE(3614), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3620), 1, sym_decltype_auto, - STATE(7041), 1, + STATE(4467), 1, + sym_qualified_type_identifier, + STATE(7073), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(4452), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - ACTIONS(9046), 4, + ACTIONS(53), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4539), 7, + STATE(3623), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -547556,52 +550534,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [220310] = 21, + [220256] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3940), 1, - sym_primitive_type, - ACTIONS(7762), 1, + ACTIONS(9250), 1, sym_identifier, - ACTIONS(7764), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(7766), 1, + ACTIONS(9256), 1, + sym_primitive_type, + ACTIONS(9258), 1, anon_sym_enum, - ACTIONS(7768), 1, + ACTIONS(9260), 1, anon_sym_class, - ACTIONS(7770), 1, + ACTIONS(9262), 1, anon_sym_struct, - ACTIONS(7772), 1, + ACTIONS(9264), 1, anon_sym_union, - ACTIONS(7774), 1, + ACTIONS(9266), 1, + sym_auto, + ACTIONS(9268), 1, + anon_sym_decltype, + ACTIONS(9270), 1, anon_sym_typename, - STATE(3383), 1, - sym_qualified_type_identifier, - STATE(3421), 1, - sym__type_specifier, - STATE(3663), 1, + STATE(2311), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, + STATE(2313), 1, + sym__type_specifier, + STATE(2417), 1, + sym_qualified_type_identifier, + STATE(2432), 1, sym_decltype_auto, - STATE(7018), 1, + STATE(7033), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(2336), 2, sym_decltype, sym_template_type, - ACTIONS(3938), 4, + ACTIONS(9254), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3557), 7, + STATE(2434), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -547609,52 +550587,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [220384] = 21, + [220330] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - sym_auto, - ACTIONS(119), 1, - anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(9329), 1, sym_identifier, - ACTIONS(3936), 1, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(3940), 1, + ACTIONS(9335), 1, sym_primitive_type, - ACTIONS(3942), 1, + ACTIONS(9337), 1, anon_sym_enum, - ACTIONS(3944), 1, + ACTIONS(9339), 1, anon_sym_class, - ACTIONS(3946), 1, + ACTIONS(9341), 1, anon_sym_struct, - ACTIONS(3948), 1, + ACTIONS(9343), 1, anon_sym_union, - ACTIONS(3950), 1, + ACTIONS(9345), 1, + sym_auto, + ACTIONS(9347), 1, + anon_sym_decltype, + ACTIONS(9349), 1, anon_sym_typename, - STATE(3383), 1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(3421), 1, - sym__type_specifier, - STATE(3663), 1, + STATE(3758), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3690), 1, + STATE(4251), 1, + sym__type_specifier, + STATE(4557), 1, sym_decltype_auto, - STATE(7036), 1, + STATE(7055), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3357), 2, + STATE(4470), 2, sym_decltype, sym_template_type, - ACTIONS(3938), 4, + ACTIONS(9333), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3557), 7, + STATE(4541), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -547662,52 +550640,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [220458] = 21, + [220404] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9134), 1, + ACTIONS(9307), 1, sym_identifier, - ACTIONS(9136), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(9140), 1, + ACTIONS(9313), 1, sym_primitive_type, - ACTIONS(9142), 1, + ACTIONS(9315), 1, anon_sym_enum, - ACTIONS(9144), 1, + ACTIONS(9317), 1, anon_sym_class, - ACTIONS(9146), 1, + ACTIONS(9319), 1, anon_sym_struct, - ACTIONS(9148), 1, + ACTIONS(9321), 1, anon_sym_union, - ACTIONS(9150), 1, + ACTIONS(9323), 1, sym_auto, - ACTIONS(9152), 1, + ACTIONS(9325), 1, anon_sym_decltype, - ACTIONS(9154), 1, + ACTIONS(9327), 1, anon_sym_typename, - STATE(2911), 1, + STATE(2504), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, + STATE(2907), 1, sym__type_specifier, - STATE(3888), 1, + STATE(3042), 1, sym_decltype_auto, - STATE(3921), 1, + STATE(3063), 1, sym_qualified_type_identifier, - STATE(7023), 1, + STATE(7059), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3556), 2, + STATE(3030), 2, sym_decltype, sym_template_type, - ACTIONS(9138), 4, + ACTIONS(9311), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3891), 7, + STATE(3044), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -547715,105 +550693,335 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [220532] = 21, + [220478] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8545), 1, + sym_identifier, + ACTIONS(8547), 1, + anon_sym_LPAREN2, + ACTIONS(8549), 1, + anon_sym_STAR, + ACTIONS(8557), 1, + sym_primitive_type, + STATE(3003), 1, + sym__type_declarator, + STATE(3338), 1, + sym_pointer_type_declarator, + STATE(8958), 1, + sym_ms_based_modifier, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8555), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3336), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [220536] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + STATE(4175), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7182), 1, + sym__abstract_declarator, + STATE(5617), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8565), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [220596] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7769), 1, + anon_sym_DASH_GT, + ACTIONS(7800), 1, + anon_sym_requires, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9071), 1, + anon_sym_LBRACK_LBRACK, + STATE(6523), 1, + sym__function_attributes_end, + STATE(6676), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5933), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9008), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [220666] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7738), 1, - sym_primitive_type, - ACTIONS(9086), 1, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(9088), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(9090), 1, - anon_sym_enum, - ACTIONS(9092), 1, - anon_sym_class, - ACTIONS(9094), 1, - anon_sym_struct, - ACTIONS(9096), 1, - anon_sym_union, - ACTIONS(9098), 1, - anon_sym_typename, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, - sym_decltype_auto, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(4523), 1, - sym__type_specifier, - STATE(7040), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, + anon_sym_STAR, + ACTIONS(7415), 1, + anon_sym_AMP_AMP, + ACTIONS(7417), 1, + anon_sym_AMP, + STATE(6348), 1, sym__scope_resolution, - STATE(9084), 1, - sym_dependent_type_identifier, - STATE(2137), 2, + STATE(6472), 1, + sym__declarator, + STATE(8044), 1, + sym_init_declarator, + STATE(8879), 1, + sym_ms_based_modifier, + STATE(9043), 3, sym_decltype, sym_template_type, - ACTIONS(2074), 4, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [220736] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_LPAREN2, + ACTIONS(8615), 1, + sym_primitive_type, + ACTIONS(8663), 1, + anon_sym_STAR, + STATE(6570), 1, + sym__type_declarator, + STATE(6746), 1, + sym_pointer_type_declarator, + STATE(8930), 1, + sym_ms_based_modifier, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8613), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [220606] = 21, + STATE(6756), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [220794] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_LPAREN2, + ACTIONS(8611), 1, + anon_sym_STAR, + ACTIONS(8615), 1, + sym_primitive_type, + STATE(6741), 1, + sym__type_declarator, + STATE(6746), 1, + sym_pointer_type_declarator, + STATE(8572), 1, + sym_ms_based_modifier, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8613), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6756), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [220852] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9134), 1, + ACTIONS(9145), 1, sym_identifier, - ACTIONS(9136), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9140), 1, + ACTIONS(9151), 1, sym_primitive_type, - ACTIONS(9142), 1, + ACTIONS(9153), 1, anon_sym_enum, - ACTIONS(9144), 1, + ACTIONS(9155), 1, anon_sym_class, - ACTIONS(9146), 1, + ACTIONS(9157), 1, anon_sym_struct, - ACTIONS(9148), 1, + ACTIONS(9159), 1, anon_sym_union, - ACTIONS(9150), 1, + ACTIONS(9161), 1, sym_auto, - ACTIONS(9152), 1, + ACTIONS(9163), 1, anon_sym_decltype, - ACTIONS(9154), 1, + ACTIONS(9165), 1, anon_sym_typename, - STATE(2911), 1, + STATE(2925), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3551), 1, + STATE(3205), 1, sym__type_specifier, - STATE(3888), 1, + STATE(3943), 1, sym_decltype_auto, - STATE(3921), 1, + STATE(3957), 1, sym_qualified_type_identifier, - STATE(7023), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(3556), 2, + STATE(3618), 2, sym_decltype, sym_template_type, - ACTIONS(9138), 4, + ACTIONS(9149), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3891), 7, + STATE(3949), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -547821,52 +551029,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [220680] = 21, + [220926] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2080), 1, + ACTIONS(2116), 1, + sym_auto, + ACTIONS(2118), 1, + anon_sym_decltype, + ACTIONS(7839), 1, + sym_primitive_type, + ACTIONS(9131), 1, + sym_identifier, + ACTIONS(9133), 1, + anon_sym_COLON_COLON, + ACTIONS(9135), 1, anon_sym_enum, - ACTIONS(2082), 1, + ACTIONS(9137), 1, anon_sym_class, - ACTIONS(2084), 1, + ACTIONS(9139), 1, anon_sym_struct, - ACTIONS(2086), 1, + ACTIONS(9141), 1, anon_sym_union, - ACTIONS(2088), 1, - sym_auto, - ACTIONS(2090), 1, - anon_sym_decltype, - ACTIONS(2092), 1, + ACTIONS(9143), 1, anon_sym_typename, - ACTIONS(7732), 1, - sym_identifier, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(7738), 1, - sym_primitive_type, - STATE(2099), 1, - sym__type_specifier, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2216), 1, + STATE(2273), 1, sym_decltype_auto, - STATE(2266), 1, + STATE(2282), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2301), 1, sym_qualified_type_identifier, - STATE(7043), 1, + STATE(4367), 1, + sym__type_specifier, + STATE(7066), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2137), 2, + STATE(2081), 2, sym_decltype, sym_template_type, - ACTIONS(2074), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2215), 7, + STATE(2271), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -547874,98 +551082,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [220754] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_const, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(9008), 1, - anon_sym_STAR, - ACTIONS(9010), 1, - anon_sym_AMP_AMP, - ACTIONS(9012), 1, - anon_sym_AMP, - STATE(4309), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7135), 1, - sym__abstract_declarator, - STATE(5555), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6079), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8121), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [220814] = 21, + [221000] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9042), 1, + ACTIONS(9307), 1, sym_identifier, - ACTIONS(9044), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(9048), 1, + ACTIONS(9313), 1, sym_primitive_type, - ACTIONS(9050), 1, + ACTIONS(9315), 1, anon_sym_enum, - ACTIONS(9052), 1, + ACTIONS(9317), 1, anon_sym_class, - ACTIONS(9054), 1, + ACTIONS(9319), 1, anon_sym_struct, - ACTIONS(9056), 1, + ACTIONS(9321), 1, anon_sym_union, - ACTIONS(9058), 1, + ACTIONS(9323), 1, sym_auto, - ACTIONS(9060), 1, + ACTIONS(9325), 1, anon_sym_decltype, - ACTIONS(9062), 1, + ACTIONS(9327), 1, anon_sym_typename, - STATE(2266), 1, - sym_qualified_type_identifier, - STATE(3857), 1, + STATE(2504), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4399), 1, + STATE(2968), 1, sym__type_specifier, - STATE(4538), 1, + STATE(3042), 1, sym_decltype_auto, - STATE(7041), 1, + STATE(3063), 1, + sym_qualified_type_identifier, + STATE(7059), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(4452), 2, + STATE(3030), 2, sym_decltype, sym_template_type, - ACTIONS(9046), 4, + ACTIONS(9311), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4539), 7, + STATE(3044), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -547973,52 +551135,103 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [220888] = 21, + [221074] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7769), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9368), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9391), 1, + anon_sym_requires, + STATE(6468), 1, + sym__function_attributes_end, + STATE(6632), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9301), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5940), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9107), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [221144] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(117), 1, + sym_auto, + ACTIONS(119), 1, + anon_sym_decltype, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(9201), 1, + ACTIONS(3938), 1, + sym_primitive_type, + ACTIONS(7887), 1, sym_identifier, - ACTIONS(9203), 1, + ACTIONS(7889), 1, anon_sym_COLON_COLON, - ACTIONS(9207), 1, - sym_primitive_type, - ACTIONS(9209), 1, + ACTIONS(7891), 1, anon_sym_enum, - ACTIONS(9211), 1, + ACTIONS(7893), 1, anon_sym_class, - ACTIONS(9213), 1, + ACTIONS(7895), 1, anon_sym_struct, - ACTIONS(9215), 1, + ACTIONS(7897), 1, anon_sym_union, - ACTIONS(9217), 1, - sym_auto, - ACTIONS(9219), 1, - anon_sym_decltype, - ACTIONS(9221), 1, + ACTIONS(7899), 1, anon_sym_typename, - STATE(2504), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3007), 1, - sym__type_specifier, - STATE(3062), 1, + STATE(3485), 1, sym_qualified_type_identifier, - STATE(3096), 1, + STATE(3620), 1, sym_decltype_auto, - STATE(7024), 1, + STATE(3701), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7042), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(7253), 1, + sym__type_specifier, + STATE(9043), 1, sym_dependent_type_identifier, - STATE(2987), 2, + STATE(3389), 2, sym_decltype, sym_template_type, - ACTIONS(9205), 4, + ACTIONS(3936), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3094), 7, + STATE(3623), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -548026,41 +551239,87 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [220962] = 14, + [221218] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_const, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + STATE(4175), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7160), 1, + sym__abstract_declarator, + STATE(5617), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6913), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8205), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [221278] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, + ACTIONS(3460), 1, anon_sym_const, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(9008), 1, + ACTIONS(9122), 1, anon_sym_STAR, - ACTIONS(9010), 1, + ACTIONS(9124), 1, anon_sym_AMP_AMP, - ACTIONS(9012), 1, + ACTIONS(9126), 1, anon_sym_AMP, - STATE(4309), 1, + STATE(4295), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7117), 1, + STATE(7178), 1, sym__abstract_declarator, - STATE(5559), 2, + STATE(5617), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8500), 3, + ACTIONS(8565), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - STATE(6616), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8121), 11, + ACTIONS(8205), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -548072,34 +551331,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [221022] = 13, + [221338] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8506), 1, + ACTIONS(8591), 1, sym_identifier, - ACTIONS(8508), 1, + ACTIONS(8593), 1, anon_sym_LPAREN2, - ACTIONS(8510), 1, + ACTIONS(8595), 1, anon_sym_STAR, - ACTIONS(8514), 1, + ACTIONS(8599), 1, sym_primitive_type, - STATE(6746), 1, + STATE(3257), 1, sym__type_declarator, - STATE(6753), 1, + STATE(3641), 1, sym_pointer_type_declarator, - STATE(8592), 1, + STATE(8794), 1, + sym_ms_based_modifier, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3684), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [221396] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8617), 1, + sym_identifier, + ACTIONS(8619), 1, + anon_sym_LPAREN2, + ACTIONS(8621), 1, + anon_sym_STAR, + ACTIONS(8625), 1, + sym_primitive_type, + STATE(3320), 1, + sym__type_declarator, + STATE(3752), 1, + sym_pointer_type_declarator, + STATE(8683), 1, sym_ms_based_modifier, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8512), 4, + ACTIONS(8623), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6751), 4, + STATE(3750), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -548117,479 +551421,800 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [221080] = 24, + [221454] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(9260), 1, + anon_sym_class, + ACTIONS(9262), 1, + anon_sym_struct, + ACTIONS(9264), 1, + anon_sym_union, + ACTIONS(9266), 1, + sym_auto, + ACTIONS(9268), 1, + anon_sym_decltype, + ACTIONS(9272), 1, + sym_identifier, + ACTIONS(9276), 1, + sym_primitive_type, + ACTIONS(9278), 1, + anon_sym_enum, + ACTIONS(9280), 1, + anon_sym_typename, + STATE(2061), 1, + sym__type_specifier, + STATE(2387), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2417), 1, + sym_qualified_type_identifier, + STATE(2432), 1, + sym_decltype_auto, + STATE(7033), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_dependent_type_identifier, + STATE(2336), 2, + sym_decltype, + sym_template_type, + ACTIONS(9274), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2434), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [221528] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(7949), 1, + anon_sym_COLON_COLON, + ACTIONS(9394), 1, sym_identifier, - STATE(3104), 1, + STATE(2979), 1, sym_template_type, - STATE(3611), 1, + STATE(3060), 1, + sym_field_declaration_list, + STATE(3314), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3319), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(6055), 1, + sym_ms_declspec_modifier, + STATE(7064), 1, + sym__scope_resolution, + STATE(7501), 1, + sym_virtual_specifier, + STATE(8058), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(2872), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6056), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5851), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [221607] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7601), 1, + anon_sym_LBRACE, + ACTIONS(9169), 1, + anon_sym_COLON_COLON, + ACTIONS(9396), 1, + sym_identifier, + STATE(4306), 1, + sym_template_type, + STATE(4572), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(4637), 1, + sym__class_declaration_item, + STATE(4641), 1, + sym__class_declaration, + STATE(6106), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7057), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7598), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8272), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4250), 2, + STATE(4008), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6103), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5863), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [221686] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, + anon_sym_STAR, + ACTIONS(7479), 1, + anon_sym_AMP_AMP, + ACTIONS(7481), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_COLON_COLON, + STATE(6332), 1, + sym__scope_resolution, + STATE(6946), 1, + sym__declarator, + STATE(8520), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [221753] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7867), 1, + anon_sym_COLON_COLON, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(5427), 1, + sym_field_declaration_list, + STATE(5436), 1, + sym__class_declaration, + STATE(5443), 1, + sym__class_declaration_item, + STATE(6101), 1, + sym_ms_declspec_modifier, + STATE(7046), 1, + sym__scope_resolution, + STATE(7510), 1, + sym_virtual_specifier, + STATE(8051), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(5288), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6109), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5857), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [221159] = 24, + [221832] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5321), 1, + anon_sym_LBRACE, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6065), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9252), 1, + anon_sym_COLON_COLON, + ACTIONS(9400), 1, + sym_identifier, + STATE(2181), 1, + sym_template_type, + STATE(2326), 1, + sym_field_declaration_list, + STATE(2438), 1, + sym__class_declaration_item, + STATE(2441), 1, + sym__class_declaration, + STATE(6145), 1, + sym_ms_declspec_modifier, + STATE(7033), 1, + sym__scope_resolution, + STATE(7469), 1, + sym_virtual_specifier, + STATE(8262), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(2034), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5844), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [221911] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5321), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9088), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9400), 1, sym_identifier, - STATE(2134), 1, + STATE(2181), 1, sym_template_type, - STATE(2222), 1, + STATE(2326), 1, + sym_field_declaration_list, + STATE(2438), 1, sym__class_declaration_item, - STATE(2234), 1, + STATE(2440), 1, sym__class_declaration, - STATE(2880), 1, + STATE(6145), 1, + sym_ms_declspec_modifier, + STATE(7033), 1, + sym__scope_resolution, + STATE(7469), 1, + sym_virtual_specifier, + STATE(8262), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(2034), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6041), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5844), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [221990] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7903), 1, + anon_sym_COLON_COLON, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9402), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(5427), 1, sym_field_declaration_list, - STATE(6032), 1, + STATE(5443), 1, + sym__class_declaration_item, + STATE(5450), 1, + sym__class_declaration, + STATE(6036), 1, sym_ms_declspec_modifier, - STATE(7040), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6034), 2, + STATE(6049), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5806), 3, + STATE(5858), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [221238] = 24, + [222069] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5321), 1, + anon_sym_LBRACE, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9252), 1, + anon_sym_COLON_COLON, + ACTIONS(9400), 1, sym_identifier, - STATE(3104), 1, + STATE(2181), 1, sym_template_type, - STATE(3640), 1, + STATE(2326), 1, + sym_field_declaration_list, + STATE(2437), 1, sym__class_declaration, - STATE(3642), 1, + STATE(2438), 1, sym__class_declaration_item, - STATE(4364), 1, - sym_field_declaration_list, - STATE(6077), 1, + STATE(6145), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7033), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7469), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8262), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4233), 2, + STATE(2034), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6041), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5844), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [221317] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9295), 1, - anon_sym_requires, - STATE(6618), 1, - sym__function_attributes_end, - STATE(6861), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9022), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6587), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5927), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9004), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [221386] = 24, + [222148] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(7949), 1, + anon_sym_COLON_COLON, + ACTIONS(9394), 1, sym_identifier, - STATE(3104), 1, + STATE(2979), 1, sym_template_type, - STATE(3626), 1, - sym__class_declaration, - STATE(3642), 1, - sym__class_declaration_item, - STATE(4364), 1, + STATE(3060), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(3319), 1, + sym__class_declaration_item, + STATE(3323), 1, + sym__class_declaration, + STATE(6055), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7064), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4250), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6056), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5851), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [221465] = 24, + [222227] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5077), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9404), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3611), 1, + STATE(3667), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6138), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7073), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4233), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6136), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5836), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [221544] = 24, + [222306] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3626), 1, - sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(3683), 1, + sym__class_declaration, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(4207), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [221623] = 24, + [222385] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(7403), 1, + anon_sym_STAR, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7407), 1, + anon_sym_AMP, + ACTIONS(7409), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(6359), 1, + sym__scope_resolution, + STATE(7112), 1, + sym__declarator, + STATE(8653), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [222452] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9066), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9402), 1, sym_identifier, - STATE(2903), 1, + STATE(3113), 1, sym_template_type, - STATE(3107), 1, + STATE(5427), 1, sym_field_declaration_list, - STATE(3260), 1, - sym__class_declaration_item, - STATE(3262), 1, + STATE(5436), 1, sym__class_declaration, - STATE(6028), 1, + STATE(5443), 1, + sym__class_declaration_item, + STATE(6036), 1, sym_ms_declspec_modifier, - STATE(7002), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(7488), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8394), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2707), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6029), 2, + STATE(6049), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5803), 3, + STATE(5858), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [221702] = 18, + [222531] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, + ACTIONS(3044), 1, anon_sym_STAR, - ACTIONS(7357), 1, - anon_sym_AMP_AMP, - ACTIONS(7359), 1, + ACTIONS(3046), 1, anon_sym_AMP, - ACTIONS(7361), 1, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6526), 1, anon_sym_COLON_COLON, - STATE(6317), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(6297), 1, sym__scope_resolution, - STATE(6905), 1, + STATE(7142), 1, sym__declarator, - STATE(8492), 1, + STATE(9234), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -548601,78 +552226,196 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [221769] = 24, + [222598] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(6505), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9191), 1, + anon_sym_COLON_COLON, + ACTIONS(9408), 1, + sym_identifier, + STATE(2979), 1, + sym_template_type, + STATE(3060), 1, + sym_field_declaration_list, + STATE(3314), 1, + sym__class_declaration, + STATE(3319), 1, + sym__class_declaration_item, + STATE(6089), 1, + sym_ms_declspec_modifier, + STATE(7067), 1, + sym__scope_resolution, + STATE(7501), 1, + sym_virtual_specifier, + STATE(8058), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(2872), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6086), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5861), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [222677] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3640), 1, + STATE(3667), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4197), 2, + STATE(4207), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5840), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [222756] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7903), 1, + anon_sym_COLON_COLON, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9402), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(5427), 1, + sym_field_declaration_list, + STATE(5443), 1, + sym__class_declaration_item, + STATE(5473), 1, + sym__class_declaration, + STATE(6036), 1, + sym_ms_declspec_modifier, + STATE(7036), 1, + sym__scope_resolution, + STATE(7510), 1, + sym_virtual_specifier, + STATE(8051), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(5288), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6049), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5858), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [221848] = 3, + [222835] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 2, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(9410), 1, + anon_sym_COLON, + STATE(5378), 1, + sym__enum_base_clause, + STATE(5402), 1, + sym_enumerator_list, + STATE(5484), 1, + sym_attribute_specifier, + ACTIONS(6114), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5765), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6116), 20, 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_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -548687,47 +552430,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [221885] = 18, + [222884] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, + ACTIONS(3044), 1, anon_sym_STAR, - ACTIONS(7357), 1, - anon_sym_AMP_AMP, - ACTIONS(7359), 1, + ACTIONS(3046), 1, anon_sym_AMP, - ACTIONS(7361), 1, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6526), 1, anon_sym_COLON_COLON, - STATE(6317), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(6297), 1, sym__scope_resolution, - STATE(6880), 1, + STATE(7095), 1, sym__declarator, - STATE(8492), 1, + STATE(9234), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -548739,137 +552480,139 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [221952] = 24, + [222951] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(9410), 1, + anon_sym_COLON, + STATE(5400), 1, + sym__enum_base_clause, + STATE(5407), 1, + sym_enumerator_list, + STATE(5503), 1, + sym_attribute_specifier, + ACTIONS(6108), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6110), 20, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [223000] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6182), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9066), 1, - anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(9404), 1, sym_identifier, - STATE(2903), 1, + STATE(3113), 1, sym_template_type, - STATE(3107), 1, - sym_field_declaration_list, - STATE(3259), 1, - sym__class_declaration, - STATE(3260), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(6028), 1, + STATE(3683), 1, + sym__class_declaration, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6138), 1, sym_ms_declspec_modifier, - STATE(7002), 1, + STATE(7073), 1, sym__scope_resolution, - STATE(7488), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8394), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2707), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6029), 2, + STATE(6136), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5803), 3, + STATE(5836), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [222031] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(5865), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(9158), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(9303), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5660), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(9300), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(9156), 19, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - [222076] = 18, + [223079] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(3020), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, anon_sym_STAR, - ACTIONS(3022), 1, + ACTIONS(7479), 1, + anon_sym_AMP_AMP, + ACTIONS(7481), 1, anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6518), 1, + ACTIONS(7483), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6228), 1, + STATE(6332), 1, sym__scope_resolution, - STATE(7102), 1, + STATE(6945), 1, sym__declarator, - STATE(9206), 1, + STATE(8520), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -548881,533 +552624,556 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [222143] = 24, + [223146] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3611), 1, + STATE(3666), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4197), 2, + STATE(4186), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [222222] = 24, + [223225] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, + ACTIONS(6579), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(8920), 1, - anon_sym_LBRACE, - ACTIONS(9306), 1, + ACTIONS(9412), 1, sym_identifier, - STATE(3104), 1, + STATE(3036), 1, sym_template_type, - STATE(5387), 1, + STATE(3427), 1, sym_field_declaration_list, - STATE(5420), 1, + STATE(3960), 1, sym__class_declaration, - STATE(5421), 1, + STATE(3962), 1, sym__class_declaration_item, - STATE(6010), 1, + STATE(6143), 1, sym_ms_declspec_modifier, - STATE(7045), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7602), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8305), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(2934), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6009), 2, + STATE(6142), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5804), 3, + STATE(5850), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [222301] = 24, + [223304] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(8920), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(9306), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(5387), 1, - sym_field_declaration_list, - STATE(5421), 1, - sym__class_declaration_item, - STATE(5422), 1, + STATE(3666), 1, sym__class_declaration, - STATE(6010), 1, + STATE(3681), 1, + sym__class_declaration_item, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7045), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(4208), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6009), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5804), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [222380] = 24, + [223383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5418), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5420), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [223420] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + STATE(5910), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5595), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACE, + ACTIONS(5593), 22, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [223465] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(8920), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(9306), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(5387), 1, - sym_field_declaration_list, - STATE(5421), 1, - sym__class_declaration_item, - STATE(5424), 1, + STATE(3667), 1, sym__class_declaration, - STATE(6010), 1, + STATE(3681), 1, + sym__class_declaration_item, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7045), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(4186), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6009), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5804), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [222459] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, - anon_sym_STAR, - ACTIONS(7357), 1, - anon_sym_AMP_AMP, - ACTIONS(7359), 1, - anon_sym_AMP, - ACTIONS(7361), 1, - anon_sym_COLON_COLON, - STATE(6317), 1, - sym__scope_resolution, - STATE(6899), 1, - sym__declarator, - STATE(8492), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [222526] = 24, + [223544] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3611), 1, + STATE(3666), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4248), 2, + STATE(4207), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [222605] = 24, + [223623] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, - sym_identifier, - ACTIONS(9308), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - STATE(3104), 1, + ACTIONS(9394), 1, + sym_identifier, + STATE(2979), 1, sym_template_type, - STATE(3611), 1, + STATE(3060), 1, + sym_field_declaration_list, + STATE(3315), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3319), 1, sym__class_declaration_item, - STATE(4364), 1, - sym_field_declaration_list, - STATE(6018), 1, + STATE(6055), 1, sym_ms_declspec_modifier, - STATE(7005), 1, + STATE(7064), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4541), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6021), 2, + STATE(6056), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5807), 3, + STATE(5851), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [222684] = 24, + [223702] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3640), 1, + STATE(3667), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4248), 2, + STATE(4208), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [222763] = 24, + [223781] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3640), 1, - sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(3683), 1, + sym__class_declaration, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(4208), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [222842] = 18, + [223860] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(7355), 1, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, anon_sym_STAR, - ACTIONS(7357), 1, + ACTIONS(7415), 1, anon_sym_AMP_AMP, - ACTIONS(7359), 1, + ACTIONS(7417), 1, anon_sym_AMP, - ACTIONS(7361), 1, - anon_sym_COLON_COLON, - STATE(6317), 1, + STATE(6348), 1, sym__scope_resolution, - STATE(6894), 1, + STATE(6718), 1, sym__declarator, - STATE(8492), 1, + STATE(8879), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -549419,243 +553185,203 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [222909] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5751), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5753), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [222946] = 24, + [223927] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6552), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9136), 1, - anon_sym_COLON_COLON, - ACTIONS(9310), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3013), 1, + STATE(3113), 1, sym_template_type, - STATE(3546), 1, - sym_field_declaration_list, - STATE(3932), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(3933), 1, + STATE(3683), 1, sym__class_declaration, - STATE(6053), 1, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7023), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7429), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8193), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2912), 2, + STATE(4186), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6049), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5824), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [223025] = 24, + [224006] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(3626), 1, - sym__class_declaration, - STATE(3642), 1, - sym__class_declaration_item, - STATE(4364), 1, - sym_field_declaration_list, - STATE(6077), 1, - sym_ms_declspec_modifier, - STATE(7030), 1, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7462), 1, + anon_sym_STAR, + ACTIONS(7464), 1, + anon_sym_AMP_AMP, + ACTIONS(7466), 1, + anon_sym_AMP, + STATE(6348), 1, sym__scope_resolution, - STATE(7480), 1, - sym_virtual_specifier, - STATE(8325), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(4248), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6086), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(7001), 1, + sym__declarator, + STATE(8593), 1, + sym_ms_based_modifier, + STATE(9043), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(5821), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [223104] = 24, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [224073] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6552), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9136), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(9310), 1, + ACTIONS(9069), 1, + anon_sym_LBRACE, + ACTIONS(9414), 1, sym_identifier, - STATE(3013), 1, + STATE(5358), 1, sym_template_type, - STATE(3546), 1, + STATE(5559), 1, sym_field_declaration_list, - STATE(3932), 1, + STATE(5807), 1, sym__class_declaration_item, - STATE(3935), 1, + STATE(5808), 1, sym__class_declaration, - STATE(6053), 1, + STATE(6139), 1, sym_ms_declspec_modifier, - STATE(7023), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(7429), 1, + STATE(7558), 1, sym_virtual_specifier, - STATE(8193), 1, + STATE(8153), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2912), 2, + STATE(5370), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6049), 2, + STATE(6140), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5824), 3, + STATE(5832), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [223183] = 18, + [224152] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(3020), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, anon_sym_STAR, - ACTIONS(3022), 1, + ACTIONS(7479), 1, + anon_sym_AMP_AMP, + ACTIONS(7481), 1, anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6518), 1, + ACTIONS(7483), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6228), 1, + STATE(6332), 1, sym__scope_resolution, - STATE(6906), 1, + STATE(6936), 1, sym__declarator, - STATE(9206), 1, + STATE(8520), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -549667,62 +553393,68 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [223250] = 18, + [224219] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, - anon_sym_STAR, - ACTIONS(7357), 1, - anon_sym_AMP_AMP, - ACTIONS(7359), 1, - anon_sym_AMP, - ACTIONS(7361), 1, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - STATE(6317), 1, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(3681), 1, + sym__class_declaration_item, + STATE(3683), 1, + sym__class_declaration, + STATE(4379), 1, + sym_field_declaration_list, + STATE(6061), 1, + sym_ms_declspec_modifier, + STATE(7046), 1, sym__scope_resolution, - STATE(6924), 1, - sym__declarator, - STATE(8492), 1, - sym_ms_based_modifier, - STATE(9084), 3, + STATE(7333), 1, + sym_virtual_specifier, + STATE(8188), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(4086), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [223317] = 3, + STATE(5838), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [224298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 2, + ACTIONS(5689), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5725), 27, + ACTIONS(5691), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -549750,13 +553482,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [223354] = 3, + [224335] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, + anon_sym_STAR, + ACTIONS(7479), 1, + anon_sym_AMP_AMP, + ACTIONS(7481), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_COLON_COLON, + STATE(6332), 1, + sym__scope_resolution, + STATE(6941), 1, + sym__declarator, + STATE(8520), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [224402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 2, + ACTIONS(5661), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5773), 27, + ACTIONS(5663), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -549784,259 +553565,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [223391] = 24, + [224439] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(7867), 1, + anon_sym_COLON_COLON, + ACTIONS(9398), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3626), 1, + STATE(3667), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4379), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6061), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4197), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5838), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [223470] = 24, + [224518] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9191), 1, + anon_sym_COLON_COLON, + ACTIONS(9408), 1, sym_identifier, - STATE(3104), 1, + STATE(2979), 1, sym_template_type, - STATE(3640), 1, + STATE(3060), 1, + sym_field_declaration_list, + STATE(3315), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3319), 1, sym__class_declaration_item, - STATE(4364), 1, - sym_field_declaration_list, - STATE(6077), 1, + STATE(6089), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7067), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4250), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, STATE(6086), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5861), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [223549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5684), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5686), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [223586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5582), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5584), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [223623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5586), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5588), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [223660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5535), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5537), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [223697] = 3, + [224597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 2, + ACTIONS(5707), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5663), 27, + ACTIONS(5709), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -550064,13 +553709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [223734] = 3, + [224634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 2, + ACTIONS(5681), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5663), 27, + ACTIONS(5683), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -550098,68 +553743,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [223771] = 24, + [224671] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9408), 1, sym_identifier, - STATE(3104), 1, + STATE(2979), 1, + sym_template_type, + STATE(3060), 1, + sym_field_declaration_list, + STATE(3319), 1, + sym__class_declaration_item, + STATE(3323), 1, + sym__class_declaration, + STATE(6089), 1, + sym_ms_declspec_modifier, + STATE(7067), 1, + sym__scope_resolution, + STATE(7501), 1, + sym_virtual_specifier, + STATE(8058), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(2872), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6086), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5861), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [224750] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9404), 1, + sym_identifier, + STATE(3113), 1, sym_template_type, - STATE(3640), 1, + STATE(3666), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4366), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6071), 1, + STATE(6138), 1, sym_ms_declspec_modifier, - STATE(7031), 1, + STATE(7073), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6073), 2, + STATE(6136), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5831), 3, + STATE(5836), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [223850] = 3, + [224829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 2, + ACTIONS(5742), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5705), 27, + ACTIONS(5744), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -550187,47 +553887,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [223887] = 3, + [224866] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5693), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, anon_sym_decltype, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7867), 1, + anon_sym_COLON_COLON, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(5427), 1, + sym_field_declaration_list, + STATE(5443), 1, + sym__class_declaration_item, + STATE(5450), 1, + sym__class_declaration, + STATE(6101), 1, + sym_ms_declspec_modifier, + STATE(7046), 1, + sym__scope_resolution, + STATE(7510), 1, + sym_virtual_specifier, + STATE(8051), 1, + sym_base_class_clause, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [223924] = 3, + STATE(5288), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6109), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5857), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [224945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 2, + ACTIONS(5746), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5701), 27, + ACTIONS(5748), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -550255,13 +553976,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [223961] = 3, + [224982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 2, + ACTIONS(5750), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5663), 27, + ACTIONS(5752), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -550289,44 +554010,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [223998] = 18, + [225019] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(3020), 1, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, anon_sym_STAR, - ACTIONS(3022), 1, + ACTIONS(7479), 1, + anon_sym_AMP_AMP, + ACTIONS(7481), 1, anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6518), 1, + ACTIONS(7483), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6228), 1, + STATE(6332), 1, sym__scope_resolution, - STATE(7053), 1, + STATE(6931), 1, sym__declarator, - STATE(9206), 1, + STATE(8520), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -550338,168 +554059,81 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [224065] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5755), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5757), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [224102] = 24, + [225086] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6065), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7736), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9398), 1, sym_identifier, - STATE(2134), 1, + STATE(3113), 1, sym_template_type, - STATE(2222), 1, - sym__class_declaration_item, - STATE(2235), 1, + STATE(3666), 1, sym__class_declaration, - STATE(2880), 1, + STATE(3681), 1, + sym__class_declaration_item, + STATE(4379), 1, sym_field_declaration_list, - STATE(6098), 1, + STATE(6061), 1, sym_ms_declspec_modifier, - STATE(7043), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6100), 2, + STATE(6063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5802), 3, + STATE(5838), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [224181] = 24, + [225165] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(39), 1, anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(6397), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(9416), 1, anon_sym_COLON, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - ACTIONS(9312), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(3611), 1, - sym__class_declaration, - STATE(3642), 1, - sym__class_declaration_item, - STATE(4366), 1, - sym_field_declaration_list, - STATE(6071), 1, - sym_ms_declspec_modifier, - STATE(7031), 1, - sym__scope_resolution, - STATE(7307), 1, - sym_virtual_specifier, - STATE(8078), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(3947), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6073), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5831), 3, + STATE(2226), 1, sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [224260] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - STATE(5871), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5568), 3, + STATE(5875), 1, + sym__enum_base_clause, + STATE(5950), 1, + sym_enumerator_list, + ACTIONS(6116), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(5566), 22, + ACTIONS(6114), 21, anon_sym___extension__, - anon_sym___attribute__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -550520,673 +554154,638 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [224305] = 24, + [225214] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6277), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9225), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(9418), 1, sym_identifier, - STATE(2929), 1, + STATE(2150), 1, sym_template_type, - STATE(3184), 1, - sym_field_declaration_list, - STATE(3350), 1, - sym__class_declaration_item, - STATE(3526), 1, + STATE(2224), 1, sym__class_declaration, - STATE(6089), 1, + STATE(2225), 1, + sym__class_declaration_item, + STATE(2882), 1, + sym_field_declaration_list, + STATE(6108), 1, sym_ms_declspec_modifier, - STATE(7032), 1, + STATE(7066), 1, sym__scope_resolution, - STATE(7361), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8244), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2751), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6087), 2, + STATE(6102), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5817), 3, + STATE(5862), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [224384] = 24, + [225293] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6065), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7736), 1, + ACTIONS(7601), 1, + anon_sym_LBRACE, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9396), 1, sym_identifier, - STATE(2134), 1, + STATE(4306), 1, sym_template_type, - STATE(2222), 1, - sym__class_declaration_item, - STATE(2234), 1, - sym__class_declaration, - STATE(2880), 1, + STATE(4572), 1, sym_field_declaration_list, - STATE(6098), 1, + STATE(4636), 1, + sym__class_declaration, + STATE(4637), 1, + sym__class_declaration_item, + STATE(6106), 1, sym_ms_declspec_modifier, - STATE(7043), 1, + STATE(7057), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7598), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8272), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(4008), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6100), 2, + STATE(6103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5802), 3, + STATE(5863), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [224463] = 24, + [225372] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(6579), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9147), 1, + anon_sym_COLON_COLON, + ACTIONS(9412), 1, sym_identifier, - STATE(3104), 1, + STATE(3036), 1, sym_template_type, - STATE(3626), 1, - sym__class_declaration, - STATE(3642), 1, - sym__class_declaration_item, - STATE(4364), 1, + STATE(3427), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(3962), 1, + sym__class_declaration_item, + STATE(3963), 1, + sym__class_declaration, + STATE(6143), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7602), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8305), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4233), 2, + STATE(2934), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6142), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5850), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [224542] = 24, + [225451] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6277), 1, + ACTIONS(6579), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9225), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(9412), 1, sym_identifier, - STATE(2929), 1, + STATE(3036), 1, sym_template_type, - STATE(3184), 1, + STATE(3427), 1, sym_field_declaration_list, - STATE(3350), 1, + STATE(3962), 1, sym__class_declaration_item, - STATE(3521), 1, + STATE(3965), 1, sym__class_declaration, - STATE(6089), 1, + STATE(6143), 1, sym_ms_declspec_modifier, - STATE(7032), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(7361), 1, + STATE(7602), 1, sym_virtual_specifier, - STATE(8244), 1, + STATE(8305), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2751), 2, + STATE(2934), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6087), 2, + STATE(6142), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5817), 3, + STATE(5850), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [224621] = 24, + [225530] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6065), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7736), 1, + ACTIONS(7601), 1, + anon_sym_LBRACE, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9396), 1, sym_identifier, - STATE(2134), 1, + STATE(4306), 1, sym_template_type, - STATE(2221), 1, - sym__class_declaration, - STATE(2222), 1, - sym__class_declaration_item, - STATE(2880), 1, + STATE(4572), 1, sym_field_declaration_list, - STATE(6098), 1, + STATE(4637), 1, + sym__class_declaration_item, + STATE(4638), 1, + sym__class_declaration, + STATE(6106), 1, sym_ms_declspec_modifier, - STATE(7043), 1, + STATE(7057), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7598), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8272), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(4008), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6100), 2, + STATE(6103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5802), 3, + STATE(5863), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [224700] = 24, + [225609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(5730), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5732), 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_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(9291), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(3611), 1, - sym__class_declaration, - STATE(3642), 1, - sym__class_declaration_item, - STATE(4364), 1, - sym_field_declaration_list, - STATE(6077), 1, - sym_ms_declspec_modifier, - STATE(7030), 1, - sym__scope_resolution, - STATE(7480), 1, - sym_virtual_specifier, - STATE(8325), 1, - sym_base_class_clause, - ACTIONS(5294), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4210), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6086), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5821), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [224779] = 24, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [225646] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6065), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7742), 1, - anon_sym_COLON_COLON, - ACTIONS(9318), 1, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7475), 1, sym_identifier, - STATE(2134), 1, - sym_template_type, - STATE(2222), 1, - sym__class_declaration_item, - STATE(2235), 1, - sym__class_declaration, - STATE(5894), 1, - sym_field_declaration_list, - STATE(6025), 1, - sym_ms_declspec_modifier, - STATE(7025), 1, + ACTIONS(7477), 1, + anon_sym_STAR, + ACTIONS(7479), 1, + anon_sym_AMP_AMP, + ACTIONS(7481), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_COLON_COLON, + STATE(6332), 1, sym__scope_resolution, - STATE(7340), 1, - sym_virtual_specifier, - STATE(8165), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(5415), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6027), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(6923), 1, + sym__declarator, + STATE(8520), 1, + sym_ms_based_modifier, + STATE(9043), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(5818), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [224858] = 24, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [225713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5614), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5616), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [225750] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6065), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7742), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9318), 1, + ACTIONS(9418), 1, sym_identifier, - STATE(2134), 1, + STATE(2150), 1, sym_template_type, - STATE(2222), 1, + STATE(2225), 1, sym__class_declaration_item, - STATE(2234), 1, + STATE(2235), 1, sym__class_declaration, - STATE(5894), 1, + STATE(2882), 1, sym_field_declaration_list, - STATE(6025), 1, + STATE(6108), 1, sym_ms_declspec_modifier, - STATE(7025), 1, + STATE(7066), 1, sym__scope_resolution, - STATE(7340), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8165), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5415), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6027), 2, + STATE(6102), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5818), 3, + STATE(5862), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [224937] = 24, + [225829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6065), 1, + ACTIONS(5622), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5624), 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_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7742), 1, - anon_sym_COLON_COLON, - ACTIONS(9318), 1, - sym_identifier, - STATE(2134), 1, - sym_template_type, - STATE(2221), 1, - sym__class_declaration, - STATE(2222), 1, - sym__class_declaration_item, - STATE(5894), 1, - sym_field_declaration_list, - STATE(6025), 1, - sym_ms_declspec_modifier, - STATE(7025), 1, - sym__scope_resolution, - STATE(7340), 1, - sym_virtual_specifier, - STATE(8165), 1, - sym_base_class_clause, - ACTIONS(5294), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(5415), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6027), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5818), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [225016] = 24, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [225866] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6277), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9225), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(9420), 1, sym_identifier, - STATE(2929), 1, + STATE(2150), 1, sym_template_type, - STATE(3184), 1, - sym_field_declaration_list, - STATE(3350), 1, - sym__class_declaration_item, - STATE(3520), 1, + STATE(2224), 1, sym__class_declaration, - STATE(6089), 1, + STATE(2225), 1, + sym__class_declaration_item, + STATE(5937), 1, + sym_field_declaration_list, + STATE(6082), 1, sym_ms_declspec_modifier, - STATE(7032), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(7361), 1, + STATE(7363), 1, sym_virtual_specifier, - STATE(8244), 1, + STATE(8147), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2751), 2, + STATE(5469), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6087), 2, + STATE(6084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5817), 3, + STATE(5848), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [225095] = 24, + [225945] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(39), 1, anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6522), 1, + ACTIONS(6397), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(9416), 1, anon_sym_COLON, - ACTIONS(9030), 1, - anon_sym_COLON_COLON, - ACTIONS(9320), 1, - sym_identifier, - STATE(2997), 1, - sym_template_type, - STATE(3057), 1, - sym_field_declaration_list, - STATE(3314), 1, - sym__class_declaration_item, - STATE(3331), 1, - sym__class_declaration, - STATE(6033), 1, - sym_ms_declspec_modifier, - STATE(7027), 1, - sym__scope_resolution, - STATE(7352), 1, - sym_virtual_specifier, - STATE(8361), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(2882), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6038), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5810), 3, + STATE(2258), 1, sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [225174] = 24, + STATE(5866), 1, + sym__enum_base_clause, + STATE(5947), 1, + sym_enumerator_list, + ACTIONS(6110), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(6108), 21, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [225994] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6522), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(9030), 1, - anon_sym_COLON_COLON, - ACTIONS(9320), 1, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(5330), 1, sym_identifier, - STATE(2997), 1, - sym_template_type, - STATE(3057), 1, - sym_field_declaration_list, - STATE(3312), 1, - sym__class_declaration, - STATE(3314), 1, - sym__class_declaration_item, - STATE(6033), 1, - sym_ms_declspec_modifier, - STATE(7027), 1, + ACTIONS(7403), 1, + anon_sym_STAR, + ACTIONS(7405), 1, + anon_sym_AMP_AMP, + ACTIONS(7407), 1, + anon_sym_AMP, + ACTIONS(7409), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(6359), 1, sym__scope_resolution, - STATE(7352), 1, - sym_virtual_specifier, - STATE(8361), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(2882), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6038), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(7116), 1, + sym__declarator, + STATE(8653), 1, + sym_ms_based_modifier, + STATE(9043), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(5810), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [225253] = 3, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [226061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 2, + ACTIONS(5618), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5721), 27, + ACTIONS(5620), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -551214,63 +554813,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [225290] = 19, + [226098] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(7714), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - STATE(6654), 1, - sym__function_attributes_end, - STATE(6864), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9406), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(3681), 1, + sym__class_declaration_item, + STATE(3683), 1, + sym__class_declaration, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6090), 1, + sym_ms_declspec_modifier, + STATE(7076), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8443), 1, + sym_base_class_clause, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(4274), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5923), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [225359] = 3, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5840), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [226177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 2, + ACTIONS(5614), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5739), 27, + ACTIONS(5616), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -551298,412 +554902,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [225396] = 24, + [226214] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6182), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9066), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(9069), 1, + anon_sym_LBRACE, + ACTIONS(9414), 1, sym_identifier, - STATE(2903), 1, + STATE(5358), 1, sym_template_type, - STATE(3107), 1, + STATE(5559), 1, sym_field_declaration_list, - STATE(3260), 1, - sym__class_declaration_item, - STATE(3263), 1, + STATE(5806), 1, sym__class_declaration, - STATE(6028), 1, + STATE(5807), 1, + sym__class_declaration_item, + STATE(6139), 1, sym_ms_declspec_modifier, - STATE(7002), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(7488), 1, + STATE(7558), 1, sym_virtual_specifier, - STATE(8394), 1, + STATE(8153), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2707), 2, + STATE(5370), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6029), 2, + STATE(6140), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5803), 3, + STATE(5832), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [225475] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(9166), 1, - anon_sym_requires, - STATE(6627), 1, - sym__function_attributes_end, - STATE(6868), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8914), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5928), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(8908), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [225544] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(3020), 1, - anon_sym_STAR, - ACTIONS(3022), 1, - anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6228), 1, - sym__scope_resolution, - STATE(7089), 1, - sym__declarator, - STATE(9206), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [225611] = 24, + [226293] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6522), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9030), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(9320), 1, + ACTIONS(9420), 1, sym_identifier, - STATE(2997), 1, + STATE(2150), 1, sym_template_type, - STATE(3057), 1, - sym_field_declaration_list, - STATE(3314), 1, + STATE(2225), 1, sym__class_declaration_item, - STATE(3315), 1, + STATE(2235), 1, sym__class_declaration, - STATE(6033), 1, + STATE(5937), 1, + sym_field_declaration_list, + STATE(6082), 1, sym_ms_declspec_modifier, - STATE(7027), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7363), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8147), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(5469), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6038), 2, + STATE(6084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5810), 3, + STATE(5848), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [225690] = 24, + [226372] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3611), 1, - sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(3683), 1, + sym__class_declaration, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(4273), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [225769] = 24, + [226451] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3626), 1, + STATE(3667), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4210), 2, + STATE(4274), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [225848] = 18, + [226530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(5799), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5801), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [226567] = 24, + ACTIONS(3), 1, + sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(3020), 1, - anon_sym_STAR, - ACTIONS(3022), 1, - anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6518), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6228), 1, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9406), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(3666), 1, + sym__class_declaration, + STATE(3681), 1, + sym__class_declaration_item, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6090), 1, + sym_ms_declspec_modifier, + STATE(7076), 1, sym__scope_resolution, - STATE(7068), 1, - sym__declarator, - STATE(9206), 1, - sym_ms_based_modifier, - STATE(9084), 3, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8443), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(4249), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6057), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [225915] = 18, + STATE(5840), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [226646] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7353), 1, + ACTIONS(7475), 1, sym_identifier, - ACTIONS(7355), 1, + ACTIONS(7477), 1, anon_sym_STAR, - ACTIONS(7357), 1, + ACTIONS(7479), 1, anon_sym_AMP_AMP, - ACTIONS(7359), 1, + ACTIONS(7481), 1, anon_sym_AMP, - ACTIONS(7361), 1, + ACTIONS(7483), 1, anon_sym_COLON_COLON, - STATE(6317), 1, + STATE(6332), 1, sym__scope_resolution, - STATE(6930), 1, + STATE(6983), 1, sym__declarator, - STATE(8492), 1, + STATE(8520), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -551715,245 +555260,277 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [225982] = 18, + [226713] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(7231), 1, - anon_sym_STAR, - ACTIONS(7233), 1, - anon_sym_AMP_AMP, - ACTIONS(7235), 1, - anon_sym_AMP, - ACTIONS(7237), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6309), 1, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9406), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(3666), 1, + sym__class_declaration, + STATE(3681), 1, + sym__class_declaration_item, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6090), 1, + sym_ms_declspec_modifier, + STATE(7076), 1, sym__scope_resolution, - STATE(7056), 1, - sym__declarator, - STATE(8622), 1, - sym_ms_based_modifier, - STATE(9084), 3, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8443), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(4274), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6057), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [226049] = 24, + STATE(5840), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [226792] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3611), 1, + STATE(3667), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4244), 2, + STATE(4273), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [226128] = 24, + [226871] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6065), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9088), 1, - anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(2134), 1, + STATE(3113), 1, sym_template_type, - STATE(2221), 1, + STATE(3667), 1, sym__class_declaration, - STATE(2222), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(2880), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6032), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7040), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(4249), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6034), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5806), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [226207] = 24, + [226950] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3626), 1, - sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4366), 1, + STATE(3683), 1, + sym__class_declaration, + STATE(4382), 1, sym_field_declaration_list, - STATE(6071), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7031), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(4249), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6073), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5831), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [226286] = 9, + [227029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(8930), 1, - anon_sym_LBRACE, - ACTIONS(9322), 1, - anon_sym_COLON, - STATE(5358), 1, - sym__enum_base_clause, - STATE(5390), 1, - sym_enumerator_list, - STATE(5448), 1, - sym_attribute_specifier, - ACTIONS(6073), 3, + ACTIONS(5758), 2, anon_sym_AMP, + anon_sym_const, + ACTIONS(5760), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [227066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(6075), 20, + ACTIONS(5740), 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_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -551968,234 +555545,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [226335] = 24, + [227103] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9402), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3611), 1, + STATE(3667), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4366), 1, + STATE(4379), 1, sym_field_declaration_list, - STATE(6088), 1, + STATE(6074), 1, sym_ms_declspec_modifier, - STATE(7045), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6083), 2, + STATE(6073), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5825), 3, + STATE(5855), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [226414] = 24, + [227182] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(7903), 1, + anon_sym_COLON_COLON, + ACTIONS(9402), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3640), 1, + STATE(3666), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4379), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6074), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4210), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6073), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5855), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [226493] = 24, + [227261] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6065), 1, + ACTIONS(6220), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9088), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9422), 1, sym_identifier, - STATE(2134), 1, + STATE(2917), 1, sym_template_type, - STATE(2222), 1, + STATE(3054), 1, + sym_field_declaration_list, + STATE(3325), 1, sym__class_declaration_item, - STATE(2235), 1, + STATE(3327), 1, sym__class_declaration, - STATE(2880), 1, + STATE(6080), 1, + sym_ms_declspec_modifier, + STATE(7053), 1, + sym__scope_resolution, + STATE(7436), 1, + sym_virtual_specifier, + STATE(8435), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(2742), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6079), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5843), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [227340] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7323), 1, + anon_sym_LBRACE, + ACTIONS(9331), 1, + anon_sym_COLON_COLON, + ACTIONS(9424), 1, + sym_identifier, + STATE(4141), 1, + sym_template_type, + STATE(4371), 1, sym_field_declaration_list, - STATE(6032), 1, + STATE(4514), 1, + sym__class_declaration, + STATE(4524), 1, + sym__class_declaration_item, + STATE(6116), 1, sym_ms_declspec_modifier, - STATE(7040), 1, + STATE(7055), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7628), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8353), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(3714), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6034), 2, + STATE(6117), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5806), 3, + STATE(5847), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [226572] = 24, + [227419] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3640), 1, - sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(3683), 1, + sym__class_declaration, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4244), 2, + STATE(4199), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [226651] = 3, + [227498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5772), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5564), 27, + ACTIONS(5774), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -552223,763 +555857,620 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [226688] = 24, + [227535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(5776), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5778), 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_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(9306), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(3640), 1, - sym__class_declaration, - STATE(3642), 1, - sym__class_declaration_item, - STATE(4366), 1, - sym_field_declaration_list, - STATE(6088), 1, - sym_ms_declspec_modifier, - STATE(7045), 1, - sym__scope_resolution, - STATE(7307), 1, - sym_virtual_specifier, - STATE(8078), 1, - sym_base_class_clause, - ACTIONS(5294), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(3947), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6083), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5825), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [226767] = 24, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [227572] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3626), 1, + STATE(3667), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4366), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6088), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7045), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(4199), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6083), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5825), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [226846] = 24, + [227651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5635), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5637), 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_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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [227688] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - ACTIONS(9308), 1, - anon_sym_COLON_COLON, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3626), 1, + STATE(3666), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6018), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7005), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4541), 2, + STATE(4199), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6021), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5807), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [226925] = 18, + [227767] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(7239), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(7260), 1, - anon_sym_STAR, - ACTIONS(7262), 1, - anon_sym_AMP_AMP, - ACTIONS(7264), 1, - anon_sym_AMP, - ACTIONS(7266), 1, - anon_sym_COLON_COLON, - STATE(6227), 1, - sym__scope_resolution, - STATE(6622), 1, - sym__declarator, - STATE(8480), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [226992] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(9225), 1, + anon_sym_requires, + STATE(6692), 1, + sym__function_attributes_end, + STATE(6850), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9021), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5953), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9008), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(3020), 1, - anon_sym_STAR, - ACTIONS(3022), 1, - anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6228), 1, - sym__scope_resolution, - STATE(7058), 1, - sym__declarator, - STATE(9206), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [227059] = 24, + anon_sym_GT2, + [227836] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + ACTIONS(9426), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, sym_template_type, - STATE(3611), 1, + STATE(3666), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6040), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7052), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4199), 2, + STATE(4519), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6037), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5846), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [227138] = 24, + [227915] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5045), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(6220), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9324), 1, + ACTIONS(9205), 1, + anon_sym_COLON_COLON, + ACTIONS(9422), 1, sym_identifier, - STATE(3104), 1, + STATE(2917), 1, sym_template_type, - STATE(3626), 1, + STATE(3054), 1, + sym_field_declaration_list, + STATE(3324), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3325), 1, sym__class_declaration_item, - STATE(4364), 1, - sym_field_declaration_list, - STATE(6054), 1, + STATE(6080), 1, sym_ms_declspec_modifier, - STATE(7046), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7436), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8435), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(2742), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6056), 2, + STATE(6079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5809), 3, + STATE(5843), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [227217] = 24, + [227994] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3640), 1, - sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(3683), 1, + sym__class_declaration, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4199), 2, + STATE(4244), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [227296] = 24, + [228073] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6522), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7804), 1, - anon_sym_COLON_COLON, - ACTIONS(9326), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(2997), 1, + STATE(3113), 1, sym_template_type, - STATE(3057), 1, - sym_field_declaration_list, - STATE(3314), 1, - sym__class_declaration_item, - STATE(3315), 1, + STATE(3666), 1, sym__class_declaration, - STATE(6091), 1, + STATE(3681), 1, + sym__class_declaration_item, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7029), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(4273), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6090), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5819), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [227375] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5594), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5596), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [227412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5745), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5747), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [227449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5741), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5743), 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_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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [227486] = 24, + [228152] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7824), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(8950), 1, + ACTIONS(9069), 1, anon_sym_LBRACE, - ACTIONS(9328), 1, + ACTIONS(9414), 1, sym_identifier, - STATE(5330), 1, + STATE(5358), 1, sym_template_type, - STATE(5490), 1, + STATE(5559), 1, sym_field_declaration_list, - STATE(5756), 1, - sym__class_declaration_item, - STATE(5757), 1, + STATE(5805), 1, sym__class_declaration, - STATE(6013), 1, + STATE(5807), 1, + sym__class_declaration_item, + STATE(6139), 1, sym_ms_declspec_modifier, - STATE(7022), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(7525), 1, + STATE(7558), 1, sym_virtual_specifier, - STATE(8192), 1, + STATE(8153), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5327), 2, + STATE(5370), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6014), 2, + STATE(6140), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5812), 3, + STATE(5832), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [227565] = 24, + [228231] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7824), 1, - anon_sym_COLON_COLON, - ACTIONS(8950), 1, - anon_sym_LBRACE, - ACTIONS(9328), 1, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(3044), 1, + anon_sym_STAR, + ACTIONS(3046), 1, + anon_sym_AMP, + ACTIONS(5330), 1, sym_identifier, - STATE(5330), 1, - sym_template_type, - STATE(5490), 1, - sym_field_declaration_list, - STATE(5742), 1, - sym__class_declaration, - STATE(5756), 1, - sym__class_declaration_item, - STATE(6013), 1, - sym_ms_declspec_modifier, - STATE(7022), 1, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(6297), 1, sym__scope_resolution, - STATE(7525), 1, - sym_virtual_specifier, - STATE(8192), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(5327), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6014), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(7085), 1, + sym__declarator, + STATE(9234), 1, + sym_ms_based_modifier, + STATE(9043), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(5812), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [227644] = 24, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [228298] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7824), 1, - anon_sym_COLON_COLON, - ACTIONS(8950), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(9328), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9406), 1, sym_identifier, - STATE(5330), 1, + STATE(3113), 1, sym_template_type, - STATE(5490), 1, - sym_field_declaration_list, - STATE(5741), 1, + STATE(3667), 1, sym__class_declaration, - STATE(5756), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(6013), 1, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7022), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7525), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8192), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5327), 2, + STATE(4244), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6014), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5812), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [227723] = 3, + [228377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5643), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5600), 27, + ACTIONS(5645), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -553007,68 +556498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [227760] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5290), 1, - anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(9102), 1, - anon_sym_COLON_COLON, - ACTIONS(9330), 1, - sym_identifier, - STATE(2102), 1, - sym_template_type, - STATE(2292), 1, - sym_field_declaration_list, - STATE(2412), 1, - sym__class_declaration_item, - STATE(2414), 1, - sym__class_declaration, - STATE(6101), 1, - sym_ms_declspec_modifier, - STATE(7028), 1, - sym__scope_resolution, - STATE(7594), 1, - sym_virtual_specifier, - STATE(8268), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(2001), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6105), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5829), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [227839] = 3, + [228414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 2, + ACTIONS(5643), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5615), 27, + ACTIONS(5645), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -553096,233 +556532,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [227876] = 24, + [228451] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, + anon_sym_STAR, + ACTIONS(7479), 1, + anon_sym_AMP_AMP, + ACTIONS(7481), 1, + anon_sym_AMP, + ACTIONS(7483), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + STATE(6332), 1, + sym__scope_resolution, + STATE(6929), 1, + sym__declarator, + STATE(8520), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [228518] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(7849), 1, + anon_sym_COLON_COLON, + ACTIONS(9420), 1, sym_identifier, - STATE(3104), 1, + STATE(2150), 1, sym_template_type, - STATE(3626), 1, - sym__class_declaration, - STATE(3642), 1, + STATE(2225), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(2240), 1, + sym__class_declaration, + STATE(5937), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6082), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7363), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8147), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4230), 2, + STATE(5469), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6084), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5848), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [227955] = 24, + [228597] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5045), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9324), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3640), 1, - sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(3683), 1, + sym__class_declaration, + STATE(4382), 1, sym_field_declaration_list, - STATE(6054), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7046), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6056), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5809), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [228034] = 24, + [228676] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6522), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7804), 1, - anon_sym_COLON_COLON, - ACTIONS(9326), 1, - sym_identifier, - STATE(2997), 1, - sym_template_type, - STATE(3057), 1, - sym_field_declaration_list, - STATE(3312), 1, - sym__class_declaration, - STATE(3314), 1, - sym__class_declaration_item, - STATE(6091), 1, - sym_ms_declspec_modifier, - STATE(7029), 1, - sym__scope_resolution, - STATE(7352), 1, - sym_virtual_specifier, - STATE(8361), 1, - sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9428), 1, + anon_sym_requires, + STATE(6689), 1, + sym__function_attributes_end, + STATE(6889), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9111), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6090), 2, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5819), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [228113] = 24, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5952), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9107), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [228745] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5045), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9324), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3611), 1, + STATE(3666), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6054), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7046), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(4244), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6056), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5809), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [228192] = 3, + [228824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 2, + ACTIONS(5647), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5619), 27, + ACTIONS(5649), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -553350,117 +556830,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [228229] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, - anon_sym_STAR, - ACTIONS(7357), 1, - anon_sym_AMP_AMP, - ACTIONS(7359), 1, - anon_sym_AMP, - ACTIONS(7361), 1, - anon_sym_COLON_COLON, - STATE(6317), 1, - sym__scope_resolution, - STATE(6954), 1, - sym__declarator, - STATE(8492), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [228296] = 24, + [228861] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(5979), 1, + ACTIONS(5998), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9203), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(9431), 1, sym_identifier, - STATE(2790), 1, + STATE(2846), 1, sym_template_type, - STATE(2940), 1, + STATE(2942), 1, sym_field_declaration_list, - STATE(3077), 1, - sym__class_declaration, - STATE(3089), 1, + STATE(3048), 1, sym__class_declaration_item, - STATE(6110), 1, + STATE(3053), 1, + sym__class_declaration, + STATE(6052), 1, sym_ms_declspec_modifier, - STATE(7024), 1, + STATE(7059), 1, sym__scope_resolution, - STATE(7311), 1, + STATE(7574), 1, sym_virtual_specifier, - STATE(8075), 1, + STATE(8205), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2422), 2, + STATE(2459), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6109), 2, + STATE(6050), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5828), 3, + STATE(5845), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [228375] = 3, + [228940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5711), 2, + ACTIONS(5651), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5713), 27, + ACTIONS(5653), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -553488,13 +556919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [228412] = 3, + [228977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 2, + ACTIONS(5643), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5709), 27, + ACTIONS(5645), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -553522,99 +556953,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [228449] = 24, + [229014] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(3044), 1, + anon_sym_STAR, + ACTIONS(3046), 1, + anon_sym_AMP, + ACTIONS(5330), 1, sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(3626), 1, - sym__class_declaration, - STATE(3642), 1, - sym__class_declaration_item, - STATE(4364), 1, - sym_field_declaration_list, - STATE(6077), 1, - sym_ms_declspec_modifier, - STATE(7030), 1, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(6297), 1, sym__scope_resolution, - STATE(7480), 1, - sym_virtual_specifier, - STATE(8325), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(4244), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6086), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(7087), 1, + sym__declarator, + STATE(9234), 1, + sym_ms_based_modifier, + STATE(9043), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(5821), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [228528] = 18, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [229081] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, - sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7313), 1, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, anon_sym_STAR, - ACTIONS(7315), 1, + ACTIONS(7479), 1, anon_sym_AMP_AMP, - ACTIONS(7317), 1, + ACTIONS(7481), 1, anon_sym_AMP, - STATE(6263), 1, + ACTIONS(7483), 1, + anon_sym_COLON_COLON, + STATE(6332), 1, sym__scope_resolution, - STATE(6583), 1, + STATE(6986), 1, sym__declarator, - STATE(9289), 1, + STATE(8520), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -553626,123 +557051,167 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [228595] = 24, + [229148] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7216), 1, - anon_sym_LBRACE, - ACTIONS(9044), 1, - anon_sym_COLON_COLON, - ACTIONS(9334), 1, - sym_identifier, - STATE(4133), 1, - sym_template_type, - STATE(4332), 1, - sym_field_declaration_list, - STATE(4516), 1, - sym__class_declaration, - STATE(4545), 1, - sym__class_declaration_item, - STATE(6060), 1, - sym_ms_declspec_modifier, - STATE(7041), 1, - sym__scope_resolution, - STATE(7519), 1, - sym_virtual_specifier, - STATE(8141), 1, - sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(7808), 1, + anon_sym_requires, + ACTIONS(9109), 1, + anon_sym_LBRACK, + STATE(6735), 1, + sym__function_attributes_end, + STATE(6874), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(3674), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6061), 2, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5820), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [228674] = 24, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5960), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9107), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [229217] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7216), 1, - anon_sym_LBRACE, - ACTIONS(9044), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9334), 1, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9398), 1, sym_identifier, - STATE(4133), 1, + STATE(3113), 1, sym_template_type, - STATE(4332), 1, + STATE(5427), 1, sym_field_declaration_list, - STATE(4487), 1, - sym__class_declaration, - STATE(4545), 1, + STATE(5443), 1, sym__class_declaration_item, - STATE(6060), 1, + STATE(5473), 1, + sym__class_declaration, + STATE(6101), 1, sym_ms_declspec_modifier, - STATE(7041), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(7519), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8141), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3674), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6061), 2, + STATE(6109), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5820), 3, + STATE(5857), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [228753] = 3, + [229296] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(3044), 1, + anon_sym_STAR, + ACTIONS(3046), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + sym_identifier, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(6297), 1, + sym__scope_resolution, + STATE(7124), 1, + sym__declarator, + STATE(9234), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [229363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 2, + ACTIONS(5677), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5623), 27, + ACTIONS(5679), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -553770,398 +557239,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [228790] = 24, + [229400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7216), 1, + ACTIONS(5685), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5687), 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_LBRACE, - ACTIONS(9044), 1, - anon_sym_COLON_COLON, - ACTIONS(9334), 1, - sym_identifier, - STATE(4133), 1, - sym_template_type, - STATE(4332), 1, - sym_field_declaration_list, - STATE(4489), 1, - sym__class_declaration, - STATE(4545), 1, - sym__class_declaration_item, - STATE(6060), 1, - sym_ms_declspec_modifier, - STATE(7041), 1, - sym__scope_resolution, - STATE(7519), 1, - sym_virtual_specifier, - STATE(8141), 1, - sym_base_class_clause, - ACTIONS(5294), 2, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(3674), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6061), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5820), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [228869] = 24, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [229437] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(5896), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(9290), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(9436), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5796), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9433), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9288), 19, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + [229482] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(8920), 1, - anon_sym_LBRACE, - ACTIONS(9312), 1, + ACTIONS(9402), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(5387), 1, - sym_field_declaration_list, - STATE(5420), 1, - sym__class_declaration, - STATE(5421), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(6058), 1, + STATE(3683), 1, + sym__class_declaration, + STATE(4379), 1, + sym_field_declaration_list, + STATE(6074), 1, sym_ms_declspec_modifier, - STATE(7031), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6057), 2, + STATE(6073), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5822), 3, + STATE(5855), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [228948] = 24, + [229561] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6522), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7804), 1, - anon_sym_COLON_COLON, - ACTIONS(9326), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(2997), 1, + STATE(3113), 1, sym_template_type, - STATE(3057), 1, - sym_field_declaration_list, - STATE(3314), 1, - sym__class_declaration_item, - STATE(3331), 1, + STATE(3667), 1, sym__class_declaration, - STATE(6091), 1, + STATE(3681), 1, + sym__class_declaration_item, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7029), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6090), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5819), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [229027] = 24, + [229640] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - ACTIONS(8920), 1, - anon_sym_LBRACE, - ACTIONS(9312), 1, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(3044), 1, + anon_sym_STAR, + ACTIONS(3046), 1, + anon_sym_AMP, + ACTIONS(5330), 1, sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(5387), 1, - sym_field_declaration_list, - STATE(5421), 1, - sym__class_declaration_item, - STATE(5422), 1, - sym__class_declaration, - STATE(6058), 1, - sym_ms_declspec_modifier, - STATE(7031), 1, + ACTIONS(6526), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + STATE(6297), 1, sym__scope_resolution, - STATE(7460), 1, - sym_virtual_specifier, - STATE(8258), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(5295), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6057), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(6941), 1, + sym__declarator, + STATE(9234), 1, + sym_ms_based_modifier, + STATE(9043), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(5822), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [229106] = 24, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [229707] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3640), 1, + STATE(3666), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4230), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [229185] = 24, + [229786] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - ACTIONS(9308), 1, - anon_sym_COLON_COLON, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3640), 1, + STATE(3666), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6018), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7005), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4541), 2, + STATE(4230), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6021), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5807), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [229264] = 24, + [229865] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3626), 1, + STATE(3667), 1, sym__class_declaration, - STATE(3642), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4199), 2, + STATE(4230), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [229343] = 3, + [229944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5613), 2, + ACTIONS(5803), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5615), 27, + ACTIONS(5805), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -554189,44 +557669,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [229380] = 18, + [229981] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7353), 1, + ACTIONS(7475), 1, sym_identifier, - ACTIONS(7355), 1, + ACTIONS(7477), 1, anon_sym_STAR, - ACTIONS(7357), 1, + ACTIONS(7479), 1, anon_sym_AMP_AMP, - ACTIONS(7359), 1, + ACTIONS(7481), 1, anon_sym_AMP, - ACTIONS(7361), 1, + ACTIONS(7483), 1, anon_sym_COLON_COLON, - STATE(6317), 1, + STATE(6332), 1, sym__scope_resolution, - STATE(6906), 1, + STATE(6927), 1, sym__declarator, - STATE(8492), 1, + STATE(8520), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -554238,13 +557718,13 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [229447] = 3, + [230048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 2, + ACTIONS(5724), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5731), 27, + ACTIONS(5726), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -554272,13 +557752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [229484] = 3, + [230085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5535), 2, + ACTIONS(5698), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5537), 27, + ACTIONS(5700), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -554306,115 +557786,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [229521] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6552), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(9136), 1, - anon_sym_COLON_COLON, - ACTIONS(9310), 1, - sym_identifier, - STATE(3013), 1, - sym_template_type, - STATE(3546), 1, - sym_field_declaration_list, - STATE(3931), 1, - sym__class_declaration, - STATE(3932), 1, - sym__class_declaration_item, - STATE(6053), 1, - sym_ms_declspec_modifier, - STATE(7023), 1, - sym__scope_resolution, - STATE(7429), 1, - sym_virtual_specifier, - STATE(8193), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(2912), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6049), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5824), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [229600] = 3, + [230122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9338), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(9336), 23, + ACTIONS(5673), 2, anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [229637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9342), 6, + ACTIONS(5675), 27, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(9340), 23, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -554425,72 +557813,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [229674] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, + sym_auto, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(9291), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(3611), 1, - sym__class_declaration, - STATE(3642), 1, - sym__class_declaration_item, - STATE(4364), 1, - sym_field_declaration_list, - STATE(6077), 1, - sym_ms_declspec_modifier, - STATE(7030), 1, - sym__scope_resolution, - STATE(7480), 1, - sym_virtual_specifier, - STATE(8325), 1, - sym_base_class_clause, - ACTIONS(5294), 2, anon_sym_final, anon_sym_override, - STATE(4230), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6086), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5821), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [229753] = 3, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [230159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 2, + ACTIONS(5669), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5697), 27, + ACTIONS(5671), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -554518,154 +557854,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [229790] = 24, + [230196] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5290), 1, - anon_sym_LBRACE, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, + ACTIONS(6220), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9102), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(9422), 1, sym_identifier, - STATE(2102), 1, + STATE(2917), 1, sym_template_type, - STATE(2292), 1, + STATE(3054), 1, sym_field_declaration_list, - STATE(2412), 1, + STATE(3325), 1, sym__class_declaration_item, - STATE(2413), 1, + STATE(3329), 1, sym__class_declaration, - STATE(6101), 1, + STATE(6080), 1, sym_ms_declspec_modifier, - STATE(7028), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(7594), 1, + STATE(7436), 1, sym_virtual_specifier, - STATE(8268), 1, + STATE(8435), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2001), 2, + STATE(2742), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6105), 2, + STATE(6079), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5829), 3, + STATE(5843), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [229869] = 24, + [230275] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, + ACTIONS(6375), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(8920), 1, - anon_sym_LBRACE, - ACTIONS(9312), 1, + ACTIONS(9439), 1, sym_identifier, - STATE(3104), 1, + STATE(2960), 1, sym_template_type, - STATE(5387), 1, + STATE(3253), 1, sym_field_declaration_list, - STATE(5421), 1, - sym__class_declaration_item, - STATE(5424), 1, + STATE(3576), 1, sym__class_declaration, - STATE(6058), 1, + STATE(3579), 1, + sym__class_declaration_item, + STATE(6065), 1, sym_ms_declspec_modifier, - STATE(7031), 1, + STATE(7040), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7393), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8130), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(2806), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6057), 2, + STATE(6058), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5822), 3, + STATE(5841), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [229948] = 18, + [230354] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(3044), 1, + anon_sym_STAR, + ACTIONS(3046), 1, + anon_sym_AMP, + ACTIONS(5330), 1, sym_identifier, - ACTIONS(6087), 1, + ACTIONS(6526), 1, anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7268), 1, - anon_sym_STAR, - ACTIONS(7270), 1, - anon_sym_AMP_AMP, - ACTIONS(7272), 1, - anon_sym_AMP, - STATE(6263), 1, + STATE(6297), 1, sym__scope_resolution, - STATE(6844), 1, + STATE(7096), 1, sym__declarator, - STATE(8562), 1, + STATE(9234), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -554677,99 +558013,44 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [230015] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(9291), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(3626), 1, - sym__class_declaration, - STATE(3642), 1, - sym__class_declaration_item, - STATE(4364), 1, - sym_field_declaration_list, - STATE(6077), 1, - sym_ms_declspec_modifier, - STATE(7030), 1, - sym__scope_resolution, - STATE(7480), 1, - sym_virtual_specifier, - STATE(8325), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(4164), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6086), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5821), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [230094] = 18, + [230421] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(3040), 1, anon_sym_LPAREN2, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6077), 1, + ACTIONS(6094), 1, sym_identifier, - ACTIONS(6087), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, + ACTIONS(7411), 1, anon_sym_LBRACK, - ACTIONS(7268), 1, + ACTIONS(7447), 1, anon_sym_STAR, - ACTIONS(7270), 1, + ACTIONS(7449), 1, anon_sym_AMP_AMP, - ACTIONS(7272), 1, + ACTIONS(7451), 1, anon_sym_AMP, - STATE(6263), 1, + ACTIONS(7453), 1, + anon_sym_COLON_COLON, + STATE(6354), 1, sym__scope_resolution, - STATE(6965), 1, + STATE(6704), 1, sym__declarator, - STATE(8562), 1, + STATE(8511), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6760), 11, + STATE(6752), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -554781,141 +558062,75 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [230161] = 24, + [230488] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7526), 1, - anon_sym_LBRACE, - ACTIONS(9171), 1, - anon_sym_COLON_COLON, - ACTIONS(9344), 1, - sym_identifier, - STATE(4257), 1, - sym_template_type, - STATE(4521), 1, - sym_field_declaration_list, - STATE(4641), 1, - sym__class_declaration_item, - STATE(4643), 1, - sym__class_declaration, - STATE(6080), 1, - sym_ms_declspec_modifier, - STATE(7006), 1, - sym__scope_resolution, - STATE(7410), 1, - sym_virtual_specifier, - STATE(8100), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(4037), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6081), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5805), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [230240] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7526), 1, - anon_sym_LBRACE, - ACTIONS(9171), 1, - anon_sym_COLON_COLON, - ACTIONS(9344), 1, - sym_identifier, - STATE(4257), 1, - sym_template_type, - STATE(4521), 1, - sym_field_declaration_list, - STATE(4605), 1, - sym__class_declaration, - STATE(4641), 1, - sym__class_declaration_item, - STATE(6080), 1, - sym_ms_declspec_modifier, - STATE(7006), 1, - sym__scope_resolution, - STATE(7410), 1, - sym_virtual_specifier, - STATE(8100), 1, - sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(7808), 1, + anon_sym_requires, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(6729), 1, + sym__function_attributes_end, + STATE(6865), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(4037), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6081), 2, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5805), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [230319] = 9, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5961), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9008), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [230557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(6385), 1, - anon_sym_LBRACE, - ACTIONS(9346), 1, - anon_sym_COLON, - STATE(2178), 1, - sym_attribute_specifier, - STATE(5846), 1, - sym__enum_base_clause, - STATE(5906), 1, - sym_enumerator_list, - ACTIONS(6075), 2, + ACTIONS(9443), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(6073), 21, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(9441), 23, + anon_sym_AMP, anon_sym___extension__, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -554927,231 +558142,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, sym_identifier, - sym_auto, anon_sym_decltype, - [230368] = 24, + anon_sym_template, + anon_sym_operator, + [230594] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5290), 1, - anon_sym_LBRACE, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9102), 1, + ACTIONS(7323), 1, + anon_sym_LBRACE, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(9424), 1, sym_identifier, - STATE(2102), 1, + STATE(4141), 1, sym_template_type, - STATE(2292), 1, + STATE(4371), 1, sym_field_declaration_list, - STATE(2411), 1, + STATE(4517), 1, sym__class_declaration, - STATE(2412), 1, + STATE(4524), 1, sym__class_declaration_item, - STATE(6101), 1, + STATE(6116), 1, sym_ms_declspec_modifier, - STATE(7028), 1, + STATE(7055), 1, sym__scope_resolution, - STATE(7594), 1, + STATE(7628), 1, sym_virtual_specifier, - STATE(8268), 1, + STATE(8353), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2001), 2, + STATE(3714), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6105), 2, + STATE(6117), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5829), 3, + STATE(5847), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [230447] = 24, + [230673] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(7323), 1, + anon_sym_LBRACE, + ACTIONS(9331), 1, + anon_sym_COLON_COLON, + ACTIONS(9424), 1, sym_identifier, - STATE(3104), 1, + STATE(4141), 1, sym_template_type, - STATE(3611), 1, - sym__class_declaration, - STATE(3642), 1, - sym__class_declaration_item, - STATE(4364), 1, + STATE(4371), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(4524), 1, + sym__class_declaration_item, + STATE(4525), 1, + sym__class_declaration, + STATE(6116), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7055), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7628), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8353), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4164), 2, + STATE(3714), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6086), 2, + STATE(6117), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5821), 3, + STATE(5847), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [230526] = 24, + [230752] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7526), 1, + ACTIONS(6375), 1, anon_sym_LBRACE, - ACTIONS(9171), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(9344), 1, + ACTIONS(9439), 1, sym_identifier, - STATE(4257), 1, + STATE(2960), 1, sym_template_type, - STATE(4521), 1, + STATE(3253), 1, sym_field_declaration_list, - STATE(4641), 1, - sym__class_declaration_item, - STATE(4650), 1, + STATE(3577), 1, sym__class_declaration, - STATE(6080), 1, + STATE(3579), 1, + sym__class_declaration_item, + STATE(6065), 1, sym_ms_declspec_modifier, - STATE(7006), 1, + STATE(7040), 1, sym__scope_resolution, - STATE(7410), 1, + STATE(7393), 1, sym_virtual_specifier, - STATE(8100), 1, + STATE(8130), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4037), 2, + STATE(2806), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6081), 2, + STATE(6058), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5805), 3, + STATE(5841), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [230605] = 18, + [230831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, - anon_sym_STAR, - ACTIONS(7357), 1, - anon_sym_AMP_AMP, - ACTIONS(7359), 1, - anon_sym_AMP, - ACTIONS(7361), 1, - anon_sym_COLON_COLON, - STATE(6317), 1, - sym__scope_resolution, - STATE(6932), 1, - sym__declarator, - STATE(8492), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [230672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5775), 2, + ACTIONS(5418), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5777), 27, + ACTIONS(5420), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -555179,68 +558345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [230709] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, - anon_sym___attribute__, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, - anon_sym___declspec, - ACTIONS(5314), 1, - anon_sym_alignas, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(9291), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(3640), 1, - sym__class_declaration, - STATE(3642), 1, - sym__class_declaration_item, - STATE(4364), 1, - sym_field_declaration_list, - STATE(6077), 1, - sym_ms_declspec_modifier, - STATE(7030), 1, - sym__scope_resolution, - STATE(7480), 1, - sym_virtual_specifier, - STATE(8325), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(4164), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6086), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5821), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [230788] = 3, + [230868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 2, + ACTIONS(5807), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5769), 27, + ACTIONS(5809), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -555268,963 +558379,706 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [230825] = 18, + [230905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, + ACTIONS(9447), 6, anon_sym_LPAREN2, - ACTIONS(3018), 1, anon_sym_TILDE, - ACTIONS(7239), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - sym_identifier, - ACTIONS(7355), 1, anon_sym_STAR, - ACTIONS(7357), 1, anon_sym_AMP_AMP, - ACTIONS(7359), 1, - anon_sym_AMP, - ACTIONS(7361), 1, anon_sym_COLON_COLON, - STATE(6317), 1, - sym__scope_resolution, - STATE(6928), 1, - sym__declarator, - STATE(8492), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [230892] = 24, + anon_sym_LBRACK, + ACTIONS(9445), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [230942] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(5979), 1, + ACTIONS(6375), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9203), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(9439), 1, sym_identifier, - STATE(2790), 1, + STATE(2960), 1, sym_template_type, - STATE(2940), 1, + STATE(3253), 1, sym_field_declaration_list, - STATE(3089), 1, + STATE(3579), 1, sym__class_declaration_item, - STATE(3090), 1, + STATE(3580), 1, sym__class_declaration, - STATE(6110), 1, + STATE(6065), 1, sym_ms_declspec_modifier, - STATE(7024), 1, + STATE(7040), 1, sym__scope_resolution, - STATE(7311), 1, + STATE(7393), 1, sym_virtual_specifier, - STATE(8075), 1, + STATE(8130), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2422), 2, + STATE(2806), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6109), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5828), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - [230971] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(7714), 1, - anon_sym_requires, - ACTIONS(9006), 1, - anon_sym_LBRACK, - STATE(6661), 1, - sym__function_attributes_end, - STATE(6853), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6058), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6587), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5922), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9004), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [231040] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(7231), 1, - anon_sym_STAR, - ACTIONS(7233), 1, - anon_sym_AMP_AMP, - ACTIONS(7235), 1, - anon_sym_AMP, - ACTIONS(7237), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6309), 1, - sym__scope_resolution, - STATE(7082), 1, - sym__declarator, - STATE(8622), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [231107] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3016), 1, - anon_sym_LPAREN2, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(3020), 1, - anon_sym_STAR, - ACTIONS(3022), 1, - anon_sym_AMP, - ACTIONS(5298), 1, - sym_identifier, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(6228), 1, - sym__scope_resolution, - STATE(7091), 1, - sym__declarator, - STATE(9206), 1, - sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 2, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6760), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [231174] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(8930), 1, - anon_sym_LBRACE, - ACTIONS(9322), 1, - anon_sym_COLON, - STATE(5371), 1, - sym__enum_base_clause, - STATE(5399), 1, - sym_enumerator_list, - STATE(5433), 1, - sym_attribute_specifier, - ACTIONS(6055), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6057), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [231223] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(6385), 1, - anon_sym_LBRACE, - ACTIONS(9346), 1, - anon_sym_COLON, - STATE(2226), 1, - sym_attribute_specifier, - STATE(5850), 1, - sym__enum_base_clause, - STATE(5914), 1, - sym_enumerator_list, - ACTIONS(6057), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(6055), 21, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [231272] = 24, + sym_dependent_type_identifier, + STATE(5841), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [231021] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(5979), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9203), 1, - anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(2790), 1, + STATE(3113), 1, sym_template_type, - STATE(2940), 1, - sym_field_declaration_list, - STATE(3078), 1, - sym__class_declaration, - STATE(3089), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(6110), 1, + STATE(3683), 1, + sym__class_declaration, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6090), 1, sym_ms_declspec_modifier, - STATE(7024), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7311), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8075), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2422), 2, + STATE(4230), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6109), 2, + STATE(6057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5828), 3, + STATE(5840), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [231351] = 23, + [231100] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6065), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7736), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9449), 1, sym_identifier, - STATE(2134), 1, + STATE(2150), 1, sym_template_type, - STATE(2204), 1, + STATE(2224), 1, + sym__class_declaration, + STATE(2225), 1, sym__class_declaration_item, - STATE(2880), 1, + STATE(2882), 1, sym_field_declaration_list, - STATE(6007), 1, + STATE(6122), 1, sym_ms_declspec_modifier, - STATE(7043), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6114), 2, + STATE(6125), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(5860), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [231427] = 23, + [231179] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6182), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9066), 1, - anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(2903), 1, + ACTIONS(9426), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, sym_template_type, - STATE(3107), 1, - sym_field_declaration_list, - STATE(3348), 1, + STATE(3667), 1, + sym__class_declaration, + STATE(3681), 1, sym__class_declaration_item, - STATE(6039), 1, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6040), 1, sym_ms_declspec_modifier, - STATE(7002), 1, + STATE(7052), 1, sym__scope_resolution, - STATE(7488), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8394), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2707), 2, + STATE(4519), 2, sym__class_name, sym_qualified_type_identifier, STATE(6037), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(5846), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [231503] = 23, + [231258] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(8920), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(9306), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + ACTIONS(9426), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, sym_template_type, - STATE(5387), 1, - sym_field_declaration_list, - STATE(5439), 1, + STATE(3681), 1, sym__class_declaration_item, - STATE(6046), 1, + STATE(3683), 1, + sym__class_declaration, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6040), 1, sym_ms_declspec_modifier, - STATE(7045), 1, + STATE(7052), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(4519), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6044), 2, + STATE(6037), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(5846), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [231579] = 23, + [231337] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7526), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(9171), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(9344), 1, + ACTIONS(9449), 1, sym_identifier, - STATE(4257), 1, + STATE(2150), 1, sym_template_type, - STATE(4521), 1, - sym_field_declaration_list, - STATE(4624), 1, + STATE(2225), 1, sym__class_declaration_item, - STATE(6084), 1, + STATE(2235), 1, + sym__class_declaration, + STATE(2882), 1, + sym_field_declaration_list, + STATE(6122), 1, sym_ms_declspec_modifier, - STATE(7006), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(7410), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8100), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4037), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6082), 2, + STATE(6125), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(5860), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [231655] = 23, + [231416] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6065), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9088), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9449), 1, sym_identifier, - STATE(2134), 1, + STATE(2150), 1, sym_template_type, - STATE(2204), 1, + STATE(2225), 1, sym__class_declaration_item, - STATE(2880), 1, + STATE(2240), 1, + sym__class_declaration, + STATE(2882), 1, sym_field_declaration_list, - STATE(6066), 1, + STATE(6122), 1, sym_ms_declspec_modifier, - STATE(7040), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6065), 2, + STATE(6125), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(5860), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [231731] = 23, + [231495] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3040), 1, + anon_sym_LPAREN2, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(6094), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_COLON_COLON, + ACTIONS(7411), 1, + anon_sym_LBRACK, + ACTIONS(7462), 1, + anon_sym_STAR, + ACTIONS(7464), 1, + anon_sym_AMP_AMP, + ACTIONS(7466), 1, + anon_sym_AMP, + STATE(6348), 1, + sym__scope_resolution, + STATE(6903), 1, + sym__declarator, + STATE(8593), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6752), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [231562] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(5998), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, - sym_identifier, - ACTIONS(9308), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - STATE(3104), 1, + ACTIONS(9431), 1, + sym_identifier, + STATE(2846), 1, sym_template_type, - STATE(3618), 1, - sym__class_declaration_item, - STATE(4364), 1, + STATE(2942), 1, sym_field_declaration_list, - STATE(6099), 1, + STATE(3033), 1, + sym__class_declaration, + STATE(3048), 1, + sym__class_declaration_item, + STATE(6052), 1, sym_ms_declspec_modifier, - STATE(7005), 1, + STATE(7059), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7574), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8205), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4541), 2, + STATE(2459), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6095), 2, + STATE(6050), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(5845), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [231807] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(6740), 1, - anon_sym_COLON, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8976), 1, - anon_sym_const, - ACTIONS(9259), 1, - anon_sym_STAR, - ACTIONS(9261), 1, - anon_sym_AMP_AMP, - ACTIONS(9263), 1, - anon_sym_AMP, - STATE(4372), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7227), 1, - sym__abstract_declarator, - STATE(5936), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8974), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [231865] = 23, + [231641] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5045), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9324), 1, + ACTIONS(9133), 1, + anon_sym_COLON_COLON, + ACTIONS(9418), 1, sym_identifier, - STATE(3104), 1, + STATE(2150), 1, sym_template_type, - STATE(3618), 1, + STATE(2225), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(2240), 1, + sym__class_declaration, + STATE(2882), 1, sym_field_declaration_list, - STATE(6072), 1, + STATE(6108), 1, sym_ms_declspec_modifier, - STATE(7046), 1, + STATE(7066), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6075), 2, + STATE(6102), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(5862), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [231941] = 23, + [231720] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6522), 1, + ACTIONS(5998), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9030), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(9320), 1, + ACTIONS(9431), 1, sym_identifier, - STATE(2997), 1, + STATE(2846), 1, sym_template_type, - STATE(3057), 1, + STATE(2942), 1, sym_field_declaration_list, - STATE(3294), 1, + STATE(3045), 1, + sym__class_declaration, + STATE(3048), 1, sym__class_declaration_item, - STATE(6051), 1, + STATE(6052), 1, sym_ms_declspec_modifier, - STATE(7027), 1, + STATE(7059), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7574), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8205), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(2459), 2, sym__class_name, sym_qualified_type_identifier, STATE(6050), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(5845), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [232017] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9348), 1, - anon_sym_LBRACK_LBRACK, - STATE(5811), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5972), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5970), 15, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_try, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_requires, - [232057] = 23, + [231799] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7824), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(8950), 1, + ACTIONS(9069), 1, anon_sym_LBRACE, - ACTIONS(9328), 1, + ACTIONS(9414), 1, sym_identifier, - STATE(5330), 1, + STATE(5358), 1, sym_template_type, - STATE(5490), 1, + STATE(5559), 1, sym_field_declaration_list, - STATE(5686), 1, + STATE(5778), 1, sym__class_declaration_item, - STATE(6019), 1, + STATE(6039), 1, sym_ms_declspec_modifier, - STATE(7022), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(7525), 1, + STATE(7558), 1, sym_virtual_specifier, - STATE(8192), 1, + STATE(8153), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5327), 2, + STATE(5370), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6016), 2, + STATE(6141), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(6588), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [232133] = 9, + [231875] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, + ACTIONS(2254), 1, anon_sym_LBRACE, - ACTIONS(7241), 1, + ACTIONS(7468), 1, anon_sym_LPAREN2, - STATE(2390), 1, + STATE(2436), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3859), 1, - sym_argument_list, - STATE(4184), 1, + STATE(3768), 1, sym_initializer_list, - ACTIONS(5535), 2, + STATE(3781), 1, + sym_argument_list, + ACTIONS(5418), 2, anon_sym_AMP, anon_sym_const, ACTIONS(5960), 4, @@ -556232,7 +559086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5537), 17, + ACTIONS(5420), 17, anon_sym_RPAREN, anon_sym_STAR, anon_sym_AMP_AMP, @@ -556250,44 +559104,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - [232181] = 16, + [231923] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(8565), 1, + anon_sym_COLON, + ACTIONS(9087), 1, + anon_sym_const, + ACTIONS(9356), 1, + anon_sym_STAR, + ACTIONS(9358), 1, + anon_sym_AMP_AMP, + ACTIONS(9360), 1, + anon_sym_AMP, + STATE(4401), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7248), 1, + sym__abstract_declarator, + STATE(5964), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9085), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [231981] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(8917), 1, + ACTIONS(9458), 1, anon_sym_requires, - STATE(6335), 1, + STATE(6366), 1, sym__function_attributes_end, - STATE(6509), 1, + STATE(6484), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8914), 2, + ACTIONS(9455), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 8, + ACTIONS(9451), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -556296,44 +559194,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [232243] = 16, + [232043] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9404), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(3601), 1, + sym__class_declaration_item, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6118), 1, + sym_ms_declspec_modifier, + STATE(7073), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_virtual_specifier, + STATE(8443), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(3467), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6119), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6588), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [232119] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(7365), 1, + ACTIONS(7445), 1, anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - STATE(6334), 1, + STATE(6372), 1, sym__function_attributes_end, - STATE(6474), 1, + STATE(6492), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 8, + ACTIONS(9107), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -556342,39 +559293,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [232305] = 14, + [232181] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7867), 1, + anon_sym_COLON_COLON, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(3601), 1, + sym__class_declaration_item, + STATE(4379), 1, + sym_field_declaration_list, + STATE(6131), 1, + sym_ms_declspec_modifier, + STATE(7046), 1, + sym__scope_resolution, + STATE(7333), 1, + sym_virtual_specifier, + STATE(8188), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(4086), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6126), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6588), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [232257] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(8500), 1, + ACTIONS(8561), 1, anon_sym_COLON, - ACTIONS(8976), 1, + ACTIONS(9087), 1, anon_sym_const, - ACTIONS(9259), 1, + ACTIONS(9356), 1, anon_sym_STAR, - ACTIONS(9261), 1, + ACTIONS(9358), 1, anon_sym_AMP_AMP, - ACTIONS(9263), 1, + ACTIONS(9360), 1, anon_sym_AMP, - STATE(4372), 1, + STATE(4401), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7245), 1, + STATE(7277), 1, sym__abstract_declarator, - STATE(5936), 2, + STATE(5964), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6616), 5, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8974), 11, + ACTIONS(9085), 11, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -556386,362 +559390,512 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [232363] = 23, + [232315] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6277), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9225), 1, - anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(2929), 1, + STATE(3113), 1, sym_template_type, - STATE(3184), 1, - sym_field_declaration_list, - STATE(3476), 1, + STATE(3601), 1, sym__class_declaration_item, - STATE(6069), 1, + STATE(4382), 1, + sym_field_declaration_list, + STATE(6085), 1, sym_ms_declspec_modifier, - STATE(7032), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7361), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8244), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2751), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6070), 2, + STATE(6064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(6588), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [232439] = 23, + [232391] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6065), 1, + ACTIONS(6375), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7742), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(9318), 1, + ACTIONS(9439), 1, sym_identifier, - STATE(2134), 1, + STATE(2960), 1, sym_template_type, - STATE(2204), 1, - sym__class_declaration_item, - STATE(5894), 1, + STATE(3253), 1, sym_field_declaration_list, - STATE(6036), 1, + STATE(3511), 1, + sym__class_declaration_item, + STATE(6043), 1, sym_ms_declspec_modifier, - STATE(7025), 1, + STATE(7040), 1, sym__scope_resolution, - STATE(7340), 1, + STATE(7393), 1, sym_virtual_specifier, - STATE(8165), 1, + STATE(8130), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5415), 2, + STATE(2806), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6031), 2, + STATE(6044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(6588), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [232515] = 23, + [232467] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(6096), 1, + anon_sym_COLON, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9087), 1, + anon_sym_const, + ACTIONS(9356), 1, + anon_sym_STAR, + ACTIONS(9358), 1, + anon_sym_AMP_AMP, + ACTIONS(9360), 1, + anon_sym_AMP, + STATE(4401), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7272), 1, + sym__abstract_declarator, + STATE(5854), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9085), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [232525] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6522), 1, + ACTIONS(6220), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7804), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9326), 1, + ACTIONS(9422), 1, sym_identifier, - STATE(2997), 1, + STATE(2917), 1, sym_template_type, - STATE(3057), 1, + STATE(3054), 1, sym_field_declaration_list, - STATE(3294), 1, + STATE(3381), 1, sym__class_declaration_item, - STATE(6076), 1, + STATE(6066), 1, sym_ms_declspec_modifier, - STATE(7029), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7436), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8435), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(2742), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6078), 2, + STATE(6070), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(6588), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [232591] = 23, + [232601] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5321), 1, + anon_sym_LBRACE, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7216), 1, - anon_sym_LBRACE, - ACTIONS(9044), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9334), 1, + ACTIONS(9400), 1, sym_identifier, - STATE(4133), 1, + STATE(2181), 1, sym_template_type, - STATE(4332), 1, + STATE(2326), 1, sym_field_declaration_list, - STATE(4524), 1, + STATE(2484), 1, sym__class_declaration_item, - STATE(6064), 1, + STATE(6105), 1, sym_ms_declspec_modifier, - STATE(7041), 1, + STATE(7033), 1, sym__scope_resolution, - STATE(7519), 1, + STATE(7469), 1, sym_virtual_specifier, - STATE(8141), 1, + STATE(8262), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3674), 2, + STATE(2034), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6063), 2, + STATE(6113), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(6588), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [232667] = 23, + [232677] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(5998), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(5304), 1, + ACTIONS(9431), 1, + sym_identifier, + STATE(2846), 1, + sym_template_type, + STATE(2942), 1, + sym_field_declaration_list, + STATE(3097), 1, + sym__class_declaration_item, + STATE(6046), 1, + sym_ms_declspec_modifier, + STATE(7059), 1, + sym__scope_resolution, + STATE(7574), 1, + sym_virtual_specifier, + STATE(8205), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(2459), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6047), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6588), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [232753] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + ACTIONS(9426), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, sym_template_type, - STATE(3618), 1, + STATE(3601), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(6055), 1, + STATE(6132), 1, sym_ms_declspec_modifier, - STATE(7030), 1, + STATE(7052), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(4519), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6096), 2, + STATE(6128), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(6588), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [232743] = 23, + [232829] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - ACTIONS(8920), 1, + ACTIONS(7323), 1, anon_sym_LBRACE, - ACTIONS(9312), 1, + ACTIONS(9331), 1, + anon_sym_COLON_COLON, + ACTIONS(9424), 1, sym_identifier, - STATE(3104), 1, + STATE(4141), 1, sym_template_type, - STATE(5387), 1, + STATE(4371), 1, sym_field_declaration_list, - STATE(5439), 1, + STATE(4560), 1, sym__class_declaration_item, - STATE(6012), 1, + STATE(6135), 1, sym_ms_declspec_modifier, - STATE(7031), 1, + STATE(7055), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7628), 1, + sym_virtual_specifier, + STATE(8353), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(3714), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6127), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6588), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [232905] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(6073), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7849), 1, + anon_sym_COLON_COLON, + ACTIONS(9420), 1, + sym_identifier, + STATE(2150), 1, + sym_template_type, + STATE(2213), 1, + sym__class_declaration_item, + STATE(5937), 1, + sym_field_declaration_list, + STATE(6111), 1, + sym_ms_declspec_modifier, + STATE(7058), 1, + sym__scope_resolution, + STATE(7363), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8147), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(5469), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6015), 2, + STATE(6110), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(6588), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [232819] = 16, + [232981] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9025), 1, + ACTIONS(7445), 1, anon_sym_requires, - STATE(6337), 1, + ACTIONS(9453), 1, + anon_sym_LBRACK, + STATE(6370), 1, sym__function_attributes_end, - STATE(6512), 1, + STATE(6476), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9022), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 8, + ACTIONS(9451), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -556750,150 +559904,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [232881] = 23, + [233043] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6552), 1, + ACTIONS(6579), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9136), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9310), 1, + ACTIONS(9412), 1, sym_identifier, - STATE(3013), 1, + STATE(3036), 1, sym_template_type, - STATE(3546), 1, + STATE(3427), 1, sym_field_declaration_list, - STATE(3872), 1, + STATE(3860), 1, sym__class_declaration_item, - STATE(6040), 1, + STATE(6124), 1, sym_ms_declspec_modifier, - STATE(7023), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(7429), 1, + STATE(7602), 1, sym_virtual_specifier, - STATE(8193), 1, + STATE(8305), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2912), 2, + STATE(2934), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6041), 2, + STATE(6129), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(6588), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [232957] = 23, + [233119] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9394), 1, sym_identifier, - STATE(3104), 1, + STATE(2979), 1, sym_template_type, - STATE(3618), 1, - sym__class_declaration_item, - STATE(4366), 1, + STATE(3060), 1, sym_field_declaration_list, - STATE(6023), 1, + STATE(3268), 1, + sym__class_declaration_item, + STATE(6060), 1, sym_ms_declspec_modifier, - STATE(7045), 1, + STATE(7064), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6026), 2, + STATE(6059), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(6588), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [233033] = 16, + [233195] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, - anon_sym_LBRACK, - ACTIONS(9358), 1, + ACTIONS(7445), 1, anon_sym_requires, - STATE(6341), 1, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(6375), 1, sym__function_attributes_end, - STATE(6442), 1, + STATE(6532), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9355), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 8, + ACTIONS(9008), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -556902,44 +560056,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [233095] = 16, + [233257] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(7365), 1, - anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - STATE(6343), 1, + ACTIONS(9114), 1, + anon_sym_requires, + STATE(6367), 1, sym__function_attributes_end, - STATE(6452), 1, + STATE(6478), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(9111), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 8, + ACTIONS(9107), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -556948,430 +560102,588 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [233157] = 23, + [233319] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(6913), 1, + anon_sym_COLON, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9087), 1, + anon_sym_const, + ACTIONS(9356), 1, + anon_sym_STAR, + ACTIONS(9358), 1, + anon_sym_AMP_AMP, + ACTIONS(9360), 1, + anon_sym_AMP, + STATE(4401), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7296), 1, + sym__abstract_declarator, + STATE(5964), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9085), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [233377] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(5979), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9203), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(9402), 1, sym_identifier, - STATE(2790), 1, + STATE(3113), 1, sym_template_type, - STATE(2940), 1, - sym_field_declaration_list, - STATE(3064), 1, + STATE(3601), 1, sym__class_declaration_item, - STATE(6103), 1, + STATE(4379), 1, + sym_field_declaration_list, + STATE(6053), 1, sym_ms_declspec_modifier, - STATE(7024), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(7311), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8075), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2422), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6104), 2, + STATE(6054), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(6588), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [233233] = 23, + [233453] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9024), 1, + anon_sym_requires, + STATE(6368), 1, + sym__function_attributes_end, + STATE(6505), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9021), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [233515] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5290), 1, - anon_sym_LBRACE, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9102), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9398), 1, sym_identifier, - STATE(2102), 1, + STATE(3113), 1, sym_template_type, - STATE(2292), 1, + STATE(5427), 1, sym_field_declaration_list, - STATE(2433), 1, + STATE(5478), 1, sym__class_declaration_item, - STATE(6111), 1, + STATE(6144), 1, sym_ms_declspec_modifier, - STATE(7028), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(7594), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8268), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2001), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6113), 2, + STATE(6134), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(6588), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [233309] = 16, + [233591] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(7333), 1, - anon_sym_DASH_GT, - ACTIONS(7365), 1, - anon_sym_requires, - ACTIONS(9006), 1, - anon_sym_LBRACK, - STATE(6338), 1, - sym__function_attributes_end, - STATE(6446), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7903), 1, + anon_sym_COLON_COLON, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9402), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(5427), 1, + sym_field_declaration_list, + STATE(5478), 1, + sym__class_declaration_item, + STATE(6088), 1, + sym_ms_declspec_modifier, + STATE(7036), 1, + sym__scope_resolution, + STATE(7510), 1, + sym_virtual_specifier, + STATE(8051), 1, + sym_base_class_clause, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(5288), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6588), 3, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6293), 2, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [233667] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9461), 1, + anon_sym_LBRACK_LBRACK, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6587), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 8, + ACTIONS(5955), 10, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, + ACTIONS(5953), 15, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, anon_sym_try, - [233371] = 23, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_requires, + [233707] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5304), 1, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5310), 1, + ACTIONS(5342), 1, anon_sym___declspec, - ACTIONS(5314), 1, + ACTIONS(5346), 1, anon_sym_alignas, - ACTIONS(6932), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9449), 1, sym_identifier, - STATE(3104), 1, + STATE(2150), 1, sym_template_type, - STATE(3618), 1, + STATE(2213), 1, sym__class_declaration_item, - STATE(4366), 1, + STATE(2882), 1, sym_field_declaration_list, - STATE(6074), 1, + STATE(6107), 1, sym_ms_declspec_modifier, - STATE(7031), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6017), 2, + STATE(6112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 3, + STATE(6588), 3, sym_attribute_specifier, sym_alignas_specifier, aux_sym__class_declaration_repeat1, - [233447] = 14, + [233783] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(6079), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(6505), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8976), 1, - anon_sym_const, - ACTIONS(9259), 1, - anon_sym_STAR, - ACTIONS(9261), 1, - anon_sym_AMP_AMP, - ACTIONS(9263), 1, - anon_sym_AMP, - STATE(4372), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7235), 1, - sym__abstract_declarator, - STATE(5808), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8974), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [233505] = 14, + ACTIONS(9191), 1, + anon_sym_COLON_COLON, + ACTIONS(9408), 1, + sym_identifier, + STATE(2979), 1, + sym_template_type, + STATE(3060), 1, + sym_field_declaration_list, + STATE(3268), 1, + sym__class_declaration_item, + STATE(6068), 1, + sym_ms_declspec_modifier, + STATE(7067), 1, + sym__scope_resolution, + STATE(7501), 1, + sym_virtual_specifier, + STATE(8058), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(2872), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6069), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6588), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [233859] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8524), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, + anon_sym___attribute__, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(6073), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(8976), 1, - anon_sym_const, - ACTIONS(9259), 1, - anon_sym_STAR, - ACTIONS(9261), 1, - anon_sym_AMP_AMP, - ACTIONS(9263), 1, - anon_sym_AMP, - STATE(4372), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7216), 1, - sym__abstract_declarator, - STATE(5936), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8974), 11, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [233563] = 16, + ACTIONS(9133), 1, + anon_sym_COLON_COLON, + ACTIONS(9418), 1, + sym_identifier, + STATE(2150), 1, + sym_template_type, + STATE(2213), 1, + sym__class_declaration_item, + STATE(2882), 1, + sym_field_declaration_list, + STATE(6076), 1, + sym_ms_declspec_modifier, + STATE(7066), 1, + sym__scope_resolution, + STATE(7381), 1, + sym_virtual_specifier, + STATE(8090), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(2522), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6077), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6588), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [233935] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - anon_sym_DASH_GT, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8924), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5336), 1, anon_sym___attribute__, - ACTIONS(8927), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - STATE(6316), 1, - sym__function_attributes_end, - STATE(6325), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(5342), 1, + anon_sym___declspec, + ACTIONS(5346), 1, + anon_sym_alignas, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7601), 1, + anon_sym_LBRACE, + ACTIONS(9169), 1, + anon_sym_COLON_COLON, + ACTIONS(9396), 1, + sym_identifier, + STATE(4306), 1, + sym_template_type, + STATE(4572), 1, + sym_field_declaration_list, + STATE(4635), 1, + sym__class_declaration_item, + STATE(6097), 1, + sym_ms_declspec_modifier, + STATE(7057), 1, + sym__scope_resolution, + STATE(7598), 1, + sym_virtual_specifier, + STATE(8272), 1, + sym_base_class_clause, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(4008), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6099), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [233624] = 19, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6588), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + [234011] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, + ACTIONS(7915), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9017), 1, + ACTIONS(9285), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9464), 1, anon_sym_requires, - STATE(6589), 1, - sym_trailing_return_type, - STATE(6816), 1, + STATE(6744), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(6911), 1, + sym_trailing_return_type, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8908), 2, + ACTIONS(9107), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(8914), 2, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - STATE(5967), 3, + STATE(5971), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [233691] = 16, + [234078] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(7615), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9122), 1, + ACTIONS(9282), 1, anon_sym___attribute__, - ACTIONS(9125), 1, + ACTIONS(9285), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9131), 1, - anon_sym_requires, - STATE(6208), 1, - sym_trailing_return_type, - STATE(6216), 1, + STATE(6313), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(6331), 1, + sym_trailing_return_type, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9128), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 7, + ACTIONS(9107), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -557379,134 +560691,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [233752] = 16, + [234139] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - anon_sym_DASH_GT, - ACTIONS(9353), 1, - anon_sym_LBRACK, - ACTIONS(9361), 1, + ACTIONS(39), 1, anon_sym___attribute__, - ACTIONS(9364), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9370), 1, - anon_sym_requires, - STATE(6210), 1, - sym__function_attributes_end, - STATE(6229), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9367), 2, - anon_sym_final, - anon_sym_override, - STATE(6123), 2, + ACTIONS(6397), 1, + anon_sym_LBRACE, + STATE(2250), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 7, - anon_sym_COMMA, + STATE(5931), 1, + sym_enumerator_list, + ACTIONS(5657), 2, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [233813] = 16, + anon_sym_STAR, + ACTIONS(5655), 21, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [234182] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - anon_sym_DASH_GT, ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(7955), 1, anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9361), 1, - anon_sym___attribute__, - ACTIONS(9364), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - STATE(6256), 1, - sym_trailing_return_type, - STATE(6264), 1, + STATE(6797), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(6988), 1, + sym_trailing_return_type, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + ACTIONS(9008), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [233874] = 16, + STATE(5974), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [234249] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(7615), 1, anon_sym_DASH_GT, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9122), 1, + ACTIONS(9282), 1, anon_sym___attribute__, - ACTIONS(9125), 1, + ACTIONS(9285), 1, anon_sym_LBRACK_LBRACK, - STATE(6232), 1, + ACTIONS(9304), 1, + anon_sym_requires, + STATE(6261), 1, sym_trailing_return_type, - STATE(6290), 1, + STATE(6353), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + ACTIONS(9301), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 7, + ACTIONS(9107), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -557514,74 +560820,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [233935] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(7800), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8927), 1, - anon_sym_LBRACK_LBRACK, - STATE(6791), 1, - sym__function_attributes_end, - STATE(6908), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8908), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - STATE(5981), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [234002] = 8, + [234310] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(8966), 1, + ACTIONS(9053), 1, anon_sym_LT, - STATE(1935), 1, + STATE(1974), 1, sym_template_argument_list, - STATE(5871), 1, + STATE(5910), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(4145), 2, + ACTIONS(4143), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(9373), 4, + ACTIONS(9467), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4137), 17, + ACTIONS(4135), 17, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -557599,44 +560857,44 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [234047] = 16, + [234355] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(7615), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8924), 1, + ACTIONS(9031), 1, anon_sym___attribute__, - ACTIONS(8927), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8937), 1, + ACTIONS(9040), 1, anon_sym_requires, - STATE(6219), 1, - sym__function_attributes_end, - STATE(6326), 1, + STATE(6240), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(6356), 1, + sym__function_attributes_end, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8934), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 7, + ACTIONS(9008), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -557644,165 +560902,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [234108] = 19, + [234416] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7798), 1, + ACTIONS(7915), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9125), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9375), 1, + ACTIONS(9388), 1, anon_sym_requires, - STATE(6792), 1, + STATE(6742), 1, sym__function_attributes_end, - STATE(6892), 1, + STATE(6908), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9004), 2, + ACTIONS(9008), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(9128), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - STATE(5978), 3, + STATE(5979), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [234175] = 19, + [234483] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(7615), 1, + anon_sym_DASH_GT, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9031), 1, + anon_sym___attribute__, + ACTIONS(9034), 1, + anon_sym_LBRACK_LBRACK, + STATE(6239), 1, + sym_trailing_return_type, + STATE(6298), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [234544] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7662), 1, + ACTIONS(7753), 1, anon_sym_requires, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, + ACTIONS(7845), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - STATE(6635), 1, + STATE(6636), 1, sym_trailing_return_type, - STATE(6874), 1, + STATE(6902), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - ACTIONS(8908), 2, + ACTIONS(9107), 2, anon_sym_LPAREN2, anon_sym_COLON, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - STATE(5954), 3, + STATE(5968), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [234242] = 19, + [234611] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, + ACTIONS(7615), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9285), 1, + ACTIONS(9469), 1, + anon_sym___attribute__, + ACTIONS(9472), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9478), 1, anon_sym_requires, - STATE(6689), 1, + STATE(6264), 1, sym_trailing_return_type, - STATE(6815), 1, + STATE(6352), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9004), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9022), 2, + ACTIONS(9475), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - STATE(5962), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [234309] = 7, + ACTIONS(9451), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [234672] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, - ACTIONS(6385), 1, + ACTIONS(6397), 1, anon_sym_LBRACE, - STATE(2245), 1, + STATE(2267), 1, sym_attribute_specifier, - STATE(5920), 1, + STATE(5935), 1, sym_enumerator_list, - ACTIONS(5680), 2, + ACTIONS(5790), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5678), 21, + ACTIONS(5788), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -557824,333 +561124,258 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [234352] = 19, + [234715] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7662), 1, + ACTIONS(7753), 1, anon_sym_requires, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, + ACTIONS(7845), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - STATE(6590), 1, + STATE(6696), 1, sym_trailing_return_type, - STATE(6809), 1, + STATE(6834), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - ACTIONS(9004), 2, + ACTIONS(9008), 2, anon_sym_LPAREN2, anon_sym_COLON, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - STATE(5965), 3, + STATE(5996), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [234419] = 19, + [234782] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, - anon_sym_noexcept, - ACTIONS(7340), 1, - anon_sym_throw, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7798), 1, + ACTIONS(7615), 1, anon_sym_DASH_GT, - ACTIONS(7800), 1, + ACTIONS(7642), 1, anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9125), 1, + ACTIONS(9469), 1, + anon_sym___attribute__, + ACTIONS(9472), 1, anon_sym_LBRACK_LBRACK, - STATE(6711), 1, - sym__function_attributes_end, - STATE(6904), 1, + STATE(6258), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(6316), 1, + sym__function_attributes_end, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9004), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - STATE(5940), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [234486] = 19, + ACTIONS(9451), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [234843] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 1, + ACTIONS(7441), 1, anon_sym_noexcept, - ACTIONS(7340), 1, + ACTIONS(7443), 1, anon_sym_throw, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7798), 1, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7845), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9279), 1, + ACTIONS(9382), 1, anon_sym_requires, - STATE(6789), 1, - sym__function_attributes_end, - STATE(6948), 1, + STATE(6664), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(6880), 1, + sym__function_attributes_end, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8908), 2, + ACTIONS(9107), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(8934), 2, + ACTIONS(9111), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - STATE(5986), 3, + STATE(5988), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [234553] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(6385), 1, - anon_sym_LBRACE, - STATE(2181), 1, - sym_attribute_specifier, - STATE(5891), 1, - sym_enumerator_list, - ACTIONS(5735), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5733), 21, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [234596] = 16, + [234910] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7604), 1, + ACTIONS(7915), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(7955), 1, + anon_sym_requires, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9364), 1, + ACTIONS(9285), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9370), 1, - anon_sym_requires, - STATE(6229), 1, - sym_trailing_return_type, - STATE(6260), 1, + STATE(6763), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(6933), 1, + sym_trailing_return_type, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(9367), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(9378), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + ACTIONS(9107), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [234656] = 16, + STATE(5986), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [234977] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7441), 1, + anon_sym_noexcept, + ACTIONS(7443), 1, + anon_sym_throw, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7609), 1, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7845), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9250), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9256), 1, + ACTIONS(9128), 1, anon_sym_requires, - STATE(6286), 1, - sym__function_attributes_end, - STATE(6303), 1, + STATE(6726), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(6879), 1, + sym__function_attributes_end, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(9128), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9253), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 6, - anon_sym_COMMA, + ACTIONS(9008), 2, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [234716] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7636), 1, - anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(9353), 1, - anon_sym_LBRACK, - ACTIONS(9381), 1, - anon_sym_LBRACK_LBRACK, - STATE(6323), 1, - sym_trailing_return_type, - STATE(6373), 1, - sym__function_attributes_end, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, + anon_sym_COLON, + ACTIONS(9021), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5970), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [234776] = 5, + STATE(5989), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [235044] = 5, ACTIONS(3), 1, sym_comment, - STATE(5878), 1, + STATE(2941), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5938), 3, + ACTIONS(6026), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(9384), 4, + ACTIONS(9481), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5940), 18, + ACTIONS(6028), 18, anon_sym___extension__, anon_sym___attribute__, anon_sym___based, @@ -558169,54 +561394,25 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [234814] = 5, + [235082] = 7, ACTIONS(3), 1, sym_comment, - STATE(5882), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5944), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(9387), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5946), 18, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(9484), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [234852] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2918), 1, + ACTIONS(9490), 1, + sym_primitive_type, + STATE(5902), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5786), 3, + ACTIONS(5813), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(9390), 4, + ACTIONS(9487), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5789), 18, + ACTIONS(5815), 16, anon_sym___extension__, anon_sym___attribute__, anon_sym___based, @@ -558231,123 +561427,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, - [234890] = 16, + [235124] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7609), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9381), 1, + ACTIONS(9493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9394), 1, - anon_sym_requires, - STATE(6278), 1, - sym_trailing_return_type, - STATE(6301), 1, + STATE(6357), 1, sym__function_attributes_end, - STATE(7198), 1, + STATE(6361), 1, + sym_trailing_return_type, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(9367), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(9378), 2, + ACTIONS(9496), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 6, + ACTIONS(9451), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [234950] = 16, + [235184] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7623), 1, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9125), 1, + ACTIONS(9368), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9131), 1, - anon_sym_requires, - STATE(6208), 1, + STATE(6350), 1, sym_trailing_return_type, - STATE(6365), 1, + STATE(6388), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9128), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 6, + ACTIONS(9107), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [235010] = 8, + anon_sym_GT2, + [235244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5440), 1, - sym_auto, - ACTIONS(5442), 1, - anon_sym_decltype, - STATE(2172), 1, - sym_decltype_auto, - ACTIONS(9399), 2, + ACTIONS(9443), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(5933), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9397), 7, + ACTIONS(9441), 24, + anon_sym___extension__, anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(61), 12, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -558359,219 +561546,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [235054] = 16, + sym_primitive_type, + sym_identifier, + [235278] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7636), 1, + ACTIONS(7725), 1, anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9250), 1, + ACTIONS(9472), 1, anon_sym_LBRACK_LBRACK, - STATE(6314), 1, + ACTIONS(9478), 1, + anon_sym_requires, + STATE(6264), 1, sym_trailing_return_type, - STATE(6374), 1, + STATE(6412), 1, sym__function_attributes_end, - STATE(7198), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + ACTIONS(9475), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9451), 6, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [235114] = 16, + anon_sym_COLON, + anon_sym_try, + [235338] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7599), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7604), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9364), 1, + ACTIONS(9493), 1, anon_sym_LBRACK_LBRACK, - STATE(6256), 1, - sym_trailing_return_type, - STATE(6329), 1, + ACTIONS(9499), 1, + anon_sym_requires, + STATE(6294), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(6337), 1, + sym_trailing_return_type, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(9475), 2, anon_sym_final, anon_sym_override, - ACTIONS(9378), 2, + ACTIONS(9496), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 6, + ACTIONS(9451), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [235174] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(5877), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5592), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - ACTIONS(5590), 22, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [235210] = 16, + anon_sym_try, + [235398] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7604), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9071), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8937), 1, + ACTIONS(9074), 1, anon_sym_requires, - STATE(6239), 1, + STATE(6303), 1, sym__function_attributes_end, - STATE(6326), 1, + STATE(6335), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(8934), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - ACTIONS(8981), 2, + ACTIONS(9089), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 6, + ACTIONS(9008), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [235270] = 3, + anon_sym_try, + [235458] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9342), 2, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5962), 3, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(9340), 24, - anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + anon_sym_LBRACE, + ACTIONS(9502), 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - [235304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9338), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(9336), 24, + ACTIONS(5964), 18, anon_sym___extension__, + 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, @@ -558585,241 +561711,310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_primitive_type, sym_identifier, - [235338] = 16, + sym_auto, + anon_sym_decltype, + [235496] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7636), 1, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8978), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - STATE(6304), 1, + STATE(6239), 1, sym_trailing_return_type, - STATE(6375), 1, + STATE(6317), 1, sym__function_attributes_end, - STATE(7198), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(9089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 6, + ACTIONS(9008), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [235398] = 16, + anon_sym_COLON, + [235556] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7609), 1, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8978), 1, + ACTIONS(9071), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8990), 1, + ACTIONS(9074), 1, anon_sym_requires, - STATE(6284), 1, - sym__function_attributes_end, - STATE(6302), 1, + STATE(6335), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(6415), 1, + sym__function_attributes_end, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(8934), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8981), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + ACTIONS(9037), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 6, + ACTIONS(9008), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [235458] = 16, + anon_sym_GT2, + [235616] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, + ACTIONS(7642), 1, anon_sym_requires, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7623), 1, + ACTIONS(7725), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9472), 1, anon_sym_LBRACK_LBRACK, - STATE(6325), 1, + STATE(6258), 1, sym_trailing_return_type, - STATE(6378), 1, + STATE(6381), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 6, + ACTIONS(9451), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [235518] = 16, + [235676] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7623), 1, + ACTIONS(7725), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9364), 1, + ACTIONS(9285), 1, anon_sym_LBRACK_LBRACK, - STATE(6256), 1, + ACTIONS(9304), 1, + anon_sym_requires, + STATE(6261), 1, sym_trailing_return_type, - STATE(6427), 1, + STATE(6421), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + ACTIONS(9301), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 6, + ACTIONS(9107), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [235578] = 16, + [235736] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7623), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9364), 1, + ACTIONS(9368), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9370), 1, + ACTIONS(9371), 1, anon_sym_requires, - STATE(6229), 1, - sym_trailing_return_type, - STATE(6364), 1, + STATE(6295), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(6336), 1, + sym_trailing_return_type, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9367), 2, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + ACTIONS(9353), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 6, + ACTIONS(9107), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [235638] = 5, + [235796] = 8, ACTIONS(3), 1, sym_comment, - STATE(2918), 1, + ACTIONS(5552), 1, + sym_auto, + ACTIONS(5554), 1, + anon_sym_decltype, + STATE(2272), 1, + sym_decltype_auto, + ACTIONS(9507), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(5963), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9505), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [235840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9447), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(9445), 24, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + [235874] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2941), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5909), 3, + ACTIONS(6020), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(9401), 4, + ACTIONS(9509), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5911), 18, + ACTIONS(6022), 18, anon_sym___extension__, anon_sym___attribute__, anon_sym___based, @@ -558838,311 +562033,394 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [235676] = 16, + [235912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + STATE(5889), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5764), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACE, + ACTIONS(5762), 22, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(7623), 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [235948] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9285), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8937), 1, - anon_sym_requires, - STATE(6326), 1, + STATE(6331), 1, sym_trailing_return_type, - STATE(6397), 1, + STATE(6339), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8934), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + ACTIONS(9353), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 6, + ACTIONS(9107), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - [235736] = 16, + [236008] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, + ACTIONS(7642), 1, anon_sym_requires, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7623), 1, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9125), 1, + ACTIONS(9472), 1, anon_sym_LBRACK_LBRACK, - STATE(6232), 1, + STATE(6258), 1, sym_trailing_return_type, - STATE(6353), 1, + STATE(6330), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(9496), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 6, + ACTIONS(9451), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - [235796] = 16, + [236068] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7609), 1, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9250), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - STATE(6271), 1, - sym__function_attributes_end, - STATE(6314), 1, + ACTIONS(9040), 1, + anon_sym_requires, + STATE(6240), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(6283), 1, + sym__function_attributes_end, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - ACTIONS(9253), 2, + ACTIONS(9089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 6, + ACTIONS(9008), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [235856] = 16, + anon_sym_COLON, + [236128] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5766), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACE, + ACTIONS(9512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5769), 18, + anon_sym___extension__, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [236166] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7609), 1, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(7638), 1, + ACTIONS(7741), 1, anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(8978), 1, + ACTIONS(9493), 1, anon_sym_LBRACK_LBRACK, - STATE(6268), 1, - sym__function_attributes_end, - STATE(6304), 1, + STATE(6361), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(6389), 1, + sym__function_attributes_end, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(8981), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 6, + ACTIONS(9451), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [235916] = 16, + anon_sym_GT2, + [236226] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7636), 1, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9381), 1, + ACTIONS(9368), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9394), 1, + ACTIONS(9371), 1, anon_sym_requires, - STATE(6278), 1, + STATE(6336), 1, sym_trailing_return_type, - STATE(6366), 1, + STATE(6425), 1, sym__function_attributes_end, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9367), 2, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 6, + ACTIONS(9107), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - [235976] = 5, + [236286] = 16, ACTIONS(3), 1, sym_comment, - STATE(2918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5903), 3, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7725), 1, + anon_sym_DASH_GT, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9034), 1, + anon_sym_LBRACK_LBRACK, + STATE(6239), 1, + sym_trailing_return_type, + STATE(6448), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 6, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9404), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5905), 18, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [236014] = 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [236346] = 16, ACTIONS(3), 1, sym_comment, - STATE(2918), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5989), 3, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7709), 1, + anon_sym_DASH_GT, + ACTIONS(9453), 1, + anon_sym_LBRACK, + ACTIONS(9493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9499), 1, + anon_sym_requires, + STATE(6337), 1, + sym_trailing_return_type, + STATE(6427), 1, + sym__function_attributes_end, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9475), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6384), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(9407), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5991), 18, - anon_sym___extension__, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [236052] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9410), 1, - sym_identifier, - ACTIONS(9416), 1, - sym_primitive_type, - STATE(5856), 1, + anon_sym_EQ, + anon_sym_GT2, + [236406] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5897), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5636), 3, + ACTIONS(5968), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(9413), 4, + ACTIONS(9516), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5638), 16, + ACTIONS(5970), 18, anon_sym___extension__, anon_sym___attribute__, anon_sym___based, @@ -559157,111 +562435,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + sym_identifier, sym_auto, anon_sym_decltype, - [236094] = 16, + [236444] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7599), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7604), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9125), 1, - anon_sym_LBRACK_LBRACK, - STATE(6232), 1, - sym_trailing_return_type, - STATE(6313), 1, - sym__function_attributes_end, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9253), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [236154] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7441), 1, + ACTIONS(7741), 1, anon_sym_requires, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7604), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9368), 1, anon_sym_LBRACK_LBRACK, - STATE(6289), 1, + STATE(6343), 1, sym__function_attributes_end, - STATE(6325), 1, + STATE(6350), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(8981), 2, + ACTIONS(9353), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 6, + ACTIONS(9107), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [236214] = 5, + anon_sym_try, + [236504] = 5, ACTIONS(3), 1, sym_comment, - STATE(2918), 1, + STATE(5881), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5993), 3, + ACTIONS(5974), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(9419), 4, + ACTIONS(9519), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5995), 18, + ACTIONS(5976), 18, anon_sym___extension__, anon_sym___attribute__, anon_sym___based, @@ -559280,31 +562516,24 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [236252] = 8, + [236542] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5440), 1, - sym_auto, - ACTIONS(5442), 1, - anon_sym_decltype, - STATE(2172), 1, - sym_decltype_auto, - ACTIONS(9424), 2, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5988), 3, anon_sym_LPAREN2, anon_sym_STAR, - STATE(5934), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9422), 7, - anon_sym___based, + anon_sym_LBRACE, + ACTIONS(9522), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(61), 12, + ACTIONS(5986), 18, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -559316,311 +562545,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [236296] = 16, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [236580] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7609), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(7638), 1, + ACTIONS(7741), 1, anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9381), 1, + ACTIONS(9071), 1, anon_sym_LBRACK_LBRACK, - STATE(6285), 1, - sym__function_attributes_end, - STATE(6323), 1, + STATE(6318), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(6342), 1, + sym__function_attributes_end, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - ACTIONS(9378), 2, + ACTIONS(9089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 6, + ACTIONS(9008), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [236356] = 16, + [236640] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5552), 1, + sym_auto, + ACTIONS(5554), 1, + anon_sym_decltype, + STATE(2272), 1, + sym_decltype_auto, + ACTIONS(9527), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(5966), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9525), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(61), 12, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [236684] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7636), 1, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9250), 1, + ACTIONS(9071), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9256), 1, - anon_sym_requires, - STATE(6303), 1, + STATE(6318), 1, sym_trailing_return_type, - STATE(6367), 1, + STATE(6393), 1, sym__function_attributes_end, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9128), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 6, + ACTIONS(9008), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - [236416] = 16, + [236744] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7604), 1, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9125), 1, + ACTIONS(9285), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9131), 1, + ACTIONS(9304), 1, anon_sym_requires, - STATE(6208), 1, + STATE(6261), 1, sym_trailing_return_type, - STATE(6241), 1, + STATE(6290), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(9128), 2, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - ACTIONS(9253), 2, + ACTIONS(9353), 2, anon_sym_asm, anon_sym___asm__, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 6, + ACTIONS(9107), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [236476] = 16, + [236804] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7636), 1, + ACTIONS(7725), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8978), 1, + ACTIONS(9034), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8990), 1, + ACTIONS(9040), 1, anon_sym_requires, - STATE(6302), 1, + STATE(6240), 1, sym_trailing_return_type, - STATE(6368), 1, + STATE(6385), 1, sym__function_attributes_end, - STATE(7198), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8934), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9008), 6, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [236536] = 16, + anon_sym_COLON, + anon_sym_try, + [236864] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7660), 1, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9017), 1, + ACTIONS(9472), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9478), 1, anon_sym_requires, - STATE(6527), 1, - sym__function_attributes_end, - STATE(6589), 1, + STATE(6264), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(6292), 1, + sym__function_attributes_end, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8914), 2, + ACTIONS(9475), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + ACTIONS(9496), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 5, + ACTIONS(9451), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [236595] = 5, + anon_sym_EQ, + anon_sym_COLON, + [236924] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7723), 1, anon_sym___attribute__, - STATE(2194), 1, + ACTIONS(7725), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9285), 1, + anon_sym_LBRACK_LBRACK, + STATE(6331), 1, + sym_trailing_return_type, + STATE(6454), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6161), 2, sym_attribute_specifier, - ACTIONS(5837), 2, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 6, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5835), 21, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [236632] = 16, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [236984] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7660), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9426), 1, + ACTIONS(9529), 1, anon_sym_requires, - STATE(6515), 1, + STATE(6599), 1, sym__function_attributes_end, - STATE(6662), 1, + STATE(6673), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9355), 2, + ACTIONS(9455), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 5, + ACTIONS(9451), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [236691] = 5, + [237043] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, - STATE(2242), 1, + STATE(2247), 1, sym_attribute_specifier, - ACTIONS(5855), 2, + ACTIONS(5837), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5853), 21, + ACTIONS(5835), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -559642,85 +562924,85 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [236728] = 16, + [237080] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7660), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(7662), 1, - anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - STATE(6568), 1, + ACTIONS(9128), 1, + anon_sym_requires, + STATE(6590), 1, sym__function_attributes_end, - STATE(6635), 1, + STATE(6726), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(9021), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 5, + ACTIONS(9008), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [236787] = 17, + [237139] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9102), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(9439), 1, sym_identifier, - ACTIONS(9429), 1, + ACTIONS(9532), 1, anon_sym_LPAREN2, - ACTIONS(9431), 1, + ACTIONS(9534), 1, anon_sym_LBRACE, - ACTIONS(9435), 1, + ACTIONS(9538), 1, anon_sym_requires, - STATE(2102), 1, + STATE(2960), 1, sym_template_type, - STATE(2786), 1, + STATE(4078), 1, sym_requirement_seq, - STATE(6396), 1, + STATE(6413), 1, sym_lambda_capture_specifier, - STATE(7028), 1, + STATE(7040), 1, sym__scope_resolution, - STATE(8200), 1, + STATE(8342), 1, sym_requires_parameter_list, - ACTIONS(9433), 2, + ACTIONS(9536), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2783), 8, + STATE(4079), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -559729,117 +563011,129 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [236848] = 5, + [237200] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2217), 1, - sym_attribute_specifier, - ACTIONS(5819), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5817), 21, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, anon_sym_decltype, - [236885] = 16, + ACTIONS(2846), 1, + anon_sym_LBRACK, + ACTIONS(9309), 1, + anon_sym_COLON_COLON, + ACTIONS(9431), 1, + sym_identifier, + ACTIONS(9540), 1, + anon_sym_LPAREN2, + ACTIONS(9542), 1, + anon_sym_LBRACE, + ACTIONS(9546), 1, + anon_sym_requires, + STATE(2846), 1, + sym_template_type, + STATE(3563), 1, + sym_requirement_seq, + STATE(6378), 1, + sym_lambda_capture_specifier, + STATE(7059), 1, + sym__scope_resolution, + STATE(8268), 1, + sym_requires_parameter_list, + ACTIONS(9544), 2, + sym_true, + sym_false, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3561), 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, + [237261] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7652), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(8978), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9014), 1, + ACTIONS(9382), 1, anon_sym_requires, - STATE(6513), 1, + STATE(6554), 1, sym__function_attributes_end, - STATE(6670), 1, + STATE(6664), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8934), 2, + ACTIONS(9111), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 5, + ACTIONS(9107), 5, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_try, - [236944] = 17, + [237320] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9066), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(9408), 1, sym_identifier, - ACTIONS(9437), 1, + ACTIONS(9548), 1, anon_sym_LPAREN2, - ACTIONS(9439), 1, + ACTIONS(9550), 1, anon_sym_LBRACE, - ACTIONS(9443), 1, + ACTIONS(9554), 1, anon_sym_requires, - STATE(2903), 1, + STATE(2979), 1, sym_template_type, - STATE(3798), 1, + STATE(4873), 1, sym_requirement_seq, - STATE(6351), 1, + STATE(6406), 1, sym_lambda_capture_specifier, - STATE(7002), 1, + STATE(7067), 1, sym__scope_resolution, - STATE(8283), 1, + STATE(8249), 1, sym_requires_parameter_list, - ACTIONS(9441), 2, + ACTIONS(9552), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3824), 8, + STATE(5313), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -559848,129 +563142,128 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [237005] = 16, + [237381] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7660), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(7662), 1, + ACTIONS(7753), 1, anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - STATE(6569), 1, + STATE(6583), 1, sym__function_attributes_end, - STATE(6590), 1, + STATE(6645), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 5, + ACTIONS(9451), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [237064] = 17, + [237440] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7751), 1, + anon_sym_DASH_GT, + ACTIONS(7753), 1, + anon_sym_requires, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9225), 1, - anon_sym_COLON_COLON, - ACTIONS(9316), 1, - sym_identifier, - ACTIONS(9445), 1, + STATE(6596), 1, + sym__function_attributes_end, + STATE(6636), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9447), 1, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9451), 1, - anon_sym_requires, - STATE(2929), 1, - sym_template_type, - STATE(3945), 1, - sym_requirement_seq, - STATE(6418), 1, - sym_lambda_capture_specifier, - STATE(7032), 1, - sym__scope_resolution, - STATE(8382), 1, - sym_requires_parameter_list, - ACTIONS(9449), 2, - sym_true, - sym_false, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3943), 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, - [237125] = 17, + [237499] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9136), 1, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(9310), 1, + ACTIONS(9424), 1, sym_identifier, - ACTIONS(9453), 1, + ACTIONS(9556), 1, anon_sym_LPAREN2, - ACTIONS(9455), 1, + ACTIONS(9558), 1, anon_sym_LBRACE, - ACTIONS(9459), 1, + ACTIONS(9562), 1, anon_sym_requires, - STATE(3013), 1, - sym_template_type, - STATE(4156), 1, + STATE(3808), 1, sym_requirement_seq, - STATE(6355), 1, + STATE(4141), 1, + sym_template_type, + STATE(6458), 1, sym_lambda_capture_specifier, - STATE(7023), 1, + STATE(7055), 1, sym__scope_resolution, - STATE(8145), 1, + STATE(8081), 1, sym_requires_parameter_list, - ACTIONS(9457), 2, + ACTIONS(9560), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4158), 8, + STATE(4717), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -559979,128 +563272,85 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [237186] = 16, + [237560] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7660), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9285), 1, + ACTIONS(7753), 1, anon_sym_requires, - STATE(6560), 1, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(6564), 1, sym__function_attributes_end, - STATE(6689), 1, + STATE(6696), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9022), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 5, + ACTIONS(9008), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [237245] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7652), 1, - anon_sym_DASH_GT, - ACTIONS(7654), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8978), 1, - anon_sym_LBRACK_LBRACK, - STATE(6475), 1, - sym__function_attributes_end, - STATE(6636), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [237304] = 17, + [237619] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9088), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9400), 1, sym_identifier, - ACTIONS(9461), 1, + ACTIONS(9564), 1, anon_sym_LPAREN2, - ACTIONS(9463), 1, + ACTIONS(9566), 1, anon_sym_LBRACE, - ACTIONS(9467), 1, + ACTIONS(9570), 1, anon_sym_requires, - STATE(2134), 1, + STATE(2181), 1, sym_template_type, - STATE(3910), 1, + STATE(2784), 1, sym_requirement_seq, - STATE(6417), 1, + STATE(6459), 1, sym_lambda_capture_specifier, - STATE(7040), 1, + STATE(7033), 1, sym__scope_resolution, - STATE(8299), 1, + STATE(8428), 1, sym_requires_parameter_list, - ACTIONS(9465), 2, + ACTIONS(9568), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4686), 8, + STATE(2782), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -560109,12 +563359,76 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [237365] = 5, + [237680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(2231), 1, + sym_attribute_specifier, + ACTIONS(5866), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5864), 21, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [237717] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(2222), 1, + sym_attribute_specifier, + ACTIONS(5855), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5853), 21, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [237754] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, - STATE(2195), 1, + STATE(2227), 1, sym_attribute_specifier, ACTIONS(5841), 2, anon_sym_LPAREN2, @@ -560141,103 +563455,167 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [237402] = 16, + [237791] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7660), 1, + ACTIONS(7769), 1, anon_sym_DASH_GT, - ACTIONS(7662), 1, + ACTIONS(7800), 1, anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - STATE(6549), 1, + ACTIONS(9368), 1, + anon_sym_LBRACK_LBRACK, + STATE(6483), 1, sym__function_attributes_end, - STATE(6648), 1, + STATE(6694), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 5, - anon_sym_COMMA, + ACTIONS(9107), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [237461] = 16, + anon_sym_try, + [237850] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(2228), 1, + sym_attribute_specifier, + ACTIONS(5885), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5883), 21, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [237887] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + STATE(2248), 1, + sym_attribute_specifier, + ACTIONS(5911), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5909), 21, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [237924] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7652), 1, + ACTIONS(7769), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(7800), 1, + anon_sym_requires, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9250), 1, + ACTIONS(9493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9282), 1, - anon_sym_requires, - STATE(6459), 1, + STATE(6477), 1, sym__function_attributes_end, - STATE(6663), 1, + STATE(6706), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9128), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 5, + ACTIONS(9451), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [237520] = 5, + [237983] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, - STATE(2249), 1, + STATE(2219), 1, sym_attribute_specifier, - ACTIONS(5851), 2, + ACTIONS(5881), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5849), 21, + ACTIONS(5879), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -560259,56 +563637,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [237557] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK, - ACTIONS(9044), 1, - anon_sym_COLON_COLON, - ACTIONS(9334), 1, - sym_identifier, - ACTIONS(9461), 1, - anon_sym_LPAREN2, - ACTIONS(9463), 1, - anon_sym_LBRACE, - ACTIONS(9467), 1, - anon_sym_requires, - STATE(3910), 1, - sym_requirement_seq, - STATE(4133), 1, - sym_template_type, - STATE(6417), 1, - sym_lambda_capture_specifier, - STATE(7041), 1, - sym__scope_resolution, - STATE(8299), 1, - sym_requires_parameter_list, - ACTIONS(9469), 2, - sym_true, - sym_false, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4673), 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, - [237618] = 5, + [238020] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, - STATE(2233), 1, + STATE(2259), 1, sym_attribute_specifier, ACTIONS(5823), 2, anon_sym_LPAREN2, @@ -560335,42 +563669,42 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [237655] = 17, + [238057] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9203), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(9418), 1, sym_identifier, - ACTIONS(9471), 1, + ACTIONS(9556), 1, anon_sym_LPAREN2, - ACTIONS(9473), 1, + ACTIONS(9558), 1, anon_sym_LBRACE, - ACTIONS(9477), 1, + ACTIONS(9562), 1, anon_sym_requires, - STATE(2790), 1, + STATE(2150), 1, sym_template_type, - STATE(3472), 1, + STATE(3808), 1, sym_requirement_seq, - STATE(6349), 1, + STATE(6458), 1, sym_lambda_capture_specifier, - STATE(7024), 1, + STATE(7066), 1, sym__scope_resolution, - STATE(8099), 1, + STATE(8081), 1, sym_requires_parameter_list, - ACTIONS(9475), 2, + ACTIONS(9572), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3463), 8, + STATE(4686), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -560379,74 +563713,85 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [237716] = 5, + [238118] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, - ACTIONS(5457), 1, - anon_sym_LBRACE, - ACTIONS(5535), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5537), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7769), 1, + anon_sym_DASH_GT, + ACTIONS(9453), 1, + anon_sym_LBRACK, + ACTIONS(9493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9574), 1, + anon_sym_requires, + STATE(6489), 1, + sym__function_attributes_end, + STATE(6646), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9475), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6384), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 5, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [237753] = 17, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [238177] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9171), 1, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9344), 1, + ACTIONS(9396), 1, sym_identifier, - ACTIONS(9479), 1, + ACTIONS(9577), 1, anon_sym_LPAREN2, - ACTIONS(9481), 1, + ACTIONS(9579), 1, anon_sym_LBRACE, - ACTIONS(9485), 1, + ACTIONS(9583), 1, anon_sym_requires, - STATE(4257), 1, + STATE(4306), 1, sym_template_type, - STATE(4797), 1, + STATE(4813), 1, sym_requirement_seq, - STATE(6408), 1, + STATE(6411), 1, sym_lambda_capture_specifier, - STATE(7006), 1, + STATE(7057), 1, sym__scope_resolution, - STATE(8137), 1, + STATE(8344), 1, sym_requires_parameter_list, - ACTIONS(9483), 2, + ACTIONS(9581), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4798), 8, + STATE(4814), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -560455,92 +563800,191 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [237814] = 5, + [238238] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - STATE(2238), 1, + ACTIONS(7769), 1, + anon_sym_DASH_GT, + ACTIONS(7800), 1, + anon_sym_requires, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9071), 1, + anon_sym_LBRACK_LBRACK, + STATE(6523), 1, + sym__function_attributes_end, + STATE(6676), 1, + sym_trailing_return_type, + STATE(7227), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6006), 2, sym_attribute_specifier, - ACTIONS(5863), 2, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6263), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5861), 21, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [238297] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(2846), 1, + anon_sym_LBRACK, + ACTIONS(9205), 1, + anon_sym_COLON_COLON, + ACTIONS(9422), 1, sym_identifier, - sym_auto, + ACTIONS(9585), 1, + anon_sym_LPAREN2, + ACTIONS(9587), 1, + anon_sym_LBRACE, + ACTIONS(9591), 1, + anon_sym_requires, + STATE(2917), 1, + sym_template_type, + STATE(3745), 1, + sym_requirement_seq, + STATE(6380), 1, + sym_lambda_capture_specifier, + STATE(7053), 1, + sym__scope_resolution, + STATE(8118), 1, + sym_requires_parameter_list, + ACTIONS(9589), 2, + sym_true, + sym_false, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3743), 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, + [238358] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, anon_sym_decltype, - [237851] = 16, + ACTIONS(2846), 1, + anon_sym_LBRACK, + ACTIONS(9147), 1, + anon_sym_COLON_COLON, + ACTIONS(9412), 1, + sym_identifier, + ACTIONS(9593), 1, + anon_sym_LPAREN2, + ACTIONS(9595), 1, + anon_sym_LBRACE, + ACTIONS(9599), 1, + anon_sym_requires, + STATE(3036), 1, + sym_template_type, + STATE(4254), 1, + sym_requirement_seq, + STATE(6460), 1, + sym_lambda_capture_specifier, + STATE(7041), 1, + sym__scope_resolution, + STATE(8048), 1, + sym_requires_parameter_list, + ACTIONS(9597), 2, + sym_true, + sym_false, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4184), 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, + [238419] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7652), 1, + ACTIONS(7769), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9381), 1, + ACTIONS(9368), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9487), 1, + ACTIONS(9391), 1, anon_sym_requires, - STATE(6487), 1, + STATE(6468), 1, sym__function_attributes_end, - STATE(6658), 1, + STATE(6632), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9367), 2, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 5, + ACTIONS(9107), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [237910] = 5, + [238478] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, - STATE(2180), 1, + STATE(2204), 1, sym_attribute_specifier, - ACTIONS(5833), 2, + ACTIONS(5877), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5831), 21, + ACTIONS(5875), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -560562,60 +564006,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [237947] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7652), 1, - anon_sym_DASH_GT, - ACTIONS(7654), 1, - anon_sym_requires, - ACTIONS(9353), 1, - anon_sym_LBRACK, - ACTIONS(9381), 1, - anon_sym_LBRACK_LBRACK, - STATE(6456), 1, - sym__function_attributes_end, - STATE(6669), 1, - sym_trailing_return_type, - STATE(7198), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(5970), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6293), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [238006] = 5, + [238515] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, - STATE(2177), 1, + STATE(2251), 1, sym_attribute_specifier, - ACTIONS(5829), 2, + ACTIONS(5915), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5827), 21, + ACTIONS(5913), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -560637,67 +564038,68 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [238043] = 16, + [238552] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7652), 1, + ACTIONS(7769), 1, anon_sym_DASH_GT, - ACTIONS(7654), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9250), 1, + ACTIONS(9071), 1, anon_sym_LBRACK_LBRACK, - STATE(6448), 1, + ACTIONS(9117), 1, + anon_sym_requires, + STATE(6485), 1, sym__function_attributes_end, - STATE(6702), 1, + STATE(6631), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - STATE(5970), 2, + ACTIONS(9037), 2, + anon_sym_final, + anon_sym_override, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 5, + ACTIONS(9008), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [238102] = 5, + [238611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - STATE(2219), 1, - sym_attribute_specifier, - ACTIONS(5897), 2, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(5533), 1, + anon_sym_LBRACE, + ACTIONS(5418), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5420), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5895), 21, + anon_sym_AMP_AMP, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -560708,65 +564110,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, sym_auto, anon_sym_decltype, - [238139] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK, - ACTIONS(9030), 1, - anon_sym_COLON_COLON, - ACTIONS(9320), 1, - sym_identifier, - ACTIONS(9490), 1, - anon_sym_LPAREN2, - ACTIONS(9492), 1, - anon_sym_LBRACE, - ACTIONS(9496), 1, - anon_sym_requires, - STATE(2997), 1, - sym_template_type, - STATE(4827), 1, - sym_requirement_seq, - STATE(6361), 1, - sym_lambda_capture_specifier, - STATE(7027), 1, - sym__scope_resolution, - STATE(8372), 1, - sym_requires_parameter_list, - ACTIONS(9494), 2, - sym_true, - sym_false, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5301), 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, - [238200] = 5, + anon_sym_GT2, + [238648] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, - STATE(2210), 1, + STATE(2255), 1, sym_attribute_specifier, - ACTIONS(5884), 2, + ACTIONS(5851), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5882), 21, + ACTIONS(5849), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -560788,17 +564145,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [238237] = 5, + [238685] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, - STATE(2240), 1, + STATE(2203), 1, sym_attribute_specifier, - ACTIONS(5859), 2, + ACTIONS(5873), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5857), 21, + ACTIONS(5871), 21, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -560820,136 +564177,136 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [238274] = 16, + [238722] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7707), 1, + ACTIONS(7806), 1, anon_sym_DASH_GT, - ACTIONS(7714), 1, - anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - STATE(6672), 1, + ACTIONS(9601), 1, + anon_sym_requires, + STATE(6677), 1, sym__function_attributes_end, - STATE(6851), 1, + STATE(6886), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(9455), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 4, + ACTIONS(9451), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [238332] = 16, + [238780] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7707), 1, + ACTIONS(7806), 1, anon_sym_DASH_GT, - ACTIONS(7714), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - STATE(6661), 1, + ACTIONS(9428), 1, + anon_sym_requires, + STATE(6689), 1, sym__function_attributes_end, - STATE(6853), 1, + STATE(6889), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(9111), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 4, + ACTIONS(9107), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [238390] = 11, + [238838] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7984), 1, + ACTIONS(8089), 1, anon_sym_STAR, - ACTIONS(7986), 1, + ACTIONS(8091), 1, anon_sym_AMP_AMP, - ACTIONS(7988), 1, + ACTIONS(8093), 1, anon_sym_AMP, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - STATE(4057), 1, + STATE(4160), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6558), 1, + STATE(6585), 1, sym__abstract_declarator, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7914), 11, + ACTIONS(8031), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [238438] = 4, + [238886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5457), 1, + ACTIONS(5533), 1, anon_sym_LBRACE, - ACTIONS(5535), 2, + ACTIONS(5418), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5537), 21, + ACTIONS(5420), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -560971,32 +564328,32 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [238472] = 11, + [238920] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7982), 1, + ACTIONS(8087), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(8095), 1, anon_sym_LBRACK, - ACTIONS(8050), 1, + ACTIONS(8101), 1, anon_sym_STAR, - ACTIONS(8052), 1, + ACTIONS(8103), 1, anon_sym_AMP_AMP, - ACTIONS(8054), 1, + ACTIONS(8105), 1, anon_sym_AMP, - STATE(4101), 1, + STATE(4133), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6467), 1, sym__function_declarator_seq, - STATE(6531), 1, + STATE(6548), 1, sym__abstract_declarator, - STATE(6382), 5, + STATE(6383), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7914), 11, + ACTIONS(8031), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -561008,252 +564365,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [238520] = 16, + [238968] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7707), 1, + ACTIONS(7806), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9498), 1, + ACTIONS(9225), 1, anon_sym_requires, - STATE(6603), 1, + STATE(6692), 1, sym__function_attributes_end, - STATE(6832), 1, + STATE(6850), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9355), 2, + ACTIONS(9021), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 4, + ACTIONS(9008), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [238578] = 16, + [239026] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5889), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5420), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(9604), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5418), 17, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [239062] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8109), 1, + anon_sym_STAR, + ACTIONS(8111), 1, + anon_sym_AMP_AMP, + ACTIONS(8113), 1, + anon_sym_AMP, + STATE(4017), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6577), 1, + sym__abstract_declarator, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8031), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [239110] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7707), 1, + ACTIONS(7806), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9295), 1, + ACTIONS(7808), 1, anon_sym_requires, - STATE(6618), 1, + ACTIONS(9453), 1, + anon_sym_LBRACK, + STATE(6731), 1, sym__function_attributes_end, - STATE(6861), 1, + STATE(6858), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9022), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 4, + ACTIONS(9451), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [238636] = 16, + [239168] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7707), 1, + ACTIONS(7806), 1, anon_sym_DASH_GT, - ACTIONS(7714), 1, + ACTIONS(7808), 1, anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - STATE(6654), 1, + STATE(6735), 1, sym__function_attributes_end, - STATE(6864), 1, + STATE(6874), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 4, + ACTIONS(9107), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [238694] = 16, + [239226] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7707), 1, + ACTIONS(7806), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(9166), 1, + ACTIONS(7808), 1, anon_sym_requires, - STATE(6627), 1, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(6729), 1, sym__function_attributes_end, - STATE(6868), 1, + STATE(6865), 1, sym_trailing_return_type, - STATE(7198), 1, + STATE(7227), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8914), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(5970), 2, + STATE(6006), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6293), 2, + STATE(6263), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 4, + ACTIONS(9008), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [238752] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(7996), 1, - anon_sym_STAR, - ACTIONS(7998), 1, - anon_sym_AMP_AMP, - ACTIONS(8000), 1, - anon_sym_AMP, - STATE(4139), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6528), 1, - sym__abstract_declarator, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7914), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [238800] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5877), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5537), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(9501), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5535), 17, - 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [238836] = 5, + [239284] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9506), 2, + ACTIONS(9609), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(5440), 2, + STATE(5439), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(9504), 7, + ACTIONS(9607), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -561274,26 +564631,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [238871] = 5, + [239319] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9510), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(5440), 2, + ACTIONS(5424), 1, + anon_sym_AMP, + ACTIONS(9614), 1, + anon_sym_const, + STATE(5964), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(9508), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(61), 12, + ACTIONS(5426), 8, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9611), 11, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -561304,32 +564662,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [238906] = 11, + [239356] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8115), 1, + ACTIONS(8199), 1, anon_sym_STAR, - ACTIONS(8117), 1, + ACTIONS(8201), 1, anon_sym_AMP_AMP, - ACTIONS(8119), 1, + ACTIONS(8203), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - STATE(3757), 1, + STATE(3863), 1, sym_parameter_list, - STATE(6617), 1, - sym__abstract_declarator, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(6616), 5, + STATE(6643), 1, + sym__abstract_declarator, + STATE(6663), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7914), 10, + ACTIONS(8031), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -561340,27 +564698,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [238953] = 6, + [239403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 1, - anon_sym_AMP, - ACTIONS(9515), 1, - anon_sym_const, - STATE(5936), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5517), 8, + ACTIONS(9619), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9512), 11, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9617), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(61), 12, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -561371,36 +564728,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [238990] = 14, + [239438] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7778), 1, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9424), 1, sym_identifier, - ACTIONS(9518), 1, - anon_sym_LPAREN2, - ACTIONS(9522), 1, + ACTIONS(9562), 1, anon_sym_requires, - STATE(3104), 1, + ACTIONS(9621), 1, + anon_sym_LPAREN2, + STATE(4141), 1, sym_template_type, - STATE(6352), 1, + STATE(6458), 1, sym_lambda_capture_specifier, - STATE(7045), 1, + STATE(7055), 1, sym__scope_resolution, - ACTIONS(9520), 2, + ACTIONS(9623), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6247), 8, + STATE(4689), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -561409,83 +564766,114 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [239042] = 23, + [239490] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2130), 1, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7753), 1, + anon_sym_requires, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + ACTIONS(9453), 1, + anon_sym_LBRACK, + STATE(6645), 1, + sym_trailing_return_type, + STATE(6832), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9451), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6638), 2, + sym__function_postfix, + sym_requires_clause, + [239546] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(8480), 1, - anon_sym_STAR, - ACTIONS(9524), 1, - sym_identifier, - ACTIONS(9526), 1, - anon_sym_TILDE, - ACTIONS(9528), 1, + ACTIONS(2846), 1, + anon_sym_LBRACK, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9530), 1, - anon_sym_template, - ACTIONS(9532), 1, - anon_sym_operator, - STATE(3014), 1, - sym_dependent_identifier, - STATE(3015), 1, - sym_pointer_type_declarator, - STATE(3020), 1, + ACTIONS(9422), 1, + sym_identifier, + ACTIONS(9591), 1, + anon_sym_requires, + ACTIONS(9625), 1, + anon_sym_LPAREN2, + STATE(2917), 1, sym_template_type, - STATE(3023), 1, - sym_template_function, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3029), 1, - sym_destructor_name, - STATE(3038), 1, - sym_operator_name, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(3053), 1, - sym_qualified_identifier, - STATE(5938), 1, + STATE(6380), 1, + sym_lambda_capture_specifier, + STATE(7053), 1, sym__scope_resolution, - STATE(7295), 1, - sym_qualified_operator_cast_identifier, - STATE(7297), 1, - sym_operator_cast, - STATE(9084), 1, + ACTIONS(9627), 2, + sym_true, + sym_false, + STATE(9043), 2, sym_decltype, - STATE(9156), 1, - sym_ms_based_modifier, - [239112] = 14, + sym_dependent_type_identifier, + STATE(3884), 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, + [239598] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9136), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9310), 1, + ACTIONS(9422), 1, sym_identifier, - ACTIONS(9459), 1, + ACTIONS(9591), 1, anon_sym_requires, - ACTIONS(9534), 1, + ACTIONS(9625), 1, anon_sym_LPAREN2, - STATE(3013), 1, + STATE(2917), 1, sym_template_type, - STATE(6355), 1, + STATE(6380), 1, sym_lambda_capture_specifier, - STATE(7023), 1, + STATE(7053), 1, sym__scope_resolution, - ACTIONS(9536), 2, + ACTIONS(9629), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4179), 8, + STATE(3881), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -561494,76 +564882,76 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [239164] = 16, + [239650] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7798), 1, + ACTIONS(7915), 1, anon_sym_DASH_GT, - ACTIONS(7800), 1, - anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9364), 1, + ACTIONS(9472), 1, anon_sym_LBRACK_LBRACK, - STATE(6795), 1, + ACTIONS(9631), 1, + anon_sym_requires, + STATE(6745), 1, sym__function_attributes_end, - STATE(6902), 1, + STATE(6914), 1, sym_trailing_return_type, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9351), 2, + ACTIONS(9451), 2, anon_sym_LPAREN2, anon_sym_COLON, - STATE(6123), 2, + ACTIONS(9475), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - [239220] = 14, + [239706] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9538), 1, - sym_identifier, - ACTIONS(9540), 1, - anon_sym_LPAREN2, - ACTIONS(9542), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(9546), 1, + ACTIONS(9439), 1, + sym_identifier, + ACTIONS(9538), 1, anon_sym_requires, - STATE(2712), 1, + ACTIONS(9634), 1, + anon_sym_LPAREN2, + STATE(2960), 1, sym_template_type, - STATE(6429), 1, + STATE(6413), 1, sym_lambda_capture_specifier, - STATE(7034), 1, + STATE(7040), 1, sym__scope_resolution, - ACTIONS(9544), 2, + ACTIONS(9636), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(1958), 8, + STATE(4072), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -561572,76 +564960,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [239272] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7662), 1, - anon_sym_requires, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - STATE(6635), 1, - sym_trailing_return_type, - STATE(6874), 1, - sym__function_attributes_end, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8908), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - [239328] = 14, + [239758] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7764), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9439), 1, sym_identifier, - ACTIONS(9540), 1, - anon_sym_LPAREN2, - ACTIONS(9546), 1, + ACTIONS(9538), 1, anon_sym_requires, - STATE(3104), 1, + ACTIONS(9634), 1, + anon_sym_LPAREN2, + STATE(2960), 1, sym_template_type, - STATE(6419), 1, + STATE(6413), 1, sym_lambda_capture_specifier, - STATE(7018), 1, + STATE(7040), 1, sym__scope_resolution, - ACTIONS(9548), 2, + ACTIONS(9638), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6270), 8, + STATE(4070), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -561650,36 +564998,76 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [239380] = 14, + [239810] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(7955), 1, + anon_sym_requires, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9285), 1, + anon_sym_LBRACK_LBRACK, + STATE(6763), 1, + sym__function_attributes_end, + STATE(6933), 1, + sym_trailing_return_type, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9107), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + [239866] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(3936), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9402), 1, sym_identifier, - ACTIONS(9540), 1, + ACTIONS(9640), 1, anon_sym_LPAREN2, - ACTIONS(9546), 1, + ACTIONS(9644), 1, anon_sym_requires, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(6419), 1, + STATE(6416), 1, sym_lambda_capture_specifier, STATE(7036), 1, sym__scope_resolution, - ACTIONS(9550), 2, + ACTIONS(9642), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6653), 8, + STATE(6254), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -561688,36 +565076,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [239432] = 14, + [239918] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9538), 1, - sym_identifier, - ACTIONS(9540), 1, - anon_sym_LPAREN2, - ACTIONS(9542), 1, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(9546), 1, + ACTIONS(9424), 1, + sym_identifier, + ACTIONS(9562), 1, anon_sym_requires, - STATE(2712), 1, + ACTIONS(9621), 1, + anon_sym_LPAREN2, + STATE(4141), 1, sym_template_type, - STATE(6429), 1, + STATE(6458), 1, sym_lambda_capture_specifier, - STATE(7034), 1, + STATE(7055), 1, sym__scope_resolution, - ACTIONS(9552), 2, + ACTIONS(9646), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2711), 8, + STATE(3783), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -561726,36 +565114,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [239484] = 14, + [239970] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9030), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(9320), 1, + ACTIONS(9449), 1, sym_identifier, - ACTIONS(9496), 1, + ACTIONS(9562), 1, anon_sym_requires, - ACTIONS(9554), 1, + ACTIONS(9621), 1, anon_sym_LPAREN2, - STATE(2997), 1, + STATE(2150), 1, sym_template_type, - STATE(6361), 1, + STATE(6458), 1, sym_lambda_capture_specifier, - STATE(7027), 1, + STATE(7068), 1, sym__scope_resolution, - ACTIONS(9556), 2, + ACTIONS(9646), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5288), 8, + STATE(3783), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -561764,36 +565152,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [239536] = 14, + [240022] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9225), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(9402), 1, sym_identifier, - ACTIONS(9451), 1, - anon_sym_requires, - ACTIONS(9558), 1, + ACTIONS(9640), 1, anon_sym_LPAREN2, - STATE(2929), 1, + ACTIONS(9644), 1, + anon_sym_requires, + STATE(3113), 1, sym_template_type, - STATE(6418), 1, + STATE(6416), 1, sym_lambda_capture_specifier, - STATE(7032), 1, + STATE(7036), 1, sym__scope_resolution, - ACTIONS(9560), 2, + ACTIONS(9648), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4011), 8, + STATE(6249), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -561802,120 +565190,162 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [239588] = 22, + [240074] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9285), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9464), 1, + anon_sym_requires, + STATE(6744), 1, + sym__function_attributes_end, + STATE(6911), 1, + sym_trailing_return_type, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9107), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9301), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + [240130] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9564), 1, + ACTIONS(9652), 1, anon_sym_SEMI, - ACTIONS(9566), 1, + ACTIONS(9654), 1, anon_sym_LBRACE, - ACTIONS(9568), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - ACTIONS(9570), 1, + ACTIONS(9658), 1, anon_sym_EQ, - ACTIONS(9572), 1, + ACTIONS(9660), 1, anon_sym_COLON, - ACTIONS(9574), 1, + ACTIONS(9662), 1, anon_sym_try, - STATE(2489), 1, + STATE(2121), 1, sym_compound_statement, - STATE(2491), 1, + STATE(2122), 1, sym_default_method_clause, - STATE(2494), 1, + STATE(2123), 1, sym_delete_method_clause, - STATE(2497), 1, + STATE(2135), 1, sym_try_statement, - STATE(3951), 1, + STATE(4069), 1, sym_parameter_list, - STATE(6887), 1, + STATE(6984), 1, sym__function_declarator_seq, - STATE(7231), 1, + STATE(7311), 1, aux_sym_field_declaration_repeat1, - STATE(7242), 1, + STATE(7314), 1, sym_initializer_list, - STATE(7243), 1, + STATE(7317), 1, sym_bitfield_clause, - STATE(9116), 1, + STATE(8607), 1, sym_attribute_specifier, - STATE(6859), 2, + STATE(6864), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [239656] = 14, + [240198] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(9306), 1, - sym_identifier, - ACTIONS(9518), 1, - anon_sym_LPAREN2, - ACTIONS(9522), 1, + ACTIONS(9034), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9388), 1, anon_sym_requires, - STATE(3104), 1, - sym_template_type, - STATE(6352), 1, - sym_lambda_capture_specifier, - STATE(7045), 1, - sym__scope_resolution, - ACTIONS(9576), 2, - sym_true, - sym_false, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6296), 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, - [239708] = 14, + STATE(6742), 1, + sym__function_attributes_end, + STATE(6908), 1, + sym_trailing_return_type, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9008), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9037), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + [240254] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7824), 1, + ACTIONS(7889), 1, anon_sym_COLON_COLON, - ACTIONS(9328), 1, + ACTIONS(9402), 1, sym_identifier, - ACTIONS(9578), 1, + ACTIONS(9664), 1, anon_sym_LPAREN2, - ACTIONS(9582), 1, + ACTIONS(9668), 1, anon_sym_requires, - STATE(5330), 1, + STATE(3113), 1, sym_template_type, - STATE(6422), 1, + STATE(6403), 1, sym_lambda_capture_specifier, - STATE(7022), 1, + STATE(7042), 1, sym__scope_resolution, - ACTIONS(9580), 2, + ACTIONS(9666), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6484), 8, + STATE(1984), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -561924,36 +565354,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [239760] = 14, + [240306] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7778), 1, + ACTIONS(3934), 1, anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9398), 1, sym_identifier, - ACTIONS(9518), 1, + ACTIONS(9664), 1, anon_sym_LPAREN2, - ACTIONS(9522), 1, + ACTIONS(9668), 1, anon_sym_requires, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(6352), 1, + STATE(6403), 1, sym_lambda_capture_specifier, - STATE(7045), 1, + STATE(7038), 1, sym__scope_resolution, - ACTIONS(9584), 2, + ACTIONS(9670), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6249), 8, + STATE(6648), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -561962,71 +565392,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [239812] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8412), 1, - anon_sym_STAR, - ACTIONS(8414), 1, - anon_sym_AMP_AMP, - ACTIONS(8416), 1, - anon_sym_AMP, - STATE(4141), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6747), 1, - sym__abstract_declarator, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7914), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [239858] = 14, + [240358] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9030), 1, + ACTIONS(7889), 1, anon_sym_COLON_COLON, - ACTIONS(9320), 1, + ACTIONS(9402), 1, sym_identifier, - ACTIONS(9496), 1, - anon_sym_requires, - ACTIONS(9554), 1, + ACTIONS(9664), 1, anon_sym_LPAREN2, - STATE(2997), 1, + ACTIONS(9668), 1, + anon_sym_requires, + STATE(3113), 1, sym_template_type, - STATE(6361), 1, + STATE(6403), 1, sym_lambda_capture_specifier, - STATE(7027), 1, + STATE(7042), 1, sym__scope_resolution, - ACTIONS(9586), 2, + ACTIONS(9672), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4899), 8, + STATE(6279), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562035,76 +565430,116 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [239910] = 16, + [240410] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7662), 1, + ACTIONS(7753), 1, anon_sym_requires, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, + ACTIONS(7845), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - STATE(6590), 1, + STATE(6696), 1, sym_trailing_return_type, - STATE(6809), 1, + STATE(6834), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - ACTIONS(9004), 2, + ACTIONS(9008), 2, anon_sym_LPAREN2, anon_sym_COLON, - STATE(6123), 2, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6345), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + [240466] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(7955), 1, + anon_sym_requires, + ACTIONS(9453), 1, + anon_sym_LBRACK, + ACTIONS(9472), 1, + anon_sym_LBRACK_LBRACK, + STATE(6760), 1, + sym__function_attributes_end, + STATE(6951), 1, + sym_trailing_return_type, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9451), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - [239966] = 14, + [240522] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9538), 1, + ACTIONS(7867), 1, + anon_sym_COLON_COLON, + ACTIONS(9398), 1, sym_identifier, - ACTIONS(9540), 1, + ACTIONS(9640), 1, anon_sym_LPAREN2, - ACTIONS(9542), 1, - anon_sym_COLON_COLON, - ACTIONS(9546), 1, + ACTIONS(9644), 1, anon_sym_requires, - STATE(2712), 1, + STATE(3113), 1, sym_template_type, - STATE(6429), 1, + STATE(6416), 1, sym_lambda_capture_specifier, - STATE(7034), 1, + STATE(7046), 1, sym__scope_resolution, - ACTIONS(9588), 2, + ACTIONS(9642), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2721), 8, + STATE(6254), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562113,114 +565548,163 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [240018] = 7, + [240574] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(9592), 1, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + ACTIONS(9453), 1, anon_sym_LBRACK, - STATE(5268), 2, + ACTIONS(9529), 1, + anon_sym_requires, + STATE(6673), 1, + sym_trailing_return_type, + STATE(6890), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9451), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9455), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6252), 2, + STATE(6371), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9590), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6638), 2, + sym__function_postfix, + sym_requires_clause, + [240630] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9382), 1, + anon_sym_requires, + STATE(6664), 1, + sym_trailing_return_type, + STATE(6880), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(9107), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9111), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [240056] = 23, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + [240686] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, ACTIONS(131), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(3966), 1, + ACTIONS(3964), 1, anon_sym_COLON_COLON, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - ACTIONS(9594), 1, + ACTIONS(9674), 1, sym_identifier, - ACTIONS(9596), 1, + ACTIONS(9676), 1, anon_sym_template, - STATE(3014), 1, - sym_dependent_identifier, - STATE(3015), 1, + STATE(3069), 1, sym_pointer_type_declarator, - STATE(3020), 1, + STATE(3071), 1, sym_template_type, - STATE(3023), 1, + STATE(3073), 1, sym_template_function, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3029), 1, + STATE(3077), 1, sym_destructor_name, - STATE(3038), 1, - sym_operator_name, - STATE(3045), 1, + STATE(3078), 1, + sym_dependent_identifier, + STATE(3079), 1, sym_dependent_type_identifier, - STATE(3053), 1, + STATE(3080), 1, sym_qualified_identifier, - STATE(5957), 1, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(3104), 1, + sym_operator_name, + STATE(5990), 1, sym__scope_resolution, - STATE(7295), 1, - sym_qualified_operator_cast_identifier, - STATE(7297), 1, + STATE(7569), 1, sym_operator_cast, - STATE(8865), 1, + STATE(7578), 1, + sym_qualified_operator_cast_identifier, + STATE(8896), 1, sym_ms_based_modifier, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [240126] = 14, + [240756] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9171), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9344), 1, + ACTIONS(9398), 1, sym_identifier, - ACTIONS(9485), 1, - anon_sym_requires, - ACTIONS(9598), 1, + ACTIONS(9640), 1, anon_sym_LPAREN2, - STATE(4257), 1, + ACTIONS(9644), 1, + anon_sym_requires, + STATE(3113), 1, sym_template_type, - STATE(6408), 1, + STATE(6416), 1, sym_lambda_capture_specifier, - STATE(7006), 1, + STATE(7046), 1, sym__scope_resolution, - ACTIONS(9600), 2, + ACTIONS(9678), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4896), 8, + STATE(6937), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562229,71 +565713,122 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [240178] = 11, + [240808] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9128), 1, + anon_sym_requires, + STATE(6726), 1, + sym_trailing_return_type, + STATE(6879), 1, + sym__function_attributes_end, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9008), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9021), 2, + anon_sym_final, + anon_sym_override, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + [240864] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7982), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8115), 1, + anon_sym_COMMA, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(7990), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - ACTIONS(8259), 1, - anon_sym_STAR, - ACTIONS(8261), 1, - anon_sym_AMP_AMP, - ACTIONS(8263), 1, - anon_sym_AMP, - STATE(4113), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6742), 1, - sym__abstract_declarator, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7914), 9, + ACTIONS(9660), 1, + anon_sym_COLON, + ACTIONS(9680), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(9682), 1, anon_sym_LBRACE, + ACTIONS(9684), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, + ACTIONS(9686), 1, anon_sym_try, - anon_sym_requires, - [240224] = 14, + STATE(2587), 1, + sym_compound_statement, + STATE(2589), 1, + sym_default_method_clause, + STATE(2591), 1, + sym_delete_method_clause, + STATE(2598), 1, + sym_try_statement, + STATE(4069), 1, + sym_parameter_list, + STATE(6984), 1, + sym__function_declarator_seq, + STATE(7290), 1, + aux_sym_field_declaration_repeat1, + STATE(7291), 1, + sym_initializer_list, + STATE(7292), 1, + sym_bitfield_clause, + STATE(8778), 1, + sym_attribute_specifier, + STATE(6864), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [240932] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9467), 1, - anon_sym_requires, - ACTIONS(9602), 1, + ACTIONS(7927), 1, + anon_sym_COLON_COLON, + ACTIONS(9414), 1, sym_identifier, - ACTIONS(9604), 1, + ACTIONS(9688), 1, anon_sym_LPAREN2, - ACTIONS(9606), 1, - anon_sym_COLON_COLON, - STATE(2134), 1, + ACTIONS(9692), 1, + anon_sym_requires, + STATE(5358), 1, sym_template_type, - STATE(6417), 1, + STATE(6449), 1, sym_lambda_capture_specifier, - STATE(7021), 1, + STATE(7050), 1, sym__scope_resolution, - ACTIONS(9608), 2, + ACTIONS(9690), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6660), 8, + STATE(6471), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562302,36 +565837,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [240276] = 14, + [240984] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9171), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(9344), 1, + ACTIONS(9414), 1, sym_identifier, - ACTIONS(9485), 1, - anon_sym_requires, - ACTIONS(9598), 1, + ACTIONS(9688), 1, anon_sym_LPAREN2, - STATE(4257), 1, + ACTIONS(9692), 1, + anon_sym_requires, + STATE(5358), 1, sym_template_type, - STATE(6408), 1, + STATE(6449), 1, sym_lambda_capture_specifier, - STATE(7006), 1, + STATE(7050), 1, sym__scope_resolution, - ACTIONS(9610), 2, + ACTIONS(9694), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4882), 8, + STATE(6512), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562340,76 +565875,147 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [240328] = 16, + [241036] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7758), 1, + ACTIONS(7753), 1, + anon_sym_requires, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, + ACTIONS(7845), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9426), 1, - anon_sym_requires, - STATE(6662), 1, + STATE(6636), 1, sym_trailing_return_type, - STATE(6867), 1, + STATE(6902), 1, sym__function_attributes_end, - STATE(7199), 1, + STATE(7209), 1, sym_gnu_asm_expression, - ACTIONS(7331), 2, + ACTIONS(7435), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9351), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9355), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6123), 2, + ACTIONS(9107), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + [241092] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(9698), 1, + anon_sym_LBRACK, + STATE(5311), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, STATE(6345), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, + ACTIONS(9696), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [241130] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(7955), 1, + anon_sym_requires, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9034), 1, + anon_sym_LBRACK_LBRACK, + STATE(6797), 1, + sym__function_attributes_end, + STATE(6988), 1, + sym_trailing_return_type, + STATE(7209), 1, + sym_gnu_asm_expression, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7435), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9008), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6161), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6371), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - [240384] = 14, + [241186] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(9314), 1, - sym_identifier, - ACTIONS(9467), 1, + ACTIONS(9562), 1, anon_sym_requires, - ACTIONS(9604), 1, + ACTIONS(9621), 1, anon_sym_LPAREN2, - STATE(2134), 1, + ACTIONS(9700), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_COLON_COLON, + STATE(2150), 1, sym_template_type, - STATE(6417), 1, + STATE(6458), 1, sym_lambda_capture_specifier, - STATE(7043), 1, + STATE(7029), 1, sym__scope_resolution, - ACTIONS(9612), 2, + ACTIONS(9704), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3876), 8, + STATE(6630), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562418,36 +566024,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [240436] = 14, + [241238] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7736), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9398), 1, sym_identifier, - ACTIONS(9467), 1, - anon_sym_requires, - ACTIONS(9604), 1, + ACTIONS(9640), 1, anon_sym_LPAREN2, - STATE(2134), 1, + ACTIONS(9644), 1, + anon_sym_requires, + STATE(3113), 1, sym_template_type, - STATE(6417), 1, + STATE(6416), 1, sym_lambda_capture_specifier, - STATE(7043), 1, + STATE(7046), 1, sym__scope_resolution, - ACTIONS(9614), 2, + ACTIONS(9706), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7015), 8, + STATE(6905), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562456,76 +566062,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [240488] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7662), 1, - anon_sym_requires, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, - anon_sym_DASH_GT, - ACTIONS(9353), 1, - anon_sym_LBRACK, - STATE(6648), 1, - sym_trailing_return_type, - STATE(6810), 1, - sym__function_attributes_end, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9351), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6645), 2, - sym__function_postfix, - sym_requires_clause, - [240544] = 14, + [241290] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7804), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9326), 1, + ACTIONS(9418), 1, sym_identifier, - ACTIONS(9496), 1, + ACTIONS(9562), 1, anon_sym_requires, - ACTIONS(9554), 1, + ACTIONS(9621), 1, anon_sym_LPAREN2, - STATE(2997), 1, + STATE(2150), 1, sym_template_type, - STATE(6361), 1, + STATE(6458), 1, sym_lambda_capture_specifier, - STATE(7029), 1, + STATE(7066), 1, sym__scope_resolution, - ACTIONS(9616), 2, + ACTIONS(9646), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6850), 8, + STATE(3783), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562534,193 +566100,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [240596] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, - anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9285), 1, - anon_sym_requires, - STATE(6689), 1, - sym_trailing_return_type, - STATE(6815), 1, - sym__function_attributes_end, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9004), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9022), 2, - anon_sym_final, - anon_sym_override, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6587), 2, - sym__function_postfix, - sym_requires_clause, - [240652] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7760), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(9017), 1, - anon_sym_requires, - STATE(6589), 1, - sym_trailing_return_type, - STATE(6816), 1, - sym__function_attributes_end, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8908), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(8914), 2, - anon_sym_final, - anon_sym_override, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - [240708] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8012), 1, - anon_sym_COMMA, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9568), 1, - anon_sym_LBRACK, - ACTIONS(9572), 1, - anon_sym_COLON, - ACTIONS(9618), 1, - anon_sym_SEMI, - ACTIONS(9620), 1, - anon_sym_LBRACE, - ACTIONS(9622), 1, - anon_sym_EQ, - ACTIONS(9624), 1, - anon_sym_try, - STATE(2260), 1, - sym_delete_method_clause, - STATE(2306), 1, - sym_try_statement, - STATE(2308), 1, - sym_compound_statement, - STATE(2312), 1, - sym_default_method_clause, - STATE(3951), 1, - sym_parameter_list, - STATE(6887), 1, - sym__function_declarator_seq, - STATE(7254), 1, - sym_bitfield_clause, - STATE(7257), 1, - sym_initializer_list, - STATE(7259), 1, - aux_sym_field_declaration_repeat1, - STATE(8773), 1, - sym_attribute_specifier, - STATE(6859), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [240776] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(9628), 1, - anon_sym_LBRACK, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6236), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9626), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [240814] = 14, + [241342] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9044), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(9334), 1, + ACTIONS(9402), 1, sym_identifier, - ACTIONS(9467), 1, - anon_sym_requires, - ACTIONS(9604), 1, + ACTIONS(9640), 1, anon_sym_LPAREN2, - STATE(4133), 1, + ACTIONS(9644), 1, + anon_sym_requires, + STATE(3113), 1, sym_template_type, - STATE(6417), 1, + STATE(6416), 1, sym_lambda_capture_specifier, - STATE(7041), 1, + STATE(7036), 1, sym__scope_resolution, - ACTIONS(9630), 2, + ACTIONS(9708), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4676), 8, + STATE(6314), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562729,36 +566138,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [240866] = 14, + [241394] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9136), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9310), 1, + ACTIONS(9418), 1, sym_identifier, - ACTIONS(9459), 1, + ACTIONS(9562), 1, anon_sym_requires, - ACTIONS(9534), 1, + ACTIONS(9621), 1, anon_sym_LPAREN2, - STATE(3013), 1, + STATE(2150), 1, sym_template_type, - STATE(6355), 1, + STATE(6458), 1, sym_lambda_capture_specifier, - STATE(7023), 1, + STATE(7066), 1, sym__scope_resolution, - ACTIONS(9632), 2, + ACTIONS(9710), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4178), 8, + STATE(4707), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562767,76 +566176,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [240918] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(7800), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8927), 1, - anon_sym_LBRACK_LBRACK, - STATE(6791), 1, - sym__function_attributes_end, - STATE(6908), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8908), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - [240974] = 14, + [241446] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9044), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9334), 1, + ACTIONS(9400), 1, sym_identifier, - ACTIONS(9467), 1, + ACTIONS(9570), 1, anon_sym_requires, - ACTIONS(9604), 1, + ACTIONS(9712), 1, anon_sym_LPAREN2, - STATE(4133), 1, + STATE(2181), 1, sym_template_type, - STATE(6417), 1, + STATE(6459), 1, sym_lambda_capture_specifier, - STATE(7041), 1, + STATE(7033), 1, sym__scope_resolution, - ACTIONS(9612), 2, + ACTIONS(9714), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3876), 8, + STATE(2824), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562845,82 +566214,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [241026] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8012), 1, - anon_sym_COMMA, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9568), 1, - anon_sym_LBRACK, - ACTIONS(9572), 1, - anon_sym_COLON, - ACTIONS(9634), 1, - anon_sym_SEMI, - ACTIONS(9636), 1, - anon_sym_LBRACE, - ACTIONS(9638), 1, - anon_sym_EQ, - ACTIONS(9640), 1, - anon_sym_try, - STATE(2049), 1, - sym_compound_statement, - STATE(2110), 1, - sym_default_method_clause, - STATE(2111), 1, - sym_delete_method_clause, - STATE(2112), 1, - sym_try_statement, - STATE(3951), 1, - sym_parameter_list, - STATE(6887), 1, - sym__function_declarator_seq, - STATE(7263), 1, - sym_bitfield_clause, - STATE(7264), 1, - sym_initializer_list, - STATE(7266), 1, - aux_sym_field_declaration_repeat1, - STATE(8938), 1, - sym_attribute_specifier, - STATE(6859), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [241094] = 14, + [241498] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9225), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(9400), 1, sym_identifier, - ACTIONS(9451), 1, + ACTIONS(9570), 1, anon_sym_requires, - ACTIONS(9558), 1, + ACTIONS(9712), 1, anon_sym_LPAREN2, - STATE(2929), 1, + STATE(2181), 1, sym_template_type, - STATE(6418), 1, + STATE(6459), 1, sym_lambda_capture_specifier, - STATE(7032), 1, + STATE(7033), 1, sym__scope_resolution, - ACTIONS(9642), 2, + ACTIONS(9716), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3949), 8, + STATE(2823), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562929,36 +566252,67 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [241146] = 14, + [241550] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(9720), 1, + anon_sym_LBRACK, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6312), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9718), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [241588] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(3936), 1, + ACTIONS(7889), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9402), 1, sym_identifier, - ACTIONS(9540), 1, + ACTIONS(9664), 1, anon_sym_LPAREN2, - ACTIONS(9546), 1, + ACTIONS(9668), 1, anon_sym_requires, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(6419), 1, + STATE(6403), 1, sym_lambda_capture_specifier, - STATE(7036), 1, + STATE(7042), 1, sym__scope_resolution, - ACTIONS(9644), 2, + ACTIONS(9722), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6601), 8, + STATE(6341), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -562967,105 +566321,82 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [241198] = 16, + [241640] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(9353), 1, - anon_sym_LBRACK, - ACTIONS(9364), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9646), 1, - anon_sym_requires, - STATE(6793), 1, - sym__function_attributes_end, - STATE(6881), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9351), 2, + ACTIONS(8115), 1, + anon_sym_COMMA, + ACTIONS(9650), 1, anon_sym_LPAREN2, + ACTIONS(9656), 1, + anon_sym_LBRACK, + ACTIONS(9660), 1, anon_sym_COLON, - ACTIONS(9367), 2, - anon_sym_final, - anon_sym_override, - STATE(6123), 2, + ACTIONS(9724), 1, + anon_sym_SEMI, + ACTIONS(9726), 1, + anon_sym_LBRACE, + ACTIONS(9728), 1, + anon_sym_EQ, + ACTIONS(9730), 1, + anon_sym_try, + STATE(2581), 1, + sym_try_statement, + STATE(2601), 1, + sym_delete_method_clause, + STATE(2602), 1, + sym_default_method_clause, + STATE(2603), 1, + sym_compound_statement, + STATE(4069), 1, + sym_parameter_list, + STATE(6984), 1, + sym__function_declarator_seq, + STATE(7262), 1, + aux_sym_field_declaration_repeat1, + STATE(7264), 1, + sym_initializer_list, + STATE(7265), 1, + sym_bitfield_clause, + STATE(8986), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, + STATE(6864), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6425), 2, - sym__function_postfix, - sym_requires_clause, - [241254] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9651), 1, - anon_sym_LPAREN2, - STATE(6117), 1, - sym_preproc_argument_list, - ACTIONS(9653), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9649), 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, - [241288] = 14, + [241708] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9203), 1, + ACTIONS(3934), 1, anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(9398), 1, sym_identifier, - ACTIONS(9477), 1, - anon_sym_requires, - ACTIONS(9655), 1, + ACTIONS(9664), 1, anon_sym_LPAREN2, - STATE(2790), 1, + ACTIONS(9668), 1, + anon_sym_requires, + STATE(3113), 1, sym_template_type, - STATE(6349), 1, + STATE(6403), 1, sym_lambda_capture_specifier, - STATE(7024), 1, + STATE(7038), 1, sym__scope_resolution, - ACTIONS(9657), 2, + ACTIONS(9666), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3387), 8, + STATE(1984), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563074,76 +566405,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [241340] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(7800), 1, - anon_sym_requires, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9125), 1, - anon_sym_LBRACK_LBRACK, - STATE(6711), 1, - sym__function_attributes_end, - STATE(6904), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9004), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - [241396] = 14, + [241760] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(3936), 1, + ACTIONS(3934), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9398), 1, sym_identifier, - ACTIONS(9540), 1, + ACTIONS(9664), 1, anon_sym_LPAREN2, - ACTIONS(9546), 1, + ACTIONS(9668), 1, anon_sym_requires, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(6419), 1, + STATE(6403), 1, sym_lambda_capture_specifier, - STATE(7036), 1, + STATE(7038), 1, sym__scope_resolution, - ACTIONS(9544), 2, + ACTIONS(9732), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(1958), 8, + STATE(6640), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563152,36 +566443,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [241448] = 14, + [241812] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - ACTIONS(9312), 1, - sym_identifier, - ACTIONS(9518), 1, + ACTIONS(9664), 1, anon_sym_LPAREN2, - ACTIONS(9522), 1, + ACTIONS(9668), 1, anon_sym_requires, - STATE(3104), 1, + ACTIONS(9734), 1, + sym_identifier, + ACTIONS(9736), 1, + anon_sym_COLON_COLON, + STATE(2707), 1, sym_template_type, - STATE(6352), 1, + STATE(6386), 1, sym_lambda_capture_specifier, - STATE(7031), 1, + STATE(7048), 1, sym__scope_resolution, - ACTIONS(9659), 2, + ACTIONS(9738), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6888), 8, + STATE(2747), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563190,36 +566481,65 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [241500] = 14, + [241864] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9742), 1, + anon_sym_LPAREN2, + STATE(6171), 1, + sym_preproc_argument_list, + ACTIONS(9744), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9740), 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, + [241898] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9203), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(9408), 1, sym_identifier, - ACTIONS(9477), 1, + ACTIONS(9554), 1, anon_sym_requires, - ACTIONS(9655), 1, + ACTIONS(9746), 1, anon_sym_LPAREN2, - STATE(2790), 1, + STATE(2979), 1, sym_template_type, - STATE(6349), 1, + STATE(6406), 1, sym_lambda_capture_specifier, - STATE(7024), 1, + STATE(7067), 1, sym__scope_resolution, - ACTIONS(9661), 2, + ACTIONS(9748), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3376), 8, + STATE(4795), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563228,36 +566548,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [241552] = 14, + [241950] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7764), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9408), 1, sym_identifier, - ACTIONS(9540), 1, - anon_sym_LPAREN2, - ACTIONS(9546), 1, + ACTIONS(9554), 1, anon_sym_requires, - STATE(3104), 1, + ACTIONS(9746), 1, + anon_sym_LPAREN2, + STATE(2979), 1, sym_template_type, - STATE(6419), 1, + STATE(6406), 1, sym_lambda_capture_specifier, - STATE(7018), 1, + STATE(7067), 1, sym__scope_resolution, - ACTIONS(9544), 2, + ACTIONS(9750), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(1958), 8, + STATE(5291), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563266,169 +566586,82 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [241604] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9125), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9375), 1, - anon_sym_requires, - STATE(6792), 1, - sym__function_attributes_end, - STATE(6892), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9004), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9128), 2, - anon_sym_final, - anon_sym_override, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - [241660] = 22, + [242002] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9568), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - ACTIONS(9572), 1, + ACTIONS(9660), 1, anon_sym_COLON, - ACTIONS(9663), 1, + ACTIONS(9752), 1, anon_sym_SEMI, - ACTIONS(9665), 1, + ACTIONS(9754), 1, anon_sym_LBRACE, - ACTIONS(9667), 1, + ACTIONS(9756), 1, anon_sym_EQ, - ACTIONS(9669), 1, + ACTIONS(9758), 1, anon_sym_try, - STATE(2480), 1, + STATE(2369), 1, sym_compound_statement, - STATE(2481), 1, - sym_default_method_clause, - STATE(2485), 1, - sym_delete_method_clause, - STATE(2490), 1, + STATE(2405), 1, sym_try_statement, - STATE(3951), 1, + STATE(2409), 1, + sym_delete_method_clause, + STATE(2410), 1, + sym_default_method_clause, + STATE(4069), 1, sym_parameter_list, - STATE(6887), 1, + STATE(6984), 1, sym__function_declarator_seq, - STATE(7234), 1, + STATE(7307), 1, aux_sym_field_declaration_repeat1, - STATE(7236), 1, + STATE(7308), 1, sym_initializer_list, - STATE(7240), 1, + STATE(7316), 1, sym_bitfield_clause, - STATE(8565), 1, + STATE(8605), 1, sym_attribute_specifier, - STATE(6859), 2, + STATE(6864), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [241728] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(131), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(3028), 1, - anon_sym_COLON_COLON, - ACTIONS(8492), 1, - anon_sym_STAR, - ACTIONS(9671), 1, - sym_identifier, - ACTIONS(9673), 1, - anon_sym_template, - STATE(3014), 1, - sym_dependent_identifier, - STATE(3015), 1, - sym_pointer_type_declarator, - STATE(3020), 1, - sym_template_type, - STATE(3023), 1, - sym_template_function, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3029), 1, - sym_destructor_name, - STATE(3038), 1, - sym_operator_name, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(3053), 1, - sym_qualified_identifier, - STATE(5988), 1, - sym__scope_resolution, - STATE(7295), 1, - sym_qualified_operator_cast_identifier, - STATE(7297), 1, - sym_operator_cast, - STATE(8865), 1, - sym_ms_based_modifier, - STATE(9084), 1, - sym_decltype, - [241798] = 14, + [242070] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9066), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(9394), 1, sym_identifier, - ACTIONS(9443), 1, + ACTIONS(9554), 1, anon_sym_requires, - ACTIONS(9675), 1, + ACTIONS(9746), 1, anon_sym_LPAREN2, - STATE(2903), 1, + STATE(2979), 1, sym_template_type, - STATE(6351), 1, + STATE(6406), 1, sym_lambda_capture_specifier, - STATE(7002), 1, + STATE(7064), 1, sym__scope_resolution, - ACTIONS(9677), 2, + ACTIONS(9760), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3873), 8, + STATE(6855), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563437,36 +566670,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [241850] = 14, + [242122] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9066), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(9394), 1, sym_identifier, - ACTIONS(9443), 1, + ACTIONS(9554), 1, anon_sym_requires, - ACTIONS(9675), 1, + ACTIONS(9746), 1, anon_sym_LPAREN2, - STATE(2903), 1, + STATE(2979), 1, sym_template_type, - STATE(6351), 1, + STATE(6406), 1, sym_lambda_capture_specifier, - STATE(7002), 1, + STATE(7064), 1, sym__scope_resolution, - ACTIONS(9679), 2, + ACTIONS(9748), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3879), 8, + STATE(4795), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563475,36 +566708,71 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [241902] = 14, + [242174] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8376), 1, + anon_sym_STAR, + ACTIONS(8378), 1, + anon_sym_AMP_AMP, + ACTIONS(8380), 1, + anon_sym_AMP, + STATE(4136), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6795), 1, + sym__abstract_declarator, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8031), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [242220] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7810), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9449), 1, sym_identifier, - ACTIONS(9518), 1, - anon_sym_LPAREN2, - ACTIONS(9522), 1, + ACTIONS(9562), 1, anon_sym_requires, - STATE(3104), 1, + ACTIONS(9621), 1, + anon_sym_LPAREN2, + STATE(2150), 1, sym_template_type, - STATE(6352), 1, + STATE(6458), 1, sym_lambda_capture_specifier, - STATE(7031), 1, + STATE(7068), 1, sym__scope_resolution, - ACTIONS(9520), 2, + ACTIONS(9762), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6247), 8, + STATE(7060), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563513,36 +566781,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [241954] = 14, + [242272] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7764), 1, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9396), 1, sym_identifier, - ACTIONS(9540), 1, - anon_sym_LPAREN2, - ACTIONS(9546), 1, + ACTIONS(9583), 1, anon_sym_requires, - STATE(3104), 1, + ACTIONS(9764), 1, + anon_sym_LPAREN2, + STATE(4306), 1, sym_template_type, - STATE(6419), 1, + STATE(6411), 1, sym_lambda_capture_specifier, - STATE(7018), 1, + STATE(7057), 1, sym__scope_resolution, - ACTIONS(9681), 2, + ACTIONS(9766), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6240), 8, + STATE(4903), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563551,76 +566819,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242006] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8927), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9279), 1, - anon_sym_requires, - STATE(6789), 1, - sym__function_attributes_end, - STATE(6948), 1, - sym_trailing_return_type, - STATE(7199), 1, - sym_gnu_asm_expression, - ACTIONS(7331), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8908), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(8934), 2, - anon_sym_final, - anon_sym_override, - STATE(6123), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - [242062] = 14, + [242324] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7804), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9326), 1, + ACTIONS(9412), 1, sym_identifier, - ACTIONS(9496), 1, + ACTIONS(9599), 1, anon_sym_requires, - ACTIONS(9554), 1, + ACTIONS(9768), 1, anon_sym_LPAREN2, - STATE(2997), 1, + STATE(3036), 1, sym_template_type, - STATE(6361), 1, + STATE(6460), 1, sym_lambda_capture_specifier, - STATE(7029), 1, + STATE(7041), 1, sym__scope_resolution, - ACTIONS(9586), 2, + ACTIONS(9770), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4899), 8, + STATE(4213), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563629,36 +566857,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242114] = 14, + [242376] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7824), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9328), 1, + ACTIONS(9412), 1, sym_identifier, - ACTIONS(9578), 1, - anon_sym_LPAREN2, - ACTIONS(9582), 1, + ACTIONS(9599), 1, anon_sym_requires, - STATE(5330), 1, + ACTIONS(9768), 1, + anon_sym_LPAREN2, + STATE(3036), 1, sym_template_type, - STATE(6422), 1, + STATE(6460), 1, sym_lambda_capture_specifier, - STATE(7022), 1, + STATE(7041), 1, sym__scope_resolution, - ACTIONS(9683), 2, + ACTIONS(9772), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6493), 8, + STATE(4234), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563667,36 +566895,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242166] = 14, + [242428] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9102), 1, - anon_sym_COLON_COLON, - ACTIONS(9330), 1, - sym_identifier, - ACTIONS(9435), 1, - anon_sym_requires, - ACTIONS(9685), 1, + ACTIONS(9664), 1, anon_sym_LPAREN2, - STATE(2102), 1, + ACTIONS(9668), 1, + anon_sym_requires, + ACTIONS(9734), 1, + sym_identifier, + ACTIONS(9736), 1, + anon_sym_COLON_COLON, + STATE(2707), 1, sym_template_type, - STATE(6396), 1, + STATE(6386), 1, sym_lambda_capture_specifier, - STATE(7028), 1, + STATE(7048), 1, sym__scope_resolution, - ACTIONS(9687), 2, + ACTIONS(9666), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2827), 8, + STATE(1984), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563705,36 +566933,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242218] = 14, + [242480] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9088), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9431), 1, sym_identifier, - ACTIONS(9467), 1, + ACTIONS(9546), 1, anon_sym_requires, - ACTIONS(9604), 1, + ACTIONS(9774), 1, anon_sym_LPAREN2, - STATE(2134), 1, + STATE(2846), 1, sym_template_type, - STATE(6417), 1, + STATE(6378), 1, sym_lambda_capture_specifier, - STATE(7040), 1, + STATE(7059), 1, sym__scope_resolution, - ACTIONS(9612), 2, + ACTIONS(9776), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3876), 8, + STATE(3545), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563743,36 +566971,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242270] = 14, + [242532] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9088), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9431), 1, sym_identifier, - ACTIONS(9467), 1, + ACTIONS(9546), 1, anon_sym_requires, - ACTIONS(9604), 1, + ACTIONS(9774), 1, anon_sym_LPAREN2, - STATE(2134), 1, + STATE(2846), 1, sym_template_type, - STATE(6417), 1, + STATE(6378), 1, sym_lambda_capture_specifier, - STATE(7040), 1, + STATE(7059), 1, sym__scope_resolution, - ACTIONS(9689), 2, + ACTIONS(9778), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4689), 8, + STATE(3386), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563781,36 +567009,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242322] = 14, + [242584] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7736), 1, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9396), 1, sym_identifier, - ACTIONS(9467), 1, + ACTIONS(9583), 1, anon_sym_requires, - ACTIONS(9604), 1, + ACTIONS(9764), 1, anon_sym_LPAREN2, - STATE(2134), 1, + STATE(4306), 1, sym_template_type, - STATE(6417), 1, + STATE(6411), 1, sym_lambda_capture_specifier, - STATE(7043), 1, + STATE(7057), 1, sym__scope_resolution, - ACTIONS(9691), 2, + ACTIONS(9780), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(7019), 8, + STATE(4845), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563819,36 +567047,71 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242374] = 14, + [242636] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8368), 1, + anon_sym_STAR, + ACTIONS(8370), 1, + anon_sym_AMP_AMP, + ACTIONS(8372), 1, + anon_sym_AMP, + STATE(4131), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6811), 1, + sym__abstract_declarator, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8031), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [242682] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7804), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(9326), 1, + ACTIONS(9394), 1, sym_identifier, - ACTIONS(9496), 1, - anon_sym_requires, ACTIONS(9554), 1, + anon_sym_requires, + ACTIONS(9746), 1, anon_sym_LPAREN2, - STATE(2997), 1, + STATE(2979), 1, sym_template_type, - STATE(6361), 1, + STATE(6406), 1, sym_lambda_capture_specifier, - STATE(7029), 1, + STATE(7064), 1, sym__scope_resolution, - ACTIONS(9693), 2, + ACTIONS(9782), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6836), 8, + STATE(6833), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563857,36 +567120,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242426] = 14, + [242734] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - ACTIONS(9312), 1, - sym_identifier, - ACTIONS(9518), 1, - anon_sym_LPAREN2, - ACTIONS(9522), 1, + ACTIONS(9562), 1, anon_sym_requires, - STATE(3104), 1, + ACTIONS(9621), 1, + anon_sym_LPAREN2, + ACTIONS(9700), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_COLON_COLON, + STATE(2150), 1, sym_template_type, - STATE(6352), 1, + STATE(6458), 1, sym_lambda_capture_specifier, - STATE(7031), 1, + STATE(7029), 1, sym__scope_resolution, - ACTIONS(9695), 2, + ACTIONS(9784), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6946), 8, + STATE(6680), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563895,36 +567158,83 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242478] = 14, + [242786] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(131), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(3052), 1, + anon_sym_COLON_COLON, + ACTIONS(8627), 1, + anon_sym_STAR, + ACTIONS(9786), 1, + sym_identifier, + ACTIONS(9788), 1, + anon_sym_template, + STATE(3069), 1, + sym_pointer_type_declarator, + STATE(3071), 1, + sym_template_type, + STATE(3073), 1, + sym_template_function, + STATE(3077), 1, + sym_destructor_name, + STATE(3078), 1, + sym_dependent_identifier, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3080), 1, + sym_qualified_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(3104), 1, + sym_operator_name, + STATE(6030), 1, + sym__scope_resolution, + STATE(7569), 1, + sym_operator_cast, + STATE(7578), 1, + sym_qualified_operator_cast_identifier, + STATE(8896), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [242856] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9467), 1, - anon_sym_requires, - ACTIONS(9602), 1, + ACTIONS(7927), 1, + anon_sym_COLON_COLON, + ACTIONS(9414), 1, sym_identifier, - ACTIONS(9604), 1, + ACTIONS(9688), 1, anon_sym_LPAREN2, - ACTIONS(9606), 1, - anon_sym_COLON_COLON, - STATE(2134), 1, + ACTIONS(9692), 1, + anon_sym_requires, + STATE(5358), 1, sym_template_type, - STATE(6417), 1, + STATE(6449), 1, sym_lambda_capture_specifier, - STATE(7021), 1, + STATE(7050), 1, sym__scope_resolution, - ACTIONS(9612), 2, + ACTIONS(9790), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3876), 8, + STATE(6538), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563933,36 +567243,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242530] = 14, + [242908] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(7824), 1, - anon_sym_COLON_COLON, - ACTIONS(9328), 1, - sym_identifier, - ACTIONS(9578), 1, - anon_sym_LPAREN2, - ACTIONS(9582), 1, + ACTIONS(9562), 1, anon_sym_requires, - STATE(5330), 1, + ACTIONS(9621), 1, + anon_sym_LPAREN2, + ACTIONS(9700), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_COLON_COLON, + STATE(2150), 1, sym_template_type, - STATE(6422), 1, + STATE(6458), 1, sym_lambda_capture_specifier, - STATE(7022), 1, + STATE(7029), 1, sym__scope_resolution, - ACTIONS(9697), 2, + ACTIONS(9646), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6479), 8, + STATE(3783), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -563971,36 +567281,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242582] = 14, + [242960] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9467), 1, + ACTIONS(9664), 1, + anon_sym_LPAREN2, + ACTIONS(9668), 1, anon_sym_requires, - ACTIONS(9602), 1, + ACTIONS(9734), 1, sym_identifier, - ACTIONS(9604), 1, - anon_sym_LPAREN2, - ACTIONS(9606), 1, + ACTIONS(9736), 1, anon_sym_COLON_COLON, - STATE(2134), 1, + STATE(2707), 1, sym_template_type, - STATE(6417), 1, + STATE(6386), 1, sym_lambda_capture_specifier, - STATE(7021), 1, + STATE(7048), 1, sym__scope_resolution, - ACTIONS(9699), 2, + ACTIONS(9792), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6643), 8, + STATE(2721), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -564009,36 +567319,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242634] = 14, + [243012] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2846), 1, anon_sym_LBRACK, - ACTIONS(9102), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(9449), 1, sym_identifier, - ACTIONS(9435), 1, + ACTIONS(9562), 1, anon_sym_requires, - ACTIONS(9685), 1, + ACTIONS(9621), 1, anon_sym_LPAREN2, - STATE(2102), 1, + STATE(2150), 1, sym_template_type, - STATE(6396), 1, + STATE(6458), 1, sym_lambda_capture_specifier, - STATE(7028), 1, + STATE(7068), 1, sym__scope_resolution, - ACTIONS(9701), 2, + ACTIONS(9794), 2, sym_true, sym_false, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2822), 8, + STATE(7035), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -564047,2175 +567357,2332 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [242686] = 18, + [243064] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(8583), 1, + anon_sym_STAR, + ACTIONS(9796), 1, + sym_identifier, + ACTIONS(9798), 1, + anon_sym_TILDE, + ACTIONS(9800), 1, + anon_sym_COLON_COLON, + ACTIONS(9802), 1, + anon_sym_template, + ACTIONS(9804), 1, + anon_sym_operator, + STATE(3069), 1, + sym_pointer_type_declarator, + STATE(3071), 1, + sym_template_type, + STATE(3073), 1, + sym_template_function, + STATE(3077), 1, + sym_destructor_name, + STATE(3078), 1, + sym_dependent_identifier, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3080), 1, + sym_qualified_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(3104), 1, + sym_operator_name, + STATE(6035), 1, + sym__scope_resolution, + STATE(7569), 1, + sym_operator_cast, + STATE(7578), 1, + sym_qualified_operator_cast_identifier, + STATE(9031), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [243134] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(8920), 1, + ACTIONS(8994), 1, anon_sym_LBRACE, - ACTIONS(9306), 1, + ACTIONS(9402), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(5387), 1, + STATE(5427), 1, sym_field_declaration_list, - STATE(5468), 1, + STATE(5449), 1, sym__class_declaration_item, - STATE(7045), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [242745] = 18, + [243193] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(2134), 1, + ACTIONS(9426), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, sym_template_type, - STATE(2198), 1, + STATE(3639), 1, sym__class_declaration_item, - STATE(2880), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(7043), 1, + STATE(7052), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(4519), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6062), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [242804] = 18, + [243252] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5045), 1, - anon_sym_COLON_COLON, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9324), 1, + ACTIONS(7903), 1, + anon_sym_COLON_COLON, + ACTIONS(9402), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3574), 1, + STATE(3603), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4379), 1, sym_field_declaration_list, - STATE(7046), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [242863] = 18, + [243311] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(8920), 1, + ACTIONS(9069), 1, anon_sym_LBRACE, - ACTIONS(9306), 1, + ACTIONS(9414), 1, sym_identifier, - STATE(3104), 1, + STATE(5358), 1, sym_template_type, - STATE(5387), 1, + STATE(5559), 1, sym_field_declaration_list, - STATE(5438), 1, + STATE(5738), 1, sym__class_declaration_item, - STATE(7045), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7558), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8153), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(5370), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6137), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [242922] = 18, + [243370] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(8920), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(9306), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + ACTIONS(9426), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, sym_template_type, - STATE(5387), 1, - sym_field_declaration_list, - STATE(5435), 1, + STATE(3600), 1, sym__class_declaration_item, - STATE(7045), 1, + STATE(4382), 1, + sym_field_declaration_list, + STATE(7052), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(4519), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6044), 2, + STATE(6128), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [242981] = 10, + [243429] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5321), 1, + anon_sym_LBRACE, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9252), 1, + anon_sym_COLON_COLON, + ACTIONS(9400), 1, sym_identifier, - ACTIONS(9705), 1, - anon_sym_RPAREN, - ACTIONS(9707), 1, - anon_sym_LPAREN2, - ACTIONS(9709), 1, - anon_sym_defined, - ACTIONS(9715), 1, - sym_number_literal, - ACTIONS(9711), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9713), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9717), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6115), 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, - [243024] = 18, + STATE(2181), 1, + sym_template_type, + STATE(2326), 1, + sym_field_declaration_list, + STATE(2476), 1, + sym__class_declaration_item, + STATE(7033), 1, + sym__scope_resolution, + STATE(7469), 1, + sym_virtual_specifier, + STATE(8262), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(2034), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5859), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [243488] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(6375), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(8920), 1, - anon_sym_LBRACE, - ACTIONS(9312), 1, + ACTIONS(9439), 1, sym_identifier, - STATE(3104), 1, + STATE(2960), 1, sym_template_type, - STATE(5387), 1, + STATE(3253), 1, sym_field_declaration_list, - STATE(5459), 1, + STATE(3435), 1, sym__class_declaration_item, - STATE(7031), 1, + STATE(7040), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7393), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8130), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(2806), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6024), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243083] = 18, + [243547] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(6375), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7824), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(8950), 1, - anon_sym_LBRACE, - ACTIONS(9328), 1, + ACTIONS(9439), 1, sym_identifier, - STATE(5330), 1, + STATE(2960), 1, sym_template_type, - STATE(5490), 1, + STATE(3253), 1, sym_field_declaration_list, - STATE(5692), 1, + STATE(3455), 1, sym__class_declaration_item, - STATE(7022), 1, + STATE(7040), 1, sym__scope_resolution, - STATE(7525), 1, + STATE(7393), 1, sym_virtual_specifier, - STATE(8192), 1, + STATE(8130), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5327), 2, + STATE(2806), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6016), 2, + STATE(6042), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243142] = 18, + [243606] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(6375), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7824), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(8950), 1, - anon_sym_LBRACE, - ACTIONS(9328), 1, + ACTIONS(9439), 1, sym_identifier, - STATE(5330), 1, + STATE(2960), 1, sym_template_type, - STATE(5490), 1, + STATE(3253), 1, sym_field_declaration_list, - STATE(5687), 1, + STATE(3464), 1, sym__class_declaration_item, - STATE(7022), 1, + STATE(7040), 1, sym__scope_resolution, - STATE(7525), 1, + STATE(7393), 1, sym_virtual_specifier, - STATE(8192), 1, + STATE(8130), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5327), 2, + STATE(2806), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243201] = 18, + [243665] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(5998), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(8920), 1, - anon_sym_LBRACE, - ACTIONS(9312), 1, + ACTIONS(9431), 1, sym_identifier, - STATE(3104), 1, + STATE(2846), 1, sym_template_type, - STATE(5387), 1, + STATE(2942), 1, sym_field_declaration_list, - STATE(5456), 1, + STATE(3122), 1, sym__class_declaration_item, - STATE(7031), 1, + STATE(7059), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7574), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8205), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(2459), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243260] = 18, + [243724] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(5998), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7824), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(8950), 1, - anon_sym_LBRACE, - ACTIONS(9328), 1, + ACTIONS(9431), 1, sym_identifier, - STATE(5330), 1, + STATE(2846), 1, sym_template_type, - STATE(5490), 1, + STATE(2942), 1, sym_field_declaration_list, - STATE(5748), 1, + STATE(3142), 1, sym__class_declaration_item, - STATE(7022), 1, + STATE(7059), 1, sym__scope_resolution, - STATE(7525), 1, + STATE(7574), 1, sym_virtual_specifier, - STATE(8192), 1, + STATE(8205), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5327), 2, + STATE(2459), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6045), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243319] = 18, + [243783] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(5998), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9431), 1, sym_identifier, - STATE(3104), 1, + STATE(2846), 1, sym_template_type, - STATE(3558), 1, - sym__class_declaration_item, - STATE(4366), 1, + STATE(2942), 1, sym_field_declaration_list, - STATE(7031), 1, + STATE(3137), 1, + sym__class_declaration_item, + STATE(7059), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7574), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8205), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(2459), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243378] = 18, + [243842] = 5, + ACTIONS(9740), 1, + anon_sym_LF, + ACTIONS(9806), 1, + anon_sym_LPAREN2, + ACTIONS(9808), 1, + sym_comment, + STATE(6319), 1, + sym_preproc_argument_list, + ACTIONS(9744), 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, + [243875] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, - sym_identifier, - ACTIONS(9308), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - STATE(3104), 1, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9402), 1, + sym_identifier, + STATE(3113), 1, sym_template_type, - STATE(3659), 1, - sym__class_declaration_item, - STATE(4364), 1, + STATE(5427), 1, sym_field_declaration_list, - STATE(7005), 1, + STATE(5456), 1, + sym__class_declaration_item, + STATE(7036), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4541), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6095), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243437] = 18, + [243934] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(5998), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7824), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(8950), 1, - anon_sym_LBRACE, - ACTIONS(9328), 1, + ACTIONS(9431), 1, sym_identifier, - STATE(5330), 1, + STATE(2846), 1, sym_template_type, - STATE(5490), 1, + STATE(2942), 1, sym_field_declaration_list, - STATE(5770), 1, + STATE(3096), 1, sym__class_declaration_item, - STATE(7022), 1, + STATE(7059), 1, sym__scope_resolution, - STATE(7525), 1, + STATE(7574), 1, sym_virtual_specifier, - STATE(8192), 1, + STATE(8205), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5327), 2, + STATE(2459), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6022), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243496] = 16, + [243993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9719), 1, - anon_sym_COMMA, - ACTIONS(9721), 1, - anon_sym_RPAREN, - ACTIONS(9727), 1, - anon_sym_SLASH, - ACTIONS(9729), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9731), 1, - anon_sym_AMP_AMP, - ACTIONS(9733), 1, - anon_sym_PIPE, - ACTIONS(9735), 1, - anon_sym_CARET, - ACTIONS(9737), 1, + ACTIONS(3588), 2, anon_sym_AMP, - STATE(7949), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(9723), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9725), 2, + anon_sym_const, + ACTIONS(3590), 19, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [243551] = 18, + 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_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [244022] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(5998), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, - sym_identifier, - ACTIONS(9308), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - STATE(3104), 1, + ACTIONS(9431), 1, + sym_identifier, + STATE(2846), 1, sym_template_type, - STATE(3555), 1, - sym__class_declaration_item, - STATE(4364), 1, + STATE(2942), 1, sym_field_declaration_list, - STATE(7005), 1, + STATE(3086), 1, + sym__class_declaration_item, + STATE(7059), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7574), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8205), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4541), 2, + STATE(2459), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6047), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243610] = 18, + [244081] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7824), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(8950), 1, - anon_sym_LBRACE, - ACTIONS(9328), 1, + ACTIONS(9402), 1, sym_identifier, - STATE(5330), 1, + STATE(3113), 1, sym_template_type, - STATE(5490), 1, - sym_field_declaration_list, - STATE(5672), 1, + STATE(3588), 1, sym__class_declaration_item, - STATE(7022), 1, + STATE(4379), 1, + sym_field_declaration_list, + STATE(7036), 1, sym__scope_resolution, - STATE(7525), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8192), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5327), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6038), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243669] = 18, + [244140] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9402), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3604), 1, + STATE(3615), 1, sym__class_declaration_item, - STATE(4366), 1, + STATE(4379), 1, sym_field_declaration_list, - STATE(7045), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6116), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243728] = 18, + [244199] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(6505), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(8920), 1, - anon_sym_LBRACE, - ACTIONS(9312), 1, + ACTIONS(9394), 1, sym_identifier, - STATE(3104), 1, + STATE(2979), 1, sym_template_type, - STATE(5387), 1, + STATE(3060), 1, sym_field_declaration_list, - STATE(5468), 1, + STATE(3281), 1, sym__class_declaration_item, - STATE(7031), 1, + STATE(7064), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6059), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243787] = 18, + [244258] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7742), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(9318), 1, + ACTIONS(9394), 1, sym_identifier, - STATE(2134), 1, + STATE(2979), 1, sym_template_type, - STATE(2218), 1, - sym__class_declaration_item, - STATE(5894), 1, + STATE(3060), 1, sym_field_declaration_list, - STATE(7025), 1, + STATE(3274), 1, + sym__class_declaration_item, + STATE(7064), 1, sym__scope_resolution, - STATE(7340), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8165), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5415), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6031), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243846] = 18, + [244317] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3558), 1, + STATE(3639), 1, sym__class_declaration_item, - STATE(4366), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(7045), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243905] = 18, + [244376] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(6375), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7742), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(9318), 1, + ACTIONS(9439), 1, sym_identifier, - STATE(2134), 1, + STATE(2960), 1, sym_template_type, - STATE(2209), 1, - sym__class_declaration_item, - STATE(5894), 1, + STATE(3253), 1, sym_field_declaration_list, - STATE(7025), 1, + STATE(3514), 1, + sym__class_declaration_item, + STATE(7040), 1, sym__scope_resolution, - STATE(7340), 1, + STATE(7393), 1, sym_virtual_specifier, - STATE(8165), 1, + STATE(8130), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5415), 2, + STATE(2806), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [243964] = 18, + [244435] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9066), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(9394), 1, sym_identifier, - STATE(2903), 1, + STATE(2979), 1, sym_template_type, - STATE(3107), 1, + STATE(3060), 1, sym_field_declaration_list, - STATE(3342), 1, + STATE(3269), 1, sym__class_declaration_item, - STATE(7002), 1, + STATE(7064), 1, sym__scope_resolution, - STATE(7488), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8394), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2707), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6037), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244023] = 18, + [244494] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9066), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(9394), 1, sym_identifier, - STATE(2903), 1, + STATE(2979), 1, sym_template_type, - STATE(3107), 1, + STATE(3060), 1, sym_field_declaration_list, - STATE(3347), 1, + STATE(3278), 1, sym__class_declaration_item, - STATE(7002), 1, + STATE(7064), 1, sym__scope_resolution, - STATE(7488), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8394), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2707), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6071), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244082] = 20, + [244553] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(131), 1, - anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(5306), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(8492), 1, - anon_sym_STAR, - ACTIONS(9747), 1, + ACTIONS(9398), 1, sym_identifier, - ACTIONS(9749), 1, - anon_sym_template, - STATE(3014), 1, - sym_dependent_identifier, - STATE(3015), 1, - sym_pointer_type_declarator, - STATE(3023), 1, - sym_template_function, - STATE(3029), 1, - sym_destructor_name, - STATE(3038), 1, - sym_operator_name, - STATE(3053), 1, - sym_qualified_identifier, - STATE(6030), 1, + STATE(3113), 1, + sym_template_type, + STATE(3600), 1, + sym__class_declaration_item, + STATE(4379), 1, + sym_field_declaration_list, + STATE(7046), 1, sym__scope_resolution, - STATE(7295), 1, - sym_qualified_operator_cast_identifier, - STATE(7297), 1, - sym_operator_cast, - STATE(8865), 1, - sym_ms_based_modifier, - STATE(9084), 3, + STATE(7333), 1, + sym_virtual_specifier, + STATE(8188), 1, + sym_base_class_clause, + ACTIONS(5325), 2, + anon_sym_final, + anon_sym_override, + STATE(4086), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(6126), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9043), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [244145] = 18, + [244612] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(6220), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7742), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9318), 1, + ACTIONS(9422), 1, sym_identifier, - STATE(2134), 1, + STATE(2917), 1, sym_template_type, - STATE(2193), 1, - sym__class_declaration_item, - STATE(5894), 1, + STATE(3054), 1, sym_field_declaration_list, - STATE(7025), 1, + STATE(3331), 1, + sym__class_declaration_item, + STATE(7053), 1, sym__scope_resolution, - STATE(7340), 1, + STATE(7436), 1, sym_virtual_specifier, - STATE(8165), 1, + STATE(8435), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5415), 2, + STATE(2742), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244204] = 18, + [244671] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9088), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9398), 1, sym_identifier, - STATE(2134), 1, + STATE(3113), 1, sym_template_type, - STATE(2218), 1, + STATE(3639), 1, sym__class_declaration_item, - STATE(2880), 1, + STATE(4379), 1, sym_field_declaration_list, - STATE(7040), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6065), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244263] = 18, + [244730] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6522), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9030), 1, - anon_sym_COLON_COLON, - ACTIONS(9320), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(2997), 1, + STATE(3113), 1, sym_template_type, - STATE(3057), 1, - sym_field_declaration_list, - STATE(3299), 1, + STATE(3615), 1, sym__class_declaration_item, - STATE(7027), 1, + STATE(4382), 1, + sym_field_declaration_list, + STATE(7076), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6050), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244322] = 18, + [244789] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(6375), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9088), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9439), 1, sym_identifier, - STATE(2134), 1, + STATE(2960), 1, sym_template_type, - STATE(2209), 1, - sym__class_declaration_item, - STATE(2880), 1, + STATE(3253), 1, sym_field_declaration_list, + STATE(3523), 1, + sym__class_declaration_item, STATE(7040), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7393), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8130), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(2806), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6044), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244381] = 18, + [244848] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6552), 1, + ACTIONS(6220), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9136), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9310), 1, + ACTIONS(9422), 1, sym_identifier, - STATE(3013), 1, + STATE(2917), 1, sym_template_type, - STATE(3546), 1, + STATE(3054), 1, sym_field_declaration_list, - STATE(3722), 1, + STATE(3272), 1, sym__class_declaration_item, - STATE(7023), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(7429), 1, + STATE(7436), 1, sym_virtual_specifier, - STATE(8193), 1, + STATE(8435), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2912), 2, + STATE(2742), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6062), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244440] = 18, + [244907] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7742), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(9318), 1, + ACTIONS(9408), 1, sym_identifier, - STATE(2134), 1, + STATE(2979), 1, sym_template_type, - STATE(2198), 1, - sym__class_declaration_item, - STATE(5894), 1, + STATE(3060), 1, sym_field_declaration_list, - STATE(7025), 1, + STATE(3304), 1, + sym__class_declaration_item, + STATE(7067), 1, sym__scope_resolution, - STATE(7340), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8165), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5415), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6047), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244499] = 18, + [244966] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9066), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(9408), 1, sym_identifier, - STATE(2903), 1, + STATE(2979), 1, sym_template_type, - STATE(3107), 1, + STATE(3060), 1, sym_field_declaration_list, - STATE(3304), 1, + STATE(3278), 1, sym__class_declaration_item, - STATE(7002), 1, + STATE(7067), 1, sym__scope_resolution, - STATE(7488), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8394), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2707), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6067), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244558] = 18, + [245025] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6522), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9030), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(9320), 1, + ACTIONS(9408), 1, sym_identifier, - STATE(2997), 1, + STATE(2979), 1, sym_template_type, - STATE(3057), 1, + STATE(3060), 1, sym_field_declaration_list, - STATE(3295), 1, + STATE(3269), 1, sym__class_declaration_item, - STATE(7027), 1, + STATE(7067), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244617] = 18, + [245084] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6220), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9066), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(9422), 1, sym_identifier, - STATE(2903), 1, + STATE(2917), 1, sym_template_type, - STATE(3107), 1, + STATE(3054), 1, sym_field_declaration_list, - STATE(3313), 1, + STATE(3285), 1, sym__class_declaration_item, - STATE(7002), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(7488), 1, + STATE(7436), 1, sym_virtual_specifier, - STATE(8394), 1, + STATE(8435), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2707), 2, + STATE(2742), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6042), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244676] = 18, + [245143] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6552), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9136), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(9310), 1, + ACTIONS(9394), 1, sym_identifier, - STATE(3013), 1, + STATE(2979), 1, sym_template_type, - STATE(3546), 1, + STATE(3060), 1, sym_field_declaration_list, - STATE(3772), 1, + STATE(3304), 1, sym__class_declaration_item, - STATE(7023), 1, + STATE(7064), 1, sym__scope_resolution, - STATE(7429), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8193), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2912), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6035), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244735] = 18, + [245202] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6552), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9136), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9310), 1, + ACTIONS(9418), 1, sym_identifier, - STATE(3013), 1, + STATE(2150), 1, sym_template_type, - STATE(3546), 1, - sym_field_declaration_list, - STATE(3783), 1, + STATE(2237), 1, sym__class_declaration_item, - STATE(7023), 1, + STATE(2882), 1, + sym_field_declaration_list, + STATE(7066), 1, sym__scope_resolution, - STATE(7429), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8193), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2912), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244794] = 18, + [245261] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6182), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9066), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(9402), 1, sym_identifier, - STATE(2903), 1, + STATE(3113), 1, sym_template_type, - STATE(3107), 1, - sym_field_declaration_list, - STATE(3224), 1, + STATE(3639), 1, sym__class_declaration_item, - STATE(7002), 1, + STATE(4379), 1, + sym_field_declaration_list, + STATE(7036), 1, sym__scope_resolution, - STATE(7488), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8394), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2707), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244853] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8528), 1, - anon_sym_STAR, - ACTIONS(8530), 1, - anon_sym_AMP_AMP, - ACTIONS(8532), 1, - anon_sym_AMP, - STATE(4217), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(6855), 1, - sym__abstract_declarator, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7914), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [244898] = 18, + [245320] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(8920), 1, - anon_sym_LBRACE, - ACTIONS(9306), 1, + ACTIONS(9402), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(5387), 1, - sym_field_declaration_list, - STATE(5456), 1, + STATE(3600), 1, sym__class_declaration_item, - STATE(7045), 1, + STATE(4379), 1, + sym_field_declaration_list, + STATE(7036), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6054), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [244957] = 3, + [245379] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 2, + ACTIONS(9810), 1, + anon_sym_COMMA, + ACTIONS(9812), 1, + anon_sym_RPAREN, + ACTIONS(9818), 1, + anon_sym_SLASH, + ACTIONS(9820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9822), 1, + anon_sym_AMP_AMP, + ACTIONS(9824), 1, + anon_sym_PIPE, + ACTIONS(9826), 1, + anon_sym_CARET, + ACTIONS(9828), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(3474), 19, - anon_sym_LPAREN2, + STATE(7997), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(9814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9816), 2, 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_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [244986] = 18, + anon_sym_PERCENT, + ACTIONS(9830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9832), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9834), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [245434] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(6073), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(8920), 1, - anon_sym_LBRACE, - ACTIONS(9306), 1, + ACTIONS(9418), 1, sym_identifier, - STATE(3104), 1, + STATE(2150), 1, sym_template_type, - STATE(5387), 1, - sym_field_declaration_list, - STATE(5459), 1, + STATE(2217), 1, sym__class_declaration_item, - STATE(7045), 1, + STATE(2882), 1, + sym_field_declaration_list, + STATE(7066), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6006), 2, + STATE(6072), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245045] = 18, + [245493] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7742), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9318), 1, + ACTIONS(9418), 1, sym_identifier, - STATE(2134), 1, + STATE(2150), 1, sym_template_type, - STATE(2237), 1, + STATE(2202), 1, sym__class_declaration_item, - STATE(5894), 1, + STATE(2882), 1, sym_field_declaration_list, - STATE(7025), 1, + STATE(7066), 1, sym__scope_resolution, - STATE(7340), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8165), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5415), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245104] = 18, + [245552] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(9449), 1, sym_identifier, - STATE(3104), 1, + STATE(2150), 1, sym_template_type, - STATE(3574), 1, + STATE(2237), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(2882), 1, sym_field_declaration_list, - STATE(7030), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245163] = 18, + [245611] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6552), 1, + ACTIONS(6220), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9136), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9310), 1, + ACTIONS(9422), 1, sym_identifier, - STATE(3013), 1, + STATE(2917), 1, sym_template_type, - STATE(3546), 1, + STATE(3054), 1, sym_field_declaration_list, - STATE(3880), 1, + STATE(3379), 1, sym__class_declaration_item, - STATE(7023), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(7429), 1, + STATE(7436), 1, sym_virtual_specifier, - STATE(8193), 1, + STATE(8435), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2912), 2, + STATE(2742), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245222] = 18, + [245670] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6522), 1, + ACTIONS(6220), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9030), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9320), 1, + ACTIONS(9422), 1, sym_identifier, - STATE(2997), 1, + STATE(2917), 1, sym_template_type, - STATE(3057), 1, + STATE(3054), 1, sym_field_declaration_list, - STATE(3283), 1, + STATE(3370), 1, sym__class_declaration_item, - STATE(7027), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7436), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8435), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(2742), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6070), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245281] = 18, + [245729] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6522), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9030), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(9320), 1, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9402), 1, sym_identifier, - STATE(2997), 1, + STATE(3113), 1, sym_template_type, - STATE(3057), 1, + STATE(5427), 1, sym_field_declaration_list, - STATE(3272), 1, + STATE(5466), 1, sym__class_declaration_item, - STATE(7027), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6052), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245340] = 18, + [245788] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6522), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9030), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(9320), 1, + ACTIONS(9420), 1, sym_identifier, - STATE(2997), 1, + STATE(2150), 1, sym_template_type, - STATE(3057), 1, - sym_field_declaration_list, - STATE(3257), 1, + STATE(2221), 1, sym__class_declaration_item, - STATE(7027), 1, + STATE(5937), 1, + sym_field_declaration_list, + STATE(7058), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7363), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8147), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(5469), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6110), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245399] = 18, + [245847] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(8601), 1, + anon_sym_STAR, + ACTIONS(8603), 1, + anon_sym_AMP_AMP, + ACTIONS(8605), 1, + anon_sym_AMP, + STATE(4188), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(6853), 1, + sym__abstract_declarator, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8031), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [245892] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6552), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9136), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(9310), 1, + ACTIONS(9420), 1, sym_identifier, - STATE(3013), 1, + STATE(2150), 1, sym_template_type, - STATE(3546), 1, - sym_field_declaration_list, - STATE(3902), 1, + STATE(2215), 1, sym__class_declaration_item, - STATE(7023), 1, + STATE(5937), 1, + sym_field_declaration_list, + STATE(7058), 1, sym__scope_resolution, - STATE(7429), 1, + STATE(7363), 1, sym_virtual_specifier, - STATE(8193), 1, + STATE(8147), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2912), 2, + STATE(5469), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6041), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245458] = 18, + [245951] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5045), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9324), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3659), 1, + STATE(3588), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(7046), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6075), 2, + STATE(6095), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245517] = 18, + [246010] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9191), 1, + anon_sym_COLON_COLON, + ACTIONS(9408), 1, sym_identifier, - STATE(3104), 1, + STATE(2979), 1, sym_template_type, - STATE(3604), 1, - sym__class_declaration_item, - STATE(4364), 1, + STATE(3060), 1, sym_field_declaration_list, - STATE(7030), 1, + STATE(3274), 1, + sym__class_declaration_item, + STATE(7067), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6048), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [246069] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(131), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(5338), 1, + anon_sym_COLON_COLON, + ACTIONS(8627), 1, + anon_sym_STAR, + ACTIONS(9838), 1, + sym_identifier, + ACTIONS(9840), 1, + anon_sym_template, + STATE(3069), 1, + sym_pointer_type_declarator, + STATE(3073), 1, + sym_template_function, + STATE(3077), 1, + sym_destructor_name, + STATE(3078), 1, + sym_dependent_identifier, + STATE(3080), 1, + sym_qualified_identifier, + STATE(3104), 1, + sym_operator_name, + STATE(6087), 1, + sym__scope_resolution, + STATE(7569), 1, + sym_operator_cast, + STATE(7578), 1, + sym_qualified_operator_cast_identifier, + STATE(8896), 1, + sym_ms_based_modifier, + STATE(9043), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [245576] = 18, + [246132] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5045), 1, - anon_sym_COLON_COLON, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9324), 1, + ACTIONS(7903), 1, + anon_sym_COLON_COLON, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9402), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3555), 1, - sym__class_declaration_item, - STATE(4364), 1, + STATE(5427), 1, sym_field_declaration_list, - STATE(7046), 1, + STATE(5471), 1, + sym__class_declaration_item, + STATE(7036), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6115), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245635] = 18, + [246191] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(6505), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(8920), 1, - anon_sym_LBRACE, - ACTIONS(9312), 1, + ACTIONS(9408), 1, sym_identifier, - STATE(3104), 1, + STATE(2979), 1, sym_template_type, - STATE(5387), 1, + STATE(3060), 1, sym_field_declaration_list, - STATE(5438), 1, + STATE(3281), 1, sym__class_declaration_item, - STATE(7031), 1, + STATE(7067), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7501), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8058), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6069), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245694] = 18, + [246250] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(8920), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(9312), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(5387), 1, - sym_field_declaration_list, - STATE(5435), 1, + STATE(3600), 1, sym__class_declaration_item, - STATE(7031), 1, + STATE(4382), 1, + sym_field_declaration_list, + STATE(7076), 1, sym__scope_resolution, - STATE(7460), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8258), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(5295), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6015), 2, + STATE(6064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245753] = 10, + [246309] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9842), 1, + sym_identifier, + ACTIONS(9844), 1, + anon_sym_RPAREN, + ACTIONS(9846), 1, + anon_sym_LPAREN2, + ACTIONS(9848), 1, + anon_sym_defined, + ACTIONS(9854), 1, + sym_number_literal, + ACTIONS(9850), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9852), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9856), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6133), 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, + [246352] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9842), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9846), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9848), 1, anon_sym_defined, - ACTIONS(9751), 1, + ACTIONS(9858), 1, anon_sym_RPAREN, - ACTIONS(9753), 1, + ACTIONS(9860), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9850), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9852), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9856), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6097), 7, + STATE(6075), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -566223,2378 +569690,2234 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [245796] = 18, + [246395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(9864), 1, + anon_sym_LBRACK, + ACTIONS(9862), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7216), 1, anon_sym_LBRACE, - ACTIONS(9044), 1, - anon_sym_COLON_COLON, - ACTIONS(9334), 1, - sym_identifier, - STATE(4133), 1, - sym_template_type, - STATE(4332), 1, - sym_field_declaration_list, - STATE(4517), 1, - sym__class_declaration_item, - STATE(7041), 1, - sym__scope_resolution, - STATE(7519), 1, - sym_virtual_specifier, - STATE(8141), 1, - sym_base_class_clause, - ACTIONS(5294), 2, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(3674), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6063), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [245855] = 18, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [246424] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7216), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(9044), 1, - anon_sym_COLON_COLON, - ACTIONS(9334), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9404), 1, sym_identifier, - STATE(4133), 1, + STATE(3113), 1, sym_template_type, - STATE(4332), 1, - sym_field_declaration_list, - STATE(4520), 1, + STATE(3603), 1, sym__class_declaration_item, - STATE(7041), 1, + STATE(4382), 1, + sym_field_declaration_list, + STATE(7073), 1, sym__scope_resolution, - STATE(7519), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8141), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3674), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245914] = 18, + [246483] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(2134), 1, + STATE(3113), 1, sym_template_type, - STATE(2237), 1, + STATE(3603), 1, sym__class_declaration_item, - STATE(2880), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(7043), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [245973] = 18, + [246542] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7216), 1, + ACTIONS(7601), 1, anon_sym_LBRACE, - ACTIONS(9044), 1, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9334), 1, + ACTIONS(9396), 1, sym_identifier, - STATE(4133), 1, + STATE(4306), 1, sym_template_type, - STATE(4332), 1, + STATE(4572), 1, sym_field_declaration_list, - STATE(4502), 1, + STATE(4639), 1, sym__class_declaration_item, - STATE(7041), 1, + STATE(7057), 1, sym__scope_resolution, - STATE(7519), 1, + STATE(7598), 1, sym_virtual_specifier, - STATE(8141), 1, + STATE(8272), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3674), 2, + STATE(4008), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246032] = 18, + [246601] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7216), 1, + ACTIONS(7601), 1, anon_sym_LBRACE, - ACTIONS(9044), 1, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9334), 1, + ACTIONS(9396), 1, sym_identifier, - STATE(4133), 1, + STATE(4306), 1, sym_template_type, - STATE(4332), 1, + STATE(4572), 1, sym_field_declaration_list, - STATE(4488), 1, + STATE(4663), 1, sym__class_declaration_item, - STATE(7041), 1, + STATE(7057), 1, sym__scope_resolution, - STATE(7519), 1, + STATE(7598), 1, sym_virtual_specifier, - STATE(8141), 1, + STATE(8272), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3674), 2, + STATE(4008), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6068), 2, + STATE(6096), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246091] = 18, + [246660] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9842), 1, + sym_identifier, + ACTIONS(9846), 1, + anon_sym_LPAREN2, + ACTIONS(9848), 1, + anon_sym_defined, + ACTIONS(9866), 1, + anon_sym_RPAREN, + ACTIONS(9868), 1, + sym_number_literal, + ACTIONS(9850), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9852), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9856), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6130), 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, + [246703] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9088), 1, + ACTIONS(7601), 1, + anon_sym_LBRACE, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9396), 1, sym_identifier, - STATE(2134), 1, + STATE(4306), 1, sym_template_type, - STATE(2193), 1, - sym__class_declaration_item, - STATE(2880), 1, + STATE(4572), 1, sym_field_declaration_list, - STATE(7040), 1, + STATE(4667), 1, + sym__class_declaration_item, + STATE(7057), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7598), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8272), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(4008), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246150] = 18, + [246762] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9088), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9398), 1, sym_identifier, - STATE(2134), 1, + STATE(3113), 1, sym_template_type, - STATE(2198), 1, + STATE(3603), 1, sym__class_declaration_item, - STATE(2880), 1, + STATE(4379), 1, sym_field_declaration_list, - STATE(7040), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6107), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246209] = 18, + [246821] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6277), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9225), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9398), 1, sym_identifier, - STATE(2929), 1, + STATE(3113), 1, sym_template_type, - STATE(3184), 1, + STATE(5427), 1, sym_field_declaration_list, - STATE(3397), 1, + STATE(5449), 1, sym__class_declaration_item, - STATE(7032), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(7361), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8244), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2751), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6134), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246268] = 18, + [246880] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7216), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(9044), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9334), 1, + ACTIONS(9418), 1, sym_identifier, - STATE(4133), 1, + STATE(2150), 1, sym_template_type, - STATE(4332), 1, - sym_field_declaration_list, - STATE(4478), 1, + STATE(2215), 1, sym__class_declaration_item, - STATE(7041), 1, + STATE(2882), 1, + sym_field_declaration_list, + STATE(7066), 1, sym__scope_resolution, - STATE(7519), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8141), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3674), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246327] = 18, + [246939] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6277), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9225), 1, + ACTIONS(7601), 1, + anon_sym_LBRACE, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(9396), 1, sym_identifier, - STATE(2929), 1, + STATE(4306), 1, sym_template_type, - STATE(3184), 1, + STATE(4572), 1, sym_field_declaration_list, - STATE(3425), 1, + STATE(4659), 1, sym__class_declaration_item, - STATE(7032), 1, + STATE(7057), 1, sym__scope_resolution, - STATE(7361), 1, + STATE(7598), 1, sym_virtual_specifier, - STATE(8244), 1, + STATE(8272), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2751), 2, + STATE(4008), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6067), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246386] = 18, + [246998] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6277), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9225), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(9400), 1, sym_identifier, - STATE(2929), 1, + STATE(2181), 1, sym_template_type, - STATE(3184), 1, + STATE(2326), 1, sym_field_declaration_list, - STATE(3436), 1, + STATE(2443), 1, sym__class_declaration_item, - STATE(7032), 1, + STATE(7033), 1, sym__scope_resolution, - STATE(7361), 1, + STATE(7469), 1, sym_virtual_specifier, - STATE(8244), 1, + STATE(8262), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2751), 2, + STATE(2034), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246445] = 18, + [247057] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9400), 1, sym_identifier, - STATE(3104), 1, + STATE(2181), 1, sym_template_type, - STATE(3659), 1, - sym__class_declaration_item, - STATE(4366), 1, + STATE(2326), 1, sym_field_declaration_list, - STATE(7031), 1, + STATE(2460), 1, + sym__class_declaration_item, + STATE(7033), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7469), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8262), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(2034), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6017), 2, + STATE(6104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246504] = 18, + [247116] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5045), 1, - anon_sym_COLON_COLON, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9324), 1, + ACTIONS(7601), 1, + anon_sym_LBRACE, + ACTIONS(9169), 1, + anon_sym_COLON_COLON, + ACTIONS(9396), 1, sym_identifier, - STATE(3104), 1, + STATE(4306), 1, sym_template_type, - STATE(3604), 1, - sym__class_declaration_item, - STATE(4364), 1, + STATE(4572), 1, sym_field_declaration_list, - STATE(7046), 1, + STATE(4648), 1, + sym__class_declaration_item, + STATE(7057), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7598), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8272), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(4008), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6008), 2, + STATE(6099), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246563] = 18, + [247175] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9449), 1, sym_identifier, - STATE(3104), 1, + STATE(2150), 1, sym_template_type, - STATE(3555), 1, + STATE(2217), 1, sym__class_declaration_item, - STATE(4366), 1, + STATE(2882), 1, sym_field_declaration_list, - STATE(7031), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6078), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246622] = 18, + [247234] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9418), 1, sym_identifier, - STATE(3104), 1, + STATE(2150), 1, sym_template_type, - STATE(3604), 1, + STATE(2221), 1, sym__class_declaration_item, - STATE(4366), 1, + STATE(2882), 1, sym_field_declaration_list, - STATE(7031), 1, + STATE(7066), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6112), 2, + STATE(6077), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246681] = 18, + [247293] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5045), 1, - anon_sym_COLON_COLON, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9324), 1, + ACTIONS(7867), 1, + anon_sym_COLON_COLON, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9398), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3558), 1, - sym__class_declaration_item, - STATE(4364), 1, + STATE(5427), 1, sym_field_declaration_list, + STATE(5456), 1, + sym__class_declaration_item, STATE(7046), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246740] = 18, + [247352] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6522), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7804), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(9326), 1, + ACTIONS(9420), 1, sym_identifier, - STATE(2997), 1, + STATE(2150), 1, sym_template_type, - STATE(3057), 1, - sym_field_declaration_list, - STATE(3272), 1, + STATE(2202), 1, sym__class_declaration_item, - STATE(7029), 1, + STATE(5937), 1, + sym_field_declaration_list, + STATE(7058), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7363), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8147), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(5469), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6094), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246799] = 18, + [247411] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(7849), 1, + anon_sym_COLON_COLON, + ACTIONS(9420), 1, sym_identifier, - STATE(3104), 1, + STATE(2150), 1, sym_template_type, - STATE(3659), 1, + STATE(2217), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(5937), 1, sym_field_declaration_list, - STATE(7030), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7363), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8147), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(5469), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6096), 2, + STATE(6114), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246858] = 18, + [247470] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6522), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7804), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(9326), 1, + ACTIONS(9449), 1, sym_identifier, - STATE(2997), 1, + STATE(2150), 1, sym_template_type, - STATE(3057), 1, - sym_field_declaration_list, - STATE(3283), 1, + STATE(2202), 1, sym__class_declaration_item, - STATE(7029), 1, + STATE(2882), 1, + sym_field_declaration_list, + STATE(7068), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [246917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9757), 1, - anon_sym_LBRACK, - ACTIONS(9755), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - 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, - [246946] = 18, + [247529] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5321), 1, + anon_sym_LBRACE, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7526), 1, - anon_sym_LBRACE, - ACTIONS(9171), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9344), 1, + ACTIONS(9400), 1, sym_identifier, - STATE(4257), 1, + STATE(2181), 1, sym_template_type, - STATE(4521), 1, + STATE(2326), 1, sym_field_declaration_list, - STATE(4618), 1, + STATE(2466), 1, sym__class_declaration_item, - STATE(7006), 1, + STATE(7033), 1, sym__scope_resolution, - STATE(7410), 1, + STATE(7469), 1, sym_virtual_specifier, - STATE(8100), 1, + STATE(8262), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4037), 2, + STATE(2034), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6082), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247005] = 18, + [247588] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7526), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(9171), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(9344), 1, + ACTIONS(9420), 1, sym_identifier, - STATE(4257), 1, + STATE(2150), 1, sym_template_type, - STATE(4521), 1, - sym_field_declaration_list, - STATE(4623), 1, + STATE(2237), 1, sym__class_declaration_item, - STATE(7006), 1, + STATE(5937), 1, + sym_field_declaration_list, + STATE(7058), 1, sym__scope_resolution, - STATE(7410), 1, + STATE(7363), 1, sym_virtual_specifier, - STATE(8100), 1, + STATE(8147), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4037), 2, + STATE(5469), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247064] = 18, + [247647] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7526), 1, - anon_sym_LBRACE, - ACTIONS(9171), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(9344), 1, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9402), 1, sym_identifier, - STATE(4257), 1, + STATE(3113), 1, sym_template_type, - STATE(4521), 1, + STATE(5427), 1, sym_field_declaration_list, - STATE(4633), 1, + STATE(5483), 1, sym__class_declaration_item, - STATE(7006), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(7410), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8100), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4037), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247123] = 18, + [247706] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, + ACTIONS(7323), 1, + anon_sym_LBRACE, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9424), 1, sym_identifier, - STATE(3104), 1, + STATE(4141), 1, sym_template_type, - STATE(3555), 1, - sym__class_declaration_item, - STATE(4366), 1, + STATE(4371), 1, sym_field_declaration_list, - STATE(7045), 1, + STATE(4552), 1, + sym__class_declaration_item, + STATE(7055), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7628), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8353), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(3714), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6127), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247182] = 18, + [247765] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7526), 1, + ACTIONS(7323), 1, anon_sym_LBRACE, - ACTIONS(9171), 1, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(9344), 1, + ACTIONS(9424), 1, sym_identifier, - STATE(4257), 1, + STATE(4141), 1, sym_template_type, - STATE(4521), 1, + STATE(4371), 1, sym_field_declaration_list, - STATE(4629), 1, + STATE(4558), 1, sym__class_declaration_item, - STATE(7006), 1, + STATE(7055), 1, sym__scope_resolution, - STATE(7410), 1, + STATE(7628), 1, sym_virtual_specifier, - STATE(8100), 1, + STATE(8353), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4037), 2, + STATE(3714), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6085), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247241] = 18, + [247824] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(7526), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(9171), 1, - anon_sym_COLON_COLON, - ACTIONS(9344), 1, + ACTIONS(7099), 1, + anon_sym_COLON, + ACTIONS(9404), 1, sym_identifier, - STATE(4257), 1, + STATE(3113), 1, sym_template_type, - STATE(4521), 1, - sym_field_declaration_list, - STATE(4608), 1, + STATE(3588), 1, sym__class_declaration_item, - STATE(7006), 1, + STATE(4382), 1, + sym_field_declaration_list, + STATE(7073), 1, sym__scope_resolution, - STATE(7410), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8100), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4037), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6094), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247300] = 18, + [247883] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(5077), 1, anon_sym_COLON_COLON, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9404), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(3555), 1, + STATE(3615), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(7030), 1, + STATE(7073), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247359] = 18, + [247942] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6277), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9225), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9398), 1, sym_identifier, - STATE(2929), 1, + STATE(3113), 1, sym_template_type, - STATE(3184), 1, + STATE(5427), 1, sym_field_declaration_list, - STATE(3477), 1, + STATE(5483), 1, sym__class_declaration_item, - STATE(7032), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(7361), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8244), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2751), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247418] = 18, + [248001] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + ACTIONS(9426), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, sym_template_type, - STATE(3659), 1, + STATE(3603), 1, sym__class_declaration_item, - STATE(4366), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(7045), 1, + STATE(7052), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(4519), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6026), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247477] = 18, + [248060] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6277), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9225), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(9449), 1, sym_identifier, - STATE(2929), 1, + STATE(2150), 1, sym_template_type, - STATE(3184), 1, - sym_field_declaration_list, - STATE(3481), 1, + STATE(2221), 1, sym__class_declaration_item, - STATE(7032), 1, + STATE(2882), 1, + sym_field_declaration_list, + STATE(7068), 1, sym__scope_resolution, - STATE(7361), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8244), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2751), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6070), 2, + STATE(6112), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247536] = 18, + [248119] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6522), 1, + ACTIONS(6579), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7804), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9326), 1, + ACTIONS(9412), 1, sym_identifier, - STATE(2997), 1, + STATE(3036), 1, sym_template_type, - STATE(3057), 1, + STATE(3427), 1, sym_field_declaration_list, - STATE(3295), 1, + STATE(3814), 1, sym__class_declaration_item, - STATE(7029), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7602), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8305), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(2934), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247595] = 18, + [248178] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6522), 1, + ACTIONS(6579), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7804), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9326), 1, + ACTIONS(9412), 1, sym_identifier, - STATE(2997), 1, + STATE(3036), 1, sym_template_type, - STATE(3057), 1, + STATE(3427), 1, sym_field_declaration_list, - STATE(3299), 1, + STATE(3734), 1, sym__class_declaration_item, - STATE(7029), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7602), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8305), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(2934), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6078), 2, + STATE(6123), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247654] = 18, + [248237] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, - sym_identifier, - ACTIONS(9308), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - STATE(3104), 1, + ACTIONS(9449), 1, + sym_identifier, + STATE(2150), 1, sym_template_type, - STATE(3574), 1, + STATE(2215), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(2882), 1, sym_field_declaration_list, - STATE(7005), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7381), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8090), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4541), 2, + STATE(2522), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247713] = 5, - ACTIONS(9649), 1, - anon_sym_LF, - ACTIONS(9759), 1, - anon_sym_LPAREN2, - ACTIONS(9761), 1, - sym_comment, - STATE(6246), 1, - sym_preproc_argument_list, - ACTIONS(9653), 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, - [247746] = 18, + [248296] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6522), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7804), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9326), 1, + ACTIONS(9398), 1, sym_identifier, - STATE(2997), 1, + STATE(3113), 1, sym_template_type, - STATE(3057), 1, - sym_field_declaration_list, - STATE(3257), 1, + STATE(3615), 1, sym__class_declaration_item, - STATE(7029), 1, + STATE(4379), 1, + sym_field_declaration_list, + STATE(7046), 1, sym__scope_resolution, - STATE(7352), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8361), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2882), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247805] = 18, + [248355] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, - sym_identifier, - ACTIONS(9308), 1, + ACTIONS(7323), 1, + anon_sym_LBRACE, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - STATE(3104), 1, + ACTIONS(9424), 1, + sym_identifier, + STATE(4141), 1, sym_template_type, - STATE(3558), 1, - sym__class_declaration_item, - STATE(4364), 1, + STATE(4371), 1, sym_field_declaration_list, - STATE(7005), 1, + STATE(4533), 1, + sym__class_declaration_item, + STATE(7055), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7628), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8353), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(4541), 2, + STATE(3714), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247864] = 18, + [248414] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9291), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + ACTIONS(9426), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, sym_template_type, - STATE(3558), 1, + STATE(3615), 1, sym__class_declaration_item, - STATE(4364), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(7030), 1, + STATE(7052), 1, sym__scope_resolution, - STATE(7480), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8325), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(4519), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [247923] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9719), 1, - anon_sym_COMMA, - ACTIONS(9727), 1, - anon_sym_SLASH, - ACTIONS(9729), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9731), 1, - anon_sym_AMP_AMP, - ACTIONS(9733), 1, - anon_sym_PIPE, - ACTIONS(9735), 1, - anon_sym_CARET, - ACTIONS(9737), 1, - anon_sym_AMP, - ACTIONS(9763), 1, - anon_sym_RPAREN, - STATE(7714), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(9723), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9725), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [247978] = 18, + [248473] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(6579), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7736), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9412), 1, sym_identifier, - STATE(2134), 1, + STATE(3036), 1, sym_template_type, - STATE(2218), 1, - sym__class_declaration_item, - STATE(2880), 1, + STATE(3427), 1, sym_field_declaration_list, - STATE(7043), 1, + STATE(3728), 1, + sym__class_declaration_item, + STATE(7041), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7602), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8305), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(2934), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6114), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248037] = 18, + [248532] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - ACTIONS(9291), 1, - sym_identifier, - ACTIONS(9308), 1, - anon_sym_COLON_COLON, - STATE(3104), 1, - sym_template_type, - STATE(3604), 1, - sym__class_declaration_item, - STATE(4364), 1, - sym_field_declaration_list, - STATE(7005), 1, - sym__scope_resolution, - STATE(7480), 1, - sym_virtual_specifier, - STATE(8325), 1, - sym_base_class_clause, - ACTIONS(5294), 2, - anon_sym_final, - anon_sym_override, - STATE(4541), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6092), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [248096] = 18, + ACTIONS(9810), 1, + anon_sym_COMMA, + ACTIONS(9818), 1, + anon_sym_SLASH, + ACTIONS(9820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9822), 1, + anon_sym_AMP_AMP, + ACTIONS(9824), 1, + anon_sym_PIPE, + ACTIONS(9826), 1, + anon_sym_CARET, + ACTIONS(9828), 1, + anon_sym_AMP, + ACTIONS(9870), 1, + anon_sym_RPAREN, + STATE(7750), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(9814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9816), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9832), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9834), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [248587] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7736), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9398), 1, sym_identifier, - STATE(2134), 1, + STATE(3113), 1, sym_template_type, - STATE(2209), 1, + STATE(3588), 1, sym__class_declaration_item, - STATE(2880), 1, + STATE(4379), 1, sym_field_declaration_list, - STATE(7043), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7333), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8188), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(4086), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6100), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248155] = 18, + [248646] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5290), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7097), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9102), 1, - anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(2102), 1, + ACTIONS(9426), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, sym_template_type, - STATE(2292), 1, - sym_field_declaration_list, - STATE(2426), 1, + STATE(3588), 1, sym__class_declaration_item, - STATE(7028), 1, + STATE(4382), 1, + sym_field_declaration_list, + STATE(7052), 1, sym__scope_resolution, - STATE(7594), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8268), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2001), 2, + STATE(4519), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6113), 2, + STATE(6121), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248214] = 18, + [248705] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9810), 1, + anon_sym_COMMA, + ACTIONS(9818), 1, + anon_sym_SLASH, + ACTIONS(9820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9822), 1, + anon_sym_AMP_AMP, + ACTIONS(9824), 1, + anon_sym_PIPE, + ACTIONS(9826), 1, + anon_sym_CARET, + ACTIONS(9828), 1, + anon_sym_AMP, + ACTIONS(9872), 1, + anon_sym_RPAREN, + STATE(7723), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(9814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9816), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9832), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9834), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [248760] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5979), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9203), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9398), 1, sym_identifier, - STATE(2790), 1, + STATE(3113), 1, sym_template_type, - STATE(2940), 1, + STATE(5427), 1, sym_field_declaration_list, - STATE(3025), 1, + STATE(5466), 1, sym__class_declaration_item, - STATE(7024), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(7311), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8075), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2422), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248273] = 18, + [248819] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5979), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9203), 1, + ACTIONS(7323), 1, + anon_sym_LBRACE, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(9424), 1, sym_identifier, - STATE(2790), 1, + STATE(4141), 1, sym_template_type, - STATE(2940), 1, + STATE(4371), 1, sym_field_declaration_list, - STATE(3044), 1, + STATE(4529), 1, sym__class_declaration_item, - STATE(7024), 1, + STATE(7055), 1, sym__scope_resolution, - STATE(7311), 1, + STATE(7628), 1, sym_virtual_specifier, - STATE(8075), 1, + STATE(8353), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2422), 2, + STATE(3714), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6102), 2, + STATE(6146), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248332] = 18, + [248878] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5979), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9203), 1, - anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(9404), 1, sym_identifier, - STATE(2790), 1, + STATE(3113), 1, sym_template_type, - STATE(2940), 1, - sym_field_declaration_list, - STATE(3049), 1, + STATE(3639), 1, sym__class_declaration_item, - STATE(7024), 1, + STATE(4382), 1, + sym_field_declaration_list, + STATE(7073), 1, sym__scope_resolution, - STATE(7311), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8075), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2422), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248391] = 18, + [248937] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5290), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9102), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(9069), 1, + anon_sym_LBRACE, + ACTIONS(9414), 1, sym_identifier, - STATE(2102), 1, + STATE(5358), 1, sym_template_type, - STATE(2292), 1, + STATE(5559), 1, sym_field_declaration_list, - STATE(2430), 1, + STATE(5720), 1, sym__class_declaration_item, - STATE(7028), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(7594), 1, + STATE(7558), 1, sym_virtual_specifier, - STATE(8268), 1, + STATE(8153), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2001), 2, + STATE(5370), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248450] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9703), 1, - sym_identifier, - ACTIONS(9707), 1, - anon_sym_LPAREN2, - ACTIONS(9709), 1, - anon_sym_defined, - ACTIONS(9765), 1, - anon_sym_RPAREN, - ACTIONS(9767), 1, - sym_number_literal, - ACTIONS(9711), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9713), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9717), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6020), 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, - [248493] = 18, + [248996] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9088), 1, - anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9404), 1, sym_identifier, - STATE(2134), 1, + STATE(3113), 1, sym_template_type, - STATE(2237), 1, + STATE(3600), 1, sym__class_declaration_item, - STATE(2880), 1, + STATE(4382), 1, sym_field_declaration_list, - STATE(7040), 1, + STATE(7073), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7434), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8443), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(3467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6119), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248552] = 18, + [249055] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5290), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9102), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(9069), 1, + anon_sym_LBRACE, + ACTIONS(9414), 1, sym_identifier, - STATE(2102), 1, + STATE(5358), 1, sym_template_type, - STATE(2292), 1, + STATE(5559), 1, sym_field_declaration_list, - STATE(2463), 1, + STATE(5788), 1, sym__class_declaration_item, - STATE(7028), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(7594), 1, + STATE(7558), 1, sym_virtual_specifier, - STATE(8268), 1, + STATE(8153), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2001), 2, + STATE(5370), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6141), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248611] = 18, + [249114] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5979), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9203), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(9069), 1, + anon_sym_LBRACE, + ACTIONS(9414), 1, sym_identifier, - STATE(2790), 1, + STATE(5358), 1, sym_template_type, - STATE(2940), 1, + STATE(5559), 1, sym_field_declaration_list, - STATE(3065), 1, + STATE(5779), 1, sym__class_declaration_item, - STATE(7024), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(7311), 1, + STATE(7558), 1, sym_virtual_specifier, - STATE(8075), 1, + STATE(8153), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2422), 2, + STATE(5370), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248670] = 18, + [249173] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5979), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9203), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(9069), 1, + anon_sym_LBRACE, + ACTIONS(9414), 1, sym_identifier, - STATE(2790), 1, + STATE(5358), 1, sym_template_type, - STATE(2940), 1, + STATE(5559), 1, sym_field_declaration_list, - STATE(3068), 1, + STATE(5746), 1, sym__class_declaration_item, - STATE(7024), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(7311), 1, + STATE(7558), 1, sym_virtual_specifier, - STATE(8075), 1, + STATE(8153), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2422), 2, + STATE(5370), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6104), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248729] = 18, + [249232] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5290), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(6579), 1, + anon_sym_LBRACE, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9102), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(9412), 1, sym_identifier, - STATE(2102), 1, + STATE(3036), 1, sym_template_type, - STATE(2292), 1, + STATE(3427), 1, sym_field_declaration_list, - STATE(2459), 1, + STATE(3864), 1, sym__class_declaration_item, - STATE(7028), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(7594), 1, + STATE(7602), 1, sym_virtual_specifier, - STATE(8268), 1, + STATE(8305), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2001), 2, + STATE(2934), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6108), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248788] = 18, + [249291] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, + ACTIONS(6579), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7810), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9412), 1, sym_identifier, - STATE(3104), 1, + STATE(3036), 1, sym_template_type, - STATE(3574), 1, - sym__class_declaration_item, - STATE(4366), 1, + STATE(3427), 1, sym_field_declaration_list, - STATE(7031), 1, + STATE(3876), 1, + sym__class_declaration_item, + STATE(7041), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7602), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8305), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(2934), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6129), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248847] = 18, + [249350] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5290), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(9102), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(8994), 1, + anon_sym_LBRACE, + ACTIONS(9398), 1, sym_identifier, - STATE(2102), 1, + STATE(3113), 1, sym_template_type, - STATE(2292), 1, + STATE(5427), 1, sym_field_declaration_list, - STATE(2451), 1, + STATE(5471), 1, sym__class_declaration_item, - STATE(7028), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(7594), 1, + STATE(7510), 1, sym_virtual_specifier, - STATE(8268), 1, + STATE(8051), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2001), 2, + STATE(5288), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6120), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248906] = 18, + [249409] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6065), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7736), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9400), 1, sym_identifier, - STATE(2134), 1, + STATE(2181), 1, sym_template_type, - STATE(2193), 1, - sym__class_declaration_item, - STATE(2880), 1, + STATE(2326), 1, sym_field_declaration_list, - STATE(7043), 1, + STATE(2472), 1, + sym__class_declaration_item, + STATE(7033), 1, sym__scope_resolution, - STATE(7467), 1, + STATE(7469), 1, sym_virtual_specifier, - STATE(8132), 1, + STATE(8262), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(2625), 2, + STATE(2034), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(6113), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [248965] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9719), 1, - anon_sym_COMMA, - ACTIONS(9727), 1, - anon_sym_SLASH, - ACTIONS(9729), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9731), 1, - anon_sym_AMP_AMP, - ACTIONS(9733), 1, - anon_sym_PIPE, - ACTIONS(9735), 1, - anon_sym_CARET, - ACTIONS(9737), 1, - anon_sym_AMP, - ACTIONS(9769), 1, - anon_sym_RPAREN, - STATE(7639), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(9723), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9725), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [249020] = 18, + [249468] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6932), 1, - anon_sym_LBRACE, - ACTIONS(6934), 1, + ACTIONS(7099), 1, anon_sym_COLON, - ACTIONS(7778), 1, + ACTIONS(7323), 1, + anon_sym_LBRACE, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9424), 1, sym_identifier, - STATE(3104), 1, + STATE(4141), 1, sym_template_type, - STATE(3574), 1, - sym__class_declaration_item, - STATE(4366), 1, + STATE(4371), 1, sym_field_declaration_list, - STATE(7045), 1, + STATE(4516), 1, + sym__class_declaration_item, + STATE(7055), 1, sym__scope_resolution, - STATE(7307), 1, + STATE(7628), 1, sym_virtual_specifier, - STATE(8078), 1, + STATE(8353), 1, sym_base_class_clause, - ACTIONS(5294), 2, + ACTIONS(5325), 2, anon_sym_final, anon_sym_override, - STATE(3947), 2, + STATE(3714), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [249079] = 3, + [249527] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9773), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9771), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9876), 1, + anon_sym_LPAREN2, + ACTIONS(9878), 1, + anon_sym_defined, + ACTIONS(9884), 1, + sym_number_literal, + ACTIONS(9880), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9882), 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, - [249107] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9669), 1, - anon_sym_try, - ACTIONS(9775), 1, - anon_sym_COMMA, - ACTIONS(9777), 1, - anon_sym_LPAREN2, - ACTIONS(9779), 1, - anon_sym_SEMI, - ACTIONS(9781), 1, - anon_sym_LBRACE, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(9785), 1, - anon_sym_EQ, - STATE(2651), 1, - sym_compound_statement, - STATE(2652), 1, - sym_try_statement, - STATE(4120), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(7796), 1, - aux_sym__declaration_declarator_repeat1, - STATE(7886), 1, - sym_gnu_asm_expression, - ACTIONS(9787), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8402), 2, - sym_argument_list, - sym_initializer_list, - [249165] = 3, + ACTIONS(9886), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6296), 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, + [249567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9791), 5, + ACTIONS(9890), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(9789), 15, + ACTIONS(9888), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -568610,95 +571933,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [249193] = 18, + [249595] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9624), 1, - anon_sym_try, - ACTIONS(9775), 1, - anon_sym_COMMA, - ACTIONS(9777), 1, + ACTIONS(9842), 1, + sym_identifier, + ACTIONS(9846), 1, anon_sym_LPAREN2, - ACTIONS(9779), 1, - anon_sym_SEMI, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(9785), 1, - anon_sym_EQ, - ACTIONS(9793), 1, - anon_sym_LBRACE, - STATE(2300), 1, - sym_try_statement, - STATE(2305), 1, - sym_compound_statement, - STATE(4120), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(7796), 1, - aux_sym__declaration_declarator_repeat1, - STATE(7886), 1, - sym_gnu_asm_expression, - ACTIONS(9787), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8402), 2, - sym_argument_list, - sym_initializer_list, - [249251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9797), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9795), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9848), 1, + anon_sym_defined, + ACTIONS(9892), 1, + sym_number_literal, + ACTIONS(9850), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9852), 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, - [249279] = 9, + ACTIONS(9856), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6189), 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, + [249635] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9809), 1, + ACTIONS(9894), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6248), 7, + STATE(6358), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -568706,127 +571995,92 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249319] = 7, + [249675] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9628), 1, - anon_sym_LBRACK, - STATE(5367), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6332), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9626), 13, - anon_sym_COMMA, + ACTIONS(9842), 1, + sym_identifier, + ACTIONS(9846), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [249355] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, + ACTIONS(9848), 1, + anon_sym_defined, + ACTIONS(9896), 1, + sym_number_literal, + ACTIONS(9850), 2, + anon_sym_BANG, anon_sym_TILDE, - ACTIONS(4962), 1, - anon_sym_COLON_COLON, - ACTIONS(8492), 1, - anon_sym_STAR, - ACTIONS(9813), 1, - sym_identifier, - ACTIONS(9815), 1, - anon_sym_template, - STATE(3014), 1, - sym_dependent_identifier, - STATE(3015), 1, - sym_pointer_type_declarator, - STATE(3020), 1, - sym_template_type, - STATE(3023), 1, - sym_template_function, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3029), 1, - sym_destructor_name, - STATE(3038), 1, - sym_operator_name, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(3053), 1, - sym_qualified_identifier, - STATE(6124), 1, - sym__scope_resolution, - STATE(8865), 1, - sym_ms_based_modifier, - STATE(9084), 1, - sym_decltype, - [249419] = 3, + ACTIONS(9852), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9856), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6190), 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, + [249715] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9819), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9817), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9842), 1, + sym_identifier, + ACTIONS(9846), 1, + anon_sym_LPAREN2, + ACTIONS(9848), 1, + anon_sym_defined, + ACTIONS(9898), 1, + sym_number_literal, + ACTIONS(9850), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9852), 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, - [249447] = 9, + ACTIONS(9856), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6170), 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, + [249755] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9821), 1, + ACTIONS(9900), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6175), 7, + STATE(6349), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -568834,30 +572088,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249487] = 9, + [249795] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9823), 1, + ACTIONS(9902), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6176), 7, + STATE(6340), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -568865,30 +572119,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249527] = 9, + [249835] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9825), 1, + ACTIONS(9904), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6189), 7, + STATE(6329), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -568896,30 +572150,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249567] = 9, + [249875] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9842), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9846), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9848), 1, anon_sym_defined, - ACTIONS(9827), 1, + ACTIONS(9906), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9850), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9852), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9856), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6190), 7, + STATE(6196), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -568927,30 +572181,138 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249607] = 9, + [249915] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(8583), 1, + anon_sym_STAR, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9910), 1, + anon_sym_TILDE, + ACTIONS(9912), 1, + anon_sym_COLON_COLON, + ACTIONS(9914), 1, + anon_sym_template, + ACTIONS(9916), 1, + anon_sym_operator, + STATE(2755), 1, + sym_template_function, + STATE(2757), 1, + sym_pointer_type_declarator, + STATE(2839), 1, + sym_operator_name, + STATE(2845), 1, + sym_qualified_identifier, + STATE(2852), 1, + sym_dependent_identifier, + STATE(2860), 1, + sym_destructor_name, + STATE(3071), 1, + sym_template_type, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(6157), 1, + sym__scope_resolution, + STATE(9031), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [249979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9920), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9918), 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, + [250007] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9758), 1, + anon_sym_try, + ACTIONS(9922), 1, + anon_sym_COMMA, + ACTIONS(9924), 1, + anon_sym_LPAREN2, + ACTIONS(9926), 1, + anon_sym_SEMI, + ACTIONS(9928), 1, + anon_sym_LBRACE, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(9932), 1, + anon_sym_EQ, + STATE(2307), 1, + sym_try_statement, + STATE(2348), 1, + sym_compound_statement, + STATE(4168), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(7983), 1, + aux_sym__declaration_declarator_repeat1, + STATE(8003), 1, + sym_gnu_asm_expression, + ACTIONS(9934), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8069), 2, + sym_argument_list, + sym_initializer_list, + [250065] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9829), 1, + ACTIONS(9936), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6191), 7, + STATE(6300), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -568958,22 +572320,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249647] = 7, + [250105] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9720), 1, + anon_sym_LBRACK, + STATE(5390), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6364), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9718), 13, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [250141] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 1, anon_sym___attribute__, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9592), 1, + ACTIONS(9698), 1, anon_sym_LBRACK, - STATE(5367), 2, + STATE(5390), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6344), 2, + STATE(6363), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9590), 13, + ACTIONS(9696), 13, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -568987,30 +572378,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [249683] = 9, + [250177] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9842), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9846), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9848), 1, anon_sym_defined, - ACTIONS(9831), 1, + ACTIONS(9938), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9850), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9852), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9856), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6202), 7, + STATE(6201), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569018,30 +572409,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249723] = 9, + [250217] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9842), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9846), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9848), 1, anon_sym_defined, - ACTIONS(9833), 1, + ACTIONS(9940), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9850), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9852), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9856), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6198), 7, + STATE(6211), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569049,30 +572440,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249763] = 9, + [250257] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9842), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9846), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9848), 1, anon_sym_defined, - ACTIONS(9835), 1, + ACTIONS(9942), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9850), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9852), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9856), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6266), 7, + STATE(6223), 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, + [250297] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9842), 1, + sym_identifier, + ACTIONS(9846), 1, + anon_sym_LPAREN2, + ACTIONS(9848), 1, + anon_sym_defined, + ACTIONS(9944), 1, + sym_number_literal, + ACTIONS(9850), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9852), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9856), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6222), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569080,30 +572502,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249803] = 9, + [250337] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9842), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9846), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9848), 1, anon_sym_defined, - ACTIONS(9837), 1, + ACTIONS(9946), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9850), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9852), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9856), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6165), 7, + STATE(6224), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569111,70 +572533,245 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249843] = 18, + [250377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9950), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9948), 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, + [250405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9954), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9952), 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, + [250433] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_SLASH, + ACTIONS(9814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9816), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9832), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9834), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9958), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(9956), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [250475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9962), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9960), 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, + [250503] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9775), 1, + ACTIONS(9922), 1, anon_sym_COMMA, - ACTIONS(9777), 1, + ACTIONS(9924), 1, anon_sym_LPAREN2, - ACTIONS(9779), 1, + ACTIONS(9926), 1, anon_sym_SEMI, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(9785), 1, + ACTIONS(9932), 1, anon_sym_EQ, - ACTIONS(9839), 1, + ACTIONS(9964), 1, anon_sym_LBRACE, - ACTIONS(9841), 1, + ACTIONS(9966), 1, anon_sym_try, - STATE(569), 1, + STATE(876), 1, sym_try_statement, - STATE(571), 1, + STATE(878), 1, sym_compound_statement, - STATE(4120), 1, + STATE(4168), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(7796), 1, + STATE(7983), 1, aux_sym__declaration_declarator_repeat1, - STATE(7886), 1, + STATE(8003), 1, sym_gnu_asm_expression, - ACTIONS(9787), 2, + ACTIONS(9934), 2, anon_sym_asm, anon_sym___asm__, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8402), 2, + STATE(8069), 2, sym_argument_list, sym_initializer_list, - [249901] = 9, + [250561] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8346), 1, + sym_identifier, + ACTIONS(8348), 1, + anon_sym_STAR, + ACTIONS(8350), 1, + anon_sym_AMP_AMP, + ACTIONS(8352), 1, + anon_sym_AMP, + ACTIONS(9968), 1, + anon_sym_SEMI, + STATE(5993), 1, + sym__field_declarator, + STATE(6840), 1, + sym_operator_name, + STATE(8740), 1, + sym_attribute_specifier, + STATE(8771), 1, + sym_ms_based_modifier, + STATE(6935), 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, + [250613] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9843), 1, + ACTIONS(9970), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6269), 7, + STATE(6271), 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, + [250653] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9842), 1, + sym_identifier, + ACTIONS(9846), 1, + anon_sym_LPAREN2, + ACTIONS(9848), 1, + anon_sym_defined, + ACTIONS(9972), 1, + sym_number_literal, + ACTIONS(9850), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(9852), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9856), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6250), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569182,30 +572779,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249941] = 9, + [250693] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9845), 1, + ACTIONS(9974), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6125), 7, + STATE(6323), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569213,59 +572810,139 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [249981] = 21, + [250733] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, + anon_sym_LBRACE, + ACTIONS(9922), 1, + anon_sym_COMMA, + ACTIONS(9924), 1, + anon_sym_LPAREN2, + ACTIONS(9926), 1, + anon_sym_SEMI, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(9932), 1, + anon_sym_EQ, + ACTIONS(9976), 1, + anon_sym_try, + STATE(996), 1, + sym_compound_statement, + STATE(1000), 1, + sym_try_statement, + STATE(4168), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(7983), 1, + aux_sym__declaration_declarator_repeat1, + STATE(8003), 1, + sym_gnu_asm_expression, + ACTIONS(9934), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8069), 2, + sym_argument_list, + sym_initializer_list, + [250791] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9662), 1, + anon_sym_try, + ACTIONS(9922), 1, + anon_sym_COMMA, + ACTIONS(9924), 1, + anon_sym_LPAREN2, + ACTIONS(9926), 1, + anon_sym_SEMI, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(9932), 1, + anon_sym_EQ, + ACTIONS(9978), 1, + anon_sym_LBRACE, + STATE(2140), 1, + sym_try_statement, + STATE(2141), 1, + sym_compound_statement, + STATE(4168), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(7983), 1, + aux_sym__declaration_declarator_repeat1, + STATE(8003), 1, + sym_gnu_asm_expression, + ACTIONS(9934), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8069), 2, + sym_argument_list, + sym_initializer_list, + [250849] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(4415), 1, - anon_sym_COLON_COLON, - ACTIONS(8492), 1, + ACTIONS(8595), 1, anon_sym_STAR, - ACTIONS(9847), 1, + ACTIONS(9980), 1, sym_identifier, - ACTIONS(9849), 1, + ACTIONS(9982), 1, + anon_sym_TILDE, + ACTIONS(9984), 1, + anon_sym_COLON_COLON, + ACTIONS(9986), 1, anon_sym_template, - STATE(3014), 1, - sym_dependent_identifier, - STATE(3015), 1, - sym_pointer_type_declarator, - STATE(3020), 1, + ACTIONS(9988), 1, + anon_sym_operator, + STATE(3071), 1, sym_template_type, - STATE(3023), 1, - sym_template_function, - STATE(3027), 1, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3090), 1, sym_qualified_type_identifier, - STATE(3029), 1, - sym_destructor_name, - STATE(3038), 1, + STATE(3912), 1, sym_operator_name, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(3053), 1, + STATE(3913), 1, sym_qualified_identifier, - STATE(6139), 1, + STATE(3915), 1, + sym_dependent_identifier, + STATE(3919), 1, + sym_destructor_name, + STATE(3920), 1, + sym_template_function, + STATE(3922), 1, + sym_pointer_type_declarator, + STATE(6179), 1, sym__scope_resolution, - STATE(8865), 1, + STATE(8794), 1, sym_ms_based_modifier, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [250045] = 3, + [250913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 5, + ACTIONS(9992), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(6689), 15, + ACTIONS(9990), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -569281,70 +572958,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [250073] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9574), 1, - anon_sym_try, - ACTIONS(9775), 1, - anon_sym_COMMA, - ACTIONS(9777), 1, - anon_sym_LPAREN2, - ACTIONS(9779), 1, - anon_sym_SEMI, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(9785), 1, - anon_sym_EQ, - ACTIONS(9851), 1, - anon_sym_LBRACE, - STATE(2533), 1, - sym_try_statement, - STATE(2538), 1, - sym_compound_statement, - STATE(4120), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(7796), 1, - aux_sym__declaration_declarator_repeat1, - STATE(7886), 1, - sym_gnu_asm_expression, - ACTIONS(9787), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8402), 2, - sym_argument_list, - sym_initializer_list, - [250131] = 9, + [250941] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9853), 1, + ACTIONS(9994), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6194), 7, + STATE(6320), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569352,30 +572989,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250171] = 9, + [250981] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9855), 1, + ACTIONS(9996), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6287), 7, + STATE(6310), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569383,22 +573020,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250211] = 3, + [251021] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9859), 5, + ACTIONS(9818), 1, anon_sym_SLASH, + ACTIONS(9814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9816), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9958), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(9857), 15, + ACTIONS(9956), 11, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -569408,30 +573048,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [250239] = 9, + [251055] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(8583), 1, + anon_sym_STAR, + ACTIONS(9798), 1, + anon_sym_TILDE, + ACTIONS(9998), 1, + sym_identifier, + ACTIONS(10000), 1, + anon_sym_COLON_COLON, + ACTIONS(10002), 1, + anon_sym_template, + ACTIONS(10004), 1, + anon_sym_operator, + STATE(3069), 1, + sym_pointer_type_declarator, + STATE(3071), 1, + sym_template_type, + STATE(3073), 1, + sym_template_function, + STATE(3077), 1, + sym_destructor_name, + STATE(3078), 1, + sym_dependent_identifier, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3080), 1, + sym_qualified_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(3104), 1, + sym_operator_name, + STATE(6184), 1, + sym__scope_resolution, + STATE(9031), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [251119] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9842), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9846), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9848), 1, anon_sym_defined, - ACTIONS(9861), 1, + ACTIONS(10006), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9850), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9852), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9856), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6319), 7, + STATE(6183), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569439,110 +573122,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250279] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(8572), 1, - anon_sym_STAR, - ACTIONS(9863), 1, - sym_identifier, - ACTIONS(9865), 1, - anon_sym_TILDE, - ACTIONS(9867), 1, - anon_sym_COLON_COLON, - ACTIONS(9869), 1, - anon_sym_template, - ACTIONS(9871), 1, - anon_sym_operator, - STATE(3020), 1, - sym_template_type, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(3704), 1, - sym_operator_name, - STATE(3711), 1, - sym_qualified_identifier, - STATE(3712), 1, - sym_dependent_identifier, - STATE(3713), 1, - sym_destructor_name, - STATE(3714), 1, - sym_template_function, - STATE(3715), 1, - sym_pointer_type_declarator, - STATE(6146), 1, - sym__scope_resolution, - STATE(9001), 1, - sym_ms_based_modifier, - STATE(9084), 1, - sym_decltype, - [250343] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8327), 1, - sym_identifier, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8331), 1, - anon_sym_STAR, - ACTIONS(8333), 1, - anon_sym_AMP_AMP, - ACTIONS(8335), 1, - anon_sym_AMP, - ACTIONS(9873), 1, - anon_sym_SEMI, - STATE(5948), 1, - sym__field_declarator, - STATE(6872), 1, - sym_operator_name, - STATE(8905), 1, - sym_attribute_specifier, - STATE(8907), 1, - sym_ms_based_modifier, - STATE(6886), 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, - [250395] = 9, + [251159] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9875), 1, + ACTIONS(10008), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6320), 7, + STATE(6246), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569550,30 +573153,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250435] = 9, + [251199] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9877), 1, + ACTIONS(10010), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6192), 7, + STATE(6248), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569581,147 +573184,170 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250475] = 21, + [251239] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(8480), 1, - anon_sym_STAR, - ACTIONS(9879), 1, - sym_identifier, - ACTIONS(9881), 1, - anon_sym_TILDE, - ACTIONS(9883), 1, - anon_sym_COLON_COLON, - ACTIONS(9885), 1, - anon_sym_template, - ACTIONS(9887), 1, + ACTIONS(2122), 1, anon_sym_operator, - STATE(2762), 1, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8346), 1, + sym_identifier, + ACTIONS(8348), 1, + anon_sym_STAR, + ACTIONS(8350), 1, + anon_sym_AMP_AMP, + ACTIONS(8352), 1, + anon_sym_AMP, + ACTIONS(10012), 1, + anon_sym_SEMI, + STATE(6008), 1, + sym__field_declarator, + STATE(6840), 1, sym_operator_name, - STATE(2801), 1, - sym_qualified_identifier, - STATE(2803), 1, - sym_dependent_identifier, - STATE(2813), 1, - sym_destructor_name, - STATE(2814), 1, - sym_template_function, - STATE(2834), 1, - sym_pointer_type_declarator, - STATE(3020), 1, - sym_template_type, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(6150), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_decltype, - STATE(9156), 1, + STATE(8769), 1, + sym_attribute_specifier, + STATE(8771), 1, sym_ms_based_modifier, - [250539] = 9, + STATE(6935), 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, + [251291] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_SLASH, + ACTIONS(9814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9816), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9958), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9956), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [251327] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, - sym_identifier, - ACTIONS(9707), 1, - anon_sym_LPAREN2, - ACTIONS(9709), 1, - anon_sym_defined, - ACTIONS(9889), 1, - sym_number_literal, - ACTIONS(9711), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9818), 1, + anon_sym_SLASH, + ACTIONS(9814), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6183), 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, - [250579] = 21, + ACTIONS(9816), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9832), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9834), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9958), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(9956), 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, + [251367] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(8572), 1, + ACTIONS(8595), 1, anon_sym_STAR, - ACTIONS(9865), 1, + ACTIONS(9982), 1, anon_sym_TILDE, - ACTIONS(9871), 1, + ACTIONS(9988), 1, anon_sym_operator, - ACTIONS(9891), 1, + ACTIONS(10014), 1, sym_identifier, - ACTIONS(9893), 1, + ACTIONS(10016), 1, anon_sym_COLON_COLON, - ACTIONS(9895), 1, + ACTIONS(10018), 1, anon_sym_template, - STATE(3020), 1, + STATE(3071), 1, sym_template_type, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3045), 1, + STATE(3079), 1, sym_dependent_type_identifier, - STATE(3704), 1, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(3912), 1, sym_operator_name, - STATE(3711), 1, + STATE(3913), 1, sym_qualified_identifier, - STATE(3712), 1, + STATE(3915), 1, sym_dependent_identifier, - STATE(3713), 1, + STATE(3919), 1, sym_destructor_name, - STATE(3714), 1, + STATE(3920), 1, sym_template_function, - STATE(3715), 1, + STATE(3922), 1, sym_pointer_type_declarator, - STATE(6152), 1, + STATE(6191), 1, sym__scope_resolution, - STATE(9001), 1, + STATE(8794), 1, sym_ms_based_modifier, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [250643] = 9, + [251431] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9897), 1, + ACTIONS(10020), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6262), 7, + STATE(6251), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569729,36 +573355,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250683] = 15, + [251471] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(8327), 1, - sym_identifier, - ACTIONS(8329), 1, + ACTIONS(8298), 1, anon_sym_LPAREN2, - ACTIONS(8331), 1, + ACTIONS(8346), 1, + sym_identifier, + ACTIONS(8348), 1, anon_sym_STAR, - ACTIONS(8333), 1, + ACTIONS(8350), 1, anon_sym_AMP_AMP, - ACTIONS(8335), 1, + ACTIONS(8352), 1, anon_sym_AMP, - ACTIONS(9899), 1, + ACTIONS(10022), 1, anon_sym_SEMI, - STATE(5987), 1, + STATE(5980), 1, sym__field_declarator, - STATE(6872), 1, + STATE(6840), 1, sym_operator_name, - STATE(8585), 1, + STATE(8677), 1, sym_attribute_specifier, - STATE(8907), 1, + STATE(8771), 1, sym_ms_based_modifier, - STATE(6886), 7, + STATE(6935), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -569766,30 +573392,30 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [250735] = 9, + [251523] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9901), 1, + ACTIONS(10024), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6257), 7, + STATE(6308), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569797,184 +573423,146 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [250775] = 18, + [251563] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9775), 1, + ACTIONS(9922), 1, anon_sym_COMMA, - ACTIONS(9777), 1, + ACTIONS(9924), 1, anon_sym_LPAREN2, - ACTIONS(9779), 1, + ACTIONS(9926), 1, anon_sym_SEMI, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(9785), 1, + ACTIONS(9932), 1, anon_sym_EQ, - ACTIONS(9903), 1, + ACTIONS(10026), 1, anon_sym_LBRACE, - ACTIONS(9905), 1, + ACTIONS(10028), 1, anon_sym_try, - STATE(382), 1, - sym_compound_statement, - STATE(383), 1, + STATE(575), 1, sym_try_statement, - STATE(4120), 1, + STATE(576), 1, + sym_compound_statement, + STATE(4168), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(7796), 1, + STATE(7983), 1, aux_sym__declaration_declarator_repeat1, - STATE(7886), 1, + STATE(8003), 1, sym_gnu_asm_expression, - ACTIONS(9787), 2, + ACTIONS(9934), 2, anon_sym_asm, anon_sym___asm__, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8402), 2, + STATE(8069), 2, sym_argument_list, sym_initializer_list, - [250833] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(8448), 1, - anon_sym_STAR, - ACTIONS(9907), 1, - sym_identifier, - ACTIONS(9909), 1, - anon_sym_TILDE, - ACTIONS(9911), 1, - anon_sym_COLON_COLON, - ACTIONS(9913), 1, - anon_sym_template, - ACTIONS(9915), 1, - anon_sym_operator, - STATE(2977), 1, - sym_template_type, - STATE(2979), 1, - sym_dependent_type_identifier, - STATE(3022), 1, - sym_qualified_type_identifier, - STATE(3989), 1, - sym_pointer_type_declarator, - STATE(4005), 1, - sym_template_function, - STATE(4016), 1, - sym_destructor_name, - STATE(4017), 1, - sym_dependent_identifier, - STATE(4019), 1, - sym_qualified_identifier, - STATE(4023), 1, - sym_operator_name, - STATE(6157), 1, - sym__scope_resolution, - STATE(8646), 1, - sym_ms_based_modifier, - STATE(9084), 1, - sym_decltype, - [250897] = 9, + [251621] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, - sym_identifier, - ACTIONS(9801), 1, - anon_sym_LPAREN2, - ACTIONS(9803), 1, - anon_sym_defined, - ACTIONS(9917), 1, - sym_number_literal, - ACTIONS(9805), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9818), 1, + anon_sym_SLASH, + ACTIONS(9820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9822), 1, + anon_sym_AMP_AMP, + ACTIONS(9824), 1, + anon_sym_PIPE, + ACTIONS(9826), 1, + anon_sym_CARET, + ACTIONS(9828), 1, + anon_sym_AMP, + ACTIONS(9814), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6225), 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, - [250937] = 18, + ACTIONS(9816), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9832), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9834), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10030), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [251671] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2062), 1, - anon_sym_LBRACE, - ACTIONS(9775), 1, + ACTIONS(9922), 1, anon_sym_COMMA, - ACTIONS(9777), 1, + ACTIONS(9924), 1, anon_sym_LPAREN2, - ACTIONS(9779), 1, + ACTIONS(9926), 1, anon_sym_SEMI, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(9785), 1, + ACTIONS(9932), 1, anon_sym_EQ, - ACTIONS(9919), 1, + ACTIONS(10032), 1, + anon_sym_LBRACE, + ACTIONS(10034), 1, anon_sym_try, - STATE(1027), 1, + STATE(915), 1, sym_try_statement, - STATE(1030), 1, + STATE(916), 1, sym_compound_statement, - STATE(4120), 1, + STATE(4168), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(7796), 1, + STATE(7983), 1, aux_sym__declaration_declarator_repeat1, - STATE(7886), 1, + STATE(8003), 1, sym_gnu_asm_expression, - ACTIONS(9787), 2, + ACTIONS(9934), 2, anon_sym_asm, anon_sym___asm__, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8402), 2, + STATE(8069), 2, sym_argument_list, sym_initializer_list, - [250995] = 9, + [251729] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9921), 1, + ACTIONS(10036), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6224), 7, + STATE(6252), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -569982,97 +573570,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251035] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9775), 1, - anon_sym_COMMA, - ACTIONS(9777), 1, - anon_sym_LPAREN2, - ACTIONS(9779), 1, - anon_sym_SEMI, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(9785), 1, - anon_sym_EQ, - ACTIONS(9923), 1, - anon_sym_LBRACE, - ACTIONS(9925), 1, - anon_sym_try, - STATE(893), 1, - sym_compound_statement, - STATE(930), 1, - sym_try_statement, - STATE(4120), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(7796), 1, - aux_sym__declaration_declarator_repeat1, - STATE(7886), 1, - sym_gnu_asm_expression, - ACTIONS(9787), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8402), 2, - sym_argument_list, - sym_initializer_list, - [251093] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8737), 1, - anon_sym_STAR, - ACTIONS(8739), 1, - anon_sym_AMP_AMP, - ACTIONS(8741), 1, - anon_sym_AMP, - STATE(4227), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6919), 1, - sym__abstract_declarator, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7914), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [251137] = 9, + [251769] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9927), 1, + ACTIONS(10038), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -570086,97 +573601,97 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251177] = 9, + [251809] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, - sym_identifier, - ACTIONS(9801), 1, - anon_sym_LPAREN2, - ACTIONS(9803), 1, - anon_sym_defined, - ACTIONS(9929), 1, - sym_number_literal, - ACTIONS(9805), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9818), 1, + anon_sym_SLASH, + ACTIONS(9828), 1, + anon_sym_AMP, + ACTIONS(9958), 1, + anon_sym_PIPE, + ACTIONS(9814), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6292), 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, - [251217] = 14, + ACTIONS(9816), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9832), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9834), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9956), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [251853] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9727), 1, + ACTIONS(9818), 1, anon_sym_SLASH, - ACTIONS(9729), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9731), 1, - anon_sym_AMP_AMP, - ACTIONS(9733), 1, - anon_sym_PIPE, - ACTIONS(9735), 1, + ACTIONS(9826), 1, anon_sym_CARET, - ACTIONS(9737), 1, + ACTIONS(9828), 1, anon_sym_AMP, - ACTIONS(9723), 2, + ACTIONS(9958), 1, + anon_sym_PIPE, + ACTIONS(9814), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9725), 2, + ACTIONS(9816), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9739), 2, + ACTIONS(9830), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9741), 2, + ACTIONS(9832), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9743), 2, + ACTIONS(9834), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(9745), 2, + ACTIONS(9836), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9931), 2, + ACTIONS(9956), 4, anon_sym_COMMA, anon_sym_RPAREN, - [251267] = 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [251899] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9933), 1, + ACTIONS(10040), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6259), 7, + STATE(6253), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -570184,70 +573699,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251307] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9775), 1, - anon_sym_COMMA, - ACTIONS(9777), 1, - anon_sym_LPAREN2, - ACTIONS(9779), 1, - anon_sym_SEMI, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(9785), 1, - anon_sym_EQ, - ACTIONS(9935), 1, - anon_sym_LBRACE, - ACTIONS(9937), 1, - anon_sym_try, - STATE(839), 1, - sym_try_statement, - STATE(945), 1, - sym_compound_statement, - STATE(4120), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(7796), 1, - aux_sym__declaration_declarator_repeat1, - STATE(7886), 1, - sym_gnu_asm_expression, - ACTIONS(9787), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8402), 2, - sym_argument_list, - sym_initializer_list, - [251365] = 9, + [251939] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9939), 1, + ACTIONS(10042), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6328), 7, + STATE(6259), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -570255,190 +573730,67 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251405] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(8572), 1, - anon_sym_STAR, - ACTIONS(9941), 1, - sym_identifier, - ACTIONS(9943), 1, - anon_sym_TILDE, - ACTIONS(9945), 1, - anon_sym_COLON_COLON, - ACTIONS(9947), 1, - anon_sym_template, - ACTIONS(9949), 1, - anon_sym_operator, - STATE(3020), 1, - sym_template_type, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(3588), 1, - sym_pointer_type_declarator, - STATE(3590), 1, - sym_template_function, - STATE(3591), 1, - sym_destructor_name, - STATE(3593), 1, - sym_dependent_identifier, - STATE(3596), 1, - sym_qualified_identifier, - STATE(3597), 1, - sym_operator_name, - STATE(6169), 1, - sym__scope_resolution, - STATE(9001), 1, - sym_ms_based_modifier, - STATE(9084), 1, - sym_decltype, - [251469] = 21, + [251979] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(8448), 1, - anon_sym_STAR, - ACTIONS(9909), 1, - anon_sym_TILDE, - ACTIONS(9915), 1, - anon_sym_operator, - ACTIONS(9951), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9953), 1, - anon_sym_COLON_COLON, - ACTIONS(9955), 1, - anon_sym_template, - STATE(3020), 1, - sym_template_type, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(3989), 1, - sym_pointer_type_declarator, - STATE(4005), 1, - sym_template_function, - STATE(4016), 1, - sym_destructor_name, - STATE(4017), 1, - sym_dependent_identifier, - STATE(4019), 1, - sym_qualified_identifier, - STATE(4023), 1, - sym_operator_name, - STATE(6170), 1, - sym__scope_resolution, - STATE(8646), 1, - sym_ms_based_modifier, - STATE(9084), 1, - sym_decltype, - [251533] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(8572), 1, - anon_sym_STAR, - ACTIONS(9865), 1, + ACTIONS(9876), 1, + anon_sym_LPAREN2, + ACTIONS(9878), 1, + anon_sym_defined, + ACTIONS(10044), 1, + sym_number_literal, + ACTIONS(9880), 2, + anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9871), 1, - anon_sym_operator, - ACTIONS(9957), 1, - sym_identifier, - ACTIONS(9959), 1, - anon_sym_COLON_COLON, - ACTIONS(9961), 1, - anon_sym_template, - STATE(2067), 1, - sym_dependent_type_identifier, - STATE(2071), 1, - sym_template_type, - STATE(2255), 1, - sym_qualified_type_identifier, - STATE(3704), 1, - sym_operator_name, - STATE(3711), 1, - sym_qualified_identifier, - STATE(3712), 1, - sym_dependent_identifier, - STATE(3713), 1, - sym_destructor_name, - STATE(3714), 1, - sym_template_function, - STATE(3715), 1, - sym_pointer_type_declarator, - STATE(6171), 1, - sym__scope_resolution, - STATE(9001), 1, - sym_ms_based_modifier, - STATE(9084), 1, - sym_decltype, - [251597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9965), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9963), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9882), 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, - [251625] = 15, + ACTIONS(9886), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6269), 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, + [252019] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(8327), 1, - sym_identifier, - ACTIONS(8329), 1, + ACTIONS(8298), 1, anon_sym_LPAREN2, - ACTIONS(8331), 1, + ACTIONS(8346), 1, + sym_identifier, + ACTIONS(8348), 1, anon_sym_STAR, - ACTIONS(8333), 1, + ACTIONS(8350), 1, anon_sym_AMP_AMP, - ACTIONS(8335), 1, + ACTIONS(8352), 1, anon_sym_AMP, - ACTIONS(9967), 1, + ACTIONS(10046), 1, anon_sym_SEMI, - STATE(5975), 1, + STATE(6015), 1, sym__field_declarator, - STATE(6872), 1, + STATE(6840), 1, sym_operator_name, - STATE(8907), 1, - sym_ms_based_modifier, - STATE(8953), 1, + STATE(8585), 1, sym_attribute_specifier, - STATE(6886), 7, + STATE(8771), 1, + sym_ms_based_modifier, + STATE(6935), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -570446,30 +573798,30 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [251677] = 9, + [252071] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9969), 1, + ACTIONS(10048), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6213), 7, + STATE(6265), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -570477,82 +573829,73 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251717] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9727), 1, - anon_sym_SLASH, - ACTIONS(9725), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9973), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9971), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [251749] = 3, + [252111] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9973), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9971), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(8595), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [251777] = 9, + ACTIONS(9982), 1, + anon_sym_TILDE, + ACTIONS(9988), 1, + anon_sym_operator, + ACTIONS(10050), 1, + sym_identifier, + ACTIONS(10052), 1, + anon_sym_COLON_COLON, + ACTIONS(10054), 1, + anon_sym_template, + STATE(2179), 1, + sym_template_type, + STATE(2180), 1, + sym_dependent_type_identifier, + STATE(2275), 1, + sym_qualified_type_identifier, + STATE(3912), 1, + sym_operator_name, + STATE(3913), 1, + sym_qualified_identifier, + STATE(3915), 1, + sym_dependent_identifier, + STATE(3919), 1, + sym_destructor_name, + STATE(3920), 1, + sym_template_function, + STATE(3922), 1, + sym_pointer_type_declarator, + STATE(6207), 1, + sym__scope_resolution, + STATE(8794), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [252175] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9975), 1, + ACTIONS(10056), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6261), 7, + STATE(6267), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -570560,61 +573903,147 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251817] = 9, + [252215] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, - sym_identifier, - ACTIONS(9801), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9730), 1, + anon_sym_try, + ACTIONS(9922), 1, + anon_sym_COMMA, + ACTIONS(9924), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, - anon_sym_defined, - ACTIONS(9977), 1, - sym_number_literal, - ACTIONS(9805), 2, - anon_sym_BANG, + ACTIONS(9926), 1, + anon_sym_SEMI, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(9932), 1, + anon_sym_EQ, + ACTIONS(10058), 1, + anon_sym_LBRACE, + STATE(2519), 1, + sym_compound_statement, + STATE(2521), 1, + sym_try_statement, + STATE(4168), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(7983), 1, + aux_sym__declaration_declarator_repeat1, + STATE(8003), 1, + sym_gnu_asm_expression, + ACTIONS(9934), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8069), 2, + sym_argument_list, + sym_initializer_list, + [252273] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(8549), 1, + anon_sym_STAR, + ACTIONS(10060), 1, + sym_identifier, + ACTIONS(10062), 1, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(10064), 1, + anon_sym_COLON_COLON, + ACTIONS(10066), 1, + anon_sym_template, + ACTIONS(10068), 1, + anon_sym_operator, + STATE(3071), 1, + sym_template_type, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(3385), 1, + sym_qualified_identifier, + STATE(3553), 1, + sym_operator_name, + STATE(3557), 1, + sym_dependent_identifier, + STATE(3558), 1, + sym_destructor_name, + STATE(3559), 1, + sym_template_function, + STATE(3562), 1, + sym_pointer_type_declarator, + STATE(6210), 1, + sym__scope_resolution, + STATE(8958), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [252337] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_SLASH, + ACTIONS(9824), 1, + anon_sym_PIPE, + ACTIONS(9826), 1, + anon_sym_CARET, + ACTIONS(9828), 1, + anon_sym_AMP, + ACTIONS(9814), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6265), 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, - [251857] = 9, + ACTIONS(9816), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9832), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(9834), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(9836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9956), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [252383] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9979), 1, + ACTIONS(10070), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6221), 7, + STATE(6301), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -570622,70 +574051,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251897] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9640), 1, - anon_sym_try, - ACTIONS(9775), 1, - anon_sym_COMMA, - ACTIONS(9777), 1, - anon_sym_LPAREN2, - ACTIONS(9779), 1, - anon_sym_SEMI, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(9785), 1, - anon_sym_EQ, - ACTIONS(9981), 1, - anon_sym_LBRACE, - STATE(2075), 1, - sym_try_statement, - STATE(2077), 1, - sym_compound_statement, - STATE(4120), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(7796), 1, - aux_sym__declaration_declarator_repeat1, - STATE(7886), 1, - sym_gnu_asm_expression, - ACTIONS(9787), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8402), 2, - sym_argument_list, - sym_initializer_list, - [251955] = 9, + [252423] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9983), 1, + ACTIONS(10072), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6275), 7, + STATE(6293), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -570693,30 +574082,116 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [251995] = 9, + [252463] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4413), 1, + anon_sym_COLON_COLON, + ACTIONS(8627), 1, + anon_sym_STAR, + ACTIONS(10074), 1, + sym_identifier, + ACTIONS(10076), 1, + anon_sym_template, + STATE(3069), 1, + sym_pointer_type_declarator, + STATE(3071), 1, + sym_template_type, + STATE(3073), 1, + sym_template_function, + STATE(3077), 1, + sym_destructor_name, + STATE(3078), 1, + sym_dependent_identifier, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3080), 1, + sym_qualified_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(3104), 1, + sym_operator_name, + STATE(6214), 1, + sym__scope_resolution, + STATE(8896), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [252527] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(4989), 1, + anon_sym_COLON_COLON, + ACTIONS(8627), 1, + anon_sym_STAR, + ACTIONS(10078), 1, + sym_identifier, + ACTIONS(10080), 1, + anon_sym_template, + STATE(3069), 1, + sym_pointer_type_declarator, + STATE(3071), 1, + sym_template_type, + STATE(3073), 1, + sym_template_function, + STATE(3077), 1, + sym_destructor_name, + STATE(3078), 1, + sym_dependent_identifier, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3080), 1, + sym_qualified_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(3104), 1, + sym_operator_name, + STATE(6215), 1, + sym__scope_resolution, + STATE(8896), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [252591] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9985), 1, + ACTIONS(10082), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6214), 7, + STATE(6302), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -570724,58 +574199,73 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [252035] = 6, + [252631] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9727), 1, - anon_sym_SLASH, - ACTIONS(9723), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9725), 2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(8583), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9973), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9971), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [252069] = 9, + ACTIONS(9910), 1, + anon_sym_TILDE, + ACTIONS(9916), 1, + anon_sym_operator, + ACTIONS(10084), 1, + sym_identifier, + ACTIONS(10086), 1, + anon_sym_COLON_COLON, + ACTIONS(10088), 1, + anon_sym_template, + STATE(2755), 1, + sym_template_function, + STATE(2757), 1, + sym_pointer_type_declarator, + STATE(2839), 1, + sym_operator_name, + STATE(2845), 1, + sym_qualified_identifier, + STATE(2852), 1, + sym_dependent_identifier, + STATE(2860), 1, + sym_destructor_name, + STATE(3071), 1, + sym_template_type, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(6217), 1, + sym__scope_resolution, + STATE(9031), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [252695] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9842), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9846), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9848), 1, anon_sym_defined, - ACTIONS(9987), 1, + ACTIONS(10090), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9850), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9852), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9856), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6212), 7, + STATE(6256), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -570783,30 +574273,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [252109] = 9, + [252735] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9842), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9846), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9848), 1, anon_sym_defined, - ACTIONS(9989), 1, + ACTIONS(10092), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9850), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9852), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9856), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6322), 7, + STATE(6168), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -570814,30 +574304,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [252149] = 9, + [252775] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(9991), 1, + ACTIONS(10094), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6298), 7, + STATE(6334), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -570845,16 +574335,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [252189] = 3, + [252815] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(8583), 1, + anon_sym_STAR, + ACTIONS(9910), 1, + anon_sym_TILDE, + ACTIONS(9916), 1, + anon_sym_operator, + ACTIONS(10096), 1, + sym_identifier, + ACTIONS(10098), 1, + anon_sym_COLON_COLON, + ACTIONS(10100), 1, + anon_sym_template, + STATE(2755), 1, + sym_template_function, + STATE(2757), 1, + sym_pointer_type_declarator, + STATE(2839), 1, + sym_operator_name, + STATE(2845), 1, + sym_qualified_identifier, + STATE(2852), 1, + sym_dependent_identifier, + STATE(2860), 1, + sym_destructor_name, + STATE(3071), 1, + sym_template_type, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(6221), 1, + sym__scope_resolution, + STATE(9031), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [252879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 5, + ACTIONS(9958), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(9993), 15, + ACTIONS(9956), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -570870,168 +574403,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [252217] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8327), 1, - sym_identifier, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8331), 1, - anon_sym_STAR, - ACTIONS(8333), 1, - anon_sym_AMP_AMP, - ACTIONS(8335), 1, - anon_sym_AMP, - ACTIONS(9997), 1, - anon_sym_SEMI, - STATE(5969), 1, - sym__field_declarator, - STATE(6872), 1, - sym_operator_name, - STATE(8803), 1, - sym_attribute_specifier, - STATE(8907), 1, - sym_ms_based_modifier, - STATE(6886), 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, - [252269] = 13, + [252907] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9727), 1, + ACTIONS(9818), 1, anon_sym_SLASH, - ACTIONS(9731), 1, + ACTIONS(9822), 1, anon_sym_AMP_AMP, - ACTIONS(9733), 1, + ACTIONS(9824), 1, anon_sym_PIPE, - ACTIONS(9735), 1, + ACTIONS(9826), 1, anon_sym_CARET, - ACTIONS(9737), 1, + ACTIONS(9828), 1, anon_sym_AMP, - ACTIONS(9723), 2, + ACTIONS(9814), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9725), 2, + ACTIONS(9816), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9739), 2, + ACTIONS(9830), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9741), 2, + ACTIONS(9832), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(9743), 2, + ACTIONS(9834), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(9745), 2, + ACTIONS(9836), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9971), 3, + ACTIONS(9956), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - [252317] = 12, + [252955] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9727), 1, + ACTIONS(9818), 1, anon_sym_SLASH, - ACTIONS(9733), 1, - anon_sym_PIPE, - ACTIONS(9735), 1, - anon_sym_CARET, - ACTIONS(9737), 1, - anon_sym_AMP, - ACTIONS(9723), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9725), 2, + ACTIONS(9816), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9741), 2, + ACTIONS(9958), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(9743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9971), 4, + ACTIONS(9956), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [252363] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9727), 1, - anon_sym_SLASH, - ACTIONS(9735), 1, anon_sym_CARET, - ACTIONS(9737), 1, - anon_sym_AMP, - ACTIONS(9973), 1, - anon_sym_PIPE, - ACTIONS(9723), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9725), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9739), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9743), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(9745), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9971), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [252409] = 7, + [252987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9727), 1, + ACTIONS(6700), 5, anon_sym_SLASH, - ACTIONS(9723), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9725), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9973), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(9971), 9, + ACTIONS(6702), 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, @@ -571039,296 +574488,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [252445] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9799), 1, - sym_identifier, - ACTIONS(9801), 1, - anon_sym_LPAREN2, - ACTIONS(9803), 1, - anon_sym_defined, - ACTIONS(9999), 1, - sym_number_literal, - ACTIONS(9805), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(9807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9811), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6272), 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, - [252485] = 9, + anon_sym_LT_LT, + anon_sym_GT_GT, + [253015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9727), 1, + ACTIONS(10104), 5, anon_sym_SLASH, - ACTIONS(9723), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9725), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9973), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(9971), 7, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10102), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [252525] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(8486), 1, - anon_sym_STAR, - ACTIONS(10001), 1, - sym_identifier, - ACTIONS(10003), 1, - anon_sym_TILDE, - ACTIONS(10005), 1, - anon_sym_COLON_COLON, - ACTIONS(10007), 1, - anon_sym_template, - ACTIONS(10009), 1, - anon_sym_operator, - STATE(3020), 1, - sym_template_type, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(3497), 1, - sym_operator_name, - STATE(3500), 1, - sym_qualified_identifier, - STATE(3501), 1, - sym_dependent_identifier, - STATE(3504), 1, - sym_destructor_name, - STATE(3505), 1, - sym_template_function, - STATE(3508), 1, - sym_pointer_type_declarator, - STATE(6195), 1, - sym__scope_resolution, - STATE(8484), 1, - sym_ms_based_modifier, - STATE(9084), 1, - sym_decltype, - [252589] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(8572), 1, - anon_sym_STAR, - ACTIONS(9943), 1, - anon_sym_TILDE, - ACTIONS(9949), 1, - anon_sym_operator, - ACTIONS(10011), 1, - sym_identifier, - ACTIONS(10013), 1, - anon_sym_COLON_COLON, - ACTIONS(10015), 1, - anon_sym_template, - STATE(2067), 1, - sym_dependent_type_identifier, - STATE(2071), 1, - sym_template_type, - STATE(2255), 1, - sym_qualified_type_identifier, - STATE(3588), 1, - sym_pointer_type_declarator, - STATE(3590), 1, - sym_template_function, - STATE(3591), 1, - sym_destructor_name, - STATE(3593), 1, - sym_dependent_identifier, - STATE(3596), 1, - sym_qualified_identifier, - STATE(3597), 1, - sym_operator_name, - STATE(6196), 1, - sym__scope_resolution, - STATE(9001), 1, - sym_ms_based_modifier, - STATE(9084), 1, - sym_decltype, - [252653] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(8480), 1, - anon_sym_STAR, - ACTIONS(9881), 1, - anon_sym_TILDE, - ACTIONS(9887), 1, - anon_sym_operator, - ACTIONS(10017), 1, - sym_identifier, - ACTIONS(10019), 1, - anon_sym_COLON_COLON, - ACTIONS(10021), 1, - anon_sym_template, - STATE(2762), 1, - sym_operator_name, - STATE(2801), 1, - sym_qualified_identifier, - STATE(2803), 1, - sym_dependent_identifier, - STATE(2813), 1, - sym_destructor_name, - STATE(2814), 1, - sym_template_function, - STATE(2834), 1, - sym_pointer_type_declarator, - STATE(3020), 1, - sym_template_type, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(6197), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_decltype, - STATE(9156), 1, - sym_ms_based_modifier, - [252717] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9727), 1, - anon_sym_SLASH, - ACTIONS(9723), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9725), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9739), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9743), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(9745), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9973), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(9971), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [252759] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(8480), 1, - anon_sym_STAR, - ACTIONS(9526), 1, - anon_sym_TILDE, - ACTIONS(10023), 1, - sym_identifier, - ACTIONS(10025), 1, - anon_sym_COLON_COLON, - ACTIONS(10027), 1, - anon_sym_template, - ACTIONS(10029), 1, - anon_sym_operator, - STATE(3014), 1, - sym_dependent_identifier, - STATE(3015), 1, - sym_pointer_type_declarator, - STATE(3020), 1, - sym_template_type, - STATE(3023), 1, - sym_template_function, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3029), 1, - sym_destructor_name, - STATE(3038), 1, - sym_operator_name, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(3053), 1, - sym_qualified_identifier, - STATE(6199), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_decltype, - STATE(9156), 1, - sym_ms_based_modifier, - [252823] = 9, + [253043] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(10031), 1, + ACTIONS(10106), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, + ACTIONS(9882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9811), 5, + ACTIONS(9886), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6223), 7, + STATE(6355), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -571336,80 +574546,87 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [252863] = 9, + [253083] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9922), 1, + anon_sym_COMMA, + ACTIONS(9924), 1, + anon_sym_LPAREN2, + ACTIONS(9926), 1, + anon_sym_SEMI, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(9932), 1, + anon_sym_EQ, + ACTIONS(10108), 1, + anon_sym_LBRACE, + ACTIONS(10110), 1, + anon_sym_try, + STATE(349), 1, + sym_compound_statement, + STATE(396), 1, + sym_try_statement, + STATE(4168), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(7983), 1, + aux_sym__declaration_declarator_repeat1, + STATE(8003), 1, + sym_gnu_asm_expression, + ACTIONS(9934), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8069), 2, + sym_argument_list, + sym_initializer_list, + [253141] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(9874), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(9876), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, + ACTIONS(9878), 1, anon_sym_defined, - ACTIONS(10033), 1, + ACTIONS(10112), 1, sym_number_literal, - ACTIONS(9805), 2, + ACTIONS(9880), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9811), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6318), 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, - [252903] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9727), 1, - anon_sym_SLASH, - ACTIONS(9737), 1, - anon_sym_AMP, - ACTIONS(9973), 1, - anon_sym_PIPE, - ACTIONS(9723), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9725), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9971), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [252947] = 3, + ACTIONS(9882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9886), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(6315), 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, + [253181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10037), 5, + ACTIONS(10116), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(10035), 15, + ACTIONS(10114), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -571425,92 +574642,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [252975] = 9, + [253209] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, - sym_identifier, - ACTIONS(9801), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, - anon_sym_defined, - ACTIONS(10039), 1, - sym_number_literal, - ACTIONS(9805), 2, - anon_sym_BANG, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(8801), 1, + anon_sym_STAR, + ACTIONS(8803), 1, + anon_sym_AMP_AMP, + ACTIONS(8805), 1, + anon_sym_AMP, + STATE(4229), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6965), 1, + sym__abstract_declarator, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8031), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [253253] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(8595), 1, + anon_sym_STAR, + ACTIONS(10118), 1, + sym_identifier, + ACTIONS(10120), 1, anon_sym_TILDE, - ACTIONS(9807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9811), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6279), 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, - [253015] = 9, + ACTIONS(10122), 1, + anon_sym_COLON_COLON, + ACTIONS(10124), 1, + anon_sym_template, + ACTIONS(10126), 1, + anon_sym_operator, + STATE(3071), 1, + sym_template_type, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(3591), 1, + sym_pointer_type_declarator, + STATE(3661), 1, + sym_destructor_name, + STATE(3668), 1, + sym_dependent_identifier, + STATE(3674), 1, + sym_qualified_identifier, + STATE(3694), 1, + sym_operator_name, + STATE(3712), 1, + sym_template_function, + STATE(6232), 1, + sym__scope_resolution, + STATE(8794), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [253317] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(8621), 1, + anon_sym_STAR, + ACTIONS(10128), 1, + sym_identifier, + ACTIONS(10130), 1, + anon_sym_TILDE, + ACTIONS(10132), 1, + anon_sym_COLON_COLON, + ACTIONS(10134), 1, + anon_sym_template, + ACTIONS(10136), 1, + anon_sym_operator, + STATE(3071), 1, + sym_template_type, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(3977), 1, + sym_qualified_identifier, + STATE(3980), 1, + sym_operator_name, + STATE(3999), 1, + sym_destructor_name, + STATE(4001), 1, + sym_template_function, + STATE(4002), 1, + sym_pointer_type_declarator, + STATE(4122), 1, + sym_dependent_identifier, + STATE(6233), 1, + sym__scope_resolution, + STATE(8683), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [253381] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(8621), 1, + anon_sym_STAR, + ACTIONS(10130), 1, + anon_sym_TILDE, + ACTIONS(10136), 1, + anon_sym_operator, + ACTIONS(10138), 1, sym_identifier, - ACTIONS(9801), 1, + ACTIONS(10140), 1, + anon_sym_COLON_COLON, + ACTIONS(10142), 1, + anon_sym_template, + STATE(3023), 1, + sym_template_type, + STATE(3027), 1, + sym_dependent_type_identifier, + STATE(3081), 1, + sym_qualified_type_identifier, + STATE(3977), 1, + sym_qualified_identifier, + STATE(3980), 1, + sym_operator_name, + STATE(3999), 1, + sym_destructor_name, + STATE(4001), 1, + sym_template_function, + STATE(4002), 1, + sym_pointer_type_declarator, + STATE(4122), 1, + sym_dependent_identifier, + STATE(6234), 1, + sym__scope_resolution, + STATE(8683), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [253445] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9686), 1, + anon_sym_try, + ACTIONS(9922), 1, + anon_sym_COMMA, + ACTIONS(9924), 1, anon_sym_LPAREN2, - ACTIONS(9803), 1, - anon_sym_defined, - ACTIONS(10041), 1, - sym_number_literal, - ACTIONS(9805), 2, - anon_sym_BANG, + ACTIONS(9926), 1, + anon_sym_SEMI, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(9932), 1, + anon_sym_EQ, + ACTIONS(10144), 1, + anon_sym_LBRACE, + STATE(2664), 1, + sym_try_statement, + STATE(2666), 1, + sym_compound_statement, + STATE(4168), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(7983), 1, + aux_sym__declaration_declarator_repeat1, + STATE(8003), 1, + sym_gnu_asm_expression, + ACTIONS(9934), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8069), 2, + sym_argument_list, + sym_initializer_list, + [253503] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(8595), 1, + anon_sym_STAR, + ACTIONS(10120), 1, anon_sym_TILDE, - ACTIONS(9807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9811), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(6251), 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, - [253055] = 9, + ACTIONS(10126), 1, + anon_sym_operator, + ACTIONS(10146), 1, + sym_identifier, + ACTIONS(10148), 1, + anon_sym_COLON_COLON, + ACTIONS(10150), 1, + anon_sym_template, + STATE(2179), 1, + sym_template_type, + STATE(2180), 1, + sym_dependent_type_identifier, + STATE(2275), 1, + sym_qualified_type_identifier, + STATE(3591), 1, + sym_pointer_type_declarator, + STATE(3661), 1, + sym_destructor_name, + STATE(3668), 1, + sym_dependent_identifier, + STATE(3674), 1, + sym_qualified_identifier, + STATE(3694), 1, + sym_operator_name, + STATE(3712), 1, + sym_template_function, + STATE(6236), 1, + sym__scope_resolution, + STATE(8794), 1, + sym_ms_based_modifier, + STATE(9043), 1, + sym_decltype, + [253567] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 1, + ACTIONS(9842), 1, sym_identifier, - ACTIONS(9707), 1, + ACTIONS(9846), 1, anon_sym_LPAREN2, - ACTIONS(9709), 1, + ACTIONS(9848), 1, anon_sym_defined, - ACTIONS(10043), 1, + ACTIONS(10152), 1, sym_number_literal, - ACTIONS(9711), 2, + ACTIONS(9850), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(9713), 2, + ACTIONS(9852), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9717), 5, + ACTIONS(9856), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(6230), 7, + STATE(6200), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -571518,66 +574918,90 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [253095] = 21, + [253607] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2130), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(8480), 1, - anon_sym_STAR, - ACTIONS(9881), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(9887), 1, - anon_sym_operator, - ACTIONS(10045), 1, + ACTIONS(8627), 1, + anon_sym_STAR, + ACTIONS(10154), 1, sym_identifier, - ACTIONS(10047), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(10049), 1, + ACTIONS(10158), 1, anon_sym_template, - STATE(2762), 1, - sym_operator_name, - STATE(2801), 1, - sym_qualified_identifier, - STATE(2803), 1, - sym_dependent_identifier, - STATE(2813), 1, - sym_destructor_name, - STATE(2814), 1, - sym_template_function, - STATE(2834), 1, + STATE(3069), 1, sym_pointer_type_declarator, - STATE(3020), 1, - sym_template_type, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(6207), 1, + STATE(3073), 1, + sym_template_function, + STATE(3077), 1, + sym_destructor_name, + STATE(3078), 1, + sym_dependent_identifier, + STATE(3080), 1, + sym_qualified_identifier, + STATE(3104), 1, + sym_operator_name, + STATE(6238), 1, sym__scope_resolution, - STATE(9084), 1, - sym_decltype, - STATE(9156), 1, + STATE(8896), 1, sym_ms_based_modifier, - [253159] = 7, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [253664] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [253699] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9353), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(9304), 1, anon_sym_requires, - ACTIONS(9367), 2, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 11, + ACTIONS(9107), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -571589,12 +575013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [253194] = 3, - ACTIONS(9761), 1, + [253734] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(9963), 1, + ACTIONS(9952), 1, anon_sym_LF, - ACTIONS(9965), 18, + ACTIONS(9954), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571613,53 +575037,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [253221] = 9, + [253761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - anon_sym_DASH_GT, - ACTIONS(10053), 1, + ACTIONS(10162), 1, + anon_sym_LPAREN2, + ACTIONS(10164), 1, anon_sym_LBRACK, - ACTIONS(10058), 1, - anon_sym_requires, - STATE(6211), 1, - sym_trailing_return_type, - ACTIONS(10055), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 9, + ACTIONS(10160), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [253260] = 7, + anon_sym_requires, + [253790] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_LBRACK, - ACTIONS(10068), 1, + ACTIONS(7642), 1, anon_sym_requires, - ACTIONS(10065), 2, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6423), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10061), 11, + ACTIONS(9008), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -571671,157 +575090,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [253295] = 8, - ACTIONS(9761), 1, + [253825] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(9971), 1, + ACTIONS(9990), 1, anon_sym_LF, - ACTIONS(10071), 2, + ACTIONS(9992), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10079), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9973), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [253332] = 9, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(9971), 1, - anon_sym_LF, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10079), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, + [253852] = 3, + ACTIONS(6702), 1, + anon_sym_LF, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(6700), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9973), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(10077), 4, + 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, - [253371] = 6, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(9971), 1, - anon_sym_LF, - ACTIONS(10071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10079), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9973), 11, + [253879] = 12, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(10166), 1, + anon_sym_LF, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, + ACTIONS(10174), 1, anon_sym_AMP_AMP, + ACTIONS(10176), 1, anon_sym_PIPE, + ACTIONS(10178), 1, anon_sym_CARET, + ACTIONS(10180), 1, anon_sym_AMP, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [253404] = 3, + [253924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10085), 1, + ACTIONS(5167), 1, anon_sym_LBRACK, - ACTIONS(10083), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(5169), 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_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + 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, - [253431] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7439), 1, - anon_sym_DASH_GT, - ACTIONS(9353), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_requires, - STATE(6229), 1, - sym_trailing_return_type, - ACTIONS(9367), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6425), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [253470] = 3, - ACTIONS(9761), 1, + [253951] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(9789), 1, + ACTIONS(9956), 1, anon_sym_LF, - ACTIONS(9791), 18, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9958), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -571835,124 +575221,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [253497] = 4, + [253982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10089), 1, - anon_sym_LPAREN2, - ACTIONS(10091), 1, + ACTIONS(6233), 1, anon_sym_LBRACK, - ACTIONS(10087), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(10188), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6235), 16, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, 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, - [253526] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7439), 1, - anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9131), 1, - anon_sym_requires, - STATE(6208), 1, - sym_trailing_return_type, - ACTIONS(9128), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [253565] = 5, + [254011] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10095), 1, - anon_sym_LBRACK, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6306), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(10093), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [253596] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(9971), 1, - anon_sym_LF, - ACTIONS(10071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10073), 3, - anon_sym_STAR, + ACTIONS(9818), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9973), 13, + ACTIONS(9820), 1, anon_sym_PIPE_PIPE, + ACTIONS(9822), 1, anon_sym_AMP_AMP, + ACTIONS(9824), 1, anon_sym_PIPE, + ACTIONS(9826), 1, anon_sym_CARET, + ACTIONS(9828), 1, anon_sym_AMP, + ACTIONS(10190), 1, + anon_sym_RPAREN, + ACTIONS(9814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9816), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9830), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(9832), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(9834), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(9836), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [253627] = 3, - ACTIONS(9761), 1, + [254060] = 6, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10035), 1, + ACTIONS(9956), 1, anon_sym_LF, - ACTIONS(10037), 18, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9958), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -571964,232 +575308,187 @@ 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, - [253654] = 12, - ACTIONS(9761), 1, + [254093] = 7, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10097), 1, + ACTIONS(9956), 1, anon_sym_LF, - ACTIONS(10099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, - anon_sym_AMP_AMP, - ACTIONS(10103), 1, - anon_sym_PIPE, - ACTIONS(10105), 1, - anon_sym_CARET, - ACTIONS(10071), 2, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10079), 2, + ACTIONS(10186), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [253699] = 12, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, + ACTIONS(9958), 7, anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, anon_sym_AMP_AMP, - ACTIONS(10103), 1, anon_sym_PIPE, - ACTIONS(10105), 1, anon_sym_CARET, - ACTIONS(10107), 1, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [254128] = 8, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(9956), 1, anon_sym_LF, - ACTIONS(10071), 2, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10079), 2, + ACTIONS(10186), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [253744] = 12, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, + ACTIONS(9958), 5, anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, anon_sym_AMP_AMP, - ACTIONS(10103), 1, anon_sym_PIPE, - ACTIONS(10105), 1, anon_sym_CARET, - ACTIONS(10109), 1, + anon_sym_AMP, + [254165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5183), 1, + anon_sym_LBRACK, + ACTIONS(5185), 18, + anon_sym_COMMA, + 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [254192] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(9918), 1, anon_sym_LF, - ACTIONS(10071), 2, + ACTIONS(9920), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, + 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(10079), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, - anon_sym_STAR, + [254219] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_SLASH, + ACTIONS(9820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9822), 1, + anon_sym_AMP_AMP, + ACTIONS(9824), 1, + anon_sym_PIPE, + ACTIONS(9826), 1, + anon_sym_CARET, + ACTIONS(9828), 1, + anon_sym_AMP, + ACTIONS(10192), 1, + anon_sym_RPAREN, + ACTIONS(9814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(9816), 2, + anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10077), 4, + ACTIONS(9830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9832), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(9834), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [253789] = 9, + ACTIONS(9836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [254268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(5179), 1, anon_sym_LBRACK, - ACTIONS(8937), 1, - anon_sym_requires, - STATE(6326), 1, - sym_trailing_return_type, - ACTIONS(8934), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 9, + ACTIONS(5181), 18, anon_sym_COMMA, 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [253828] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(7266), 1, - anon_sym_COLON_COLON, - ACTIONS(8510), 1, - anon_sym_STAR, - ACTIONS(10111), 1, - sym_identifier, - ACTIONS(10113), 1, - anon_sym_template, - STATE(6227), 1, - sym__scope_resolution, - STATE(6776), 1, - sym_pointer_type_declarator, - STATE(6777), 1, - sym_destructor_name, - STATE(6778), 1, - sym_template_function, - STATE(6780), 1, - sym_dependent_identifier, - STATE(6787), 1, - sym_qualified_identifier, - STATE(6790), 1, - sym_operator_name, - STATE(8592), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [253885] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - ACTIONS(8492), 1, - anon_sym_STAR, - ACTIONS(9747), 1, - sym_identifier, - ACTIONS(9749), 1, - anon_sym_template, - STATE(3014), 1, - sym_dependent_identifier, - STATE(3015), 1, - sym_pointer_type_declarator, - STATE(3023), 1, - sym_template_function, - STATE(3029), 1, - sym_destructor_name, - STATE(3038), 1, - sym_operator_name, - STATE(3053), 1, - sym_qualified_identifier, - STATE(6228), 1, - sym__scope_resolution, - STATE(8865), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [253942] = 7, + anon_sym_requires, + [254295] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10053), 1, - anon_sym_LBRACK, - ACTIONS(10058), 1, + ACTIONS(7642), 1, anon_sym_requires, - ACTIONS(10055), 2, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 11, + ACTIONS(10194), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -572201,59 +575500,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [253977] = 14, - ACTIONS(3), 1, + [254330] = 12, + ACTIONS(9808), 1, sym_comment, - ACTIONS(9727), 1, - anon_sym_SLASH, - ACTIONS(9729), 1, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, - ACTIONS(9731), 1, + ACTIONS(10174), 1, anon_sym_AMP_AMP, - ACTIONS(9733), 1, + ACTIONS(10176), 1, anon_sym_PIPE, - ACTIONS(9735), 1, + ACTIONS(10178), 1, anon_sym_CARET, - ACTIONS(9737), 1, + ACTIONS(10180), 1, anon_sym_AMP, - ACTIONS(10115), 1, - anon_sym_RPAREN, - ACTIONS(9723), 2, + ACTIONS(10198), 1, + anon_sym_LF, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(9725), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9739), 2, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9741), 2, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10184), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(9743), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(9745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [254026] = 7, + anon_sym_LT, + [254375] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8910), 1, + ACTIONS(10202), 1, anon_sym_LBRACK, - ACTIONS(8937), 1, - anon_sym_requires, - ACTIONS(8934), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6304), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 11, + ACTIONS(10200), 14, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -572263,24 +575556,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [254061] = 7, + anon_sym_requires, + [254406] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + ACTIONS(9478), 1, + anon_sym_requires, + ACTIONS(9475), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 11, + ACTIONS(9451), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -572292,81 +575587,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [254096] = 9, + [254441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, - anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(5228), 1, anon_sym_LBRACK, - STATE(6304), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 9, + ACTIONS(5230), 18, anon_sym_COMMA, 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_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [254135] = 7, + anon_sym_requires, + [254468] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7638), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9720), 1, + anon_sym_LBRACK, + STATE(5859), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9718), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(8910), 1, + [254499] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + ACTIONS(10207), 1, + anon_sym_requires, + ACTIONS(10204), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6405), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 11, + ACTIONS(10194), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [254170] = 7, + [254534] = 9, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(9956), 1, + anon_sym_LF, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10182), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9958), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(10184), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [254573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, + ACTIONS(5171), 1, + anon_sym_LBRACK, + ACTIONS(5173), 18, + anon_sym_COMMA, + 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(10063), 1, + [254600] = 10, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(9956), 1, + anon_sym_LF, + ACTIONS(10178), 1, + anon_sym_CARET, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10182), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9958), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(10170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10184), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [254641] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + ACTIONS(9040), 1, + anon_sym_requires, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6423), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10061), 11, + ACTIONS(9008), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -572378,24 +575778,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [254205] = 5, + [254676] = 12, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(10172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10174), 1, + anon_sym_AMP_AMP, + ACTIONS(10176), 1, + anon_sym_PIPE, + ACTIONS(10178), 1, + anon_sym_CARET, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10210), 1, + anon_sym_LF, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10182), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10184), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [254721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9592), 1, + ACTIONS(10214), 1, anon_sym_LBRACK, - STATE(5811), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9590), 15, + ACTIONS(10212), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_DASH_GT, @@ -572404,42 +575835,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [254236] = 9, + [254748] = 11, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(9956), 1, + anon_sym_LF, + ACTIONS(10176), 1, + anon_sym_PIPE, + ACTIONS(10178), 1, + anon_sym_CARET, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(9958), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10182), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10184), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [254791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7604), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(5171), 1, anon_sym_LBRACK, - STATE(6325), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(5173), 18, + anon_sym_COMMA, + 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 9, + anon_sym_try, + anon_sym_requires, + [254818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5171), 1, + anon_sym_LBRACK, + ACTIONS(5173), 18, anon_sym_COMMA, 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_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - [254275] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [254845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 1, + ACTIONS(5242), 1, anon_sym_LBRACK, - ACTIONS(5153), 18, + ACTIONS(5244), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -572458,27 +575939,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [254302] = 9, + [254872] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7604), 1, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9131), 1, + ACTIONS(9040), 1, anon_sym_requires, - STATE(6208), 1, + STATE(6240), 1, sym_trailing_return_type, - ACTIONS(9128), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6412), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 9, + ACTIONS(9008), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -572488,52 +575969,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [254341] = 4, + [254911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6206), 1, + ACTIONS(5250), 1, anon_sym_LBRACK, - ACTIONS(10117), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6208), 16, + ACTIONS(5252), 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_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, 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, - [254370] = 9, + [254938] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7604), 1, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7727), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, - anon_sym_requires, - STATE(6229), 1, + STATE(6239), 1, sym_trailing_return_type, - ACTIONS(9367), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 9, + ACTIONS(9008), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -572543,12 +576023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [254409] = 3, + [254977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5220), 18, + ACTIONS(5226), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -572567,108 +576047,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [254436] = 3, + [255004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10121), 1, + ACTIONS(6233), 1, anon_sym_LBRACK, - ACTIONS(10119), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(10216), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6235), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, 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, - [254463] = 3, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(9993), 1, - anon_sym_LF, - ACTIONS(9995), 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, - [254490] = 3, + [255033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10125), 1, + ACTIONS(5201), 1, anon_sym_LBRACK, - ACTIONS(10123), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(5203), 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_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [255060] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7615), 1, anon_sym_DASH_GT, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(6239), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, + [255099] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7741), 1, anon_sym_requires, - [254517] = 3, - ACTIONS(9761), 1, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [255134] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(9771), 1, - anon_sym_LF, - ACTIONS(9773), 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, - [254544] = 3, + ACTIONS(7727), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9304), 1, + anon_sym_requires, + STATE(6261), 1, + sym_trailing_return_type, + ACTIONS(9301), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [255173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, + ACTIONS(5246), 1, anon_sym_LBRACK, - ACTIONS(5190), 18, + ACTIONS(5248), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -572687,62 +576208,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [254571] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(9971), 1, - anon_sym_LF, - ACTIONS(10073), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9973), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [254600] = 4, + [255200] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6206), 1, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(10220), 1, anon_sym_LBRACK, - ACTIONS(10127), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6208), 16, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6409), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10218), 11, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [254629] = 3, + [255235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(5195), 1, anon_sym_LBRACK, - ACTIONS(5170), 18, + ACTIONS(5197), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -572761,57 +576260,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [254656] = 12, - ACTIONS(9761), 1, + [255262] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, - anon_sym_AMP_AMP, - ACTIONS(10103), 1, - anon_sym_PIPE, - ACTIONS(10105), 1, - anon_sym_CARET, - ACTIONS(10129), 1, + ACTIONS(9888), 1, anon_sym_LF, - ACTIONS(10071), 2, + ACTIONS(9890), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10079), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [254701] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + [255289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5238), 1, + anon_sym_LBRACK, + ACTIONS(5240), 18, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(10133), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [255316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10224), 1, anon_sym_LBRACK, - STATE(5811), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10131), 15, + ACTIONS(10222), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_DASH_GT, @@ -572820,36 +576332,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [254732] = 3, + [255343] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 1, + ACTIONS(7727), 1, + anon_sym_DASH_GT, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(5145), 18, + ACTIONS(9478), 1, + anon_sym_requires, + STATE(6264), 1, + sym_trailing_return_type, + ACTIONS(9475), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6384), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 9, anon_sym_COMMA, 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_COLON, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [254759] = 3, + [255382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, + ACTIONS(5175), 1, anon_sym_LBRACK, - ACTIONS(5186), 18, + ACTIONS(5177), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -572868,321 +576386,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [254786] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(121), 1, - anon_sym_virtual, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9312), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(6818), 1, - sym_access_specifier, - STATE(7036), 1, - sym__scope_resolution, - STATE(7426), 1, - sym_virtual, - STATE(6288), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7726), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(10135), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [254837] = 7, + [255409] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(10053), 1, + ACTIONS(7727), 1, + anon_sym_DASH_GT, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + ACTIONS(10207), 1, + anon_sym_requires, + STATE(6344), 1, + sym_trailing_return_type, + ACTIONS(10204), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 11, + ACTIONS(10194), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [254872] = 12, - ACTIONS(9761), 1, + [255448] = 12, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, + ACTIONS(10174), 1, anon_sym_AMP_AMP, - ACTIONS(10103), 1, + ACTIONS(10176), 1, anon_sym_PIPE, - ACTIONS(10105), 1, + ACTIONS(10178), 1, anon_sym_CARET, - ACTIONS(10137), 1, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10226), 1, anon_sym_LF, - ACTIONS(10071), 2, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10079), 2, + ACTIONS(10186), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [254917] = 9, + [255493] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - STATE(6325), 1, + ACTIONS(10228), 1, + anon_sym_requires, + STATE(6338), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(10204), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6405), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 9, + ACTIONS(10194), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [254956] = 11, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(9971), 1, - anon_sym_LF, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10103), 1, - anon_sym_PIPE, - ACTIONS(10105), 1, - anon_sym_CARET, - ACTIONS(9973), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(10071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10075), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10079), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10073), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10077), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [254999] = 9, + [255532] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7604), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(10053), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(10058), 1, + ACTIONS(9499), 1, anon_sym_requires, - STATE(6211), 1, + STATE(6337), 1, sym_trailing_return_type, - ACTIONS(10055), 2, + ACTIONS(9475), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 9, + ACTIONS(9451), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [255038] = 12, - ACTIONS(9761), 1, + anon_sym_try, + [255571] = 12, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, + ACTIONS(10174), 1, anon_sym_AMP_AMP, - ACTIONS(10103), 1, + ACTIONS(10176), 1, anon_sym_PIPE, - ACTIONS(10105), 1, + ACTIONS(10178), 1, anon_sym_CARET, - ACTIONS(10139), 1, - anon_sym_LF, - ACTIONS(10071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10075), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10079), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10073), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10077), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [255083] = 12, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(9971), 1, - anon_sym_LF, - ACTIONS(9973), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10081), 1, + ACTIONS(10180), 1, anon_sym_AMP, - ACTIONS(10101), 1, - anon_sym_AMP_AMP, - ACTIONS(10103), 1, - anon_sym_PIPE, - ACTIONS(10105), 1, - anon_sym_CARET, - ACTIONS(10071), 2, + ACTIONS(10231), 1, + anon_sym_LF, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10079), 2, + ACTIONS(10186), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [255128] = 18, + [255616] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(6087), 1, + ACTIONS(6526), 1, anon_sym_COLON_COLON, - ACTIONS(8556), 1, + ACTIONS(8627), 1, anon_sym_STAR, - ACTIONS(10111), 1, + ACTIONS(9838), 1, sym_identifier, - ACTIONS(10113), 1, + ACTIONS(9840), 1, anon_sym_template, - STATE(6263), 1, - sym__scope_resolution, - STATE(6776), 1, + STATE(3069), 1, sym_pointer_type_declarator, - STATE(6777), 1, - sym_destructor_name, - STATE(6778), 1, + STATE(3073), 1, sym_template_function, - STATE(6780), 1, + STATE(3077), 1, + sym_destructor_name, + STATE(3078), 1, sym_dependent_identifier, - STATE(6787), 1, + STATE(3080), 1, sym_qualified_identifier, - STATE(6790), 1, + STATE(3104), 1, sym_operator_name, - STATE(8872), 1, + STATE(6297), 1, + sym__scope_resolution, + STATE(8896), 1, sym_ms_based_modifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [255185] = 9, + [255673] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(7615), 1, anon_sym_DASH_GT, - ACTIONS(7441), 1, + ACTIONS(7642), 1, anon_sym_requires, - ACTIONS(10053), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - STATE(6235), 1, + STATE(6331), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 9, + ACTIONS(9107), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -573192,45 +576611,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [255224] = 12, - ACTIONS(9761), 1, + [255712] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, + ACTIONS(121), 1, + anon_sym_virtual, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3934), 1, + anon_sym_COLON_COLON, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(6873), 1, + sym_access_specifier, + STATE(7038), 1, + sym__scope_resolution, + STATE(7528), 1, + sym_virtual, + STATE(6347), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7518), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10233), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [255763] = 12, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, + ACTIONS(10174), 1, anon_sym_AMP_AMP, - ACTIONS(10103), 1, + ACTIONS(10176), 1, anon_sym_PIPE, - ACTIONS(10105), 1, + ACTIONS(10178), 1, anon_sym_CARET, - ACTIONS(10141), 1, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10235), 1, + anon_sym_LF, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10182), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10184), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [255808] = 12, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(9956), 1, anon_sym_LF, - ACTIONS(10071), 2, + ACTIONS(9958), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10174), 1, + anon_sym_AMP_AMP, + ACTIONS(10176), 1, + anon_sym_PIPE, + ACTIONS(10178), 1, + anon_sym_CARET, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10079), 2, + ACTIONS(10186), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [255269] = 3, - ACTIONS(9761), 1, + [255853] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(9971), 1, + ACTIONS(9956), 1, anon_sym_LF, - ACTIONS(9973), 18, + ACTIONS(9958), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573249,51 +576737,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [255296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5192), 1, - anon_sym_LBRACK, - ACTIONS(5194), 18, - anon_sym_COMMA, - 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_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [255323] = 9, + [255880] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - STATE(6314), 1, + ACTIONS(9371), 1, + anon_sym_requires, + STATE(6336), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 9, + ACTIONS(9107), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -573303,86 +576767,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [255362] = 12, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, - anon_sym_AMP_AMP, - ACTIONS(10103), 1, - anon_sym_PIPE, - ACTIONS(10105), 1, - anon_sym_CARET, - ACTIONS(10143), 1, - anon_sym_LF, - ACTIONS(10071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10075), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10079), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10073), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10077), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [255407] = 5, + [255919] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6194), 1, + ACTIONS(10239), 1, anon_sym_LBRACK, - ACTIONS(10117), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10145), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6196), 14, + ACTIONS(10241), 2, + anon_sym_final, + anon_sym_override, + STATE(6304), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10237), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [255438] = 9, + [255950] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - STATE(6323), 1, + ACTIONS(9074), 1, + anon_sym_requires, + STATE(6335), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 9, + ACTIONS(9008), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -573392,27 +576823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [255477] = 7, - ACTIONS(9761), 1, + [255989] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(9971), 1, + ACTIONS(10102), 1, anon_sym_LF, - ACTIONS(10071), 2, + ACTIONS(10104), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10079), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9973), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -573420,413 +576841,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [255512] = 3, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [256016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 1, + ACTIONS(10246), 1, anon_sym_LBRACK, - ACTIONS(5153), 18, + ACTIONS(10244), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - 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, - [255539] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(8492), 1, - anon_sym_STAR, - ACTIONS(10147), 1, - sym_identifier, - ACTIONS(10149), 1, - anon_sym_COLON_COLON, - ACTIONS(10151), 1, - anon_sym_template, - STATE(3014), 1, - sym_dependent_identifier, - STATE(3015), 1, - sym_pointer_type_declarator, - STATE(3023), 1, - sym_template_function, - STATE(3029), 1, - sym_destructor_name, - STATE(3038), 1, - sym_operator_name, - STATE(3053), 1, - sym_qualified_identifier, - STATE(6274), 1, - sym__scope_resolution, - STATE(8865), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [255596] = 12, - ACTIONS(9761), 1, + [256043] = 12, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, + ACTIONS(10174), 1, anon_sym_AMP_AMP, - ACTIONS(10103), 1, + ACTIONS(10176), 1, anon_sym_PIPE, - ACTIONS(10105), 1, + ACTIONS(10178), 1, anon_sym_CARET, - ACTIONS(10153), 1, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10248), 1, anon_sym_LF, - ACTIONS(10071), 2, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10079), 2, + ACTIONS(10186), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [255641] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(121), 1, - anon_sym_virtual, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9312), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(6858), 1, - sym_access_specifier, - STATE(7036), 1, - sym__scope_resolution, - STATE(7388), 1, - sym_virtual, - STATE(6308), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7391), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(10135), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [255692] = 9, + [256088] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7604), 1, + ACTIONS(7615), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(8937), 1, + ACTIONS(9040), 1, anon_sym_requires, - STATE(6326), 1, + STATE(6240), 1, sym_trailing_return_type, - ACTIONS(8934), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 9, + ACTIONS(9008), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [255731] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10053), 1, - anon_sym_LBRACK, - ACTIONS(10155), 1, - anon_sym_requires, - ACTIONS(10055), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [255766] = 12, - ACTIONS(9761), 1, + [256127] = 12, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, + ACTIONS(10174), 1, anon_sym_AMP_AMP, - ACTIONS(10103), 1, + ACTIONS(10176), 1, anon_sym_PIPE, - ACTIONS(10105), 1, + ACTIONS(10178), 1, anon_sym_CARET, - ACTIONS(10158), 1, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10250), 1, anon_sym_LF, - ACTIONS(10071), 2, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10079), 2, + ACTIONS(10186), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [255811] = 3, + [256172] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(121), 1, + anon_sym_virtual, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3934), 1, + anon_sym_COLON_COLON, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(6872), 1, + sym_access_specifier, + STATE(7038), 1, + sym__scope_resolution, + STATE(7365), 1, + sym_virtual, + STATE(6321), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7946), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10233), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [256223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9698), 1, anon_sym_LBRACK, - ACTIONS(2142), 18, + STATE(5859), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9696), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - 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, - [255838] = 9, + [256254] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, + ACTIONS(7615), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8990), 1, + ACTIONS(7642), 1, anon_sym_requires, - STATE(6302), 1, + ACTIONS(9453), 1, + anon_sym_LBRACK, + STATE(6258), 1, sym_trailing_return_type, - ACTIONS(8934), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6405), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 9, + ACTIONS(9451), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_COLON, anon_sym_try, - [255877] = 3, + [256293] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, + ACTIONS(6165), 1, anon_sym_LBRACK, - ACTIONS(2146), 18, + ACTIONS(10188), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(10252), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6167), 14, anon_sym_COMMA, 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_COLON, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [255904] = 3, - ACTIONS(3), 1, + [256324] = 12, + ACTIONS(9808), 1, sym_comment, - ACTIONS(5180), 1, - anon_sym_LBRACK, - ACTIONS(5182), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, + ACTIONS(10174), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [255931] = 9, + ACTIONS(10176), 1, + anon_sym_PIPE, + ACTIONS(10178), 1, + anon_sym_CARET, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10254), 1, + anon_sym_LF, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10182), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10184), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [256369] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, + ACTIONS(7615), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9256), 1, + ACTIONS(7642), 1, anon_sym_requires, - STATE(6303), 1, + ACTIONS(10196), 1, + anon_sym_LBRACK, + STATE(6285), 1, sym_trailing_return_type, - ACTIONS(9128), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6412), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 9, + ACTIONS(10194), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_COLON, anon_sym_try, - [255970] = 9, + [256408] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, - anon_sym_DASH_GT, - ACTIONS(7638), 1, + ACTIONS(7642), 1, anon_sym_requires, - ACTIONS(10053), 1, + ACTIONS(7727), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, anon_sym_LBRACK, - STATE(6330), 1, + STATE(6331), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 9, + ACTIONS(9107), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [256009] = 9, + [256447] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, - anon_sym_DASH_GT, - ACTIONS(9353), 1, - anon_sym_LBRACK, - ACTIONS(9394), 1, + ACTIONS(7741), 1, anon_sym_requires, - STATE(6278), 1, - sym_trailing_return_type, - ACTIONS(9367), 2, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 9, + ACTIONS(9107), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -573834,223 +577204,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [256048] = 10, - ACTIONS(9761), 1, + [256482] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(9971), 1, + ACTIONS(9960), 1, anon_sym_LF, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10105), 1, - anon_sym_CARET, - ACTIONS(10071), 2, + ACTIONS(9962), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, + 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(10079), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9973), 3, + [256509] = 12, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, + ACTIONS(10174), 1, anon_sym_AMP_AMP, + ACTIONS(10176), 1, anon_sym_PIPE, - ACTIONS(10073), 3, + ACTIONS(10178), 1, + anon_sym_CARET, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10256), 1, + anon_sym_LF, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10182), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [256089] = 15, + [256554] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(121), 1, anon_sym_virtual, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3936), 1, + ACTIONS(3934), 1, anon_sym_COLON_COLON, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9312), 1, + ACTIONS(9398), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(6862), 1, + STATE(6863), 1, sym_access_specifier, - STATE(7036), 1, + STATE(7038), 1, sym__scope_resolution, - STATE(7406), 1, + STATE(7344), 1, sym_virtual, - STATE(5811), 2, + STATE(5859), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7857), 2, + STATE(7793), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - ACTIONS(10135), 3, + ACTIONS(10233), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - [256140] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7604), 1, - anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - STATE(6232), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [256179] = 9, + [256605] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - anon_sym_DASH_GT, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(9353), 1, - anon_sym_LBRACK, - STATE(6256), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6425), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 9, - anon_sym_COMMA, + ACTIONS(5069), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [256218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5176), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(5178), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(8996), 1, + anon_sym_STAR, + ACTIONS(8998), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(9000), 1, + anon_sym_AMP, + STATE(4297), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6998), 1, + sym__abstract_declarator, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8031), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [256245] = 12, - ACTIONS(9761), 1, + [256648] = 12, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, + ACTIONS(10174), 1, anon_sym_AMP_AMP, - ACTIONS(10103), 1, + ACTIONS(10176), 1, anon_sym_PIPE, - ACTIONS(10105), 1, + ACTIONS(10178), 1, anon_sym_CARET, - ACTIONS(10160), 1, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10258), 1, anon_sym_LF, - ACTIONS(10071), 2, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10079), 2, + ACTIONS(10186), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [256290] = 5, - ACTIONS(3), 1, + [256693] = 12, + ACTIONS(9808), 1, sym_comment, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9628), 1, - anon_sym_LBRACK, - STATE(5811), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9626), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [256321] = 3, + ACTIONS(10172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10174), 1, + anon_sym_AMP_AMP, + ACTIONS(10176), 1, + anon_sym_PIPE, + ACTIONS(10178), 1, + anon_sym_CARET, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10260), 1, + anon_sym_LF, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10182), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10184), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [256738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10164), 1, + ACTIONS(10264), 1, anon_sym_LBRACK, - ACTIONS(10162), 18, + ACTIONS(10262), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574069,12 +577421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [256348] = 3, - ACTIONS(9761), 1, + [256765] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(9795), 1, + ACTIONS(10114), 1, anon_sym_LF, - ACTIONS(9797), 18, + ACTIONS(10116), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574093,154 +577445,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [256375] = 5, + [256792] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6194), 1, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(10220), 1, anon_sym_LBRACK, - ACTIONS(10127), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10166), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6196), 14, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6409), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10218), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [256406] = 3, + [256827] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 1, + ACTIONS(7721), 1, + anon_sym_DASH_GT, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(5153), 18, + STATE(6318), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 9, anon_sym_COMMA, 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_COLON, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [256433] = 3, - ACTIONS(9761), 1, + [256866] = 12, + ACTIONS(9808), 1, sym_comment, - ACTIONS(9817), 1, - anon_sym_LF, - ACTIONS(9819), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, + ACTIONS(10174), 1, anon_sym_AMP_AMP, + ACTIONS(10176), 1, anon_sym_PIPE, + ACTIONS(10178), 1, anon_sym_CARET, + ACTIONS(10180), 1, anon_sym_AMP, + ACTIONS(10266), 1, + anon_sym_LF, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [256460] = 3, + [256911] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7727), 1, + anon_sym_DASH_GT, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(5174), 18, + STATE(6285), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6422), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 9, anon_sym_COMMA, 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_COLON, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [256487] = 7, + [256950] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8990), 1, + ACTIONS(7642), 1, anon_sym_requires, - ACTIONS(8934), 2, + ACTIONS(9453), 1, + anon_sym_LBRACK, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6405), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 11, + ACTIONS(9451), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [256522] = 9, + [256985] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, - anon_sym_DASH_GT, - ACTIONS(10053), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(7483), 1, + anon_sym_COLON_COLON, + ACTIONS(8627), 1, + anon_sym_STAR, + ACTIONS(10268), 1, + sym_identifier, + ACTIONS(10270), 1, + anon_sym_template, + STATE(3069), 1, + sym_pointer_type_declarator, + STATE(3073), 1, + sym_template_function, + STATE(3077), 1, + sym_destructor_name, + STATE(3078), 1, + sym_dependent_identifier, + STATE(3080), 1, + sym_qualified_identifier, + STATE(3104), 1, + sym_operator_name, + STATE(6332), 1, + sym__scope_resolution, + STATE(8896), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [257042] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(10155), 1, + ACTIONS(9074), 1, anon_sym_requires, - STATE(6305), 1, - sym_trailing_return_type, - ACTIONS(10055), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 9, + ACTIONS(9008), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -574248,24 +577659,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [256561] = 7, + [257077] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(9948), 1, + anon_sym_LF, + ACTIONS(9950), 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, + [257104] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9006), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9256), 1, + ACTIONS(9371), 1, anon_sym_requires, - ACTIONS(9128), 2, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 11, + ACTIONS(9107), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -574277,23 +577713,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [256596] = 7, + [257139] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9353), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9394), 1, + ACTIONS(9499), 1, anon_sym_requires, - ACTIONS(9367), 2, + ACTIONS(9475), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 11, + ACTIONS(9451), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -574305,23 +577741,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [256631] = 7, + [257174] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + ACTIONS(10228), 1, + anon_sym_requires, + ACTIONS(10204), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6412), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 11, + ACTIONS(10194), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -574333,23 +577769,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [256666] = 7, + [257209] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10220), 1, anon_sym_LBRACK, - ACTIONS(10168), 1, + ACTIONS(10275), 1, anon_sym_requires, - ACTIONS(10065), 2, + ACTIONS(10272), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6423), 2, + STATE(6409), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10061), 11, + ACTIONS(10218), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -574361,315 +577797,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [256701] = 5, + [257244] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10173), 1, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7727), 1, + anon_sym_DASH_GT, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(10175), 2, + STATE(6258), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6306), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(10171), 14, + STATE(6384), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [256732] = 3, - ACTIONS(9761), 1, + [257283] = 12, + ACTIONS(9808), 1, sym_comment, - ACTIONS(9857), 1, - anon_sym_LF, - ACTIONS(9859), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, + ACTIONS(10174), 1, anon_sym_AMP_AMP, + ACTIONS(10176), 1, anon_sym_PIPE, + ACTIONS(10178), 1, anon_sym_CARET, + ACTIONS(10180), 1, anon_sym_AMP, + ACTIONS(10278), 1, + anon_sym_LF, + ACTIONS(10168), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10186), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [256759] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(121), 1, - anon_sym_virtual, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(5308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9312), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(6799), 1, - sym_access_specifier, - STATE(7036), 1, - sym__scope_resolution, - STATE(7556), 1, - sym_virtual, - STATE(5811), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7548), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(10135), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [256810] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3018), 1, - anon_sym_TILDE, - ACTIONS(7237), 1, - anon_sym_COLON_COLON, - ACTIONS(8472), 1, - anon_sym_STAR, - ACTIONS(9747), 1, - sym_identifier, - ACTIONS(9749), 1, - anon_sym_template, - STATE(3014), 1, - sym_dependent_identifier, - STATE(3015), 1, - sym_pointer_type_declarator, - STATE(3023), 1, - sym_template_function, - STATE(3029), 1, - sym_destructor_name, - STATE(3038), 1, - sym_operator_name, - STATE(3053), 1, - sym_qualified_identifier, - STATE(6309), 1, - sym__scope_resolution, - STATE(9022), 1, - sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [256867] = 3, + [257328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(6165), 1, anon_sym_LBRACK, - ACTIONS(10178), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(10216), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(10280), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6167), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [256894] = 3, + [257359] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 1, + ACTIONS(7721), 1, + anon_sym_DASH_GT, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(5149), 18, + STATE(6350), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 9, anon_sym_COMMA, 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_COLON, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [256921] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8891), 1, - anon_sym_STAR, - ACTIONS(8893), 1, - anon_sym_AMP_AMP, - ACTIONS(8895), 1, - anon_sym_AMP, - STATE(4275), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6981), 1, - sym__abstract_declarator, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7914), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [256964] = 9, + [257398] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7604), 1, + ACTIONS(7721), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9453), 1, anon_sym_LBRACK, - STATE(6256), 1, + STATE(6361), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 9, + ACTIONS(9451), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [257003] = 7, + anon_sym_try, + [257437] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(10220), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + ACTIONS(10282), 1, + anon_sym_requires, + ACTIONS(10272), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6409), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 11, + ACTIONS(10218), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [257038] = 3, + [257472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10287), 1, anon_sym_LBRACK, - ACTIONS(5206), 18, + STATE(5859), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10285), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - 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, - [257065] = 9, + [257503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - anon_sym_DASH_GT, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(10291), 1, anon_sym_LBRACK, - STATE(6232), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 9, + ACTIONS(10289), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -574677,153 +578016,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [257104] = 18, + anon_sym_requires, + [257530] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(121), 1, + anon_sym_virtual, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3934), 1, + anon_sym_COLON_COLON, + ACTIONS(5340), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(6847), 1, + sym_access_specifier, + STATE(7038), 1, + sym__scope_resolution, + STATE(7394), 1, + sym_virtual, + STATE(5859), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7397), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10233), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [257581] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3018), 1, + ACTIONS(3042), 1, anon_sym_TILDE, - ACTIONS(7361), 1, + ACTIONS(6104), 1, anon_sym_COLON_COLON, - ACTIONS(8492), 1, + ACTIONS(8663), 1, anon_sym_STAR, - ACTIONS(10182), 1, + ACTIONS(10293), 1, sym_identifier, - ACTIONS(10184), 1, + ACTIONS(10295), 1, anon_sym_template, - STATE(3014), 1, - sym_dependent_identifier, - STATE(3015), 1, - sym_pointer_type_declarator, - STATE(3023), 1, + STATE(6348), 1, + sym__scope_resolution, + STATE(6790), 1, sym_template_function, - STATE(3029), 1, + STATE(6799), 1, sym_destructor_name, - STATE(3038), 1, - sym_operator_name, - STATE(3053), 1, + STATE(6800), 1, + sym_dependent_identifier, + STATE(6801), 1, sym_qualified_identifier, - STATE(6317), 1, - sym__scope_resolution, - STATE(8865), 1, + STATE(6802), 1, + sym_operator_name, + STATE(6827), 1, + sym_pointer_type_declarator, + STATE(8930), 1, sym_ms_based_modifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [257161] = 12, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, - anon_sym_AMP_AMP, - ACTIONS(10103), 1, - anon_sym_PIPE, - ACTIONS(10105), 1, - anon_sym_CARET, - ACTIONS(10186), 1, - anon_sym_LF, - ACTIONS(10071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10075), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10079), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10073), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10077), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [257206] = 12, - ACTIONS(9761), 1, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [257638] = 12, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, + ACTIONS(10174), 1, anon_sym_AMP_AMP, - ACTIONS(10103), 1, + ACTIONS(10176), 1, anon_sym_PIPE, - ACTIONS(10105), 1, + ACTIONS(10178), 1, anon_sym_CARET, - ACTIONS(10188), 1, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10297), 1, anon_sym_LF, - ACTIONS(10071), 2, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10079), 2, + ACTIONS(10186), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [257251] = 14, + [257683] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9727), 1, - anon_sym_SLASH, - ACTIONS(9729), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9731), 1, - anon_sym_AMP_AMP, - ACTIONS(9733), 1, - anon_sym_PIPE, - ACTIONS(9735), 1, - anon_sym_CARET, - ACTIONS(9737), 1, - anon_sym_AMP, - ACTIONS(10190), 1, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9453), 1, + anon_sym_LBRACK, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6384), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 11, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(9723), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(9725), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(9743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(9745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [257300] = 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [257718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 1, + ACTIONS(2136), 1, anon_sym_LBRACK, - ACTIONS(5210), 18, + ACTIONS(2134), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -574842,117 +578184,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [257327] = 12, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, - anon_sym_AMP_AMP, - ACTIONS(10103), 1, - anon_sym_PIPE, - ACTIONS(10105), 1, - anon_sym_CARET, - ACTIONS(10192), 1, - anon_sym_LF, - ACTIONS(10071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10075), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10079), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10073), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10077), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [257372] = 7, + [257745] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(10053), 1, + ACTIONS(7615), 1, + anon_sym_DASH_GT, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + ACTIONS(10207), 1, + anon_sym_requires, + STATE(6344), 1, + sym_trailing_return_type, + ACTIONS(10204), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 11, + ACTIONS(10194), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - [257407] = 12, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, - anon_sym_AMP_AMP, - ACTIONS(10103), 1, - anon_sym_PIPE, - ACTIONS(10105), 1, - anon_sym_CARET, - ACTIONS(10194), 1, - anon_sym_LF, - ACTIONS(10071), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10075), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10079), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10073), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10077), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [257452] = 7, + [257784] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(7615), 1, + anon_sym_DASH_GT, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + ACTIONS(9478), 1, + anon_sym_requires, + STATE(6264), 1, + sym_trailing_return_type, + ACTIONS(9475), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6412), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 11, + ACTIONS(9451), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -574961,26 +578243,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, anon_sym_try, - [257487] = 7, + [257823] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(7453), 1, + anon_sym_COLON_COLON, + ACTIONS(8611), 1, + anon_sym_STAR, + ACTIONS(10293), 1, + sym_identifier, + ACTIONS(10295), 1, + anon_sym_template, + STATE(6354), 1, + sym__scope_resolution, + STATE(6790), 1, + sym_template_function, + STATE(6799), 1, + sym_destructor_name, + STATE(6800), 1, + sym_dependent_identifier, + STATE(6801), 1, + sym_qualified_identifier, + STATE(6802), 1, + sym_operator_name, + STATE(6827), 1, + sym_pointer_type_declarator, + STATE(8572), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [257880] = 4, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(9956), 1, + anon_sym_LF, + ACTIONS(10170), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9958), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [257909] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9006), 1, + ACTIONS(7615), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9131), 1, + ACTIONS(9304), 1, anon_sym_requires, - ACTIONS(9128), 2, + STATE(6261), 1, + sym_trailing_return_type, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 11, + ACTIONS(9107), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -574989,117 +578337,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, anon_sym_try, - [257522] = 7, + [257948] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, + ACTIONS(7721), 1, + anon_sym_DASH_GT, + ACTIONS(7741), 1, anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + STATE(6327), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6405), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 11, + ACTIONS(10194), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_try, - [257557] = 12, - ACTIONS(9761), 1, + [257987] = 12, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10081), 1, - anon_sym_AMP, - ACTIONS(10099), 1, + ACTIONS(10172), 1, anon_sym_PIPE_PIPE, - ACTIONS(10101), 1, + ACTIONS(10174), 1, anon_sym_AMP_AMP, - ACTIONS(10103), 1, + ACTIONS(10176), 1, anon_sym_PIPE, - ACTIONS(10105), 1, + ACTIONS(10178), 1, anon_sym_CARET, - ACTIONS(10196), 1, + ACTIONS(10180), 1, + anon_sym_AMP, + ACTIONS(10299), 1, anon_sym_LF, - ACTIONS(10071), 2, + ACTIONS(10168), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10075), 2, + ACTIONS(10182), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10079), 2, + ACTIONS(10186), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10073), 3, + ACTIONS(10170), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10077), 4, + ACTIONS(10184), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [257602] = 9, + [258032] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7604), 1, - anon_sym_DASH_GT, - ACTIONS(10053), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3042), 1, + anon_sym_TILDE, + ACTIONS(7409), 1, + anon_sym_COLON_COLON, + ACTIONS(8669), 1, + anon_sym_STAR, + ACTIONS(9838), 1, + sym_identifier, + ACTIONS(9840), 1, + anon_sym_template, + STATE(3069), 1, + sym_pointer_type_declarator, + STATE(3073), 1, + sym_template_function, + STATE(3077), 1, + sym_destructor_name, + STATE(3078), 1, + sym_dependent_identifier, + STATE(3080), 1, + sym_qualified_identifier, + STATE(3104), 1, + sym_operator_name, + STATE(6359), 1, + sym__scope_resolution, + STATE(9053), 1, + sym_ms_based_modifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [258089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2186), 1, anon_sym_LBRACK, - STATE(6235), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 9, + ACTIONS(2184), 18, anon_sym_COMMA, 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_COLON, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - [257641] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [258116] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7638), 1, + ACTIONS(7741), 1, anon_sym_requires, - ACTIONS(10063), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6423), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10061), 11, + ACTIONS(10194), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -575111,41 +578492,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [257676] = 3, - ACTIONS(6689), 1, - anon_sym_LF, - ACTIONS(9761), 1, + [258151] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(6687), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8087), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_LBRACK, + ACTIONS(9055), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(9057), 1, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9059), 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, - [257703] = 5, + STATE(4416), 1, + sym_parameter_list, + STATE(6467), 1, + sym__function_declarator_seq, + STATE(7080), 1, + sym__abstract_declarator, + ACTIONS(8031), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6383), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [258193] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9592), 1, + ACTIONS(10287), 1, anon_sym_LBRACK, - STATE(6333), 2, + STATE(6373), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9590), 14, + ACTIONS(10285), 14, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -575160,17 +578548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [257733] = 5, + [258223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5970), 1, - anon_sym_LBRACK, - ACTIONS(10198), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - STATE(6333), 2, + ACTIONS(9698), 1, + anon_sym_LBRACK, + STATE(6373), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(5972), 14, + ACTIONS(9696), 14, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -575185,25 +578573,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [257763] = 8, + [258253] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9922), 1, + anon_sym_COMMA, + ACTIONS(9924), 1, + anon_sym_LPAREN2, + ACTIONS(9926), 1, + anon_sym_SEMI, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(9932), 1, + anon_sym_EQ, + ACTIONS(10301), 1, + anon_sym_COLON, + STATE(4142), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(7983), 1, + aux_sym__declaration_declarator_repeat1, + STATE(8003), 1, + sym_gnu_asm_expression, + ACTIONS(9934), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6867), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8069), 2, + sym_argument_list, + sym_initializer_list, + [258305] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(7365), 1, + ACTIONS(10306), 1, anon_sym_requires, - STATE(6446), 1, + STATE(6486), 1, sym_trailing_return_type, - ACTIONS(7363), 2, + ACTIONS(10303), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6649), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 9, + ACTIONS(10194), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -575213,25 +578637,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [257799] = 8, + [258341] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(9025), 1, + ACTIONS(9458), 1, anon_sym_requires, - STATE(6512), 1, + STATE(6484), 1, sym_trailing_return_type, - ACTIONS(9022), 2, + ACTIONS(9455), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 9, + ACTIONS(9451), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -575241,61 +578665,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [257835] = 16, + [258377] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9775), 1, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(9114), 1, + anon_sym_requires, + STATE(6478), 1, + sym_trailing_return_type, + ACTIONS(9111), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 9, anon_sym_COMMA, - ACTIONS(9777), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9779), 1, anon_sym_SEMI, - ACTIONS(9783), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(9785), 1, anon_sym_EQ, - ACTIONS(10201), 1, - anon_sym_COLON, - STATE(4098), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(7796), 1, - aux_sym__declaration_declarator_repeat1, - STATE(7886), 1, - sym_gnu_asm_expression, - ACTIONS(9787), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6866), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8402), 2, - sym_argument_list, - sym_initializer_list, - [257887] = 8, + anon_sym_GT2, + anon_sym_try, + [258413] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(9358), 1, + ACTIONS(9024), 1, anon_sym_requires, - STATE(6442), 1, + STATE(6505), 1, sym_trailing_return_type, - ACTIONS(9355), 2, + ACTIONS(9021), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 9, + ACTIONS(9008), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -575305,25 +578721,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [257923] = 8, + [258449] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(7365), 1, + ACTIONS(7445), 1, anon_sym_requires, - STATE(6452), 1, + STATE(6515), 1, sym_trailing_return_type, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6649), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 9, + ACTIONS(10194), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -575333,56 +578749,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [257959] = 11, + [258485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7982), 1, - anon_sym_LPAREN2, - ACTIONS(7990), 1, - anon_sym_LBRACK, - ACTIONS(8952), 1, - anon_sym_STAR, - ACTIONS(8954), 1, - anon_sym_AMP_AMP, - ACTIONS(8956), 1, - anon_sym_AMP, - STATE(4419), 1, - sym_parameter_list, - STATE(6377), 1, - sym__function_declarator_seq, - STATE(7042), 1, - sym__abstract_declarator, - ACTIONS(7914), 5, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9720), 1, + anon_sym_LBRACK, + STATE(6373), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9718), 14, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - STATE(6382), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [258001] = 8, + [258515] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(8917), 1, + ACTIONS(7445), 1, anon_sym_requires, - STATE(6509), 1, + STATE(6476), 1, sym_trailing_return_type, - ACTIONS(8914), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 9, + ACTIONS(9451), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -575392,25 +578802,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [258037] = 8, + [258551] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(5953), 1, + anon_sym_LBRACK, + ACTIONS(10309), 1, + anon_sym_LBRACK_LBRACK, + STATE(6373), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5955), 14, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - ACTIONS(10206), 1, + anon_sym_final, + anon_sym_override, + anon_sym_try, anon_sym_requires, - STATE(6449), 1, + [258581] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7437), 1, + anon_sym_DASH_GT, + ACTIONS(7445), 1, + anon_sym_requires, + STATE(6532), 1, sym_trailing_return_type, - ACTIONS(10203), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6678), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 9, + ACTIONS(9008), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -575420,25 +578855,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [258073] = 8, + [258617] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7437), 1, anon_sym_DASH_GT, - ACTIONS(7365), 1, + ACTIONS(7445), 1, anon_sym_requires, - STATE(6474), 1, + STATE(6492), 1, sym_trailing_return_type, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 9, + ACTIONS(9107), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -575448,90 +578883,413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [258109] = 8, + [258653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, - anon_sym_DASH_GT, - ACTIONS(7365), 1, + ACTIONS(10314), 1, + anon_sym_LBRACK, + ACTIONS(10312), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - STATE(6467), 1, + [258678] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(6991), 1, + sym__type_declarator, + STATE(7591), 1, + sym__type_definition_declarators, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [258721] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(10316), 1, + anon_sym_LT, + ACTIONS(10318), 1, + anon_sym_LBRACE, + STATE(3550), 1, + sym_compound_statement, + STATE(4175), 1, + sym_parameter_list, + STATE(6391), 1, + sym_template_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7547), 1, + sym__abstract_declarator, + STATE(7571), 1, + sym_abstract_function_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [258770] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8296), 1, + sym_identifier, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8300), 1, + anon_sym_STAR, + ACTIONS(8302), 1, + anon_sym_AMP_AMP, + ACTIONS(8304), 1, + anon_sym_AMP, + STATE(7086), 1, + sym__field_declarator, + STATE(7241), 1, + sym_operator_name, + STATE(8724), 1, + sym_ms_based_modifier, + STATE(6935), 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, + [258813] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(10316), 1, + anon_sym_LT, + ACTIONS(10320), 1, + anon_sym_LBRACE, + STATE(3777), 1, + sym_compound_statement, + STATE(4175), 1, + sym_parameter_list, + STATE(6402), 1, + sym_template_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7398), 1, + sym_abstract_function_declarator, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [258862] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7725), 1, + anon_sym_DASH_GT, + ACTIONS(10196), 1, + anon_sym_LBRACK, + STATE(6285), 1, sym_trailing_return_type, - ACTIONS(7363), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6678), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10194), 7, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - [258145] = 5, + [258899] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10133), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(6991), 1, + sym__type_declarator, + STATE(7462), 1, + sym__type_definition_declarators, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [258942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10324), 1, anon_sym_LBRACK, - STATE(6333), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10131), 14, + ACTIONS(10322), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [258175] = 5, + [258967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9628), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - STATE(6333), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9626), 14, + ACTIONS(10194), 16, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [258992] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7725), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9304), 1, + anon_sym_requires, + STATE(6261), 1, + sym_trailing_return_type, + ACTIONS(9301), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [259029] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(10316), 1, + anon_sym_LT, + ACTIONS(10326), 1, + anon_sym_LBRACE, + STATE(1992), 1, + sym_compound_statement, + STATE(4175), 1, + sym_parameter_list, + STATE(6461), 1, + sym_template_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7460), 1, + sym_abstract_function_declarator, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [259078] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7725), 1, anon_sym_DASH_GT, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(6239), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, + [259115] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7709), 1, + anon_sym_DASH_GT, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9453), 1, + anon_sym_LBRACK, + STATE(6361), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6384), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [259152] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7709), 1, + anon_sym_DASH_GT, + ACTIONS(7741), 1, anon_sym_requires, - [258205] = 3, + ACTIONS(10196), 1, + anon_sym_LBRACK, + STATE(6327), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6422), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [259189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10211), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(10209), 16, + ACTIONS(9008), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -575548,12 +579306,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [258230] = 3, + [259214] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(10318), 1, + anon_sym_LBRACE, + ACTIONS(10328), 1, + anon_sym_requires, + STATE(3438), 1, + sym_compound_statement, + STATE(4175), 1, + sym_parameter_list, + STATE(6603), 1, + sym_requires_clause, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7547), 1, + sym__abstract_declarator, + STATE(7565), 1, + sym_abstract_function_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [259263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10215), 1, + ACTIONS(10332), 1, anon_sym_LBRACK, - ACTIONS(10213), 16, + ACTIONS(10330), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -575570,538 +579362,861 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [258255] = 12, + [259288] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7709), 1, + anon_sym_DASH_GT, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9109), 1, + anon_sym_LBRACK, + STATE(6350), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [259325] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(6991), 1, + sym__type_declarator, + STATE(7583), 1, + sym__type_definition_declarators, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [259368] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(6991), 1, sym__type_declarator, - STATE(7386), 1, + STATE(7369), 1, sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [258298] = 15, + [259411] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, anon_sym_STAR, - ACTIONS(5041), 1, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(6991), 1, + sym__type_declarator, + STATE(7613), 1, + sym__type_definition_declarators, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [259454] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(6991), 1, + sym__type_declarator, + STATE(7624), 1, + sym__type_definition_declarators, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [259497] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10217), 1, - anon_sym_LT, - ACTIONS(10219), 1, + ACTIONS(10328), 1, + anon_sym_requires, + ACTIONS(10334), 1, anon_sym_LBRACE, - STATE(3451), 1, + STATE(4175), 1, + sym_parameter_list, + STATE(6525), 1, + sym_compound_statement, + STATE(6597), 1, + sym_requires_clause, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7547), 1, + sym__abstract_declarator, + STATE(7609), 1, + sym_abstract_function_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [259546] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8346), 1, + sym_identifier, + ACTIONS(8348), 1, + anon_sym_STAR, + ACTIONS(8350), 1, + anon_sym_AMP_AMP, + ACTIONS(8352), 1, + anon_sym_AMP, + STATE(6681), 1, + sym__field_declarator, + STATE(6840), 1, + sym_operator_name, + STATE(8771), 1, + sym_ms_based_modifier, + STATE(6935), 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, + [259589] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(10328), 1, + anon_sym_requires, + ACTIONS(10336), 1, + anon_sym_LBRACE, + STATE(3817), 1, sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6354), 1, - sym_template_parameter_list, - STATE(6625), 1, + STATE(6606), 1, + sym_requires_clause, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7343), 1, + STATE(7468), 1, sym_abstract_function_declarator, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(6616), 4, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [258347] = 12, + [259638] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(6991), 1, sym__type_declarator, - STATE(7541), 1, + STATE(7414), 1, sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [258390] = 15, + [259681] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10217), 1, - anon_sym_LT, - ACTIONS(10221), 1, + ACTIONS(10320), 1, anon_sym_LBRACE, - STATE(3840), 1, + ACTIONS(10328), 1, + anon_sym_requires, + STATE(3899), 1, sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6420), 1, - sym_template_parameter_list, - STATE(6625), 1, + STATE(6608), 1, + sym_requires_clause, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7558), 1, + STATE(7413), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [258439] = 15, + [259730] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10217), 1, + ACTIONS(10316), 1, anon_sym_LT, - ACTIONS(10223), 1, - anon_sym_LBRACE, - STATE(4159), 1, - sym_parameter_list, - STATE(6299), 1, + STATE(1992), 1, sym_compound_statement, - STATE(6362), 1, + STATE(4175), 1, + sym_parameter_list, + STATE(6456), 1, sym_template_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(7379), 1, + STATE(7576), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [258488] = 9, + [259779] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7623), 1, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9362), 1, + anon_sym_STAR, + ACTIONS(9364), 1, + anon_sym_AMP_AMP, + ACTIONS(9366), 1, + anon_sym_AMP, + STATE(3782), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(6913), 1, + sym__abstract_declarator, + ACTIONS(8031), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [259820] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(7741), 1, + anon_sym_requires, + ACTIONS(9010), 1, anon_sym_LBRACK, - STATE(6256), 1, + STATE(6318), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 7, + ACTIONS(9008), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [258525] = 15, + anon_sym_GT2, + [259857] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10219), 1, + ACTIONS(10316), 1, + anon_sym_LT, + ACTIONS(10338), 1, anon_sym_LBRACE, - ACTIONS(10225), 1, - anon_sym_requires, - STATE(3389), 1, - sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6541), 1, - sym_requires_clause, - STATE(6625), 1, + STATE(4886), 1, + sym_compound_statement, + STATE(6452), 1, + sym_template_parameter_list, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7389), 1, + STATE(7475), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [258574] = 15, + [259906] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(9922), 1, + anon_sym_COMMA, + ACTIONS(9924), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(9926), 1, + anon_sym_SEMI, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(10340), 1, + anon_sym_EQ, + STATE(4168), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(7926), 1, + sym_initializer_list, + STATE(7983), 1, + aux_sym__declaration_declarator_repeat1, + STATE(8003), 1, + sym_gnu_asm_expression, + STATE(8069), 1, + sym_argument_list, + ACTIONS(9934), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [259957] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7709), 1, + anon_sym_DASH_GT, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9074), 1, + anon_sym_requires, + STATE(6335), 1, + sym_trailing_return_type, + ACTIONS(9037), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [259994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10344), 1, + anon_sym_LBRACK, + ACTIONS(10342), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [260019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10348), 1, + anon_sym_LBRACK, + ACTIONS(10346), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [260044] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10217), 1, + ACTIONS(10316), 1, anon_sym_LT, - ACTIONS(10227), 1, + ACTIONS(10350), 1, anon_sym_LBRACE, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(4165), 1, + STATE(4818), 1, sym_compound_statement, - STATE(6372), 1, + STATE(6419), 1, sym_template_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7375), 1, - sym_abstract_function_declarator, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(6616), 4, + STATE(7592), 1, + sym_abstract_function_declarator, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [258623] = 15, + [260093] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7725), 1, + anon_sym_DASH_GT, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10207), 1, + anon_sym_requires, + STATE(6344), 1, + sym_trailing_return_type, + ACTIONS(10204), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6422), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [260130] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10225), 1, - anon_sym_requires, - ACTIONS(10229), 1, + ACTIONS(10316), 1, + anon_sym_LT, + ACTIONS(10352), 1, anon_sym_LBRACE, - STATE(4159), 1, - sym_parameter_list, - STATE(4840), 1, + STATE(4003), 1, sym_compound_statement, - STATE(6563), 1, - sym_requires_clause, - STATE(6625), 1, + STATE(4175), 1, + sym_parameter_list, + STATE(6435), 1, + sym_template_parameter_list, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7338), 1, - sym_abstract_function_declarator, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(6616), 4, + STATE(7622), 1, + sym_abstract_function_declarator, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [258672] = 12, + [260179] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(6991), 1, sym__type_declarator, - STATE(7431), 1, + STATE(7426), 1, sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [258715] = 12, + [260222] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, + ACTIONS(7709), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9371), 1, + anon_sym_requires, + STATE(6336), 1, + sym_trailing_return_type, + ACTIONS(9301), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(6998), 1, - sym__type_declarator, - STATE(7487), 1, - sym__type_definition_declarators, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [258758] = 15, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [260259] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10225), 1, - anon_sym_requires, - ACTIONS(10231), 1, + ACTIONS(10316), 1, + anon_sym_LT, + ACTIONS(10354), 1, anon_sym_LBRACE, - STATE(2731), 1, - sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6567), 1, - sym_requires_clause, - STATE(6625), 1, + STATE(6262), 1, + sym_compound_statement, + STATE(6440), 1, + sym_template_parameter_list, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7376), 1, + STATE(7411), 1, sym_abstract_function_declarator, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(6616), 4, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [258807] = 12, + [260308] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(6991), 1, sym__type_declarator, - STATE(7333), 1, + STATE(7632), 1, sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [258850] = 15, + [260351] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10217), 1, - anon_sym_LT, - ACTIONS(10229), 1, - anon_sym_LBRACE, - STATE(4159), 1, - sym_parameter_list, - STATE(4785), 1, - sym_compound_statement, - STATE(6356), 1, - sym_template_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7329), 1, - sym_abstract_function_declarator, - STATE(7378), 1, - sym__abstract_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [258899] = 15, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(6991), 1, + sym__type_declarator, + STATE(7585), 1, + sym__type_definition_declarators, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [260394] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10223), 1, - anon_sym_LBRACE, - ACTIONS(10225), 1, + ACTIONS(10328), 1, anon_sym_requires, - STATE(4159), 1, + ACTIONS(10350), 1, + anon_sym_LBRACE, + STATE(4175), 1, sym_parameter_list, - STATE(6283), 1, + STATE(4870), 1, sym_compound_statement, - STATE(6578), 1, + STATE(6566), 1, sym_requires_clause, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(7427), 1, + STATE(7586), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [258948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10063), 1, - anon_sym_LBRACK, - ACTIONS(10061), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [258973] = 9, + [260443] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 1, + ACTIONS(7725), 1, anon_sym_DASH_GT, - ACTIONS(10053), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(10058), 1, + ACTIONS(9040), 1, anon_sym_requires, - STATE(6211), 1, + STATE(6240), 1, sym_trailing_return_type, - ACTIONS(10055), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 7, + ACTIONS(9008), 7, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -576109,27 +580224,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [259010] = 9, + [260480] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 1, + ACTIONS(7725), 1, anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(9478), 1, anon_sym_requires, - STATE(6229), 1, + STATE(6264), 1, sym_trailing_return_type, - ACTIONS(9367), 2, + ACTIONS(9475), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 7, + ACTIONS(9451), 7, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -576137,232 +580252,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [259047] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7636), 1, - anon_sym_DASH_GT, - ACTIONS(10053), 1, - anon_sym_LBRACK, - ACTIONS(10155), 1, - anon_sym_requires, - STATE(6305), 1, - sym_trailing_return_type, - ACTIONS(10055), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [259084] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7636), 1, - anon_sym_DASH_GT, - ACTIONS(9353), 1, - anon_sym_LBRACK, - ACTIONS(9394), 1, - anon_sym_requires, - STATE(6278), 1, - sym_trailing_return_type, - ACTIONS(9367), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6425), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [259121] = 9, + [260517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7636), 1, - anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(10220), 1, anon_sym_LBRACK, - ACTIONS(9256), 1, - anon_sym_requires, - STATE(6303), 1, - sym_trailing_return_type, - ACTIONS(9128), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 7, + ACTIONS(10218), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [259158] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(5338), 1, anon_sym_COLON, - ACTIONS(8966), 1, - anon_sym_LT, - STATE(2931), 1, - sym_template_argument_list, - ACTIONS(4163), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - 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, - [259189] = 15, + [260542] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10225), 1, + ACTIONS(10328), 1, anon_sym_requires, - ACTIONS(10233), 1, + ACTIONS(10356), 1, anon_sym_LBRACE, - STATE(3736), 1, + STATE(2850), 1, sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6546), 1, + STATE(6568), 1, sym_requires_clause, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7394), 1, + STATE(7455), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [259238] = 9, + [260591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7636), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(10360), 1, anon_sym_LBRACK, - ACTIONS(8990), 1, - anon_sym_requires, - STATE(6302), 1, - sym_trailing_return_type, - ACTIONS(8934), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 7, + ACTIONS(10358), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [259275] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10225), 1, + anon_sym_try, anon_sym_requires, - ACTIONS(10227), 1, - anon_sym_LBRACE, - STATE(4159), 1, - sym_parameter_list, - STATE(4249), 1, - sym_compound_statement, - STATE(6545), 1, - sym_requires_clause, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7428), 1, - sym_abstract_function_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [259324] = 9, + [260616] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7636), 1, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(10053), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - STATE(6330), 1, + ACTIONS(9499), 1, + anon_sym_requires, + STATE(6337), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(9475), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 7, + ACTIONS(9451), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -576370,55 +580358,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - [259361] = 9, + [260653] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7636), 1, - anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(9353), 1, - anon_sym_LBRACK, - STATE(6323), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6425), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [259398] = 9, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(6991), 1, + sym__type_declarator, + STATE(7617), 1, + sym__type_definition_declarators, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [260696] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7636), 1, + ACTIONS(7709), 1, anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - STATE(6314), 1, + ACTIONS(10228), 1, + anon_sym_requires, + STATE(6338), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(10204), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6412), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 7, + ACTIONS(10194), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -576426,46 +580417,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - [259435] = 15, + [260733] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(6991), 1, + sym__type_declarator, + STATE(7608), 1, + sym__type_definition_declarators, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [260776] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3646), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - ACTIONS(9775), 1, + ACTIONS(9922), 1, anon_sym_COMMA, - ACTIONS(9777), 1, + ACTIONS(9924), 1, anon_sym_LPAREN2, - ACTIONS(9779), 1, + ACTIONS(9926), 1, anon_sym_SEMI, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(9785), 1, + ACTIONS(9932), 1, anon_sym_EQ, - STATE(4120), 1, + STATE(4168), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(7796), 1, + STATE(7983), 1, aux_sym__declaration_declarator_repeat1, - STATE(7886), 1, + STATE(8003), 1, sym_gnu_asm_expression, - ACTIONS(9787), 2, + ACTIONS(9934), 2, anon_sym_asm, anon_sym___asm__, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8402), 2, + STATE(8069), 2, sym_argument_list, sym_initializer_list, - [259484] = 3, + [260825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10237), 1, + ACTIONS(10364), 1, anon_sym_LBRACK, - ACTIONS(10235), 16, + ACTIONS(10362), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -576482,195 +580504,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [259509] = 9, + [260850] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7623), 1, - anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(8207), 1, anon_sym_LBRACK, - STATE(6232), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(9079), 1, + anon_sym_STAR, + ACTIONS(9081), 1, + anon_sym_AMP_AMP, + ACTIONS(9083), 1, + anon_sym_AMP, + STATE(4426), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7099), 1, + sym__abstract_declarator, + ACTIONS(8031), 4, + anon_sym_COLON, anon_sym_final, anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 7, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [259546] = 12, + anon_sym_requires, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [260891] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8329), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8371), 1, - sym_identifier, - ACTIONS(8373), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(8375), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, + ACTIONS(5075), 1, anon_sym_AMP, - STATE(7067), 1, - sym__field_declarator, - STATE(7164), 1, - sym_operator_name, - STATE(8978), 1, - sym_ms_based_modifier, - STATE(6886), 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, - [259589] = 12, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(10328), 1, + anon_sym_requires, + ACTIONS(10366), 1, + anon_sym_LBRACE, + STATE(4175), 1, + sym_parameter_list, + STATE(4279), 1, + sym_compound_statement, + STATE(6592), 1, + sym_requires_clause, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7547), 1, + sym__abstract_declarator, + STATE(7552), 1, + sym_abstract_function_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [260940] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(6991), 1, sym__type_declarator, - STATE(7326), 1, + STATE(7554), 1, sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [259632] = 12, + [260983] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(6991), 1, sym__type_declarator, - STATE(7353), 1, + STATE(7533), 1, sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [259675] = 3, + [261026] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10241), 1, - anon_sym_LBRACK, - ACTIONS(10239), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5069), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [259700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10245), 1, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10243), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, + ACTIONS(10328), 1, anon_sym_requires, - [259725] = 12, + ACTIONS(10352), 1, + anon_sym_LBRACE, + STATE(4080), 1, + sym_compound_statement, + STATE(4175), 1, + sym_parameter_list, + STATE(6598), 1, + sym_requires_clause, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7547), 1, + sym__abstract_declarator, + STATE(7621), 1, + sym_abstract_function_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [261075] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8371), 1, + ACTIONS(8296), 1, sym_identifier, - ACTIONS(8373), 1, + ACTIONS(8298), 1, + anon_sym_LPAREN2, + ACTIONS(8300), 1, anon_sym_STAR, - ACTIONS(8375), 1, + ACTIONS(8302), 1, anon_sym_AMP_AMP, - ACTIONS(8377), 1, + ACTIONS(8304), 1, anon_sym_AMP, STATE(7094), 1, sym__field_declarator, - STATE(7164), 1, + STATE(7241), 1, sym_operator_name, - STATE(8978), 1, + STATE(8724), 1, sym_ms_based_modifier, - STATE(6886), 7, + STATE(6935), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -576678,417 +580695,155 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [259768] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7636), 1, - anon_sym_DASH_GT, - ACTIONS(7638), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - STATE(6304), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [259805] = 12, + [261118] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8327), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8329), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8331), 1, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, anon_sym_STAR, - ACTIONS(8333), 1, - anon_sym_AMP_AMP, - ACTIONS(8335), 1, - anon_sym_AMP, - STATE(6631), 1, - sym__field_declarator, - STATE(6872), 1, - sym_operator_name, - STATE(8907), 1, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(6991), 1, + sym__type_declarator, + STATE(7463), 1, + sym__type_definition_declarators, + STATE(8896), 1, sym_ms_based_modifier, - STATE(6886), 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, - [259848] = 3, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [261161] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(8908), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(5397), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [259873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10249), 1, - anon_sym_LBRACK, - ACTIONS(10247), 16, + ACTIONS(9053), 1, + anon_sym_LT, + STATE(2943), 1, + sym_template_argument_list, + ACTIONS(4161), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [259898] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7623), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - STATE(6325), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 7, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [259935] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(9265), 1, - anon_sym_STAR, - ACTIONS(9267), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(9269), 1, - anon_sym_AMP, - STATE(3802), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(6955), 1, - sym__abstract_declarator, - ACTIONS(7914), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [259976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10253), 1, anon_sym_LBRACK, - ACTIONS(10251), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [260001] = 12, + [261192] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(6991), 1, sym__type_declarator, - STATE(7424), 1, + STATE(7442), 1, sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [260044] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10225), 1, - anon_sym_requires, - ACTIONS(10255), 1, - anon_sym_LBRACE, - STATE(4072), 1, - sym_compound_statement, - STATE(4159), 1, - sym_parameter_list, - STATE(6570), 1, - sym_requires_clause, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7575), 1, - sym_abstract_function_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [260093] = 15, + [261235] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10225), 1, + ACTIONS(10328), 1, anon_sym_requires, - ACTIONS(10257), 1, + ACTIONS(10354), 1, anon_sym_LBRACE, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(4859), 1, + STATE(6278), 1, sym_compound_statement, - STATE(6544), 1, + STATE(6604), 1, sym_requires_clause, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7331), 1, - sym_abstract_function_declarator, - STATE(7378), 1, - sym__abstract_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [260142] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8968), 1, - anon_sym_STAR, - ACTIONS(8970), 1, - anon_sym_AMP_AMP, - ACTIONS(8972), 1, - anon_sym_AMP, - STATE(4436), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7073), 1, - sym__abstract_declarator, - ACTIONS(7914), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [260183] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10217), 1, - anon_sym_LT, - ACTIONS(10231), 1, - anon_sym_LBRACE, - STATE(2833), 1, - sym_compound_statement, - STATE(4159), 1, - sym_parameter_list, - STATE(6359), 1, - sym_template_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7355), 1, + STATE(7459), 1, sym_abstract_function_declarator, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(6616), 4, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [260232] = 9, + [261284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 1, - anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(10370), 1, anon_sym_LBRACK, - ACTIONS(9131), 1, - anon_sym_requires, - STATE(6208), 1, - sym_trailing_return_type, - ACTIONS(9128), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 7, + ACTIONS(10368), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [260269] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(6998), 1, - sym__type_declarator, - STATE(7523), 1, - sym__type_definition_declarators, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [260312] = 3, + anon_sym_requires, + [261309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10261), 1, + ACTIONS(10374), 1, anon_sym_LBRACK, - ACTIONS(10259), 16, + ACTIONS(10372), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577105,12 +580860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [260337] = 3, + [261334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10265), 1, + ACTIONS(10378), 1, anon_sym_LBRACK, - ACTIONS(10263), 16, + ACTIONS(10376), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577127,136 +580882,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [260362] = 12, + [261359] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(6991), 1, sym__type_declarator, - STATE(7319), 1, + STATE(7513), 1, sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [260405] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(8327), 1, - sym_identifier, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8331), 1, - anon_sym_STAR, - ACTIONS(8333), 1, - anon_sym_AMP_AMP, - ACTIONS(8335), 1, - anon_sym_AMP, - STATE(6576), 1, - sym__field_declarator, - STATE(6872), 1, - sym_operator_name, - STATE(8907), 1, - sym_ms_based_modifier, - STATE(6886), 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, - [260448] = 12, + [261402] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(6991), 1, sym__type_declarator, - STATE(7325), 1, + STATE(7485), 1, sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [260491] = 12, + [261445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(5007), 1, + anon_sym_COLON, + ACTIONS(9053), 1, + anon_sym_LT, + STATE(2943), 1, + sym_template_argument_list, + ACTIONS(5012), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(6998), 1, - sym__type_declarator, - STATE(7392), 1, - sym__type_definition_declarators, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [260534] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [261476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9006), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9004), 16, + ACTIONS(9107), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577273,192 +580991,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [260559] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(6998), 1, - sym__type_declarator, - STATE(7445), 1, - sym__type_definition_declarators, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [260602] = 3, + [261501] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10269), 1, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7725), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(10267), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(6331), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 7, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [260627] = 15, + [261538] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10217), 1, + ACTIONS(10316), 1, anon_sym_LT, - ACTIONS(10257), 1, + ACTIONS(10334), 1, anon_sym_LBRACE, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(4802), 1, - sym_compound_statement, - STATE(6394), 1, + STATE(6398), 1, sym_template_parameter_list, - STATE(6625), 1, + STATE(6539), 1, + sym_compound_statement, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(7398), 1, + STATE(7629), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [260676] = 12, + [261587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, + ACTIONS(10382), 1, + anon_sym_LBRACK, + ACTIONS(10380), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(6998), 1, - sym__type_declarator, - STATE(7498), 1, - sym__type_definition_declarators, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [260719] = 12, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [261612] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(8298), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8346), 1, + sym_identifier, + ACTIONS(8348), 1, anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(6998), 1, - sym__type_declarator, - STATE(7459), 1, - sym__type_definition_declarators, - STATE(8865), 1, + ACTIONS(8350), 1, + anon_sym_AMP_AMP, + ACTIONS(8352), 1, + anon_sym_AMP, + STATE(6546), 1, + sym__field_declarator, + STATE(6840), 1, + sym_operator_name, + STATE(8771), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [260762] = 12, + STATE(6935), 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, + [261655] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(5071), 1, anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(6998), 1, - sym__type_declarator, - STATE(7382), 1, - sym__type_definition_declarators, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [260805] = 3, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(10328), 1, + anon_sym_requires, + ACTIONS(10338), 1, + anon_sym_LBRACE, + STATE(4175), 1, + sym_parameter_list, + STATE(4877), 1, + sym_compound_statement, + STATE(6553), 1, + sym_requires_clause, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7484), 1, + sym_abstract_function_declarator, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [261704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9353), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - ACTIONS(9351), 16, + ACTIONS(9451), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577475,337 +581162,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [260830] = 12, + [261729] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7642), 1, + anon_sym_requires, + ACTIONS(7725), 1, + anon_sym_DASH_GT, + ACTIONS(9453), 1, + anon_sym_LBRACK, + STATE(6258), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6384), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [261766] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(6991), 1, sym__type_declarator, - STATE(7591), 1, + STATE(7399), 1, sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [260873] = 15, + [261809] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10225), 1, - anon_sym_requires, - ACTIONS(10271), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(1956), 1, - sym_compound_statement, - STATE(4159), 1, - sym_parameter_list, - STATE(6577), 1, - sym_requires_clause, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7358), 1, - sym_abstract_function_declarator, - STATE(7378), 1, - sym__abstract_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [260922] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10225), 1, + ACTIONS(10328), 1, anon_sym_requires, - ACTIONS(10273), 1, - anon_sym_LBRACE, - STATE(4159), 1, - sym_parameter_list, - STATE(6506), 1, + STATE(1991), 1, sym_compound_statement, - STATE(6538), 1, + STATE(4175), 1, + sym_parameter_list, + STATE(6567), 1, sym_requires_clause, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(7464), 1, + STATE(7620), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [260971] = 12, + [261858] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(6991), 1, sym__type_declarator, - STATE(7550), 1, + STATE(7447), 1, sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [261014] = 15, + [261901] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10217), 1, + ACTIONS(10316), 1, anon_sym_LT, - ACTIONS(10233), 1, + ACTIONS(10336), 1, anon_sym_LBRACE, - STATE(3771), 1, + STATE(3883), 1, sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6370), 1, + STATE(6400), 1, sym_template_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7354), 1, - sym_abstract_function_declarator, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(6616), 4, + STATE(7550), 1, + sym_abstract_function_declarator, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [261063] = 15, + [261950] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10217), 1, + ACTIONS(10316), 1, anon_sym_LT, - ACTIONS(10255), 1, + ACTIONS(10356), 1, anon_sym_LBRACE, - STATE(3988), 1, + STATE(2758), 1, sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6393), 1, + STATE(6423), 1, sym_template_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7531), 1, + STATE(7441), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [261112] = 15, + [261999] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10217), 1, + ACTIONS(10316), 1, anon_sym_LT, - STATE(1954), 1, - sym_compound_statement, - STATE(4159), 1, + ACTIONS(10366), 1, + anon_sym_LBRACE, + STATE(4175), 1, sym_parameter_list, - STATE(6436), 1, + STATE(4258), 1, + sym_compound_statement, + STATE(6432), 1, sym_template_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7543), 1, + STATE(7524), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [261161] = 15, + [262048] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10221), 1, + ACTIONS(10326), 1, anon_sym_LBRACE, - ACTIONS(10225), 1, + ACTIONS(10328), 1, anon_sym_requires, - STATE(3936), 1, + STATE(1991), 1, sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6523), 1, + STATE(6575), 1, sym_requires_clause, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7491), 1, + STATE(7373), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [261210] = 6, + [262097] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4968), 1, - anon_sym_COLON, - ACTIONS(8966), 1, - anon_sym_LT, - STATE(2931), 1, - sym_template_argument_list, - ACTIONS(4975), 13, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(6991), 1, + sym__type_declarator, + STATE(7418), 1, + sym__type_definition_declarators, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [262140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10386), 1, + anon_sym_LBRACK, + ACTIONS(10384), 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_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [261241] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10217), 1, - anon_sym_LT, - ACTIONS(10273), 1, - anon_sym_LBRACE, - STATE(4159), 1, - sym_parameter_list, - STATE(6415), 1, - sym_template_parameter_list, - STATE(6500), 1, - sym_compound_statement, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7501), 1, - sym_abstract_function_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [261290] = 3, + [262165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10277), 1, + ACTIONS(10390), 1, anon_sym_LBRACK, - ACTIONS(10275), 16, + ACTIONS(10388), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577822,43 +581497,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [261315] = 12, + [262190] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(6991), 1, sym__type_declarator, - STATE(7413), 1, + STATE(7476), 1, sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [261358] = 3, + [262233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10053), 1, + ACTIONS(10394), 1, anon_sym_LBRACK, - ACTIONS(10051), 16, + ACTIONS(10392), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577875,12 +581550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [261383] = 3, + [262258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10281), 1, + ACTIONS(10398), 1, anon_sym_LBRACK, - ACTIONS(10279), 16, + ACTIONS(10396), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577897,531 +581572,480 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [261408] = 9, + [262283] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_requires, - ACTIONS(7623), 1, + ACTIONS(7769), 1, anon_sym_DASH_GT, - ACTIONS(10053), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - STATE(6235), 1, + ACTIONS(9574), 1, + anon_sym_requires, + STATE(6646), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(9475), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 7, + ACTIONS(9451), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [261445] = 16, + [262319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(9775), 1, + ACTIONS(6181), 1, + anon_sym_LBRACK, + ACTIONS(10400), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6183), 14, anon_sym_COMMA, - ACTIONS(9777), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9779), 1, + anon_sym_LT, anon_sym_SEMI, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(10283), 1, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - STATE(4120), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(7745), 1, - sym_initializer_list, - STATE(7796), 1, - aux_sym__declaration_declarator_repeat1, - STATE(7886), 1, - sym_gnu_asm_expression, - STATE(8402), 1, - sym_argument_list, - ACTIONS(9787), 2, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [261496] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10217), 1, - anon_sym_LT, - ACTIONS(10271), 1, - anon_sym_LBRACE, - STATE(1954), 1, - sym_compound_statement, - STATE(4159), 1, - sym_parameter_list, - STATE(6414), 1, - sym_template_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7430), 1, - sym_abstract_function_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [261545] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(6998), 1, - sym__type_declarator, - STATE(7574), 1, - sym__type_definition_declarators, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [261588] = 9, + anon_sym_GT2, + anon_sym_try, + [262345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 1, - anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(4018), 1, anon_sym_LBRACK, - ACTIONS(8937), 1, - anon_sym_requires, - STATE(6326), 1, - sym_trailing_return_type, - ACTIONS(8934), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 7, + ACTIONS(4020), 15, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_try, - [261625] = 3, + anon_sym_requires, + [262369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10287), 1, - anon_sym_LBRACK, - ACTIONS(10285), 16, + ACTIONS(10402), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6235), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [261650] = 12, + [262393] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(9924), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(9932), 1, + anon_sym_EQ, + STATE(4168), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(8201), 1, + sym_gnu_asm_expression, + ACTIONS(9934), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10404), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8069), 2, + sym_argument_list, + sym_initializer_list, + [262437] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(9331), 1, + anon_sym_COLON_COLON, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(6998), 1, - sym__type_declarator, - STATE(7390), 1, - sym__type_definition_declarators, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8474), 4, + STATE(3758), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7055), 1, + sym__scope_resolution, + STATE(4450), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9333), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [261693] = 3, + [262477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10291), 1, - anon_sym_LBRACK, - ACTIONS(10289), 16, + ACTIONS(10410), 2, + anon_sym_final, + anon_sym_override, + STATE(6474), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10237), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [261718] = 12, + [262503] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6998), 1, + STATE(7158), 1, sym__type_declarator, - STATE(7559), 1, - sym__type_definition_declarators, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [261761] = 15, + [262543] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10225), 1, + ACTIONS(7445), 1, anon_sym_requires, - STATE(1956), 1, - sym_compound_statement, - STATE(4159), 1, - sym_parameter_list, - STATE(6582), 1, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6649), 2, + sym__function_postfix, sym_requires_clause, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7587), 1, - sym_abstract_function_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [261810] = 3, + ACTIONS(10194), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [262573] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10295), 1, + ACTIONS(7769), 1, + anon_sym_DASH_GT, + ACTIONS(7800), 1, + anon_sym_requires, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(10293), 16, - anon_sym_COMMA, + STATE(6712), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6422), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_try, + [262609] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9458), 1, + anon_sym_requires, + ACTIONS(9455), 2, anon_sym_final, anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6638), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [261835] = 9, + [262639] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10413), 1, + sym_identifier, + ACTIONS(5234), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(6530), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10415), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10417), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [262669] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7652), 1, + ACTIONS(7769), 1, anon_sym_DASH_GT, - ACTIONS(7654), 1, + ACTIONS(7800), 1, anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - STATE(6636), 1, + STATE(6676), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 6, + ACTIONS(9008), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [261871] = 3, + [262705] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LT, + STATE(6683), 1, + sym_template_argument_list, + ACTIONS(5014), 2, anon_sym_LBRACK, - ACTIONS(4018), 15, + anon_sym_COLON, + ACTIONS(5019), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [261895] = 11, + [262735] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7804), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(10297), 1, + ACTIONS(10419), 1, sym_identifier, - ACTIONS(10299), 1, + ACTIONS(10421), 1, sym_primitive_type, - STATE(2706), 1, + STATE(2861), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7029), 1, + STATE(7040), 1, sym__scope_resolution, - STATE(3183), 2, + STATE(3358), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3336), 4, + ACTIONS(9232), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [261935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5194), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - 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, - [261957] = 6, + [262775] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(7769), 1, + anon_sym_DASH_GT, + ACTIONS(7800), 1, anon_sym_requires, - ACTIONS(10203), 2, + ACTIONS(9453), 1, + anon_sym_LBRACK, + STATE(6706), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6678), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 9, - anon_sym_COMMA, + ACTIONS(9451), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [261987] = 2, + [262811] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 16, + ACTIONS(10306), 1, + anon_sym_requires, + ACTIONS(10303), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6649), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, 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, - [262009] = 9, + [262841] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7652), 1, + ACTIONS(7769), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(9014), 1, + ACTIONS(9391), 1, anon_sym_requires, - STATE(6670), 1, + STATE(6632), 1, sym_trailing_return_type, - ACTIONS(8934), 2, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6405), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [262045] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7258), 1, - anon_sym_LT, - STATE(6676), 1, - sym_template_argument_list, - ACTIONS(4977), 2, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(4970), 11, - anon_sym_COMMA, + ACTIONS(9107), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [262075] = 6, + [262877] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7365), 1, + ACTIONS(10426), 1, anon_sym_requires, - ACTIONS(7363), 2, + ACTIONS(10423), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6653), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 9, + ACTIONS(10218), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578431,141 +582055,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [262105] = 2, + [262907] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2142), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, + sym_identifier, + ACTIONS(8581), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - 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, - [262127] = 9, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(7049), 1, + sym__type_declarator, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [262947] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(7889), 1, + anon_sym_COLON_COLON, + ACTIONS(10429), 1, + sym_identifier, + ACTIONS(10431), 1, + sym_primitive_type, + STATE(3701), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7042), 1, + sym__scope_resolution, + STATE(3647), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3936), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [262987] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7652), 1, + ACTIONS(7769), 1, anon_sym_DASH_GT, - ACTIONS(7654), 1, - anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - STATE(6669), 1, + ACTIONS(10433), 1, + anon_sym_requires, + STATE(6647), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(10204), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 6, + ACTIONS(10194), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [262163] = 6, + [263023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10304), 1, - anon_sym_requires, - ACTIONS(10301), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6667), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10061), 9, + ACTIONS(5173), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, 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, - [262193] = 11, + anon_sym_requires, + [263045] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3936), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(10307), 1, + ACTIONS(10436), 1, sym_identifier, - ACTIONS(10309), 1, + ACTIONS(10438), 1, sym_primitive_type, - STATE(3663), 1, + STATE(2504), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7036), 1, + STATE(7059), 1, sym__scope_resolution, - STATE(3602), 2, + STATE(3005), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3938), 4, + ACTIONS(9311), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [262233] = 2, + [263085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 16, + ACTIONS(7445), 1, + anon_sym_requires, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6638), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, 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, - [262255] = 6, + [263115] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7365), 1, + ACTIONS(7445), 1, anon_sym_requires, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6678), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 9, + ACTIONS(9008), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578575,124 +582237,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [262285] = 11, + [263145] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(9252), 1, + anon_sym_COLON_COLON, + ACTIONS(10440), 1, + sym_identifier, + ACTIONS(10442), 1, + sym_primitive_type, + STATE(2311), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7033), 1, + sym__scope_resolution, + STATE(2493), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9254), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [263185] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(7116), 1, + STATE(7154), 1, sym__type_declarator, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [262325] = 11, + [263225] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7736), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(10311), 1, + ACTIONS(10444), 1, sym_identifier, - ACTIONS(10313), 1, + ACTIONS(10446), 1, sym_primitive_type, - STATE(2200), 1, + STATE(5241), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7043), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(2179), 2, + STATE(5638), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2074), 4, + ACTIONS(7929), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [262365] = 11, + [263265] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9044), 1, + ACTIONS(5077), 1, anon_sym_COLON_COLON, - ACTIONS(10315), 1, + ACTIONS(10448), 1, sym_identifier, - ACTIONS(10317), 1, + ACTIONS(10450), 1, sym_primitive_type, - STATE(3857), 1, + STATE(3614), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7041), 1, + STATE(7073), 1, sym__scope_resolution, - STATE(4439), 2, + STATE(3647), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9046), 4, + ACTIONS(53), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [262405] = 9, + [263305] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7652), 1, - anon_sym_DASH_GT, - ACTIONS(7654), 1, - anon_sym_requires, - ACTIONS(10053), 1, - anon_sym_LBRACK, - STATE(6639), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [262441] = 2, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + ACTIONS(10448), 1, + sym_identifier, + ACTIONS(10450), 1, + sym_primitive_type, + STATE(3614), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7076), 1, + sym__scope_resolution, + STATE(3647), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(53), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [263345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5220), 16, + ACTIONS(5177), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578709,124 +582402,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [262463] = 11, + [263367] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + STATE(4175), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7169), 1, + sym__abstract_declarator, + ACTIONS(8031), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [263407] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7764), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(10307), 1, + ACTIONS(10452), 1, sym_identifier, - ACTIONS(10309), 1, + ACTIONS(10454), 1, sym_primitive_type, - STATE(3663), 1, + STATE(2729), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7018), 1, + STATE(7064), 1, sym__scope_resolution, - STATE(3602), 2, + STATE(3242), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3938), 4, + ACTIONS(3338), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [262503] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7652), 1, - anon_sym_DASH_GT, - ACTIONS(9353), 1, - anon_sym_LBRACK, - ACTIONS(9487), 1, - anon_sym_requires, - STATE(6658), 1, - sym_trailing_return_type, - ACTIONS(9367), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6425), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [262539] = 11, + [263447] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7742), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(10319), 1, + ACTIONS(10456), 1, sym_identifier, - ACTIONS(10321), 1, + ACTIONS(10458), 1, sym_primitive_type, - STATE(5879), 1, + STATE(4924), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7025), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(2179), 2, + STATE(5493), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(7744), 4, + ACTIONS(7869), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [262579] = 11, + [263487] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7824), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(10323), 1, + ACTIONS(10460), 1, sym_identifier, - ACTIONS(10325), 1, + ACTIONS(10462), 1, sym_primitive_type, - STATE(5075), 1, + STATE(2736), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7022), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(5594), 2, + STATE(3250), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(7826), 4, + ACTIONS(9207), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [262619] = 2, + [263527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5149), 16, + ACTIONS(2134), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578843,10 +582538,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [262641] = 2, + [263549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 16, + ACTIONS(9114), 1, + anon_sym_requires, + ACTIONS(9111), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [263579] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2184), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578863,167 +582582,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [262663] = 11, + [263601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, + ACTIONS(5197), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(7120), 1, - sym__type_declarator, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [262703] = 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + 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, + [263623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(7258), 1, - anon_sym_LT, - STATE(6676), 1, - sym_template_argument_list, - ACTIONS(7849), 2, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(5026), 11, + ACTIONS(5248), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - 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, - [262733] = 11, + anon_sym_requires, + [263645] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9102), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(10327), 1, + ACTIONS(10464), 1, sym_identifier, - ACTIONS(10329), 1, + ACTIONS(10466), 1, sym_primitive_type, - STATE(2356), 1, + STATE(2387), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7028), 1, + STATE(7033), 1, sym__scope_resolution, - STATE(2444), 2, + STATE(2493), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9104), 4, + ACTIONS(9274), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [262773] = 6, + [263685] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7365), 1, - anon_sym_requires, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6667), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10061), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5069), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8207), 1, anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(9122), 1, + anon_sym_STAR, + ACTIONS(9124), 1, + anon_sym_AMP_AMP, + ACTIONS(9126), 1, + anon_sym_AMP, + STATE(4295), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7149), 1, + sym__abstract_declarator, + ACTIONS(8031), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_GT2, - anon_sym_try, - [262803] = 11, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [263725] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9102), 1, + ACTIONS(3934), 1, anon_sym_COLON_COLON, - ACTIONS(10331), 1, + ACTIONS(10429), 1, sym_identifier, - ACTIONS(10333), 1, + ACTIONS(10431), 1, sym_primitive_type, - STATE(2360), 1, + STATE(3701), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7028), 1, + STATE(7038), 1, sym__scope_resolution, - STATE(2444), 2, + STATE(3647), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9193), 4, + ACTIONS(3936), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [262843] = 4, + [263765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10335), 2, + ACTIONS(5185), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(6469), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(10171), 12, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [263787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5203), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [262869] = 2, + [263809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 16, + ACTIONS(5169), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579040,108 +582769,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [262891] = 11, + [263831] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(10338), 1, + ACTIONS(7445), 1, + anon_sym_requires, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6653), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10218), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [263861] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10468), 1, sym_identifier, - ACTIONS(10340), 1, - sym_primitive_type, - STATE(4912), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7045), 1, - sym__scope_resolution, - STATE(5450), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(7780), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [262931] = 11, + ACTIONS(5208), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(6516), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10471), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10474), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [263891] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9066), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(10342), 1, + ACTIONS(10456), 1, sym_identifier, - ACTIONS(10344), 1, + ACTIONS(10458), 1, sym_primitive_type, - STATE(2678), 1, + STATE(4924), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7002), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(3194), 2, + STATE(5493), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9068), 4, + ACTIONS(7869), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [262971] = 11, + [263931] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(8468), 1, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(8470), 1, + ACTIONS(8581), 1, anon_sym_LPAREN2, - ACTIONS(8476), 1, + ACTIONS(8587), 1, sym_primitive_type, - ACTIONS(8492), 1, + ACTIONS(8627), 1, anon_sym_STAR, - STATE(2396), 1, + STATE(2461), 1, sym_pointer_type_declarator, - STATE(6999), 1, + STATE(7187), 1, sym__type_declarator, - STATE(8865), 1, + STATE(8896), 1, sym_ms_based_modifier, - ACTIONS(8474), 4, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2394), 4, + STATE(2470), 4, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [263011] = 6, + [263971] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7365), 1, - anon_sym_requires, - ACTIONS(7363), 2, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LT, + STATE(6683), 1, + sym_template_argument_list, + ACTIONS(7923), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(5056), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [264001] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6474), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 9, + ACTIONS(10200), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579149,183 +582917,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [263041] = 9, + anon_sym_requires, + [264027] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7652), 1, + ACTIONS(7769), 1, anon_sym_DASH_GT, - ACTIONS(7654), 1, - anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - STATE(6702), 1, + ACTIONS(9117), 1, + anon_sym_requires, + STATE(6631), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6412), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [263077] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6184), 1, - anon_sym_LBRACK, - ACTIONS(10346), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6186), 14, - anon_sym_COMMA, + ACTIONS(9008), 6, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LT, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [263103] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - STATE(4159), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7128), 1, - sym__abstract_declarator, - ACTIONS(7914), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [263143] = 11, + [264063] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - ACTIONS(10338), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(10340), 1, + ACTIONS(8581), 1, + anon_sym_LPAREN2, + ACTIONS(8587), 1, sym_primitive_type, - STATE(4912), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7031), 1, - sym__scope_resolution, - STATE(5450), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(7780), 4, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(7144), 1, + sym__type_declarator, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8585), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [263183] = 2, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [264103] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 16, - anon_sym_COMMA, + ACTIONS(7769), 1, + anon_sym_DASH_GT, + ACTIONS(7800), 1, + anon_sym_requires, + ACTIONS(9109), 1, + anon_sym_LBRACK, + STATE(6694), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 6, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, + 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, - [263205] = 6, + [264139] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10348), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(8579), 1, sym_identifier, - ACTIONS(5198), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(6502), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(10350), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10352), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [263235] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5145), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8581), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - 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, - [263257] = 2, + ACTIONS(8587), 1, + sym_primitive_type, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(2461), 1, + sym_pointer_type_declarator, + STATE(7151), 1, + sym__type_declarator, + STATE(8896), 1, + sym_ms_based_modifier, + ACTIONS(8585), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2470), 4, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [264179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 16, + ACTIONS(5226), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579342,10 +583053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [263279] = 2, + [264201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 16, + ACTIONS(5252), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579362,31 +583073,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [263301] = 3, + [264223] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10354), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6208), 14, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(9169), 1, + anon_sym_COLON_COLON, + ACTIONS(10477), 1, + sym_identifier, + ACTIONS(10479), 1, + sym_primitive_type, + STATE(4143), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7057), 1, + sym__scope_resolution, + STATE(4596), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9171), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [264263] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5181), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, 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, - [263325] = 2, + [264285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 16, + ACTIONS(5244), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579403,116 +583142,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [263347] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6469), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(10093), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [263373] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7652), 1, - anon_sym_DASH_GT, - ACTIONS(10053), 1, - anon_sym_LBRACK, - ACTIONS(10356), 1, - anon_sym_requires, - STATE(6656), 1, - sym_trailing_return_type, - ACTIONS(10055), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [263409] = 6, + [264307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10359), 1, + ACTIONS(10481), 1, sym_identifier, - ACTIONS(5214), 2, + ACTIONS(5220), 2, anon_sym_RPAREN, anon_sym_COLON, - STATE(6480), 3, + STATE(6516), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [263439] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(9777), 1, - anon_sym_LPAREN2, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(9785), 1, - anon_sym_EQ, - STATE(4120), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(8092), 1, - sym_gnu_asm_expression, - ACTIONS(9787), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10361), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8402), 2, - sym_argument_list, - sym_initializer_list, - [263483] = 3, + [264337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 1, + ACTIONS(4014), 1, anon_sym_LBRACK, - ACTIONS(4022), 15, + ACTIONS(4016), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -579528,65 +583187,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [263507] = 2, + [264361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, + ACTIONS(7445), 1, + anon_sym_requires, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [263529] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(9008), 1, - anon_sym_STAR, - ACTIONS(9010), 1, - anon_sym_AMP_AMP, - ACTIONS(9012), 1, - anon_sym_AMP, - STATE(4309), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7137), 1, - sym__abstract_declarator, - ACTIONS(7914), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [263569] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10354), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10363), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6196), 12, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579594,286 +583209,165 @@ 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, - anon_sym_requires, - [263595] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(7138), 1, - sym__type_declarator, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [263635] = 11, + [264391] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9225), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(10365), 1, - sym_identifier, - ACTIONS(10367), 1, + ACTIONS(10454), 1, sym_primitive_type, - STATE(2739), 1, + ACTIONS(10483), 1, + sym_identifier, + STATE(2729), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7032), 1, + STATE(7067), 1, sym__scope_resolution, - STATE(3246), 2, + STATE(3242), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9227), 4, + ACTIONS(3338), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [263675] = 6, + [264431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7365), 1, - anon_sym_requires, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 9, + ACTIONS(5240), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, 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, - [263705] = 11, + anon_sym_requires, + [264453] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(10369), 1, + ACTIONS(10485), 1, sym_identifier, - ACTIONS(10371), 1, + ACTIONS(10487), 1, sym_primitive_type, - STATE(3681), 1, + STATE(2282), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7030), 1, + STATE(7068), 1, sym__scope_resolution, - STATE(3602), 2, + STATE(2256), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(53), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [263745] = 11, + [264493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, + ACTIONS(9024), 1, + anon_sym_requires, + ACTIONS(9021), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(7150), 1, - sym__type_declarator, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [263785] = 11, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [264523] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9030), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(10299), 1, + ACTIONS(10487), 1, sym_primitive_type, - ACTIONS(10373), 1, + ACTIONS(10489), 1, sym_identifier, - STATE(2706), 1, + STATE(2282), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7027), 1, + STATE(7066), 1, sym__scope_resolution, - STATE(3183), 2, + STATE(2256), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3336), 4, + ACTIONS(2080), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [263825] = 2, + [264563] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 16, + ACTIONS(10402), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(10491), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6167), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, 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, - [263847] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(9136), 1, - anon_sym_COLON_COLON, - ACTIONS(10375), 1, - sym_identifier, - ACTIONS(10377), 1, - sym_primitive_type, - STATE(2911), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7023), 1, - sym__scope_resolution, - STATE(3627), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(9138), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [263887] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10379), 1, - sym_identifier, - ACTIONS(5158), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(6502), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(10382), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10385), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [263917] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(9171), 1, - anon_sym_COLON_COLON, - ACTIONS(10388), 1, - sym_identifier, - ACTIONS(10390), 1, - sym_primitive_type, - STATE(4111), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7006), 1, - sym__scope_resolution, - STATE(4546), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(9173), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [263957] = 2, + [264589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 16, + ACTIONS(5230), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579890,39 +583384,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [263979] = 11, + [264611] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9203), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(10392), 1, + ACTIONS(10493), 1, sym_identifier, - ACTIONS(10394), 1, + ACTIONS(10495), 1, sym_primitive_type, - STATE(2504), 1, + STATE(5882), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7024), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(2955), 2, + STATE(2256), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9205), 4, + ACTIONS(7851), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [264019] = 2, + [264651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 16, + ACTIONS(5173), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579939,538 +583433,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [264041] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(8468), 1, - sym_identifier, - ACTIONS(8470), 1, - anon_sym_LPAREN2, - ACTIONS(8476), 1, - sym_primitive_type, - ACTIONS(8492), 1, - anon_sym_STAR, - STATE(2396), 1, - sym_pointer_type_declarator, - STATE(7123), 1, - sym__type_declarator, - STATE(8865), 1, - sym_ms_based_modifier, - ACTIONS(8474), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2394), 4, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [264081] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8917), 1, - anon_sym_requires, - ACTIONS(8914), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [264111] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9025), 1, - anon_sym_requires, - ACTIONS(9022), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6587), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [264141] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(9088), 1, - anon_sym_COLON_COLON, - ACTIONS(10313), 1, - sym_primitive_type, - ACTIONS(10396), 1, - sym_identifier, - STATE(2200), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7040), 1, - sym__scope_resolution, - STATE(2179), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2074), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [264181] = 11, + [264673] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5045), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(10369), 1, + ACTIONS(10497), 1, sym_identifier, - ACTIONS(10371), 1, + ACTIONS(10499), 1, sym_primitive_type, - STATE(3681), 1, + STATE(2925), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7046), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(3602), 2, + STATE(3685), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(53), 4, + ACTIONS(9149), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [264221] = 6, + [264713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9358), 1, - anon_sym_requires, - ACTIONS(9355), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6645), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 9, + ACTIONS(5173), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, 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, - [264251] = 9, + anon_sym_requires, + [264735] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7652), 1, - anon_sym_DASH_GT, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9282), 1, - anon_sym_requires, - STATE(6663), 1, - sym_trailing_return_type, - ACTIONS(9128), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 6, - anon_sym_RPAREN, + ACTIONS(9650), 1, anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4017), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10501), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_try, - [264287] = 6, + anon_sym_requires, + [264764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4139), 1, + STATE(4017), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10398), 11, + ACTIONS(10505), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [264316] = 8, + [264793] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7660), 1, - anon_sym_DASH_GT, - ACTIONS(10402), 1, - anon_sym_requires, - STATE(6665), 1, - sym_trailing_return_type, - ACTIONS(10203), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6678), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(3614), 1, anon_sym_LBRACE, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9656), 1, anon_sym_LBRACK, - [264349] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10405), 1, - anon_sym_RPAREN, - ACTIONS(10407), 1, + ACTIONS(9660), 1, anon_sym_COLON, - STATE(7974), 1, - sym_gnu_asm_output_operand_list, - STATE(6488), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(10350), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10352), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [264380] = 7, + ACTIONS(10509), 1, + anon_sym_EQ, + STATE(4069), 1, + sym_parameter_list, + STATE(6984), 1, + sym__function_declarator_seq, + STATE(7753), 1, + sym_initializer_list, + STATE(7754), 1, + sym_bitfield_clause, + STATE(6864), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10507), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [264836] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10409), 1, + ACTIONS(10511), 1, anon_sym_RPAREN, - STATE(7753), 1, + ACTIONS(10513), 1, + anon_sym_COLON, + STATE(7789), 1, sym_gnu_asm_output_operand_list, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [264411] = 3, + [264867] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6184), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, anon_sym_LBRACK, - ACTIONS(6186), 14, + STATE(4133), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10515), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LT, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, - [264434] = 6, + anon_sym_requires, + [264896] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4101), 1, + STATE(4017), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10398), 11, + ACTIONS(10517), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [264463] = 7, + [264925] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10411), 1, - anon_sym_LBRACK, - STATE(6762), 1, - sym_parameter_list, - STATE(6633), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5847), 9, - anon_sym_COMMA, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10519), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [264494] = 6, + STATE(7810), 1, + sym_gnu_asm_output_operand_list, + STATE(6479), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(10415), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10417), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [264956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4101), 1, + STATE(4017), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10413), 11, + ACTIONS(10521), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [264523] = 6, + [264985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4139), 1, + STATE(4017), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10415), 11, + ACTIONS(10523), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [264552] = 13, + [265014] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10221), 1, + ACTIONS(10338), 1, anon_sym_LBRACE, - STATE(3853), 1, - sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6625), 1, + STATE(4783), 1, + sym_compound_statement, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7461), 1, + STATE(7489), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [264595] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4101), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10417), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [264624] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4139), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10413), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [264653] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4139), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10417), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [264682] = 8, + [265057] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7660), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(9285), 1, + ACTIONS(9529), 1, anon_sym_requires, - STATE(6689), 1, + STATE(6673), 1, sym_trailing_return_type, - ACTIONS(9022), 2, + ACTIONS(9455), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 6, + ACTIONS(9451), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [264715] = 6, + [265090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - STATE(4139), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10419), 11, + ACTIONS(7457), 1, + anon_sym_LT, + STATE(6683), 1, + sym_template_argument_list, + ACTIONS(6203), 12, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -580478,44 +583773,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [264744] = 6, + anon_sym_GT2, + anon_sym_try, + [265117] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4139), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10421), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10513), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [264773] = 6, + ACTIONS(10525), 1, + anon_sym_RPAREN, + STATE(7921), 1, + sym_gnu_asm_output_operand_list, + STATE(6479), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(10415), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10417), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [265148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4139), 1, + STATE(4160), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10423), 11, + ACTIONS(10501), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -580527,137 +583822,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [264802] = 6, + [265177] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10527), 1, + anon_sym_RPAREN, + STATE(7663), 1, + sym_gnu_asm_output_operand_list, + STATE(6479), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(10415), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10417), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [265208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6477), 1, anon_sym_LBRACK, - STATE(4101), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10419), 11, + ACTIONS(6479), 14, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LT, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [264831] = 6, + [265231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4101), 1, + STATE(4160), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10421), 11, + ACTIONS(10523), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [264860] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7660), 1, - anon_sym_DASH_GT, - ACTIONS(9017), 1, anon_sym_requires, - STATE(6589), 1, - sym_trailing_return_type, - ACTIONS(8914), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - [264893] = 6, + [265260] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10529), 1, anon_sym_LBRACK, - STATE(4101), 1, + STATE(6787), 1, sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10423), 11, + STATE(6684), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5889), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [264922] = 5, + [265291] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5970), 1, - anon_sym_LBRACK, - ACTIONS(10425), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - STATE(6535), 2, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10529), 1, + anon_sym_LBRACK, + STATE(6787), 1, + sym_parameter_list, + STATE(6684), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(5972), 11, + ACTIONS(5895), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [264949] = 7, + [265322] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10411), 1, + ACTIONS(10529), 1, anon_sym_LBRACK, - STATE(6762), 1, + STATE(6787), 1, sym_parameter_list, - STATE(6633), 2, + STATE(6684), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(5803), 9, + ACTIONS(5899), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -580667,426 +583961,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [264980] = 7, + [265353] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10428), 1, + ACTIONS(7751), 1, + anon_sym_DASH_GT, + ACTIONS(7753), 1, + anon_sym_requires, + STATE(6636), 1, + sym_trailing_return_type, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 6, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(7913), 1, - sym_gnu_asm_output_operand_list, - STATE(6488), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(10350), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10352), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [265011] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10273), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4159), 1, - sym_parameter_list, - STATE(6470), 1, - sym_compound_statement, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7443), 1, - sym_abstract_function_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [265054] = 7, + anon_sym_LBRACK, + [265386] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10430), 1, + ACTIONS(10531), 1, anon_sym_RPAREN, - STATE(7733), 1, + STATE(7925), 1, sym_gnu_asm_output_operand_list, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [265085] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10434), 1, - anon_sym___attribute__, - ACTIONS(10439), 1, - anon_sym_alignas, - ACTIONS(10437), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - STATE(6540), 3, - sym_attribute_specifier, - sym_alignas_specifier, - aux_sym__class_declaration_repeat1, - ACTIONS(10432), 7, - anon_sym___declspec, - anon_sym_COLON, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - [265114] = 13, + [265417] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10219), 1, + ACTIONS(10350), 1, anon_sym_LBRACE, - STATE(3366), 1, - sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6625), 1, + STATE(4908), 1, + sym_compound_statement, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(7399), 1, + STATE(7582), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [265157] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6433), 1, - anon_sym_LBRACK, - ACTIONS(6435), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [265180] = 7, + [265460] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10411), 1, - anon_sym_LBRACK, - STATE(6762), 1, - sym_parameter_list, - STATE(6633), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5813), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(51), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [265211] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10257), 1, - anon_sym_LBRACE, - STATE(4159), 1, - sym_parameter_list, - STATE(4902), 1, + STATE(1986), 1, sym_compound_statement, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7315), 1, - sym_abstract_function_declarator, - STATE(7378), 1, - sym__abstract_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [265254] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10227), 1, - anon_sym_LBRACE, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(4161), 1, - sym_compound_statement, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(7533), 1, + STATE(7631), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [265297] = 13, + [265503] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10233), 1, + ACTIONS(10356), 1, anon_sym_LBRACE, - STATE(3760), 1, + STATE(2813), 1, sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7566), 1, + STATE(7458), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [265340] = 7, + [265546] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10442), 1, + ACTIONS(10533), 1, anon_sym_RPAREN, - STATE(7715), 1, + STATE(7990), 1, sym_gnu_asm_output_operand_list, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [265371] = 7, + [265577] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10529), 1, + anon_sym_LBRACK, + STATE(6787), 1, + sym_parameter_list, + STATE(6684), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5827), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [265608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6181), 1, + anon_sym_LBRACK, + ACTIONS(6183), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [265631] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10444), 1, + ACTIONS(10535), 1, anon_sym_RPAREN, - STATE(7835), 1, + STATE(7797), 1, sym_gnu_asm_output_operand_list, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [265402] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7660), 1, - anon_sym_DASH_GT, - ACTIONS(7662), 1, - anon_sym_requires, - STATE(6685), 1, - sym_trailing_return_type, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6678), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - [265435] = 7, + [265662] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10446), 1, + ACTIONS(10537), 1, anon_sym_RPAREN, - STATE(7682), 1, + STATE(7871), 1, sym_gnu_asm_output_operand_list, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [265466] = 7, + [265693] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10448), 1, + ACTIONS(10539), 1, anon_sym_RPAREN, - STATE(7809), 1, + STATE(7728), 1, sym_gnu_asm_output_operand_list, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [265497] = 5, + [265724] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(10326), 1, + anon_sym_LBRACE, + STATE(1986), 1, + sym_compound_statement, + STATE(4175), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7453), 1, + sym_abstract_function_declarator, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [265767] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4160), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10521), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [265796] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6095), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, anon_sym_LBRACK, - ACTIONS(7258), 1, - anon_sym_LT, - STATE(6676), 1, - sym_template_argument_list, - ACTIONS(6097), 12, + STATE(4017), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10515), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, - [265524] = 6, + anon_sym_requires, + [265825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4057), 1, + STATE(4017), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10415), 11, + ACTIONS(10541), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -581098,842 +584339,1331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [265553] = 7, + [265854] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7751), 1, + anon_sym_DASH_GT, + ACTIONS(9128), 1, + anon_sym_requires, + STATE(6726), 1, + sym_trailing_return_type, + ACTIONS(9021), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [265887] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10450), 1, + ACTIONS(10543), 1, anon_sym_RPAREN, - STATE(7693), 1, + STATE(7933), 1, sym_gnu_asm_output_operand_list, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [265584] = 6, + [265918] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4057), 1, + STATE(4160), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10398), 11, + ACTIONS(10541), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_requires, + [265947] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5953), 1, + anon_sym_LBRACK, + ACTIONS(10545), 1, + anon_sym_LBRACK_LBRACK, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5955), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, + [265974] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7751), 1, + anon_sym_DASH_GT, + ACTIONS(7753), 1, anon_sym_requires, - [265613] = 6, + STATE(6651), 1, + sym_trailing_return_type, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6649), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [266007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4057), 1, + STATE(4133), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10413), 11, + ACTIONS(10501), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [265642] = 6, + [266036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4057), 1, + STATE(4160), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10417), 11, + ACTIONS(10515), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [265671] = 6, + [266065] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4057), 1, + STATE(4133), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10419), 11, + ACTIONS(10523), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [265700] = 6, + [266094] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4057), 1, + STATE(4133), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10421), 11, + ACTIONS(10521), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [265729] = 8, + [266123] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10550), 1, + anon_sym___attribute__, + ACTIONS(10555), 1, + anon_sym_alignas, + ACTIONS(10553), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + STATE(6588), 3, + sym_attribute_specifier, + sym_alignas_specifier, + aux_sym__class_declaration_repeat1, + ACTIONS(10548), 7, + anon_sym___declspec, + anon_sym_COLON, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + [266152] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10558), 1, + anon_sym_RPAREN, + STATE(7647), 1, + sym_gnu_asm_output_operand_list, + STATE(6479), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(10415), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10417), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [266183] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7660), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(9426), 1, + ACTIONS(9382), 1, anon_sym_requires, - STATE(6662), 1, + STATE(6664), 1, sym_trailing_return_type, - ACTIONS(9355), 2, + ACTIONS(9111), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 6, + ACTIONS(9107), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [265762] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4057), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10423), 11, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [265791] = 7, + [266216] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10452), 1, + ACTIONS(10560), 1, anon_sym_RPAREN, - STATE(7953), 1, + STATE(7800), 1, sym_gnu_asm_output_operand_list, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [265822] = 13, + [266247] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10229), 1, + ACTIONS(10366), 1, anon_sym_LBRACE, - STATE(4159), 1, - sym_parameter_list, - STATE(4918), 1, + STATE(4174), 1, sym_compound_statement, - STATE(6625), 1, + STATE(4175), 1, + sym_parameter_list, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(7381), 1, + STATE(7575), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [265865] = 7, + [266290] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10454), 1, + ACTIONS(10562), 1, anon_sym_RPAREN, - STATE(7609), 1, + STATE(7693), 1, sym_gnu_asm_output_operand_list, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [265896] = 7, + [266321] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4160), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10517), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(10456), 1, - anon_sym_RPAREN, - STATE(7711), 1, - sym_gnu_asm_output_operand_list, - STATE(6488), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(10350), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10352), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [265927] = 7, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [266350] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4160), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10505), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(10458), 1, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [266379] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7751), 1, + anon_sym_DASH_GT, + ACTIONS(7753), 1, + anon_sym_requires, + STATE(6645), 1, + sym_trailing_return_type, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6638), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 6, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(7824), 1, - sym_gnu_asm_output_operand_list, - STATE(6488), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(10350), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10352), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [265958] = 13, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [266412] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10231), 1, + ACTIONS(10334), 1, + anon_sym_LBRACE, + STATE(4175), 1, + sym_parameter_list, + STATE(6507), 1, + sym_compound_statement, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7547), 1, + sym__abstract_declarator, + STATE(7606), 1, + sym_abstract_function_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [266455] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(10352), 1, anon_sym_LBRACE, - STATE(2777), 1, + STATE(4031), 1, sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(7434), 1, + STATE(7563), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [266001] = 8, + [266498] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7660), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(7662), 1, + ACTIONS(10564), 1, anon_sym_requires, - STATE(6590), 1, + STATE(6675), 1, sym_trailing_return_type, - ACTIONS(7363), 2, + ACTIONS(10303), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6649), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 6, + ACTIONS(10194), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [266034] = 8, + [266531] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7660), 1, + ACTIONS(7751), 1, anon_sym_DASH_GT, - ACTIONS(7662), 1, + ACTIONS(7753), 1, anon_sym_requires, - STATE(6648), 1, + STATE(6696), 1, sym_trailing_return_type, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 6, + ACTIONS(9008), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [266067] = 13, + [266564] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10567), 1, + anon_sym_RPAREN, + STATE(7734), 1, + sym_gnu_asm_output_operand_list, + STATE(6479), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(10415), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10417), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [266595] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4133), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10541), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [266624] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_AMP_AMP, - ACTIONS(5043), 1, + ACTIONS(5075), 1, anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(8207), 1, anon_sym_LBRACK, - ACTIONS(10255), 1, + ACTIONS(10318), 1, anon_sym_LBRACE, - STATE(4020), 1, + STATE(3399), 1, sym_compound_statement, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(7378), 1, + STATE(7547), 1, sym__abstract_declarator, - STATE(7555), 1, + STATE(7564), 1, + sym_abstract_function_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [266667] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(10354), 1, + anon_sym_LBRACE, + STATE(4175), 1, + sym_parameter_list, + STATE(6286), 1, + sym_compound_statement, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7488), 1, sym_abstract_function_declarator, - STATE(6616), 4, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [266110] = 7, + [266710] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10460), 1, + ACTIONS(10569), 1, + anon_sym_RPAREN, + STATE(7891), 1, + sym_gnu_asm_output_operand_list, + STATE(6479), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(10415), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10417), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [266741] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(10336), 1, + anon_sym_LBRACE, + STATE(3880), 1, + sym_compound_statement, + STATE(4175), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7370), 1, + sym_abstract_function_declarator, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [266784] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4133), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10517), 11, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [266813] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_AMP_AMP, + ACTIONS(5075), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(10320), 1, + anon_sym_LBRACE, + STATE(3790), 1, + sym_compound_statement, + STATE(4175), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7420), 1, + sym_abstract_function_declarator, + STATE(7547), 1, + sym__abstract_declarator, + STATE(6663), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [266856] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10571), 1, anon_sym_RPAREN, - STATE(7975), 1, + STATE(7835), 1, sym_gnu_asm_output_operand_list, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [266141] = 7, + [266887] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10462), 1, + ACTIONS(10573), 1, anon_sym_RPAREN, - STATE(7855), 1, + STATE(7998), 1, sym_gnu_asm_output_operand_list, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [266172] = 7, + [266918] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10411), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(6762), 1, + STATE(4133), 1, sym_parameter_list, - STATE(6633), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5880), 9, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10505), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, - [266203] = 7, + anon_sym_requires, + [266947] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10464), 1, + ACTIONS(10575), 1, anon_sym_RPAREN, - STATE(7977), 1, + STATE(7701), 1, sym_gnu_asm_output_operand_list, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [266234] = 7, + [266978] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10466), 1, - anon_sym_RPAREN, - STATE(7698), 1, - sym_gnu_asm_output_operand_list, - STATE(6488), 2, + ACTIONS(10577), 1, + sym_identifier, + STATE(6605), 1, sym_string_literal, + STATE(6856), 1, sym_raw_string_literal, - ACTIONS(10350), 5, + STATE(7991), 1, + sym_concatenated_string, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(151), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [266265] = 13, + [267008] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(7758), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9568), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(9572), 1, - anon_sym_COLON, - ACTIONS(10470), 1, - anon_sym_EQ, - STATE(3951), 1, + STATE(4168), 1, sym_parameter_list, - STATE(6887), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(7933), 1, - sym_bitfield_clause, - STATE(7934), 1, - sym_initializer_list, - STATE(6859), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10468), 3, + ACTIONS(10579), 7, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - [266308] = 13, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [267040] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(10271), 1, - anon_sym_LBRACE, - STATE(1962), 1, - sym_compound_statement, - STATE(4159), 1, + STATE(4168), 1, sym_parameter_list, - STATE(6625), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(7296), 1, - sym_abstract_function_declarator, - STATE(7378), 1, - sym__abstract_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [266351] = 13, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10581), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [267072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(10362), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10223), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4159), 1, - sym_parameter_list, - STATE(6315), 1, - sym_compound_statement, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7456), 1, - sym_abstract_function_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [266394] = 7, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [267092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10472), 1, + ACTIONS(10358), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(7620), 1, - sym_gnu_asm_output_operand_list, - STATE(6488), 2, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [267112] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(7808), 1, + anon_sym_requires, + STATE(6865), 1, + sym_trailing_return_type, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [267144] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(6592), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9439), 1, + sym_identifier, + STATE(2960), 1, + sym_template_type, + STATE(3255), 1, + sym_enumerator_list, + STATE(7040), 1, + sym__scope_resolution, + ACTIONS(10583), 2, + anon_sym_class, + anon_sym_struct, + STATE(2954), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [267184] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10577), 1, + sym_identifier, + STATE(8773), 1, + sym_concatenated_string, + STATE(6806), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(151), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [266425] = 8, + [267212] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7660), 1, - anon_sym_DASH_GT, - ACTIONS(7662), 1, - anon_sym_requires, - STATE(6635), 1, - sym_trailing_return_type, - ACTIONS(7363), 2, + ACTIONS(10577), 1, + sym_identifier, + STATE(6601), 1, + sym_string_literal, + STATE(6856), 1, + sym_raw_string_literal, + STATE(7703), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [267242] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10577), 1, + sym_identifier, + STATE(6556), 1, + sym_string_literal, + STATE(6856), 1, + sym_raw_string_literal, + STATE(7805), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [267272] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10577), 1, + sym_identifier, + STATE(8732), 1, + sym_concatenated_string, + STATE(6778), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [267300] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(3863), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10517), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 6, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [267328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9451), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [266458] = 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [267348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4101), 1, + STATE(3863), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10415), 11, + ACTIONS(10505), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [266487] = 13, + [267376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(5037), 1, + ACTIONS(10396), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5039), 1, - anon_sym_STAR, - ACTIONS(5041), 1, - anon_sym_AMP_AMP, - ACTIONS(5043), 1, - anon_sym_AMP, - ACTIONS(8123), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(1962), 1, - sym_compound_statement, - STATE(4159), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7378), 1, - sym__abstract_declarator, - STATE(7604), 1, - sym_abstract_function_declarator, - STATE(6616), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [266530] = 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [267396] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9117), 1, + anon_sym_requires, + ACTIONS(9037), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + anon_sym_LBRACE, + anon_sym_try, + [267426] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - STATE(4120), 1, + STATE(4069), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6984), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6864), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10474), 7, + ACTIONS(10587), 7, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_COLON, anon_sym_try, - [266562] = 8, + [267458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(9166), 1, + ACTIONS(10589), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(10591), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6167), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_requires, - STATE(6868), 1, - sym_trailing_return_type, - ACTIONS(8914), 2, + [267482] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9391), 1, + anon_sym_requires, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9107), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [266594] = 6, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [267512] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - STATE(3757), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10398), 10, - anon_sym_COMMA, + ACTIONS(9574), 1, + anon_sym_requires, + ACTIONS(9475), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6384), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 6, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + 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, - [266622] = 11, + [267542] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(7914), 1, - anon_sym_COLON, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(9259), 1, - anon_sym_STAR, - ACTIONS(9261), 1, - anon_sym_AMP_AMP, - ACTIONS(9263), 1, - anon_sym_AMP, - STATE(4372), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7241), 1, - sym__abstract_declarator, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [266660] = 2, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(6397), 1, + anon_sym_LBRACE, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(9449), 1, + sym_identifier, + STATE(2150), 1, + sym_template_type, + STATE(2862), 1, + sym_enumerator_list, + STATE(7068), 1, + sym__scope_resolution, + ACTIONS(10593), 2, + anon_sym_class, + anon_sym_struct, + STATE(5514), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [267582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9351), 14, + ACTIONS(10312), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -581948,71 +585678,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [266680] = 12, + [267602] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5045), 1, - anon_sym_COLON_COLON, - ACTIONS(7619), 1, + ACTIONS(7702), 1, anon_sym_LBRACE, - ACTIONS(9324), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + ACTIONS(9426), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, sym_template_type, - STATE(4327), 1, + STATE(4356), 1, sym_enumerator_list, - STATE(7046), 1, + STATE(7052), 1, sym__scope_resolution, - ACTIONS(10478), 2, + ACTIONS(10595), 2, anon_sym_class, anon_sym_struct, - STATE(4104), 2, + STATE(4714), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [266720] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9285), 1, - anon_sym_requires, - ACTIONS(9022), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6587), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - [266748] = 6, + [267642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, + ACTIONS(7753), 1, anon_sym_requires, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 7, + ACTIONS(9451), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -582020,16 +585728,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON, - [266776] = 6, + [267670] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(10577), 1, sym_identifier, - STATE(8534), 1, - sym_concatenated_string, - STATE(6796), 2, + STATE(6547), 1, sym_string_literal, + STATE(6856), 1, sym_raw_string_literal, + STATE(7867), 1, + sym_concatenated_string, ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, @@ -582042,69 +585751,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [266804] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9568), 1, - anon_sym_LBRACK, - STATE(3951), 1, - sym_parameter_list, - STATE(6887), 1, - sym__function_declarator_seq, - STATE(6859), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10482), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [266836] = 6, + [267700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, - anon_sym_requires, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 7, + ACTIONS(10194), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_COLON, - [266864] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [267720] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - STATE(4098), 1, + STATE(4142), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6866), 2, + STATE(6867), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10484), 7, + ACTIONS(10597), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, @@ -582112,266 +585793,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [266896] = 2, + [267752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6233), 1, + anon_sym_LBRACK, + ACTIONS(10599), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6235), 11, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [266916] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(6565), 1, - sym_string_literal, - STATE(6823), 1, - sym_raw_string_literal, - STATE(7746), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [266946] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(6517), 1, - sym_string_literal, - STATE(6823), 1, - sym_raw_string_literal, - STATE(7976), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [266976] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(8607), 1, - sym_concatenated_string, - STATE(6752), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [267004] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(6566), 1, - sym_string_literal, - STATE(6823), 1, - sym_raw_string_literal, - STATE(7847), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [267034] = 7, + [267776] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, + ACTIONS(7800), 1, anon_sym_requires, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [267064] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6206), 1, - anon_sym_LBRACK, - ACTIONS(10486), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6208), 11, + ACTIONS(9008), 6, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_or, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [267088] = 12, + [267806] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5682), 1, + ACTIONS(7702), 1, anon_sym_LBRACE, - ACTIONS(9102), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(9402), 1, sym_identifier, - STATE(2102), 1, + STATE(3113), 1, sym_template_type, - STATE(2293), 1, + STATE(4378), 1, sym_enumerator_list, - STATE(7028), 1, + STATE(7036), 1, sym__scope_resolution, - ACTIONS(10488), 2, + ACTIONS(10601), 2, anon_sym_class, anon_sym_struct, - STATE(2824), 2, + STATE(5191), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [267128] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(10490), 1, - anon_sym_requires, - STATE(6802), 1, - sym_trailing_return_type, - ACTIONS(10203), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6678), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [267160] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(8941), 1, - sym_concatenated_string, - STATE(6726), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [267188] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(3757), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10413), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [267216] = 6, + [267846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(3757), 1, + STATE(3863), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10417), 10, + ACTIONS(10515), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -582382,16 +585886,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [267244] = 7, + [267874] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(10577), 1, sym_identifier, - STATE(6562), 1, + STATE(6574), 1, sym_string_literal, - STATE(6823), 1, + STATE(6856), 1, sym_raw_string_literal, - STATE(7972), 1, + STATE(7784), 1, sym_concatenated_string, ACTIONS(111), 5, anon_sym_L_DQUOTE, @@ -582405,133 +585909,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267274] = 7, + [267904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(6551), 1, - sym_string_literal, - STATE(6823), 1, - sym_raw_string_literal, - STATE(7822), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [267304] = 5, + ACTIONS(7753), 1, + anon_sym_requires, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6649), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [267932] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10495), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - STATE(6535), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10493), 10, - anon_sym_COMMA, + ACTIONS(10433), 1, + anon_sym_requires, + ACTIONS(10204), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6422), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [267330] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(6564), 1, - sym_string_literal, - STATE(6823), 1, - sym_raw_string_literal, - STATE(7629), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [267360] = 12, + [267962] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(7824), 1, - anon_sym_COLON_COLON, - ACTIONS(8986), 1, + ACTIONS(10220), 1, + anon_sym_LBRACK, + ACTIONS(10603), 1, + anon_sym_requires, + ACTIONS(10272), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6409), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10218), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(9328), 1, - sym_identifier, - STATE(5330), 1, - sym_template_type, - STATE(5489), 1, - sym_enumerator_list, - STATE(7022), 1, - sym__scope_resolution, - ACTIONS(10497), 2, - anon_sym_class, - anon_sym_struct, - STATE(5361), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [267400] = 12, + anon_sym_try, + [267992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(6662), 1, + ACTIONS(6165), 1, + anon_sym_LBRACK, + ACTIONS(10599), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(10606), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6167), 9, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(9136), 1, - anon_sym_COLON_COLON, - ACTIONS(9310), 1, - sym_identifier, - STATE(3013), 1, - sym_template_type, - STATE(3541), 1, - sym_enumerator_list, - STATE(7023), 1, - sym__scope_resolution, - ACTIONS(10499), 2, - anon_sym_class, - anon_sym_struct, - STATE(3011), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [267440] = 2, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [268018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10213), 14, + ACTIONS(10218), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -582546,18 +586016,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [267460] = 6, + [268038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(3757), 1, + STATE(3863), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10415), 10, + ACTIONS(10541), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -582568,38 +586038,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [267488] = 12, + [268066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(7625), 1, + ACTIONS(7753), 1, + anon_sym_requires, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6653), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10218), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9044), 1, - anon_sym_COLON_COLON, - ACTIONS(9334), 1, - sym_identifier, - STATE(4133), 1, - sym_template_type, - STATE(4321), 1, - sym_enumerator_list, - STATE(7041), 1, - sym__scope_resolution, - ACTIONS(10501), 2, - anon_sym_class, - anon_sym_struct, - STATE(4136), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [267528] = 2, + anon_sym_LBRACK, + anon_sym_COLON, + [268094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10239), 14, + ACTIONS(10368), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -582614,156 +586078,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [267548] = 6, + [268114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(3757), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10419), 10, + ACTIONS(10342), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [267576] = 8, + [268134] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(9498), 1, - anon_sym_requires, - STATE(6832), 1, - sym_trailing_return_type, - ACTIONS(9355), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6645), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [267608] = 8, + ACTIONS(10577), 1, + sym_identifier, + STATE(6610), 1, + sym_string_literal, + STATE(6856), 1, + sym_raw_string_literal, + STATE(7801), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [268164] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9568), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - STATE(3951), 1, + STATE(4168), 1, sym_parameter_list, - STATE(6887), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6859), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10503), 7, + ACTIONS(10597), 7, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [267640] = 6, + [268196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(3757), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10421), 10, + ACTIONS(9008), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [267668] = 8, + [268216] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(7753), 1, + anon_sym_requires, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9783), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4098), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6866), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10505), 7, + anon_sym_COLON, + [268244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10388), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [267700] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [268264] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10577), 1, + sym_identifier, + STATE(6591), 1, + sym_string_literal, + STATE(6856), 1, + sym_raw_string_literal, + STATE(7674), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [268294] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - STATE(4098), 1, + STATE(4069), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6984), 1, sym__function_declarator_seq, - STATE(6866), 2, + STATE(6864), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10474), 7, + ACTIONS(10608), 7, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [267732] = 7, + anon_sym_try, + [268326] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(10577), 1, sym_identifier, - STATE(6575), 1, + STATE(6589), 1, sym_string_literal, - STATE(6823), 1, + STATE(6856), 1, sym_raw_string_literal, - STATE(7710), 1, + STATE(7764), 1, sym_concatenated_string, ACTIONS(111), 5, anon_sym_L_DQUOTE, @@ -582777,10 +586271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [267762] = 2, + [268356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10289), 14, + ACTIONS(10372), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -582795,10 +586289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [267782] = 2, + [268376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10235), 14, + ACTIONS(10322), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -582813,135 +586307,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [267802] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9783), 1, - anon_sym_LBRACK, - STATE(4120), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10507), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [267834] = 8, + [268396] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(9295), 1, + ACTIONS(9529), 1, anon_sym_requires, - STATE(6861), 1, - sym_trailing_return_type, - ACTIONS(9022), 2, + ACTIONS(9455), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(9451), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - [267866] = 2, + anon_sym_COLON, + [268424] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10285), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10577), 1, + sym_identifier, + STATE(6558), 1, + sym_string_literal, + STATE(6856), 1, + sym_raw_string_literal, + STATE(7648), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [268454] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + STATE(4142), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6867), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10610), 7, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [267886] = 12, + anon_sym_asm, + anon_sym___asm__, + [268486] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7619), 1, - anon_sym_LBRACE, - ACTIONS(7778), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(9306), 1, + ACTIONS(9095), 1, + anon_sym_LBRACE, + ACTIONS(9414), 1, sym_identifier, - STATE(3104), 1, + STATE(5358), 1, sym_template_type, - STATE(4356), 1, + STATE(5563), 1, sym_enumerator_list, - STATE(7045), 1, + STATE(7050), 1, sym__scope_resolution, - ACTIONS(10509), 2, + ACTIONS(10612), 2, anon_sym_class, anon_sym_struct, - STATE(5097), 2, + STATE(5395), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [267926] = 2, + [268526] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9004), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(6685), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [267946] = 8, + ACTIONS(9147), 1, + anon_sym_COLON_COLON, + ACTIONS(9412), 1, + sym_identifier, + STATE(3036), 1, + sym_template_type, + STATE(3412), 1, + sym_enumerator_list, + STATE(7041), 1, + sym__scope_resolution, + ACTIONS(10614), 2, + anon_sym_class, + anon_sym_struct, + STATE(3040), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [268566] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9568), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - STATE(3951), 1, + STATE(4069), 1, sym_parameter_list, - STATE(6887), 1, + STATE(6984), 1, sym__function_declarator_seq, - STATE(6859), 2, + STATE(6864), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10511), 7, + ACTIONS(10616), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -582949,84 +586456,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [267978] = 2, + [268598] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10293), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(10577), 1, + sym_identifier, + STATE(6572), 1, + sym_string_literal, + STATE(6856), 1, + sym_raw_string_literal, + STATE(7643), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [268628] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(6397), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + anon_sym_COLON_COLON, + ACTIONS(9420), 1, + sym_identifier, + STATE(2150), 1, + sym_template_type, + STATE(5934), 1, + sym_enumerator_list, + STATE(7058), 1, + sym__scope_resolution, + ACTIONS(10618), 2, + anon_sym_class, + anon_sym_struct, + STATE(5730), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [268668] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10577), 1, + sym_identifier, + STATE(8690), 1, + sym_concatenated_string, + STATE(6761), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [268696] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10564), 1, + anon_sym_requires, + ACTIONS(10303), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6649), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [267998] = 5, + [268724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5954), 1, - anon_sym_LBRACK, - STATE(6535), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5956), 10, + ACTIONS(10380), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [268024] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9568), 1, anon_sym_LBRACK, - STATE(3951), 1, - sym_parameter_list, - STATE(6887), 1, - sym__function_declarator_seq, - STATE(6859), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10513), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [268056] = 6, + anon_sym_requires, + [268744] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, + ACTIONS(10620), 1, anon_sym_requires, - ACTIONS(7363), 2, + ACTIONS(10423), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6653), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 7, + ACTIONS(10218), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -583034,180 +586591,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON, - [268084] = 7, + [268772] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, + ACTIONS(7800), 1, anon_sym_requires, - ACTIONS(9006), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6412), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 6, + ACTIONS(9107), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [268114] = 7, + [268802] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(6548), 1, - sym_string_literal, - STATE(6823), 1, - sym_raw_string_literal, - STATE(7811), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [268144] = 12, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(10623), 1, + anon_sym_requires, + STATE(6882), 1, + sym_trailing_return_type, + ACTIONS(10303), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6649), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [268834] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(7619), 1, + ACTIONS(7714), 1, anon_sym_LBRACE, - ACTIONS(9291), 1, + ACTIONS(9331), 1, + anon_sym_COLON_COLON, + ACTIONS(9424), 1, sym_identifier, - STATE(3104), 1, + STATE(4141), 1, sym_template_type, - STATE(4327), 1, + STATE(4375), 1, sym_enumerator_list, - STATE(7030), 1, + STATE(7055), 1, sym__scope_resolution, - ACTIONS(10515), 2, + ACTIONS(10626), 2, anon_sym_class, anon_sym_struct, - STATE(4421), 2, + STATE(4132), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [268184] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7654), 1, - anon_sym_requires, - ACTIONS(10063), 1, - anon_sym_LBRACK, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6423), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10061), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [268214] = 12, + [268874] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6385), 1, + ACTIONS(6397), 1, anon_sym_LBRACE, - ACTIONS(7742), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9318), 1, + ACTIONS(9418), 1, sym_identifier, - STATE(2134), 1, + STATE(2150), 1, sym_template_type, - STATE(5908), 1, + STATE(2862), 1, sym_enumerator_list, - STATE(7025), 1, + STATE(7066), 1, sym__scope_resolution, - ACTIONS(10517), 2, + ACTIONS(10628), 2, anon_sym_class, anon_sym_struct, - STATE(5800), 2, + STATE(4325), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [268254] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(7714), 1, - anon_sym_requires, - STATE(6864), 1, - sym_trailing_return_type, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [268286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10279), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [268306] = 3, + [268914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10519), 2, + ACTIONS(10591), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(6208), 12, + ACTIONS(6235), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -583220,131 +586713,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [268328] = 8, + [268936] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - STATE(4120), 1, + STATE(4069), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6984), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6864), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10484), 7, + ACTIONS(10630), 7, anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_COLON, anon_sym_try, - [268360] = 2, + [268968] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10051), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(10632), 1, + sym_identifier, + ACTIONS(10634), 1, + aux_sym_preproc_if_token2, + ACTIONS(10636), 1, + aux_sym_preproc_else_token1, + ACTIONS(10638), 1, + aux_sym_preproc_elif_token1, + STATE(6930), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(6934), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(7171), 1, + sym_enumerator, + STATE(8980), 1, + sym_preproc_elifdef, + ACTIONS(10640), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8981), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(8982), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [269008] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 1, + anon_sym_COLON_COLON, + ACTIONS(5048), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(5041), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [268380] = 7, + [269032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(6539), 1, - sym_string_literal, - STATE(6823), 1, - sym_raw_string_literal, - STATE(7797), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [268410] = 12, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6016), 1, + anon_sym_LBRACK, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6018), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [269058] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6385), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, - ACTIONS(9088), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9400), 1, sym_identifier, - STATE(2134), 1, + STATE(2181), 1, sym_template_type, - STATE(2877), 1, + STATE(2328), 1, sym_enumerator_list, - STATE(7040), 1, + STATE(7033), 1, sym__scope_resolution, - ACTIONS(10521), 2, + ACTIONS(10642), 2, anon_sym_class, anon_sym_struct, - STATE(4291), 2, + STATE(2858), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [268450] = 6, + [269098] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, - anon_sym_requires, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6678), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(7867), 1, + anon_sym_COLON_COLON, + ACTIONS(9027), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - [268478] = 6, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(5425), 1, + sym_enumerator_list, + STATE(7046), 1, + sym__scope_resolution, + ACTIONS(10644), 2, + anon_sym_class, + anon_sym_struct, + STATE(5694), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [269138] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(10577), 1, sym_identifier, - STATE(8742), 1, - sym_concatenated_string, - STATE(6724), 2, + STATE(6565), 1, sym_string_literal, + STATE(6856), 1, sym_raw_string_literal, + STATE(7880), 1, + sym_concatenated_string, ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, @@ -583357,16 +586885,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [268506] = 7, + [269168] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(10577), 1, sym_identifier, - STATE(6574), 1, + STATE(6609), 1, sym_string_literal, - STATE(6823), 1, + STATE(6856), 1, sym_raw_string_literal, - STATE(7884), 1, + STATE(7868), 1, sym_concatenated_string, ACTIONS(111), 5, anon_sym_L_DQUOTE, @@ -583380,42 +586908,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [268536] = 12, + [269198] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(6656), 1, - anon_sym_LBRACE, - ACTIONS(9030), 1, - anon_sym_COLON_COLON, - ACTIONS(9320), 1, - sym_identifier, - STATE(2997), 1, - sym_template_type, - STATE(3059), 1, - sym_enumerator_list, - STATE(7027), 1, - sym__scope_resolution, - ACTIONS(10523), 2, - anon_sym_class, - anon_sym_struct, - STATE(4486), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [268576] = 6, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(9601), 1, + anon_sym_requires, + STATE(6886), 1, + sym_trailing_return_type, + ACTIONS(9455), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6638), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [269230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(10577), 1, sym_identifier, - STATE(9139), 1, + STATE(8638), 1, sym_concatenated_string, - STATE(6740), 2, + STATE(6794), 2, sym_string_literal, sym_raw_string_literal, ACTIONS(111), 5, @@ -583430,492 +586954,718 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [268604] = 5, + [269258] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(10486), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10525), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6196), 9, - anon_sym_RPAREN, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + STATE(4142), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6867), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10581), 7, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [268630] = 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [269290] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, + ACTIONS(7806), 1, anon_sym_DASH_GT, - ACTIONS(7714), 1, + ACTIONS(9428), 1, anon_sym_requires, - STATE(6853), 1, + STATE(6889), 1, sym_trailing_return_type, - ACTIONS(7363), 2, + ACTIONS(9111), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 5, + ACTIONS(9107), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [268662] = 12, + [269322] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - ACTIONS(8930), 1, + ACTIONS(6610), 1, anon_sym_LBRACE, - ACTIONS(9312), 1, + ACTIONS(9191), 1, + anon_sym_COLON_COLON, + ACTIONS(9408), 1, sym_identifier, - STATE(3104), 1, + STATE(2979), 1, sym_template_type, - STATE(5395), 1, + STATE(3061), 1, sym_enumerator_list, - STATE(7031), 1, + STATE(7067), 1, sym__scope_resolution, - ACTIONS(10527), 2, + ACTIONS(10646), 2, anon_sym_class, anon_sym_struct, - STATE(5799), 2, + STATE(4551), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [268702] = 7, + [269362] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_LBRACK, - ACTIONS(10529), 1, + ACTIONS(7800), 1, anon_sym_requires, - ACTIONS(10065), 2, + ACTIONS(9453), 1, + anon_sym_LBRACK, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6423), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10061), 6, + ACTIONS(9451), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [268732] = 12, + [269392] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10532), 1, - sym_identifier, - ACTIONS(10534), 1, - aux_sym_preproc_if_token2, - ACTIONS(10536), 1, - aux_sym_preproc_else_token1, - ACTIONS(10538), 1, - aux_sym_preproc_elif_token1, - STATE(6895), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(6934), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(7151), 1, - sym_enumerator, - STATE(9102), 1, - sym_preproc_elifdef, - ACTIONS(10540), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(9070), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - STATE(9106), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [268772] = 7, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(9225), 1, + anon_sym_requires, + STATE(6850), 1, + sym_trailing_return_type, + ACTIONS(9021), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [269424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10053), 1, - anon_sym_LBRACK, - ACTIONS(10356), 1, + ACTIONS(7753), 1, anon_sym_requires, - ACTIONS(10055), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 6, + ACTIONS(9107), 7, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_try, - [268802] = 12, + anon_sym_LBRACK, + anon_sym_COLON, + [269452] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6556), 1, + ACTIONS(6610), 1, anon_sym_LBRACE, - ACTIONS(9225), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(9394), 1, sym_identifier, - STATE(2929), 1, + STATE(2979), 1, sym_template_type, - STATE(3187), 1, + STATE(3061), 1, sym_enumerator_list, - STATE(7032), 1, + STATE(7064), 1, sym__scope_resolution, - ACTIONS(10542), 2, + ACTIONS(10648), 2, anon_sym_class, anon_sym_struct, - STATE(2926), 2, + STATE(5568), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [268842] = 4, + [269492] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10519), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10544), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6196), 10, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(3863), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10501), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [269520] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10577), 1, + sym_identifier, + STATE(6573), 1, + sym_string_literal, + STATE(6856), 1, + sym_raw_string_literal, + STATE(7950), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [269550] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + STATE(4168), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10610), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [269582] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(7813), 1, + anon_sym_LBRACE, + ACTIONS(9169), 1, + anon_sym_COLON_COLON, + ACTIONS(9396), 1, + sym_identifier, + STATE(4306), 1, + sym_template_type, + STATE(4570), 1, + sym_enumerator_list, + STATE(7057), 1, + sym__scope_resolution, + ACTIONS(10650), 2, + anon_sym_class, + anon_sym_struct, + STATE(4302), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [269622] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10577), 1, + sym_identifier, + STATE(8703), 1, + sym_concatenated_string, + STATE(6786), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [269650] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10577), 1, + sym_identifier, + STATE(9033), 1, + sym_concatenated_string, + STATE(6762), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [269678] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + STATE(4142), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6867), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10652), 7, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [268866] = 8, + anon_sym_asm, + anon_sym___asm__, + [269710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(7714), 1, - anon_sym_requires, - STATE(6851), 1, - sym_trailing_return_type, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6645), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 5, + ACTIONS(9107), 14, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [268898] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10402), 1, - anon_sym_requires, - ACTIONS(10203), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6678), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_COLON, - [268926] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [269730] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9353), 1, - anon_sym_LBRACK, - ACTIONS(9487), 1, + ACTIONS(7800), 1, anon_sym_requires, - ACTIONS(9367), 2, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6422), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 6, + ACTIONS(10194), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [268956] = 12, + [269760] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6531), 1, - anon_sym_LBRACE, - ACTIONS(9066), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(7702), 1, + anon_sym_LBRACE, + ACTIONS(9406), 1, sym_identifier, - STATE(2903), 1, + STATE(3113), 1, sym_template_type, - STATE(3105), 1, + STATE(4356), 1, sym_enumerator_list, - STATE(7002), 1, + STATE(7076), 1, sym__scope_resolution, - ACTIONS(10546), 2, + ACTIONS(10654), 2, anon_sym_class, anon_sym_struct, - STATE(2904), 2, + STATE(4496), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [268996] = 6, + [269800] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10548), 1, - anon_sym_requires, - ACTIONS(10301), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6667), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10061), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(6558), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - [269024] = 12, + ACTIONS(9205), 1, + anon_sym_COLON_COLON, + ACTIONS(9422), 1, + sym_identifier, + STATE(2917), 1, + sym_template_type, + STATE(3049), 1, + sym_enumerator_list, + STATE(7053), 1, + sym__scope_resolution, + ACTIONS(10656), 2, + anon_sym_class, + anon_sym_struct, + STATE(2923), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [269840] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7703), 1, + ACTIONS(5659), 1, anon_sym_LBRACE, - ACTIONS(9171), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(9344), 1, + ACTIONS(9400), 1, sym_identifier, - STATE(4257), 1, + STATE(2181), 1, sym_template_type, - STATE(4526), 1, + STATE(2328), 1, sym_enumerator_list, - STATE(7006), 1, + STATE(7033), 1, sym__scope_resolution, - ACTIONS(10551), 2, + ACTIONS(10658), 2, anon_sym_class, anon_sym_struct, - STATE(4264), 2, + STATE(2612), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [269064] = 2, + [269880] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10275), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [269084] = 2, + ACTIONS(10577), 1, + sym_identifier, + STATE(6593), 1, + sym_string_literal, + STATE(6856), 1, + sym_raw_string_literal, + STATE(7809), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [269910] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10263), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(7702), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [269104] = 7, + ACTIONS(7867), 1, + anon_sym_COLON_COLON, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(4378), 1, + sym_enumerator_list, + STATE(7046), 1, + sym__scope_resolution, + ACTIONS(10660), 2, + anon_sym_class, + anon_sym_struct, + STATE(4536), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [269950] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, + ACTIONS(7800), 1, anon_sym_requires, - ACTIONS(10053), 1, + ACTIONS(10220), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6409), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 6, + ACTIONS(10218), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [269134] = 7, + [269980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(9282), 1, - anon_sym_requires, - ACTIONS(9128), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [269164] = 12, + ACTIONS(10577), 1, + sym_identifier, + STATE(8565), 1, + sym_concatenated_string, + STATE(6764), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [270008] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10577), 1, + sym_identifier, + STATE(8808), 1, + sym_concatenated_string, + STATE(6773), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [270036] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6385), 1, + ACTIONS(6261), 1, anon_sym_LBRACE, - ACTIONS(7736), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9431), 1, sym_identifier, - STATE(2134), 1, + STATE(2846), 1, sym_template_type, - STATE(2877), 1, + STATE(2944), 1, sym_enumerator_list, - STATE(7043), 1, + STATE(7059), 1, sym__scope_resolution, - ACTIONS(10553), 2, + ACTIONS(10662), 2, anon_sym_class, anon_sym_struct, - STATE(5520), 2, + STATE(2759), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [269204] = 8, + [270076] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, - anon_sym_DASH_GT, - ACTIONS(7714), 1, - anon_sym_requires, - STATE(6845), 1, - sym_trailing_return_type, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6678), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 5, + ACTIONS(10577), 1, + sym_identifier, + STATE(6569), 1, + sym_string_literal, + STATE(6856), 1, + sym_raw_string_literal, + STATE(7782), 1, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(151), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [270106] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + ACTIONS(7702), 1, + anon_sym_LBRACE, + ACTIONS(9404), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(4356), 1, + sym_enumerator_list, + STATE(7073), 1, + sym__scope_resolution, + ACTIONS(10664), 2, + anon_sym_class, + anon_sym_struct, + STATE(4171), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [270146] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + STATE(4168), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10652), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [270178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10392), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [269236] = 7, + anon_sym_try, + anon_sym_requires, + [270198] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(10577), 1, sym_identifier, - STATE(6547), 1, + STATE(6612), 1, sym_string_literal, - STATE(6823), 1, + STATE(6856), 1, sym_raw_string_literal, - STATE(7683), 1, + STATE(7667), 1, sym_concatenated_string, ACTIONS(111), 5, anon_sym_L_DQUOTE, @@ -583929,33 +587679,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [269266] = 7, + [270228] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(9014), 1, + ACTIONS(9128), 1, anon_sym_requires, - ACTIONS(8934), 2, + ACTIONS(9021), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6405), 2, + STATE(6705), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 6, + ACTIONS(9008), 7, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_try, - [269296] = 2, + anon_sym_LBRACK, + anon_sym_COLON, + [270256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10259), 14, + ACTIONS(10330), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -583970,52 +587719,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [269316] = 4, + [270276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 1, - anon_sym_COLON_COLON, - ACTIONS(5021), 2, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(5014), 11, + ACTIONS(10384), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [269340] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, anon_sym_LBRACK, - STATE(3757), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10423), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [269368] = 2, + [270296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10061), 14, + ACTIONS(10376), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -584030,21 +587755,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [269388] = 6, + [270316] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + STATE(4142), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6867), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10579), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [270348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9017), 1, + ACTIONS(9382), 1, anon_sym_requires, - ACTIONS(8914), 2, + ACTIONS(9111), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 7, + ACTIONS(9107), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -584052,16 +587801,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON, - [269416] = 7, + [270376] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(10577), 1, sym_identifier, - STATE(6554), 1, + STATE(6550), 1, sym_string_literal, - STATE(6823), 1, + STATE(6856), 1, sym_raw_string_literal, - STATE(7732), 1, + STATE(7859), 1, sym_concatenated_string, ACTIONS(111), 5, anon_sym_L_DQUOTE, @@ -584075,14 +587824,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [269446] = 6, + [270406] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(10577), 1, sym_identifier, - STATE(8659), 1, + STATE(8463), 1, sym_concatenated_string, - STATE(6719), 2, + STATE(6765), 2, sym_string_literal, sym_raw_string_literal, ACTIONS(111), 5, @@ -584097,107 +587846,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [269474] = 12, + [270434] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(7619), 1, - anon_sym_LBRACE, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - ACTIONS(9312), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(4356), 1, - sym_enumerator_list, - STATE(7031), 1, - sym__scope_resolution, - ACTIONS(10555), 2, - anon_sym_class, - anon_sym_struct, - STATE(4536), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [269514] = 8, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(7808), 1, + anon_sym_requires, + STATE(6874), 1, + sym_trailing_return_type, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [270466] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(5069), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(8031), 1, + anon_sym_COLON, + ACTIONS(8207), 1, anon_sym_LBRACK, - STATE(4120), 1, + ACTIONS(9356), 1, + anon_sym_STAR, + ACTIONS(9358), 1, + anon_sym_AMP_AMP, + ACTIONS(9360), 1, + anon_sym_AMP, + STATE(4401), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6627), 1, sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10557), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [269546] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(6572), 1, - sym_string_literal, - STATE(6823), 1, - sym_raw_string_literal, - STATE(7837), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [269576] = 6, + STATE(7274), 1, + sym__abstract_declarator, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [270504] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(7808), 1, anon_sym_requires, - ACTIONS(7363), 2, + STATE(6828), 1, + sym_trailing_return_type, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6667), 2, + STATE(6649), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10061), 7, + ACTIONS(10194), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [270536] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9656), 1, + anon_sym_LBRACK, + STATE(4069), 1, + sym_parameter_list, + STATE(6984), 1, + sym__function_declarator_seq, + STATE(6864), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10666), 7, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_COLON, - [269604] = 2, + anon_sym_try, + [270568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10247), 14, + ACTIONS(10346), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -584212,164 +587963,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [269624] = 2, + [270588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10251), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10670), 1, + anon_sym_LBRACK, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10668), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [269644] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(7619), 1, - anon_sym_LBRACE, - ACTIONS(9291), 1, - sym_identifier, - ACTIONS(9308), 1, - anon_sym_COLON_COLON, - STATE(3104), 1, - sym_template_type, - STATE(4327), 1, - sym_enumerator_list, - STATE(7005), 1, - sym__scope_resolution, - ACTIONS(10559), 2, - anon_sym_class, - anon_sym_struct, - STATE(4653), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [269684] = 6, + [270614] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9426), 1, + ACTIONS(7806), 1, + anon_sym_DASH_GT, + ACTIONS(7808), 1, anon_sym_requires, - ACTIONS(9355), 2, + STATE(6858), 1, + sym_trailing_return_type, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 7, + ACTIONS(9451), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, - [269712] = 12, + anon_sym_GT2, + [270646] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7778), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(8930), 1, + ACTIONS(9027), 1, anon_sym_LBRACE, - ACTIONS(9306), 1, + ACTIONS(9402), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(5395), 1, + STATE(5425), 1, sym_enumerator_list, - STATE(7045), 1, + STATE(7036), 1, sym__scope_resolution, - ACTIONS(10561), 2, + ACTIONS(10672), 2, anon_sym_class, anon_sym_struct, - STATE(5307), 2, + STATE(5365), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [269752] = 12, + [270686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5682), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(3863), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10521), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9102), 1, - anon_sym_COLON_COLON, - ACTIONS(9330), 1, - sym_identifier, - STATE(2102), 1, - sym_template_type, - STATE(2293), 1, - sym_enumerator_list, - STATE(7028), 1, - sym__scope_resolution, - ACTIONS(10563), 2, - anon_sym_class, - anon_sym_struct, - STATE(2623), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [269792] = 8, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [270714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4120), 1, + STATE(3863), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6658), 1, sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10505), 7, + ACTIONS(10523), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [269824] = 6, + anon_sym_requires, + [270742] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(10577), 1, sym_identifier, - STATE(8431), 1, - sym_concatenated_string, - STATE(6770), 2, + STATE(6580), 1, sym_string_literal, + STATE(6856), 1, sym_raw_string_literal, + STATE(7840), 1, + sym_concatenated_string, ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, @@ -584382,23 +588103,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [269852] = 8, + [270772] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1112), 1, + anon_sym_LBRACE, + ACTIONS(7923), 1, + anon_sym_LBRACK, + ACTIONS(10674), 1, + anon_sym_SEMI, + ACTIONS(10676), 1, + anon_sym_EQ, + ACTIONS(10678), 1, + anon_sym_COLON, + ACTIONS(10680), 1, + anon_sym_try, + STATE(879), 1, + sym_compound_statement, + STATE(8346), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(875), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [270809] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(10529), 1, anon_sym_LBRACK, - STATE(4098), 1, + STATE(6787), 1, sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6866), 2, + STATE(6860), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10507), 7, + ACTIONS(5827), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, @@ -584406,552 +588151,660 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [269884] = 6, + [270838] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(8777), 1, - sym_concatenated_string, - STATE(6761), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [269912] = 7, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(9109), 1, + anon_sym_LBRACK, + ACTIONS(9464), 1, + anon_sym_requires, + STATE(6911), 1, + sym_trailing_return_type, + ACTIONS(9301), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [270871] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(6516), 1, - sym_string_literal, - STATE(6823), 1, - sym_raw_string_literal, - STATE(8007), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [269942] = 2, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4136), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10501), 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [270898] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(9453), 1, + anon_sym_LBRACK, + ACTIONS(9631), 1, + anon_sym_requires, + STATE(6914), 1, + sym_trailing_return_type, + ACTIONS(9475), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6384), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [270931] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(10682), 1, + anon_sym_requires, + STATE(6921), 1, + sym_trailing_return_type, + ACTIONS(10204), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6422), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [270964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6000), 1, + anon_sym_LBRACK, + ACTIONS(6002), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [269962] = 6, + [270985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(5266), 1, sym_identifier, - STATE(8701), 1, - sym_concatenated_string, - STATE(6713), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(111), 5, + ACTIONS(5268), 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, - ACTIONS(151), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [269990] = 2, + [271006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10243), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(10687), 1, + anon_sym_LBRACK, + ACTIONS(10685), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [270010] = 7, + [271027] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(6550), 1, - sym_string_literal, - STATE(6823), 1, - sym_raw_string_literal, - STATE(7661), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [270040] = 7, + ACTIONS(7923), 1, + anon_sym_LBRACK, + ACTIONS(10678), 1, + anon_sym_COLON, + ACTIONS(10689), 1, + anon_sym_SEMI, + ACTIONS(10691), 1, + anon_sym_LBRACE, + ACTIONS(10693), 1, + anon_sym_EQ, + ACTIONS(10695), 1, + anon_sym_try, + STATE(2314), 1, + sym_compound_statement, + STATE(8325), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2319), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [271064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(6571), 1, - sym_string_literal, - STATE(6823), 1, - sym_raw_string_literal, - STATE(7914), 1, - sym_concatenated_string, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(151), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [270070] = 7, + ACTIONS(6004), 1, + anon_sym_LBRACK, + ACTIONS(6006), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [271085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, - anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(6041), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6425), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 6, + ACTIONS(6043), 12, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [270100] = 8, + [271106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(7923), 1, + anon_sym_LBRACK, + ACTIONS(5056), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [271127] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 1, + anon_sym_LBRACE, + ACTIONS(7923), 1, + anon_sym_LBRACK, + ACTIONS(10678), 1, + anon_sym_COLON, + ACTIONS(10697), 1, + anon_sym_SEMI, + ACTIONS(10699), 1, + anon_sym_EQ, + ACTIONS(10701), 1, + anon_sym_try, + STATE(864), 1, + sym_compound_statement, + STATE(8119), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, anon_sym_LPAREN2, - ACTIONS(9783), 1, + anon_sym_LBRACK_LBRACK, + STATE(862), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [271164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6045), 1, anon_sym_LBRACK, - STATE(4098), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6866), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10557), 7, + ACTIONS(6047), 12, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [270132] = 7, + anon_sym_GT2, + anon_sym_try, + [271185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(5270), 1, sym_identifier, - STATE(6579), 1, - sym_string_literal, - STATE(6823), 1, - sym_raw_string_literal, - STATE(7610), 1, - sym_concatenated_string, - ACTIONS(111), 5, + ACTIONS(5272), 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, - ACTIONS(151), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [270162] = 8, + [271206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(6008), 1, + anon_sym_LBRACK, + ACTIONS(6010), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [271227] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9568), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(3951), 1, + STATE(4136), 1, sym_parameter_list, - STATE(6887), 1, + STATE(6464), 1, sym__function_declarator_seq, - STATE(6859), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10565), 7, - anon_sym_COMMA, + ACTIONS(10505), 9, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_try, - [270194] = 12, + anon_sym_requires, + [271254] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6345), 1, - anon_sym_LBRACE, - ACTIONS(9203), 1, - anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(10703), 1, sym_identifier, - STATE(2790), 1, - sym_template_type, - STATE(2941), 1, - sym_enumerator_list, - STATE(7024), 1, - sym__scope_resolution, - ACTIONS(10567), 2, - anon_sym_class, - anon_sym_struct, - STATE(2787), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [270234] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(6656), 1, - anon_sym_LBRACE, - ACTIONS(7804), 1, + ACTIONS(10705), 1, anon_sym_COLON_COLON, - ACTIONS(9326), 1, - sym_identifier, - STATE(2997), 1, - sym_template_type, - STATE(3059), 1, - sym_enumerator_list, - STATE(7029), 1, + STATE(6804), 1, sym__scope_resolution, - ACTIONS(10569), 2, - anon_sym_class, - anon_sym_struct, - STATE(5514), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, + STATE(7818), 1, + sym_field_initializer, + STATE(8181), 1, + sym_operator_name, + STATE(7487), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(9043), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [270274] = 2, + [271291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(6012), 1, + anon_sym_LBRACK, + ACTIONS(6014), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, + [271312] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(7955), 1, anon_sym_requires, - [270294] = 7, + ACTIONS(10196), 1, + anon_sym_LBRACK, + STATE(6954), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6422), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [271345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10480), 1, - sym_identifier, - STATE(6537), 1, + ACTIONS(10707), 1, + anon_sym_RPAREN, + STATE(6479), 2, sym_string_literal, - STATE(6823), 1, sym_raw_string_literal, - STATE(7831), 1, - sym_concatenated_string, - ACTIONS(111), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(151), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [270324] = 11, + [271370] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, - anon_sym_LBRACK, - ACTIONS(10571), 1, - anon_sym_SEMI, - ACTIONS(10573), 1, - anon_sym_LBRACE, - ACTIONS(10575), 1, - anon_sym_EQ, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10579), 1, - anon_sym_try, - STATE(2534), 1, - sym_compound_statement, - STATE(8314), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2532), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [270361] = 9, + ACTIONS(10709), 1, + anon_sym_RPAREN, + STATE(6479), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(10415), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10417), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [271395] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7798), 1, + ACTIONS(7915), 1, anon_sym_DASH_GT, - ACTIONS(7800), 1, + ACTIONS(7955), 1, anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(9453), 1, anon_sym_LBRACK, - STATE(6902), 1, + STATE(6951), 1, sym_trailing_return_type, - ACTIONS(6067), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6425), 2, + STATE(6384), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 3, + ACTIONS(9451), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [270394] = 11, + [271428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(10581), 1, - sym_identifier, - ACTIONS(10583), 1, - anon_sym_COLON_COLON, - STATE(6768), 1, - sym__scope_resolution, - STATE(7804), 1, - sym_field_initializer, - STATE(8388), 1, - sym_operator_name, - STATE(7305), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [270431] = 5, + ACTIONS(10711), 1, + anon_sym_RPAREN, + STATE(6479), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(10415), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10417), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [271453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10585), 1, + ACTIONS(10713), 1, anon_sym_RPAREN, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [270456] = 11, + [271478] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7923), 1, + anon_sym_LBRACK, + ACTIONS(10678), 1, + anon_sym_COLON, + ACTIONS(10715), 1, + anon_sym_SEMI, + ACTIONS(10717), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, + anon_sym_EQ, + ACTIONS(10721), 1, + anon_sym_try, + STATE(2679), 1, + sym_compound_statement, + STATE(8204), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2681), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [271515] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7923), 1, + anon_sym_LBRACK, + ACTIONS(10678), 1, + anon_sym_COLON, + ACTIONS(10717), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, + anon_sym_EQ, + ACTIONS(10721), 1, + anon_sym_try, + ACTIONS(10723), 1, + anon_sym_SEMI, + STATE(2651), 1, + sym_compound_statement, + STATE(8441), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2648), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [271552] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - ACTIONS(10587), 1, + ACTIONS(10725), 1, anon_sym_SEMI, - ACTIONS(10589), 1, + ACTIONS(10727), 1, + anon_sym_LBRACE, + ACTIONS(10729), 1, anon_sym_EQ, - ACTIONS(10591), 1, + ACTIONS(10731), 1, anon_sym_try, - STATE(586), 1, + STATE(2579), 1, sym_compound_statement, - STATE(8377), 1, + STATE(8177), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(594), 3, + STATE(2578), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [270493] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(10581), 1, - sym_identifier, - ACTIONS(10583), 1, - anon_sym_COLON_COLON, - STATE(6768), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_field_initializer, - STATE(8388), 1, - sym_operator_name, - STATE(7305), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [270530] = 11, + [271589] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - ACTIONS(10589), 1, + ACTIONS(10733), 1, + anon_sym_SEMI, + ACTIONS(10735), 1, anon_sym_EQ, - ACTIONS(10591), 1, + ACTIONS(10737), 1, anon_sym_try, - ACTIONS(10593), 1, - anon_sym_SEMI, - STATE(547), 1, + STATE(564), 1, sym_compound_statement, - STATE(8411), 1, + STATE(8141), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(581), 3, + STATE(565), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [270567] = 11, + [271626] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - ACTIONS(10595), 1, - anon_sym_SEMI, - ACTIONS(10597), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(10599), 1, + ACTIONS(10693), 1, anon_sym_EQ, - ACTIONS(10601), 1, + ACTIONS(10695), 1, anon_sym_try, - STATE(2656), 1, + ACTIONS(10739), 1, + anon_sym_SEMI, + STATE(2339), 1, sym_compound_statement, - STATE(8166), 1, + STATE(8202), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2657), 3, + STATE(2337), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [270604] = 3, + [271663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5947), 1, + anon_sym_LBRACK, + ACTIONS(5949), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [271684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10605), 1, + ACTIONS(10743), 1, anon_sym_LBRACK, - ACTIONS(10603), 12, + ACTIONS(10741), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -584964,32 +588817,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [270625] = 5, + [271705] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10607), 1, + ACTIONS(10745), 1, anon_sym_RPAREN, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [270650] = 3, + [271730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10611), 1, + ACTIONS(10749), 1, anon_sym_LBRACK, - ACTIONS(10609), 12, + ACTIONS(10747), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -585002,141 +588855,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [270671] = 3, + [271751] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5985), 1, - anon_sym_LBRACK, - ACTIONS(5987), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(291), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [270692] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - ACTIONS(10597), 1, - anon_sym_LBRACE, - ACTIONS(10599), 1, + ACTIONS(10751), 1, + anon_sym_SEMI, + ACTIONS(10753), 1, anon_sym_EQ, - ACTIONS(10601), 1, + ACTIONS(10755), 1, anon_sym_try, - ACTIONS(10613), 1, - anon_sym_SEMI, - STATE(2601), 1, + STATE(369), 1, sym_compound_statement, - STATE(8187), 1, + STATE(8426), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2643), 3, + STATE(373), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [270729] = 6, + [271788] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10529), 1, anon_sym_LBRACK, - STATE(4113), 1, + STATE(6787), 1, sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10415), 9, + STATE(6860), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5889), 7, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [270756] = 5, + anon_sym_asm, + anon_sym___asm__, + [271817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10615), 1, + ACTIONS(5262), 1, + sym_identifier, + ACTIONS(5264), 12, anon_sym_RPAREN, - STATE(6488), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(10350), 5, + anon_sym_COLON, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [270781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10619), 1, - anon_sym_LBRACK, - ACTIONS(10617), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [270802] = 5, + [271838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10621), 1, + ACTIONS(10757), 1, anon_sym_RPAREN, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [270827] = 6, + [271863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4113), 1, + STATE(4136), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10398), 9, + ACTIONS(10517), 9, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -585146,12 +588962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [270854] = 3, + [271890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10625), 1, + ACTIONS(5416), 1, anon_sym_LBRACK, - ACTIONS(10623), 12, + ACTIONS(5414), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -585164,12 +588980,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [270875] = 3, + [271911] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(7923), 1, + anon_sym_LBRACK, + ACTIONS(10678), 1, + anon_sym_COLON, + ACTIONS(10735), 1, + anon_sym_EQ, + ACTIONS(10737), 1, + anon_sym_try, + ACTIONS(10759), 1, + anon_sym_SEMI, + STATE(545), 1, + sym_compound_statement, + STATE(8062), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(547), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [271948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10629), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10627), 12, + ACTIONS(10761), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -585182,12 +589024,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [270896] = 3, + [271969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5981), 1, + ACTIONS(10767), 1, anon_sym_LBRACK, - ACTIONS(5983), 12, + ACTIONS(10765), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -585200,63 +589042,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [270917] = 11, + [271990] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - ACTIONS(10631), 1, + ACTIONS(10769), 1, anon_sym_SEMI, - ACTIONS(10633), 1, + ACTIONS(10771), 1, + anon_sym_LBRACE, + ACTIONS(10773), 1, anon_sym_EQ, - ACTIONS(10635), 1, + ACTIONS(10775), 1, anon_sym_try, - STATE(422), 1, + STATE(2102), 1, sym_compound_statement, - STATE(8203), 1, + STATE(8070), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(419), 3, + STATE(2124), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [270954] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(9265), 1, - anon_sym_STAR, - ACTIONS(9267), 1, - anon_sym_AMP_AMP, - ACTIONS(9269), 1, - anon_sym_AMP, - STATE(3802), 1, - sym_parameter_list, - STATE(6625), 1, - sym__function_declarator_seq, - STATE(7111), 1, - sym__abstract_declarator, - STATE(6616), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [270989] = 3, + [272027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 1, + ACTIONS(5297), 1, sym_identifier, - ACTIONS(5259), 12, + ACTIONS(5299), 12, anon_sym_RPAREN, anon_sym_COLON, anon_sym_L_DQUOTE, @@ -585269,169 +589086,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [271010] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, - anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10637), 1, - anon_sym_SEMI, - ACTIONS(10639), 1, - anon_sym_EQ, - ACTIONS(10641), 1, - anon_sym_try, - STATE(984), 1, - sym_compound_statement, - STATE(8130), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(978), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [271047] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4141), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10415), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [271074] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4141), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10398), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [271101] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10411), 1, - anon_sym_LBRACK, - STATE(6762), 1, - sym_parameter_list, - STATE(6814), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5813), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [271130] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4141), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10413), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [271157] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, - anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10643), 1, - anon_sym_SEMI, - ACTIONS(10645), 1, - anon_sym_EQ, - ACTIONS(10647), 1, - anon_sym_try, - STATE(952), 1, - sym_compound_statement, - STATE(8146), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(916), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [271194] = 5, + [272048] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10649), 1, + ACTIONS(10777), 1, anon_sym_RPAREN, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [271219] = 3, + [272073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6009), 1, + ACTIONS(6049), 1, anon_sym_LBRACK, - ACTIONS(6011), 12, + ACTIONS(6051), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -585444,183 +589124,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [271240] = 6, + [272094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10781), 1, anon_sym_LBRACK, - STATE(4113), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10419), 9, + ACTIONS(10779), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [271267] = 6, + [272115] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4141), 1, + STATE(4136), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10417), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10521), 9, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [271294] = 7, + [272142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10411), 1, + ACTIONS(5014), 1, anon_sym_LBRACK, - STATE(6762), 1, - sym_parameter_list, - STATE(6814), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5880), 7, + ACTIONS(5019), 12, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [271323] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10411), 1, - anon_sym_LBRACK, - STATE(6762), 1, - sym_parameter_list, - STATE(6814), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5847), 7, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [271352] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7758), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10411), 1, - anon_sym_LBRACK, - STATE(6762), 1, - sym_parameter_list, - STATE(6814), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5803), 7, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [271381] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4141), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10419), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [271408] = 6, + anon_sym_try, + [272163] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - STATE(4141), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10421), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, + ACTIONS(10678), 1, + anon_sym_COLON, + ACTIONS(10771), 1, anon_sym_LBRACE, + ACTIONS(10773), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [271435] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, + ACTIONS(10775), 1, + anon_sym_try, + ACTIONS(10783), 1, + anon_sym_SEMI, + STATE(2160), 1, + sym_compound_statement, + STATE(8287), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4141), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10423), 9, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [271462] = 3, + STATE(2159), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [272200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5915), 1, + ACTIONS(10787), 1, anon_sym_LBRACK, - ACTIONS(5917), 12, + ACTIONS(10785), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -585633,74 +589225,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [271483] = 3, + [272221] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5919), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(5921), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(10678), 1, + anon_sym_COLON, + ACTIONS(10789), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(10791), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, + ACTIONS(10793), 1, anon_sym_try, - [271504] = 5, + STATE(956), 1, + sym_compound_statement, + STATE(8053), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(969), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [272258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10651), 1, + ACTIONS(10795), 1, anon_sym_RPAREN, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [271529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5927), 1, - anon_sym_LBRACK, - ACTIONS(5929), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [271550] = 6, + [272283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4113), 1, + STATE(4136), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10413), 9, + ACTIONS(10515), 9, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -585710,18 +589292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [271577] = 6, + [272310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4113), 1, + STATE(4136), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10417), 9, + ACTIONS(10541), 9, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -585731,56 +589313,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [271604] = 3, + [272337] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 1, + ACTIONS(7915), 1, + anon_sym_DASH_GT, + ACTIONS(7955), 1, + anon_sym_requires, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(5964), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(6933), 1, + sym_trailing_return_type, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 3, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [271625] = 11, + [272370] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, - anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10633), 1, - anon_sym_EQ, - ACTIONS(10635), 1, - anon_sym_try, - ACTIONS(10653), 1, - anon_sym_SEMI, - STATE(417), 1, - sym_compound_statement, - STATE(8211), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(426), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [271662] = 3, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(10703), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_COLON_COLON, + STATE(6804), 1, + sym__scope_resolution, + STATE(8181), 1, + sym_operator_name, + STATE(8212), 1, + sym_field_initializer, + STATE(7487), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [272407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10657), 1, + ACTIONS(5014), 1, anon_sym_LBRACK, - ACTIONS(10655), 12, + ACTIONS(5019), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -585793,12 +589381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [271683] = 3, + [272428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 1, + ACTIONS(5014), 1, anon_sym_LBRACK, - ACTIONS(6007), 12, + ACTIONS(5019), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -585811,12 +589399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [271704] = 3, + [272449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, + ACTIONS(5014), 1, anon_sym_LBRACK, - ACTIONS(5026), 12, + ACTIONS(5019), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -585829,32 +589417,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [271725] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10659), 1, - anon_sym_RPAREN, - STATE(6488), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(10350), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10352), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [271750] = 3, + [272470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 1, + ACTIONS(5014), 1, anon_sym_LBRACK, - ACTIONS(5936), 12, + ACTIONS(5019), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -585867,154 +589435,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [271771] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(998), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, - anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10661), 1, - anon_sym_SEMI, - ACTIONS(10663), 1, - anon_sym_EQ, - ACTIONS(10665), 1, - anon_sym_try, - STATE(938), 1, - sym_compound_statement, - STATE(8380), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(937), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [271808] = 11, + [272491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(796), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(10799), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10645), 1, - anon_sym_EQ, - ACTIONS(10647), 1, - anon_sym_try, - ACTIONS(10667), 1, - anon_sym_SEMI, - STATE(918), 1, - sym_compound_statement, - STATE(8185), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(914), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [271845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5261), 1, - sym_identifier, - ACTIONS(5263), 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, - [271866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5230), 1, - sym_identifier, - ACTIONS(5232), 12, + ACTIONS(10797), 12, + 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, - [271887] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4113), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10423), 9, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [271914] = 12, + [272512] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10583), 1, + ACTIONS(10705), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10801), 1, sym_identifier, - ACTIONS(10671), 1, + ACTIONS(10803), 1, anon_sym_template, - STATE(6768), 1, + STATE(6804), 1, sym__scope_resolution, - STATE(8117), 1, - sym_qualified_field_identifier, - STATE(8118), 1, - sym_dependent_field_identifier, - STATE(8144), 1, + STATE(8055), 1, sym_template_method, - STATE(8388), 1, + STATE(8056), 1, + sym_dependent_field_identifier, + STATE(8065), 1, + sym_qualified_field_identifier, + STATE(8181), 1, sym_operator_name, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [271953] = 6, + [272551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4113), 1, + STATE(4136), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10421), 9, + ACTIONS(10523), 9, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -586024,58 +589501,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [271980] = 5, + [272578] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10673), 1, + ACTIONS(10805), 1, anon_sym_RPAREN, - STATE(6488), 2, + STATE(6479), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(10350), 5, + ACTIONS(10415), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10352), 5, + ACTIONS(10417), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [272005] = 11, + [272603] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - ACTIONS(10675), 1, - anon_sym_SEMI, - ACTIONS(10677), 1, + ACTIONS(10727), 1, anon_sym_LBRACE, - ACTIONS(10679), 1, + ACTIONS(10729), 1, anon_sym_EQ, - ACTIONS(10681), 1, + ACTIONS(10731), 1, anon_sym_try, - STATE(2297), 1, + ACTIONS(10807), 1, + anon_sym_SEMI, + STATE(2505), 1, sym_compound_statement, - STATE(8220), 1, + STATE(8199), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2296), 3, + STATE(2506), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [272042] = 3, + [272640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(6257), 1, anon_sym_LBRACK, - ACTIONS(5388), 12, + ACTIONS(6259), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -586088,152 +589565,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [272063] = 11, + [272661] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, - anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10683), 1, - anon_sym_SEMI, - ACTIONS(10685), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, - anon_sym_EQ, - ACTIONS(10689), 1, - anon_sym_try, - STATE(2066), 1, - sym_compound_statement, - STATE(8278), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(9650), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2064), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [272100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5923), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - ACTIONS(5925), 12, + STATE(4131), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10501), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_try, - [272121] = 3, + anon_sym_requires, + [272688] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10693), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, anon_sym_LBRACK, - ACTIONS(10691), 12, + STATE(4131), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10541), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_try, - [272142] = 3, + anon_sym_requires, + [272715] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, anon_sym_LBRACK, - ACTIONS(4970), 12, + STATE(4131), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10515), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_try, - [272163] = 3, + anon_sym_requires, + [272742] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 1, - anon_sym_LBRACK, - ACTIONS(4970), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5069), 1, anon_sym_LPAREN2, + ACTIONS(8207), 1, + anon_sym_LBRACK, + ACTIONS(9362), 1, + anon_sym_STAR, + ACTIONS(9364), 1, + anon_sym_AMP_AMP, + ACTIONS(9366), 1, + anon_sym_AMP, + STATE(3782), 1, + sym_parameter_list, + STATE(6627), 1, + sym__function_declarator_seq, + STATE(7128), 1, + sym__abstract_declarator, + STATE(6663), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [272777] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1112), 1, + anon_sym_LBRACE, + ACTIONS(7923), 1, + anon_sym_LBRACK, + ACTIONS(10676), 1, + anon_sym_EQ, + ACTIONS(10678), 1, + anon_sym_COLON, + ACTIONS(10680), 1, + anon_sym_try, + ACTIONS(10809), 1, anon_sym_SEMI, + STATE(857), 1, + sym_compound_statement, + STATE(8315), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, + STATE(856), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [272814] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7923), 1, + anon_sym_LBRACK, + ACTIONS(10678), 1, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, + ACTIONS(10753), 1, + anon_sym_EQ, + ACTIONS(10755), 1, anon_sym_try, - [272184] = 3, + ACTIONS(10811), 1, + anon_sym_SEMI, + STATE(390), 1, + sym_compound_statement, + STATE(8365), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(389), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [272851] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, anon_sym_LBRACK, - ACTIONS(4970), 12, + STATE(4131), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10505), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_try, - [272205] = 9, + anon_sym_requires, + [272878] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7798), 1, + ACTIONS(7915), 1, anon_sym_DASH_GT, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(9279), 1, + ACTIONS(7955), 1, anon_sym_requires, - STATE(6948), 1, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(6988), 1, sym_trailing_return_type, - ACTIONS(8934), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6405), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 3, + ACTIONS(9008), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [272238] = 3, + [272911] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4131), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10517), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [272938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 1, + ACTIONS(5939), 1, anon_sym_LBRACK, - ACTIONS(4970), 12, + ACTIONS(5941), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -586246,2391 +589789,2138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [272259] = 11, + [272959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, + ACTIONS(5935), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10685), 1, + ACTIONS(5937), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(10687), 1, anon_sym_EQ, - ACTIONS(10689), 1, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - ACTIONS(10695), 1, - anon_sym_SEMI, - STATE(2127), 1, - sym_compound_statement, - STATE(8305), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2128), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [272296] = 11, + [272980] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, + ACTIONS(898), 1, + anon_sym_LBRACE, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - ACTIONS(10677), 1, - anon_sym_LBRACE, - ACTIONS(10679), 1, + ACTIONS(10699), 1, anon_sym_EQ, - ACTIONS(10681), 1, + ACTIONS(10701), 1, anon_sym_try, - ACTIONS(10697), 1, + ACTIONS(10813), 1, anon_sym_SEMI, - STATE(2366), 1, + STATE(899), 1, sym_compound_statement, - STATE(8239), 1, + STATE(8220), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2358), 3, + STATE(887), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [272333] = 3, + [273017] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10701), 1, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10529), 1, anon_sym_LBRACK, - ACTIONS(10699), 12, + STATE(6787), 1, + sym_parameter_list, + STATE(6860), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5895), 7, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [272354] = 11, + [273046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, anon_sym_LBRACK, - ACTIONS(10573), 1, + STATE(4131), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10521), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(10575), 1, anon_sym_EQ, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10579), 1, - anon_sym_try, - ACTIONS(10703), 1, - anon_sym_SEMI, - STATE(2577), 1, - sym_compound_statement, - STATE(8285), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2576), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [272391] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(7800), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - STATE(6908), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [272424] = 11, + anon_sym_GT2, + anon_sym_requires, + [273073] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - ACTIONS(10639), 1, + ACTIONS(10791), 1, anon_sym_EQ, - ACTIONS(10641), 1, + ACTIONS(10793), 1, anon_sym_try, - ACTIONS(10705), 1, + ACTIONS(10815), 1, anon_sym_SEMI, - STATE(975), 1, + STATE(1034), 1, sym_compound_statement, - STATE(8346), 1, + STATE(8285), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(988), 3, + STATE(1033), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [272461] = 3, + [273110] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 1, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10529), 1, anon_sym_LBRACK, - ACTIONS(4970), 12, + STATE(6787), 1, + sym_parameter_list, + STATE(6860), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5899), 7, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [272482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5253), 1, - sym_identifier, - ACTIONS(5255), 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, - [272503] = 9, + [273139] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7798), 1, + ACTIONS(7915), 1, anon_sym_DASH_GT, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9375), 1, + ACTIONS(9388), 1, anon_sym_requires, - STATE(6892), 1, + STATE(6908), 1, sym_trailing_return_type, - ACTIONS(9128), 2, + ACTIONS(9037), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6412), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 3, + ACTIONS(9008), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [272536] = 3, + [273172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, anon_sym_LBRACK, - ACTIONS(4970), 12, + STATE(4131), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10523), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [272557] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(7800), 1, - anon_sym_requires, - ACTIONS(9006), 1, - anon_sym_LBRACK, - STATE(6904), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [272590] = 9, + anon_sym_GT2, + anon_sym_requires, + [273199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(9353), 1, + ACTIONS(5014), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_requires, - STATE(6881), 1, - sym_trailing_return_type, - ACTIONS(9367), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6425), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 3, + ACTIONS(5019), 12, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - [272623] = 9, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [273220] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(10053), 1, - anon_sym_LBRACK, - ACTIONS(10707), 1, + ACTIONS(7808), 1, anon_sym_requires, - STATE(6898), 1, - sym_trailing_return_type, - ACTIONS(10055), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6653), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 3, + ACTIONS(10218), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [272656] = 11, + anon_sym_LBRACK, + anon_sym_GT2, + [273246] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(998), 1, + ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - ACTIONS(10663), 1, + ACTIONS(10735), 1, anon_sym_EQ, - ACTIONS(10665), 1, + ACTIONS(10737), 1, anon_sym_try, - ACTIONS(10710), 1, - anon_sym_SEMI, - STATE(861), 1, + STATE(545), 1, sym_compound_statement, - STATE(8344), 1, + STATE(8062), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(832), 3, + STATE(547), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [272693] = 9, + [273280] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7798), 1, - anon_sym_DASH_GT, - ACTIONS(7800), 1, - anon_sym_requires, - ACTIONS(10053), 1, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(7923), 1, anon_sym_LBRACK, - STATE(6915), 1, - sym_trailing_return_type, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, + ACTIONS(10678), 1, anon_sym_COLON, - [272726] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10712), 1, - anon_sym_RPAREN, - STATE(6488), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(10350), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10352), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [272751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6238), 1, - anon_sym_LBRACK, - ACTIONS(6240), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(10753), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, + ACTIONS(10755), 1, anon_sym_try, - [272772] = 11, + STATE(390), 1, + sym_compound_statement, + STATE(8365), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(389), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [273314] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6385), 1, + ACTIONS(6610), 1, anon_sym_LBRACE, - ACTIONS(7742), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(9318), 1, + ACTIONS(9408), 1, sym_identifier, - STATE(2134), 1, + STATE(2979), 1, sym_template_type, - STATE(5916), 1, + STATE(3100), 1, sym_enumerator_list, - STATE(7025), 1, - sym__scope_resolution, - STATE(5786), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [272808] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(5312), 1, - anon_sym_virtual, - ACTIONS(9312), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(6967), 1, - sym_virtual, - STATE(7036), 1, + STATE(7067), 1, sym__scope_resolution, - STATE(7414), 2, + STATE(4511), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [272844] = 10, + [273350] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(998), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(7753), 1, + anon_sym_requires, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + STATE(6651), 1, + sym_trailing_return_type, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6649), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 3, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(10577), 1, anon_sym_COLON, - ACTIONS(10663), 1, - anon_sym_EQ, - ACTIONS(10665), 1, - anon_sym_try, - STATE(938), 1, - sym_compound_statement, - STATE(8380), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(937), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [272878] = 6, + [273380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(10817), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(10819), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6167), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10400), 1, anon_sym_LBRACK, - STATE(4217), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10415), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [272904] = 6, + [273402] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10714), 1, + ACTIONS(7753), 1, anon_sym_requires, - ACTIONS(10301), 2, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + STATE(6636), 1, + sym_trailing_return_type, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6667), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10061), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9107), 3, anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_GT2, - [272930] = 7, + anon_sym_COLON, + [273432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5809), 1, - anon_sym_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - STATE(2398), 1, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4188), 1, sym_parameter_list, - STATE(6913), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5847), 6, - anon_sym_COMMA, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10523), 8, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, anon_sym_try, - [272958] = 11, + anon_sym_requires, + [273458] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6656), 1, + ACTIONS(7702), 1, anon_sym_LBRACE, - ACTIONS(7804), 1, + ACTIONS(7903), 1, anon_sym_COLON_COLON, - ACTIONS(9326), 1, + ACTIONS(9402), 1, sym_identifier, - STATE(2997), 1, + STATE(3113), 1, sym_template_type, - STATE(3012), 1, + STATE(4372), 1, sym_enumerator_list, - STATE(7029), 1, + STATE(7036), 1, sym__scope_resolution, - STATE(5484), 2, + STATE(5193), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [272994] = 8, + [273494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4119), 1, + STATE(4188), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6464), 1, sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10484), 5, - anon_sym_COMMA, + ACTIONS(10521), 8, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [273520] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10823), 1, + anon_sym_LT, + ACTIONS(10825), 1, + anon_sym_LBRACK, + STATE(6915), 1, + sym_template_argument_list, + ACTIONS(10821), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [273024] = 11, + anon_sym_COLON, + anon_sym_try, + [273544] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6662), 1, - anon_sym_LBRACE, - ACTIONS(9136), 1, + ACTIONS(5077), 1, anon_sym_COLON_COLON, - ACTIONS(9310), 1, + ACTIONS(7702), 1, + anon_sym_LBRACE, + ACTIONS(9404), 1, sym_identifier, - STATE(3013), 1, + STATE(3113), 1, sym_template_type, - STATE(3490), 1, + STATE(4355), 1, sym_enumerator_list, - STATE(7023), 1, + STATE(7073), 1, sym__scope_resolution, - STATE(3085), 2, + STATE(4128), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [273060] = 8, + [273580] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(10823), 1, + anon_sym_LT, + ACTIONS(10829), 1, anon_sym_LBRACK, - STATE(4119), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10507), 5, + STATE(6972), 1, + sym_template_argument_list, + ACTIONS(10827), 9, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [273090] = 11, + anon_sym_COLON, + anon_sym_try, + [273604] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6556), 1, - anon_sym_LBRACE, - ACTIONS(9225), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(9316), 1, + ACTIONS(9027), 1, + anon_sym_LBRACE, + ACTIONS(9398), 1, sym_identifier, - STATE(2929), 1, + STATE(3113), 1, sym_template_type, - STATE(3149), 1, + STATE(5410), 1, sym_enumerator_list, - STATE(7032), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(2916), 2, + STATE(5696), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [273126] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7662), 1, - anon_sym_requires, - ACTIONS(7760), 1, - anon_sym_DASH_GT, - STATE(6648), 1, - sym_trailing_return_type, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6645), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [273156] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7662), 1, - anon_sym_requires, - ACTIONS(7760), 1, - anon_sym_DASH_GT, - STATE(6685), 1, - sym_trailing_return_type, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6678), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [273186] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5809), 1, - anon_sym_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - STATE(2398), 1, - sym_parameter_list, - STATE(6913), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5813), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_try, - [273214] = 11, + [273640] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6531), 1, + ACTIONS(7714), 1, anon_sym_LBRACE, - ACTIONS(9066), 1, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(9298), 1, + ACTIONS(9424), 1, sym_identifier, - STATE(2903), 1, + STATE(4141), 1, sym_template_type, - STATE(3112), 1, + STATE(4370), 1, sym_enumerator_list, - STATE(7002), 1, + STATE(7055), 1, sym__scope_resolution, - STATE(2892), 2, + STATE(4140), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [273250] = 11, + [273676] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7619), 1, + ACTIONS(7702), 1, anon_sym_LBRACE, - ACTIONS(9291), 1, - sym_identifier, - ACTIONS(9308), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - STATE(3104), 1, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, sym_template_type, - STATE(4316), 1, + STATE(4372), 1, sym_enumerator_list, - STATE(7005), 1, + STATE(7046), 1, sym__scope_resolution, - STATE(4683), 2, + STATE(4567), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [273286] = 5, + [273712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_LBRACK, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - STATE(6333), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5956), 8, - anon_sym_COMMA, + ACTIONS(9650), 1, anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4188), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10517), 8, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [273310] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7760), 1, - anon_sym_DASH_GT, - ACTIONS(9426), 1, - anon_sym_requires, - STATE(6662), 1, - sym_trailing_return_type, - ACTIONS(9355), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6645), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [273340] = 8, + anon_sym_try, + anon_sym_requires, + [273738] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7760), 1, - anon_sym_DASH_GT, - ACTIONS(9285), 1, - anon_sym_requires, - STATE(6689), 1, - sym_trailing_return_type, - ACTIONS(9022), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6587), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 3, - anon_sym_LPAREN2, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5833), 1, anon_sym_LBRACK, - anon_sym_COLON, - [273370] = 11, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + STATE(2499), 1, + sym_parameter_list, + STATE(6918), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5827), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_try, + [273766] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5682), 1, + ACTIONS(6397), 1, anon_sym_LBRACE, - ACTIONS(9102), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(9420), 1, sym_identifier, - STATE(2102), 1, + STATE(2150), 1, sym_template_type, - STATE(2310), 1, + STATE(5938), 1, sym_enumerator_list, - STATE(7028), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(2796), 2, + STATE(5742), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [273406] = 11, + [273802] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3936), 1, + ACTIONS(3934), 1, anon_sym_COLON_COLON, - ACTIONS(5312), 1, + ACTIONS(5344), 1, anon_sym_virtual, - ACTIONS(9312), 1, + ACTIONS(9398), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(6996), 1, + STATE(6994), 1, sym_virtual, - STATE(7036), 1, + STATE(7038), 1, sym__scope_resolution, - STATE(7857), 2, + STATE(7364), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [273442] = 11, + [273838] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4188), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10505), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [273864] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6345), 1, + ACTIONS(6558), 1, anon_sym_LBRACE, - ACTIONS(9203), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(9332), 1, + ACTIONS(9422), 1, sym_identifier, - STATE(2790), 1, - sym_template_type, STATE(2917), 1, + sym_template_type, + STATE(3116), 1, sym_enumerator_list, - STATE(7024), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(2774), 2, + STATE(2915), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [273478] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, - anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10633), 1, - anon_sym_EQ, - ACTIONS(10635), 1, - anon_sym_try, - STATE(417), 1, - sym_compound_statement, - STATE(8211), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(426), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [273512] = 8, + [273900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7760), 1, - anon_sym_DASH_GT, - ACTIONS(9017), 1, + ACTIONS(9428), 1, anon_sym_requires, - STATE(6589), 1, - sym_trailing_return_type, - ACTIONS(8914), 2, + ACTIONS(9111), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 3, + ACTIONS(9107), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_COLON, - [273542] = 10, + anon_sym_GT2, + [273926] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(998), 1, + ACTIONS(898), 1, anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - ACTIONS(10663), 1, + ACTIONS(10699), 1, anon_sym_EQ, - ACTIONS(10665), 1, + ACTIONS(10701), 1, anon_sym_try, - STATE(861), 1, + STATE(899), 1, sym_compound_statement, - STATE(8344), 1, + STATE(8220), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(832), 3, + STATE(887), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [273576] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(6488), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(10350), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10352), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [273598] = 11, + [273960] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(8930), 1, + ACTIONS(7702), 1, anon_sym_LBRACE, - ACTIONS(9306), 1, + ACTIONS(9406), 1, sym_identifier, - STATE(3104), 1, + ACTIONS(9426), 1, + anon_sym_COLON_COLON, + STATE(3113), 1, sym_template_type, - STATE(5402), 1, + STATE(4355), 1, sym_enumerator_list, - STATE(7045), 1, + STATE(7052), 1, sym__scope_resolution, - STATE(5311), 2, + STATE(4710), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [273634] = 10, + [273996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(796), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10645), 1, - anon_sym_EQ, - ACTIONS(10647), 1, + STATE(4188), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10515), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, anon_sym_try, - STATE(918), 1, - sym_compound_statement, - STATE(8185), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, + anon_sym_requires, + [274022] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4188), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10541), 8, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(914), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [273668] = 11, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [274048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(7619), 1, + ACTIONS(10819), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6235), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [274068] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(6479), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(10415), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10417), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [274090] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4188), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10501), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(7778), 1, - anon_sym_COLON_COLON, - ACTIONS(9306), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(4358), 1, - sym_enumerator_list, - STATE(7045), 1, - sym__scope_resolution, - STATE(5096), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [273704] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [274116] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7808), 1, + anon_sym_requires, + ACTIONS(7439), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6649), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [274142] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5682), 1, - anon_sym_LBRACE, - ACTIONS(9102), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(9330), 1, + ACTIONS(7702), 1, + anon_sym_LBRACE, + ACTIONS(9406), 1, sym_identifier, - STATE(2102), 1, + STATE(3113), 1, sym_template_type, - STATE(2310), 1, + STATE(4355), 1, sym_enumerator_list, - STATE(7028), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(2631), 2, + STATE(4487), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [273740] = 11, + [274178] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(7703), 1, + ACTIONS(6016), 1, + anon_sym_LBRACK, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + STATE(6373), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6018), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9171), 1, - anon_sym_COLON_COLON, - ACTIONS(9344), 1, - sym_identifier, - STATE(4257), 1, - sym_template_type, - STATE(4484), 1, - sym_enumerator_list, - STATE(7006), 1, - sym__scope_resolution, - STATE(4274), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [273776] = 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [274202] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6385), 1, + ACTIONS(6592), 1, anon_sym_LBRACE, - ACTIONS(9088), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(9293), 1, + ACTIONS(9439), 1, sym_identifier, - STATE(2134), 1, + STATE(2960), 1, sym_template_type, - STATE(2860), 1, + STATE(3244), 1, sym_enumerator_list, STATE(7040), 1, sym__scope_resolution, - STATE(4289), 2, + STATE(2946), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [273812] = 11, + [274238] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + ACTIONS(9128), 1, + anon_sym_requires, + STATE(6726), 1, + sym_trailing_return_type, + ACTIONS(9021), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [274268] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7619), 1, - anon_sym_LBRACE, - ACTIONS(7810), 1, + ACTIONS(3934), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(5344), 1, + anon_sym_virtual, + ACTIONS(9398), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(4358), 1, - sym_enumerator_list, - STATE(7031), 1, + STATE(7013), 1, + sym_virtual, + STATE(7038), 1, sym__scope_resolution, - STATE(4542), 2, + STATE(7751), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [273848] = 6, + [274304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10833), 1, anon_sym_LBRACK, - STATE(4217), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10398), 8, - anon_sym_RPAREN, + STATE(6373), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10831), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [273874] = 6, + [274328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10490), 1, + ACTIONS(7808), 1, anon_sym_requires, - ACTIONS(10203), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6678), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 5, + ACTIONS(9107), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [273900] = 11, + [274354] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6385), 1, + ACTIONS(6685), 1, anon_sym_LBRACE, - ACTIONS(7736), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(9314), 1, + ACTIONS(9412), 1, sym_identifier, - STATE(2134), 1, + STATE(3036), 1, sym_template_type, - STATE(2860), 1, + STATE(3506), 1, sym_enumerator_list, - STATE(7043), 1, + STATE(7041), 1, sym__scope_resolution, - STATE(5542), 2, + STATE(3065), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [273936] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7662), 1, - anon_sym_requires, - ACTIONS(7760), 1, - anon_sym_DASH_GT, - STATE(6635), 1, - sym_trailing_return_type, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [273966] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, - anon_sym_LBRACE, - ACTIONS(7849), 1, - anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10645), 1, - anon_sym_EQ, - ACTIONS(10647), 1, - anon_sym_try, - STATE(952), 1, - sym_compound_statement, - STATE(8146), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(916), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [274000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10717), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6208), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [274020] = 7, + [274390] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5809), 1, + ACTIONS(10670), 1, anon_sym_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - STATE(2398), 1, - sym_parameter_list, - STATE(6913), 2, + STATE(6373), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(5803), 6, + ACTIONS(10668), 8, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_try, - [274048] = 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [274414] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(7619), 1, + ACTIONS(6610), 1, anon_sym_LBRACE, - ACTIONS(9291), 1, + ACTIONS(7949), 1, + anon_sym_COLON_COLON, + ACTIONS(9394), 1, sym_identifier, - STATE(3104), 1, + STATE(2979), 1, sym_template_type, - STATE(4316), 1, + STATE(3100), 1, sym_enumerator_list, - STATE(7030), 1, + STATE(7064), 1, sym__scope_resolution, - STATE(4422), 2, + STATE(5553), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [274084] = 11, + [274450] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5045), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(7619), 1, + ACTIONS(9095), 1, anon_sym_LBRACE, - ACTIONS(9324), 1, + ACTIONS(9414), 1, sym_identifier, - STATE(3104), 1, + STATE(5358), 1, sym_template_type, - STATE(4316), 1, + STATE(5550), 1, sym_enumerator_list, - STATE(7046), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(4115), 2, + STATE(5398), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [274120] = 8, + [274486] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - STATE(4119), 1, + STATE(4152), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10557), 5, + ACTIONS(10581), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - [274150] = 10, + [274516] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(379), 1, + ACTIONS(1112), 1, anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10589), 1, + ACTIONS(10676), 1, anon_sym_EQ, - ACTIONS(10591), 1, + ACTIONS(10678), 1, + anon_sym_COLON, + ACTIONS(10680), 1, anon_sym_try, - STATE(586), 1, + STATE(879), 1, sym_compound_statement, - STATE(8377), 1, + STATE(8346), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(594), 3, + STATE(875), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [274184] = 6, + [274550] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4217), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10423), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3934), 1, + anon_sym_COLON_COLON, + ACTIONS(5344), 1, + anon_sym_virtual, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(6992), 1, + sym_virtual, + STATE(7038), 1, + sym__scope_resolution, + STATE(7793), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [274586] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3934), 1, + anon_sym_COLON_COLON, + ACTIONS(5344), 1, + anon_sym_virtual, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(6989), 1, + sym_virtual, + STATE(7038), 1, + sym__scope_resolution, + STATE(7397), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [274622] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7808), 1, + anon_sym_requires, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [274210] = 10, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6638), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [274648] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(379), 1, + ACTIONS(1112), 1, anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10589), 1, + ACTIONS(10676), 1, anon_sym_EQ, - ACTIONS(10591), 1, + ACTIONS(10678), 1, + anon_sym_COLON, + ACTIONS(10680), 1, anon_sym_try, - STATE(547), 1, + STATE(857), 1, sym_compound_statement, - STATE(8411), 1, + STATE(8315), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(581), 3, + STATE(856), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [274244] = 8, + [274682] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(5833), 1, anon_sym_LBRACK, - STATE(4119), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + STATE(2499), 1, sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, + STATE(6918), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10474), 5, + ACTIONS(5899), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [274274] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7714), 1, - anon_sym_requires, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6667), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10061), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [274300] = 10, + anon_sym_try, + [274710] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - ACTIONS(10639), 1, + ACTIONS(10791), 1, anon_sym_EQ, - ACTIONS(10641), 1, + ACTIONS(10793), 1, anon_sym_try, - STATE(975), 1, + STATE(1034), 1, sym_compound_statement, - STATE(8346), 1, + STATE(8285), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(988), 3, + STATE(1033), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [274334] = 6, + [274744] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4217), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10413), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(7808), 1, anon_sym_requires, - [274360] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4217), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10417), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [274386] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(7824), 1, - anon_sym_COLON_COLON, - ACTIONS(8986), 1, - anon_sym_LBRACE, - ACTIONS(9328), 1, - sym_identifier, - STATE(5330), 1, - sym_template_type, - STATE(5501), 1, - sym_enumerator_list, - STATE(7022), 1, - sym__scope_resolution, - STATE(5353), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [274422] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10717), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10719), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6196), 8, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [274444] = 6, + [274770] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7714), 1, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + ACTIONS(9382), 1, anon_sym_requires, - ACTIONS(7363), 2, + STATE(6664), 1, + sym_trailing_return_type, + ACTIONS(9111), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6678), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9107), 3, anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_GT2, - [274470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10723), 1, - anon_sym_LT, - ACTIONS(10725), 1, - anon_sym_LBRACK, - STATE(6952), 1, - sym_template_argument_list, - ACTIONS(10721), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - [274494] = 6, + [274800] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7714), 1, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + ACTIONS(9529), 1, anon_sym_requires, - ACTIONS(7363), 2, + STATE(6673), 1, + sym_trailing_return_type, + ACTIONS(9455), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [274520] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9451), 3, anon_sym_LPAREN2, - ACTIONS(9783), 1, anon_sym_LBRACK, - STATE(4119), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10505), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - [274550] = 6, + anon_sym_COLON, + [274830] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4217), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10419), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(7753), 1, + anon_sym_requires, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + STATE(6696), 1, + sym_trailing_return_type, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [274576] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 3, anon_sym_LPAREN2, - ACTIONS(10400), 1, anon_sym_LBRACK, - STATE(4217), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10421), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [274602] = 6, + anon_sym_COLON, + [274860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9166), 1, + ACTIONS(10835), 1, anon_sym_requires, - ACTIONS(8914), 2, + ACTIONS(10423), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6653), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8908), 5, + ACTIONS(10218), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [274628] = 11, + [274886] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3936), 1, + ACTIONS(7813), 1, + anon_sym_LBRACE, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(5312), 1, - anon_sym_virtual, - ACTIONS(9312), 1, + ACTIONS(9396), 1, sym_identifier, - STATE(3104), 1, + STATE(4306), 1, sym_template_type, - STATE(6985), 1, - sym_virtual, - STATE(7036), 1, + STATE(4555), 1, + sym_enumerator_list, + STATE(7057), 1, sym__scope_resolution, - STATE(7548), 2, + STATE(4338), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [274664] = 5, + [274922] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10729), 1, - anon_sym_LBRACK, - STATE(6333), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10727), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(5659), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [274688] = 7, + ACTIONS(9252), 1, + anon_sym_COLON_COLON, + ACTIONS(9400), 1, + sym_identifier, + STATE(2181), 1, + sym_template_type, + STATE(2288), 1, + sym_enumerator_list, + STATE(7033), 1, + sym__scope_resolution, + STATE(2611), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [274958] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5809), 1, - anon_sym_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - STATE(2398), 1, - sym_parameter_list, - STATE(6913), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5880), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(6397), 1, anon_sym_LBRACE, - anon_sym_try, - [274716] = 6, + ACTIONS(7837), 1, + anon_sym_COLON_COLON, + ACTIONS(9449), 1, + sym_identifier, + STATE(2150), 1, + sym_template_type, + STATE(2886), 1, + sym_enumerator_list, + STATE(7068), 1, + sym__scope_resolution, + STATE(5511), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [274994] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9498), 1, + ACTIONS(10623), 1, anon_sym_requires, - ACTIONS(9355), 2, + ACTIONS(10303), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6645), 2, + STATE(6649), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9351), 5, + ACTIONS(10194), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [274742] = 11, + [275020] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3936), 1, + ACTIONS(5659), 1, + anon_sym_LBRACE, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(5312), 1, - anon_sym_virtual, - ACTIONS(9312), 1, + ACTIONS(9400), 1, sym_identifier, - STATE(3104), 1, + STATE(2181), 1, sym_template_type, - STATE(6980), 1, - sym_virtual, - STATE(7036), 1, + STATE(2288), 1, + sym_enumerator_list, + STATE(7033), 1, sym__scope_resolution, - STATE(7962), 2, + STATE(2820), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [274778] = 10, + [275056] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(291), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(7903), 1, + anon_sym_COLON_COLON, + ACTIONS(9027), 1, anon_sym_LBRACE, - ACTIONS(7849), 1, - anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_COLON, - ACTIONS(10633), 1, - anon_sym_EQ, - ACTIONS(10635), 1, - anon_sym_try, - STATE(422), 1, - sym_compound_statement, - STATE(8203), 1, - sym_field_initializer_list, - ACTIONS(5026), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(419), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [274812] = 6, + ACTIONS(9402), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(5410), 1, + sym_enumerator_list, + STATE(7036), 1, + sym__scope_resolution, + STATE(5336), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [275092] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7714), 1, + ACTIONS(9601), 1, anon_sym_requires, - ACTIONS(7363), 2, + ACTIONS(9455), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 5, + ACTIONS(9451), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [274838] = 11, + [275118] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7845), 1, + anon_sym_DASH_GT, + ACTIONS(10564), 1, + anon_sym_requires, + STATE(6675), 1, + sym_trailing_return_type, + ACTIONS(10303), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6649), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [275148] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7625), 1, + ACTIONS(6261), 1, anon_sym_LBRACE, - ACTIONS(9044), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(9334), 1, + ACTIONS(9431), 1, sym_identifier, - STATE(4133), 1, + STATE(2846), 1, sym_template_type, - STATE(4359), 1, + STATE(2950), 1, sym_enumerator_list, - STATE(7041), 1, + STATE(7059), 1, sym__scope_resolution, - STATE(4109), 2, + STATE(2810), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [274874] = 5, + [275184] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10495), 1, - anon_sym_LBRACK, - STATE(6333), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10493), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(898), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [274898] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7760), 1, - anon_sym_DASH_GT, - ACTIONS(10402), 1, - anon_sym_requires, - STATE(6665), 1, - sym_trailing_return_type, - ACTIONS(10203), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6678), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 3, - anon_sym_LPAREN2, + ACTIONS(7923), 1, anon_sym_LBRACK, + ACTIONS(10678), 1, anon_sym_COLON, - [274928] = 6, + ACTIONS(10699), 1, + anon_sym_EQ, + ACTIONS(10701), 1, + anon_sym_try, + STATE(864), 1, + sym_compound_statement, + STATE(8119), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(862), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [275218] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9295), 1, - anon_sym_requires, - ACTIONS(9022), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6587), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, + ACTIONS(9930), 1, anon_sym_LBRACK, + STATE(4152), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10597), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [274954] = 6, + [275248] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7714), 1, - anon_sym_requires, - ACTIONS(7363), 2, - anon_sym_final, - anon_sym_override, - STATE(6486), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, + ACTIONS(9930), 1, anon_sym_LBRACK, + STATE(4152), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10610), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [274980] = 11, + [275278] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(6656), 1, + ACTIONS(6397), 1, anon_sym_LBRACE, - ACTIONS(9030), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(9320), 1, + ACTIONS(9418), 1, sym_identifier, - STATE(2997), 1, + STATE(2150), 1, sym_template_type, - STATE(3012), 1, + STATE(2886), 1, sym_enumerator_list, - STATE(7027), 1, + STATE(7066), 1, sym__scope_resolution, - STATE(4492), 2, + STATE(4337), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [275016] = 11, + [275314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - ACTIONS(8930), 1, - anon_sym_LBRACE, - ACTIONS(9312), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(5402), 1, - sym_enumerator_list, - STATE(7031), 1, - sym__scope_resolution, - STATE(5725), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [275052] = 5, + ACTIONS(9225), 1, + anon_sym_requires, + ACTIONS(9021), 2, + anon_sym_final, + anon_sym_override, + STATE(6520), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6705), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [275340] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10723), 1, - anon_sym_LT, - ACTIONS(10733), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5833), 1, anon_sym_LBRACK, - STATE(6943), 1, - sym_template_argument_list, - ACTIONS(10731), 9, - anon_sym_COMMA, + ACTIONS(9650), 1, anon_sym_LPAREN2, + STATE(2499), 1, + sym_parameter_list, + STATE(6918), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5895), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_try, + [275368] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(7923), 1, + anon_sym_LBRACK, + ACTIONS(10678), 1, + anon_sym_COLON, + ACTIONS(10735), 1, anon_sym_EQ, + ACTIONS(10737), 1, + anon_sym_try, + STATE(564), 1, + sym_compound_statement, + STATE(8141), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(565), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [275402] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(7923), 1, + anon_sym_LBRACK, + ACTIONS(10678), 1, anon_sym_COLON, + ACTIONS(10753), 1, + anon_sym_EQ, + ACTIONS(10755), 1, + anon_sym_try, + STATE(369), 1, + sym_compound_statement, + STATE(8426), 1, + sym_field_initializer_list, + ACTIONS(5056), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(373), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [275436] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5833), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + STATE(2499), 1, + sym_parameter_list, + STATE(6918), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(5889), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_try, - [275076] = 10, + [275464] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(7849), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - ACTIONS(10639), 1, + ACTIONS(10791), 1, anon_sym_EQ, - ACTIONS(10641), 1, + ACTIONS(10793), 1, anon_sym_try, - STATE(984), 1, + STATE(956), 1, sym_compound_statement, - STATE(8130), 1, + STATE(8053), 1, sym_field_initializer_list, - ACTIONS(5026), 2, + ACTIONS(5056), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(978), 3, + STATE(969), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [275110] = 8, + [275498] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7662), 1, + ACTIONS(7753), 1, anon_sym_requires, - ACTIONS(7760), 1, + ACTIONS(7845), 1, anon_sym_DASH_GT, - STATE(6590), 1, + STATE(6645), 1, sym_trailing_return_type, - ACTIONS(7363), 2, + ACTIONS(7439), 2, anon_sym_final, anon_sym_override, - STATE(6486), 2, + STATE(6520), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6587), 2, + STATE(6638), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 3, + ACTIONS(9451), 3, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [275140] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10735), 1, - sym_identifier, - ACTIONS(10737), 1, - aux_sym_preproc_if_token1, - ACTIONS(10741), 1, - anon_sym_RBRACE, - STATE(8116), 1, - sym_enumerator, - ACTIONS(10739), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(9077), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7010), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [275169] = 8, + [275528] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, - sym_identifier, - ACTIONS(10737), 1, - aux_sym_preproc_if_token1, - ACTIONS(10743), 1, - anon_sym_RBRACE, - STATE(8292), 1, - sym_enumerator, - ACTIONS(10739), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(8640), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6884), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [275198] = 3, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + STATE(4152), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10652), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + [275558] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10747), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(10745), 10, + STATE(4152), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10579), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [275217] = 8, + anon_sym_GT2, + [275588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, - sym_identifier, - ACTIONS(10737), 1, - aux_sym_preproc_if_token1, - ACTIONS(10749), 1, - anon_sym_RBRACE, - STATE(8066), 1, - sym_enumerator, - ACTIONS(10739), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(9246), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6903), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [275246] = 8, + ACTIONS(6165), 1, + anon_sym_LBRACK, + ACTIONS(10838), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(10840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6167), 6, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [275611] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10751), 1, + ACTIONS(10848), 1, anon_sym_RBRACE, - STATE(8095), 1, + STATE(8380), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(9146), 2, + STATE(8537), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6921), 3, + STATE(6970), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [275275] = 11, + [275640] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9669), 1, - anon_sym_try, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(10597), 1, - anon_sym_LBRACE, - STATE(2632), 1, - sym_try_statement, - STATE(2634), 1, - sym_compound_statement, - STATE(4154), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [275310] = 7, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(10156), 1, + anon_sym_COLON_COLON, + ACTIONS(10850), 1, + sym_identifier, + STATE(6238), 1, + sym__scope_resolution, + STATE(8947), 1, + sym_qualified_identifier, + ACTIONS(10852), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [275671] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10053), 1, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(10707), 1, + ACTIONS(9464), 1, anon_sym_requires, - ACTIONS(10055), 2, + ACTIONS(9301), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6363), 2, + STATE(6453), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10051), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [275337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10755), 1, - anon_sym_LBRACK, - ACTIONS(10753), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9107), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - [275356] = 8, + [275698] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10757), 1, + ACTIONS(10854), 1, anon_sym_RBRACE, - STATE(8162), 1, + STATE(8409), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8979), 2, + STATE(8449), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7010), 3, + STATE(6963), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [275385] = 8, + [275727] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10636), 1, + aux_sym_preproc_else_token1, + ACTIONS(10856), 1, sym_identifier, - ACTIONS(10737), 1, - aux_sym_preproc_if_token1, - ACTIONS(10759), 1, - anon_sym_RBRACE, - STATE(8274), 1, + ACTIONS(10858), 1, + aux_sym_preproc_if_token2, + ACTIONS(10860), 1, + aux_sym_preproc_elif_token1, + STATE(7108), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(7111), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7293), 1, sym_enumerator, - ACTIONS(10739), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(8679), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7010), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [275414] = 8, + STATE(9249), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(9280), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [275760] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, - sym_identifier, - ACTIONS(10737), 1, - aux_sym_preproc_if_token1, - ACTIONS(10761), 1, - anon_sym_RBRACE, - STATE(8201), 1, - sym_enumerator, - ACTIONS(10739), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(8880), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6910), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [275443] = 3, + ACTIONS(9453), 1, + anon_sym_LBRACK, + ACTIONS(9631), 1, + anon_sym_requires, + ACTIONS(9475), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6384), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [275787] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10733), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(10731), 10, - anon_sym_COMMA, + STATE(4267), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10579), 4, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [275462] = 3, + [275816] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10765), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, anon_sym_LBRACK, - ACTIONS(10763), 10, + STATE(3782), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10515), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [275481] = 4, + [275841] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6206), 1, + ACTIONS(10196), 1, anon_sym_LBRACK, - ACTIONS(10767), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6208), 8, + ACTIONS(10682), 1, + anon_sym_requires, + ACTIONS(10204), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6422), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [275502] = 3, + [275868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10771), 1, + ACTIONS(6435), 1, anon_sym_LBRACK, - ACTIONS(10769), 10, + ACTIONS(6437), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -588641,18 +591931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [275521] = 6, + [275887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(3802), 1, + STATE(3782), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10398), 7, + ACTIONS(10541), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -588660,203 +591950,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [275546] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(10149), 1, - anon_sym_COLON_COLON, - ACTIONS(10773), 1, - sym_identifier, - STATE(6274), 1, - sym__scope_resolution, - STATE(8623), 1, - sym_qualified_identifier, - ACTIONS(10775), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [275577] = 7, + [275912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9353), 1, + ACTIONS(10864), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_requires, - ACTIONS(9367), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6425), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 3, + ACTIONS(10862), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - [275604] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(10149), 1, - anon_sym_COLON_COLON, - ACTIONS(10777), 1, - sym_identifier, - STATE(6274), 1, - sym__scope_resolution, - STATE(8491), 1, - sym_qualified_identifier, - ACTIONS(10779), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [275635] = 11, + anon_sym_try, + [275931] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9640), 1, - anon_sym_try, - ACTIONS(9783), 1, + ACTIONS(6016), 1, anon_sym_LBRACK, - ACTIONS(10685), 1, - anon_sym_LBRACE, - STATE(2150), 1, - sym_compound_statement, - STATE(2153), 1, - sym_try_statement, - STATE(4154), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, + STATE(6582), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [275670] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10532), 1, - sym_identifier, - ACTIONS(10781), 1, - aux_sym_preproc_if_token2, - ACTIONS(10783), 1, - aux_sym_preproc_else_token1, - ACTIONS(10785), 1, - aux_sym_preproc_elif_token1, - ACTIONS(10540), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(7093), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9198), 3, - sym_preproc_elifdef, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [275699] = 6, + ACTIONS(6018), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_try, + [275954] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - STATE(4227), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6748), 1, sym__function_declarator_seq, - ACTIONS(10413), 7, - anon_sym_COMMA, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10581), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [275724] = 6, + anon_sym_try, + [275983] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - STATE(4227), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6748), 1, sym__function_declarator_seq, - ACTIONS(10417), 7, - anon_sym_COMMA, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10610), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [275749] = 7, + anon_sym_try, + [276012] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10220), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, + ACTIONS(10866), 1, anon_sym_requires, - ACTIONS(10065), 2, + ACTIONS(10272), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6423), 2, + STATE(6409), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(10061), 3, + ACTIONS(10218), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [275776] = 11, + [276039] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + sym_identifier, + ACTIONS(10844), 1, + aux_sym_preproc_if_token1, + ACTIONS(10869), 1, + anon_sym_RBRACE, + STATE(8098), 1, + sym_enumerator, + ACTIONS(10846), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8974), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6959), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [276068] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9624), 1, + ACTIONS(9686), 1, anon_sym_try, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(10677), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(2274), 1, + STATE(2628), 1, sym_try_statement, - STATE(2275), 1, + STATE(2629), 1, sym_compound_statement, - STATE(4154), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [275811] = 3, + [276103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10792), 1, + ACTIONS(10873), 1, anon_sym_LBRACK, - ACTIONS(10790), 10, + ACTIONS(10871), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -588867,883 +592107,1030 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [275830] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(4227), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10415), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [275855] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7800), 1, - anon_sym_requires, - ACTIONS(10053), 1, - anon_sym_LBRACK, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10051), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [275882] = 8, + [276122] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(10156), 1, + anon_sym_COLON_COLON, + ACTIONS(10875), 1, sym_identifier, - ACTIONS(10737), 1, - aux_sym_preproc_if_token1, - ACTIONS(10794), 1, - anon_sym_RBRACE, - STATE(8055), 1, - sym_enumerator, - ACTIONS(10739), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(9266), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7010), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [275911] = 7, + STATE(6238), 1, + sym__scope_resolution, + STATE(8462), 1, + sym_qualified_identifier, + ACTIONS(10877), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [276153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7800), 1, - anon_sym_requires, - ACTIONS(9353), 1, + ACTIONS(10881), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6425), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9351), 3, + ACTIONS(10879), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - [275938] = 11, + anon_sym_try, + [276172] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(9919), 1, + ACTIONS(9758), 1, anon_sym_try, - STATE(994), 1, - sym_try_statement, - STATE(1002), 1, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(2394), 1, sym_compound_statement, - STATE(4154), 1, + STATE(2397), 1, + sym_try_statement, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [275973] = 8, + [276207] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10636), 1, + aux_sym_preproc_else_token1, + ACTIONS(10856), 1, + sym_identifier, + ACTIONS(10860), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10883), 1, + aux_sym_preproc_if_token2, + STATE(7082), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7130), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(7293), 1, + sym_enumerator, + STATE(9054), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + STATE(9091), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [276240] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(1112), 1, + anon_sym_LBRACE, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - STATE(4154), 1, + ACTIONS(10034), 1, + anon_sym_try, + STATE(938), 1, + sym_try_statement, + STATE(939), 1, + sym_compound_statement, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10474), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [276002] = 9, + [276275] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10796), 1, + ACTIONS(10885), 1, aux_sym_preproc_if_token2, - ACTIONS(10798), 1, + ACTIONS(10887), 1, aux_sym_preproc_else_token1, - ACTIONS(10800), 1, + ACTIONS(10889), 1, aux_sym_preproc_elif_token1, - STATE(6934), 1, + STATE(7091), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9191), 1, + STATE(9111), 1, sym_enumerator, - ACTIONS(10540), 2, + ACTIONS(10640), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(9106), 3, + STATE(9110), 3, sym_preproc_elifdef, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [276033] = 7, + [276306] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7800), 1, - anon_sym_requires, - ACTIONS(9006), 1, - anon_sym_LBRACK, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6412), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9004), 3, - anon_sym_LPAREN2, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [276060] = 9, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9730), 1, + anon_sym_try, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(10727), 1, + anon_sym_LBRACE, + STATE(2535), 1, + sym_compound_statement, + STATE(2536), 1, + sym_try_statement, + STATE(4267), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [276341] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(10802), 1, + ACTIONS(10891), 1, sym_identifier, - STATE(6274), 1, + STATE(6238), 1, sym__scope_resolution, - STATE(8660), 1, + STATE(8795), 1, sym_qualified_identifier, - ACTIONS(10804), 2, + ACTIONS(10893), 2, anon_sym_enum, anon_sym_namespace, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [276091] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10735), 1, - sym_identifier, - ACTIONS(10737), 1, - aux_sym_preproc_if_token1, - ACTIONS(10806), 1, - anon_sym_RBRACE, - STATE(8199), 1, - sym_enumerator, - ACTIONS(10739), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(8874), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7010), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [276120] = 8, + [276372] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(7955), 1, + anon_sym_requires, + ACTIONS(9453), 1, anon_sym_LBRACK, - STATE(4154), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10505), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [276149] = 8, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6384), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9451), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [276399] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10632), 1, sym_identifier, - ACTIONS(10737), 1, - aux_sym_preproc_if_token1, - ACTIONS(10808), 1, - anon_sym_RBRACE, - STATE(8152), 1, + ACTIONS(10895), 1, + aux_sym_preproc_if_token2, + ACTIONS(10897), 1, + aux_sym_preproc_else_token1, + ACTIONS(10899), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10640), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(7118), 2, sym_enumerator, - ACTIONS(10739), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(8989), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6918), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [276178] = 5, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9121), 3, + sym_preproc_elifdef, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [276428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5954), 1, + ACTIONS(10829), 1, anon_sym_LBRACK, - STATE(6535), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5956), 7, + ACTIONS(10827), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [276201] = 10, + [276447] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10536), 1, - aux_sym_preproc_else_token1, - ACTIONS(10810), 1, - sym_identifier, - ACTIONS(10812), 1, - aux_sym_preproc_if_token2, - ACTIONS(10814), 1, - aux_sym_preproc_elif_token1, - STATE(7078), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(7081), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(7271), 1, - sym_enumerator, - STATE(9265), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - STATE(9271), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [276234] = 7, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(898), 1, + anon_sym_LBRACE, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(9966), 1, + anon_sym_try, + STATE(930), 1, + sym_compound_statement, + STATE(931), 1, + sym_try_statement, + STATE(4267), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [276482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7800), 1, - anon_sym_requires, - ACTIONS(10063), 1, + ACTIONS(6233), 1, anon_sym_LBRACK, - ACTIONS(6067), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6423), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(10061), 3, + ACTIONS(10840), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6235), 8, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [276261] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7800), 1, - anon_sym_requires, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(6067), 2, + anon_sym_or, anon_sym_final, anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [276288] = 6, + anon_sym_requires, + [276503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10903), 1, anon_sym_LBRACK, - STATE(4227), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10398), 7, + ACTIONS(10901), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [276313] = 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [276522] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10816), 1, + ACTIONS(10905), 1, anon_sym_RBRACE, - STATE(8171), 1, + STATE(8288), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8956), 2, + STATE(9271), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7010), 3, + STATE(7030), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [276342] = 6, + [276551] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(4227), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10419), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [276367] = 6, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(10156), 1, + anon_sym_COLON_COLON, + ACTIONS(10907), 1, + sym_identifier, + STATE(6238), 1, + sym__scope_resolution, + STATE(8675), 1, + sym_qualified_identifier, + ACTIONS(10909), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [276582] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - STATE(4227), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6748), 1, sym__function_declarator_seq, - ACTIONS(10421), 7, - anon_sym_COMMA, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10652), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [276392] = 8, + anon_sym_try, + [276611] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10818), 1, + ACTIONS(10911), 1, anon_sym_RBRACE, - STATE(8088), 1, + STATE(8192), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(9154), 2, + STATE(9035), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7010), 3, + STATE(6962), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [276421] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9783), 1, - anon_sym_LBRACK, - STATE(4154), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10507), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [276450] = 8, + [276640] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10820), 1, + ACTIONS(10913), 1, anon_sym_RBRACE, - STATE(8297), 1, + STATE(8166), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8629), 2, + STATE(8748), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6951), 3, + STATE(6961), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [276479] = 11, + [276669] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4229), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10501), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [276694] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(796), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(9925), 1, + ACTIONS(10110), 1, anon_sym_try, - STATE(883), 1, + STATE(376), 1, sym_compound_statement, - STATE(888), 1, + STATE(378), 1, sym_try_statement, - STATE(4154), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [276514] = 8, + [276729] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9662), 1, + anon_sym_try, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(10771), 1, + anon_sym_LBRACE, + STATE(2096), 1, + sym_try_statement, + STATE(2097), 1, + sym_compound_statement, + STATE(4267), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [276764] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10822), 1, + ACTIONS(10915), 1, anon_sym_RBRACE, - STATE(8338), 1, + STATE(8381), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8554), 2, + STATE(8523), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7010), 3, + STATE(6975), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [276543] = 8, + [276793] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(10842), 1, + sym_identifier, + ACTIONS(10887), 1, + aux_sym_preproc_else_token1, + ACTIONS(10889), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10917), 1, + aux_sym_preproc_if_token2, + STATE(6930), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9111), 1, + sym_enumerator, + ACTIONS(10640), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8981), 3, + sym_preproc_elifdef, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [276824] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4154), 1, + STATE(4229), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6658), 1, sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10557), 4, + ACTIONS(10521), 7, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_try, - [276572] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [276849] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9010), 1, + anon_sym_LBRACK, + ACTIONS(9388), 1, + anon_sym_requires, + ACTIONS(9037), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6447), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9008), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [276876] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7955), 1, + anon_sym_requires, + ACTIONS(10196), 1, + anon_sym_LBRACK, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6422), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10194), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [276903] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(10824), 1, + ACTIONS(10919), 1, sym_identifier, - STATE(6274), 1, + STATE(6238), 1, sym__scope_resolution, - STATE(8524), 1, + STATE(9028), 1, sym_qualified_identifier, - ACTIONS(10826), 2, + ACTIONS(10921), 2, anon_sym_enum, anon_sym_namespace, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [276603] = 11, + [276934] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(10842), 1, + sym_identifier, + ACTIONS(10844), 1, + aux_sym_preproc_if_token1, + ACTIONS(10923), 1, + anon_sym_RBRACE, + STATE(8238), 1, + sym_enumerator, + ACTIONS(10846), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(9096), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7030), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [276963] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7955), 1, + anon_sym_requires, + ACTIONS(10220), 1, + anon_sym_LBRACK, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6409), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(10218), 3, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(9562), 1, + anon_sym_COLON, + [276990] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - ACTIONS(9905), 1, - anon_sym_try, - STATE(401), 1, - sym_try_statement, - STATE(409), 1, - sym_compound_statement, - STATE(4154), 1, + STATE(4229), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6658), 1, sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [276638] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10536), 1, - aux_sym_preproc_else_token1, - ACTIONS(10810), 1, - sym_identifier, - ACTIONS(10814), 1, - aux_sym_preproc_elif_token1, - ACTIONS(10828), 1, - aux_sym_preproc_if_token2, - STATE(7061), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(7090), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(7271), 1, - sym_enumerator, - STATE(9187), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - STATE(9188), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [276671] = 11, + ACTIONS(10523), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [277015] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(998), 1, - anon_sym_LBRACE, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(9937), 1, - anon_sym_try, - STATE(846), 1, - sym_compound_statement, - STATE(847), 1, - sym_try_statement, - STATE(4154), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [276706] = 7, + ACTIONS(10597), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [277044] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8910), 1, - anon_sym_LBRACK, - ACTIONS(9279), 1, - anon_sym_requires, - ACTIONS(8934), 2, - anon_sym_final, - anon_sym_override, - STATE(6220), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6405), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8908), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [276733] = 11, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(10156), 1, + anon_sym_COLON_COLON, + ACTIONS(10925), 1, + sym_identifier, + STATE(6238), 1, + sym__scope_resolution, + STATE(8813), 1, + sym_qualified_identifier, + ACTIONS(10927), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [277075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(10931), 1, + anon_sym_LBRACK, + ACTIONS(10929), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(9841), 1, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - STATE(507), 1, - sym_compound_statement, - STATE(509), 1, - sym_try_statement, - STATE(4154), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [276768] = 8, + [277094] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10830), 1, + ACTIONS(10933), 1, anon_sym_RBRACE, - STATE(8217), 1, + STATE(8159), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8825), 2, + STATE(9010), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7010), 3, + STATE(7030), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [276797] = 9, + [277123] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10798), 1, - aux_sym_preproc_else_token1, - ACTIONS(10800), 1, - aux_sym_preproc_elif_token1, - ACTIONS(10832), 1, - aux_sym_preproc_if_token2, - STATE(7080), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9191), 1, + ACTIONS(10844), 1, + aux_sym_preproc_if_token1, + ACTIONS(10935), 1, + anon_sym_RBRACE, + STATE(8373), 1, sym_enumerator, - ACTIONS(10540), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(9190), 3, - sym_preproc_elifdef, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [276828] = 9, + ACTIONS(10846), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(9347), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6973), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [277152] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(10149), 1, - anon_sym_COLON_COLON, - ACTIONS(10834), 1, + ACTIONS(10842), 1, sym_identifier, - STATE(6274), 1, - sym__scope_resolution, - STATE(8906), 1, - sym_qualified_identifier, - ACTIONS(10836), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [276859] = 8, + ACTIONS(10844), 1, + aux_sym_preproc_if_token1, + ACTIONS(10937), 1, + anon_sym_RBRACE, + STATE(8247), 1, + sym_enumerator, + ACTIONS(10846), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8682), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7030), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [277181] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10838), 1, + ACTIONS(10939), 1, anon_sym_RBRACE, STATE(8174), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(9024), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7030), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [277210] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + sym_identifier, + ACTIONS(10844), 1, + aux_sym_preproc_if_token1, + ACTIONS(10941), 1, + anon_sym_RBRACE, + STATE(8352), 1, + sym_enumerator, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8812), 2, + STATE(8580), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7010), 3, + STATE(7030), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [276888] = 9, + [277239] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4229), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10541), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [277264] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4229), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10515), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [277289] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(10840), 1, + ACTIONS(10943), 1, sym_identifier, - STATE(6274), 1, + STATE(6238), 1, sym__scope_resolution, - STATE(8993), 1, + STATE(8719), 1, sym_qualified_identifier, - ACTIONS(10842), 2, + ACTIONS(10945), 2, anon_sym_enum, anon_sym_namespace, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [276919] = 3, + [277320] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + sym_identifier, + ACTIONS(10844), 1, + aux_sym_preproc_if_token1, + ACTIONS(10947), 1, + anon_sym_RBRACE, + STATE(8227), 1, + sym_enumerator, + ACTIONS(10846), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8695), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6968), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [277349] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + sym_identifier, + ACTIONS(10844), 1, + aux_sym_preproc_if_token1, + ACTIONS(10949), 1, + anon_sym_RBRACE, + STATE(8186), 1, + sym_enumerator, + ACTIONS(10846), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8738), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7030), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [277378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10846), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, anon_sym_LBRACK, - ACTIONS(10844), 10, + STATE(3782), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10521), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [276938] = 8, + [277403] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10848), 1, + ACTIONS(10951), 1, anon_sym_RBRACE, - STATE(8206), 1, + STATE(8263), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8862), 2, + STATE(8669), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6933), 3, + STATE(7030), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [276967] = 8, + [277432] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10850), 1, + ACTIONS(10953), 1, anon_sym_RBRACE, - STATE(8395), 1, + STATE(8432), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8467), 2, + STATE(9404), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6958), 3, + STATE(7030), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [276996] = 9, + [277461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(10149), 1, - anon_sym_COLON_COLON, - ACTIONS(10852), 1, + ACTIONS(6222), 1, + anon_sym_LBRACK, + ACTIONS(6224), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [277480] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, sym_identifier, - STATE(6274), 1, - sym__scope_resolution, - STATE(8866), 1, - sym_qualified_identifier, - ACTIONS(10854), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [277027] = 6, + ACTIONS(10844), 1, + aux_sym_preproc_if_token1, + ACTIONS(10955), 1, + anon_sym_RBRACE, + STATE(8294), 1, + sym_enumerator, + ACTIONS(10846), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(9246), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(7030), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [277509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4227), 1, + STATE(4229), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10423), 7, + ACTIONS(10505), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -589751,193 +593138,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [277052] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6210), 1, - anon_sym_LBRACK, - ACTIONS(6212), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [277071] = 8, + [277534] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10856), 1, + ACTIONS(10957), 1, anon_sym_RBRACE, - STATE(8129), 1, + STATE(8278), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(9032), 2, + STATE(9019), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6875), 3, + STATE(7030), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [277100] = 9, + [277563] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(10858), 1, + ACTIONS(10959), 1, sym_identifier, - STATE(6274), 1, + STATE(6238), 1, sym__scope_resolution, - STATE(8478), 1, + STATE(9297), 1, sym_qualified_identifier, - ACTIONS(10860), 2, + ACTIONS(10961), 2, anon_sym_enum, anon_sym_namespace, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [277131] = 5, + [277594] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(10767), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(10862), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6196), 6, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, + ACTIONS(7955), 1, anon_sym_requires, - [277154] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9783), 1, - anon_sym_LBRACK, - STATE(4154), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10484), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [277183] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9006), 1, + ACTIONS(9010), 1, anon_sym_LBRACK, - ACTIONS(9375), 1, - anon_sym_requires, - ACTIONS(9128), 2, + ACTIONS(6075), 2, anon_sym_final, anon_sym_override, - STATE(6220), 2, + STATE(6260), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6412), 2, + STATE(6447), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9004), 3, + ACTIONS(9008), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [277210] = 8, + [277621] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10864), 1, + ACTIONS(10963), 1, anon_sym_RBRACE, - STATE(8176), 1, + STATE(8252), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8949), 2, + STATE(9138), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6883), 3, + STATE(6953), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [277239] = 8, + [277650] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4229), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10517), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [277675] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(10156), 1, + anon_sym_COLON_COLON, + ACTIONS(10965), 1, sym_identifier, - ACTIONS(10737), 1, + STATE(6238), 1, + sym__scope_resolution, + STATE(8755), 1, + sym_qualified_identifier, + ACTIONS(10967), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(9043), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [277706] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + sym_identifier, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10866), 1, + ACTIONS(10969), 1, anon_sym_RBRACE, - STATE(8232), 1, + STATE(8256), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8780), 2, + STATE(9142), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6936), 3, + STATE(6971), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [277268] = 8, + [277735] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10868), 1, + ACTIONS(10971), 1, anon_sym_RBRACE, - STATE(8320), 1, + STATE(8126), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8593), 2, + STATE(9005), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7010), 3, + STATE(6987), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [277297] = 3, + [277764] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(9976), 1, + anon_sym_try, + STATE(1018), 1, + sym_try_statement, + STATE(1019), 1, + sym_compound_statement, + STATE(4267), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [277799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6264), 1, + ACTIONS(10975), 1, anon_sym_LBRACK, - ACTIONS(6266), 10, + ACTIONS(10973), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -589948,673 +593345,606 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [277316] = 8, + [277818] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10870), 1, + ACTIONS(10977), 1, anon_sym_RBRACE, - STATE(8369), 1, + STATE(8335), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8490), 2, + STATE(9296), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6925), 3, + STATE(6939), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [277345] = 11, + [277847] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9574), 1, - anon_sym_try, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(10573), 1, - anon_sym_LBRACE, - STATE(2548), 1, - sym_compound_statement, - STATE(2557), 1, + ACTIONS(10028), 1, + anon_sym_try, + STATE(528), 1, sym_try_statement, - STATE(4154), 1, + STATE(530), 1, + sym_compound_statement, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [277380] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(3802), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10419), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [277405] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(3802), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10421), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [277430] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(10149), 1, - anon_sym_COLON_COLON, - ACTIONS(10872), 1, - sym_identifier, - STATE(6274), 1, - sym__scope_resolution, - STATE(8753), 1, - sym_qualified_identifier, - ACTIONS(10874), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(9084), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [277461] = 8, + [277882] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10737), 1, + ACTIONS(10844), 1, aux_sym_preproc_if_token1, - ACTIONS(10876), 1, + ACTIONS(10979), 1, anon_sym_RBRACE, - STATE(8409), 1, + STATE(8264), 1, sym_enumerator, - ACTIONS(10739), 2, + ACTIONS(10846), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8443), 2, + STATE(8655), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(7010), 3, + STATE(7030), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [277490] = 3, + [277911] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 1, + ACTIONS(7955), 1, + anon_sym_requires, + ACTIONS(9109), 1, anon_sym_LBRACK, - ACTIONS(5002), 9, - anon_sym_COMMA, + ACTIONS(6075), 2, + anon_sym_final, + anon_sym_override, + STATE(6260), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6453), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9107), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - [277508] = 5, + [277938] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10882), 1, - anon_sym_delete, - ACTIONS(10884), 1, - anon_sym_new, - ACTIONS(10880), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10878), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, + ACTIONS(1428), 1, anon_sym_template, - anon_sym_operator, - [277530] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10888), 1, - anon_sym_LBRACK, - STATE(7442), 1, - sym_gnu_asm_input_operand, - STATE(9218), 1, - sym_string_literal, - ACTIONS(10886), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [277554] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10890), 1, - anon_sym_delete, - ACTIONS(10892), 1, - anon_sym_new, - ACTIONS(10880), 3, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3934), 1, anon_sym_COLON_COLON, - ACTIONS(10878), 5, - anon_sym___based, + ACTIONS(9398), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [277576] = 5, + STATE(3113), 1, + sym_template_type, + STATE(7038), 1, + sym__scope_resolution, + STATE(7364), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [277968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10894), 1, + ACTIONS(10985), 1, anon_sym_delete, - ACTIONS(10896), 1, + ACTIONS(10987), 1, anon_sym_new, - ACTIONS(10880), 3, + ACTIONS(10983), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(10878), 5, + ACTIONS(10981), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [277598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4964), 1, - anon_sym_LBRACK, - ACTIONS(4966), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [277616] = 10, + [277990] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(5833), 1, anon_sym_LBRACK, - ACTIONS(10898), 1, - anon_sym_EQ, - STATE(4119), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10989), 1, + anon_sym_COMMA, + STATE(2499), 1, sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(9205), 1, - sym_initializer_list, - STATE(6609), 2, + STATE(7425), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(10991), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(6918), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [277648] = 5, + [278020] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3934), 1, + anon_sym_COLON_COLON, + ACTIONS(9398), 1, + sym_identifier, + STATE(3113), 1, + sym_template_type, + STATE(7038), 1, + sym__scope_resolution, + STATE(7751), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, + sym_decltype, + sym_dependent_type_identifier, + [278050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10993), 1, anon_sym_delete, - ACTIONS(10902), 1, + ACTIONS(10995), 1, anon_sym_new, - ACTIONS(10880), 3, + ACTIONS(10983), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(10878), 5, + ACTIONS(10981), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [277670] = 9, + [278072] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3936), 1, + ACTIONS(3934), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9398), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(7036), 1, + STATE(7038), 1, sym__scope_resolution, - STATE(7419), 2, + STATE(7343), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [277700] = 6, + [278102] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(10997), 1, + anon_sym_delete, + ACTIONS(10999), 1, + anon_sym_new, + ACTIONS(10983), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(10981), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [278124] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4275), 1, + STATE(4297), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10415), 6, + ACTIONS(10541), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [277724] = 5, + [278148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10904), 1, + ACTIONS(11001), 1, anon_sym_delete, - ACTIONS(10906), 1, + ACTIONS(11003), 1, anon_sym_new, - ACTIONS(10880), 3, + ACTIONS(10983), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(10878), 5, + ACTIONS(10981), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [277746] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(10908), 1, - sym_identifier, - ACTIONS(10910), 1, - anon_sym_COLON_COLON, - STATE(3061), 1, - sym_template_type, - STATE(7014), 1, - sym__scope_resolution, - STATE(3041), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [277776] = 6, + [278170] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4275), 1, + STATE(4297), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10398), 6, + ACTIONS(10515), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [277800] = 3, + [278194] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, anon_sym_LBRACK, - ACTIONS(4998), 9, + STATE(4297), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10505), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [277818] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [278218] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10914), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(7401), 1, - sym_gnu_asm_output_operand, - STATE(9129), 1, - sym_string_literal, - ACTIONS(10912), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [277842] = 9, + STATE(4297), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10517), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [278242] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(10918), 1, + ACTIONS(11005), 1, anon_sym_EQ, - STATE(4119), 1, + STATE(4152), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - ACTIONS(10916), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6609), 2, + STATE(9151), 1, + sym_initializer_list, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [277872] = 5, + [278274] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10884), 1, + ACTIONS(10987), 1, anon_sym_new, - ACTIONS(10920), 1, + ACTIONS(11007), 1, anon_sym_delete, - ACTIONS(10880), 3, + ACTIONS(10983), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(10878), 5, + ACTIONS(10981), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [277894] = 5, + [278296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10922), 1, + ACTIONS(11009), 1, anon_sym_delete, - ACTIONS(10924), 1, + ACTIONS(11011), 1, anon_sym_new, - ACTIONS(10880), 3, + ACTIONS(10983), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(10878), 5, + ACTIONS(10981), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [277916] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(4275), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10413), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [277940] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(4275), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10417), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [277964] = 5, + [278318] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10926), 1, + ACTIONS(11013), 1, anon_sym_delete, - ACTIONS(10928), 1, + ACTIONS(11015), 1, anon_sym_new, - ACTIONS(10880), 3, + ACTIONS(10983), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(10878), 5, + ACTIONS(10981), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [277986] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(9312), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(7036), 1, - sym__scope_resolution, - STATE(7947), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [278016] = 6, + [278340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4275), 1, + STATE(4297), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10419), 6, + ACTIONS(10521), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [278040] = 6, + [278364] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4275), 1, + STATE(4297), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10421), 6, + ACTIONS(10523), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [278064] = 5, + [278388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5024), 1, + anon_sym_LBRACK, + ACTIONS(5026), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [278406] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10884), 1, + ACTIONS(11011), 1, anon_sym_new, - ACTIONS(10930), 1, + ACTIONS(11017), 1, + anon_sym_delete, + ACTIONS(10983), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(10981), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [278428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11019), 1, anon_sym_delete, - ACTIONS(10880), 3, + ACTIONS(11021), 1, + anon_sym_new, + ACTIONS(10983), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(10878), 5, + ACTIONS(10981), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [278086] = 5, + [278450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 1, + anon_sym_LBRACK, + ACTIONS(5030), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [278468] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11025), 1, + anon_sym_LBRACK, + STATE(7361), 1, + sym_gnu_asm_output_operand, + STATE(9020), 1, + sym_string_literal, + ACTIONS(11023), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [278492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10932), 1, + ACTIONS(11027), 1, anon_sym_delete, - ACTIONS(10934), 1, + ACTIONS(11029), 1, anon_sym_new, - ACTIONS(10880), 3, + ACTIONS(10983), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(10878), 5, + ACTIONS(10981), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [278108] = 9, + [278514] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3936), 1, + ACTIONS(3934), 1, anon_sym_COLON_COLON, - ACTIONS(9312), 1, + ACTIONS(9398), 1, sym_identifier, - STATE(3104), 1, + STATE(3113), 1, sym_template_type, - STATE(7036), 1, + STATE(7038), 1, sym__scope_resolution, - STATE(7414), 2, + STATE(7713), 2, sym__class_name, sym_qualified_type_identifier, - STATE(9084), 2, + STATE(9043), 2, sym_decltype, sym_dependent_type_identifier, - [278138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5008), 1, - anon_sym_LBRACK, - ACTIONS(5010), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [278156] = 5, + [278544] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10934), 1, + ACTIONS(11015), 1, anon_sym_new, - ACTIONS(10936), 1, + ACTIONS(11031), 1, anon_sym_delete, - ACTIONS(10880), 3, + ACTIONS(10983), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(10878), 5, + ACTIONS(10981), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [278178] = 5, + [278566] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10938), 1, + ACTIONS(11033), 1, anon_sym_delete, - ACTIONS(10940), 1, + ACTIONS(11035), 1, anon_sym_new, - ACTIONS(10880), 3, + ACTIONS(10983), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(10878), 5, + ACTIONS(10981), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [278200] = 3, + [278588] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(11039), 1, + anon_sym_EQ, + STATE(4152), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + ACTIONS(11037), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [278618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 1, + ACTIONS(4991), 1, anon_sym_LBRACK, - ACTIONS(4990), 9, + ACTIONS(4993), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -590624,12 +593954,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [278218] = 3, + [278636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(5003), 1, anon_sym_LBRACK, - ACTIONS(5006), 9, + ACTIONS(5005), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -590639,47 +593969,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [278236] = 6, + [278654] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - STATE(4275), 1, + ACTIONS(11041), 1, + anon_sym_EQ, + STATE(4152), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6748), 1, sym__function_declarator_seq, - ACTIONS(10423), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(11037), 2, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [278260] = 5, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [278684] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10942), 1, - anon_sym_delete, - ACTIONS(10944), 1, - anon_sym_new, - ACTIONS(10880), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(10878), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [278282] = 3, + ACTIONS(11045), 1, + anon_sym_LBRACK, + STATE(7337), 1, + sym_gnu_asm_input_operand, + STATE(9177), 1, + sym_string_literal, + ACTIONS(11043), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [278708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 1, + ACTIONS(4995), 1, anon_sym_LBRACK, - ACTIONS(4994), 9, + ACTIONS(4997), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -590689,2927 +594023,2963 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [278300] = 5, + [278726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10940), 1, - anon_sym_new, - ACTIONS(10946), 1, + ACTIONS(11047), 1, anon_sym_delete, - ACTIONS(10880), 3, + ACTIONS(11049), 1, + anon_sym_new, + ACTIONS(10983), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(10878), 5, + ACTIONS(10981), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [278322] = 9, + [278748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - ACTIONS(10948), 1, - anon_sym_EQ, - STATE(4119), 1, + STATE(4297), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10916), 2, + ACTIONS(10501), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [278352] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(9312), 1, - sym_identifier, - STATE(3104), 1, - sym_template_type, - STATE(7036), 1, - sym__scope_resolution, - STATE(7962), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(9084), 2, - sym_decltype, - sym_dependent_type_identifier, - [278382] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [278772] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10950), 1, + ACTIONS(11051), 1, anon_sym_delete, - ACTIONS(10952), 1, + ACTIONS(11053), 1, anon_sym_new, - ACTIONS(10880), 3, + ACTIONS(10983), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(10878), 5, + ACTIONS(10981), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [278404] = 9, + [278794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5809), 1, + ACTIONS(4999), 1, anon_sym_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10954), 1, + ACTIONS(5001), 9, anon_sym_COMMA, - STATE(2398), 1, - sym_parameter_list, - STATE(7514), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(10956), 2, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - STATE(6913), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [278434] = 7, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [278812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5809), 1, + ACTIONS(5035), 1, anon_sym_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - STATE(2398), 1, - sym_parameter_list, - STATE(6913), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10958), 3, + ACTIONS(5037), 9, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - [278459] = 8, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [278830] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, - anon_sym_COLON_COLON, - ACTIONS(10960), 1, + ACTIONS(11055), 1, sym_identifier, - STATE(6274), 1, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + STATE(3135), 1, + sym_template_type, + STATE(7039), 1, sym__scope_resolution, - STATE(8620), 1, - sym_qualified_identifier, - STATE(9084), 3, + STATE(3127), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(9043), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [278486] = 6, + [278860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4419), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10398), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [278509] = 10, + ACTIONS(11011), 1, + anon_sym_new, + ACTIONS(11059), 1, + anon_sym_delete, + ACTIONS(10983), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(10981), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [278882] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9066), 1, + ACTIONS(9702), 1, anon_sym_COLON_COLON, - ACTIONS(10962), 1, + ACTIONS(11061), 1, sym_identifier, - ACTIONS(10964), 1, + ACTIONS(11063), 1, anon_sym_template, - STATE(2906), 1, - sym_dependent_type_identifier, - STATE(2909), 1, + STATE(2179), 1, sym_template_type, - STATE(2927), 1, + STATE(2180), 1, + sym_dependent_type_identifier, + STATE(2275), 1, sym_qualified_type_identifier, - STATE(7002), 1, + STATE(7029), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [278540] = 6, + [278913] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, - anon_sym_LBRACK, - STATE(4419), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10423), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [278563] = 8, + ACTIONS(11065), 1, + sym_identifier, + ACTIONS(11068), 1, + aux_sym_preproc_if_token1, + ACTIONS(11074), 1, + anon_sym_RBRACE, + STATE(8990), 1, + sym_enumerator, + ACTIONS(11071), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(7030), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [278938] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(10966), 1, + ACTIONS(11076), 1, sym_identifier, - STATE(6274), 1, + STATE(6238), 1, sym__scope_resolution, - STATE(8453), 1, + STATE(9273), 1, sym_qualified_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [278590] = 10, + [278965] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(3110), 1, + sym_template_argument_list, + ACTIONS(5014), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(5019), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [278988] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9308), 1, + ACTIONS(9252), 1, anon_sym_COLON_COLON, - ACTIONS(10968), 1, + ACTIONS(11078), 1, sym_identifier, - ACTIONS(10970), 1, + ACTIONS(11080), 1, anon_sym_template, - STATE(3020), 1, - sym_template_type, - STATE(3045), 1, + STATE(2174), 1, sym_dependent_type_identifier, - STATE(3661), 1, + STATE(2178), 1, + sym_template_type, + STATE(2274), 1, sym_qualified_type_identifier, - STATE(7005), 1, + STATE(7033), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [278621] = 10, + [279019] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9171), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(10972), 1, + ACTIONS(11082), 1, sym_identifier, - ACTIONS(10974), 1, - anon_sym_template, - STATE(4265), 1, - sym_dependent_type_identifier, - STATE(4266), 1, - sym_template_type, - STATE(4338), 1, - sym_qualified_type_identifier, - STATE(7006), 1, + STATE(6238), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(8963), 1, + sym_qualified_identifier, + STATE(9043), 3, sym_decltype, - [278652] = 6, + sym_template_type, + sym_dependent_type_identifier, + [279046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(6233), 1, + anon_sym_AMP, + ACTIONS(11084), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6235), 6, anon_sym_LPAREN2, - ACTIONS(10400), 1, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4419), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10415), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [278675] = 5, + anon_sym_or, + [279065] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(7903), 1, + anon_sym_COLON_COLON, + ACTIONS(11086), 1, + sym_identifier, + ACTIONS(11088), 1, + anon_sym_template, + STATE(3071), 1, + sym_template_type, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3589), 1, + sym_qualified_type_identifier, + STATE(7036), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_decltype, + [279096] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10976), 1, + ACTIONS(11090), 1, sym_identifier, - ACTIONS(10980), 1, + ACTIONS(11094), 1, sym_system_lib_string, - STATE(9057), 2, + STATE(8644), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(10978), 5, + ACTIONS(11092), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [278696] = 6, + [279117] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(3934), 1, anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(3036), 1, - sym_template_argument_list, - ACTIONS(4977), 2, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(4970), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [278719] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10982), 1, + ACTIONS(11096), 1, sym_identifier, - ACTIONS(10985), 1, - aux_sym_preproc_if_token1, - ACTIONS(10991), 1, - anon_sym_RBRACE, - STATE(9111), 1, - sym_enumerator, - ACTIONS(10988), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7010), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [278744] = 8, + STATE(3071), 1, + sym_template_type, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(7038), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_decltype, + [279148] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(10993), 1, + ACTIONS(11098), 1, sym_identifier, - STATE(6274), 1, + ACTIONS(11100), 1, + anon_sym_template, + STATE(3055), 1, + sym_template_type, + STATE(3057), 1, + sym_dependent_type_identifier, + STATE(3160), 1, + sym_qualified_type_identifier, + STATE(7039), 1, sym__scope_resolution, - STATE(8967), 1, - sym_qualified_identifier, - STATE(9084), 3, + STATE(9043), 1, sym_decltype, + [279179] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(11102), 1, + sym_identifier, + ACTIONS(11104), 1, + anon_sym_template, + STATE(2948), 1, sym_template_type, + STATE(2958), 1, sym_dependent_type_identifier, - [278771] = 8, + STATE(2987), 1, + sym_qualified_type_identifier, + STATE(7040), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_decltype, + [279210] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, + ACTIONS(9147), 1, anon_sym_COLON_COLON, - ACTIONS(10995), 1, + ACTIONS(11106), 1, sym_identifier, - STATE(6274), 1, + ACTIONS(11108), 1, + anon_sym_template, + STATE(3037), 1, + sym_dependent_type_identifier, + STATE(3039), 1, + sym_template_type, + STATE(3246), 1, + sym_qualified_type_identifier, + STATE(7041), 1, sym__scope_resolution, - STATE(8845), 1, - sym_qualified_identifier, - STATE(9084), 3, + STATE(9043), 1, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [278798] = 8, + [279241] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, + ACTIONS(7889), 1, anon_sym_COLON_COLON, - ACTIONS(10997), 1, + ACTIONS(11086), 1, sym_identifier, - STATE(6274), 1, + ACTIONS(11088), 1, + anon_sym_template, + STATE(3071), 1, + sym_template_type, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3090), 1, + sym_qualified_type_identifier, + STATE(7042), 1, sym__scope_resolution, - STATE(8662), 1, - sym_qualified_identifier, - STATE(9084), 3, + STATE(9043), 1, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [278825] = 10, + [279272] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10910), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(10999), 1, + ACTIONS(11110), 1, sym_identifier, - ACTIONS(11001), 1, - anon_sym_template, - STATE(3080), 1, - sym_template_type, - STATE(3093), 1, - sym_qualified_type_identifier, - STATE(3131), 1, - sym_dependent_type_identifier, - STATE(7014), 1, + STATE(6238), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9364), 1, + sym_qualified_identifier, + STATE(9043), 3, sym_decltype, - [278856] = 4, + sym_template_type, + sym_dependent_type_identifier, + [279299] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6206), 1, - anon_sym_AMP, - ACTIONS(11003), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6208), 6, + ACTIONS(9650), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_LBRACE, + ACTIONS(10503), 1, anon_sym_LBRACK, - anon_sym_or, - [278875] = 5, + STATE(4416), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10501), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [279322] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11005), 1, + ACTIONS(11112), 1, sym_identifier, - ACTIONS(11007), 1, + ACTIONS(11114), 1, sym_system_lib_string, - STATE(8515), 2, + STATE(8869), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(10978), 5, + ACTIONS(11092), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [278896] = 8, + [279343] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, + ACTIONS(7867), 1, anon_sym_COLON_COLON, - ACTIONS(11009), 1, + ACTIONS(11096), 1, sym_identifier, - STATE(6274), 1, + STATE(3071), 1, + sym_template_type, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3589), 1, + sym_qualified_type_identifier, + STATE(7046), 1, sym__scope_resolution, - STATE(8826), 1, + STATE(9043), 1, + sym_decltype, + [279374] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, + anon_sym_decltype, + ACTIONS(10156), 1, + anon_sym_COLON_COLON, + ACTIONS(11116), 1, + sym_identifier, + STATE(6238), 1, + sym__scope_resolution, + STATE(8488), 1, sym_qualified_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [278923] = 10, + [279401] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7764), 1, + ACTIONS(9736), 1, anon_sym_COLON_COLON, - ACTIONS(11011), 1, + ACTIONS(11118), 1, sym_identifier, - ACTIONS(11013), 1, + ACTIONS(11120), 1, anon_sym_template, - STATE(3020), 1, + STATE(2710), 1, + sym_dependent_type_identifier, + STATE(2719), 1, sym_template_type, - STATE(3027), 1, + STATE(2738), 1, sym_qualified_type_identifier, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(7018), 1, + STATE(7048), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [278954] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6194), 1, - anon_sym_AMP, - ACTIONS(11003), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11015), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6196), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_LBRACK, - [278975] = 6, + [279432] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(3036), 1, - sym_template_argument_list, - ACTIONS(7849), 2, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5833), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(5026), 4, - anon_sym_RPAREN, + ACTIONS(9650), 1, anon_sym_LPAREN2, + STATE(2499), 1, + sym_parameter_list, + STATE(6918), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11122), 3, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [278998] = 10, + anon_sym___attribute__, + [279457] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9606), 1, + ACTIONS(7927), 1, anon_sym_COLON_COLON, - ACTIONS(11017), 1, + ACTIONS(11124), 1, sym_identifier, - ACTIONS(11019), 1, + ACTIONS(11126), 1, anon_sym_template, - STATE(2067), 1, + STATE(5343), 1, sym_dependent_type_identifier, - STATE(2071), 1, + STATE(5344), 1, sym_template_type, - STATE(2255), 1, + STATE(5393), 1, sym_qualified_type_identifier, - STATE(7021), 1, + STATE(7050), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [279029] = 10, + [279488] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(7824), 1, - anon_sym_COLON_COLON, - ACTIONS(11021), 1, - sym_identifier, - ACTIONS(11023), 1, + ACTIONS(1428), 1, anon_sym_template, - STATE(5326), 1, - sym_dependent_type_identifier, - STATE(5328), 1, - sym_template_type, - STATE(5345), 1, - sym_qualified_type_identifier, - STATE(7022), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_decltype, - [279060] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9136), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(11025), 1, + ACTIONS(11128), 1, sym_identifier, - ACTIONS(11027), 1, - anon_sym_template, - STATE(3009), 1, - sym_dependent_type_identifier, - STATE(3075), 1, - sym_template_type, - STATE(3221), 1, - sym_qualified_type_identifier, - STATE(7023), 1, + STATE(6238), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(8716), 1, + sym_qualified_identifier, + STATE(9043), 3, sym_decltype, - [279091] = 10, + sym_template_type, + sym_dependent_type_identifier, + [279515] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9203), 1, + ACTIONS(9426), 1, anon_sym_COLON_COLON, - ACTIONS(11029), 1, + ACTIONS(11130), 1, sym_identifier, - ACTIONS(11031), 1, + ACTIONS(11132), 1, anon_sym_template, - STATE(2781), 1, - sym_dependent_type_identifier, - STATE(2785), 1, + STATE(3071), 1, sym_template_type, - STATE(2873), 1, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3589), 1, sym_qualified_type_identifier, - STATE(7024), 1, + STATE(7052), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [279122] = 10, + [279546] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7742), 1, + ACTIONS(9205), 1, anon_sym_COLON_COLON, - ACTIONS(11033), 1, + ACTIONS(11134), 1, sym_identifier, - ACTIONS(11035), 1, + ACTIONS(11136), 1, anon_sym_template, - STATE(2067), 1, - sym_dependent_type_identifier, - STATE(2071), 1, + STATE(2919), 1, sym_template_type, - STATE(2255), 1, + STATE(2931), 1, + sym_dependent_type_identifier, + STATE(2937), 1, sym_qualified_type_identifier, - STATE(7025), 1, + STATE(7053), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [279153] = 5, + [279577] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11037), 1, + ACTIONS(11138), 1, sym_identifier, - ACTIONS(11039), 1, + ACTIONS(11140), 1, sym_system_lib_string, - STATE(9043), 2, + STATE(9011), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(10978), 5, + ACTIONS(11092), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [279174] = 10, + [279598] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9030), 1, + ACTIONS(9331), 1, anon_sym_COLON_COLON, - ACTIONS(11041), 1, + ACTIONS(11142), 1, sym_identifier, - ACTIONS(11043), 1, + ACTIONS(11144), 1, anon_sym_template, - STATE(2977), 1, - sym_template_type, - STATE(2979), 1, + STATE(4153), 1, sym_dependent_type_identifier, - STATE(3022), 1, + STATE(4154), 1, + sym_template_type, + STATE(4187), 1, sym_qualified_type_identifier, - STATE(7027), 1, + STATE(7055), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [279205] = 10, + [279629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(11148), 1, + anon_sym_AMP, + ACTIONS(11150), 2, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(11146), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [279648] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9102), 1, + ACTIONS(9169), 1, anon_sym_COLON_COLON, - ACTIONS(11045), 1, + ACTIONS(11152), 1, sym_identifier, - ACTIONS(11047), 1, + ACTIONS(11154), 1, anon_sym_template, - STATE(2056), 1, - sym_dependent_type_identifier, - STATE(2061), 1, + STATE(4303), 1, sym_template_type, - STATE(2246), 1, + STATE(4304), 1, + sym_dependent_type_identifier, + STATE(4395), 1, sym_qualified_type_identifier, - STATE(7028), 1, + STATE(7057), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [279236] = 10, + [279679] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7804), 1, + ACTIONS(7849), 1, anon_sym_COLON_COLON, - ACTIONS(11043), 1, - anon_sym_template, - ACTIONS(11049), 1, + ACTIONS(11156), 1, sym_identifier, - STATE(2977), 1, + ACTIONS(11158), 1, + anon_sym_template, + STATE(2179), 1, sym_template_type, - STATE(2979), 1, + STATE(2180), 1, sym_dependent_type_identifier, - STATE(3022), 1, + STATE(2275), 1, sym_qualified_type_identifier, - STATE(7029), 1, + STATE(7058), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [279267] = 10, + [279710] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(5064), 1, + ACTIONS(9309), 1, anon_sym_COLON_COLON, - ACTIONS(10968), 1, + ACTIONS(11160), 1, sym_identifier, - ACTIONS(10970), 1, + ACTIONS(11162), 1, anon_sym_template, - STATE(3020), 1, + STATE(2797), 1, sym_template_type, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3045), 1, + STATE(2801), 1, sym_dependent_type_identifier, - STATE(7030), 1, + STATE(2877), 1, + sym_qualified_type_identifier, + STATE(7059), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [279298] = 10, + [279741] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6165), 1, + anon_sym_AMP, + ACTIONS(11084), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6167), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, + [279762] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(9982), 1, + anon_sym_TILDE, + ACTIONS(11166), 1, + sym_identifier, + ACTIONS(11168), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11171), 1, + anon_sym_template, + STATE(8371), 1, + sym_operator_name, + STATE(3891), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [279789] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7810), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(11051), 1, + ACTIONS(11173), 1, sym_identifier, - STATE(3020), 1, - sym_template_type, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(3661), 1, - sym_qualified_type_identifier, - STATE(7031), 1, + STATE(6238), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(8544), 1, + sym_qualified_identifier, + STATE(9043), 3, sym_decltype, - [279329] = 10, + sym_template_type, + sym_dependent_type_identifier, + [279816] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11175), 1, + sym_identifier, + ACTIONS(11177), 1, + sym_system_lib_string, + STATE(8797), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11092), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [279837] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9225), 1, + ACTIONS(7949), 1, anon_sym_COLON_COLON, - ACTIONS(11053), 1, + ACTIONS(11179), 1, sym_identifier, - ACTIONS(11055), 1, + ACTIONS(11181), 1, anon_sym_template, - STATE(2914), 1, - sym_dependent_type_identifier, - STATE(2938), 1, + STATE(3023), 1, sym_template_type, - STATE(2996), 1, + STATE(3027), 1, + sym_dependent_type_identifier, + STATE(3081), 1, sym_qualified_type_identifier, - STATE(7032), 1, + STATE(7064), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [279360] = 8, + [279868] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(11057), 1, + ACTIONS(11183), 1, sym_identifier, - STATE(6274), 1, + STATE(6238), 1, sym__scope_resolution, - STATE(8957), 1, + STATE(8707), 1, sym_qualified_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [279387] = 10, + [279895] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9542), 1, + ACTIONS(9133), 1, anon_sym_COLON_COLON, - ACTIONS(11059), 1, + ACTIONS(11185), 1, sym_identifier, - ACTIONS(11061), 1, + ACTIONS(11187), 1, anon_sym_template, - STATE(2675), 1, - sym_qualified_type_identifier, - STATE(2693), 1, - sym_dependent_type_identifier, - STATE(2694), 1, + STATE(2179), 1, sym_template_type, - STATE(7034), 1, + STATE(2180), 1, + sym_dependent_type_identifier, + STATE(2275), 1, + sym_qualified_type_identifier, + STATE(7066), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [279418] = 8, + [279926] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, + ACTIONS(9191), 1, anon_sym_COLON_COLON, - ACTIONS(11063), 1, + ACTIONS(11181), 1, + anon_sym_template, + ACTIONS(11189), 1, sym_identifier, - STATE(6274), 1, - sym__scope_resolution, - STATE(8580), 1, - sym_qualified_identifier, - STATE(9084), 3, - sym_decltype, + STATE(3023), 1, sym_template_type, + STATE(3027), 1, sym_dependent_type_identifier, - [279445] = 10, + STATE(3081), 1, + sym_qualified_type_identifier, + STATE(7067), 1, + sym__scope_resolution, + STATE(9043), 1, + sym_decltype, + [279957] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(3936), 1, + ACTIONS(7837), 1, anon_sym_COLON_COLON, - ACTIONS(11051), 1, + ACTIONS(11187), 1, + anon_sym_template, + ACTIONS(11191), 1, sym_identifier, - STATE(3020), 1, + STATE(2179), 1, sym_template_type, - STATE(3027), 1, - sym_qualified_type_identifier, - STATE(3045), 1, + STATE(2180), 1, sym_dependent_type_identifier, - STATE(7036), 1, + STATE(2275), 1, + sym_qualified_type_identifier, + STATE(7068), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [279476] = 6, + [279988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4419), 1, + STATE(4416), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10421), 5, + ACTIONS(10521), 5, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [279499] = 8, + [280011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(9865), 1, - anon_sym_TILDE, - ACTIONS(11065), 1, - sym_identifier, - ACTIONS(11067), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11070), 1, - anon_sym_template, - STATE(8210), 1, - sym_operator_name, - STATE(3717), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [279526] = 4, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10503), 1, + anon_sym_LBRACK, + STATE(4416), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10505), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [280034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11074), 1, - anon_sym_AMP, - ACTIONS(11076), 2, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(11072), 6, + ACTIONS(9650), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, + ACTIONS(10503), 1, anon_sym_LBRACK, - [279545] = 10, + STATE(4416), 1, + sym_parameter_list, + STATE(6464), 1, + sym__function_declarator_seq, + ACTIONS(10523), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [280057] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(1428), 1, + anon_sym_template, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9088), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(11078), 1, + ACTIONS(11193), 1, sym_identifier, - ACTIONS(11080), 1, - anon_sym_template, - STATE(2067), 1, - sym_dependent_type_identifier, - STATE(2071), 1, - sym_template_type, - STATE(2255), 1, - sym_qualified_type_identifier, - STATE(7040), 1, + STATE(6238), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(8995), 1, + sym_qualified_identifier, + STATE(9043), 3, sym_decltype, - [279576] = 10, + sym_template_type, + sym_dependent_type_identifier, + [280084] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(9044), 1, + ACTIONS(5077), 1, anon_sym_COLON_COLON, - ACTIONS(11082), 1, + ACTIONS(11195), 1, sym_identifier, - ACTIONS(11084), 1, + ACTIONS(11197), 1, anon_sym_template, - STATE(4122), 1, - sym_dependent_type_identifier, - STATE(4135), 1, + STATE(3071), 1, sym_template_type, - STATE(4236), 1, + STATE(3079), 1, + sym_dependent_type_identifier, + STATE(3090), 1, sym_qualified_type_identifier, - STATE(7041), 1, + STATE(7073), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [279607] = 6, + [280115] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(3110), 1, + sym_template_argument_list, + ACTIONS(7923), 2, anon_sym_LBRACK, - STATE(4419), 1, - sym_parameter_list, - STATE(6400), 1, - sym__function_declarator_seq, - ACTIONS(10419), 5, - anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [279630] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(7736), 1, - anon_sym_COLON_COLON, - ACTIONS(11080), 1, - anon_sym_template, - ACTIONS(11086), 1, - sym_identifier, - STATE(2067), 1, - sym_dependent_type_identifier, - STATE(2071), 1, - sym_template_type, - STATE(2255), 1, - sym_qualified_type_identifier, - STATE(7043), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_decltype, - [279661] = 8, + ACTIONS(5056), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [280138] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1428), 1, anon_sym_template, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(10149), 1, + ACTIONS(10156), 1, anon_sym_COLON_COLON, - ACTIONS(11088), 1, + ACTIONS(11199), 1, sym_identifier, - STATE(6274), 1, + STATE(6238), 1, sym__scope_resolution, - STATE(8479), 1, + STATE(8790), 1, sym_qualified_identifier, - STATE(9084), 3, + STATE(9043), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [279688] = 10, + [280165] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2172), 1, anon_sym_decltype, - ACTIONS(7778), 1, + ACTIONS(5096), 1, anon_sym_COLON_COLON, - ACTIONS(11011), 1, + ACTIONS(11130), 1, sym_identifier, - ACTIONS(11013), 1, + ACTIONS(11132), 1, anon_sym_template, - STATE(3020), 1, + STATE(3071), 1, sym_template_type, - STATE(3045), 1, + STATE(3079), 1, sym_dependent_type_identifier, - STATE(3661), 1, - sym_qualified_type_identifier, - STATE(7045), 1, - sym__scope_resolution, - STATE(9084), 1, - sym_decltype, - [279719] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2130), 1, - anon_sym_decltype, - ACTIONS(5045), 1, - anon_sym_COLON_COLON, - ACTIONS(11090), 1, - sym_identifier, - ACTIONS(11092), 1, - anon_sym_template, - STATE(3020), 1, - sym_template_type, - STATE(3027), 1, + STATE(3090), 1, sym_qualified_type_identifier, - STATE(3045), 1, - sym_dependent_type_identifier, - STATE(7046), 1, + STATE(7076), 1, sym__scope_resolution, - STATE(9084), 1, + STATE(9043), 1, sym_decltype, - [279750] = 6, + [280196] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4419), 1, + STATE(4416), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10417), 5, + ACTIONS(10517), 5, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [279773] = 5, + [280219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11094), 1, + ACTIONS(11201), 1, sym_identifier, - ACTIONS(11096), 1, + ACTIONS(11203), 1, sym_system_lib_string, - STATE(8723), 2, + STATE(8526), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(10978), 5, + ACTIONS(11092), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [279794] = 6, + [280240] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10400), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - STATE(4419), 1, + STATE(4416), 1, sym_parameter_list, - STATE(6400), 1, + STATE(6464), 1, sym__function_declarator_seq, - ACTIONS(10413), 5, + ACTIONS(10541), 5, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [279817] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11098), 1, - sym_identifier, - ACTIONS(11100), 1, - sym_system_lib_string, - STATE(8904), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(10978), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [279838] = 8, + [280263] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(10503), 1, anon_sym_LBRACK, - ACTIONS(10505), 1, - anon_sym_COLON, - STATE(4396), 1, + STATE(4416), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6464), 1, sym__function_declarator_seq, - STATE(6866), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [279864] = 8, + ACTIONS(10515), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [280286] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(9982), 1, + anon_sym_TILDE, + ACTIONS(11166), 1, + sym_identifier, + ACTIONS(11171), 1, + anon_sym_template, + STATE(8371), 1, + sym_operator_name, + STATE(3891), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [280310] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + sym_identifier, + ACTIONS(10887), 1, + aux_sym_preproc_else_token1, + ACTIONS(11205), 1, + aux_sym_preproc_if_token2, + ACTIONS(11207), 1, + aux_sym_preproc_elif_token1, + STATE(7198), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9407), 1, + sym_enumerator, + STATE(9221), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [280336] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(6875), 1, + ACTIONS(7113), 1, anon_sym_LT, - ACTIONS(11102), 1, + ACTIONS(11209), 1, anon_sym_SEMI, - ACTIONS(11104), 1, + ACTIONS(11211), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(1974), 1, sym_template_argument_list, - STATE(7472), 2, + STATE(7336), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279890] = 8, + [280362] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(11106), 1, - anon_sym_RPAREN, - STATE(4154), 1, + ACTIONS(11213), 1, + anon_sym_SEMI, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279916] = 8, + [280388] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(10484), 1, - anon_sym_COLON, - STATE(4396), 1, + ACTIONS(11215), 1, + anon_sym_RPAREN, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6866), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279942] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(9865), 1, - anon_sym_TILDE, - ACTIONS(11065), 1, - sym_identifier, - ACTIONS(11070), 1, - anon_sym_template, - STATE(8210), 1, - sym_operator_name, - STATE(3717), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [279966] = 8, + [280414] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - ACTIONS(10474), 1, - anon_sym_COLON, - STATE(4396), 1, + ACTIONS(11217), 1, + anon_sym_RPAREN, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6984), 1, sym__function_declarator_seq, - STATE(6866), 2, + STATE(7197), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11110), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11108), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [280008] = 8, + [280440] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(11112), 1, + ACTIONS(11219), 1, anon_sym_SEMI, - STATE(4154), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280034] = 5, + [280466] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10888), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, anon_sym_LBRACK, - STATE(7921), 1, - sym_gnu_asm_input_operand, - STATE(9218), 1, - sym_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [280054] = 4, + ACTIONS(11221), 1, + anon_sym_SEMI, + STATE(4267), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280492] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11116), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11118), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(11223), 1, + anon_sym_SEMI, + ACTIONS(11225), 1, anon_sym_EQ, - ACTIONS(11114), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [280072] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10735), 1, - sym_identifier, - ACTIONS(10798), 1, - aux_sym_preproc_else_token1, - ACTIONS(11120), 1, - aux_sym_preproc_if_token2, - ACTIONS(11122), 1, - aux_sym_preproc_elif_token1, - STATE(7169), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9344), 1, - sym_enumerator, - STATE(9227), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [280098] = 8, + STATE(1974), 1, + sym_template_argument_list, + STATE(7377), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280518] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9568), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - ACTIONS(10503), 1, + ACTIONS(10587), 1, anon_sym_RPAREN, - STATE(4154), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6887), 1, + STATE(6984), 1, sym__function_declarator_seq, - STATE(7177), 2, + STATE(7197), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280124] = 8, + [280544] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11227), 1, + sym_identifier, + ACTIONS(11232), 1, + aux_sym_preproc_elif_token1, + STATE(7091), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9111), 1, + sym_enumerator, + ACTIONS(11230), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [280566] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(11124), 1, + ACTIONS(11234), 1, anon_sym_SEMI, - STATE(4154), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280150] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(3036), 1, - sym_template_argument_list, - ACTIONS(6097), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [280170] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(9881), 1, - anon_sym_TILDE, - ACTIONS(11126), 1, - sym_identifier, - ACTIONS(11128), 1, - anon_sym_template, - STATE(8301), 1, - sym_operator_name, - STATE(2835), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [280194] = 8, + [280592] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(6875), 1, + ACTIONS(7113), 1, anon_sym_LT, - ACTIONS(11130), 1, + ACTIONS(11236), 1, anon_sym_SEMI, - ACTIONS(11132), 1, + ACTIONS(11238), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(1974), 1, sym_template_argument_list, - STATE(7534), 2, + STATE(7357), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280220] = 8, + [280618] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9568), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - ACTIONS(11134), 1, + ACTIONS(10630), 1, anon_sym_RPAREN, - STATE(4154), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6887), 1, + STATE(6984), 1, sym__function_declarator_seq, - STATE(7177), 2, + STATE(7197), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280246] = 8, + [280644] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(11136), 1, + ACTIONS(11240), 1, anon_sym_SEMI, - STATE(4154), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280272] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(7849), 1, - anon_sym_LBRACK, - STATE(6676), 1, - sym_template_argument_list, - ACTIONS(5026), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [280294] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(7577), 1, - sym_string_literal, - ACTIONS(11138), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [280312] = 8, + [280670] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9568), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(10482), 1, - anon_sym_RPAREN, - STATE(4154), 1, + ACTIONS(11242), 1, + anon_sym_SEMI, + STATE(4267), 1, sym_parameter_list, - STATE(6887), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(7177), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280338] = 6, + [280696] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4436), 1, + STATE(4426), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10421), 4, + ACTIONS(10541), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [280360] = 6, + [280718] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(10581), 1, + anon_sym_COLON, + STATE(4498), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6867), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280744] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4436), 1, + STATE(4426), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10419), 4, + ACTIONS(10515), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [280382] = 8, + [280766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11246), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11244), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [280782] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(6875), 1, + ACTIONS(7113), 1, anon_sym_LT, - ACTIONS(11140), 1, + ACTIONS(11248), 1, anon_sym_SEMI, - ACTIONS(11142), 1, + ACTIONS(11250), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(1974), 1, sym_template_argument_list, - STATE(7360), 2, + STATE(7359), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280408] = 8, + [280808] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(6683), 1, + sym_template_argument_list, + ACTIONS(5019), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [280830] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(10557), 1, + ACTIONS(10610), 1, anon_sym_COLON, - STATE(4396), 1, + STATE(4498), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6866), 2, + STATE(6867), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280434] = 6, + [280856] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4436), 1, + STATE(4426), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10417), 4, + ACTIONS(10505), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [280456] = 6, + [280878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4436), 1, + STATE(4426), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10413), 4, + ACTIONS(10517), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [280478] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10735), 1, - sym_identifier, - ACTIONS(10798), 1, - aux_sym_preproc_else_token1, - ACTIONS(11122), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11144), 1, - aux_sym_preproc_if_token2, - STATE(7169), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9344), 1, - sym_enumerator, - STATE(9290), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [280504] = 8, + [280900] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(11146), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(11252), 1, anon_sym_SEMI, - ACTIONS(11148), 1, - anon_sym_EQ, - STATE(1935), 1, - sym_template_argument_list, - STATE(7404), 2, + STATE(4267), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280530] = 6, + [280926] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11150), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(9910), 1, + anon_sym_TILDE, + ACTIONS(11254), 1, sym_identifier, - ACTIONS(11155), 1, - aux_sym_preproc_elif_token1, - STATE(7080), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9191), 1, - sym_enumerator, - ACTIONS(11153), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [280552] = 7, + ACTIONS(11256), 1, + anon_sym_template, + STATE(8209), 1, + sym_operator_name, + STATE(2817), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [280950] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10783), 1, - aux_sym_preproc_else_token1, - ACTIONS(10810), 1, + ACTIONS(10856), 1, sym_identifier, - ACTIONS(11157), 1, + ACTIONS(10897), 1, + aux_sym_preproc_else_token1, + ACTIONS(11258), 1, aux_sym_preproc_if_token2, - ACTIONS(11159), 1, + ACTIONS(11260), 1, aux_sym_preproc_elif_token1, - STATE(7166), 2, + STATE(7200), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9293), 2, + STATE(9324), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [280576] = 8, + [280974] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + sym_identifier, + ACTIONS(10887), 1, + aux_sym_preproc_else_token1, + ACTIONS(11207), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11262), 1, + aux_sym_preproc_if_token2, + STATE(7082), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9407), 1, + sym_enumerator, + STATE(9091), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [281000] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(9910), 1, + anon_sym_TILDE, + ACTIONS(11264), 1, + sym_identifier, + ACTIONS(11266), 1, + anon_sym_template, + STATE(8337), 1, + sym_operator_name, + STATE(2817), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [281024] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + sym_identifier, + ACTIONS(10887), 1, + aux_sym_preproc_else_token1, + ACTIONS(11207), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11268), 1, + aux_sym_preproc_if_token2, + STATE(7198), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9407), 1, + sym_enumerator, + STATE(9321), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [281050] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(11161), 1, + ACTIONS(11270), 1, anon_sym_COLON, - STATE(4396), 1, + STATE(4498), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6866), 2, + STATE(6867), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280602] = 8, + [281076] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(6201), 1, + anon_sym_LBRACK, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(3110), 1, + sym_template_argument_list, + ACTIONS(6203), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [281096] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, sym_identifier, - ACTIONS(10798), 1, + ACTIONS(10858), 1, + aux_sym_preproc_if_token2, + ACTIONS(10887), 1, aux_sym_preproc_else_token1, - ACTIONS(11122), 1, + ACTIONS(11207), 1, aux_sym_preproc_elif_token1, - ACTIONS(11163), 1, - aux_sym_preproc_if_token2, - STATE(7061), 1, + STATE(7111), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9344), 1, + STATE(9407), 1, sym_enumerator, - STATE(9187), 2, + STATE(9249), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [280628] = 8, + [281122] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(11165), 1, - anon_sym_SEMI, - ACTIONS(11167), 1, - anon_sym_EQ, - STATE(1935), 1, - sym_template_argument_list, - STATE(7450), 2, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(10579), 1, + anon_sym_COLON, + STATE(4498), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6867), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11171), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - ACTIONS(11169), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [280670] = 5, + [281148] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10914), 1, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, anon_sym_LBRACK, - STATE(7893), 1, - sym_gnu_asm_output_operand, - STATE(9129), 1, - sym_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [280690] = 8, + ACTIONS(10652), 1, + anon_sym_COLON, + STATE(4498), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6867), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [281174] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - ACTIONS(11173), 1, - anon_sym_SEMI, - STATE(4154), 1, + ACTIONS(10608), 1, + anon_sym_RPAREN, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6984), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(7197), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280716] = 8, + [281200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, + ACTIONS(11272), 1, sym_identifier, - ACTIONS(10798), 1, - aux_sym_preproc_else_token1, - ACTIONS(10812), 1, - aux_sym_preproc_if_token2, - ACTIONS(11122), 1, + ACTIONS(11277), 1, aux_sym_preproc_elif_token1, - STATE(7078), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9344), 1, + STATE(7118), 2, sym_enumerator, - STATE(9265), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [280742] = 8, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(11275), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [281220] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(11175), 1, - anon_sym_SEMI, - STATE(4154), 1, + ACTIONS(10597), 1, + anon_sym_COLON, + STATE(4498), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6867), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280768] = 7, + [281246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10783), 1, - aux_sym_preproc_else_token1, - ACTIONS(10810), 1, + STATE(7328), 1, + sym_string_literal, + ACTIONS(11279), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [281264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11283), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11281), 5, + anon_sym___based, sym_identifier, - ACTIONS(11159), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11177), 1, - aux_sym_preproc_if_token2, - STATE(7166), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9229), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [280792] = 8, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [281280] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(11179), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(11285), 1, anon_sym_SEMI, - STATE(4154), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, + ACTIONS(11287), 1, + anon_sym_EQ, + STATE(1974), 1, + sym_template_argument_list, + STATE(7342), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280818] = 8, + [281306] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(10130), 1, + anon_sym_TILDE, + ACTIONS(11289), 1, + sym_identifier, + ACTIONS(11291), 1, + anon_sym_template, + STATE(8208), 1, + sym_operator_name, + STATE(4020), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [281330] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(11181), 1, + ACTIONS(11293), 1, anon_sym_SEMI, - STATE(4154), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280844] = 5, + [281356] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11183), 1, + ACTIONS(11025), 1, + anon_sym_LBRACK, + STATE(7745), 1, + sym_gnu_asm_output_operand, + STATE(9020), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [281376] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10856), 1, sym_identifier, - ACTIONS(11188), 1, + ACTIONS(10897), 1, + aux_sym_preproc_else_token1, + ACTIONS(11260), 1, aux_sym_preproc_elif_token1, - STATE(7093), 2, + ACTIONS(11295), 1, + aux_sym_preproc_if_token2, + STATE(7108), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(11186), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [280864] = 8, + STATE(9280), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [281400] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LBRACK, + STATE(6683), 1, + sym_template_argument_list, + ACTIONS(5056), 4, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + anon_sym_LBRACE, + anon_sym_try, + [281422] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(3782), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(11297), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [281444] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9568), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - ACTIONS(10511), 1, - anon_sym_RPAREN, - STATE(4154), 1, + STATE(4426), 1, sym_parameter_list, - STATE(6887), 1, + STATE(6658), 1, sym__function_declarator_seq, - STATE(7177), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [280890] = 8, + ACTIONS(10521), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [281466] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10856), 1, + sym_identifier, + ACTIONS(10897), 1, + aux_sym_preproc_else_token1, + ACTIONS(11260), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11299), 1, + aux_sym_preproc_if_token2, + STATE(7200), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9229), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [281490] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9568), 1, - anon_sym_LBRACK, - ACTIONS(10513), 1, - anon_sym_RPAREN, - STATE(4154), 1, - sym_parameter_list, - STATE(6887), 1, - sym__function_declarator_seq, - STATE(7177), 2, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(11301), 1, + anon_sym_SEMI, + ACTIONS(11303), 1, + anon_sym_EQ, + STATE(1974), 1, + sym_template_argument_list, + STATE(7523), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280916] = 8, + [281516] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(6875), 1, + ACTIONS(7113), 1, anon_sym_LT, - ACTIONS(11190), 1, + ACTIONS(11305), 1, anon_sym_SEMI, - ACTIONS(11192), 1, + ACTIONS(11307), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(1974), 1, sym_template_argument_list, - STATE(7371), 2, + STATE(7334), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [280942] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(9881), 1, - anon_sym_TILDE, - ACTIONS(11194), 1, - sym_identifier, - ACTIONS(11196), 1, - anon_sym_template, - STATE(8169), 1, - sym_operator_name, - STATE(2835), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [280966] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10783), 1, - aux_sym_preproc_else_token1, - ACTIONS(10810), 1, - sym_identifier, - ACTIONS(11159), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11198), 1, - aux_sym_preproc_if_token2, - STATE(7081), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9271), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [280990] = 7, + [281542] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, + ACTIONS(2122), 1, anon_sym_operator, - ACTIONS(9909), 1, + ACTIONS(10062), 1, anon_sym_TILDE, - ACTIONS(11200), 1, + ACTIONS(11309), 1, sym_identifier, - ACTIONS(11202), 1, + ACTIONS(11311), 1, anon_sym_template, - STATE(8313), 1, + STATE(8139), 1, sym_operator_name, - STATE(4067), 3, + STATE(3403), 3, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, - [281014] = 8, + [281566] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9568), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - ACTIONS(10565), 1, + ACTIONS(10616), 1, anon_sym_RPAREN, - STATE(4154), 1, + STATE(4267), 1, sym_parameter_list, - STATE(6887), 1, + STATE(6984), 1, sym__function_declarator_seq, - STATE(7177), 2, + STATE(7197), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281040] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(10003), 1, - anon_sym_TILDE, - ACTIONS(11204), 1, - sym_identifier, - ACTIONS(11206), 1, - anon_sym_template, - STATE(8412), 1, - sym_operator_name, - STATE(3537), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [281064] = 8, + [281592] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9656), 1, anon_sym_LBRACK, - ACTIONS(11208), 1, - anon_sym_SEMI, - STATE(4154), 1, + ACTIONS(10666), 1, + anon_sym_RPAREN, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6984), 1, sym__function_declarator_seq, - STATE(6609), 2, + STATE(7197), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281090] = 8, + [281618] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(9783), 1, - anon_sym_LBRACK, - ACTIONS(11210), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(11313), 1, anon_sym_SEMI, - STATE(4154), 1, - sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, + ACTIONS(11315), 1, + anon_sym_EQ, + STATE(1974), 1, + sym_template_argument_list, + STATE(7346), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281116] = 6, + [281644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(11045), 1, anon_sym_LBRACK, - STATE(4436), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10398), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [281138] = 8, + STATE(7702), 1, + sym_gnu_asm_input_operand, + STATE(9177), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [281664] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(6875), 1, + ACTIONS(7113), 1, anon_sym_LT, - ACTIONS(11212), 1, + ACTIONS(11317), 1, anon_sym_SEMI, - ACTIONS(11214), 1, + ACTIONS(11319), 1, anon_sym_EQ, - STATE(1935), 1, + STATE(1974), 1, sym_template_argument_list, - STATE(7337), 2, + STATE(7339), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281164] = 8, + [281690] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - ACTIONS(11216), 1, - anon_sym_SEMI, - STATE(4154), 1, + STATE(4426), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6658), 1, sym__function_declarator_seq, - STATE(6609), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [281190] = 6, + ACTIONS(10523), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [281712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(11323), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11325), 1, + anon_sym_EQ, + ACTIONS(11321), 6, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [281730] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4436), 1, + STATE(4426), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10415), 4, + ACTIONS(10501), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [281212] = 8, + [281752] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(11218), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(9930), 1, + anon_sym_LBRACK, + ACTIONS(11327), 1, anon_sym_SEMI, - ACTIONS(11220), 1, - anon_sym_EQ, - STATE(1935), 1, - sym_template_argument_list, - STATE(7332), 2, + STATE(4267), 1, + sym_parameter_list, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281238] = 8, + [281778] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7758), 1, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, + ACTIONS(9930), 1, anon_sym_LBRACK, - ACTIONS(10507), 1, - anon_sym_COLON, - STATE(4396), 1, + ACTIONS(11329), 1, + anon_sym_SEMI, + STATE(4267), 1, sym_parameter_list, - STATE(6718), 1, + STATE(6748), 1, sym__function_declarator_seq, - STATE(6866), 2, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281264] = 8, + [281804] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(11222), 1, - anon_sym_SEMI, - ACTIONS(11224), 1, - anon_sym_EQ, - STATE(1935), 1, - sym_template_argument_list, - STATE(7447), 2, + ACTIONS(5833), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(11331), 1, + anon_sym_RPAREN, + STATE(2499), 1, + sym_parameter_list, + STATE(6918), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281290] = 6, + [281827] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(3802), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(11226), 4, - anon_sym_SEMI, + ACTIONS(5098), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [281312] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(4436), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10423), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [281334] = 6, + ACTIONS(11333), 1, + sym_identifier, + ACTIONS(11335), 1, + anon_sym_COLON_COLON, + ACTIONS(11337), 1, + anon_sym_inline, + STATE(1037), 1, + sym_declaration_list, + STATE(8232), 1, + sym_nested_namespace_specifier, + STATE(8788), 1, + sym__namespace_specifier, + [281852] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4977), 1, - anon_sym_LBRACK, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(6676), 1, - sym_template_argument_list, - ACTIONS(4970), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, + ACTIONS(5100), 1, anon_sym_LBRACE, - anon_sym_try, - [281356] = 8, + ACTIONS(11335), 1, + anon_sym_COLON_COLON, + ACTIONS(11337), 1, + anon_sym_inline, + ACTIONS(11339), 1, + sym_identifier, + STATE(509), 1, + sym_declaration_list, + STATE(8231), 1, + sym_nested_namespace_specifier, + STATE(8788), 1, + sym__namespace_specifier, + [281877] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5104), 1, anon_sym_LBRACE, - ACTIONS(11228), 1, - sym_identifier, - ACTIONS(11230), 1, + ACTIONS(11335), 1, anon_sym_COLON_COLON, - ACTIONS(11232), 1, + ACTIONS(11337), 1, anon_sym_inline, - STATE(936), 1, + ACTIONS(11341), 1, + sym_identifier, + STATE(943), 1, sym_declaration_list, - STATE(8363), 1, + STATE(8088), 1, sym_nested_namespace_specifier, - STATE(8497), 1, + STATE(8788), 1, sym__namespace_specifier, - [281381] = 6, + [281902] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(5833), 1, anon_sym_LBRACK, - STATE(4159), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10415), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [281402] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, + ACTIONS(5899), 1, + anon_sym_COLON, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5809), 1, - anon_sym_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(11234), 1, - anon_sym_RPAREN, - STATE(2398), 1, + STATE(2499), 1, sym_parameter_list, - STATE(6913), 2, + STATE(7204), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281425] = 6, + [281925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4309), 1, + STATE(4295), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10415), 3, + ACTIONS(10515), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [281446] = 7, + [281946] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5809), 1, - anon_sym_LBRACK, - ACTIONS(5813), 1, - anon_sym_COLON, - ACTIONS(7758), 1, + ACTIONS(5106), 1, + anon_sym_LBRACE, + ACTIONS(11335), 1, + anon_sym_COLON_COLON, + ACTIONS(11337), 1, + anon_sym_inline, + ACTIONS(11343), 1, + sym_identifier, + STATE(889), 1, + sym_declaration_list, + STATE(8114), 1, + sym_nested_namespace_specifier, + STATE(8788), 1, + sym__namespace_specifier, + [281971] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(5833), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, - STATE(2398), 1, + ACTIONS(11345), 1, + anon_sym_RPAREN, + STATE(2499), 1, sym_parameter_list, - STATE(7161), 2, + STATE(6918), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281469] = 5, + [281994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11236), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - ACTIONS(11239), 1, + ACTIONS(11350), 1, anon_sym_EQ, - ACTIONS(11241), 1, + ACTIONS(11352), 1, anon_sym_DOT, - STATE(7119), 4, + STATE(7152), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [281488] = 7, + [282013] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6201), 1, + anon_sym_LBRACK, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(6683), 1, + sym_template_argument_list, + ACTIONS(6203), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [282032] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5809), 1, + ACTIONS(5833), 1, anon_sym_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(11244), 1, + ACTIONS(11355), 1, anon_sym_RPAREN, - STATE(2398), 1, + STATE(2499), 1, sym_parameter_list, - STATE(6913), 2, + STATE(6918), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281511] = 5, + [282055] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(8023), 1, + sym_template_argument_list, + STATE(8024), 2, + sym_argument_list, + sym_initializer_list, + [282078] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4295), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10541), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [282099] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11246), 1, + ACTIONS(11357), 1, anon_sym_LBRACK, - ACTIONS(11248), 1, + ACTIONS(11359), 1, anon_sym_EQ, - ACTIONS(11250), 1, + ACTIONS(11361), 1, anon_sym_DOT, - STATE(7119), 4, + STATE(7152), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [281530] = 6, + [282118] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5833), 1, anon_sym_LBRACK, - STATE(4159), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10413), 3, - anon_sym_COMMA, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(11363), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [281551] = 7, + STATE(2499), 1, + sym_parameter_list, + STATE(6918), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [282141] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5809), 1, + ACTIONS(5827), 1, + anon_sym_COLON, + ACTIONS(5833), 1, anon_sym_LBRACK, - ACTIONS(9562), 1, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(11252), 1, - anon_sym_RPAREN, - STATE(2398), 1, + STATE(2499), 1, sym_parameter_list, - STATE(6913), 2, + STATE(7204), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281574] = 6, + [282164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10421), 3, + ACTIONS(10521), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [281595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6496), 1, - anon_sym_AMP, - ACTIONS(6498), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_requires, - [281610] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5068), 1, - anon_sym_LBRACE, - ACTIONS(11230), 1, - anon_sym_COLON_COLON, - ACTIONS(11232), 1, - anon_sym_inline, - ACTIONS(11254), 1, - sym_identifier, - STATE(860), 1, - sym_declaration_list, - STATE(8390), 1, - sym_nested_namespace_specifier, - STATE(8497), 1, - sym__namespace_specifier, - [281635] = 3, + [282185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11258), 1, + ACTIONS(11367), 1, anon_sym_AMP, - ACTIONS(11256), 6, + ACTIONS(11365), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [281650] = 6, + [282200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4159), 1, + STATE(4295), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10419), 3, + ACTIONS(10505), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [281671] = 6, + anon_sym_GT2, + [282221] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4309), 1, + STATE(4295), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10417), 3, + ACTIONS(10517), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [281692] = 6, + [282242] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4309), 1, + STATE(4295), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10423), 3, + ACTIONS(10501), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [281713] = 8, + [282263] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, - anon_sym_LBRACE, - ACTIONS(11230), 1, - anon_sym_COLON_COLON, - ACTIONS(11232), 1, - anon_sym_inline, - ACTIONS(11260), 1, - sym_identifier, - STATE(561), 1, - sym_declaration_list, - STATE(8280), 1, - sym_nested_namespace_specifier, - STATE(8497), 1, - sym__namespace_specifier, - [281738] = 6, + ACTIONS(5833), 1, + anon_sym_LBRACK, + ACTIONS(5895), 1, + anon_sym_COLON, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + STATE(2499), 1, + sym_parameter_list, + STATE(7204), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [282286] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10417), 3, + ACTIONS(10541), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [281759] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5070), 1, - anon_sym_LBRACE, - ACTIONS(11230), 1, - anon_sym_COLON_COLON, - ACTIONS(11232), 1, - anon_sym_inline, - ACTIONS(11262), 1, - sym_identifier, - STATE(421), 1, - sym_declaration_list, - STATE(8196), 1, - sym_nested_namespace_specifier, - STATE(8497), 1, - sym__namespace_specifier, - [281784] = 7, + [282307] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(5833), 1, + anon_sym_LBRACK, + ACTIONS(5889), 1, + anon_sym_COLON, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(9783), 1, - anon_sym_LBRACK, - STATE(4105), 1, + STATE(2499), 1, sym_parameter_list, - STATE(6718), 1, - sym__function_declarator_seq, - STATE(6609), 2, + STATE(7204), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [281807] = 6, + [282330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(11148), 1, + anon_sym_AMP, + ACTIONS(11146), 6, anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(4309), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10421), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [281828] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5066), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_LBRACE, - ACTIONS(11230), 1, - anon_sym_COLON_COLON, - ACTIONS(11232), 1, - anon_sym_inline, - ACTIONS(11264), 1, - sym_identifier, - STATE(907), 1, - sym_declaration_list, - STATE(8143), 1, - sym_nested_namespace_specifier, - STATE(8497), 1, - sym__namespace_specifier, - [281853] = 6, + anon_sym_LBRACK, + [282345] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4309), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10419), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(10515), 3, anon_sym_COMMA, - anon_sym_GT2, - [281874] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5809), 1, - anon_sym_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(11266), 1, anon_sym_RPAREN, - STATE(2398), 1, - sym_parameter_list, - STATE(6913), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [281897] = 6, + anon_sym_SEMI, + [282366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4309), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10398), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(10501), 3, anon_sym_COMMA, - anon_sym_GT2, - [281918] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(11230), 1, - anon_sym_COLON_COLON, - ACTIONS(11232), 1, - anon_sym_inline, - ACTIONS(11268), 1, - sym_identifier, - STATE(1034), 1, - sym_declaration_list, - STATE(8179), 1, - sym_nested_namespace_specifier, - STATE(8497), 1, - sym__namespace_specifier, - [281943] = 8, + anon_sym_RPAREN, + anon_sym_SEMI, + [282387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5070), 1, - anon_sym_LBRACE, - ACTIONS(11230), 1, - anon_sym_COLON_COLON, - ACTIONS(11232), 1, - anon_sym_inline, - ACTIONS(11270), 1, + ACTIONS(11371), 1, + anon_sym_COMMA, + ACTIONS(11373), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11369), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - STATE(360), 1, - sym_declaration_list, - STATE(8212), 1, - sym_nested_namespace_specifier, - STATE(8497), 1, - sym__namespace_specifier, - [281968] = 3, + [282404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6484), 1, + ACTIONS(6507), 1, anon_sym_AMP, - ACTIONS(6486), 6, + ACTIONS(6509), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_requires, - [281983] = 7, + [282419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5809), 1, - anon_sym_LBRACK, - ACTIONS(5880), 1, - anon_sym_COLON, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - STATE(2398), 1, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4175), 1, sym_parameter_list, - STATE(7161), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [282006] = 5, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10505), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [282440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(6676), 1, - sym_template_argument_list, - ACTIONS(6097), 4, + ACTIONS(9650), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [282025] = 3, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4175), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10517), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [282461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6505), 1, + ACTIONS(6541), 1, anon_sym_AMP, - ACTIONS(6507), 6, + ACTIONS(6543), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_requires, - [282040] = 6, + [282476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(11377), 1, + anon_sym_AMP, + ACTIONS(11375), 6, anon_sym_LPAREN2, - ACTIONS(10476), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4309), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10413), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [282061] = 8, + [282491] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(11230), 1, + ACTIONS(11335), 1, anon_sym_COLON_COLON, - ACTIONS(11232), 1, + ACTIONS(11337), 1, anon_sym_inline, - ACTIONS(11272), 1, + ACTIONS(11379), 1, sym_identifier, - STATE(1024), 1, + STATE(410), 1, sym_declaration_list, - STATE(8359), 1, + STATE(8411), 1, sym_nested_namespace_specifier, - STATE(8497), 1, + STATE(8788), 1, sym__namespace_specifier, - [282086] = 6, + [282516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4159), 1, + STATE(4295), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10398), 3, + ACTIONS(10523), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [282107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11276), 1, - anon_sym_AMP, - ACTIONS(11274), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - [282122] = 7, + anon_sym_GT2, + [282537] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5809), 1, - anon_sym_LBRACK, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(11278), 1, - anon_sym_RPAREN, - STATE(2398), 1, + ACTIONS(9930), 1, + anon_sym_LBRACK, + STATE(4150), 1, sym_parameter_list, - STATE(6913), 2, + STATE(6748), 1, + sym__function_declarator_seq, + STATE(6734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [282145] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11282), 1, - anon_sym_COMMA, - ACTIONS(11284), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11280), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [282162] = 8, + [282560] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(11230), 1, + ACTIONS(11335), 1, anon_sym_COLON_COLON, - ACTIONS(11232), 1, + ACTIONS(11337), 1, anon_sym_inline, - ACTIONS(11286), 1, + ACTIONS(11381), 1, sym_identifier, - STATE(596), 1, + STATE(368), 1, sym_declaration_list, - STATE(8296), 1, + STATE(8430), 1, sym_nested_namespace_specifier, - STATE(8497), 1, + STATE(8788), 1, sym__namespace_specifier, - [282187] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5809), 1, - anon_sym_LBRACK, - ACTIONS(5847), 1, - anon_sym_COLON, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - STATE(2398), 1, - sym_parameter_list, - STATE(7161), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [282210] = 3, + [282585] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11290), 1, - anon_sym_AMP, - ACTIONS(11288), 6, + ACTIONS(9650), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, + ACTIONS(10585), 1, anon_sym_LBRACK, - [282225] = 6, + STATE(4295), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(10521), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [282606] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4159), 1, + STATE(4175), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - ACTIONS(10423), 3, + ACTIONS(10523), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [282246] = 3, + [282627] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11074), 1, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(11335), 1, + anon_sym_COLON_COLON, + ACTIONS(11337), 1, + anon_sym_inline, + ACTIONS(11383), 1, + sym_identifier, + STATE(577), 1, + sym_declaration_list, + STATE(8253), 1, + sym_nested_namespace_specifier, + STATE(8788), 1, + sym__namespace_specifier, + [282652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6537), 1, + anon_sym_AMP, + ACTIONS(6539), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_requires, + [282667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11387), 1, anon_sym_AMP, - ACTIONS(11072), 6, + ACTIONS(11385), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [282261] = 8, + [282682] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 1, + ACTIONS(5104), 1, anon_sym_LBRACE, - ACTIONS(11230), 1, + ACTIONS(11335), 1, anon_sym_COLON_COLON, - ACTIONS(11232), 1, + ACTIONS(11337), 1, anon_sym_inline, - ACTIONS(11292), 1, + ACTIONS(11389), 1, sym_identifier, - STATE(942), 1, + STATE(895), 1, sym_declaration_list, - STATE(8151), 1, + STATE(8047), 1, sym_nested_namespace_specifier, - STATE(8497), 1, + STATE(8788), 1, sym__namespace_specifier, - [282286] = 3, + [282707] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4485), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5833), 1, + anon_sym_LBRACK, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(11391), 1, + anon_sym_RPAREN, + STATE(2499), 1, + sym_parameter_list, + STATE(6918), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [282730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4469), 1, anon_sym_AMP, - ACTIONS(4483), 6, + ACTIONS(4467), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [282301] = 7, + [282745] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(5098), 1, anon_sym_LBRACE, - ACTIONS(4158), 1, + ACTIONS(11335), 1, anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(7618), 1, - sym_template_argument_list, - STATE(7630), 2, - sym_argument_list, - sym_initializer_list, - [282324] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5803), 1, - anon_sym_COLON, - ACTIONS(5809), 1, - anon_sym_LBRACK, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - STATE(2398), 1, - sym_parameter_list, - STATE(7161), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [282347] = 5, + ACTIONS(11337), 1, + anon_sym_inline, + ACTIONS(11393), 1, + sym_identifier, + STATE(1004), 1, + sym_declaration_list, + STATE(8068), 1, + sym_nested_namespace_specifier, + STATE(8788), 1, + sym__namespace_specifier, + [282770] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_LBRACK, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5956), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(6333), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [282365] = 3, + ACTIONS(5106), 1, + anon_sym_LBRACE, + ACTIONS(11335), 1, + anon_sym_COLON_COLON, + ACTIONS(11337), 1, + anon_sym_inline, + ACTIONS(11395), 1, + sym_identifier, + STATE(908), 1, + sym_declaration_list, + STATE(8156), 1, + sym_nested_namespace_specifier, + STATE(8788), 1, + sym__namespace_specifier, + [282795] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11294), 1, + ACTIONS(9730), 1, + anon_sym_try, + ACTIONS(10727), 1, + anon_sym_LBRACE, + ACTIONS(11397), 1, + anon_sym_SEMI, + ACTIONS(11399), 1, anon_sym_EQ, - ACTIONS(11114), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [282379] = 6, + STATE(2565), 2, + sym_compound_statement, + sym_try_statement, + [282815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9640), 1, + ACTIONS(9758), 1, anon_sym_try, - ACTIONS(10685), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - ACTIONS(11296), 1, + ACTIONS(11401), 1, anon_sym_SEMI, - ACTIONS(11298), 1, + ACTIONS(11403), 1, anon_sym_EQ, - STATE(2163), 2, + STATE(2318), 2, sym_compound_statement, sym_try_statement, - [282399] = 5, + [282835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(10733), 1, + STATE(9340), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [282849] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11405), 1, + anon_sym_LPAREN2, + STATE(7212), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11407), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [282865] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6201), 1, anon_sym_LBRACK, - STATE(6943), 1, + ACTIONS(7457), 1, + anon_sym_LT, + STATE(4520), 1, sym_template_argument_list, - ACTIONS(10731), 3, + ACTIONS(6203), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [282417] = 3, + [282883] = 3, ACTIONS(3), 1, sym_comment, - STATE(9284), 1, + STATE(7679), 1, sym_string_literal, ACTIONS(111), 5, anon_sym_L_DQUOTE, @@ -593617,4620 +596987,3972 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [282431] = 4, + [282897] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10833), 1, + anon_sym_LBRACK, + ACTIONS(10831), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [282915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11300), 1, + ACTIONS(11227), 1, sym_identifier, - STATE(7166), 2, + STATE(7198), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9407), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(11186), 3, + ACTIONS(11230), 3, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [282447] = 5, + [282933] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(10725), 1, - anon_sym_LBRACK, - STATE(6952), 1, - sym_template_argument_list, - ACTIONS(10721), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [282465] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11303), 1, - anon_sym_LPAREN2, - STATE(7197), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [282481] = 5, + ACTIONS(1112), 1, + anon_sym_LBRACE, + ACTIONS(10034), 1, + anon_sym_try, + ACTIONS(11409), 1, + anon_sym_SEMI, + ACTIONS(11411), 1, + anon_sym_EQ, + STATE(851), 2, + sym_compound_statement, + sym_try_statement, + [282953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11150), 1, + ACTIONS(11413), 1, sym_identifier, - STATE(7169), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9344), 1, + STATE(7200), 2, sym_enumerator, - ACTIONS(11153), 3, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(11275), 3, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [282499] = 3, + [282969] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1112), 1, + anon_sym_LBRACE, + ACTIONS(10034), 1, + anon_sym_try, + ACTIONS(11416), 1, + anon_sym_SEMI, + ACTIONS(11418), 1, + anon_sym_EQ, + STATE(873), 2, + sym_compound_statement, + sym_try_statement, + [282989] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6201), 1, + anon_sym_LBRACK, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(4520), 1, + sym_template_argument_list, + ACTIONS(6203), 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [283007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11155), 1, + ACTIONS(11232), 1, aux_sym_preproc_elif_token1, - ACTIONS(11153), 5, + ACTIONS(11230), 5, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [282513] = 4, + [283021] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11307), 1, + ACTIONS(6016), 1, + anon_sym_LBRACK, + ACTIONS(7843), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6018), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(6373), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [283039] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11420), 1, anon_sym_LPAREN2, - STATE(7192), 2, + STATE(7232), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [282529] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9574), 1, - anon_sym_try, - ACTIONS(10573), 1, - anon_sym_LBRACE, - ACTIONS(11309), 1, - anon_sym_SEMI, - ACTIONS(11311), 1, - anon_sym_EQ, - STATE(2573), 2, - sym_compound_statement, - sym_try_statement, - [282549] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(9841), 1, - anon_sym_try, - ACTIONS(11313), 1, - anon_sym_SEMI, - ACTIONS(11315), 1, - anon_sym_EQ, - STATE(556), 2, - sym_compound_statement, - sym_try_statement, - [282569] = 4, + [283055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11317), 1, + ACTIONS(11422), 1, anon_sym_LPAREN2, - STATE(7192), 2, + STATE(7194), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [282585] = 4, + [283071] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11319), 1, + ACTIONS(11424), 1, anon_sym_LPAREN2, - STATE(7184), 2, + STATE(7210), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [282601] = 6, + [283087] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9624), 1, + ACTIONS(9662), 1, anon_sym_try, - ACTIONS(10677), 1, + ACTIONS(10771), 1, anon_sym_LBRACE, - ACTIONS(11321), 1, + ACTIONS(11426), 1, anon_sym_SEMI, - ACTIONS(11323), 1, + ACTIONS(11428), 1, anon_sym_EQ, - STATE(2343), 2, + STATE(2155), 2, sym_compound_statement, sym_try_statement, - [282621] = 5, + [283107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(7723), 1, + anon_sym___attribute__, + ACTIONS(7843), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10729), 1, - anon_sym_LBRACK, - ACTIONS(10727), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(6535), 2, + STATE(6162), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6364), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [282639] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, - anon_sym_LBRACE, - ACTIONS(9925), 1, - anon_sym_try, - ACTIONS(11325), 1, - anon_sym_SEMI, - ACTIONS(11327), 1, - anon_sym_EQ, - STATE(904), 2, - sym_compound_statement, - sym_try_statement, - [282659] = 5, + [283125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(7258), 1, - anon_sym_LT, - STATE(4530), 1, - sym_template_argument_list, - ACTIONS(6097), 3, - anon_sym_RPAREN, + ACTIONS(11430), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [282677] = 6, + STATE(7212), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11407), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [283141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(291), 1, + ACTIONS(379), 1, anon_sym_LBRACE, - ACTIONS(9905), 1, + ACTIONS(10028), 1, anon_sym_try, - ACTIONS(11329), 1, + ACTIONS(11432), 1, anon_sym_SEMI, - ACTIONS(11331), 1, + ACTIONS(11434), 1, anon_sym_EQ, - STATE(424), 2, + STATE(568), 2, sym_compound_statement, sym_try_statement, - [282697] = 4, + [283161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11333), 1, + ACTIONS(11436), 1, anon_sym_LPAREN2, - STATE(7174), 2, + STATE(7212), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11438), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [282713] = 6, + [283177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(796), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(9925), 1, + ACTIONS(9976), 1, anon_sym_try, - ACTIONS(11335), 1, + ACTIONS(11441), 1, anon_sym_SEMI, - ACTIONS(11337), 1, + ACTIONS(11443), 1, anon_sym_EQ, - STATE(922), 2, + STATE(1031), 2, sym_compound_statement, sym_try_statement, - [282733] = 6, + [283197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(998), 1, - anon_sym_LBRACE, - ACTIONS(9937), 1, - anon_sym_try, - ACTIONS(11339), 1, - anon_sym_SEMI, - ACTIONS(11341), 1, - anon_sym_EQ, - STATE(934), 2, - sym_compound_statement, - sym_try_statement, - [282753] = 4, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4295), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(11037), 2, + anon_sym_COMMA, + anon_sym_GT2, + [283217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11343), 1, + ACTIONS(11445), 1, anon_sym_LPAREN2, - STATE(7192), 2, + STATE(7222), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [282769] = 6, + [283233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9574), 1, - anon_sym_try, - ACTIONS(10573), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(11345), 1, + ACTIONS(9976), 1, + anon_sym_try, + ACTIONS(11447), 1, anon_sym_SEMI, - ACTIONS(11347), 1, + ACTIONS(11449), 1, anon_sym_EQ, - STATE(2528), 2, + STATE(961), 2, sym_compound_statement, sym_try_statement, - [282789] = 4, + [283253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11349), 1, + ACTIONS(11451), 1, anon_sym_LPAREN2, - STATE(7192), 2, + STATE(7212), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [282805] = 4, + [283269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11351), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - STATE(7214), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [282821] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9669), 1, - anon_sym_try, - ACTIONS(10597), 1, - anon_sym_LBRACE, - ACTIONS(11353), 1, - anon_sym_SEMI, - ACTIONS(11355), 1, - anon_sym_EQ, - STATE(2659), 2, - sym_compound_statement, - sym_try_statement, - [282841] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9624), 1, - anon_sym_try, - ACTIONS(10677), 1, - anon_sym_LBRACE, - ACTIONS(11357), 1, - anon_sym_SEMI, - ACTIONS(11359), 1, - anon_sym_EQ, - STATE(2294), 2, - sym_compound_statement, - sym_try_statement, - [282861] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(379), 1, - anon_sym_LBRACE, - ACTIONS(9841), 1, - anon_sym_try, - ACTIONS(11361), 1, - anon_sym_SEMI, - ACTIONS(11363), 1, - anon_sym_EQ, - STATE(524), 2, - sym_compound_statement, - sym_try_statement, - [282881] = 4, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4175), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + ACTIONS(11037), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [283289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11365), 1, + ACTIONS(11453), 1, anon_sym_LPAREN2, - STATE(7201), 2, + STATE(7230), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [282897] = 4, + [283305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11367), 1, + ACTIONS(11455), 1, anon_sym_LPAREN2, - STATE(7192), 2, + STATE(7217), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11369), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [282913] = 4, + [283321] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(9305), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [283335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11372), 1, + ACTIONS(11457), 1, anon_sym_LPAREN2, - STATE(7186), 2, + STATE(7212), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [282929] = 5, + [283351] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(4530), 1, - sym_template_argument_list, - ACTIONS(6097), 3, - anon_sym_LPAREN2, + ACTIONS(898), 1, + anon_sym_LBRACE, + ACTIONS(9966), 1, + anon_sym_try, + ACTIONS(11459), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [282947] = 6, + ACTIONS(11461), 1, + anon_sym_EQ, + STATE(893), 2, + sym_compound_statement, + sym_try_statement, + [283371] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(998), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(9937), 1, + ACTIONS(10110), 1, anon_sym_try, - ACTIONS(11374), 1, + ACTIONS(11463), 1, anon_sym_SEMI, - ACTIONS(11376), 1, + ACTIONS(11465), 1, anon_sym_EQ, - STATE(837), 2, + STATE(384), 2, sym_compound_statement, sym_try_statement, - [282967] = 4, + [283391] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11378), 1, - anon_sym_LPAREN2, - STATE(7192), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [282983] = 4, + ACTIONS(9758), 1, + anon_sym_try, + ACTIONS(10691), 1, + anon_sym_LBRACE, + ACTIONS(11467), 1, + anon_sym_SEMI, + ACTIONS(11469), 1, + anon_sym_EQ, + STATE(2329), 2, + sym_compound_statement, + sym_try_statement, + [283411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11380), 1, + ACTIONS(11471), 1, anon_sym_LPAREN2, - STATE(7192), 2, + STATE(7233), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [282999] = 5, + [283427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, + ACTIONS(5340), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - STATE(5956), 2, + STATE(5997), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6236), 2, + STATE(6312), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [283017] = 5, + [283445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, - anon_sym___attribute__, - ACTIONS(7758), 1, - anon_sym_LBRACK_LBRACK, - STATE(6131), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6332), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [283035] = 6, + ACTIONS(379), 1, + anon_sym_LBRACE, + ACTIONS(10028), 1, + anon_sym_try, + ACTIONS(11473), 1, + anon_sym_SEMI, + ACTIONS(11475), 1, + anon_sym_EQ, + STATE(549), 2, + sym_compound_statement, + sym_try_statement, + [283465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(9919), 1, + ACTIONS(9686), 1, anon_sym_try, - ACTIONS(11382), 1, + ACTIONS(10717), 1, + anon_sym_LBRACE, + ACTIONS(11477), 1, anon_sym_SEMI, - ACTIONS(11384), 1, + ACTIONS(11479), 1, anon_sym_EQ, - STATE(958), 2, + STATE(2686), 2, sym_compound_statement, sym_try_statement, - [283055] = 4, + [283485] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11386), 1, + ACTIONS(11481), 1, anon_sym_LPAREN2, - STATE(7192), 2, + STATE(7212), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [283071] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(7907), 1, - sym_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [283085] = 6, + [283501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(898), 1, anon_sym_LBRACE, - ACTIONS(9919), 1, + ACTIONS(9966), 1, anon_sym_try, - ACTIONS(11388), 1, + ACTIONS(11483), 1, anon_sym_SEMI, - ACTIONS(11390), 1, + ACTIONS(11485), 1, anon_sym_EQ, - STATE(998), 2, + STATE(853), 2, sym_compound_statement, sym_try_statement, - [283105] = 6, + [283521] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11487), 1, + anon_sym_LPAREN2, + STATE(7212), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11407), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [283537] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11489), 1, + anon_sym_LPAREN2, + STATE(7212), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11407), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [283553] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11491), 1, + anon_sym_LPAREN2, + STATE(7236), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11407), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [283569] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(9905), 1, + ACTIONS(10110), 1, anon_sym_try, - ACTIONS(11392), 1, + ACTIONS(11493), 1, anon_sym_SEMI, - ACTIONS(11394), 1, + ACTIONS(11495), 1, anon_sym_EQ, - STATE(404), 2, + STATE(383), 2, sym_compound_statement, sym_try_statement, - [283125] = 4, + [283589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11396), 1, + ACTIONS(11497), 1, anon_sym_LPAREN2, - STATE(7171), 2, + STATE(7212), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [283141] = 4, + [283605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11398), 1, + ACTIONS(11499), 1, anon_sym_LPAREN2, - STATE(7196), 2, + STATE(7239), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [283157] = 6, + [283621] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(4309), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10916), 2, - anon_sym_COMMA, - anon_sym_GT2, - [283177] = 4, + ACTIONS(9730), 1, + anon_sym_try, + ACTIONS(10727), 1, + anon_sym_LBRACE, + ACTIONS(11501), 1, + anon_sym_SEMI, + ACTIONS(11503), 1, + anon_sym_EQ, + STATE(2510), 2, + sym_compound_statement, + sym_try_statement, + [283641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11400), 1, + ACTIONS(11505), 1, anon_sym_LPAREN2, - STATE(7192), 2, + STATE(7212), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, + ACTIONS(11407), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [283193] = 4, + [283657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11507), 1, + anon_sym_EQ, + ACTIONS(11321), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [283671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11402), 1, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(10829), 1, + anon_sym_LBRACK, + STATE(6972), 1, + sym_template_argument_list, + ACTIONS(10827), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(7208), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [283209] = 6, + anon_sym_LBRACK_LBRACK, + [283689] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(10825), 1, anon_sym_LBRACK, - STATE(4159), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - ACTIONS(10916), 2, - anon_sym_COMMA, + STATE(6915), 1, + sym_template_argument_list, + ACTIONS(10821), 3, anon_sym_RPAREN, - [283229] = 6, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [283707] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9640), 1, + ACTIONS(9662), 1, anon_sym_try, - ACTIONS(10685), 1, + ACTIONS(10771), 1, anon_sym_LBRACE, - ACTIONS(11404), 1, + ACTIONS(11509), 1, anon_sym_SEMI, - ACTIONS(11406), 1, + ACTIONS(11511), 1, anon_sym_EQ, - STATE(2062), 2, + STATE(2133), 2, sym_compound_statement, sym_try_statement, - [283249] = 6, + [283727] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9669), 1, + ACTIONS(9686), 1, anon_sym_try, - ACTIONS(10597), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - ACTIONS(11408), 1, + ACTIONS(11513), 1, anon_sym_SEMI, - ACTIONS(11410), 1, + ACTIONS(11515), 1, anon_sym_EQ, - STATE(2646), 2, + STATE(2645), 2, sym_compound_statement, sym_try_statement, - [283269] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(9306), 1, - sym_string_literal, - ACTIONS(111), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [283283] = 4, + [283747] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11412), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - STATE(7192), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11305), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [283299] = 3, + ACTIONS(10501), 1, + anon_sym_COLON, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4401), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + [283766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11414), 1, - aux_sym_preproc_if_token1, - ACTIONS(10991), 4, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - anon_sym_RBRACE, + ACTIONS(11519), 1, + anon_sym_COLON_COLON, + ACTIONS(11517), 4, sym_identifier, - [283312] = 6, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + [283779] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10417), 1, - anon_sym_COLON, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4372), 1, + ACTIONS(11521), 1, + anon_sym_RPAREN, + STATE(4175), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - [283331] = 6, + [283798] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(8012), 1, - anon_sym_COMMA, - ACTIONS(11416), 1, - anon_sym_SEMI, - STATE(7393), 1, - aux_sym_field_declaration_repeat1, - STATE(8535), 1, - sym_attribute_specifier, - [283350] = 5, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10523), 1, + anon_sym_COLON, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4401), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + [283817] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(5004), 1, - sym_template_argument_list, - ACTIONS(6097), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [283367] = 6, + ACTIONS(11335), 1, + anon_sym_COLON_COLON, + ACTIONS(11337), 1, + anon_sym_inline, + ACTIONS(11523), 1, + sym_identifier, + STATE(8591), 1, + sym_nested_namespace_specifier, + STATE(8788), 1, + sym__namespace_specifier, + [283836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11418), 1, + ACTIONS(11525), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(8533), 1, + STATE(8570), 1, sym_attribute_specifier, - [283386] = 3, + [283855] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11420), 1, + ACTIONS(9101), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9105), 1, anon_sym_EQ, - ACTIONS(10239), 4, + ACTIONS(11527), 1, + sym_identifier, + ACTIONS(9103), 2, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, anon_sym_GT2, - [283399] = 6, + [283872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8003), 1, + sym_auto, + ACTIONS(8005), 1, + anon_sym_decltype, + STATE(3682), 1, + sym_decltype_auto, + ACTIONS(11529), 2, anon_sym_COMMA, - ACTIONS(11422), 1, - anon_sym_SEMI, - STATE(7393), 1, - aux_sym_field_declaration_repeat1, - STATE(8540), 1, - sym_attribute_specifier, - [283418] = 6, + anon_sym_GT2, + [283889] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8003), 1, + sym_auto, + ACTIONS(8005), 1, + anon_sym_decltype, + STATE(3682), 1, + sym_decltype_auto, + ACTIONS(11531), 2, + anon_sym_COMMA, + anon_sym_GT2, + [283906] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11424), 1, + ACTIONS(11533), 1, anon_sym_SEMI, - STATE(7219), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(8541), 1, + STATE(9243), 1, sym_attribute_specifier, - [283437] = 6, + [283925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10476), 1, - anon_sym_LBRACK, - ACTIONS(11426), 1, - anon_sym_RPAREN, - STATE(4159), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - [283456] = 3, + ACTIONS(11537), 1, + aux_sym_preproc_if_token1, + ACTIONS(11535), 4, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + anon_sym_RBRACE, + sym_identifier, + [283938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, + ACTIONS(11541), 1, aux_sym_preproc_if_token1, - ACTIONS(11428), 4, + ACTIONS(11539), 4, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, anon_sym_RBRACE, sym_identifier, - [283469] = 3, + [283951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, + ACTIONS(11545), 1, aux_sym_preproc_if_token1, - ACTIONS(11428), 4, + ACTIONS(11543), 4, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, anon_sym_RBRACE, sym_identifier, - [283482] = 3, + [283964] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11432), 1, - anon_sym_EQ, - ACTIONS(10239), 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8115), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [283495] = 6, + ACTIONS(11547), 1, + anon_sym_SEMI, + STATE(7347), 1, + aux_sym_field_declaration_repeat1, + STATE(8571), 1, + sym_attribute_specifier, + [283983] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10398), 1, - anon_sym_COLON, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4372), 1, + ACTIONS(11549), 1, + anon_sym_RPAREN, + STATE(4175), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - [283514] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(8805), 1, - anon_sym_RPAREN, - STATE(2771), 1, - sym_argument_list, - STATE(4305), 1, - sym_initializer_list, - [283533] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10532), 1, - sym_identifier, - ACTIONS(11434), 1, - aux_sym_preproc_if_token2, - STATE(7151), 1, - sym_enumerator, - STATE(7300), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(7301), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - [283552] = 6, + [284002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11436), 1, + ACTIONS(11551), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(9275), 1, + STATE(9239), 1, sym_attribute_specifier, - [283571] = 6, + [284021] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11438), 1, + ACTIONS(11553), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(9203), 1, + STATE(9292), 1, sym_attribute_specifier, - [283590] = 6, + [284040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11440), 1, + ACTIONS(11555), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(8751), 1, + STATE(9132), 1, sym_attribute_specifier, - [283609] = 3, + [284059] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11444), 1, - aux_sym_preproc_if_token1, - ACTIONS(11442), 4, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - anon_sym_RBRACE, - sym_identifier, - [283622] = 6, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + ACTIONS(8837), 1, + anon_sym_RPAREN, + STATE(2793), 1, + sym_argument_list, + STATE(4293), 1, + sym_initializer_list, + [284078] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11446), 1, + ACTIONS(11557), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7254), 1, aux_sym_field_declaration_repeat1, - STATE(8548), 1, + STATE(9130), 1, sym_attribute_specifier, - [283641] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10421), 1, - anon_sym_COLON, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(4372), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - [283660] = 6, + [284097] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11448), 1, + ACTIONS(11559), 1, anon_sym_SEMI, - STATE(7252), 1, + STATE(7260), 1, aux_sym_field_declaration_repeat1, - STATE(8550), 1, + STATE(9129), 1, sym_attribute_specifier, - [283679] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7920), 1, - sym_auto, - ACTIONS(7922), 1, - anon_sym_decltype, - STATE(3589), 1, - sym_decltype_auto, - ACTIONS(11450), 2, - anon_sym_COMMA, - anon_sym_GT2, - [283696] = 5, + [284116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8998), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9002), 1, - anon_sym_EQ, - ACTIONS(11452), 1, - sym_identifier, - ACTIONS(9000), 2, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + ACTIONS(11563), 1, + anon_sym_COLON_COLON, + STATE(8400), 1, + sym_argument_list, + ACTIONS(11561), 2, anon_sym_COMMA, - anon_sym_GT2, - [283713] = 6, + anon_sym_RBRACK_RBRACK, + [284133] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11454), 1, + ACTIONS(11565), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7261), 1, aux_sym_field_declaration_repeat1, - STATE(9245), 1, + STATE(9238), 1, sym_attribute_specifier, - [283732] = 6, + [284152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11335), 1, + anon_sym_COLON_COLON, + ACTIONS(11337), 1, + anon_sym_inline, + ACTIONS(11567), 1, + sym_identifier, + STATE(8743), 1, + sym_nested_namespace_specifier, + STATE(8788), 1, + sym__namespace_specifier, + [284171] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11456), 1, + ACTIONS(11569), 1, anon_sym_SEMI, - STATE(7221), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(8551), 1, + STATE(8574), 1, sym_attribute_specifier, - [283751] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10419), 1, - anon_sym_COLON, - ACTIONS(10476), 1, - anon_sym_LBRACK, - STATE(4372), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - [283770] = 6, + [284190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11458), 1, + ACTIONS(11571), 1, anon_sym_SEMI, - STATE(7239), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(9202), 1, + STATE(8575), 1, sym_attribute_specifier, - [283789] = 6, + [284209] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11460), 1, + ACTIONS(11573), 1, anon_sym_SEMI, - STATE(7273), 1, + STATE(7250), 1, aux_sym_field_declaration_repeat1, - STATE(9201), 1, + STATE(8578), 1, sym_attribute_specifier, - [283808] = 6, + [284228] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11230), 1, - anon_sym_COLON_COLON, - ACTIONS(11232), 1, - anon_sym_inline, - ACTIONS(11462), 1, - sym_identifier, - STATE(8497), 1, - sym__namespace_specifier, - STATE(8576), 1, - sym_nested_namespace_specifier, - [283827] = 6, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10541), 1, + anon_sym_COLON, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4401), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + [284247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(11575), 2, + anon_sym_class, + anon_sym_typename, + STATE(8180), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [284260] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10415), 1, + ACTIONS(10515), 1, anon_sym_COLON, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4372), 1, + STATE(4401), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - [283846] = 6, + [284279] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(8023), 1, + sym_template_argument_list, + ACTIONS(11577), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [284296] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(11579), 1, + sym_identifier, + STATE(2732), 1, + sym_template_method, + STATE(3163), 1, + sym_template_type, + STATE(8181), 1, + sym_operator_name, + [284315] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10476), 1, + ACTIONS(10505), 1, + anon_sym_COLON, + ACTIONS(10585), 1, anon_sym_LBRACK, - ACTIONS(11464), 1, - anon_sym_RPAREN, - STATE(4159), 1, + STATE(4401), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - [283865] = 6, + [284334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - ACTIONS(10423), 1, + ACTIONS(10517), 1, anon_sym_COLON, - ACTIONS(10476), 1, + ACTIONS(10585), 1, anon_sym_LBRACK, - STATE(4372), 1, + STATE(4401), 1, sym_parameter_list, - STATE(6668), 1, + STATE(6658), 1, sym__function_declarator_seq, - [283884] = 6, + [284353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(6201), 1, + anon_sym_LBRACK, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(5093), 1, + sym_template_argument_list, + ACTIONS(6203), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [284370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11581), 1, + anon_sym_EQ, + ACTIONS(10322), 4, anon_sym_COMMA, - ACTIONS(11466), 1, - anon_sym_SEMI, - STATE(7393), 1, - aux_sym_field_declaration_repeat1, - STATE(9276), 1, - sym_attribute_specifier, - [283903] = 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [284383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11468), 1, + ACTIONS(11583), 1, anon_sym_SEMI, - STATE(7248), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(9243), 1, + STATE(8634), 1, sym_attribute_specifier, - [283922] = 5, + [284402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7920), 1, - sym_auto, - ACTIONS(7922), 1, - anon_sym_decltype, - STATE(3589), 1, - sym_decltype_auto, - ACTIONS(11470), 2, + ACTIONS(11585), 1, + anon_sym_EQ, + ACTIONS(10322), 4, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_GT2, - [283939] = 5, + [284415] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(4714), 1, - sym_template_argument_list, - ACTIONS(6097), 2, + ACTIONS(3614), 1, + anon_sym_LBRACE, + ACTIONS(5354), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [283956] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(8012), 1, - anon_sym_COMMA, - ACTIONS(11472), 1, - anon_sym_SEMI, - STATE(7393), 1, - aux_sym_field_declaration_repeat1, - STATE(8539), 1, - sym_attribute_specifier, - [283975] = 3, + ACTIONS(8932), 1, + anon_sym_RPAREN, + STATE(2793), 1, + sym_argument_list, + STATE(4293), 1, + sym_initializer_list, + [284434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11476), 1, + ACTIONS(11589), 1, aux_sym_preproc_if_token1, - ACTIONS(11474), 4, + ACTIONS(11587), 4, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, anon_sym_RBRACE, sym_identifier, - [283988] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(8012), 1, - anon_sym_COMMA, - ACTIONS(11478), 1, - anon_sym_SEMI, - STATE(7283), 1, - aux_sym_field_declaration_repeat1, - STATE(8766), 1, - sym_attribute_specifier, - [284007] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11230), 1, - anon_sym_COLON_COLON, - ACTIONS(11232), 1, - anon_sym_inline, - ACTIONS(11480), 1, - sym_identifier, - STATE(7807), 1, - sym__namespace_specifier, - STATE(8153), 1, - sym_nested_namespace_specifier, - [284026] = 3, + [284447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11484), 1, + ACTIONS(11591), 1, aux_sym_preproc_if_token1, - ACTIONS(11482), 4, + ACTIONS(11074), 4, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, anon_sym_RBRACE, sym_identifier, - [284039] = 6, + [284460] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11486), 1, + ACTIONS(11593), 1, anon_sym_SEMI, - STATE(7286), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(8764), 1, + STATE(8633), 1, sym_attribute_specifier, - [284058] = 6, + [284479] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - ACTIONS(10413), 1, - anon_sym_COLON, - ACTIONS(10476), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - STATE(4372), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - [284077] = 6, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(4765), 1, + sym_template_argument_list, + ACTIONS(6203), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [284496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11488), 1, + ACTIONS(11595), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(8763), 1, + STATE(9285), 1, sym_attribute_specifier, - [284096] = 6, + [284515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11230), 1, + ACTIONS(11335), 1, anon_sym_COLON_COLON, - ACTIONS(11232), 1, + ACTIONS(11337), 1, anon_sym_inline, - ACTIONS(11490), 1, + ACTIONS(11597), 1, sym_identifier, - STATE(8497), 1, + STATE(8788), 1, sym__namespace_specifier, - STATE(8976), 1, + STATE(9050), 1, sym_nested_namespace_specifier, - [284115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11494), 1, - anon_sym_COLON_COLON, - ACTIONS(11492), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - [284128] = 6, + [284534] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - ACTIONS(8789), 1, - anon_sym_RPAREN, - STATE(2771), 1, - sym_argument_list, - STATE(4305), 1, - sym_initializer_list, - [284147] = 6, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8115), 1, + anon_sym_COMMA, + ACTIONS(11599), 1, + anon_sym_SEMI, + STATE(7347), 1, + aux_sym_field_declaration_repeat1, + STATE(8792), 1, + sym_attribute_specifier, + [284553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11496), 1, + ACTIONS(11601), 1, anon_sym_SEMI, - STATE(7276), 1, + STATE(7309), 1, aux_sym_field_declaration_repeat1, - STATE(8933), 1, + STATE(8866), 1, sym_attribute_specifier, - [284166] = 6, + [284572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11498), 1, + ACTIONS(11603), 1, anon_sym_SEMI, - STATE(7278), 1, + STATE(7315), 1, aux_sym_field_declaration_repeat1, - STATE(8932), 1, + STATE(8785), 1, sym_attribute_specifier, - [284185] = 3, + [284591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11605), 1, + anon_sym_COMMA, + ACTIONS(11369), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [284604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11609), 1, + aux_sym_preproc_if_token1, + ACTIONS(11607), 4, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + anon_sym_RBRACE, + sym_identifier, + [284617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11613), 1, + aux_sym_preproc_if_token1, + ACTIONS(11611), 4, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + anon_sym_RBRACE, + sym_identifier, + [284630] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10521), 1, + anon_sym_COLON, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4401), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + [284649] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10632), 1, + sym_identifier, + ACTIONS(11615), 1, + aux_sym_preproc_if_token2, + STATE(7171), 1, + sym_enumerator, + STATE(7352), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(7355), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + [284668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11502), 1, + ACTIONS(11545), 1, aux_sym_preproc_if_token1, - ACTIONS(11500), 4, + ACTIONS(11543), 4, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, anon_sym_RBRACE, sym_identifier, - [284198] = 6, + [284681] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11335), 1, + anon_sym_COLON_COLON, + ACTIONS(11337), 1, + anon_sym_inline, + ACTIONS(11617), 1, + sym_identifier, + STATE(8650), 1, + sym_nested_namespace_specifier, + STATE(8788), 1, + sym__namespace_specifier, + [284700] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11504), 1, + ACTIONS(11619), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(8931), 1, + STATE(8835), 1, sym_attribute_specifier, - [284217] = 6, + [284719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11506), 1, + ACTIONS(11621), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(8750), 1, + STATE(8631), 1, sym_attribute_specifier, - [284236] = 3, + [284738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11508), 2, - anon_sym_class, - anon_sym_typename, - STATE(8101), 3, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - [284249] = 6, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8115), 1, + anon_sym_COMMA, + ACTIONS(11623), 1, + anon_sym_SEMI, + STATE(7347), 1, + aux_sym_field_declaration_repeat1, + STATE(8629), 1, + sym_attribute_specifier, + [284757] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11230), 1, - anon_sym_COLON_COLON, - ACTIONS(11232), 1, - anon_sym_inline, - ACTIONS(11480), 1, - sym_identifier, - STATE(7999), 1, - sym__namespace_specifier, - STATE(8368), 1, - sym_nested_namespace_specifier, - [284268] = 6, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8115), 1, + anon_sym_COMMA, + ACTIONS(11625), 1, + anon_sym_SEMI, + STATE(7347), 1, + aux_sym_field_declaration_repeat1, + STATE(8834), 1, + sym_attribute_specifier, + [284776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11510), 1, + ACTIONS(11627), 1, anon_sym_SEMI, - STATE(7267), 1, + STATE(7281), 1, aux_sym_field_declaration_repeat1, - STATE(8756), 1, + STATE(8628), 1, sym_attribute_specifier, - [284287] = 3, + [284795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - anon_sym_COMMA, - ACTIONS(11280), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(11613), 1, + aux_sym_preproc_if_token1, + ACTIONS(11611), 4, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + anon_sym_RBRACE, sym_identifier, - [284300] = 6, + [284808] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11230), 1, + ACTIONS(11335), 1, anon_sym_COLON_COLON, - ACTIONS(11232), 1, + ACTIONS(11337), 1, anon_sym_inline, - ACTIONS(11514), 1, + ACTIONS(11629), 1, sym_identifier, - STATE(8497), 1, + STATE(8788), 1, sym__namespace_specifier, - STATE(8790), 1, + STATE(8922), 1, sym_nested_namespace_specifier, - [284319] = 6, + [284827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11516), 1, + ACTIONS(11631), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(9244), 1, + STATE(8617), 1, sym_attribute_specifier, - [284338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11520), 1, - aux_sym_preproc_if_token1, - ACTIONS(11518), 4, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - anon_sym_RBRACE, - sym_identifier, - [284351] = 6, + [284846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11522), 1, + ACTIONS(11633), 1, anon_sym_SEMI, - STATE(7287), 1, + STATE(7301), 1, aux_sym_field_declaration_repeat1, - STATE(8926), 1, + STATE(8616), 1, sym_attribute_specifier, - [284370] = 6, + [284865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11524), 1, + ACTIONS(11635), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(8925), 1, + STATE(8825), 1, sym_attribute_specifier, - [284389] = 3, + [284884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11484), 1, + ACTIONS(11639), 1, aux_sym_preproc_if_token1, - ACTIONS(11482), 4, + ACTIONS(11637), 4, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, anon_sym_RBRACE, sym_identifier, - [284402] = 6, + [284897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11526), 1, + ACTIONS(11641), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(8924), 1, + STATE(8592), 1, sym_attribute_specifier, - [284421] = 5, + [284916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - ACTIONS(11530), 1, - anon_sym_COLON_COLON, - STATE(8138), 1, - sym_argument_list, - ACTIONS(11528), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [284438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11534), 1, - aux_sym_preproc_if_token1, - ACTIONS(11532), 4, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - anon_sym_RBRACE, - sym_identifier, - [284451] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11230), 1, + ACTIONS(11335), 1, anon_sym_COLON_COLON, - ACTIONS(11232), 1, + ACTIONS(11337), 1, anon_sym_inline, - ACTIONS(11536), 1, + ACTIONS(11643), 1, sym_identifier, - STATE(8497), 1, + STATE(8037), 1, sym__namespace_specifier, - STATE(8947), 1, + STATE(8043), 1, sym_nested_namespace_specifier, - [284470] = 6, + [284935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(11538), 1, + ACTIONS(11639), 1, + aux_sym_preproc_if_token1, + ACTIONS(11637), 4, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + anon_sym_RBRACE, sym_identifier, - STATE(2728), 1, - sym_template_method, - STATE(3123), 1, - sym_template_type, - STATE(8388), 1, - sym_operator_name, - [284489] = 6, + [284948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11540), 1, + ACTIONS(11645), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7269), 1, aux_sym_field_declaration_repeat1, - STATE(8755), 1, + STATE(8595), 1, sym_attribute_specifier, - [284508] = 3, + [284967] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11544), 1, - aux_sym_preproc_if_token1, - ACTIONS(11542), 4, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - anon_sym_RBRACE, - sym_identifier, - [284521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11544), 1, - aux_sym_preproc_if_token1, - ACTIONS(11542), 4, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - anon_sym_RBRACE, - sym_identifier, - [284534] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11546), 1, + ACTIONS(11647), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7347), 1, aux_sym_field_declaration_repeat1, - STATE(8754), 1, + STATE(8824), 1, sym_attribute_specifier, - [284553] = 6, + [284986] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11548), 1, + ACTIONS(11649), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7302), 1, aux_sym_field_declaration_repeat1, - STATE(8921), 1, + STATE(8614), 1, sym_attribute_specifier, - [284572] = 5, + [285005] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(7618), 1, - sym_template_argument_list, - ACTIONS(11550), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [284589] = 6, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(8115), 1, + anon_sym_COMMA, + ACTIONS(11651), 1, + anon_sym_SEMI, + STATE(7270), 1, + aux_sym_field_declaration_repeat1, + STATE(8596), 1, + sym_attribute_specifier, + [285024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(8012), 1, + ACTIONS(8115), 1, anon_sym_COMMA, - ACTIONS(11552), 1, + ACTIONS(11653), 1, anon_sym_SEMI, - STATE(7393), 1, + STATE(7300), 1, aux_sym_field_declaration_repeat1, - STATE(8922), 1, + STATE(8817), 1, sym_attribute_specifier, - [284608] = 6, + [285043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11230), 1, + ACTIONS(11657), 1, + aux_sym_preproc_if_token1, + ACTIONS(11655), 4, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + anon_sym_RBRACE, + sym_identifier, + [285056] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11335), 1, anon_sym_COLON_COLON, - ACTIONS(11232), 1, + ACTIONS(11337), 1, anon_sym_inline, - ACTIONS(11554), 1, + ACTIONS(11643), 1, sym_identifier, - STATE(8435), 1, - sym_nested_namespace_specifier, - STATE(8497), 1, + STATE(7956), 1, sym__namespace_specifier, - [284627] = 4, - ACTIONS(9761), 1, + STATE(8102), 1, + sym_nested_namespace_specifier, + [285075] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(11659), 1, + anon_sym_SEMI, + STATE(1974), 1, + sym_template_argument_list, + [285091] = 4, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11556), 1, + ACTIONS(11661), 1, anon_sym_SQUOTE, - STATE(7462), 1, + STATE(7590), 1, aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, + ACTIONS(11663), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [284641] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4960), 1, - anon_sym_LT, - ACTIONS(11560), 1, - sym_identifier, - STATE(1061), 1, - sym_template_parameter_list, - STATE(3123), 1, - sym_template_type, - [284657] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11562), 1, - anon_sym___except, - ACTIONS(11564), 1, - anon_sym___finally, - STATE(314), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [284671] = 5, + [285105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(11566), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(11665), 1, anon_sym_SEMI, - STATE(1935), 1, - sym_template_argument_list, - [284687] = 2, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [285119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11568), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [284697] = 4, + ACTIONS(11230), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [285129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10271), 1, - anon_sym_LBRACE, - STATE(1957), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [284711] = 2, + ACTIONS(11667), 1, + anon_sym_COMMA, + STATE(7325), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(11670), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [285143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11568), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [284721] = 4, + ACTIONS(11672), 1, + anon_sym_COMMA, + STATE(7325), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(11674), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [285157] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11570), 1, - anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [284735] = 5, + ACTIONS(11676), 1, + anon_sym_COMMA, + STATE(7327), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(11679), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [285171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(11672), 1, anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11574), 1, - anon_sym_GT2, - STATE(7841), 1, - aux_sym_template_argument_list_repeat1, - [284751] = 4, + STATE(7326), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(11681), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [285185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10532), 1, - sym_identifier, - ACTIONS(11576), 1, - aux_sym_preproc_if_token2, - STATE(7093), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [284765] = 5, + ACTIONS(11683), 1, + anon_sym_COMMA, + STATE(7327), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(11685), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [285199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10735), 1, - sym_identifier, - ACTIONS(11578), 1, - aux_sym_preproc_if_token2, - STATE(7080), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9191), 1, - sym_enumerator, - [284781] = 5, - ACTIONS(9761), 1, + ACTIONS(11687), 1, + anon_sym_COMMA, + STATE(7330), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(11690), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [285213] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11580), 1, + ACTIONS(11692), 1, anon_sym_DQUOTE, - ACTIONS(11582), 1, + ACTIONS(11694), 1, aux_sym_string_literal_token1, - ACTIONS(11584), 1, + ACTIONS(11696), 1, sym_escape_sequence, - STATE(7323), 1, + STATE(7492), 1, aux_sym_string_literal_repeat1, - [284797] = 5, + [285229] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(5323), 1, anon_sym_COLON, - ACTIONS(6522), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - STATE(3122), 1, + STATE(4346), 1, sym_field_declaration_list, - STATE(8408), 1, + STATE(8298), 1, sym_base_class_clause, - [284813] = 5, + [285245] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(5323), 1, anon_sym_COLON, - ACTIONS(6552), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - STATE(3386), 1, + STATE(4347), 1, sym_field_declaration_list, - STATE(8221), 1, + STATE(8296), 1, sym_base_class_clause, - [284829] = 4, + [285261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(7614), 2, - sym_argument_list, - sym_initializer_list, - [284843] = 5, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11698), 1, + anon_sym_EQ, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, - anon_sym_LT, - ACTIONS(11560), 1, - sym_identifier, - STATE(1057), 1, - sym_template_parameter_list, - STATE(3123), 1, - sym_template_type, - [284859] = 5, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11307), 1, + anon_sym_EQ, + STATE(7334), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285289] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11700), 1, + anon_sym_EQ, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(11683), 1, + anon_sym_COMMA, + STATE(7329), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(11702), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6932), 1, - anon_sym_LBRACE, - STATE(4343), 1, - sym_field_declaration_list, - STATE(8076), 1, - sym_base_class_clause, - [284875] = 4, + [285317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11586), 1, - anon_sym___except, - ACTIONS(11588), 1, - anon_sym___finally, - STATE(822), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [284889] = 5, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11211), 1, + anon_sym_EQ, + STATE(7336), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6932), 1, - anon_sym_LBRACE, - STATE(4342), 1, - sym_field_declaration_list, - STATE(8074), 1, - sym_base_class_clause, - [284905] = 5, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11704), 1, + anon_sym_EQ, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(11706), 1, anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11590), 1, - anon_sym_GT2, - STATE(7729), 1, - aux_sym_template_argument_list_repeat1, - [284921] = 5, + STATE(7330), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(11708), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [285359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(5979), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11319), 1, + anon_sym_EQ, + STATE(7339), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285373] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11710), 1, + anon_sym_EQ, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285387] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11712), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11714), 1, + anon_sym_COMMA, + ACTIONS(11716), 1, anon_sym_LBRACE, - STATE(2913), 1, - sym_field_declaration_list, - STATE(8061), 1, - sym_base_class_clause, - [284937] = 4, + STATE(7746), 1, + aux_sym_base_class_clause_repeat1, + [285403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11592), 1, + STATE(7013), 1, + sym_access_specifier, + ACTIONS(11718), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [285415] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11287), 1, + anon_sym_EQ, + STATE(7342), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285429] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11720), 1, + anon_sym_EQ, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285443] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11722), 1, + anon_sym_COMMA, + STATE(7347), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(11725), 2, anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [284951] = 4, + anon_sym___attribute__, + [285457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11594), 1, - anon_sym___except, - ACTIONS(11596), 1, - anon_sym___finally, - STATE(626), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [284965] = 5, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11315), 1, + anon_sym_EQ, + STATE(7346), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6065), 1, - anon_sym_LBRACE, - STATE(5921), 1, - sym_field_declaration_list, - STATE(8161), 1, - sym_base_class_clause, - [284981] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11727), 1, + anon_sym_EQ, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285485] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10257), 1, - anon_sym_LBRACE, - STATE(4831), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [284995] = 4, - ACTIONS(9761), 1, + ACTIONS(10632), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_preproc_if_token2, + STATE(7352), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [285499] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(11598), 1, - anon_sym_SQUOTE, - STATE(7462), 1, - aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [285009] = 5, - ACTIONS(9761), 1, + ACTIONS(10842), 1, + sym_identifier, + ACTIONS(11615), 1, + aux_sym_preproc_if_token2, + STATE(7355), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9111), 1, + sym_enumerator, + [285515] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(11600), 1, - anon_sym_DQUOTE, - ACTIONS(11602), 1, - aux_sym_string_literal_token1, - ACTIONS(11604), 1, - sym_escape_sequence, - STATE(7465), 1, - aux_sym_string_literal_repeat1, - [285025] = 5, + ACTIONS(10632), 1, + sym_identifier, + ACTIONS(11731), 1, + aux_sym_preproc_if_token2, + STATE(7118), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [285529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(11606), 1, - anon_sym_SEMI, - STATE(1935), 1, - sym_template_argument_list, - [285041] = 4, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11238), 1, + anon_sym_EQ, + STATE(7357), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285543] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11608), 1, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11733), 1, + anon_sym_EQ, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285557] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_preproc_if_token2, + STATE(7091), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9111), 1, + sym_enumerator, + [285573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11250), 1, + anon_sym_EQ, + STATE(7359), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285587] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11737), 1, + anon_sym_EQ, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285601] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11225), 1, + anon_sym_EQ, + STATE(7377), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285615] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11739), 1, + anon_sym_EQ, + STATE(6582), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [285629] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11741), 1, anon_sym_SEMI, - STATE(7344), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [285055] = 5, + ACTIONS(11743), 1, + anon_sym_DASH_GT, + ACTIONS(11745), 1, + anon_sym_noexcept, + STATE(9214), 1, + sym_trailing_return_type, + [285645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(11706), 1, + anon_sym_COMMA, + STATE(7340), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(11747), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [285659] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(6073), 1, anon_sym_LBRACE, - ACTIONS(10577), 1, + STATE(5919), 1, + sym_field_declaration_list, + STATE(8162), 1, + sym_base_class_clause, + [285675] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5323), 1, anon_sym_COLON, - STATE(7858), 1, - sym_compound_statement, - STATE(8139), 1, - sym_field_initializer_list, - [285071] = 4, + ACTIONS(6073), 1, + anon_sym_LBRACE, + STATE(5946), 1, + sym_field_declaration_list, + STATE(8158), 1, + sym_base_class_clause, + [285691] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11714), 1, + anon_sym_COMMA, + ACTIONS(11749), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11751), 1, + anon_sym_LBRACE, + STATE(7787), 1, + aux_sym_base_class_clause_repeat1, + [285707] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(6992), 1, + sym_access_specifier, + ACTIONS(11718), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [285719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11610), 1, + ACTIONS(11753), 1, + anon_sym_COMMA, + STATE(7366), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(11756), 2, anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [285085] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11612), 1, - anon_sym_SQUOTE, - STATE(7462), 1, - aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [285099] = 5, - ACTIONS(9761), 1, + anon_sym___attribute__, + [285733] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11602), 1, + ACTIONS(11758), 1, + anon_sym_DQUOTE, + ACTIONS(11760), 1, aux_sym_string_literal_token1, - ACTIONS(11604), 1, + ACTIONS(11762), 1, sym_escape_sequence, - ACTIONS(11614), 1, - anon_sym_DQUOTE, - STATE(7465), 1, + STATE(7396), 1, aux_sym_string_literal_repeat1, - [285115] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10735), 1, - sym_identifier, - ACTIONS(11434), 1, - aux_sym_preproc_if_token2, - STATE(7301), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9191), 1, - sym_enumerator, - [285131] = 4, + [285749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11616), 1, + ACTIONS(11764), 1, anon_sym_SEMI, - STATE(7312), 2, + STATE(5311), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [285145] = 4, + [285763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11618), 1, + ACTIONS(11766), 1, anon_sym_SEMI, - STATE(7423), 2, + STATE(7323), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [285159] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11620), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [285169] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - STATE(2771), 1, - sym_argument_list, - STATE(4305), 1, - sym_initializer_list, - [285185] = 4, + [285777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10229), 1, + ACTIONS(10336), 1, anon_sym_LBRACE, - STATE(4838), 1, + STATE(3835), 1, sym_compound_statement, - ACTIONS(10239), 2, + ACTIONS(10322), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [285199] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10532), 1, - sym_identifier, - ACTIONS(11622), 1, - aux_sym_preproc_if_token2, - STATE(7300), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [285213] = 4, + [285791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10257), 1, - anon_sym_LBRACE, - STATE(4901), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [285227] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(11768), 1, + anon_sym_SEMI, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [285805] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11624), 1, + ACTIONS(11770), 1, anon_sym_EQ, - STATE(6535), 2, + STATE(7349), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [285241] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11626), 1, - anon_sym_SEMI, - STATE(7449), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [285255] = 5, + [285819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9492), 1, + ACTIONS(10326), 1, anon_sym_LBRACE, - ACTIONS(11628), 1, + STATE(1998), 1, + sym_compound_statement, + ACTIONS(10322), 2, anon_sym_LPAREN2, - STATE(4827), 1, - sym_requirement_seq, - STATE(8372), 1, - sym_requires_parameter_list, - [285271] = 5, - ACTIONS(9761), 1, + anon_sym_LBRACK, + [285833] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11630), 1, - anon_sym_DQUOTE, - ACTIONS(11632), 1, - aux_sym_string_literal_token1, - ACTIONS(11634), 1, - sym_escape_sequence, - STATE(7364), 1, - aux_sym_string_literal_repeat1, - [285287] = 4, + ACTIONS(11772), 1, + aux_sym_preproc_include_token2, + ACTIONS(11774), 1, + anon_sym_LPAREN, + ACTIONS(11776), 1, + sym_preproc_arg, + STATE(8228), 1, + sym_preproc_params, + [285849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11220), 1, - anon_sym_EQ, - STATE(7332), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285301] = 4, + ACTIONS(11778), 1, + sym_identifier, + ACTIONS(11780), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [285861] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(11782), 1, + sym_identifier, + STATE(2732), 1, + sym_template_method, + STATE(8337), 1, + sym_operator_name, + [285877] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11636), 1, + ACTIONS(11784), 1, anon_sym_EQ, - STATE(6535), 2, + STATE(6582), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [285315] = 4, - ACTIONS(3), 1, + [285891] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10229), 1, - anon_sym_LBRACE, - STATE(4921), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [285329] = 5, + ACTIONS(11786), 1, + anon_sym_DQUOTE, + ACTIONS(11788), 1, + aux_sym_string_literal_token1, + ACTIONS(11790), 1, + sym_escape_sequence, + STATE(7384), 1, + aux_sym_string_literal_repeat1, + [285907] = 5, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(11774), 1, + anon_sym_LPAREN, + ACTIONS(11792), 1, + aux_sym_preproc_include_token2, + ACTIONS(11794), 1, + sym_preproc_arg, + STATE(8129), 1, + sym_preproc_params, + [285923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(2148), 1, anon_sym_LBRACE, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - ACTIONS(11640), 1, - anon_sym_EQ, - STATE(913), 1, - sym_declaration_list, - [285345] = 5, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + STATE(2793), 1, + sym_argument_list, + STATE(2829), 1, + sym_initializer_list, + [285939] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(5323), 1, anon_sym_COLON, - ACTIONS(6065), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - STATE(5903), 1, + STATE(2904), 1, sym_field_declaration_list, - STATE(8163), 1, + STATE(8178), 1, sym_base_class_clause, - [285361] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(4970), 1, - anon_sym_SEMI, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(2220), 1, - sym_template_argument_list, - [285377] = 5, - ACTIONS(9761), 1, + [285955] = 4, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11642), 1, - aux_sym_preproc_include_token2, - ACTIONS(11644), 1, - anon_sym_LPAREN, - ACTIONS(11646), 1, - sym_preproc_arg, - STATE(8237), 1, - sym_preproc_params, - [285393] = 4, + ACTIONS(11796), 1, + anon_sym_SQUOTE, + STATE(7590), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11663), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [285969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10219), 1, + ACTIONS(2218), 1, anon_sym_LBRACE, - STATE(3390), 1, - sym_compound_statement, - ACTIONS(10239), 2, + ACTIONS(6518), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - [285407] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11648), 1, - anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [285421] = 5, - ACTIONS(9761), 1, + STATE(3415), 1, + sym_initializer_list, + STATE(3434), 1, + sym_argument_list, + [285985] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11602), 1, + ACTIONS(11798), 1, + anon_sym_DQUOTE, + ACTIONS(11800), 1, aux_sym_string_literal_token1, - ACTIONS(11604), 1, + ACTIONS(11802), 1, sym_escape_sequence, - ACTIONS(11650), 1, - anon_sym_DQUOTE, - STATE(7465), 1, + STATE(7603), 1, aux_sym_string_literal_repeat1, - [285437] = 4, - ACTIONS(9761), 1, + [286001] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(11652), 1, - anon_sym_SQUOTE, - STATE(7462), 1, - aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [285451] = 5, + ACTIONS(5106), 1, + anon_sym_LBRACE, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + ACTIONS(11806), 1, + anon_sym_EQ, + STATE(902), 1, + sym_declaration_list, + [286017] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11654), 1, - anon_sym_GT2, - STATE(7786), 1, - aux_sym_template_argument_list_repeat1, - [285467] = 5, - ACTIONS(9761), 1, + ACTIONS(9587), 1, + anon_sym_LBRACE, + ACTIONS(11808), 1, + anon_sym_LPAREN2, + STATE(3745), 1, + sym_requirement_seq, + STATE(8118), 1, + sym_requires_parameter_list, + [286033] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11810), 1, + anon_sym_EQ, + STATE(7354), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [286047] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11644), 1, + ACTIONS(11774), 1, anon_sym_LPAREN, - ACTIONS(11656), 1, + ACTIONS(11812), 1, aux_sym_preproc_include_token2, - ACTIONS(11658), 1, + ACTIONS(11814), 1, sym_preproc_arg, - STATE(8378), 1, + STATE(8292), 1, sym_preproc_params, - [285483] = 5, + [286063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11660), 1, - anon_sym_SEMI, - ACTIONS(11662), 1, - anon_sym_DASH_GT, - ACTIONS(11664), 1, - anon_sym_noexcept, - STATE(9223), 1, - sym_trailing_return_type, - [285499] = 4, + ACTIONS(11816), 1, + anon_sym___except, + ACTIONS(11818), 1, + anon_sym___finally, + STATE(770), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [286077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11666), 1, - anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [285513] = 5, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(10678), 1, + anon_sym_COLON, + STATE(7718), 1, + sym_compound_statement, + STATE(8121), 1, + sym_field_initializer_list, + [286093] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - ACTIONS(6466), 1, + ACTIONS(5354), 1, anon_sym_LPAREN2, - STATE(3363), 1, - sym_initializer_list, - STATE(3370), 1, + STATE(2793), 1, sym_argument_list, - [285529] = 5, + STATE(4293), 1, + sym_initializer_list, + [286109] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(11820), 1, + anon_sym_SEMI, + STATE(1974), 1, + sym_template_argument_list, + [286125] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(5323), 1, anon_sym_COLON, - ACTIONS(6522), 1, + ACTIONS(6375), 1, anon_sym_LBRACE, - STATE(3042), 1, + STATE(3237), 1, sym_field_declaration_list, - STATE(8012), 1, + STATE(8436), 1, sym_base_class_clause, - [285545] = 4, + [286141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11668), 1, - anon_sym_SEMI, - STATE(7298), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [285559] = 4, - ACTIONS(3), 1, + STATE(6994), 1, + sym_access_specifier, + ACTIONS(11718), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [286153] = 4, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10233), 1, - anon_sym_LBRACE, - STATE(3734), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [285573] = 4, - ACTIONS(3), 1, + ACTIONS(11822), 1, + anon_sym_SQUOTE, + STATE(7590), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11663), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [286167] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10231), 1, - anon_sym_LBRACE, - STATE(2794), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [285587] = 5, + ACTIONS(11800), 1, + aux_sym_string_literal_token1, + ACTIONS(11802), 1, + sym_escape_sequence, + ACTIONS(11824), 1, + anon_sym_DQUOTE, + STATE(7603), 1, + aux_sym_string_literal_repeat1, + [286183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6932), 1, + ACTIONS(11714), 1, + anon_sym_COMMA, + ACTIONS(11826), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11828), 1, anon_sym_LBRACE, - STATE(4344), 1, - sym_field_declaration_list, - STATE(8186), 1, - sym_base_class_clause, - [285603] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(11670), 1, - sym_identifier, - STATE(2728), 1, - sym_template_method, - STATE(8169), 1, - sym_operator_name, - [285619] = 4, + STATE(7948), 1, + aux_sym_base_class_clause_repeat1, + [286199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10271), 1, + ACTIONS(10320), 1, anon_sym_LBRACE, - STATE(1963), 1, + STATE(3898), 1, sym_compound_statement, - ACTIONS(10239), 2, + ACTIONS(10322), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [285633] = 4, + [286213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11214), 1, - anon_sym_EQ, - STATE(7337), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285647] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(11830), 1, + anon_sym_SEMI, + STATE(7415), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [286227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11672), 1, - anon_sym_EQ, - STATE(6535), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285661] = 5, + ACTIONS(11832), 1, + anon_sym___except, + ACTIONS(11834), 1, + anon_sym___finally, + STATE(726), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [286241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6277), 1, - anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(11836), 1, + sym_identifier, + STATE(1062), 1, + sym_template_parameter_list, STATE(3163), 1, - sym_field_declaration_list, - STATE(8229), 1, - sym_base_class_clause, - [285677] = 5, + sym_template_type, + [286257] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - STATE(7675), 1, + STATE(7682), 1, sym_compound_statement, - STATE(8349), 1, + STATE(8146), 1, sym_field_initializer_list, - [285693] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11674), 1, - anon_sym_SQUOTE, - STATE(7462), 1, - aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [285707] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11602), 1, - aux_sym_string_literal_token1, - ACTIONS(11604), 1, - sym_escape_sequence, - ACTIONS(11676), 1, - anon_sym_DQUOTE, - STATE(7465), 1, - aux_sym_string_literal_repeat1, - [285723] = 5, + [286273] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(7526), 1, - anon_sym_LBRACE, - STATE(4535), 1, - sym_field_declaration_list, - STATE(8085), 1, - sym_base_class_clause, - [285739] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(11572), 1, + ACTIONS(11838), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11678), 1, + ACTIONS(11840), 1, anon_sym_GT2, - STATE(7926), 1, + STATE(7803), 1, aux_sym_template_argument_list_repeat1, - [285755] = 5, + [286289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(11680), 1, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(11836), 1, sym_identifier, - STATE(4086), 1, - sym_template_method, - STATE(8313), 1, - sym_operator_name, - [285771] = 5, + STATE(1055), 1, + sym_template_parameter_list, + STATE(3163), 1, + sym_template_type, + [286305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 1, + ACTIONS(9534), 1, anon_sym_LBRACE, - ACTIONS(6599), 1, + ACTIONS(11808), 1, anon_sym_LPAREN2, - STATE(3959), 1, - sym_argument_list, - STATE(5299), 1, - sym_initializer_list, - [285787] = 5, + STATE(4078), 1, + sym_requirement_seq, + STATE(8342), 1, + sym_requires_parameter_list, + [286321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(5323), 1, anon_sym_COLON, - ACTIONS(5979), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - STATE(2942), 1, + STATE(2866), 1, sym_field_declaration_list, - STATE(8054), 1, + STATE(8248), 1, sym_base_class_clause, - [285803] = 5, + [286337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(11572), 1, + ACTIONS(11838), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11682), 1, + ACTIONS(11842), 1, anon_sym_GT2, - STATE(7853), 1, + STATE(7779), 1, aux_sym_template_argument_list_repeat1, - [285819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11684), 1, - anon_sym_EQ, - STATE(6535), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [285833] = 5, + [286353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(6875), 1, + ACTIONS(7113), 1, anon_sym_LT, - ACTIONS(11686), 1, + ACTIONS(11844), 1, anon_sym_SEMI, - STATE(1935), 1, + STATE(1974), 1, sym_template_argument_list, - [285849] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9447), 1, - anon_sym_LBRACE, - ACTIONS(11628), 1, - anon_sym_LPAREN2, - STATE(3945), 1, - sym_requirement_seq, - STATE(8382), 1, - sym_requires_parameter_list, - [285865] = 5, + [286369] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(4987), 1, anon_sym_LT, - ACTIONS(11560), 1, + ACTIONS(11836), 1, sym_identifier, - STATE(1060), 1, + STATE(1059), 1, sym_template_parameter_list, - STATE(3123), 1, + STATE(3163), 1, sym_template_type, - [285881] = 4, + [286385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10227), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(4253), 1, + ACTIONS(10678), 1, + anon_sym_COLON, + STATE(7965), 1, sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [285895] = 4, + STATE(8200), 1, + sym_field_initializer_list, + [286401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10231), 1, + ACTIONS(10354), 1, anon_sym_LBRACE, - STATE(2779), 1, + STATE(6276), 1, sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [285909] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11644), 1, - anon_sym_LPAREN, - ACTIONS(11688), 1, - aux_sym_preproc_include_token2, - ACTIONS(11690), 1, - sym_preproc_arg, - STATE(8381), 1, - sym_preproc_params, - [285925] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, + ACTIONS(10322), 2, anon_sym_LPAREN2, - ACTIONS(10476), 1, anon_sym_LBRACK, - STATE(4159), 1, - sym_parameter_list, - STATE(6668), 1, - sym__function_declarator_seq, - [285941] = 4, + [286415] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10223), 1, - anon_sym_LBRACE, - STATE(6267), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [285955] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11692), 1, - anon_sym_DQUOTE, - ACTIONS(11694), 1, - aux_sym_string_literal_token1, - ACTIONS(11696), 1, - sym_escape_sequence, - STATE(7542), 1, - aux_sym_string_literal_repeat1, - [285971] = 4, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(5019), 1, + anon_sym_SEMI, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(2039), 1, + sym_template_argument_list, + [286431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10229), 1, + ACTIONS(10320), 1, anon_sym_LBRACE, - STATE(4884), 1, + STATE(3793), 1, sym_compound_statement, - ACTIONS(10239), 2, + ACTIONS(10322), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [285985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11698), 1, - anon_sym_SEMI, - STATE(7385), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [285999] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9431), 1, - anon_sym_LBRACE, - ACTIONS(11628), 1, - anon_sym_LPAREN2, - STATE(2786), 1, - sym_requirement_seq, - STATE(8200), 1, - sym_requires_parameter_list, - [286015] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11700), 1, - anon_sym_GT2, - STATE(7819), 1, - aux_sym_template_argument_list_repeat1, - [286031] = 4, + [286445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11702), 1, + ACTIONS(11846), 1, anon_sym_SEMI, - STATE(5268), 2, + STATE(7421), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [286045] = 4, + [286459] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11704), 1, + ACTIONS(11848), 1, anon_sym_SEMI, - STATE(7432), 2, + STATE(5311), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [286059] = 5, + [286473] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, + ACTIONS(4987), 1, anon_sym_LT, - ACTIONS(11706), 1, - anon_sym_SEMI, - STATE(1935), 1, - sym_template_argument_list, - [286075] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(6985), 1, - sym_access_specifier, - ACTIONS(11708), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [286087] = 4, + ACTIONS(11836), 1, + sym_identifier, + STATE(1058), 1, + sym_template_parameter_list, + STATE(3163), 1, + sym_template_type, + [286489] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10219), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(3367), 1, + ACTIONS(10678), 1, + anon_sym_COLON, + STATE(7645), 1, sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [286101] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11710), 1, - anon_sym_SEMI, - STATE(7440), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [286115] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11712), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11714), 1, - anon_sym_COMMA, - ACTIONS(11716), 1, - anon_sym_LBRACE, - STATE(7995), 1, - aux_sym_base_class_clause_repeat1, - [286131] = 4, + STATE(8243), 1, + sym_field_initializer_list, + [286505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11718), 1, + ACTIONS(11850), 1, anon_sym_SEMI, - STATE(7321), 2, + STATE(7464), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [286145] = 4, + [286519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11720), 1, - anon_sym_COMMA, - STATE(7393), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(11723), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [286159] = 4, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(11852), 1, + sym_identifier, + STATE(3792), 1, + sym_template_method, + STATE(8371), 1, + sym_operator_name, + [286535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10233), 1, + ACTIONS(10320), 1, anon_sym_LBRACE, - STATE(3754), 1, + STATE(3747), 1, sym_compound_statement, - ACTIONS(10239), 2, + ACTIONS(10322), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [286173] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11725), 1, - anon_sym_DQUOTE, - ACTIONS(11727), 1, - aux_sym_string_literal_token1, - ACTIONS(11729), 1, - sym_escape_sequence, - STATE(7345), 1, - aux_sym_string_literal_repeat1, - [286189] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5070), 1, - anon_sym_LBRACE, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - ACTIONS(11731), 1, - anon_sym_EQ, - STATE(374), 1, - sym_declaration_list, - [286205] = 5, + [286549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(8920), 1, - anon_sym_LBRACE, - STATE(5382), 1, - sym_field_declaration_list, - STATE(8272), 1, - sym_base_class_clause, - [286221] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(11854), 1, + anon_sym_SEMI, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [286563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10257), 1, - anon_sym_LBRACE, - STATE(4858), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [286235] = 4, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(11836), 1, + sym_identifier, + STATE(1060), 1, + sym_template_parameter_list, + STATE(3163), 1, + sym_template_type, + [286579] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10219), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(3352), 1, + ACTIONS(10678), 1, + anon_sym_COLON, + STATE(7923), 1, sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [286249] = 5, + STATE(8300), 1, + sym_field_initializer_list, + [286595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9473), 1, - anon_sym_LBRACE, - ACTIONS(11628), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - STATE(3472), 1, - sym_requirement_seq, - STATE(8099), 1, - sym_requires_parameter_list, - [286265] = 4, + STATE(8087), 1, + sym_argument_list, + ACTIONS(11856), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [286609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11733), 1, + ACTIONS(10989), 1, anon_sym_COMMA, - STATE(7439), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(11735), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [286279] = 4, + STATE(7366), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(11858), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [286623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11142), 1, - anon_sym_EQ, - STATE(7360), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [286293] = 5, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(11860), 1, + anon_sym_SEMI, + STATE(7371), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [286637] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(5323), 1, anon_sym_COLON, - ACTIONS(6277), 1, + ACTIONS(8994), 1, anon_sym_LBRACE, - STATE(3216), 1, + STATE(5426), 1, sym_field_declaration_list, - STATE(8215), 1, + STATE(8244), 1, sym_base_class_clause, - [286309] = 4, + [286653] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11737), 1, - anon_sym_EQ, - STATE(6535), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [286323] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(11739), 1, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(11836), 1, sym_identifier, - STATE(2728), 1, - sym_template_method, - STATE(8301), 1, - sym_operator_name, - [286339] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(6980), 1, - sym_access_specifier, - ACTIONS(11708), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [286351] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11602), 1, - aux_sym_string_literal_token1, - ACTIONS(11604), 1, - sym_escape_sequence, - ACTIONS(11741), 1, - anon_sym_DQUOTE, - STATE(7465), 1, - aux_sym_string_literal_repeat1, - [286367] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11743), 1, - anon_sym_SQUOTE, - STATE(7462), 1, - aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [286381] = 5, - ACTIONS(9761), 1, + STATE(1061), 1, + sym_template_parameter_list, + STATE(3163), 1, + sym_template_type, + [286669] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11745), 1, + ACTIONS(11862), 1, anon_sym_DQUOTE, - ACTIONS(11747), 1, + ACTIONS(11864), 1, aux_sym_string_literal_token1, - ACTIONS(11749), 1, + ACTIONS(11866), 1, sym_escape_sequence, - STATE(7425), 1, + STATE(7438), 1, aux_sym_string_literal_repeat1, - [286397] = 5, + [286685] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(7526), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(4499), 1, - sym_field_declaration_list, - STATE(8093), 1, - sym_base_class_clause, - [286413] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11751), 1, - anon_sym_GT2, - STATE(7707), 1, - aux_sym_template_argument_list_repeat1, - [286429] = 5, - ACTIONS(3), 1, + ACTIONS(10678), 1, + anon_sym_COLON, + STATE(7854), 1, + sym_compound_statement, + STATE(8372), 1, + sym_field_initializer_list, + [286701] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(9455), 1, - anon_sym_LBRACE, - ACTIONS(11628), 1, - anon_sym_LPAREN2, - STATE(4156), 1, - sym_requirement_seq, - STATE(8145), 1, - sym_requires_parameter_list, - [286445] = 4, + ACTIONS(11774), 1, + anon_sym_LPAREN, + ACTIONS(11868), 1, + aux_sym_preproc_include_token2, + ACTIONS(11870), 1, + sym_preproc_arg, + STATE(8420), 1, + sym_preproc_params, + [286717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11753), 1, + ACTIONS(11872), 1, anon_sym_SEMI, - STATE(7518), 2, + STATE(5311), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [286459] = 5, + [286731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11714), 1, - anon_sym_COMMA, - ACTIONS(11755), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11757), 1, + ACTIONS(2254), 1, anon_sym_LBRACE, - STATE(7865), 1, - aux_sym_base_class_clause_repeat1, - [286475] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(11759), 1, - sym_identifier, - STATE(3806), 1, - sym_template_method, - STATE(8210), 1, - sym_operator_name, - [286491] = 5, + ACTIONS(6581), 1, + anon_sym_LPAREN2, + STATE(3768), 1, + sym_initializer_list, + STATE(3781), 1, + sym_argument_list, + [286747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(11761), 1, - anon_sym_SEMI, - STATE(1935), 1, - sym_template_argument_list, - [286507] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11602), 1, - aux_sym_string_literal_token1, - ACTIONS(11604), 1, - sym_escape_sequence, - ACTIONS(11763), 1, - anon_sym_DQUOTE, - STATE(7465), 1, - aux_sym_string_literal_repeat1, - [286523] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11765), 1, - anon_sym_SQUOTE, - STATE(7462), 1, - aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [286537] = 5, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(7097), 1, + anon_sym_LBRACE, + STATE(4376), 1, + sym_field_declaration_list, + STATE(8084), 1, + sym_base_class_clause, + [286763] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11714), 1, - anon_sym_COMMA, - ACTIONS(11767), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11769), 1, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(6375), 1, anon_sym_LBRACE, - STATE(7978), 1, - aux_sym_base_class_clause_repeat1, - [286553] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11771), 1, - anon_sym_DQUOTE, - ACTIONS(11773), 1, - aux_sym_string_literal_token1, - ACTIONS(11775), 1, - sym_escape_sequence, - STATE(7407), 1, - aux_sym_string_literal_repeat1, - [286569] = 5, + STATE(3166), 1, + sym_field_declaration_list, + STATE(8131), 1, + sym_base_class_clause, + [286779] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 1, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(6220), 1, anon_sym_LBRACE, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - ACTIONS(11777), 1, - anon_sym_EQ, - STATE(951), 1, - sym_declaration_list, - [286585] = 4, - ACTIONS(9761), 1, + STATE(3152), 1, + sym_field_declaration_list, + STATE(8402), 1, + sym_base_class_clause, + [286795] = 4, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11779), 1, + ACTIONS(11874), 1, anon_sym_SQUOTE, - STATE(7462), 1, + STATE(7590), 1, aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, + ACTIONS(11663), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [286599] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11781), 1, - anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [286613] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11783), 1, - anon_sym_SEMI, - STATE(7350), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [286627] = 5, - ACTIONS(9761), 1, + [286809] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11602), 1, + ACTIONS(11800), 1, aux_sym_string_literal_token1, - ACTIONS(11604), 1, + ACTIONS(11802), 1, sym_escape_sequence, - ACTIONS(11785), 1, + ACTIONS(11876), 1, anon_sym_DQUOTE, - STATE(7465), 1, + STATE(7603), 1, aux_sym_string_literal_repeat1, - [286643] = 3, + [286825] = 5, ACTIONS(3), 1, sym_comment, - STATE(6996), 1, - sym_access_specifier, - ACTIONS(11708), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [286655] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10223), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - STATE(6321), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [286669] = 4, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + ACTIONS(11878), 1, + anon_sym_EQ, + STATE(416), 1, + sym_declaration_list, + [286841] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10227), 1, + ACTIONS(9566), 1, anon_sym_LBRACE, - STATE(4209), 1, - sym_compound_statement, - ACTIONS(10239), 2, + ACTIONS(11808), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - [286683] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6552), 1, - anon_sym_LBRACE, - STATE(3458), 1, - sym_field_declaration_list, - STATE(8208), 1, - sym_base_class_clause, - [286699] = 4, + STATE(2784), 1, + sym_requirement_seq, + STATE(8428), 1, + sym_requires_parameter_list, + [286857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10271), 1, + ACTIONS(10356), 1, anon_sym_LBRACE, - STATE(1959), 1, + STATE(2847), 1, sym_compound_statement, - ACTIONS(10239), 2, + ACTIONS(10322), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [286713] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11787), 1, - anon_sym_SEMI, - STATE(7458), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [286727] = 4, + [286871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11789), 1, + ACTIONS(11880), 1, anon_sym_SEMI, - STATE(5268), 2, + STATE(7456), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [286741] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11602), 1, - aux_sym_string_literal_token1, - ACTIONS(11604), 1, - sym_escape_sequence, - ACTIONS(11791), 1, - anon_sym_DQUOTE, - STATE(7465), 1, - aux_sym_string_literal_repeat1, - [286757] = 4, + [286885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10231), 1, - anon_sym_LBRACE, - STATE(2776), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [286771] = 5, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11882), 1, + anon_sym_GT2, + STATE(7826), 1, + aux_sym_template_argument_list_repeat1, + [286901] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(4987), 1, anon_sym_LT, - ACTIONS(11560), 1, + ACTIONS(11836), 1, sym_identifier, - STATE(1058), 1, + STATE(1063), 1, sym_template_parameter_list, - STATE(3123), 1, + STATE(3163), 1, sym_template_type, - [286787] = 5, + [286917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11793), 1, - anon_sym_GT2, - STATE(7879), 1, - aux_sym_template_argument_list_repeat1, - [286803] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11795), 1, - anon_sym_SQUOTE, - STATE(7462), 1, - aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [286817] = 5, + ACTIONS(11884), 1, + anon_sym___except, + ACTIONS(11886), 1, + anon_sym___finally, + STATE(312), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [286931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11628), 1, - anon_sym_LPAREN2, - ACTIONS(11797), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(6291), 1, - sym_requirement_seq, - STATE(8241), 1, - sym_requires_parameter_list, - [286833] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11733), 1, - anon_sym_COMMA, - STATE(7493), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(11799), 2, - anon_sym_RPAREN, + ACTIONS(10678), 1, anon_sym_COLON, - [286847] = 4, + STATE(7681), 1, + sym_compound_statement, + STATE(8421), 1, + sym_field_initializer_list, + [286947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11801), 1, + ACTIONS(11888), 1, anon_sym_SEMI, - STATE(5268), 2, + STATE(7368), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [286861] = 4, + [286961] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11803), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(11890), 1, anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [286875] = 4, + STATE(1974), 1, + sym_template_argument_list, + [286977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11805), 1, - anon_sym_COMMA, - STATE(7595), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(11807), 2, - anon_sym_RPAREN, + ACTIONS(5323), 1, anon_sym_COLON, - [286889] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10273), 1, + ACTIONS(6220), 1, anon_sym_LBRACE, - STATE(6451), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [286903] = 4, + STATE(3058), 1, + sym_field_declaration_list, + STATE(8348), 1, + sym_base_class_clause, + [286993] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(8110), 1, - sym_argument_list, - ACTIONS(11809), 2, + ACTIONS(8252), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [286917] = 4, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11892), 1, + anon_sym_GT2, + STATE(7706), 1, + aux_sym_template_argument_list_repeat1, + [287009] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11811), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(11894), 1, anon_sym_SEMI, - STATE(7544), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [286931] = 4, + STATE(1974), 1, + sym_template_argument_list, + [287025] = 4, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(11896), 1, + anon_sym_SQUOTE, + STATE(7590), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11663), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [287039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, - anon_sym___except, - ACTIONS(11815), 1, - anon_sym___finally, - STATE(810), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [286945] = 4, + ACTIONS(10326), 1, + anon_sym_LBRACE, + STATE(1982), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [287053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11817), 1, - anon_sym_EQ, - STATE(6535), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [286959] = 5, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(11898), 1, + sym_identifier, + STATE(4037), 1, + sym_template_method, + STATE(8208), 1, + sym_operator_name, + [287069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6065), 1, + ACTIONS(10356), 1, anon_sym_LBRACE, - STATE(2846), 1, - sym_field_declaration_list, - STATE(8172), 1, - sym_base_class_clause, - [286975] = 4, + STATE(2815), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [287083] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11819), 1, + ACTIONS(11900), 1, anon_sym_SEMI, - STATE(5268), 2, + STATE(5311), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [286989] = 4, + [287097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11821), 1, - anon_sym_EQ, - STATE(6535), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [287003] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11602), 1, - aux_sym_string_literal_token1, - ACTIONS(11604), 1, - sym_escape_sequence, - ACTIONS(11823), 1, - anon_sym_DQUOTE, - STATE(7465), 1, - aux_sym_string_literal_repeat1, - [287019] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11825), 1, - anon_sym_DQUOTE, - ACTIONS(11827), 1, - aux_sym_string_literal_token1, - ACTIONS(11829), 1, - sym_escape_sequence, - STATE(7499), 1, - aux_sym_string_literal_repeat1, - [287035] = 4, + ACTIONS(11902), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [287107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11192), 1, - anon_sym_EQ, - STATE(7371), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [287049] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11831), 1, - anon_sym_DQUOTE, - ACTIONS(11833), 1, - aux_sym_string_literal_token1, - ACTIONS(11835), 1, - sym_escape_sequence, - STATE(7470), 1, - aux_sym_string_literal_repeat1, - [287065] = 4, + ACTIONS(10356), 1, + anon_sym_LBRACE, + STATE(2803), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [287121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11837), 1, - anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287079] = 4, + ACTIONS(10354), 1, + anon_sym_LBRACE, + STATE(6284), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [287135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10223), 1, + ACTIONS(10326), 1, anon_sym_LBRACE, - STATE(6254), 1, + STATE(1999), 1, sym_compound_statement, - ACTIONS(10239), 2, + ACTIONS(10322), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [287093] = 4, + [287149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11839), 1, + ACTIONS(11904), 1, anon_sym_SEMI, - STATE(5268), 2, + STATE(5311), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [287107] = 4, + [287163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11841), 1, + ACTIONS(11906), 1, anon_sym_SEMI, - STATE(5268), 2, + STATE(7461), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [287121] = 4, + [287177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11843), 1, + ACTIONS(11908), 1, anon_sym_SEMI, - STATE(7441), 2, + STATE(7490), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [287135] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(8920), 1, - anon_sym_LBRACE, - STATE(5392), 1, - sym_field_declaration_list, - STATE(8288), 1, - sym_base_class_clause, - [287151] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10221), 1, - anon_sym_LBRACE, - STATE(3830), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [287165] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11845), 1, - anon_sym_SQUOTE, - STATE(7462), 1, - aux_sym_char_literal_repeat1, - ACTIONS(11847), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [287179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11850), 1, - sym_identifier, - ACTIONS(11852), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, [287191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10273), 1, - anon_sym_LBRACE, - STATE(6463), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(11910), 1, + anon_sym_SEMI, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, [287205] = 5, - ACTIONS(9761), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11854), 1, + ACTIONS(11912), 1, anon_sym_DQUOTE, - ACTIONS(11856), 1, + ACTIONS(11914), 1, aux_sym_string_literal_token1, - ACTIONS(11859), 1, + ACTIONS(11916), 1, sym_escape_sequence, - STATE(7465), 1, + STATE(7471), 1, aux_sym_string_literal_repeat1, [287221] = 5, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11862), 1, - anon_sym_GT2, - STATE(7903), 1, - aux_sym_template_argument_list_repeat1, + ACTIONS(11774), 1, + anon_sym_LPAREN, + ACTIONS(11918), 1, + aux_sym_preproc_include_token2, + ACTIONS(11920), 1, + sym_preproc_arg, + STATE(8241), 1, + sym_preproc_params, [287237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6065), 1, - anon_sym_LBRACE, - STATE(2844), 1, - sym_field_declaration_list, - STATE(8158), 1, - sym_base_class_clause, - [287253] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11864), 1, - anon_sym_SQUOTE, - STATE(7462), 1, - aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [287267] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11866), 1, - anon_sym_GT2, - STATE(7705), 1, - aux_sym_template_argument_list_repeat1, - [287283] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11602), 1, - aux_sym_string_literal_token1, - ACTIONS(11604), 1, - sym_escape_sequence, - ACTIONS(11868), 1, - anon_sym_DQUOTE, - STATE(7465), 1, - aux_sym_string_literal_repeat1, - [287299] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(10577), 1, - anon_sym_COLON, - STATE(7825), 1, - sym_compound_statement, - STATE(8316), 1, - sym_field_initializer_list, - [287315] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11870), 1, - anon_sym_EQ, - STATE(6535), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [287329] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3716), 1, + ACTIONS(3886), 1, anon_sym_LBRACE, - ACTIONS(6466), 1, + ACTIONS(6602), 1, anon_sym_LPAREN2, - STATE(3370), 1, + STATE(4051), 1, sym_argument_list, - STATE(4895), 1, + STATE(5278), 1, sym_initializer_list, - [287345] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11872), 1, - anon_sym_GT2, - STATE(7957), 1, - aux_sym_template_argument_list_repeat1, - [287361] = 5, + [287253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(7216), 1, + ACTIONS(10336), 1, + anon_sym_LBRACE, + STATE(3907), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [287267] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5321), 1, anon_sym_LBRACE, - STATE(4330), 1, + ACTIONS(5323), 1, + anon_sym_COLON, + STATE(2325), 1, sym_field_declaration_list, - STATE(8114), 1, + STATE(8223), 1, sym_base_class_clause, - [287377] = 5, - ACTIONS(9761), 1, + [287283] = 4, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(11922), 1, + anon_sym_SQUOTE, + STATE(7590), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11663), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [287297] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11602), 1, + ACTIONS(11800), 1, aux_sym_string_literal_token1, - ACTIONS(11604), 1, + ACTIONS(11802), 1, sym_escape_sequence, - ACTIONS(11874), 1, + ACTIONS(11924), 1, anon_sym_DQUOTE, - STATE(7465), 1, + STATE(7603), 1, aux_sym_string_literal_repeat1, - [287393] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11876), 1, - anon_sym_COMMA, - STATE(7477), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(11879), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [287407] = 4, + [287313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11881), 1, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + ACTIONS(11926), 1, anon_sym_EQ, - STATE(7551), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [287421] = 5, + STATE(583), 1, + sym_declaration_list, + [287329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, - anon_sym_LT, - ACTIONS(11560), 1, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(11928), 1, sym_identifier, - STATE(1059), 1, - sym_template_parameter_list, - STATE(3123), 1, - sym_template_type, - [287437] = 5, + STATE(2732), 1, + sym_template_method, + STATE(8209), 1, + sym_operator_name, + [287345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6932), 1, + ACTIONS(9550), 1, anon_sym_LBRACE, - STATE(4355), 1, - sym_field_declaration_list, - STATE(8253), 1, - sym_base_class_clause, - [287453] = 5, + ACTIONS(11808), 1, + anon_sym_LPAREN2, + STATE(4873), 1, + sym_requirement_seq, + STATE(8249), 1, + sym_requires_parameter_list, + [287361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, + ACTIONS(10338), 1, anon_sym_LBRACE, - ACTIONS(6563), 1, + STATE(4878), 1, + sym_compound_statement, + ACTIONS(10322), 2, anon_sym_LPAREN2, - STATE(3859), 1, - sym_argument_list, - STATE(4184), 1, - sym_initializer_list, - [287469] = 5, + anon_sym_LBRACK, + [287375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(11930), 1, + anon_sym_SEMI, + STATE(7486), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [287389] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN2, + ACTIONS(11932), 1, anon_sym_LBRACE, - ACTIONS(10577), 1, + STATE(6257), 1, + sym_requirement_seq, + STATE(8167), 1, + sym_requires_parameter_list, + [287405] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11934), 1, + anon_sym___except, + ACTIONS(11936), 1, + anon_sym___finally, + STATE(451), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [287419] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5321), 1, + anon_sym_LBRACE, + ACTIONS(5323), 1, anon_sym_COLON, - STATE(7606), 1, - sym_compound_statement, - STATE(8235), 1, - sym_field_initializer_list, - [287485] = 5, + STATE(2293), 1, + sym_field_declaration_list, + STATE(8182), 1, + sym_base_class_clause, + [287435] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11938), 1, + anon_sym_GT2, + STATE(7886), 1, + aux_sym_template_argument_list_repeat1, + [287451] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, anon_sym_LT, - ACTIONS(11560), 1, + ACTIONS(11940), 1, + anon_sym_SEMI, + STATE(1974), 1, + sym_template_argument_list, + [287467] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2122), 1, + anon_sym_operator, + ACTIONS(11942), 1, sym_identifier, - STATE(1056), 1, - sym_template_parameter_list, - STATE(3123), 1, - sym_template_type, - [287501] = 4, + STATE(3512), 1, + sym_template_method, + STATE(8139), 1, + sym_operator_name, + [287483] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11148), 1, + ACTIONS(11303), 1, anon_sym_EQ, - STATE(7404), 2, + STATE(7523), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [287515] = 4, + [287497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10338), 1, + anon_sym_LBRACE, + STATE(4784), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [287511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11883), 1, + ACTIONS(11944), 1, anon_sym_SEMI, - STATE(5268), 2, + STATE(7491), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [287529] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11644), 1, - anon_sym_LPAREN, - ACTIONS(11885), 1, - aux_sym_preproc_include_token2, - ACTIONS(11887), 1, - sym_preproc_arg, - STATE(8303), 1, - sym_preproc_params, - [287545] = 4, + [287525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(11889), 1, + ACTIONS(11946), 1, anon_sym_SEMI, - STATE(7457), 2, + STATE(5311), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [287559] = 5, + [287539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6182), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - STATE(3132), 1, - sym_field_declaration_list, - STATE(8365), 1, - sym_base_class_clause, - [287575] = 5, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(8025), 2, + sym_argument_list, + sym_initializer_list, + [287553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9463), 1, + ACTIONS(10354), 1, anon_sym_LBRACE, - ACTIONS(11628), 1, + STATE(6291), 1, + sym_compound_statement, + ACTIONS(10322), 2, anon_sym_LPAREN2, - STATE(3910), 1, - sym_requirement_seq, - STATE(8299), 1, - sym_requires_parameter_list, - [287591] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11891), 1, - anon_sym_DQUOTE, - ACTIONS(11893), 1, - aux_sym_string_literal_token1, - ACTIONS(11895), 1, - sym_escape_sequence, - STATE(7504), 1, - aux_sym_string_literal_repeat1, - [287607] = 4, + anon_sym_LBRACK, + [287567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10221), 1, + ACTIONS(10338), 1, anon_sym_LBRACE, - STATE(3855), 1, + STATE(4909), 1, sym_compound_statement, - ACTIONS(10239), 2, + ACTIONS(10322), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [287621] = 5, - ACTIONS(9761), 1, + [287581] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(11897), 1, - anon_sym_DQUOTE, - ACTIONS(11899), 1, - aux_sym_string_literal_token1, - ACTIONS(11901), 1, - sym_escape_sequence, - STATE(7451), 1, - aux_sym_string_literal_repeat1, - [287637] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(11948), 1, + anon_sym_SEMI, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [287595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11903), 1, - anon_sym_COMMA, - STATE(7493), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(11906), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [287651] = 5, - ACTIONS(9761), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(11950), 1, + anon_sym_SEMI, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [287609] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11908), 1, - anon_sym_DQUOTE, - ACTIONS(11910), 1, + ACTIONS(11800), 1, aux_sym_string_literal_token1, - ACTIONS(11912), 1, + ACTIONS(11802), 1, sym_escape_sequence, - STATE(7317), 1, + ACTIONS(11952), 1, + anon_sym_DQUOTE, + STATE(7603), 1, aux_sym_string_literal_repeat1, - [287667] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11914), 1, - anon_sym_SQUOTE, - STATE(7462), 1, - aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [287681] = 5, + [287625] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, - anon_sym_operator, - ACTIONS(11916), 1, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(11836), 1, sym_identifier, - STATE(3503), 1, - sym_template_method, - STATE(8412), 1, - sym_operator_name, - [287697] = 5, + STATE(1056), 1, + sym_template_parameter_list, + STATE(3163), 1, + sym_template_type, + [287641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(10577), 1, - anon_sym_COLON, - STATE(7783), 1, - sym_compound_statement, - STATE(8383), 1, - sym_field_initializer_list, - [287713] = 4, + ACTIONS(11954), 1, + anon_sym___except, + ACTIONS(11956), 1, + anon_sym___finally, + STATE(770), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [287655] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11918), 1, - anon_sym_SEMI, - STATE(7455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [287727] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11602), 1, - aux_sym_string_literal_token1, - ACTIONS(11604), 1, - sym_escape_sequence, - ACTIONS(11920), 1, - anon_sym_DQUOTE, - STATE(7465), 1, - aux_sym_string_literal_repeat1, - [287743] = 5, + ACTIONS(5098), 1, + anon_sym_LBRACE, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + ACTIONS(11958), 1, + anon_sym_EQ, + STATE(982), 1, + sym_declaration_list, + [287671] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - STATE(7772), 1, + STATE(7846), 1, sym_compound_statement, - STATE(8401), 1, + STATE(8175), 1, sym_field_initializer_list, - [287759] = 4, + [287687] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10273), 1, + ACTIONS(9558), 1, anon_sym_LBRACE, - STATE(6441), 1, - sym_compound_statement, - ACTIONS(10239), 2, + ACTIONS(11808), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - [287773] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11644), 1, - anon_sym_LPAREN, - ACTIONS(11922), 1, - aux_sym_preproc_include_token2, - ACTIONS(11924), 1, - sym_preproc_arg, - STATE(8204), 1, - sym_preproc_params, - [287789] = 5, - ACTIONS(9761), 1, + STATE(3808), 1, + sym_requirement_seq, + STATE(8081), 1, + sym_requires_parameter_list, + [287703] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11926), 1, + ACTIONS(11960), 1, anon_sym_DQUOTE, - ACTIONS(11928), 1, - aux_sym_string_literal_token1, - ACTIONS(11930), 1, - sym_escape_sequence, - STATE(7528), 1, - aux_sym_string_literal_repeat1, - [287805] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11602), 1, + ACTIONS(11962), 1, aux_sym_string_literal_token1, - ACTIONS(11604), 1, + ACTIONS(11964), 1, sym_escape_sequence, - ACTIONS(11932), 1, - anon_sym_DQUOTE, - STATE(7465), 1, - aux_sym_string_literal_repeat1, - [287821] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11934), 1, - anon_sym_COMMA, - STATE(7477), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(11936), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [287835] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11938), 1, - anon_sym_COMMA, STATE(7506), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(11941), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [287849] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11943), 1, - anon_sym_GT2, - STATE(7924), 1, - aux_sym_template_argument_list_repeat1, - [287865] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9481), 1, - anon_sym_LBRACE, - ACTIONS(11628), 1, - anon_sym_LPAREN2, - STATE(4797), 1, - sym_requirement_seq, - STATE(8137), 1, - sym_requires_parameter_list, - [287881] = 5, - ACTIONS(9761), 1, + aux_sym_string_literal_repeat1, + [287719] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11644), 1, + ACTIONS(11774), 1, anon_sym_LPAREN, - ACTIONS(11945), 1, + ACTIONS(11966), 1, aux_sym_preproc_include_token2, - ACTIONS(11947), 1, + ACTIONS(11968), 1, sym_preproc_arg, - STATE(8184), 1, + STATE(8117), 1, sym_preproc_params, - [287897] = 5, + [287735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(11949), 1, - anon_sym_SEMI, - STATE(1935), 1, - sym_template_argument_list, - [287913] = 5, + ACTIONS(2628), 1, + anon_sym_LBRACE, + ACTIONS(6602), 1, + anon_sym_LPAREN2, + STATE(4051), 1, + sym_argument_list, + STATE(4084), 1, + sym_initializer_list, + [287751] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, - anon_sym_LT, - ACTIONS(11560), 1, - sym_identifier, - STATE(3123), 1, - sym_template_type, - STATE(7268), 1, - sym_template_parameter_list, - [287929] = 5, - ACTIONS(9761), 1, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(6505), 1, + anon_sym_LBRACE, + STATE(3147), 1, + sym_field_declaration_list, + STATE(8105), 1, + sym_base_class_clause, + [287767] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11951), 1, - anon_sym_DQUOTE, - ACTIONS(11953), 1, + ACTIONS(11800), 1, aux_sym_string_literal_token1, - ACTIONS(11955), 1, + ACTIONS(11802), 1, sym_escape_sequence, - STATE(7417), 1, + ACTIONS(11970), 1, + anon_sym_DQUOTE, + STATE(7603), 1, aux_sym_string_literal_repeat1, - [287945] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11628), 1, - anon_sym_LPAREN2, - ACTIONS(11957), 1, - anon_sym_LBRACE, - STATE(1955), 1, - sym_requirement_seq, - STATE(8307), 1, - sym_requires_parameter_list, - [287961] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10954), 1, - anon_sym_COMMA, - STATE(7536), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(11959), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [287975] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11961), 1, - anon_sym_GT2, - STATE(7685), 1, - aux_sym_template_argument_list_repeat1, - [287991] = 5, - ACTIONS(9761), 1, + [287783] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11602), 1, + ACTIONS(11800), 1, aux_sym_string_literal_token1, - ACTIONS(11604), 1, + ACTIONS(11802), 1, sym_escape_sequence, - ACTIONS(11963), 1, + ACTIONS(11972), 1, anon_sym_DQUOTE, - STATE(7465), 1, + STATE(7603), 1, aux_sym_string_literal_repeat1, - [288007] = 4, - ACTIONS(9761), 1, + [287799] = 4, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11965), 1, + ACTIONS(11974), 1, anon_sym_SQUOTE, - STATE(7462), 1, + STATE(7590), 1, aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, + ACTIONS(11663), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [288021] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11967), 1, - anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288035] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(7216), 1, - anon_sym_LBRACE, - STATE(4339), 1, - sym_field_declaration_list, - STATE(8127), 1, - sym_base_class_clause, - [288051] = 5, - ACTIONS(9761), 1, + [287813] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11969), 1, + ACTIONS(11976), 1, anon_sym_DQUOTE, - ACTIONS(11971), 1, + ACTIONS(11978), 1, aux_sym_string_literal_token1, - ACTIONS(11973), 1, + ACTIONS(11980), 1, sym_escape_sequence, - STATE(7524), 1, + STATE(7503), 1, aux_sym_string_literal_repeat1, - [288067] = 5, - ACTIONS(3), 1, + [287829] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(11975), 1, - anon_sym_SEMI, - STATE(1935), 1, - sym_template_argument_list, - [288083] = 5, - ACTIONS(3), 1, + ACTIONS(11800), 1, + aux_sym_string_literal_token1, + ACTIONS(11802), 1, + sym_escape_sequence, + ACTIONS(11982), 1, + anon_sym_DQUOTE, + STATE(7603), 1, + aux_sym_string_literal_repeat1, + [287845] = 4, + ACTIONS(9808), 1, sym_comment, - ACTIONS(5290), 1, - anon_sym_LBRACE, - ACTIONS(5292), 1, - anon_sym_COLON, - STATE(2340), 1, - sym_field_declaration_list, - STATE(8324), 1, - sym_base_class_clause, - [288099] = 4, + ACTIONS(11984), 1, + anon_sym_SQUOTE, + STATE(7590), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11663), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [287859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(11977), 1, - anon_sym_SEMI, - STATE(7540), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288113] = 5, - ACTIONS(9761), 1, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(11836), 1, + sym_identifier, + STATE(1057), 1, + sym_template_parameter_list, + STATE(3163), 1, + sym_template_type, + [287875] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11602), 1, + ACTIONS(11800), 1, aux_sym_string_literal_token1, - ACTIONS(11604), 1, + ACTIONS(11802), 1, sym_escape_sequence, - ACTIONS(11979), 1, + ACTIONS(11986), 1, anon_sym_DQUOTE, - STATE(7465), 1, + STATE(7603), 1, aux_sym_string_literal_repeat1, - [288129] = 5, + [287891] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(5323), 1, anon_sym_COLON, - ACTIONS(8950), 1, + ACTIONS(8994), 1, anon_sym_LBRACE, - STATE(5505), 1, + STATE(5411), 1, sym_field_declaration_list, - STATE(8123), 1, + STATE(8301), 1, sym_base_class_clause, - [288145] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11644), 1, - anon_sym_LPAREN, - ACTIONS(11981), 1, - aux_sym_preproc_include_token2, - ACTIONS(11983), 1, - sym_preproc_arg, - STATE(8025), 1, - sym_preproc_params, - [288161] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11985), 1, - anon_sym_SQUOTE, - STATE(7462), 1, - aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [288175] = 5, - ACTIONS(9761), 1, + [287907] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11602), 1, + ACTIONS(11988), 1, + anon_sym_DQUOTE, + ACTIONS(11990), 1, aux_sym_string_literal_token1, - ACTIONS(11604), 1, + ACTIONS(11992), 1, sym_escape_sequence, - ACTIONS(11987), 1, - anon_sym_DQUOTE, - STATE(7465), 1, + STATE(7509), 1, aux_sym_string_literal_repeat1, - [288191] = 5, + [287923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(11572), 1, + ACTIONS(11838), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11989), 1, + ACTIONS(11994), 1, anon_sym_GT2, - STATE(7945), 1, + STATE(8035), 1, aux_sym_template_argument_list_repeat1, - [288207] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 1, - anon_sym_LBRACE, - ACTIONS(5324), 1, - anon_sym_LPAREN2, - STATE(2771), 1, - sym_argument_list, - STATE(2793), 1, - sym_initializer_list, - [288223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10255), 1, - anon_sym_LBRACE, - STATE(4063), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [288237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11167), 1, - anon_sym_EQ, - STATE(7450), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [288251] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10227), 1, - anon_sym_LBRACE, - STATE(4242), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [288265] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11991), 1, - anon_sym_EQ, - STATE(6535), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [288279] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11993), 1, - anon_sym___except, - ACTIONS(11995), 1, - anon_sym___finally, - STATE(451), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [288293] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11997), 1, - anon_sym_COMMA, - STATE(7536), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(12000), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [288307] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11628), 1, - anon_sym_LPAREN2, - ACTIONS(12002), 1, - anon_sym_LBRACE, - STATE(6504), 1, - sym_requirement_seq, - STATE(8189), 1, - sym_requires_parameter_list, - [288323] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2226), 1, - anon_sym_LBRACE, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - STATE(3768), 1, - sym_initializer_list, - STATE(3859), 1, - sym_argument_list, - [288339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11224), 1, - anon_sym_EQ, - STATE(7447), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [288353] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(12004), 1, - anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288367] = 4, + [287939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(12006), 1, + ACTIONS(11996), 1, anon_sym_SEMI, - STATE(7485), 2, + STATE(7432), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [288381] = 5, - ACTIONS(9761), 1, + [287953] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11602), 1, + ACTIONS(11800), 1, aux_sym_string_literal_token1, - ACTIONS(11604), 1, + ACTIONS(11802), 1, sym_escape_sequence, - ACTIONS(12008), 1, + ACTIONS(11998), 1, anon_sym_DQUOTE, - STATE(7465), 1, + STATE(7603), 1, aux_sym_string_literal_repeat1, - [288397] = 4, + [287969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(5104), 1, anon_sym_LBRACE, - STATE(1959), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [288411] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(12010), 1, - anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288425] = 5, - ACTIONS(9761), 1, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + ACTIONS(12000), 1, + anon_sym_EQ, + STATE(923), 1, + sym_declaration_list, + [287985] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11644), 1, - anon_sym_LPAREN, - ACTIONS(12012), 1, - aux_sym_preproc_include_token2, - ACTIONS(12014), 1, - sym_preproc_arg, - STATE(8149), 1, - sym_preproc_params, - [288441] = 5, + ACTIONS(12002), 1, + anon_sym_DQUOTE, + ACTIONS(12004), 1, + aux_sym_string_literal_token1, + ACTIONS(12006), 1, + sym_escape_sequence, + STATE(7514), 1, + aux_sym_string_literal_repeat1, + [288001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(6599), 1, + ACTIONS(6518), 1, anon_sym_LPAREN2, - STATE(3959), 1, + STATE(3434), 1, sym_argument_list, - STATE(4096), 1, + STATE(4919), 1, sym_initializer_list, - [288457] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(12016), 1, - anon_sym_DQUOTE, - ACTIONS(12018), 1, - aux_sym_string_literal_token1, - ACTIONS(12020), 1, - sym_escape_sequence, - STATE(7560), 1, - aux_sym_string_literal_repeat1, - [288473] = 5, + [288017] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11714), 1, anon_sym_COMMA, - ACTIONS(12022), 1, + ACTIONS(12008), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12024), 1, + ACTIONS(12010), 1, anon_sym_LBRACE, - STATE(7637), 1, + STATE(7918), 1, aux_sym_base_class_clause_repeat1, - [288489] = 5, + [288033] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN2, + ACTIONS(12012), 1, + anon_sym_LBRACE, + STATE(1983), 1, + sym_requirement_seq, + STATE(8257), 1, + sym_requires_parameter_list, + [288049] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(10577), 1, + ACTIONS(10678), 1, anon_sym_COLON, - STATE(7989), 1, + STATE(7873), 1, sym_compound_statement, - STATE(8286), 1, + STATE(8189), 1, sym_field_initializer_list, - [288505] = 4, + [288065] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(12026), 1, - anon_sym_SEMI, - STATE(7592), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288519] = 4, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12014), 1, + anon_sym_GT2, + STATE(8021), 1, + aux_sym_template_argument_list_repeat1, + [288081] = 5, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(11800), 1, + aux_sym_string_literal_token1, + ACTIONS(11802), 1, + sym_escape_sequence, + ACTIONS(12016), 1, + anon_sym_DQUOTE, + STATE(7603), 1, + aux_sym_string_literal_repeat1, + [288097] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12028), 1, + ACTIONS(12018), 1, anon_sym_EQ, - STATE(6535), 2, + STATE(6582), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [288533] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4960), 1, - anon_sym_LT, - ACTIONS(11560), 1, - sym_identifier, - STATE(1064), 1, - sym_template_parameter_list, - STATE(3123), 1, - sym_template_type, - [288549] = 4, + [288111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(12030), 1, - anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288563] = 5, - ACTIONS(9761), 1, + ACTIONS(10366), 1, + anon_sym_LBRACE, + STATE(4280), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [288125] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12032), 1, + ACTIONS(12020), 1, anon_sym_DQUOTE, - ACTIONS(12034), 1, + ACTIONS(12022), 1, aux_sym_string_literal_token1, - ACTIONS(12036), 1, + ACTIONS(12024), 1, sym_escape_sequence, - STATE(7516), 1, + STATE(7522), 1, aux_sym_string_literal_repeat1, - [288579] = 4, + [288141] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10255), 1, - anon_sym_LBRACE, - STATE(3971), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [288593] = 3, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12026), 1, + anon_sym_GT2, + STATE(8001), 1, + aux_sym_template_argument_list_repeat1, + [288157] = 5, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(11774), 1, + anon_sym_LPAREN, + ACTIONS(12028), 1, + aux_sym_preproc_include_token2, + ACTIONS(12030), 1, + sym_preproc_arg, + STATE(8254), 1, + sym_preproc_params, + [288173] = 3, ACTIONS(3), 1, sym_comment, - STATE(6967), 1, + STATE(6989), 1, sym_access_specifier, - ACTIONS(11708), 3, + ACTIONS(11718), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - [288605] = 4, - ACTIONS(3), 1, + [288185] = 5, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(11800), 1, + aux_sym_string_literal_token1, + ACTIONS(11802), 1, + sym_escape_sequence, + ACTIONS(12032), 1, + anon_sym_DQUOTE, + STATE(7603), 1, + aux_sym_string_literal_repeat1, + [288201] = 5, + ACTIONS(9808), 1, sym_comment, + ACTIONS(12034), 1, + anon_sym_DQUOTE, + ACTIONS(12036), 1, + aux_sym_string_literal_token1, ACTIONS(12038), 1, - anon_sym___except, + sym_escape_sequence, + STATE(7502), 1, + aux_sym_string_literal_repeat1, + [288217] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, ACTIONS(12040), 1, - anon_sym___finally, - STATE(810), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [288619] = 4, + anon_sym_SEMI, + STATE(1974), 1, + sym_template_argument_list, + [288233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10221), 1, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(7097), 1, anon_sym_LBRACE, - STATE(3938), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [288633] = 4, + STATE(4386), 1, + sym_field_declaration_list, + STATE(8134), 1, + sym_base_class_clause, + [288249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, ACTIONS(12042), 1, anon_sym_SEMI, - STATE(7573), 2, + STATE(7557), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [288647] = 5, - ACTIONS(9761), 1, + [288263] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11602), 1, - aux_sym_string_literal_token1, - ACTIONS(11604), 1, - sym_escape_sequence, ACTIONS(12044), 1, anon_sym_DQUOTE, - STATE(7465), 1, - aux_sym_string_literal_repeat1, - [288663] = 5, - ACTIONS(9761), 1, - sym_comment, ACTIONS(12046), 1, - anon_sym_DQUOTE, - ACTIONS(12048), 1, aux_sym_string_literal_token1, - ACTIONS(12050), 1, + ACTIONS(12048), 1, sym_escape_sequence, - STATE(7588), 1, + STATE(7529), 1, aux_sym_string_literal_repeat1, - [288679] = 5, - ACTIONS(3), 1, + [288279] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12052), 1, - anon_sym_GT2, - STATE(7965), 1, - aux_sym_template_argument_list_repeat1, - [288695] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(12054), 1, + ACTIONS(12050), 1, anon_sym_DQUOTE, - ACTIONS(12056), 1, + ACTIONS(12052), 1, aux_sym_string_literal_token1, - ACTIONS(12058), 1, + ACTIONS(12054), 1, sym_escape_sequence, - STATE(7569), 1, + STATE(7561), 1, aux_sym_string_literal_repeat1, - [288711] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(8950), 1, - anon_sym_LBRACE, - STATE(5533), 1, - sym_field_declaration_list, - STATE(8160), 1, - sym_base_class_clause, - [288727] = 4, + [288295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12060), 1, + ACTIONS(12056), 1, anon_sym___except, - ACTIONS(12062), 1, + ACTIONS(12058), 1, anon_sym___finally, - STATE(1115), 2, + STATE(787), 2, sym_seh_except_clause, sym_seh_finally_clause, - [288741] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10233), 1, - anon_sym_LBRACE, - STATE(3732), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [288755] = 5, + [288309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9439), 1, - anon_sym_LBRACE, - ACTIONS(11628), 1, - anon_sym_LPAREN2, - STATE(3798), 1, - sym_requirement_seq, - STATE(8283), 1, - sym_requires_parameter_list, - [288771] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4960), 1, - anon_sym_LT, - ACTIONS(11560), 1, - sym_identifier, - STATE(1062), 1, - sym_template_parameter_list, - STATE(3123), 1, - sym_template_type, - [288787] = 5, - ACTIONS(9761), 1, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12060), 1, + anon_sym_GT2, + STATE(7981), 1, + aux_sym_template_argument_list_repeat1, + [288325] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11602), 1, + ACTIONS(11800), 1, aux_sym_string_literal_token1, - ACTIONS(11604), 1, + ACTIONS(11802), 1, sym_escape_sequence, - ACTIONS(12064), 1, + ACTIONS(12062), 1, anon_sym_DQUOTE, - STATE(7465), 1, + STATE(7603), 1, aux_sym_string_literal_repeat1, - [288803] = 4, - ACTIONS(3), 1, + [288341] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, + ACTIONS(12064), 1, + anon_sym_DQUOTE, ACTIONS(12066), 1, - anon_sym_EQ, - STATE(7593), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [288817] = 5, + aux_sym_string_literal_token1, + ACTIONS(12068), 1, + sym_escape_sequence, + STATE(7538), 1, + aux_sym_string_literal_repeat1, + [288357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12068), 1, - anon_sym_GT2, - STATE(7612), 1, - aux_sym_template_argument_list_repeat1, - [288833] = 5, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(6505), 1, + anon_sym_LBRACE, + STATE(3125), 1, + sym_field_declaration_list, + STATE(8163), 1, + sym_base_class_clause, + [288373] = 5, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(11774), 1, + anon_sym_LPAREN, + ACTIONS(12070), 1, + aux_sym_preproc_include_token2, + ACTIONS(12072), 1, + sym_preproc_arg, + STATE(8222), 1, + sym_preproc_params, + [288389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(11572), 1, + ACTIONS(11838), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12070), 1, + ACTIONS(12074), 1, anon_sym_GT2, - STATE(7985), 1, + STATE(7960), 1, aux_sym_template_argument_list_repeat1, - [288849] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(12072), 1, - anon_sym_SEMI, - STATE(5268), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288863] = 4, - ACTIONS(3), 1, + [288405] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, - ACTIONS(12074), 1, - anon_sym_SEMI, - STATE(7553), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [288877] = 4, - ACTIONS(3), 1, + ACTIONS(11800), 1, + aux_sym_string_literal_token1, + ACTIONS(11802), 1, + sym_escape_sequence, + ACTIONS(12076), 1, + anon_sym_DQUOTE, + STATE(7603), 1, + aux_sym_string_literal_repeat1, + [288421] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10255), 1, - anon_sym_LBRACE, - STATE(4026), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [288891] = 5, + ACTIONS(12078), 1, + anon_sym_DQUOTE, + ACTIONS(12080), 1, + aux_sym_string_literal_token1, + ACTIONS(12082), 1, + sym_escape_sequence, + STATE(7543), 1, + aux_sym_string_literal_repeat1, + [288437] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4156), 1, anon_sym_COLON_COLON, - ACTIONS(6875), 1, + ACTIONS(7113), 1, anon_sym_LT, - ACTIONS(12076), 1, + ACTIONS(12084), 1, anon_sym_SEMI, - STATE(1935), 1, + STATE(1974), 1, sym_template_argument_list, - [288907] = 4, + [288453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11934), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - STATE(7505), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(12078), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [288921] = 5, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12086), 1, + anon_sym_GT2, + STATE(7939), 1, + aux_sym_template_argument_list_repeat1, + [288469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, - anon_sym_LBRACE, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - ACTIONS(12080), 1, - anon_sym_EQ, - STATE(580), 1, - sym_declaration_list, - [288937] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11644), 1, - anon_sym_LPAREN, - ACTIONS(12082), 1, - aux_sym_preproc_include_token2, - ACTIONS(12084), 1, - sym_preproc_arg, - STATE(8291), 1, - sym_preproc_params, - [288953] = 5, - ACTIONS(9761), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + ACTIONS(10585), 1, + anon_sym_LBRACK, + STATE(4175), 1, + sym_parameter_list, + STATE(6658), 1, + sym__function_declarator_seq, + [288485] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12086), 1, - anon_sym_DQUOTE, - ACTIONS(12088), 1, + ACTIONS(11800), 1, aux_sym_string_literal_token1, - ACTIONS(12090), 1, + ACTIONS(11802), 1, sym_escape_sequence, - STATE(7586), 1, + ACTIONS(12088), 1, + anon_sym_DQUOTE, + STATE(7603), 1, aux_sym_string_literal_repeat1, - [288969] = 5, + [288501] = 4, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(12090), 1, + anon_sym_SQUOTE, + STATE(7590), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11663), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [288515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(10336), 1, anon_sym_LBRACE, - ACTIONS(10577), 1, - anon_sym_COLON, - STATE(7727), 1, + STATE(3823), 1, sym_compound_statement, - STATE(8249), 1, - sym_field_initializer_list, - [288985] = 5, - ACTIONS(9761), 1, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [288529] = 5, + ACTIONS(9808), 1, sym_comment, ACTIONS(12092), 1, anon_sym_DQUOTE, @@ -598238,16417 +600960,17033 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, ACTIONS(12096), 1, sym_escape_sequence, - STATE(7433), 1, + STATE(7548), 1, aux_sym_string_literal_repeat1, - [289001] = 5, + [288545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON_COLON, - ACTIONS(6875), 1, - anon_sym_LT, - ACTIONS(12098), 1, - anon_sym_SEMI, - STATE(1935), 1, - sym_template_argument_list, - [289017] = 4, + ACTIONS(10366), 1, + anon_sym_LBRACE, + STATE(4281), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [288559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11104), 1, - anon_sym_EQ, - STATE(7472), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [289031] = 5, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12098), 1, + anon_sym_GT2, + STATE(7915), 1, + aux_sym_template_argument_list_repeat1, + [288575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, - anon_sym_LT, - ACTIONS(11560), 1, - sym_identifier, - STATE(1063), 1, - sym_template_parameter_list, - STATE(3123), 1, - sym_template_type, - [289047] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(11602), 1, - aux_sym_string_literal_token1, - ACTIONS(11604), 1, - sym_escape_sequence, + ACTIONS(7431), 1, + anon_sym___attribute__, ACTIONS(12100), 1, - anon_sym_DQUOTE, - STATE(7465), 1, - aux_sym_string_literal_repeat1, - [289063] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(1963), 1, - sym_compound_statement, - ACTIONS(10239), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [289077] = 5, - ACTIONS(9761), 1, + anon_sym_SEMI, + STATE(7579), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [288589] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11602), 1, + ACTIONS(11800), 1, aux_sym_string_literal_token1, - ACTIONS(11604), 1, + ACTIONS(11802), 1, sym_escape_sequence, ACTIONS(12102), 1, anon_sym_DQUOTE, - STATE(7465), 1, + STATE(7603), 1, aux_sym_string_literal_repeat1, - [289093] = 4, - ACTIONS(9761), 1, + [288605] = 4, + ACTIONS(9808), 1, sym_comment, ACTIONS(12104), 1, anon_sym_SQUOTE, - STATE(7462), 1, + STATE(7590), 1, aux_sym_char_literal_repeat1, - ACTIONS(11558), 2, + ACTIONS(11663), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [289107] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11132), 1, - anon_sym_EQ, - STATE(7534), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [289121] = 4, + [288619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, ACTIONS(12106), 1, anon_sym_SEMI, - STATE(7600), 2, + STATE(5311), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [289135] = 4, + [288633] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, - anon_sym___attribute__, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(9069), 1, + anon_sym_LBRACE, + STATE(5542), 1, + sym_field_declaration_list, + STATE(8276), 1, + sym_base_class_clause, + [288649] = 5, + ACTIONS(9808), 1, + sym_comment, ACTIONS(12108), 1, + anon_sym_DQUOTE, + ACTIONS(12110), 1, + aux_sym_string_literal_token1, + ACTIONS(12112), 1, + sym_escape_sequence, + STATE(7555), 1, + aux_sym_string_literal_repeat1, + [288665] = 4, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(12114), 1, + anon_sym_SQUOTE, + STATE(7590), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11663), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [288679] = 5, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(11800), 1, + aux_sym_string_literal_token1, + ACTIONS(11802), 1, + sym_escape_sequence, + ACTIONS(12116), 1, + anon_sym_DQUOTE, + STATE(7603), 1, + aux_sym_string_literal_repeat1, + [288695] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12118), 1, anon_sym_SEMI, - STATE(5268), 2, + STATE(5311), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [289149] = 4, + [288709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12110), 1, - anon_sym_EQ, - STATE(6535), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [289163] = 5, + ACTIONS(10352), 1, + anon_sym_LBRACE, + STATE(3982), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [288723] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(10318), 1, anon_sym_LBRACE, - ACTIONS(5292), 1, - anon_sym_COLON, - STATE(2315), 1, - sym_field_declaration_list, - STATE(8309), 1, - sym_base_class_clause, - [289179] = 4, + STATE(3528), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [288737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11805), 1, - anon_sym_COMMA, - STATE(7506), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(12112), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [289193] = 2, + ACTIONS(10318), 1, + anon_sym_LBRACE, + STATE(3398), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [288751] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11153), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [289203] = 5, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12120), 1, + anon_sym_GT2, + STATE(7889), 1, + aux_sym_template_argument_list_repeat1, + [288767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(11572), 1, + ACTIONS(11838), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12114), 1, + ACTIONS(12122), 1, anon_sym_GT2, - STATE(8003), 1, + STATE(7861), 1, aux_sym_template_argument_list_repeat1, - [289219] = 5, + [288783] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(5998), 1, anon_sym_LBRACE, - ACTIONS(10577), 1, + STATE(2962), 1, + sym_field_declaration_list, + STATE(8173), 1, + sym_base_class_clause, + [288799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12124), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [288809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11808), 1, + anon_sym_LPAREN2, + ACTIONS(12126), 1, + anon_sym_LBRACE, + STATE(6528), 1, + sym_requirement_seq, + STATE(8194), 1, + sym_requires_parameter_list, + [288825] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10318), 1, + anon_sym_LBRACE, + STATE(3439), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [288839] = 5, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(11800), 1, + aux_sym_string_literal_token1, + ACTIONS(11802), 1, + sym_escape_sequence, + ACTIONS(12128), 1, + anon_sym_DQUOTE, + STATE(7603), 1, + aux_sym_string_literal_repeat1, + [288855] = 4, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(12130), 1, + anon_sym_SQUOTE, + STATE(7590), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11663), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [288869] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5323), 1, anon_sym_COLON, - STATE(7839), 1, + ACTIONS(5998), 1, + anon_sym_LBRACE, + STATE(2964), 1, + sym_field_declaration_list, + STATE(8184), 1, + sym_base_class_clause, + [288885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10366), 1, + anon_sym_LBRACE, + STATE(4250), 1, sym_compound_statement, - STATE(8267), 1, - sym_field_initializer_list, - [289235] = 5, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [288899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12116), 1, - anon_sym_GT2, - STATE(7969), 1, - aux_sym_template_argument_list_repeat1, - [289251] = 4, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(1999), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [288913] = 5, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(12132), 1, + anon_sym_DQUOTE, + ACTIONS(12134), 1, + aux_sym_string_literal_token1, + ACTIONS(12136), 1, + sym_escape_sequence, + STATE(7572), 1, + aux_sym_string_literal_repeat1, + [288929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12124), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [288939] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12138), 1, + anon_sym_SEMI, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [288953] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4987), 1, + anon_sym_LT, + ACTIONS(11836), 1, + sym_identifier, + STATE(3163), 1, + sym_template_type, + STATE(7273), 1, + sym_template_parameter_list, + [288969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7431), 1, anon_sym___attribute__, - ACTIONS(12118), 1, + ACTIONS(12140), 1, anon_sym_SEMI, - STATE(5268), 2, + STATE(5311), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [289265] = 5, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(12120), 1, - anon_sym_DQUOTE, - ACTIONS(12122), 1, - aux_sym_string_literal_token1, - ACTIONS(12124), 1, - sym_escape_sequence, - STATE(7476), 1, - aux_sym_string_literal_repeat1, - [289281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - ACTIONS(12126), 1, - anon_sym_EQ, - STATE(1046), 1, - sym_declaration_list, - [289297] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_COLON, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(3054), 1, - sym_field_declaration_list, - STATE(8336), 1, - sym_base_class_clause, - [289313] = 4, + [288983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(10350), 1, anon_sym_LBRACE, - STATE(1957), 1, + STATE(4916), 1, sym_compound_statement, - ACTIONS(10239), 2, + ACTIONS(10322), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [289327] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(12128), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [289340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12130), 1, - anon_sym_catch, - STATE(2212), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [289351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12132), 1, - anon_sym_catch, - STATE(892), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [289362] = 4, + [288997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8385), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [289375] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12142), 1, + anon_sym_SEMI, + STATE(7625), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12134), 1, - anon_sym_RPAREN, - ACTIONS(12136), 1, - anon_sym_COLON, - STATE(7619), 1, - sym_gnu_asm_input_operand_list, - [289388] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12144), 1, + anon_sym_SEMI, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10472), 1, - anon_sym_RPAREN, - STATE(7620), 1, - sym_gnu_asm_output_operand_list, - [289401] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12146), 1, + anon_sym_SEMI, + STATE(7581), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12138), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [289414] = 4, + ACTIONS(10350), 1, + anon_sym_LBRACE, + STATE(4907), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [289053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12140), 1, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12148), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7821), 1, aux_sym_template_argument_list_repeat1, - [289427] = 4, + [289069] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12142), 1, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12150), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(8012), 1, aux_sym_template_argument_list_repeat1, - [289440] = 3, + [289085] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12144), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12146), 2, - anon_sym_COMMA, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(7601), 1, anon_sym_LBRACE, - [289451] = 4, - ACTIONS(3), 1, + STATE(4537), 1, + sym_field_declaration_list, + STATE(8236), 1, + sym_base_class_clause, + [289101] = 4, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12148), 1, - anon_sym_COMMA, - ACTIONS(12150), 1, - anon_sym_LBRACE, - STATE(7778), 1, - aux_sym_field_initializer_list_repeat1, - [289464] = 3, + ACTIONS(12152), 1, + anon_sym_SQUOTE, + STATE(7590), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12154), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [289115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12130), 1, - anon_sym_catch, - STATE(2182), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [289475] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12157), 1, + anon_sym_SEMI, + STATE(7584), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(12152), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [289488] = 3, + ACTIONS(10350), 1, + anon_sym_LBRACE, + STATE(4869), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [289143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 1, - anon_sym_COLON_COLON, - ACTIONS(6266), 2, - anon_sym_LPAREN2, + ACTIONS(9542), 1, anon_sym_LBRACE, - [289499] = 4, - ACTIONS(3), 1, + ACTIONS(11808), 1, + anon_sym_LPAREN2, + STATE(3563), 1, + sym_requirement_seq, + STATE(8268), 1, + sym_requires_parameter_list, + [289159] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12154), 1, - anon_sym_RPAREN, - ACTIONS(12156), 1, - anon_sym_COLON, - STATE(7622), 1, - sym_gnu_asm_clobber_list, - [289512] = 4, - ACTIONS(3), 1, + ACTIONS(12159), 1, + anon_sym_DQUOTE, + ACTIONS(12161), 1, + aux_sym_string_literal_token1, + ACTIONS(12163), 1, + sym_escape_sequence, + STATE(7612), 1, + aux_sym_string_literal_repeat1, + [289175] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12136), 1, - anon_sym_COLON, - ACTIONS(12158), 1, - anon_sym_RPAREN, - STATE(7623), 1, - sym_gnu_asm_input_operand_list, - [289525] = 4, - ACTIONS(3), 1, + ACTIONS(11800), 1, + aux_sym_string_literal_token1, + ACTIONS(11802), 1, + sym_escape_sequence, + ACTIONS(12165), 1, + anon_sym_DQUOTE, + STATE(7603), 1, + aux_sym_string_literal_repeat1, + [289191] = 4, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12160), 1, - anon_sym_COMMA, - ACTIONS(12162), 1, - anon_sym_RBRACK_RBRACK, - STATE(7648), 1, - aux_sym_attribute_declaration_repeat1, - [289538] = 4, + ACTIONS(12167), 1, + anon_sym_SQUOTE, + STATE(7590), 1, + aux_sym_char_literal_repeat1, + ACTIONS(11663), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [289205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12164), 1, - anon_sym_RPAREN, - ACTIONS(12166), 1, + ACTIONS(5323), 1, anon_sym_COLON, - STATE(8997), 1, - sym_gnu_asm_goto_list, - [289551] = 4, + ACTIONS(9069), 1, + anon_sym_LBRACE, + STATE(5530), 1, + sym_field_declaration_list, + STATE(8431), 1, + sym_base_class_clause, + [289221] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, + ACTIONS(5323), 1, anon_sym_COLON, - ACTIONS(12168), 1, - anon_sym_RPAREN, - STATE(7625), 1, - sym_gnu_asm_clobber_list, - [289564] = 4, + ACTIONS(7601), 1, + anon_sym_LBRACE, + STATE(4545), 1, + sym_field_declaration_list, + STATE(8245), 1, + sym_base_class_clause, + [289237] = 5, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(11774), 1, + anon_sym_LPAREN, + ACTIONS(12169), 1, + aux_sym_preproc_include_token2, + ACTIONS(12171), 1, + sym_preproc_arg, + STATE(8354), 1, + sym_preproc_params, + [289253] = 5, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(12173), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + aux_sym_string_literal_token1, + ACTIONS(12177), 1, + sym_escape_sequence, + STATE(7595), 1, + aux_sym_string_literal_repeat1, + [289269] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, + ACTIONS(2830), 1, + anon_sym_LBRACE, + ACTIONS(6581), 1, anon_sym_LPAREN2, - ACTIONS(12172), 1, - anon_sym_constexpr, - STATE(192), 1, - sym_condition_clause, - [289577] = 4, + STATE(3781), 1, + sym_argument_list, + STATE(4248), 1, + sym_initializer_list, + [289285] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, + ACTIONS(5323), 1, anon_sym_COLON, - ACTIONS(12174), 1, - anon_sym_RPAREN, - STATE(8998), 1, - sym_gnu_asm_goto_list, - [289590] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(12176), 1, - aux_sym_preproc_include_token2, - ACTIONS(12178), 1, - anon_sym_LPAREN2, - STATE(9323), 1, - sym_preproc_argument_list, - [289603] = 3, - ACTIONS(9761), 1, + ACTIONS(6579), 1, + anon_sym_LBRACE, + STATE(3451), 1, + sym_field_declaration_list, + STATE(8384), 1, + sym_base_class_clause, + [289301] = 5, + ACTIONS(9808), 1, sym_comment, - STATE(7363), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12180), 2, - aux_sym_char_literal_token1, + ACTIONS(12179), 1, + anon_sym_DQUOTE, + ACTIONS(12181), 1, + aux_sym_string_literal_token1, + ACTIONS(12184), 1, sym_escape_sequence, - [289614] = 4, + STATE(7603), 1, + aux_sym_string_literal_repeat1, + [289317] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12182), 1, - anon_sym_RBRACK_RBRACK, - STATE(7662), 1, - aux_sym_attribute_declaration_repeat1, - [289627] = 4, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12187), 1, + anon_sym_GT2, + STATE(7651), 1, + aux_sym_template_argument_list_repeat1, + [289333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10454), 1, - anon_sym_RPAREN, - STATE(7609), 1, - sym_gnu_asm_output_operand_list, - [289640] = 3, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12189), 1, + anon_sym_SEMI, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12184), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12186), 2, - anon_sym_COMMA, + ACTIONS(10334), 1, anon_sym_LBRACE, - [289651] = 3, + STATE(6499), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [289361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12188), 1, - anon_sym_catch, - STATE(241), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [289662] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12191), 1, + anon_sym_SEMI, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8249), 1, - anon_sym_COMMA, - ACTIONS(12190), 1, - anon_sym_RBRACK, - STATE(7779), 1, - aux_sym_subscript_argument_list_repeat1, - [289675] = 3, - ACTIONS(9761), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12193), 1, + anon_sym_SEMI, + STATE(7605), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289389] = 4, + ACTIONS(3), 1, sym_comment, - STATE(7291), 1, + ACTIONS(10334), 1, + anon_sym_LBRACE, + STATE(6508), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [289403] = 4, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(12195), 1, + anon_sym_SQUOTE, + STATE(7590), 1, aux_sym_char_literal_repeat1, - ACTIONS(12192), 2, + ACTIONS(11663), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [289686] = 4, - ACTIONS(9761), 1, + [289417] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12178), 1, - anon_sym_LPAREN2, - ACTIONS(12194), 1, - aux_sym_preproc_include_token2, - STATE(9323), 1, - sym_preproc_argument_list, - [289699] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12197), 1, + anon_sym_SEMI, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289431] = 5, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(11800), 1, + aux_sym_string_literal_token1, + ACTIONS(11802), 1, + sym_escape_sequence, + ACTIONS(12199), 1, + anon_sym_DQUOTE, + STATE(7603), 1, + aux_sym_string_literal_repeat1, + [289447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5652), 1, - anon_sym_COMMA, - ACTIONS(12196), 1, - anon_sym_RBRACK, - STATE(7776), 1, - aux_sym_structured_binding_declarator_repeat1, - [289712] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12201), 1, + anon_sym_SEMI, + STATE(7562), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289461] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12198), 1, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12203), 1, anon_sym_GT2, - STATE(7613), 1, + STATE(7739), 1, aux_sym_template_argument_list_repeat1, - [289725] = 4, + [289477] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11714), 1, - anon_sym_COMMA, - ACTIONS(11757), 1, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(7323), 1, anon_sym_LBRACE, - STATE(7738), 1, - aux_sym_base_class_clause_repeat1, - [289738] = 4, + STATE(4363), 1, + sym_field_declaration_list, + STATE(8313), 1, + sym_base_class_clause, + [289493] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8149), 1, - anon_sym_COMMA, - ACTIONS(12200), 1, - anon_sym_RBRACK, - STATE(7801), 1, - aux_sym_lambda_capture_specifier_repeat1, - [289751] = 4, + ACTIONS(9595), 1, + anon_sym_LBRACE, + ACTIONS(11808), 1, + anon_sym_LPAREN2, + STATE(4254), 1, + sym_requirement_seq, + STATE(8048), 1, + sym_requires_parameter_list, + [289509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9719), 1, - anon_sym_COMMA, - ACTIONS(12202), 1, - anon_sym_RPAREN, - STATE(7781), 1, - aux_sym_preproc_argument_list_repeat1, - [289764] = 4, - ACTIONS(3), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12205), 1, + anon_sym_SEMI, + STATE(7607), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289523] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(5074), 1, - anon_sym_LBRACE, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - STATE(1012), 1, - sym_declaration_list, - [289777] = 4, + ACTIONS(11800), 1, + aux_sym_string_literal_token1, + ACTIONS(11802), 1, + sym_escape_sequence, + ACTIONS(12207), 1, + anon_sym_DQUOTE, + STATE(7603), 1, + aux_sym_string_literal_repeat1, + [289539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12204), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12206), 1, - anon_sym_RPAREN, - STATE(7784), 1, - aux_sym_preproc_params_repeat1, - [289790] = 4, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12209), 1, + anon_sym_GT2, + STATE(7816), 1, + aux_sym_template_argument_list_repeat1, + [289555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12208), 1, - sym_identifier, - STATE(3108), 1, - sym_template_function, - STATE(3123), 1, - sym_template_type, - [289803] = 4, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(1998), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [289569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8299), 1, - anon_sym_RPAREN, - STATE(7608), 1, - aux_sym_argument_list_repeat1, - [289816] = 4, + ACTIONS(10352), 1, + anon_sym_LBRACE, + STATE(4032), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [289583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 1, - anon_sym_COMMA, - ACTIONS(12212), 1, - anon_sym_RPAREN, - STATE(7826), 1, - aux_sym_requires_parameter_list_repeat1, - [289829] = 4, + ACTIONS(10352), 1, + anon_sym_LBRACE, + STATE(4081), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [289597] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, - anon_sym_COMMA, - ACTIONS(12214), 1, - anon_sym_RBRACK_RBRACK, - STATE(7712), 1, - aux_sym_attribute_declaration_repeat1, - [289842] = 4, + ACTIONS(9579), 1, + anon_sym_LBRACE, + ACTIONS(11808), 1, + anon_sym_LPAREN2, + STATE(4813), 1, + sym_requirement_seq, + STATE(8344), 1, + sym_requires_parameter_list, + [289613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12216), 1, - sym_identifier, - STATE(3123), 1, - sym_template_type, - STATE(3645), 1, - sym_template_function, - [289855] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12211), 1, + anon_sym_SEMI, + STATE(7633), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6097), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12213), 1, anon_sym_SEMI, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(2220), 1, - sym_template_argument_list, - [289868] = 4, - ACTIONS(3), 1, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289641] = 5, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12160), 1, - anon_sym_COMMA, - ACTIONS(12218), 1, - anon_sym_RBRACK_RBRACK, - STATE(7712), 1, - aux_sym_attribute_declaration_repeat1, - [289881] = 4, + ACTIONS(12215), 1, + anon_sym_DQUOTE, + ACTIONS(12217), 1, + aux_sym_string_literal_token1, + ACTIONS(12219), 1, + sym_escape_sequence, + STATE(7618), 1, + aux_sym_string_literal_repeat1, + [289657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, - anon_sym_LBRACE, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - STATE(531), 1, - sym_declaration_list, - [289894] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(12178), 1, - anon_sym_LPAREN2, - ACTIONS(12220), 1, - aux_sym_preproc_include_token2, - STATE(9323), 1, - sym_preproc_argument_list, - [289907] = 4, + ACTIONS(12221), 1, + anon_sym___except, + ACTIONS(12223), 1, + anon_sym___finally, + STATE(1163), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [289671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12222), 1, - anon_sym_COMMA, - ACTIONS(12224), 1, - anon_sym_RPAREN, - STATE(7773), 1, - aux_sym_parameter_list_repeat1, - [289920] = 3, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(7323), 1, + anon_sym_LBRACE, + STATE(4381), 1, + sym_field_declaration_list, + STATE(8330), 1, + sym_base_class_clause, + [289687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12226), 1, - anon_sym_catch, - STATE(2023), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [289931] = 4, + ACTIONS(10334), 1, + anon_sym_LBRACE, + STATE(6526), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [289701] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8133), 1, - anon_sym_RBRACE, - ACTIONS(8143), 1, - anon_sym_COMMA, - STATE(7823), 1, - aux_sym_initializer_list_repeat1, - [289944] = 4, + ACTIONS(5323), 1, + anon_sym_COLON, + ACTIONS(6579), 1, + anon_sym_LBRACE, + STATE(3474), 1, + sym_field_declaration_list, + STATE(8269), 1, + sym_base_class_clause, + [289717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8383), 1, - anon_sym_RPAREN, - STATE(7737), 1, - aux_sym_argument_list_repeat1, - [289957] = 4, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(1982), 1, + sym_compound_statement, + ACTIONS(10322), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [289731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9775), 1, - anon_sym_COMMA, - ACTIONS(9779), 1, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12225), 1, anon_sym_SEMI, - STATE(7876), 1, - aux_sym__declaration_declarator_repeat1, - [289970] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8337), 1, - anon_sym_COMMA, - ACTIONS(8339), 1, - anon_sym_RBRACE, - STATE(7681), 1, - aux_sym_initializer_list_repeat1, - [289983] = 4, + STATE(7611), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289745] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(12228), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [289996] = 4, + ACTIONS(7431), 1, + anon_sym___attribute__, + ACTIONS(12227), 1, + anon_sym_SEMI, + STATE(5311), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [289759] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8359), 1, - anon_sym_RBRACE, - ACTIONS(12230), 1, - anon_sym_COMMA, - STATE(7658), 1, - aux_sym_initializer_list_repeat1, - [290009] = 4, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + ACTIONS(7113), 1, + anon_sym_LT, + ACTIONS(12229), 1, + anon_sym_SEMI, + STATE(1974), 1, + sym_template_argument_list, + [289775] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, + ACTIONS(8388), 1, anon_sym_COMMA, - ACTIONS(12233), 1, - anon_sym_RBRACK_RBRACK, - STATE(7645), 1, - aux_sym_attribute_declaration_repeat1, - [290022] = 3, - ACTIONS(9761), 1, + ACTIONS(8390), 1, + anon_sym_RBRACK, + STATE(7721), 1, + aux_sym_subscript_argument_list_repeat1, + [289788] = 3, + ACTIONS(9808), 1, sym_comment, - STATE(7495), 1, + STATE(7507), 1, aux_sym_char_literal_repeat1, - ACTIONS(12235), 2, + ACTIONS(12231), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [290033] = 4, + [289799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10446), 1, - anon_sym_RPAREN, - STATE(7682), 1, - sym_gnu_asm_output_operand_list, - [290046] = 4, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + ACTIONS(12235), 1, + anon_sym_constexpr, + STATE(162), 1, + sym_condition_clause, + [289812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, - anon_sym_COMMA, ACTIONS(12237), 1, + anon_sym_COMMA, + ACTIONS(12239), 1, anon_sym_RBRACK_RBRACK, - STATE(7712), 1, + STATE(7657), 1, aux_sym_attribute_declaration_repeat1, - [290059] = 3, + [289825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12130), 1, + ACTIONS(12241), 1, anon_sym_catch, - STATE(2256), 2, + STATE(231), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [290070] = 4, + [289836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8149), 1, + ACTIONS(12243), 1, + anon_sym_EQ, + ACTIONS(11321), 2, anon_sym_COMMA, - ACTIONS(12239), 1, - anon_sym_RBRACK, - STATE(7801), 1, - aux_sym_lambda_capture_specifier_repeat1, - [290083] = 4, + anon_sym_RBRACE, + [289847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8185), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(12241), 1, + ACTIONS(8424), 1, anon_sym_RPAREN, - STATE(7883), 1, - aux_sym_generic_expression_repeat1, - [290096] = 3, - ACTIONS(9761), 1, - sym_comment, - STATE(7527), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12243), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [290107] = 4, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [289860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(12245), 3, anon_sym_COMMA, - ACTIONS(12245), 1, - anon_sym_GT2, - STATE(7686), 1, - aux_sym_template_argument_list_repeat1, - [290120] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12166), 1, - anon_sym_COLON, - ACTIONS(12247), 1, anon_sym_RPAREN, - STATE(8748), 1, - sym_gnu_asm_goto_list, - [290133] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12160), 1, - anon_sym_COMMA, - ACTIONS(12249), 1, - anon_sym_RBRACK_RBRACK, - STATE(7788), 1, - aux_sym_attribute_declaration_repeat1, - [290146] = 4, + anon_sym_COLON, + [289869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8588), 1, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10535), 1, anon_sym_RPAREN, - ACTIONS(12251), 1, - anon_sym_COMMA, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [290159] = 4, + STATE(7797), 1, + sym_gnu_asm_output_operand_list, + [289882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12222), 1, + ACTIONS(12247), 3, anon_sym_COMMA, - ACTIONS(12254), 1, anon_sym_RPAREN, - STATE(7691), 1, - aux_sym_parameter_list_repeat1, - [290172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12256), 1, - anon_sym_EQ, - ACTIONS(11114), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [290183] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12258), 1, - sym_identifier, - STATE(2054), 1, - sym_template_type, - STATE(3755), 1, - sym_template_function, - [290196] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12260), 1, - anon_sym_COMMA, - ACTIONS(12263), 1, - anon_sym_SEMI, - STATE(7674), 1, - aux_sym__declaration_declarator_repeat1, - [290209] = 3, + anon_sym_COLON, + [289891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12265), 1, + ACTIONS(12249), 1, anon_sym_catch, - STATE(2190), 2, + STATE(434), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [290220] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8249), 1, - anon_sym_COMMA, - ACTIONS(8251), 1, - anon_sym_RBRACK, - STATE(7697), 1, - aux_sym_subscript_argument_list_repeat1, - [290233] = 4, + [289902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8349), 1, + ACTIONS(8364), 1, anon_sym_RPAREN, - STATE(7678), 1, + STATE(7943), 1, aux_sym_argument_list_repeat1, - [290246] = 4, + [289915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8291), 1, + ACTIONS(12251), 1, anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [290259] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12156), 1, + ACTIONS(12253), 1, anon_sym_COLON, - ACTIONS(12267), 1, - anon_sym_RPAREN, - STATE(7668), 1, - sym_gnu_asm_clobber_list, - [290272] = 4, + STATE(7662), 1, + sym_gnu_asm_input_operand_list, + [289928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(12269), 1, + ACTIONS(10527), 1, anon_sym_RPAREN, - STATE(8752), 1, - sym_gnu_asm_goto_list, - [290285] = 4, + STATE(7663), 1, + sym_gnu_asm_output_operand_list, + [289941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4381), 1, - anon_sym_RBRACE, - ACTIONS(12271), 1, + ACTIONS(12255), 3, anon_sym_COMMA, - STATE(7658), 1, - aux_sym_initializer_list_repeat1, - [290298] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12136), 1, - anon_sym_COLON, - ACTIONS(12273), 1, anon_sym_RPAREN, - STATE(7713), 1, - sym_gnu_asm_input_operand_list, - [290311] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10407), 1, anon_sym_COLON, - ACTIONS(10442), 1, - anon_sym_RPAREN, - STATE(7715), 1, - sym_gnu_asm_output_operand_list, - [290324] = 4, + [289950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12275), 1, + ACTIONS(12257), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [290337] = 4, + [289963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12277), 1, + ACTIONS(12259), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [290350] = 4, + [289976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12279), 1, + ACTIONS(12261), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [290363] = 4, + [289989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9775), 1, + ACTIONS(12237), 1, anon_sym_COMMA, - ACTIONS(12281), 1, - anon_sym_SEMI, - STATE(7674), 1, - aux_sym__declaration_declarator_repeat1, - [290376] = 4, + ACTIONS(12263), 1, + anon_sym_RBRACK_RBRACK, + STATE(7684), 1, + aux_sym_attribute_declaration_repeat1, + [290002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8185), 1, - anon_sym_COMMA, - ACTIONS(12283), 1, - anon_sym_RPAREN, - STATE(7883), 1, - aux_sym_generic_expression_repeat1, - [290389] = 4, + ACTIONS(12265), 1, + sym_identifier, + STATE(2756), 1, + sym_template_function, + STATE(3163), 1, + sym_template_type, + [290015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, - anon_sym_COLON, - ACTIONS(12285), 1, + ACTIONS(12267), 1, + anon_sym_COMMA, + ACTIONS(12269), 1, anon_sym_RPAREN, - STATE(8873), 1, - sym_gnu_asm_goto_list, - [290402] = 4, + STATE(7725), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [290028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12287), 1, + ACTIONS(12271), 1, anon_sym_GT2, - STATE(7706), 1, + STATE(7834), 1, aux_sym_template_argument_list_repeat1, - [290415] = 4, + [290041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12222), 1, + ACTIONS(12237), 1, anon_sym_COMMA, - ACTIONS(12289), 1, - anon_sym_RPAREN, - STATE(7773), 1, - aux_sym_parameter_list_repeat1, - [290428] = 3, + ACTIONS(12273), 1, + anon_sym_RBRACK_RBRACK, + STATE(7684), 1, + aux_sym_attribute_declaration_repeat1, + [290054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12265), 1, + ACTIONS(12275), 1, anon_sym_catch, - STATE(2191), 2, + STATE(2280), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [290439] = 4, + [290065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, - anon_sym_COLON, - ACTIONS(12291), 1, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(8513), 1, anon_sym_RPAREN, - STATE(7679), 1, - sym_gnu_asm_input_operand_list, - [290452] = 4, + STATE(7690), 1, + aux_sym_argument_list_repeat1, + [290078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, - anon_sym_COLON, - ACTIONS(12293), 1, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(12277), 1, anon_sym_RPAREN, - STATE(7680), 1, - sym_gnu_asm_clobber_list, - [290465] = 4, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [290091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, - anon_sym_COLON, - ACTIONS(12295), 1, + ACTIONS(5102), 1, + anon_sym_LBRACE, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + STATE(362), 1, + sym_declaration_list, + [290104] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12279), 1, anon_sym_RPAREN, - STATE(7689), 1, + ACTIONS(12281), 1, + anon_sym_COLON, + STATE(7665), 1, sym_gnu_asm_clobber_list, - [290478] = 4, + [290117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, + ACTIONS(12253), 1, anon_sym_COLON, - ACTIONS(12297), 1, + ACTIONS(12283), 1, anon_sym_RPAREN, - STATE(8870), 1, - sym_gnu_asm_goto_list, - [290491] = 4, + STATE(7666), 1, + sym_gnu_asm_input_operand_list, + [290130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8249), 1, + ACTIONS(8477), 1, anon_sym_COMMA, - ACTIONS(12299), 1, - anon_sym_RBRACK, - STATE(7779), 1, - aux_sym_subscript_argument_list_repeat1, - [290504] = 4, + ACTIONS(8479), 1, + anon_sym_RBRACE, + STATE(7694), 1, + aux_sym_initializer_list_repeat1, + [290143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, - anon_sym_COLON, - ACTIONS(12301), 1, + ACTIONS(12285), 1, anon_sym_RPAREN, - STATE(7695), 1, - sym_gnu_asm_input_operand_list, - [290517] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12156), 1, + ACTIONS(12287), 1, anon_sym_COLON, - ACTIONS(12303), 1, - anon_sym_RPAREN, - STATE(7696), 1, - sym_gnu_asm_clobber_list, - [290530] = 4, + STATE(9356), 1, + sym_gnu_asm_goto_list, + [290156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(12305), 1, + ACTIONS(12281), 1, + anon_sym_COLON, + ACTIONS(12289), 1, anon_sym_RPAREN, STATE(7670), 1, - aux_sym_argument_list_repeat1, - [290543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12226), 1, - anon_sym_catch, - STATE(2027), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [290554] = 4, + sym_gnu_asm_clobber_list, + [290169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(12307), 1, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10575), 1, anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [290567] = 4, + STATE(7701), 1, + sym_gnu_asm_output_operand_list, + [290182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8412), 1, anon_sym_COMMA, - ACTIONS(12309), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [290580] = 4, + ACTIONS(8414), 1, + anon_sym_RBRACE, + STATE(7910), 1, + aux_sym_initializer_list_repeat1, + [290195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12311), 1, + ACTIONS(12291), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7708), 1, aux_sym_template_argument_list_repeat1, - [290593] = 4, + [290208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12313), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [290606] = 4, - ACTIONS(3), 1, + ACTIONS(12287), 1, + anon_sym_COLON, + ACTIONS(12293), 1, + anon_sym_RPAREN, + STATE(9354), 1, + sym_gnu_asm_goto_list, + [290221] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12315), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [290619] = 4, - ACTIONS(3), 1, + STATE(7437), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12295), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [290232] = 4, + ACTIONS(9808), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12317), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [290632] = 4, + ACTIONS(12297), 1, + aux_sym_preproc_include_token2, + ACTIONS(12299), 1, + anon_sym_LPAREN2, + STATE(9180), 1, + sym_preproc_argument_list, + [290245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12319), 1, + ACTIONS(12301), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7842), 1, aux_sym_template_argument_list_repeat1, - [290645] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(12321), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [290658] = 4, + [290258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10466), 1, + ACTIONS(10560), 1, anon_sym_RPAREN, - STATE(7698), 1, + STATE(7800), 1, sym_gnu_asm_output_operand_list, - [290671] = 4, + [290271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, + ACTIONS(12281), 1, anon_sym_COLON, - ACTIONS(12323), 1, + ACTIONS(12303), 1, anon_sym_RPAREN, - STATE(7699), 1, - sym_gnu_asm_input_operand_list, - [290684] = 4, + STATE(7785), 1, + sym_gnu_asm_clobber_list, + [290284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, - anon_sym_COMMA, - ACTIONS(12328), 1, - anon_sym_RBRACK_RBRACK, - STATE(7712), 1, - aux_sym_attribute_declaration_repeat1, - [290697] = 4, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + ACTIONS(12305), 1, + anon_sym_constexpr, + STATE(219), 1, + sym_condition_clause, + [290297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, - anon_sym_COLON, - ACTIONS(12330), 1, - anon_sym_RPAREN, - STATE(7730), 1, - sym_gnu_asm_clobber_list, - [290710] = 4, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + ACTIONS(12307), 1, + anon_sym_constexpr, + STATE(167), 1, + sym_condition_clause, + [290310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9719), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(12332), 1, + ACTIONS(12311), 1, anon_sym_RPAREN, - STATE(7781), 1, - aux_sym_preproc_argument_list_repeat1, - [290723] = 4, + STATE(7719), 1, + aux_sym_parameter_list_repeat1, + [290323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, - anon_sym_COLON, - ACTIONS(12334), 1, + ACTIONS(12313), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(7736), 1, - sym_gnu_asm_input_operand_list, - [290736] = 3, + anon_sym_COLON, + [290332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12336), 2, + ACTIONS(8246), 1, anon_sym_COMMA, - anon_sym_GT2, - [290747] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 1, + ACTIONS(8248), 1, anon_sym_RBRACE, - ACTIONS(12338), 1, - anon_sym_COMMA, - STATE(7658), 1, + STATE(7783), 1, aux_sym_initializer_list_repeat1, - [290760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8249), 1, - anon_sym_COMMA, - ACTIONS(12340), 1, - anon_sym_RBRACK, - STATE(7779), 1, - aux_sym_subscript_argument_list_repeat1, - [290773] = 3, + [290345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12342), 1, + ACTIONS(12241), 1, anon_sym_catch, - STATE(235), 2, + STATE(234), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [290784] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12222), 1, - anon_sym_COMMA, - ACTIONS(12344), 1, - anon_sym_RPAREN, - STATE(7773), 1, - aux_sym_parameter_list_repeat1, - [290797] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8283), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [290810] = 3, - ACTIONS(9761), 1, - sym_comment, - STATE(7346), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12346), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [290821] = 3, - ACTIONS(9761), 1, - sym_comment, - STATE(7517), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12348), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [290832] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - ACTIONS(12350), 1, - anon_sym_constexpr, - STATE(229), 1, - sym_condition_clause, - [290845] = 3, + [290356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12352), 1, + ACTIONS(12315), 1, anon_sym_catch, - STATE(418), 2, + STATE(2060), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [290856] = 3, + [290367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12354), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12356), 2, + ACTIONS(8485), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [290867] = 3, + ACTIONS(8487), 1, + anon_sym_RBRACE, + STATE(7709), 1, + aux_sym_initializer_list_repeat1, + [290380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12226), 1, - anon_sym_catch, - STATE(2030), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [290878] = 4, + ACTIONS(12317), 1, + anon_sym_COMMA, + ACTIONS(12320), 1, + anon_sym_RBRACK_RBRACK, + STATE(7684), 1, + aux_sym_attribute_declaration_repeat1, + [290393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(12358), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [290891] = 4, + ACTIONS(8489), 1, + anon_sym_RPAREN, + STATE(7733), 1, + aux_sym_argument_list_repeat1, + [290406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(12360), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [290904] = 4, + ACTIONS(8461), 1, + anon_sym_RPAREN, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [290419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, - anon_sym_COLON, - ACTIONS(12362), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(12325), 1, anon_sym_RPAREN, - STATE(8537), 1, - sym_gnu_asm_goto_list, - [290917] = 4, + STATE(7687), 1, + aux_sym_generic_expression_repeat1, + [290432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(12327), 1, anon_sym_COMMA, - ACTIONS(12364), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [290930] = 4, + ACTIONS(12330), 1, + anon_sym_RBRACK, + STATE(7688), 1, + aux_sym_structured_binding_declarator_repeat1, + [290445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10450), 1, + ACTIONS(8290), 1, + anon_sym_COMMA, + ACTIONS(12332), 1, anon_sym_RPAREN, - STATE(7693), 1, - sym_gnu_asm_output_operand_list, - [290943] = 4, + STATE(7687), 1, + aux_sym_generic_expression_repeat1, + [290458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, - anon_sym_COLON, - ACTIONS(12366), 1, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(8475), 1, anon_sym_RPAREN, - STATE(7694), 1, - sym_gnu_asm_input_operand_list, - [290956] = 3, - ACTIONS(9761), 1, - sym_comment, - STATE(7408), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12368), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [290967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12370), 1, - sym_identifier, - STATE(3108), 1, - sym_template_function, - STATE(3123), 1, - sym_template_type, - [290980] = 4, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [290471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, - anon_sym_COLON, - ACTIONS(12372), 1, + ACTIONS(12267), 1, + anon_sym_COMMA, + ACTIONS(12334), 1, anon_sym_RPAREN, - STATE(7739), 1, - sym_gnu_asm_clobber_list, - [290993] = 4, + STATE(7655), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [290484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(12237), 1, anon_sym_COMMA, - ACTIONS(8265), 1, + ACTIONS(12336), 1, + anon_sym_RBRACK_RBRACK, + STATE(7684), 1, + aux_sym_attribute_declaration_repeat1, + [290497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12253), 1, + anon_sym_COLON, + ACTIONS(12338), 1, anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [291006] = 4, + STATE(7731), 1, + sym_gnu_asm_input_operand_list, + [290510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12356), 1, - anon_sym_LBRACE, - ACTIONS(12374), 1, + ACTIONS(4373), 1, + anon_sym_RBRACE, + ACTIONS(12340), 1, anon_sym_COMMA, - STATE(7738), 1, - aux_sym_base_class_clause_repeat1, - [291019] = 4, + STATE(7953), 1, + aux_sym_initializer_list_repeat1, + [290523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, + ACTIONS(12287), 1, anon_sym_COLON, - ACTIONS(12377), 1, + ACTIONS(12342), 1, anon_sym_RPAREN, - STATE(8532), 1, + STATE(8568), 1, sym_gnu_asm_goto_list, - [291032] = 3, - ACTIONS(9761), 1, - sym_comment, - STATE(7316), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12379), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [291043] = 4, + [290536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8185), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(12381), 1, + ACTIONS(12344), 1, anon_sym_RPAREN, - STATE(7883), 1, - aux_sym_generic_expression_repeat1, - [291056] = 3, - ACTIONS(9761), 1, - sym_comment, - STATE(7422), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12383), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [291067] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12385), 1, - anon_sym_GT2, - STATE(7703), 1, - aux_sym_template_argument_list_repeat1, - [291080] = 4, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [290549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11714), 1, - anon_sym_COMMA, - ACTIONS(11757), 1, - anon_sym_LBRACE, - STATE(7865), 1, - aux_sym_base_class_clause_repeat1, - [291093] = 3, + ACTIONS(12346), 1, + sym_identifier, + STATE(3051), 1, + sym_template_function, + STATE(3163), 1, + sym_template_type, + [290562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12389), 1, - anon_sym_RPAREN, - ACTIONS(12387), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [291104] = 4, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + ACTIONS(12348), 1, + anon_sym_constexpr, + STATE(184), 1, + sym_condition_clause, + [290575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10456), 1, - anon_sym_RPAREN, - STATE(7711), 1, - sym_gnu_asm_output_operand_list, - [291117] = 3, - ACTIONS(9761), 1, + ACTIONS(12275), 1, + anon_sym_catch, + STATE(2199), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [290586] = 3, + ACTIONS(9808), 1, sym_comment, - STATE(7468), 1, + STATE(7504), 1, aux_sym_char_literal_repeat1, - ACTIONS(12391), 2, + ACTIONS(12350), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [291128] = 4, + [290597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4393), 1, - anon_sym_RBRACE, - ACTIONS(12393), 1, - anon_sym_COMMA, - STATE(7658), 1, - aux_sym_initializer_list_repeat1, - [291141] = 4, + ACTIONS(12253), 1, + anon_sym_COLON, + ACTIONS(12352), 1, + anon_sym_RPAREN, + STATE(7732), 1, + sym_gnu_asm_input_operand_list, + [290610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5652), 1, + ACTIONS(12354), 3, anon_sym_COMMA, - ACTIONS(12395), 1, - anon_sym_RBRACK, - STATE(7635), 1, - aux_sym_structured_binding_declarator_repeat1, - [291154] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [290619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12204), 1, - anon_sym_COMMA, - ACTIONS(12397), 1, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10567), 1, anon_sym_RPAREN, - STATE(7641), 1, - aux_sym_preproc_params_repeat1, - [291167] = 4, + STATE(7734), 1, + sym_gnu_asm_output_operand_list, + [290632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(8379), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [291180] = 4, + ACTIONS(12356), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [290645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, - anon_sym_COLON, - ACTIONS(12399), 1, + ACTIONS(12358), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(7888), 1, - sym_gnu_asm_clobber_list, - [291193] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12136), 1, anon_sym_COLON, - ACTIONS(12401), 1, - anon_sym_RPAREN, - STATE(7890), 1, - sym_gnu_asm_input_operand_list, - [291206] = 2, + [290654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11076), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [291215] = 4, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(12360), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [290667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12403), 1, + ACTIONS(12362), 1, sym_identifier, - STATE(3108), 1, - sym_template_function, - STATE(3123), 1, + STATE(2188), 1, sym_template_type, - [291228] = 4, + STATE(3791), 1, + sym_template_function, + [290680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12405), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12408), 1, + ACTIONS(12364), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [291241] = 4, + [290693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8361), 1, - anon_sym_COMMA, - ACTIONS(8363), 1, + ACTIONS(4395), 1, anon_sym_RBRACE, - STATE(7717), 1, + ACTIONS(12366), 1, + anon_sym_COMMA, + STATE(7953), 1, aux_sym_initializer_list_repeat1, - [291254] = 4, + [290706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(8290), 1, anon_sym_COMMA, - ACTIONS(8405), 1, + ACTIONS(12368), 1, anon_sym_RPAREN, - STATE(7721), 1, - aux_sym_argument_list_repeat1, - [291267] = 4, + STATE(7687), 1, + aux_sym_generic_expression_repeat1, + [290719] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12281), 1, + anon_sym_COLON, + ACTIONS(12370), 1, + anon_sym_RPAREN, + STATE(7695), 1, + sym_gnu_asm_clobber_list, + [290732] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, + ACTIONS(11714), 1, anon_sym_COMMA, - ACTIONS(12410), 1, - anon_sym_RBRACK_RBRACK, - STATE(7712), 1, - aux_sym_attribute_declaration_repeat1, - [291280] = 2, + ACTIONS(12372), 1, + anon_sym_LBRACE, + STATE(7942), 1, + aux_sym_base_class_clause_repeat1, + [290745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12412), 3, + ACTIONS(12374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12376), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [291289] = 4, + anon_sym_LBRACE, + [290756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12414), 1, + ACTIONS(12378), 1, sym_identifier, - STATE(3123), 1, + STATE(3163), 1, sym_template_type, - STATE(3755), 1, + STATE(6808), 1, sym_template_function, - [291302] = 4, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(12178), 1, - anon_sym_LPAREN2, - ACTIONS(12416), 1, - aux_sym_preproc_include_token2, - STATE(9323), 1, - sym_preproc_argument_list, - [291315] = 2, + [290769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 3, - anon_sym_COMMA, + ACTIONS(12287), 1, + anon_sym_COLON, + ACTIONS(12380), 1, anon_sym_RPAREN, - anon_sym_GT2, - [291324] = 4, + STATE(8573), 1, + sym_gnu_asm_goto_list, + [290782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12382), 1, + anon_sym_catch, + STATE(2212), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [290793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12420), 1, + ACTIONS(8671), 1, + anon_sym_RBRACK, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12423), 1, - anon_sym_GT2, - STATE(7764), 1, - aux_sym_template_parameter_list_repeat1, - [291337] = 3, + STATE(7717), 1, + aux_sym_lambda_capture_specifier_repeat1, + [290806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12425), 1, + ACTIONS(12275), 1, anon_sym_catch, - STATE(1989), 2, + STATE(2254), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [291348] = 4, + [290817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(12427), 1, - anon_sym_RBRACK_RBRACK, - STATE(7790), 1, - aux_sym_attribute_declaration_repeat1, - [291361] = 4, + ACTIONS(12387), 1, + anon_sym_RPAREN, + STATE(7853), 1, + aux_sym_parameter_list_repeat1, + [290830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12429), 1, - sym_identifier, - STATE(2054), 1, - sym_template_type, - STATE(3645), 1, - sym_template_function, - [291374] = 4, + ACTIONS(12241), 1, + anon_sym_catch, + STATE(233), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [290841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8249), 1, + ACTIONS(8388), 1, anon_sym_COMMA, - ACTIONS(8319), 1, + ACTIONS(12389), 1, anon_sym_RBRACK, - STATE(7718), 1, + STATE(7831), 1, aux_sym_subscript_argument_list_repeat1, - [291387] = 4, + [290854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, + ACTIONS(8471), 3, anon_sym_COMMA, - ACTIONS(12431), 1, - anon_sym_RBRACK_RBRACK, - STATE(7759), 1, - aux_sym_attribute_declaration_repeat1, - [291400] = 4, + anon_sym_SEMI, + anon_sym___attribute__, + [290863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8249), 1, + ACTIONS(9810), 1, anon_sym_COMMA, - ACTIONS(8295), 1, - anon_sym_RBRACK, - STATE(7632), 1, - aux_sym_subscript_argument_list_repeat1, - [291413] = 4, + ACTIONS(12391), 1, + anon_sym_RPAREN, + STATE(7830), 1, + aux_sym_preproc_argument_list_repeat1, + [290876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12433), 1, + ACTIONS(12393), 1, anon_sym_GT2, - STATE(7787), 1, + STATE(7740), 1, aux_sym_template_argument_list_repeat1, - [291426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12342), 1, - anon_sym_catch, - STATE(233), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [291437] = 4, + [290889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12435), 1, + ACTIONS(12395), 1, anon_sym_COMMA, - ACTIONS(12438), 1, + ACTIONS(12398), 1, anon_sym_RPAREN, - STATE(7773), 1, - aux_sym_parameter_list_repeat1, - [291450] = 4, + STATE(7725), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [290902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12222), 1, + ACTIONS(12400), 1, anon_sym_COMMA, - ACTIONS(12440), 1, + ACTIONS(12403), 1, anon_sym_RPAREN, - STATE(7720), 1, - aux_sym_parameter_list_repeat1, - [291463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12442), 1, - anon_sym_catch, - STATE(358), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [291474] = 4, + STATE(7726), 1, + aux_sym_throw_specifier_repeat1, + [290915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12444), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(12447), 1, - anon_sym_RBRACK, - STATE(7776), 1, - aux_sym_structured_binding_declarator_repeat1, - [291487] = 4, + ACTIONS(12405), 1, + anon_sym_RPAREN, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [290928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12449), 1, - anon_sym_COMMA, - ACTIONS(12451), 1, + ACTIONS(12253), 1, + anon_sym_COLON, + ACTIONS(12407), 1, anon_sym_RPAREN, - STATE(7906), 1, - aux_sym_throw_specifier_repeat1, - [291500] = 4, + STATE(7711), 1, + sym_gnu_asm_input_operand_list, + [290941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12453), 1, - anon_sym_COMMA, - ACTIONS(12456), 1, - anon_sym_LBRACE, - STATE(7778), 1, - aux_sym_field_initializer_list_repeat1, - [291513] = 4, + ACTIONS(12287), 1, + anon_sym_COLON, + ACTIONS(12409), 1, + anon_sym_RPAREN, + STATE(9341), 1, + sym_gnu_asm_goto_list, + [290954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8578), 1, - anon_sym_RBRACK, - ACTIONS(12458), 1, - anon_sym_COMMA, - STATE(7779), 1, - aux_sym_subscript_argument_list_repeat1, - [291526] = 4, + ACTIONS(12281), 1, + anon_sym_COLON, + ACTIONS(12411), 1, + anon_sym_RPAREN, + STATE(7715), 1, + sym_gnu_asm_clobber_list, + [290967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12461), 1, - sym_identifier, - STATE(3108), 1, - sym_template_function, - STATE(3123), 1, - sym_template_type, - [291539] = 4, + ACTIONS(12281), 1, + anon_sym_COLON, + ACTIONS(12413), 1, + anon_sym_RPAREN, + STATE(7773), 1, + sym_gnu_asm_clobber_list, + [290980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9931), 1, + ACTIONS(12281), 1, + anon_sym_COLON, + ACTIONS(12415), 1, anon_sym_RPAREN, - ACTIONS(12463), 1, + STATE(7742), 1, + sym_gnu_asm_clobber_list, + [290993] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8362), 1, anon_sym_COMMA, - STATE(7781), 1, - aux_sym_preproc_argument_list_repeat1, - [291552] = 4, + ACTIONS(8416), 1, + anon_sym_RPAREN, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [291006] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12466), 1, - sym_identifier, - STATE(3108), 1, - sym_template_function, - STATE(3123), 1, - sym_template_type, - [291565] = 3, + ACTIONS(12253), 1, + anon_sym_COLON, + ACTIONS(12417), 1, + anon_sym_RPAREN, + STATE(7743), 1, + sym_gnu_asm_input_operand_list, + [291019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12132), 1, - anon_sym_catch, - STATE(874), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [291576] = 4, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + ACTIONS(12419), 1, + anon_sym_constexpr, + STATE(210), 1, + sym_condition_clause, + [291032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12468), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(12471), 1, + ACTIONS(8443), 1, anon_sym_RPAREN, - STATE(7784), 1, - aux_sym_preproc_params_repeat1, - [291589] = 4, + STATE(7768), 1, + aux_sym_argument_list_repeat1, + [291045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(12421), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [291054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12473), 1, + ACTIONS(12423), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [291602] = 4, + [291067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12475), 1, + ACTIONS(12425), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [291615] = 4, + [291080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12477), 1, + ACTIONS(12427), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [291628] = 4, + [291093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, + ACTIONS(4185), 1, + anon_sym_RBRACE, + ACTIONS(12429), 1, anon_sym_COMMA, - ACTIONS(12479), 1, - anon_sym_RBRACK_RBRACK, - STATE(7712), 1, - aux_sym_attribute_declaration_repeat1, - [291641] = 3, - ACTIONS(9761), 1, + STATE(7953), 1, + aux_sym_initializer_list_repeat1, + [291106] = 4, + ACTIONS(3), 1, sym_comment, - STATE(7589), 1, + ACTIONS(12287), 1, + anon_sym_COLON, + ACTIONS(12431), 1, + anon_sym_RPAREN, + STATE(8632), 1, + sym_gnu_asm_goto_list, + [291119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12281), 1, + anon_sym_COLON, + ACTIONS(12433), 1, + anon_sym_RPAREN, + STATE(7752), 1, + sym_gnu_asm_clobber_list, + [291132] = 3, + ACTIONS(9808), 1, + sym_comment, + STATE(7452), 1, aux_sym_char_literal_repeat1, - ACTIONS(12481), 2, + ACTIONS(12435), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [291652] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12160), 1, - anon_sym_COMMA, - ACTIONS(12483), 1, - anon_sym_RBRACK_RBRACK, - STATE(7712), 1, - aux_sym_attribute_declaration_repeat1, - [291665] = 4, + [291143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(12437), 3, anon_sym_COMMA, - ACTIONS(8365), 1, anon_sym_RPAREN, - STATE(7833), 1, - aux_sym_argument_list_repeat1, - [291678] = 4, + anon_sym_COLON, + [291152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(11714), 1, + anon_sym_COMMA, + ACTIONS(12439), 1, anon_sym_LBRACE, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - STATE(884), 1, - sym_declaration_list, - [291691] = 4, + STATE(7942), 1, + aux_sym_base_class_clause_repeat1, + [291165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8235), 1, + ACTIONS(12441), 1, anon_sym_RPAREN, - STATE(7889), 1, + STATE(7971), 1, aux_sym_argument_list_repeat1, - [291704] = 4, + [291178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12485), 1, + ACTIONS(12443), 1, anon_sym_GT2, - STATE(7728), 1, + STATE(7652), 1, aux_sym_template_argument_list_repeat1, - [291717] = 4, + [291191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - ACTIONS(12487), 1, - anon_sym_constexpr, - STATE(224), 1, - sym_condition_clause, - [291730] = 4, + ACTIONS(12237), 1, + anon_sym_COMMA, + ACTIONS(12445), 1, + anon_sym_RBRACK_RBRACK, + STATE(7684), 1, + aux_sym_attribute_declaration_repeat1, + [291204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9775), 1, + ACTIONS(9810), 1, anon_sym_COMMA, - ACTIONS(12489), 1, - anon_sym_SEMI, - STATE(7674), 1, - aux_sym__declaration_declarator_repeat1, - [291743] = 4, + ACTIONS(12447), 1, + anon_sym_RPAREN, + STATE(7830), 1, + aux_sym_preproc_argument_list_repeat1, + [291217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12449), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12451), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [291228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(12287), 1, anon_sym_COLON, - ACTIONS(10430), 1, + ACTIONS(12453), 1, anon_sym_RPAREN, - STATE(7733), 1, - sym_gnu_asm_output_operand_list, - [291756] = 4, + STATE(8636), 1, + sym_gnu_asm_goto_list, + [291241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 1, - anon_sym_LBRACE, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - STATE(835), 1, - sym_declaration_list, - [291769] = 4, + ACTIONS(12455), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [291250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8145), 1, + ACTIONS(12457), 3, anon_sym_COMMA, - ACTIONS(8147), 1, - anon_sym_RBRACE, - STATE(7892), 1, - aux_sym_initializer_list_repeat1, - [291782] = 4, + anon_sym_SEMI, + anon_sym___attribute__, + [291259] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8367), 1, - anon_sym_COMMA, - ACTIONS(8369), 1, - anon_sym_RBRACE, - STATE(7834), 1, - aux_sym_initializer_list_repeat1, - [291795] = 4, + ACTIONS(12459), 1, + sym_identifier, + STATE(3051), 1, + sym_template_function, + STATE(3163), 1, + sym_template_type, + [291272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_RBRACK, - ACTIONS(12491), 1, + ACTIONS(8388), 1, anon_sym_COMMA, - STATE(7801), 1, - aux_sym_lambda_capture_specifier_repeat1, - [291808] = 4, + ACTIONS(12461), 1, + anon_sym_RBRACK, + STATE(7831), 1, + aux_sym_subscript_argument_list_repeat1, + [291285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8185), 1, + ACTIONS(8290), 1, anon_sym_COMMA, - ACTIONS(12494), 1, + ACTIONS(12463), 1, anon_sym_RPAREN, - STATE(7883), 1, + STATE(7687), 1, aux_sym_generic_expression_repeat1, - [291821] = 4, + [291298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, - anon_sym_COLON, - ACTIONS(12496), 1, + ACTIONS(12237), 1, + anon_sym_COMMA, + ACTIONS(12465), 1, + anon_sym_RBRACK_RBRACK, + STATE(7692), 1, + aux_sym_attribute_declaration_repeat1, + [291311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12467), 1, + anon_sym_catch, + STATE(428), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [291322] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12309), 1, + anon_sym_COMMA, + ACTIONS(12469), 1, anon_sym_RPAREN, - STATE(8725), 1, - sym_gnu_asm_goto_list, - [291834] = 4, + STATE(7853), 1, + aux_sym_parameter_list_repeat1, + [291335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12148), 1, + ACTIONS(11743), 1, + anon_sym_DASH_GT, + ACTIONS(12471), 1, + anon_sym_SEMI, + STATE(9276), 1, + sym_trailing_return_type, + [291348] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12473), 1, anon_sym_COMMA, - ACTIONS(12498), 1, - anon_sym_LBRACE, - STATE(7615), 1, - aux_sym_field_initializer_list_repeat1, - [291847] = 4, + ACTIONS(12475), 1, + anon_sym_RPAREN, + STATE(7989), 1, + aux_sym_preproc_params_repeat1, + [291361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12477), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [291370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(12500), 1, + ACTIONS(10558), 1, anon_sym_RPAREN, - STATE(7803), 1, - sym_gnu_asm_clobber_list, - [291860] = 4, + STATE(7647), 1, + sym_gnu_asm_output_operand_list, + [291383] = 3, + ACTIONS(9808), 1, + sym_comment, + STATE(7610), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12479), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [291394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8243), 1, + ACTIONS(12237), 1, anon_sym_COMMA, - ACTIONS(8245), 1, - anon_sym_RBRACE, - STATE(7748), 1, - aux_sym_initializer_list_repeat1, - [291873] = 3, + ACTIONS(12481), 1, + anon_sym_RBRACK_RBRACK, + STATE(7897), 1, + aux_sym_attribute_declaration_repeat1, + [291407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12504), 1, - anon_sym_COLON_COLON, - ACTIONS(12502), 2, - anon_sym_SEMI, + ACTIONS(11714), 1, + anon_sym_COMMA, + ACTIONS(12439), 1, anon_sym_LBRACE, - [291884] = 4, + STATE(7712), 1, + aux_sym_base_class_clause_repeat1, + [291420] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, - anon_sym_COLON, - ACTIONS(12506), 1, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(8533), 1, anon_sym_RPAREN, - STATE(8719), 1, - sym_gnu_asm_goto_list, - [291897] = 4, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [291433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, + ACTIONS(7640), 1, + anon_sym_EQ, + ACTIONS(7638), 2, + anon_sym_COMMA, + anon_sym_GT2, + [291444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12281), 1, anon_sym_COLON, - ACTIONS(12508), 1, + ACTIONS(12483), 1, anon_sym_RPAREN, - STATE(7805), 1, - sym_gnu_asm_input_operand_list, - [291910] = 4, + STATE(7729), 1, + sym_gnu_asm_clobber_list, + [291457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, + ACTIONS(12287), 1, anon_sym_COLON, - ACTIONS(12510), 1, + ACTIONS(12485), 1, anon_sym_RPAREN, - STATE(7808), 1, - sym_gnu_asm_clobber_list, - [291923] = 4, + STATE(9274), 1, + sym_gnu_asm_goto_list, + [291470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12489), 1, + anon_sym_RPAREN, + ACTIONS(12487), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [291481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(12287), 1, anon_sym_COLON, - ACTIONS(10444), 1, + ACTIONS(12491), 1, anon_sym_RPAREN, - STATE(7835), 1, - sym_gnu_asm_output_operand_list, - [291936] = 4, + STATE(9174), 1, + sym_gnu_asm_goto_list, + [291494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8290), 1, anon_sym_COMMA, - ACTIONS(12512), 1, - anon_sym_GT2, - STATE(7842), 1, - aux_sym_template_argument_list_repeat1, - [291949] = 4, + ACTIONS(12493), 1, + anon_sym_RPAREN, + STATE(7687), 1, + aux_sym_generic_expression_repeat1, + [291507] = 4, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(12299), 1, + anon_sym_LPAREN2, + ACTIONS(12495), 1, + aux_sym_preproc_include_token2, + STATE(9180), 1, + sym_preproc_argument_list, + [291520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5070), 1, - anon_sym_LBRACE, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - STATE(376), 1, - sym_declaration_list, - [291962] = 3, + ACTIONS(12497), 1, + anon_sym_COMMA, + ACTIONS(12499), 1, + anon_sym_GT2, + STATE(7869), 1, + aux_sym_template_parameter_list_repeat1, + [291533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12425), 1, + ACTIONS(12501), 1, anon_sym_catch, - STATE(1991), 2, + STATE(2033), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [291973] = 4, + [291544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12514), 1, + ACTIONS(12503), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [291986] = 4, + [291557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(8253), 1, - anon_sym_RPAREN, - STATE(7751), 1, - aux_sym_argument_list_repeat1, - [291999] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12516), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [292008] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12160), 1, - anon_sym_COMMA, - ACTIONS(12518), 1, - anon_sym_RBRACK_RBRACK, - STATE(7712), 1, - aux_sym_attribute_declaration_repeat1, - [292021] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12520), 1, + ACTIONS(12505), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [292034] = 4, + [291570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12522), 1, + ACTIONS(12507), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [292047] = 4, + [291583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12222), 1, + ACTIONS(12509), 1, anon_sym_COMMA, - ACTIONS(12524), 1, + ACTIONS(12511), 1, anon_sym_RPAREN, - STATE(7844), 1, - aux_sym_parameter_list_repeat1, - [292060] = 4, + STATE(7726), 1, + aux_sym_throw_specifier_repeat1, + [291596] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10448), 1, + ACTIONS(10533), 1, anon_sym_RPAREN, - STATE(7809), 1, + STATE(7990), 1, sym_gnu_asm_output_operand_list, - [292073] = 4, + [291609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 1, + ACTIONS(4385), 1, anon_sym_RBRACE, - ACTIONS(12526), 1, + ACTIONS(12513), 1, anon_sym_COMMA, - STATE(7658), 1, + STATE(7953), 1, aux_sym_initializer_list_repeat1, - [292086] = 4, + [291622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(12528), 1, + ACTIONS(10539), 1, anon_sym_RPAREN, - STATE(7810), 1, + STATE(7728), 1, + sym_gnu_asm_output_operand_list, + [291635] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12287), 1, + anon_sym_COLON, + ACTIONS(12515), 1, + anon_sym_RPAREN, + STATE(9187), 1, + sym_gnu_asm_goto_list, + [291648] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12237), 1, + anon_sym_COMMA, + ACTIONS(12517), 1, + anon_sym_RBRACK_RBRACK, + STATE(7819), 1, + aux_sym_attribute_declaration_repeat1, + [291661] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11714), 1, + anon_sym_COMMA, + ACTIONS(11716), 1, + anon_sym_LBRACE, + STATE(7942), 1, + aux_sym_base_class_clause_repeat1, + [291674] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11714), 1, + anon_sym_COMMA, + ACTIONS(11716), 1, + anon_sym_LBRACE, + STATE(7746), 1, + aux_sym_base_class_clause_repeat1, + [291687] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12253), 1, + anon_sym_COLON, + ACTIONS(12519), 1, + anon_sym_RPAREN, + STATE(7730), 1, sym_gnu_asm_input_operand_list, - [292099] = 3, + [291700] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12521), 1, + sym_identifier, + STATE(3051), 1, + sym_template_function, + STATE(3163), 1, + sym_template_type, + [291713] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6203), 1, + anon_sym_SEMI, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(2039), 1, + sym_template_argument_list, + [291726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12188), 1, + ACTIONS(12523), 1, anon_sym_catch, - STATE(267), 2, + STATE(258), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [292110] = 4, + [291737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12530), 1, + ACTIONS(12525), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12527), 2, anon_sym_COMMA, - ACTIONS(12533), 1, - anon_sym_RPAREN, - STATE(7826), 1, - aux_sym_requires_parameter_list_repeat1, - [292123] = 4, + anon_sym_LBRACE, + [291748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, + ACTIONS(2859), 1, anon_sym_while, - ACTIONS(12535), 1, + ACTIONS(12529), 1, anon_sym_else, - STATE(751), 1, + STATE(662), 1, sym_else_clause, - [292136] = 4, + [291761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12537), 1, - sym_identifier, - STATE(2736), 1, - sym_template_function, - STATE(3123), 1, - sym_template_type, - [292149] = 4, + ACTIONS(8310), 1, + anon_sym_COMMA, + ACTIONS(12531), 1, + anon_sym_RBRACK, + STATE(7717), 1, + aux_sym_lambda_capture_specifier_repeat1, + [291774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4379), 1, + ACTIONS(8240), 1, anon_sym_RBRACE, - ACTIONS(12539), 1, + ACTIONS(8433), 1, anon_sym_COMMA, - STATE(7658), 1, + STATE(7741), 1, aux_sym_initializer_list_repeat1, - [292162] = 4, + [291787] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12253), 1, + anon_sym_COLON, + ACTIONS(12533), 1, + anon_sym_RPAREN, + STATE(7909), 1, + sym_gnu_asm_input_operand_list, + [291800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(8428), 1, + ACTIONS(12535), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [291813] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8388), 1, + anon_sym_COMMA, + ACTIONS(8519), 1, + anon_sym_RBRACK, + STATE(8004), 1, + aux_sym_subscript_argument_list_repeat1, + [291826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12253), 1, + anon_sym_COLON, + ACTIONS(12537), 1, anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [292175] = 4, + STATE(7912), 1, + sym_gnu_asm_input_operand_list, + [291839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10428), 1, + ACTIONS(10573), 1, anon_sym_RPAREN, - STATE(7913), 1, + STATE(7998), 1, sym_gnu_asm_output_operand_list, - [292188] = 4, + [291852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12541), 1, + ACTIONS(12539), 1, sym_identifier, - STATE(2736), 1, + STATE(3051), 1, sym_template_function, - STATE(3123), 1, + STATE(3163), 1, sym_template_type, - [292201] = 4, + [291865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(8418), 1, + ACTIONS(12541), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [291878] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(8386), 1, anon_sym_RPAREN, - STATE(7670), 1, + STATE(7641), 1, aux_sym_argument_list_repeat1, - [292214] = 4, + [291891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4391), 1, - anon_sym_RBRACE, - ACTIONS(12543), 1, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10525), 1, + anon_sym_RPAREN, + STATE(7921), 1, + sym_gnu_asm_output_operand_list, + [291904] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8252), 1, anon_sym_COMMA, - STATE(7658), 1, - aux_sym_initializer_list_repeat1, - [292227] = 4, + ACTIONS(12543), 1, + anon_sym_GT2, + STATE(7822), 1, + aux_sym_template_argument_list_repeat1, + [291917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, - anon_sym_COLON, + ACTIONS(8252), 1, + anon_sym_COMMA, ACTIONS(12545), 1, - anon_sym_RPAREN, - STATE(7850), 1, - sym_gnu_asm_input_operand_list, - [292240] = 4, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [291930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, ACTIONS(12547), 1, anon_sym_GT2, - STATE(7928), 1, + STATE(8013), 1, aux_sym_template_argument_list_repeat1, - [292253] = 4, + [291943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10462), 1, + ACTIONS(10562), 1, anon_sym_RPAREN, - STATE(7855), 1, + STATE(7693), 1, sym_gnu_asm_output_operand_list, - [292266] = 4, + [291956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, + ACTIONS(12253), 1, + anon_sym_COLON, ACTIONS(12549), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [292279] = 3, + anon_sym_RPAREN, + STATE(7675), 1, + sym_gnu_asm_input_operand_list, + [291969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12425), 1, - anon_sym_catch, - STATE(1997), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [292290] = 4, + ACTIONS(4393), 1, + anon_sym_RBRACE, + ACTIONS(12551), 1, + anon_sym_COMMA, + STATE(7953), 1, + aux_sym_initializer_list_repeat1, + [291982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12551), 1, + ACTIONS(8290), 1, anon_sym_COMMA, ACTIONS(12553), 1, - anon_sym_GT2, - STATE(7881), 1, - aux_sym_template_parameter_list_repeat1, - [292303] = 4, + anon_sym_RPAREN, + STATE(7687), 1, + aux_sym_generic_expression_repeat1, + [291995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(12237), 1, anon_sym_COMMA, ACTIONS(12555), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [292316] = 4, + anon_sym_RBRACK_RBRACK, + STATE(7684), 1, + aux_sym_attribute_declaration_repeat1, + [292008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, + ACTIONS(12287), 1, + anon_sym_COLON, ACTIONS(12557), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [292329] = 4, + anon_sym_RPAREN, + STATE(9102), 1, + sym_gnu_asm_goto_list, + [292021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, ACTIONS(12559), 1, anon_sym_GT2, - STATE(7854), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [292342] = 4, + [292034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12222), 1, + ACTIONS(8252), 1, anon_sym_COMMA, ACTIONS(12561), 1, - anon_sym_RPAREN, - STATE(7773), 1, - aux_sym_parameter_list_repeat1, - [292355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12188), 1, - anon_sym_catch, - STATE(315), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [292366] = 4, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [292047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, ACTIONS(12563), 1, anon_sym_GT2, - STATE(7815), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [292379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10458), 1, - anon_sym_RPAREN, - STATE(7824), 1, - sym_gnu_asm_output_operand_list, - [292392] = 4, + [292060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12551), 1, - anon_sym_COMMA, ACTIONS(12565), 1, - anon_sym_GT2, - STATE(7764), 1, - aux_sym_template_parameter_list_repeat1, - [292405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8233), 1, anon_sym_COMMA, ACTIONS(12567), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [292418] = 4, + anon_sym_LBRACE, + STATE(8007), 1, + aux_sym_field_initializer_list_repeat1, + [292073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, - anon_sym_COLON, + ACTIONS(12237), 1, + anon_sym_COMMA, ACTIONS(12569), 1, - anon_sym_RPAREN, - STATE(7860), 1, - sym_gnu_asm_clobber_list, - [292431] = 4, + anon_sym_RBRACK_RBRACK, + STATE(7684), 1, + aux_sym_attribute_declaration_repeat1, + [292086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12222), 1, + ACTIONS(8252), 1, anon_sym_COMMA, ACTIONS(12571), 1, - anon_sym_RPAREN, - STATE(7938), 1, - aux_sym_parameter_list_repeat1, - [292444] = 4, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [292099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, ACTIONS(12573), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [292457] = 4, + [292112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, ACTIONS(12575), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [292470] = 4, + [292125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12577), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [292483] = 4, + ACTIONS(11150), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [292134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, - anon_sym_COLON, - ACTIONS(12579), 1, + ACTIONS(12577), 1, + anon_sym_COMMA, + ACTIONS(12580), 1, anon_sym_RPAREN, - STATE(7862), 1, - sym_gnu_asm_input_operand_list, - [292496] = 2, + STATE(7824), 1, + aux_sym_preproc_params_repeat1, + [292147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12581), 3, + ACTIONS(8362), 1, anon_sym_COMMA, + ACTIONS(8418), 1, anon_sym_RPAREN, - anon_sym_COLON, - [292505] = 3, + STATE(7870), 1, + aux_sym_argument_list_repeat1, + [292160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12583), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12585), 2, + ACTIONS(8252), 1, anon_sym_COMMA, + ACTIONS(12582), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [292173] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5100), 1, anon_sym_LBRACE, - [292516] = 3, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + STATE(536), 1, + sym_declaration_list, + [292186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12352), 1, - anon_sym_catch, - STATE(439), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [292527] = 3, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_RPAREN, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [292199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12342), 1, - anon_sym_catch, - STATE(232), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [292538] = 4, + ACTIONS(8358), 1, + anon_sym_COMMA, + ACTIONS(8360), 1, + anon_sym_RBRACE, + STATE(7872), 1, + aux_sym_initializer_list_repeat1, + [292212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, - anon_sym_COLON, - ACTIONS(12587), 1, + ACTIONS(10030), 1, anon_sym_RPAREN, - STATE(8422), 1, - sym_gnu_asm_goto_list, - [292551] = 4, + ACTIONS(12584), 1, + anon_sym_COMMA, + STATE(7830), 1, + aux_sym_preproc_argument_list_repeat1, + [292225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8249), 1, - anon_sym_COMMA, - ACTIONS(8315), 1, + ACTIONS(8707), 1, anon_sym_RBRACK, - STATE(7941), 1, + ACTIONS(12587), 1, + anon_sym_COMMA, + STATE(7831), 1, aux_sym_subscript_argument_list_repeat1, - [292564] = 4, + [292238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, + ACTIONS(12281), 1, anon_sym_COLON, - ACTIONS(12589), 1, + ACTIONS(12590), 1, anon_sym_RPAREN, - STATE(7866), 1, + STATE(7814), 1, sym_gnu_asm_clobber_list, - [292577] = 4, + [292251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8399), 1, - anon_sym_COMMA, - ACTIONS(8401), 1, - anon_sym_RBRACE, - STATE(7829), 1, - aux_sym_initializer_list_repeat1, - [292590] = 4, + ACTIONS(12287), 1, + anon_sym_COLON, + ACTIONS(12592), 1, + anon_sym_RPAREN, + STATE(9079), 1, + sym_gnu_asm_goto_list, + [292264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11714), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(11769), 1, - anon_sym_LBRACE, - STATE(7978), 1, - aux_sym_base_class_clause_repeat1, - [292603] = 4, + ACTIONS(12594), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [292277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11714), 1, - anon_sym_COMMA, - ACTIONS(11769), 1, - anon_sym_LBRACE, - STATE(7738), 1, - aux_sym_base_class_clause_repeat1, - [292616] = 4, + ACTIONS(12253), 1, + anon_sym_COLON, + ACTIONS(12596), 1, + anon_sym_RPAREN, + STATE(7832), 1, + sym_gnu_asm_input_operand_list, + [292290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, + ACTIONS(12281), 1, anon_sym_COLON, - ACTIONS(12591), 1, + ACTIONS(12598), 1, anon_sym_RPAREN, - STATE(8421), 1, - sym_gnu_asm_goto_list, - [292629] = 4, + STATE(7833), 1, + sym_gnu_asm_clobber_list, + [292303] = 3, + ACTIONS(9808), 1, + sym_comment, + STATE(7470), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12600), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [292314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(12602), 1, + sym_identifier, + STATE(3163), 1, + sym_template_type, + STATE(3494), 1, + sym_template_function, + [292327] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8442), 1, + ACTIONS(12604), 1, anon_sym_RPAREN, - STATE(7830), 1, + STATE(7971), 1, aux_sym_argument_list_repeat1, - [292642] = 4, + [292340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8185), 1, - anon_sym_COMMA, - ACTIONS(12593), 1, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10543), 1, anon_sym_RPAREN, - STATE(7883), 1, - aux_sym_generic_expression_repeat1, - [292655] = 4, + STATE(7933), 1, + sym_gnu_asm_output_operand_list, + [292353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12595), 1, - anon_sym_RBRACK_RBRACK, - STATE(7712), 1, - aux_sym_attribute_declaration_repeat1, - [292668] = 4, + ACTIONS(12606), 1, + anon_sym_GT2, + STATE(7887), 1, + aux_sym_template_argument_list_repeat1, + [292366] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(12608), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [292379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12610), 1, + sym_identifier, + STATE(3163), 1, + sym_template_type, + STATE(3791), 1, + sym_template_function, + [292392] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12612), 1, + sym_identifier, + STATE(3163), 1, + sym_template_type, + STATE(3593), 1, + sym_template_function, + [292405] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8388), 1, + anon_sym_COMMA, + ACTIONS(8463), 1, + anon_sym_RBRACK, + STATE(7756), 1, + aux_sym_subscript_argument_list_repeat1, + [292418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12467), 1, + anon_sym_catch, + STATE(495), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [292429] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12614), 1, + anon_sym_COMMA, + ACTIONS(12617), 1, + anon_sym_LBRACE, + STATE(7847), 1, + aux_sym_field_initializer_list_repeat1, + [292442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12523), 1, + anon_sym_catch, + STATE(324), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [292453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12222), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(12597), 1, + ACTIONS(12619), 1, anon_sym_RPAREN, - STATE(7651), 1, + STATE(7853), 1, aux_sym_parameter_list_repeat1, - [292681] = 2, + [292466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12599), 3, + ACTIONS(12309), 1, anon_sym_COMMA, + ACTIONS(12621), 1, anon_sym_RPAREN, - anon_sym_GT2, - [292690] = 4, + STATE(7893), 1, + aux_sym_parameter_list_repeat1, + [292479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12601), 1, - sym_identifier, - STATE(2946), 1, - sym_template_type, - STATE(4073), 1, - sym_template_function, - [292703] = 2, + ACTIONS(5098), 1, + anon_sym_LBRACE, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + STATE(992), 1, + sym_declaration_list, + [292492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12599), 3, + ACTIONS(12509), 1, anon_sym_COMMA, + ACTIONS(12623), 1, anon_sym_RPAREN, - anon_sym_GT2, - [292712] = 2, + STATE(7781), 1, + aux_sym_throw_specifier_repeat1, + [292505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12603), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [292721] = 4, + ACTIONS(12625), 1, + anon_sym_COMMA, + ACTIONS(12628), 1, + anon_sym_RPAREN, + STATE(7853), 1, + aux_sym_parameter_list_repeat1, + [292518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12605), 1, - sym_identifier, - STATE(3123), 1, - sym_template_type, - STATE(6797), 1, - sym_template_function, - [292734] = 4, + ACTIONS(12382), 1, + anon_sym_catch, + STATE(2277), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [292529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9775), 1, + ACTIONS(8388), 1, anon_sym_COMMA, - ACTIONS(12489), 1, - anon_sym_SEMI, - STATE(7674), 1, - aux_sym__declaration_declarator_repeat1, - [292747] = 4, + ACTIONS(8457), 1, + anon_sym_RBRACK, + STATE(7895), 1, + aux_sym_subscript_argument_list_repeat1, + [292542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(12607), 1, - anon_sym_GT2, - STATE(7880), 1, - aux_sym_template_argument_list_repeat1, - [292760] = 4, + ACTIONS(12630), 1, + anon_sym_RPAREN, + STATE(7760), 1, + aux_sym_parameter_list_repeat1, + [292555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(12497), 1, anon_sym_COMMA, - ACTIONS(12609), 1, + ACTIONS(12632), 1, anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [292773] = 4, + STATE(7776), 1, + aux_sym_template_parameter_list_repeat1, + [292568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12611), 1, + ACTIONS(12634), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7778), 1, aux_sym_template_argument_list_repeat1, - [292786] = 4, + [292581] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10519), 1, + anon_sym_RPAREN, + STATE(7810), 1, + sym_gnu_asm_output_operand_list, + [292594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12613), 1, + ACTIONS(12636), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [292799] = 4, + [292607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12551), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12615), 1, + ACTIONS(12638), 1, anon_sym_GT2, - STATE(7764), 1, - aux_sym_template_parameter_list_repeat1, - [292812] = 3, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [292620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7592), 1, - anon_sym_EQ, - ACTIONS(7590), 2, + ACTIONS(12640), 1, anon_sym_COMMA, - anon_sym_GT2, - [292823] = 4, + ACTIONS(12643), 1, + anon_sym_RPAREN, + STATE(7862), 1, + aux_sym_requires_parameter_list_repeat1, + [292633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12617), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12620), 1, - anon_sym_RPAREN, - STATE(7883), 1, - aux_sym_generic_expression_repeat1, - [292836] = 4, + ACTIONS(12645), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [292646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10464), 1, - anon_sym_RPAREN, - STATE(7977), 1, - sym_gnu_asm_output_operand_list, - [292849] = 3, + ACTIONS(12647), 1, + sym_identifier, + STATE(2756), 1, + sym_template_function, + STATE(3163), 1, + sym_template_type, + [292659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12622), 1, + ACTIONS(12649), 1, anon_sym_catch, - STATE(1078), 2, + STATE(1077), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [292860] = 4, + [292670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9775), 1, - anon_sym_COMMA, - ACTIONS(12624), 1, - anon_sym_SEMI, - STATE(7687), 1, - aux_sym__declaration_declarator_repeat1, - [292873] = 4, + ACTIONS(12315), 1, + anon_sym_catch, + STATE(2072), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [292681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, - anon_sym_COMMA, - ACTIONS(12626), 1, - anon_sym_RBRACK_RBRACK, - STATE(7818), 1, - aux_sym_attribute_declaration_repeat1, - [292886] = 4, + ACTIONS(10511), 1, + anon_sym_RPAREN, + ACTIONS(10513), 1, + anon_sym_COLON, + STATE(7789), 1, + sym_gnu_asm_output_operand_list, + [292694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(12628), 1, + ACTIONS(10571), 1, anon_sym_RPAREN, - STATE(9249), 1, - sym_gnu_asm_goto_list, - [292899] = 4, + STATE(7835), 1, + sym_gnu_asm_output_operand_list, + [292707] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12651), 1, + anon_sym_COMMA, + ACTIONS(12654), 1, + anon_sym_GT2, + STATE(7869), 1, + aux_sym_template_parameter_list_repeat1, + [292720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(8393), 1, + ACTIONS(8535), 1, anon_sym_RPAREN, - STATE(7670), 1, + STATE(7971), 1, aux_sym_argument_list_repeat1, - [292912] = 4, + [292733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, + ACTIONS(12253), 1, anon_sym_COLON, - ACTIONS(12630), 1, + ACTIONS(12656), 1, anon_sym_RPAREN, - STATE(7990), 1, - sym_gnu_asm_clobber_list, - [292925] = 3, - ACTIONS(9761), 1, - sym_comment, - STATE(7437), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12632), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [292936] = 4, + STATE(7836), 1, + sym_gnu_asm_input_operand_list, + [292746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4373), 1, + ACTIONS(4387), 1, anon_sym_RBRACE, - ACTIONS(12634), 1, + ACTIONS(12658), 1, anon_sym_COMMA, - STATE(7658), 1, + STATE(7953), 1, aux_sym_initializer_list_repeat1, - [292949] = 2, + [292759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12636), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [292958] = 2, + ACTIONS(12660), 1, + anon_sym_catch, + STATE(949), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [292770] = 3, + ACTIONS(9808), 1, + sym_comment, + STATE(7395), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12662), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [292781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12638), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [292967] = 4, + ACTIONS(2853), 1, + anon_sym_while, + ACTIONS(12529), 1, + anon_sym_else, + STATE(606), 1, + sym_else_clause, + [292794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12640), 1, + ACTIONS(12664), 3, anon_sym_COMMA, - ACTIONS(12643), 1, anon_sym_RPAREN, - STATE(7895), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [292980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12645), 1, - sym_identifier, - STATE(3108), 1, - sym_template_function, - STATE(3123), 1, - sym_template_type, - [292993] = 3, + anon_sym_GT2, + [292803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12649), 1, + ACTIONS(12666), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(12647), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [293004] = 4, + anon_sym_GT2, + [292812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, + ACTIONS(12237), 1, anon_sym_COMMA, - ACTIONS(12651), 1, + ACTIONS(12668), 1, anon_sym_RBRACK_RBRACK, - STATE(7869), 1, + STATE(7653), 1, aux_sym_attribute_declaration_repeat1, - [293017] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12653), 1, - anon_sym_COMMA, - ACTIONS(12655), 1, - anon_sym_RPAREN, - STATE(7895), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [293030] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11662), 1, - anon_sym_DASH_GT, - ACTIONS(12657), 1, - anon_sym_SEMI, - STATE(9254), 1, - sym_trailing_return_type, - [293043] = 4, + [292825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12659), 1, + ACTIONS(12670), 1, anon_sym_GT2, - STATE(7904), 1, + STATE(7890), 1, aux_sym_template_argument_list_repeat1, - [293056] = 4, + [292838] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12661), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293069] = 4, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10531), 1, + anon_sym_RPAREN, + STATE(7925), 1, + sym_gnu_asm_output_operand_list, + [292851] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(12672), 1, anon_sym_COMMA, - ACTIONS(12663), 1, + ACTIONS(12675), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [293082] = 4, + [292864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12665), 1, + ACTIONS(12677), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [293095] = 4, + [292877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - ACTIONS(12667), 1, - anon_sym_constexpr, - STATE(171), 1, - sym_condition_clause, - [293108] = 4, + ACTIONS(12249), 1, + anon_sym_catch, + STATE(444), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [292888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12449), 1, + ACTIONS(12497), 1, anon_sym_COMMA, - ACTIONS(12669), 1, - anon_sym_RPAREN, - STATE(7988), 1, - aux_sym_throw_specifier_repeat1, - [293121] = 2, + ACTIONS(12679), 1, + anon_sym_GT2, + STATE(8038), 1, + aux_sym_template_parameter_list_repeat1, + [292901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 3, + ACTIONS(11838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12681), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [293130] = 4, + anon_sym_GT2, + [292912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12673), 1, - anon_sym_RBRACK_RBRACK, - STATE(7967), 1, - aux_sym_attribute_declaration_repeat1, - [293143] = 4, + ACTIONS(12683), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [292925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12675), 1, + ACTIONS(12685), 1, anon_sym_GT2, - STATE(7952), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [293156] = 4, + [292938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12677), 1, - anon_sym_RPAREN, - STATE(7644), 1, - aux_sym_requires_parameter_list_repeat1, - [293169] = 4, + ACTIONS(12687), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [292951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - anon_sym_while, - ACTIONS(12535), 1, - anon_sym_else, - STATE(623), 1, - sym_else_clause, - [293182] = 3, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(12689), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [292964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12132), 1, - anon_sym_catch, - STATE(355), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [293193] = 4, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(12691), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [292977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, + ACTIONS(12253), 1, anon_sym_COLON, - ACTIONS(12679), 1, + ACTIONS(12693), 1, anon_sym_RPAREN, - STATE(7973), 1, + STATE(7770), 1, sym_gnu_asm_input_operand_list, - [293206] = 4, + [292990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(12281), 1, anon_sym_COLON, - ACTIONS(10460), 1, + ACTIONS(12695), 1, anon_sym_RPAREN, - STATE(7975), 1, - sym_gnu_asm_output_operand_list, - [293219] = 2, + STATE(7771), 1, + sym_gnu_asm_clobber_list, + [293003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12681), 3, + ACTIONS(12309), 1, anon_sym_COMMA, + ACTIONS(12697), 1, anon_sym_RPAREN, - anon_sym_COLON, - [293228] = 4, + STATE(7853), 1, + aux_sym_parameter_list_repeat1, + [293016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12653), 1, + ACTIONS(12382), 1, + anon_sym_catch, + STATE(2244), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [293027] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8388), 1, anon_sym_COMMA, - ACTIONS(12683), 1, + ACTIONS(12699), 1, + anon_sym_RBRACK, + STATE(7831), 1, + aux_sym_subscript_argument_list_repeat1, + [293040] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(12701), 1, anon_sym_RPAREN, - STATE(7899), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [293241] = 4, - ACTIONS(9761), 1, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [293053] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12178), 1, - anon_sym_LPAREN2, - ACTIONS(12685), 1, - aux_sym_preproc_include_token2, - STATE(9323), 1, - sym_preproc_argument_list, - [293254] = 4, + ACTIONS(12237), 1, + anon_sym_COMMA, + ACTIONS(12703), 1, + anon_sym_RBRACK_RBRACK, + STATE(7684), 1, + aux_sym_attribute_declaration_repeat1, + [293066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12687), 1, - sym_identifier, - STATE(3123), 1, - sym_template_type, - STATE(3755), 1, - sym_template_function, - [293267] = 3, + ACTIONS(8420), 1, + anon_sym_COMMA, + ACTIONS(8422), 1, + anon_sym_RBRACE, + STATE(7811), 1, + aux_sym_initializer_list_repeat1, + [293079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12265), 1, + ACTIONS(12315), 1, anon_sym_catch, - STATE(2196), 2, + STATE(2067), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [293278] = 3, - ACTIONS(9761), 1, + [293090] = 4, + ACTIONS(3), 1, sym_comment, - STATE(7322), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12689), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [293289] = 2, + ACTIONS(5106), 1, + anon_sym_LBRACE, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + STATE(829), 1, + sym_declaration_list, + [293103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12691), 3, + ACTIONS(4381), 1, + anon_sym_RBRACE, + ACTIONS(12705), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [293298] = 4, + STATE(7953), 1, + aux_sym_initializer_list_repeat1, + [293116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12693), 1, + ACTIONS(12707), 1, anon_sym_GT2, - STATE(7925), 1, + STATE(7798), 1, aux_sym_template_argument_list_repeat1, - [293311] = 4, + [293129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(12695), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293324] = 4, + ACTIONS(8400), 1, + anon_sym_RPAREN, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [293142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(12697), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293337] = 4, + ACTIONS(12709), 1, + anon_sym_RPAREN, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [293155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(12699), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293350] = 4, + ACTIONS(12711), 1, + anon_sym_RPAREN, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [293168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(12701), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293363] = 2, + ACTIONS(8437), 1, + anon_sym_RPAREN, + STATE(7828), 1, + aux_sym_argument_list_repeat1, + [293181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12703), 3, + ACTIONS(12237), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(12713), 1, + anon_sym_RBRACK_RBRACK, + STATE(7684), 1, + aux_sym_attribute_declaration_repeat1, + [293194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12715), 1, + sym_identifier, + STATE(3028), 1, + sym_template_type, + STATE(4076), 1, + sym_template_function, + [293207] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12281), 1, anon_sym_COLON, - [293372] = 4, + ACTIONS(12717), 1, + anon_sym_RPAREN, + STATE(7962), 1, + sym_gnu_asm_clobber_list, + [293220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(4371), 1, + anon_sym_RBRACE, + ACTIONS(12719), 1, anon_sym_COMMA, - ACTIONS(12705), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293385] = 4, + STATE(7953), 1, + aux_sym_initializer_list_repeat1, + [293233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8185), 1, - anon_sym_COMMA, - ACTIONS(12707), 1, + ACTIONS(12501), 1, + anon_sym_catch, + STATE(2038), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [293244] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12281), 1, + anon_sym_COLON, + ACTIONS(12721), 1, anon_sym_RPAREN, - STATE(7883), 1, - aux_sym_generic_expression_repeat1, - [293398] = 3, + STATE(7929), 1, + sym_gnu_asm_clobber_list, + [293257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12709), 1, - sym_identifier, - ACTIONS(12711), 2, + ACTIONS(8252), 1, anon_sym_COMMA, + ACTIONS(12723), 1, anon_sym_GT2, - [293409] = 4, + STATE(7916), 1, + aux_sym_template_argument_list_repeat1, + [293270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12551), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12713), 1, + ACTIONS(12725), 1, anon_sym_GT2, - STATE(7848), 1, - aux_sym_template_parameter_list_repeat1, - [293422] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - ACTIONS(12715), 1, - anon_sym_constexpr, - STATE(194), 1, - sym_condition_clause, - [293435] = 2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [293283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12717), 3, + ACTIONS(8252), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [293444] = 2, + ACTIONS(12727), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [293296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12719), 3, + ACTIONS(8252), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [293453] = 4, + ACTIONS(12729), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [293309] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(11714), 1, anon_sym_COMMA, - ACTIONS(12721), 1, + ACTIONS(11828), 1, anon_sym_LBRACE, - STATE(7738), 1, + STATE(7948), 1, aux_sym_base_class_clause_repeat1, - [293466] = 4, + [293322] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(11714), 1, anon_sym_COMMA, - ACTIONS(12024), 1, + ACTIONS(11828), 1, anon_sym_LBRACE, - STATE(7637), 1, + STATE(7942), 1, aux_sym_base_class_clause_repeat1, - [293479] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8185), 1, - anon_sym_COMMA, - ACTIONS(12723), 1, - anon_sym_RPAREN, - STATE(7883), 1, - aux_sym_generic_expression_repeat1, - [293492] = 4, + [293335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12222), 1, - anon_sym_COMMA, - ACTIONS(12725), 1, + ACTIONS(12281), 1, + anon_sym_COLON, + ACTIONS(12731), 1, anon_sym_RPAREN, - STATE(7773), 1, - aux_sym_parameter_list_repeat1, - [293505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12727), 1, - sym_identifier, - STATE(3108), 1, - sym_template_function, - STATE(3123), 1, - sym_template_type, - [293518] = 3, + STATE(7936), 1, + sym_gnu_asm_clobber_list, + [293348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12352), 1, + ACTIONS(12660), 1, anon_sym_catch, - STATE(477), 2, + STATE(350), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [293529] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8249), 1, - anon_sym_COMMA, - ACTIONS(12729), 1, - anon_sym_RBRACK, - STATE(7779), 1, - aux_sym_subscript_argument_list_repeat1, - [293542] = 4, + [293359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, + ACTIONS(12253), 1, anon_sym_COLON, - ACTIONS(12731), 1, + ACTIONS(12733), 1, anon_sym_RPAREN, - STATE(8591), 1, - sym_gnu_asm_goto_list, - [293555] = 4, - ACTIONS(3), 1, + STATE(7930), 1, + sym_gnu_asm_input_operand_list, + [293372] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12733), 1, - anon_sym_GT2, - STATE(7946), 1, - aux_sym_template_argument_list_repeat1, - [293568] = 4, + STATE(7560), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12735), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [293383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12735), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293581] = 4, + ACTIONS(12523), 1, + anon_sym_catch, + STATE(337), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [293394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(12237), 1, anon_sym_COMMA, ACTIONS(12737), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293594] = 4, + anon_sym_RBRACK_RBRACK, + STATE(7813), 1, + aux_sym_attribute_declaration_repeat1, + [293407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, + ACTIONS(12253), 1, + anon_sym_COLON, ACTIONS(12739), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293607] = 3, + anon_sym_RPAREN, + STATE(7941), 1, + sym_gnu_asm_input_operand_list, + [293420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12741), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12743), 2, + ACTIONS(12743), 1, + anon_sym_RPAREN, + ACTIONS(12741), 2, anon_sym_COMMA, - anon_sym_LBRACE, - [293618] = 4, + anon_sym_SEMI, + [293431] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(12745), 1, sym_identifier, - STATE(3108), 1, + STATE(3051), 1, sym_template_function, - STATE(3123), 1, + STATE(3163), 1, sym_template_type, - [293631] = 4, + [293444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9719), 1, + ACTIONS(8362), 1, anon_sym_COMMA, + ACTIONS(8502), 1, + anon_sym_RPAREN, + STATE(7686), 1, + aux_sym_argument_list_repeat1, + [293457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12287), 1, + anon_sym_COLON, ACTIONS(12747), 1, anon_sym_RPAREN, - STATE(7781), 1, - aux_sym_preproc_argument_list_repeat1, - [293644] = 4, + STATE(8973), 1, + sym_gnu_asm_goto_list, + [293470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, + ACTIONS(12281), 1, anon_sym_COLON, ACTIONS(12749), 1, anon_sym_RPAREN, - STATE(7942), 1, + STATE(7978), 1, sym_gnu_asm_clobber_list, - [293657] = 4, + [293483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, - anon_sym_COLON, + ACTIONS(12309), 1, + anon_sym_COMMA, ACTIONS(12751), 1, anon_sym_RPAREN, - STATE(8586), 1, - sym_gnu_asm_goto_list, - [293670] = 4, + STATE(7849), 1, + aux_sym_parameter_list_repeat1, + [293496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, ACTIONS(12753), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293683] = 4, + sym_identifier, + STATE(3051), 1, + sym_template_function, + STATE(3163), 1, + sym_template_type, + [293509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, + ACTIONS(12253), 1, anon_sym_COLON, ACTIONS(12755), 1, anon_sym_RPAREN, - STATE(7950), 1, + STATE(7919), 1, sym_gnu_asm_input_operand_list, - [293696] = 4, - ACTIONS(3), 1, + [293522] = 4, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12156), 1, - anon_sym_COLON, + ACTIONS(12299), 1, + anon_sym_LPAREN2, ACTIONS(12757), 1, - anon_sym_RPAREN, - STATE(7951), 1, - sym_gnu_asm_clobber_list, - [293709] = 4, + aux_sym_preproc_include_token2, + STATE(9180), 1, + sym_preproc_argument_list, + [293535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, ACTIONS(12759), 1, - anon_sym_constexpr, - STATE(210), 1, - sym_condition_clause, - [293722] = 4, + sym_identifier, + STATE(2188), 1, + sym_template_type, + STATE(3593), 1, + sym_template_function, + [293548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, + ACTIONS(12287), 1, + anon_sym_COLON, ACTIONS(12761), 1, anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [293735] = 4, + STATE(8826), 1, + sym_gnu_asm_goto_list, + [293561] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, ACTIONS(12763), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7940), 1, aux_sym_template_argument_list_repeat1, - [293748] = 3, + [293574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12442), 1, - anon_sym_catch, - STATE(469), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [293759] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8233), 1, + ACTIONS(8252), 1, anon_sym_COMMA, ACTIONS(12765), 1, - anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [293772] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12767), 1, - sym_identifier, - STATE(3123), 1, - sym_template_type, - STATE(4073), 1, - sym_template_function, - [293785] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12769), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [293798] = 3, + [293587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12771), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12773), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [293809] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12775), 1, + ACTIONS(12767), 1, anon_sym_GT2, - STATE(7966), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [293822] = 4, + [293600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12777), 1, + ACTIONS(12769), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [293835] = 4, + [293613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12779), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293848] = 4, + ACTIONS(12281), 1, + anon_sym_COLON, + ACTIONS(12771), 1, + anon_sym_RPAREN, + STATE(7957), 1, + sym_gnu_asm_clobber_list, + [293626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(12773), 1, anon_sym_COMMA, - ACTIONS(12781), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293861] = 4, + ACTIONS(12776), 1, + anon_sym_LBRACE, + STATE(7942), 1, + aux_sym_base_class_clause_repeat1, + [293639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12160), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - ACTIONS(12783), 1, - anon_sym_RBRACK_RBRACK, - STATE(7712), 1, - aux_sym_attribute_declaration_repeat1, - [293874] = 4, + ACTIONS(8509), 1, + anon_sym_RPAREN, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [293652] = 3, + ACTIONS(9808), 1, + sym_comment, + STATE(7322), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12778), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [293663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_COMMA, - ACTIONS(12785), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293887] = 4, + ACTIONS(11804), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [293672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(12780), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12776), 2, anon_sym_COMMA, - ACTIONS(12787), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [293900] = 4, + anon_sym_LBRACE, + [293683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12789), 1, + ACTIONS(12782), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7860), 1, aux_sym_template_argument_list_repeat1, - [293913] = 4, + [293696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(11714), 1, anon_sym_COMMA, - ACTIONS(8279), 1, - anon_sym_RPAREN, - STATE(7987), 1, - aux_sym_argument_list_repeat1, - [293926] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10407), 1, - anon_sym_COLON, - ACTIONS(10452), 1, - anon_sym_RPAREN, - STATE(7953), 1, - sym_gnu_asm_output_operand_list, - [293939] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12156), 1, - anon_sym_COLON, - ACTIONS(12791), 1, - anon_sym_RPAREN, - STATE(7991), 1, - sym_gnu_asm_clobber_list, - [293952] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12136), 1, - anon_sym_COLON, - ACTIONS(12793), 1, - anon_sym_RPAREN, - STATE(7954), 1, - sym_gnu_asm_input_operand_list, - [293965] = 4, + ACTIONS(11751), 1, + anon_sym_LBRACE, + STATE(7942), 1, + aux_sym_base_class_clause_repeat1, + [293709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12136), 1, - anon_sym_COLON, - ACTIONS(12795), 1, - anon_sym_RPAREN, - STATE(7994), 1, - sym_gnu_asm_input_operand_list, - [293978] = 4, + ACTIONS(12237), 1, + anon_sym_COMMA, + ACTIONS(12784), 1, + anon_sym_RBRACK_RBRACK, + STATE(7749), 1, + aux_sym_attribute_declaration_repeat1, + [293722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10513), 1, anon_sym_COLON, - ACTIONS(10409), 1, + ACTIONS(10537), 1, anon_sym_RPAREN, - STATE(7753), 1, + STATE(7871), 1, sym_gnu_asm_output_operand_list, - [293991] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12136), 1, - anon_sym_COLON, - ACTIONS(12797), 1, - anon_sym_RPAREN, - STATE(7752), 1, - sym_gnu_asm_input_operand_list, - [294004] = 4, + [293735] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(11714), 1, anon_sym_COMMA, - ACTIONS(12799), 1, + ACTIONS(11751), 1, anon_sym_LBRACE, - STATE(7738), 1, + STATE(7787), 1, aux_sym_base_class_clause_repeat1, - [294017] = 4, + [293748] = 3, + ACTIONS(9808), 1, + sym_comment, + STATE(7596), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12786), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [293759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11714), 1, + ACTIONS(8496), 1, + anon_sym_RBRACE, + ACTIONS(12788), 1, anon_sym_COMMA, - ACTIONS(12799), 1, - anon_sym_LBRACE, - STATE(7935), 1, - aux_sym_base_class_clause_repeat1, - [294030] = 4, + STATE(7953), 1, + aux_sym_initializer_list_repeat1, + [293772] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12801), 1, + ACTIONS(12791), 1, sym_identifier, - STATE(2736), 1, - sym_template_function, - STATE(3123), 1, + STATE(3163), 1, sym_template_type, - [294043] = 4, + STATE(3791), 1, + sym_template_function, + [293785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8273), 1, - anon_sym_COMMA, - ACTIONS(8275), 1, - anon_sym_RBRACE, - STATE(7982), 1, - aux_sym_initializer_list_repeat1, - [294056] = 4, + ACTIONS(12467), 1, + anon_sym_catch, + STATE(363), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [293796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4399), 1, - anon_sym_RBRACE, - ACTIONS(12803), 1, - anon_sym_COMMA, - STATE(7658), 1, - aux_sym_initializer_list_repeat1, - [294069] = 4, + ACTIONS(12795), 1, + anon_sym_COLON_COLON, + ACTIONS(12793), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [293807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(12287), 1, + anon_sym_COLON, + ACTIONS(12797), 1, + anon_sym_RPAREN, + STATE(8836), 1, + sym_gnu_asm_goto_list, + [293820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12805), 1, + ACTIONS(12799), 1, anon_sym_GT2, - STATE(7986), 1, + STATE(7961), 1, aux_sym_template_argument_list_repeat1, - [294082] = 4, + [293833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12807), 1, + ACTIONS(12801), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [294095] = 4, + [293846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12809), 1, + ACTIONS(12803), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [294108] = 4, + [293859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12811), 1, + ACTIONS(12805), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [294121] = 4, + [293872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8233), 1, - anon_sym_COMMA, - ACTIONS(8267), 1, + ACTIONS(12287), 1, + anon_sym_COLON, + ACTIONS(12807), 1, anon_sym_RPAREN, - STATE(7670), 1, - aux_sym_argument_list_repeat1, - [294134] = 4, + STATE(8905), 1, + sym_gnu_asm_goto_list, + [293885] = 3, + ACTIONS(9808), 1, + sym_comment, + STATE(7573), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12809), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [293896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12813), 1, + ACTIONS(8290), 1, anon_sym_COMMA, - ACTIONS(12816), 1, + ACTIONS(12811), 1, anon_sym_RPAREN, - STATE(7988), 1, - aux_sym_throw_specifier_repeat1, - [294147] = 3, + STATE(7687), 1, + aux_sym_generic_expression_repeat1, + [293909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12442), 1, + ACTIONS(12501), 1, anon_sym_catch, - STATE(470), 2, + STATE(2032), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [294158] = 4, + [293920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12166), 1, - anon_sym_COLON, - ACTIONS(12818), 1, - anon_sym_RPAREN, - STATE(9285), 1, - sym_gnu_asm_goto_list, - [294171] = 4, - ACTIONS(3), 1, + ACTIONS(8310), 1, + anon_sym_COMMA, + ACTIONS(12813), 1, + anon_sym_RBRACK, + STATE(7717), 1, + aux_sym_lambda_capture_specifier_repeat1, + [293933] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12166), 1, - anon_sym_COLON, - ACTIONS(12820), 1, - anon_sym_RPAREN, - STATE(8923), 1, - sym_gnu_asm_goto_list, - [294184] = 2, + STATE(7556), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12815), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [293944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11638), 3, + ACTIONS(12817), 3, anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACE, - [294193] = 4, + [293953] = 3, + ACTIONS(9808), 1, + sym_comment, + STATE(7549), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12819), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [293964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(12822), 1, - anon_sym_GT2, - STATE(7756), 1, - aux_sym_template_argument_list_repeat1, - [294206] = 4, + ACTIONS(12821), 1, + anon_sym_RPAREN, + STATE(8028), 1, + aux_sym_parameter_list_repeat1, + [293977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12156), 1, - anon_sym_COLON, - ACTIONS(12824), 1, + ACTIONS(8589), 1, anon_sym_RPAREN, - STATE(8005), 1, - sym_gnu_asm_clobber_list, - [294219] = 4, + ACTIONS(12823), 1, + anon_sym_COMMA, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [293990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11714), 1, + ACTIONS(8465), 1, anon_sym_COMMA, - ACTIONS(12024), 1, - anon_sym_LBRACE, - STATE(7738), 1, - aux_sym_base_class_clause_repeat1, - [294232] = 4, + ACTIONS(8467), 1, + anon_sym_RBRACE, + STATE(7901), 1, + aux_sym_initializer_list_repeat1, + [294003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, + ACTIONS(12281), 1, + anon_sym_COLON, ACTIONS(12826), 1, - anon_sym_constexpr, - STATE(169), 1, - sym_condition_clause, - [294245] = 4, + anon_sym_RPAREN, + STATE(8017), 1, + sym_gnu_asm_clobber_list, + [294016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8185), 1, + ACTIONS(8362), 1, anon_sym_COMMA, ACTIONS(12828), 1, anon_sym_RPAREN, - STATE(7883), 1, - aux_sym_generic_expression_repeat1, - [294258] = 4, + STATE(7971), 1, + aux_sym_argument_list_repeat1, + [294029] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(12830), 1, sym_identifier, - STATE(3108), 1, + STATE(3051), 1, sym_template_function, - STATE(3123), 1, + STATE(3163), 1, sym_template_type, - [294271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12504), 1, - anon_sym_COLON_COLON, - ACTIONS(12832), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [294282] = 3, - ACTIONS(9761), 1, + [294042] = 4, + ACTIONS(9808), 1, sym_comment, - STATE(7418), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12834), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [294293] = 4, + ACTIONS(12299), 1, + anon_sym_LPAREN2, + ACTIONS(12832), 1, + aux_sym_preproc_include_token2, + STATE(9180), 1, + sym_preproc_argument_list, + [294055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(5605), 1, anon_sym_COMMA, + ACTIONS(12834), 1, + anon_sym_RBRACK, + STATE(7688), 1, + aux_sym_structured_binding_declarator_repeat1, + [294068] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12287), 1, + anon_sym_COLON, ACTIONS(12836), 1, - anon_sym_GT2, - STATE(8004), 1, - aux_sym_template_argument_list_repeat1, - [294306] = 4, + anon_sym_RPAREN, + STATE(8965), 1, + sym_gnu_asm_goto_list, + [294081] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, ACTIONS(12838), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7982), 1, aux_sym_template_argument_list_repeat1, - [294319] = 4, + [294094] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, ACTIONS(12840), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [294332] = 4, + [294107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, ACTIONS(12842), 1, anon_sym_GT2, - STATE(7756), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [294345] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12166), 1, - anon_sym_COLON, - ACTIONS(12844), 1, - anon_sym_RPAREN, - STATE(8920), 1, - sym_gnu_asm_goto_list, - [294358] = 4, + [294120] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8195), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12846), 1, + ACTIONS(12844), 1, anon_sym_GT2, - STATE(7968), 1, + STATE(7881), 1, aux_sym_template_argument_list_repeat1, - [294371] = 4, + [294133] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10405), 1, - anon_sym_RPAREN, - ACTIONS(10407), 1, - anon_sym_COLON, - STATE(7974), 1, - sym_gnu_asm_output_operand_list, - [294384] = 2, + ACTIONS(9922), 1, + anon_sym_COMMA, + ACTIONS(12846), 1, + anon_sym_SEMI, + STATE(8026), 1, + aux_sym__declaration_declarator_repeat1, + [294146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8281), 3, + ACTIONS(12237), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [294393] = 2, + ACTIONS(12848), 1, + anon_sym_RBRACK_RBRACK, + STATE(7907), 1, + aux_sym_attribute_declaration_repeat1, + [294159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12848), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(5104), 1, anon_sym_LBRACE, - [294402] = 4, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + STATE(866), 1, + sym_declaration_list, + [294172] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(8290), 1, + anon_sym_COMMA, ACTIONS(12850), 1, - sym_identifier, - STATE(3123), 1, - sym_template_type, - STATE(3456), 1, - sym_template_function, - [294415] = 3, + anon_sym_RPAREN, + STATE(7687), 1, + aux_sym_generic_expression_repeat1, + [294185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8711), 1, - anon_sym_LT, - STATE(5332), 1, - sym_template_argument_list, - [294425] = 3, + ACTIONS(8362), 1, + anon_sym_COMMA, + ACTIONS(8498), 1, + anon_sym_RPAREN, + STATE(7903), 1, + aux_sym_argument_list_repeat1, + [294198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, - anon_sym_LBRACE, - STATE(3120), 1, - sym_field_declaration_list, - [294435] = 2, + ACTIONS(12237), 1, + anon_sym_COMMA, + ACTIONS(12852), 1, + anon_sym_RBRACK_RBRACK, + STATE(7684), 1, + aux_sym_attribute_declaration_repeat1, + [294211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6415), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [294443] = 3, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(12852), 1, - aux_sym_preproc_include_token2, + ACTIONS(12473), 1, + anon_sym_COMMA, ACTIONS(12854), 1, - sym_preproc_arg, - [294453] = 2, + anon_sym_RPAREN, + STATE(7824), 1, + aux_sym_preproc_params_repeat1, + [294224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6409), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [294461] = 2, + ACTIONS(12253), 1, + anon_sym_COLON, + ACTIONS(12856), 1, + anon_sym_RPAREN, + STATE(7892), 1, + sym_gnu_asm_input_operand_list, + [294237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6427), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [294469] = 2, - ACTIONS(3), 1, + ACTIONS(10513), 1, + anon_sym_COLON, + ACTIONS(10569), 1, + anon_sym_RPAREN, + STATE(7891), 1, + sym_gnu_asm_output_operand_list, + [294250] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(6359), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [294477] = 2, - ACTIONS(3), 1, + STATE(7382), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12858), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [294261] = 4, + ACTIONS(9808), 1, sym_comment, - ACTIONS(6258), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [294485] = 2, + ACTIONS(12299), 1, + anon_sym_LPAREN2, + ACTIONS(12860), 1, + aux_sym_preproc_include_token2, + STATE(9180), 1, + sym_preproc_argument_list, + [294274] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6262), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [294493] = 2, + ACTIONS(9922), 1, + anon_sym_COMMA, + ACTIONS(9926), 1, + anon_sym_SEMI, + STATE(8006), 1, + aux_sym__declaration_declarator_repeat1, + [294287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6285), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [294501] = 2, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + ACTIONS(12862), 1, + anon_sym_constexpr, + STATE(211), 1, + sym_condition_clause, + [294300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6289), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [294509] = 3, + ACTIONS(12864), 1, + sym_identifier, + STATE(3163), 1, + sym_template_type, + STATE(4076), 1, + sym_template_function, + [294313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12856), 1, - anon_sym_LT, - STATE(2816), 1, - sym_template_argument_list, - [294519] = 2, + ACTIONS(9810), 1, + anon_sym_COMMA, + ACTIONS(12866), 1, + anon_sym_RPAREN, + STATE(7830), 1, + aux_sym_preproc_argument_list_repeat1, + [294326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6305), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [294527] = 2, + ACTIONS(12253), 1, + anon_sym_COLON, + ACTIONS(12868), 1, + anon_sym_RPAREN, + STATE(7973), 1, + sym_gnu_asm_input_operand_list, + [294339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6293), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [294535] = 3, - ACTIONS(9761), 1, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(12870), 1, + anon_sym_GT2, + STATE(8002), 1, + aux_sym_template_argument_list_repeat1, + [294352] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12858), 1, - aux_sym_preproc_include_token2, - ACTIONS(12860), 1, - sym_preproc_arg, - [294545] = 3, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(12872), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [294365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12862), 1, - anon_sym_LPAREN2, - ACTIONS(12864), 1, - sym_raw_string_delimiter, - [294555] = 3, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(12874), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [294378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12866), 1, - anon_sym_LPAREN2, - ACTIONS(12868), 1, - sym_raw_string_delimiter, - [294565] = 3, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(12876), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [294391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, - sym_identifier, - STATE(7669), 1, - sym_attribute, - [294575] = 3, + ACTIONS(9922), 1, + anon_sym_COMMA, + ACTIONS(12878), 1, + anon_sym_SEMI, + STATE(8027), 1, + aux_sym__declaration_declarator_repeat1, + [294404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12872), 1, - anon_sym_LPAREN2, - ACTIONS(12874), 1, - sym_raw_string_delimiter, - [294585] = 3, + ACTIONS(8388), 1, + anon_sym_COMMA, + ACTIONS(12880), 1, + anon_sym_RBRACK, + STATE(7831), 1, + aux_sym_subscript_argument_list_repeat1, + [294417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12876), 1, + ACTIONS(12233), 1, anon_sym_LPAREN2, - ACTIONS(12878), 1, - sym_raw_string_delimiter, - [294595] = 3, + ACTIONS(12882), 1, + anon_sym_constexpr, + STATE(163), 1, + sym_condition_clause, + [294430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12880), 1, - anon_sym_LT, - STATE(4283), 1, - sym_template_argument_list, - [294605] = 3, + ACTIONS(9922), 1, + anon_sym_COMMA, + ACTIONS(12846), 1, + anon_sym_SEMI, + STATE(8026), 1, + aux_sym__declaration_declarator_repeat1, + [294443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12882), 1, - anon_sym_LPAREN2, + ACTIONS(12565), 1, + anon_sym_COMMA, ACTIONS(12884), 1, - sym_raw_string_delimiter, - [294615] = 3, + anon_sym_LBRACE, + STATE(7847), 1, + aux_sym_field_initializer_list_repeat1, + [294456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - [294625] = 3, + ACTIONS(12660), 1, + anon_sym_catch, + STATE(844), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [294467] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(12886), 1, - anon_sym_LPAREN2, - ACTIONS(12888), 1, - sym_raw_string_delimiter, - [294635] = 3, + sym_identifier, + STATE(3051), 1, + sym_template_function, + STATE(3163), 1, + sym_template_type, + [294480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - STATE(8135), 1, - sym_condition_clause, - [294645] = 3, + ACTIONS(5605), 1, + anon_sym_COMMA, + ACTIONS(12888), 1, + anon_sym_RBRACK, + STATE(7977), 1, + aux_sym_structured_binding_declarator_repeat1, + [294493] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(12237), 1, + anon_sym_COMMA, ACTIONS(12890), 1, - anon_sym_LPAREN2, - ACTIONS(12892), 1, - sym_raw_string_delimiter, - [294655] = 3, + anon_sym_RBRACK_RBRACK, + STATE(7988), 1, + aux_sym_attribute_declaration_repeat1, + [294506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - STATE(172), 1, - sym_condition_clause, - [294665] = 3, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(12892), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [294519] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(8252), 1, + anon_sym_COMMA, ACTIONS(12894), 1, - anon_sym_LPAREN2, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [294532] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8252), 1, + anon_sym_COMMA, ACTIONS(12896), 1, - sym_raw_string_delimiter, - [294675] = 3, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [294545] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(12898), 1, - anon_sym_LT, - STATE(2229), 1, - sym_template_argument_list, - [294685] = 3, + sym_identifier, + ACTIONS(12900), 2, + anon_sym_COMMA, + anon_sym_GT2, + [294556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12900), 1, - anon_sym_LPAREN2, ACTIONS(12902), 1, - sym_raw_string_delimiter, - [294695] = 3, + sym_identifier, + STATE(2756), 1, + sym_template_function, + STATE(3163), 1, + sym_template_type, + [294569] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(12287), 1, + anon_sym_COLON, ACTIONS(12904), 1, - anon_sym_LPAREN2, + anon_sym_RPAREN, + STATE(8916), 1, + sym_gnu_asm_goto_list, + [294582] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8290), 1, + anon_sym_COMMA, ACTIONS(12906), 1, - sym_raw_string_delimiter, - [294705] = 3, + anon_sym_RPAREN, + STATE(7687), 1, + aux_sym_generic_expression_repeat1, + [294595] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(8252), 1, + anon_sym_COMMA, ACTIONS(12908), 1, - anon_sym_LPAREN2, - ACTIONS(12910), 1, - sym_raw_string_delimiter, - [294715] = 3, + anon_sym_GT2, + STATE(8022), 1, + aux_sym_template_argument_list_repeat1, + [294608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(7725), 1, - sym_compound_statement, - [294725] = 3, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(12910), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [294621] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(8252), 1, + anon_sym_COMMA, ACTIONS(12912), 1, - anon_sym_LPAREN2, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [294634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8252), 1, + anon_sym_COMMA, ACTIONS(12914), 1, - sym_raw_string_delimiter, - [294735] = 2, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [294647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 1, + anon_sym_COLON_COLON, + ACTIONS(6437), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [294658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12916), 2, + ACTIONS(12916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12918), 2, anon_sym_COMMA, anon_sym_LBRACE, - [294743] = 3, + [294669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12918), 1, - anon_sym_LPAREN2, ACTIONS(12920), 1, - sym_raw_string_delimiter, - [294753] = 3, + anon_sym_DOT_DOT_DOT, + ACTIONS(12922), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [294680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12922), 1, - anon_sym_LPAREN2, ACTIONS(12924), 1, - sym_raw_string_delimiter, - [294763] = 2, + anon_sym_COMMA, + ACTIONS(12927), 1, + anon_sym_SEMI, + STATE(8026), 1, + aux_sym__declaration_declarator_repeat1, + [294693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12743), 2, + ACTIONS(9922), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [294771] = 3, + ACTIONS(12929), 1, + anon_sym_SEMI, + STATE(8026), 1, + aux_sym__declaration_declarator_repeat1, + [294706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12926), 1, - anon_sym_LPAREN2, - ACTIONS(12928), 1, - sym_raw_string_delimiter, - [294781] = 3, + ACTIONS(12309), 1, + anon_sym_COMMA, + ACTIONS(12931), 1, + anon_sym_RPAREN, + STATE(7853), 1, + aux_sym_parameter_list_repeat1, + [294719] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12933), 1, + anon_sym_COMMA, + ACTIONS(12935), 1, + anon_sym_RPAREN, + STATE(7862), 1, + aux_sym_requires_parameter_list_repeat1, + [294732] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12930), 1, + ACTIONS(12937), 1, sym_identifier, - STATE(2780), 1, + STATE(3051), 1, + sym_template_function, + STATE(3163), 1, sym_template_type, - [294791] = 3, + [294745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12932), 1, - anon_sym_LPAREN2, - ACTIONS(12934), 1, - sym_raw_string_delimiter, - [294801] = 3, + ACTIONS(12249), 1, + anon_sym_catch, + STATE(352), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [294756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, - sym_identifier, - STATE(7628), 1, - sym_attribute, - [294811] = 3, + ACTIONS(12939), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [294765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12936), 1, - sym_identifier, - STATE(3123), 1, - sym_template_type, - [294821] = 3, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(12941), 1, + anon_sym_GT2, + STATE(8036), 1, + aux_sym_template_argument_list_repeat1, + [294778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5979), 1, - anon_sym_LBRACE, - STATE(2922), 1, - sym_field_declaration_list, - [294831] = 3, + ACTIONS(8252), 1, + anon_sym_COMMA, + ACTIONS(12943), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [294791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, + ACTIONS(8252), 1, anon_sym_COMMA, - ACTIONS(12940), 1, - anon_sym_RBRACE, - [294841] = 2, + ACTIONS(12945), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [294804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12816), 2, + ACTIONS(8252), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [294849] = 3, + ACTIONS(12947), 1, + anon_sym_GT2, + STATE(7881), 1, + aux_sym_template_argument_list_repeat1, + [294817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12942), 1, - anon_sym_LPAREN2, - ACTIONS(12944), 1, - sym_raw_string_delimiter, - [294859] = 3, + ACTIONS(12795), 1, + anon_sym_COLON_COLON, + ACTIONS(12949), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [294828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(8699), 1, - sym_argument_list, - [294869] = 2, + ACTIONS(12497), 1, + anon_sym_COMMA, + ACTIONS(12951), 1, + anon_sym_GT2, + STATE(7869), 1, + aux_sym_template_parameter_list_repeat1, + [294841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12946), 2, + ACTIONS(12933), 1, anon_sym_COMMA, + ACTIONS(12953), 1, anon_sym_RPAREN, - [294877] = 3, + STATE(8029), 1, + aux_sym_requires_parameter_list_repeat1, + [294854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(8962), 1, - sym_argument_list, - [294887] = 3, + ACTIONS(12939), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [294863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5979), 1, - anon_sym_LBRACE, - STATE(2934), 1, - sym_field_declaration_list, - [294897] = 3, + ACTIONS(6463), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [294871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8394), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [294879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(12949), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(2942), 1, - sym_field_declaration_list, - [294907] = 3, + [294887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12948), 1, - sym_identifier, - ACTIONS(12950), 1, - anon_sym_RPAREN, - [294917] = 3, + ACTIONS(10404), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [294895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + ACTIONS(12955), 1, + anon_sym_SEMI, + [294905] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(7308), 1, + STATE(571), 1, sym_compound_statement, - [294927] = 2, + [294915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12773), 2, - anon_sym_COMMA, + ACTIONS(5104), 1, + anon_sym_LBRACE, + STATE(922), 1, + sym_declaration_list, + [294925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9595), 1, anon_sym_LBRACE, + STATE(4272), 1, + sym_requirement_seq, [294935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10794), 1, - anon_sym_RBRACE, - ACTIONS(12938), 1, - anon_sym_COMMA, + ACTIONS(12957), 1, + anon_sym_LT, + STATE(2835), 1, + sym_template_argument_list, [294945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - STATE(8340), 1, - sym_condition_clause, + ACTIONS(12959), 1, + anon_sym_default, + ACTIONS(12961), 1, + anon_sym_delete, [294955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - STATE(214), 1, - sym_condition_clause, + ACTIONS(8994), 1, + anon_sym_LBRACE, + STATE(5411), 1, + sym_field_declaration_list, [294965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(7912), 1, - sym_compound_statement, + ACTIONS(12963), 1, + sym_identifier, + STATE(3062), 1, + sym_template_type, [294975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - STATE(181), 1, - sym_condition_clause, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(1039), 1, + sym_compound_statement, [294985] = 3, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12952), 1, - anon_sym_LPAREN2, - ACTIONS(12954), 1, - sym_raw_string_delimiter, - [294995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12956), 1, - anon_sym_LT, - STATE(2933), 1, - sym_template_argument_list, - [295005] = 2, + ACTIONS(12965), 1, + aux_sym_preproc_include_token2, + ACTIONS(12967), 1, + sym_preproc_arg, + [294995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12585), 2, - anon_sym_COMMA, + ACTIONS(12969), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - [295013] = 3, + [295003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6932), 1, + ACTIONS(12969), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(4360), 1, - sym_field_declaration_list, - [295023] = 3, + [295011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5979), 1, + ACTIONS(1112), 1, anon_sym_LBRACE, - STATE(2913), 1, - sym_field_declaration_list, - [295033] = 3, + STATE(619), 1, + sym_compound_statement, + [295021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6932), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(4340), 1, + STATE(3147), 1, sym_field_declaration_list, - [295043] = 3, + [295031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6932), 1, - anon_sym_LBRACE, - STATE(4342), 1, - sym_field_declaration_list, - [295053] = 3, + ACTIONS(6283), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [295039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6932), 1, - anon_sym_LBRACE, - STATE(4343), 1, - sym_field_declaration_list, - [295063] = 3, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(195), 1, + sym_condition_clause, + [295049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12958), 1, + ACTIONS(12971), 1, sym_identifier, - STATE(4255), 1, + STATE(3132), 1, sym_template_type, - [295073] = 3, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(12960), 1, - aux_sym_preproc_include_token2, - ACTIONS(12962), 1, - sym_preproc_arg, - [295083] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12471), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [295091] = 3, + [295059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12964), 1, - anon_sym_LPAREN2, - ACTIONS(12966), 1, - sym_raw_string_delimiter, - [295101] = 2, + ACTIONS(379), 1, + anon_sym_LBRACE, + STATE(561), 1, + sym_compound_statement, + [295069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8578), 2, + ACTIONS(12973), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [295109] = 3, + anon_sym_GT2, + [295077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12968), 1, - anon_sym_default, - ACTIONS(12970), 1, - anon_sym_delete, - [295119] = 3, + ACTIONS(12975), 1, + sym_identifier, + STATE(7984), 1, + sym_attribute, + [295087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7526), 1, + ACTIONS(12969), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(4483), 1, - sym_field_declaration_list, - [295129] = 3, + [295095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(7618), 1, - sym_template_argument_list, - [295139] = 2, + ACTIONS(2254), 1, + anon_sym_LBRACE, + STATE(3768), 1, + sym_initializer_list, + [295105] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(12977), 1, + aux_sym_preproc_include_token2, + ACTIONS(12979), 1, + sym_preproc_arg, + [295115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12972), 2, - anon_sym_COMMA, + ACTIONS(5098), 1, anon_sym_LBRACE, - [295147] = 3, + STATE(983), 1, + sym_declaration_list, + [295125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, + ACTIONS(12741), 2, anon_sym_COMMA, - ACTIONS(12974), 1, - anon_sym_RBRACE, - [295157] = 2, + anon_sym_SEMI, + [295133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12456), 2, - anon_sym_COMMA, + ACTIONS(10771), 1, anon_sym_LBRACE, - [295165] = 2, + STATE(2084), 1, + sym_compound_statement, + [295143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12976), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [295173] = 2, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(8097), 1, + sym_condition_clause, + [295153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12438), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [295181] = 2, + ACTIONS(12981), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [295161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12978), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [295189] = 3, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(198), 1, + sym_condition_clause, + [295171] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(12983), 1, + aux_sym_preproc_include_token2, + ACTIONS(12985), 1, + sym_preproc_arg, + [295181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7526), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - STATE(4533), 1, + STATE(4386), 1, sym_field_declaration_list, - [295199] = 3, + [295191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7526), 1, - anon_sym_LBRACE, - STATE(4535), 1, - sym_field_declaration_list, - [295209] = 3, + ACTIONS(12987), 1, + sym_identifier, + ACTIONS(12989), 1, + anon_sym_LPAREN2, + [295201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10818), 1, - anon_sym_RBRACE, - ACTIONS(12938), 1, - anon_sym_COMMA, - [295219] = 2, + ACTIONS(12991), 1, + sym_identifier, + ACTIONS(12993), 1, + anon_sym_LPAREN2, + [295211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [295227] = 2, + ACTIONS(12995), 1, + sym_identifier, + STATE(2188), 1, + sym_template_type, + [295221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12423), 2, - anon_sym_COMMA, - anon_sym_GT2, - [295235] = 3, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(7955), 1, + sym_compound_statement, + [295231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8966), 1, - anon_sym_LT, - STATE(2931), 1, - sym_template_argument_list, - [295245] = 3, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(7494), 1, + sym_compound_statement, + [295241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9473), 1, + ACTIONS(9558), 1, anon_sym_LBRACE, - STATE(3403), 1, + STATE(3838), 1, sym_requirement_seq, - [295255] = 3, + [295251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7526), 1, - anon_sym_LBRACE, - STATE(4499), 1, - sym_field_declaration_list, - [295265] = 2, + ACTIONS(12997), 1, + anon_sym_LT, + STATE(2912), 1, + sym_template_argument_list, + [295261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12980), 2, - anon_sym_COMMA, - anon_sym_GT2, - [295273] = 2, + ACTIONS(12999), 1, + sym_identifier, + STATE(3028), 1, + sym_template_type, + [295271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12982), 2, - anon_sym_COMMA, - anon_sym_GT2, - [295281] = 2, + ACTIONS(7097), 1, + anon_sym_LBRACE, + STATE(4385), 1, + sym_field_declaration_list, + [295281] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(13001), 1, + aux_sym_preproc_include_token2, + ACTIONS(13003), 1, + sym_preproc_arg, + [295291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12984), 2, - anon_sym_COMMA, - anon_sym_GT2, - [295289] = 2, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(3415), 1, + sym_initializer_list, + [295301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8612), 2, + ACTIONS(13005), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [295297] = 2, + anon_sym_RBRACK_RBRACK, + [295309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8359), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [295305] = 3, + ACTIONS(5104), 1, + anon_sym_LBRACE, + STATE(896), 1, + sym_declaration_list, + [295319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12986), 1, + ACTIONS(13007), 1, sym_identifier, - STATE(4128), 1, + STATE(3163), 1, sym_template_type, - [295315] = 2, + [295329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [295323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - STATE(824), 1, - sym_compound_statement, - [295333] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8588), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [295341] = 2, + STATE(2904), 1, + sym_field_declaration_list, + [295339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12988), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + ACTIONS(11836), 1, + sym_identifier, + STATE(3163), 1, + sym_template_type, [295349] = 3, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(12990), 1, - aux_sym_preproc_include_token2, - ACTIONS(12992), 1, - sym_preproc_arg, + ACTIONS(2830), 1, + anon_sym_LBRACE, + STATE(4248), 1, + sym_initializer_list, [295359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10597), 1, - anon_sym_LBRACE, - STATE(2418), 1, - sym_compound_statement, + ACTIONS(13009), 1, + anon_sym_LT, + STATE(2859), 1, + sym_template_argument_list, [295369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12994), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, + ACTIONS(8589), 2, + anon_sym_COMMA, + anon_sym_RPAREN, [295377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7216), 1, - anon_sym_LBRACE, - STATE(4320), 1, - sym_field_declaration_list, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(221), 1, + sym_condition_clause, [295387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12996), 1, - anon_sym_LT, - STATE(2745), 1, - sym_template_argument_list, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(8766), 1, + sym_argument_list, [295397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, - anon_sym_COMMA, - ACTIONS(12998), 1, - anon_sym_RBRACE, - [295407] = 2, + ACTIONS(898), 1, + anon_sym_LBRACE, + STATE(643), 1, + sym_compound_statement, + [295407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13000), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [295415] = 2, + ACTIONS(10933), 1, + anon_sym_RBRACE, + ACTIONS(13011), 1, + anon_sym_COMMA, + [295417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13000), 2, - anon_sym_LPAREN2, + ACTIONS(898), 1, anon_sym_LBRACE, - [295423] = 3, + STATE(773), 1, + sym_compound_statement, + [295427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, - anon_sym_LPAREN2, - STATE(8951), 1, - sym_parenthesized_expression, - [295433] = 3, - ACTIONS(9761), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(7400), 1, + sym_compound_statement, + [295437] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13004), 1, + ACTIONS(13013), 1, aux_sym_preproc_include_token2, - ACTIONS(13006), 1, + ACTIONS(13015), 1, sym_preproc_arg, - [295443] = 3, + [295447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - STATE(191), 1, - sym_condition_clause, - [295453] = 3, + ACTIONS(12793), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [295455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, - anon_sym_LBRACE, - STATE(4184), 1, - sym_initializer_list, - [295463] = 3, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(9041), 1, + sym_argument_list, + [295465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(5480), 1, + STATE(3125), 1, sym_field_declaration_list, - [295473] = 3, + [295475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13008), 1, - sym_identifier, - ACTIONS(13010), 1, - anon_sym_LPAREN2, - [295483] = 3, + ACTIONS(6505), 1, + anon_sym_LBRACE, + STATE(3144), 1, + sym_field_declaration_list, + [295485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(12233), 1, anon_sym_LPAREN2, - STATE(8173), 1, - sym_parameter_list, - [295493] = 3, + STATE(220), 1, + sym_condition_clause, + [295495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13012), 1, - sym_identifier, - STATE(2054), 1, - sym_template_type, + ACTIONS(8431), 2, + anon_sym_COMMA, + anon_sym_RBRACE, [295503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7216), 1, - anon_sym_LBRACE, - STATE(4329), 1, - sym_field_declaration_list, - [295513] = 3, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(9145), 1, + sym_argument_list, + [295513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7216), 1, - anon_sym_LBRACE, - STATE(4330), 1, - sym_field_declaration_list, - [295523] = 3, + ACTIONS(8496), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [295521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10741), 1, - anon_sym_RBRACE, - ACTIONS(12938), 1, - anon_sym_COMMA, - [295533] = 3, + ACTIONS(13017), 1, + sym_identifier, + STATE(2957), 1, + sym_template_type, + [295531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(985), 1, - sym_compound_statement, - [295543] = 2, + ACTIONS(13019), 1, + anon_sym_LT, + STATE(4294), 1, + sym_template_argument_list, + [295541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 2, + ACTIONS(8567), 2, anon_sym_COMMA, - anon_sym_SEMI, - [295551] = 3, + anon_sym_RBRACE, + [295549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6065), 1, - anon_sym_LBRACE, - STATE(2844), 1, - sym_field_declaration_list, - [295561] = 3, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + STATE(8312), 1, + sym_parameter_list, + [295559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - STATE(160), 1, - sym_condition_clause, - [295571] = 3, + ACTIONS(5106), 1, + anon_sym_LBRACE, + STATE(898), 1, + sym_declaration_list, + [295569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6554), 1, - anon_sym_LT, - STATE(3081), 1, - sym_template_argument_list, - [295581] = 3, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(9306), 1, + sym_argument_list, + [295579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(796), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(711), 1, + STATE(7699), 1, sym_compound_statement, - [295591] = 2, - ACTIONS(3), 1, + [295589] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(10361), 2, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(13021), 1, + aux_sym_preproc_include_token2, + ACTIONS(13023), 1, + sym_preproc_arg, [295599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9481), 1, + ACTIONS(9587), 1, anon_sym_LBRACE, - STATE(4845), 1, + STATE(3878), 1, sym_requirement_seq, - [295609] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13014), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [295617] = 3, + [295609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(898), 1, anon_sym_LBRACE, - STATE(7940), 1, + STATE(852), 1, sym_compound_statement, - [295627] = 3, + [295619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, - sym_identifier, - STATE(8233), 1, - sym_attribute, - [295637] = 3, + ACTIONS(13025), 1, + anon_sym_default, + ACTIONS(13027), 1, + anon_sym_delete, + [295629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7216), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(4339), 1, - sym_field_declaration_list, - [295647] = 3, + STATE(7658), 1, + sym_compound_statement, + [295639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13016), 1, - sym_identifier, - ACTIONS(13018), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - [295657] = 3, + STATE(8429), 1, + sym_parameter_list, + [295649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 1, - anon_sym_LBRACE, - STATE(924), 1, - sym_declaration_list, - [295667] = 2, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + STATE(8046), 1, + sym_parameter_list, + [295659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13000), 2, - anon_sym_LPAREN2, + ACTIONS(1888), 1, anon_sym_LBRACE, - [295675] = 3, + STATE(1160), 1, + sym_compound_statement, + [295669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9455), 1, - anon_sym_LBRACE, - STATE(4153), 1, - sym_requirement_seq, - [295685] = 3, + ACTIONS(13029), 2, + anon_sym_COMMA, + anon_sym_GT2, + [295677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(796), 1, - anon_sym_LBRACE, - STATE(931), 1, - sym_compound_statement, - [295695] = 3, + ACTIONS(10979), 1, + anon_sym_RBRACE, + ACTIONS(13011), 1, + anon_sym_COMMA, + [295687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13020), 1, - sym_identifier, - STATE(5319), 1, - sym_template_type, - [295705] = 3, + ACTIONS(13031), 1, + anon_sym_default, + ACTIONS(13033), 1, + anon_sym_delete, + [295697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_LBRACE, - STATE(4305), 1, - sym_initializer_list, - [295715] = 3, - ACTIONS(9761), 1, + ACTIONS(6310), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [295705] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13022), 1, + ACTIONS(13035), 1, aux_sym_preproc_include_token2, - ACTIONS(13024), 1, + ACTIONS(13037), 1, sym_preproc_arg, + [295715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6375), 1, + anon_sym_LBRACE, + STATE(3237), 1, + sym_field_declaration_list, [295725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8966), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, + ACTIONS(6375), 1, + anon_sym_LBRACE, + STATE(3213), 1, + sym_field_declaration_list, [295735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 1, - anon_sym_LBRACE, - STATE(836), 1, - sym_declaration_list, + ACTIONS(9053), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, [295745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10816), 1, - anon_sym_RBRACE, - ACTIONS(12938), 1, - anon_sym_COMMA, - [295755] = 2, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(9084), 1, + sym_argument_list, + [295755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12502), 2, - anon_sym_SEMI, + ACTIONS(7097), 1, anon_sym_LBRACE, - [295763] = 3, + STATE(4364), 1, + sym_field_declaration_list, + [295765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11560), 1, - sym_identifier, - STATE(3123), 1, - sym_template_type, - [295773] = 3, + ACTIONS(13039), 1, + anon_sym_LT, + STATE(2278), 1, + sym_template_argument_list, + [295775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13026), 1, - anon_sym_default, - ACTIONS(13028), 1, - anon_sym_delete, - [295783] = 3, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(7899), 1, + sym_compound_statement, + [295785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6065), 1, - anon_sym_LBRACE, - STATE(2846), 1, - sym_field_declaration_list, - [295793] = 3, + ACTIONS(6295), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [295793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, - anon_sym_LPAREN2, - STATE(8181), 1, - sym_parenthesized_expression, - [295803] = 3, + ACTIONS(6291), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [295801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6065), 1, - anon_sym_LBRACE, - STATE(2845), 1, - sym_field_declaration_list, - [295813] = 3, + ACTIONS(13041), 1, + anon_sym_LT, + STATE(3513), 1, + sym_template_argument_list, + [295811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10677), 1, + ACTIONS(6279), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [295819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(379), 1, anon_sym_LBRACE, - STATE(2174), 1, + STATE(590), 1, sym_compound_statement, - [295823] = 3, + [295829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 1, - anon_sym_LBRACE, - STATE(5519), 1, - sym_field_declaration_list, - [295833] = 3, + ACTIONS(12975), 1, + sym_identifier, + STATE(7924), 1, + sym_attribute, + [295839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6065), 1, - anon_sym_LBRACE, - STATE(5918), 1, - sym_field_declaration_list, - [295843] = 3, + ACTIONS(6275), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [295847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, - anon_sym_COMMA, - ACTIONS(13030), 1, - anon_sym_RBRACE, - [295853] = 3, + ACTIONS(6459), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [295855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6065), 1, - anon_sym_LBRACE, - STATE(5912), 1, - sym_field_declaration_list, + ACTIONS(6475), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, [295863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6065), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(5921), 1, - sym_field_declaration_list, + STATE(7866), 1, + sym_compound_statement, [295873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6065), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - STATE(5903), 1, + STATE(5946), 1, sym_field_declaration_list, [295883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10597), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - STATE(2620), 1, + STATE(325), 1, sym_compound_statement, [295893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - ACTIONS(13032), 1, - anon_sym_SEMI, + ACTIONS(8779), 1, + anon_sym_LT, + STATE(5373), 1, + sym_template_argument_list, [295903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - STATE(532), 1, - sym_compound_statement, + STATE(5919), 1, + sym_field_declaration_list, [295913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12996), 1, - anon_sym_LT, - STATE(2722), 1, - sym_template_argument_list, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + STATE(8217), 1, + sym_parameter_list, [295923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(1112), 1, anon_sym_LBRACE, - STATE(606), 1, + STATE(745), 1, sym_compound_statement, [295933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, - anon_sym_COMMA, - ACTIONS(13034), 1, - anon_sym_RBRACE, + ACTIONS(9069), 1, + anon_sym_LBRACE, + STATE(5542), 1, + sym_field_declaration_list, [295943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6065), 1, + ACTIONS(379), 1, anon_sym_LBRACE, - STATE(2871), 1, - sym_field_declaration_list, + STATE(463), 1, + sym_compound_statement, [295953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(796), 1, - anon_sym_LBRACE, - STATE(526), 1, - sym_compound_statement, + ACTIONS(13043), 1, + anon_sym_LPAREN2, + STATE(8671), 1, + sym_parenthesized_expression, [295963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, - anon_sym_COMMA, - ACTIONS(13036), 1, - anon_sym_RBRACE, + ACTIONS(5106), 1, + anon_sym_LBRACE, + STATE(925), 1, + sym_declaration_list, [295973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 1, - anon_sym_LBRACE, - STATE(5533), 1, - sym_field_declaration_list, + ACTIONS(13045), 1, + sym_identifier, + STATE(2809), 1, + sym_template_type, [295983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10757), 1, - anon_sym_RBRACE, - ACTIONS(12938), 1, - anon_sym_COMMA, + ACTIONS(6073), 1, + anon_sym_LBRACE, + STATE(5932), 1, + sym_field_declaration_list, [295993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - ACTIONS(13038), 1, - anon_sym_SEMI, + ACTIONS(13011), 1, + anon_sym_COMMA, + ACTIONS(13047), 1, + anon_sym_RBRACE, [296003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13040), 1, + ACTIONS(13041), 1, anon_sym_LT, - STATE(2745), 1, + STATE(3517), 1, sym_template_argument_list, [296013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 1, - anon_sym_LBRACE, - STATE(1021), 1, - sym_declaration_list, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + STATE(8277), 1, + sym_parameter_list, [296023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13042), 1, - anon_sym_LT, - STATE(3804), 1, - sym_template_argument_list, + ACTIONS(6073), 1, + anon_sym_LBRACE, + STATE(5930), 1, + sym_field_declaration_list, [296033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(6505), 1, anon_sym_LBRACE, - STATE(824), 1, - sym_compound_statement, - [296043] = 3, + STATE(3108), 1, + sym_field_declaration_list, + [296043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8984), 1, - anon_sym_LT, - STATE(2988), 1, - sym_template_argument_list, - [296053] = 2, + ACTIONS(6433), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [296051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13044), 2, - anon_sym_COMMA, - anon_sym_GT2, + ACTIONS(13049), 1, + anon_sym_default, + ACTIONS(13051), 1, + anon_sym_delete, [296061] = 3, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13046), 1, - aux_sym_preproc_include_token2, - ACTIONS(13048), 1, - sym_preproc_arg, + ACTIONS(10937), 1, + anon_sym_RBRACE, + ACTIONS(13011), 1, + anon_sym_COMMA, [296071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(796), 1, + ACTIONS(11932), 1, anon_sym_LBRACE, - STATE(899), 1, - sym_compound_statement, + STATE(6274), 1, + sym_requirement_seq, [296081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6932), 1, - anon_sym_LBRACE, - STATE(4354), 1, - sym_field_declaration_list, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(8665), 1, + sym_argument_list, [296091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10597), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - STATE(2653), 1, - sym_compound_statement, + STATE(2866), 1, + sym_field_declaration_list, [296101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - STATE(195), 1, - sym_condition_clause, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + ACTIONS(13053), 1, + anon_sym_SEMI, [296111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12002), 1, + ACTIONS(379), 1, anon_sym_LBRACE, - STATE(6457), 1, - sym_requirement_seq, + STATE(360), 1, + sym_compound_statement, [296121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(2793), 1, + STATE(4919), 1, sym_initializer_list, [296131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13050), 1, - sym_identifier, - STATE(3103), 1, - sym_template_type, - [296141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8950), 1, - anon_sym_LBRACE, - STATE(5505), 1, - sym_field_declaration_list, - [296151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6552), 1, + ACTIONS(5998), 1, anon_sym_LBRACE, - STATE(3458), 1, + STATE(2956), 1, sym_field_declaration_list, - [296161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - STATE(218), 1, - sym_condition_clause, - [296171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(291), 1, - anon_sym_LBRACE, - STATE(269), 1, - sym_compound_statement, - [296181] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5070), 1, - anon_sym_LBRACE, - STATE(378), 1, - sym_declaration_list, - [296191] = 3, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(13052), 1, - aux_sym_preproc_include_token2, - ACTIONS(13054), 1, - sym_preproc_arg, - [296201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13056), 1, - sym_identifier, - STATE(2936), 1, - sym_template_type, - [296211] = 3, + [296141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, + ACTIONS(13011), 1, anon_sym_COMMA, - ACTIONS(13058), 1, + ACTIONS(13055), 1, anon_sym_RBRACE, - [296221] = 3, + [296151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9431), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(2812), 1, - sym_requirement_seq, - [296231] = 3, + STATE(7759), 1, + sym_compound_statement, + [296161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_RBRACE, - ACTIONS(12938), 1, + ACTIONS(13057), 2, anon_sym_COMMA, - [296241] = 3, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(13060), 1, - aux_sym_preproc_include_token2, - ACTIONS(13062), 1, - sym_preproc_arg, - [296251] = 3, + anon_sym_LBRACE, + [296169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(291), 1, + ACTIONS(10727), 1, anon_sym_LBRACE, - STATE(396), 1, + STATE(2507), 1, sym_compound_statement, - [296261] = 3, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(13064), 1, - aux_sym_preproc_include_token2, - ACTIONS(13066), 1, - sym_preproc_arg, - [296271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(4097), 1, - sym_template_argument_list, - [296281] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10830), 1, - anon_sym_RBRACE, - ACTIONS(12938), 1, - anon_sym_COMMA, - [296291] = 3, + [296179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - STATE(3386), 1, + STATE(2895), 1, sym_field_declaration_list, - [296301] = 3, + [296189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 1, - anon_sym_LBRACE, - STATE(3380), 1, - sym_field_declaration_list, - [296311] = 3, + ACTIONS(13059), 2, + anon_sym_COMMA, + anon_sym_GT2, + [296197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(7446), 1, - sym_compound_statement, - [296321] = 3, + ACTIONS(13061), 2, + anon_sym_COMMA, + anon_sym_GT2, + [296205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13042), 1, + ACTIONS(7113), 1, anon_sym_LT, - STATE(3796), 1, + STATE(2743), 1, sym_template_argument_list, - [296331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(291), 1, - anon_sym_LBRACE, - STATE(365), 1, - sym_compound_statement, - [296341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5070), 1, - anon_sym_LBRACE, - STATE(363), 1, - sym_declaration_list, - [296351] = 3, + [296215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10685), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - STATE(2044), 1, - sym_compound_statement, - [296361] = 3, + STATE(2317), 1, + sym_field_declaration_list, + [296225] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(773), 1, + STATE(7911), 1, sym_compound_statement, - [296371] = 3, + [296235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6277), 1, + ACTIONS(5998), 1, anon_sym_LBRACE, - STATE(3218), 1, + STATE(2965), 1, sym_field_declaration_list, - [296381] = 3, + [296245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(796), 1, + ACTIONS(5998), 1, anon_sym_LBRACE, - STATE(606), 1, - sym_compound_statement, - [296391] = 3, + STATE(2962), 1, + sym_field_declaration_list, + [296255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, + ACTIONS(13011), 1, anon_sym_COMMA, - ACTIONS(13068), 1, + ACTIONS(13063), 1, anon_sym_RBRACE, - [296401] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13002), 1, - anon_sym_LPAREN2, - STATE(8108), 1, - sym_parenthesized_expression, - [296411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(9217), 1, - sym_argument_list, - [296421] = 3, + [296265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10677), 1, - anon_sym_LBRACE, - STATE(2265), 1, - sym_compound_statement, - [296431] = 3, + ACTIONS(12975), 1, + sym_identifier, + STATE(7949), 1, + sym_attribute, + [296275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - STATE(3355), 1, + STATE(4347), 1, sym_field_declaration_list, - [296441] = 3, + [296285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(9204), 1, - sym_argument_list, - [296451] = 3, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(8008), 1, + sym_compound_statement, + [296295] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(291), 1, anon_sym_LBRACE, - STATE(239), 1, + STATE(335), 1, sym_compound_statement, - [296461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - ACTIONS(13070), 1, - anon_sym_SEMI, - [296471] = 3, + [296305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, - anon_sym_LPAREN2, - STATE(8915), 1, - sym_parenthesized_expression, - [296481] = 3, + ACTIONS(12654), 2, + anon_sym_COMMA, + anon_sym_GT2, + [296313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - STATE(8112), 1, - sym_parameter_list, - [296491] = 3, + ACTIONS(10939), 1, + anon_sym_RBRACE, + ACTIONS(13011), 1, + anon_sym_COMMA, + [296323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, + ACTIONS(13043), 1, anon_sym_LPAREN2, - STATE(9031), 1, - sym_argument_list, - [296501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(7663), 1, - sym_compound_statement, - [296511] = 3, + STATE(8309), 1, + sym_parenthesized_expression, + [296333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6277), 1, + ACTIONS(12126), 1, anon_sym_LBRACE, - STATE(3217), 1, - sym_field_declaration_list, - [296521] = 3, + STATE(6529), 1, + sym_requirement_seq, + [296343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6277), 1, - anon_sym_LBRACE, - STATE(3216), 1, - sym_field_declaration_list, - [296531] = 3, + ACTIONS(12643), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [296351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, + ACTIONS(13065), 1, anon_sym_LT, - STATE(4061), 1, + STATE(2963), 1, sym_template_argument_list, - [296541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10838), 1, - anon_sym_RBRACE, - ACTIONS(12938), 1, - anon_sym_COMMA, - [296551] = 2, + [296361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12328), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [296559] = 3, + ACTIONS(13043), 1, + anon_sym_LPAREN2, + STATE(8317), 1, + sym_parenthesized_expression, + [296371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(1112), 1, anon_sym_LBRACE, - STATE(617), 1, + STATE(588), 1, sym_compound_statement, - [296569] = 3, + [296381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(10727), 1, anon_sym_LBRACE, - STATE(7616), 1, + STATE(2501), 1, sym_compound_statement, - [296579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13042), 1, - anon_sym_LT, - STATE(2895), 1, - sym_template_argument_list, - [296589] = 3, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(13072), 1, - aux_sym_preproc_include_token2, - ACTIONS(13074), 1, - sym_preproc_arg, - [296599] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - STATE(8159), 1, - sym_parameter_list, - [296609] = 3, + [296391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10677), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(2299), 1, + STATE(7777), 1, sym_compound_statement, - [296619] = 3, + [296401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13076), 1, - anon_sym_default, - ACTIONS(13078), 1, - anon_sym_delete, - [296629] = 3, + ACTIONS(13067), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [296409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11797), 1, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(6242), 1, - sym_requirement_seq, - [296639] = 3, + STATE(2312), 1, + sym_compound_statement, + [296419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, + ACTIONS(9650), 1, anon_sym_LPAREN2, - STATE(8943), 1, - sym_argument_list, - [296649] = 3, + STATE(8267), 1, + sym_parameter_list, + [296429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(7652), 1, + STATE(2657), 1, sym_compound_statement, - [296659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6277), 1, - anon_sym_LBRACE, - STATE(3163), 1, - sym_field_declaration_list, - [296669] = 3, + [296439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6932), 1, + ACTIONS(5998), 1, anon_sym_LBRACE, - STATE(4344), 1, + STATE(2964), 1, sym_field_declaration_list, - [296679] = 3, + [296449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, + ACTIONS(12975), 1, sym_identifier, - STATE(7659), 1, + STATE(8366), 1, sym_attribute, - [296689] = 2, + [296459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12447), 2, + ACTIONS(12628), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [296697] = 3, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(13080), 1, - aux_sym_preproc_include_token2, - ACTIONS(13082), 1, - sym_preproc_arg, - [296707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(7701), 1, - sym_compound_statement, - [296717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13084), 1, - sym_identifier, - STATE(3099), 1, - sym_template_type, - [296727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - STATE(8213), 1, - sym_parameter_list, - [296737] = 3, + anon_sym_RPAREN, + [296467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, - anon_sym_LBRACE, - STATE(3363), 1, - sym_initializer_list, - [296747] = 3, + ACTIONS(13065), 1, + anon_sym_LT, + STATE(4058), 1, + sym_template_argument_list, + [296477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6932), 1, - anon_sym_LBRACE, - STATE(4357), 1, - sym_field_declaration_list, - [296757] = 3, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(13086), 1, - aux_sym_preproc_include_token2, - ACTIONS(13088), 1, - sym_preproc_arg, - [296767] = 3, + ACTIONS(12957), 1, + anon_sym_LT, + STATE(2743), 1, + sym_template_argument_list, + [296487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, - anon_sym_LBRACE, - STATE(3768), 1, - sym_initializer_list, - [296777] = 3, + ACTIONS(13069), 1, + anon_sym_default, + ACTIONS(13071), 1, + anon_sym_delete, + [296497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8311), 1, - anon_sym_RPAREN, - ACTIONS(8313), 1, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + ACTIONS(13073), 1, anon_sym_SEMI, - [296787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(9141), 1, - sym_argument_list, - [296797] = 3, + [296507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8920), 1, + ACTIONS(12617), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(5392), 1, - sym_field_declaration_list, - [296807] = 3, + [296515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13090), 1, + ACTIONS(13075), 1, sym_identifier, - STATE(2055), 1, + STATE(4316), 1, sym_template_type, - [296817] = 3, + [296525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13092), 1, - anon_sym_default, - ACTIONS(13094), 1, - anon_sym_delete, - [296827] = 3, + ACTIONS(13041), 1, + anon_sym_LT, + STATE(2835), 1, + sym_template_argument_list, + [296535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(8775), 1, - sym_argument_list, - [296837] = 3, + ACTIONS(10727), 1, + anon_sym_LBRACE, + STATE(2462), 1, + sym_compound_statement, + [296545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(13077), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(7765), 1, - sym_compound_statement, - [296847] = 3, + [296553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, - sym_identifier, - STATE(7769), 1, - sym_attribute, - [296857] = 3, + ACTIONS(10771), 1, + anon_sym_LBRACE, + STATE(2058), 1, + sym_compound_statement, + [296563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, - anon_sym_LPAREN2, - STATE(8266), 1, - sym_parenthesized_expression, - [296867] = 3, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(8023), 1, + sym_template_argument_list, + [296573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(7557), 1, - sym_compound_statement, - [296877] = 3, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(8448), 1, + sym_argument_list, + [296583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1888), 1, + ACTIONS(898), 1, anon_sym_LBRACE, - STATE(1116), 1, + STATE(918), 1, sym_compound_statement, - [296887] = 3, + [296593] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(7814), 1, + STATE(7865), 1, sym_compound_statement, - [296897] = 3, + [296603] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(13079), 1, + aux_sym_preproc_include_token2, + ACTIONS(13081), 1, + sym_preproc_arg, + [296613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - STATE(2315), 1, + STATE(2295), 1, sym_field_declaration_list, - [296907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - STATE(8270), 1, - sym_parameter_list, - [296917] = 3, + [296623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1888), 1, + ACTIONS(5321), 1, anon_sym_LBRACE, - STATE(1103), 1, - sym_compound_statement, - [296927] = 3, + STATE(2293), 1, + sym_field_declaration_list, + [296633] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(379), 1, anon_sym_LBRACE, - STATE(497), 1, + STATE(449), 1, sym_compound_statement, - [296937] = 3, + [296643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8920), 1, - anon_sym_LBRACE, - STATE(5374), 1, - sym_field_declaration_list, - [296947] = 2, + ACTIONS(12975), 1, + sym_identifier, + STATE(7878), 1, + sym_attribute, + [296653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10949), 1, + anon_sym_RBRACE, + ACTIONS(13011), 1, + anon_sym_COMMA, + [296663] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(13083), 1, + aux_sym_preproc_include_token2, + ACTIONS(13085), 1, + sym_preproc_arg, + [296673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4615), 2, + ACTIONS(8707), 2, anon_sym_COMMA, anon_sym_RBRACK, - [296955] = 3, + [296681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, + ACTIONS(12580), 2, anon_sym_COMMA, - ACTIONS(13096), 1, - anon_sym_RBRACE, - [296965] = 3, + anon_sym_RPAREN, + [296689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13098), 1, - anon_sym_default, - ACTIONS(13100), 1, - anon_sym_delete, - [296975] = 3, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(535), 1, + sym_declaration_list, + [296699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1888), 1, + ACTIONS(5098), 1, anon_sym_LBRACE, - STATE(1141), 1, - sym_compound_statement, - [296985] = 3, + STATE(991), 1, + sym_declaration_list, + [296709] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(13087), 1, + aux_sym_preproc_include_token2, + ACTIONS(13089), 1, + sym_preproc_arg, + [296719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(8628), 1, - sym_argument_list, - [296995] = 3, + ACTIONS(13091), 1, + anon_sym_LT, + STATE(2943), 1, + sym_template_argument_list, + [296729] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(13093), 1, + aux_sym_preproc_include_token2, + ACTIONS(13095), 1, + sym_preproc_arg, + [296739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10685), 1, + ACTIONS(7601), 1, anon_sym_LBRACE, - STATE(2072), 1, - sym_compound_statement, - [297005] = 3, + STATE(4568), 1, + sym_field_declaration_list, + [296749] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(7885), 1, + STATE(779), 1, sym_compound_statement, - [297015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5072), 1, - anon_sym_LBRACE, - STATE(578), 1, - sym_declaration_list, - [297025] = 3, + [296759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, - sym_identifier, - STATE(7898), 1, - sym_attribute, - [297035] = 3, + ACTIONS(13011), 1, + anon_sym_COMMA, + ACTIONS(13097), 1, + anon_sym_RBRACE, + [296769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8317), 1, - anon_sym_RBRACK, - ACTIONS(13102), 1, - anon_sym_COMMA, - [297045] = 3, + ACTIONS(9053), 1, + anon_sym_LT, + STATE(2278), 1, + sym_template_argument_list, + [296779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9439), 1, + ACTIONS(3614), 1, anon_sym_LBRACE, - STATE(3913), 1, - sym_requirement_seq, - [297055] = 3, + STATE(4293), 1, + sym_initializer_list, + [296789] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(13099), 1, + aux_sym_preproc_include_token2, + ACTIONS(13101), 1, + sym_preproc_arg, + [296799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, + ACTIONS(13043), 1, anon_sym_LPAREN2, - STATE(8329), 1, + STATE(8152), 1, sym_parenthesized_expression, - [297065] = 3, + [296809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10573), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(2540), 1, + STATE(7883), 1, sym_compound_statement, - [297075] = 3, + [296819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(8994), 1, anon_sym_LBRACE, - STATE(7958), 1, - sym_compound_statement, - [297085] = 3, + STATE(5428), 1, + sym_field_declaration_list, + [296829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - STATE(8333), 1, - sym_parameter_list, - [297095] = 3, + ACTIONS(7601), 1, + anon_sym_LBRACE, + STATE(4546), 1, + sym_field_declaration_list, + [296839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8920), 1, + ACTIONS(7601), 1, anon_sym_LBRACE, - STATE(5381), 1, + STATE(4537), 1, sym_field_declaration_list, - [297105] = 3, + [296849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13011), 1, + anon_sym_COMMA, + ACTIONS(13103), 1, + anon_sym_RBRACE, + [296859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8920), 1, + ACTIONS(6073), 1, anon_sym_LBRACE, - STATE(5382), 1, + STATE(2878), 1, sym_field_declaration_list, - [297115] = 3, + [296869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, - anon_sym_LPAREN2, - STATE(8567), 1, - sym_parenthesized_expression, - [297125] = 3, - ACTIONS(9761), 1, + ACTIONS(9550), 1, + anon_sym_LBRACE, + STATE(4906), 1, + sym_requirement_seq, + [296879] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13104), 1, + ACTIONS(13105), 1, aux_sym_preproc_include_token2, - ACTIONS(13106), 1, + ACTIONS(13107), 1, sym_preproc_arg, - [297135] = 3, + [296889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10759), 1, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + STATE(8215), 1, + sym_parameter_list, + [296899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10923), 1, anon_sym_RBRACE, - ACTIONS(12938), 1, + ACTIONS(13011), 1, anon_sym_COMMA, - [297145] = 3, + [296909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13108), 1, - sym_identifier, - STATE(2054), 1, - sym_template_type, - [297155] = 3, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(581), 1, + sym_declaration_list, + [296919] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(13109), 1, + aux_sym_preproc_include_token2, + ACTIONS(13111), 1, + sym_preproc_arg, + [296929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8966), 1, - anon_sym_LT, - STATE(2229), 1, - sym_template_argument_list, - [297165] = 3, + ACTIONS(12527), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [296937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13110), 1, - anon_sym_default, - ACTIONS(13112), 1, - anon_sym_delete, - [297175] = 3, + ACTIONS(10953), 1, + anon_sym_RBRACE, + ACTIONS(13011), 1, + anon_sym_COMMA, + [296947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, + ACTIONS(12012), 1, anon_sym_LBRACE, - STATE(530), 1, - sym_declaration_list, - [297185] = 3, + STATE(1997), 1, + sym_requirement_seq, + [296957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10868), 1, - anon_sym_RBRACE, - ACTIONS(12938), 1, - anon_sym_COMMA, - [297195] = 3, + ACTIONS(13043), 1, + anon_sym_LPAREN2, + STATE(9157), 1, + sym_parenthesized_expression, + [296967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5913), 1, + ACTIONS(9077), 1, anon_sym_LT, - STATE(1935), 1, + STATE(3008), 1, sym_template_argument_list, - [297205] = 3, + [296977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9463), 1, - anon_sym_LBRACE, - STATE(3800), 1, - sym_requirement_seq, - [297215] = 3, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(8539), 1, + sym_argument_list, + [296987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(379), 1, anon_sym_LBRACE, - STATE(7565), 1, + STATE(490), 1, sym_compound_statement, - [297225] = 3, + [296997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13040), 1, - anon_sym_LT, - STATE(2722), 1, - sym_template_argument_list, - [297235] = 3, + ACTIONS(5321), 1, + anon_sym_LBRACE, + STATE(2325), 1, + sym_field_declaration_list, + [297007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7258), 1, - anon_sym_LT, - STATE(4097), 1, - sym_template_argument_list, - [297245] = 3, - ACTIONS(9761), 1, + ACTIONS(13011), 1, + anon_sym_COMMA, + ACTIONS(13113), 1, + anon_sym_RBRACE, + [297017] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13114), 1, - aux_sym_preproc_include_token2, - ACTIONS(13116), 1, - sym_preproc_arg, - [297255] = 3, + ACTIONS(13011), 1, + anon_sym_COMMA, + ACTIONS(13115), 1, + anon_sym_RBRACE, + [297027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(8488), 1, - sym_argument_list, - [297265] = 3, + ACTIONS(13117), 1, + anon_sym_default, + ACTIONS(13119), 1, + anon_sym_delete, + [297037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10685), 1, + ACTIONS(9053), 1, + anon_sym_LT, + STATE(2943), 1, + sym_template_argument_list, + [297047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1888), 1, anon_sym_LBRACE, - STATE(2074), 1, + STATE(1106), 1, sym_compound_statement, - [297275] = 2, + [297057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8289), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [297283] = 3, + ACTIONS(9542), 1, + anon_sym_LBRACE, + STATE(3447), 1, + sym_requirement_seq, + [297067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, + ACTIONS(6579), 1, anon_sym_LBRACE, - STATE(1965), 1, - sym_requirement_seq, - [297293] = 3, + STATE(3548), 1, + sym_field_declaration_list, + [297077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2628), 1, + anon_sym_LBRACE, + STATE(4084), 1, + sym_initializer_list, + [297087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(9069), 1, anon_sym_LBRACE, - STATE(2340), 1, + STATE(5530), 1, sym_field_declaration_list, - [297303] = 3, + [297097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(7601), 1, anon_sym_LBRACE, - STATE(2341), 1, + STATE(4545), 1, sym_field_declaration_list, - [297313] = 3, + [297107] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(7919), 1, + STATE(7627), 1, sym_compound_statement, - [297323] = 3, + [297117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - STATE(8393), 1, - sym_condition_clause, - [297333] = 3, + STATE(9317), 1, + sym_argument_list, + [297127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, + ACTIONS(13121), 1, sym_identifier, - STATE(7908), 1, - sym_attribute, - [297343] = 3, + STATE(2173), 1, + sym_template_type, + [297137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, - anon_sym_LT, - STATE(4051), 1, - sym_template_argument_list, - [297353] = 3, + ACTIONS(9069), 1, + anon_sym_LBRACE, + STATE(5510), 1, + sym_field_declaration_list, + [297147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10573), 1, + ACTIONS(898), 1, anon_sym_LBRACE, - STATE(2488), 1, + STATE(586), 1, sym_compound_statement, - [297363] = 3, + [297157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13011), 1, + anon_sym_COMMA, + ACTIONS(13123), 1, + anon_sym_RBRACE, + [297167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + ACTIONS(13125), 1, + anon_sym_SEMI, + [297177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3886), 1, + anon_sym_LBRACE, + STATE(5278), 1, + sym_initializer_list, + [297187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13127), 1, + sym_identifier, + STATE(2696), 1, + sym_template_type, + [297197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, + ACTIONS(13129), 1, anon_sym_LPAREN2, - STATE(8405), 1, - sym_parenthesized_expression, - [297373] = 3, + ACTIONS(13131), 1, + sym_raw_string_delimiter, + [297207] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(7845), 1, + STATE(7716), 1, sym_compound_statement, - [297383] = 3, + [297217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13118), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(2718), 1, + STATE(4162), 1, sym_template_type, - [297393] = 3, + [297227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(291), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(278), 1, + STATE(994), 1, sym_compound_statement, - [297403] = 3, + [297237] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(13135), 1, + aux_sym_preproc_include_token2, + ACTIONS(13137), 1, + sym_preproc_arg, + [297247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(10771), 1, anon_sym_LBRACE, - STATE(4895), 1, - sym_initializer_list, - [297413] = 3, + STATE(2139), 1, + sym_compound_statement, + [297257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, + ACTIONS(13011), 1, anon_sym_COMMA, - ACTIONS(13120), 1, + ACTIONS(13139), 1, anon_sym_RBRACE, - [297423] = 3, - ACTIONS(9761), 1, + [297267] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13122), 1, + ACTIONS(13141), 1, aux_sym_preproc_include_token2, - ACTIONS(13124), 1, + ACTIONS(13143), 1, sym_preproc_arg, - [297433] = 3, + [297277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(12233), 1, anon_sym_LPAREN2, - STATE(8407), 1, - sym_parameter_list, - [297443] = 3, + STATE(8389), 1, + sym_condition_clause, + [297287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, - anon_sym_LPAREN2, - STATE(8439), 1, - sym_parenthesized_expression, - [297453] = 3, + ACTIONS(12975), 1, + sym_identifier, + STATE(7758), 1, + sym_attribute, + [297297] = 3, + ACTIONS(9808), 1, + sym_comment, + ACTIONS(13145), 1, + aux_sym_preproc_include_token2, + ACTIONS(13147), 1, + sym_preproc_arg, + [297307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(2384), 1, - sym_field_declaration_list, - [297463] = 3, + STATE(7389), 1, + sym_compound_statement, + [297317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6932), 1, - anon_sym_LBRACE, - STATE(4355), 1, - sym_field_declaration_list, - [297473] = 3, + ACTIONS(13011), 1, + anon_sym_COMMA, + ACTIONS(13149), 1, + anon_sym_RBRACE, + [297327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - ACTIONS(13126), 1, - anon_sym_SEMI, - [297483] = 3, + ACTIONS(7097), 1, + anon_sym_LBRACE, + STATE(4346), 1, + sym_field_declaration_list, + [297337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13128), 1, - anon_sym_default, - ACTIONS(13130), 1, - anon_sym_delete, - [297493] = 3, + ACTIONS(7097), 1, + anon_sym_LBRACE, + STATE(4368), 1, + sym_field_declaration_list, + [297347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13040), 1, + ACTIONS(12997), 1, anon_sym_LT, - STATE(3506), 1, + STATE(3794), 1, sym_template_argument_list, - [297503] = 3, + [297357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(998), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - STATE(748), 1, - sym_compound_statement, - [297513] = 3, + STATE(4358), 1, + sym_field_declaration_list, + [297367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, + ACTIONS(13043), 1, anon_sym_LPAREN2, - STATE(165), 1, - sym_condition_clause, - [297523] = 3, + STATE(8225), 1, + sym_parenthesized_expression, + [297377] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(7313), 1, + STATE(7848), 1, sym_compound_statement, - [297533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(8474), 1, - sym_argument_list, - [297543] = 3, + [297387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10573), 1, + ACTIONS(8994), 1, anon_sym_LBRACE, - STATE(2417), 1, - sym_compound_statement, - [297553] = 3, + STATE(5430), 1, + sym_field_declaration_list, + [297397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(291), 1, - anon_sym_LBRACE, - STATE(251), 1, - sym_compound_statement, - [297563] = 3, + ACTIONS(13151), 1, + anon_sym_LPAREN2, + ACTIONS(13153), 1, + sym_raw_string_delimiter, + [297407] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(7775), 1, + STATE(7920), 1, sym_compound_statement, - [297573] = 3, + [297417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + STATE(8198), 1, + sym_parameter_list, + [297427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6182), 1, + ACTIONS(6579), 1, anon_sym_LBRACE, - STATE(3021), 1, + STATE(3451), 1, sym_field_declaration_list, - [297583] = 3, + [297437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, + ACTIONS(13043), 1, anon_sym_LPAREN2, - STATE(201), 1, - sym_condition_clause, - [297593] = 3, + STATE(9025), 1, + sym_parenthesized_expression, + [297447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, + ACTIONS(12451), 2, anon_sym_COMMA, - ACTIONS(13132), 1, - anon_sym_RBRACE, - [297603] = 3, + anon_sym_LBRACE, + [297455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, + ACTIONS(12233), 1, anon_sym_LPAREN2, - STATE(227), 1, + STATE(214), 1, sym_condition_clause, - [297613] = 3, + [297465] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(612), 1, + STATE(773), 1, sym_compound_statement, - [297623] = 3, + [297475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4654), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [297483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, + ACTIONS(12233), 1, anon_sym_LPAREN2, - STATE(8362), 1, + STATE(8424), 1, sym_condition_clause, - [297633] = 3, + [297493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(998), 1, + ACTIONS(10717), 1, anon_sym_LBRACE, - STATE(622), 1, + STATE(2488), 1, sym_compound_statement, - [297643] = 3, + [297503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, - sym_identifier, - STATE(7766), 1, - sym_attribute, - [297653] = 3, + ACTIONS(7323), 1, + anon_sym_LBRACE, + STATE(4366), 1, + sym_field_declaration_list, + [297513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13155), 1, + anon_sym_default, + ACTIONS(13157), 1, + anon_sym_delete, + [297523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(998), 1, + ACTIONS(1112), 1, anon_sym_LBRACE, - STATE(845), 1, + STATE(836), 1, sym_compound_statement, - [297663] = 3, - ACTIONS(9761), 1, + [297533] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13134), 1, - aux_sym_preproc_include_token2, - ACTIONS(13136), 1, - sym_preproc_arg, - [297673] = 3, + ACTIONS(1112), 1, + anon_sym_LBRACE, + STATE(635), 1, + sym_compound_statement, + [297543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(1888), 1, anon_sym_LBRACE, - STATE(990), 1, + STATE(1119), 1, sym_compound_statement, - [297683] = 3, - ACTIONS(9761), 1, + [297553] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13138), 1, - aux_sym_preproc_include_token2, - ACTIONS(13140), 1, - sym_preproc_arg, - [297693] = 3, + ACTIONS(13159), 1, + sym_identifier, + ACTIONS(13161), 1, + anon_sym_RPAREN, + [297563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, + ACTIONS(12233), 1, anon_sym_LPAREN2, - STATE(8334), 1, - sym_parenthesized_expression, - [297703] = 3, + STATE(191), 1, + sym_condition_clause, + [297573] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(7692), 1, + STATE(781), 1, sym_compound_statement, - [297713] = 3, + [297583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, - sym_identifier, - STATE(7887), 1, - sym_attribute, - [297723] = 3, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + [297593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(5299), 1, - sym_initializer_list, - [297733] = 3, + STATE(7536), 1, + sym_compound_statement, + [297603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(379), 1, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(8968), 1, + sym_argument_list, + [297613] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12403), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [297621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10691), 1, anon_sym_LBRACE, - STATE(351), 1, + STATE(2289), 1, sym_compound_statement, - [297743] = 3, + [297631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - STATE(8195), 1, - sym_condition_clause, - [297753] = 3, + ACTIONS(13065), 1, + anon_sym_LT, + STATE(4055), 1, + sym_template_argument_list, + [297641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(7827), 1, anon_sym_LPAREN2, - STATE(8352), 1, - sym_parameter_list, - [297763] = 3, + STATE(8524), 1, + sym_argument_list, + [297651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, + ACTIONS(13163), 1, anon_sym_LPAREN2, - STATE(167), 1, - sym_condition_clause, - [297773] = 3, + ACTIONS(13165), 1, + sym_raw_string_delimiter, + [297661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13142), 1, + ACTIONS(13167), 1, sym_identifier, - STATE(2887), 1, + STATE(2188), 1, sym_template_type, - [297783] = 3, + [297671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, - anon_sym_LPAREN2, - STATE(8582), 1, - sym_parenthesized_expression, - [297793] = 3, + ACTIONS(7323), 1, + anon_sym_LBRACE, + STATE(4361), 1, + sym_field_declaration_list, + [297681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13144), 1, - anon_sym_default, - ACTIONS(13146), 1, - anon_sym_delete, - [297803] = 3, + ACTIONS(7323), 1, + anon_sym_LBRACE, + STATE(4363), 1, + sym_field_declaration_list, + [297691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8336), 1, + anon_sym_RBRACK, + ACTIONS(13169), 1, + anon_sym_COMMA, + [297701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12975), 1, + sym_identifier, + STATE(7766), 1, + sym_attribute, + [297711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5951), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + [297721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10905), 1, + anon_sym_RBRACE, + ACTIONS(13011), 1, + anon_sym_COMMA, + [297731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 1, + ACTIONS(12376), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(1044), 1, - sym_declaration_list, - [297813] = 3, + [297739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(13041), 1, + anon_sym_LT, + STATE(2743), 1, + sym_template_argument_list, + [297749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11804), 1, + anon_sym_COLON_COLON, + ACTIONS(13171), 1, + anon_sym_SEMI, + [297759] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(291), 1, anon_sym_LBRACE, - STATE(7859), 1, + STATE(269), 1, sym_compound_statement, - [297823] = 3, + [297769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, + ACTIONS(13173), 1, + anon_sym_LPAREN2, + ACTIONS(13175), 1, + sym_raw_string_delimiter, + [297779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6596), 1, + anon_sym_LT, + STATE(3038), 1, + sym_template_argument_list, + [297789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9534), 1, anon_sym_LBRACE, - STATE(3042), 1, - sym_field_declaration_list, - [297833] = 3, + STATE(4116), 1, + sym_requirement_seq, + [297799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13177), 1, + anon_sym_LPAREN2, + ACTIONS(13179), 1, + sym_raw_string_delimiter, + [297809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9579), 1, + anon_sym_LBRACE, + STATE(4856), 1, + sym_requirement_seq, + [297819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(998), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(616), 1, + STATE(8031), 1, sym_compound_statement, - [297843] = 3, + [297829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(1112), 1, anon_sym_LBRACE, - STATE(915), 1, - sym_declaration_list, - [297853] = 3, + STATE(860), 1, + sym_compound_statement, + [297839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, + ACTIONS(12233), 1, anon_sym_LPAREN2, - STATE(175), 1, + STATE(165), 1, sym_condition_clause, - [297863] = 3, + [297849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6182), 1, + ACTIONS(6220), 1, anon_sym_LBRACE, - STATE(3055), 1, + STATE(3101), 1, sym_field_declaration_list, - [297873] = 3, + [297859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(3054), 1, - sym_field_declaration_list, - [297883] = 3, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(8057), 1, + sym_condition_clause, + [297869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13148), 1, - sym_identifier, - STATE(3123), 1, - sym_template_type, - [297893] = 2, + ACTIONS(13043), 1, + anon_sym_LPAREN2, + STATE(8822), 1, + sym_parenthesized_expression, + [297879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12832), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [297901] = 3, + ACTIONS(12975), 1, + sym_identifier, + STATE(8011), 1, + sym_attribute, + [297889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10822), 1, - anon_sym_RBRACE, - ACTIONS(12938), 1, + ACTIONS(13011), 1, anon_sym_COMMA, - [297911] = 3, + ACTIONS(13181), 1, + anon_sym_RBRACE, + [297899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(7323), 1, anon_sym_LBRACE, - STATE(7535), 1, - sym_compound_statement, - [297921] = 3, - ACTIONS(3), 1, + STATE(4381), 1, + sym_field_declaration_list, + [297909] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(7724), 1, - anon_sym_LPAREN2, - STATE(8634), 1, - sym_argument_list, - [297931] = 3, + ACTIONS(13183), 1, + aux_sym_preproc_include_token2, + ACTIONS(13185), 1, + sym_preproc_arg, + [297919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9492), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(4826), 1, - sym_requirement_seq, - [297941] = 3, + STATE(707), 1, + sym_compound_statement, + [297929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12996), 1, + ACTIONS(12957), 1, anon_sym_LT, - STATE(2051), 1, + STATE(2172), 1, sym_template_argument_list, - [297951] = 3, + [297939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, + ACTIONS(8354), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [297947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13187), 1, anon_sym_LPAREN2, - STATE(8867), 1, - sym_argument_list, - [297961] = 3, + ACTIONS(13189), 1, + sym_raw_string_delimiter, + [297957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(13191), 1, + anon_sym_LPAREN2, + ACTIONS(13193), 1, + sym_raw_string_delimiter, + [297967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12330), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [297975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 1, anon_sym_LBRACE, - STATE(7293), 1, + STATE(779), 1, sym_compound_statement, - [297971] = 3, + [297985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, + ACTIONS(13043), 1, anon_sym_LPAREN2, - STATE(183), 1, - sym_condition_clause, - [297981] = 3, + STATE(8099), 1, + sym_parenthesized_expression, + [297995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(379), 1, + ACTIONS(13195), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(588), 1, - sym_compound_statement, - [297991] = 3, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(13150), 1, - aux_sym_preproc_include_token2, - ACTIONS(13152), 1, - sym_preproc_arg, - [298001] = 3, + [298003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13154), 1, + ACTIONS(13197), 1, sym_identifier, - STATE(3123), 1, + STATE(5368), 1, sym_template_type, - [298011] = 3, + [298013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(998), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - STATE(881), 1, + STATE(406), 1, sym_compound_statement, - [298021] = 3, - ACTIONS(9761), 1, + [298023] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13156), 1, - aux_sym_preproc_include_token2, - ACTIONS(13158), 1, - sym_preproc_arg, + ACTIONS(12320), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, [298031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9447), 1, - anon_sym_LBRACE, - STATE(3995), 1, - sym_requirement_seq, + ACTIONS(13199), 1, + anon_sym_LPAREN2, + ACTIONS(13201), 1, + sym_raw_string_delimiter, [298041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(8994), 1, anon_sym_LBRACE, - STATE(7607), 1, - sym_compound_statement, + STATE(5426), 1, + sym_field_declaration_list, [298051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(7631), 1, - sym_compound_statement, + ACTIONS(13043), 1, + anon_sym_LPAREN2, + STATE(8148), 1, + sym_parenthesized_expression, [298061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, + ACTIONS(13203), 1, anon_sym_LPAREN2, - STATE(8168), 1, - sym_parameter_list, + ACTIONS(13205), 1, + sym_raw_string_delimiter, [298071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13160), 1, - anon_sym_default, - ACTIONS(13162), 1, - anon_sym_delete, + ACTIONS(12997), 1, + anon_sym_LT, + STATE(3842), 1, + sym_template_argument_list, [298081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13164), 1, - anon_sym_LT, - STATE(2931), 1, - sym_template_argument_list, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(7894), 1, + sym_compound_statement, [298091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6875), 1, - anon_sym_LT, - STATE(2722), 1, - sym_template_argument_list, + ACTIONS(10955), 1, + anon_sym_RBRACE, + ACTIONS(13011), 1, + anon_sym_COMMA, [298101] = 3, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - STATE(225), 1, - sym_condition_clause, + ACTIONS(13207), 1, + aux_sym_preproc_include_token2, + ACTIONS(13209), 1, + sym_preproc_arg, [298111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - anon_sym_LBRACE, - STATE(882), 1, - sym_declaration_list, + ACTIONS(8445), 1, + anon_sym_RPAREN, + ACTIONS(8447), 1, + anon_sym_SEMI, [298121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12170), 1, - anon_sym_LPAREN2, - STATE(8271), 1, - sym_condition_clause, + ACTIONS(6579), 1, + anon_sym_LBRACE, + STATE(3474), 1, + sym_field_declaration_list, [298131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, - sym_identifier, - STATE(7621), 1, - sym_attribute, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(169), 1, + sym_condition_clause, [298141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1888), 1, - anon_sym_LBRACE, - STATE(1147), 1, - sym_compound_statement, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + STATE(8171), 1, + sym_parameter_list, [298151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6182), 1, - anon_sym_LBRACE, - STATE(3132), 1, - sym_field_declaration_list, + ACTIONS(13043), 1, + anon_sym_LPAREN2, + STATE(8741), 1, + sym_parenthesized_expression, [298161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10876), 1, + ACTIONS(10951), 1, anon_sym_RBRACE, - ACTIONS(12938), 1, + ACTIONS(13011), 1, anon_sym_COMMA, [298171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, - anon_sym_LBRACE, - STATE(3122), 1, - sym_field_declaration_list, + ACTIONS(10957), 1, + anon_sym_RBRACE, + ACTIONS(13011), 1, + anon_sym_COMMA, [298181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, - anon_sym_LPAREN2, - STATE(8799), 1, - sym_parenthesized_expression, + ACTIONS(12975), 1, + sym_identifier, + STATE(7638), 1, + sym_attribute, [298191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_LPAREN2, - STATE(8223), 1, - sym_parameter_list, + ACTIONS(13211), 1, + anon_sym_default, + ACTIONS(13213), 1, + anon_sym_delete, [298201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13166), 1, - sym_identifier, - STATE(2946), 1, - sym_template_type, + ACTIONS(6579), 1, + anon_sym_LBRACE, + STATE(3476), 1, + sym_field_declaration_list, [298211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2298), 1, - anon_sym_LBRACE, - STATE(4096), 1, - sym_initializer_list, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(8433), 1, + sym_condition_clause, [298221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(2148), 1, anon_sym_LBRACE, - STATE(7719), 1, - sym_compound_statement, - [298231] = 2, + STATE(2829), 1, + sym_initializer_list, + [298231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12387), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [298239] = 3, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(223), 1, + sym_condition_clause, + [298241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13002), 1, + ACTIONS(13215), 1, anon_sym_LPAREN2, - STATE(8234), 1, - sym_parenthesized_expression, - [298249] = 3, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(13168), 1, - aux_sym_preproc_include_token2, - ACTIONS(13170), 1, - sym_preproc_arg, - [298259] = 3, + ACTIONS(13217), 1, + sym_raw_string_delimiter, + [298251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(379), 1, + ACTIONS(1888), 1, anon_sym_LBRACE, - STATE(480), 1, + STATE(1108), 1, sym_compound_statement, - [298269] = 3, + [298261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11638), 1, - anon_sym_COLON_COLON, - ACTIONS(13172), 1, - anon_sym_SEMI, - [298279] = 3, + ACTIONS(13219), 1, + anon_sym_LPAREN2, + ACTIONS(13221), 1, + sym_raw_string_delimiter, + [298271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(998), 1, - anon_sym_LBRACE, - STATE(593), 1, - sym_compound_statement, - [298289] = 3, + ACTIONS(13223), 1, + anon_sym_LPAREN2, + ACTIONS(13225), 1, + sym_raw_string_delimiter, + [298281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(3106), 1, - sym_field_declaration_list, - [298299] = 3, + STATE(7639), 1, + sym_compound_statement, + [298291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, - anon_sym_COMMA, - ACTIONS(13174), 1, - anon_sym_RBRACE, - [298309] = 3, + ACTIONS(13227), 1, + anon_sym_LPAREN2, + ACTIONS(13229), 1, + sym_raw_string_delimiter, + [298301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(379), 1, - anon_sym_LBRACE, - STATE(488), 1, - sym_compound_statement, - [298319] = 3, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(188), 1, + sym_condition_clause, + [298311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(379), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(514), 1, + STATE(7478), 1, sym_compound_statement, - [298329] = 3, + [298321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13040), 1, - anon_sym_LT, - STATE(3502), 1, - sym_template_argument_list, - [298339] = 3, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(8686), 1, + sym_argument_list, + [298331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13176), 1, + ACTIONS(13231), 1, sym_identifier, - STATE(2054), 1, + STATE(2909), 1, sym_template_type, - [298349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7258), 1, - anon_sym_LT, - STATE(1935), 1, - sym_template_argument_list, - [298359] = 2, + [298341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13178), 1, + ACTIONS(13233), 1, sym_identifier, - [298366] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13180), 1, - anon_sym_RPAREN, - [298373] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13182), 1, - anon_sym_SEMI, - [298380] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8544), 1, - anon_sym_SEMI, - [298387] = 2, + STATE(3163), 1, + sym_template_type, + [298351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13184), 1, + ACTIONS(13235), 1, sym_identifier, - [298394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13186), 1, - anon_sym_LPAREN2, - [298401] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13188), 1, - anon_sym_RPAREN, - [298408] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13190), 1, - anon_sym_RPAREN, - [298415] = 2, + STATE(3163), 1, + sym_template_type, + [298361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13192), 1, - sym_identifier, - [298422] = 2, + ACTIONS(13237), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [298369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13194), 1, - anon_sym_DQUOTE, - [298429] = 2, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(7792), 1, + sym_compound_statement, + [298379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13196), 1, - anon_sym_SEMI, - [298436] = 2, + ACTIONS(6220), 1, + anon_sym_LBRACE, + STATE(3064), 1, + sym_field_declaration_list, + [298389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13198), 1, - anon_sym_SEMI, - [298443] = 2, + ACTIONS(6220), 1, + anon_sym_LBRACE, + STATE(3058), 1, + sym_field_declaration_list, + [298399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13200), 1, - anon_sym_RPAREN, - [298450] = 2, + ACTIONS(7457), 1, + anon_sym_LT, + STATE(4129), 1, + sym_template_argument_list, + [298409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13202), 1, - anon_sym_RPAREN, - [298457] = 2, + ACTIONS(6375), 1, + anon_sym_LBRACE, + STATE(3166), 1, + sym_field_declaration_list, + [298419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13204), 1, - aux_sym_preproc_if_token2, - [298464] = 2, + ACTIONS(7827), 1, + anon_sym_LPAREN2, + STATE(8483), 1, + sym_argument_list, + [298429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13206), 1, - anon_sym_DQUOTE, - [298471] = 2, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(7445), 1, + sym_compound_statement, + [298439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10673), 1, - anon_sym_RPAREN, - [298478] = 2, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(216), 1, + sym_condition_clause, + [298449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13208), 1, - anon_sym_SEMI, - [298485] = 2, + ACTIONS(10941), 1, + anon_sym_RBRACE, + ACTIONS(13011), 1, + anon_sym_COMMA, + [298459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13210), 1, + ACTIONS(13239), 1, + anon_sym_LPAREN2, + ACTIONS(13241), 1, sym_raw_string_delimiter, - [298492] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13212), 1, - anon_sym_SEMI, - [298499] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13214), 1, - anon_sym_SEMI, - [298506] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13216), 1, - anon_sym_RPAREN, - [298513] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13218), 1, - anon_sym_RPAREN, - [298520] = 2, + [298469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13220), 1, - anon_sym_RPAREN, - [298527] = 2, + ACTIONS(5102), 1, + anon_sym_LBRACE, + STATE(361), 1, + sym_declaration_list, + [298479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13222), 1, - anon_sym_SEMI, - [298534] = 2, + ACTIONS(13243), 1, + anon_sym_default, + ACTIONS(13245), 1, + anon_sym_delete, + [298489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13224), 1, - anon_sym_RPAREN, - [298541] = 2, + ACTIONS(13247), 1, + anon_sym_LPAREN2, + ACTIONS(13249), 1, + sym_raw_string_delimiter, + [298499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13226), 1, - anon_sym_SEMI, - [298548] = 2, + ACTIONS(13251), 1, + anon_sym_LPAREN2, + ACTIONS(13253), 1, + sym_raw_string_delimiter, + [298509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13228), 1, - anon_sym_RPAREN, - [298555] = 2, + ACTIONS(13255), 1, + anon_sym_LPAREN2, + ACTIONS(13257), 1, + sym_raw_string_delimiter, + [298519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13174), 1, - anon_sym_RBRACE, - [298562] = 2, + ACTIONS(13043), 1, + anon_sym_LPAREN2, + STATE(8587), 1, + sym_parenthesized_expression, + [298529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13230), 1, - anon_sym_RPAREN, - [298569] = 2, + ACTIONS(9650), 1, + anon_sym_LPAREN2, + STATE(8339), 1, + sym_parameter_list, + [298539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13232), 1, - aux_sym_preproc_if_token2, - [298576] = 2, + ACTIONS(13259), 1, + anon_sym_LPAREN2, + ACTIONS(13261), 1, + sym_raw_string_delimiter, + [298549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13234), 1, - aux_sym_preproc_if_token2, - [298583] = 2, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(13236), 1, - aux_sym_preproc_include_token2, - [298590] = 2, - ACTIONS(9761), 1, + ACTIONS(7113), 1, + anon_sym_LT, + STATE(4129), 1, + sym_template_argument_list, + [298559] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13238), 1, + ACTIONS(13263), 1, aux_sym_preproc_include_token2, - [298597] = 2, + ACTIONS(13265), 1, + sym_preproc_arg, + [298569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13240), 1, - sym_auto, - [298604] = 2, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(7720), 1, + sym_compound_statement, + [298579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13242), 1, - anon_sym_RPAREN, - [298611] = 2, + ACTIONS(13267), 1, + anon_sym_LPAREN2, + ACTIONS(13269), 1, + sym_raw_string_delimiter, + [298589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13244), 1, - anon_sym_SEMI, - [298618] = 2, + ACTIONS(13271), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [298597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13246), 1, - anon_sym_SEMI, - [298625] = 2, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(601), 1, + sym_compound_statement, + [298607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11566), 1, - anon_sym_SEMI, - [298632] = 2, + ACTIONS(13043), 1, + anon_sym_LPAREN2, + STATE(8320), 1, + sym_parenthesized_expression, + [298617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13248), 1, - anon_sym_SEMI, - [298639] = 2, + ACTIONS(291), 1, + anon_sym_LBRACE, + STATE(394), 1, + sym_compound_statement, + [298627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13250), 1, - sym_identifier, - [298646] = 2, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(217), 1, + sym_condition_clause, + [298637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13252), 1, - anon_sym_SEMI, - [298653] = 2, - ACTIONS(9761), 1, - sym_comment, - ACTIONS(13254), 1, - aux_sym_preproc_include_token2, - [298660] = 2, + ACTIONS(9566), 1, + anon_sym_LBRACE, + STATE(2842), 1, + sym_requirement_seq, + [298647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, - anon_sym_RPAREN, - [298667] = 2, + ACTIONS(10691), 1, + anon_sym_LBRACE, + STATE(2283), 1, + sym_compound_statement, + [298657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13258), 1, - anon_sym_RPAREN, - [298674] = 2, + ACTIONS(5102), 1, + anon_sym_LBRACE, + STATE(414), 1, + sym_declaration_list, + [298667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13260), 1, - anon_sym_RPAREN, - [298681] = 2, + ACTIONS(9069), 1, + anon_sym_LBRACE, + STATE(5523), 1, + sym_field_declaration_list, + [298677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13262), 1, - sym_identifier, - [298688] = 2, + ACTIONS(13011), 1, + anon_sym_COMMA, + ACTIONS(13273), 1, + anon_sym_RBRACE, + [298687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13264), 1, - sym_identifier, - [298695] = 2, + ACTIONS(291), 1, + anon_sym_LBRACE, + STATE(318), 1, + sym_compound_statement, + [298697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13266), 1, - anon_sym_SEMI, - [298702] = 2, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(186), 1, + sym_condition_clause, + [298707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13268), 1, - anon_sym_SEMI, - [298709] = 2, + ACTIONS(6220), 1, + anon_sym_LBRACE, + STATE(3152), 1, + sym_field_declaration_list, + [298717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13270), 1, + ACTIONS(6375), 1, anon_sym_LBRACE, - [298716] = 2, + STATE(3207), 1, + sym_field_declaration_list, + [298727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13272), 1, + ACTIONS(13275), 1, sym_identifier, - [298723] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10876), 1, - anon_sym_RBRACE, - [298730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8369), 1, - anon_sym_RBRACE, - [298737] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8562), 1, - anon_sym_SEMI, - [298744] = 2, + STATE(2188), 1, + sym_template_type, + [298737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13274), 1, - anon_sym_SEMI, - [298751] = 2, - ACTIONS(3), 1, + ACTIONS(7457), 1, + anon_sym_LT, + STATE(1974), 1, + sym_template_argument_list, + [298747] = 3, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13276), 1, - anon_sym_RPAREN, - [298758] = 2, + ACTIONS(13277), 1, + aux_sym_preproc_include_token2, + ACTIONS(13279), 1, + sym_preproc_arg, + [298757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13278), 1, + ACTIONS(12975), 1, sym_identifier, - [298765] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13280), 1, - sym_raw_string_content, - [298772] = 2, + STATE(7786), 1, + sym_attribute, + [298767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13282), 1, - anon_sym_RPAREN, - [298779] = 2, + ACTIONS(10717), 1, + anon_sym_LBRACE, + STATE(2615), 1, + sym_compound_statement, + [298777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13284), 1, + ACTIONS(12233), 1, anon_sym_LPAREN2, - [298786] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7347), 1, - sym_identifier, - [298793] = 2, + STATE(8261), 1, + sym_condition_clause, + [298787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13286), 1, - aux_sym_preproc_if_token2, - [298800] = 2, + ACTIONS(7097), 1, + anon_sym_LBRACE, + STATE(4376), 1, + sym_field_declaration_list, + [298797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11146), 1, - anon_sym_SEMI, + ACTIONS(12233), 1, + anon_sym_LPAREN2, + STATE(206), 1, + sym_condition_clause, [298807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11975), 1, - anon_sym_SEMI, + ACTIONS(13281), 1, + anon_sym_RPAREN, [298814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13288), 1, - anon_sym_STAR, + ACTIONS(13283), 1, + anon_sym_RPAREN, [298821] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13290), 1, - aux_sym_preproc_include_token2, + ACTIONS(13285), 1, + anon_sym_SEMI, [298828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13292), 1, - sym_auto, + ACTIONS(13287), 1, + anon_sym_RPAREN, [298835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13294), 1, - anon_sym_RPAREN, + ACTIONS(10941), 1, + anon_sym_RBRACE, [298842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13296), 1, - anon_sym_STAR, + ACTIONS(13289), 1, + anon_sym_CARET, [298849] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13298), 1, - aux_sym_preproc_include_token2, + ACTIONS(13289), 1, + anon_sym_GT_EQ, [298856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13300), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_LT_EQ, [298863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13302), 1, - sym_identifier, + ACTIONS(13291), 1, + anon_sym_COLON, [298870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13304), 1, - anon_sym_RPAREN, + ACTIONS(13289), 1, + anon_sym_LT, [298877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8275), 1, - anon_sym_RBRACE, + ACTIONS(13293), 1, + sym_identifier, [298884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10822), 1, - anon_sym_RBRACE, + ACTIONS(13295), 1, + sym_identifier, [298891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11165), 1, + ACTIONS(13297), 1, anon_sym_SEMI, [298898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13306), 1, - anon_sym_STAR, + ACTIONS(13299), 1, + anon_sym_RPAREN, [298905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7069), 1, - sym_identifier, + ACTIONS(13301), 1, + anon_sym_while, [298912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13308), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_LT_LT, [298919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8590), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_GT_GT, [298926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13310), 1, - anon_sym_RPAREN, + ACTIONS(11248), 1, + anon_sym_SEMI, [298933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12504), 1, - anon_sym_COLON_COLON, + ACTIONS(10713), 1, + anon_sym_RPAREN, [298940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13312), 1, - anon_sym_RPAREN, + ACTIONS(8479), 1, + anon_sym_RBRACE, [298947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8604), 1, - anon_sym_SEMI, + ACTIONS(13303), 1, + sym_raw_string_delimiter, [298954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13314), 1, - anon_sym_LPAREN2, + ACTIONS(13305), 1, + anon_sym_RPAREN, [298961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13316), 1, - anon_sym_SEMI, + ACTIONS(13307), 1, + anon_sym_RPAREN, [298968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13318), 1, - sym_identifier, + ACTIONS(13309), 1, + anon_sym_RPAREN, [298975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13320), 1, - anon_sym_RPAREN, + ACTIONS(7095), 1, + sym_identifier, [298982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13322), 1, + ACTIONS(8825), 1, anon_sym_RPAREN, [298989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13324), 1, - sym_identifier, + ACTIONS(13289), 1, + anon_sym_STAR_EQ, [298996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13326), 1, - anon_sym_RPAREN, + ACTIONS(13289), 1, + anon_sym_SLASH_EQ, [299003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13328), 1, + ACTIONS(13311), 1, anon_sym_RPAREN, [299010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13330), 1, + ACTIONS(13313), 1, anon_sym_RPAREN, [299017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13332), 1, - anon_sym_RPAREN, + ACTIONS(13289), 1, + anon_sym_PERCENT_EQ, [299024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13334), 1, - anon_sym_RPAREN, + ACTIONS(13315), 1, + anon_sym_SEMI, [299031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13336), 1, - sym_identifier, + ACTIONS(8709), 1, + anon_sym_SEMI, [299038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13338), 1, - anon_sym_COLON, + ACTIONS(13289), 1, + anon_sym_PLUS_EQ, [299045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13340), 1, + ACTIONS(13317), 1, sym_identifier, [299052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10346), 1, - sym_identifier, + ACTIONS(13289), 1, + anon_sym_DASH_EQ, [299059] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(12416), 1, - aux_sym_preproc_include_token2, + ACTIONS(13289), 1, + anon_sym_AMP, [299066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13342), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_PIPE, [299073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13344), 1, - anon_sym_LPAREN2, + ACTIONS(13319), 1, + anon_sym_RPAREN, [299080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13346), 1, - anon_sym_RPAREN, + ACTIONS(13289), 1, + anon_sym_LT_LT_EQ, [299087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13348), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_GT_GT_EQ, [299094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13350), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_AMP_EQ, [299101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13352), 1, - anon_sym_COLON, + ACTIONS(13321), 1, + anon_sym_LPAREN2, [299108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13354), 1, + ACTIONS(11890), 1, anon_sym_SEMI, [299115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13356), 1, + ACTIONS(8711), 1, anon_sym_SEMI, [299122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11102), 1, + ACTIONS(13323), 1, anon_sym_SEMI, [299129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13358), 1, - sym_auto, + ACTIONS(13289), 1, + anon_sym_CARET_EQ, [299136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13360), 1, - anon_sym_EQ, + ACTIONS(13289), 1, + anon_sym_EQ_EQ, [299143] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9993), 1, - aux_sym_preproc_include_token2, + ACTIONS(13325), 1, + sym_identifier, [299150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13362), 1, + ACTIONS(13327), 1, sym_identifier, [299157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13364), 1, - sym_identifier, + ACTIONS(13289), 1, + anon_sym_PIPE_EQ, [299164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8518), 1, - anon_sym_SEMI, + ACTIONS(13329), 1, + sym_identifier, [299171] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13366), 1, - aux_sym_preproc_include_token2, + ACTIONS(13331), 1, + anon_sym_RPAREN, [299178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13368), 1, - anon_sym_RPAREN, + ACTIONS(13289), 1, + anon_sym_or, [299185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13370), 1, - anon_sym_SEMI, + ACTIONS(13333), 1, + aux_sym_preproc_if_token2, [299192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10712), 1, - anon_sym_RPAREN, + ACTIONS(13289), 1, + anon_sym_BANG_EQ, [299199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13372), 1, - anon_sym_SEMI, + ACTIONS(13335), 1, + anon_sym_LPAREN2, [299206] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13374), 1, - sym_raw_string_delimiter, + ACTIONS(13337), 1, + aux_sym_preproc_include_token2, [299213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13376), 1, - anon_sym_RPAREN, + ACTIONS(13339), 1, + sym_identifier, [299220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13378), 1, - anon_sym_while, + ACTIONS(8681), 1, + anon_sym_SEMI, [299227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13380), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_PIPE_PIPE, [299234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13382), 1, - anon_sym_SEMI, + ACTIONS(8414), 1, + anon_sym_RBRACE, [299241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13384), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_AMP_AMP, [299248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13386), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_and, [299255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13388), 1, - aux_sym_preproc_if_token2, + ACTIONS(13289), 1, + anon_sym_bitor, [299262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13390), 1, - anon_sym_DQUOTE, + ACTIONS(13341), 1, + anon_sym_RPAREN, [299269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13392), 1, - sym_identifier, + ACTIONS(13343), 1, + anon_sym_STAR, [299276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13394), 1, - sym_identifier, + ACTIONS(13345), 1, + aux_sym_preproc_if_token2, [299283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13396), 1, - anon_sym_SEMI, + ACTIONS(13347), 1, + anon_sym_RPAREN, [299290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13398), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_PERCENT, [299297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13400), 1, - sym_identifier, + ACTIONS(13349), 1, + anon_sym_RPAREN, [299304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13402), 1, - anon_sym_SEMI, + ACTIONS(6781), 1, + anon_sym_RPAREN, [299311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13404), 1, - anon_sym_SEMI, + ACTIONS(13351), 1, + anon_sym_RPAREN, [299318] = 2, - ACTIONS(9761), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13406), 1, + ACTIONS(13353), 1, aux_sym_preproc_include_token2, [299325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13408), 1, - anon_sym_LPAREN2, + ACTIONS(13355), 1, + anon_sym_RPAREN, [299332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13132), 1, - anon_sym_RBRACE, + ACTIONS(13357), 1, + anon_sym_STAR, [299339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13410), 1, - sym_identifier, + ACTIONS(13359), 1, + anon_sym_RPAREN, [299346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13412), 1, - aux_sym_preproc_if_token2, + ACTIONS(13289), 1, + anon_sym_xor, [299353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13414), 1, - sym_raw_string_content, + ACTIONS(10957), 1, + anon_sym_RBRACE, [299360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13416), 1, - anon_sym_SEMI, + ACTIONS(13361), 1, + anon_sym_STAR, [299367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13418), 1, + ACTIONS(13363), 1, anon_sym_RPAREN, [299374] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13420), 1, - aux_sym_preproc_if_token2, + ACTIONS(12297), 1, + aux_sym_preproc_include_token2, [299381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13422), 1, - aux_sym_preproc_if_token2, + ACTIONS(13289), 1, + anon_sym_bitand, [299388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13424), 1, - anon_sym_STAR, + ACTIONS(13365), 1, + sym_identifier, [299395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_EQ, [299402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13428), 1, - anon_sym_RPAREN, + ACTIONS(13367), 1, + anon_sym_SLASH, [299409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13430), 1, - anon_sym_SEMI, + ACTIONS(13369), 1, + anon_sym_LPAREN2, [299416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13432), 1, - aux_sym_preproc_if_token2, + ACTIONS(13289), 1, + anon_sym_not_eq, [299423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13434), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_DOT_STAR, [299430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13436), 1, - anon_sym_RPAREN, + ACTIONS(13289), 1, + anon_sym_STAR, [299437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13438), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_DASH_GT_STAR, [299444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13440), 1, - anon_sym_SEMI, + ACTIONS(13371), 1, + sym_identifier, [299451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13442), 1, - aux_sym_preproc_if_token2, + ACTIONS(10951), 1, + anon_sym_RBRACE, [299458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13444), 1, - anon_sym_DQUOTE, + ACTIONS(13373), 1, + anon_sym_RPAREN, [299465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13446), 1, - anon_sym_DQUOTE, + ACTIONS(13375), 1, + anon_sym_RPAREN, [299472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13448), 1, - anon_sym_SEMI, + ACTIONS(13377), 1, + anon_sym_RPAREN, [299479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13450), 1, - anon_sym_SEMI, + ACTIONS(13379), 1, + anon_sym_RPAREN, [299486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13452), 1, - anon_sym_SEMI, + ACTIONS(13381), 1, + sym_identifier, [299493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13454), 1, - anon_sym_RPAREN, + ACTIONS(13383), 1, + anon_sym_SEMI, [299500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13456), 1, + ACTIONS(11894), 1, anon_sym_SEMI, [299507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13458), 1, - anon_sym_LPAREN2, + ACTIONS(13385), 1, + anon_sym_SEMI, [299514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11949), 1, - anon_sym_SEMI, + ACTIONS(13387), 1, + sym_identifier, [299521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13460), 1, - anon_sym_RPAREN, + ACTIONS(13389), 1, + anon_sym_COLON, [299528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13462), 1, - anon_sym_SEMI, + ACTIONS(13391), 1, + sym_identifier, [299535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13464), 1, - anon_sym_SEMI, + ACTIONS(13393), 1, + anon_sym_RPAREN, [299542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13466), 1, - anon_sym_DQUOTE, + ACTIONS(13289), 1, + anon_sym_GT, [299549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13468), 1, - anon_sym_SEMI, + ACTIONS(13289), 1, + anon_sym_PLUS, [299556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13470), 1, - anon_sym_RPAREN, + ACTIONS(13395), 1, + anon_sym_SEMI, [299563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13472), 1, - anon_sym_RPAREN, + ACTIONS(13397), 1, + anon_sym_SEMI, [299570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13474), 1, - anon_sym_RPAREN, + ACTIONS(13399), 1, + aux_sym_preproc_if_token2, [299577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13476), 1, - sym_identifier, + ACTIONS(13401), 1, + anon_sym_SEMI, [299584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13478), 1, - anon_sym_SEMI, + ACTIONS(8248), 1, + anon_sym_RBRACE, [299591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13480), 1, - anon_sym_RPAREN, + ACTIONS(13403), 1, + sym_auto, [299598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13482), 1, - anon_sym_STAR, + ACTIONS(4711), 1, + anon_sym_SEMI, [299605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13120), 1, - anon_sym_RBRACE, + ACTIONS(13405), 1, + sym_auto, [299612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13484), 1, - anon_sym_RPAREN, + ACTIONS(13407), 1, + sym_identifier, [299619] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13486), 1, - aux_sym_preproc_if_token2, + ACTIONS(13409), 1, + aux_sym_preproc_include_token2, [299626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13488), 1, - anon_sym_RPAREN, + ACTIONS(13411), 1, + aux_sym_preproc_if_token2, [299633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13490), 1, - aux_sym_preproc_if_token2, + ACTIONS(13289), 1, + anon_sym_DASH, [299640] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13492), 1, - aux_sym_preproc_include_token2, + ACTIONS(13413), 1, + aux_sym_preproc_if_token2, [299647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13494), 1, - aux_sym_preproc_if_token2, + ACTIONS(10711), 1, + anon_sym_RPAREN, [299654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13496), 1, + ACTIONS(13415), 1, anon_sym_RPAREN, [299661] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13498), 1, - aux_sym_preproc_include_token2, + ACTIONS(13417), 1, + sym_raw_string_delimiter, [299668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13500), 1, + ACTIONS(13419), 1, anon_sym_RPAREN, [299675] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13502), 1, - sym_auto, + ACTIONS(13421), 1, + aux_sym_preproc_include_token2, [299682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13504), 1, - sym_identifier, + ACTIONS(13423), 1, + anon_sym_SEMI, [299689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13506), 1, - anon_sym_RPAREN, + ACTIONS(13425), 1, + anon_sym_SEMI, [299696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4793), 1, - anon_sym_SEMI, + ACTIONS(13427), 1, + anon_sym_STAR, [299703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10651), 1, + ACTIONS(13429), 1, anon_sym_RPAREN, [299710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13508), 1, + ACTIONS(13431), 1, anon_sym_SEMI, [299717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13510), 1, - sym_raw_string_delimiter, + ACTIONS(13433), 1, + anon_sym_SEMI, [299724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_PIPE, + ACTIONS(13435), 1, + sym_identifier, [299731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, + ACTIONS(13437), 1, sym_identifier, [299738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_COMMA, + ACTIONS(13439), 1, + anon_sym_SEMI, [299745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13516), 1, + ACTIONS(13441), 1, anon_sym_SEMI, [299752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13518), 1, - sym_identifier, + ACTIONS(13181), 1, + anon_sym_RBRACE, [299759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13520), 1, - anon_sym_RPAREN, + ACTIONS(13443), 1, + aux_sym_preproc_if_token2, [299766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13522), 1, - sym_identifier, + ACTIONS(13289), 1, + anon_sym_COMMA, [299773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13524), 1, - anon_sym_RPAREN, + ACTIONS(13445), 1, + anon_sym_SEMI, [299780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8313), 1, - anon_sym_SEMI, + ACTIONS(13447), 1, + anon_sym_DQUOTE, [299787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13526), 1, - anon_sym_RPAREN, + ACTIONS(13449), 1, + anon_sym_SEMI, [299794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12098), 1, - anon_sym_SEMI, + ACTIONS(13451), 1, + sym_identifier, [299801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6863), 1, - sym_identifier, + ACTIONS(13453), 1, + anon_sym_SEMI, [299808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13528), 1, - anon_sym_STAR, + ACTIONS(13455), 1, + anon_sym_SEMI, [299815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11140), 1, - anon_sym_SEMI, + ACTIONS(13457), 1, + aux_sym_preproc_if_token2, [299822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13530), 1, - anon_sym_COLON, + ACTIONS(13459), 1, + anon_sym_RPAREN, [299829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_DASH, + ACTIONS(13461), 1, + anon_sym_SEMI, [299836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13532), 1, + ACTIONS(13463), 1, anon_sym_SEMI, [299843] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13534), 1, - aux_sym_preproc_include_token2, + ACTIONS(13465), 1, + anon_sym_STAR, [299850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13536), 1, - anon_sym_RPAREN, + ACTIONS(13467), 1, + anon_sym_SEMI, [299857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10868), 1, - anon_sym_RBRACE, + ACTIONS(13469), 1, + anon_sym_SEMI, [299864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8339), 1, - anon_sym_RBRACE, + ACTIONS(13471), 1, + anon_sym_SEMI, [299871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13538), 1, - anon_sym_COMMA, + ACTIONS(13473), 1, + aux_sym_preproc_if_token2, [299878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_PLUS, + ACTIONS(13475), 1, + anon_sym_SEMI, [299885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13540), 1, - anon_sym_RPAREN, + ACTIONS(13477), 1, + anon_sym_DQUOTE, [299892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13542), 1, - anon_sym_RPAREN, + ACTIONS(13479), 1, + aux_sym_preproc_if_token2, [299899] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13544), 1, - anon_sym_LPAREN2, + ACTIONS(13481), 1, + aux_sym_preproc_include_token2, [299906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8401), 1, - anon_sym_RBRACE, + ACTIONS(13483), 1, + anon_sym_SEMI, [299913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13546), 1, - anon_sym_SLASH, + ACTIONS(13485), 1, + anon_sym_SEMI, [299920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13548), 1, + ACTIONS(13487), 1, aux_sym_preproc_if_token2, [299927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_PERCENT, + ACTIONS(13489), 1, + anon_sym_SEMI, [299934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10759), 1, - anon_sym_RBRACE, + ACTIONS(13491), 1, + anon_sym_RPAREN, [299941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13550), 1, - anon_sym_RPAREN, + ACTIONS(13493), 1, + anon_sym_SEMI, [299948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13552), 1, - sym_identifier, + ACTIONS(13495), 1, + anon_sym_RPAREN, [299955] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13554), 1, - aux_sym_preproc_include_token2, + ACTIONS(13497), 1, + anon_sym_SEMI, [299962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13556), 1, - sym_identifier, + ACTIONS(13499), 1, + anon_sym_LPAREN2, [299969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_PIPE_PIPE, + ACTIONS(13501), 1, + aux_sym_preproc_if_token2, [299976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13558), 1, - anon_sym_STAR, + ACTIONS(13503), 1, + aux_sym_preproc_if_token2, [299983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_AMP_AMP, + ACTIONS(13505), 1, + aux_sym_preproc_if_token2, [299990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13560), 1, - anon_sym_RPAREN, + ACTIONS(13507), 1, + anon_sym_SEMI, [299997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_not_eq, + ACTIONS(13509), 1, + sym_identifier, [300004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13562), 1, - anon_sym_RPAREN, + ACTIONS(13511), 1, + anon_sym_SEMI, [300011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13564), 1, - anon_sym_RPAREN, + ACTIONS(13513), 1, + anon_sym_SEMI, [300018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13566), 1, + ACTIONS(13515), 1, anon_sym_RPAREN, [300025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_CARET, + ACTIONS(13517), 1, + anon_sym_RPAREN, [300032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13568), 1, - anon_sym_SEMI, + ACTIONS(13519), 1, + sym_identifier, [300039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13570), 1, - anon_sym_RPAREN, + ACTIONS(13521), 1, + anon_sym_SEMI, [300046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13572), 1, - sym_identifier, + ACTIONS(13523), 1, + anon_sym_DQUOTE, [300053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_AMP, + ACTIONS(13525), 1, + aux_sym_preproc_if_token2, [300060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_EQ_EQ, + ACTIONS(13527), 1, + aux_sym_preproc_if_token2, [300067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10607), 1, - anon_sym_RPAREN, + ACTIONS(13529), 1, + anon_sym_SEMI, [300074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11130), 1, + ACTIONS(8238), 1, anon_sym_SEMI, [300081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13574), 1, - sym_raw_string_delimiter, + ACTIONS(13531), 1, + anon_sym_RPAREN, [300088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11686), 1, + ACTIONS(13533), 1, anon_sym_SEMI, [300095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13576), 1, - sym_identifier, + ACTIONS(13535), 1, + anon_sym_SEMI, [300102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, + ACTIONS(13537), 1, anon_sym_SEMI, [300109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13578), 1, + ACTIONS(13539), 1, anon_sym_SEMI, [300116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, - anon_sym_SEMI, + ACTIONS(13541), 1, + anon_sym_RPAREN, [300123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_BANG_EQ, + ACTIONS(13543), 1, + anon_sym_SEMI, [300130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_GT, + ACTIONS(13545), 1, + anon_sym_SEMI, [300137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, + ACTIONS(13547), 1, sym_identifier, [300144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13580), 1, - sym_auto, + ACTIONS(13549), 1, + anon_sym_RPAREN, [300151] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_GT_EQ, + ACTIONS(10114), 1, + aux_sym_preproc_include_token2, [300158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_LT_EQ, + ACTIONS(10795), 1, + anon_sym_RPAREN, [300165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_LT, + ACTIONS(13551), 1, + anon_sym_DQUOTE, [300172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_LT_LT, + ACTIONS(13553), 1, + sym_raw_string_delimiter, [300179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13582), 1, - anon_sym_SEMI, + ACTIONS(13555), 1, + anon_sym_RPAREN, [300186] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13584), 1, - aux_sym_preproc_include_token2, + ACTIONS(13557), 1, + sym_identifier, [300193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 1, + ACTIONS(13559), 1, anon_sym_SEMI, [300200] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13586), 1, - anon_sym_LPAREN2, + ACTIONS(12495), 1, + aux_sym_preproc_include_token2, [300207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13096), 1, - anon_sym_RBRACE, + ACTIONS(13561), 1, + anon_sym_RPAREN, [300214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_GT_GT, + ACTIONS(13563), 1, + sym_identifier, [300221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_EQ, + ACTIONS(13565), 1, + sym_identifier, [300228] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13588), 1, - anon_sym_SEMI, + ACTIONS(13567), 1, + aux_sym_preproc_include_token2, [300235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8131), 1, - anon_sym_SEMI, + ACTIONS(13569), 1, + anon_sym_COLON, [300242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13590), 1, - sym_identifier, + ACTIONS(13571), 1, + anon_sym_SEMI, [300249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_STAR_EQ, + ACTIONS(13573), 1, + anon_sym_SEMI, [300256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13592), 1, - anon_sym_RPAREN, + ACTIONS(13575), 1, + anon_sym_SEMI, [300263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13594), 1, - anon_sym_RPAREN, + ACTIONS(13577), 1, + anon_sym_STAR, [300270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_SLASH_EQ, + ACTIONS(13579), 1, + sym_identifier, [300277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_PERCENT_EQ, + ACTIONS(13115), 1, + anon_sym_RBRACE, [300284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13596), 1, - anon_sym_RPAREN, + ACTIONS(13581), 1, + anon_sym_SEMI, [300291] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13598), 1, - anon_sym_SEMI, + ACTIONS(13583), 1, + aux_sym_preproc_include_token2, [300298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13600), 1, - anon_sym_SEMI, + ACTIONS(6911), 1, + anon_sym_RPAREN, [300305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13602), 1, - anon_sym_DQUOTE, + ACTIONS(13585), 1, + anon_sym_RPAREN, [300312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13604), 1, + ACTIONS(13587), 1, anon_sym_RPAREN, [300319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_PLUS_EQ, + ACTIONS(13589), 1, + anon_sym_RPAREN, [300326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8498), 1, - anon_sym_SEMI, + ACTIONS(13591), 1, + anon_sym_RPAREN, [300333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13606), 1, - anon_sym_SEMI, + ACTIONS(13593), 1, + sym_identifier, [300340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13608), 1, - anon_sym_DQUOTE, + ACTIONS(13595), 1, + anon_sym_SEMI, [300347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13610), 1, - anon_sym_STAR, + ACTIONS(13597), 1, + anon_sym_RPAREN, [300354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_DASH_EQ, + ACTIONS(13599), 1, + anon_sym_LPAREN2, [300361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10585), 1, + ACTIONS(13601), 1, anon_sym_RPAREN, [300368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_LT_LT_EQ, + ACTIONS(8631), 1, + anon_sym_SEMI, [300375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13612), 1, - sym_raw_string_delimiter, + ACTIONS(13113), 1, + anon_sym_RBRACE, [300382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13614), 1, - sym_identifier, + ACTIONS(8655), 1, + anon_sym_SEMI, [300389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13616), 1, - sym_identifier, + ACTIONS(13603), 1, + anon_sym_SEMI, [300396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13618), 1, - anon_sym_RPAREN, + ACTIONS(13605), 1, + anon_sym_SEMI, [300403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13620), 1, + ACTIONS(13607), 1, sym_identifier, [300410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13622), 1, + ACTIONS(13609), 1, anon_sym_SEMI, [300417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_GT_GT_EQ, + ACTIONS(11236), 1, + anon_sym_SEMI, [300424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_AMP_EQ, + ACTIONS(13611), 1, + anon_sym_RPAREN, [300431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13624), 1, - anon_sym_RPAREN, + ACTIONS(13613), 1, + anon_sym_SEMI, [300438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13626), 1, + ACTIONS(13615), 1, anon_sym_SEMI, [300445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13628), 1, + ACTIONS(13617), 1, anon_sym_RPAREN, [300452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13630), 1, - anon_sym_RPAREN, + ACTIONS(13619), 1, + anon_sym_SEMI, [300459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13632), 1, - anon_sym_RPAREN, + ACTIONS(6185), 1, + sym_identifier, [300466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7212), 1, - anon_sym_RPAREN, + ACTIONS(13103), 1, + anon_sym_RBRACE, [300473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_CARET_EQ, + ACTIONS(13621), 1, + anon_sym_STAR, [300480] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13634), 1, - anon_sym_DQUOTE, + ACTIONS(13623), 1, + aux_sym_preproc_include_token2, [300487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13636), 1, - anon_sym_RPAREN, + ACTIONS(13625), 1, + aux_sym_preproc_if_token2, [300494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13638), 1, - anon_sym_LPAREN2, + ACTIONS(13627), 1, + anon_sym_RPAREN, [300501] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13640), 1, - aux_sym_preproc_include_token2, + ACTIONS(13629), 1, + sym_identifier, [300508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_PIPE_EQ, + ACTIONS(8360), 1, + anon_sym_RBRACE, [300515] = 2, - ACTIONS(9761), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12194), 1, + ACTIONS(13631), 1, aux_sym_preproc_include_token2, [300522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_or, + ACTIONS(10707), 1, + anon_sym_RPAREN, [300529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13642), 1, - anon_sym_RPAREN, + ACTIONS(13633), 1, + aux_sym_preproc_if_token2, [300536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13644), 1, - sym_identifier, + ACTIONS(13635), 1, + sym_raw_string_delimiter, [300543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8311), 1, - anon_sym_RPAREN, + ACTIONS(13637), 1, + aux_sym_preproc_if_token2, [300550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13646), 1, + ACTIONS(13639), 1, sym_identifier, [300557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_and, + ACTIONS(10949), 1, + anon_sym_RBRACE, [300564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_bitor, + ACTIONS(13641), 1, + anon_sym_COLON, [300571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_xor, + ACTIONS(13643), 1, + anon_sym_RPAREN, [300578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13648), 1, + ACTIONS(13645), 1, anon_sym_RPAREN, [300585] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_bitand, + ACTIONS(13647), 1, + aux_sym_preproc_include_token2, [300592] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13650), 1, - aux_sym_preproc_include_token2, + ACTIONS(13649), 1, + sym_raw_string_delimiter, [300599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13652), 1, - anon_sym_SEMI, + ACTIONS(13651), 1, + anon_sym_RPAREN, [300606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13654), 1, - anon_sym_SEMI, + ACTIONS(13653), 1, + anon_sym_RPAREN, [300613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13656), 1, - anon_sym_DQUOTE, + ACTIONS(10777), 1, + anon_sym_RPAREN, [300620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13658), 1, - anon_sym_COLON, + ACTIONS(13655), 1, + anon_sym_RPAREN, [300627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13660), 1, - sym_identifier, + ACTIONS(13657), 1, + sym_auto, [300634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_DOT_STAR, + ACTIONS(13659), 1, + anon_sym_SEMI, [300641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_DASH_GT_STAR, + ACTIONS(11940), 1, + anon_sym_SEMI, [300648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10615), 1, + ACTIONS(13661), 1, anon_sym_RPAREN, [300655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_STAR, + ACTIONS(13663), 1, + anon_sym_LPAREN2, [300662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13662), 1, - sym_raw_string_delimiter, + ACTIONS(13665), 1, + anon_sym_SEMI, [300669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13664), 1, - anon_sym_RPAREN, + ACTIONS(13667), 1, + anon_sym_SEMI, [300676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13666), 1, - sym_identifier, + ACTIONS(13669), 1, + anon_sym_SEMI, [300683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13668), 1, - anon_sym_RPAREN, + ACTIONS(4808), 1, + anon_sym_SEMI, [300690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13670), 1, - anon_sym_RPAREN, + ACTIONS(13671), 1, + sym_auto, [300697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13672), 1, - anon_sym_RPAREN, + ACTIONS(13673), 1, + sym_identifier, [300704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13674), 1, + ACTIONS(11844), 1, anon_sym_SEMI, [300711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13676), 1, - anon_sym_SEMI, + ACTIONS(13675), 1, + sym_identifier, [300718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13678), 1, - anon_sym_RPAREN, + ACTIONS(13677), 1, + anon_sym_SEMI, [300725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11212), 1, + ACTIONS(11317), 1, anon_sym_SEMI, [300732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13680), 1, - anon_sym_SEMI, + ACTIONS(13679), 1, + anon_sym_RPAREN, [300739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13682), 1, - anon_sym_SEMI, + ACTIONS(13681), 1, + anon_sym_RPAREN, [300746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13684), 1, - anon_sym_SEMI, + ACTIONS(13683), 1, + sym_identifier, [300753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13686), 1, - anon_sym_SEMI, + ACTIONS(13685), 1, + anon_sym_DQUOTE, [300760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13688), 1, - anon_sym_SEMI, + ACTIONS(13687), 1, + anon_sym_STAR, [300767] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13690), 1, - aux_sym_preproc_if_token2, + ACTIONS(13689), 1, + aux_sym_preproc_include_token2, [300774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13692), 1, - anon_sym_LPAREN2, + ACTIONS(13691), 1, + aux_sym_preproc_if_token2, [300781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13694), 1, - anon_sym_DQUOTE, + ACTIONS(13693), 1, + aux_sym_preproc_if_token2, [300788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13696), 1, - anon_sym_SEMI, + ACTIONS(13695), 1, + anon_sym_RPAREN, [300795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13698), 1, - anon_sym_SEMI, + ACTIONS(13697), 1, + sym_identifier, [300802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13700), 1, - anon_sym_SEMI, + ACTIONS(13699), 1, + sym_identifier, [300809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13702), 1, - anon_sym_SEMI, + ACTIONS(13701), 1, + anon_sym_RPAREN, [300816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13704), 1, - anon_sym_SEMI, + ACTIONS(10757), 1, + anon_sym_RPAREN, [300823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13706), 1, - aux_sym_preproc_if_token2, + ACTIONS(13703), 1, + anon_sym_RPAREN, [300830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13708), 1, - aux_sym_preproc_if_token2, + ACTIONS(13705), 1, + sym_raw_string_delimiter, [300837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13710), 1, + ACTIONS(13707), 1, anon_sym_RPAREN, [300844] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13712), 1, - aux_sym_preproc_include_token2, + ACTIONS(13709), 1, + sym_identifier, [300851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13714), 1, - anon_sym_SEMI, + ACTIONS(13711), 1, + sym_auto, [300858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13716), 1, - anon_sym_RPAREN, + ACTIONS(13063), 1, + anon_sym_RBRACE, [300865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13718), 1, + ACTIONS(13713), 1, anon_sym_SEMI, [300872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13720), 1, - aux_sym_preproc_if_token2, + ACTIONS(13715), 1, + anon_sym_SEMI, [300879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13722), 1, - anon_sym_RPAREN, + ACTIONS(13717), 1, + anon_sym_SEMI, [300886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8363), 1, - anon_sym_RBRACE, + ACTIONS(13719), 1, + anon_sym_RPAREN, [300893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10659), 1, - anon_sym_RPAREN, + ACTIONS(13721), 1, + anon_sym_SEMI, [300900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13724), 1, - aux_sym_preproc_if_token2, + ACTIONS(13723), 1, + anon_sym_SEMI, [300907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13726), 1, - sym_raw_string_delimiter, + ACTIONS(13725), 1, + anon_sym_COLON, [300914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10838), 1, - anon_sym_RBRACE, + ACTIONS(13727), 1, + anon_sym_SEMI, [300921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13728), 1, - anon_sym_COLON, + ACTIONS(13729), 1, + anon_sym_RPAREN, [300928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13730), 1, - anon_sym_DQUOTE, + ACTIONS(10937), 1, + anon_sym_RBRACE, [300935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - anon_sym_RPAREN, + ACTIONS(13731), 1, + anon_sym_SEMI, [300942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13734), 1, - sym_identifier, + ACTIONS(13733), 1, + anon_sym_DQUOTE, [300949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13736), 1, + ACTIONS(13735), 1, anon_sym_LPAREN2, [300956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13738), 1, - anon_sym_SEMI, + ACTIONS(13737), 1, + sym_identifier, [300963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13740), 1, - anon_sym_RPAREN, + ACTIONS(8422), 1, + anon_sym_RBRACE, [300970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13742), 1, - anon_sym_SEMI, + ACTIONS(13739), 1, + anon_sym_RPAREN, [300977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13744), 1, - anon_sym_RPAREN, + ACTIONS(11209), 1, + anon_sym_SEMI, [300984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13746), 1, - anon_sym_SEMI, + ACTIONS(13741), 1, + anon_sym_RPAREN, [300991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13748), 1, - anon_sym_RPAREN, + ACTIONS(13743), 1, + sym_identifier, [300998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13750), 1, - sym_raw_string_delimiter, + ACTIONS(13745), 1, + aux_sym_preproc_if_token2, [301005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11494), 1, - anon_sym_COLON, + ACTIONS(13747), 1, + aux_sym_preproc_if_token2, [301012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13752), 1, - anon_sym_RPAREN, + ACTIONS(13749), 1, + anon_sym_SEMI, [301019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13754), 1, + ACTIONS(13751), 1, anon_sym_SEMI, [301026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13756), 1, - sym_identifier, + ACTIONS(13753), 1, + anon_sym_RPAREN, [301033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13758), 1, - anon_sym_LPAREN2, + ACTIONS(13755), 1, + anon_sym_RPAREN, [301040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13760), 1, + ACTIONS(13757), 1, anon_sym_RPAREN, [301047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13762), 1, - anon_sym_SEMI, + ACTIONS(13759), 1, + sym_identifier, [301054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13764), 1, + ACTIONS(13761), 1, anon_sym_RPAREN, [301061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4662), 1, - anon_sym_SEMI, + ACTIONS(13763), 1, + anon_sym_RPAREN, [301068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13766), 1, - sym_raw_string_delimiter, + ACTIONS(13765), 1, + anon_sym_RPAREN, [301075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13768), 1, + ACTIONS(13767), 1, anon_sym_SEMI, [301082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13770), 1, - sym_auto, + ACTIONS(13769), 1, + sym_identifier, [301089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13772), 1, - anon_sym_SEMI, + ACTIONS(13771), 1, + anon_sym_STAR, [301096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13774), 1, - anon_sym_LPAREN2, + ACTIONS(13773), 1, + anon_sym_SEMI, [301103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13776), 1, + ACTIONS(10805), 1, anon_sym_RPAREN, [301110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13778), 1, - sym_raw_string_delimiter, + ACTIONS(13775), 1, + aux_sym_preproc_if_token2, [301117] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13780), 1, - aux_sym_preproc_include_token2, + ACTIONS(13777), 1, + sym_raw_string_delimiter, [301124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13782), 1, - anon_sym_RPAREN, + ACTIONS(13779), 1, + anon_sym_LPAREN2, [301131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13784), 1, - sym_raw_string_delimiter, + ACTIONS(13781), 1, + sym_identifier, [301138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13036), 1, - anon_sym_RBRACE, + ACTIONS(13783), 1, + anon_sym_SEMI, [301145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13786), 1, + ACTIONS(13785), 1, anon_sym_RPAREN, [301152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13788), 1, - sym_raw_string_delimiter, + ACTIONS(13787), 1, + sym_identifier, [301159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13790), 1, + ACTIONS(13789), 1, anon_sym_RPAREN, [301166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13792), 1, - sym_raw_string_delimiter, + ACTIONS(13791), 1, + anon_sym_SEMI, [301173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13794), 1, - anon_sym_RPAREN, + ACTIONS(13793), 1, + aux_sym_preproc_if_token2, [301180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13796), 1, - sym_raw_string_delimiter, + ACTIONS(13795), 1, + aux_sym_preproc_if_token2, [301187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13798), 1, - anon_sym_RPAREN, + ACTIONS(13797), 1, + anon_sym_SEMI, [301194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13800), 1, - sym_raw_string_delimiter, + ACTIONS(13799), 1, + sym_identifier, [301201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13802), 1, - anon_sym_RPAREN, + ACTIONS(13801), 1, + aux_sym_preproc_if_token2, [301208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13804), 1, - sym_raw_string_delimiter, + ACTIONS(12795), 1, + anon_sym_COLON_COLON, [301215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13806), 1, - anon_sym_RPAREN, + ACTIONS(10400), 1, + sym_identifier, [301222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13808), 1, - sym_raw_string_delimiter, + ACTIONS(11820), 1, + anon_sym_SEMI, [301229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13068), 1, - anon_sym_RBRACE, + ACTIONS(13803), 1, + anon_sym_LPAREN2, [301236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11761), 1, + ACTIONS(13805), 1, anon_sym_SEMI, [301243] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13810), 1, - anon_sym_SEMI, + ACTIONS(13807), 1, + aux_sym_preproc_include_token2, [301250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13812), 1, - anon_sym_LPAREN2, + ACTIONS(13809), 1, + anon_sym_STAR, [301257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13814), 1, - anon_sym_RPAREN, + ACTIONS(11301), 1, + anon_sym_SEMI, [301264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13816), 1, - anon_sym_LPAREN2, + ACTIONS(13811), 1, + anon_sym_EQ, [301271] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13818), 1, - anon_sym_LPAREN2, + ACTIONS(12860), 1, + aux_sym_preproc_include_token2, [301278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13820), 1, - aux_sym_preproc_if_token2, + ACTIONS(13813), 1, + sym_identifier, [301285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13822), 1, - aux_sym_preproc_if_token2, + ACTIONS(13815), 1, + anon_sym_RPAREN, [301292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13824), 1, - anon_sym_LPAREN2, + ACTIONS(13817), 1, + anon_sym_RPAREN, [301299] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13826), 1, - aux_sym_preproc_include_token2, + ACTIONS(13819), 1, + anon_sym_LPAREN2, [301306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13828), 1, - anon_sym_LPAREN2, + ACTIONS(13821), 1, + anon_sym_RPAREN, [301313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13830), 1, - anon_sym_LPAREN2, + ACTIONS(13823), 1, + anon_sym_SEMI, [301320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13832), 1, + ACTIONS(13825), 1, anon_sym_SEMI, [301327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13834), 1, - sym_auto, + ACTIONS(13827), 1, + anon_sym_SEMI, [301334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13836), 1, - anon_sym_SEMI, + ACTIONS(13829), 1, + anon_sym_RPAREN, [301341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13838), 1, + ACTIONS(13831), 1, anon_sym_SEMI, [301348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13840), 1, + ACTIONS(10745), 1, anon_sym_RPAREN, [301355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13842), 1, - anon_sym_LPAREN2, + ACTIONS(8573), 1, + anon_sym_RPAREN, [301362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13844), 1, - anon_sym_SEMI, + ACTIONS(13833), 1, + sym_raw_string_delimiter, [301369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11606), 1, - anon_sym_SEMI, + ACTIONS(13835), 1, + anon_sym_DQUOTE, [301376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13846), 1, - anon_sym_RPAREN, + ACTIONS(13837), 1, + aux_sym_preproc_if_token2, [301383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13848), 1, - anon_sym_RPAREN, + ACTIONS(11223), 1, + anon_sym_SEMI, [301390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13850), 1, - anon_sym_RPAREN, + ACTIONS(13839), 1, + anon_sym_SEMI, [301397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13852), 1, - anon_sym_DQUOTE, + ACTIONS(13841), 1, + anon_sym_RPAREN, [301404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13854), 1, - anon_sym_RPAREN, + ACTIONS(13843), 1, + anon_sym_LPAREN2, [301411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13856), 1, - anon_sym_RPAREN, + ACTIONS(13845), 1, + anon_sym_SEMI, [301418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13858), 1, - anon_sym_RPAREN, + ACTIONS(13847), 1, + anon_sym_LPAREN2, [301425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13860), 1, - anon_sym_while, + ACTIONS(13849), 1, + sym_raw_string_content, [301432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13862), 1, + ACTIONS(13851), 1, anon_sym_RPAREN, [301439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13864), 1, - anon_sym_LPAREN2, + ACTIONS(6929), 1, + anon_sym_RPAREN, [301446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13866), 1, + ACTIONS(13853), 1, anon_sym_SEMI, [301453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13868), 1, - anon_sym_COLON, + ACTIONS(13855), 1, + sym_raw_string_delimiter, [301460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13870), 1, + ACTIONS(13857), 1, anon_sym_SEMI, [301467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13872), 1, - anon_sym_RPAREN, + ACTIONS(13859), 1, + anon_sym_SEMI, [301474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13874), 1, - anon_sym_EQ, + ACTIONS(13861), 1, + anon_sym_RPAREN, [301481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13876), 1, - sym_raw_string_content, + ACTIONS(7115), 1, + sym_identifier, [301488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10830), 1, - anon_sym_RBRACE, + ACTIONS(13863), 1, + anon_sym_LPAREN2, [301495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13878), 1, - anon_sym_RPAREN, + ACTIONS(8563), 1, + anon_sym_SEMI, [301502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8245), 1, - anon_sym_RBRACE, + ACTIONS(8569), 1, + anon_sym_SEMI, [301509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13880), 1, - anon_sym_STAR, + ACTIONS(13865), 1, + anon_sym_RPAREN, [301516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11222), 1, + ACTIONS(4907), 1, anon_sym_SEMI, [301523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13882), 1, - anon_sym_RPAREN, + ACTIONS(13867), 1, + sym_raw_string_delimiter, [301530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13884), 1, - anon_sym_DQUOTE, + ACTIONS(13869), 1, + anon_sym_SEMI, [301537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13886), 1, - aux_sym_preproc_if_token2, + ACTIONS(13871), 1, + anon_sym_SEMI, [301544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13888), 1, + ACTIONS(13873), 1, anon_sym_RPAREN, [301551] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13890), 1, - aux_sym_preproc_include_token2, + ACTIONS(13875), 1, + anon_sym_LPAREN2, [301558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13892), 1, - anon_sym_STAR, + ACTIONS(13877), 1, + anon_sym_RPAREN, [301565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13894), 1, - anon_sym_RPAREN, + ACTIONS(13879), 1, + sym_raw_string_delimiter, [301572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13058), 1, - anon_sym_RBRACE, + ACTIONS(13881), 1, + anon_sym_LPAREN2, [301579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13896), 1, - sym_identifier, + ACTIONS(13883), 1, + anon_sym_RPAREN, [301586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13898), 1, - anon_sym_RPAREN, + ACTIONS(13885), 1, + sym_raw_string_delimiter, [301593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13900), 1, - anon_sym_COMMA, + ACTIONS(13887), 1, + sym_identifier, [301600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13902), 1, - anon_sym_SEMI, + ACTIONS(13889), 1, + anon_sym_RPAREN, [301607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13904), 1, - sym_identifier, + ACTIONS(13891), 1, + sym_raw_string_delimiter, [301614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_RBRACE, + ACTIONS(13893), 1, + anon_sym_RPAREN, [301621] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13906), 1, - aux_sym_preproc_include_token2, + ACTIONS(13895), 1, + sym_raw_string_delimiter, [301628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13908), 1, + ACTIONS(13897), 1, anon_sym_RPAREN, [301635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6873), 1, - sym_identifier, + ACTIONS(13899), 1, + sym_raw_string_delimiter, [301642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13910), 1, - anon_sym_SEMI, + ACTIONS(13901), 1, + anon_sym_RPAREN, [301649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8586), 1, - anon_sym_SEMI, + ACTIONS(13903), 1, + sym_raw_string_delimiter, [301656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13912), 1, + ACTIONS(13905), 1, anon_sym_RPAREN, [301663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13914), 1, - anon_sym_RPAREN, + ACTIONS(13907), 1, + sym_raw_string_delimiter, [301670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13916), 1, + ACTIONS(13909), 1, anon_sym_RPAREN, [301677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8546), 1, - anon_sym_SEMI, + ACTIONS(13911), 1, + sym_raw_string_delimiter, [301684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13918), 1, + ACTIONS(13913), 1, anon_sym_SEMI, [301691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13920), 1, - anon_sym_RPAREN, + ACTIONS(8559), 1, + anon_sym_SEMI, [301698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13922), 1, - sym_identifier, + ACTIONS(13915), 1, + anon_sym_COLON, [301705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13924), 1, - anon_sym_RPAREN, + ACTIONS(13917), 1, + anon_sym_LPAREN2, [301712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13926), 1, - anon_sym_SEMI, + ACTIONS(13919), 1, + anon_sym_RPAREN, [301719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13928), 1, - anon_sym_RPAREN, + ACTIONS(13921), 1, + anon_sym_LPAREN2, [301726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13930), 1, - anon_sym_RPAREN, + ACTIONS(13923), 1, + anon_sym_LPAREN2, [301733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13932), 1, - anon_sym_RPAREN, + ACTIONS(13925), 1, + anon_sym_SEMI, [301740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13934), 1, - anon_sym_COLON, + ACTIONS(13927), 1, + anon_sym_SEMI, [301747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7218), 1, - anon_sym_RPAREN, + ACTIONS(13929), 1, + anon_sym_LPAREN2, [301754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13936), 1, + ACTIONS(13931), 1, anon_sym_SEMI, [301761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7193), 1, - anon_sym_RPAREN, + ACTIONS(13933), 1, + anon_sym_LPAREN2, [301768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13938), 1, - sym_identifier, + ACTIONS(13935), 1, + anon_sym_LPAREN2, [301775] = 2, - ACTIONS(9761), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13940), 1, + ACTIONS(12832), 1, aux_sym_preproc_include_token2, [301782] = 2, - ACTIONS(9761), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(12685), 1, + ACTIONS(13937), 1, aux_sym_preproc_include_token2, [301789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13942), 1, - anon_sym_SEMI, + ACTIONS(13939), 1, + sym_identifier, [301796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11218), 1, + ACTIONS(8571), 1, anon_sym_SEMI, [301803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13944), 1, - anon_sym_STAR, + ACTIONS(13941), 1, + anon_sym_RPAREN, [301810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13946), 1, + ACTIONS(13943), 1, anon_sym_SEMI, [301817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13948), 1, + ACTIONS(13945), 1, anon_sym_SEMI, [301824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13950), 1, + ACTIONS(13947), 1, sym_identifier, [301831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13952), 1, - anon_sym_COLON, + ACTIONS(13949), 1, + sym_auto, [301838] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13954), 1, - aux_sym_preproc_if_token2, + ACTIONS(13951), 1, + aux_sym_preproc_include_token2, [301845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13956), 1, - anon_sym_SEMI, + ACTIONS(13953), 1, + anon_sym_STAR, [301852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8580), 1, + ACTIONS(13955), 1, anon_sym_RPAREN, [301859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13958), 1, - anon_sym_SEMI, + ACTIONS(13957), 1, + anon_sym_RPAREN, [301866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8594), 1, - anon_sym_SEMI, + ACTIONS(13959), 1, + anon_sym_RPAREN, [301873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, - anon_sym_SEMI, + ACTIONS(13961), 1, + anon_sym_RPAREN, [301880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13960), 1, - anon_sym_RPAREN, + ACTIONS(13963), 1, + anon_sym_while, [301887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13962), 1, - sym_identifier, + ACTIONS(13965), 1, + anon_sym_RPAREN, [301894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13964), 1, - anon_sym_RPAREN, + ACTIONS(13967), 1, + anon_sym_LPAREN2, [301901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13966), 1, - anon_sym_SEMI, + ACTIONS(6923), 1, + anon_sym_RPAREN, [301908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13968), 1, - anon_sym_SEMI, + ACTIONS(13969), 1, + anon_sym_RPAREN, [301915] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13970), 1, - anon_sym_RPAREN, + ACTIONS(13971), 1, + aux_sym_preproc_include_token2, [301922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13972), 1, + ACTIONS(13973), 1, anon_sym_SEMI, [301929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13974), 1, - anon_sym_SEMI, + ACTIONS(13975), 1, + anon_sym_EQ, [301936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13976), 1, - anon_sym_SEMI, + ACTIONS(13977), 1, + sym_raw_string_content, [301943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13978), 1, - anon_sym_SEMI, + ACTIONS(13979), 1, + anon_sym_RPAREN, [301950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13980), 1, - aux_sym_preproc_if_token2, + ACTIONS(6969), 1, + sym_identifier, [301957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13982), 1, + ACTIONS(13981), 1, anon_sym_DQUOTE, [301964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13984), 1, - anon_sym_SEMI, + ACTIONS(13983), 1, + anon_sym_STAR, [301971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13986), 1, - anon_sym_SEMI, + ACTIONS(13985), 1, + sym_identifier, [301978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13988), 1, - anon_sym_SEMI, + ACTIONS(13987), 1, + anon_sym_DQUOTE, [301985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13990), 1, - anon_sym_SEMI, + ACTIONS(13989), 1, + sym_identifier, [301992] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(13992), 1, - aux_sym_preproc_include_token2, + ACTIONS(13991), 1, + anon_sym_SEMI, [301999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13994), 1, - aux_sym_preproc_if_token2, + ACTIONS(8675), 1, + anon_sym_SEMI, [302006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13996), 1, - anon_sym_SEMI, + ACTIONS(13993), 1, + anon_sym_RPAREN, [302013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13998), 1, - anon_sym_RPAREN, + ACTIONS(13995), 1, + anon_sym_SEMI, [302020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14000), 1, + ACTIONS(13997), 1, anon_sym_SEMI, [302027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14002), 1, - aux_sym_preproc_if_token2, + ACTIONS(13999), 1, + anon_sym_RPAREN, [302034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, - sym_raw_string_delimiter, + ACTIONS(14001), 1, + sym_identifier, [302041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10621), 1, + ACTIONS(14003), 1, anon_sym_RPAREN, [302048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14006), 1, - aux_sym_preproc_if_token2, + ACTIONS(14005), 1, + anon_sym_COMMA, [302055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14008), 1, + ACTIONS(14007), 1, anon_sym_RPAREN, [302062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14010), 1, - anon_sym_DQUOTE, + ACTIONS(14009), 1, + anon_sym_COLON, [302069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14012), 1, - anon_sym_SEMI, + ACTIONS(14011), 1, + sym_identifier, [302076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14014), 1, - anon_sym_SEMI, + ACTIONS(14013), 1, + sym_identifier, [302083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14016), 1, - anon_sym_SEMI, + ACTIONS(14015), 1, + anon_sym_RPAREN, [302090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8133), 1, - anon_sym_RBRACE, + ACTIONS(8693), 1, + anon_sym_SEMI, [302097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10757), 1, - anon_sym_RBRACE, + ACTIONS(14017), 1, + anon_sym_SEMI, [302104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14018), 1, + ACTIONS(14019), 1, anon_sym_RPAREN, [302111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14020), 1, + ACTIONS(14021), 1, anon_sym_SEMI, [302118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14022), 1, - anon_sym_RPAREN, + ACTIONS(11519), 1, + anon_sym_COLON, [302125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14024), 1, - anon_sym_SEMI, + ACTIONS(14023), 1, + anon_sym_LBRACE, [302132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14026), 1, + ACTIONS(8447), 1, anon_sym_SEMI, [302139] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(14028), 1, - anon_sym_RPAREN, + ACTIONS(14025), 1, + aux_sym_preproc_include_token2, [302146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13034), 1, - anon_sym_RBRACE, + ACTIONS(14027), 1, + anon_sym_SEMI, [302153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 1, - anon_sym_SEMI, + ACTIONS(7294), 1, + sym_identifier, [302160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14030), 1, - aux_sym_preproc_if_token2, + ACTIONS(14029), 1, + anon_sym_RPAREN, [302167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14032), 1, - aux_sym_preproc_if_token2, + ACTIONS(14031), 1, + anon_sym_DQUOTE, [302174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14034), 1, - anon_sym_RPAREN, + ACTIONS(14033), 1, + anon_sym_SEMI, [302181] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(14036), 1, - aux_sym_preproc_include_token2, + ACTIONS(14035), 1, + anon_sym_DQUOTE, [302188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14038), 1, - anon_sym_RPAREN, + ACTIONS(4573), 1, + anon_sym_DOT_DOT_DOT, [302195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14040), 1, - sym_auto, + ACTIONS(14037), 1, + anon_sym_COLON, [302202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14042), 1, - anon_sym_SEMI, + ACTIONS(14039), 1, + anon_sym_STAR, [302209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14044), 1, - anon_sym_SEMI, + ACTIONS(14041), 1, + anon_sym_DQUOTE, [302216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14046), 1, - anon_sym_SEMI, + ACTIONS(14043), 1, + anon_sym_LBRACE, [302223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11706), 1, - anon_sym_SEMI, + ACTIONS(14045), 1, + anon_sym_COLON, [302230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4819), 1, - anon_sym_SEMI, + ACTIONS(4656), 1, + anon_sym_DOT_DOT_DOT, [302237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14048), 1, - anon_sym_RPAREN, + ACTIONS(4570), 1, + anon_sym_DOT_DOT_DOT, [302244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14050), 1, - anon_sym_RPAREN, + ACTIONS(4547), 1, + anon_sym_DOT_DOT_DOT, [302251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14052), 1, - anon_sym_RPAREN, + ACTIONS(4540), 1, + anon_sym_DOT_DOT_DOT, [302258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14054), 1, - anon_sym_RPAREN, + ACTIONS(4535), 1, + anon_sym_DOT_DOT_DOT, [302265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14056), 1, - anon_sym_RPAREN, + ACTIONS(4521), 1, + anon_sym_DOT_DOT_DOT, [302272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14058), 1, - sym_identifier, + ACTIONS(4498), 1, + anon_sym_DOT_DOT_DOT, [302279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14060), 1, - sym_auto, + ACTIONS(4493), 1, + anon_sym_DOT_DOT_DOT, [302286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14062), 1, - anon_sym_SEMI, + ACTIONS(4482), 1, + anon_sym_DOT_DOT_DOT, [302293] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(14064), 1, - aux_sym_preproc_include_token2, + ACTIONS(4479), 1, + anon_sym_DOT_DOT_DOT, [302300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14066), 1, - anon_sym_STAR, + ACTIONS(4532), 1, + anon_sym_DOT_DOT_DOT, [302307] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(13030), 1, - anon_sym_RBRACE, + ACTIONS(14047), 1, + aux_sym_preproc_include_token2, [302314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14068), 1, - anon_sym_SEMI, + ACTIONS(14049), 1, + sym_identifier, [302321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14070), 1, + ACTIONS(11313), 1, anon_sym_SEMI, [302328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14072), 1, - anon_sym_SEMI, + ACTIONS(14051), 1, + anon_sym_RPAREN, [302335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14074), 1, + ACTIONS(14053), 1, anon_sym_RPAREN, [302342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14076), 1, - anon_sym_DQUOTE, + ACTIONS(14055), 1, + sym_raw_string_content, [302349] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(14078), 1, - aux_sym_preproc_include_token2, + ACTIONS(14057), 1, + anon_sym_RPAREN, [302356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14080), 1, - anon_sym_COLON, + ACTIONS(14059), 1, + anon_sym_RPAREN, [302363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14082), 1, - anon_sym_SEMI, + ACTIONS(14061), 1, + anon_sym_DQUOTE, [302370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14063), 1, anon_sym_SEMI, [302377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10816), 1, - anon_sym_RBRACE, + ACTIONS(14065), 1, + anon_sym_RPAREN, [302384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, - anon_sym_RBRACE, + ACTIONS(14067), 1, + anon_sym_SEMI, [302391] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(14086), 1, - anon_sym_SEMI, + ACTIONS(14069), 1, + aux_sym_preproc_include_token2, [302398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14088), 1, - anon_sym_RPAREN, + ACTIONS(14071), 1, + anon_sym_STAR, [302405] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(11190), 1, - anon_sym_SEMI, + ACTIONS(14073), 1, + aux_sym_preproc_include_token2, [302412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14090), 1, - anon_sym_RPAREN, + ACTIONS(14075), 1, + anon_sym_DQUOTE, [302419] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(14092), 1, - anon_sym_SEMI, + ACTIONS(9888), 1, + aux_sym_preproc_include_token2, [302426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14094), 1, - aux_sym_preproc_if_token2, + ACTIONS(14077), 1, + anon_sym_DQUOTE, [302433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14096), 1, - anon_sym_RPAREN, + ACTIONS(12040), 1, + anon_sym_SEMI, [302440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14098), 1, - anon_sym_RPAREN, + ACTIONS(14079), 1, + aux_sym_preproc_if_token2, [302447] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(14100), 1, - aux_sym_preproc_include_token2, + ACTIONS(14081), 1, + anon_sym_RPAREN, [302454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14102), 1, - anon_sym_RPAREN, + ACTIONS(14083), 1, + aux_sym_preproc_if_token2, [302461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14104), 1, - anon_sym_STAR, + ACTIONS(14085), 1, + aux_sym_preproc_if_token2, [302468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14106), 1, - anon_sym_DQUOTE, + ACTIONS(14087), 1, + anon_sym_RPAREN, [302475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14108), 1, - sym_identifier, + ACTIONS(14089), 1, + aux_sym_preproc_if_token2, [302482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14110), 1, - anon_sym_SEMI, + ACTIONS(14091), 1, + anon_sym_DQUOTE, [302489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14112), 1, - anon_sym_LPAREN2, + ACTIONS(14093), 1, + anon_sym_DQUOTE, [302496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14114), 1, - anon_sym_LPAREN2, + ACTIONS(8467), 1, + anon_sym_RBRACE, [302503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14116), 1, - anon_sym_LPAREN2, + ACTIONS(14095), 1, + anon_sym_RPAREN, [302510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14118), 1, - anon_sym_RPAREN, + ACTIONS(10933), 1, + anon_sym_RBRACE, [302517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14120), 1, - anon_sym_LPAREN2, + ACTIONS(14097), 1, + anon_sym_DQUOTE, [302524] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(14122), 1, - anon_sym_LBRACE, + ACTIONS(14099), 1, + aux_sym_preproc_include_token2, [302531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14124), 1, - anon_sym_RPAREN, + ACTIONS(14101), 1, + anon_sym_DQUOTE, [302538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14126), 1, - anon_sym_RPAREN, + ACTIONS(14103), 1, + anon_sym_DQUOTE, [302545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14128), 1, + ACTIONS(14105), 1, anon_sym_RPAREN, [302552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14130), 1, - anon_sym_while, + ACTIONS(14107), 1, + aux_sym_preproc_if_token2, [302559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14132), 1, - anon_sym_RPAREN, + ACTIONS(14109), 1, + aux_sym_preproc_if_token2, [302566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14134), 1, - anon_sym_LPAREN2, + ACTIONS(14111), 1, + aux_sym_preproc_if_token2, [302573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14113), 1, + sym_identifier, [302580] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(6936), 1, - sym_identifier, + ACTIONS(14115), 1, + aux_sym_preproc_include_token2, [302587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14136), 1, - anon_sym_SEMI, + ACTIONS(14117), 1, + anon_sym_RPAREN, [302594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14138), 1, - anon_sym_EQ, + ACTIONS(14119), 1, + anon_sym_SEMI, [302601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14140), 1, - sym_raw_string_content, + ACTIONS(14121), 1, + anon_sym_RPAREN, [302608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14142), 1, - anon_sym_STAR, + ACTIONS(14123), 1, + anon_sym_RPAREN, [302615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8494), 1, - anon_sym_SEMI, + ACTIONS(14125), 1, + anon_sym_RPAREN, [302622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14144), 1, - anon_sym_RPAREN, + ACTIONS(13011), 1, + anon_sym_COMMA, [302629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14146), 1, - anon_sym_COMMA, + ACTIONS(14127), 1, + anon_sym_RPAREN, [302636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14148), 1, - anon_sym_RPAREN, + ACTIONS(14129), 1, + anon_sym_DQUOTE, [302643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14150), 1, - anon_sym_SEMI, + ACTIONS(14131), 1, + anon_sym_DQUOTE, [302650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14152), 1, - sym_identifier, + ACTIONS(14133), 1, + anon_sym_RPAREN, [302657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14154), 1, - anon_sym_RPAREN, + ACTIONS(12084), 1, + anon_sym_SEMI, [302664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14156), 1, - anon_sym_COLON, + ACTIONS(14135), 1, + anon_sym_SEMI, [302671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14158), 1, - anon_sym_RPAREN, + ACTIONS(14137), 1, + anon_sym_SEMI, [302678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10741), 1, - anon_sym_RBRACE, + ACTIONS(14139), 1, + anon_sym_SEMI, [302685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14160), 1, - anon_sym_LPAREN2, + ACTIONS(14141), 1, + anon_sym_SEMI, [302692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14162), 1, - anon_sym_LPAREN2, + ACTIONS(14143), 1, + sym_auto, [302699] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(8554), 1, - anon_sym_SEMI, + ACTIONS(14145), 1, + aux_sym_preproc_include_token2, [302706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14164), 1, - anon_sym_LPAREN2, + ACTIONS(14147), 1, + anon_sym_DQUOTE, [302713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14166), 1, - anon_sym_SEMI, + ACTIONS(8657), 1, + anon_sym_RPAREN, [302720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14168), 1, - sym_identifier, + ACTIONS(8659), 1, + anon_sym_RPAREN, [302727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14170), 1, - anon_sym_while, + ACTIONS(10979), 1, + anon_sym_RBRACE, [302734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14172), 1, - anon_sym_RPAREN, + ACTIONS(14149), 1, + anon_sym_DQUOTE, [302741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14174), 1, - anon_sym_LPAREN2, + ACTIONS(14151), 1, + aux_sym_preproc_if_token2, [302748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14176), 1, - anon_sym_RPAREN, + ACTIONS(14153), 1, + aux_sym_preproc_if_token2, [302755] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(12220), 1, - aux_sym_preproc_include_token2, + ACTIONS(14155), 1, + anon_sym_RPAREN, [302762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14178), 1, - anon_sym_EQ, + ACTIONS(13047), 1, + anon_sym_RBRACE, [302769] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(14180), 1, - sym_raw_string_content, + ACTIONS(12757), 1, + aux_sym_preproc_include_token2, [302776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14182), 1, - anon_sym_RPAREN, + ACTIONS(8691), 1, + anon_sym_SEMI, [302783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14184), 1, - anon_sym_COMMA, + ACTIONS(14157), 1, + anon_sym_DOT_DOT_DOT, [302790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14186), 1, + ACTIONS(14159), 1, anon_sym_RPAREN, [302797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7186), 1, - anon_sym_RPAREN, + ACTIONS(14161), 1, + anon_sym_LPAREN2, [302804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14188), 1, + ACTIONS(14163), 1, anon_sym_RPAREN, [302811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14190), 1, - anon_sym_RPAREN, + ACTIONS(14165), 1, + anon_sym_COLON, [302818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14192), 1, - anon_sym_COLON, + ACTIONS(14167), 1, + sym_identifier, [302825] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(14194), 1, - aux_sym_preproc_include_token2, + ACTIONS(13123), 1, + anon_sym_RBRACE, [302832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14196), 1, - anon_sym_RPAREN, + ACTIONS(14169), 1, + anon_sym_LPAREN2, [302839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14198), 1, - anon_sym_LPAREN2, + ACTIONS(14171), 1, + anon_sym_DQUOTE, [302846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14200), 1, - anon_sym_LPAREN2, + ACTIONS(14173), 1, + anon_sym_SEMI, [302853] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(12176), 1, - aux_sym_preproc_include_token2, + ACTIONS(14175), 1, + anon_sym_DQUOTE, [302860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14202), 1, - anon_sym_LPAREN2, + ACTIONS(13055), 1, + anon_sym_RBRACE, [302867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14204), 1, - anon_sym_RPAREN, + ACTIONS(14177), 1, + anon_sym_SEMI, [302874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14206), 1, - anon_sym_SEMI, + ACTIONS(14179), 1, + sym_auto, [302881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14208), 1, - anon_sym_while, + ACTIONS(14181), 1, + anon_sym_RPAREN, [302888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14210), 1, + ACTIONS(11305), 1, anon_sym_SEMI, [302895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14212), 1, - anon_sym_LPAREN2, + ACTIONS(14183), 1, + anon_sym_DQUOTE, [302902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14214), 1, - sym_identifier, + ACTIONS(14185), 1, + anon_sym_RPAREN, [302909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14216), 1, - anon_sym_COLON, + ACTIONS(14187), 1, + anon_sym_STAR, [302916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14218), 1, - anon_sym_EQ, + ACTIONS(14189), 1, + anon_sym_SEMI, [302923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14220), 1, - sym_raw_string_content, + ACTIONS(10709), 1, + anon_sym_RPAREN, [302930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14222), 1, - anon_sym_COMMA, + ACTIONS(14191), 1, + sym_raw_string_delimiter, [302937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14224), 1, - anon_sym_RPAREN, + ACTIONS(10939), 1, + anon_sym_RBRACE, [302944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14226), 1, - aux_sym_preproc_if_token2, + ACTIONS(14193), 1, + anon_sym_LPAREN2, [302951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14228), 1, - anon_sym_RPAREN, + ACTIONS(14195), 1, + anon_sym_LPAREN2, [302958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14230), 1, - anon_sym_RPAREN, + ACTIONS(14197), 1, + anon_sym_LPAREN2, [302965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14232), 1, - anon_sym_COLON, + ACTIONS(14199), 1, + anon_sym_LBRACE, [302972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14234), 1, - sym_auto, + ACTIONS(14201), 1, + anon_sym_LPAREN2, [302979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14236), 1, - anon_sym_LPAREN2, + ACTIONS(14203), 1, + anon_sym_RPAREN, [302986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14238), 1, - anon_sym_LPAREN2, + ACTIONS(14205), 1, + anon_sym_RPAREN, [302993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12998), 1, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, [303000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14240), 1, - anon_sym_LPAREN2, + ACTIONS(14207), 1, + anon_sym_SEMI, [303007] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9795), 1, - aux_sym_preproc_include_token2, + ACTIONS(14209), 1, + anon_sym_while, [303014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14242), 1, - anon_sym_LPAREN2, + ACTIONS(14211), 1, + anon_sym_SEMI, [303021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14244), 1, - anon_sym_while, + ACTIONS(14213), 1, + anon_sym_LPAREN2, [303028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14246), 1, - anon_sym_LPAREN2, + ACTIONS(14215), 1, + anon_sym_SEMI, [303035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14248), 1, - sym_identifier, + ACTIONS(14217), 1, + anon_sym_SEMI, [303042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_COLON_COLON, + ACTIONS(14219), 1, + anon_sym_SEMI, [303049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14250), 1, + ACTIONS(14221), 1, anon_sym_EQ, [303056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14252), 1, + ACTIONS(14223), 1, sym_raw_string_content, [303063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14254), 1, - anon_sym_COMMA, + ACTIONS(14225), 1, + anon_sym_STAR, [303070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14256), 1, + ACTIONS(14227), 1, aux_sym_preproc_if_token2, [303077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14258), 1, - aux_sym_preproc_if_token2, + ACTIONS(14229), 1, + anon_sym_RPAREN, [303084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14260), 1, - anon_sym_SEMI, + ACTIONS(14231), 1, + anon_sym_COMMA, [303091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14262), 1, - anon_sym_RPAREN, + ACTIONS(14233), 1, + anon_sym_SEMI, [303098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14264), 1, - anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_SEMI, [303105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14266), 1, - anon_sym_DQUOTE, + ACTIONS(14237), 1, + anon_sym_SEMI, [303112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14268), 1, - anon_sym_LPAREN2, + ACTIONS(14239), 1, + anon_sym_RPAREN, [303119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14270), 1, - anon_sym_LPAREN2, + ACTIONS(14241), 1, + anon_sym_COLON, [303126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14272), 1, - anon_sym_SEMI, + ACTIONS(14243), 1, + anon_sym_DQUOTE, [303133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14274), 1, - anon_sym_LPAREN2, + ACTIONS(14245), 1, + anon_sym_RPAREN, [303140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14276), 1, - anon_sym_DQUOTE, + ACTIONS(14247), 1, + anon_sym_LPAREN2, [303147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14278), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14249), 1, + anon_sym_LPAREN2, [303154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14281), 1, - anon_sym_LPAREN2, + ACTIONS(14251), 1, + aux_sym_preproc_if_token2, [303161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14283), 1, - anon_sym_RPAREN, + ACTIONS(14253), 1, + anon_sym_LPAREN2, [303168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14285), 1, - aux_sym_preproc_if_token2, + ACTIONS(14255), 1, + anon_sym_DOT_DOT_DOT, [303175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14287), 1, - anon_sym_EQ, + ACTIONS(14258), 1, + anon_sym_RPAREN, [303182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14289), 1, - sym_raw_string_content, + ACTIONS(14260), 1, + anon_sym_while, [303189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14291), 1, - anon_sym_COMMA, + ACTIONS(14262), 1, + anon_sym_SEMI, [303196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14293), 1, - aux_sym_preproc_if_token2, + ACTIONS(14264), 1, + anon_sym_LPAREN2, [303203] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(14295), 1, - anon_sym_RPAREN, + ACTIONS(9990), 1, + aux_sym_preproc_include_token2, [303210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14297), 1, - sym_identifier, + ACTIONS(14266), 1, + anon_sym_SEMI, [303217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14299), 1, - anon_sym_RPAREN, + ACTIONS(14268), 1, + anon_sym_EQ, [303224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14301), 1, - anon_sym_COLON, + ACTIONS(14270), 1, + sym_raw_string_content, [303231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, - anon_sym_COMMA, + ACTIONS(14272), 1, + anon_sym_DQUOTE, [303238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14303), 1, - anon_sym_LPAREN2, + ACTIONS(14274), 1, + anon_sym_COMMA, [303245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14305), 1, - anon_sym_LPAREN2, + ACTIONS(14276), 1, + anon_sym_RPAREN, [303252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14307), 1, - aux_sym_preproc_if_token2, + ACTIONS(14278), 1, + anon_sym_DQUOTE, [303259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14309), 1, - anon_sym_LPAREN2, + ACTIONS(14280), 1, + anon_sym_SEMI, [303266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14311), 1, - anon_sym_SEMI, + ACTIONS(14282), 1, + anon_sym_RPAREN, [303273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8458), 1, - anon_sym_RPAREN, + ACTIONS(14284), 1, + anon_sym_COLON, [303280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14313), 1, - anon_sym_LPAREN2, + ACTIONS(14286), 1, + anon_sym_RPAREN, [303287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8464), 1, - anon_sym_RPAREN, + ACTIONS(14288), 1, + aux_sym_preproc_if_token2, [303294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8466), 1, - anon_sym_SEMI, + ACTIONS(14290), 1, + anon_sym_LPAREN2, [303301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14315), 1, - anon_sym_EQ, + ACTIONS(14292), 1, + anon_sym_LPAREN2, [303308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14317), 1, - sym_raw_string_content, + ACTIONS(14294), 1, + aux_sym_preproc_if_token2, [303315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14319), 1, - anon_sym_COMMA, + ACTIONS(14296), 1, + anon_sym_LPAREN2, [303322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14321), 1, - aux_sym_preproc_if_token2, + ACTIONS(14298), 1, + anon_sym_DQUOTE, [303329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14323), 1, - anon_sym_COLON, + ACTIONS(14300), 1, + aux_sym_preproc_if_token2, [303336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14325), 1, - sym_identifier, + ACTIONS(14302), 1, + anon_sym_while, [303343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14327), 1, - anon_sym_RPAREN, + ACTIONS(14304), 1, + anon_sym_SEMI, [303350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14329), 1, - anon_sym_COLON, + ACTIONS(14306), 1, + anon_sym_LPAREN2, [303357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14331), 1, - anon_sym_LPAREN2, + ACTIONS(14308), 1, + aux_sym_preproc_if_token2, [303364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14333), 1, - anon_sym_LPAREN2, + ACTIONS(13097), 1, + anon_sym_RBRACE, [303371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14335), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14310), 1, + anon_sym_EQ, [303378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14338), 1, - anon_sym_LPAREN2, + ACTIONS(14312), 1, + sym_raw_string_content, [303385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14340), 1, - sym_identifier, + ACTIONS(14314), 1, + anon_sym_COMMA, [303392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14342), 1, + ACTIONS(14316), 1, anon_sym_RPAREN, [303399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14344), 1, - anon_sym_RPAREN, + ACTIONS(14318), 1, + sym_auto, [303406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14346), 1, - anon_sym_SEMI, + ACTIONS(14320), 1, + anon_sym_RPAREN, [303413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14348), 1, - anon_sym_EQ, + ACTIONS(14322), 1, + anon_sym_RPAREN, [303420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14350), 1, - sym_raw_string_content, + ACTIONS(14324), 1, + anon_sym_COLON, [303427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10649), 1, - anon_sym_RPAREN, + ACTIONS(14326), 1, + anon_sym_RBRACE, [303434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14352), 1, - sym_raw_string_delimiter, + ACTIONS(14328), 1, + anon_sym_LPAREN2, [303441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14354), 1, - anon_sym_RPAREN, + ACTIONS(14330), 1, + anon_sym_LPAREN2, [303448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14356), 1, + ACTIONS(14332), 1, anon_sym_RPAREN, [303455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14358), 1, - anon_sym_LBRACE, + ACTIONS(14334), 1, + anon_sym_LPAREN2, [303462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14360), 1, - anon_sym_LPAREN2, + ACTIONS(14336), 1, + aux_sym_preproc_if_token2, [303469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14362), 1, - anon_sym_LPAREN2, + ACTIONS(11371), 1, + anon_sym_COMMA, [303476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10818), 1, - anon_sym_RBRACE, + ACTIONS(14338), 1, + anon_sym_while, [303483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14364), 1, - sym_raw_string_content, + ACTIONS(14340), 1, + anon_sym_LPAREN2, [303490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14366), 1, - anon_sym_RPAREN, + ACTIONS(14342), 1, + anon_sym_RBRACE, [303497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14368), 1, - anon_sym_RPAREN, + ACTIONS(8240), 1, + anon_sym_RBRACE, [303504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14370), 1, - anon_sym_RPAREN, + ACTIONS(14344), 1, + anon_sym_EQ, [303511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14372), 1, - sym_auto, + ACTIONS(14346), 1, + sym_raw_string_content, [303518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14374), 1, - anon_sym_LPAREN2, + ACTIONS(14348), 1, + anon_sym_COMMA, [303525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14376), 1, - anon_sym_LPAREN2, + ACTIONS(14350), 1, + anon_sym_RPAREN, [303532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, - anon_sym_RBRACE, + ACTIONS(14352), 1, + sym_identifier, [303539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14378), 1, - sym_raw_string_content, + ACTIONS(14354), 1, + aux_sym_preproc_if_token2, [303546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14380), 1, - anon_sym_STAR, + ACTIONS(14356), 1, + anon_sym_RPAREN, [303553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14382), 1, - anon_sym_RPAREN, + ACTIONS(14358), 1, + anon_sym_COLON, [303560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14384), 1, - anon_sym_LPAREN2, + ACTIONS(8647), 1, + anon_sym_RPAREN, [303567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14386), 1, + ACTIONS(14360), 1, anon_sym_LPAREN2, [303574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14388), 1, - sym_raw_string_content, + ACTIONS(14362), 1, + anon_sym_LPAREN2, [303581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14390), 1, - anon_sym_RPAREN, + ACTIONS(14364), 1, + aux_sym_preproc_if_token2, [303588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14392), 1, - sym_raw_string_content, + ACTIONS(14366), 1, + anon_sym_LPAREN2, [303595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14394), 1, - anon_sym_RPAREN, + ACTIONS(14368), 1, + anon_sym_SEMI, [303602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14396), 1, - sym_raw_string_content, + ACTIONS(14370), 1, + anon_sym_SEMI, [303609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14398), 1, - anon_sym_RPAREN, + ACTIONS(14372), 1, + anon_sym_LPAREN2, [303616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14400), 1, - sym_raw_string_content, + ACTIONS(14374), 1, + anon_sym_SEMI, [303623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14402), 1, + ACTIONS(14376), 1, anon_sym_RPAREN, [303630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14404), 1, - sym_raw_string_content, + ACTIONS(14378), 1, + anon_sym_EQ, [303637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14406), 1, - anon_sym_RPAREN, + ACTIONS(14380), 1, + sym_raw_string_content, [303644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14408), 1, - sym_raw_string_content, + ACTIONS(14382), 1, + anon_sym_COMMA, [303651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14410), 1, + ACTIONS(14384), 1, anon_sym_RPAREN, [303658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14412), 1, - sym_raw_string_content, + ACTIONS(10923), 1, + anon_sym_RBRACE, [303665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14414), 1, - anon_sym_RPAREN, + ACTIONS(14386), 1, + anon_sym_COLON, [303672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14416), 1, - sym_raw_string_content, + ACTIONS(14388), 1, + anon_sym_RPAREN, [303679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14418), 1, - anon_sym_RPAREN, + ACTIONS(14390), 1, + anon_sym_COLON, [303686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14420), 1, - anon_sym_LPAREN2, + ACTIONS(10953), 1, + anon_sym_RBRACE, [303693] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(10035), 1, - aux_sym_preproc_include_token2, + ACTIONS(14392), 1, + anon_sym_LPAREN2, [303700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14422), 1, + ACTIONS(14394), 1, anon_sym_LPAREN2, [303707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14424), 1, - anon_sym_LPAREN2, + ACTIONS(14396), 1, + anon_sym_RPAREN, [303714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14426), 1, - sym_identifier, + ACTIONS(14398), 1, + anon_sym_LPAREN2, [303721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14428), 1, + ACTIONS(14400), 1, anon_sym_SEMI, [303728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14430), 1, - anon_sym_DQUOTE, + ACTIONS(14402), 1, + anon_sym_RPAREN, [303735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14432), 1, - anon_sym_SEMI, + ACTIONS(14404), 1, + anon_sym_LPAREN2, [303742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14434), 1, - sym_identifier, + ACTIONS(14406), 1, + anon_sym_RPAREN, [303749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14436), 1, - aux_sym_preproc_if_token2, + ACTIONS(12743), 1, + anon_sym_RPAREN, [303756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14438), 1, - anon_sym_DQUOTE, + ACTIONS(14408), 1, + anon_sym_EQ, [303763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14440), 1, - aux_sym_preproc_if_token2, + ACTIONS(14410), 1, + sym_raw_string_content, [303770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14442), 1, - aux_sym_preproc_if_token2, + ACTIONS(14412), 1, + anon_sym_COMMA, [303777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14444), 1, - anon_sym_RBRACE, + ACTIONS(14414), 1, + sym_identifier, [303784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14446), 1, - aux_sym_preproc_if_token2, + ACTIONS(14416), 1, + anon_sym_SEMI, [303791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11282), 1, - anon_sym_COMMA, + ACTIONS(14418), 1, + anon_sym_SEMI, [303798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14448), 1, - anon_sym_RBRACE, + ACTIONS(14420), 1, + anon_sym_RPAREN, [303805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14450), 1, - anon_sym_RPAREN, + ACTIONS(14422), 1, + anon_sym_COLON, [303812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14452), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(8641), 1, + anon_sym_RPAREN, [303819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14454), 1, - sym_identifier, + ACTIONS(14424), 1, + anon_sym_LPAREN2, [303826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14456), 1, - sym_raw_string_content, + ACTIONS(8881), 1, + anon_sym_RPAREN, [303833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14458), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14426), 1, + anon_sym_LPAREN2, [303840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14461), 1, - aux_sym_preproc_if_token2, + ACTIONS(8633), 1, + anon_sym_RPAREN, [303847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14463), 1, - aux_sym_preproc_if_token2, + ACTIONS(14428), 1, + anon_sym_RBRACK, [303854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14465), 1, - aux_sym_preproc_if_token2, + ACTIONS(14430), 1, + anon_sym_DQUOTE, [303861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14467), 1, - anon_sym_SEMI, + ACTIONS(14432), 1, + sym_identifier, [303868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14469), 1, - anon_sym_SEMI, + ACTIONS(14434), 1, + anon_sym_EQ, [303875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14471), 1, - anon_sym_SEMI, + ACTIONS(14436), 1, + sym_raw_string_content, [303882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14473), 1, - anon_sym_RPAREN, + ACTIONS(14438), 1, + anon_sym_SEMI, [303889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12389), 1, + ACTIONS(14440), 1, anon_sym_RPAREN, [303896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14475), 1, - anon_sym_STAR, + ACTIONS(14442), 1, + sym_identifier, [303903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8504), 1, + ACTIONS(14444), 1, anon_sym_RPAREN, [303910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8807), 1, + ACTIONS(14446), 1, anon_sym_RPAREN, [303917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14477), 1, - ts_builtin_sym_end, + ACTIONS(14448), 1, + anon_sym_LPAREN2, [303924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8516), 1, - anon_sym_RPAREN, + ACTIONS(14450), 1, + anon_sym_LPAREN2, [303931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14479), 1, - anon_sym_RBRACK, + ACTIONS(14452), 1, + anon_sym_LPAREN2, [303938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14481), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14454), 1, + sym_raw_string_content, [303945] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(14484), 1, - sym_identifier, + ACTIONS(14456), 1, + aux_sym_preproc_include_token2, [303952] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(14486), 1, - anon_sym_LPAREN2, + ACTIONS(9960), 1, + aux_sym_preproc_include_token2, [303959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14488), 1, - sym_identifier, + ACTIONS(14458), 1, + anon_sym_RPAREN, [303966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14490), 1, - aux_sym_preproc_if_token2, + ACTIONS(14460), 1, + anon_sym_RPAREN, [303973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14492), 1, - anon_sym_RPAREN, + ACTIONS(14462), 1, + anon_sym_LPAREN2, [303980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14494), 1, + ACTIONS(14464), 1, anon_sym_LPAREN2, [303987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14496), 1, + ACTIONS(14466), 1, anon_sym_RPAREN, [303994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14498), 1, - anon_sym_SEMI, + ACTIONS(14468), 1, + sym_raw_string_content, [304001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14500), 1, - anon_sym_DQUOTE, + ACTIONS(14470), 1, + anon_sym_RPAREN, [304008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14502), 1, - anon_sym_LPAREN2, + ACTIONS(14472), 1, + anon_sym_RPAREN, [304015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12657), 1, - anon_sym_SEMI, + ACTIONS(14474), 1, + anon_sym_LPAREN2, [304022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14504), 1, + ACTIONS(14476), 1, anon_sym_LPAREN2, [304029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14506), 1, - aux_sym_preproc_if_token2, + ACTIONS(14478), 1, + sym_raw_string_content, [304036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14508), 1, - anon_sym_RBRACE, + ACTIONS(14480), 1, + anon_sym_RPAREN, [304043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14510), 1, - aux_sym_preproc_if_token2, + ACTIONS(14482), 1, + sym_raw_string_content, [304050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14512), 1, - anon_sym_RBRACE, + ACTIONS(14484), 1, + anon_sym_RPAREN, [304057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14514), 1, - aux_sym_preproc_if_token2, + ACTIONS(14486), 1, + sym_raw_string_content, [304064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14516), 1, - anon_sym_RBRACE, + ACTIONS(14488), 1, + anon_sym_RPAREN, [304071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8496), 1, - anon_sym_RPAREN, + ACTIONS(14490), 1, + sym_raw_string_content, [304078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14518), 1, - anon_sym_LPAREN2, + ACTIONS(14492), 1, + anon_sym_RPAREN, [304085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14520), 1, - anon_sym_LPAREN2, + ACTIONS(14494), 1, + sym_raw_string_content, [304092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14522), 1, - anon_sym_LPAREN2, + ACTIONS(14496), 1, + anon_sym_RPAREN, [304099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14524), 1, - sym_identifier, + ACTIONS(14498), 1, + sym_raw_string_content, [304106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14526), 1, - anon_sym_SEMI, + ACTIONS(14500), 1, + anon_sym_RPAREN, [304113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14528), 1, - anon_sym_SEMI, + ACTIONS(14502), 1, + sym_raw_string_content, [304120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14530), 1, - anon_sym_LPAREN2, + ACTIONS(14504), 1, + anon_sym_RPAREN, [304127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14532), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14506), 1, + sym_raw_string_content, [304134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14535), 1, - anon_sym_COLON, + ACTIONS(14508), 1, + anon_sym_RPAREN, [304141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14537), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14510), 1, + anon_sym_RPAREN, [304148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14540), 1, + ACTIONS(14512), 1, anon_sym_SEMI, [304155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14542), 1, - anon_sym_SEMI, + ACTIONS(14514), 1, + anon_sym_LPAREN2, [304162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14544), 1, - anon_sym_SEMI, + ACTIONS(14516), 1, + anon_sym_LPAREN2, [304169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14546), 1, - anon_sym_SEMI, + ACTIONS(14518), 1, + sym_identifier, [304176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10794), 1, - anon_sym_RBRACE, + ACTIONS(14520), 1, + anon_sym_RPAREN, [304183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8602), 1, - anon_sym_RPAREN, + ACTIONS(14522), 1, + anon_sym_DQUOTE, [304190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8616), 1, - anon_sym_RPAREN, + ACTIONS(12471), 1, + anon_sym_SEMI, [304197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14548), 1, + ACTIONS(14524), 1, anon_sym_RPAREN, [304204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14550), 1, - anon_sym_RPAREN, + ACTIONS(14526), 1, + anon_sym_DQUOTE, [304211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14552), 1, - anon_sym_RBRACK, + ACTIONS(14528), 1, + anon_sym_SEMI, [304218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14554), 1, - anon_sym_DQUOTE, + ACTIONS(14530), 1, + aux_sym_preproc_if_token2, [304225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14556), 1, - sym_identifier, + ACTIONS(14532), 1, + anon_sym_RPAREN, [304232] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(14558), 1, - anon_sym_SEMI, + ACTIONS(14534), 1, + aux_sym_preproc_include_token2, [304239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14560), 1, - anon_sym_RPAREN, + ACTIONS(14536), 1, + aux_sym_preproc_if_token2, [304246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14562), 1, - anon_sym_LPAREN2, + ACTIONS(14538), 1, + anon_sym_RBRACE, [304253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_LPAREN2, + ACTIONS(14540), 1, + anon_sym_SEMI, [304260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14566), 1, - sym_identifier, + ACTIONS(14542), 1, + anon_sym_RPAREN, [304267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14568), 1, - anon_sym_RPAREN, + ACTIONS(14544), 1, + sym_identifier, [304274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14570), 1, - anon_sym_LPAREN2, + ACTIONS(14546), 1, + sym_identifier, [304281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14572), 1, - sym_auto, + ACTIONS(14548), 1, + sym_raw_string_content, [304288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14574), 1, - sym_identifier, + ACTIONS(14550), 1, + anon_sym_COMMA, [304295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14576), 1, - sym_raw_string_content, + ACTIONS(14552), 1, + aux_sym_preproc_if_token2, [304302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14578), 1, + ACTIONS(14554), 1, anon_sym_RBRACE, [304309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14580), 1, + ACTIONS(14556), 1, aux_sym_preproc_if_token2, [304316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12940), 1, - anon_sym_RBRACE, + ACTIONS(14558), 1, + anon_sym_SEMI, [304323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14582), 1, - anon_sym_LPAREN2, + ACTIONS(8673), 1, + anon_sym_SEMI, [304330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14584), 1, - anon_sym_LPAREN2, + ACTIONS(14560), 1, + anon_sym_STAR, [304337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14586), 1, - sym_identifier, + ACTIONS(14562), 1, + anon_sym_SEMI, [304344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14588), 1, - anon_sym_DQUOTE, + ACTIONS(14564), 1, + anon_sym_RBRACE, [304351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14590), 1, - aux_sym_preproc_if_token2, + ACTIONS(14566), 1, + ts_builtin_sym_end, [304358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14592), 1, - sym_identifier, + ACTIONS(14568), 1, + anon_sym_SEMI, [304365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14594), 1, - sym_raw_string_content, + ACTIONS(14570), 1, + anon_sym_SEMI, [304372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14596), 1, - aux_sym_preproc_if_token2, + ACTIONS(14572), 1, + anon_sym_RPAREN, [304379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14598), 1, - anon_sym_SEMI, + ACTIONS(14574), 1, + sym_identifier, [304386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14600), 1, - anon_sym_SEMI, + ACTIONS(14576), 1, + anon_sym_LPAREN2, [304393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14602), 1, - anon_sym_LPAREN2, + ACTIONS(14578), 1, + anon_sym_SEMI, [304400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14604), 1, - anon_sym_LPAREN2, + ACTIONS(14580), 1, + anon_sym_RPAREN, [304407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14606), 1, + ACTIONS(14582), 1, sym_identifier, [304414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14608), 1, - anon_sym_DQUOTE, + ACTIONS(13149), 1, + anon_sym_RBRACE, [304421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14610), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14584), 1, + anon_sym_DQUOTE, [304428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14613), 1, - sym_identifier, + ACTIONS(14586), 1, + anon_sym_LPAREN2, [304435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14615), 1, - sym_raw_string_content, + ACTIONS(14588), 1, + aux_sym_preproc_if_token2, [304442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14617), 1, - anon_sym_LPAREN2, + ACTIONS(14590), 1, + anon_sym_RPAREN, [304449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14619), 1, + ACTIONS(8639), 1, anon_sym_RPAREN, [304456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14621), 1, + ACTIONS(14592), 1, anon_sym_LPAREN2, [304463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14623), 1, - anon_sym_LPAREN2, + ACTIONS(8885), 1, + anon_sym_RPAREN, [304470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14625), 1, - sym_identifier, + ACTIONS(14594), 1, + anon_sym_SEMI, [304477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14627), 1, - anon_sym_STAR, + ACTIONS(14596), 1, + anon_sym_SEMI, [304484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14629), 1, - aux_sym_preproc_if_token2, + ACTIONS(14598), 1, + anon_sym_RPAREN, [304491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14631), 1, - sym_identifier, + ACTIONS(14600), 1, + anon_sym_RPAREN, [304498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14633), 1, - sym_raw_string_content, + ACTIONS(14602), 1, + anon_sym_RPAREN, [304505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14635), 1, - aux_sym_preproc_if_token2, + ACTIONS(14604), 1, + anon_sym_RBRACK, [304512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14637), 1, - aux_sym_preproc_if_token2, + ACTIONS(14606), 1, + anon_sym_LPAREN2, [304519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14639), 1, + ACTIONS(14608), 1, anon_sym_LPAREN2, [304526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14641), 1, - sym_identifier, + ACTIONS(14610), 1, + anon_sym_LPAREN2, [304533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14643), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14612), 1, + sym_identifier, [304540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14646), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14614), 1, + anon_sym_SEMI, [304547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14649), 1, - sym_identifier, + ACTIONS(14616), 1, + anon_sym_SEMI, [304554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14651), 1, - sym_raw_string_content, + ACTIONS(14618), 1, + anon_sym_LPAREN2, [304561] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(14653), 1, - anon_sym_COLON, + ACTIONS(14620), 1, + aux_sym_preproc_include_token2, [304568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14655), 1, - sym_identifier, + ACTIONS(14622), 1, + anon_sym_COLON, [304575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14657), 1, - anon_sym_LPAREN2, + ACTIONS(14624), 1, + anon_sym_DQUOTE, [304582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14659), 1, - sym_identifier, + ACTIONS(14626), 1, + anon_sym_SEMI, [304589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14661), 1, - anon_sym_DQUOTE, + ACTIONS(13139), 1, + anon_sym_RBRACE, [304596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14663), 1, - anon_sym_LPAREN2, + ACTIONS(8701), 1, + anon_sym_SEMI, [304603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14665), 1, - sym_identifier, + ACTIONS(11659), 1, + anon_sym_SEMI, [304610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14667), 1, - sym_raw_string_content, + ACTIONS(14628), 1, + anon_sym_RPAREN, [304617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14669), 1, - sym_identifier, + ACTIONS(14630), 1, + anon_sym_SEMI, [304624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14671), 1, - anon_sym_RPAREN, + ACTIONS(14632), 1, + anon_sym_SEMI, [304631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14673), 1, - anon_sym_LPAREN2, + ACTIONS(14634), 1, + sym_auto, [304638] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(14675), 1, - sym_identifier, + ACTIONS(14636), 1, + aux_sym_preproc_include_token2, [304645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14677), 1, - anon_sym_DQUOTE, + ACTIONS(14638), 1, + anon_sym_RBRACE, [304652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14679), 1, - sym_identifier, + ACTIONS(14640), 1, + aux_sym_preproc_if_token2, [304659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14681), 1, - sym_raw_string_content, + ACTIONS(14642), 1, + anon_sym_RPAREN, [304666] = 2, - ACTIONS(5259), 1, - aux_sym_preproc_include_token2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, + ACTIONS(14644), 1, + aux_sym_preproc_if_token2, [304673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14683), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14646), 1, + anon_sym_RPAREN, [304680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14686), 1, - sym_identifier, + ACTIONS(4829), 1, + anon_sym_SEMI, [304687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14688), 1, - sym_raw_string_content, + ACTIONS(14648), 1, + anon_sym_SEMI, [304694] = 2, - ACTIONS(5255), 1, - aux_sym_preproc_include_token2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, + ACTIONS(14650), 1, + anon_sym_LPAREN2, [304701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14690), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14652), 1, + anon_sym_LPAREN2, [304708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14693), 1, - sym_raw_string_content, + ACTIONS(14654), 1, + anon_sym_LPAREN2, [304715] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9771), 1, - aux_sym_preproc_include_token2, + ACTIONS(14656), 1, + sym_identifier, [304722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14695), 1, - sym_raw_string_content, + ACTIONS(8695), 1, + anon_sym_SEMI, [304729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14697), 1, - sym_identifier, + ACTIONS(14658), 1, + anon_sym_RPAREN, [304736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14699), 1, - sym_raw_string_content, + ACTIONS(14660), 1, + anon_sym_SEMI, [304743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14701), 1, - anon_sym_DQUOTE, + ACTIONS(14662), 1, + sym_identifier, [304750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14703), 1, + ACTIONS(14664), 1, sym_raw_string_content, [304757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14705), 1, - anon_sym_DQUOTE, + ACTIONS(7419), 1, + sym_identifier, [304764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14707), 1, - sym_raw_string_content, + ACTIONS(10905), 1, + anon_sym_RBRACE, [304771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14709), 1, - aux_sym_preproc_if_token2, + ACTIONS(11285), 1, + anon_sym_SEMI, [304778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14711), 1, - sym_raw_string_content, + ACTIONS(14666), 1, + anon_sym_LPAREN2, [304785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14713), 1, - anon_sym_DQUOTE, + ACTIONS(14668), 1, + anon_sym_LPAREN2, [304792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14715), 1, - sym_raw_string_content, + ACTIONS(14670), 1, + sym_identifier, [304799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14717), 1, - anon_sym_DQUOTE, + ACTIONS(14672), 1, + anon_sym_RPAREN, [304806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14719), 1, - sym_raw_string_content, + ACTIONS(14674), 1, + sym_auto, [304813] = 2, - ACTIONS(9761), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(14721), 1, - aux_sym_preproc_include_token2, + ACTIONS(14676), 1, + sym_identifier, [304820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14723), 1, + ACTIONS(14678), 1, sym_raw_string_content, [304827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14725), 1, + ACTIONS(14680), 1, anon_sym_LPAREN2, [304834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14727), 1, - anon_sym_LPAREN2, + ACTIONS(14682), 1, + anon_sym_RPAREN, [304841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14729), 1, - sym_identifier, + ACTIONS(14684), 1, + anon_sym_LPAREN2, [304848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14731), 1, + ACTIONS(14686), 1, anon_sym_LPAREN2, [304855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14733), 1, + ACTIONS(14688), 1, anon_sym_LPAREN2, [304862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - anon_sym_COMMA, + ACTIONS(14690), 1, + sym_identifier, [304869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14735), 1, - anon_sym_LPAREN2, + ACTIONS(14692), 1, + anon_sym_SEMI, [304876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14737), 1, - anon_sym_LPAREN2, + ACTIONS(14694), 1, + anon_sym_SEMI, [304883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14739), 1, + ACTIONS(14696), 1, sym_identifier, [304890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14741), 1, - anon_sym_LPAREN2, + ACTIONS(14698), 1, + sym_raw_string_content, [304897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14743), 1, - anon_sym_LPAREN2, + ACTIONS(14700), 1, + sym_identifier, [304904] = 2, - ACTIONS(3), 1, + ACTIONS(9808), 1, sym_comment, - ACTIONS(14745), 1, - sym_identifier, + ACTIONS(14702), 1, + aux_sym_preproc_include_token2, [304911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14747), 1, - anon_sym_LPAREN2, + ACTIONS(14704), 1, + anon_sym_RPAREN, [304918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14749), 1, + ACTIONS(14706), 1, anon_sym_LPAREN2, [304925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14751), 1, - anon_sym_DQUOTE, + ACTIONS(14708), 1, + sym_identifier, [304932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14753), 1, - anon_sym_LPAREN2, + ACTIONS(8445), 1, + anon_sym_RPAREN, [304939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14755), 1, - anon_sym_LPAREN2, + ACTIONS(14710), 1, + aux_sym_preproc_if_token2, [304946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14757), 1, - anon_sym_DQUOTE, + ACTIONS(14712), 1, + sym_identifier, [304953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14759), 1, - anon_sym_LPAREN2, + ACTIONS(14714), 1, + sym_raw_string_content, [304960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14761), 1, - anon_sym_LPAREN2, + ACTIONS(14716), 1, + aux_sym_preproc_if_token2, [304967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14763), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(14718), 1, + aux_sym_preproc_if_token2, [304974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14766), 1, + ACTIONS(14720), 1, anon_sym_LPAREN2, [304981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14768), 1, - anon_sym_LPAREN2, + ACTIONS(14722), 1, + sym_identifier, [304988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14770), 1, - anon_sym_LPAREN2, + ACTIONS(14724), 1, + anon_sym_RPAREN, [304995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14772), 1, - anon_sym_LPAREN2, + ACTIONS(14726), 1, + anon_sym_RPAREN, [305002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14774), 1, - anon_sym_LPAREN2, + ACTIONS(14728), 1, + sym_identifier, [305009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14776), 1, - anon_sym_LPAREN2, + ACTIONS(14730), 1, + sym_raw_string_content, [305016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14778), 1, - anon_sym_LPAREN2, + ACTIONS(14732), 1, + anon_sym_COLON, [305023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14780), 1, - anon_sym_LPAREN2, + ACTIONS(14734), 1, + anon_sym_RPAREN, [305030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14782), 1, + ACTIONS(14736), 1, anon_sym_LPAREN2, [305037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14784), 1, - anon_sym_LPAREN2, + ACTIONS(14738), 1, + sym_identifier, [305044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14786), 1, - anon_sym_LPAREN2, + ACTIONS(14740), 1, + anon_sym_RPAREN, [305051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14788), 1, - anon_sym_DQUOTE, + ACTIONS(14742), 1, + sym_identifier, [305058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14790), 1, - anon_sym_DQUOTE, + ACTIONS(14744), 1, + sym_identifier, [305065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14792), 1, - anon_sym_DQUOTE, + ACTIONS(14746), 1, + sym_raw_string_content, [305072] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14748), 1, + anon_sym_LPAREN2, + [305079] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14750), 1, + anon_sym_RPAREN, + [305086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14752), 1, + anon_sym_LPAREN2, + [305093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14754), 1, + sym_identifier, + [305100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8487), 1, + anon_sym_RBRACE, + [305107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14756), 1, + sym_identifier, + [305114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14758), 1, + sym_raw_string_content, + [305121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10955), 1, + anon_sym_RBRACE, + [305128] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14760), 1, + sym_identifier, + [305135] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14762), 1, + sym_identifier, + [305142] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14764), 1, + sym_raw_string_content, + [305149] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14766), 1, + anon_sym_RPAREN, + [305156] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14768), 1, + anon_sym_RPAREN, + [305163] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14770), 1, + sym_raw_string_content, + [305170] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14772), 1, + anon_sym_RPAREN, + [305177] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14774), 1, + sym_raw_string_content, + [305184] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14776), 1, + anon_sym_RPAREN, + [305191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14778), 1, + sym_raw_string_content, + [305198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14780), 1, + anon_sym_DQUOTE, + [305205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14782), 1, + sym_raw_string_content, + [305212] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14784), 1, + anon_sym_SEMI, + [305219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14786), 1, + sym_raw_string_content, + [305226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14788), 1, + anon_sym_SEMI, + [305233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14790), 1, + sym_raw_string_content, + [305240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12229), 1, + anon_sym_SEMI, + [305247] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14792), 1, + sym_raw_string_content, + [305254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14794), 1, sym_identifier, - [305079] = 2, + [305261] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14796), 1, - sym_identifier, - [305086] = 2, + sym_raw_string_content, + [305268] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14798), 1, anon_sym_DQUOTE, - [305093] = 2, + [305275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14800), 1, - sym_identifier, - [305100] = 2, + sym_raw_string_content, + [305282] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14802), 1, anon_sym_LPAREN2, - [305107] = 2, + [305289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14804), 1, anon_sym_LPAREN2, - [305114] = 2, + [305296] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14806), 1, - anon_sym_LPAREN2, - [305121] = 2, + sym_identifier, + [305303] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14808), 1, anon_sym_LPAREN2, - [305128] = 2, + [305310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14810), 1, anon_sym_LPAREN2, - [305135] = 2, + [305317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14812), 1, - anon_sym_LPAREN2, - [305142] = 2, + anon_sym_SEMI, + [305324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14814), 1, anon_sym_LPAREN2, + [305331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14816), 1, + anon_sym_LPAREN2, + [305338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14818), 1, + anon_sym_RPAREN, + [305345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14820), 1, + anon_sym_LPAREN2, + [305352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14822), 1, + anon_sym_LPAREN2, + [305359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14824), 1, + anon_sym_SEMI, + [305366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14826), 1, + anon_sym_LPAREN2, + [305373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14828), 1, + anon_sym_LPAREN2, + [305380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14830), 1, + anon_sym_SEMI, + [305387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14832), 1, + anon_sym_LPAREN2, + [305394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14834), 1, + anon_sym_LPAREN2, + [305401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14836), 1, + anon_sym_SEMI, + [305408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14838), 1, + anon_sym_LPAREN2, + [305415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14840), 1, + anon_sym_LPAREN2, + [305422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14842), 1, + anon_sym_SEMI, + [305429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14844), 1, + anon_sym_LPAREN2, + [305436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14846), 1, + anon_sym_LPAREN2, + [305443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14848), 1, + anon_sym_LPAREN2, + [305450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14850), 1, + anon_sym_LPAREN2, + [305457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14852), 1, + anon_sym_LPAREN2, + [305464] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14854), 1, + anon_sym_LPAREN2, + [305471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14856), 1, + anon_sym_LPAREN2, + [305478] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14858), 1, + anon_sym_LPAREN2, + [305485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14860), 1, + anon_sym_LPAREN2, + [305492] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14862), 1, + anon_sym_LPAREN2, + [305499] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14864), 1, + anon_sym_LPAREN2, + [305506] = 2, + ACTIONS(5268), 1, + aux_sym_preproc_include_token2, + ACTIONS(9808), 1, + sym_comment, + [305513] = 2, + ACTIONS(5272), 1, + aux_sym_preproc_include_token2, + ACTIONS(9808), 1, + sym_comment, + [305520] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13273), 1, + anon_sym_RBRACE, + [305527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14866), 1, + sym_auto, + [305534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14868), 1, + sym_identifier, + [305541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11605), 1, + anon_sym_COMMA, + [305548] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14870), 1, + sym_identifier, + [305555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14872), 1, + anon_sym_LPAREN2, + [305562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14874), 1, + anon_sym_LPAREN2, + [305569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14876), 1, + anon_sym_LPAREN2, + [305576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14878), 1, + anon_sym_LPAREN2, + [305583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14880), 1, + anon_sym_LPAREN2, + [305590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14882), 1, + anon_sym_LPAREN2, + [305597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14884), 1, + anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2476)] = 0, - [SMALL_STATE(2477)] = 71, - [SMALL_STATE(2478)] = 142, - [SMALL_STATE(2479)] = 213, - [SMALL_STATE(2480)] = 284, - [SMALL_STATE(2481)] = 355, - [SMALL_STATE(2482)] = 426, - [SMALL_STATE(2483)] = 497, - [SMALL_STATE(2484)] = 568, - [SMALL_STATE(2485)] = 639, - [SMALL_STATE(2486)] = 710, - [SMALL_STATE(2487)] = 781, - [SMALL_STATE(2488)] = 852, - [SMALL_STATE(2489)] = 923, - [SMALL_STATE(2490)] = 994, - [SMALL_STATE(2491)] = 1065, - [SMALL_STATE(2492)] = 1136, - [SMALL_STATE(2493)] = 1211, - [SMALL_STATE(2494)] = 1282, - [SMALL_STATE(2495)] = 1353, - [SMALL_STATE(2496)] = 1428, - [SMALL_STATE(2497)] = 1499, - [SMALL_STATE(2498)] = 1570, - [SMALL_STATE(2499)] = 1641, - [SMALL_STATE(2500)] = 1712, - [SMALL_STATE(2501)] = 1783, - [SMALL_STATE(2502)] = 1854, - [SMALL_STATE(2503)] = 1925, - [SMALL_STATE(2504)] = 1996, - [SMALL_STATE(2505)] = 2075, - [SMALL_STATE(2506)] = 2156, - [SMALL_STATE(2507)] = 2233, - [SMALL_STATE(2508)] = 2306, - [SMALL_STATE(2509)] = 2381, - [SMALL_STATE(2510)] = 2452, - [SMALL_STATE(2511)] = 2523, - [SMALL_STATE(2512)] = 2594, - [SMALL_STATE(2513)] = 2665, - [SMALL_STATE(2514)] = 2736, - [SMALL_STATE(2515)] = 2807, - [SMALL_STATE(2516)] = 2878, - [SMALL_STATE(2517)] = 2949, - [SMALL_STATE(2518)] = 3020, - [SMALL_STATE(2519)] = 3099, - [SMALL_STATE(2520)] = 3170, - [SMALL_STATE(2521)] = 3241, - [SMALL_STATE(2522)] = 3312, - [SMALL_STATE(2523)] = 3383, - [SMALL_STATE(2524)] = 3454, - [SMALL_STATE(2525)] = 3525, - [SMALL_STATE(2526)] = 3596, - [SMALL_STATE(2527)] = 3667, - [SMALL_STATE(2528)] = 3738, - [SMALL_STATE(2529)] = 3809, - [SMALL_STATE(2530)] = 3884, - [SMALL_STATE(2531)] = 3959, - [SMALL_STATE(2532)] = 4030, - [SMALL_STATE(2533)] = 4101, - [SMALL_STATE(2534)] = 4172, - [SMALL_STATE(2535)] = 4243, - [SMALL_STATE(2536)] = 4314, - [SMALL_STATE(2537)] = 4385, - [SMALL_STATE(2538)] = 4456, - [SMALL_STATE(2539)] = 4527, - [SMALL_STATE(2540)] = 4598, - [SMALL_STATE(2541)] = 4669, - [SMALL_STATE(2542)] = 4740, - [SMALL_STATE(2543)] = 4811, - [SMALL_STATE(2544)] = 4882, - [SMALL_STATE(2545)] = 4953, - [SMALL_STATE(2546)] = 5024, - [SMALL_STATE(2547)] = 5095, - [SMALL_STATE(2548)] = 5166, - [SMALL_STATE(2549)] = 5237, - [SMALL_STATE(2550)] = 5308, - [SMALL_STATE(2551)] = 5379, - [SMALL_STATE(2552)] = 5450, - [SMALL_STATE(2553)] = 5521, - [SMALL_STATE(2554)] = 5592, - [SMALL_STATE(2555)] = 5663, - [SMALL_STATE(2556)] = 5734, - [SMALL_STATE(2557)] = 5805, - [SMALL_STATE(2558)] = 5876, - [SMALL_STATE(2559)] = 5947, - [SMALL_STATE(2560)] = 6018, - [SMALL_STATE(2561)] = 6089, - [SMALL_STATE(2562)] = 6160, - [SMALL_STATE(2563)] = 6239, - [SMALL_STATE(2564)] = 6310, - [SMALL_STATE(2565)] = 6381, - [SMALL_STATE(2566)] = 6452, - [SMALL_STATE(2567)] = 6523, - [SMALL_STATE(2568)] = 6594, - [SMALL_STATE(2569)] = 6665, - [SMALL_STATE(2570)] = 6736, - [SMALL_STATE(2571)] = 6807, - [SMALL_STATE(2572)] = 6878, - [SMALL_STATE(2573)] = 6949, - [SMALL_STATE(2574)] = 7020, - [SMALL_STATE(2575)] = 7091, - [SMALL_STATE(2576)] = 7162, - [SMALL_STATE(2577)] = 7233, - [SMALL_STATE(2578)] = 7304, - [SMALL_STATE(2579)] = 7375, - [SMALL_STATE(2580)] = 7454, - [SMALL_STATE(2581)] = 7525, - [SMALL_STATE(2582)] = 7596, - [SMALL_STATE(2583)] = 7667, - [SMALL_STATE(2584)] = 7738, - [SMALL_STATE(2585)] = 7809, - [SMALL_STATE(2586)] = 7884, - [SMALL_STATE(2587)] = 7955, - [SMALL_STATE(2588)] = 8026, - [SMALL_STATE(2589)] = 8097, - [SMALL_STATE(2590)] = 8168, - [SMALL_STATE(2591)] = 8239, - [SMALL_STATE(2592)] = 8310, - [SMALL_STATE(2593)] = 8381, - [SMALL_STATE(2594)] = 8456, - [SMALL_STATE(2595)] = 8527, - [SMALL_STATE(2596)] = 8598, - [SMALL_STATE(2597)] = 8669, - [SMALL_STATE(2598)] = 8740, - [SMALL_STATE(2599)] = 8811, - [SMALL_STATE(2600)] = 8882, - [SMALL_STATE(2601)] = 8953, - [SMALL_STATE(2602)] = 9024, - [SMALL_STATE(2603)] = 9095, - [SMALL_STATE(2604)] = 9166, - [SMALL_STATE(2605)] = 9237, - [SMALL_STATE(2606)] = 9308, - [SMALL_STATE(2607)] = 9379, - [SMALL_STATE(2608)] = 9450, - [SMALL_STATE(2609)] = 9521, - [SMALL_STATE(2610)] = 9596, - [SMALL_STATE(2611)] = 9667, - [SMALL_STATE(2612)] = 9738, - [SMALL_STATE(2613)] = 9809, - [SMALL_STATE(2614)] = 9880, - [SMALL_STATE(2615)] = 9951, - [SMALL_STATE(2616)] = 10022, - [SMALL_STATE(2617)] = 10093, - [SMALL_STATE(2618)] = 10164, - [SMALL_STATE(2619)] = 10235, - [SMALL_STATE(2620)] = 10306, - [SMALL_STATE(2621)] = 10377, - [SMALL_STATE(2622)] = 10448, - [SMALL_STATE(2623)] = 10519, - [SMALL_STATE(2624)] = 10602, - [SMALL_STATE(2625)] = 10681, - [SMALL_STATE(2626)] = 10768, - [SMALL_STATE(2627)] = 10839, - [SMALL_STATE(2628)] = 10910, - [SMALL_STATE(2629)] = 10981, - [SMALL_STATE(2630)] = 11056, - [SMALL_STATE(2631)] = 11131, - [SMALL_STATE(2632)] = 11214, - [SMALL_STATE(2633)] = 11285, - [SMALL_STATE(2634)] = 11408, - [SMALL_STATE(2635)] = 11479, - [SMALL_STATE(2636)] = 11550, - [SMALL_STATE(2637)] = 11621, - [SMALL_STATE(2638)] = 11692, - [SMALL_STATE(2639)] = 11767, - [SMALL_STATE(2640)] = 11838, - [SMALL_STATE(2641)] = 11909, - [SMALL_STATE(2642)] = 11980, - [SMALL_STATE(2643)] = 12051, - [SMALL_STATE(2644)] = 12122, - [SMALL_STATE(2645)] = 12193, - [SMALL_STATE(2646)] = 12264, - [SMALL_STATE(2647)] = 12335, - [SMALL_STATE(2648)] = 12406, - [SMALL_STATE(2649)] = 12477, - [SMALL_STATE(2650)] = 12548, - [SMALL_STATE(2651)] = 12619, - [SMALL_STATE(2652)] = 12690, - [SMALL_STATE(2653)] = 12761, - [SMALL_STATE(2654)] = 12832, - [SMALL_STATE(2655)] = 12903, - [SMALL_STATE(2656)] = 12974, - [SMALL_STATE(2657)] = 13045, - [SMALL_STATE(2658)] = 13116, - [SMALL_STATE(2659)] = 13187, - [SMALL_STATE(2660)] = 13258, - [SMALL_STATE(2661)] = 13329, - [SMALL_STATE(2662)] = 13400, - [SMALL_STATE(2663)] = 13471, - [SMALL_STATE(2664)] = 13542, - [SMALL_STATE(2665)] = 13613, - [SMALL_STATE(2666)] = 13683, - [SMALL_STATE(2667)] = 13757, - [SMALL_STATE(2668)] = 13827, - [SMALL_STATE(2669)] = 13897, - [SMALL_STATE(2670)] = 13967, - [SMALL_STATE(2671)] = 14037, - [SMALL_STATE(2672)] = 14107, - [SMALL_STATE(2673)] = 14177, - [SMALL_STATE(2674)] = 14247, - [SMALL_STATE(2675)] = 14325, - [SMALL_STATE(2676)] = 14395, - [SMALL_STATE(2677)] = 14471, - [SMALL_STATE(2678)] = 14541, - [SMALL_STATE(2679)] = 14619, - [SMALL_STATE(2680)] = 14689, - [SMALL_STATE(2681)] = 14759, - [SMALL_STATE(2682)] = 14843, - [SMALL_STATE(2683)] = 14913, - [SMALL_STATE(2684)] = 14997, - [SMALL_STATE(2685)] = 15071, - [SMALL_STATE(2686)] = 15145, - [SMALL_STATE(2687)] = 15219, - [SMALL_STATE(2688)] = 15293, - [SMALL_STATE(2689)] = 15369, - [SMALL_STATE(2690)] = 15443, - [SMALL_STATE(2691)] = 15513, - [SMALL_STATE(2692)] = 15587, - [SMALL_STATE(2693)] = 15661, - [SMALL_STATE(2694)] = 15733, - [SMALL_STATE(2695)] = 15805, - [SMALL_STATE(2696)] = 15875, - [SMALL_STATE(2697)] = 15951, - [SMALL_STATE(2698)] = 16025, - [SMALL_STATE(2699)] = 16107, - [SMALL_STATE(2700)] = 16177, - [SMALL_STATE(2701)] = 16251, - [SMALL_STATE(2702)] = 16321, - [SMALL_STATE(2703)] = 16403, - [SMALL_STATE(2704)] = 16473, - [SMALL_STATE(2705)] = 16547, - [SMALL_STATE(2706)] = 16631, - [SMALL_STATE(2707)] = 16709, - [SMALL_STATE(2708)] = 16795, - [SMALL_STATE(2709)] = 16867, - [SMALL_STATE(2710)] = 16937, - [SMALL_STATE(2711)] = 17021, - [SMALL_STATE(2712)] = 17099, - [SMALL_STATE(2713)] = 17171, - [SMALL_STATE(2714)] = 17241, - [SMALL_STATE(2715)] = 17311, - [SMALL_STATE(2716)] = 17381, - [SMALL_STATE(2717)] = 17451, - [SMALL_STATE(2718)] = 17521, - [SMALL_STATE(2719)] = 17591, - [SMALL_STATE(2720)] = 17661, - [SMALL_STATE(2721)] = 17737, - [SMALL_STATE(2722)] = 17811, - [SMALL_STATE(2723)] = 17881, - [SMALL_STATE(2724)] = 17951, - [SMALL_STATE(2725)] = 18035, - [SMALL_STATE(2726)] = 18105, - [SMALL_STATE(2727)] = 18175, - [SMALL_STATE(2728)] = 18245, - [SMALL_STATE(2729)] = 18315, - [SMALL_STATE(2730)] = 18384, - [SMALL_STATE(2731)] = 18453, - [SMALL_STATE(2732)] = 18522, - [SMALL_STATE(2733)] = 18591, - [SMALL_STATE(2734)] = 18660, - [SMALL_STATE(2735)] = 18729, - [SMALL_STATE(2736)] = 18798, - [SMALL_STATE(2737)] = 18867, - [SMALL_STATE(2738)] = 18936, - [SMALL_STATE(2739)] = 19005, - [SMALL_STATE(2740)] = 19082, - [SMALL_STATE(2741)] = 19151, - [SMALL_STATE(2742)] = 19220, - [SMALL_STATE(2743)] = 19289, - [SMALL_STATE(2744)] = 19358, - [SMALL_STATE(2745)] = 19427, - [SMALL_STATE(2746)] = 19496, - [SMALL_STATE(2747)] = 19565, - [SMALL_STATE(2748)] = 19634, - [SMALL_STATE(2749)] = 19703, - [SMALL_STATE(2750)] = 19772, - [SMALL_STATE(2751)] = 19845, - [SMALL_STATE(2752)] = 19930, - [SMALL_STATE(2753)] = 19999, - [SMALL_STATE(2754)] = 20068, - [SMALL_STATE(2755)] = 20137, - [SMALL_STATE(2756)] = 20206, - [SMALL_STATE(2757)] = 20275, - [SMALL_STATE(2758)] = 20344, - [SMALL_STATE(2759)] = 20413, - [SMALL_STATE(2760)] = 20482, - [SMALL_STATE(2761)] = 20561, - [SMALL_STATE(2762)] = 20630, - [SMALL_STATE(2763)] = 20699, - [SMALL_STATE(2764)] = 20768, - [SMALL_STATE(2765)] = 20837, - [SMALL_STATE(2766)] = 20906, - [SMALL_STATE(2767)] = 20975, - [SMALL_STATE(2768)] = 21044, - [SMALL_STATE(2769)] = 21113, - [SMALL_STATE(2770)] = 21182, - [SMALL_STATE(2771)] = 21251, - [SMALL_STATE(2772)] = 21320, - [SMALL_STATE(2773)] = 21389, - [SMALL_STATE(2774)] = 21458, - [SMALL_STATE(2775)] = 21539, - [SMALL_STATE(2776)] = 21612, - [SMALL_STATE(2777)] = 21681, - [SMALL_STATE(2778)] = 21750, - [SMALL_STATE(2779)] = 21819, - [SMALL_STATE(2780)] = 21888, - [SMALL_STATE(2781)] = 21957, - [SMALL_STATE(2782)] = 22028, - [SMALL_STATE(2783)] = 22103, - [SMALL_STATE(2784)] = 22180, - [SMALL_STATE(2785)] = 22249, - [SMALL_STATE(2786)] = 22320, - [SMALL_STATE(2787)] = 22389, - [SMALL_STATE(2788)] = 22470, - [SMALL_STATE(2789)] = 22539, - [SMALL_STATE(2790)] = 22608, - [SMALL_STATE(2791)] = 22679, - [SMALL_STATE(2792)] = 22748, - [SMALL_STATE(2793)] = 22817, - [SMALL_STATE(2794)] = 22886, - [SMALL_STATE(2795)] = 22955, - [SMALL_STATE(2796)] = 23032, - [SMALL_STATE(2797)] = 23113, - [SMALL_STATE(2798)] = 23182, - [SMALL_STATE(2799)] = 23251, - [SMALL_STATE(2800)] = 23328, - [SMALL_STATE(2801)] = 23397, - [SMALL_STATE(2802)] = 23466, - [SMALL_STATE(2803)] = 23535, - [SMALL_STATE(2804)] = 23604, - [SMALL_STATE(2805)] = 23673, - [SMALL_STATE(2806)] = 23742, - [SMALL_STATE(2807)] = 23811, - [SMALL_STATE(2808)] = 23932, - [SMALL_STATE(2809)] = 24001, - [SMALL_STATE(2810)] = 24078, - [SMALL_STATE(2811)] = 24199, - [SMALL_STATE(2812)] = 24268, - [SMALL_STATE(2813)] = 24337, - [SMALL_STATE(2814)] = 24406, - [SMALL_STATE(2815)] = 24475, - [SMALL_STATE(2816)] = 24544, - [SMALL_STATE(2817)] = 24613, - [SMALL_STATE(2818)] = 24690, - [SMALL_STATE(2819)] = 24759, - [SMALL_STATE(2820)] = 24828, - [SMALL_STATE(2821)] = 24897, - [SMALL_STATE(2822)] = 24966, - [SMALL_STATE(2823)] = 25035, - [SMALL_STATE(2824)] = 25104, - [SMALL_STATE(2825)] = 25185, - [SMALL_STATE(2826)] = 25254, - [SMALL_STATE(2827)] = 25323, - [SMALL_STATE(2828)] = 25396, - [SMALL_STATE(2829)] = 25465, - [SMALL_STATE(2830)] = 25538, - [SMALL_STATE(2831)] = 25607, - [SMALL_STATE(2832)] = 25676, - [SMALL_STATE(2833)] = 25745, - [SMALL_STATE(2834)] = 25814, - [SMALL_STATE(2835)] = 25883, - [SMALL_STATE(2836)] = 25952, - [SMALL_STATE(2837)] = 26021, - [SMALL_STATE(2838)] = 26090, - [SMALL_STATE(2839)] = 26158, - [SMALL_STATE(2840)] = 26230, - [SMALL_STATE(2841)] = 26314, - [SMALL_STATE(2842)] = 26386, - [SMALL_STATE(2843)] = 26454, - [SMALL_STATE(2844)] = 26526, - [SMALL_STATE(2845)] = 26598, - [SMALL_STATE(2846)] = 26670, - [SMALL_STATE(2847)] = 26742, - [SMALL_STATE(2848)] = 26814, - [SMALL_STATE(2849)] = 26886, - [SMALL_STATE(2850)] = 26958, - [SMALL_STATE(2851)] = 27034, - [SMALL_STATE(2852)] = 27102, - [SMALL_STATE(2853)] = 27174, - [SMALL_STATE(2854)] = 27252, - [SMALL_STATE(2855)] = 27324, - [SMALL_STATE(2856)] = 27400, - [SMALL_STATE(2857)] = 27472, - [SMALL_STATE(2858)] = 27540, - [SMALL_STATE(2859)] = 27612, - [SMALL_STATE(2860)] = 27684, - [SMALL_STATE(2861)] = 27756, - [SMALL_STATE(2862)] = 27824, - [SMALL_STATE(2863)] = 27892, - [SMALL_STATE(2864)] = 27964, - [SMALL_STATE(2865)] = 28038, - [SMALL_STATE(2866)] = 28110, - [SMALL_STATE(2867)] = 28184, - [SMALL_STATE(2868)] = 28256, - [SMALL_STATE(2869)] = 28340, - [SMALL_STATE(2870)] = 28412, - [SMALL_STATE(2871)] = 28484, - [SMALL_STATE(2872)] = 28556, - [SMALL_STATE(2873)] = 28640, - [SMALL_STATE(2874)] = 28708, - [SMALL_STATE(2875)] = 28776, - [SMALL_STATE(2876)] = 28852, - [SMALL_STATE(2877)] = 28924, - [SMALL_STATE(2878)] = 28996, - [SMALL_STATE(2879)] = 29068, - [SMALL_STATE(2880)] = 29188, - [SMALL_STATE(2881)] = 29260, - [SMALL_STATE(2882)] = 29344, - [SMALL_STATE(2883)] = 29428, - [SMALL_STATE(2884)] = 29500, - [SMALL_STATE(2885)] = 29567, - [SMALL_STATE(2886)] = 29634, - [SMALL_STATE(2887)] = 29709, - [SMALL_STATE(2888)] = 29776, - [SMALL_STATE(2889)] = 29849, - [SMALL_STATE(2890)] = 29924, - [SMALL_STATE(2891)] = 29995, - [SMALL_STATE(2892)] = 30066, - [SMALL_STATE(2893)] = 30145, - [SMALL_STATE(2894)] = 30216, - [SMALL_STATE(2895)] = 30283, - [SMALL_STATE(2896)] = 30350, - [SMALL_STATE(2897)] = 30421, - [SMALL_STATE(2898)] = 30492, - [SMALL_STATE(2899)] = 30565, - [SMALL_STATE(2900)] = 30636, - [SMALL_STATE(2901)] = 30707, - [SMALL_STATE(2902)] = 30778, - [SMALL_STATE(2903)] = 30851, - [SMALL_STATE(2904)] = 30920, - [SMALL_STATE(2905)] = 30999, - [SMALL_STATE(2906)] = 31070, - [SMALL_STATE(2907)] = 31139, - [SMALL_STATE(2908)] = 31206, - [SMALL_STATE(2909)] = 31277, - [SMALL_STATE(2910)] = 31346, - [SMALL_STATE(2911)] = 31421, - [SMALL_STATE(2912)] = 31496, - [SMALL_STATE(2913)] = 31579, - [SMALL_STATE(2914)] = 31649, - [SMALL_STATE(2915)] = 31717, - [SMALL_STATE(2916)] = 31789, - [SMALL_STATE(2917)] = 31867, - [SMALL_STATE(2918)] = 31937, - [SMALL_STATE(2919)] = 32007, - [SMALL_STATE(2920)] = 32077, - [SMALL_STATE(2921)] = 32159, - [SMALL_STATE(2922)] = 32231, - [SMALL_STATE(2923)] = 32301, - [SMALL_STATE(2924)] = 32371, - [SMALL_STATE(2925)] = 32441, - [SMALL_STATE(2926)] = 32511, - [SMALL_STATE(2927)] = 32589, - [SMALL_STATE(2928)] = 32655, - [SMALL_STATE(2929)] = 32731, - [SMALL_STATE(2930)] = 32799, - [SMALL_STATE(2931)] = 32881, - [SMALL_STATE(2932)] = 32947, - [SMALL_STATE(2933)] = 33029, - [SMALL_STATE(2934)] = 33095, - [SMALL_STATE(2935)] = 33165, - [SMALL_STATE(2936)] = 33247, - [SMALL_STATE(2937)] = 33313, - [SMALL_STATE(2938)] = 33383, - [SMALL_STATE(2939)] = 33451, - [SMALL_STATE(2940)] = 33521, - [SMALL_STATE(2941)] = 33591, - [SMALL_STATE(2942)] = 33661, - [SMALL_STATE(2943)] = 33731, - [SMALL_STATE(2944)] = 33828, - [SMALL_STATE(2945)] = 33893, - [SMALL_STATE(2946)] = 33992, - [SMALL_STATE(2947)] = 34057, - [SMALL_STATE(2948)] = 34152, - [SMALL_STATE(2949)] = 34243, - [SMALL_STATE(2950)] = 34330, - [SMALL_STATE(2951)] = 34395, - [SMALL_STATE(2952)] = 34460, - [SMALL_STATE(2953)] = 34525, - [SMALL_STATE(2954)] = 34600, - [SMALL_STATE(2955)] = 34681, - [SMALL_STATE(2956)] = 34746, - [SMALL_STATE(2957)] = 34831, - [SMALL_STATE(2958)] = 34914, - [SMALL_STATE(2959)] = 34979, - [SMALL_STATE(2960)] = 35044, - [SMALL_STATE(2961)] = 35125, - [SMALL_STATE(2962)] = 35234, - [SMALL_STATE(2963)] = 35305, - [SMALL_STATE(2964)] = 35410, - [SMALL_STATE(2965)] = 35479, - [SMALL_STATE(2966)] = 35588, - [SMALL_STATE(2967)] = 35701, - [SMALL_STATE(2968)] = 35782, - [SMALL_STATE(2969)] = 35851, - [SMALL_STATE(2970)] = 35960, - [SMALL_STATE(2971)] = 36025, - [SMALL_STATE(2972)] = 36094, - [SMALL_STATE(2973)] = 36167, - [SMALL_STATE(2974)] = 36248, - [SMALL_STATE(2975)] = 36361, - [SMALL_STATE(2976)] = 36470, - [SMALL_STATE(2977)] = 36571, - [SMALL_STATE(2978)] = 36638, - [SMALL_STATE(2979)] = 36707, - [SMALL_STATE(2980)] = 36774, - [SMALL_STATE(2981)] = 36849, - [SMALL_STATE(2982)] = 36918, - [SMALL_STATE(2983)] = 36993, - [SMALL_STATE(2984)] = 37058, - [SMALL_STATE(2985)] = 37127, - [SMALL_STATE(2986)] = 37202, - [SMALL_STATE(2987)] = 37267, - [SMALL_STATE(2988)] = 37334, - [SMALL_STATE(2989)] = 37399, - [SMALL_STATE(2990)] = 37468, - [SMALL_STATE(2991)] = 37533, - [SMALL_STATE(2992)] = 37598, - [SMALL_STATE(2993)] = 37663, - [SMALL_STATE(2994)] = 37728, - [SMALL_STATE(2995)] = 37793, - [SMALL_STATE(2996)] = 37906, - [SMALL_STATE(2997)] = 37971, - [SMALL_STATE(2998)] = 38038, - [SMALL_STATE(2999)] = 38111, - [SMALL_STATE(3000)] = 38184, - [SMALL_STATE(3001)] = 38249, - [SMALL_STATE(3002)] = 38330, - [SMALL_STATE(3003)] = 38403, - [SMALL_STATE(3004)] = 38468, - [SMALL_STATE(3005)] = 38539, - [SMALL_STATE(3006)] = 38604, - [SMALL_STATE(3007)] = 38669, - [SMALL_STATE(3008)] = 38740, - [SMALL_STATE(3009)] = 38805, - [SMALL_STATE(3010)] = 38871, - [SMALL_STATE(3011)] = 38935, - [SMALL_STATE(3012)] = 39011, - [SMALL_STATE(3013)] = 39079, - [SMALL_STATE(3014)] = 39145, - [SMALL_STATE(3015)] = 39209, - [SMALL_STATE(3016)] = 39273, - [SMALL_STATE(3017)] = 39345, - [SMALL_STATE(3018)] = 39413, - [SMALL_STATE(3019)] = 39477, - [SMALL_STATE(3020)] = 39541, - [SMALL_STATE(3021)] = 39607, - [SMALL_STATE(3022)] = 39675, - [SMALL_STATE(3023)] = 39739, - [SMALL_STATE(3024)] = 39803, - [SMALL_STATE(3025)] = 39867, - [SMALL_STATE(3026)] = 39931, - [SMALL_STATE(3027)] = 39999, - [SMALL_STATE(3028)] = 40063, - [SMALL_STATE(3029)] = 40127, - [SMALL_STATE(3030)] = 40191, - [SMALL_STATE(3031)] = 40259, - [SMALL_STATE(3032)] = 40323, - [SMALL_STATE(3033)] = 40393, - [SMALL_STATE(3034)] = 40457, - [SMALL_STATE(3035)] = 40521, - [SMALL_STATE(3036)] = 40589, - [SMALL_STATE(3037)] = 40655, - [SMALL_STATE(3038)] = 40723, - [SMALL_STATE(3039)] = 40787, - [SMALL_STATE(3040)] = 40855, - [SMALL_STATE(3041)] = 40919, - [SMALL_STATE(3042)] = 40983, - [SMALL_STATE(3043)] = 41051, - [SMALL_STATE(3044)] = 41115, - [SMALL_STATE(3045)] = 41179, - [SMALL_STATE(3046)] = 41245, - [SMALL_STATE(3047)] = 41309, - [SMALL_STATE(3048)] = 41373, - [SMALL_STATE(3049)] = 41441, - [SMALL_STATE(3050)] = 41505, - [SMALL_STATE(3051)] = 41569, - [SMALL_STATE(3052)] = 41639, - [SMALL_STATE(3053)] = 41703, - [SMALL_STATE(3054)] = 41767, - [SMALL_STATE(3055)] = 41835, - [SMALL_STATE(3056)] = 41903, - [SMALL_STATE(3057)] = 41967, - [SMALL_STATE(3058)] = 42035, - [SMALL_STATE(3059)] = 42099, - [SMALL_STATE(3060)] = 42167, - [SMALL_STATE(3061)] = 42231, - [SMALL_STATE(3062)] = 42297, - [SMALL_STATE(3063)] = 42361, - [SMALL_STATE(3064)] = 42425, - [SMALL_STATE(3065)] = 42489, - [SMALL_STATE(3066)] = 42553, - [SMALL_STATE(3067)] = 42617, - [SMALL_STATE(3068)] = 42681, - [SMALL_STATE(3069)] = 42745, - [SMALL_STATE(3070)] = 42813, - [SMALL_STATE(3071)] = 42877, - [SMALL_STATE(3072)] = 42941, - [SMALL_STATE(3073)] = 43005, - [SMALL_STATE(3074)] = 43069, - [SMALL_STATE(3075)] = 43137, - [SMALL_STATE(3076)] = 43203, - [SMALL_STATE(3077)] = 43267, - [SMALL_STATE(3078)] = 43331, - [SMALL_STATE(3079)] = 43395, - [SMALL_STATE(3080)] = 43467, - [SMALL_STATE(3081)] = 43533, - [SMALL_STATE(3082)] = 43597, - [SMALL_STATE(3083)] = 43661, - [SMALL_STATE(3084)] = 43725, - [SMALL_STATE(3085)] = 43789, - [SMALL_STATE(3086)] = 43865, - [SMALL_STATE(3087)] = 43929, - [SMALL_STATE(3088)] = 43993, - [SMALL_STATE(3089)] = 44057, - [SMALL_STATE(3090)] = 44121, - [SMALL_STATE(3091)] = 44185, - [SMALL_STATE(3092)] = 44255, - [SMALL_STATE(3093)] = 44325, - [SMALL_STATE(3094)] = 44389, - [SMALL_STATE(3095)] = 44453, - [SMALL_STATE(3096)] = 44521, - [SMALL_STATE(3097)] = 44585, - [SMALL_STATE(3098)] = 44651, - [SMALL_STATE(3099)] = 44715, - [SMALL_STATE(3100)] = 44779, - [SMALL_STATE(3101)] = 44847, - [SMALL_STATE(3102)] = 44911, - [SMALL_STATE(3103)] = 44975, - [SMALL_STATE(3104)] = 45039, - [SMALL_STATE(3105)] = 45105, - [SMALL_STATE(3106)] = 45173, - [SMALL_STATE(3107)] = 45241, - [SMALL_STATE(3108)] = 45309, - [SMALL_STATE(3109)] = 45373, - [SMALL_STATE(3110)] = 45437, - [SMALL_STATE(3111)] = 45501, - [SMALL_STATE(3112)] = 45569, - [SMALL_STATE(3113)] = 45637, - [SMALL_STATE(3114)] = 45701, - [SMALL_STATE(3115)] = 45765, - [SMALL_STATE(3116)] = 45829, - [SMALL_STATE(3117)] = 45893, - [SMALL_STATE(3118)] = 45957, - [SMALL_STATE(3119)] = 46021, - [SMALL_STATE(3120)] = 46085, - [SMALL_STATE(3121)] = 46153, - [SMALL_STATE(3122)] = 46217, - [SMALL_STATE(3123)] = 46285, - [SMALL_STATE(3124)] = 46349, - [SMALL_STATE(3125)] = 46413, - [SMALL_STATE(3126)] = 46481, - [SMALL_STATE(3127)] = 46549, - [SMALL_STATE(3128)] = 46617, - [SMALL_STATE(3129)] = 46689, - [SMALL_STATE(3130)] = 46757, - [SMALL_STATE(3131)] = 46825, - [SMALL_STATE(3132)] = 46891, - [SMALL_STATE(3133)] = 46959, - [SMALL_STATE(3134)] = 47027, - [SMALL_STATE(3135)] = 47090, - [SMALL_STATE(3136)] = 47153, - [SMALL_STATE(3137)] = 47234, - [SMALL_STATE(3138)] = 47329, - [SMALL_STATE(3139)] = 47392, - [SMALL_STATE(3140)] = 47489, - [SMALL_STATE(3141)] = 47590, - [SMALL_STATE(3142)] = 47673, - [SMALL_STATE(3143)] = 47778, - [SMALL_STATE(3144)] = 47869, - [SMALL_STATE(3145)] = 47948, - [SMALL_STATE(3146)] = 48011, - [SMALL_STATE(3147)] = 48100, - [SMALL_STATE(3148)] = 48185, - [SMALL_STATE(3149)] = 48266, - [SMALL_STATE(3150)] = 48333, - [SMALL_STATE(3151)] = 48396, - [SMALL_STATE(3152)] = 48479, - [SMALL_STATE(3153)] = 48542, - [SMALL_STATE(3154)] = 48649, - [SMALL_STATE(3155)] = 48716, - [SMALL_STATE(3156)] = 48787, - [SMALL_STATE(3157)] = 48900, - [SMALL_STATE(3158)] = 48965, - [SMALL_STATE(3159)] = 49030, - [SMALL_STATE(3160)] = 49097, - [SMALL_STATE(3161)] = 49164, - [SMALL_STATE(3162)] = 49243, - [SMALL_STATE(3163)] = 49352, - [SMALL_STATE(3164)] = 49419, - [SMALL_STATE(3165)] = 49492, - [SMALL_STATE(3166)] = 49577, - [SMALL_STATE(3167)] = 49654, - [SMALL_STATE(3168)] = 49765, - [SMALL_STATE(3169)] = 49842, - [SMALL_STATE(3170)] = 49905, - [SMALL_STATE(3171)] = 49978, - [SMALL_STATE(3172)] = 50047, - [SMALL_STATE(3173)] = 50124, - [SMALL_STATE(3174)] = 50197, - [SMALL_STATE(3175)] = 50276, - [SMALL_STATE(3176)] = 50339, - [SMALL_STATE(3177)] = 50448, - [SMALL_STATE(3178)] = 50561, - [SMALL_STATE(3179)] = 50640, - [SMALL_STATE(3180)] = 50747, - [SMALL_STATE(3181)] = 50858, - [SMALL_STATE(3182)] = 50965, - [SMALL_STATE(3183)] = 51050, - [SMALL_STATE(3184)] = 51113, - [SMALL_STATE(3185)] = 51180, - [SMALL_STATE(3186)] = 51289, - [SMALL_STATE(3187)] = 51352, - [SMALL_STATE(3188)] = 51419, - [SMALL_STATE(3189)] = 51504, - [SMALL_STATE(3190)] = 51575, - [SMALL_STATE(3191)] = 51688, - [SMALL_STATE(3192)] = 51757, - [SMALL_STATE(3193)] = 51820, - [SMALL_STATE(3194)] = 51929, - [SMALL_STATE(3195)] = 51992, - [SMALL_STATE(3196)] = 52081, - [SMALL_STATE(3197)] = 52144, - [SMALL_STATE(3198)] = 52223, - [SMALL_STATE(3199)] = 52316, - [SMALL_STATE(3200)] = 52391, - [SMALL_STATE(3201)] = 52498, - [SMALL_STATE(3202)] = 52575, - [SMALL_STATE(3203)] = 52670, - [SMALL_STATE(3204)] = 52737, - [SMALL_STATE(3205)] = 52834, - [SMALL_STATE(3206)] = 52933, - [SMALL_STATE(3207)] = 53036, - [SMALL_STATE(3208)] = 53147, - [SMALL_STATE(3209)] = 53224, - [SMALL_STATE(3210)] = 53331, - [SMALL_STATE(3211)] = 53394, - [SMALL_STATE(3212)] = 53461, - [SMALL_STATE(3213)] = 53524, - [SMALL_STATE(3214)] = 53591, - [SMALL_STATE(3215)] = 53664, - [SMALL_STATE(3216)] = 53729, - [SMALL_STATE(3217)] = 53796, - [SMALL_STATE(3218)] = 53863, - [SMALL_STATE(3219)] = 53930, - [SMALL_STATE(3220)] = 53997, - [SMALL_STATE(3221)] = 54072, - [SMALL_STATE(3222)] = 54135, - [SMALL_STATE(3223)] = 54214, - [SMALL_STATE(3224)] = 54279, - [SMALL_STATE(3225)] = 54341, - [SMALL_STATE(3226)] = 54403, - [SMALL_STATE(3227)] = 54473, - [SMALL_STATE(3228)] = 54541, - [SMALL_STATE(3229)] = 54607, - [SMALL_STATE(3230)] = 54669, - [SMALL_STATE(3231)] = 54731, - [SMALL_STATE(3232)] = 54801, - [SMALL_STATE(3233)] = 54863, - [SMALL_STATE(3234)] = 54925, - [SMALL_STATE(3235)] = 54987, - [SMALL_STATE(3236)] = 55059, - [SMALL_STATE(3237)] = 55125, - [SMALL_STATE(3238)] = 55187, - [SMALL_STATE(3239)] = 55249, - [SMALL_STATE(3240)] = 55319, - [SMALL_STATE(3241)] = 55387, - [SMALL_STATE(3242)] = 55453, - [SMALL_STATE(3243)] = 55517, - [SMALL_STATE(3244)] = 55579, - [SMALL_STATE(3245)] = 55645, - [SMALL_STATE(3246)] = 55711, - [SMALL_STATE(3247)] = 55773, - [SMALL_STATE(3248)] = 55835, - [SMALL_STATE(3249)] = 55901, - [SMALL_STATE(3250)] = 55963, - [SMALL_STATE(3251)] = 56025, - [SMALL_STATE(3252)] = 56087, - [SMALL_STATE(3253)] = 56159, - [SMALL_STATE(3254)] = 56221, - [SMALL_STATE(3255)] = 56283, - [SMALL_STATE(3256)] = 56345, - [SMALL_STATE(3257)] = 56407, - [SMALL_STATE(3258)] = 56469, - [SMALL_STATE(3259)] = 56531, - [SMALL_STATE(3260)] = 56593, - [SMALL_STATE(3261)] = 56655, - [SMALL_STATE(3262)] = 56717, - [SMALL_STATE(3263)] = 56779, - [SMALL_STATE(3264)] = 56841, - [SMALL_STATE(3265)] = 56907, - [SMALL_STATE(3266)] = 56969, - [SMALL_STATE(3267)] = 57035, - [SMALL_STATE(3268)] = 57097, - [SMALL_STATE(3269)] = 57159, - [SMALL_STATE(3270)] = 57221, - [SMALL_STATE(3271)] = 57283, - [SMALL_STATE(3272)] = 57345, - [SMALL_STATE(3273)] = 57407, - [SMALL_STATE(3274)] = 57469, - [SMALL_STATE(3275)] = 57531, - [SMALL_STATE(3276)] = 57599, - [SMALL_STATE(3277)] = 57665, - [SMALL_STATE(3278)] = 57727, - [SMALL_STATE(3279)] = 57789, - [SMALL_STATE(3280)] = 57851, - [SMALL_STATE(3281)] = 57913, - [SMALL_STATE(3282)] = 57975, - [SMALL_STATE(3283)] = 58037, - [SMALL_STATE(3284)] = 58099, - [SMALL_STATE(3285)] = 58161, - [SMALL_STATE(3286)] = 58223, - [SMALL_STATE(3287)] = 58285, - [SMALL_STATE(3288)] = 58347, - [SMALL_STATE(3289)] = 58409, - [SMALL_STATE(3290)] = 58471, - [SMALL_STATE(3291)] = 58533, - [SMALL_STATE(3292)] = 58595, - [SMALL_STATE(3293)] = 58657, - [SMALL_STATE(3294)] = 58719, - [SMALL_STATE(3295)] = 58781, - [SMALL_STATE(3296)] = 58843, - [SMALL_STATE(3297)] = 58907, - [SMALL_STATE(3298)] = 58969, - [SMALL_STATE(3299)] = 59031, - [SMALL_STATE(3300)] = 59093, - [SMALL_STATE(3301)] = 59155, - [SMALL_STATE(3302)] = 59217, - [SMALL_STATE(3303)] = 59279, - [SMALL_STATE(3304)] = 59341, - [SMALL_STATE(3305)] = 59403, - [SMALL_STATE(3306)] = 59465, - [SMALL_STATE(3307)] = 59527, - [SMALL_STATE(3308)] = 59589, - [SMALL_STATE(3309)] = 59651, - [SMALL_STATE(3310)] = 59723, - [SMALL_STATE(3311)] = 59785, - [SMALL_STATE(3312)] = 59847, - [SMALL_STATE(3313)] = 59909, - [SMALL_STATE(3314)] = 59971, - [SMALL_STATE(3315)] = 60033, - [SMALL_STATE(3316)] = 60095, - [SMALL_STATE(3317)] = 60161, - [SMALL_STATE(3318)] = 60223, - [SMALL_STATE(3319)] = 60285, - [SMALL_STATE(3320)] = 60347, - [SMALL_STATE(3321)] = 60419, - [SMALL_STATE(3322)] = 60481, - [SMALL_STATE(3323)] = 60543, - [SMALL_STATE(3324)] = 60611, - [SMALL_STATE(3325)] = 60673, - [SMALL_STATE(3326)] = 60735, - [SMALL_STATE(3327)] = 60797, - [SMALL_STATE(3328)] = 60859, - [SMALL_STATE(3329)] = 60921, - [SMALL_STATE(3330)] = 60985, - [SMALL_STATE(3331)] = 61055, - [SMALL_STATE(3332)] = 61117, - [SMALL_STATE(3333)] = 61185, - [SMALL_STATE(3334)] = 61251, - [SMALL_STATE(3335)] = 61313, - [SMALL_STATE(3336)] = 61377, - [SMALL_STATE(3337)] = 61439, - [SMALL_STATE(3338)] = 61501, - [SMALL_STATE(3339)] = 61563, - [SMALL_STATE(3340)] = 61625, - [SMALL_STATE(3341)] = 61687, - [SMALL_STATE(3342)] = 61749, - [SMALL_STATE(3343)] = 61811, - [SMALL_STATE(3344)] = 61873, - [SMALL_STATE(3345)] = 61935, - [SMALL_STATE(3346)] = 61997, - [SMALL_STATE(3347)] = 62059, - [SMALL_STATE(3348)] = 62121, - [SMALL_STATE(3349)] = 62183, - [SMALL_STATE(3350)] = 62244, - [SMALL_STATE(3351)] = 62305, - [SMALL_STATE(3352)] = 62410, - [SMALL_STATE(3353)] = 62471, - [SMALL_STATE(3354)] = 62536, - [SMALL_STATE(3355)] = 62597, - [SMALL_STATE(3356)] = 62662, - [SMALL_STATE(3357)] = 62727, - [SMALL_STATE(3358)] = 62790, - [SMALL_STATE(3359)] = 62855, - [SMALL_STATE(3360)] = 62918, - [SMALL_STATE(3361)] = 62989, - [SMALL_STATE(3362)] = 63050, - [SMALL_STATE(3363)] = 63119, - [SMALL_STATE(3364)] = 63180, - [SMALL_STATE(3365)] = 63249, - [SMALL_STATE(3366)] = 63310, - [SMALL_STATE(3367)] = 63371, - [SMALL_STATE(3368)] = 63432, - [SMALL_STATE(3369)] = 63505, - [SMALL_STATE(3370)] = 63566, - [SMALL_STATE(3371)] = 63627, - [SMALL_STATE(3372)] = 63688, - [SMALL_STATE(3373)] = 63763, - [SMALL_STATE(3374)] = 63838, - [SMALL_STATE(3375)] = 63899, - [SMALL_STATE(3376)] = 63960, - [SMALL_STATE(3377)] = 64021, - [SMALL_STATE(3378)] = 64082, - [SMALL_STATE(3379)] = 64143, - [SMALL_STATE(3380)] = 64204, - [SMALL_STATE(3381)] = 64269, - [SMALL_STATE(3382)] = 64330, - [SMALL_STATE(3383)] = 64391, - [SMALL_STATE(3384)] = 64452, - [SMALL_STATE(3385)] = 64513, - [SMALL_STATE(3386)] = 64580, - [SMALL_STATE(3387)] = 64645, - [SMALL_STATE(3388)] = 64710, - [SMALL_STATE(3389)] = 64817, - [SMALL_STATE(3390)] = 64878, - [SMALL_STATE(3391)] = 64939, - [SMALL_STATE(3392)] = 65000, - [SMALL_STATE(3393)] = 65065, - [SMALL_STATE(3394)] = 65138, - [SMALL_STATE(3395)] = 65215, - [SMALL_STATE(3396)] = 65276, - [SMALL_STATE(3397)] = 65345, - [SMALL_STATE(3398)] = 65406, - [SMALL_STATE(3399)] = 65469, - [SMALL_STATE(3400)] = 65530, - [SMALL_STATE(3401)] = 65595, - [SMALL_STATE(3402)] = 65656, - [SMALL_STATE(3403)] = 65717, - [SMALL_STATE(3404)] = 65778, - [SMALL_STATE(3405)] = 65839, - [SMALL_STATE(3406)] = 65904, - [SMALL_STATE(3407)] = 65965, - [SMALL_STATE(3408)] = 66026, - [SMALL_STATE(3409)] = 66087, - [SMALL_STATE(3410)] = 66148, - [SMALL_STATE(3411)] = 66209, - [SMALL_STATE(3412)] = 66276, - [SMALL_STATE(3413)] = 66337, - [SMALL_STATE(3414)] = 66398, - [SMALL_STATE(3415)] = 66459, - [SMALL_STATE(3416)] = 66520, - [SMALL_STATE(3417)] = 66581, - [SMALL_STATE(3418)] = 66642, - [SMALL_STATE(3419)] = 66703, - [SMALL_STATE(3420)] = 66764, - [SMALL_STATE(3421)] = 66825, - [SMALL_STATE(3422)] = 66892, - [SMALL_STATE(3423)] = 66953, - [SMALL_STATE(3424)] = 67014, - [SMALL_STATE(3425)] = 67091, - [SMALL_STATE(3426)] = 67152, - [SMALL_STATE(3427)] = 67213, - [SMALL_STATE(3428)] = 67278, - [SMALL_STATE(3429)] = 67339, - [SMALL_STATE(3430)] = 67400, - [SMALL_STATE(3431)] = 67461, - [SMALL_STATE(3432)] = 67522, - [SMALL_STATE(3433)] = 67633, - [SMALL_STATE(3434)] = 67694, - [SMALL_STATE(3435)] = 67801, - [SMALL_STATE(3436)] = 67862, - [SMALL_STATE(3437)] = 67923, - [SMALL_STATE(3438)] = 68000, - [SMALL_STATE(3439)] = 68061, - [SMALL_STATE(3440)] = 68122, - [SMALL_STATE(3441)] = 68183, - [SMALL_STATE(3442)] = 68244, - [SMALL_STATE(3443)] = 68305, - [SMALL_STATE(3444)] = 68366, - [SMALL_STATE(3445)] = 68427, - [SMALL_STATE(3446)] = 68488, - [SMALL_STATE(3447)] = 68593, - [SMALL_STATE(3448)] = 68662, - [SMALL_STATE(3449)] = 68729, - [SMALL_STATE(3450)] = 68798, - [SMALL_STATE(3451)] = 68905, - [SMALL_STATE(3452)] = 68966, - [SMALL_STATE(3453)] = 69077, - [SMALL_STATE(3454)] = 69138, - [SMALL_STATE(3455)] = 69245, - [SMALL_STATE(3456)] = 69306, - [SMALL_STATE(3457)] = 69367, - [SMALL_STATE(3458)] = 69430, - [SMALL_STATE(3459)] = 69495, - [SMALL_STATE(3460)] = 69556, - [SMALL_STATE(3461)] = 69617, - [SMALL_STATE(3462)] = 69678, - [SMALL_STATE(3463)] = 69739, - [SMALL_STATE(3464)] = 69808, - [SMALL_STATE(3465)] = 69869, - [SMALL_STATE(3466)] = 69980, - [SMALL_STATE(3467)] = 70041, - [SMALL_STATE(3468)] = 70118, - [SMALL_STATE(3469)] = 70197, - [SMALL_STATE(3470)] = 70278, - [SMALL_STATE(3471)] = 70343, - [SMALL_STATE(3472)] = 70454, - [SMALL_STATE(3473)] = 70515, - [SMALL_STATE(3474)] = 70582, - [SMALL_STATE(3475)] = 70647, - [SMALL_STATE(3476)] = 70708, - [SMALL_STATE(3477)] = 70769, - [SMALL_STATE(3478)] = 70830, - [SMALL_STATE(3479)] = 70891, - [SMALL_STATE(3480)] = 70952, - [SMALL_STATE(3481)] = 71013, - [SMALL_STATE(3482)] = 71074, - [SMALL_STATE(3483)] = 71135, - [SMALL_STATE(3484)] = 71196, - [SMALL_STATE(3485)] = 71303, - [SMALL_STATE(3486)] = 71410, - [SMALL_STATE(3487)] = 71475, - [SMALL_STATE(3488)] = 71536, - [SMALL_STATE(3489)] = 71597, - [SMALL_STATE(3490)] = 71658, - [SMALL_STATE(3491)] = 71723, - [SMALL_STATE(3492)] = 71784, - [SMALL_STATE(3493)] = 71849, - [SMALL_STATE(3494)] = 71926, - [SMALL_STATE(3495)] = 71987, - [SMALL_STATE(3496)] = 72048, - [SMALL_STATE(3497)] = 72131, - [SMALL_STATE(3498)] = 72192, - [SMALL_STATE(3499)] = 72279, - [SMALL_STATE(3500)] = 72354, - [SMALL_STATE(3501)] = 72415, - [SMALL_STATE(3502)] = 72476, - [SMALL_STATE(3503)] = 72537, - [SMALL_STATE(3504)] = 72598, - [SMALL_STATE(3505)] = 72659, - [SMALL_STATE(3506)] = 72720, - [SMALL_STATE(3507)] = 72781, - [SMALL_STATE(3508)] = 72892, - [SMALL_STATE(3509)] = 72953, - [SMALL_STATE(3510)] = 73014, - [SMALL_STATE(3511)] = 73075, - [SMALL_STATE(3512)] = 73136, - [SMALL_STATE(3513)] = 73239, - [SMALL_STATE(3514)] = 73300, - [SMALL_STATE(3515)] = 73377, - [SMALL_STATE(3516)] = 73452, - [SMALL_STATE(3517)] = 73513, - [SMALL_STATE(3518)] = 73612, - [SMALL_STATE(3519)] = 73707, - [SMALL_STATE(3520)] = 73800, - [SMALL_STATE(3521)] = 73861, - [SMALL_STATE(3522)] = 73922, - [SMALL_STATE(3523)] = 73983, - [SMALL_STATE(3524)] = 74072, - [SMALL_STATE(3525)] = 74159, - [SMALL_STATE(3526)] = 74242, - [SMALL_STATE(3527)] = 74303, - [SMALL_STATE(3528)] = 74382, - [SMALL_STATE(3529)] = 74443, - [SMALL_STATE(3530)] = 74508, - [SMALL_STATE(3531)] = 74569, - [SMALL_STATE(3532)] = 74676, - [SMALL_STATE(3533)] = 74737, - [SMALL_STATE(3534)] = 74818, - [SMALL_STATE(3535)] = 74889, - [SMALL_STATE(3536)] = 74996, - [SMALL_STATE(3537)] = 75107, - [SMALL_STATE(3538)] = 75168, - [SMALL_STATE(3539)] = 75257, - [SMALL_STATE(3540)] = 75350, - [SMALL_STATE(3541)] = 75415, - [SMALL_STATE(3542)] = 75480, - [SMALL_STATE(3543)] = 75583, - [SMALL_STATE(3544)] = 75658, - [SMALL_STATE(3545)] = 75757, - [SMALL_STATE(3546)] = 75852, - [SMALL_STATE(3547)] = 75917, - [SMALL_STATE(3548)] = 75981, - [SMALL_STATE(3549)] = 76047, - [SMALL_STATE(3550)] = 76155, - [SMALL_STATE(3551)] = 76219, - [SMALL_STATE(3552)] = 76285, - [SMALL_STATE(3553)] = 76347, - [SMALL_STATE(3554)] = 76421, - [SMALL_STATE(3555)] = 76487, - [SMALL_STATE(3556)] = 76547, - [SMALL_STATE(3557)] = 76609, - [SMALL_STATE(3558)] = 76669, - [SMALL_STATE(3559)] = 76729, - [SMALL_STATE(3560)] = 76789, - [SMALL_STATE(3561)] = 76849, - [SMALL_STATE(3562)] = 76917, - [SMALL_STATE(3563)] = 76977, - [SMALL_STATE(3564)] = 77039, - [SMALL_STATE(3565)] = 77099, - [SMALL_STATE(3566)] = 77159, - [SMALL_STATE(3567)] = 77219, - [SMALL_STATE(3568)] = 77279, - [SMALL_STATE(3569)] = 77435, - [SMALL_STATE(3570)] = 77495, - [SMALL_STATE(3571)] = 77555, - [SMALL_STATE(3572)] = 77615, - [SMALL_STATE(3573)] = 77683, - [SMALL_STATE(3574)] = 77743, - [SMALL_STATE(3575)] = 77803, - [SMALL_STATE(3576)] = 77863, - [SMALL_STATE(3577)] = 78019, - [SMALL_STATE(3578)] = 78123, - [SMALL_STATE(3579)] = 78187, - [SMALL_STATE(3580)] = 78247, - [SMALL_STATE(3581)] = 78351, - [SMALL_STATE(3582)] = 78507, - [SMALL_STATE(3583)] = 78567, - [SMALL_STATE(3584)] = 78723, - [SMALL_STATE(3585)] = 78783, - [SMALL_STATE(3586)] = 78851, - [SMALL_STATE(3587)] = 78911, - [SMALL_STATE(3588)] = 79019, - [SMALL_STATE(3589)] = 79079, - [SMALL_STATE(3590)] = 79139, - [SMALL_STATE(3591)] = 79199, - [SMALL_STATE(3592)] = 79259, - [SMALL_STATE(3593)] = 79327, - [SMALL_STATE(3594)] = 79387, - [SMALL_STATE(3595)] = 79447, - [SMALL_STATE(3596)] = 79551, - [SMALL_STATE(3597)] = 79611, - [SMALL_STATE(3598)] = 79671, - [SMALL_STATE(3599)] = 79731, - [SMALL_STATE(3600)] = 79791, - [SMALL_STATE(3601)] = 79857, - [SMALL_STATE(3602)] = 80013, - [SMALL_STATE(3603)] = 80073, - [SMALL_STATE(3604)] = 80229, - [SMALL_STATE(3605)] = 80289, - [SMALL_STATE(3606)] = 80445, - [SMALL_STATE(3607)] = 80509, - [SMALL_STATE(3608)] = 80569, - [SMALL_STATE(3609)] = 80629, - [SMALL_STATE(3610)] = 80693, - [SMALL_STATE(3611)] = 80753, - [SMALL_STATE(3612)] = 80813, - [SMALL_STATE(3613)] = 80873, - [SMALL_STATE(3614)] = 80933, - [SMALL_STATE(3615)] = 81089, - [SMALL_STATE(3616)] = 81161, - [SMALL_STATE(3617)] = 81221, - [SMALL_STATE(3618)] = 81289, - [SMALL_STATE(3619)] = 81349, - [SMALL_STATE(3620)] = 81409, - [SMALL_STATE(3621)] = 81469, - [SMALL_STATE(3622)] = 81543, - [SMALL_STATE(3623)] = 81603, - [SMALL_STATE(3624)] = 81759, - [SMALL_STATE(3625)] = 81823, - [SMALL_STATE(3626)] = 81883, - [SMALL_STATE(3627)] = 81943, - [SMALL_STATE(3628)] = 82003, - [SMALL_STATE(3629)] = 82083, - [SMALL_STATE(3630)] = 82161, - [SMALL_STATE(3631)] = 82243, - [SMALL_STATE(3632)] = 82327, - [SMALL_STATE(3633)] = 82387, - [SMALL_STATE(3634)] = 82473, - [SMALL_STATE(3635)] = 82563, - [SMALL_STATE(3636)] = 82655, - [SMALL_STATE(3637)] = 82751, - [SMALL_STATE(3638)] = 82851, - [SMALL_STATE(3639)] = 82925, - [SMALL_STATE(3640)] = 83001, - [SMALL_STATE(3641)] = 83061, - [SMALL_STATE(3642)] = 83121, - [SMALL_STATE(3643)] = 83181, - [SMALL_STATE(3644)] = 83241, - [SMALL_STATE(3645)] = 83301, - [SMALL_STATE(3646)] = 83361, - [SMALL_STATE(3647)] = 83421, - [SMALL_STATE(3648)] = 83481, - [SMALL_STATE(3649)] = 83541, - [SMALL_STATE(3650)] = 83609, - [SMALL_STATE(3651)] = 83671, - [SMALL_STATE(3652)] = 83731, - [SMALL_STATE(3653)] = 83795, - [SMALL_STATE(3654)] = 83855, - [SMALL_STATE(3655)] = 83927, - [SMALL_STATE(3656)] = 83987, - [SMALL_STATE(3657)] = 84047, - [SMALL_STATE(3658)] = 84107, - [SMALL_STATE(3659)] = 84167, - [SMALL_STATE(3660)] = 84227, - [SMALL_STATE(3661)] = 84335, - [SMALL_STATE(3662)] = 84395, - [SMALL_STATE(3663)] = 84551, - [SMALL_STATE(3664)] = 84619, - [SMALL_STATE(3665)] = 84685, - [SMALL_STATE(3666)] = 84745, - [SMALL_STATE(3667)] = 84901, - [SMALL_STATE(3668)] = 84961, - [SMALL_STATE(3669)] = 85117, - [SMALL_STATE(3670)] = 85177, - [SMALL_STATE(3671)] = 85243, - [SMALL_STATE(3672)] = 85313, - [SMALL_STATE(3673)] = 85469, - [SMALL_STATE(3674)] = 85529, - [SMALL_STATE(3675)] = 85605, - [SMALL_STATE(3676)] = 85665, - [SMALL_STATE(3677)] = 85727, - [SMALL_STATE(3678)] = 85801, - [SMALL_STATE(3679)] = 85875, - [SMALL_STATE(3680)] = 86031, - [SMALL_STATE(3681)] = 86091, - [SMALL_STATE(3682)] = 86159, - [SMALL_STATE(3683)] = 86225, - [SMALL_STATE(3684)] = 86285, - [SMALL_STATE(3685)] = 86345, - [SMALL_STATE(3686)] = 86413, - [SMALL_STATE(3687)] = 86517, - [SMALL_STATE(3688)] = 86577, - [SMALL_STATE(3689)] = 86637, - [SMALL_STATE(3690)] = 86709, - [SMALL_STATE(3691)] = 86769, - [SMALL_STATE(3692)] = 86829, - [SMALL_STATE(3693)] = 86985, - [SMALL_STATE(3694)] = 87045, - [SMALL_STATE(3695)] = 87149, - [SMALL_STATE(3696)] = 87208, - [SMALL_STATE(3697)] = 87267, - [SMALL_STATE(3698)] = 87368, - [SMALL_STATE(3699)] = 87427, - [SMALL_STATE(3700)] = 87486, - [SMALL_STATE(3701)] = 87545, - [SMALL_STATE(3702)] = 87604, - [SMALL_STATE(3703)] = 87663, - [SMALL_STATE(3704)] = 87734, - [SMALL_STATE(3705)] = 87793, - [SMALL_STATE(3706)] = 87852, - [SMALL_STATE(3707)] = 87911, - [SMALL_STATE(3708)] = 87970, - [SMALL_STATE(3709)] = 88051, - [SMALL_STATE(3710)] = 88112, - [SMALL_STATE(3711)] = 88189, - [SMALL_STATE(3712)] = 88248, - [SMALL_STATE(3713)] = 88307, - [SMALL_STATE(3714)] = 88366, - [SMALL_STATE(3715)] = 88425, - [SMALL_STATE(3716)] = 88484, - [SMALL_STATE(3717)] = 88563, - [SMALL_STATE(3718)] = 88622, - [SMALL_STATE(3719)] = 88681, - [SMALL_STATE(3720)] = 88750, - [SMALL_STATE(3721)] = 88809, - [SMALL_STATE(3722)] = 88910, - [SMALL_STATE(3723)] = 88969, - [SMALL_STATE(3724)] = 89028, - [SMALL_STATE(3725)] = 89087, - [SMALL_STATE(3726)] = 89146, - [SMALL_STATE(3727)] = 89247, - [SMALL_STATE(3728)] = 89310, - [SMALL_STATE(3729)] = 89369, - [SMALL_STATE(3730)] = 89428, - [SMALL_STATE(3731)] = 89487, - [SMALL_STATE(3732)] = 89548, - [SMALL_STATE(3733)] = 89607, - [SMALL_STATE(3734)] = 89666, - [SMALL_STATE(3735)] = 89725, - [SMALL_STATE(3736)] = 89786, - [SMALL_STATE(3737)] = 89845, - [SMALL_STATE(3738)] = 89904, - [SMALL_STATE(3739)] = 89963, - [SMALL_STATE(3740)] = 90026, - [SMALL_STATE(3741)] = 90089, - [SMALL_STATE(3742)] = 90162, - [SMALL_STATE(3743)] = 90247, - [SMALL_STATE(3744)] = 90310, - [SMALL_STATE(3745)] = 90373, - [SMALL_STATE(3746)] = 90434, - [SMALL_STATE(3747)] = 90507, - [SMALL_STATE(3748)] = 90566, - [SMALL_STATE(3749)] = 90633, - [SMALL_STATE(3750)] = 90738, - [SMALL_STATE(3751)] = 90801, - [SMALL_STATE(3752)] = 90860, - [SMALL_STATE(3753)] = 90961, - [SMALL_STATE(3754)] = 91020, - [SMALL_STATE(3755)] = 91079, - [SMALL_STATE(3756)] = 91138, - [SMALL_STATE(3757)] = 91239, - [SMALL_STATE(3758)] = 91344, - [SMALL_STATE(3759)] = 91445, - [SMALL_STATE(3760)] = 91504, - [SMALL_STATE(3761)] = 91563, - [SMALL_STATE(3762)] = 91622, - [SMALL_STATE(3763)] = 91687, - [SMALL_STATE(3764)] = 91788, - [SMALL_STATE(3765)] = 91847, - [SMALL_STATE(3766)] = 91906, - [SMALL_STATE(3767)] = 91973, - [SMALL_STATE(3768)] = 92060, - [SMALL_STATE(3769)] = 92119, - [SMALL_STATE(3770)] = 92184, - [SMALL_STATE(3771)] = 92243, - [SMALL_STATE(3772)] = 92302, - [SMALL_STATE(3773)] = 92361, - [SMALL_STATE(3774)] = 92426, - [SMALL_STATE(3775)] = 92485, - [SMALL_STATE(3776)] = 92544, - [SMALL_STATE(3777)] = 92603, - [SMALL_STATE(3778)] = 92664, - [SMALL_STATE(3779)] = 92727, - [SMALL_STATE(3780)] = 92786, - [SMALL_STATE(3781)] = 92895, - [SMALL_STATE(3782)] = 92996, - [SMALL_STATE(3783)] = 93055, - [SMALL_STATE(3784)] = 93114, - [SMALL_STATE(3785)] = 93173, - [SMALL_STATE(3786)] = 93278, - [SMALL_STATE(3787)] = 93379, - [SMALL_STATE(3788)] = 93480, - [SMALL_STATE(3789)] = 93581, - [SMALL_STATE(3790)] = 93672, - [SMALL_STATE(3791)] = 93731, - [SMALL_STATE(3792)] = 93792, - [SMALL_STATE(3793)] = 93885, - [SMALL_STATE(3794)] = 93944, - [SMALL_STATE(3795)] = 94011, - [SMALL_STATE(3796)] = 94108, - [SMALL_STATE(3797)] = 94167, - [SMALL_STATE(3798)] = 94268, - [SMALL_STATE(3799)] = 94327, - [SMALL_STATE(3800)] = 94428, - [SMALL_STATE(3801)] = 94487, - [SMALL_STATE(3802)] = 94546, - [SMALL_STATE(3803)] = 94651, - [SMALL_STATE(3804)] = 94710, - [SMALL_STATE(3805)] = 94769, - [SMALL_STATE(3806)] = 94832, - [SMALL_STATE(3807)] = 94891, - [SMALL_STATE(3808)] = 94950, - [SMALL_STATE(3809)] = 95009, - [SMALL_STATE(3810)] = 95110, - [SMALL_STATE(3811)] = 95169, - [SMALL_STATE(3812)] = 95242, - [SMALL_STATE(3813)] = 95301, - [SMALL_STATE(3814)] = 95360, - [SMALL_STATE(3815)] = 95419, - [SMALL_STATE(3816)] = 95478, - [SMALL_STATE(3817)] = 95537, - [SMALL_STATE(3818)] = 95638, - [SMALL_STATE(3819)] = 95697, - [SMALL_STATE(3820)] = 95756, - [SMALL_STATE(3821)] = 95815, - [SMALL_STATE(3822)] = 95890, - [SMALL_STATE(3823)] = 95991, - [SMALL_STATE(3824)] = 96100, - [SMALL_STATE(3825)] = 96167, - [SMALL_STATE(3826)] = 96230, - [SMALL_STATE(3827)] = 96331, - [SMALL_STATE(3828)] = 96390, - [SMALL_STATE(3829)] = 96449, - [SMALL_STATE(3830)] = 96508, - [SMALL_STATE(3831)] = 96567, - [SMALL_STATE(3832)] = 96676, - [SMALL_STATE(3833)] = 96735, - [SMALL_STATE(3834)] = 96796, - [SMALL_STATE(3835)] = 96855, - [SMALL_STATE(3836)] = 96914, - [SMALL_STATE(3837)] = 96973, - [SMALL_STATE(3838)] = 97032, - [SMALL_STATE(3839)] = 97097, - [SMALL_STATE(3840)] = 97202, - [SMALL_STATE(3841)] = 97261, - [SMALL_STATE(3842)] = 97322, - [SMALL_STATE(3843)] = 97381, - [SMALL_STATE(3844)] = 97442, - [SMALL_STATE(3845)] = 97501, - [SMALL_STATE(3846)] = 97560, - [SMALL_STATE(3847)] = 97619, - [SMALL_STATE(3848)] = 97720, - [SMALL_STATE(3849)] = 97779, - [SMALL_STATE(3850)] = 97840, - [SMALL_STATE(3851)] = 97899, - [SMALL_STATE(3852)] = 97968, - [SMALL_STATE(3853)] = 98031, - [SMALL_STATE(3854)] = 98090, - [SMALL_STATE(3855)] = 98151, - [SMALL_STATE(3856)] = 98210, - [SMALL_STATE(3857)] = 98269, - [SMALL_STATE(3858)] = 98336, - [SMALL_STATE(3859)] = 98403, - [SMALL_STATE(3860)] = 98462, - [SMALL_STATE(3861)] = 98533, - [SMALL_STATE(3862)] = 98606, - [SMALL_STATE(3863)] = 98677, - [SMALL_STATE(3864)] = 98736, - [SMALL_STATE(3865)] = 98795, - [SMALL_STATE(3866)] = 98858, - [SMALL_STATE(3867)] = 98917, - [SMALL_STATE(3868)] = 98976, - [SMALL_STATE(3869)] = 99039, - [SMALL_STATE(3870)] = 99098, - [SMALL_STATE(3871)] = 99163, - [SMALL_STATE(3872)] = 99222, - [SMALL_STATE(3873)] = 99281, - [SMALL_STATE(3874)] = 99340, - [SMALL_STATE(3875)] = 99401, - [SMALL_STATE(3876)] = 99460, - [SMALL_STATE(3877)] = 99519, - [SMALL_STATE(3878)] = 99620, - [SMALL_STATE(3879)] = 99679, - [SMALL_STATE(3880)] = 99742, - [SMALL_STATE(3881)] = 99801, - [SMALL_STATE(3882)] = 99860, - [SMALL_STATE(3883)] = 99961, - [SMALL_STATE(3884)] = 100020, - [SMALL_STATE(3885)] = 100079, - [SMALL_STATE(3886)] = 100140, - [SMALL_STATE(3887)] = 100199, - [SMALL_STATE(3888)] = 100258, - [SMALL_STATE(3889)] = 100317, - [SMALL_STATE(3890)] = 100376, - [SMALL_STATE(3891)] = 100435, - [SMALL_STATE(3892)] = 100494, - [SMALL_STATE(3893)] = 100553, - [SMALL_STATE(3894)] = 100612, - [SMALL_STATE(3895)] = 100671, - [SMALL_STATE(3896)] = 100730, - [SMALL_STATE(3897)] = 100789, - [SMALL_STATE(3898)] = 100848, - [SMALL_STATE(3899)] = 100949, - [SMALL_STATE(3900)] = 101008, - [SMALL_STATE(3901)] = 101067, - [SMALL_STATE(3902)] = 101168, - [SMALL_STATE(3903)] = 101227, - [SMALL_STATE(3904)] = 101286, - [SMALL_STATE(3905)] = 101387, - [SMALL_STATE(3906)] = 101446, - [SMALL_STATE(3907)] = 101505, - [SMALL_STATE(3908)] = 101566, - [SMALL_STATE(3909)] = 101625, - [SMALL_STATE(3910)] = 101684, - [SMALL_STATE(3911)] = 101743, - [SMALL_STATE(3912)] = 101802, - [SMALL_STATE(3913)] = 101907, - [SMALL_STATE(3914)] = 101966, - [SMALL_STATE(3915)] = 102025, - [SMALL_STATE(3916)] = 102084, - [SMALL_STATE(3917)] = 102143, - [SMALL_STATE(3918)] = 102202, - [SMALL_STATE(3919)] = 102263, - [SMALL_STATE(3920)] = 102322, - [SMALL_STATE(3921)] = 102391, - [SMALL_STATE(3922)] = 102450, - [SMALL_STATE(3923)] = 102509, - [SMALL_STATE(3924)] = 102568, - [SMALL_STATE(3925)] = 102669, - [SMALL_STATE(3926)] = 102728, - [SMALL_STATE(3927)] = 102789, - [SMALL_STATE(3928)] = 102850, - [SMALL_STATE(3929)] = 102951, - [SMALL_STATE(3930)] = 103024, - [SMALL_STATE(3931)] = 103087, - [SMALL_STATE(3932)] = 103146, - [SMALL_STATE(3933)] = 103205, - [SMALL_STATE(3934)] = 103264, - [SMALL_STATE(3935)] = 103323, - [SMALL_STATE(3936)] = 103382, - [SMALL_STATE(3937)] = 103441, - [SMALL_STATE(3938)] = 103500, - [SMALL_STATE(3939)] = 103559, - [SMALL_STATE(3940)] = 103629, - [SMALL_STATE(3941)] = 103687, - [SMALL_STATE(3942)] = 103745, - [SMALL_STATE(3943)] = 103803, - [SMALL_STATE(3944)] = 103869, - [SMALL_STATE(3945)] = 103927, - [SMALL_STATE(3946)] = 103985, - [SMALL_STATE(3947)] = 104045, - [SMALL_STATE(3948)] = 104119, - [SMALL_STATE(3949)] = 104177, - [SMALL_STATE(3950)] = 104235, - [SMALL_STATE(3951)] = 104293, - [SMALL_STATE(3952)] = 104397, - [SMALL_STATE(3953)] = 104459, - [SMALL_STATE(3954)] = 104517, - [SMALL_STATE(3955)] = 104579, - [SMALL_STATE(3956)] = 104653, - [SMALL_STATE(3957)] = 104725, - [SMALL_STATE(3958)] = 104783, - [SMALL_STATE(3959)] = 104883, - [SMALL_STATE(3960)] = 104941, - [SMALL_STATE(3961)] = 105015, - [SMALL_STATE(3962)] = 105097, - [SMALL_STATE(3963)] = 105155, - [SMALL_STATE(3964)] = 105253, - [SMALL_STATE(3965)] = 105343, - [SMALL_STATE(3966)] = 105401, - [SMALL_STATE(3967)] = 105487, - [SMALL_STATE(3968)] = 105571, - [SMALL_STATE(3969)] = 105653, - [SMALL_STATE(3970)] = 105715, - [SMALL_STATE(3971)] = 105795, - [SMALL_STATE(3972)] = 105853, - [SMALL_STATE(3973)] = 105911, - [SMALL_STATE(3974)] = 105969, - [SMALL_STATE(3975)] = 106027, - [SMALL_STATE(3976)] = 106103, - [SMALL_STATE(3977)] = 106165, - [SMALL_STATE(3978)] = 106223, - [SMALL_STATE(3979)] = 106281, - [SMALL_STATE(3980)] = 106339, - [SMALL_STATE(3981)] = 106397, - [SMALL_STATE(3982)] = 106455, - [SMALL_STATE(3983)] = 106533, - [SMALL_STATE(3984)] = 106591, - [SMALL_STATE(3985)] = 106653, - [SMALL_STATE(3986)] = 106759, - [SMALL_STATE(3987)] = 106817, - [SMALL_STATE(3988)] = 106919, - [SMALL_STATE(3989)] = 106977, - [SMALL_STATE(3990)] = 107035, - [SMALL_STATE(3991)] = 107097, - [SMALL_STATE(3992)] = 107159, - [SMALL_STATE(3993)] = 107217, - [SMALL_STATE(3994)] = 107275, - [SMALL_STATE(3995)] = 107333, - [SMALL_STATE(3996)] = 107391, - [SMALL_STATE(3997)] = 107449, - [SMALL_STATE(3998)] = 107507, - [SMALL_STATE(3999)] = 107569, - [SMALL_STATE(4000)] = 107627, - [SMALL_STATE(4001)] = 107685, - [SMALL_STATE(4002)] = 107757, - [SMALL_STATE(4003)] = 107819, - [SMALL_STATE(4004)] = 107883, - [SMALL_STATE(4005)] = 107941, - [SMALL_STATE(4006)] = 107999, - [SMALL_STATE(4007)] = 108065, - [SMALL_STATE(4008)] = 108131, - [SMALL_STATE(4009)] = 108189, - [SMALL_STATE(4010)] = 108271, - [SMALL_STATE(4011)] = 108329, - [SMALL_STATE(4012)] = 108391, - [SMALL_STATE(4013)] = 108449, - [SMALL_STATE(4014)] = 108507, - [SMALL_STATE(4015)] = 108565, - [SMALL_STATE(4016)] = 108623, - [SMALL_STATE(4017)] = 108681, - [SMALL_STATE(4018)] = 108739, - [SMALL_STATE(4019)] = 108801, - [SMALL_STATE(4020)] = 108859, - [SMALL_STATE(4021)] = 108917, - [SMALL_STATE(4022)] = 108975, - [SMALL_STATE(4023)] = 109033, - [SMALL_STATE(4024)] = 109091, - [SMALL_STATE(4025)] = 109161, - [SMALL_STATE(4026)] = 109219, - [SMALL_STATE(4027)] = 109277, - [SMALL_STATE(4028)] = 109335, - [SMALL_STATE(4029)] = 109393, - [SMALL_STATE(4030)] = 109455, - [SMALL_STATE(4031)] = 109513, - [SMALL_STATE(4032)] = 109615, - [SMALL_STATE(4033)] = 109697, - [SMALL_STATE(4034)] = 109759, - [SMALL_STATE(4035)] = 109841, - [SMALL_STATE(4036)] = 109899, - [SMALL_STATE(4037)] = 109961, - [SMALL_STATE(4038)] = 110035, - [SMALL_STATE(4039)] = 110093, - [SMALL_STATE(4040)] = 110151, - [SMALL_STATE(4041)] = 110213, - [SMALL_STATE(4042)] = 110271, - [SMALL_STATE(4043)] = 110329, - [SMALL_STATE(4044)] = 110387, - [SMALL_STATE(4045)] = 110449, - [SMALL_STATE(4046)] = 110507, - [SMALL_STATE(4047)] = 110589, - [SMALL_STATE(4048)] = 110647, - [SMALL_STATE(4049)] = 110741, - [SMALL_STATE(4050)] = 110843, - [SMALL_STATE(4051)] = 110919, - [SMALL_STATE(4052)] = 110977, - [SMALL_STATE(4053)] = 111035, - [SMALL_STATE(4054)] = 111097, - [SMALL_STATE(4055)] = 111161, - [SMALL_STATE(4056)] = 111223, - [SMALL_STATE(4057)] = 111325, - [SMALL_STATE(4058)] = 111429, - [SMALL_STATE(4059)] = 111487, - [SMALL_STATE(4060)] = 111551, - [SMALL_STATE(4061)] = 111613, - [SMALL_STATE(4062)] = 111671, - [SMALL_STATE(4063)] = 111729, - [SMALL_STATE(4064)] = 111787, - [SMALL_STATE(4065)] = 111845, - [SMALL_STATE(4066)] = 111903, - [SMALL_STATE(4067)] = 112009, - [SMALL_STATE(4068)] = 112067, - [SMALL_STATE(4069)] = 112149, - [SMALL_STATE(4070)] = 112221, - [SMALL_STATE(4071)] = 112279, - [SMALL_STATE(4072)] = 112337, - [SMALL_STATE(4073)] = 112395, - [SMALL_STATE(4074)] = 112453, - [SMALL_STATE(4075)] = 112559, - [SMALL_STATE(4076)] = 112621, - [SMALL_STATE(4077)] = 112683, - [SMALL_STATE(4078)] = 112765, - [SMALL_STATE(4079)] = 112823, - [SMALL_STATE(4080)] = 112881, - [SMALL_STATE(4081)] = 112953, - [SMALL_STATE(4082)] = 113017, - [SMALL_STATE(4083)] = 113081, - [SMALL_STATE(4084)] = 113143, - [SMALL_STATE(4085)] = 113201, - [SMALL_STATE(4086)] = 113273, - [SMALL_STATE(4087)] = 113331, - [SMALL_STATE(4088)] = 113389, - [SMALL_STATE(4089)] = 113471, - [SMALL_STATE(4090)] = 113529, - [SMALL_STATE(4091)] = 113587, - [SMALL_STATE(4092)] = 113645, - [SMALL_STATE(4093)] = 113703, - [SMALL_STATE(4094)] = 113761, - [SMALL_STATE(4095)] = 113833, - [SMALL_STATE(4096)] = 113891, - [SMALL_STATE(4097)] = 113949, - [SMALL_STATE(4098)] = 114006, - [SMALL_STATE(4099)] = 114109, - [SMALL_STATE(4100)] = 114166, - [SMALL_STATE(4101)] = 114231, - [SMALL_STATE(4102)] = 114334, - [SMALL_STATE(4103)] = 114397, - [SMALL_STATE(4104)] = 114464, - [SMALL_STATE(4105)] = 114533, - [SMALL_STATE(4106)] = 114636, - [SMALL_STATE(4107)] = 114699, - [SMALL_STATE(4108)] = 114760, - [SMALL_STATE(4109)] = 114817, - [SMALL_STATE(4110)] = 114886, - [SMALL_STATE(4111)] = 114947, - [SMALL_STATE(4112)] = 115012, - [SMALL_STATE(4113)] = 115079, - [SMALL_STATE(4114)] = 115182, - [SMALL_STATE(4115)] = 115239, - [SMALL_STATE(4116)] = 115308, - [SMALL_STATE(4117)] = 115371, - [SMALL_STATE(4118)] = 115428, - [SMALL_STATE(4119)] = 115485, - [SMALL_STATE(4120)] = 115588, - [SMALL_STATE(4121)] = 115691, - [SMALL_STATE(4122)] = 115748, - [SMALL_STATE(4123)] = 115807, - [SMALL_STATE(4124)] = 115864, - [SMALL_STATE(4125)] = 115921, - [SMALL_STATE(4126)] = 115978, - [SMALL_STATE(4127)] = 116041, - [SMALL_STATE(4128)] = 116100, - [SMALL_STATE(4129)] = 116157, - [SMALL_STATE(4130)] = 116214, - [SMALL_STATE(4131)] = 116275, - [SMALL_STATE(4132)] = 116332, - [SMALL_STATE(4133)] = 116389, - [SMALL_STATE(4134)] = 116448, - [SMALL_STATE(4135)] = 116505, - [SMALL_STATE(4136)] = 116564, - [SMALL_STATE(4137)] = 116633, - [SMALL_STATE(4138)] = 116690, - [SMALL_STATE(4139)] = 116747, - [SMALL_STATE(4140)] = 116850, - [SMALL_STATE(4141)] = 116911, - [SMALL_STATE(4142)] = 117014, - [SMALL_STATE(4143)] = 117073, - [SMALL_STATE(4144)] = 117129, - [SMALL_STATE(4145)] = 117189, - [SMALL_STATE(4146)] = 117245, - [SMALL_STATE(4147)] = 117301, - [SMALL_STATE(4148)] = 117357, - [SMALL_STATE(4149)] = 117427, - [SMALL_STATE(4150)] = 117483, - [SMALL_STATE(4151)] = 117539, - [SMALL_STATE(4152)] = 117611, - [SMALL_STATE(4153)] = 117667, - [SMALL_STATE(4154)] = 117723, - [SMALL_STATE(4155)] = 117825, - [SMALL_STATE(4156)] = 117885, - [SMALL_STATE(4157)] = 117941, - [SMALL_STATE(4158)] = 118001, - [SMALL_STATE(4159)] = 118061, - [SMALL_STATE(4160)] = 118163, - [SMALL_STATE(4161)] = 118235, - [SMALL_STATE(4162)] = 118291, - [SMALL_STATE(4163)] = 118347, - [SMALL_STATE(4164)] = 118403, - [SMALL_STATE(4165)] = 118477, - [SMALL_STATE(4166)] = 118533, - [SMALL_STATE(4167)] = 118589, - [SMALL_STATE(4168)] = 118655, - [SMALL_STATE(4169)] = 118711, - [SMALL_STATE(4170)] = 118767, - [SMALL_STATE(4171)] = 118823, - [SMALL_STATE(4172)] = 118879, - [SMALL_STATE(4173)] = 118951, - [SMALL_STATE(4174)] = 119007, - [SMALL_STATE(4175)] = 119069, - [SMALL_STATE(4176)] = 119125, - [SMALL_STATE(4177)] = 119181, - [SMALL_STATE(4178)] = 119251, - [SMALL_STATE(4179)] = 119307, - [SMALL_STATE(4180)] = 119365, - [SMALL_STATE(4181)] = 119421, - [SMALL_STATE(4182)] = 119477, - [SMALL_STATE(4183)] = 119533, - [SMALL_STATE(4184)] = 119589, - [SMALL_STATE(4185)] = 119645, - [SMALL_STATE(4186)] = 119701, - [SMALL_STATE(4187)] = 119763, - [SMALL_STATE(4188)] = 119819, - [SMALL_STATE(4189)] = 119875, - [SMALL_STATE(4190)] = 119931, - [SMALL_STATE(4191)] = 119987, - [SMALL_STATE(4192)] = 120043, - [SMALL_STATE(4193)] = 120111, - [SMALL_STATE(4194)] = 120167, - [SMALL_STATE(4195)] = 120223, - [SMALL_STATE(4196)] = 120279, - [SMALL_STATE(4197)] = 120351, - [SMALL_STATE(4198)] = 120425, - [SMALL_STATE(4199)] = 120485, - [SMALL_STATE(4200)] = 120559, - [SMALL_STATE(4201)] = 120615, - [SMALL_STATE(4202)] = 120671, - [SMALL_STATE(4203)] = 120727, - [SMALL_STATE(4204)] = 120783, - [SMALL_STATE(4205)] = 120843, - [SMALL_STATE(4206)] = 120899, - [SMALL_STATE(4207)] = 120959, - [SMALL_STATE(4208)] = 121015, - [SMALL_STATE(4209)] = 121071, - [SMALL_STATE(4210)] = 121127, - [SMALL_STATE(4211)] = 121201, - [SMALL_STATE(4212)] = 121257, - [SMALL_STATE(4213)] = 121313, - [SMALL_STATE(4214)] = 121369, - [SMALL_STATE(4215)] = 121425, - [SMALL_STATE(4216)] = 121481, - [SMALL_STATE(4217)] = 121537, - [SMALL_STATE(4218)] = 121639, - [SMALL_STATE(4219)] = 121703, - [SMALL_STATE(4220)] = 121759, - [SMALL_STATE(4221)] = 121815, - [SMALL_STATE(4222)] = 121875, - [SMALL_STATE(4223)] = 121931, - [SMALL_STATE(4224)] = 121987, - [SMALL_STATE(4225)] = 122047, - [SMALL_STATE(4226)] = 122103, - [SMALL_STATE(4227)] = 122167, - [SMALL_STATE(4228)] = 122269, - [SMALL_STATE(4229)] = 122325, - [SMALL_STATE(4230)] = 122395, - [SMALL_STATE(4231)] = 122469, - [SMALL_STATE(4232)] = 122525, - [SMALL_STATE(4233)] = 122581, - [SMALL_STATE(4234)] = 122655, - [SMALL_STATE(4235)] = 122711, - [SMALL_STATE(4236)] = 122767, - [SMALL_STATE(4237)] = 122823, - [SMALL_STATE(4238)] = 122891, - [SMALL_STATE(4239)] = 122947, - [SMALL_STATE(4240)] = 123003, - [SMALL_STATE(4241)] = 123065, - [SMALL_STATE(4242)] = 123127, - [SMALL_STATE(4243)] = 123183, - [SMALL_STATE(4244)] = 123253, - [SMALL_STATE(4245)] = 123327, - [SMALL_STATE(4246)] = 123383, - [SMALL_STATE(4247)] = 123439, - [SMALL_STATE(4248)] = 123495, - [SMALL_STATE(4249)] = 123569, - [SMALL_STATE(4250)] = 123625, - [SMALL_STATE(4251)] = 123699, - [SMALL_STATE(4252)] = 123755, - [SMALL_STATE(4253)] = 123811, - [SMALL_STATE(4254)] = 123867, - [SMALL_STATE(4255)] = 123922, - [SMALL_STATE(4256)] = 123977, - [SMALL_STATE(4257)] = 124032, - [SMALL_STATE(4258)] = 124089, - [SMALL_STATE(4259)] = 124144, - [SMALL_STATE(4260)] = 124207, - [SMALL_STATE(4261)] = 124262, - [SMALL_STATE(4262)] = 124325, - [SMALL_STATE(4263)] = 124390, - [SMALL_STATE(4264)] = 124449, - [SMALL_STATE(4265)] = 124516, - [SMALL_STATE(4266)] = 124573, - [SMALL_STATE(4267)] = 124630, - [SMALL_STATE(4268)] = 124685, - [SMALL_STATE(4269)] = 124740, - [SMALL_STATE(4270)] = 124795, - [SMALL_STATE(4271)] = 124850, - [SMALL_STATE(4272)] = 124905, - [SMALL_STATE(4273)] = 124960, - [SMALL_STATE(4274)] = 125015, - [SMALL_STATE(4275)] = 125082, - [SMALL_STATE(4276)] = 125183, - [SMALL_STATE(4277)] = 125238, - [SMALL_STATE(4278)] = 125293, - [SMALL_STATE(4279)] = 125348, - [SMALL_STATE(4280)] = 125403, - [SMALL_STATE(4281)] = 125458, - [SMALL_STATE(4282)] = 125513, - [SMALL_STATE(4283)] = 125584, - [SMALL_STATE(4284)] = 125639, - [SMALL_STATE(4285)] = 125702, - [SMALL_STATE(4286)] = 125757, - [SMALL_STATE(4287)] = 125812, - [SMALL_STATE(4288)] = 125867, - [SMALL_STATE(4289)] = 125922, - [SMALL_STATE(4290)] = 125989, - [SMALL_STATE(4291)] = 126044, - [SMALL_STATE(4292)] = 126111, - [SMALL_STATE(4293)] = 126166, - [SMALL_STATE(4294)] = 126221, - [SMALL_STATE(4295)] = 126288, - [SMALL_STATE(4296)] = 126343, - [SMALL_STATE(4297)] = 126398, - [SMALL_STATE(4298)] = 126453, - [SMALL_STATE(4299)] = 126508, - [SMALL_STATE(4300)] = 126563, - [SMALL_STATE(4301)] = 126618, - [SMALL_STATE(4302)] = 126673, - [SMALL_STATE(4303)] = 126728, - [SMALL_STATE(4304)] = 126783, - [SMALL_STATE(4305)] = 126838, - [SMALL_STATE(4306)] = 126893, - [SMALL_STATE(4307)] = 126962, - [SMALL_STATE(4308)] = 127025, - [SMALL_STATE(4309)] = 127080, - [SMALL_STATE(4310)] = 127181, - [SMALL_STATE(4311)] = 127244, - [SMALL_STATE(4312)] = 127299, - [SMALL_STATE(4313)] = 127354, - [SMALL_STATE(4314)] = 127409, - [SMALL_STATE(4315)] = 127464, - [SMALL_STATE(4316)] = 127519, - [SMALL_STATE(4317)] = 127577, - [SMALL_STATE(4318)] = 127635, - [SMALL_STATE(4319)] = 127705, - [SMALL_STATE(4320)] = 127775, - [SMALL_STATE(4321)] = 127833, - [SMALL_STATE(4322)] = 127891, - [SMALL_STATE(4323)] = 127961, - [SMALL_STATE(4324)] = 128019, - [SMALL_STATE(4325)] = 128089, - [SMALL_STATE(4326)] = 128153, - [SMALL_STATE(4327)] = 128213, - [SMALL_STATE(4328)] = 128271, - [SMALL_STATE(4329)] = 128341, - [SMALL_STATE(4330)] = 128399, - [SMALL_STATE(4331)] = 128457, - [SMALL_STATE(4332)] = 128515, - [SMALL_STATE(4333)] = 128573, - [SMALL_STATE(4334)] = 128631, - [SMALL_STATE(4335)] = 128689, - [SMALL_STATE(4336)] = 128759, - [SMALL_STATE(4337)] = 128829, - [SMALL_STATE(4338)] = 128887, - [SMALL_STATE(4339)] = 128941, - [SMALL_STATE(4340)] = 128999, - [SMALL_STATE(4341)] = 129057, - [SMALL_STATE(4342)] = 129127, - [SMALL_STATE(4343)] = 129185, - [SMALL_STATE(4344)] = 129243, - [SMALL_STATE(4345)] = 129301, - [SMALL_STATE(4346)] = 129361, - [SMALL_STATE(4347)] = 129419, - [SMALL_STATE(4348)] = 129477, - [SMALL_STATE(4349)] = 129535, - [SMALL_STATE(4350)] = 129593, - [SMALL_STATE(4351)] = 129691, - [SMALL_STATE(4352)] = 129751, - [SMALL_STATE(4353)] = 129809, - [SMALL_STATE(4354)] = 129869, - [SMALL_STATE(4355)] = 129927, - [SMALL_STATE(4356)] = 129985, - [SMALL_STATE(4357)] = 130043, - [SMALL_STATE(4358)] = 130101, - [SMALL_STATE(4359)] = 130159, - [SMALL_STATE(4360)] = 130217, - [SMALL_STATE(4361)] = 130275, - [SMALL_STATE(4362)] = 130333, - [SMALL_STATE(4363)] = 130391, - [SMALL_STATE(4364)] = 130449, - [SMALL_STATE(4365)] = 130507, - [SMALL_STATE(4366)] = 130565, - [SMALL_STATE(4367)] = 130623, - [SMALL_STATE(4368)] = 130683, - [SMALL_STATE(4369)] = 130743, - [SMALL_STATE(4370)] = 130838, - [SMALL_STATE(4371)] = 130933, - [SMALL_STATE(4372)] = 131028, - [SMALL_STATE(4373)] = 131127, - [SMALL_STATE(4374)] = 131222, - [SMALL_STATE(4375)] = 131317, - [SMALL_STATE(4376)] = 131412, - [SMALL_STATE(4377)] = 131475, - [SMALL_STATE(4378)] = 131532, - [SMALL_STATE(4379)] = 131627, - [SMALL_STATE(4380)] = 131722, - [SMALL_STATE(4381)] = 131817, - [SMALL_STATE(4382)] = 131912, - [SMALL_STATE(4383)] = 131965, - [SMALL_STATE(4384)] = 132060, - [SMALL_STATE(4385)] = 132155, - [SMALL_STATE(4386)] = 132208, - [SMALL_STATE(4387)] = 132303, - [SMALL_STATE(4388)] = 132398, - [SMALL_STATE(4389)] = 132493, - [SMALL_STATE(4390)] = 132588, - [SMALL_STATE(4391)] = 132683, - [SMALL_STATE(4392)] = 132778, - [SMALL_STATE(4393)] = 132873, - [SMALL_STATE(4394)] = 132968, - [SMALL_STATE(4395)] = 133063, - [SMALL_STATE(4396)] = 133158, - [SMALL_STATE(4397)] = 133257, - [SMALL_STATE(4398)] = 133352, - [SMALL_STATE(4399)] = 133447, - [SMALL_STATE(4400)] = 133506, - [SMALL_STATE(4401)] = 133601, - [SMALL_STATE(4402)] = 133696, - [SMALL_STATE(4403)] = 133791, - [SMALL_STATE(4404)] = 133886, - [SMALL_STATE(4405)] = 133981, - [SMALL_STATE(4406)] = 134076, - [SMALL_STATE(4407)] = 134171, - [SMALL_STATE(4408)] = 134266, - [SMALL_STATE(4409)] = 134361, - [SMALL_STATE(4410)] = 134456, - [SMALL_STATE(4411)] = 134551, - [SMALL_STATE(4412)] = 134646, - [SMALL_STATE(4413)] = 134741, - [SMALL_STATE(4414)] = 134836, - [SMALL_STATE(4415)] = 134931, - [SMALL_STATE(4416)] = 135026, - [SMALL_STATE(4417)] = 135121, - [SMALL_STATE(4418)] = 135182, - [SMALL_STATE(4419)] = 135277, - [SMALL_STATE(4420)] = 135376, - [SMALL_STATE(4421)] = 135471, - [SMALL_STATE(4422)] = 135536, - [SMALL_STATE(4423)] = 135601, - [SMALL_STATE(4424)] = 135696, - [SMALL_STATE(4425)] = 135791, - [SMALL_STATE(4426)] = 135886, - [SMALL_STATE(4427)] = 135981, - [SMALL_STATE(4428)] = 136076, - [SMALL_STATE(4429)] = 136171, - [SMALL_STATE(4430)] = 136266, - [SMALL_STATE(4431)] = 136361, - [SMALL_STATE(4432)] = 136456, - [SMALL_STATE(4433)] = 136509, - [SMALL_STATE(4434)] = 136604, - [SMALL_STATE(4435)] = 136699, - [SMALL_STATE(4436)] = 136794, - [SMALL_STATE(4437)] = 136893, - [SMALL_STATE(4438)] = 136988, - [SMALL_STATE(4439)] = 137041, - [SMALL_STATE(4440)] = 137094, - [SMALL_STATE(4441)] = 137189, - [SMALL_STATE(4442)] = 137284, - [SMALL_STATE(4443)] = 137379, - [SMALL_STATE(4444)] = 137474, - [SMALL_STATE(4445)] = 137569, - [SMALL_STATE(4446)] = 137622, - [SMALL_STATE(4447)] = 137683, - [SMALL_STATE(4448)] = 137778, - [SMALL_STATE(4449)] = 137873, - [SMALL_STATE(4450)] = 137968, - [SMALL_STATE(4451)] = 138063, - [SMALL_STATE(4452)] = 138116, - [SMALL_STATE(4453)] = 138171, - [SMALL_STATE(4454)] = 138224, - [SMALL_STATE(4455)] = 138277, - [SMALL_STATE(4456)] = 138336, - [SMALL_STATE(4457)] = 138431, - [SMALL_STATE(4458)] = 138526, - [SMALL_STATE(4459)] = 138621, - [SMALL_STATE(4460)] = 138716, - [SMALL_STATE(4461)] = 138811, - [SMALL_STATE(4462)] = 138906, - [SMALL_STATE(4463)] = 138959, - [SMALL_STATE(4464)] = 139054, - [SMALL_STATE(4465)] = 139121, - [SMALL_STATE(4466)] = 139216, - [SMALL_STATE(4467)] = 139311, - [SMALL_STATE(4468)] = 139406, - [SMALL_STATE(4469)] = 139501, - [SMALL_STATE(4470)] = 139596, - [SMALL_STATE(4471)] = 139691, - [SMALL_STATE(4472)] = 139786, - [SMALL_STATE(4473)] = 139841, - [SMALL_STATE(4474)] = 139936, - [SMALL_STATE(4475)] = 140031, - [SMALL_STATE(4476)] = 140084, - [SMALL_STATE(4477)] = 140143, - [SMALL_STATE(4478)] = 140238, - [SMALL_STATE(4479)] = 140290, - [SMALL_STATE(4480)] = 140342, - [SMALL_STATE(4481)] = 140394, - [SMALL_STATE(4482)] = 140486, - [SMALL_STATE(4483)] = 140578, - [SMALL_STATE(4484)] = 140634, - [SMALL_STATE(4485)] = 140690, - [SMALL_STATE(4486)] = 140782, - [SMALL_STATE(4487)] = 140846, - [SMALL_STATE(4488)] = 140898, - [SMALL_STATE(4489)] = 140950, - [SMALL_STATE(4490)] = 141002, - [SMALL_STATE(4491)] = 141094, - [SMALL_STATE(4492)] = 141150, - [SMALL_STATE(4493)] = 141214, - [SMALL_STATE(4494)] = 141266, - [SMALL_STATE(4495)] = 141318, - [SMALL_STATE(4496)] = 141370, - [SMALL_STATE(4497)] = 141426, - [SMALL_STATE(4498)] = 141518, - [SMALL_STATE(4499)] = 141574, - [SMALL_STATE(4500)] = 141630, - [SMALL_STATE(4501)] = 141722, - [SMALL_STATE(4502)] = 141790, - [SMALL_STATE(4503)] = 141842, - [SMALL_STATE(4504)] = 141894, - [SMALL_STATE(4505)] = 141986, - [SMALL_STATE(4506)] = 142038, - [SMALL_STATE(4507)] = 142090, - [SMALL_STATE(4508)] = 142158, - [SMALL_STATE(4509)] = 142210, - [SMALL_STATE(4510)] = 142262, - [SMALL_STATE(4511)] = 142314, - [SMALL_STATE(4512)] = 142366, - [SMALL_STATE(4513)] = 142418, - [SMALL_STATE(4514)] = 142470, - [SMALL_STATE(4515)] = 142522, - [SMALL_STATE(4516)] = 142590, - [SMALL_STATE(4517)] = 142642, - [SMALL_STATE(4518)] = 142694, - [SMALL_STATE(4519)] = 142786, - [SMALL_STATE(4520)] = 142838, - [SMALL_STATE(4521)] = 142890, - [SMALL_STATE(4522)] = 142946, - [SMALL_STATE(4523)] = 143038, - [SMALL_STATE(4524)] = 143106, - [SMALL_STATE(4525)] = 143158, - [SMALL_STATE(4526)] = 143250, - [SMALL_STATE(4527)] = 143306, - [SMALL_STATE(4528)] = 143398, - [SMALL_STATE(4529)] = 143490, - [SMALL_STATE(4530)] = 143542, - [SMALL_STATE(4531)] = 143600, - [SMALL_STATE(4532)] = 143692, - [SMALL_STATE(4533)] = 143744, - [SMALL_STATE(4534)] = 143800, - [SMALL_STATE(4535)] = 143852, - [SMALL_STATE(4536)] = 143908, - [SMALL_STATE(4537)] = 143972, - [SMALL_STATE(4538)] = 144064, - [SMALL_STATE(4539)] = 144116, - [SMALL_STATE(4540)] = 144168, - [SMALL_STATE(4541)] = 144224, - [SMALL_STATE(4542)] = 144292, - [SMALL_STATE(4543)] = 144356, - [SMALL_STATE(4544)] = 144412, - [SMALL_STATE(4545)] = 144504, - [SMALL_STATE(4546)] = 144556, - [SMALL_STATE(4547)] = 144607, - [SMALL_STATE(4548)] = 144658, - [SMALL_STATE(4549)] = 144759, - [SMALL_STATE(4550)] = 144810, - [SMALL_STATE(4551)] = 144877, - [SMALL_STATE(4552)] = 144928, - [SMALL_STATE(4553)] = 145013, - [SMALL_STATE(4554)] = 145098, - [SMALL_STATE(4555)] = 145151, - [SMALL_STATE(4556)] = 145236, - [SMALL_STATE(4557)] = 145321, - [SMALL_STATE(4558)] = 145420, - [SMALL_STATE(4559)] = 145489, - [SMALL_STATE(4560)] = 145574, - [SMALL_STATE(4561)] = 145677, - [SMALL_STATE(4562)] = 145748, - [SMALL_STATE(4563)] = 145847, - [SMALL_STATE(4564)] = 145950, - [SMALL_STATE(4565)] = 146001, - [SMALL_STATE(4566)] = 146104, - [SMALL_STATE(4567)] = 146171, - [SMALL_STATE(4568)] = 146238, - [SMALL_STATE(4569)] = 146323, - [SMALL_STATE(4570)] = 146418, - [SMALL_STATE(4571)] = 146503, - [SMALL_STATE(4572)] = 146588, - [SMALL_STATE(4573)] = 146665, - [SMALL_STATE(4574)] = 146716, - [SMALL_STATE(4575)] = 146789, - [SMALL_STATE(4576)] = 146874, - [SMALL_STATE(4577)] = 146975, - [SMALL_STATE(4578)] = 147032, - [SMALL_STATE(4579)] = 147117, - [SMALL_STATE(4580)] = 147202, - [SMALL_STATE(4581)] = 147253, - [SMALL_STATE(4582)] = 147338, - [SMALL_STATE(4583)] = 147413, - [SMALL_STATE(4584)] = 147464, - [SMALL_STATE(4585)] = 147549, - [SMALL_STATE(4586)] = 147648, - [SMALL_STATE(4587)] = 147733, - [SMALL_STATE(4588)] = 147818, - [SMALL_STATE(4589)] = 147897, - [SMALL_STATE(4590)] = 147980, - [SMALL_STATE(4591)] = 148065, - [SMALL_STATE(4592)] = 148154, - [SMALL_STATE(4593)] = 148205, - [SMALL_STATE(4594)] = 148308, - [SMALL_STATE(4595)] = 148393, - [SMALL_STATE(4596)] = 148478, - [SMALL_STATE(4597)] = 148529, - [SMALL_STATE(4598)] = 148606, - [SMALL_STATE(4599)] = 148697, - [SMALL_STATE(4600)] = 148782, - [SMALL_STATE(4601)] = 148849, - [SMALL_STATE(4602)] = 148900, - [SMALL_STATE(4603)] = 148995, - [SMALL_STATE(4604)] = 149094, - [SMALL_STATE(4605)] = 149150, - [SMALL_STATE(4606)] = 149200, - [SMALL_STATE(4607)] = 149256, - [SMALL_STATE(4608)] = 149306, - [SMALL_STATE(4609)] = 149356, - [SMALL_STATE(4610)] = 149406, - [SMALL_STATE(4611)] = 149456, - [SMALL_STATE(4612)] = 149506, - [SMALL_STATE(4613)] = 149556, - [SMALL_STATE(4614)] = 149606, - [SMALL_STATE(4615)] = 149656, - [SMALL_STATE(4616)] = 149706, - [SMALL_STATE(4617)] = 149756, - [SMALL_STATE(4618)] = 149806, - [SMALL_STATE(4619)] = 149856, - [SMALL_STATE(4620)] = 149906, - [SMALL_STATE(4621)] = 149956, - [SMALL_STATE(4622)] = 150018, - [SMALL_STATE(4623)] = 150074, - [SMALL_STATE(4624)] = 150124, - [SMALL_STATE(4625)] = 150174, - [SMALL_STATE(4626)] = 150224, - [SMALL_STATE(4627)] = 150276, - [SMALL_STATE(4628)] = 150326, - [SMALL_STATE(4629)] = 150382, - [SMALL_STATE(4630)] = 150432, - [SMALL_STATE(4631)] = 150482, - [SMALL_STATE(4632)] = 150542, - [SMALL_STATE(4633)] = 150592, - [SMALL_STATE(4634)] = 150642, - [SMALL_STATE(4635)] = 150692, - [SMALL_STATE(4636)] = 150742, - [SMALL_STATE(4637)] = 150792, - [SMALL_STATE(4638)] = 150842, - [SMALL_STATE(4639)] = 150892, - [SMALL_STATE(4640)] = 150942, - [SMALL_STATE(4641)] = 150994, - [SMALL_STATE(4642)] = 151044, - [SMALL_STATE(4643)] = 151100, - [SMALL_STATE(4644)] = 151150, - [SMALL_STATE(4645)] = 151202, - [SMALL_STATE(4646)] = 151252, - [SMALL_STATE(4647)] = 151308, - [SMALL_STATE(4648)] = 151364, - [SMALL_STATE(4649)] = 151414, - [SMALL_STATE(4650)] = 151470, - [SMALL_STATE(4651)] = 151520, - [SMALL_STATE(4652)] = 151621, - [SMALL_STATE(4653)] = 151710, - [SMALL_STATE(4654)] = 151771, - [SMALL_STATE(4655)] = 151834, - [SMALL_STATE(4656)] = 151883, - [SMALL_STATE(4657)] = 151932, - [SMALL_STATE(4658)] = 151995, - [SMALL_STATE(4659)] = 152072, - [SMALL_STATE(4660)] = 152173, - [SMALL_STATE(4661)] = 152270, - [SMALL_STATE(4662)] = 152371, - [SMALL_STATE(4663)] = 152448, - [SMALL_STATE(4664)] = 152521, - [SMALL_STATE(4665)] = 152618, - [SMALL_STATE(4666)] = 152681, - [SMALL_STATE(4667)] = 152730, - [SMALL_STATE(4668)] = 152807, - [SMALL_STATE(4669)] = 152868, - [SMALL_STATE(4670)] = 152919, - [SMALL_STATE(4671)] = 153020, - [SMALL_STATE(4672)] = 153069, - [SMALL_STATE(4673)] = 153166, - [SMALL_STATE(4674)] = 153223, - [SMALL_STATE(4675)] = 153316, - [SMALL_STATE(4676)] = 153419, - [SMALL_STATE(4677)] = 153472, - [SMALL_STATE(4678)] = 153523, - [SMALL_STATE(4679)] = 153572, - [SMALL_STATE(4680)] = 153661, - [SMALL_STATE(4681)] = 153710, - [SMALL_STATE(4682)] = 153813, - [SMALL_STATE(4683)] = 153880, - [SMALL_STATE(4684)] = 153941, - [SMALL_STATE(4685)] = 153990, - [SMALL_STATE(4686)] = 154067, - [SMALL_STATE(4687)] = 154120, - [SMALL_STATE(4688)] = 154183, - [SMALL_STATE(4689)] = 154270, - [SMALL_STATE(4690)] = 154321, - [SMALL_STATE(4691)] = 154398, - [SMALL_STATE(4692)] = 154459, - [SMALL_STATE(4693)] = 154512, - [SMALL_STATE(4694)] = 154615, - [SMALL_STATE(4695)] = 154664, - [SMALL_STATE(4696)] = 154767, - [SMALL_STATE(4697)] = 154864, - [SMALL_STATE(4698)] = 154947, - [SMALL_STATE(4699)] = 155024, - [SMALL_STATE(4700)] = 155105, - [SMALL_STATE(4701)] = 155176, - [SMALL_STATE(4702)] = 155245, - [SMALL_STATE(4703)] = 155322, - [SMALL_STATE(4704)] = 155371, - [SMALL_STATE(4705)] = 155439, - [SMALL_STATE(4706)] = 155529, - [SMALL_STATE(4707)] = 155595, - [SMALL_STATE(4708)] = 155663, - [SMALL_STATE(4709)] = 155751, - [SMALL_STATE(4710)] = 155809, - [SMALL_STATE(4711)] = 155895, - [SMALL_STATE(4712)] = 155971, - [SMALL_STATE(4713)] = 156055, - [SMALL_STATE(4714)] = 156137, - [SMALL_STATE(4715)] = 156189, - [SMALL_STATE(4716)] = 156289, - [SMALL_STATE(4717)] = 156367, - [SMALL_STATE(4718)] = 156435, - [SMALL_STATE(4719)] = 156511, - [SMALL_STATE(4720)] = 156561, - [SMALL_STATE(4721)] = 156655, - [SMALL_STATE(4722)] = 156727, - [SMALL_STATE(4723)] = 156817, - [SMALL_STATE(4724)] = 156885, - [SMALL_STATE(4725)] = 156933, - [SMALL_STATE(4726)] = 157027, - [SMALL_STATE(4727)] = 157075, - [SMALL_STATE(4728)] = 157127, - [SMALL_STATE(4729)] = 157221, - [SMALL_STATE(4730)] = 157291, - [SMALL_STATE(4731)] = 157349, - [SMALL_STATE(4732)] = 157407, - [SMALL_STATE(4733)] = 157465, - [SMALL_STATE(4734)] = 157515, - [SMALL_STATE(4735)] = 157591, - [SMALL_STATE(4736)] = 157649, - [SMALL_STATE(4737)] = 157739, - [SMALL_STATE(4738)] = 157793, - [SMALL_STATE(4739)] = 157847, - [SMALL_STATE(4740)] = 157937, - [SMALL_STATE(4741)] = 157984, - [SMALL_STATE(4742)] = 158031, - [SMALL_STATE(4743)] = 158078, - [SMALL_STATE(4744)] = 158171, - [SMALL_STATE(4745)] = 158268, - [SMALL_STATE(4746)] = 158365, - [SMALL_STATE(4747)] = 158462, - [SMALL_STATE(4748)] = 158559, - [SMALL_STATE(4749)] = 158606, - [SMALL_STATE(4750)] = 158703, - [SMALL_STATE(4751)] = 158800, - [SMALL_STATE(4752)] = 158897, - [SMALL_STATE(4753)] = 158946, - [SMALL_STATE(4754)] = 158993, - [SMALL_STATE(4755)] = 159090, - [SMALL_STATE(4756)] = 159187, - [SMALL_STATE(4757)] = 159284, - [SMALL_STATE(4758)] = 159331, - [SMALL_STATE(4759)] = 159378, - [SMALL_STATE(4760)] = 159475, - [SMALL_STATE(4761)] = 159544, - [SMALL_STATE(4762)] = 159641, - [SMALL_STATE(4763)] = 159738, - [SMALL_STATE(4764)] = 159785, - [SMALL_STATE(4765)] = 159882, - [SMALL_STATE(4766)] = 159957, - [SMALL_STATE(4767)] = 160054, - [SMALL_STATE(4768)] = 160121, - [SMALL_STATE(4769)] = 160218, - [SMALL_STATE(4770)] = 160289, - [SMALL_STATE(4771)] = 160386, - [SMALL_STATE(4772)] = 160483, - [SMALL_STATE(4773)] = 160558, - [SMALL_STATE(4774)] = 160655, - [SMALL_STATE(4775)] = 160752, - [SMALL_STATE(4776)] = 160799, - [SMALL_STATE(4777)] = 160846, - [SMALL_STATE(4778)] = 160923, - [SMALL_STATE(4779)] = 161004, - [SMALL_STATE(4780)] = 161087, - [SMALL_STATE(4781)] = 161172, - [SMALL_STATE(4782)] = 161269, - [SMALL_STATE(4783)] = 161362, - [SMALL_STATE(4784)] = 161459, - [SMALL_STATE(4785)] = 161556, - [SMALL_STATE(4786)] = 161603, - [SMALL_STATE(4787)] = 161698, - [SMALL_STATE(4788)] = 161795, - [SMALL_STATE(4789)] = 161884, - [SMALL_STATE(4790)] = 161981, - [SMALL_STATE(4791)] = 162078, - [SMALL_STATE(4792)] = 162125, - [SMALL_STATE(4793)] = 162212, - [SMALL_STATE(4794)] = 162277, - [SMALL_STATE(4795)] = 162324, - [SMALL_STATE(4796)] = 162421, - [SMALL_STATE(4797)] = 162518, - [SMALL_STATE(4798)] = 162565, - [SMALL_STATE(4799)] = 162620, - [SMALL_STATE(4800)] = 162717, - [SMALL_STATE(4801)] = 162764, - [SMALL_STATE(4802)] = 162861, - [SMALL_STATE(4803)] = 162908, - [SMALL_STATE(4804)] = 162955, - [SMALL_STATE(4805)] = 163052, - [SMALL_STATE(4806)] = 163099, - [SMALL_STATE(4807)] = 163196, - [SMALL_STATE(4808)] = 163243, - [SMALL_STATE(4809)] = 163336, - [SMALL_STATE(4810)] = 163433, - [SMALL_STATE(4811)] = 163486, - [SMALL_STATE(4812)] = 163583, - [SMALL_STATE(4813)] = 163630, - [SMALL_STATE(4814)] = 163677, - [SMALL_STATE(4815)] = 163724, - [SMALL_STATE(4816)] = 163771, - [SMALL_STATE(4817)] = 163848, - [SMALL_STATE(4818)] = 163895, - [SMALL_STATE(4819)] = 163942, - [SMALL_STATE(4820)] = 164035, - [SMALL_STATE(4821)] = 164112, - [SMALL_STATE(4822)] = 164159, - [SMALL_STATE(4823)] = 164256, - [SMALL_STATE(4824)] = 164303, - [SMALL_STATE(4825)] = 164400, - [SMALL_STATE(4826)] = 164497, - [SMALL_STATE(4827)] = 164544, - [SMALL_STATE(4828)] = 164591, - [SMALL_STATE(4829)] = 164688, - [SMALL_STATE(4830)] = 164735, - [SMALL_STATE(4831)] = 164832, - [SMALL_STATE(4832)] = 164879, - [SMALL_STATE(4833)] = 164926, - [SMALL_STATE(4834)] = 165023, - [SMALL_STATE(4835)] = 165070, - [SMALL_STATE(4836)] = 165167, - [SMALL_STATE(4837)] = 165264, - [SMALL_STATE(4838)] = 165361, - [SMALL_STATE(4839)] = 165408, - [SMALL_STATE(4840)] = 165455, - [SMALL_STATE(4841)] = 165502, - [SMALL_STATE(4842)] = 165549, - [SMALL_STATE(4843)] = 165596, - [SMALL_STATE(4844)] = 165693, - [SMALL_STATE(4845)] = 165782, - [SMALL_STATE(4846)] = 165829, - [SMALL_STATE(4847)] = 165926, - [SMALL_STATE(4848)] = 166003, - [SMALL_STATE(4849)] = 166100, - [SMALL_STATE(4850)] = 166197, - [SMALL_STATE(4851)] = 166294, - [SMALL_STATE(4852)] = 166383, - [SMALL_STATE(4853)] = 166430, - [SMALL_STATE(4854)] = 166477, - [SMALL_STATE(4855)] = 166564, - [SMALL_STATE(4856)] = 166617, - [SMALL_STATE(4857)] = 166664, - [SMALL_STATE(4858)] = 166761, - [SMALL_STATE(4859)] = 166808, - [SMALL_STATE(4860)] = 166855, - [SMALL_STATE(4861)] = 166942, - [SMALL_STATE(4862)] = 166991, - [SMALL_STATE(4863)] = 167038, - [SMALL_STATE(4864)] = 167085, - [SMALL_STATE(4865)] = 167182, - [SMALL_STATE(4866)] = 167279, - [SMALL_STATE(4867)] = 167376, - [SMALL_STATE(4868)] = 167473, - [SMALL_STATE(4869)] = 167570, - [SMALL_STATE(4870)] = 167617, - [SMALL_STATE(4871)] = 167706, - [SMALL_STATE(4872)] = 167753, - [SMALL_STATE(4873)] = 167850, - [SMALL_STATE(4874)] = 167903, - [SMALL_STATE(4875)] = 167950, - [SMALL_STATE(4876)] = 168027, - [SMALL_STATE(4877)] = 168104, - [SMALL_STATE(4878)] = 168151, - [SMALL_STATE(4879)] = 168198, - [SMALL_STATE(4880)] = 168245, - [SMALL_STATE(4881)] = 168342, - [SMALL_STATE(4882)] = 168417, - [SMALL_STATE(4883)] = 168468, - [SMALL_STATE(4884)] = 168519, - [SMALL_STATE(4885)] = 168566, - [SMALL_STATE(4886)] = 168643, - [SMALL_STATE(4887)] = 168696, - [SMALL_STATE(4888)] = 168771, - [SMALL_STATE(4889)] = 168818, - [SMALL_STATE(4890)] = 168865, - [SMALL_STATE(4891)] = 168912, - [SMALL_STATE(4892)] = 169009, - [SMALL_STATE(4893)] = 169056, - [SMALL_STATE(4894)] = 169103, - [SMALL_STATE(4895)] = 169150, - [SMALL_STATE(4896)] = 169197, - [SMALL_STATE(4897)] = 169244, - [SMALL_STATE(4898)] = 169291, - [SMALL_STATE(4899)] = 169338, - [SMALL_STATE(4900)] = 169385, - [SMALL_STATE(4901)] = 169432, - [SMALL_STATE(4902)] = 169479, - [SMALL_STATE(4903)] = 169526, - [SMALL_STATE(4904)] = 169603, - [SMALL_STATE(4905)] = 169700, - [SMALL_STATE(4906)] = 169797, - [SMALL_STATE(4907)] = 169892, - [SMALL_STATE(4908)] = 169989, - [SMALL_STATE(4909)] = 170064, - [SMALL_STATE(4910)] = 170161, - [SMALL_STATE(4911)] = 170208, - [SMALL_STATE(4912)] = 170257, - [SMALL_STATE(4913)] = 170312, - [SMALL_STATE(4914)] = 170365, - [SMALL_STATE(4915)] = 170462, - [SMALL_STATE(4916)] = 170555, - [SMALL_STATE(4917)] = 170602, - [SMALL_STATE(4918)] = 170679, - [SMALL_STATE(4919)] = 170726, - [SMALL_STATE(4920)] = 170773, - [SMALL_STATE(4921)] = 170820, - [SMALL_STATE(4922)] = 170867, - [SMALL_STATE(4923)] = 170964, - [SMALL_STATE(4924)] = 171032, - [SMALL_STATE(4925)] = 171126, - [SMALL_STATE(4926)] = 171200, - [SMALL_STATE(4927)] = 171294, - [SMALL_STATE(4928)] = 171388, - [SMALL_STATE(4929)] = 171462, - [SMALL_STATE(4930)] = 171556, - [SMALL_STATE(4931)] = 171624, - [SMALL_STATE(4932)] = 171718, - [SMALL_STATE(4933)] = 171806, - [SMALL_STATE(4934)] = 171880, - [SMALL_STATE(4935)] = 171972, - [SMALL_STATE(4936)] = 172064, - [SMALL_STATE(4937)] = 172158, - [SMALL_STATE(4938)] = 172232, - [SMALL_STATE(4939)] = 172306, - [SMALL_STATE(4940)] = 172398, - [SMALL_STATE(4941)] = 172486, - [SMALL_STATE(4942)] = 172534, - [SMALL_STATE(4943)] = 172608, - [SMALL_STATE(4944)] = 172682, - [SMALL_STATE(4945)] = 172776, - [SMALL_STATE(4946)] = 172850, - [SMALL_STATE(4947)] = 172944, - [SMALL_STATE(4948)] = 173018, - [SMALL_STATE(4949)] = 173112, - [SMALL_STATE(4950)] = 173180, - [SMALL_STATE(4951)] = 173236, - [SMALL_STATE(4952)] = 173292, - [SMALL_STATE(4953)] = 173366, - [SMALL_STATE(4954)] = 173460, - [SMALL_STATE(4955)] = 173534, - [SMALL_STATE(4956)] = 173584, - [SMALL_STATE(4957)] = 173678, - [SMALL_STATE(4958)] = 173770, - [SMALL_STATE(4959)] = 173858, - [SMALL_STATE(4960)] = 173926, - [SMALL_STATE(4961)] = 174020, - [SMALL_STATE(4962)] = 174094, - [SMALL_STATE(4963)] = 174168, - [SMALL_STATE(4964)] = 174220, - [SMALL_STATE(4965)] = 174314, - [SMALL_STATE(4966)] = 174408, - [SMALL_STATE(4967)] = 174474, - [SMALL_STATE(4968)] = 174566, - [SMALL_STATE(4969)] = 174658, - [SMALL_STATE(4970)] = 174726, - [SMALL_STATE(4971)] = 174796, - [SMALL_STATE(4972)] = 174888, - [SMALL_STATE(4973)] = 174956, - [SMALL_STATE(4974)] = 175024, - [SMALL_STATE(4975)] = 175092, - [SMALL_STATE(4976)] = 175166, - [SMALL_STATE(4977)] = 175226, - [SMALL_STATE(4978)] = 175294, - [SMALL_STATE(4979)] = 175352, - [SMALL_STATE(4980)] = 175446, - [SMALL_STATE(4981)] = 175540, - [SMALL_STATE(4982)] = 175600, - [SMALL_STATE(4983)] = 175660, - [SMALL_STATE(4984)] = 175734, - [SMALL_STATE(4985)] = 175808, - [SMALL_STATE(4986)] = 175900, - [SMALL_STATE(4987)] = 175988, - [SMALL_STATE(4988)] = 176080, - [SMALL_STATE(4989)] = 176154, - [SMALL_STATE(4990)] = 176230, - [SMALL_STATE(4991)] = 176310, - [SMALL_STATE(4992)] = 176392, - [SMALL_STATE(4993)] = 176476, - [SMALL_STATE(4994)] = 176562, - [SMALL_STATE(4995)] = 176654, - [SMALL_STATE(4996)] = 176748, - [SMALL_STATE(4997)] = 176818, - [SMALL_STATE(4998)] = 176912, - [SMALL_STATE(4999)] = 176976, - [SMALL_STATE(5000)] = 177042, - [SMALL_STATE(5001)] = 177114, - [SMALL_STATE(5002)] = 177188, - [SMALL_STATE(5003)] = 177264, - [SMALL_STATE(5004)] = 177338, - [SMALL_STATE(5005)] = 177388, - [SMALL_STATE(5006)] = 177468, - [SMALL_STATE(5007)] = 177562, - [SMALL_STATE(5008)] = 177644, - [SMALL_STATE(5009)] = 177728, - [SMALL_STATE(5010)] = 177814, - [SMALL_STATE(5011)] = 177874, - [SMALL_STATE(5012)] = 177938, - [SMALL_STATE(5013)] = 178012, - [SMALL_STATE(5014)] = 178086, - [SMALL_STATE(5015)] = 178154, - [SMALL_STATE(5016)] = 178246, - [SMALL_STATE(5017)] = 178334, - [SMALL_STATE(5018)] = 178392, - [SMALL_STATE(5019)] = 178484, - [SMALL_STATE(5020)] = 178558, - [SMALL_STATE(5021)] = 178652, - [SMALL_STATE(5022)] = 178720, - [SMALL_STATE(5023)] = 178794, - [SMALL_STATE(5024)] = 178888, - [SMALL_STATE(5025)] = 178982, - [SMALL_STATE(5026)] = 179056, - [SMALL_STATE(5027)] = 179150, - [SMALL_STATE(5028)] = 179224, - [SMALL_STATE(5029)] = 179270, - [SMALL_STATE(5030)] = 179362, - [SMALL_STATE(5031)] = 179456, - [SMALL_STATE(5032)] = 179550, - [SMALL_STATE(5033)] = 179624, - [SMALL_STATE(5034)] = 179718, - [SMALL_STATE(5035)] = 179786, - [SMALL_STATE(5036)] = 179860, - [SMALL_STATE(5037)] = 179952, - [SMALL_STATE(5038)] = 180026, - [SMALL_STATE(5039)] = 180100, - [SMALL_STATE(5040)] = 180188, - [SMALL_STATE(5041)] = 180262, - [SMALL_STATE(5042)] = 180336, - [SMALL_STATE(5043)] = 180430, - [SMALL_STATE(5044)] = 180522, - [SMALL_STATE(5045)] = 180590, - [SMALL_STATE(5046)] = 180684, - [SMALL_STATE(5047)] = 180758, - [SMALL_STATE(5048)] = 180852, - [SMALL_STATE(5049)] = 180926, - [SMALL_STATE(5050)] = 181020, - [SMALL_STATE(5051)] = 181068, - [SMALL_STATE(5052)] = 181162, - [SMALL_STATE(5053)] = 181254, - [SMALL_STATE(5054)] = 181348, - [SMALL_STATE(5055)] = 181440, - [SMALL_STATE(5056)] = 181532, - [SMALL_STATE(5057)] = 181624, - [SMALL_STATE(5058)] = 181718, - [SMALL_STATE(5059)] = 181812, - [SMALL_STATE(5060)] = 181904, - [SMALL_STATE(5061)] = 181978, - [SMALL_STATE(5062)] = 182070, - [SMALL_STATE(5063)] = 182144, - [SMALL_STATE(5064)] = 182236, - [SMALL_STATE(5065)] = 182310, - [SMALL_STATE(5066)] = 182402, - [SMALL_STATE(5067)] = 182490, - [SMALL_STATE(5068)] = 182578, - [SMALL_STATE(5069)] = 182664, - [SMALL_STATE(5070)] = 182713, - [SMALL_STATE(5071)] = 182804, - [SMALL_STATE(5072)] = 182895, - [SMALL_STATE(5073)] = 182944, - [SMALL_STATE(5074)] = 183035, - [SMALL_STATE(5075)] = 183126, - [SMALL_STATE(5076)] = 183179, - [SMALL_STATE(5077)] = 183270, - [SMALL_STATE(5078)] = 183361, - [SMALL_STATE(5079)] = 183452, - [SMALL_STATE(5080)] = 183543, - [SMALL_STATE(5081)] = 183634, - [SMALL_STATE(5082)] = 183683, - [SMALL_STATE(5083)] = 183774, - [SMALL_STATE(5084)] = 183865, - [SMALL_STATE(5085)] = 183956, - [SMALL_STATE(5086)] = 184007, - [SMALL_STATE(5087)] = 184098, - [SMALL_STATE(5088)] = 184147, - [SMALL_STATE(5089)] = 184238, - [SMALL_STATE(5090)] = 184285, - [SMALL_STATE(5091)] = 184376, - [SMALL_STATE(5092)] = 184467, - [SMALL_STATE(5093)] = 184558, - [SMALL_STATE(5094)] = 184625, - [SMALL_STATE(5095)] = 184674, - [SMALL_STATE(5096)] = 184731, - [SMALL_STATE(5097)] = 184788, - [SMALL_STATE(5098)] = 184845, - [SMALL_STATE(5099)] = 184912, - [SMALL_STATE(5100)] = 185003, - [SMALL_STATE(5101)] = 185094, - [SMALL_STATE(5102)] = 185143, - [SMALL_STATE(5103)] = 185192, - [SMALL_STATE(5104)] = 185283, - [SMALL_STATE(5105)] = 185332, - [SMALL_STATE(5106)] = 185423, - [SMALL_STATE(5107)] = 185472, - [SMALL_STATE(5108)] = 185563, - [SMALL_STATE(5109)] = 185654, - [SMALL_STATE(5110)] = 185745, - [SMALL_STATE(5111)] = 185804, - [SMALL_STATE(5112)] = 185895, - [SMALL_STATE(5113)] = 185986, - [SMALL_STATE(5114)] = 186077, - [SMALL_STATE(5115)] = 186168, - [SMALL_STATE(5116)] = 186259, - [SMALL_STATE(5117)] = 186318, - [SMALL_STATE(5118)] = 186409, - [SMALL_STATE(5119)] = 186500, - [SMALL_STATE(5120)] = 186591, - [SMALL_STATE(5121)] = 186648, - [SMALL_STATE(5122)] = 186739, - [SMALL_STATE(5123)] = 186806, - [SMALL_STATE(5124)] = 186861, - [SMALL_STATE(5125)] = 186952, - [SMALL_STATE(5126)] = 187019, - [SMALL_STATE(5127)] = 187110, - [SMALL_STATE(5128)] = 187201, - [SMALL_STATE(5129)] = 187292, - [SMALL_STATE(5130)] = 187383, - [SMALL_STATE(5131)] = 187474, - [SMALL_STATE(5132)] = 187525, - [SMALL_STATE(5133)] = 187616, - [SMALL_STATE(5134)] = 187707, - [SMALL_STATE(5135)] = 187798, - [SMALL_STATE(5136)] = 187889, - [SMALL_STATE(5137)] = 187980, - [SMALL_STATE(5138)] = 188071, - [SMALL_STATE(5139)] = 188144, - [SMALL_STATE(5140)] = 188189, - [SMALL_STATE(5141)] = 188280, - [SMALL_STATE(5142)] = 188371, - [SMALL_STATE(5143)] = 188462, - [SMALL_STATE(5144)] = 188553, - [SMALL_STATE(5145)] = 188644, - [SMALL_STATE(5146)] = 188735, - [SMALL_STATE(5147)] = 188826, - [SMALL_STATE(5148)] = 188917, - [SMALL_STATE(5149)] = 189008, - [SMALL_STATE(5150)] = 189099, - [SMALL_STATE(5151)] = 189190, - [SMALL_STATE(5152)] = 189281, - [SMALL_STATE(5153)] = 189372, - [SMALL_STATE(5154)] = 189463, - [SMALL_STATE(5155)] = 189554, - [SMALL_STATE(5156)] = 189645, - [SMALL_STATE(5157)] = 189736, - [SMALL_STATE(5158)] = 189827, - [SMALL_STATE(5159)] = 189918, - [SMALL_STATE(5160)] = 189977, - [SMALL_STATE(5161)] = 190068, - [SMALL_STATE(5162)] = 190159, - [SMALL_STATE(5163)] = 190250, - [SMALL_STATE(5164)] = 190341, - [SMALL_STATE(5165)] = 190432, - [SMALL_STATE(5166)] = 190523, - [SMALL_STATE(5167)] = 190582, - [SMALL_STATE(5168)] = 190673, - [SMALL_STATE(5169)] = 190764, - [SMALL_STATE(5170)] = 190855, - [SMALL_STATE(5171)] = 190946, - [SMALL_STATE(5172)] = 191037, - [SMALL_STATE(5173)] = 191110, - [SMALL_STATE(5174)] = 191197, - [SMALL_STATE(5175)] = 191288, - [SMALL_STATE(5176)] = 191351, - [SMALL_STATE(5177)] = 191442, - [SMALL_STATE(5178)] = 191527, - [SMALL_STATE(5179)] = 191610, - [SMALL_STATE(5180)] = 191701, - [SMALL_STATE(5181)] = 191782, - [SMALL_STATE(5182)] = 191873, - [SMALL_STATE(5183)] = 191952, - [SMALL_STATE(5184)] = 192003, - [SMALL_STATE(5185)] = 192078, - [SMALL_STATE(5186)] = 192169, - [SMALL_STATE(5187)] = 192260, - [SMALL_STATE(5188)] = 192351, - [SMALL_STATE(5189)] = 192424, - [SMALL_STATE(5190)] = 192493, - [SMALL_STATE(5191)] = 192584, - [SMALL_STATE(5192)] = 192635, - [SMALL_STATE(5193)] = 192700, - [SMALL_STATE(5194)] = 192767, - [SMALL_STATE(5195)] = 192854, - [SMALL_STATE(5196)] = 192945, - [SMALL_STATE(5197)] = 193036, - [SMALL_STATE(5198)] = 193127, - [SMALL_STATE(5199)] = 193218, - [SMALL_STATE(5200)] = 193305, - [SMALL_STATE(5201)] = 193396, - [SMALL_STATE(5202)] = 193487, - [SMALL_STATE(5203)] = 193578, - [SMALL_STATE(5204)] = 193669, - [SMALL_STATE(5205)] = 193760, - [SMALL_STATE(5206)] = 193851, - [SMALL_STATE(5207)] = 193942, - [SMALL_STATE(5208)] = 194033, - [SMALL_STATE(5209)] = 194124, - [SMALL_STATE(5210)] = 194215, - [SMALL_STATE(5211)] = 194306, - [SMALL_STATE(5212)] = 194397, - [SMALL_STATE(5213)] = 194488, - [SMALL_STATE(5214)] = 194579, - [SMALL_STATE(5215)] = 194670, - [SMALL_STATE(5216)] = 194761, - [SMALL_STATE(5217)] = 194848, - [SMALL_STATE(5218)] = 194939, - [SMALL_STATE(5219)] = 195030, - [SMALL_STATE(5220)] = 195121, - [SMALL_STATE(5221)] = 195212, - [SMALL_STATE(5222)] = 195303, - [SMALL_STATE(5223)] = 195394, - [SMALL_STATE(5224)] = 195485, - [SMALL_STATE(5225)] = 195576, - [SMALL_STATE(5226)] = 195667, - [SMALL_STATE(5227)] = 195758, - [SMALL_STATE(5228)] = 195849, - [SMALL_STATE(5229)] = 195940, - [SMALL_STATE(5230)] = 196031, - [SMALL_STATE(5231)] = 196076, - [SMALL_STATE(5232)] = 196167, - [SMALL_STATE(5233)] = 196258, - [SMALL_STATE(5234)] = 196349, - [SMALL_STATE(5235)] = 196440, - [SMALL_STATE(5236)] = 196531, - [SMALL_STATE(5237)] = 196622, - [SMALL_STATE(5238)] = 196713, - [SMALL_STATE(5239)] = 196804, - [SMALL_STATE(5240)] = 196895, - [SMALL_STATE(5241)] = 196986, - [SMALL_STATE(5242)] = 197077, - [SMALL_STATE(5243)] = 197168, - [SMALL_STATE(5244)] = 197259, - [SMALL_STATE(5245)] = 197350, - [SMALL_STATE(5246)] = 197441, - [SMALL_STATE(5247)] = 197532, - [SMALL_STATE(5248)] = 197576, - [SMALL_STATE(5249)] = 197642, - [SMALL_STATE(5250)] = 197686, - [SMALL_STATE(5251)] = 197752, - [SMALL_STATE(5252)] = 197824, - [SMALL_STATE(5253)] = 197874, - [SMALL_STATE(5254)] = 197928, - [SMALL_STATE(5255)] = 197972, - [SMALL_STATE(5256)] = 198022, - [SMALL_STATE(5257)] = 198066, - [SMALL_STATE(5258)] = 198138, - [SMALL_STATE(5259)] = 198204, - [SMALL_STATE(5260)] = 198270, - [SMALL_STATE(5261)] = 198358, - [SMALL_STATE(5262)] = 198424, - [SMALL_STATE(5263)] = 198468, - [SMALL_STATE(5264)] = 198512, - [SMALL_STATE(5265)] = 198556, - [SMALL_STATE(5266)] = 198600, - [SMALL_STATE(5267)] = 198644, - [SMALL_STATE(5268)] = 198688, - [SMALL_STATE(5269)] = 198736, - [SMALL_STATE(5270)] = 198780, - [SMALL_STATE(5271)] = 198824, - [SMALL_STATE(5272)] = 198868, - [SMALL_STATE(5273)] = 198912, - [SMALL_STATE(5274)] = 198956, - [SMALL_STATE(5275)] = 199000, - [SMALL_STATE(5276)] = 199044, - [SMALL_STATE(5277)] = 199110, - [SMALL_STATE(5278)] = 199176, - [SMALL_STATE(5279)] = 199220, - [SMALL_STATE(5280)] = 199264, - [SMALL_STATE(5281)] = 199308, - [SMALL_STATE(5282)] = 199352, - [SMALL_STATE(5283)] = 199418, - [SMALL_STATE(5284)] = 199462, - [SMALL_STATE(5285)] = 199544, - [SMALL_STATE(5286)] = 199588, - [SMALL_STATE(5287)] = 199632, - [SMALL_STATE(5288)] = 199676, - [SMALL_STATE(5289)] = 199722, - [SMALL_STATE(5290)] = 199766, - [SMALL_STATE(5291)] = 199810, - [SMALL_STATE(5292)] = 199854, - [SMALL_STATE(5293)] = 199898, - [SMALL_STATE(5294)] = 199942, - [SMALL_STATE(5295)] = 200024, - [SMALL_STATE(5296)] = 200084, - [SMALL_STATE(5297)] = 200128, - [SMALL_STATE(5298)] = 200172, - [SMALL_STATE(5299)] = 200216, - [SMALL_STATE(5300)] = 200260, - [SMALL_STATE(5301)] = 200304, - [SMALL_STATE(5302)] = 200352, - [SMALL_STATE(5303)] = 200396, - [SMALL_STATE(5304)] = 200440, - [SMALL_STATE(5305)] = 200484, - [SMALL_STATE(5306)] = 200565, - [SMALL_STATE(5307)] = 200608, - [SMALL_STATE(5308)] = 200663, - [SMALL_STATE(5309)] = 200744, - [SMALL_STATE(5310)] = 200791, - [SMALL_STATE(5311)] = 200838, - [SMALL_STATE(5312)] = 200893, - [SMALL_STATE(5313)] = 200940, - [SMALL_STATE(5314)] = 200987, - [SMALL_STATE(5315)] = 201030, - [SMALL_STATE(5316)] = 201073, - [SMALL_STATE(5317)] = 201120, - [SMALL_STATE(5318)] = 201167, - [SMALL_STATE(5319)] = 201214, - [SMALL_STATE(5320)] = 201257, - [SMALL_STATE(5321)] = 201300, - [SMALL_STATE(5322)] = 201343, - [SMALL_STATE(5323)] = 201386, - [SMALL_STATE(5324)] = 201429, - [SMALL_STATE(5325)] = 201472, - [SMALL_STATE(5326)] = 201515, - [SMALL_STATE(5327)] = 201560, - [SMALL_STATE(5328)] = 201619, - [SMALL_STATE(5329)] = 201664, - [SMALL_STATE(5330)] = 201735, - [SMALL_STATE(5331)] = 201780, - [SMALL_STATE(5332)] = 201845, - [SMALL_STATE(5333)] = 201888, - [SMALL_STATE(5334)] = 201953, - [SMALL_STATE(5335)] = 202006, - [SMALL_STATE(5336)] = 202071, - [SMALL_STATE(5337)] = 202120, - [SMALL_STATE(5338)] = 202185, - [SMALL_STATE(5339)] = 202230, - [SMALL_STATE(5340)] = 202301, - [SMALL_STATE(5341)] = 202354, - [SMALL_STATE(5342)] = 202397, - [SMALL_STATE(5343)] = 202440, - [SMALL_STATE(5344)] = 202483, - [SMALL_STATE(5345)] = 202547, - [SMALL_STATE(5346)] = 202589, - [SMALL_STATE(5347)] = 202637, - [SMALL_STATE(5348)] = 202683, - [SMALL_STATE(5349)] = 202753, - [SMALL_STATE(5350)] = 202833, - [SMALL_STATE(5351)] = 202913, - [SMALL_STATE(5352)] = 202961, - [SMALL_STATE(5353)] = 203041, - [SMALL_STATE(5354)] = 203095, - [SMALL_STATE(5355)] = 203175, - [SMALL_STATE(5356)] = 203223, - [SMALL_STATE(5357)] = 203287, - [SMALL_STATE(5358)] = 203367, - [SMALL_STATE(5359)] = 203417, - [SMALL_STATE(5360)] = 203497, - [SMALL_STATE(5361)] = 203561, - [SMALL_STATE(5362)] = 203615, - [SMALL_STATE(5363)] = 203663, - [SMALL_STATE(5364)] = 203743, - [SMALL_STATE(5365)] = 203791, - [SMALL_STATE(5366)] = 203839, - [SMALL_STATE(5367)] = 203903, - [SMALL_STATE(5368)] = 203949, - [SMALL_STATE(5369)] = 204019, - [SMALL_STATE(5370)] = 204099, - [SMALL_STATE(5371)] = 204183, - [SMALL_STATE(5372)] = 204233, - [SMALL_STATE(5373)] = 204278, - [SMALL_STATE(5374)] = 204351, - [SMALL_STATE(5375)] = 204396, - [SMALL_STATE(5376)] = 204465, - [SMALL_STATE(5377)] = 204512, - [SMALL_STATE(5378)] = 204575, - [SMALL_STATE(5379)] = 204654, - [SMALL_STATE(5380)] = 204717, - [SMALL_STATE(5381)] = 204780, - [SMALL_STATE(5382)] = 204825, - [SMALL_STATE(5383)] = 204870, - [SMALL_STATE(5384)] = 204943, - [SMALL_STATE(5385)] = 205022, - [SMALL_STATE(5386)] = 205091, - [SMALL_STATE(5387)] = 205170, - [SMALL_STATE(5388)] = 205215, - [SMALL_STATE(5389)] = 205288, - [SMALL_STATE(5390)] = 205333, - [SMALL_STATE(5391)] = 205378, - [SMALL_STATE(5392)] = 205467, - [SMALL_STATE(5393)] = 205512, - [SMALL_STATE(5394)] = 205553, - [SMALL_STATE(5395)] = 205598, - [SMALL_STATE(5396)] = 205643, - [SMALL_STATE(5397)] = 205706, - [SMALL_STATE(5398)] = 205785, - [SMALL_STATE(5399)] = 205858, - [SMALL_STATE(5400)] = 205903, - [SMALL_STATE(5401)] = 205972, - [SMALL_STATE(5402)] = 206023, - [SMALL_STATE(5403)] = 206068, - [SMALL_STATE(5404)] = 206137, - [SMALL_STATE(5405)] = 206177, - [SMALL_STATE(5406)] = 206239, - [SMALL_STATE(5407)] = 206301, - [SMALL_STATE(5408)] = 206363, - [SMALL_STATE(5409)] = 206443, - [SMALL_STATE(5410)] = 206523, - [SMALL_STATE(5411)] = 206603, - [SMALL_STATE(5412)] = 206683, - [SMALL_STATE(5413)] = 206745, - [SMALL_STATE(5414)] = 206823, - [SMALL_STATE(5415)] = 206903, - [SMALL_STATE(5416)] = 206959, - [SMALL_STATE(5417)] = 207039, - [SMALL_STATE(5418)] = 207087, - [SMALL_STATE(5419)] = 207127, - [SMALL_STATE(5420)] = 207167, - [SMALL_STATE(5421)] = 207207, - [SMALL_STATE(5422)] = 207247, - [SMALL_STATE(5423)] = 207287, - [SMALL_STATE(5424)] = 207359, - [SMALL_STATE(5425)] = 207399, - [SMALL_STATE(5426)] = 207479, - [SMALL_STATE(5427)] = 207559, - [SMALL_STATE(5428)] = 207599, - [SMALL_STATE(5429)] = 207639, - [SMALL_STATE(5430)] = 207719, - [SMALL_STATE(5431)] = 207799, - [SMALL_STATE(5432)] = 207879, - [SMALL_STATE(5433)] = 207919, - [SMALL_STATE(5434)] = 207959, - [SMALL_STATE(5435)] = 207999, - [SMALL_STATE(5436)] = 208039, - [SMALL_STATE(5437)] = 208079, - [SMALL_STATE(5438)] = 208119, - [SMALL_STATE(5439)] = 208159, - [SMALL_STATE(5440)] = 208199, - [SMALL_STATE(5441)] = 208243, - [SMALL_STATE(5442)] = 208291, - [SMALL_STATE(5443)] = 208363, - [SMALL_STATE(5444)] = 208443, - [SMALL_STATE(5445)] = 208521, - [SMALL_STATE(5446)] = 208569, - [SMALL_STATE(5447)] = 208609, - [SMALL_STATE(5448)] = 208649, - [SMALL_STATE(5449)] = 208689, - [SMALL_STATE(5450)] = 208769, - [SMALL_STATE(5451)] = 208809, - [SMALL_STATE(5452)] = 208849, - [SMALL_STATE(5453)] = 208929, - [SMALL_STATE(5454)] = 209001, - [SMALL_STATE(5455)] = 209041, - [SMALL_STATE(5456)] = 209081, - [SMALL_STATE(5457)] = 209121, - [SMALL_STATE(5458)] = 209161, - [SMALL_STATE(5459)] = 209201, - [SMALL_STATE(5460)] = 209241, - [SMALL_STATE(5461)] = 209281, - [SMALL_STATE(5462)] = 209321, - [SMALL_STATE(5463)] = 209361, - [SMALL_STATE(5464)] = 209401, - [SMALL_STATE(5465)] = 209481, - [SMALL_STATE(5466)] = 209521, - [SMALL_STATE(5467)] = 209561, - [SMALL_STATE(5468)] = 209611, - [SMALL_STATE(5469)] = 209651, - [SMALL_STATE(5470)] = 209723, - [SMALL_STATE(5471)] = 209803, - [SMALL_STATE(5472)] = 209883, - [SMALL_STATE(5473)] = 209963, - [SMALL_STATE(5474)] = 210043, - [SMALL_STATE(5475)] = 210083, - [SMALL_STATE(5476)] = 210123, - [SMALL_STATE(5477)] = 210203, - [SMALL_STATE(5478)] = 210283, - [SMALL_STATE(5479)] = 210325, - [SMALL_STATE(5480)] = 210405, - [SMALL_STATE(5481)] = 210448, - [SMALL_STATE(5482)] = 210509, - [SMALL_STATE(5483)] = 210570, - [SMALL_STATE(5484)] = 210641, - [SMALL_STATE(5485)] = 210692, - [SMALL_STATE(5486)] = 210765, - [SMALL_STATE(5487)] = 210826, - [SMALL_STATE(5488)] = 210871, - [SMALL_STATE(5489)] = 210944, - [SMALL_STATE(5490)] = 210987, - [SMALL_STATE(5491)] = 211030, - [SMALL_STATE(5492)] = 211091, - [SMALL_STATE(5493)] = 211162, - [SMALL_STATE(5494)] = 211233, - [SMALL_STATE(5495)] = 211306, - [SMALL_STATE(5496)] = 211379, - [SMALL_STATE(5497)] = 211446, - [SMALL_STATE(5498)] = 211519, - [SMALL_STATE(5499)] = 211592, - [SMALL_STATE(5500)] = 211663, - [SMALL_STATE(5501)] = 211736, - [SMALL_STATE(5502)] = 211779, - [SMALL_STATE(5503)] = 211852, - [SMALL_STATE(5504)] = 211895, - [SMALL_STATE(5505)] = 211938, - [SMALL_STATE(5506)] = 211981, - [SMALL_STATE(5507)] = 212042, - [SMALL_STATE(5508)] = 212113, - [SMALL_STATE(5509)] = 212186, - [SMALL_STATE(5510)] = 212259, - [SMALL_STATE(5511)] = 212330, - [SMALL_STATE(5512)] = 212401, - [SMALL_STATE(5513)] = 212474, - [SMALL_STATE(5514)] = 212545, - [SMALL_STATE(5515)] = 212596, - [SMALL_STATE(5516)] = 212663, - [SMALL_STATE(5517)] = 212736, - [SMALL_STATE(5518)] = 212797, - [SMALL_STATE(5519)] = 212868, - [SMALL_STATE(5520)] = 212911, - [SMALL_STATE(5521)] = 212962, - [SMALL_STATE(5522)] = 213023, - [SMALL_STATE(5523)] = 213084, - [SMALL_STATE(5524)] = 213127, - [SMALL_STATE(5525)] = 213200, - [SMALL_STATE(5526)] = 213273, - [SMALL_STATE(5527)] = 213334, - [SMALL_STATE(5528)] = 213405, - [SMALL_STATE(5529)] = 213476, - [SMALL_STATE(5530)] = 213547, - [SMALL_STATE(5531)] = 213620, - [SMALL_STATE(5532)] = 213693, - [SMALL_STATE(5533)] = 213764, - [SMALL_STATE(5534)] = 213807, - [SMALL_STATE(5535)] = 213850, - [SMALL_STATE(5536)] = 213911, - [SMALL_STATE(5537)] = 213972, - [SMALL_STATE(5538)] = 214017, - [SMALL_STATE(5539)] = 214090, - [SMALL_STATE(5540)] = 214161, - [SMALL_STATE(5541)] = 214222, - [SMALL_STATE(5542)] = 214293, - [SMALL_STATE(5543)] = 214344, - [SMALL_STATE(5544)] = 214415, - [SMALL_STATE(5545)] = 214458, - [SMALL_STATE(5546)] = 214516, - [SMALL_STATE(5547)] = 214590, - [SMALL_STATE(5548)] = 214664, - [SMALL_STATE(5549)] = 214738, - [SMALL_STATE(5550)] = 214812, - [SMALL_STATE(5551)] = 214886, - [SMALL_STATE(5552)] = 214946, - [SMALL_STATE(5553)] = 215004, - [SMALL_STATE(5554)] = 215078, - [SMALL_STATE(5555)] = 215152, - [SMALL_STATE(5556)] = 215212, - [SMALL_STATE(5557)] = 215288, - [SMALL_STATE(5558)] = 215326, - [SMALL_STATE(5559)] = 215364, - [SMALL_STATE(5560)] = 215408, - [SMALL_STATE(5561)] = 215482, - [SMALL_STATE(5562)] = 215558, - [SMALL_STATE(5563)] = 215616, - [SMALL_STATE(5564)] = 215690, - [SMALL_STATE(5565)] = 215764, - [SMALL_STATE(5566)] = 215838, - [SMALL_STATE(5567)] = 215896, - [SMALL_STATE(5568)] = 215970, - [SMALL_STATE(5569)] = 216028, - [SMALL_STATE(5570)] = 216098, - [SMALL_STATE(5571)] = 216172, - [SMALL_STATE(5572)] = 216232, - [SMALL_STATE(5573)] = 216306, - [SMALL_STATE(5574)] = 216380, - [SMALL_STATE(5575)] = 216422, - [SMALL_STATE(5576)] = 216482, - [SMALL_STATE(5577)] = 216556, - [SMALL_STATE(5578)] = 216630, - [SMALL_STATE(5579)] = 216688, - [SMALL_STATE(5580)] = 216762, - [SMALL_STATE(5581)] = 216836, - [SMALL_STATE(5582)] = 216894, - [SMALL_STATE(5583)] = 216952, - [SMALL_STATE(5584)] = 217022, - [SMALL_STATE(5585)] = 217098, - [SMALL_STATE(5586)] = 217156, - [SMALL_STATE(5587)] = 217226, - [SMALL_STATE(5588)] = 217264, - [SMALL_STATE(5589)] = 217338, - [SMALL_STATE(5590)] = 217396, - [SMALL_STATE(5591)] = 217440, - [SMALL_STATE(5592)] = 217498, - [SMALL_STATE(5593)] = 217556, - [SMALL_STATE(5594)] = 217630, - [SMALL_STATE(5595)] = 217668, - [SMALL_STATE(5596)] = 217726, - [SMALL_STATE(5597)] = 217786, - [SMALL_STATE(5598)] = 217860, - [SMALL_STATE(5599)] = 217934, - [SMALL_STATE(5600)] = 218008, - [SMALL_STATE(5601)] = 218078, - [SMALL_STATE(5602)] = 218152, - [SMALL_STATE(5603)] = 218210, - [SMALL_STATE(5604)] = 218286, - [SMALL_STATE(5605)] = 218360, - [SMALL_STATE(5606)] = 218434, - [SMALL_STATE(5607)] = 218504, - [SMALL_STATE(5608)] = 218562, - [SMALL_STATE(5609)] = 218600, - [SMALL_STATE(5610)] = 218670, - [SMALL_STATE(5611)] = 218728, - [SMALL_STATE(5612)] = 218786, - [SMALL_STATE(5613)] = 218844, - [SMALL_STATE(5614)] = 218918, - [SMALL_STATE(5615)] = 218992, - [SMALL_STATE(5616)] = 219066, - [SMALL_STATE(5617)] = 219116, - [SMALL_STATE(5618)] = 219176, - [SMALL_STATE(5619)] = 219250, - [SMALL_STATE(5620)] = 219288, - [SMALL_STATE(5621)] = 219362, - [SMALL_STATE(5622)] = 219436, - [SMALL_STATE(5623)] = 219476, - [SMALL_STATE(5624)] = 219550, - [SMALL_STATE(5625)] = 219608, - [SMALL_STATE(5626)] = 219646, - [SMALL_STATE(5627)] = 219720, - [SMALL_STATE(5628)] = 219790, - [SMALL_STATE(5629)] = 219864, - [SMALL_STATE(5630)] = 219934, - [SMALL_STATE(5631)] = 219992, - [SMALL_STATE(5632)] = 220050, - [SMALL_STATE(5633)] = 220120, - [SMALL_STATE(5634)] = 220178, - [SMALL_STATE(5635)] = 220236, - [SMALL_STATE(5636)] = 220310, - [SMALL_STATE(5637)] = 220384, - [SMALL_STATE(5638)] = 220458, - [SMALL_STATE(5639)] = 220532, - [SMALL_STATE(5640)] = 220606, - [SMALL_STATE(5641)] = 220680, - [SMALL_STATE(5642)] = 220754, - [SMALL_STATE(5643)] = 220814, - [SMALL_STATE(5644)] = 220888, - [SMALL_STATE(5645)] = 220962, - [SMALL_STATE(5646)] = 221022, - [SMALL_STATE(5647)] = 221080, - [SMALL_STATE(5648)] = 221159, - [SMALL_STATE(5649)] = 221238, - [SMALL_STATE(5650)] = 221317, - [SMALL_STATE(5651)] = 221386, - [SMALL_STATE(5652)] = 221465, - [SMALL_STATE(5653)] = 221544, - [SMALL_STATE(5654)] = 221623, - [SMALL_STATE(5655)] = 221702, - [SMALL_STATE(5656)] = 221769, - [SMALL_STATE(5657)] = 221848, - [SMALL_STATE(5658)] = 221885, - [SMALL_STATE(5659)] = 221952, - [SMALL_STATE(5660)] = 222031, - [SMALL_STATE(5661)] = 222076, - [SMALL_STATE(5662)] = 222143, - [SMALL_STATE(5663)] = 222222, - [SMALL_STATE(5664)] = 222301, - [SMALL_STATE(5665)] = 222380, - [SMALL_STATE(5666)] = 222459, - [SMALL_STATE(5667)] = 222526, - [SMALL_STATE(5668)] = 222605, - [SMALL_STATE(5669)] = 222684, - [SMALL_STATE(5670)] = 222763, - [SMALL_STATE(5671)] = 222842, - [SMALL_STATE(5672)] = 222909, - [SMALL_STATE(5673)] = 222946, - [SMALL_STATE(5674)] = 223025, - [SMALL_STATE(5675)] = 223104, - [SMALL_STATE(5676)] = 223183, - [SMALL_STATE(5677)] = 223250, - [SMALL_STATE(5678)] = 223317, - [SMALL_STATE(5679)] = 223354, - [SMALL_STATE(5680)] = 223391, - [SMALL_STATE(5681)] = 223470, - [SMALL_STATE(5682)] = 223549, - [SMALL_STATE(5683)] = 223586, - [SMALL_STATE(5684)] = 223623, - [SMALL_STATE(5685)] = 223660, - [SMALL_STATE(5686)] = 223697, - [SMALL_STATE(5687)] = 223734, - [SMALL_STATE(5688)] = 223771, - [SMALL_STATE(5689)] = 223850, - [SMALL_STATE(5690)] = 223887, - [SMALL_STATE(5691)] = 223924, - [SMALL_STATE(5692)] = 223961, - [SMALL_STATE(5693)] = 223998, - [SMALL_STATE(5694)] = 224065, - [SMALL_STATE(5695)] = 224102, - [SMALL_STATE(5696)] = 224181, - [SMALL_STATE(5697)] = 224260, - [SMALL_STATE(5698)] = 224305, - [SMALL_STATE(5699)] = 224384, - [SMALL_STATE(5700)] = 224463, - [SMALL_STATE(5701)] = 224542, - [SMALL_STATE(5702)] = 224621, - [SMALL_STATE(5703)] = 224700, - [SMALL_STATE(5704)] = 224779, - [SMALL_STATE(5705)] = 224858, - [SMALL_STATE(5706)] = 224937, - [SMALL_STATE(5707)] = 225016, - [SMALL_STATE(5708)] = 225095, - [SMALL_STATE(5709)] = 225174, - [SMALL_STATE(5710)] = 225253, - [SMALL_STATE(5711)] = 225290, - [SMALL_STATE(5712)] = 225359, - [SMALL_STATE(5713)] = 225396, - [SMALL_STATE(5714)] = 225475, - [SMALL_STATE(5715)] = 225544, - [SMALL_STATE(5716)] = 225611, - [SMALL_STATE(5717)] = 225690, - [SMALL_STATE(5718)] = 225769, - [SMALL_STATE(5719)] = 225848, - [SMALL_STATE(5720)] = 225915, - [SMALL_STATE(5721)] = 225982, - [SMALL_STATE(5722)] = 226049, - [SMALL_STATE(5723)] = 226128, - [SMALL_STATE(5724)] = 226207, - [SMALL_STATE(5725)] = 226286, - [SMALL_STATE(5726)] = 226335, - [SMALL_STATE(5727)] = 226414, - [SMALL_STATE(5728)] = 226493, - [SMALL_STATE(5729)] = 226572, - [SMALL_STATE(5730)] = 226651, - [SMALL_STATE(5731)] = 226688, - [SMALL_STATE(5732)] = 226767, - [SMALL_STATE(5733)] = 226846, - [SMALL_STATE(5734)] = 226925, - [SMALL_STATE(5735)] = 226992, - [SMALL_STATE(5736)] = 227059, - [SMALL_STATE(5737)] = 227138, - [SMALL_STATE(5738)] = 227217, - [SMALL_STATE(5739)] = 227296, - [SMALL_STATE(5740)] = 227375, - [SMALL_STATE(5741)] = 227412, - [SMALL_STATE(5742)] = 227449, - [SMALL_STATE(5743)] = 227486, - [SMALL_STATE(5744)] = 227565, - [SMALL_STATE(5745)] = 227644, - [SMALL_STATE(5746)] = 227723, - [SMALL_STATE(5747)] = 227760, - [SMALL_STATE(5748)] = 227839, - [SMALL_STATE(5749)] = 227876, - [SMALL_STATE(5750)] = 227955, - [SMALL_STATE(5751)] = 228034, - [SMALL_STATE(5752)] = 228113, - [SMALL_STATE(5753)] = 228192, - [SMALL_STATE(5754)] = 228229, - [SMALL_STATE(5755)] = 228296, - [SMALL_STATE(5756)] = 228375, - [SMALL_STATE(5757)] = 228412, - [SMALL_STATE(5758)] = 228449, - [SMALL_STATE(5759)] = 228528, - [SMALL_STATE(5760)] = 228595, - [SMALL_STATE(5761)] = 228674, - [SMALL_STATE(5762)] = 228753, - [SMALL_STATE(5763)] = 228790, - [SMALL_STATE(5764)] = 228869, - [SMALL_STATE(5765)] = 228948, - [SMALL_STATE(5766)] = 229027, - [SMALL_STATE(5767)] = 229106, - [SMALL_STATE(5768)] = 229185, - [SMALL_STATE(5769)] = 229264, - [SMALL_STATE(5770)] = 229343, - [SMALL_STATE(5771)] = 229380, - [SMALL_STATE(5772)] = 229447, - [SMALL_STATE(5773)] = 229484, - [SMALL_STATE(5774)] = 229521, - [SMALL_STATE(5775)] = 229600, - [SMALL_STATE(5776)] = 229637, - [SMALL_STATE(5777)] = 229674, - [SMALL_STATE(5778)] = 229753, - [SMALL_STATE(5779)] = 229790, - [SMALL_STATE(5780)] = 229869, - [SMALL_STATE(5781)] = 229948, - [SMALL_STATE(5782)] = 230015, - [SMALL_STATE(5783)] = 230094, - [SMALL_STATE(5784)] = 230161, - [SMALL_STATE(5785)] = 230240, - [SMALL_STATE(5786)] = 230319, - [SMALL_STATE(5787)] = 230368, - [SMALL_STATE(5788)] = 230447, - [SMALL_STATE(5789)] = 230526, - [SMALL_STATE(5790)] = 230605, - [SMALL_STATE(5791)] = 230672, - [SMALL_STATE(5792)] = 230709, - [SMALL_STATE(5793)] = 230788, - [SMALL_STATE(5794)] = 230825, - [SMALL_STATE(5795)] = 230892, - [SMALL_STATE(5796)] = 230971, - [SMALL_STATE(5797)] = 231040, - [SMALL_STATE(5798)] = 231107, - [SMALL_STATE(5799)] = 231174, - [SMALL_STATE(5800)] = 231223, - [SMALL_STATE(5801)] = 231272, - [SMALL_STATE(5802)] = 231351, - [SMALL_STATE(5803)] = 231427, - [SMALL_STATE(5804)] = 231503, - [SMALL_STATE(5805)] = 231579, - [SMALL_STATE(5806)] = 231655, - [SMALL_STATE(5807)] = 231731, - [SMALL_STATE(5808)] = 231807, - [SMALL_STATE(5809)] = 231865, - [SMALL_STATE(5810)] = 231941, - [SMALL_STATE(5811)] = 232017, - [SMALL_STATE(5812)] = 232057, - [SMALL_STATE(5813)] = 232133, - [SMALL_STATE(5814)] = 232181, - [SMALL_STATE(5815)] = 232243, - [SMALL_STATE(5816)] = 232305, - [SMALL_STATE(5817)] = 232363, - [SMALL_STATE(5818)] = 232439, - [SMALL_STATE(5819)] = 232515, - [SMALL_STATE(5820)] = 232591, - [SMALL_STATE(5821)] = 232667, - [SMALL_STATE(5822)] = 232743, - [SMALL_STATE(5823)] = 232819, - [SMALL_STATE(5824)] = 232881, - [SMALL_STATE(5825)] = 232957, - [SMALL_STATE(5826)] = 233033, - [SMALL_STATE(5827)] = 233095, - [SMALL_STATE(5828)] = 233157, - [SMALL_STATE(5829)] = 233233, - [SMALL_STATE(5830)] = 233309, - [SMALL_STATE(5831)] = 233371, - [SMALL_STATE(5832)] = 233447, - [SMALL_STATE(5833)] = 233505, - [SMALL_STATE(5834)] = 233563, - [SMALL_STATE(5835)] = 233624, - [SMALL_STATE(5836)] = 233691, - [SMALL_STATE(5837)] = 233752, - [SMALL_STATE(5838)] = 233813, - [SMALL_STATE(5839)] = 233874, - [SMALL_STATE(5840)] = 233935, - [SMALL_STATE(5841)] = 234002, - [SMALL_STATE(5842)] = 234047, - [SMALL_STATE(5843)] = 234108, - [SMALL_STATE(5844)] = 234175, - [SMALL_STATE(5845)] = 234242, - [SMALL_STATE(5846)] = 234309, - [SMALL_STATE(5847)] = 234352, - [SMALL_STATE(5848)] = 234419, - [SMALL_STATE(5849)] = 234486, - [SMALL_STATE(5850)] = 234553, - [SMALL_STATE(5851)] = 234596, - [SMALL_STATE(5852)] = 234656, - [SMALL_STATE(5853)] = 234716, - [SMALL_STATE(5854)] = 234776, - [SMALL_STATE(5855)] = 234814, - [SMALL_STATE(5856)] = 234852, - [SMALL_STATE(5857)] = 234890, - [SMALL_STATE(5858)] = 234950, - [SMALL_STATE(5859)] = 235010, - [SMALL_STATE(5860)] = 235054, - [SMALL_STATE(5861)] = 235114, - [SMALL_STATE(5862)] = 235174, - [SMALL_STATE(5863)] = 235210, - [SMALL_STATE(5864)] = 235270, - [SMALL_STATE(5865)] = 235304, - [SMALL_STATE(5866)] = 235338, - [SMALL_STATE(5867)] = 235398, - [SMALL_STATE(5868)] = 235458, - [SMALL_STATE(5869)] = 235518, - [SMALL_STATE(5870)] = 235578, - [SMALL_STATE(5871)] = 235638, - [SMALL_STATE(5872)] = 235676, - [SMALL_STATE(5873)] = 235736, - [SMALL_STATE(5874)] = 235796, - [SMALL_STATE(5875)] = 235856, - [SMALL_STATE(5876)] = 235916, - [SMALL_STATE(5877)] = 235976, - [SMALL_STATE(5878)] = 236014, - [SMALL_STATE(5879)] = 236052, - [SMALL_STATE(5880)] = 236094, - [SMALL_STATE(5881)] = 236154, - [SMALL_STATE(5882)] = 236214, - [SMALL_STATE(5883)] = 236252, - [SMALL_STATE(5884)] = 236296, - [SMALL_STATE(5885)] = 236356, - [SMALL_STATE(5886)] = 236416, - [SMALL_STATE(5887)] = 236476, - [SMALL_STATE(5888)] = 236536, - [SMALL_STATE(5889)] = 236595, - [SMALL_STATE(5890)] = 236632, - [SMALL_STATE(5891)] = 236691, - [SMALL_STATE(5892)] = 236728, - [SMALL_STATE(5893)] = 236787, - [SMALL_STATE(5894)] = 236848, - [SMALL_STATE(5895)] = 236885, - [SMALL_STATE(5896)] = 236944, - [SMALL_STATE(5897)] = 237005, - [SMALL_STATE(5898)] = 237064, - [SMALL_STATE(5899)] = 237125, - [SMALL_STATE(5900)] = 237186, - [SMALL_STATE(5901)] = 237245, - [SMALL_STATE(5902)] = 237304, - [SMALL_STATE(5903)] = 237365, - [SMALL_STATE(5904)] = 237402, - [SMALL_STATE(5905)] = 237461, - [SMALL_STATE(5906)] = 237520, - [SMALL_STATE(5907)] = 237557, - [SMALL_STATE(5908)] = 237618, - [SMALL_STATE(5909)] = 237655, - [SMALL_STATE(5910)] = 237716, - [SMALL_STATE(5911)] = 237753, - [SMALL_STATE(5912)] = 237814, - [SMALL_STATE(5913)] = 237851, - [SMALL_STATE(5914)] = 237910, - [SMALL_STATE(5915)] = 237947, - [SMALL_STATE(5916)] = 238006, - [SMALL_STATE(5917)] = 238043, - [SMALL_STATE(5918)] = 238102, - [SMALL_STATE(5919)] = 238139, - [SMALL_STATE(5920)] = 238200, - [SMALL_STATE(5921)] = 238237, - [SMALL_STATE(5922)] = 238274, - [SMALL_STATE(5923)] = 238332, - [SMALL_STATE(5924)] = 238390, - [SMALL_STATE(5925)] = 238438, - [SMALL_STATE(5926)] = 238472, - [SMALL_STATE(5927)] = 238520, - [SMALL_STATE(5928)] = 238578, - [SMALL_STATE(5929)] = 238636, - [SMALL_STATE(5930)] = 238694, - [SMALL_STATE(5931)] = 238752, - [SMALL_STATE(5932)] = 238800, - [SMALL_STATE(5933)] = 238836, - [SMALL_STATE(5934)] = 238871, - [SMALL_STATE(5935)] = 238906, - [SMALL_STATE(5936)] = 238953, - [SMALL_STATE(5937)] = 238990, - [SMALL_STATE(5938)] = 239042, - [SMALL_STATE(5939)] = 239112, - [SMALL_STATE(5940)] = 239164, - [SMALL_STATE(5941)] = 239220, - [SMALL_STATE(5942)] = 239272, - [SMALL_STATE(5943)] = 239328, - [SMALL_STATE(5944)] = 239380, - [SMALL_STATE(5945)] = 239432, - [SMALL_STATE(5946)] = 239484, - [SMALL_STATE(5947)] = 239536, - [SMALL_STATE(5948)] = 239588, - [SMALL_STATE(5949)] = 239656, - [SMALL_STATE(5950)] = 239708, - [SMALL_STATE(5951)] = 239760, - [SMALL_STATE(5952)] = 239812, - [SMALL_STATE(5953)] = 239858, - [SMALL_STATE(5954)] = 239910, - [SMALL_STATE(5955)] = 239966, - [SMALL_STATE(5956)] = 240018, - [SMALL_STATE(5957)] = 240056, - [SMALL_STATE(5958)] = 240126, - [SMALL_STATE(5959)] = 240178, - [SMALL_STATE(5960)] = 240224, - [SMALL_STATE(5961)] = 240276, - [SMALL_STATE(5962)] = 240328, - [SMALL_STATE(5963)] = 240384, - [SMALL_STATE(5964)] = 240436, - [SMALL_STATE(5965)] = 240488, - [SMALL_STATE(5966)] = 240544, - [SMALL_STATE(5967)] = 240596, - [SMALL_STATE(5968)] = 240652, - [SMALL_STATE(5969)] = 240708, - [SMALL_STATE(5970)] = 240776, - [SMALL_STATE(5971)] = 240814, - [SMALL_STATE(5972)] = 240866, - [SMALL_STATE(5973)] = 240918, - [SMALL_STATE(5974)] = 240974, - [SMALL_STATE(5975)] = 241026, - [SMALL_STATE(5976)] = 241094, - [SMALL_STATE(5977)] = 241146, - [SMALL_STATE(5978)] = 241198, - [SMALL_STATE(5979)] = 241254, - [SMALL_STATE(5980)] = 241288, - [SMALL_STATE(5981)] = 241340, - [SMALL_STATE(5982)] = 241396, - [SMALL_STATE(5983)] = 241448, - [SMALL_STATE(5984)] = 241500, - [SMALL_STATE(5985)] = 241552, - [SMALL_STATE(5986)] = 241604, - [SMALL_STATE(5987)] = 241660, - [SMALL_STATE(5988)] = 241728, - [SMALL_STATE(5989)] = 241798, - [SMALL_STATE(5990)] = 241850, - [SMALL_STATE(5991)] = 241902, - [SMALL_STATE(5992)] = 241954, - [SMALL_STATE(5993)] = 242006, - [SMALL_STATE(5994)] = 242062, - [SMALL_STATE(5995)] = 242114, - [SMALL_STATE(5996)] = 242166, - [SMALL_STATE(5997)] = 242218, - [SMALL_STATE(5998)] = 242270, - [SMALL_STATE(5999)] = 242322, - [SMALL_STATE(6000)] = 242374, - [SMALL_STATE(6001)] = 242426, - [SMALL_STATE(6002)] = 242478, - [SMALL_STATE(6003)] = 242530, - [SMALL_STATE(6004)] = 242582, - [SMALL_STATE(6005)] = 242634, - [SMALL_STATE(6006)] = 242686, - [SMALL_STATE(6007)] = 242745, - [SMALL_STATE(6008)] = 242804, - [SMALL_STATE(6009)] = 242863, - [SMALL_STATE(6010)] = 242922, - [SMALL_STATE(6011)] = 242981, - [SMALL_STATE(6012)] = 243024, - [SMALL_STATE(6013)] = 243083, - [SMALL_STATE(6014)] = 243142, - [SMALL_STATE(6015)] = 243201, - [SMALL_STATE(6016)] = 243260, - [SMALL_STATE(6017)] = 243319, - [SMALL_STATE(6018)] = 243378, - [SMALL_STATE(6019)] = 243437, - [SMALL_STATE(6020)] = 243496, - [SMALL_STATE(6021)] = 243551, - [SMALL_STATE(6022)] = 243610, - [SMALL_STATE(6023)] = 243669, - [SMALL_STATE(6024)] = 243728, - [SMALL_STATE(6025)] = 243787, - [SMALL_STATE(6026)] = 243846, - [SMALL_STATE(6027)] = 243905, - [SMALL_STATE(6028)] = 243964, - [SMALL_STATE(6029)] = 244023, - [SMALL_STATE(6030)] = 244082, - [SMALL_STATE(6031)] = 244145, - [SMALL_STATE(6032)] = 244204, - [SMALL_STATE(6033)] = 244263, - [SMALL_STATE(6034)] = 244322, - [SMALL_STATE(6035)] = 244381, - [SMALL_STATE(6036)] = 244440, - [SMALL_STATE(6037)] = 244499, - [SMALL_STATE(6038)] = 244558, - [SMALL_STATE(6039)] = 244617, - [SMALL_STATE(6040)] = 244676, - [SMALL_STATE(6041)] = 244735, - [SMALL_STATE(6042)] = 244794, - [SMALL_STATE(6043)] = 244853, - [SMALL_STATE(6044)] = 244898, - [SMALL_STATE(6045)] = 244957, - [SMALL_STATE(6046)] = 244986, - [SMALL_STATE(6047)] = 245045, - [SMALL_STATE(6048)] = 245104, - [SMALL_STATE(6049)] = 245163, - [SMALL_STATE(6050)] = 245222, - [SMALL_STATE(6051)] = 245281, - [SMALL_STATE(6052)] = 245340, - [SMALL_STATE(6053)] = 245399, - [SMALL_STATE(6054)] = 245458, - [SMALL_STATE(6055)] = 245517, - [SMALL_STATE(6056)] = 245576, - [SMALL_STATE(6057)] = 245635, - [SMALL_STATE(6058)] = 245694, - [SMALL_STATE(6059)] = 245753, - [SMALL_STATE(6060)] = 245796, - [SMALL_STATE(6061)] = 245855, - [SMALL_STATE(6062)] = 245914, - [SMALL_STATE(6063)] = 245973, - [SMALL_STATE(6064)] = 246032, - [SMALL_STATE(6065)] = 246091, - [SMALL_STATE(6066)] = 246150, - [SMALL_STATE(6067)] = 246209, - [SMALL_STATE(6068)] = 246268, - [SMALL_STATE(6069)] = 246327, - [SMALL_STATE(6070)] = 246386, - [SMALL_STATE(6071)] = 246445, - [SMALL_STATE(6072)] = 246504, - [SMALL_STATE(6073)] = 246563, - [SMALL_STATE(6074)] = 246622, - [SMALL_STATE(6075)] = 246681, - [SMALL_STATE(6076)] = 246740, - [SMALL_STATE(6077)] = 246799, - [SMALL_STATE(6078)] = 246858, - [SMALL_STATE(6079)] = 246917, - [SMALL_STATE(6080)] = 246946, - [SMALL_STATE(6081)] = 247005, - [SMALL_STATE(6082)] = 247064, - [SMALL_STATE(6083)] = 247123, - [SMALL_STATE(6084)] = 247182, - [SMALL_STATE(6085)] = 247241, - [SMALL_STATE(6086)] = 247300, - [SMALL_STATE(6087)] = 247359, - [SMALL_STATE(6088)] = 247418, - [SMALL_STATE(6089)] = 247477, - [SMALL_STATE(6090)] = 247536, - [SMALL_STATE(6091)] = 247595, - [SMALL_STATE(6092)] = 247654, - [SMALL_STATE(6093)] = 247713, - [SMALL_STATE(6094)] = 247746, - [SMALL_STATE(6095)] = 247805, - [SMALL_STATE(6096)] = 247864, - [SMALL_STATE(6097)] = 247923, - [SMALL_STATE(6098)] = 247978, - [SMALL_STATE(6099)] = 248037, - [SMALL_STATE(6100)] = 248096, - [SMALL_STATE(6101)] = 248155, - [SMALL_STATE(6102)] = 248214, - [SMALL_STATE(6103)] = 248273, - [SMALL_STATE(6104)] = 248332, - [SMALL_STATE(6105)] = 248391, - [SMALL_STATE(6106)] = 248450, - [SMALL_STATE(6107)] = 248493, - [SMALL_STATE(6108)] = 248552, - [SMALL_STATE(6109)] = 248611, - [SMALL_STATE(6110)] = 248670, - [SMALL_STATE(6111)] = 248729, - [SMALL_STATE(6112)] = 248788, - [SMALL_STATE(6113)] = 248847, - [SMALL_STATE(6114)] = 248906, - [SMALL_STATE(6115)] = 248965, - [SMALL_STATE(6116)] = 249020, - [SMALL_STATE(6117)] = 249079, - [SMALL_STATE(6118)] = 249107, - [SMALL_STATE(6119)] = 249165, - [SMALL_STATE(6120)] = 249193, - [SMALL_STATE(6121)] = 249251, - [SMALL_STATE(6122)] = 249279, - [SMALL_STATE(6123)] = 249319, - [SMALL_STATE(6124)] = 249355, - [SMALL_STATE(6125)] = 249419, - [SMALL_STATE(6126)] = 249447, - [SMALL_STATE(6127)] = 249487, - [SMALL_STATE(6128)] = 249527, - [SMALL_STATE(6129)] = 249567, - [SMALL_STATE(6130)] = 249607, - [SMALL_STATE(6131)] = 249647, - [SMALL_STATE(6132)] = 249683, - [SMALL_STATE(6133)] = 249723, - [SMALL_STATE(6134)] = 249763, - [SMALL_STATE(6135)] = 249803, - [SMALL_STATE(6136)] = 249843, - [SMALL_STATE(6137)] = 249901, - [SMALL_STATE(6138)] = 249941, - [SMALL_STATE(6139)] = 249981, - [SMALL_STATE(6140)] = 250045, - [SMALL_STATE(6141)] = 250073, - [SMALL_STATE(6142)] = 250131, - [SMALL_STATE(6143)] = 250171, - [SMALL_STATE(6144)] = 250211, - [SMALL_STATE(6145)] = 250239, - [SMALL_STATE(6146)] = 250279, - [SMALL_STATE(6147)] = 250343, - [SMALL_STATE(6148)] = 250395, - [SMALL_STATE(6149)] = 250435, - [SMALL_STATE(6150)] = 250475, - [SMALL_STATE(6151)] = 250539, - [SMALL_STATE(6152)] = 250579, - [SMALL_STATE(6153)] = 250643, - [SMALL_STATE(6154)] = 250683, - [SMALL_STATE(6155)] = 250735, - [SMALL_STATE(6156)] = 250775, - [SMALL_STATE(6157)] = 250833, - [SMALL_STATE(6158)] = 250897, - [SMALL_STATE(6159)] = 250937, - [SMALL_STATE(6160)] = 250995, - [SMALL_STATE(6161)] = 251035, - [SMALL_STATE(6162)] = 251093, - [SMALL_STATE(6163)] = 251137, - [SMALL_STATE(6164)] = 251177, - [SMALL_STATE(6165)] = 251217, - [SMALL_STATE(6166)] = 251267, - [SMALL_STATE(6167)] = 251307, - [SMALL_STATE(6168)] = 251365, - [SMALL_STATE(6169)] = 251405, - [SMALL_STATE(6170)] = 251469, - [SMALL_STATE(6171)] = 251533, - [SMALL_STATE(6172)] = 251597, - [SMALL_STATE(6173)] = 251625, - [SMALL_STATE(6174)] = 251677, - [SMALL_STATE(6175)] = 251717, - [SMALL_STATE(6176)] = 251749, - [SMALL_STATE(6177)] = 251777, - [SMALL_STATE(6178)] = 251817, - [SMALL_STATE(6179)] = 251857, - [SMALL_STATE(6180)] = 251897, - [SMALL_STATE(6181)] = 251955, - [SMALL_STATE(6182)] = 251995, - [SMALL_STATE(6183)] = 252035, - [SMALL_STATE(6184)] = 252069, - [SMALL_STATE(6185)] = 252109, - [SMALL_STATE(6186)] = 252149, - [SMALL_STATE(6187)] = 252189, - [SMALL_STATE(6188)] = 252217, - [SMALL_STATE(6189)] = 252269, - [SMALL_STATE(6190)] = 252317, - [SMALL_STATE(6191)] = 252363, - [SMALL_STATE(6192)] = 252409, - [SMALL_STATE(6193)] = 252445, - [SMALL_STATE(6194)] = 252485, - [SMALL_STATE(6195)] = 252525, - [SMALL_STATE(6196)] = 252589, - [SMALL_STATE(6197)] = 252653, - [SMALL_STATE(6198)] = 252717, - [SMALL_STATE(6199)] = 252759, - [SMALL_STATE(6200)] = 252823, - [SMALL_STATE(6201)] = 252863, - [SMALL_STATE(6202)] = 252903, - [SMALL_STATE(6203)] = 252947, - [SMALL_STATE(6204)] = 252975, - [SMALL_STATE(6205)] = 253015, - [SMALL_STATE(6206)] = 253055, - [SMALL_STATE(6207)] = 253095, - [SMALL_STATE(6208)] = 253159, - [SMALL_STATE(6209)] = 253194, - [SMALL_STATE(6210)] = 253221, - [SMALL_STATE(6211)] = 253260, - [SMALL_STATE(6212)] = 253295, - [SMALL_STATE(6213)] = 253332, - [SMALL_STATE(6214)] = 253371, - [SMALL_STATE(6215)] = 253404, - [SMALL_STATE(6216)] = 253431, - [SMALL_STATE(6217)] = 253470, - [SMALL_STATE(6218)] = 253497, - [SMALL_STATE(6219)] = 253526, - [SMALL_STATE(6220)] = 253565, - [SMALL_STATE(6221)] = 253596, - [SMALL_STATE(6222)] = 253627, - [SMALL_STATE(6223)] = 253654, - [SMALL_STATE(6224)] = 253699, - [SMALL_STATE(6225)] = 253744, - [SMALL_STATE(6226)] = 253789, - [SMALL_STATE(6227)] = 253828, - [SMALL_STATE(6228)] = 253885, - [SMALL_STATE(6229)] = 253942, - [SMALL_STATE(6230)] = 253977, - [SMALL_STATE(6231)] = 254026, - [SMALL_STATE(6232)] = 254061, - [SMALL_STATE(6233)] = 254096, - [SMALL_STATE(6234)] = 254135, - [SMALL_STATE(6235)] = 254170, - [SMALL_STATE(6236)] = 254205, - [SMALL_STATE(6237)] = 254236, - [SMALL_STATE(6238)] = 254275, - [SMALL_STATE(6239)] = 254302, - [SMALL_STATE(6240)] = 254341, - [SMALL_STATE(6241)] = 254370, - [SMALL_STATE(6242)] = 254409, - [SMALL_STATE(6243)] = 254436, - [SMALL_STATE(6244)] = 254463, - [SMALL_STATE(6245)] = 254490, - [SMALL_STATE(6246)] = 254517, - [SMALL_STATE(6247)] = 254544, - [SMALL_STATE(6248)] = 254571, - [SMALL_STATE(6249)] = 254600, - [SMALL_STATE(6250)] = 254629, - [SMALL_STATE(6251)] = 254656, - [SMALL_STATE(6252)] = 254701, - [SMALL_STATE(6253)] = 254732, - [SMALL_STATE(6254)] = 254759, - [SMALL_STATE(6255)] = 254786, - [SMALL_STATE(6256)] = 254837, - [SMALL_STATE(6257)] = 254872, - [SMALL_STATE(6258)] = 254917, - [SMALL_STATE(6259)] = 254956, - [SMALL_STATE(6260)] = 254999, - [SMALL_STATE(6261)] = 255038, - [SMALL_STATE(6262)] = 255083, - [SMALL_STATE(6263)] = 255128, - [SMALL_STATE(6264)] = 255185, - [SMALL_STATE(6265)] = 255224, - [SMALL_STATE(6266)] = 255269, - [SMALL_STATE(6267)] = 255296, - [SMALL_STATE(6268)] = 255323, - [SMALL_STATE(6269)] = 255362, - [SMALL_STATE(6270)] = 255407, - [SMALL_STATE(6271)] = 255438, - [SMALL_STATE(6272)] = 255477, - [SMALL_STATE(6273)] = 255512, - [SMALL_STATE(6274)] = 255539, - [SMALL_STATE(6275)] = 255596, - [SMALL_STATE(6276)] = 255641, - [SMALL_STATE(6277)] = 255692, - [SMALL_STATE(6278)] = 255731, - [SMALL_STATE(6279)] = 255766, - [SMALL_STATE(6280)] = 255811, - [SMALL_STATE(6281)] = 255838, - [SMALL_STATE(6282)] = 255877, - [SMALL_STATE(6283)] = 255904, - [SMALL_STATE(6284)] = 255931, - [SMALL_STATE(6285)] = 255970, - [SMALL_STATE(6286)] = 256009, - [SMALL_STATE(6287)] = 256048, - [SMALL_STATE(6288)] = 256089, - [SMALL_STATE(6289)] = 256140, - [SMALL_STATE(6290)] = 256179, - [SMALL_STATE(6291)] = 256218, - [SMALL_STATE(6292)] = 256245, - [SMALL_STATE(6293)] = 256290, - [SMALL_STATE(6294)] = 256321, - [SMALL_STATE(6295)] = 256348, - [SMALL_STATE(6296)] = 256375, - [SMALL_STATE(6297)] = 256406, - [SMALL_STATE(6298)] = 256433, - [SMALL_STATE(6299)] = 256460, - [SMALL_STATE(6300)] = 256487, - [SMALL_STATE(6301)] = 256522, - [SMALL_STATE(6302)] = 256561, - [SMALL_STATE(6303)] = 256596, - [SMALL_STATE(6304)] = 256631, - [SMALL_STATE(6305)] = 256666, - [SMALL_STATE(6306)] = 256701, - [SMALL_STATE(6307)] = 256732, - [SMALL_STATE(6308)] = 256759, - [SMALL_STATE(6309)] = 256810, - [SMALL_STATE(6310)] = 256867, - [SMALL_STATE(6311)] = 256894, - [SMALL_STATE(6312)] = 256921, - [SMALL_STATE(6313)] = 256964, - [SMALL_STATE(6314)] = 257003, - [SMALL_STATE(6315)] = 257038, - [SMALL_STATE(6316)] = 257065, - [SMALL_STATE(6317)] = 257104, - [SMALL_STATE(6318)] = 257161, - [SMALL_STATE(6319)] = 257206, - [SMALL_STATE(6320)] = 257251, - [SMALL_STATE(6321)] = 257300, - [SMALL_STATE(6322)] = 257327, - [SMALL_STATE(6323)] = 257372, - [SMALL_STATE(6324)] = 257407, - [SMALL_STATE(6325)] = 257452, - [SMALL_STATE(6326)] = 257487, - [SMALL_STATE(6327)] = 257522, - [SMALL_STATE(6328)] = 257557, - [SMALL_STATE(6329)] = 257602, - [SMALL_STATE(6330)] = 257641, - [SMALL_STATE(6331)] = 257676, - [SMALL_STATE(6332)] = 257703, - [SMALL_STATE(6333)] = 257733, - [SMALL_STATE(6334)] = 257763, - [SMALL_STATE(6335)] = 257799, - [SMALL_STATE(6336)] = 257835, - [SMALL_STATE(6337)] = 257887, - [SMALL_STATE(6338)] = 257923, - [SMALL_STATE(6339)] = 257959, - [SMALL_STATE(6340)] = 258001, - [SMALL_STATE(6341)] = 258037, - [SMALL_STATE(6342)] = 258073, - [SMALL_STATE(6343)] = 258109, - [SMALL_STATE(6344)] = 258145, - [SMALL_STATE(6345)] = 258175, - [SMALL_STATE(6346)] = 258205, - [SMALL_STATE(6347)] = 258230, - [SMALL_STATE(6348)] = 258255, - [SMALL_STATE(6349)] = 258298, - [SMALL_STATE(6350)] = 258347, - [SMALL_STATE(6351)] = 258390, - [SMALL_STATE(6352)] = 258439, - [SMALL_STATE(6353)] = 258488, - [SMALL_STATE(6354)] = 258525, - [SMALL_STATE(6355)] = 258574, - [SMALL_STATE(6356)] = 258623, - [SMALL_STATE(6357)] = 258672, - [SMALL_STATE(6358)] = 258715, - [SMALL_STATE(6359)] = 258758, - [SMALL_STATE(6360)] = 258807, - [SMALL_STATE(6361)] = 258850, - [SMALL_STATE(6362)] = 258899, - [SMALL_STATE(6363)] = 258948, - [SMALL_STATE(6364)] = 258973, - [SMALL_STATE(6365)] = 259010, - [SMALL_STATE(6366)] = 259047, - [SMALL_STATE(6367)] = 259084, - [SMALL_STATE(6368)] = 259121, - [SMALL_STATE(6369)] = 259158, - [SMALL_STATE(6370)] = 259189, - [SMALL_STATE(6371)] = 259238, - [SMALL_STATE(6372)] = 259275, - [SMALL_STATE(6373)] = 259324, - [SMALL_STATE(6374)] = 259361, - [SMALL_STATE(6375)] = 259398, - [SMALL_STATE(6376)] = 259435, - [SMALL_STATE(6377)] = 259484, - [SMALL_STATE(6378)] = 259509, - [SMALL_STATE(6379)] = 259546, - [SMALL_STATE(6380)] = 259589, - [SMALL_STATE(6381)] = 259632, - [SMALL_STATE(6382)] = 259675, - [SMALL_STATE(6383)] = 259700, - [SMALL_STATE(6384)] = 259725, - [SMALL_STATE(6385)] = 259768, - [SMALL_STATE(6386)] = 259805, - [SMALL_STATE(6387)] = 259848, - [SMALL_STATE(6388)] = 259873, - [SMALL_STATE(6389)] = 259898, - [SMALL_STATE(6390)] = 259935, - [SMALL_STATE(6391)] = 259976, - [SMALL_STATE(6392)] = 260001, - [SMALL_STATE(6393)] = 260044, - [SMALL_STATE(6394)] = 260093, - [SMALL_STATE(6395)] = 260142, - [SMALL_STATE(6396)] = 260183, - [SMALL_STATE(6397)] = 260232, - [SMALL_STATE(6398)] = 260269, - [SMALL_STATE(6399)] = 260312, - [SMALL_STATE(6400)] = 260337, - [SMALL_STATE(6401)] = 260362, - [SMALL_STATE(6402)] = 260405, - [SMALL_STATE(6403)] = 260448, - [SMALL_STATE(6404)] = 260491, - [SMALL_STATE(6405)] = 260534, - [SMALL_STATE(6406)] = 260559, - [SMALL_STATE(6407)] = 260602, - [SMALL_STATE(6408)] = 260627, - [SMALL_STATE(6409)] = 260676, - [SMALL_STATE(6410)] = 260719, - [SMALL_STATE(6411)] = 260762, - [SMALL_STATE(6412)] = 260805, - [SMALL_STATE(6413)] = 260830, - [SMALL_STATE(6414)] = 260873, - [SMALL_STATE(6415)] = 260922, - [SMALL_STATE(6416)] = 260971, - [SMALL_STATE(6417)] = 261014, - [SMALL_STATE(6418)] = 261063, - [SMALL_STATE(6419)] = 261112, - [SMALL_STATE(6420)] = 261161, - [SMALL_STATE(6421)] = 261210, - [SMALL_STATE(6422)] = 261241, - [SMALL_STATE(6423)] = 261290, - [SMALL_STATE(6424)] = 261315, - [SMALL_STATE(6425)] = 261358, - [SMALL_STATE(6426)] = 261383, - [SMALL_STATE(6427)] = 261408, - [SMALL_STATE(6428)] = 261445, - [SMALL_STATE(6429)] = 261496, - [SMALL_STATE(6430)] = 261545, - [SMALL_STATE(6431)] = 261588, - [SMALL_STATE(6432)] = 261625, - [SMALL_STATE(6433)] = 261650, - [SMALL_STATE(6434)] = 261693, - [SMALL_STATE(6435)] = 261718, - [SMALL_STATE(6436)] = 261761, - [SMALL_STATE(6437)] = 261810, - [SMALL_STATE(6438)] = 261835, - [SMALL_STATE(6439)] = 261871, - [SMALL_STATE(6440)] = 261895, - [SMALL_STATE(6441)] = 261935, - [SMALL_STATE(6442)] = 261957, - [SMALL_STATE(6443)] = 261987, - [SMALL_STATE(6444)] = 262009, - [SMALL_STATE(6445)] = 262045, - [SMALL_STATE(6446)] = 262075, - [SMALL_STATE(6447)] = 262105, - [SMALL_STATE(6448)] = 262127, - [SMALL_STATE(6449)] = 262163, - [SMALL_STATE(6450)] = 262193, - [SMALL_STATE(6451)] = 262233, - [SMALL_STATE(6452)] = 262255, - [SMALL_STATE(6453)] = 262285, - [SMALL_STATE(6454)] = 262325, - [SMALL_STATE(6455)] = 262365, - [SMALL_STATE(6456)] = 262405, - [SMALL_STATE(6457)] = 262441, - [SMALL_STATE(6458)] = 262463, - [SMALL_STATE(6459)] = 262503, - [SMALL_STATE(6460)] = 262539, - [SMALL_STATE(6461)] = 262579, - [SMALL_STATE(6462)] = 262619, - [SMALL_STATE(6463)] = 262641, - [SMALL_STATE(6464)] = 262663, - [SMALL_STATE(6465)] = 262703, - [SMALL_STATE(6466)] = 262733, - [SMALL_STATE(6467)] = 262773, - [SMALL_STATE(6468)] = 262803, - [SMALL_STATE(6469)] = 262843, - [SMALL_STATE(6470)] = 262869, - [SMALL_STATE(6471)] = 262891, - [SMALL_STATE(6472)] = 262931, - [SMALL_STATE(6473)] = 262971, - [SMALL_STATE(6474)] = 263011, - [SMALL_STATE(6475)] = 263041, - [SMALL_STATE(6476)] = 263077, - [SMALL_STATE(6477)] = 263103, - [SMALL_STATE(6478)] = 263143, - [SMALL_STATE(6479)] = 263183, - [SMALL_STATE(6480)] = 263205, - [SMALL_STATE(6481)] = 263235, - [SMALL_STATE(6482)] = 263257, - [SMALL_STATE(6483)] = 263279, - [SMALL_STATE(6484)] = 263301, - [SMALL_STATE(6485)] = 263325, - [SMALL_STATE(6486)] = 263347, - [SMALL_STATE(6487)] = 263373, - [SMALL_STATE(6488)] = 263409, - [SMALL_STATE(6489)] = 263439, - [SMALL_STATE(6490)] = 263483, - [SMALL_STATE(6491)] = 263507, - [SMALL_STATE(6492)] = 263529, - [SMALL_STATE(6493)] = 263569, - [SMALL_STATE(6494)] = 263595, - [SMALL_STATE(6495)] = 263635, - [SMALL_STATE(6496)] = 263675, - [SMALL_STATE(6497)] = 263705, - [SMALL_STATE(6498)] = 263745, - [SMALL_STATE(6499)] = 263785, - [SMALL_STATE(6500)] = 263825, - [SMALL_STATE(6501)] = 263847, - [SMALL_STATE(6502)] = 263887, - [SMALL_STATE(6503)] = 263917, - [SMALL_STATE(6504)] = 263957, - [SMALL_STATE(6505)] = 263979, - [SMALL_STATE(6506)] = 264019, - [SMALL_STATE(6507)] = 264041, - [SMALL_STATE(6508)] = 264081, - [SMALL_STATE(6509)] = 264111, - [SMALL_STATE(6510)] = 264141, - [SMALL_STATE(6511)] = 264181, - [SMALL_STATE(6512)] = 264221, - [SMALL_STATE(6513)] = 264251, - [SMALL_STATE(6514)] = 264287, - [SMALL_STATE(6515)] = 264316, - [SMALL_STATE(6516)] = 264349, - [SMALL_STATE(6517)] = 264380, - [SMALL_STATE(6518)] = 264411, - [SMALL_STATE(6519)] = 264434, - [SMALL_STATE(6520)] = 264463, - [SMALL_STATE(6521)] = 264494, - [SMALL_STATE(6522)] = 264523, - [SMALL_STATE(6523)] = 264552, - [SMALL_STATE(6524)] = 264595, - [SMALL_STATE(6525)] = 264624, - [SMALL_STATE(6526)] = 264653, - [SMALL_STATE(6527)] = 264682, - [SMALL_STATE(6528)] = 264715, - [SMALL_STATE(6529)] = 264744, - [SMALL_STATE(6530)] = 264773, - [SMALL_STATE(6531)] = 264802, - [SMALL_STATE(6532)] = 264831, - [SMALL_STATE(6533)] = 264860, - [SMALL_STATE(6534)] = 264893, - [SMALL_STATE(6535)] = 264922, - [SMALL_STATE(6536)] = 264949, - [SMALL_STATE(6537)] = 264980, - [SMALL_STATE(6538)] = 265011, - [SMALL_STATE(6539)] = 265054, - [SMALL_STATE(6540)] = 265085, - [SMALL_STATE(6541)] = 265114, - [SMALL_STATE(6542)] = 265157, - [SMALL_STATE(6543)] = 265180, - [SMALL_STATE(6544)] = 265211, - [SMALL_STATE(6545)] = 265254, - [SMALL_STATE(6546)] = 265297, - [SMALL_STATE(6547)] = 265340, - [SMALL_STATE(6548)] = 265371, - [SMALL_STATE(6549)] = 265402, - [SMALL_STATE(6550)] = 265435, - [SMALL_STATE(6551)] = 265466, - [SMALL_STATE(6552)] = 265497, - [SMALL_STATE(6553)] = 265524, - [SMALL_STATE(6554)] = 265553, - [SMALL_STATE(6555)] = 265584, - [SMALL_STATE(6556)] = 265613, - [SMALL_STATE(6557)] = 265642, - [SMALL_STATE(6558)] = 265671, - [SMALL_STATE(6559)] = 265700, - [SMALL_STATE(6560)] = 265729, - [SMALL_STATE(6561)] = 265762, - [SMALL_STATE(6562)] = 265791, - [SMALL_STATE(6563)] = 265822, - [SMALL_STATE(6564)] = 265865, - [SMALL_STATE(6565)] = 265896, - [SMALL_STATE(6566)] = 265927, - [SMALL_STATE(6567)] = 265958, - [SMALL_STATE(6568)] = 266001, - [SMALL_STATE(6569)] = 266034, - [SMALL_STATE(6570)] = 266067, - [SMALL_STATE(6571)] = 266110, - [SMALL_STATE(6572)] = 266141, - [SMALL_STATE(6573)] = 266172, - [SMALL_STATE(6574)] = 266203, - [SMALL_STATE(6575)] = 266234, - [SMALL_STATE(6576)] = 266265, - [SMALL_STATE(6577)] = 266308, - [SMALL_STATE(6578)] = 266351, - [SMALL_STATE(6579)] = 266394, - [SMALL_STATE(6580)] = 266425, - [SMALL_STATE(6581)] = 266458, - [SMALL_STATE(6582)] = 266487, - [SMALL_STATE(6583)] = 266530, - [SMALL_STATE(6584)] = 266562, - [SMALL_STATE(6585)] = 266594, - [SMALL_STATE(6586)] = 266622, - [SMALL_STATE(6587)] = 266660, - [SMALL_STATE(6588)] = 266680, - [SMALL_STATE(6589)] = 266720, - [SMALL_STATE(6590)] = 266748, - [SMALL_STATE(6591)] = 266776, - [SMALL_STATE(6592)] = 266804, - [SMALL_STATE(6593)] = 266836, - [SMALL_STATE(6594)] = 266864, - [SMALL_STATE(6595)] = 266896, - [SMALL_STATE(6596)] = 266916, - [SMALL_STATE(6597)] = 266946, - [SMALL_STATE(6598)] = 266976, - [SMALL_STATE(6599)] = 267004, - [SMALL_STATE(6600)] = 267034, - [SMALL_STATE(6601)] = 267064, - [SMALL_STATE(6602)] = 267088, - [SMALL_STATE(6603)] = 267128, - [SMALL_STATE(6604)] = 267160, - [SMALL_STATE(6605)] = 267188, - [SMALL_STATE(6606)] = 267216, - [SMALL_STATE(6607)] = 267244, - [SMALL_STATE(6608)] = 267274, - [SMALL_STATE(6609)] = 267304, - [SMALL_STATE(6610)] = 267330, - [SMALL_STATE(6611)] = 267360, - [SMALL_STATE(6612)] = 267400, - [SMALL_STATE(6613)] = 267440, - [SMALL_STATE(6614)] = 267460, - [SMALL_STATE(6615)] = 267488, - [SMALL_STATE(6616)] = 267528, - [SMALL_STATE(6617)] = 267548, - [SMALL_STATE(6618)] = 267576, - [SMALL_STATE(6619)] = 267608, - [SMALL_STATE(6620)] = 267640, - [SMALL_STATE(6621)] = 267668, - [SMALL_STATE(6622)] = 267700, - [SMALL_STATE(6623)] = 267732, - [SMALL_STATE(6624)] = 267762, - [SMALL_STATE(6625)] = 267782, - [SMALL_STATE(6626)] = 267802, - [SMALL_STATE(6627)] = 267834, - [SMALL_STATE(6628)] = 267866, - [SMALL_STATE(6629)] = 267886, - [SMALL_STATE(6630)] = 267926, - [SMALL_STATE(6631)] = 267946, - [SMALL_STATE(6632)] = 267978, - [SMALL_STATE(6633)] = 267998, - [SMALL_STATE(6634)] = 268024, - [SMALL_STATE(6635)] = 268056, - [SMALL_STATE(6636)] = 268084, - [SMALL_STATE(6637)] = 268114, - [SMALL_STATE(6638)] = 268144, - [SMALL_STATE(6639)] = 268184, - [SMALL_STATE(6640)] = 268214, - [SMALL_STATE(6641)] = 268254, - [SMALL_STATE(6642)] = 268286, - [SMALL_STATE(6643)] = 268306, - [SMALL_STATE(6644)] = 268328, - [SMALL_STATE(6645)] = 268360, - [SMALL_STATE(6646)] = 268380, - [SMALL_STATE(6647)] = 268410, - [SMALL_STATE(6648)] = 268450, - [SMALL_STATE(6649)] = 268478, - [SMALL_STATE(6650)] = 268506, - [SMALL_STATE(6651)] = 268536, - [SMALL_STATE(6652)] = 268576, - [SMALL_STATE(6653)] = 268604, - [SMALL_STATE(6654)] = 268630, - [SMALL_STATE(6655)] = 268662, - [SMALL_STATE(6656)] = 268702, - [SMALL_STATE(6657)] = 268732, - [SMALL_STATE(6658)] = 268772, - [SMALL_STATE(6659)] = 268802, - [SMALL_STATE(6660)] = 268842, - [SMALL_STATE(6661)] = 268866, - [SMALL_STATE(6662)] = 268898, - [SMALL_STATE(6663)] = 268926, - [SMALL_STATE(6664)] = 268956, - [SMALL_STATE(6665)] = 268996, - [SMALL_STATE(6666)] = 269024, - [SMALL_STATE(6667)] = 269064, - [SMALL_STATE(6668)] = 269084, - [SMALL_STATE(6669)] = 269104, - [SMALL_STATE(6670)] = 269134, - [SMALL_STATE(6671)] = 269164, - [SMALL_STATE(6672)] = 269204, - [SMALL_STATE(6673)] = 269236, - [SMALL_STATE(6674)] = 269266, - [SMALL_STATE(6675)] = 269296, - [SMALL_STATE(6676)] = 269316, - [SMALL_STATE(6677)] = 269340, - [SMALL_STATE(6678)] = 269368, - [SMALL_STATE(6679)] = 269388, - [SMALL_STATE(6680)] = 269416, - [SMALL_STATE(6681)] = 269446, - [SMALL_STATE(6682)] = 269474, - [SMALL_STATE(6683)] = 269514, - [SMALL_STATE(6684)] = 269546, - [SMALL_STATE(6685)] = 269576, - [SMALL_STATE(6686)] = 269604, - [SMALL_STATE(6687)] = 269624, - [SMALL_STATE(6688)] = 269644, - [SMALL_STATE(6689)] = 269684, - [SMALL_STATE(6690)] = 269712, - [SMALL_STATE(6691)] = 269752, - [SMALL_STATE(6692)] = 269792, - [SMALL_STATE(6693)] = 269824, - [SMALL_STATE(6694)] = 269852, - [SMALL_STATE(6695)] = 269884, - [SMALL_STATE(6696)] = 269912, - [SMALL_STATE(6697)] = 269942, - [SMALL_STATE(6698)] = 269962, - [SMALL_STATE(6699)] = 269990, - [SMALL_STATE(6700)] = 270010, - [SMALL_STATE(6701)] = 270040, - [SMALL_STATE(6702)] = 270070, - [SMALL_STATE(6703)] = 270100, - [SMALL_STATE(6704)] = 270132, - [SMALL_STATE(6705)] = 270162, - [SMALL_STATE(6706)] = 270194, - [SMALL_STATE(6707)] = 270234, - [SMALL_STATE(6708)] = 270274, - [SMALL_STATE(6709)] = 270294, - [SMALL_STATE(6710)] = 270324, - [SMALL_STATE(6711)] = 270361, - [SMALL_STATE(6712)] = 270394, - [SMALL_STATE(6713)] = 270431, - [SMALL_STATE(6714)] = 270456, - [SMALL_STATE(6715)] = 270493, - [SMALL_STATE(6716)] = 270530, - [SMALL_STATE(6717)] = 270567, - [SMALL_STATE(6718)] = 270604, - [SMALL_STATE(6719)] = 270625, - [SMALL_STATE(6720)] = 270650, - [SMALL_STATE(6721)] = 270671, - [SMALL_STATE(6722)] = 270692, - [SMALL_STATE(6723)] = 270729, - [SMALL_STATE(6724)] = 270756, - [SMALL_STATE(6725)] = 270781, - [SMALL_STATE(6726)] = 270802, - [SMALL_STATE(6727)] = 270827, - [SMALL_STATE(6728)] = 270854, - [SMALL_STATE(6729)] = 270875, - [SMALL_STATE(6730)] = 270896, - [SMALL_STATE(6731)] = 270917, - [SMALL_STATE(6732)] = 270954, - [SMALL_STATE(6733)] = 270989, - [SMALL_STATE(6734)] = 271010, - [SMALL_STATE(6735)] = 271047, - [SMALL_STATE(6736)] = 271074, - [SMALL_STATE(6737)] = 271101, - [SMALL_STATE(6738)] = 271130, - [SMALL_STATE(6739)] = 271157, - [SMALL_STATE(6740)] = 271194, - [SMALL_STATE(6741)] = 271219, - [SMALL_STATE(6742)] = 271240, - [SMALL_STATE(6743)] = 271267, - [SMALL_STATE(6744)] = 271294, - [SMALL_STATE(6745)] = 271323, - [SMALL_STATE(6746)] = 271352, - [SMALL_STATE(6747)] = 271381, - [SMALL_STATE(6748)] = 271408, - [SMALL_STATE(6749)] = 271435, - [SMALL_STATE(6750)] = 271462, - [SMALL_STATE(6751)] = 271483, - [SMALL_STATE(6752)] = 271504, - [SMALL_STATE(6753)] = 271529, - [SMALL_STATE(6754)] = 271550, - [SMALL_STATE(6755)] = 271577, - [SMALL_STATE(6756)] = 271604, - [SMALL_STATE(6757)] = 271625, - [SMALL_STATE(6758)] = 271662, - [SMALL_STATE(6759)] = 271683, - [SMALL_STATE(6760)] = 271704, - [SMALL_STATE(6761)] = 271725, - [SMALL_STATE(6762)] = 271750, - [SMALL_STATE(6763)] = 271771, - [SMALL_STATE(6764)] = 271808, - [SMALL_STATE(6765)] = 271845, - [SMALL_STATE(6766)] = 271866, - [SMALL_STATE(6767)] = 271887, - [SMALL_STATE(6768)] = 271914, - [SMALL_STATE(6769)] = 271953, - [SMALL_STATE(6770)] = 271980, - [SMALL_STATE(6771)] = 272005, - [SMALL_STATE(6772)] = 272042, - [SMALL_STATE(6773)] = 272063, - [SMALL_STATE(6774)] = 272100, - [SMALL_STATE(6775)] = 272121, - [SMALL_STATE(6776)] = 272142, - [SMALL_STATE(6777)] = 272163, - [SMALL_STATE(6778)] = 272184, - [SMALL_STATE(6779)] = 272205, - [SMALL_STATE(6780)] = 272238, - [SMALL_STATE(6781)] = 272259, - [SMALL_STATE(6782)] = 272296, - [SMALL_STATE(6783)] = 272333, - [SMALL_STATE(6784)] = 272354, - [SMALL_STATE(6785)] = 272391, - [SMALL_STATE(6786)] = 272424, - [SMALL_STATE(6787)] = 272461, - [SMALL_STATE(6788)] = 272482, - [SMALL_STATE(6789)] = 272503, - [SMALL_STATE(6790)] = 272536, - [SMALL_STATE(6791)] = 272557, - [SMALL_STATE(6792)] = 272590, - [SMALL_STATE(6793)] = 272623, - [SMALL_STATE(6794)] = 272656, - [SMALL_STATE(6795)] = 272693, - [SMALL_STATE(6796)] = 272726, - [SMALL_STATE(6797)] = 272751, - [SMALL_STATE(6798)] = 272772, - [SMALL_STATE(6799)] = 272808, - [SMALL_STATE(6800)] = 272844, - [SMALL_STATE(6801)] = 272878, - [SMALL_STATE(6802)] = 272904, - [SMALL_STATE(6803)] = 272930, - [SMALL_STATE(6804)] = 272958, - [SMALL_STATE(6805)] = 272994, - [SMALL_STATE(6806)] = 273024, - [SMALL_STATE(6807)] = 273060, - [SMALL_STATE(6808)] = 273090, - [SMALL_STATE(6809)] = 273126, - [SMALL_STATE(6810)] = 273156, - [SMALL_STATE(6811)] = 273186, - [SMALL_STATE(6812)] = 273214, - [SMALL_STATE(6813)] = 273250, - [SMALL_STATE(6814)] = 273286, - [SMALL_STATE(6815)] = 273310, - [SMALL_STATE(6816)] = 273340, - [SMALL_STATE(6817)] = 273370, - [SMALL_STATE(6818)] = 273406, - [SMALL_STATE(6819)] = 273442, - [SMALL_STATE(6820)] = 273478, - [SMALL_STATE(6821)] = 273512, - [SMALL_STATE(6822)] = 273542, - [SMALL_STATE(6823)] = 273576, - [SMALL_STATE(6824)] = 273598, - [SMALL_STATE(6825)] = 273634, - [SMALL_STATE(6826)] = 273668, - [SMALL_STATE(6827)] = 273704, - [SMALL_STATE(6828)] = 273740, - [SMALL_STATE(6829)] = 273776, - [SMALL_STATE(6830)] = 273812, - [SMALL_STATE(6831)] = 273848, - [SMALL_STATE(6832)] = 273874, - [SMALL_STATE(6833)] = 273900, - [SMALL_STATE(6834)] = 273936, - [SMALL_STATE(6835)] = 273966, - [SMALL_STATE(6836)] = 274000, - [SMALL_STATE(6837)] = 274020, - [SMALL_STATE(6838)] = 274048, - [SMALL_STATE(6839)] = 274084, - [SMALL_STATE(6840)] = 274120, - [SMALL_STATE(6841)] = 274150, - [SMALL_STATE(6842)] = 274184, - [SMALL_STATE(6843)] = 274210, - [SMALL_STATE(6844)] = 274244, - [SMALL_STATE(6845)] = 274274, - [SMALL_STATE(6846)] = 274300, - [SMALL_STATE(6847)] = 274334, - [SMALL_STATE(6848)] = 274360, - [SMALL_STATE(6849)] = 274386, - [SMALL_STATE(6850)] = 274422, - [SMALL_STATE(6851)] = 274444, - [SMALL_STATE(6852)] = 274470, - [SMALL_STATE(6853)] = 274494, - [SMALL_STATE(6854)] = 274520, - [SMALL_STATE(6855)] = 274550, - [SMALL_STATE(6856)] = 274576, - [SMALL_STATE(6857)] = 274602, - [SMALL_STATE(6858)] = 274628, - [SMALL_STATE(6859)] = 274664, - [SMALL_STATE(6860)] = 274688, - [SMALL_STATE(6861)] = 274716, - [SMALL_STATE(6862)] = 274742, - [SMALL_STATE(6863)] = 274778, - [SMALL_STATE(6864)] = 274812, - [SMALL_STATE(6865)] = 274838, - [SMALL_STATE(6866)] = 274874, - [SMALL_STATE(6867)] = 274898, - [SMALL_STATE(6868)] = 274928, - [SMALL_STATE(6869)] = 274954, - [SMALL_STATE(6870)] = 274980, - [SMALL_STATE(6871)] = 275016, - [SMALL_STATE(6872)] = 275052, - [SMALL_STATE(6873)] = 275076, - [SMALL_STATE(6874)] = 275110, - [SMALL_STATE(6875)] = 275140, - [SMALL_STATE(6876)] = 275169, - [SMALL_STATE(6877)] = 275198, - [SMALL_STATE(6878)] = 275217, - [SMALL_STATE(6879)] = 275246, - [SMALL_STATE(6880)] = 275275, - [SMALL_STATE(6881)] = 275310, - [SMALL_STATE(6882)] = 275337, - [SMALL_STATE(6883)] = 275356, - [SMALL_STATE(6884)] = 275385, - [SMALL_STATE(6885)] = 275414, - [SMALL_STATE(6886)] = 275443, - [SMALL_STATE(6887)] = 275462, - [SMALL_STATE(6888)] = 275481, - [SMALL_STATE(6889)] = 275502, - [SMALL_STATE(6890)] = 275521, - [SMALL_STATE(6891)] = 275546, - [SMALL_STATE(6892)] = 275577, - [SMALL_STATE(6893)] = 275604, - [SMALL_STATE(6894)] = 275635, - [SMALL_STATE(6895)] = 275670, - [SMALL_STATE(6896)] = 275699, - [SMALL_STATE(6897)] = 275724, - [SMALL_STATE(6898)] = 275749, - [SMALL_STATE(6899)] = 275776, - [SMALL_STATE(6900)] = 275811, - [SMALL_STATE(6901)] = 275830, - [SMALL_STATE(6902)] = 275855, - [SMALL_STATE(6903)] = 275882, - [SMALL_STATE(6904)] = 275911, - [SMALL_STATE(6905)] = 275938, - [SMALL_STATE(6906)] = 275973, - [SMALL_STATE(6907)] = 276002, - [SMALL_STATE(6908)] = 276033, - [SMALL_STATE(6909)] = 276060, - [SMALL_STATE(6910)] = 276091, - [SMALL_STATE(6911)] = 276120, - [SMALL_STATE(6912)] = 276149, - [SMALL_STATE(6913)] = 276178, - [SMALL_STATE(6914)] = 276201, - [SMALL_STATE(6915)] = 276234, - [SMALL_STATE(6916)] = 276261, - [SMALL_STATE(6917)] = 276288, - [SMALL_STATE(6918)] = 276313, - [SMALL_STATE(6919)] = 276342, - [SMALL_STATE(6920)] = 276367, - [SMALL_STATE(6921)] = 276392, - [SMALL_STATE(6922)] = 276421, - [SMALL_STATE(6923)] = 276450, - [SMALL_STATE(6924)] = 276479, - [SMALL_STATE(6925)] = 276514, - [SMALL_STATE(6926)] = 276543, - [SMALL_STATE(6927)] = 276572, - [SMALL_STATE(6928)] = 276603, - [SMALL_STATE(6929)] = 276638, - [SMALL_STATE(6930)] = 276671, - [SMALL_STATE(6931)] = 276706, - [SMALL_STATE(6932)] = 276733, - [SMALL_STATE(6933)] = 276768, - [SMALL_STATE(6934)] = 276797, - [SMALL_STATE(6935)] = 276828, - [SMALL_STATE(6936)] = 276859, - [SMALL_STATE(6937)] = 276888, - [SMALL_STATE(6938)] = 276919, - [SMALL_STATE(6939)] = 276938, - [SMALL_STATE(6940)] = 276967, - [SMALL_STATE(6941)] = 276996, - [SMALL_STATE(6942)] = 277027, - [SMALL_STATE(6943)] = 277052, - [SMALL_STATE(6944)] = 277071, - [SMALL_STATE(6945)] = 277100, - [SMALL_STATE(6946)] = 277131, - [SMALL_STATE(6947)] = 277154, - [SMALL_STATE(6948)] = 277183, - [SMALL_STATE(6949)] = 277210, - [SMALL_STATE(6950)] = 277239, - [SMALL_STATE(6951)] = 277268, - [SMALL_STATE(6952)] = 277297, - [SMALL_STATE(6953)] = 277316, - [SMALL_STATE(6954)] = 277345, - [SMALL_STATE(6955)] = 277380, - [SMALL_STATE(6956)] = 277405, - [SMALL_STATE(6957)] = 277430, - [SMALL_STATE(6958)] = 277461, - [SMALL_STATE(6959)] = 277490, - [SMALL_STATE(6960)] = 277508, - [SMALL_STATE(6961)] = 277530, - [SMALL_STATE(6962)] = 277554, - [SMALL_STATE(6963)] = 277576, - [SMALL_STATE(6964)] = 277598, - [SMALL_STATE(6965)] = 277616, - [SMALL_STATE(6966)] = 277648, - [SMALL_STATE(6967)] = 277670, - [SMALL_STATE(6968)] = 277700, - [SMALL_STATE(6969)] = 277724, - [SMALL_STATE(6970)] = 277746, - [SMALL_STATE(6971)] = 277776, - [SMALL_STATE(6972)] = 277800, - [SMALL_STATE(6973)] = 277818, - [SMALL_STATE(6974)] = 277842, - [SMALL_STATE(6975)] = 277872, - [SMALL_STATE(6976)] = 277894, - [SMALL_STATE(6977)] = 277916, - [SMALL_STATE(6978)] = 277940, - [SMALL_STATE(6979)] = 277964, - [SMALL_STATE(6980)] = 277986, - [SMALL_STATE(6981)] = 278016, - [SMALL_STATE(6982)] = 278040, - [SMALL_STATE(6983)] = 278064, - [SMALL_STATE(6984)] = 278086, - [SMALL_STATE(6985)] = 278108, - [SMALL_STATE(6986)] = 278138, - [SMALL_STATE(6987)] = 278156, - [SMALL_STATE(6988)] = 278178, - [SMALL_STATE(6989)] = 278200, - [SMALL_STATE(6990)] = 278218, - [SMALL_STATE(6991)] = 278236, - [SMALL_STATE(6992)] = 278260, - [SMALL_STATE(6993)] = 278282, - [SMALL_STATE(6994)] = 278300, - [SMALL_STATE(6995)] = 278322, - [SMALL_STATE(6996)] = 278352, - [SMALL_STATE(6997)] = 278382, - [SMALL_STATE(6998)] = 278404, - [SMALL_STATE(6999)] = 278434, - [SMALL_STATE(7000)] = 278459, - [SMALL_STATE(7001)] = 278486, - [SMALL_STATE(7002)] = 278509, - [SMALL_STATE(7003)] = 278540, - [SMALL_STATE(7004)] = 278563, - [SMALL_STATE(7005)] = 278590, - [SMALL_STATE(7006)] = 278621, - [SMALL_STATE(7007)] = 278652, - [SMALL_STATE(7008)] = 278675, - [SMALL_STATE(7009)] = 278696, - [SMALL_STATE(7010)] = 278719, - [SMALL_STATE(7011)] = 278744, - [SMALL_STATE(7012)] = 278771, - [SMALL_STATE(7013)] = 278798, - [SMALL_STATE(7014)] = 278825, - [SMALL_STATE(7015)] = 278856, - [SMALL_STATE(7016)] = 278875, - [SMALL_STATE(7017)] = 278896, - [SMALL_STATE(7018)] = 278923, - [SMALL_STATE(7019)] = 278954, - [SMALL_STATE(7020)] = 278975, - [SMALL_STATE(7021)] = 278998, - [SMALL_STATE(7022)] = 279029, - [SMALL_STATE(7023)] = 279060, - [SMALL_STATE(7024)] = 279091, - [SMALL_STATE(7025)] = 279122, - [SMALL_STATE(7026)] = 279153, - [SMALL_STATE(7027)] = 279174, - [SMALL_STATE(7028)] = 279205, - [SMALL_STATE(7029)] = 279236, - [SMALL_STATE(7030)] = 279267, - [SMALL_STATE(7031)] = 279298, - [SMALL_STATE(7032)] = 279329, - [SMALL_STATE(7033)] = 279360, - [SMALL_STATE(7034)] = 279387, - [SMALL_STATE(7035)] = 279418, - [SMALL_STATE(7036)] = 279445, - [SMALL_STATE(7037)] = 279476, - [SMALL_STATE(7038)] = 279499, - [SMALL_STATE(7039)] = 279526, - [SMALL_STATE(7040)] = 279545, - [SMALL_STATE(7041)] = 279576, - [SMALL_STATE(7042)] = 279607, - [SMALL_STATE(7043)] = 279630, - [SMALL_STATE(7044)] = 279661, - [SMALL_STATE(7045)] = 279688, - [SMALL_STATE(7046)] = 279719, - [SMALL_STATE(7047)] = 279750, - [SMALL_STATE(7048)] = 279773, - [SMALL_STATE(7049)] = 279794, - [SMALL_STATE(7050)] = 279817, - [SMALL_STATE(7051)] = 279838, - [SMALL_STATE(7052)] = 279864, - [SMALL_STATE(7053)] = 279890, - [SMALL_STATE(7054)] = 279916, - [SMALL_STATE(7055)] = 279942, - [SMALL_STATE(7056)] = 279966, - [SMALL_STATE(7057)] = 279992, - [SMALL_STATE(7058)] = 280008, - [SMALL_STATE(7059)] = 280034, - [SMALL_STATE(7060)] = 280054, - [SMALL_STATE(7061)] = 280072, - [SMALL_STATE(7062)] = 280098, - [SMALL_STATE(7063)] = 280124, - [SMALL_STATE(7064)] = 280150, - [SMALL_STATE(7065)] = 280170, - [SMALL_STATE(7066)] = 280194, - [SMALL_STATE(7067)] = 280220, - [SMALL_STATE(7068)] = 280246, - [SMALL_STATE(7069)] = 280272, - [SMALL_STATE(7070)] = 280294, - [SMALL_STATE(7071)] = 280312, - [SMALL_STATE(7072)] = 280338, - [SMALL_STATE(7073)] = 280360, - [SMALL_STATE(7074)] = 280382, - [SMALL_STATE(7075)] = 280408, - [SMALL_STATE(7076)] = 280434, - [SMALL_STATE(7077)] = 280456, - [SMALL_STATE(7078)] = 280478, - [SMALL_STATE(7079)] = 280504, - [SMALL_STATE(7080)] = 280530, - [SMALL_STATE(7081)] = 280552, - [SMALL_STATE(7082)] = 280576, - [SMALL_STATE(7083)] = 280602, - [SMALL_STATE(7084)] = 280628, - [SMALL_STATE(7085)] = 280654, - [SMALL_STATE(7086)] = 280670, - [SMALL_STATE(7087)] = 280690, - [SMALL_STATE(7088)] = 280716, - [SMALL_STATE(7089)] = 280742, - [SMALL_STATE(7090)] = 280768, - [SMALL_STATE(7091)] = 280792, - [SMALL_STATE(7092)] = 280818, - [SMALL_STATE(7093)] = 280844, - [SMALL_STATE(7094)] = 280864, - [SMALL_STATE(7095)] = 280890, - [SMALL_STATE(7096)] = 280916, - [SMALL_STATE(7097)] = 280942, - [SMALL_STATE(7098)] = 280966, - [SMALL_STATE(7099)] = 280990, - [SMALL_STATE(7100)] = 281014, - [SMALL_STATE(7101)] = 281040, - [SMALL_STATE(7102)] = 281064, - [SMALL_STATE(7103)] = 281090, - [SMALL_STATE(7104)] = 281116, - [SMALL_STATE(7105)] = 281138, - [SMALL_STATE(7106)] = 281164, - [SMALL_STATE(7107)] = 281190, - [SMALL_STATE(7108)] = 281212, - [SMALL_STATE(7109)] = 281238, - [SMALL_STATE(7110)] = 281264, - [SMALL_STATE(7111)] = 281290, - [SMALL_STATE(7112)] = 281312, - [SMALL_STATE(7113)] = 281334, - [SMALL_STATE(7114)] = 281356, - [SMALL_STATE(7115)] = 281381, - [SMALL_STATE(7116)] = 281402, - [SMALL_STATE(7117)] = 281425, - [SMALL_STATE(7118)] = 281446, - [SMALL_STATE(7119)] = 281469, - [SMALL_STATE(7120)] = 281488, - [SMALL_STATE(7121)] = 281511, - [SMALL_STATE(7122)] = 281530, - [SMALL_STATE(7123)] = 281551, - [SMALL_STATE(7124)] = 281574, - [SMALL_STATE(7125)] = 281595, - [SMALL_STATE(7126)] = 281610, - [SMALL_STATE(7127)] = 281635, - [SMALL_STATE(7128)] = 281650, - [SMALL_STATE(7129)] = 281671, - [SMALL_STATE(7130)] = 281692, - [SMALL_STATE(7131)] = 281713, - [SMALL_STATE(7132)] = 281738, - [SMALL_STATE(7133)] = 281759, - [SMALL_STATE(7134)] = 281784, - [SMALL_STATE(7135)] = 281807, - [SMALL_STATE(7136)] = 281828, - [SMALL_STATE(7137)] = 281853, - [SMALL_STATE(7138)] = 281874, - [SMALL_STATE(7139)] = 281897, - [SMALL_STATE(7140)] = 281918, - [SMALL_STATE(7141)] = 281943, - [SMALL_STATE(7142)] = 281968, - [SMALL_STATE(7143)] = 281983, - [SMALL_STATE(7144)] = 282006, - [SMALL_STATE(7145)] = 282025, - [SMALL_STATE(7146)] = 282040, - [SMALL_STATE(7147)] = 282061, - [SMALL_STATE(7148)] = 282086, - [SMALL_STATE(7149)] = 282107, - [SMALL_STATE(7150)] = 282122, - [SMALL_STATE(7151)] = 282145, - [SMALL_STATE(7152)] = 282162, - [SMALL_STATE(7153)] = 282187, - [SMALL_STATE(7154)] = 282210, - [SMALL_STATE(7155)] = 282225, - [SMALL_STATE(7156)] = 282246, - [SMALL_STATE(7157)] = 282261, - [SMALL_STATE(7158)] = 282286, - [SMALL_STATE(7159)] = 282301, - [SMALL_STATE(7160)] = 282324, - [SMALL_STATE(7161)] = 282347, - [SMALL_STATE(7162)] = 282365, - [SMALL_STATE(7163)] = 282379, - [SMALL_STATE(7164)] = 282399, - [SMALL_STATE(7165)] = 282417, - [SMALL_STATE(7166)] = 282431, - [SMALL_STATE(7167)] = 282447, - [SMALL_STATE(7168)] = 282465, - [SMALL_STATE(7169)] = 282481, - [SMALL_STATE(7170)] = 282499, - [SMALL_STATE(7171)] = 282513, - [SMALL_STATE(7172)] = 282529, - [SMALL_STATE(7173)] = 282549, - [SMALL_STATE(7174)] = 282569, - [SMALL_STATE(7175)] = 282585, - [SMALL_STATE(7176)] = 282601, - [SMALL_STATE(7177)] = 282621, - [SMALL_STATE(7178)] = 282639, - [SMALL_STATE(7179)] = 282659, - [SMALL_STATE(7180)] = 282677, - [SMALL_STATE(7181)] = 282697, - [SMALL_STATE(7182)] = 282713, - [SMALL_STATE(7183)] = 282733, - [SMALL_STATE(7184)] = 282753, - [SMALL_STATE(7185)] = 282769, - [SMALL_STATE(7186)] = 282789, - [SMALL_STATE(7187)] = 282805, - [SMALL_STATE(7188)] = 282821, - [SMALL_STATE(7189)] = 282841, - [SMALL_STATE(7190)] = 282861, - [SMALL_STATE(7191)] = 282881, - [SMALL_STATE(7192)] = 282897, - [SMALL_STATE(7193)] = 282913, - [SMALL_STATE(7194)] = 282929, - [SMALL_STATE(7195)] = 282947, - [SMALL_STATE(7196)] = 282967, - [SMALL_STATE(7197)] = 282983, - [SMALL_STATE(7198)] = 282999, - [SMALL_STATE(7199)] = 283017, - [SMALL_STATE(7200)] = 283035, - [SMALL_STATE(7201)] = 283055, - [SMALL_STATE(7202)] = 283071, - [SMALL_STATE(7203)] = 283085, - [SMALL_STATE(7204)] = 283105, - [SMALL_STATE(7205)] = 283125, - [SMALL_STATE(7206)] = 283141, - [SMALL_STATE(7207)] = 283157, - [SMALL_STATE(7208)] = 283177, - [SMALL_STATE(7209)] = 283193, - [SMALL_STATE(7210)] = 283209, - [SMALL_STATE(7211)] = 283229, - [SMALL_STATE(7212)] = 283249, - [SMALL_STATE(7213)] = 283269, - [SMALL_STATE(7214)] = 283283, - [SMALL_STATE(7215)] = 283299, - [SMALL_STATE(7216)] = 283312, - [SMALL_STATE(7217)] = 283331, - [SMALL_STATE(7218)] = 283350, - [SMALL_STATE(7219)] = 283367, - [SMALL_STATE(7220)] = 283386, - [SMALL_STATE(7221)] = 283399, - [SMALL_STATE(7222)] = 283418, - [SMALL_STATE(7223)] = 283437, - [SMALL_STATE(7224)] = 283456, - [SMALL_STATE(7225)] = 283469, - [SMALL_STATE(7226)] = 283482, - [SMALL_STATE(7227)] = 283495, - [SMALL_STATE(7228)] = 283514, - [SMALL_STATE(7229)] = 283533, - [SMALL_STATE(7230)] = 283552, - [SMALL_STATE(7231)] = 283571, - [SMALL_STATE(7232)] = 283590, - [SMALL_STATE(7233)] = 283609, - [SMALL_STATE(7234)] = 283622, - [SMALL_STATE(7235)] = 283641, - [SMALL_STATE(7236)] = 283660, - [SMALL_STATE(7237)] = 283679, - [SMALL_STATE(7238)] = 283696, - [SMALL_STATE(7239)] = 283713, - [SMALL_STATE(7240)] = 283732, - [SMALL_STATE(7241)] = 283751, - [SMALL_STATE(7242)] = 283770, - [SMALL_STATE(7243)] = 283789, - [SMALL_STATE(7244)] = 283808, - [SMALL_STATE(7245)] = 283827, - [SMALL_STATE(7246)] = 283846, - [SMALL_STATE(7247)] = 283865, - [SMALL_STATE(7248)] = 283884, - [SMALL_STATE(7249)] = 283903, - [SMALL_STATE(7250)] = 283922, - [SMALL_STATE(7251)] = 283939, - [SMALL_STATE(7252)] = 283956, - [SMALL_STATE(7253)] = 283975, - [SMALL_STATE(7254)] = 283988, - [SMALL_STATE(7255)] = 284007, - [SMALL_STATE(7256)] = 284026, - [SMALL_STATE(7257)] = 284039, - [SMALL_STATE(7258)] = 284058, - [SMALL_STATE(7259)] = 284077, - [SMALL_STATE(7260)] = 284096, - [SMALL_STATE(7261)] = 284115, - [SMALL_STATE(7262)] = 284128, - [SMALL_STATE(7263)] = 284147, - [SMALL_STATE(7264)] = 284166, - [SMALL_STATE(7265)] = 284185, - [SMALL_STATE(7266)] = 284198, - [SMALL_STATE(7267)] = 284217, - [SMALL_STATE(7268)] = 284236, - [SMALL_STATE(7269)] = 284249, - [SMALL_STATE(7270)] = 284268, - [SMALL_STATE(7271)] = 284287, - [SMALL_STATE(7272)] = 284300, - [SMALL_STATE(7273)] = 284319, - [SMALL_STATE(7274)] = 284338, - [SMALL_STATE(7275)] = 284351, - [SMALL_STATE(7276)] = 284370, - [SMALL_STATE(7277)] = 284389, - [SMALL_STATE(7278)] = 284402, - [SMALL_STATE(7279)] = 284421, - [SMALL_STATE(7280)] = 284438, - [SMALL_STATE(7281)] = 284451, - [SMALL_STATE(7282)] = 284470, - [SMALL_STATE(7283)] = 284489, - [SMALL_STATE(7284)] = 284508, - [SMALL_STATE(7285)] = 284521, - [SMALL_STATE(7286)] = 284534, - [SMALL_STATE(7287)] = 284553, - [SMALL_STATE(7288)] = 284572, - [SMALL_STATE(7289)] = 284589, - [SMALL_STATE(7290)] = 284608, - [SMALL_STATE(7291)] = 284627, - [SMALL_STATE(7292)] = 284641, - [SMALL_STATE(7293)] = 284657, - [SMALL_STATE(7294)] = 284671, - [SMALL_STATE(7295)] = 284687, - [SMALL_STATE(7296)] = 284697, - [SMALL_STATE(7297)] = 284711, - [SMALL_STATE(7298)] = 284721, - [SMALL_STATE(7299)] = 284735, - [SMALL_STATE(7300)] = 284751, - [SMALL_STATE(7301)] = 284765, - [SMALL_STATE(7302)] = 284781, - [SMALL_STATE(7303)] = 284797, - [SMALL_STATE(7304)] = 284813, - [SMALL_STATE(7305)] = 284829, - [SMALL_STATE(7306)] = 284843, - [SMALL_STATE(7307)] = 284859, - [SMALL_STATE(7308)] = 284875, - [SMALL_STATE(7309)] = 284889, - [SMALL_STATE(7310)] = 284905, - [SMALL_STATE(7311)] = 284921, - [SMALL_STATE(7312)] = 284937, - [SMALL_STATE(7313)] = 284951, - [SMALL_STATE(7314)] = 284965, - [SMALL_STATE(7315)] = 284981, - [SMALL_STATE(7316)] = 284995, - [SMALL_STATE(7317)] = 285009, - [SMALL_STATE(7318)] = 285025, - [SMALL_STATE(7319)] = 285041, - [SMALL_STATE(7320)] = 285055, - [SMALL_STATE(7321)] = 285071, - [SMALL_STATE(7322)] = 285085, - [SMALL_STATE(7323)] = 285099, - [SMALL_STATE(7324)] = 285115, - [SMALL_STATE(7325)] = 285131, - [SMALL_STATE(7326)] = 285145, - [SMALL_STATE(7327)] = 285159, - [SMALL_STATE(7328)] = 285169, + [SMALL_STATE(2500)] = 0, + [SMALL_STATE(2501)] = 71, + [SMALL_STATE(2502)] = 142, + [SMALL_STATE(2503)] = 213, + [SMALL_STATE(2504)] = 288, + [SMALL_STATE(2505)] = 367, + [SMALL_STATE(2506)] = 438, + [SMALL_STATE(2507)] = 509, + [SMALL_STATE(2508)] = 580, + [SMALL_STATE(2509)] = 651, + [SMALL_STATE(2510)] = 722, + [SMALL_STATE(2511)] = 793, + [SMALL_STATE(2512)] = 864, + [SMALL_STATE(2513)] = 935, + [SMALL_STATE(2514)] = 1012, + [SMALL_STATE(2515)] = 1083, + [SMALL_STATE(2516)] = 1154, + [SMALL_STATE(2517)] = 1233, + [SMALL_STATE(2518)] = 1308, + [SMALL_STATE(2519)] = 1387, + [SMALL_STATE(2520)] = 1458, + [SMALL_STATE(2521)] = 1529, + [SMALL_STATE(2522)] = 1600, + [SMALL_STATE(2523)] = 1687, + [SMALL_STATE(2524)] = 1762, + [SMALL_STATE(2525)] = 1833, + [SMALL_STATE(2526)] = 1908, + [SMALL_STATE(2527)] = 1987, + [SMALL_STATE(2528)] = 2058, + [SMALL_STATE(2529)] = 2129, + [SMALL_STATE(2530)] = 2204, + [SMALL_STATE(2531)] = 2279, + [SMALL_STATE(2532)] = 2354, + [SMALL_STATE(2533)] = 2425, + [SMALL_STATE(2534)] = 2504, + [SMALL_STATE(2535)] = 2575, + [SMALL_STATE(2536)] = 2646, + [SMALL_STATE(2537)] = 2717, + [SMALL_STATE(2538)] = 2788, + [SMALL_STATE(2539)] = 2863, + [SMALL_STATE(2540)] = 2934, + [SMALL_STATE(2541)] = 3005, + [SMALL_STATE(2542)] = 3076, + [SMALL_STATE(2543)] = 3147, + [SMALL_STATE(2544)] = 3218, + [SMALL_STATE(2545)] = 3289, + [SMALL_STATE(2546)] = 3360, + [SMALL_STATE(2547)] = 3433, + [SMALL_STATE(2548)] = 3504, + [SMALL_STATE(2549)] = 3575, + [SMALL_STATE(2550)] = 3646, + [SMALL_STATE(2551)] = 3717, + [SMALL_STATE(2552)] = 3788, + [SMALL_STATE(2553)] = 3869, + [SMALL_STATE(2554)] = 3940, + [SMALL_STATE(2555)] = 4011, + [SMALL_STATE(2556)] = 4082, + [SMALL_STATE(2557)] = 4153, + [SMALL_STATE(2558)] = 4224, + [SMALL_STATE(2559)] = 4295, + [SMALL_STATE(2560)] = 4366, + [SMALL_STATE(2561)] = 4437, + [SMALL_STATE(2562)] = 4508, + [SMALL_STATE(2563)] = 4583, + [SMALL_STATE(2564)] = 4654, + [SMALL_STATE(2565)] = 4725, + [SMALL_STATE(2566)] = 4796, + [SMALL_STATE(2567)] = 4867, + [SMALL_STATE(2568)] = 4938, + [SMALL_STATE(2569)] = 5009, + [SMALL_STATE(2570)] = 5080, + [SMALL_STATE(2571)] = 5151, + [SMALL_STATE(2572)] = 5222, + [SMALL_STATE(2573)] = 5293, + [SMALL_STATE(2574)] = 5364, + [SMALL_STATE(2575)] = 5435, + [SMALL_STATE(2576)] = 5506, + [SMALL_STATE(2577)] = 5577, + [SMALL_STATE(2578)] = 5648, + [SMALL_STATE(2579)] = 5719, + [SMALL_STATE(2580)] = 5790, + [SMALL_STATE(2581)] = 5861, + [SMALL_STATE(2582)] = 5932, + [SMALL_STATE(2583)] = 6003, + [SMALL_STATE(2584)] = 6074, + [SMALL_STATE(2585)] = 6145, + [SMALL_STATE(2586)] = 6216, + [SMALL_STATE(2587)] = 6287, + [SMALL_STATE(2588)] = 6358, + [SMALL_STATE(2589)] = 6429, + [SMALL_STATE(2590)] = 6500, + [SMALL_STATE(2591)] = 6571, + [SMALL_STATE(2592)] = 6642, + [SMALL_STATE(2593)] = 6713, + [SMALL_STATE(2594)] = 6784, + [SMALL_STATE(2595)] = 6855, + [SMALL_STATE(2596)] = 6926, + [SMALL_STATE(2597)] = 7049, + [SMALL_STATE(2598)] = 7120, + [SMALL_STATE(2599)] = 7191, + [SMALL_STATE(2600)] = 7262, + [SMALL_STATE(2601)] = 7333, + [SMALL_STATE(2602)] = 7404, + [SMALL_STATE(2603)] = 7475, + [SMALL_STATE(2604)] = 7546, + [SMALL_STATE(2605)] = 7617, + [SMALL_STATE(2606)] = 7688, + [SMALL_STATE(2607)] = 7759, + [SMALL_STATE(2608)] = 7830, + [SMALL_STATE(2609)] = 7901, + [SMALL_STATE(2610)] = 7972, + [SMALL_STATE(2611)] = 8043, + [SMALL_STATE(2612)] = 8126, + [SMALL_STATE(2613)] = 8209, + [SMALL_STATE(2614)] = 8280, + [SMALL_STATE(2615)] = 8351, + [SMALL_STATE(2616)] = 8422, + [SMALL_STATE(2617)] = 8493, + [SMALL_STATE(2618)] = 8564, + [SMALL_STATE(2619)] = 8635, + [SMALL_STATE(2620)] = 8706, + [SMALL_STATE(2621)] = 8777, + [SMALL_STATE(2622)] = 8848, + [SMALL_STATE(2623)] = 8919, + [SMALL_STATE(2624)] = 8990, + [SMALL_STATE(2625)] = 9061, + [SMALL_STATE(2626)] = 9132, + [SMALL_STATE(2627)] = 9203, + [SMALL_STATE(2628)] = 9274, + [SMALL_STATE(2629)] = 9345, + [SMALL_STATE(2630)] = 9416, + [SMALL_STATE(2631)] = 9491, + [SMALL_STATE(2632)] = 9562, + [SMALL_STATE(2633)] = 9633, + [SMALL_STATE(2634)] = 9704, + [SMALL_STATE(2635)] = 9775, + [SMALL_STATE(2636)] = 9846, + [SMALL_STATE(2637)] = 9917, + [SMALL_STATE(2638)] = 9988, + [SMALL_STATE(2639)] = 10059, + [SMALL_STATE(2640)] = 10130, + [SMALL_STATE(2641)] = 10201, + [SMALL_STATE(2642)] = 10272, + [SMALL_STATE(2643)] = 10343, + [SMALL_STATE(2644)] = 10414, + [SMALL_STATE(2645)] = 10485, + [SMALL_STATE(2646)] = 10556, + [SMALL_STATE(2647)] = 10627, + [SMALL_STATE(2648)] = 10698, + [SMALL_STATE(2649)] = 10769, + [SMALL_STATE(2650)] = 10840, + [SMALL_STATE(2651)] = 10911, + [SMALL_STATE(2652)] = 10982, + [SMALL_STATE(2653)] = 11053, + [SMALL_STATE(2654)] = 11124, + [SMALL_STATE(2655)] = 11195, + [SMALL_STATE(2656)] = 11266, + [SMALL_STATE(2657)] = 11337, + [SMALL_STATE(2658)] = 11408, + [SMALL_STATE(2659)] = 11479, + [SMALL_STATE(2660)] = 11550, + [SMALL_STATE(2661)] = 11621, + [SMALL_STATE(2662)] = 11692, + [SMALL_STATE(2663)] = 11763, + [SMALL_STATE(2664)] = 11834, + [SMALL_STATE(2665)] = 11905, + [SMALL_STATE(2666)] = 11976, + [SMALL_STATE(2667)] = 12047, + [SMALL_STATE(2668)] = 12118, + [SMALL_STATE(2669)] = 12189, + [SMALL_STATE(2670)] = 12260, + [SMALL_STATE(2671)] = 12331, + [SMALL_STATE(2672)] = 12402, + [SMALL_STATE(2673)] = 12473, + [SMALL_STATE(2674)] = 12544, + [SMALL_STATE(2675)] = 12615, + [SMALL_STATE(2676)] = 12686, + [SMALL_STATE(2677)] = 12757, + [SMALL_STATE(2678)] = 12828, + [SMALL_STATE(2679)] = 12899, + [SMALL_STATE(2680)] = 12970, + [SMALL_STATE(2681)] = 13045, + [SMALL_STATE(2682)] = 13116, + [SMALL_STATE(2683)] = 13187, + [SMALL_STATE(2684)] = 13258, + [SMALL_STATE(2685)] = 13329, + [SMALL_STATE(2686)] = 13400, + [SMALL_STATE(2687)] = 13471, + [SMALL_STATE(2688)] = 13542, + [SMALL_STATE(2689)] = 13613, + [SMALL_STATE(2690)] = 13683, + [SMALL_STATE(2691)] = 13753, + [SMALL_STATE(2692)] = 13823, + [SMALL_STATE(2693)] = 13897, + [SMALL_STATE(2694)] = 13967, + [SMALL_STATE(2695)] = 14037, + [SMALL_STATE(2696)] = 14107, + [SMALL_STATE(2697)] = 14177, + [SMALL_STATE(2698)] = 14251, + [SMALL_STATE(2699)] = 14321, + [SMALL_STATE(2700)] = 14397, + [SMALL_STATE(2701)] = 14467, + [SMALL_STATE(2702)] = 14537, + [SMALL_STATE(2703)] = 14621, + [SMALL_STATE(2704)] = 14695, + [SMALL_STATE(2705)] = 14765, + [SMALL_STATE(2706)] = 14839, + [SMALL_STATE(2707)] = 14923, + [SMALL_STATE(2708)] = 14995, + [SMALL_STATE(2709)] = 15065, + [SMALL_STATE(2710)] = 15139, + [SMALL_STATE(2711)] = 15211, + [SMALL_STATE(2712)] = 15285, + [SMALL_STATE(2713)] = 15355, + [SMALL_STATE(2714)] = 15433, + [SMALL_STATE(2715)] = 15503, + [SMALL_STATE(2716)] = 15573, + [SMALL_STATE(2717)] = 15643, + [SMALL_STATE(2718)] = 15713, + [SMALL_STATE(2719)] = 15783, + [SMALL_STATE(2720)] = 15855, + [SMALL_STATE(2721)] = 15929, + [SMALL_STATE(2722)] = 16007, + [SMALL_STATE(2723)] = 16081, + [SMALL_STATE(2724)] = 16151, + [SMALL_STATE(2725)] = 16221, + [SMALL_STATE(2726)] = 16291, + [SMALL_STATE(2727)] = 16375, + [SMALL_STATE(2728)] = 16447, + [SMALL_STATE(2729)] = 16521, + [SMALL_STATE(2730)] = 16599, + [SMALL_STATE(2731)] = 16673, + [SMALL_STATE(2732)] = 16743, + [SMALL_STATE(2733)] = 16813, + [SMALL_STATE(2734)] = 16895, + [SMALL_STATE(2735)] = 16969, + [SMALL_STATE(2736)] = 17039, + [SMALL_STATE(2737)] = 17117, + [SMALL_STATE(2738)] = 17187, + [SMALL_STATE(2739)] = 17257, + [SMALL_STATE(2740)] = 17327, + [SMALL_STATE(2741)] = 17397, + [SMALL_STATE(2742)] = 17473, + [SMALL_STATE(2743)] = 17559, + [SMALL_STATE(2744)] = 17629, + [SMALL_STATE(2745)] = 17705, + [SMALL_STATE(2746)] = 17781, + [SMALL_STATE(2747)] = 17865, + [SMALL_STATE(2748)] = 17939, + [SMALL_STATE(2749)] = 18009, + [SMALL_STATE(2750)] = 18093, + [SMALL_STATE(2751)] = 18163, + [SMALL_STATE(2752)] = 18245, + [SMALL_STATE(2753)] = 18315, + [SMALL_STATE(2754)] = 18384, + [SMALL_STATE(2755)] = 18453, + [SMALL_STATE(2756)] = 18522, + [SMALL_STATE(2757)] = 18591, + [SMALL_STATE(2758)] = 18660, + [SMALL_STATE(2759)] = 18729, + [SMALL_STATE(2760)] = 18810, + [SMALL_STATE(2761)] = 18883, + [SMALL_STATE(2762)] = 18952, + [SMALL_STATE(2763)] = 19021, + [SMALL_STATE(2764)] = 19090, + [SMALL_STATE(2765)] = 19159, + [SMALL_STATE(2766)] = 19228, + [SMALL_STATE(2767)] = 19297, + [SMALL_STATE(2768)] = 19366, + [SMALL_STATE(2769)] = 19435, + [SMALL_STATE(2770)] = 19504, + [SMALL_STATE(2771)] = 19573, + [SMALL_STATE(2772)] = 19642, + [SMALL_STATE(2773)] = 19711, + [SMALL_STATE(2774)] = 19780, + [SMALL_STATE(2775)] = 19849, + [SMALL_STATE(2776)] = 19918, + [SMALL_STATE(2777)] = 19987, + [SMALL_STATE(2778)] = 20056, + [SMALL_STATE(2779)] = 20129, + [SMALL_STATE(2780)] = 20198, + [SMALL_STATE(2781)] = 20267, + [SMALL_STATE(2782)] = 20336, + [SMALL_STATE(2783)] = 20413, + [SMALL_STATE(2784)] = 20482, + [SMALL_STATE(2785)] = 20551, + [SMALL_STATE(2786)] = 20620, + [SMALL_STATE(2787)] = 20689, + [SMALL_STATE(2788)] = 20810, + [SMALL_STATE(2789)] = 20879, + [SMALL_STATE(2790)] = 20956, + [SMALL_STATE(2791)] = 21025, + [SMALL_STATE(2792)] = 21094, + [SMALL_STATE(2793)] = 21169, + [SMALL_STATE(2794)] = 21238, + [SMALL_STATE(2795)] = 21307, + [SMALL_STATE(2796)] = 21376, + [SMALL_STATE(2797)] = 21445, + [SMALL_STATE(2798)] = 21516, + [SMALL_STATE(2799)] = 21585, + [SMALL_STATE(2800)] = 21658, + [SMALL_STATE(2801)] = 21727, + [SMALL_STATE(2802)] = 21798, + [SMALL_STATE(2803)] = 21867, + [SMALL_STATE(2804)] = 21936, + [SMALL_STATE(2805)] = 22005, + [SMALL_STATE(2806)] = 22126, + [SMALL_STATE(2807)] = 22211, + [SMALL_STATE(2808)] = 22280, + [SMALL_STATE(2809)] = 22349, + [SMALL_STATE(2810)] = 22418, + [SMALL_STATE(2811)] = 22499, + [SMALL_STATE(2812)] = 22568, + [SMALL_STATE(2813)] = 22637, + [SMALL_STATE(2814)] = 22706, + [SMALL_STATE(2815)] = 22775, + [SMALL_STATE(2816)] = 22844, + [SMALL_STATE(2817)] = 22913, + [SMALL_STATE(2818)] = 22982, + [SMALL_STATE(2819)] = 23051, + [SMALL_STATE(2820)] = 23128, + [SMALL_STATE(2821)] = 23209, + [SMALL_STATE(2822)] = 23278, + [SMALL_STATE(2823)] = 23347, + [SMALL_STATE(2824)] = 23416, + [SMALL_STATE(2825)] = 23489, + [SMALL_STATE(2826)] = 23558, + [SMALL_STATE(2827)] = 23627, + [SMALL_STATE(2828)] = 23696, + [SMALL_STATE(2829)] = 23765, + [SMALL_STATE(2830)] = 23834, + [SMALL_STATE(2831)] = 23903, + [SMALL_STATE(2832)] = 23972, + [SMALL_STATE(2833)] = 24041, + [SMALL_STATE(2834)] = 24118, + [SMALL_STATE(2835)] = 24187, + [SMALL_STATE(2836)] = 24256, + [SMALL_STATE(2837)] = 24325, + [SMALL_STATE(2838)] = 24402, + [SMALL_STATE(2839)] = 24471, + [SMALL_STATE(2840)] = 24540, + [SMALL_STATE(2841)] = 24609, + [SMALL_STATE(2842)] = 24678, + [SMALL_STATE(2843)] = 24747, + [SMALL_STATE(2844)] = 24816, + [SMALL_STATE(2845)] = 24895, + [SMALL_STATE(2846)] = 24964, + [SMALL_STATE(2847)] = 25035, + [SMALL_STATE(2848)] = 25104, + [SMALL_STATE(2849)] = 25173, + [SMALL_STATE(2850)] = 25242, + [SMALL_STATE(2851)] = 25311, + [SMALL_STATE(2852)] = 25380, + [SMALL_STATE(2853)] = 25449, + [SMALL_STATE(2854)] = 25518, + [SMALL_STATE(2855)] = 25587, + [SMALL_STATE(2856)] = 25656, + [SMALL_STATE(2857)] = 25725, + [SMALL_STATE(2858)] = 25794, + [SMALL_STATE(2859)] = 25875, + [SMALL_STATE(2860)] = 25944, + [SMALL_STATE(2861)] = 26013, + [SMALL_STATE(2862)] = 26090, + [SMALL_STATE(2863)] = 26162, + [SMALL_STATE(2864)] = 26234, + [SMALL_STATE(2865)] = 26306, + [SMALL_STATE(2866)] = 26384, + [SMALL_STATE(2867)] = 26456, + [SMALL_STATE(2868)] = 26532, + [SMALL_STATE(2869)] = 26604, + [SMALL_STATE(2870)] = 26676, + [SMALL_STATE(2871)] = 26748, + [SMALL_STATE(2872)] = 26820, + [SMALL_STATE(2873)] = 26904, + [SMALL_STATE(2874)] = 26972, + [SMALL_STATE(2875)] = 27044, + [SMALL_STATE(2876)] = 27116, + [SMALL_STATE(2877)] = 27188, + [SMALL_STATE(2878)] = 27256, + [SMALL_STATE(2879)] = 27328, + [SMALL_STATE(2880)] = 27400, + [SMALL_STATE(2881)] = 27472, + [SMALL_STATE(2882)] = 27544, + [SMALL_STATE(2883)] = 27616, + [SMALL_STATE(2884)] = 27684, + [SMALL_STATE(2885)] = 27756, + [SMALL_STATE(2886)] = 27830, + [SMALL_STATE(2887)] = 27902, + [SMALL_STATE(2888)] = 27986, + [SMALL_STATE(2889)] = 28106, + [SMALL_STATE(2890)] = 28182, + [SMALL_STATE(2891)] = 28256, + [SMALL_STATE(2892)] = 28340, + [SMALL_STATE(2893)] = 28408, + [SMALL_STATE(2894)] = 28492, + [SMALL_STATE(2895)] = 28564, + [SMALL_STATE(2896)] = 28636, + [SMALL_STATE(2897)] = 28704, + [SMALL_STATE(2898)] = 28776, + [SMALL_STATE(2899)] = 28844, + [SMALL_STATE(2900)] = 28912, + [SMALL_STATE(2901)] = 28984, + [SMALL_STATE(2902)] = 29056, + [SMALL_STATE(2903)] = 29132, + [SMALL_STATE(2904)] = 29204, + [SMALL_STATE(2905)] = 29276, + [SMALL_STATE(2906)] = 29348, + [SMALL_STATE(2907)] = 29416, + [SMALL_STATE(2908)] = 29500, + [SMALL_STATE(2909)] = 29567, + [SMALL_STATE(2910)] = 29634, + [SMALL_STATE(2911)] = 29705, + [SMALL_STATE(2912)] = 29772, + [SMALL_STATE(2913)] = 29839, + [SMALL_STATE(2914)] = 29910, + [SMALL_STATE(2915)] = 29983, + [SMALL_STATE(2916)] = 30062, + [SMALL_STATE(2917)] = 30137, + [SMALL_STATE(2918)] = 30206, + [SMALL_STATE(2919)] = 30277, + [SMALL_STATE(2920)] = 30346, + [SMALL_STATE(2921)] = 30417, + [SMALL_STATE(2922)] = 30488, + [SMALL_STATE(2923)] = 30559, + [SMALL_STATE(2924)] = 30638, + [SMALL_STATE(2925)] = 30705, + [SMALL_STATE(2926)] = 30780, + [SMALL_STATE(2927)] = 30851, + [SMALL_STATE(2928)] = 30924, + [SMALL_STATE(2929)] = 30995, + [SMALL_STATE(2930)] = 31068, + [SMALL_STATE(2931)] = 31139, + [SMALL_STATE(2932)] = 31208, + [SMALL_STATE(2933)] = 31275, + [SMALL_STATE(2934)] = 31350, + [SMALL_STATE(2935)] = 31433, + [SMALL_STATE(2936)] = 31508, + [SMALL_STATE(2937)] = 31579, + [SMALL_STATE(2938)] = 31645, + [SMALL_STATE(2939)] = 31715, + [SMALL_STATE(2940)] = 31797, + [SMALL_STATE(2941)] = 31879, + [SMALL_STATE(2942)] = 31949, + [SMALL_STATE(2943)] = 32019, + [SMALL_STATE(2944)] = 32085, + [SMALL_STATE(2945)] = 32155, + [SMALL_STATE(2946)] = 32225, + [SMALL_STATE(2947)] = 32303, + [SMALL_STATE(2948)] = 32375, + [SMALL_STATE(2949)] = 32443, + [SMALL_STATE(2950)] = 32513, + [SMALL_STATE(2951)] = 32583, + [SMALL_STATE(2952)] = 32653, + [SMALL_STATE(2953)] = 32735, + [SMALL_STATE(2954)] = 32817, + [SMALL_STATE(2955)] = 32895, + [SMALL_STATE(2956)] = 32967, + [SMALL_STATE(2957)] = 33037, + [SMALL_STATE(2958)] = 33103, + [SMALL_STATE(2959)] = 33171, + [SMALL_STATE(2960)] = 33247, + [SMALL_STATE(2961)] = 33315, + [SMALL_STATE(2962)] = 33385, + [SMALL_STATE(2963)] = 33455, + [SMALL_STATE(2964)] = 33521, + [SMALL_STATE(2965)] = 33591, + [SMALL_STATE(2966)] = 33661, + [SMALL_STATE(2967)] = 33731, + [SMALL_STATE(2968)] = 33800, + [SMALL_STATE(2969)] = 33871, + [SMALL_STATE(2970)] = 33936, + [SMALL_STATE(2971)] = 34001, + [SMALL_STATE(2972)] = 34066, + [SMALL_STATE(2973)] = 34139, + [SMALL_STATE(2974)] = 34204, + [SMALL_STATE(2975)] = 34269, + [SMALL_STATE(2976)] = 34350, + [SMALL_STATE(2977)] = 34415, + [SMALL_STATE(2978)] = 34488, + [SMALL_STATE(2979)] = 34553, + [SMALL_STATE(2980)] = 34620, + [SMALL_STATE(2981)] = 34685, + [SMALL_STATE(2982)] = 34750, + [SMALL_STATE(2983)] = 34819, + [SMALL_STATE(2984)] = 34888, + [SMALL_STATE(2985)] = 35001, + [SMALL_STATE(2986)] = 35082, + [SMALL_STATE(2987)] = 35147, + [SMALL_STATE(2988)] = 35212, + [SMALL_STATE(2989)] = 35277, + [SMALL_STATE(2990)] = 35342, + [SMALL_STATE(2991)] = 35407, + [SMALL_STATE(2992)] = 35516, + [SMALL_STATE(2993)] = 35581, + [SMALL_STATE(2994)] = 35650, + [SMALL_STATE(2995)] = 35731, + [SMALL_STATE(2996)] = 35800, + [SMALL_STATE(2997)] = 35865, + [SMALL_STATE(2998)] = 35974, + [SMALL_STATE(2999)] = 36055, + [SMALL_STATE(3000)] = 36124, + [SMALL_STATE(3001)] = 36197, + [SMALL_STATE(3002)] = 36268, + [SMALL_STATE(3003)] = 36337, + [SMALL_STATE(3004)] = 36412, + [SMALL_STATE(3005)] = 36477, + [SMALL_STATE(3006)] = 36542, + [SMALL_STATE(3007)] = 36617, + [SMALL_STATE(3008)] = 36702, + [SMALL_STATE(3009)] = 36767, + [SMALL_STATE(3010)] = 36850, + [SMALL_STATE(3011)] = 36915, + [SMALL_STATE(3012)] = 36988, + [SMALL_STATE(3013)] = 37053, + [SMALL_STATE(3014)] = 37134, + [SMALL_STATE(3015)] = 37221, + [SMALL_STATE(3016)] = 37296, + [SMALL_STATE(3017)] = 37387, + [SMALL_STATE(3018)] = 37482, + [SMALL_STATE(3019)] = 37579, + [SMALL_STATE(3020)] = 37678, + [SMALL_STATE(3021)] = 37779, + [SMALL_STATE(3022)] = 37884, + [SMALL_STATE(3023)] = 37997, + [SMALL_STATE(3024)] = 38064, + [SMALL_STATE(3025)] = 38139, + [SMALL_STATE(3026)] = 38210, + [SMALL_STATE(3027)] = 38319, + [SMALL_STATE(3028)] = 38386, + [SMALL_STATE(3029)] = 38451, + [SMALL_STATE(3030)] = 38516, + [SMALL_STATE(3031)] = 38583, + [SMALL_STATE(3032)] = 38696, + [SMALL_STATE(3033)] = 38805, + [SMALL_STATE(3034)] = 38869, + [SMALL_STATE(3035)] = 38933, + [SMALL_STATE(3036)] = 38997, + [SMALL_STATE(3037)] = 39063, + [SMALL_STATE(3038)] = 39129, + [SMALL_STATE(3039)] = 39193, + [SMALL_STATE(3040)] = 39259, + [SMALL_STATE(3041)] = 39335, + [SMALL_STATE(3042)] = 39401, + [SMALL_STATE(3043)] = 39465, + [SMALL_STATE(3044)] = 39533, + [SMALL_STATE(3045)] = 39597, + [SMALL_STATE(3046)] = 39661, + [SMALL_STATE(3047)] = 39725, + [SMALL_STATE(3048)] = 39789, + [SMALL_STATE(3049)] = 39853, + [SMALL_STATE(3050)] = 39921, + [SMALL_STATE(3051)] = 39991, + [SMALL_STATE(3052)] = 40055, + [SMALL_STATE(3053)] = 40123, + [SMALL_STATE(3054)] = 40187, + [SMALL_STATE(3055)] = 40255, + [SMALL_STATE(3056)] = 40321, + [SMALL_STATE(3057)] = 40385, + [SMALL_STATE(3058)] = 40451, + [SMALL_STATE(3059)] = 40519, + [SMALL_STATE(3060)] = 40589, + [SMALL_STATE(3061)] = 40657, + [SMALL_STATE(3062)] = 40725, + [SMALL_STATE(3063)] = 40789, + [SMALL_STATE(3064)] = 40853, + [SMALL_STATE(3065)] = 40921, + [SMALL_STATE(3066)] = 40997, + [SMALL_STATE(3067)] = 41065, + [SMALL_STATE(3068)] = 41137, + [SMALL_STATE(3069)] = 41201, + [SMALL_STATE(3070)] = 41265, + [SMALL_STATE(3071)] = 41329, + [SMALL_STATE(3072)] = 41395, + [SMALL_STATE(3073)] = 41463, + [SMALL_STATE(3074)] = 41527, + [SMALL_STATE(3075)] = 41591, + [SMALL_STATE(3076)] = 41655, + [SMALL_STATE(3077)] = 41719, + [SMALL_STATE(3078)] = 41783, + [SMALL_STATE(3079)] = 41847, + [SMALL_STATE(3080)] = 41913, + [SMALL_STATE(3081)] = 41977, + [SMALL_STATE(3082)] = 42041, + [SMALL_STATE(3083)] = 42109, + [SMALL_STATE(3084)] = 42173, + [SMALL_STATE(3085)] = 42237, + [SMALL_STATE(3086)] = 42301, + [SMALL_STATE(3087)] = 42365, + [SMALL_STATE(3088)] = 42429, + [SMALL_STATE(3089)] = 42493, + [SMALL_STATE(3090)] = 42557, + [SMALL_STATE(3091)] = 42621, + [SMALL_STATE(3092)] = 42689, + [SMALL_STATE(3093)] = 42761, + [SMALL_STATE(3094)] = 42825, + [SMALL_STATE(3095)] = 42889, + [SMALL_STATE(3096)] = 42953, + [SMALL_STATE(3097)] = 43017, + [SMALL_STATE(3098)] = 43081, + [SMALL_STATE(3099)] = 43151, + [SMALL_STATE(3100)] = 43223, + [SMALL_STATE(3101)] = 43291, + [SMALL_STATE(3102)] = 43359, + [SMALL_STATE(3103)] = 43423, + [SMALL_STATE(3104)] = 43491, + [SMALL_STATE(3105)] = 43555, + [SMALL_STATE(3106)] = 43619, + [SMALL_STATE(3107)] = 43683, + [SMALL_STATE(3108)] = 43747, + [SMALL_STATE(3109)] = 43815, + [SMALL_STATE(3110)] = 43879, + [SMALL_STATE(3111)] = 43945, + [SMALL_STATE(3112)] = 44009, + [SMALL_STATE(3113)] = 44073, + [SMALL_STATE(3114)] = 44139, + [SMALL_STATE(3115)] = 44207, + [SMALL_STATE(3116)] = 44271, + [SMALL_STATE(3117)] = 44339, + [SMALL_STATE(3118)] = 44403, + [SMALL_STATE(3119)] = 44467, + [SMALL_STATE(3120)] = 44531, + [SMALL_STATE(3121)] = 44599, + [SMALL_STATE(3122)] = 44663, + [SMALL_STATE(3123)] = 44727, + [SMALL_STATE(3124)] = 44791, + [SMALL_STATE(3125)] = 44859, + [SMALL_STATE(3126)] = 44927, + [SMALL_STATE(3127)] = 44991, + [SMALL_STATE(3128)] = 45055, + [SMALL_STATE(3129)] = 45125, + [SMALL_STATE(3130)] = 45189, + [SMALL_STATE(3131)] = 45253, + [SMALL_STATE(3132)] = 45317, + [SMALL_STATE(3133)] = 45381, + [SMALL_STATE(3134)] = 45445, + [SMALL_STATE(3135)] = 45513, + [SMALL_STATE(3136)] = 45579, + [SMALL_STATE(3137)] = 45643, + [SMALL_STATE(3138)] = 45707, + [SMALL_STATE(3139)] = 45775, + [SMALL_STATE(3140)] = 45839, + [SMALL_STATE(3141)] = 45903, + [SMALL_STATE(3142)] = 45967, + [SMALL_STATE(3143)] = 46031, + [SMALL_STATE(3144)] = 46099, + [SMALL_STATE(3145)] = 46167, + [SMALL_STATE(3146)] = 46231, + [SMALL_STATE(3147)] = 46295, + [SMALL_STATE(3148)] = 46363, + [SMALL_STATE(3149)] = 46431, + [SMALL_STATE(3150)] = 46495, + [SMALL_STATE(3151)] = 46563, + [SMALL_STATE(3152)] = 46631, + [SMALL_STATE(3153)] = 46699, + [SMALL_STATE(3154)] = 46763, + [SMALL_STATE(3155)] = 46827, + [SMALL_STATE(3156)] = 46895, + [SMALL_STATE(3157)] = 46959, + [SMALL_STATE(3158)] = 47027, + [SMALL_STATE(3159)] = 47091, + [SMALL_STATE(3160)] = 47155, + [SMALL_STATE(3161)] = 47219, + [SMALL_STATE(3162)] = 47283, + [SMALL_STATE(3163)] = 47347, + [SMALL_STATE(3164)] = 47411, + [SMALL_STATE(3165)] = 47475, + [SMALL_STATE(3166)] = 47542, + [SMALL_STATE(3167)] = 47609, + [SMALL_STATE(3168)] = 47722, + [SMALL_STATE(3169)] = 47835, + [SMALL_STATE(3170)] = 47914, + [SMALL_STATE(3171)] = 47993, + [SMALL_STATE(3172)] = 48154, + [SMALL_STATE(3173)] = 48229, + [SMALL_STATE(3174)] = 48336, + [SMALL_STATE(3175)] = 48413, + [SMALL_STATE(3176)] = 48492, + [SMALL_STATE(3177)] = 48597, + [SMALL_STATE(3178)] = 48674, + [SMALL_STATE(3179)] = 48755, + [SMALL_STATE(3180)] = 48838, + [SMALL_STATE(3181)] = 48913, + [SMALL_STATE(3182)] = 48976, + [SMALL_STATE(3183)] = 49077, + [SMALL_STATE(3184)] = 49144, + [SMALL_STATE(3185)] = 49217, + [SMALL_STATE(3186)] = 49312, + [SMALL_STATE(3187)] = 49375, + [SMALL_STATE(3188)] = 49466, + [SMALL_STATE(3189)] = 49529, + [SMALL_STATE(3190)] = 49618, + [SMALL_STATE(3191)] = 49681, + [SMALL_STATE(3192)] = 49766, + [SMALL_STATE(3193)] = 49843, + [SMALL_STATE(3194)] = 49924, + [SMALL_STATE(3195)] = 50009, + [SMALL_STATE(3196)] = 50086, + [SMALL_STATE(3197)] = 50195, + [SMALL_STATE(3198)] = 50274, + [SMALL_STATE(3199)] = 50337, + [SMALL_STATE(3200)] = 50402, + [SMALL_STATE(3201)] = 50465, + [SMALL_STATE(3202)] = 50574, + [SMALL_STATE(3203)] = 50639, + [SMALL_STATE(3204)] = 50702, + [SMALL_STATE(3205)] = 50769, + [SMALL_STATE(3206)] = 50848, + [SMALL_STATE(3207)] = 50925, + [SMALL_STATE(3208)] = 50992, + [SMALL_STATE(3209)] = 51057, + [SMALL_STATE(3210)] = 51124, + [SMALL_STATE(3211)] = 51285, + [SMALL_STATE(3212)] = 51382, + [SMALL_STATE(3213)] = 51445, + [SMALL_STATE(3214)] = 51512, + [SMALL_STATE(3215)] = 51575, + [SMALL_STATE(3216)] = 51684, + [SMALL_STATE(3217)] = 51755, + [SMALL_STATE(3218)] = 51862, + [SMALL_STATE(3219)] = 51969, + [SMALL_STATE(3220)] = 52080, + [SMALL_STATE(3221)] = 52183, + [SMALL_STATE(3222)] = 52282, + [SMALL_STATE(3223)] = 52379, + [SMALL_STATE(3224)] = 52444, + [SMALL_STATE(3225)] = 52539, + [SMALL_STATE(3226)] = 52608, + [SMALL_STATE(3227)] = 52701, + [SMALL_STATE(3228)] = 52790, + [SMALL_STATE(3229)] = 52875, + [SMALL_STATE(3230)] = 52988, + [SMALL_STATE(3231)] = 53095, + [SMALL_STATE(3232)] = 53206, + [SMALL_STATE(3233)] = 53313, + [SMALL_STATE(3234)] = 53424, + [SMALL_STATE(3235)] = 53507, + [SMALL_STATE(3236)] = 53616, + [SMALL_STATE(3237)] = 53683, + [SMALL_STATE(3238)] = 53750, + [SMALL_STATE(3239)] = 53813, + [SMALL_STATE(3240)] = 53880, + [SMALL_STATE(3241)] = 53965, + [SMALL_STATE(3242)] = 54038, + [SMALL_STATE(3243)] = 54101, + [SMALL_STATE(3244)] = 54168, + [SMALL_STATE(3245)] = 54235, + [SMALL_STATE(3246)] = 54396, + [SMALL_STATE(3247)] = 54459, + [SMALL_STATE(3248)] = 54522, + [SMALL_STATE(3249)] = 54593, + [SMALL_STATE(3250)] = 54672, + [SMALL_STATE(3251)] = 54735, + [SMALL_STATE(3252)] = 54798, + [SMALL_STATE(3253)] = 54871, + [SMALL_STATE(3254)] = 54938, + [SMALL_STATE(3255)] = 55007, + [SMALL_STATE(3256)] = 55074, + [SMALL_STATE(3257)] = 55235, + [SMALL_STATE(3258)] = 55308, + [SMALL_STATE(3259)] = 55371, + [SMALL_STATE(3260)] = 55433, + [SMALL_STATE(3261)] = 55495, + [SMALL_STATE(3262)] = 55557, + [SMALL_STATE(3263)] = 55619, + [SMALL_STATE(3264)] = 55685, + [SMALL_STATE(3265)] = 55757, + [SMALL_STATE(3266)] = 55827, + [SMALL_STATE(3267)] = 55889, + [SMALL_STATE(3268)] = 55951, + [SMALL_STATE(3269)] = 56013, + [SMALL_STATE(3270)] = 56075, + [SMALL_STATE(3271)] = 56137, + [SMALL_STATE(3272)] = 56199, + [SMALL_STATE(3273)] = 56261, + [SMALL_STATE(3274)] = 56323, + [SMALL_STATE(3275)] = 56385, + [SMALL_STATE(3276)] = 56447, + [SMALL_STATE(3277)] = 56509, + [SMALL_STATE(3278)] = 56575, + [SMALL_STATE(3279)] = 56637, + [SMALL_STATE(3280)] = 56699, + [SMALL_STATE(3281)] = 56763, + [SMALL_STATE(3282)] = 56825, + [SMALL_STATE(3283)] = 56887, + [SMALL_STATE(3284)] = 56953, + [SMALL_STATE(3285)] = 57015, + [SMALL_STATE(3286)] = 57077, + [SMALL_STATE(3287)] = 57145, + [SMALL_STATE(3288)] = 57207, + [SMALL_STATE(3289)] = 57269, + [SMALL_STATE(3290)] = 57331, + [SMALL_STATE(3291)] = 57393, + [SMALL_STATE(3292)] = 57455, + [SMALL_STATE(3293)] = 57517, + [SMALL_STATE(3294)] = 57579, + [SMALL_STATE(3295)] = 57641, + [SMALL_STATE(3296)] = 57703, + [SMALL_STATE(3297)] = 57765, + [SMALL_STATE(3298)] = 57827, + [SMALL_STATE(3299)] = 57889, + [SMALL_STATE(3300)] = 57951, + [SMALL_STATE(3301)] = 58013, + [SMALL_STATE(3302)] = 58075, + [SMALL_STATE(3303)] = 58137, + [SMALL_STATE(3304)] = 58199, + [SMALL_STATE(3305)] = 58261, + [SMALL_STATE(3306)] = 58327, + [SMALL_STATE(3307)] = 58389, + [SMALL_STATE(3308)] = 58455, + [SMALL_STATE(3309)] = 58517, + [SMALL_STATE(3310)] = 58579, + [SMALL_STATE(3311)] = 58641, + [SMALL_STATE(3312)] = 58707, + [SMALL_STATE(3313)] = 58771, + [SMALL_STATE(3314)] = 58833, + [SMALL_STATE(3315)] = 58895, + [SMALL_STATE(3316)] = 58957, + [SMALL_STATE(3317)] = 59025, + [SMALL_STATE(3318)] = 59087, + [SMALL_STATE(3319)] = 59151, + [SMALL_STATE(3320)] = 59213, + [SMALL_STATE(3321)] = 59285, + [SMALL_STATE(3322)] = 59347, + [SMALL_STATE(3323)] = 59409, + [SMALL_STATE(3324)] = 59471, + [SMALL_STATE(3325)] = 59533, + [SMALL_STATE(3326)] = 59595, + [SMALL_STATE(3327)] = 59661, + [SMALL_STATE(3328)] = 59723, + [SMALL_STATE(3329)] = 59785, + [SMALL_STATE(3330)] = 59847, + [SMALL_STATE(3331)] = 59909, + [SMALL_STATE(3332)] = 59971, + [SMALL_STATE(3333)] = 60039, + [SMALL_STATE(3334)] = 60105, + [SMALL_STATE(3335)] = 60171, + [SMALL_STATE(3336)] = 60233, + [SMALL_STATE(3337)] = 60295, + [SMALL_STATE(3338)] = 60357, + [SMALL_STATE(3339)] = 60419, + [SMALL_STATE(3340)] = 60481, + [SMALL_STATE(3341)] = 60543, + [SMALL_STATE(3342)] = 60605, + [SMALL_STATE(3343)] = 60667, + [SMALL_STATE(3344)] = 60735, + [SMALL_STATE(3345)] = 60797, + [SMALL_STATE(3346)] = 60859, + [SMALL_STATE(3347)] = 60921, + [SMALL_STATE(3348)] = 60983, + [SMALL_STATE(3349)] = 61045, + [SMALL_STATE(3350)] = 61109, + [SMALL_STATE(3351)] = 61181, + [SMALL_STATE(3352)] = 61243, + [SMALL_STATE(3353)] = 61309, + [SMALL_STATE(3354)] = 61371, + [SMALL_STATE(3355)] = 61433, + [SMALL_STATE(3356)] = 61501, + [SMALL_STATE(3357)] = 61563, + [SMALL_STATE(3358)] = 61633, + [SMALL_STATE(3359)] = 61695, + [SMALL_STATE(3360)] = 61757, + [SMALL_STATE(3361)] = 61827, + [SMALL_STATE(3362)] = 61889, + [SMALL_STATE(3363)] = 61951, + [SMALL_STATE(3364)] = 62013, + [SMALL_STATE(3365)] = 62075, + [SMALL_STATE(3366)] = 62137, + [SMALL_STATE(3367)] = 62199, + [SMALL_STATE(3368)] = 62271, + [SMALL_STATE(3369)] = 62341, + [SMALL_STATE(3370)] = 62403, + [SMALL_STATE(3371)] = 62465, + [SMALL_STATE(3372)] = 62527, + [SMALL_STATE(3373)] = 62589, + [SMALL_STATE(3374)] = 62651, + [SMALL_STATE(3375)] = 62713, + [SMALL_STATE(3376)] = 62775, + [SMALL_STATE(3377)] = 62837, + [SMALL_STATE(3378)] = 62899, + [SMALL_STATE(3379)] = 62961, + [SMALL_STATE(3380)] = 63023, + [SMALL_STATE(3381)] = 63085, + [SMALL_STATE(3382)] = 63147, + [SMALL_STATE(3383)] = 63213, + [SMALL_STATE(3384)] = 63275, + [SMALL_STATE(3385)] = 63336, + [SMALL_STATE(3386)] = 63397, + [SMALL_STATE(3387)] = 63458, + [SMALL_STATE(3388)] = 63519, + [SMALL_STATE(3389)] = 63580, + [SMALL_STATE(3390)] = 63643, + [SMALL_STATE(3391)] = 63704, + [SMALL_STATE(3392)] = 63783, + [SMALL_STATE(3393)] = 63850, + [SMALL_STATE(3394)] = 63911, + [SMALL_STATE(3395)] = 63972, + [SMALL_STATE(3396)] = 64053, + [SMALL_STATE(3397)] = 64164, + [SMALL_STATE(3398)] = 64241, + [SMALL_STATE(3399)] = 64302, + [SMALL_STATE(3400)] = 64363, + [SMALL_STATE(3401)] = 64474, + [SMALL_STATE(3402)] = 64577, + [SMALL_STATE(3403)] = 64656, + [SMALL_STATE(3404)] = 64717, + [SMALL_STATE(3405)] = 64792, + [SMALL_STATE(3406)] = 64891, + [SMALL_STATE(3407)] = 64986, + [SMALL_STATE(3408)] = 65079, + [SMALL_STATE(3409)] = 65142, + [SMALL_STATE(3410)] = 65223, + [SMALL_STATE(3411)] = 65312, + [SMALL_STATE(3412)] = 65399, + [SMALL_STATE(3413)] = 65464, + [SMALL_STATE(3414)] = 65547, + [SMALL_STATE(3415)] = 65624, + [SMALL_STATE(3416)] = 65685, + [SMALL_STATE(3417)] = 65792, + [SMALL_STATE(3418)] = 65861, + [SMALL_STATE(3419)] = 65938, + [SMALL_STATE(3420)] = 66045, + [SMALL_STATE(3421)] = 66106, + [SMALL_STATE(3422)] = 66167, + [SMALL_STATE(3423)] = 66228, + [SMALL_STATE(3424)] = 66289, + [SMALL_STATE(3425)] = 66350, + [SMALL_STATE(3426)] = 66411, + [SMALL_STATE(3427)] = 66476, + [SMALL_STATE(3428)] = 66541, + [SMALL_STATE(3429)] = 66602, + [SMALL_STATE(3430)] = 66663, + [SMALL_STATE(3431)] = 66724, + [SMALL_STATE(3432)] = 66785, + [SMALL_STATE(3433)] = 66850, + [SMALL_STATE(3434)] = 66957, + [SMALL_STATE(3435)] = 67018, + [SMALL_STATE(3436)] = 67079, + [SMALL_STATE(3437)] = 67140, + [SMALL_STATE(3438)] = 67251, + [SMALL_STATE(3439)] = 67312, + [SMALL_STATE(3440)] = 67373, + [SMALL_STATE(3441)] = 67434, + [SMALL_STATE(3442)] = 67495, + [SMALL_STATE(3443)] = 67556, + [SMALL_STATE(3444)] = 67663, + [SMALL_STATE(3445)] = 67728, + [SMALL_STATE(3446)] = 67805, + [SMALL_STATE(3447)] = 67868, + [SMALL_STATE(3448)] = 67929, + [SMALL_STATE(3449)] = 67990, + [SMALL_STATE(3450)] = 68051, + [SMALL_STATE(3451)] = 68112, + [SMALL_STATE(3452)] = 68177, + [SMALL_STATE(3453)] = 68280, + [SMALL_STATE(3454)] = 68341, + [SMALL_STATE(3455)] = 68402, + [SMALL_STATE(3456)] = 68463, + [SMALL_STATE(3457)] = 68528, + [SMALL_STATE(3458)] = 68589, + [SMALL_STATE(3459)] = 68656, + [SMALL_STATE(3460)] = 68717, + [SMALL_STATE(3461)] = 68778, + [SMALL_STATE(3462)] = 68843, + [SMALL_STATE(3463)] = 68904, + [SMALL_STATE(3464)] = 68965, + [SMALL_STATE(3465)] = 69026, + [SMALL_STATE(3466)] = 69087, + [SMALL_STATE(3467)] = 69152, + [SMALL_STATE(3468)] = 69229, + [SMALL_STATE(3469)] = 69294, + [SMALL_STATE(3470)] = 69355, + [SMALL_STATE(3471)] = 69416, + [SMALL_STATE(3472)] = 69485, + [SMALL_STATE(3473)] = 69554, + [SMALL_STATE(3474)] = 69615, + [SMALL_STATE(3475)] = 69680, + [SMALL_STATE(3476)] = 69745, + [SMALL_STATE(3477)] = 69810, + [SMALL_STATE(3478)] = 69871, + [SMALL_STATE(3479)] = 69976, + [SMALL_STATE(3480)] = 70037, + [SMALL_STATE(3481)] = 70098, + [SMALL_STATE(3482)] = 70159, + [SMALL_STATE(3483)] = 70220, + [SMALL_STATE(3484)] = 70281, + [SMALL_STATE(3485)] = 70388, + [SMALL_STATE(3486)] = 70449, + [SMALL_STATE(3487)] = 70560, + [SMALL_STATE(3488)] = 70633, + [SMALL_STATE(3489)] = 70700, + [SMALL_STATE(3490)] = 70765, + [SMALL_STATE(3491)] = 70836, + [SMALL_STATE(3492)] = 70911, + [SMALL_STATE(3493)] = 70974, + [SMALL_STATE(3494)] = 71035, + [SMALL_STATE(3495)] = 71096, + [SMALL_STATE(3496)] = 71203, + [SMALL_STATE(3497)] = 71264, + [SMALL_STATE(3498)] = 71371, + [SMALL_STATE(3499)] = 71432, + [SMALL_STATE(3500)] = 71543, + [SMALL_STATE(3501)] = 71604, + [SMALL_STATE(3502)] = 71665, + [SMALL_STATE(3503)] = 71732, + [SMALL_STATE(3504)] = 71793, + [SMALL_STATE(3505)] = 71854, + [SMALL_STATE(3506)] = 71915, + [SMALL_STATE(3507)] = 71980, + [SMALL_STATE(3508)] = 72047, + [SMALL_STATE(3509)] = 72108, + [SMALL_STATE(3510)] = 72181, + [SMALL_STATE(3511)] = 72242, + [SMALL_STATE(3512)] = 72303, + [SMALL_STATE(3513)] = 72364, + [SMALL_STATE(3514)] = 72425, + [SMALL_STATE(3515)] = 72486, + [SMALL_STATE(3516)] = 72547, + [SMALL_STATE(3517)] = 72608, + [SMALL_STATE(3518)] = 72669, + [SMALL_STATE(3519)] = 72744, + [SMALL_STATE(3520)] = 72805, + [SMALL_STATE(3521)] = 72866, + [SMALL_STATE(3522)] = 72927, + [SMALL_STATE(3523)] = 72988, + [SMALL_STATE(3524)] = 73049, + [SMALL_STATE(3525)] = 73110, + [SMALL_STATE(3526)] = 73171, + [SMALL_STATE(3527)] = 73232, + [SMALL_STATE(3528)] = 73301, + [SMALL_STATE(3529)] = 73362, + [SMALL_STATE(3530)] = 73423, + [SMALL_STATE(3531)] = 73534, + [SMALL_STATE(3532)] = 73595, + [SMALL_STATE(3533)] = 73690, + [SMALL_STATE(3534)] = 73751, + [SMALL_STATE(3535)] = 73844, + [SMALL_STATE(3536)] = 73949, + [SMALL_STATE(3537)] = 74020, + [SMALL_STATE(3538)] = 74081, + [SMALL_STATE(3539)] = 74142, + [SMALL_STATE(3540)] = 74203, + [SMALL_STATE(3541)] = 74264, + [SMALL_STATE(3542)] = 74353, + [SMALL_STATE(3543)] = 74414, + [SMALL_STATE(3544)] = 74479, + [SMALL_STATE(3545)] = 74540, + [SMALL_STATE(3546)] = 74605, + [SMALL_STATE(3547)] = 74666, + [SMALL_STATE(3548)] = 74731, + [SMALL_STATE(3549)] = 74796, + [SMALL_STATE(3550)] = 74871, + [SMALL_STATE(3551)] = 74932, + [SMALL_STATE(3552)] = 75007, + [SMALL_STATE(3553)] = 75068, + [SMALL_STATE(3554)] = 75129, + [SMALL_STATE(3555)] = 75190, + [SMALL_STATE(3556)] = 75251, + [SMALL_STATE(3557)] = 75312, + [SMALL_STATE(3558)] = 75373, + [SMALL_STATE(3559)] = 75434, + [SMALL_STATE(3560)] = 75495, + [SMALL_STATE(3561)] = 75556, + [SMALL_STATE(3562)] = 75625, + [SMALL_STATE(3563)] = 75686, + [SMALL_STATE(3564)] = 75747, + [SMALL_STATE(3565)] = 75808, + [SMALL_STATE(3566)] = 75869, + [SMALL_STATE(3567)] = 75946, + [SMALL_STATE(3568)] = 76045, + [SMALL_STATE(3569)] = 76106, + [SMALL_STATE(3570)] = 76171, + [SMALL_STATE(3571)] = 76232, + [SMALL_STATE(3572)] = 76319, + [SMALL_STATE(3573)] = 76402, + [SMALL_STATE(3574)] = 76463, + [SMALL_STATE(3575)] = 76524, + [SMALL_STATE(3576)] = 76593, + [SMALL_STATE(3577)] = 76654, + [SMALL_STATE(3578)] = 76715, + [SMALL_STATE(3579)] = 76780, + [SMALL_STATE(3580)] = 76841, + [SMALL_STATE(3581)] = 76902, + [SMALL_STATE(3582)] = 77009, + [SMALL_STATE(3583)] = 77083, + [SMALL_STATE(3584)] = 77143, + [SMALL_STATE(3585)] = 77203, + [SMALL_STATE(3586)] = 77277, + [SMALL_STATE(3587)] = 77341, + [SMALL_STATE(3588)] = 77445, + [SMALL_STATE(3589)] = 77505, + [SMALL_STATE(3590)] = 77565, + [SMALL_STATE(3591)] = 77625, + [SMALL_STATE(3592)] = 77685, + [SMALL_STATE(3593)] = 77751, + [SMALL_STATE(3594)] = 77811, + [SMALL_STATE(3595)] = 77871, + [SMALL_STATE(3596)] = 77937, + [SMALL_STATE(3597)] = 78001, + [SMALL_STATE(3598)] = 78157, + [SMALL_STATE(3599)] = 78217, + [SMALL_STATE(3600)] = 78279, + [SMALL_STATE(3601)] = 78339, + [SMALL_STATE(3602)] = 78399, + [SMALL_STATE(3603)] = 78465, + [SMALL_STATE(3604)] = 78525, + [SMALL_STATE(3605)] = 78589, + [SMALL_STATE(3606)] = 78649, + [SMALL_STATE(3607)] = 78763, + [SMALL_STATE(3608)] = 78919, + [SMALL_STATE(3609)] = 78987, + [SMALL_STATE(3610)] = 79095, + [SMALL_STATE(3611)] = 79159, + [SMALL_STATE(3612)] = 79227, + [SMALL_STATE(3613)] = 79287, + [SMALL_STATE(3614)] = 79347, + [SMALL_STATE(3615)] = 79415, + [SMALL_STATE(3616)] = 79475, + [SMALL_STATE(3617)] = 79537, + [SMALL_STATE(3618)] = 79607, + [SMALL_STATE(3619)] = 79669, + [SMALL_STATE(3620)] = 79729, + [SMALL_STATE(3621)] = 79789, + [SMALL_STATE(3622)] = 79857, + [SMALL_STATE(3623)] = 79917, + [SMALL_STATE(3624)] = 79977, + [SMALL_STATE(3625)] = 80049, + [SMALL_STATE(3626)] = 80111, + [SMALL_STATE(3627)] = 80267, + [SMALL_STATE(3628)] = 80327, + [SMALL_STATE(3629)] = 80387, + [SMALL_STATE(3630)] = 80491, + [SMALL_STATE(3631)] = 80647, + [SMALL_STATE(3632)] = 80755, + [SMALL_STATE(3633)] = 80911, + [SMALL_STATE(3634)] = 80971, + [SMALL_STATE(3635)] = 81031, + [SMALL_STATE(3636)] = 81091, + [SMALL_STATE(3637)] = 81153, + [SMALL_STATE(3638)] = 81257, + [SMALL_STATE(3639)] = 81317, + [SMALL_STATE(3640)] = 81377, + [SMALL_STATE(3641)] = 81443, + [SMALL_STATE(3642)] = 81503, + [SMALL_STATE(3643)] = 81659, + [SMALL_STATE(3644)] = 81719, + [SMALL_STATE(3645)] = 81779, + [SMALL_STATE(3646)] = 81839, + [SMALL_STATE(3647)] = 81899, + [SMALL_STATE(3648)] = 81959, + [SMALL_STATE(3649)] = 82019, + [SMALL_STATE(3650)] = 82079, + [SMALL_STATE(3651)] = 82145, + [SMALL_STATE(3652)] = 82205, + [SMALL_STATE(3653)] = 82265, + [SMALL_STATE(3654)] = 82331, + [SMALL_STATE(3655)] = 82391, + [SMALL_STATE(3656)] = 82451, + [SMALL_STATE(3657)] = 82511, + [SMALL_STATE(3658)] = 82571, + [SMALL_STATE(3659)] = 82651, + [SMALL_STATE(3660)] = 82729, + [SMALL_STATE(3661)] = 82789, + [SMALL_STATE(3662)] = 82849, + [SMALL_STATE(3663)] = 82909, + [SMALL_STATE(3664)] = 82991, + [SMALL_STATE(3665)] = 83051, + [SMALL_STATE(3666)] = 83123, + [SMALL_STATE(3667)] = 83183, + [SMALL_STATE(3668)] = 83243, + [SMALL_STATE(3669)] = 83303, + [SMALL_STATE(3670)] = 83363, + [SMALL_STATE(3671)] = 83431, + [SMALL_STATE(3672)] = 83515, + [SMALL_STATE(3673)] = 83575, + [SMALL_STATE(3674)] = 83661, + [SMALL_STATE(3675)] = 83721, + [SMALL_STATE(3676)] = 83811, + [SMALL_STATE(3677)] = 83903, + [SMALL_STATE(3678)] = 83999, + [SMALL_STATE(3679)] = 84099, + [SMALL_STATE(3680)] = 84173, + [SMALL_STATE(3681)] = 84249, + [SMALL_STATE(3682)] = 84309, + [SMALL_STATE(3683)] = 84369, + [SMALL_STATE(3684)] = 84429, + [SMALL_STATE(3685)] = 84489, + [SMALL_STATE(3686)] = 84549, + [SMALL_STATE(3687)] = 84705, + [SMALL_STATE(3688)] = 84765, + [SMALL_STATE(3689)] = 84839, + [SMALL_STATE(3690)] = 84913, + [SMALL_STATE(3691)] = 84979, + [SMALL_STATE(3692)] = 85039, + [SMALL_STATE(3693)] = 85099, + [SMALL_STATE(3694)] = 85159, + [SMALL_STATE(3695)] = 85219, + [SMALL_STATE(3696)] = 85279, + [SMALL_STATE(3697)] = 85347, + [SMALL_STATE(3698)] = 85451, + [SMALL_STATE(3699)] = 85511, + [SMALL_STATE(3700)] = 85571, + [SMALL_STATE(3701)] = 85643, + [SMALL_STATE(3702)] = 85711, + [SMALL_STATE(3703)] = 85771, + [SMALL_STATE(3704)] = 85831, + [SMALL_STATE(3705)] = 85891, + [SMALL_STATE(3706)] = 85999, + [SMALL_STATE(3707)] = 86063, + [SMALL_STATE(3708)] = 86219, + [SMALL_STATE(3709)] = 86279, + [SMALL_STATE(3710)] = 86343, + [SMALL_STATE(3711)] = 86403, + [SMALL_STATE(3712)] = 86559, + [SMALL_STATE(3713)] = 86619, + [SMALL_STATE(3714)] = 86679, + [SMALL_STATE(3715)] = 86755, + [SMALL_STATE(3716)] = 86819, + [SMALL_STATE(3717)] = 86923, + [SMALL_STATE(3718)] = 86991, + [SMALL_STATE(3719)] = 87051, + [SMALL_STATE(3720)] = 87111, + [SMALL_STATE(3721)] = 87171, + [SMALL_STATE(3722)] = 87327, + [SMALL_STATE(3723)] = 87387, + [SMALL_STATE(3724)] = 87447, + [SMALL_STATE(3725)] = 87507, + [SMALL_STATE(3726)] = 87663, + [SMALL_STATE(3727)] = 87754, + [SMALL_STATE(3728)] = 87813, + [SMALL_STATE(3729)] = 87872, + [SMALL_STATE(3730)] = 87931, + [SMALL_STATE(3731)] = 87990, + [SMALL_STATE(3732)] = 88049, + [SMALL_STATE(3733)] = 88108, + [SMALL_STATE(3734)] = 88175, + [SMALL_STATE(3735)] = 88234, + [SMALL_STATE(3736)] = 88293, + [SMALL_STATE(3737)] = 88358, + [SMALL_STATE(3738)] = 88417, + [SMALL_STATE(3739)] = 88490, + [SMALL_STATE(3740)] = 88591, + [SMALL_STATE(3741)] = 88650, + [SMALL_STATE(3742)] = 88717, + [SMALL_STATE(3743)] = 88776, + [SMALL_STATE(3744)] = 88843, + [SMALL_STATE(3745)] = 88902, + [SMALL_STATE(3746)] = 88961, + [SMALL_STATE(3747)] = 89034, + [SMALL_STATE(3748)] = 89093, + [SMALL_STATE(3749)] = 89162, + [SMALL_STATE(3750)] = 89221, + [SMALL_STATE(3751)] = 89280, + [SMALL_STATE(3752)] = 89339, + [SMALL_STATE(3753)] = 89398, + [SMALL_STATE(3754)] = 89473, + [SMALL_STATE(3755)] = 89542, + [SMALL_STATE(3756)] = 89605, + [SMALL_STATE(3757)] = 89670, + [SMALL_STATE(3758)] = 89729, + [SMALL_STATE(3759)] = 89796, + [SMALL_STATE(3760)] = 89905, + [SMALL_STATE(3761)] = 90010, + [SMALL_STATE(3762)] = 90069, + [SMALL_STATE(3763)] = 90128, + [SMALL_STATE(3764)] = 90187, + [SMALL_STATE(3765)] = 90250, + [SMALL_STATE(3766)] = 90351, + [SMALL_STATE(3767)] = 90422, + [SMALL_STATE(3768)] = 90523, + [SMALL_STATE(3769)] = 90582, + [SMALL_STATE(3770)] = 90641, + [SMALL_STATE(3771)] = 90700, + [SMALL_STATE(3772)] = 90759, + [SMALL_STATE(3773)] = 90864, + [SMALL_STATE(3774)] = 90961, + [SMALL_STATE(3775)] = 91020, + [SMALL_STATE(3776)] = 91093, + [SMALL_STATE(3777)] = 91152, + [SMALL_STATE(3778)] = 91211, + [SMALL_STATE(3779)] = 91312, + [SMALL_STATE(3780)] = 91373, + [SMALL_STATE(3781)] = 91436, + [SMALL_STATE(3782)] = 91495, + [SMALL_STATE(3783)] = 91600, + [SMALL_STATE(3784)] = 91659, + [SMALL_STATE(3785)] = 91722, + [SMALL_STATE(3786)] = 91823, + [SMALL_STATE(3787)] = 91888, + [SMALL_STATE(3788)] = 91961, + [SMALL_STATE(3789)] = 92020, + [SMALL_STATE(3790)] = 92091, + [SMALL_STATE(3791)] = 92150, + [SMALL_STATE(3792)] = 92209, + [SMALL_STATE(3793)] = 92268, + [SMALL_STATE(3794)] = 92327, + [SMALL_STATE(3795)] = 92386, + [SMALL_STATE(3796)] = 92445, + [SMALL_STATE(3797)] = 92508, + [SMALL_STATE(3798)] = 92567, + [SMALL_STATE(3799)] = 92628, + [SMALL_STATE(3800)] = 92697, + [SMALL_STATE(3801)] = 92762, + [SMALL_STATE(3802)] = 92863, + [SMALL_STATE(3803)] = 92926, + [SMALL_STATE(3804)] = 92985, + [SMALL_STATE(3805)] = 93048, + [SMALL_STATE(3806)] = 93107, + [SMALL_STATE(3807)] = 93166, + [SMALL_STATE(3808)] = 93259, + [SMALL_STATE(3809)] = 93318, + [SMALL_STATE(3810)] = 93377, + [SMALL_STATE(3811)] = 93478, + [SMALL_STATE(3812)] = 93537, + [SMALL_STATE(3813)] = 93638, + [SMALL_STATE(3814)] = 93697, + [SMALL_STATE(3815)] = 93756, + [SMALL_STATE(3816)] = 93815, + [SMALL_STATE(3817)] = 93878, + [SMALL_STATE(3818)] = 93937, + [SMALL_STATE(3819)] = 94002, + [SMALL_STATE(3820)] = 94103, + [SMALL_STATE(3821)] = 94174, + [SMALL_STATE(3822)] = 94233, + [SMALL_STATE(3823)] = 94292, + [SMALL_STATE(3824)] = 94351, + [SMALL_STATE(3825)] = 94412, + [SMALL_STATE(3826)] = 94479, + [SMALL_STATE(3827)] = 94538, + [SMALL_STATE(3828)] = 94639, + [SMALL_STATE(3829)] = 94698, + [SMALL_STATE(3830)] = 94757, + [SMALL_STATE(3831)] = 94858, + [SMALL_STATE(3832)] = 94959, + [SMALL_STATE(3833)] = 95020, + [SMALL_STATE(3834)] = 95079, + [SMALL_STATE(3835)] = 95138, + [SMALL_STATE(3836)] = 95197, + [SMALL_STATE(3837)] = 95256, + [SMALL_STATE(3838)] = 95315, + [SMALL_STATE(3839)] = 95374, + [SMALL_STATE(3840)] = 95433, + [SMALL_STATE(3841)] = 95494, + [SMALL_STATE(3842)] = 95553, + [SMALL_STATE(3843)] = 95612, + [SMALL_STATE(3844)] = 95671, + [SMALL_STATE(3845)] = 95730, + [SMALL_STATE(3846)] = 95789, + [SMALL_STATE(3847)] = 95890, + [SMALL_STATE(3848)] = 95949, + [SMALL_STATE(3849)] = 96050, + [SMALL_STATE(3850)] = 96137, + [SMALL_STATE(3851)] = 96198, + [SMALL_STATE(3852)] = 96283, + [SMALL_STATE(3853)] = 96342, + [SMALL_STATE(3854)] = 96401, + [SMALL_STATE(3855)] = 96460, + [SMALL_STATE(3856)] = 96519, + [SMALL_STATE(3857)] = 96578, + [SMALL_STATE(3858)] = 96637, + [SMALL_STATE(3859)] = 96696, + [SMALL_STATE(3860)] = 96755, + [SMALL_STATE(3861)] = 96814, + [SMALL_STATE(3862)] = 96873, + [SMALL_STATE(3863)] = 96932, + [SMALL_STATE(3864)] = 97037, + [SMALL_STATE(3865)] = 97096, + [SMALL_STATE(3866)] = 97155, + [SMALL_STATE(3867)] = 97214, + [SMALL_STATE(3868)] = 97277, + [SMALL_STATE(3869)] = 97336, + [SMALL_STATE(3870)] = 97397, + [SMALL_STATE(3871)] = 97458, + [SMALL_STATE(3872)] = 97517, + [SMALL_STATE(3873)] = 97578, + [SMALL_STATE(3874)] = 97659, + [SMALL_STATE(3875)] = 97720, + [SMALL_STATE(3876)] = 97779, + [SMALL_STATE(3877)] = 97838, + [SMALL_STATE(3878)] = 97897, + [SMALL_STATE(3879)] = 97956, + [SMALL_STATE(3880)] = 98017, + [SMALL_STATE(3881)] = 98076, + [SMALL_STATE(3882)] = 98135, + [SMALL_STATE(3883)] = 98236, + [SMALL_STATE(3884)] = 98295, + [SMALL_STATE(3885)] = 98358, + [SMALL_STATE(3886)] = 98419, + [SMALL_STATE(3887)] = 98480, + [SMALL_STATE(3888)] = 98581, + [SMALL_STATE(3889)] = 98640, + [SMALL_STATE(3890)] = 98699, + [SMALL_STATE(3891)] = 98800, + [SMALL_STATE(3892)] = 98859, + [SMALL_STATE(3893)] = 98918, + [SMALL_STATE(3894)] = 98977, + [SMALL_STATE(3895)] = 99036, + [SMALL_STATE(3896)] = 99095, + [SMALL_STATE(3897)] = 99154, + [SMALL_STATE(3898)] = 99213, + [SMALL_STATE(3899)] = 99272, + [SMALL_STATE(3900)] = 99331, + [SMALL_STATE(3901)] = 99408, + [SMALL_STATE(3902)] = 99467, + [SMALL_STATE(3903)] = 99546, + [SMALL_STATE(3904)] = 99609, + [SMALL_STATE(3905)] = 99668, + [SMALL_STATE(3906)] = 99727, + [SMALL_STATE(3907)] = 99786, + [SMALL_STATE(3908)] = 99845, + [SMALL_STATE(3909)] = 99946, + [SMALL_STATE(3910)] = 100005, + [SMALL_STATE(3911)] = 100064, + [SMALL_STATE(3912)] = 100123, + [SMALL_STATE(3913)] = 100182, + [SMALL_STATE(3914)] = 100241, + [SMALL_STATE(3915)] = 100300, + [SMALL_STATE(3916)] = 100359, + [SMALL_STATE(3917)] = 100422, + [SMALL_STATE(3918)] = 100481, + [SMALL_STATE(3919)] = 100540, + [SMALL_STATE(3920)] = 100599, + [SMALL_STATE(3921)] = 100658, + [SMALL_STATE(3922)] = 100717, + [SMALL_STATE(3923)] = 100776, + [SMALL_STATE(3924)] = 100877, + [SMALL_STATE(3925)] = 100936, + [SMALL_STATE(3926)] = 101037, + [SMALL_STATE(3927)] = 101096, + [SMALL_STATE(3928)] = 101169, + [SMALL_STATE(3929)] = 101228, + [SMALL_STATE(3930)] = 101287, + [SMALL_STATE(3931)] = 101392, + [SMALL_STATE(3932)] = 101451, + [SMALL_STATE(3933)] = 101510, + [SMALL_STATE(3934)] = 101573, + [SMALL_STATE(3935)] = 101632, + [SMALL_STATE(3936)] = 101691, + [SMALL_STATE(3937)] = 101750, + [SMALL_STATE(3938)] = 101859, + [SMALL_STATE(3939)] = 101964, + [SMALL_STATE(3940)] = 102073, + [SMALL_STATE(3941)] = 102136, + [SMALL_STATE(3942)] = 102195, + [SMALL_STATE(3943)] = 102254, + [SMALL_STATE(3944)] = 102313, + [SMALL_STATE(3945)] = 102414, + [SMALL_STATE(3946)] = 102473, + [SMALL_STATE(3947)] = 102532, + [SMALL_STATE(3948)] = 102633, + [SMALL_STATE(3949)] = 102734, + [SMALL_STATE(3950)] = 102793, + [SMALL_STATE(3951)] = 102894, + [SMALL_STATE(3952)] = 102955, + [SMALL_STATE(3953)] = 103014, + [SMALL_STATE(3954)] = 103073, + [SMALL_STATE(3955)] = 103132, + [SMALL_STATE(3956)] = 103199, + [SMALL_STATE(3957)] = 103258, + [SMALL_STATE(3958)] = 103317, + [SMALL_STATE(3959)] = 103376, + [SMALL_STATE(3960)] = 103435, + [SMALL_STATE(3961)] = 103494, + [SMALL_STATE(3962)] = 103555, + [SMALL_STATE(3963)] = 103614, + [SMALL_STATE(3964)] = 103673, + [SMALL_STATE(3965)] = 103732, + [SMALL_STATE(3966)] = 103791, + [SMALL_STATE(3967)] = 103852, + [SMALL_STATE(3968)] = 103913, + [SMALL_STATE(3969)] = 104014, + [SMALL_STATE(3970)] = 104073, + [SMALL_STATE(3971)] = 104135, + [SMALL_STATE(3972)] = 104193, + [SMALL_STATE(3973)] = 104265, + [SMALL_STATE(3974)] = 104337, + [SMALL_STATE(3975)] = 104395, + [SMALL_STATE(3976)] = 104467, + [SMALL_STATE(3977)] = 104525, + [SMALL_STATE(3978)] = 104583, + [SMALL_STATE(3979)] = 104653, + [SMALL_STATE(3980)] = 104735, + [SMALL_STATE(3981)] = 104793, + [SMALL_STATE(3982)] = 104895, + [SMALL_STATE(3983)] = 104953, + [SMALL_STATE(3984)] = 105023, + [SMALL_STATE(3985)] = 105105, + [SMALL_STATE(3986)] = 105163, + [SMALL_STATE(3987)] = 105225, + [SMALL_STATE(3988)] = 105287, + [SMALL_STATE(3989)] = 105345, + [SMALL_STATE(3990)] = 105407, + [SMALL_STATE(3991)] = 105483, + [SMALL_STATE(3992)] = 105541, + [SMALL_STATE(3993)] = 105599, + [SMALL_STATE(3994)] = 105661, + [SMALL_STATE(3995)] = 105719, + [SMALL_STATE(3996)] = 105777, + [SMALL_STATE(3997)] = 105835, + [SMALL_STATE(3998)] = 105893, + [SMALL_STATE(3999)] = 105951, + [SMALL_STATE(4000)] = 106009, + [SMALL_STATE(4001)] = 106071, + [SMALL_STATE(4002)] = 106129, + [SMALL_STATE(4003)] = 106187, + [SMALL_STATE(4004)] = 106245, + [SMALL_STATE(4005)] = 106303, + [SMALL_STATE(4006)] = 106365, + [SMALL_STATE(4007)] = 106427, + [SMALL_STATE(4008)] = 106485, + [SMALL_STATE(4009)] = 106559, + [SMALL_STATE(4010)] = 106617, + [SMALL_STATE(4011)] = 106719, + [SMALL_STATE(4012)] = 106777, + [SMALL_STATE(4013)] = 106835, + [SMALL_STATE(4014)] = 106917, + [SMALL_STATE(4015)] = 106975, + [SMALL_STATE(4016)] = 107033, + [SMALL_STATE(4017)] = 107095, + [SMALL_STATE(4018)] = 107199, + [SMALL_STATE(4019)] = 107265, + [SMALL_STATE(4020)] = 107323, + [SMALL_STATE(4021)] = 107381, + [SMALL_STATE(4022)] = 107463, + [SMALL_STATE(4023)] = 107521, + [SMALL_STATE(4024)] = 107579, + [SMALL_STATE(4025)] = 107637, + [SMALL_STATE(4026)] = 107695, + [SMALL_STATE(4027)] = 107761, + [SMALL_STATE(4028)] = 107863, + [SMALL_STATE(4029)] = 107921, + [SMALL_STATE(4030)] = 107979, + [SMALL_STATE(4031)] = 108037, + [SMALL_STATE(4032)] = 108095, + [SMALL_STATE(4033)] = 108153, + [SMALL_STATE(4034)] = 108211, + [SMALL_STATE(4035)] = 108269, + [SMALL_STATE(4036)] = 108327, + [SMALL_STATE(4037)] = 108385, + [SMALL_STATE(4038)] = 108443, + [SMALL_STATE(4039)] = 108507, + [SMALL_STATE(4040)] = 108589, + [SMALL_STATE(4041)] = 108647, + [SMALL_STATE(4042)] = 108705, + [SMALL_STATE(4043)] = 108763, + [SMALL_STATE(4044)] = 108821, + [SMALL_STATE(4045)] = 108879, + [SMALL_STATE(4046)] = 108937, + [SMALL_STATE(4047)] = 108999, + [SMALL_STATE(4048)] = 109081, + [SMALL_STATE(4049)] = 109139, + [SMALL_STATE(4050)] = 109197, + [SMALL_STATE(4051)] = 109255, + [SMALL_STATE(4052)] = 109313, + [SMALL_STATE(4053)] = 109371, + [SMALL_STATE(4054)] = 109433, + [SMALL_STATE(4055)] = 109493, + [SMALL_STATE(4056)] = 109551, + [SMALL_STATE(4057)] = 109609, + [SMALL_STATE(4058)] = 109667, + [SMALL_STATE(4059)] = 109725, + [SMALL_STATE(4060)] = 109789, + [SMALL_STATE(4061)] = 109853, + [SMALL_STATE(4062)] = 109925, + [SMALL_STATE(4063)] = 109983, + [SMALL_STATE(4064)] = 110041, + [SMALL_STATE(4065)] = 110147, + [SMALL_STATE(4066)] = 110205, + [SMALL_STATE(4067)] = 110263, + [SMALL_STATE(4068)] = 110321, + [SMALL_STATE(4069)] = 110385, + [SMALL_STATE(4070)] = 110489, + [SMALL_STATE(4071)] = 110547, + [SMALL_STATE(4072)] = 110653, + [SMALL_STATE(4073)] = 110715, + [SMALL_STATE(4074)] = 110779, + [SMALL_STATE(4075)] = 110837, + [SMALL_STATE(4076)] = 110899, + [SMALL_STATE(4077)] = 110957, + [SMALL_STATE(4078)] = 111031, + [SMALL_STATE(4079)] = 111089, + [SMALL_STATE(4080)] = 111155, + [SMALL_STATE(4081)] = 111213, + [SMALL_STATE(4082)] = 111271, + [SMALL_STATE(4083)] = 111329, + [SMALL_STATE(4084)] = 111391, + [SMALL_STATE(4085)] = 111449, + [SMALL_STATE(4086)] = 111507, + [SMALL_STATE(4087)] = 111581, + [SMALL_STATE(4088)] = 111643, + [SMALL_STATE(4089)] = 111701, + [SMALL_STATE(4090)] = 111759, + [SMALL_STATE(4091)] = 111821, + [SMALL_STATE(4092)] = 111895, + [SMALL_STATE(4093)] = 111967, + [SMALL_STATE(4094)] = 112067, + [SMALL_STATE(4095)] = 112165, + [SMALL_STATE(4096)] = 112259, + [SMALL_STATE(4097)] = 112349, + [SMALL_STATE(4098)] = 112435, + [SMALL_STATE(4099)] = 112517, + [SMALL_STATE(4100)] = 112579, + [SMALL_STATE(4101)] = 112663, + [SMALL_STATE(4102)] = 112743, + [SMALL_STATE(4103)] = 112845, + [SMALL_STATE(4104)] = 112921, + [SMALL_STATE(4105)] = 113003, + [SMALL_STATE(4106)] = 113061, + [SMALL_STATE(4107)] = 113123, + [SMALL_STATE(4108)] = 113201, + [SMALL_STATE(4109)] = 113259, + [SMALL_STATE(4110)] = 113321, + [SMALL_STATE(4111)] = 113383, + [SMALL_STATE(4112)] = 113441, + [SMALL_STATE(4113)] = 113547, + [SMALL_STATE(4114)] = 113605, + [SMALL_STATE(4115)] = 113677, + [SMALL_STATE(4116)] = 113735, + [SMALL_STATE(4117)] = 113793, + [SMALL_STATE(4118)] = 113851, + [SMALL_STATE(4119)] = 113909, + [SMALL_STATE(4120)] = 113967, + [SMALL_STATE(4121)] = 114025, + [SMALL_STATE(4122)] = 114087, + [SMALL_STATE(4123)] = 114145, + [SMALL_STATE(4124)] = 114227, + [SMALL_STATE(4125)] = 114289, + [SMALL_STATE(4126)] = 114347, + [SMALL_STATE(4127)] = 114405, + [SMALL_STATE(4128)] = 114463, + [SMALL_STATE(4129)] = 114532, + [SMALL_STATE(4130)] = 114589, + [SMALL_STATE(4131)] = 114648, + [SMALL_STATE(4132)] = 114751, + [SMALL_STATE(4133)] = 114820, + [SMALL_STATE(4134)] = 114923, + [SMALL_STATE(4135)] = 114988, + [SMALL_STATE(4136)] = 115049, + [SMALL_STATE(4137)] = 115152, + [SMALL_STATE(4138)] = 115215, + [SMALL_STATE(4139)] = 115282, + [SMALL_STATE(4140)] = 115339, + [SMALL_STATE(4141)] = 115408, + [SMALL_STATE(4142)] = 115467, + [SMALL_STATE(4143)] = 115570, + [SMALL_STATE(4144)] = 115635, + [SMALL_STATE(4145)] = 115702, + [SMALL_STATE(4146)] = 115765, + [SMALL_STATE(4147)] = 115826, + [SMALL_STATE(4148)] = 115889, + [SMALL_STATE(4149)] = 115946, + [SMALL_STATE(4150)] = 116003, + [SMALL_STATE(4151)] = 116106, + [SMALL_STATE(4152)] = 116163, + [SMALL_STATE(4153)] = 116266, + [SMALL_STATE(4154)] = 116325, + [SMALL_STATE(4155)] = 116384, + [SMALL_STATE(4156)] = 116441, + [SMALL_STATE(4157)] = 116502, + [SMALL_STATE(4158)] = 116559, + [SMALL_STATE(4159)] = 116620, + [SMALL_STATE(4160)] = 116677, + [SMALL_STATE(4161)] = 116780, + [SMALL_STATE(4162)] = 116837, + [SMALL_STATE(4163)] = 116894, + [SMALL_STATE(4164)] = 116953, + [SMALL_STATE(4165)] = 117010, + [SMALL_STATE(4166)] = 117067, + [SMALL_STATE(4167)] = 117124, + [SMALL_STATE(4168)] = 117181, + [SMALL_STATE(4169)] = 117284, + [SMALL_STATE(4170)] = 117341, + [SMALL_STATE(4171)] = 117398, + [SMALL_STATE(4172)] = 117467, + [SMALL_STATE(4173)] = 117524, + [SMALL_STATE(4174)] = 117596, + [SMALL_STATE(4175)] = 117652, + [SMALL_STATE(4176)] = 117754, + [SMALL_STATE(4177)] = 117810, + [SMALL_STATE(4178)] = 117872, + [SMALL_STATE(4179)] = 117928, + [SMALL_STATE(4180)] = 117984, + [SMALL_STATE(4181)] = 118046, + [SMALL_STATE(4182)] = 118108, + [SMALL_STATE(4183)] = 118168, + [SMALL_STATE(4184)] = 118224, + [SMALL_STATE(4185)] = 118284, + [SMALL_STATE(4186)] = 118354, + [SMALL_STATE(4187)] = 118428, + [SMALL_STATE(4188)] = 118484, + [SMALL_STATE(4189)] = 118586, + [SMALL_STATE(4190)] = 118642, + [SMALL_STATE(4191)] = 118698, + [SMALL_STATE(4192)] = 118754, + [SMALL_STATE(4193)] = 118810, + [SMALL_STATE(4194)] = 118866, + [SMALL_STATE(4195)] = 118922, + [SMALL_STATE(4196)] = 118978, + [SMALL_STATE(4197)] = 119034, + [SMALL_STATE(4198)] = 119090, + [SMALL_STATE(4199)] = 119146, + [SMALL_STATE(4200)] = 119220, + [SMALL_STATE(4201)] = 119276, + [SMALL_STATE(4202)] = 119336, + [SMALL_STATE(4203)] = 119392, + [SMALL_STATE(4204)] = 119448, + [SMALL_STATE(4205)] = 119508, + [SMALL_STATE(4206)] = 119568, + [SMALL_STATE(4207)] = 119628, + [SMALL_STATE(4208)] = 119702, + [SMALL_STATE(4209)] = 119776, + [SMALL_STATE(4210)] = 119832, + [SMALL_STATE(4211)] = 119888, + [SMALL_STATE(4212)] = 119944, + [SMALL_STATE(4213)] = 120014, + [SMALL_STATE(4214)] = 120070, + [SMALL_STATE(4215)] = 120126, + [SMALL_STATE(4216)] = 120186, + [SMALL_STATE(4217)] = 120246, + [SMALL_STATE(4218)] = 120306, + [SMALL_STATE(4219)] = 120378, + [SMALL_STATE(4220)] = 120446, + [SMALL_STATE(4221)] = 120502, + [SMALL_STATE(4222)] = 120558, + [SMALL_STATE(4223)] = 120614, + [SMALL_STATE(4224)] = 120682, + [SMALL_STATE(4225)] = 120738, + [SMALL_STATE(4226)] = 120794, + [SMALL_STATE(4227)] = 120866, + [SMALL_STATE(4228)] = 120922, + [SMALL_STATE(4229)] = 120988, + [SMALL_STATE(4230)] = 121090, + [SMALL_STATE(4231)] = 121164, + [SMALL_STATE(4232)] = 121220, + [SMALL_STATE(4233)] = 121276, + [SMALL_STATE(4234)] = 121340, + [SMALL_STATE(4235)] = 121398, + [SMALL_STATE(4236)] = 121454, + [SMALL_STATE(4237)] = 121516, + [SMALL_STATE(4238)] = 121572, + [SMALL_STATE(4239)] = 121628, + [SMALL_STATE(4240)] = 121684, + [SMALL_STATE(4241)] = 121740, + [SMALL_STATE(4242)] = 121796, + [SMALL_STATE(4243)] = 121852, + [SMALL_STATE(4244)] = 121922, + [SMALL_STATE(4245)] = 121996, + [SMALL_STATE(4246)] = 122066, + [SMALL_STATE(4247)] = 122122, + [SMALL_STATE(4248)] = 122178, + [SMALL_STATE(4249)] = 122234, + [SMALL_STATE(4250)] = 122308, + [SMALL_STATE(4251)] = 122364, + [SMALL_STATE(4252)] = 122436, + [SMALL_STATE(4253)] = 122492, + [SMALL_STATE(4254)] = 122548, + [SMALL_STATE(4255)] = 122604, + [SMALL_STATE(4256)] = 122660, + [SMALL_STATE(4257)] = 122716, + [SMALL_STATE(4258)] = 122772, + [SMALL_STATE(4259)] = 122828, + [SMALL_STATE(4260)] = 122884, + [SMALL_STATE(4261)] = 122940, + [SMALL_STATE(4262)] = 122996, + [SMALL_STATE(4263)] = 123052, + [SMALL_STATE(4264)] = 123108, + [SMALL_STATE(4265)] = 123164, + [SMALL_STATE(4266)] = 123220, + [SMALL_STATE(4267)] = 123276, + [SMALL_STATE(4268)] = 123378, + [SMALL_STATE(4269)] = 123434, + [SMALL_STATE(4270)] = 123490, + [SMALL_STATE(4271)] = 123546, + [SMALL_STATE(4272)] = 123602, + [SMALL_STATE(4273)] = 123658, + [SMALL_STATE(4274)] = 123732, + [SMALL_STATE(4275)] = 123806, + [SMALL_STATE(4276)] = 123862, + [SMALL_STATE(4277)] = 123918, + [SMALL_STATE(4278)] = 123974, + [SMALL_STATE(4279)] = 124030, + [SMALL_STATE(4280)] = 124086, + [SMALL_STATE(4281)] = 124142, + [SMALL_STATE(4282)] = 124198, + [SMALL_STATE(4283)] = 124262, + [SMALL_STATE(4284)] = 124318, + [SMALL_STATE(4285)] = 124373, + [SMALL_STATE(4286)] = 124440, + [SMALL_STATE(4287)] = 124499, + [SMALL_STATE(4288)] = 124554, + [SMALL_STATE(4289)] = 124609, + [SMALL_STATE(4290)] = 124664, + [SMALL_STATE(4291)] = 124719, + [SMALL_STATE(4292)] = 124774, + [SMALL_STATE(4293)] = 124829, + [SMALL_STATE(4294)] = 124884, + [SMALL_STATE(4295)] = 124939, + [SMALL_STATE(4296)] = 125040, + [SMALL_STATE(4297)] = 125095, + [SMALL_STATE(4298)] = 125196, + [SMALL_STATE(4299)] = 125251, + [SMALL_STATE(4300)] = 125306, + [SMALL_STATE(4301)] = 125369, + [SMALL_STATE(4302)] = 125424, + [SMALL_STATE(4303)] = 125491, + [SMALL_STATE(4304)] = 125548, + [SMALL_STATE(4305)] = 125605, + [SMALL_STATE(4306)] = 125660, + [SMALL_STATE(4307)] = 125717, + [SMALL_STATE(4308)] = 125772, + [SMALL_STATE(4309)] = 125827, + [SMALL_STATE(4310)] = 125898, + [SMALL_STATE(4311)] = 125953, + [SMALL_STATE(4312)] = 126008, + [SMALL_STATE(4313)] = 126063, + [SMALL_STATE(4314)] = 126126, + [SMALL_STATE(4315)] = 126181, + [SMALL_STATE(4316)] = 126236, + [SMALL_STATE(4317)] = 126291, + [SMALL_STATE(4318)] = 126354, + [SMALL_STATE(4319)] = 126409, + [SMALL_STATE(4320)] = 126464, + [SMALL_STATE(4321)] = 126529, + [SMALL_STATE(4322)] = 126584, + [SMALL_STATE(4323)] = 126639, + [SMALL_STATE(4324)] = 126702, + [SMALL_STATE(4325)] = 126757, + [SMALL_STATE(4326)] = 126824, + [SMALL_STATE(4327)] = 126879, + [SMALL_STATE(4328)] = 126934, + [SMALL_STATE(4329)] = 126989, + [SMALL_STATE(4330)] = 127044, + [SMALL_STATE(4331)] = 127113, + [SMALL_STATE(4332)] = 127168, + [SMALL_STATE(4333)] = 127223, + [SMALL_STATE(4334)] = 127278, + [SMALL_STATE(4335)] = 127333, + [SMALL_STATE(4336)] = 127388, + [SMALL_STATE(4337)] = 127451, + [SMALL_STATE(4338)] = 127518, + [SMALL_STATE(4339)] = 127585, + [SMALL_STATE(4340)] = 127640, + [SMALL_STATE(4341)] = 127695, + [SMALL_STATE(4342)] = 127750, + [SMALL_STATE(4343)] = 127805, + [SMALL_STATE(4344)] = 127860, + [SMALL_STATE(4345)] = 127915, + [SMALL_STATE(4346)] = 127970, + [SMALL_STATE(4347)] = 128028, + [SMALL_STATE(4348)] = 128086, + [SMALL_STATE(4349)] = 128146, + [SMALL_STATE(4350)] = 128204, + [SMALL_STATE(4351)] = 128262, + [SMALL_STATE(4352)] = 128320, + [SMALL_STATE(4353)] = 128390, + [SMALL_STATE(4354)] = 128448, + [SMALL_STATE(4355)] = 128506, + [SMALL_STATE(4356)] = 128564, + [SMALL_STATE(4357)] = 128622, + [SMALL_STATE(4358)] = 128692, + [SMALL_STATE(4359)] = 128750, + [SMALL_STATE(4360)] = 128810, + [SMALL_STATE(4361)] = 128880, + [SMALL_STATE(4362)] = 128938, + [SMALL_STATE(4363)] = 128996, + [SMALL_STATE(4364)] = 129054, + [SMALL_STATE(4365)] = 129112, + [SMALL_STATE(4366)] = 129170, + [SMALL_STATE(4367)] = 129228, + [SMALL_STATE(4368)] = 129298, + [SMALL_STATE(4369)] = 129356, + [SMALL_STATE(4370)] = 129414, + [SMALL_STATE(4371)] = 129472, + [SMALL_STATE(4372)] = 129530, + [SMALL_STATE(4373)] = 129588, + [SMALL_STATE(4374)] = 129658, + [SMALL_STATE(4375)] = 129716, + [SMALL_STATE(4376)] = 129774, + [SMALL_STATE(4377)] = 129832, + [SMALL_STATE(4378)] = 129930, + [SMALL_STATE(4379)] = 129988, + [SMALL_STATE(4380)] = 130046, + [SMALL_STATE(4381)] = 130104, + [SMALL_STATE(4382)] = 130162, + [SMALL_STATE(4383)] = 130220, + [SMALL_STATE(4384)] = 130280, + [SMALL_STATE(4385)] = 130350, + [SMALL_STATE(4386)] = 130408, + [SMALL_STATE(4387)] = 130466, + [SMALL_STATE(4388)] = 130530, + [SMALL_STATE(4389)] = 130600, + [SMALL_STATE(4390)] = 130658, + [SMALL_STATE(4391)] = 130718, + [SMALL_STATE(4392)] = 130776, + [SMALL_STATE(4393)] = 130834, + [SMALL_STATE(4394)] = 130892, + [SMALL_STATE(4395)] = 130962, + [SMALL_STATE(4396)] = 131016, + [SMALL_STATE(4397)] = 131076, + [SMALL_STATE(4398)] = 131136, + [SMALL_STATE(4399)] = 131194, + [SMALL_STATE(4400)] = 131289, + [SMALL_STATE(4401)] = 131384, + [SMALL_STATE(4402)] = 131483, + [SMALL_STATE(4403)] = 131578, + [SMALL_STATE(4404)] = 131673, + [SMALL_STATE(4405)] = 131768, + [SMALL_STATE(4406)] = 131863, + [SMALL_STATE(4407)] = 131958, + [SMALL_STATE(4408)] = 132053, + [SMALL_STATE(4409)] = 132148, + [SMALL_STATE(4410)] = 132243, + [SMALL_STATE(4411)] = 132338, + [SMALL_STATE(4412)] = 132433, + [SMALL_STATE(4413)] = 132528, + [SMALL_STATE(4414)] = 132581, + [SMALL_STATE(4415)] = 132634, + [SMALL_STATE(4416)] = 132729, + [SMALL_STATE(4417)] = 132828, + [SMALL_STATE(4418)] = 132923, + [SMALL_STATE(4419)] = 132976, + [SMALL_STATE(4420)] = 133071, + [SMALL_STATE(4421)] = 133166, + [SMALL_STATE(4422)] = 133261, + [SMALL_STATE(4423)] = 133318, + [SMALL_STATE(4424)] = 133413, + [SMALL_STATE(4425)] = 133508, + [SMALL_STATE(4426)] = 133603, + [SMALL_STATE(4427)] = 133702, + [SMALL_STATE(4428)] = 133797, + [SMALL_STATE(4429)] = 133892, + [SMALL_STATE(4430)] = 133955, + [SMALL_STATE(4431)] = 134050, + [SMALL_STATE(4432)] = 134145, + [SMALL_STATE(4433)] = 134240, + [SMALL_STATE(4434)] = 134335, + [SMALL_STATE(4435)] = 134430, + [SMALL_STATE(4436)] = 134525, + [SMALL_STATE(4437)] = 134578, + [SMALL_STATE(4438)] = 134673, + [SMALL_STATE(4439)] = 134734, + [SMALL_STATE(4440)] = 134829, + [SMALL_STATE(4441)] = 134924, + [SMALL_STATE(4442)] = 135019, + [SMALL_STATE(4443)] = 135114, + [SMALL_STATE(4444)] = 135167, + [SMALL_STATE(4445)] = 135262, + [SMALL_STATE(4446)] = 135357, + [SMALL_STATE(4447)] = 135410, + [SMALL_STATE(4448)] = 135463, + [SMALL_STATE(4449)] = 135558, + [SMALL_STATE(4450)] = 135617, + [SMALL_STATE(4451)] = 135670, + [SMALL_STATE(4452)] = 135765, + [SMALL_STATE(4453)] = 135860, + [SMALL_STATE(4454)] = 135919, + [SMALL_STATE(4455)] = 136014, + [SMALL_STATE(4456)] = 136109, + [SMALL_STATE(4457)] = 136162, + [SMALL_STATE(4458)] = 136257, + [SMALL_STATE(4459)] = 136324, + [SMALL_STATE(4460)] = 136419, + [SMALL_STATE(4461)] = 136514, + [SMALL_STATE(4462)] = 136609, + [SMALL_STATE(4463)] = 136704, + [SMALL_STATE(4464)] = 136799, + [SMALL_STATE(4465)] = 136894, + [SMALL_STATE(4466)] = 136989, + [SMALL_STATE(4467)] = 137084, + [SMALL_STATE(4468)] = 137137, + [SMALL_STATE(4469)] = 137232, + [SMALL_STATE(4470)] = 137327, + [SMALL_STATE(4471)] = 137382, + [SMALL_STATE(4472)] = 137443, + [SMALL_STATE(4473)] = 137538, + [SMALL_STATE(4474)] = 137593, + [SMALL_STATE(4475)] = 137688, + [SMALL_STATE(4476)] = 137783, + [SMALL_STATE(4477)] = 137878, + [SMALL_STATE(4478)] = 137973, + [SMALL_STATE(4479)] = 138068, + [SMALL_STATE(4480)] = 138163, + [SMALL_STATE(4481)] = 138258, + [SMALL_STATE(4482)] = 138353, + [SMALL_STATE(4483)] = 138448, + [SMALL_STATE(4484)] = 138543, + [SMALL_STATE(4485)] = 138638, + [SMALL_STATE(4486)] = 138733, + [SMALL_STATE(4487)] = 138828, + [SMALL_STATE(4488)] = 138893, + [SMALL_STATE(4489)] = 138988, + [SMALL_STATE(4490)] = 139083, + [SMALL_STATE(4491)] = 139178, + [SMALL_STATE(4492)] = 139273, + [SMALL_STATE(4493)] = 139368, + [SMALL_STATE(4494)] = 139463, + [SMALL_STATE(4495)] = 139558, + [SMALL_STATE(4496)] = 139617, + [SMALL_STATE(4497)] = 139682, + [SMALL_STATE(4498)] = 139777, + [SMALL_STATE(4499)] = 139876, + [SMALL_STATE(4500)] = 139971, + [SMALL_STATE(4501)] = 140066, + [SMALL_STATE(4502)] = 140161, + [SMALL_STATE(4503)] = 140256, + [SMALL_STATE(4504)] = 140351, + [SMALL_STATE(4505)] = 140446, + [SMALL_STATE(4506)] = 140541, + [SMALL_STATE(4507)] = 140594, + [SMALL_STATE(4508)] = 140689, + [SMALL_STATE(4509)] = 140741, + [SMALL_STATE(4510)] = 140793, + [SMALL_STATE(4511)] = 140845, + [SMALL_STATE(4512)] = 140909, + [SMALL_STATE(4513)] = 141001, + [SMALL_STATE(4514)] = 141053, + [SMALL_STATE(4515)] = 141105, + [SMALL_STATE(4516)] = 141157, + [SMALL_STATE(4517)] = 141209, + [SMALL_STATE(4518)] = 141261, + [SMALL_STATE(4519)] = 141329, + [SMALL_STATE(4520)] = 141397, + [SMALL_STATE(4521)] = 141455, + [SMALL_STATE(4522)] = 141507, + [SMALL_STATE(4523)] = 141599, + [SMALL_STATE(4524)] = 141655, + [SMALL_STATE(4525)] = 141707, + [SMALL_STATE(4526)] = 141759, + [SMALL_STATE(4527)] = 141811, + [SMALL_STATE(4528)] = 141879, + [SMALL_STATE(4529)] = 141935, + [SMALL_STATE(4530)] = 141987, + [SMALL_STATE(4531)] = 142039, + [SMALL_STATE(4532)] = 142091, + [SMALL_STATE(4533)] = 142183, + [SMALL_STATE(4534)] = 142235, + [SMALL_STATE(4535)] = 142287, + [SMALL_STATE(4536)] = 142339, + [SMALL_STATE(4537)] = 142403, + [SMALL_STATE(4538)] = 142459, + [SMALL_STATE(4539)] = 142511, + [SMALL_STATE(4540)] = 142603, + [SMALL_STATE(4541)] = 142655, + [SMALL_STATE(4542)] = 142707, + [SMALL_STATE(4543)] = 142799, + [SMALL_STATE(4544)] = 142851, + [SMALL_STATE(4545)] = 142943, + [SMALL_STATE(4546)] = 142999, + [SMALL_STATE(4547)] = 143055, + [SMALL_STATE(4548)] = 143147, + [SMALL_STATE(4549)] = 143199, + [SMALL_STATE(4550)] = 143255, + [SMALL_STATE(4551)] = 143307, + [SMALL_STATE(4552)] = 143371, + [SMALL_STATE(4553)] = 143423, + [SMALL_STATE(4554)] = 143479, + [SMALL_STATE(4555)] = 143531, + [SMALL_STATE(4556)] = 143587, + [SMALL_STATE(4557)] = 143639, + [SMALL_STATE(4558)] = 143691, + [SMALL_STATE(4559)] = 143743, + [SMALL_STATE(4560)] = 143835, + [SMALL_STATE(4561)] = 143887, + [SMALL_STATE(4562)] = 143979, + [SMALL_STATE(4563)] = 144071, + [SMALL_STATE(4564)] = 144163, + [SMALL_STATE(4565)] = 144215, + [SMALL_STATE(4566)] = 144307, + [SMALL_STATE(4567)] = 144363, + [SMALL_STATE(4568)] = 144427, + [SMALL_STATE(4569)] = 144483, + [SMALL_STATE(4570)] = 144551, + [SMALL_STATE(4571)] = 144607, + [SMALL_STATE(4572)] = 144699, + [SMALL_STATE(4573)] = 144755, + [SMALL_STATE(4574)] = 144823, + [SMALL_STATE(4575)] = 144915, + [SMALL_STATE(4576)] = 145007, + [SMALL_STATE(4577)] = 145092, + [SMALL_STATE(4578)] = 145177, + [SMALL_STATE(4579)] = 145272, + [SMALL_STATE(4580)] = 145363, + [SMALL_STATE(4581)] = 145452, + [SMALL_STATE(4582)] = 145503, + [SMALL_STATE(4583)] = 145586, + [SMALL_STATE(4584)] = 145665, + [SMALL_STATE(4585)] = 145740, + [SMALL_STATE(4586)] = 145791, + [SMALL_STATE(4587)] = 145890, + [SMALL_STATE(4588)] = 145975, + [SMALL_STATE(4589)] = 146032, + [SMALL_STATE(4590)] = 146117, + [SMALL_STATE(4591)] = 146170, + [SMALL_STATE(4592)] = 146255, + [SMALL_STATE(4593)] = 146322, + [SMALL_STATE(4594)] = 146373, + [SMALL_STATE(4595)] = 146442, + [SMALL_STATE(4596)] = 146527, + [SMALL_STATE(4597)] = 146578, + [SMALL_STATE(4598)] = 146629, + [SMALL_STATE(4599)] = 146700, + [SMALL_STATE(4600)] = 146773, + [SMALL_STATE(4601)] = 146850, + [SMALL_STATE(4602)] = 146935, + [SMALL_STATE(4603)] = 147036, + [SMALL_STATE(4604)] = 147139, + [SMALL_STATE(4605)] = 147238, + [SMALL_STATE(4606)] = 147289, + [SMALL_STATE(4607)] = 147356, + [SMALL_STATE(4608)] = 147441, + [SMALL_STATE(4609)] = 147492, + [SMALL_STATE(4610)] = 147543, + [SMALL_STATE(4611)] = 147628, + [SMALL_STATE(4612)] = 147713, + [SMALL_STATE(4613)] = 147814, + [SMALL_STATE(4614)] = 147865, + [SMALL_STATE(4615)] = 147950, + [SMALL_STATE(4616)] = 148035, + [SMALL_STATE(4617)] = 148138, + [SMALL_STATE(4618)] = 148241, + [SMALL_STATE(4619)] = 148340, + [SMALL_STATE(4620)] = 148425, + [SMALL_STATE(4621)] = 148520, + [SMALL_STATE(4622)] = 148571, + [SMALL_STATE(4623)] = 148656, + [SMALL_STATE(4624)] = 148741, + [SMALL_STATE(4625)] = 148808, + [SMALL_STATE(4626)] = 148893, + [SMALL_STATE(4627)] = 148992, + [SMALL_STATE(4628)] = 149059, + [SMALL_STATE(4629)] = 149110, + [SMALL_STATE(4630)] = 149195, + [SMALL_STATE(4631)] = 149298, + [SMALL_STATE(4632)] = 149375, + [SMALL_STATE(4633)] = 149460, + [SMALL_STATE(4634)] = 149545, + [SMALL_STATE(4635)] = 149595, + [SMALL_STATE(4636)] = 149645, + [SMALL_STATE(4637)] = 149695, + [SMALL_STATE(4638)] = 149745, + [SMALL_STATE(4639)] = 149795, + [SMALL_STATE(4640)] = 149845, + [SMALL_STATE(4641)] = 149895, + [SMALL_STATE(4642)] = 149945, + [SMALL_STATE(4643)] = 149995, + [SMALL_STATE(4644)] = 150051, + [SMALL_STATE(4645)] = 150101, + [SMALL_STATE(4646)] = 150151, + [SMALL_STATE(4647)] = 150201, + [SMALL_STATE(4648)] = 150251, + [SMALL_STATE(4649)] = 150301, + [SMALL_STATE(4650)] = 150351, + [SMALL_STATE(4651)] = 150401, + [SMALL_STATE(4652)] = 150451, + [SMALL_STATE(4653)] = 150503, + [SMALL_STATE(4654)] = 150563, + [SMALL_STATE(4655)] = 150613, + [SMALL_STATE(4656)] = 150669, + [SMALL_STATE(4657)] = 150719, + [SMALL_STATE(4658)] = 150775, + [SMALL_STATE(4659)] = 150831, + [SMALL_STATE(4660)] = 150881, + [SMALL_STATE(4661)] = 150931, + [SMALL_STATE(4662)] = 150981, + [SMALL_STATE(4663)] = 151037, + [SMALL_STATE(4664)] = 151087, + [SMALL_STATE(4665)] = 151137, + [SMALL_STATE(4666)] = 151187, + [SMALL_STATE(4667)] = 151239, + [SMALL_STATE(4668)] = 151289, + [SMALL_STATE(4669)] = 151339, + [SMALL_STATE(4670)] = 151401, + [SMALL_STATE(4671)] = 151451, + [SMALL_STATE(4672)] = 151501, + [SMALL_STATE(4673)] = 151551, + [SMALL_STATE(4674)] = 151601, + [SMALL_STATE(4675)] = 151651, + [SMALL_STATE(4676)] = 151703, + [SMALL_STATE(4677)] = 151759, + [SMALL_STATE(4678)] = 151815, + [SMALL_STATE(4679)] = 151865, + [SMALL_STATE(4680)] = 151921, + [SMALL_STATE(4681)] = 151971, + [SMALL_STATE(4682)] = 152020, + [SMALL_STATE(4683)] = 152081, + [SMALL_STATE(4684)] = 152162, + [SMALL_STATE(4685)] = 152225, + [SMALL_STATE(4686)] = 152288, + [SMALL_STATE(4687)] = 152341, + [SMALL_STATE(4688)] = 152442, + [SMALL_STATE(4689)] = 152539, + [SMALL_STATE(4690)] = 152592, + [SMALL_STATE(4691)] = 152641, + [SMALL_STATE(4692)] = 152742, + [SMALL_STATE(4693)] = 152805, + [SMALL_STATE(4694)] = 152902, + [SMALL_STATE(4695)] = 152951, + [SMALL_STATE(4696)] = 153028, + [SMALL_STATE(4697)] = 153105, + [SMALL_STATE(4698)] = 153154, + [SMALL_STATE(4699)] = 153203, + [SMALL_STATE(4700)] = 153252, + [SMALL_STATE(4701)] = 153349, + [SMALL_STATE(4702)] = 153402, + [SMALL_STATE(4703)] = 153463, + [SMALL_STATE(4704)] = 153526, + [SMALL_STATE(4705)] = 153603, + [SMALL_STATE(4706)] = 153652, + [SMALL_STATE(4707)] = 153729, + [SMALL_STATE(4708)] = 153780, + [SMALL_STATE(4709)] = 153883, + [SMALL_STATE(4710)] = 153986, + [SMALL_STATE(4711)] = 154047, + [SMALL_STATE(4712)] = 154098, + [SMALL_STATE(4713)] = 154195, + [SMALL_STATE(4714)] = 154298, + [SMALL_STATE(4715)] = 154359, + [SMALL_STATE(4716)] = 154460, + [SMALL_STATE(4717)] = 154531, + [SMALL_STATE(4718)] = 154588, + [SMALL_STATE(4719)] = 154637, + [SMALL_STATE(4720)] = 154714, + [SMALL_STATE(4721)] = 154765, + [SMALL_STATE(4722)] = 154834, + [SMALL_STATE(4723)] = 154935, + [SMALL_STATE(4724)] = 155024, + [SMALL_STATE(4725)] = 155097, + [SMALL_STATE(4726)] = 155190, + [SMALL_STATE(4727)] = 155239, + [SMALL_STATE(4728)] = 155328, + [SMALL_STATE(4729)] = 155415, + [SMALL_STATE(4730)] = 155492, + [SMALL_STATE(4731)] = 155575, + [SMALL_STATE(4732)] = 155652, + [SMALL_STATE(4733)] = 155755, + [SMALL_STATE(4734)] = 155822, + [SMALL_STATE(4735)] = 155912, + [SMALL_STATE(4736)] = 155970, + [SMALL_STATE(4737)] = 156046, + [SMALL_STATE(4738)] = 156132, + [SMALL_STATE(4739)] = 156200, + [SMALL_STATE(4740)] = 156254, + [SMALL_STATE(4741)] = 156304, + [SMALL_STATE(4742)] = 156356, + [SMALL_STATE(4743)] = 156414, + [SMALL_STATE(4744)] = 156486, + [SMALL_STATE(4745)] = 156544, + [SMALL_STATE(4746)] = 156634, + [SMALL_STATE(4747)] = 156702, + [SMALL_STATE(4748)] = 156770, + [SMALL_STATE(4749)] = 156838, + [SMALL_STATE(4750)] = 156904, + [SMALL_STATE(4751)] = 156974, + [SMALL_STATE(4752)] = 157068, + [SMALL_STATE(4753)] = 157116, + [SMALL_STATE(4754)] = 157216, + [SMALL_STATE(4755)] = 157304, + [SMALL_STATE(4756)] = 157380, + [SMALL_STATE(4757)] = 157470, + [SMALL_STATE(4758)] = 157554, + [SMALL_STATE(4759)] = 157648, + [SMALL_STATE(4760)] = 157742, + [SMALL_STATE(4761)] = 157832, + [SMALL_STATE(4762)] = 157914, + [SMALL_STATE(4763)] = 157990, + [SMALL_STATE(4764)] = 158068, + [SMALL_STATE(4765)] = 158126, + [SMALL_STATE(4766)] = 158178, + [SMALL_STATE(4767)] = 158236, + [SMALL_STATE(4768)] = 158286, + [SMALL_STATE(4769)] = 158340, + [SMALL_STATE(4770)] = 158388, + [SMALL_STATE(4771)] = 158485, + [SMALL_STATE(4772)] = 158566, + [SMALL_STATE(4773)] = 158635, + [SMALL_STATE(4774)] = 158732, + [SMALL_STATE(4775)] = 158829, + [SMALL_STATE(4776)] = 158876, + [SMALL_STATE(4777)] = 158973, + [SMALL_STATE(4778)] = 159050, + [SMALL_STATE(4779)] = 159099, + [SMALL_STATE(4780)] = 159196, + [SMALL_STATE(4781)] = 159273, + [SMALL_STATE(4782)] = 159360, + [SMALL_STATE(4783)] = 159407, + [SMALL_STATE(4784)] = 159454, + [SMALL_STATE(4785)] = 159501, + [SMALL_STATE(4786)] = 159548, + [SMALL_STATE(4787)] = 159643, + [SMALL_STATE(4788)] = 159740, + [SMALL_STATE(4789)] = 159817, + [SMALL_STATE(4790)] = 159914, + [SMALL_STATE(4791)] = 159961, + [SMALL_STATE(4792)] = 160058, + [SMALL_STATE(4793)] = 160155, + [SMALL_STATE(4794)] = 160230, + [SMALL_STATE(4795)] = 160327, + [SMALL_STATE(4796)] = 160374, + [SMALL_STATE(4797)] = 160421, + [SMALL_STATE(4798)] = 160498, + [SMALL_STATE(4799)] = 160545, + [SMALL_STATE(4800)] = 160592, + [SMALL_STATE(4801)] = 160645, + [SMALL_STATE(4802)] = 160720, + [SMALL_STATE(4803)] = 160767, + [SMALL_STATE(4804)] = 160814, + [SMALL_STATE(4805)] = 160911, + [SMALL_STATE(4806)] = 161008, + [SMALL_STATE(4807)] = 161105, + [SMALL_STATE(4808)] = 161202, + [SMALL_STATE(4809)] = 161299, + [SMALL_STATE(4810)] = 161394, + [SMALL_STATE(4811)] = 161491, + [SMALL_STATE(4812)] = 161588, + [SMALL_STATE(4813)] = 161685, + [SMALL_STATE(4814)] = 161732, + [SMALL_STATE(4815)] = 161787, + [SMALL_STATE(4816)] = 161884, + [SMALL_STATE(4817)] = 161981, + [SMALL_STATE(4818)] = 162078, + [SMALL_STATE(4819)] = 162125, + [SMALL_STATE(4820)] = 162222, + [SMALL_STATE(4821)] = 162269, + [SMALL_STATE(4822)] = 162344, + [SMALL_STATE(4823)] = 162415, + [SMALL_STATE(4824)] = 162490, + [SMALL_STATE(4825)] = 162587, + [SMALL_STATE(4826)] = 162634, + [SMALL_STATE(4827)] = 162681, + [SMALL_STATE(4828)] = 162728, + [SMALL_STATE(4829)] = 162775, + [SMALL_STATE(4830)] = 162872, + [SMALL_STATE(4831)] = 162969, + [SMALL_STATE(4832)] = 163066, + [SMALL_STATE(4833)] = 163163, + [SMALL_STATE(4834)] = 163260, + [SMALL_STATE(4835)] = 163357, + [SMALL_STATE(4836)] = 163454, + [SMALL_STATE(4837)] = 163501, + [SMALL_STATE(4838)] = 163548, + [SMALL_STATE(4839)] = 163601, + [SMALL_STATE(4840)] = 163698, + [SMALL_STATE(4841)] = 163785, + [SMALL_STATE(4842)] = 163862, + [SMALL_STATE(4843)] = 163959, + [SMALL_STATE(4844)] = 164008, + [SMALL_STATE(4845)] = 164057, + [SMALL_STATE(4846)] = 164108, + [SMALL_STATE(4847)] = 164155, + [SMALL_STATE(4848)] = 164252, + [SMALL_STATE(4849)] = 164299, + [SMALL_STATE(4850)] = 164396, + [SMALL_STATE(4851)] = 164443, + [SMALL_STATE(4852)] = 164490, + [SMALL_STATE(4853)] = 164537, + [SMALL_STATE(4854)] = 164584, + [SMALL_STATE(4855)] = 164631, + [SMALL_STATE(4856)] = 164728, + [SMALL_STATE(4857)] = 164775, + [SMALL_STATE(4858)] = 164872, + [SMALL_STATE(4859)] = 164969, + [SMALL_STATE(4860)] = 165066, + [SMALL_STATE(4861)] = 165119, + [SMALL_STATE(4862)] = 165216, + [SMALL_STATE(4863)] = 165293, + [SMALL_STATE(4864)] = 165386, + [SMALL_STATE(4865)] = 165469, + [SMALL_STATE(4866)] = 165516, + [SMALL_STATE(4867)] = 165563, + [SMALL_STATE(4868)] = 165610, + [SMALL_STATE(4869)] = 165707, + [SMALL_STATE(4870)] = 165754, + [SMALL_STATE(4871)] = 165801, + [SMALL_STATE(4872)] = 165898, + [SMALL_STATE(4873)] = 165945, + [SMALL_STATE(4874)] = 165992, + [SMALL_STATE(4875)] = 166089, + [SMALL_STATE(4876)] = 166136, + [SMALL_STATE(4877)] = 166183, + [SMALL_STATE(4878)] = 166230, + [SMALL_STATE(4879)] = 166277, + [SMALL_STATE(4880)] = 166324, + [SMALL_STATE(4881)] = 166401, + [SMALL_STATE(4882)] = 166448, + [SMALL_STATE(4883)] = 166495, + [SMALL_STATE(4884)] = 166592, + [SMALL_STATE(4885)] = 166689, + [SMALL_STATE(4886)] = 166786, + [SMALL_STATE(4887)] = 166833, + [SMALL_STATE(4888)] = 166930, + [SMALL_STATE(4889)] = 166977, + [SMALL_STATE(4890)] = 167070, + [SMALL_STATE(4891)] = 167117, + [SMALL_STATE(4892)] = 167164, + [SMALL_STATE(4893)] = 167261, + [SMALL_STATE(4894)] = 167308, + [SMALL_STATE(4895)] = 167385, + [SMALL_STATE(4896)] = 167482, + [SMALL_STATE(4897)] = 167579, + [SMALL_STATE(4898)] = 167676, + [SMALL_STATE(4899)] = 167765, + [SMALL_STATE(4900)] = 167816, + [SMALL_STATE(4901)] = 167863, + [SMALL_STATE(4902)] = 167910, + [SMALL_STATE(4903)] = 167999, + [SMALL_STATE(4904)] = 168046, + [SMALL_STATE(4905)] = 168135, + [SMALL_STATE(4906)] = 168232, + [SMALL_STATE(4907)] = 168279, + [SMALL_STATE(4908)] = 168326, + [SMALL_STATE(4909)] = 168373, + [SMALL_STATE(4910)] = 168420, + [SMALL_STATE(4911)] = 168467, + [SMALL_STATE(4912)] = 168542, + [SMALL_STATE(4913)] = 168595, + [SMALL_STATE(4914)] = 168692, + [SMALL_STATE(4915)] = 168785, + [SMALL_STATE(4916)] = 168838, + [SMALL_STATE(4917)] = 168885, + [SMALL_STATE(4918)] = 168932, + [SMALL_STATE(4919)] = 168979, + [SMALL_STATE(4920)] = 169026, + [SMALL_STATE(4921)] = 169123, + [SMALL_STATE(4922)] = 169220, + [SMALL_STATE(4923)] = 169317, + [SMALL_STATE(4924)] = 169410, + [SMALL_STATE(4925)] = 169465, + [SMALL_STATE(4926)] = 169532, + [SMALL_STATE(4927)] = 169579, + [SMALL_STATE(4928)] = 169664, + [SMALL_STATE(4929)] = 169711, + [SMALL_STATE(4930)] = 169808, + [SMALL_STATE(4931)] = 169905, + [SMALL_STATE(4932)] = 169952, + [SMALL_STATE(4933)] = 169999, + [SMALL_STATE(4934)] = 170096, + [SMALL_STATE(4935)] = 170183, + [SMALL_STATE(4936)] = 170280, + [SMALL_STATE(4937)] = 170377, + [SMALL_STATE(4938)] = 170424, + [SMALL_STATE(4939)] = 170471, + [SMALL_STATE(4940)] = 170536, + [SMALL_STATE(4941)] = 170583, + [SMALL_STATE(4942)] = 170630, + [SMALL_STATE(4943)] = 170707, + [SMALL_STATE(4944)] = 170754, + [SMALL_STATE(4945)] = 170801, + [SMALL_STATE(4946)] = 170848, + [SMALL_STATE(4947)] = 170895, + [SMALL_STATE(4948)] = 170988, + [SMALL_STATE(4949)] = 171035, + [SMALL_STATE(4950)] = 171124, + [SMALL_STATE(4951)] = 171221, + [SMALL_STATE(4952)] = 171318, + [SMALL_STATE(4953)] = 171415, + [SMALL_STATE(4954)] = 171489, + [SMALL_STATE(4955)] = 171577, + [SMALL_STATE(4956)] = 171671, + [SMALL_STATE(4957)] = 171763, + [SMALL_STATE(4958)] = 171831, + [SMALL_STATE(4959)] = 171919, + [SMALL_STATE(4960)] = 171987, + [SMALL_STATE(4961)] = 172055, + [SMALL_STATE(4962)] = 172149, + [SMALL_STATE(4963)] = 172241, + [SMALL_STATE(4964)] = 172309, + [SMALL_STATE(4965)] = 172377, + [SMALL_STATE(4966)] = 172469, + [SMALL_STATE(4967)] = 172563, + [SMALL_STATE(4968)] = 172655, + [SMALL_STATE(4969)] = 172749, + [SMALL_STATE(4970)] = 172841, + [SMALL_STATE(4971)] = 172935, + [SMALL_STATE(4972)] = 173003, + [SMALL_STATE(4973)] = 173097, + [SMALL_STATE(4974)] = 173171, + [SMALL_STATE(4975)] = 173239, + [SMALL_STATE(4976)] = 173331, + [SMALL_STATE(4977)] = 173405, + [SMALL_STATE(4978)] = 173479, + [SMALL_STATE(4979)] = 173567, + [SMALL_STATE(4980)] = 173623, + [SMALL_STATE(4981)] = 173697, + [SMALL_STATE(4982)] = 173771, + [SMALL_STATE(4983)] = 173845, + [SMALL_STATE(4984)] = 173919, + [SMALL_STATE(4985)] = 173993, + [SMALL_STATE(4986)] = 174067, + [SMALL_STATE(4987)] = 174141, + [SMALL_STATE(4988)] = 174233, + [SMALL_STATE(4989)] = 174305, + [SMALL_STATE(4990)] = 174397, + [SMALL_STATE(4991)] = 174485, + [SMALL_STATE(4992)] = 174559, + [SMALL_STATE(4993)] = 174623, + [SMALL_STATE(4994)] = 174717, + [SMALL_STATE(4995)] = 174777, + [SMALL_STATE(4996)] = 174869, + [SMALL_STATE(4997)] = 174955, + [SMALL_STATE(4998)] = 175049, + [SMALL_STATE(4999)] = 175133, + [SMALL_STATE(5000)] = 175227, + [SMALL_STATE(5001)] = 175309, + [SMALL_STATE(5002)] = 175403, + [SMALL_STATE(5003)] = 175483, + [SMALL_STATE(5004)] = 175559, + [SMALL_STATE(5005)] = 175633, + [SMALL_STATE(5006)] = 175707, + [SMALL_STATE(5007)] = 175775, + [SMALL_STATE(5008)] = 175869, + [SMALL_STATE(5009)] = 175963, + [SMALL_STATE(5010)] = 176057, + [SMALL_STATE(5011)] = 176127, + [SMALL_STATE(5012)] = 176201, + [SMALL_STATE(5013)] = 176275, + [SMALL_STATE(5014)] = 176339, + [SMALL_STATE(5015)] = 176413, + [SMALL_STATE(5016)] = 176499, + [SMALL_STATE(5017)] = 176557, + [SMALL_STATE(5018)] = 176605, + [SMALL_STATE(5019)] = 176689, + [SMALL_STATE(5020)] = 176757, + [SMALL_STATE(5021)] = 176831, + [SMALL_STATE(5022)] = 176919, + [SMALL_STATE(5023)] = 177001, + [SMALL_STATE(5024)] = 177081, + [SMALL_STATE(5025)] = 177157, + [SMALL_STATE(5026)] = 177231, + [SMALL_STATE(5027)] = 177291, + [SMALL_STATE(5028)] = 177347, + [SMALL_STATE(5029)] = 177407, + [SMALL_STATE(5030)] = 177475, + [SMALL_STATE(5031)] = 177541, + [SMALL_STATE(5032)] = 177615, + [SMALL_STATE(5033)] = 177675, + [SMALL_STATE(5034)] = 177743, + [SMALL_STATE(5035)] = 177837, + [SMALL_STATE(5036)] = 177911, + [SMALL_STATE(5037)] = 177961, + [SMALL_STATE(5038)] = 178009, + [SMALL_STATE(5039)] = 178103, + [SMALL_STATE(5040)] = 178197, + [SMALL_STATE(5041)] = 178255, + [SMALL_STATE(5042)] = 178349, + [SMALL_STATE(5043)] = 178441, + [SMALL_STATE(5044)] = 178515, + [SMALL_STATE(5045)] = 178609, + [SMALL_STATE(5046)] = 178679, + [SMALL_STATE(5047)] = 178753, + [SMALL_STATE(5048)] = 178821, + [SMALL_STATE(5049)] = 178895, + [SMALL_STATE(5050)] = 178987, + [SMALL_STATE(5051)] = 179061, + [SMALL_STATE(5052)] = 179147, + [SMALL_STATE(5053)] = 179239, + [SMALL_STATE(5054)] = 179313, + [SMALL_STATE(5055)] = 179405, + [SMALL_STATE(5056)] = 179497, + [SMALL_STATE(5057)] = 179571, + [SMALL_STATE(5058)] = 179663, + [SMALL_STATE(5059)] = 179757, + [SMALL_STATE(5060)] = 179851, + [SMALL_STATE(5061)] = 179919, + [SMALL_STATE(5062)] = 180013, + [SMALL_STATE(5063)] = 180087, + [SMALL_STATE(5064)] = 180181, + [SMALL_STATE(5065)] = 180275, + [SMALL_STATE(5066)] = 180349, + [SMALL_STATE(5067)] = 180443, + [SMALL_STATE(5068)] = 180517, + [SMALL_STATE(5069)] = 180591, + [SMALL_STATE(5070)] = 180685, + [SMALL_STATE(5071)] = 180779, + [SMALL_STATE(5072)] = 180873, + [SMALL_STATE(5073)] = 180967, + [SMALL_STATE(5074)] = 181055, + [SMALL_STATE(5075)] = 181107, + [SMALL_STATE(5076)] = 181201, + [SMALL_STATE(5077)] = 181275, + [SMALL_STATE(5078)] = 181363, + [SMALL_STATE(5079)] = 181457, + [SMALL_STATE(5080)] = 181531, + [SMALL_STATE(5081)] = 181605, + [SMALL_STATE(5082)] = 181699, + [SMALL_STATE(5083)] = 181745, + [SMALL_STATE(5084)] = 181837, + [SMALL_STATE(5085)] = 181929, + [SMALL_STATE(5086)] = 182021, + [SMALL_STATE(5087)] = 182115, + [SMALL_STATE(5088)] = 182209, + [SMALL_STATE(5089)] = 182301, + [SMALL_STATE(5090)] = 182393, + [SMALL_STATE(5091)] = 182467, + [SMALL_STATE(5092)] = 182555, + [SMALL_STATE(5093)] = 182647, + [SMALL_STATE(5094)] = 182697, + [SMALL_STATE(5095)] = 182771, + [SMALL_STATE(5096)] = 182837, + [SMALL_STATE(5097)] = 182929, + [SMALL_STATE(5098)] = 183021, + [SMALL_STATE(5099)] = 183112, + [SMALL_STATE(5100)] = 183203, + [SMALL_STATE(5101)] = 183262, + [SMALL_STATE(5102)] = 183353, + [SMALL_STATE(5103)] = 183444, + [SMALL_STATE(5104)] = 183503, + [SMALL_STATE(5105)] = 183594, + [SMALL_STATE(5106)] = 183685, + [SMALL_STATE(5107)] = 183776, + [SMALL_STATE(5108)] = 183843, + [SMALL_STATE(5109)] = 183934, + [SMALL_STATE(5110)] = 184025, + [SMALL_STATE(5111)] = 184082, + [SMALL_STATE(5112)] = 184173, + [SMALL_STATE(5113)] = 184264, + [SMALL_STATE(5114)] = 184355, + [SMALL_STATE(5115)] = 184412, + [SMALL_STATE(5116)] = 184503, + [SMALL_STATE(5117)] = 184594, + [SMALL_STATE(5118)] = 184685, + [SMALL_STATE(5119)] = 184776, + [SMALL_STATE(5120)] = 184867, + [SMALL_STATE(5121)] = 184958, + [SMALL_STATE(5122)] = 185049, + [SMALL_STATE(5123)] = 185140, + [SMALL_STATE(5124)] = 185231, + [SMALL_STATE(5125)] = 185322, + [SMALL_STATE(5126)] = 185413, + [SMALL_STATE(5127)] = 185464, + [SMALL_STATE(5128)] = 185555, + [SMALL_STATE(5129)] = 185646, + [SMALL_STATE(5130)] = 185737, + [SMALL_STATE(5131)] = 185828, + [SMALL_STATE(5132)] = 185919, + [SMALL_STATE(5133)] = 186010, + [SMALL_STATE(5134)] = 186101, + [SMALL_STATE(5135)] = 186192, + [SMALL_STATE(5136)] = 186283, + [SMALL_STATE(5137)] = 186374, + [SMALL_STATE(5138)] = 186465, + [SMALL_STATE(5139)] = 186556, + [SMALL_STATE(5140)] = 186629, + [SMALL_STATE(5141)] = 186720, + [SMALL_STATE(5142)] = 186811, + [SMALL_STATE(5143)] = 186902, + [SMALL_STATE(5144)] = 186993, + [SMALL_STATE(5145)] = 187084, + [SMALL_STATE(5146)] = 187175, + [SMALL_STATE(5147)] = 187266, + [SMALL_STATE(5148)] = 187357, + [SMALL_STATE(5149)] = 187448, + [SMALL_STATE(5150)] = 187539, + [SMALL_STATE(5151)] = 187630, + [SMALL_STATE(5152)] = 187721, + [SMALL_STATE(5153)] = 187812, + [SMALL_STATE(5154)] = 187867, + [SMALL_STATE(5155)] = 187958, + [SMALL_STATE(5156)] = 188049, + [SMALL_STATE(5157)] = 188140, + [SMALL_STATE(5158)] = 188231, + [SMALL_STATE(5159)] = 188322, + [SMALL_STATE(5160)] = 188413, + [SMALL_STATE(5161)] = 188504, + [SMALL_STATE(5162)] = 188595, + [SMALL_STATE(5163)] = 188686, + [SMALL_STATE(5164)] = 188737, + [SMALL_STATE(5165)] = 188828, + [SMALL_STATE(5166)] = 188919, + [SMALL_STATE(5167)] = 188968, + [SMALL_STATE(5168)] = 189059, + [SMALL_STATE(5169)] = 189118, + [SMALL_STATE(5170)] = 189209, + [SMALL_STATE(5171)] = 189300, + [SMALL_STATE(5172)] = 189391, + [SMALL_STATE(5173)] = 189482, + [SMALL_STATE(5174)] = 189573, + [SMALL_STATE(5175)] = 189622, + [SMALL_STATE(5176)] = 189713, + [SMALL_STATE(5177)] = 189762, + [SMALL_STATE(5178)] = 189853, + [SMALL_STATE(5179)] = 189944, + [SMALL_STATE(5180)] = 190011, + [SMALL_STATE(5181)] = 190102, + [SMALL_STATE(5182)] = 190193, + [SMALL_STATE(5183)] = 190252, + [SMALL_STATE(5184)] = 190343, + [SMALL_STATE(5185)] = 190434, + [SMALL_STATE(5186)] = 190525, + [SMALL_STATE(5187)] = 190616, + [SMALL_STATE(5188)] = 190703, + [SMALL_STATE(5189)] = 190794, + [SMALL_STATE(5190)] = 190885, + [SMALL_STATE(5191)] = 190976, + [SMALL_STATE(5192)] = 191033, + [SMALL_STATE(5193)] = 191124, + [SMALL_STATE(5194)] = 191181, + [SMALL_STATE(5195)] = 191272, + [SMALL_STATE(5196)] = 191363, + [SMALL_STATE(5197)] = 191454, + [SMALL_STATE(5198)] = 191545, + [SMALL_STATE(5199)] = 191636, + [SMALL_STATE(5200)] = 191727, + [SMALL_STATE(5201)] = 191778, + [SMALL_STATE(5202)] = 191869, + [SMALL_STATE(5203)] = 191936, + [SMALL_STATE(5204)] = 192003, + [SMALL_STATE(5205)] = 192094, + [SMALL_STATE(5206)] = 192185, + [SMALL_STATE(5207)] = 192276, + [SMALL_STATE(5208)] = 192367, + [SMALL_STATE(5209)] = 192458, + [SMALL_STATE(5210)] = 192549, + [SMALL_STATE(5211)] = 192640, + [SMALL_STATE(5212)] = 192731, + [SMALL_STATE(5213)] = 192822, + [SMALL_STATE(5214)] = 192913, + [SMALL_STATE(5215)] = 192986, + [SMALL_STATE(5216)] = 193077, + [SMALL_STATE(5217)] = 193168, + [SMALL_STATE(5218)] = 193259, + [SMALL_STATE(5219)] = 193350, + [SMALL_STATE(5220)] = 193441, + [SMALL_STATE(5221)] = 193532, + [SMALL_STATE(5222)] = 193623, + [SMALL_STATE(5223)] = 193714, + [SMALL_STATE(5224)] = 193763, + [SMALL_STATE(5225)] = 193854, + [SMALL_STATE(5226)] = 193945, + [SMALL_STATE(5227)] = 194036, + [SMALL_STATE(5228)] = 194127, + [SMALL_STATE(5229)] = 194218, + [SMALL_STATE(5230)] = 194309, + [SMALL_STATE(5231)] = 194400, + [SMALL_STATE(5232)] = 194491, + [SMALL_STATE(5233)] = 194582, + [SMALL_STATE(5234)] = 194673, + [SMALL_STATE(5235)] = 194718, + [SMALL_STATE(5236)] = 194805, + [SMALL_STATE(5237)] = 194896, + [SMALL_STATE(5238)] = 194983, + [SMALL_STATE(5239)] = 195034, + [SMALL_STATE(5240)] = 195083, + [SMALL_STATE(5241)] = 195128, + [SMALL_STATE(5242)] = 195181, + [SMALL_STATE(5243)] = 195272, + [SMALL_STATE(5244)] = 195321, + [SMALL_STATE(5245)] = 195412, + [SMALL_STATE(5246)] = 195503, + [SMALL_STATE(5247)] = 195552, + [SMALL_STATE(5248)] = 195643, + [SMALL_STATE(5249)] = 195734, + [SMALL_STATE(5250)] = 195801, + [SMALL_STATE(5251)] = 195892, + [SMALL_STATE(5252)] = 195983, + [SMALL_STATE(5253)] = 196048, + [SMALL_STATE(5254)] = 196117, + [SMALL_STATE(5255)] = 196190, + [SMALL_STATE(5256)] = 196265, + [SMALL_STATE(5257)] = 196344, + [SMALL_STATE(5258)] = 196435, + [SMALL_STATE(5259)] = 196526, + [SMALL_STATE(5260)] = 196617, + [SMALL_STATE(5261)] = 196698, + [SMALL_STATE(5262)] = 196789, + [SMALL_STATE(5263)] = 196880, + [SMALL_STATE(5264)] = 196963, + [SMALL_STATE(5265)] = 197054, + [SMALL_STATE(5266)] = 197101, + [SMALL_STATE(5267)] = 197186, + [SMALL_STATE(5268)] = 197277, + [SMALL_STATE(5269)] = 197326, + [SMALL_STATE(5270)] = 197375, + [SMALL_STATE(5271)] = 197466, + [SMALL_STATE(5272)] = 197529, + [SMALL_STATE(5273)] = 197620, + [SMALL_STATE(5274)] = 197707, + [SMALL_STATE(5275)] = 197798, + [SMALL_STATE(5276)] = 197889, + [SMALL_STATE(5277)] = 197980, + [SMALL_STATE(5278)] = 198024, + [SMALL_STATE(5279)] = 198068, + [SMALL_STATE(5280)] = 198112, + [SMALL_STATE(5281)] = 198156, + [SMALL_STATE(5282)] = 198200, + [SMALL_STATE(5283)] = 198266, + [SMALL_STATE(5284)] = 198310, + [SMALL_STATE(5285)] = 198376, + [SMALL_STATE(5286)] = 198420, + [SMALL_STATE(5287)] = 198464, + [SMALL_STATE(5288)] = 198508, + [SMALL_STATE(5289)] = 198568, + [SMALL_STATE(5290)] = 198640, + [SMALL_STATE(5291)] = 198684, + [SMALL_STATE(5292)] = 198730, + [SMALL_STATE(5293)] = 198818, + [SMALL_STATE(5294)] = 198862, + [SMALL_STATE(5295)] = 198906, + [SMALL_STATE(5296)] = 198950, + [SMALL_STATE(5297)] = 198994, + [SMALL_STATE(5298)] = 199060, + [SMALL_STATE(5299)] = 199126, + [SMALL_STATE(5300)] = 199170, + [SMALL_STATE(5301)] = 199220, + [SMALL_STATE(5302)] = 199264, + [SMALL_STATE(5303)] = 199308, + [SMALL_STATE(5304)] = 199374, + [SMALL_STATE(5305)] = 199418, + [SMALL_STATE(5306)] = 199462, + [SMALL_STATE(5307)] = 199506, + [SMALL_STATE(5308)] = 199560, + [SMALL_STATE(5309)] = 199604, + [SMALL_STATE(5310)] = 199648, + [SMALL_STATE(5311)] = 199730, + [SMALL_STATE(5312)] = 199778, + [SMALL_STATE(5313)] = 199828, + [SMALL_STATE(5314)] = 199876, + [SMALL_STATE(5315)] = 199942, + [SMALL_STATE(5316)] = 199986, + [SMALL_STATE(5317)] = 200058, + [SMALL_STATE(5318)] = 200102, + [SMALL_STATE(5319)] = 200146, + [SMALL_STATE(5320)] = 200190, + [SMALL_STATE(5321)] = 200234, + [SMALL_STATE(5322)] = 200278, + [SMALL_STATE(5323)] = 200322, + [SMALL_STATE(5324)] = 200404, + [SMALL_STATE(5325)] = 200470, + [SMALL_STATE(5326)] = 200514, + [SMALL_STATE(5327)] = 200558, + [SMALL_STATE(5328)] = 200602, + [SMALL_STATE(5329)] = 200646, + [SMALL_STATE(5330)] = 200690, + [SMALL_STATE(5331)] = 200734, + [SMALL_STATE(5332)] = 200778, + [SMALL_STATE(5333)] = 200844, + [SMALL_STATE(5334)] = 200888, + [SMALL_STATE(5335)] = 200932, + [SMALL_STATE(5336)] = 200975, + [SMALL_STATE(5337)] = 201030, + [SMALL_STATE(5338)] = 201111, + [SMALL_STATE(5339)] = 201154, + [SMALL_STATE(5340)] = 201201, + [SMALL_STATE(5341)] = 201246, + [SMALL_STATE(5342)] = 201293, + [SMALL_STATE(5343)] = 201340, + [SMALL_STATE(5344)] = 201385, + [SMALL_STATE(5345)] = 201430, + [SMALL_STATE(5346)] = 201473, + [SMALL_STATE(5347)] = 201520, + [SMALL_STATE(5348)] = 201567, + [SMALL_STATE(5349)] = 201614, + [SMALL_STATE(5350)] = 201667, + [SMALL_STATE(5351)] = 201710, + [SMALL_STATE(5352)] = 201753, + [SMALL_STATE(5353)] = 201796, + [SMALL_STATE(5354)] = 201839, + [SMALL_STATE(5355)] = 201882, + [SMALL_STATE(5356)] = 201925, + [SMALL_STATE(5357)] = 201968, + [SMALL_STATE(5358)] = 202033, + [SMALL_STATE(5359)] = 202078, + [SMALL_STATE(5360)] = 202149, + [SMALL_STATE(5361)] = 202192, + [SMALL_STATE(5362)] = 202241, + [SMALL_STATE(5363)] = 202306, + [SMALL_STATE(5364)] = 202359, + [SMALL_STATE(5365)] = 202430, + [SMALL_STATE(5366)] = 202485, + [SMALL_STATE(5367)] = 202550, + [SMALL_STATE(5368)] = 202631, + [SMALL_STATE(5369)] = 202674, + [SMALL_STATE(5370)] = 202739, + [SMALL_STATE(5371)] = 202798, + [SMALL_STATE(5372)] = 202845, + [SMALL_STATE(5373)] = 202888, + [SMALL_STATE(5374)] = 202931, + [SMALL_STATE(5375)] = 202995, + [SMALL_STATE(5376)] = 203043, + [SMALL_STATE(5377)] = 203123, + [SMALL_STATE(5378)] = 203171, + [SMALL_STATE(5379)] = 203221, + [SMALL_STATE(5380)] = 203285, + [SMALL_STATE(5381)] = 203365, + [SMALL_STATE(5382)] = 203435, + [SMALL_STATE(5383)] = 203499, + [SMALL_STATE(5384)] = 203547, + [SMALL_STATE(5385)] = 203627, + [SMALL_STATE(5386)] = 203707, + [SMALL_STATE(5387)] = 203787, + [SMALL_STATE(5388)] = 203835, + [SMALL_STATE(5389)] = 203905, + [SMALL_STATE(5390)] = 203985, + [SMALL_STATE(5391)] = 204031, + [SMALL_STATE(5392)] = 204079, + [SMALL_STATE(5393)] = 204159, + [SMALL_STATE(5394)] = 204201, + [SMALL_STATE(5395)] = 204249, + [SMALL_STATE(5396)] = 204303, + [SMALL_STATE(5397)] = 204383, + [SMALL_STATE(5398)] = 204467, + [SMALL_STATE(5399)] = 204521, + [SMALL_STATE(5400)] = 204567, + [SMALL_STATE(5401)] = 204617, + [SMALL_STATE(5402)] = 204681, + [SMALL_STATE(5403)] = 204726, + [SMALL_STATE(5404)] = 204805, + [SMALL_STATE(5405)] = 204878, + [SMALL_STATE(5406)] = 204947, + [SMALL_STATE(5407)] = 205010, + [SMALL_STATE(5408)] = 205055, + [SMALL_STATE(5409)] = 205134, + [SMALL_STATE(5410)] = 205179, + [SMALL_STATE(5411)] = 205224, + [SMALL_STATE(5412)] = 205269, + [SMALL_STATE(5413)] = 205342, + [SMALL_STATE(5414)] = 205389, + [SMALL_STATE(5415)] = 205430, + [SMALL_STATE(5416)] = 205475, + [SMALL_STATE(5417)] = 205538, + [SMALL_STATE(5418)] = 205601, + [SMALL_STATE(5419)] = 205680, + [SMALL_STATE(5420)] = 205769, + [SMALL_STATE(5421)] = 205832, + [SMALL_STATE(5422)] = 205901, + [SMALL_STATE(5423)] = 205974, + [SMALL_STATE(5424)] = 206043, + [SMALL_STATE(5425)] = 206112, + [SMALL_STATE(5426)] = 206157, + [SMALL_STATE(5427)] = 206202, + [SMALL_STATE(5428)] = 206247, + [SMALL_STATE(5429)] = 206292, + [SMALL_STATE(5430)] = 206365, + [SMALL_STATE(5431)] = 206410, + [SMALL_STATE(5432)] = 206461, + [SMALL_STATE(5433)] = 206540, + [SMALL_STATE(5434)] = 206585, + [SMALL_STATE(5435)] = 206625, + [SMALL_STATE(5436)] = 206705, + [SMALL_STATE(5437)] = 206745, + [SMALL_STATE(5438)] = 206825, + [SMALL_STATE(5439)] = 206865, + [SMALL_STATE(5440)] = 206909, + [SMALL_STATE(5441)] = 206949, + [SMALL_STATE(5442)] = 207029, + [SMALL_STATE(5443)] = 207109, + [SMALL_STATE(5444)] = 207149, + [SMALL_STATE(5445)] = 207229, + [SMALL_STATE(5446)] = 207309, + [SMALL_STATE(5447)] = 207389, + [SMALL_STATE(5448)] = 207429, + [SMALL_STATE(5449)] = 207501, + [SMALL_STATE(5450)] = 207541, + [SMALL_STATE(5451)] = 207581, + [SMALL_STATE(5452)] = 207621, + [SMALL_STATE(5453)] = 207661, + [SMALL_STATE(5454)] = 207709, + [SMALL_STATE(5455)] = 207787, + [SMALL_STATE(5456)] = 207827, + [SMALL_STATE(5457)] = 207867, + [SMALL_STATE(5458)] = 207907, + [SMALL_STATE(5459)] = 207947, + [SMALL_STATE(5460)] = 207987, + [SMALL_STATE(5461)] = 208027, + [SMALL_STATE(5462)] = 208107, + [SMALL_STATE(5463)] = 208187, + [SMALL_STATE(5464)] = 208227, + [SMALL_STATE(5465)] = 208307, + [SMALL_STATE(5466)] = 208385, + [SMALL_STATE(5467)] = 208425, + [SMALL_STATE(5468)] = 208505, + [SMALL_STATE(5469)] = 208567, + [SMALL_STATE(5470)] = 208623, + [SMALL_STATE(5471)] = 208685, + [SMALL_STATE(5472)] = 208725, + [SMALL_STATE(5473)] = 208765, + [SMALL_STATE(5474)] = 208805, + [SMALL_STATE(5475)] = 208845, + [SMALL_STATE(5476)] = 208907, + [SMALL_STATE(5477)] = 208987, + [SMALL_STATE(5478)] = 209059, + [SMALL_STATE(5479)] = 209099, + [SMALL_STATE(5480)] = 209161, + [SMALL_STATE(5481)] = 209241, + [SMALL_STATE(5482)] = 209321, + [SMALL_STATE(5483)] = 209401, + [SMALL_STATE(5484)] = 209441, + [SMALL_STATE(5485)] = 209481, + [SMALL_STATE(5486)] = 209529, + [SMALL_STATE(5487)] = 209571, + [SMALL_STATE(5488)] = 209643, + [SMALL_STATE(5489)] = 209683, + [SMALL_STATE(5490)] = 209755, + [SMALL_STATE(5491)] = 209835, + [SMALL_STATE(5492)] = 209875, + [SMALL_STATE(5493)] = 209955, + [SMALL_STATE(5494)] = 209995, + [SMALL_STATE(5495)] = 210043, + [SMALL_STATE(5496)] = 210083, + [SMALL_STATE(5497)] = 210123, + [SMALL_STATE(5498)] = 210163, + [SMALL_STATE(5499)] = 210243, + [SMALL_STATE(5500)] = 210283, + [SMALL_STATE(5501)] = 210363, + [SMALL_STATE(5502)] = 210443, + [SMALL_STATE(5503)] = 210523, + [SMALL_STATE(5504)] = 210563, + [SMALL_STATE(5505)] = 210603, + [SMALL_STATE(5506)] = 210653, + [SMALL_STATE(5507)] = 210693, + [SMALL_STATE(5508)] = 210733, + [SMALL_STATE(5509)] = 210773, + [SMALL_STATE(5510)] = 210853, + [SMALL_STATE(5511)] = 210896, + [SMALL_STATE(5512)] = 210947, + [SMALL_STATE(5513)] = 211018, + [SMALL_STATE(5514)] = 211085, + [SMALL_STATE(5515)] = 211136, + [SMALL_STATE(5516)] = 211197, + [SMALL_STATE(5517)] = 211258, + [SMALL_STATE(5518)] = 211331, + [SMALL_STATE(5519)] = 211404, + [SMALL_STATE(5520)] = 211465, + [SMALL_STATE(5521)] = 211538, + [SMALL_STATE(5522)] = 211609, + [SMALL_STATE(5523)] = 211680, + [SMALL_STATE(5524)] = 211723, + [SMALL_STATE(5525)] = 211766, + [SMALL_STATE(5526)] = 211837, + [SMALL_STATE(5527)] = 211910, + [SMALL_STATE(5528)] = 211981, + [SMALL_STATE(5529)] = 212042, + [SMALL_STATE(5530)] = 212115, + [SMALL_STATE(5531)] = 212158, + [SMALL_STATE(5532)] = 212229, + [SMALL_STATE(5533)] = 212272, + [SMALL_STATE(5534)] = 212317, + [SMALL_STATE(5535)] = 212362, + [SMALL_STATE(5536)] = 212423, + [SMALL_STATE(5537)] = 212466, + [SMALL_STATE(5538)] = 212539, + [SMALL_STATE(5539)] = 212610, + [SMALL_STATE(5540)] = 212683, + [SMALL_STATE(5541)] = 212754, + [SMALL_STATE(5542)] = 212825, + [SMALL_STATE(5543)] = 212868, + [SMALL_STATE(5544)] = 212939, + [SMALL_STATE(5545)] = 213012, + [SMALL_STATE(5546)] = 213073, + [SMALL_STATE(5547)] = 213146, + [SMALL_STATE(5548)] = 213189, + [SMALL_STATE(5549)] = 213250, + [SMALL_STATE(5550)] = 213293, + [SMALL_STATE(5551)] = 213336, + [SMALL_STATE(5552)] = 213407, + [SMALL_STATE(5553)] = 213480, + [SMALL_STATE(5554)] = 213531, + [SMALL_STATE(5555)] = 213604, + [SMALL_STATE(5556)] = 213665, + [SMALL_STATE(5557)] = 213736, + [SMALL_STATE(5558)] = 213797, + [SMALL_STATE(5559)] = 213868, + [SMALL_STATE(5560)] = 213911, + [SMALL_STATE(5561)] = 213972, + [SMALL_STATE(5562)] = 214033, + [SMALL_STATE(5563)] = 214104, + [SMALL_STATE(5564)] = 214147, + [SMALL_STATE(5565)] = 214220, + [SMALL_STATE(5566)] = 214293, + [SMALL_STATE(5567)] = 214366, + [SMALL_STATE(5568)] = 214439, + [SMALL_STATE(5569)] = 214490, + [SMALL_STATE(5570)] = 214561, + [SMALL_STATE(5571)] = 214628, + [SMALL_STATE(5572)] = 214689, + [SMALL_STATE(5573)] = 214760, + [SMALL_STATE(5574)] = 214833, + [SMALL_STATE(5575)] = 214906, + [SMALL_STATE(5576)] = 214980, + [SMALL_STATE(5577)] = 215054, + [SMALL_STATE(5578)] = 215128, + [SMALL_STATE(5579)] = 215202, + [SMALL_STATE(5580)] = 215276, + [SMALL_STATE(5581)] = 215318, + [SMALL_STATE(5582)] = 215376, + [SMALL_STATE(5583)] = 215434, + [SMALL_STATE(5584)] = 215508, + [SMALL_STATE(5585)] = 215582, + [SMALL_STATE(5586)] = 215640, + [SMALL_STATE(5587)] = 215700, + [SMALL_STATE(5588)] = 215774, + [SMALL_STATE(5589)] = 215848, + [SMALL_STATE(5590)] = 215906, + [SMALL_STATE(5591)] = 215980, + [SMALL_STATE(5592)] = 216054, + [SMALL_STATE(5593)] = 216112, + [SMALL_STATE(5594)] = 216172, + [SMALL_STATE(5595)] = 216230, + [SMALL_STATE(5596)] = 216304, + [SMALL_STATE(5597)] = 216374, + [SMALL_STATE(5598)] = 216448, + [SMALL_STATE(5599)] = 216508, + [SMALL_STATE(5600)] = 216582, + [SMALL_STATE(5601)] = 216656, + [SMALL_STATE(5602)] = 216714, + [SMALL_STATE(5603)] = 216788, + [SMALL_STATE(5604)] = 216846, + [SMALL_STATE(5605)] = 216916, + [SMALL_STATE(5606)] = 216990, + [SMALL_STATE(5607)] = 217064, + [SMALL_STATE(5608)] = 217114, + [SMALL_STATE(5609)] = 217172, + [SMALL_STATE(5610)] = 217216, + [SMALL_STATE(5611)] = 217254, + [SMALL_STATE(5612)] = 217312, + [SMALL_STATE(5613)] = 217382, + [SMALL_STATE(5614)] = 217456, + [SMALL_STATE(5615)] = 217530, + [SMALL_STATE(5616)] = 217568, + [SMALL_STATE(5617)] = 217642, + [SMALL_STATE(5618)] = 217686, + [SMALL_STATE(5619)] = 217762, + [SMALL_STATE(5620)] = 217832, + [SMALL_STATE(5621)] = 217906, + [SMALL_STATE(5622)] = 217966, + [SMALL_STATE(5623)] = 218040, + [SMALL_STATE(5624)] = 218116, + [SMALL_STATE(5625)] = 218192, + [SMALL_STATE(5626)] = 218252, + [SMALL_STATE(5627)] = 218326, + [SMALL_STATE(5628)] = 218400, + [SMALL_STATE(5629)] = 218458, + [SMALL_STATE(5630)] = 218516, + [SMALL_STATE(5631)] = 218574, + [SMALL_STATE(5632)] = 218648, + [SMALL_STATE(5633)] = 218718, + [SMALL_STATE(5634)] = 218792, + [SMALL_STATE(5635)] = 218850, + [SMALL_STATE(5636)] = 218888, + [SMALL_STATE(5637)] = 218962, + [SMALL_STATE(5638)] = 219036, + [SMALL_STATE(5639)] = 219074, + [SMALL_STATE(5640)] = 219148, + [SMALL_STATE(5641)] = 219222, + [SMALL_STATE(5642)] = 219280, + [SMALL_STATE(5643)] = 219354, + [SMALL_STATE(5644)] = 219428, + [SMALL_STATE(5645)] = 219466, + [SMALL_STATE(5646)] = 219524, + [SMALL_STATE(5647)] = 219598, + [SMALL_STATE(5648)] = 219674, + [SMALL_STATE(5649)] = 219748, + [SMALL_STATE(5650)] = 219806, + [SMALL_STATE(5651)] = 219880, + [SMALL_STATE(5652)] = 219938, + [SMALL_STATE(5653)] = 220008, + [SMALL_STATE(5654)] = 220066, + [SMALL_STATE(5655)] = 220104, + [SMALL_STATE(5656)] = 220144, + [SMALL_STATE(5657)] = 220182, + [SMALL_STATE(5658)] = 220256, + [SMALL_STATE(5659)] = 220330, + [SMALL_STATE(5660)] = 220404, + [SMALL_STATE(5661)] = 220478, + [SMALL_STATE(5662)] = 220536, + [SMALL_STATE(5663)] = 220596, + [SMALL_STATE(5664)] = 220666, + [SMALL_STATE(5665)] = 220736, + [SMALL_STATE(5666)] = 220794, + [SMALL_STATE(5667)] = 220852, + [SMALL_STATE(5668)] = 220926, + [SMALL_STATE(5669)] = 221000, + [SMALL_STATE(5670)] = 221074, + [SMALL_STATE(5671)] = 221144, + [SMALL_STATE(5672)] = 221218, + [SMALL_STATE(5673)] = 221278, + [SMALL_STATE(5674)] = 221338, + [SMALL_STATE(5675)] = 221396, + [SMALL_STATE(5676)] = 221454, + [SMALL_STATE(5677)] = 221528, + [SMALL_STATE(5678)] = 221607, + [SMALL_STATE(5679)] = 221686, + [SMALL_STATE(5680)] = 221753, + [SMALL_STATE(5681)] = 221832, + [SMALL_STATE(5682)] = 221911, + [SMALL_STATE(5683)] = 221990, + [SMALL_STATE(5684)] = 222069, + [SMALL_STATE(5685)] = 222148, + [SMALL_STATE(5686)] = 222227, + [SMALL_STATE(5687)] = 222306, + [SMALL_STATE(5688)] = 222385, + [SMALL_STATE(5689)] = 222452, + [SMALL_STATE(5690)] = 222531, + [SMALL_STATE(5691)] = 222598, + [SMALL_STATE(5692)] = 222677, + [SMALL_STATE(5693)] = 222756, + [SMALL_STATE(5694)] = 222835, + [SMALL_STATE(5695)] = 222884, + [SMALL_STATE(5696)] = 222951, + [SMALL_STATE(5697)] = 223000, + [SMALL_STATE(5698)] = 223079, + [SMALL_STATE(5699)] = 223146, + [SMALL_STATE(5700)] = 223225, + [SMALL_STATE(5701)] = 223304, + [SMALL_STATE(5702)] = 223383, + [SMALL_STATE(5703)] = 223420, + [SMALL_STATE(5704)] = 223465, + [SMALL_STATE(5705)] = 223544, + [SMALL_STATE(5706)] = 223623, + [SMALL_STATE(5707)] = 223702, + [SMALL_STATE(5708)] = 223781, + [SMALL_STATE(5709)] = 223860, + [SMALL_STATE(5710)] = 223927, + [SMALL_STATE(5711)] = 224006, + [SMALL_STATE(5712)] = 224073, + [SMALL_STATE(5713)] = 224152, + [SMALL_STATE(5714)] = 224219, + [SMALL_STATE(5715)] = 224298, + [SMALL_STATE(5716)] = 224335, + [SMALL_STATE(5717)] = 224402, + [SMALL_STATE(5718)] = 224439, + [SMALL_STATE(5719)] = 224518, + [SMALL_STATE(5720)] = 224597, + [SMALL_STATE(5721)] = 224634, + [SMALL_STATE(5722)] = 224671, + [SMALL_STATE(5723)] = 224750, + [SMALL_STATE(5724)] = 224829, + [SMALL_STATE(5725)] = 224866, + [SMALL_STATE(5726)] = 224945, + [SMALL_STATE(5727)] = 224982, + [SMALL_STATE(5728)] = 225019, + [SMALL_STATE(5729)] = 225086, + [SMALL_STATE(5730)] = 225165, + [SMALL_STATE(5731)] = 225214, + [SMALL_STATE(5732)] = 225293, + [SMALL_STATE(5733)] = 225372, + [SMALL_STATE(5734)] = 225451, + [SMALL_STATE(5735)] = 225530, + [SMALL_STATE(5736)] = 225609, + [SMALL_STATE(5737)] = 225646, + [SMALL_STATE(5738)] = 225713, + [SMALL_STATE(5739)] = 225750, + [SMALL_STATE(5740)] = 225829, + [SMALL_STATE(5741)] = 225866, + [SMALL_STATE(5742)] = 225945, + [SMALL_STATE(5743)] = 225994, + [SMALL_STATE(5744)] = 226061, + [SMALL_STATE(5745)] = 226098, + [SMALL_STATE(5746)] = 226177, + [SMALL_STATE(5747)] = 226214, + [SMALL_STATE(5748)] = 226293, + [SMALL_STATE(5749)] = 226372, + [SMALL_STATE(5750)] = 226451, + [SMALL_STATE(5751)] = 226530, + [SMALL_STATE(5752)] = 226567, + [SMALL_STATE(5753)] = 226646, + [SMALL_STATE(5754)] = 226713, + [SMALL_STATE(5755)] = 226792, + [SMALL_STATE(5756)] = 226871, + [SMALL_STATE(5757)] = 226950, + [SMALL_STATE(5758)] = 227029, + [SMALL_STATE(5759)] = 227066, + [SMALL_STATE(5760)] = 227103, + [SMALL_STATE(5761)] = 227182, + [SMALL_STATE(5762)] = 227261, + [SMALL_STATE(5763)] = 227340, + [SMALL_STATE(5764)] = 227419, + [SMALL_STATE(5765)] = 227498, + [SMALL_STATE(5766)] = 227535, + [SMALL_STATE(5767)] = 227572, + [SMALL_STATE(5768)] = 227651, + [SMALL_STATE(5769)] = 227688, + [SMALL_STATE(5770)] = 227767, + [SMALL_STATE(5771)] = 227836, + [SMALL_STATE(5772)] = 227915, + [SMALL_STATE(5773)] = 227994, + [SMALL_STATE(5774)] = 228073, + [SMALL_STATE(5775)] = 228152, + [SMALL_STATE(5776)] = 228231, + [SMALL_STATE(5777)] = 228298, + [SMALL_STATE(5778)] = 228377, + [SMALL_STATE(5779)] = 228414, + [SMALL_STATE(5780)] = 228451, + [SMALL_STATE(5781)] = 228518, + [SMALL_STATE(5782)] = 228597, + [SMALL_STATE(5783)] = 228676, + [SMALL_STATE(5784)] = 228745, + [SMALL_STATE(5785)] = 228824, + [SMALL_STATE(5786)] = 228861, + [SMALL_STATE(5787)] = 228940, + [SMALL_STATE(5788)] = 228977, + [SMALL_STATE(5789)] = 229014, + [SMALL_STATE(5790)] = 229081, + [SMALL_STATE(5791)] = 229148, + [SMALL_STATE(5792)] = 229217, + [SMALL_STATE(5793)] = 229296, + [SMALL_STATE(5794)] = 229363, + [SMALL_STATE(5795)] = 229400, + [SMALL_STATE(5796)] = 229437, + [SMALL_STATE(5797)] = 229482, + [SMALL_STATE(5798)] = 229561, + [SMALL_STATE(5799)] = 229640, + [SMALL_STATE(5800)] = 229707, + [SMALL_STATE(5801)] = 229786, + [SMALL_STATE(5802)] = 229865, + [SMALL_STATE(5803)] = 229944, + [SMALL_STATE(5804)] = 229981, + [SMALL_STATE(5805)] = 230048, + [SMALL_STATE(5806)] = 230085, + [SMALL_STATE(5807)] = 230122, + [SMALL_STATE(5808)] = 230159, + [SMALL_STATE(5809)] = 230196, + [SMALL_STATE(5810)] = 230275, + [SMALL_STATE(5811)] = 230354, + [SMALL_STATE(5812)] = 230421, + [SMALL_STATE(5813)] = 230488, + [SMALL_STATE(5814)] = 230557, + [SMALL_STATE(5815)] = 230594, + [SMALL_STATE(5816)] = 230673, + [SMALL_STATE(5817)] = 230752, + [SMALL_STATE(5818)] = 230831, + [SMALL_STATE(5819)] = 230868, + [SMALL_STATE(5820)] = 230905, + [SMALL_STATE(5821)] = 230942, + [SMALL_STATE(5822)] = 231021, + [SMALL_STATE(5823)] = 231100, + [SMALL_STATE(5824)] = 231179, + [SMALL_STATE(5825)] = 231258, + [SMALL_STATE(5826)] = 231337, + [SMALL_STATE(5827)] = 231416, + [SMALL_STATE(5828)] = 231495, + [SMALL_STATE(5829)] = 231562, + [SMALL_STATE(5830)] = 231641, + [SMALL_STATE(5831)] = 231720, + [SMALL_STATE(5832)] = 231799, + [SMALL_STATE(5833)] = 231875, + [SMALL_STATE(5834)] = 231923, + [SMALL_STATE(5835)] = 231981, + [SMALL_STATE(5836)] = 232043, + [SMALL_STATE(5837)] = 232119, + [SMALL_STATE(5838)] = 232181, + [SMALL_STATE(5839)] = 232257, + [SMALL_STATE(5840)] = 232315, + [SMALL_STATE(5841)] = 232391, + [SMALL_STATE(5842)] = 232467, + [SMALL_STATE(5843)] = 232525, + [SMALL_STATE(5844)] = 232601, + [SMALL_STATE(5845)] = 232677, + [SMALL_STATE(5846)] = 232753, + [SMALL_STATE(5847)] = 232829, + [SMALL_STATE(5848)] = 232905, + [SMALL_STATE(5849)] = 232981, + [SMALL_STATE(5850)] = 233043, + [SMALL_STATE(5851)] = 233119, + [SMALL_STATE(5852)] = 233195, + [SMALL_STATE(5853)] = 233257, + [SMALL_STATE(5854)] = 233319, + [SMALL_STATE(5855)] = 233377, + [SMALL_STATE(5856)] = 233453, + [SMALL_STATE(5857)] = 233515, + [SMALL_STATE(5858)] = 233591, + [SMALL_STATE(5859)] = 233667, + [SMALL_STATE(5860)] = 233707, + [SMALL_STATE(5861)] = 233783, + [SMALL_STATE(5862)] = 233859, + [SMALL_STATE(5863)] = 233935, + [SMALL_STATE(5864)] = 234011, + [SMALL_STATE(5865)] = 234078, + [SMALL_STATE(5866)] = 234139, + [SMALL_STATE(5867)] = 234182, + [SMALL_STATE(5868)] = 234249, + [SMALL_STATE(5869)] = 234310, + [SMALL_STATE(5870)] = 234355, + [SMALL_STATE(5871)] = 234416, + [SMALL_STATE(5872)] = 234483, + [SMALL_STATE(5873)] = 234544, + [SMALL_STATE(5874)] = 234611, + [SMALL_STATE(5875)] = 234672, + [SMALL_STATE(5876)] = 234715, + [SMALL_STATE(5877)] = 234782, + [SMALL_STATE(5878)] = 234843, + [SMALL_STATE(5879)] = 234910, + [SMALL_STATE(5880)] = 234977, + [SMALL_STATE(5881)] = 235044, + [SMALL_STATE(5882)] = 235082, + [SMALL_STATE(5883)] = 235124, + [SMALL_STATE(5884)] = 235184, + [SMALL_STATE(5885)] = 235244, + [SMALL_STATE(5886)] = 235278, + [SMALL_STATE(5887)] = 235338, + [SMALL_STATE(5888)] = 235398, + [SMALL_STATE(5889)] = 235458, + [SMALL_STATE(5890)] = 235496, + [SMALL_STATE(5891)] = 235556, + [SMALL_STATE(5892)] = 235616, + [SMALL_STATE(5893)] = 235676, + [SMALL_STATE(5894)] = 235736, + [SMALL_STATE(5895)] = 235796, + [SMALL_STATE(5896)] = 235840, + [SMALL_STATE(5897)] = 235874, + [SMALL_STATE(5898)] = 235912, + [SMALL_STATE(5899)] = 235948, + [SMALL_STATE(5900)] = 236008, + [SMALL_STATE(5901)] = 236068, + [SMALL_STATE(5902)] = 236128, + [SMALL_STATE(5903)] = 236166, + [SMALL_STATE(5904)] = 236226, + [SMALL_STATE(5905)] = 236286, + [SMALL_STATE(5906)] = 236346, + [SMALL_STATE(5907)] = 236406, + [SMALL_STATE(5908)] = 236444, + [SMALL_STATE(5909)] = 236504, + [SMALL_STATE(5910)] = 236542, + [SMALL_STATE(5911)] = 236580, + [SMALL_STATE(5912)] = 236640, + [SMALL_STATE(5913)] = 236684, + [SMALL_STATE(5914)] = 236744, + [SMALL_STATE(5915)] = 236804, + [SMALL_STATE(5916)] = 236864, + [SMALL_STATE(5917)] = 236924, + [SMALL_STATE(5918)] = 236984, + [SMALL_STATE(5919)] = 237043, + [SMALL_STATE(5920)] = 237080, + [SMALL_STATE(5921)] = 237139, + [SMALL_STATE(5922)] = 237200, + [SMALL_STATE(5923)] = 237261, + [SMALL_STATE(5924)] = 237320, + [SMALL_STATE(5925)] = 237381, + [SMALL_STATE(5926)] = 237440, + [SMALL_STATE(5927)] = 237499, + [SMALL_STATE(5928)] = 237560, + [SMALL_STATE(5929)] = 237619, + [SMALL_STATE(5930)] = 237680, + [SMALL_STATE(5931)] = 237717, + [SMALL_STATE(5932)] = 237754, + [SMALL_STATE(5933)] = 237791, + [SMALL_STATE(5934)] = 237850, + [SMALL_STATE(5935)] = 237887, + [SMALL_STATE(5936)] = 237924, + [SMALL_STATE(5937)] = 237983, + [SMALL_STATE(5938)] = 238020, + [SMALL_STATE(5939)] = 238057, + [SMALL_STATE(5940)] = 238118, + [SMALL_STATE(5941)] = 238177, + [SMALL_STATE(5942)] = 238238, + [SMALL_STATE(5943)] = 238297, + [SMALL_STATE(5944)] = 238358, + [SMALL_STATE(5945)] = 238419, + [SMALL_STATE(5946)] = 238478, + [SMALL_STATE(5947)] = 238515, + [SMALL_STATE(5948)] = 238552, + [SMALL_STATE(5949)] = 238611, + [SMALL_STATE(5950)] = 238648, + [SMALL_STATE(5951)] = 238685, + [SMALL_STATE(5952)] = 238722, + [SMALL_STATE(5953)] = 238780, + [SMALL_STATE(5954)] = 238838, + [SMALL_STATE(5955)] = 238886, + [SMALL_STATE(5956)] = 238920, + [SMALL_STATE(5957)] = 238968, + [SMALL_STATE(5958)] = 239026, + [SMALL_STATE(5959)] = 239062, + [SMALL_STATE(5960)] = 239110, + [SMALL_STATE(5961)] = 239168, + [SMALL_STATE(5962)] = 239226, + [SMALL_STATE(5963)] = 239284, + [SMALL_STATE(5964)] = 239319, + [SMALL_STATE(5965)] = 239356, + [SMALL_STATE(5966)] = 239403, + [SMALL_STATE(5967)] = 239438, + [SMALL_STATE(5968)] = 239490, + [SMALL_STATE(5969)] = 239546, + [SMALL_STATE(5970)] = 239598, + [SMALL_STATE(5971)] = 239650, + [SMALL_STATE(5972)] = 239706, + [SMALL_STATE(5973)] = 239758, + [SMALL_STATE(5974)] = 239810, + [SMALL_STATE(5975)] = 239866, + [SMALL_STATE(5976)] = 239918, + [SMALL_STATE(5977)] = 239970, + [SMALL_STATE(5978)] = 240022, + [SMALL_STATE(5979)] = 240074, + [SMALL_STATE(5980)] = 240130, + [SMALL_STATE(5981)] = 240198, + [SMALL_STATE(5982)] = 240254, + [SMALL_STATE(5983)] = 240306, + [SMALL_STATE(5984)] = 240358, + [SMALL_STATE(5985)] = 240410, + [SMALL_STATE(5986)] = 240466, + [SMALL_STATE(5987)] = 240522, + [SMALL_STATE(5988)] = 240574, + [SMALL_STATE(5989)] = 240630, + [SMALL_STATE(5990)] = 240686, + [SMALL_STATE(5991)] = 240756, + [SMALL_STATE(5992)] = 240808, + [SMALL_STATE(5993)] = 240864, + [SMALL_STATE(5994)] = 240932, + [SMALL_STATE(5995)] = 240984, + [SMALL_STATE(5996)] = 241036, + [SMALL_STATE(5997)] = 241092, + [SMALL_STATE(5998)] = 241130, + [SMALL_STATE(5999)] = 241186, + [SMALL_STATE(6000)] = 241238, + [SMALL_STATE(6001)] = 241290, + [SMALL_STATE(6002)] = 241342, + [SMALL_STATE(6003)] = 241394, + [SMALL_STATE(6004)] = 241446, + [SMALL_STATE(6005)] = 241498, + [SMALL_STATE(6006)] = 241550, + [SMALL_STATE(6007)] = 241588, + [SMALL_STATE(6008)] = 241640, + [SMALL_STATE(6009)] = 241708, + [SMALL_STATE(6010)] = 241760, + [SMALL_STATE(6011)] = 241812, + [SMALL_STATE(6012)] = 241864, + [SMALL_STATE(6013)] = 241898, + [SMALL_STATE(6014)] = 241950, + [SMALL_STATE(6015)] = 242002, + [SMALL_STATE(6016)] = 242070, + [SMALL_STATE(6017)] = 242122, + [SMALL_STATE(6018)] = 242174, + [SMALL_STATE(6019)] = 242220, + [SMALL_STATE(6020)] = 242272, + [SMALL_STATE(6021)] = 242324, + [SMALL_STATE(6022)] = 242376, + [SMALL_STATE(6023)] = 242428, + [SMALL_STATE(6024)] = 242480, + [SMALL_STATE(6025)] = 242532, + [SMALL_STATE(6026)] = 242584, + [SMALL_STATE(6027)] = 242636, + [SMALL_STATE(6028)] = 242682, + [SMALL_STATE(6029)] = 242734, + [SMALL_STATE(6030)] = 242786, + [SMALL_STATE(6031)] = 242856, + [SMALL_STATE(6032)] = 242908, + [SMALL_STATE(6033)] = 242960, + [SMALL_STATE(6034)] = 243012, + [SMALL_STATE(6035)] = 243064, + [SMALL_STATE(6036)] = 243134, + [SMALL_STATE(6037)] = 243193, + [SMALL_STATE(6038)] = 243252, + [SMALL_STATE(6039)] = 243311, + [SMALL_STATE(6040)] = 243370, + [SMALL_STATE(6041)] = 243429, + [SMALL_STATE(6042)] = 243488, + [SMALL_STATE(6043)] = 243547, + [SMALL_STATE(6044)] = 243606, + [SMALL_STATE(6045)] = 243665, + [SMALL_STATE(6046)] = 243724, + [SMALL_STATE(6047)] = 243783, + [SMALL_STATE(6048)] = 243842, + [SMALL_STATE(6049)] = 243875, + [SMALL_STATE(6050)] = 243934, + [SMALL_STATE(6051)] = 243993, + [SMALL_STATE(6052)] = 244022, + [SMALL_STATE(6053)] = 244081, + [SMALL_STATE(6054)] = 244140, + [SMALL_STATE(6055)] = 244199, + [SMALL_STATE(6056)] = 244258, + [SMALL_STATE(6057)] = 244317, + [SMALL_STATE(6058)] = 244376, + [SMALL_STATE(6059)] = 244435, + [SMALL_STATE(6060)] = 244494, + [SMALL_STATE(6061)] = 244553, + [SMALL_STATE(6062)] = 244612, + [SMALL_STATE(6063)] = 244671, + [SMALL_STATE(6064)] = 244730, + [SMALL_STATE(6065)] = 244789, + [SMALL_STATE(6066)] = 244848, + [SMALL_STATE(6067)] = 244907, + [SMALL_STATE(6068)] = 244966, + [SMALL_STATE(6069)] = 245025, + [SMALL_STATE(6070)] = 245084, + [SMALL_STATE(6071)] = 245143, + [SMALL_STATE(6072)] = 245202, + [SMALL_STATE(6073)] = 245261, + [SMALL_STATE(6074)] = 245320, + [SMALL_STATE(6075)] = 245379, + [SMALL_STATE(6076)] = 245434, + [SMALL_STATE(6077)] = 245493, + [SMALL_STATE(6078)] = 245552, + [SMALL_STATE(6079)] = 245611, + [SMALL_STATE(6080)] = 245670, + [SMALL_STATE(6081)] = 245729, + [SMALL_STATE(6082)] = 245788, + [SMALL_STATE(6083)] = 245847, + [SMALL_STATE(6084)] = 245892, + [SMALL_STATE(6085)] = 245951, + [SMALL_STATE(6086)] = 246010, + [SMALL_STATE(6087)] = 246069, + [SMALL_STATE(6088)] = 246132, + [SMALL_STATE(6089)] = 246191, + [SMALL_STATE(6090)] = 246250, + [SMALL_STATE(6091)] = 246309, + [SMALL_STATE(6092)] = 246352, + [SMALL_STATE(6093)] = 246395, + [SMALL_STATE(6094)] = 246424, + [SMALL_STATE(6095)] = 246483, + [SMALL_STATE(6096)] = 246542, + [SMALL_STATE(6097)] = 246601, + [SMALL_STATE(6098)] = 246660, + [SMALL_STATE(6099)] = 246703, + [SMALL_STATE(6100)] = 246762, + [SMALL_STATE(6101)] = 246821, + [SMALL_STATE(6102)] = 246880, + [SMALL_STATE(6103)] = 246939, + [SMALL_STATE(6104)] = 246998, + [SMALL_STATE(6105)] = 247057, + [SMALL_STATE(6106)] = 247116, + [SMALL_STATE(6107)] = 247175, + [SMALL_STATE(6108)] = 247234, + [SMALL_STATE(6109)] = 247293, + [SMALL_STATE(6110)] = 247352, + [SMALL_STATE(6111)] = 247411, + [SMALL_STATE(6112)] = 247470, + [SMALL_STATE(6113)] = 247529, + [SMALL_STATE(6114)] = 247588, + [SMALL_STATE(6115)] = 247647, + [SMALL_STATE(6116)] = 247706, + [SMALL_STATE(6117)] = 247765, + [SMALL_STATE(6118)] = 247824, + [SMALL_STATE(6119)] = 247883, + [SMALL_STATE(6120)] = 247942, + [SMALL_STATE(6121)] = 248001, + [SMALL_STATE(6122)] = 248060, + [SMALL_STATE(6123)] = 248119, + [SMALL_STATE(6124)] = 248178, + [SMALL_STATE(6125)] = 248237, + [SMALL_STATE(6126)] = 248296, + [SMALL_STATE(6127)] = 248355, + [SMALL_STATE(6128)] = 248414, + [SMALL_STATE(6129)] = 248473, + [SMALL_STATE(6130)] = 248532, + [SMALL_STATE(6131)] = 248587, + [SMALL_STATE(6132)] = 248646, + [SMALL_STATE(6133)] = 248705, + [SMALL_STATE(6134)] = 248760, + [SMALL_STATE(6135)] = 248819, + [SMALL_STATE(6136)] = 248878, + [SMALL_STATE(6137)] = 248937, + [SMALL_STATE(6138)] = 248996, + [SMALL_STATE(6139)] = 249055, + [SMALL_STATE(6140)] = 249114, + [SMALL_STATE(6141)] = 249173, + [SMALL_STATE(6142)] = 249232, + [SMALL_STATE(6143)] = 249291, + [SMALL_STATE(6144)] = 249350, + [SMALL_STATE(6145)] = 249409, + [SMALL_STATE(6146)] = 249468, + [SMALL_STATE(6147)] = 249527, + [SMALL_STATE(6148)] = 249567, + [SMALL_STATE(6149)] = 249595, + [SMALL_STATE(6150)] = 249635, + [SMALL_STATE(6151)] = 249675, + [SMALL_STATE(6152)] = 249715, + [SMALL_STATE(6153)] = 249755, + [SMALL_STATE(6154)] = 249795, + [SMALL_STATE(6155)] = 249835, + [SMALL_STATE(6156)] = 249875, + [SMALL_STATE(6157)] = 249915, + [SMALL_STATE(6158)] = 249979, + [SMALL_STATE(6159)] = 250007, + [SMALL_STATE(6160)] = 250065, + [SMALL_STATE(6161)] = 250105, + [SMALL_STATE(6162)] = 250141, + [SMALL_STATE(6163)] = 250177, + [SMALL_STATE(6164)] = 250217, + [SMALL_STATE(6165)] = 250257, + [SMALL_STATE(6166)] = 250297, + [SMALL_STATE(6167)] = 250337, + [SMALL_STATE(6168)] = 250377, + [SMALL_STATE(6169)] = 250405, + [SMALL_STATE(6170)] = 250433, + [SMALL_STATE(6171)] = 250475, + [SMALL_STATE(6172)] = 250503, + [SMALL_STATE(6173)] = 250561, + [SMALL_STATE(6174)] = 250613, + [SMALL_STATE(6175)] = 250653, + [SMALL_STATE(6176)] = 250693, + [SMALL_STATE(6177)] = 250733, + [SMALL_STATE(6178)] = 250791, + [SMALL_STATE(6179)] = 250849, + [SMALL_STATE(6180)] = 250913, + [SMALL_STATE(6181)] = 250941, + [SMALL_STATE(6182)] = 250981, + [SMALL_STATE(6183)] = 251021, + [SMALL_STATE(6184)] = 251055, + [SMALL_STATE(6185)] = 251119, + [SMALL_STATE(6186)] = 251159, + [SMALL_STATE(6187)] = 251199, + [SMALL_STATE(6188)] = 251239, + [SMALL_STATE(6189)] = 251291, + [SMALL_STATE(6190)] = 251327, + [SMALL_STATE(6191)] = 251367, + [SMALL_STATE(6192)] = 251431, + [SMALL_STATE(6193)] = 251471, + [SMALL_STATE(6194)] = 251523, + [SMALL_STATE(6195)] = 251563, + [SMALL_STATE(6196)] = 251621, + [SMALL_STATE(6197)] = 251671, + [SMALL_STATE(6198)] = 251729, + [SMALL_STATE(6199)] = 251769, + [SMALL_STATE(6200)] = 251809, + [SMALL_STATE(6201)] = 251853, + [SMALL_STATE(6202)] = 251899, + [SMALL_STATE(6203)] = 251939, + [SMALL_STATE(6204)] = 251979, + [SMALL_STATE(6205)] = 252019, + [SMALL_STATE(6206)] = 252071, + [SMALL_STATE(6207)] = 252111, + [SMALL_STATE(6208)] = 252175, + [SMALL_STATE(6209)] = 252215, + [SMALL_STATE(6210)] = 252273, + [SMALL_STATE(6211)] = 252337, + [SMALL_STATE(6212)] = 252383, + [SMALL_STATE(6213)] = 252423, + [SMALL_STATE(6214)] = 252463, + [SMALL_STATE(6215)] = 252527, + [SMALL_STATE(6216)] = 252591, + [SMALL_STATE(6217)] = 252631, + [SMALL_STATE(6218)] = 252695, + [SMALL_STATE(6219)] = 252735, + [SMALL_STATE(6220)] = 252775, + [SMALL_STATE(6221)] = 252815, + [SMALL_STATE(6222)] = 252879, + [SMALL_STATE(6223)] = 252907, + [SMALL_STATE(6224)] = 252955, + [SMALL_STATE(6225)] = 252987, + [SMALL_STATE(6226)] = 253015, + [SMALL_STATE(6227)] = 253043, + [SMALL_STATE(6228)] = 253083, + [SMALL_STATE(6229)] = 253141, + [SMALL_STATE(6230)] = 253181, + [SMALL_STATE(6231)] = 253209, + [SMALL_STATE(6232)] = 253253, + [SMALL_STATE(6233)] = 253317, + [SMALL_STATE(6234)] = 253381, + [SMALL_STATE(6235)] = 253445, + [SMALL_STATE(6236)] = 253503, + [SMALL_STATE(6237)] = 253567, + [SMALL_STATE(6238)] = 253607, + [SMALL_STATE(6239)] = 253664, + [SMALL_STATE(6240)] = 253699, + [SMALL_STATE(6241)] = 253734, + [SMALL_STATE(6242)] = 253761, + [SMALL_STATE(6243)] = 253790, + [SMALL_STATE(6244)] = 253825, + [SMALL_STATE(6245)] = 253852, + [SMALL_STATE(6246)] = 253879, + [SMALL_STATE(6247)] = 253924, + [SMALL_STATE(6248)] = 253951, + [SMALL_STATE(6249)] = 253982, + [SMALL_STATE(6250)] = 254011, + [SMALL_STATE(6251)] = 254060, + [SMALL_STATE(6252)] = 254093, + [SMALL_STATE(6253)] = 254128, + [SMALL_STATE(6254)] = 254165, + [SMALL_STATE(6255)] = 254192, + [SMALL_STATE(6256)] = 254219, + [SMALL_STATE(6257)] = 254268, + [SMALL_STATE(6258)] = 254295, + [SMALL_STATE(6259)] = 254330, + [SMALL_STATE(6260)] = 254375, + [SMALL_STATE(6261)] = 254406, + [SMALL_STATE(6262)] = 254441, + [SMALL_STATE(6263)] = 254468, + [SMALL_STATE(6264)] = 254499, + [SMALL_STATE(6265)] = 254534, + [SMALL_STATE(6266)] = 254573, + [SMALL_STATE(6267)] = 254600, + [SMALL_STATE(6268)] = 254641, + [SMALL_STATE(6269)] = 254676, + [SMALL_STATE(6270)] = 254721, + [SMALL_STATE(6271)] = 254748, + [SMALL_STATE(6272)] = 254791, + [SMALL_STATE(6273)] = 254818, + [SMALL_STATE(6274)] = 254845, + [SMALL_STATE(6275)] = 254872, + [SMALL_STATE(6276)] = 254911, + [SMALL_STATE(6277)] = 254938, + [SMALL_STATE(6278)] = 254977, + [SMALL_STATE(6279)] = 255004, + [SMALL_STATE(6280)] = 255033, + [SMALL_STATE(6281)] = 255060, + [SMALL_STATE(6282)] = 255099, + [SMALL_STATE(6283)] = 255134, + [SMALL_STATE(6284)] = 255173, + [SMALL_STATE(6285)] = 255200, + [SMALL_STATE(6286)] = 255235, + [SMALL_STATE(6287)] = 255262, + [SMALL_STATE(6288)] = 255289, + [SMALL_STATE(6289)] = 255316, + [SMALL_STATE(6290)] = 255343, + [SMALL_STATE(6291)] = 255382, + [SMALL_STATE(6292)] = 255409, + [SMALL_STATE(6293)] = 255448, + [SMALL_STATE(6294)] = 255493, + [SMALL_STATE(6295)] = 255532, + [SMALL_STATE(6296)] = 255571, + [SMALL_STATE(6297)] = 255616, + [SMALL_STATE(6298)] = 255673, + [SMALL_STATE(6299)] = 255712, + [SMALL_STATE(6300)] = 255763, + [SMALL_STATE(6301)] = 255808, + [SMALL_STATE(6302)] = 255853, + [SMALL_STATE(6303)] = 255880, + [SMALL_STATE(6304)] = 255919, + [SMALL_STATE(6305)] = 255950, + [SMALL_STATE(6306)] = 255989, + [SMALL_STATE(6307)] = 256016, + [SMALL_STATE(6308)] = 256043, + [SMALL_STATE(6309)] = 256088, + [SMALL_STATE(6310)] = 256127, + [SMALL_STATE(6311)] = 256172, + [SMALL_STATE(6312)] = 256223, + [SMALL_STATE(6313)] = 256254, + [SMALL_STATE(6314)] = 256293, + [SMALL_STATE(6315)] = 256324, + [SMALL_STATE(6316)] = 256369, + [SMALL_STATE(6317)] = 256408, + [SMALL_STATE(6318)] = 256447, + [SMALL_STATE(6319)] = 256482, + [SMALL_STATE(6320)] = 256509, + [SMALL_STATE(6321)] = 256554, + [SMALL_STATE(6322)] = 256605, + [SMALL_STATE(6323)] = 256648, + [SMALL_STATE(6324)] = 256693, + [SMALL_STATE(6325)] = 256738, + [SMALL_STATE(6326)] = 256765, + [SMALL_STATE(6327)] = 256792, + [SMALL_STATE(6328)] = 256827, + [SMALL_STATE(6329)] = 256866, + [SMALL_STATE(6330)] = 256911, + [SMALL_STATE(6331)] = 256950, + [SMALL_STATE(6332)] = 256985, + [SMALL_STATE(6333)] = 257042, + [SMALL_STATE(6334)] = 257077, + [SMALL_STATE(6335)] = 257104, + [SMALL_STATE(6336)] = 257139, + [SMALL_STATE(6337)] = 257174, + [SMALL_STATE(6338)] = 257209, + [SMALL_STATE(6339)] = 257244, + [SMALL_STATE(6340)] = 257283, + [SMALL_STATE(6341)] = 257328, + [SMALL_STATE(6342)] = 257359, + [SMALL_STATE(6343)] = 257398, + [SMALL_STATE(6344)] = 257437, + [SMALL_STATE(6345)] = 257472, + [SMALL_STATE(6346)] = 257503, + [SMALL_STATE(6347)] = 257530, + [SMALL_STATE(6348)] = 257581, + [SMALL_STATE(6349)] = 257638, + [SMALL_STATE(6350)] = 257683, + [SMALL_STATE(6351)] = 257718, + [SMALL_STATE(6352)] = 257745, + [SMALL_STATE(6353)] = 257784, + [SMALL_STATE(6354)] = 257823, + [SMALL_STATE(6355)] = 257880, + [SMALL_STATE(6356)] = 257909, + [SMALL_STATE(6357)] = 257948, + [SMALL_STATE(6358)] = 257987, + [SMALL_STATE(6359)] = 258032, + [SMALL_STATE(6360)] = 258089, + [SMALL_STATE(6361)] = 258116, + [SMALL_STATE(6362)] = 258151, + [SMALL_STATE(6363)] = 258193, + [SMALL_STATE(6364)] = 258223, + [SMALL_STATE(6365)] = 258253, + [SMALL_STATE(6366)] = 258305, + [SMALL_STATE(6367)] = 258341, + [SMALL_STATE(6368)] = 258377, + [SMALL_STATE(6369)] = 258413, + [SMALL_STATE(6370)] = 258449, + [SMALL_STATE(6371)] = 258485, + [SMALL_STATE(6372)] = 258515, + [SMALL_STATE(6373)] = 258551, + [SMALL_STATE(6374)] = 258581, + [SMALL_STATE(6375)] = 258617, + [SMALL_STATE(6376)] = 258653, + [SMALL_STATE(6377)] = 258678, + [SMALL_STATE(6378)] = 258721, + [SMALL_STATE(6379)] = 258770, + [SMALL_STATE(6380)] = 258813, + [SMALL_STATE(6381)] = 258862, + [SMALL_STATE(6382)] = 258899, + [SMALL_STATE(6383)] = 258942, + [SMALL_STATE(6384)] = 258967, + [SMALL_STATE(6385)] = 258992, + [SMALL_STATE(6386)] = 259029, + [SMALL_STATE(6387)] = 259078, + [SMALL_STATE(6388)] = 259115, + [SMALL_STATE(6389)] = 259152, + [SMALL_STATE(6390)] = 259189, + [SMALL_STATE(6391)] = 259214, + [SMALL_STATE(6392)] = 259263, + [SMALL_STATE(6393)] = 259288, + [SMALL_STATE(6394)] = 259325, + [SMALL_STATE(6395)] = 259368, + [SMALL_STATE(6396)] = 259411, + [SMALL_STATE(6397)] = 259454, + [SMALL_STATE(6398)] = 259497, + [SMALL_STATE(6399)] = 259546, + [SMALL_STATE(6400)] = 259589, + [SMALL_STATE(6401)] = 259638, + [SMALL_STATE(6402)] = 259681, + [SMALL_STATE(6403)] = 259730, + [SMALL_STATE(6404)] = 259779, + [SMALL_STATE(6405)] = 259820, + [SMALL_STATE(6406)] = 259857, + [SMALL_STATE(6407)] = 259906, + [SMALL_STATE(6408)] = 259957, + [SMALL_STATE(6409)] = 259994, + [SMALL_STATE(6410)] = 260019, + [SMALL_STATE(6411)] = 260044, + [SMALL_STATE(6412)] = 260093, + [SMALL_STATE(6413)] = 260130, + [SMALL_STATE(6414)] = 260179, + [SMALL_STATE(6415)] = 260222, + [SMALL_STATE(6416)] = 260259, + [SMALL_STATE(6417)] = 260308, + [SMALL_STATE(6418)] = 260351, + [SMALL_STATE(6419)] = 260394, + [SMALL_STATE(6420)] = 260443, + [SMALL_STATE(6421)] = 260480, + [SMALL_STATE(6422)] = 260517, + [SMALL_STATE(6423)] = 260542, + [SMALL_STATE(6424)] = 260591, + [SMALL_STATE(6425)] = 260616, + [SMALL_STATE(6426)] = 260653, + [SMALL_STATE(6427)] = 260696, + [SMALL_STATE(6428)] = 260733, + [SMALL_STATE(6429)] = 260776, + [SMALL_STATE(6430)] = 260825, + [SMALL_STATE(6431)] = 260850, + [SMALL_STATE(6432)] = 260891, + [SMALL_STATE(6433)] = 260940, + [SMALL_STATE(6434)] = 260983, + [SMALL_STATE(6435)] = 261026, + [SMALL_STATE(6436)] = 261075, + [SMALL_STATE(6437)] = 261118, + [SMALL_STATE(6438)] = 261161, + [SMALL_STATE(6439)] = 261192, + [SMALL_STATE(6440)] = 261235, + [SMALL_STATE(6441)] = 261284, + [SMALL_STATE(6442)] = 261309, + [SMALL_STATE(6443)] = 261334, + [SMALL_STATE(6444)] = 261359, + [SMALL_STATE(6445)] = 261402, + [SMALL_STATE(6446)] = 261445, + [SMALL_STATE(6447)] = 261476, + [SMALL_STATE(6448)] = 261501, + [SMALL_STATE(6449)] = 261538, + [SMALL_STATE(6450)] = 261587, + [SMALL_STATE(6451)] = 261612, + [SMALL_STATE(6452)] = 261655, + [SMALL_STATE(6453)] = 261704, + [SMALL_STATE(6454)] = 261729, + [SMALL_STATE(6455)] = 261766, + [SMALL_STATE(6456)] = 261809, + [SMALL_STATE(6457)] = 261858, + [SMALL_STATE(6458)] = 261901, + [SMALL_STATE(6459)] = 261950, + [SMALL_STATE(6460)] = 261999, + [SMALL_STATE(6461)] = 262048, + [SMALL_STATE(6462)] = 262097, + [SMALL_STATE(6463)] = 262140, + [SMALL_STATE(6464)] = 262165, + [SMALL_STATE(6465)] = 262190, + [SMALL_STATE(6466)] = 262233, + [SMALL_STATE(6467)] = 262258, + [SMALL_STATE(6468)] = 262283, + [SMALL_STATE(6469)] = 262319, + [SMALL_STATE(6470)] = 262345, + [SMALL_STATE(6471)] = 262369, + [SMALL_STATE(6472)] = 262393, + [SMALL_STATE(6473)] = 262437, + [SMALL_STATE(6474)] = 262477, + [SMALL_STATE(6475)] = 262503, + [SMALL_STATE(6476)] = 262543, + [SMALL_STATE(6477)] = 262573, + [SMALL_STATE(6478)] = 262609, + [SMALL_STATE(6479)] = 262639, + [SMALL_STATE(6480)] = 262669, + [SMALL_STATE(6481)] = 262705, + [SMALL_STATE(6482)] = 262735, + [SMALL_STATE(6483)] = 262775, + [SMALL_STATE(6484)] = 262811, + [SMALL_STATE(6485)] = 262841, + [SMALL_STATE(6486)] = 262877, + [SMALL_STATE(6487)] = 262907, + [SMALL_STATE(6488)] = 262947, + [SMALL_STATE(6489)] = 262987, + [SMALL_STATE(6490)] = 263023, + [SMALL_STATE(6491)] = 263045, + [SMALL_STATE(6492)] = 263085, + [SMALL_STATE(6493)] = 263115, + [SMALL_STATE(6494)] = 263145, + [SMALL_STATE(6495)] = 263185, + [SMALL_STATE(6496)] = 263225, + [SMALL_STATE(6497)] = 263265, + [SMALL_STATE(6498)] = 263305, + [SMALL_STATE(6499)] = 263345, + [SMALL_STATE(6500)] = 263367, + [SMALL_STATE(6501)] = 263407, + [SMALL_STATE(6502)] = 263447, + [SMALL_STATE(6503)] = 263487, + [SMALL_STATE(6504)] = 263527, + [SMALL_STATE(6505)] = 263549, + [SMALL_STATE(6506)] = 263579, + [SMALL_STATE(6507)] = 263601, + [SMALL_STATE(6508)] = 263623, + [SMALL_STATE(6509)] = 263645, + [SMALL_STATE(6510)] = 263685, + [SMALL_STATE(6511)] = 263725, + [SMALL_STATE(6512)] = 263765, + [SMALL_STATE(6513)] = 263787, + [SMALL_STATE(6514)] = 263809, + [SMALL_STATE(6515)] = 263831, + [SMALL_STATE(6516)] = 263861, + [SMALL_STATE(6517)] = 263891, + [SMALL_STATE(6518)] = 263931, + [SMALL_STATE(6519)] = 263971, + [SMALL_STATE(6520)] = 264001, + [SMALL_STATE(6521)] = 264027, + [SMALL_STATE(6522)] = 264063, + [SMALL_STATE(6523)] = 264103, + [SMALL_STATE(6524)] = 264139, + [SMALL_STATE(6525)] = 264179, + [SMALL_STATE(6526)] = 264201, + [SMALL_STATE(6527)] = 264223, + [SMALL_STATE(6528)] = 264263, + [SMALL_STATE(6529)] = 264285, + [SMALL_STATE(6530)] = 264307, + [SMALL_STATE(6531)] = 264337, + [SMALL_STATE(6532)] = 264361, + [SMALL_STATE(6533)] = 264391, + [SMALL_STATE(6534)] = 264431, + [SMALL_STATE(6535)] = 264453, + [SMALL_STATE(6536)] = 264493, + [SMALL_STATE(6537)] = 264523, + [SMALL_STATE(6538)] = 264563, + [SMALL_STATE(6539)] = 264589, + [SMALL_STATE(6540)] = 264611, + [SMALL_STATE(6541)] = 264651, + [SMALL_STATE(6542)] = 264673, + [SMALL_STATE(6543)] = 264713, + [SMALL_STATE(6544)] = 264735, + [SMALL_STATE(6545)] = 264764, + [SMALL_STATE(6546)] = 264793, + [SMALL_STATE(6547)] = 264836, + [SMALL_STATE(6548)] = 264867, + [SMALL_STATE(6549)] = 264896, + [SMALL_STATE(6550)] = 264925, + [SMALL_STATE(6551)] = 264956, + [SMALL_STATE(6552)] = 264985, + [SMALL_STATE(6553)] = 265014, + [SMALL_STATE(6554)] = 265057, + [SMALL_STATE(6555)] = 265090, + [SMALL_STATE(6556)] = 265117, + [SMALL_STATE(6557)] = 265148, + [SMALL_STATE(6558)] = 265177, + [SMALL_STATE(6559)] = 265208, + [SMALL_STATE(6560)] = 265231, + [SMALL_STATE(6561)] = 265260, + [SMALL_STATE(6562)] = 265291, + [SMALL_STATE(6563)] = 265322, + [SMALL_STATE(6564)] = 265353, + [SMALL_STATE(6565)] = 265386, + [SMALL_STATE(6566)] = 265417, + [SMALL_STATE(6567)] = 265460, + [SMALL_STATE(6568)] = 265503, + [SMALL_STATE(6569)] = 265546, + [SMALL_STATE(6570)] = 265577, + [SMALL_STATE(6571)] = 265608, + [SMALL_STATE(6572)] = 265631, + [SMALL_STATE(6573)] = 265662, + [SMALL_STATE(6574)] = 265693, + [SMALL_STATE(6575)] = 265724, + [SMALL_STATE(6576)] = 265767, + [SMALL_STATE(6577)] = 265796, + [SMALL_STATE(6578)] = 265825, + [SMALL_STATE(6579)] = 265854, + [SMALL_STATE(6580)] = 265887, + [SMALL_STATE(6581)] = 265918, + [SMALL_STATE(6582)] = 265947, + [SMALL_STATE(6583)] = 265974, + [SMALL_STATE(6584)] = 266007, + [SMALL_STATE(6585)] = 266036, + [SMALL_STATE(6586)] = 266065, + [SMALL_STATE(6587)] = 266094, + [SMALL_STATE(6588)] = 266123, + [SMALL_STATE(6589)] = 266152, + [SMALL_STATE(6590)] = 266183, + [SMALL_STATE(6591)] = 266216, + [SMALL_STATE(6592)] = 266247, + [SMALL_STATE(6593)] = 266290, + [SMALL_STATE(6594)] = 266321, + [SMALL_STATE(6595)] = 266350, + [SMALL_STATE(6596)] = 266379, + [SMALL_STATE(6597)] = 266412, + [SMALL_STATE(6598)] = 266455, + [SMALL_STATE(6599)] = 266498, + [SMALL_STATE(6600)] = 266531, + [SMALL_STATE(6601)] = 266564, + [SMALL_STATE(6602)] = 266595, + [SMALL_STATE(6603)] = 266624, + [SMALL_STATE(6604)] = 266667, + [SMALL_STATE(6605)] = 266710, + [SMALL_STATE(6606)] = 266741, + [SMALL_STATE(6607)] = 266784, + [SMALL_STATE(6608)] = 266813, + [SMALL_STATE(6609)] = 266856, + [SMALL_STATE(6610)] = 266887, + [SMALL_STATE(6611)] = 266918, + [SMALL_STATE(6612)] = 266947, + [SMALL_STATE(6613)] = 266978, + [SMALL_STATE(6614)] = 267008, + [SMALL_STATE(6615)] = 267040, + [SMALL_STATE(6616)] = 267072, + [SMALL_STATE(6617)] = 267092, + [SMALL_STATE(6618)] = 267112, + [SMALL_STATE(6619)] = 267144, + [SMALL_STATE(6620)] = 267184, + [SMALL_STATE(6621)] = 267212, + [SMALL_STATE(6622)] = 267242, + [SMALL_STATE(6623)] = 267272, + [SMALL_STATE(6624)] = 267300, + [SMALL_STATE(6625)] = 267328, + [SMALL_STATE(6626)] = 267348, + [SMALL_STATE(6627)] = 267376, + [SMALL_STATE(6628)] = 267396, + [SMALL_STATE(6629)] = 267426, + [SMALL_STATE(6630)] = 267458, + [SMALL_STATE(6631)] = 267482, + [SMALL_STATE(6632)] = 267512, + [SMALL_STATE(6633)] = 267542, + [SMALL_STATE(6634)] = 267582, + [SMALL_STATE(6635)] = 267602, + [SMALL_STATE(6636)] = 267642, + [SMALL_STATE(6637)] = 267670, + [SMALL_STATE(6638)] = 267700, + [SMALL_STATE(6639)] = 267720, + [SMALL_STATE(6640)] = 267752, + [SMALL_STATE(6641)] = 267776, + [SMALL_STATE(6642)] = 267806, + [SMALL_STATE(6643)] = 267846, + [SMALL_STATE(6644)] = 267874, + [SMALL_STATE(6645)] = 267904, + [SMALL_STATE(6646)] = 267932, + [SMALL_STATE(6647)] = 267962, + [SMALL_STATE(6648)] = 267992, + [SMALL_STATE(6649)] = 268018, + [SMALL_STATE(6650)] = 268038, + [SMALL_STATE(6651)] = 268066, + [SMALL_STATE(6652)] = 268094, + [SMALL_STATE(6653)] = 268114, + [SMALL_STATE(6654)] = 268134, + [SMALL_STATE(6655)] = 268164, + [SMALL_STATE(6656)] = 268196, + [SMALL_STATE(6657)] = 268216, + [SMALL_STATE(6658)] = 268244, + [SMALL_STATE(6659)] = 268264, + [SMALL_STATE(6660)] = 268294, + [SMALL_STATE(6661)] = 268326, + [SMALL_STATE(6662)] = 268356, + [SMALL_STATE(6663)] = 268376, + [SMALL_STATE(6664)] = 268396, + [SMALL_STATE(6665)] = 268424, + [SMALL_STATE(6666)] = 268454, + [SMALL_STATE(6667)] = 268486, + [SMALL_STATE(6668)] = 268526, + [SMALL_STATE(6669)] = 268566, + [SMALL_STATE(6670)] = 268598, + [SMALL_STATE(6671)] = 268628, + [SMALL_STATE(6672)] = 268668, + [SMALL_STATE(6673)] = 268696, + [SMALL_STATE(6674)] = 268724, + [SMALL_STATE(6675)] = 268744, + [SMALL_STATE(6676)] = 268772, + [SMALL_STATE(6677)] = 268802, + [SMALL_STATE(6678)] = 268834, + [SMALL_STATE(6679)] = 268874, + [SMALL_STATE(6680)] = 268914, + [SMALL_STATE(6681)] = 268936, + [SMALL_STATE(6682)] = 268968, + [SMALL_STATE(6683)] = 269008, + [SMALL_STATE(6684)] = 269032, + [SMALL_STATE(6685)] = 269058, + [SMALL_STATE(6686)] = 269098, + [SMALL_STATE(6687)] = 269138, + [SMALL_STATE(6688)] = 269168, + [SMALL_STATE(6689)] = 269198, + [SMALL_STATE(6690)] = 269230, + [SMALL_STATE(6691)] = 269258, + [SMALL_STATE(6692)] = 269290, + [SMALL_STATE(6693)] = 269322, + [SMALL_STATE(6694)] = 269362, + [SMALL_STATE(6695)] = 269392, + [SMALL_STATE(6696)] = 269424, + [SMALL_STATE(6697)] = 269452, + [SMALL_STATE(6698)] = 269492, + [SMALL_STATE(6699)] = 269520, + [SMALL_STATE(6700)] = 269550, + [SMALL_STATE(6701)] = 269582, + [SMALL_STATE(6702)] = 269622, + [SMALL_STATE(6703)] = 269650, + [SMALL_STATE(6704)] = 269678, + [SMALL_STATE(6705)] = 269710, + [SMALL_STATE(6706)] = 269730, + [SMALL_STATE(6707)] = 269760, + [SMALL_STATE(6708)] = 269800, + [SMALL_STATE(6709)] = 269840, + [SMALL_STATE(6710)] = 269880, + [SMALL_STATE(6711)] = 269910, + [SMALL_STATE(6712)] = 269950, + [SMALL_STATE(6713)] = 269980, + [SMALL_STATE(6714)] = 270008, + [SMALL_STATE(6715)] = 270036, + [SMALL_STATE(6716)] = 270076, + [SMALL_STATE(6717)] = 270106, + [SMALL_STATE(6718)] = 270146, + [SMALL_STATE(6719)] = 270178, + [SMALL_STATE(6720)] = 270198, + [SMALL_STATE(6721)] = 270228, + [SMALL_STATE(6722)] = 270256, + [SMALL_STATE(6723)] = 270276, + [SMALL_STATE(6724)] = 270296, + [SMALL_STATE(6725)] = 270316, + [SMALL_STATE(6726)] = 270348, + [SMALL_STATE(6727)] = 270376, + [SMALL_STATE(6728)] = 270406, + [SMALL_STATE(6729)] = 270434, + [SMALL_STATE(6730)] = 270466, + [SMALL_STATE(6731)] = 270504, + [SMALL_STATE(6732)] = 270536, + [SMALL_STATE(6733)] = 270568, + [SMALL_STATE(6734)] = 270588, + [SMALL_STATE(6735)] = 270614, + [SMALL_STATE(6736)] = 270646, + [SMALL_STATE(6737)] = 270686, + [SMALL_STATE(6738)] = 270714, + [SMALL_STATE(6739)] = 270742, + [SMALL_STATE(6740)] = 270772, + [SMALL_STATE(6741)] = 270809, + [SMALL_STATE(6742)] = 270838, + [SMALL_STATE(6743)] = 270871, + [SMALL_STATE(6744)] = 270898, + [SMALL_STATE(6745)] = 270931, + [SMALL_STATE(6746)] = 270964, + [SMALL_STATE(6747)] = 270985, + [SMALL_STATE(6748)] = 271006, + [SMALL_STATE(6749)] = 271027, + [SMALL_STATE(6750)] = 271064, + [SMALL_STATE(6751)] = 271085, + [SMALL_STATE(6752)] = 271106, + [SMALL_STATE(6753)] = 271127, + [SMALL_STATE(6754)] = 271164, + [SMALL_STATE(6755)] = 271185, + [SMALL_STATE(6756)] = 271206, + [SMALL_STATE(6757)] = 271227, + [SMALL_STATE(6758)] = 271254, + [SMALL_STATE(6759)] = 271291, + [SMALL_STATE(6760)] = 271312, + [SMALL_STATE(6761)] = 271345, + [SMALL_STATE(6762)] = 271370, + [SMALL_STATE(6763)] = 271395, + [SMALL_STATE(6764)] = 271428, + [SMALL_STATE(6765)] = 271453, + [SMALL_STATE(6766)] = 271478, + [SMALL_STATE(6767)] = 271515, + [SMALL_STATE(6768)] = 271552, + [SMALL_STATE(6769)] = 271589, + [SMALL_STATE(6770)] = 271626, + [SMALL_STATE(6771)] = 271663, + [SMALL_STATE(6772)] = 271684, + [SMALL_STATE(6773)] = 271705, + [SMALL_STATE(6774)] = 271730, + [SMALL_STATE(6775)] = 271751, + [SMALL_STATE(6776)] = 271788, + [SMALL_STATE(6777)] = 271817, + [SMALL_STATE(6778)] = 271838, + [SMALL_STATE(6779)] = 271863, + [SMALL_STATE(6780)] = 271890, + [SMALL_STATE(6781)] = 271911, + [SMALL_STATE(6782)] = 271948, + [SMALL_STATE(6783)] = 271969, + [SMALL_STATE(6784)] = 271990, + [SMALL_STATE(6785)] = 272027, + [SMALL_STATE(6786)] = 272048, + [SMALL_STATE(6787)] = 272073, + [SMALL_STATE(6788)] = 272094, + [SMALL_STATE(6789)] = 272115, + [SMALL_STATE(6790)] = 272142, + [SMALL_STATE(6791)] = 272163, + [SMALL_STATE(6792)] = 272200, + [SMALL_STATE(6793)] = 272221, + [SMALL_STATE(6794)] = 272258, + [SMALL_STATE(6795)] = 272283, + [SMALL_STATE(6796)] = 272310, + [SMALL_STATE(6797)] = 272337, + [SMALL_STATE(6798)] = 272370, + [SMALL_STATE(6799)] = 272407, + [SMALL_STATE(6800)] = 272428, + [SMALL_STATE(6801)] = 272449, + [SMALL_STATE(6802)] = 272470, + [SMALL_STATE(6803)] = 272491, + [SMALL_STATE(6804)] = 272512, + [SMALL_STATE(6805)] = 272551, + [SMALL_STATE(6806)] = 272578, + [SMALL_STATE(6807)] = 272603, + [SMALL_STATE(6808)] = 272640, + [SMALL_STATE(6809)] = 272661, + [SMALL_STATE(6810)] = 272688, + [SMALL_STATE(6811)] = 272715, + [SMALL_STATE(6812)] = 272742, + [SMALL_STATE(6813)] = 272777, + [SMALL_STATE(6814)] = 272814, + [SMALL_STATE(6815)] = 272851, + [SMALL_STATE(6816)] = 272878, + [SMALL_STATE(6817)] = 272911, + [SMALL_STATE(6818)] = 272938, + [SMALL_STATE(6819)] = 272959, + [SMALL_STATE(6820)] = 272980, + [SMALL_STATE(6821)] = 273017, + [SMALL_STATE(6822)] = 273046, + [SMALL_STATE(6823)] = 273073, + [SMALL_STATE(6824)] = 273110, + [SMALL_STATE(6825)] = 273139, + [SMALL_STATE(6826)] = 273172, + [SMALL_STATE(6827)] = 273199, + [SMALL_STATE(6828)] = 273220, + [SMALL_STATE(6829)] = 273246, + [SMALL_STATE(6830)] = 273280, + [SMALL_STATE(6831)] = 273314, + [SMALL_STATE(6832)] = 273350, + [SMALL_STATE(6833)] = 273380, + [SMALL_STATE(6834)] = 273402, + [SMALL_STATE(6835)] = 273432, + [SMALL_STATE(6836)] = 273458, + [SMALL_STATE(6837)] = 273494, + [SMALL_STATE(6838)] = 273520, + [SMALL_STATE(6839)] = 273544, + [SMALL_STATE(6840)] = 273580, + [SMALL_STATE(6841)] = 273604, + [SMALL_STATE(6842)] = 273640, + [SMALL_STATE(6843)] = 273676, + [SMALL_STATE(6844)] = 273712, + [SMALL_STATE(6845)] = 273738, + [SMALL_STATE(6846)] = 273766, + [SMALL_STATE(6847)] = 273802, + [SMALL_STATE(6848)] = 273838, + [SMALL_STATE(6849)] = 273864, + [SMALL_STATE(6850)] = 273900, + [SMALL_STATE(6851)] = 273926, + [SMALL_STATE(6852)] = 273960, + [SMALL_STATE(6853)] = 273996, + [SMALL_STATE(6854)] = 274022, + [SMALL_STATE(6855)] = 274048, + [SMALL_STATE(6856)] = 274068, + [SMALL_STATE(6857)] = 274090, + [SMALL_STATE(6858)] = 274116, + [SMALL_STATE(6859)] = 274142, + [SMALL_STATE(6860)] = 274178, + [SMALL_STATE(6861)] = 274202, + [SMALL_STATE(6862)] = 274238, + [SMALL_STATE(6863)] = 274268, + [SMALL_STATE(6864)] = 274304, + [SMALL_STATE(6865)] = 274328, + [SMALL_STATE(6866)] = 274354, + [SMALL_STATE(6867)] = 274390, + [SMALL_STATE(6868)] = 274414, + [SMALL_STATE(6869)] = 274450, + [SMALL_STATE(6870)] = 274486, + [SMALL_STATE(6871)] = 274516, + [SMALL_STATE(6872)] = 274550, + [SMALL_STATE(6873)] = 274586, + [SMALL_STATE(6874)] = 274622, + [SMALL_STATE(6875)] = 274648, + [SMALL_STATE(6876)] = 274682, + [SMALL_STATE(6877)] = 274710, + [SMALL_STATE(6878)] = 274744, + [SMALL_STATE(6879)] = 274770, + [SMALL_STATE(6880)] = 274800, + [SMALL_STATE(6881)] = 274830, + [SMALL_STATE(6882)] = 274860, + [SMALL_STATE(6883)] = 274886, + [SMALL_STATE(6884)] = 274922, + [SMALL_STATE(6885)] = 274958, + [SMALL_STATE(6886)] = 274994, + [SMALL_STATE(6887)] = 275020, + [SMALL_STATE(6888)] = 275056, + [SMALL_STATE(6889)] = 275092, + [SMALL_STATE(6890)] = 275118, + [SMALL_STATE(6891)] = 275148, + [SMALL_STATE(6892)] = 275184, + [SMALL_STATE(6893)] = 275218, + [SMALL_STATE(6894)] = 275248, + [SMALL_STATE(6895)] = 275278, + [SMALL_STATE(6896)] = 275314, + [SMALL_STATE(6897)] = 275340, + [SMALL_STATE(6898)] = 275368, + [SMALL_STATE(6899)] = 275402, + [SMALL_STATE(6900)] = 275436, + [SMALL_STATE(6901)] = 275464, + [SMALL_STATE(6902)] = 275498, + [SMALL_STATE(6903)] = 275528, + [SMALL_STATE(6904)] = 275558, + [SMALL_STATE(6905)] = 275588, + [SMALL_STATE(6906)] = 275611, + [SMALL_STATE(6907)] = 275640, + [SMALL_STATE(6908)] = 275671, + [SMALL_STATE(6909)] = 275698, + [SMALL_STATE(6910)] = 275727, + [SMALL_STATE(6911)] = 275760, + [SMALL_STATE(6912)] = 275787, + [SMALL_STATE(6913)] = 275816, + [SMALL_STATE(6914)] = 275841, + [SMALL_STATE(6915)] = 275868, + [SMALL_STATE(6916)] = 275887, + [SMALL_STATE(6917)] = 275912, + [SMALL_STATE(6918)] = 275931, + [SMALL_STATE(6919)] = 275954, + [SMALL_STATE(6920)] = 275983, + [SMALL_STATE(6921)] = 276012, + [SMALL_STATE(6922)] = 276039, + [SMALL_STATE(6923)] = 276068, + [SMALL_STATE(6924)] = 276103, + [SMALL_STATE(6925)] = 276122, + [SMALL_STATE(6926)] = 276153, + [SMALL_STATE(6927)] = 276172, + [SMALL_STATE(6928)] = 276207, + [SMALL_STATE(6929)] = 276240, + [SMALL_STATE(6930)] = 276275, + [SMALL_STATE(6931)] = 276306, + [SMALL_STATE(6932)] = 276341, + [SMALL_STATE(6933)] = 276372, + [SMALL_STATE(6934)] = 276399, + [SMALL_STATE(6935)] = 276428, + [SMALL_STATE(6936)] = 276447, + [SMALL_STATE(6937)] = 276482, + [SMALL_STATE(6938)] = 276503, + [SMALL_STATE(6939)] = 276522, + [SMALL_STATE(6940)] = 276551, + [SMALL_STATE(6941)] = 276582, + [SMALL_STATE(6942)] = 276611, + [SMALL_STATE(6943)] = 276640, + [SMALL_STATE(6944)] = 276669, + [SMALL_STATE(6945)] = 276694, + [SMALL_STATE(6946)] = 276729, + [SMALL_STATE(6947)] = 276764, + [SMALL_STATE(6948)] = 276793, + [SMALL_STATE(6949)] = 276824, + [SMALL_STATE(6950)] = 276849, + [SMALL_STATE(6951)] = 276876, + [SMALL_STATE(6952)] = 276903, + [SMALL_STATE(6953)] = 276934, + [SMALL_STATE(6954)] = 276963, + [SMALL_STATE(6955)] = 276990, + [SMALL_STATE(6956)] = 277015, + [SMALL_STATE(6957)] = 277044, + [SMALL_STATE(6958)] = 277075, + [SMALL_STATE(6959)] = 277094, + [SMALL_STATE(6960)] = 277123, + [SMALL_STATE(6961)] = 277152, + [SMALL_STATE(6962)] = 277181, + [SMALL_STATE(6963)] = 277210, + [SMALL_STATE(6964)] = 277239, + [SMALL_STATE(6965)] = 277264, + [SMALL_STATE(6966)] = 277289, + [SMALL_STATE(6967)] = 277320, + [SMALL_STATE(6968)] = 277349, + [SMALL_STATE(6969)] = 277378, + [SMALL_STATE(6970)] = 277403, + [SMALL_STATE(6971)] = 277432, + [SMALL_STATE(6972)] = 277461, + [SMALL_STATE(6973)] = 277480, + [SMALL_STATE(6974)] = 277509, + [SMALL_STATE(6975)] = 277534, + [SMALL_STATE(6976)] = 277563, + [SMALL_STATE(6977)] = 277594, + [SMALL_STATE(6978)] = 277621, + [SMALL_STATE(6979)] = 277650, + [SMALL_STATE(6980)] = 277675, + [SMALL_STATE(6981)] = 277706, + [SMALL_STATE(6982)] = 277735, + [SMALL_STATE(6983)] = 277764, + [SMALL_STATE(6984)] = 277799, + [SMALL_STATE(6985)] = 277818, + [SMALL_STATE(6986)] = 277847, + [SMALL_STATE(6987)] = 277882, + [SMALL_STATE(6988)] = 277911, + [SMALL_STATE(6989)] = 277938, + [SMALL_STATE(6990)] = 277968, + [SMALL_STATE(6991)] = 277990, + [SMALL_STATE(6992)] = 278020, + [SMALL_STATE(6993)] = 278050, + [SMALL_STATE(6994)] = 278072, + [SMALL_STATE(6995)] = 278102, + [SMALL_STATE(6996)] = 278124, + [SMALL_STATE(6997)] = 278148, + [SMALL_STATE(6998)] = 278170, + [SMALL_STATE(6999)] = 278194, + [SMALL_STATE(7000)] = 278218, + [SMALL_STATE(7001)] = 278242, + [SMALL_STATE(7002)] = 278274, + [SMALL_STATE(7003)] = 278296, + [SMALL_STATE(7004)] = 278318, + [SMALL_STATE(7005)] = 278340, + [SMALL_STATE(7006)] = 278364, + [SMALL_STATE(7007)] = 278388, + [SMALL_STATE(7008)] = 278406, + [SMALL_STATE(7009)] = 278428, + [SMALL_STATE(7010)] = 278450, + [SMALL_STATE(7011)] = 278468, + [SMALL_STATE(7012)] = 278492, + [SMALL_STATE(7013)] = 278514, + [SMALL_STATE(7014)] = 278544, + [SMALL_STATE(7015)] = 278566, + [SMALL_STATE(7016)] = 278588, + [SMALL_STATE(7017)] = 278618, + [SMALL_STATE(7018)] = 278636, + [SMALL_STATE(7019)] = 278654, + [SMALL_STATE(7020)] = 278684, + [SMALL_STATE(7021)] = 278708, + [SMALL_STATE(7022)] = 278726, + [SMALL_STATE(7023)] = 278748, + [SMALL_STATE(7024)] = 278772, + [SMALL_STATE(7025)] = 278794, + [SMALL_STATE(7026)] = 278812, + [SMALL_STATE(7027)] = 278830, + [SMALL_STATE(7028)] = 278860, + [SMALL_STATE(7029)] = 278882, + [SMALL_STATE(7030)] = 278913, + [SMALL_STATE(7031)] = 278938, + [SMALL_STATE(7032)] = 278965, + [SMALL_STATE(7033)] = 278988, + [SMALL_STATE(7034)] = 279019, + [SMALL_STATE(7035)] = 279046, + [SMALL_STATE(7036)] = 279065, + [SMALL_STATE(7037)] = 279096, + [SMALL_STATE(7038)] = 279117, + [SMALL_STATE(7039)] = 279148, + [SMALL_STATE(7040)] = 279179, + [SMALL_STATE(7041)] = 279210, + [SMALL_STATE(7042)] = 279241, + [SMALL_STATE(7043)] = 279272, + [SMALL_STATE(7044)] = 279299, + [SMALL_STATE(7045)] = 279322, + [SMALL_STATE(7046)] = 279343, + [SMALL_STATE(7047)] = 279374, + [SMALL_STATE(7048)] = 279401, + [SMALL_STATE(7049)] = 279432, + [SMALL_STATE(7050)] = 279457, + [SMALL_STATE(7051)] = 279488, + [SMALL_STATE(7052)] = 279515, + [SMALL_STATE(7053)] = 279546, + [SMALL_STATE(7054)] = 279577, + [SMALL_STATE(7055)] = 279598, + [SMALL_STATE(7056)] = 279629, + [SMALL_STATE(7057)] = 279648, + [SMALL_STATE(7058)] = 279679, + [SMALL_STATE(7059)] = 279710, + [SMALL_STATE(7060)] = 279741, + [SMALL_STATE(7061)] = 279762, + [SMALL_STATE(7062)] = 279789, + [SMALL_STATE(7063)] = 279816, + [SMALL_STATE(7064)] = 279837, + [SMALL_STATE(7065)] = 279868, + [SMALL_STATE(7066)] = 279895, + [SMALL_STATE(7067)] = 279926, + [SMALL_STATE(7068)] = 279957, + [SMALL_STATE(7069)] = 279988, + [SMALL_STATE(7070)] = 280011, + [SMALL_STATE(7071)] = 280034, + [SMALL_STATE(7072)] = 280057, + [SMALL_STATE(7073)] = 280084, + [SMALL_STATE(7074)] = 280115, + [SMALL_STATE(7075)] = 280138, + [SMALL_STATE(7076)] = 280165, + [SMALL_STATE(7077)] = 280196, + [SMALL_STATE(7078)] = 280219, + [SMALL_STATE(7079)] = 280240, + [SMALL_STATE(7080)] = 280263, + [SMALL_STATE(7081)] = 280286, + [SMALL_STATE(7082)] = 280310, + [SMALL_STATE(7083)] = 280336, + [SMALL_STATE(7084)] = 280362, + [SMALL_STATE(7085)] = 280388, + [SMALL_STATE(7086)] = 280414, + [SMALL_STATE(7087)] = 280440, + [SMALL_STATE(7088)] = 280466, + [SMALL_STATE(7089)] = 280492, + [SMALL_STATE(7090)] = 280518, + [SMALL_STATE(7091)] = 280544, + [SMALL_STATE(7092)] = 280566, + [SMALL_STATE(7093)] = 280592, + [SMALL_STATE(7094)] = 280618, + [SMALL_STATE(7095)] = 280644, + [SMALL_STATE(7096)] = 280670, + [SMALL_STATE(7097)] = 280696, + [SMALL_STATE(7098)] = 280718, + [SMALL_STATE(7099)] = 280744, + [SMALL_STATE(7100)] = 280766, + [SMALL_STATE(7101)] = 280782, + [SMALL_STATE(7102)] = 280808, + [SMALL_STATE(7103)] = 280830, + [SMALL_STATE(7104)] = 280856, + [SMALL_STATE(7105)] = 280878, + [SMALL_STATE(7106)] = 280900, + [SMALL_STATE(7107)] = 280926, + [SMALL_STATE(7108)] = 280950, + [SMALL_STATE(7109)] = 280974, + [SMALL_STATE(7110)] = 281000, + [SMALL_STATE(7111)] = 281024, + [SMALL_STATE(7112)] = 281050, + [SMALL_STATE(7113)] = 281076, + [SMALL_STATE(7114)] = 281096, + [SMALL_STATE(7115)] = 281122, + [SMALL_STATE(7116)] = 281148, + [SMALL_STATE(7117)] = 281174, + [SMALL_STATE(7118)] = 281200, + [SMALL_STATE(7119)] = 281220, + [SMALL_STATE(7120)] = 281246, + [SMALL_STATE(7121)] = 281264, + [SMALL_STATE(7122)] = 281280, + [SMALL_STATE(7123)] = 281306, + [SMALL_STATE(7124)] = 281330, + [SMALL_STATE(7125)] = 281356, + [SMALL_STATE(7126)] = 281376, + [SMALL_STATE(7127)] = 281400, + [SMALL_STATE(7128)] = 281422, + [SMALL_STATE(7129)] = 281444, + [SMALL_STATE(7130)] = 281466, + [SMALL_STATE(7131)] = 281490, + [SMALL_STATE(7132)] = 281516, + [SMALL_STATE(7133)] = 281542, + [SMALL_STATE(7134)] = 281566, + [SMALL_STATE(7135)] = 281592, + [SMALL_STATE(7136)] = 281618, + [SMALL_STATE(7137)] = 281644, + [SMALL_STATE(7138)] = 281664, + [SMALL_STATE(7139)] = 281690, + [SMALL_STATE(7140)] = 281712, + [SMALL_STATE(7141)] = 281730, + [SMALL_STATE(7142)] = 281752, + [SMALL_STATE(7143)] = 281778, + [SMALL_STATE(7144)] = 281804, + [SMALL_STATE(7145)] = 281827, + [SMALL_STATE(7146)] = 281852, + [SMALL_STATE(7147)] = 281877, + [SMALL_STATE(7148)] = 281902, + [SMALL_STATE(7149)] = 281925, + [SMALL_STATE(7150)] = 281946, + [SMALL_STATE(7151)] = 281971, + [SMALL_STATE(7152)] = 281994, + [SMALL_STATE(7153)] = 282013, + [SMALL_STATE(7154)] = 282032, + [SMALL_STATE(7155)] = 282055, + [SMALL_STATE(7156)] = 282078, + [SMALL_STATE(7157)] = 282099, + [SMALL_STATE(7158)] = 282118, + [SMALL_STATE(7159)] = 282141, + [SMALL_STATE(7160)] = 282164, + [SMALL_STATE(7161)] = 282185, + [SMALL_STATE(7162)] = 282200, + [SMALL_STATE(7163)] = 282221, + [SMALL_STATE(7164)] = 282242, + [SMALL_STATE(7165)] = 282263, + [SMALL_STATE(7166)] = 282286, + [SMALL_STATE(7167)] = 282307, + [SMALL_STATE(7168)] = 282330, + [SMALL_STATE(7169)] = 282345, + [SMALL_STATE(7170)] = 282366, + [SMALL_STATE(7171)] = 282387, + [SMALL_STATE(7172)] = 282404, + [SMALL_STATE(7173)] = 282419, + [SMALL_STATE(7174)] = 282440, + [SMALL_STATE(7175)] = 282461, + [SMALL_STATE(7176)] = 282476, + [SMALL_STATE(7177)] = 282491, + [SMALL_STATE(7178)] = 282516, + [SMALL_STATE(7179)] = 282537, + [SMALL_STATE(7180)] = 282560, + [SMALL_STATE(7181)] = 282585, + [SMALL_STATE(7182)] = 282606, + [SMALL_STATE(7183)] = 282627, + [SMALL_STATE(7184)] = 282652, + [SMALL_STATE(7185)] = 282667, + [SMALL_STATE(7186)] = 282682, + [SMALL_STATE(7187)] = 282707, + [SMALL_STATE(7188)] = 282730, + [SMALL_STATE(7189)] = 282745, + [SMALL_STATE(7190)] = 282770, + [SMALL_STATE(7191)] = 282795, + [SMALL_STATE(7192)] = 282815, + [SMALL_STATE(7193)] = 282835, + [SMALL_STATE(7194)] = 282849, + [SMALL_STATE(7195)] = 282865, + [SMALL_STATE(7196)] = 282883, + [SMALL_STATE(7197)] = 282897, + [SMALL_STATE(7198)] = 282915, + [SMALL_STATE(7199)] = 282933, + [SMALL_STATE(7200)] = 282953, + [SMALL_STATE(7201)] = 282969, + [SMALL_STATE(7202)] = 282989, + [SMALL_STATE(7203)] = 283007, + [SMALL_STATE(7204)] = 283021, + [SMALL_STATE(7205)] = 283039, + [SMALL_STATE(7206)] = 283055, + [SMALL_STATE(7207)] = 283071, + [SMALL_STATE(7208)] = 283087, + [SMALL_STATE(7209)] = 283107, + [SMALL_STATE(7210)] = 283125, + [SMALL_STATE(7211)] = 283141, + [SMALL_STATE(7212)] = 283161, + [SMALL_STATE(7213)] = 283177, + [SMALL_STATE(7214)] = 283197, + [SMALL_STATE(7215)] = 283217, + [SMALL_STATE(7216)] = 283233, + [SMALL_STATE(7217)] = 283253, + [SMALL_STATE(7218)] = 283269, + [SMALL_STATE(7219)] = 283289, + [SMALL_STATE(7220)] = 283305, + [SMALL_STATE(7221)] = 283321, + [SMALL_STATE(7222)] = 283335, + [SMALL_STATE(7223)] = 283351, + [SMALL_STATE(7224)] = 283371, + [SMALL_STATE(7225)] = 283391, + [SMALL_STATE(7226)] = 283411, + [SMALL_STATE(7227)] = 283427, + [SMALL_STATE(7228)] = 283445, + [SMALL_STATE(7229)] = 283465, + [SMALL_STATE(7230)] = 283485, + [SMALL_STATE(7231)] = 283501, + [SMALL_STATE(7232)] = 283521, + [SMALL_STATE(7233)] = 283537, + [SMALL_STATE(7234)] = 283553, + [SMALL_STATE(7235)] = 283569, + [SMALL_STATE(7236)] = 283589, + [SMALL_STATE(7237)] = 283605, + [SMALL_STATE(7238)] = 283621, + [SMALL_STATE(7239)] = 283641, + [SMALL_STATE(7240)] = 283657, + [SMALL_STATE(7241)] = 283671, + [SMALL_STATE(7242)] = 283689, + [SMALL_STATE(7243)] = 283707, + [SMALL_STATE(7244)] = 283727, + [SMALL_STATE(7245)] = 283747, + [SMALL_STATE(7246)] = 283766, + [SMALL_STATE(7247)] = 283779, + [SMALL_STATE(7248)] = 283798, + [SMALL_STATE(7249)] = 283817, + [SMALL_STATE(7250)] = 283836, + [SMALL_STATE(7251)] = 283855, + [SMALL_STATE(7252)] = 283872, + [SMALL_STATE(7253)] = 283889, + [SMALL_STATE(7254)] = 283906, + [SMALL_STATE(7255)] = 283925, + [SMALL_STATE(7256)] = 283938, + [SMALL_STATE(7257)] = 283951, + [SMALL_STATE(7258)] = 283964, + [SMALL_STATE(7259)] = 283983, + [SMALL_STATE(7260)] = 284002, + [SMALL_STATE(7261)] = 284021, + [SMALL_STATE(7262)] = 284040, + [SMALL_STATE(7263)] = 284059, + [SMALL_STATE(7264)] = 284078, + [SMALL_STATE(7265)] = 284097, + [SMALL_STATE(7266)] = 284116, + [SMALL_STATE(7267)] = 284133, + [SMALL_STATE(7268)] = 284152, + [SMALL_STATE(7269)] = 284171, + [SMALL_STATE(7270)] = 284190, + [SMALL_STATE(7271)] = 284209, + [SMALL_STATE(7272)] = 284228, + [SMALL_STATE(7273)] = 284247, + [SMALL_STATE(7274)] = 284260, + [SMALL_STATE(7275)] = 284279, + [SMALL_STATE(7276)] = 284296, + [SMALL_STATE(7277)] = 284315, + [SMALL_STATE(7278)] = 284334, + [SMALL_STATE(7279)] = 284353, + [SMALL_STATE(7280)] = 284370, + [SMALL_STATE(7281)] = 284383, + [SMALL_STATE(7282)] = 284402, + [SMALL_STATE(7283)] = 284415, + [SMALL_STATE(7284)] = 284434, + [SMALL_STATE(7285)] = 284447, + [SMALL_STATE(7286)] = 284460, + [SMALL_STATE(7287)] = 284479, + [SMALL_STATE(7288)] = 284496, + [SMALL_STATE(7289)] = 284515, + [SMALL_STATE(7290)] = 284534, + [SMALL_STATE(7291)] = 284553, + [SMALL_STATE(7292)] = 284572, + [SMALL_STATE(7293)] = 284591, + [SMALL_STATE(7294)] = 284604, + [SMALL_STATE(7295)] = 284617, + [SMALL_STATE(7296)] = 284630, + [SMALL_STATE(7297)] = 284649, + [SMALL_STATE(7298)] = 284668, + [SMALL_STATE(7299)] = 284681, + [SMALL_STATE(7300)] = 284700, + [SMALL_STATE(7301)] = 284719, + [SMALL_STATE(7302)] = 284738, + [SMALL_STATE(7303)] = 284757, + [SMALL_STATE(7304)] = 284776, + [SMALL_STATE(7305)] = 284795, + [SMALL_STATE(7306)] = 284808, + [SMALL_STATE(7307)] = 284827, + [SMALL_STATE(7308)] = 284846, + [SMALL_STATE(7309)] = 284865, + [SMALL_STATE(7310)] = 284884, + [SMALL_STATE(7311)] = 284897, + [SMALL_STATE(7312)] = 284916, + [SMALL_STATE(7313)] = 284935, + [SMALL_STATE(7314)] = 284948, + [SMALL_STATE(7315)] = 284967, + [SMALL_STATE(7316)] = 284986, + [SMALL_STATE(7317)] = 285005, + [SMALL_STATE(7318)] = 285024, + [SMALL_STATE(7319)] = 285043, + [SMALL_STATE(7320)] = 285056, + [SMALL_STATE(7321)] = 285075, + [SMALL_STATE(7322)] = 285091, + [SMALL_STATE(7323)] = 285105, + [SMALL_STATE(7324)] = 285119, + [SMALL_STATE(7325)] = 285129, + [SMALL_STATE(7326)] = 285143, + [SMALL_STATE(7327)] = 285157, + [SMALL_STATE(7328)] = 285171, [SMALL_STATE(7329)] = 285185, [SMALL_STATE(7330)] = 285199, [SMALL_STATE(7331)] = 285213, - [SMALL_STATE(7332)] = 285227, - [SMALL_STATE(7333)] = 285241, - [SMALL_STATE(7334)] = 285255, - [SMALL_STATE(7335)] = 285271, - [SMALL_STATE(7336)] = 285287, - [SMALL_STATE(7337)] = 285301, - [SMALL_STATE(7338)] = 285315, - [SMALL_STATE(7339)] = 285329, + [SMALL_STATE(7332)] = 285229, + [SMALL_STATE(7333)] = 285245, + [SMALL_STATE(7334)] = 285261, + [SMALL_STATE(7335)] = 285275, + [SMALL_STATE(7336)] = 285289, + [SMALL_STATE(7337)] = 285303, + [SMALL_STATE(7338)] = 285317, + [SMALL_STATE(7339)] = 285331, [SMALL_STATE(7340)] = 285345, - [SMALL_STATE(7341)] = 285361, - [SMALL_STATE(7342)] = 285377, - [SMALL_STATE(7343)] = 285393, - [SMALL_STATE(7344)] = 285407, - [SMALL_STATE(7345)] = 285421, - [SMALL_STATE(7346)] = 285437, - [SMALL_STATE(7347)] = 285451, - [SMALL_STATE(7348)] = 285467, - [SMALL_STATE(7349)] = 285483, - [SMALL_STATE(7350)] = 285499, - [SMALL_STATE(7351)] = 285513, - [SMALL_STATE(7352)] = 285529, - [SMALL_STATE(7353)] = 285545, - [SMALL_STATE(7354)] = 285559, - [SMALL_STATE(7355)] = 285573, - [SMALL_STATE(7356)] = 285587, - [SMALL_STATE(7357)] = 285603, - [SMALL_STATE(7358)] = 285619, - [SMALL_STATE(7359)] = 285633, - [SMALL_STATE(7360)] = 285647, - [SMALL_STATE(7361)] = 285661, - [SMALL_STATE(7362)] = 285677, - [SMALL_STATE(7363)] = 285693, - [SMALL_STATE(7364)] = 285707, - [SMALL_STATE(7365)] = 285723, - [SMALL_STATE(7366)] = 285739, - [SMALL_STATE(7367)] = 285755, - [SMALL_STATE(7368)] = 285771, - [SMALL_STATE(7369)] = 285787, - [SMALL_STATE(7370)] = 285803, - [SMALL_STATE(7371)] = 285819, - [SMALL_STATE(7372)] = 285833, - [SMALL_STATE(7373)] = 285849, - [SMALL_STATE(7374)] = 285865, - [SMALL_STATE(7375)] = 285881, - [SMALL_STATE(7376)] = 285895, - [SMALL_STATE(7377)] = 285909, - [SMALL_STATE(7378)] = 285925, - [SMALL_STATE(7379)] = 285941, - [SMALL_STATE(7380)] = 285955, - [SMALL_STATE(7381)] = 285971, - [SMALL_STATE(7382)] = 285985, - [SMALL_STATE(7383)] = 285999, - [SMALL_STATE(7384)] = 286015, - [SMALL_STATE(7385)] = 286031, - [SMALL_STATE(7386)] = 286045, - [SMALL_STATE(7387)] = 286059, - [SMALL_STATE(7388)] = 286075, - [SMALL_STATE(7389)] = 286087, - [SMALL_STATE(7390)] = 286101, - [SMALL_STATE(7391)] = 286115, - [SMALL_STATE(7392)] = 286131, - [SMALL_STATE(7393)] = 286145, - [SMALL_STATE(7394)] = 286159, - [SMALL_STATE(7395)] = 286173, - [SMALL_STATE(7396)] = 286189, - [SMALL_STATE(7397)] = 286205, - [SMALL_STATE(7398)] = 286221, - [SMALL_STATE(7399)] = 286235, - [SMALL_STATE(7400)] = 286249, - [SMALL_STATE(7401)] = 286265, - [SMALL_STATE(7402)] = 286279, - [SMALL_STATE(7403)] = 286293, - [SMALL_STATE(7404)] = 286309, - [SMALL_STATE(7405)] = 286323, - [SMALL_STATE(7406)] = 286339, - [SMALL_STATE(7407)] = 286351, - [SMALL_STATE(7408)] = 286367, - [SMALL_STATE(7409)] = 286381, - [SMALL_STATE(7410)] = 286397, - [SMALL_STATE(7411)] = 286413, - [SMALL_STATE(7412)] = 286429, - [SMALL_STATE(7413)] = 286445, - [SMALL_STATE(7414)] = 286459, - [SMALL_STATE(7415)] = 286475, - [SMALL_STATE(7416)] = 286491, - [SMALL_STATE(7417)] = 286507, - [SMALL_STATE(7418)] = 286523, - [SMALL_STATE(7419)] = 286537, - [SMALL_STATE(7420)] = 286553, - [SMALL_STATE(7421)] = 286569, - [SMALL_STATE(7422)] = 286585, - [SMALL_STATE(7423)] = 286599, - [SMALL_STATE(7424)] = 286613, - [SMALL_STATE(7425)] = 286627, - [SMALL_STATE(7426)] = 286643, - [SMALL_STATE(7427)] = 286655, - [SMALL_STATE(7428)] = 286669, - [SMALL_STATE(7429)] = 286683, - [SMALL_STATE(7430)] = 286699, - [SMALL_STATE(7431)] = 286713, - [SMALL_STATE(7432)] = 286727, - [SMALL_STATE(7433)] = 286741, - [SMALL_STATE(7434)] = 286757, - [SMALL_STATE(7435)] = 286771, - [SMALL_STATE(7436)] = 286787, - [SMALL_STATE(7437)] = 286803, - [SMALL_STATE(7438)] = 286817, - [SMALL_STATE(7439)] = 286833, - [SMALL_STATE(7440)] = 286847, - [SMALL_STATE(7441)] = 286861, - [SMALL_STATE(7442)] = 286875, - [SMALL_STATE(7443)] = 286889, - [SMALL_STATE(7444)] = 286903, + [SMALL_STATE(7341)] = 285359, + [SMALL_STATE(7342)] = 285373, + [SMALL_STATE(7343)] = 285387, + [SMALL_STATE(7344)] = 285403, + [SMALL_STATE(7345)] = 285415, + [SMALL_STATE(7346)] = 285429, + [SMALL_STATE(7347)] = 285443, + [SMALL_STATE(7348)] = 285457, + [SMALL_STATE(7349)] = 285471, + [SMALL_STATE(7350)] = 285485, + [SMALL_STATE(7351)] = 285499, + [SMALL_STATE(7352)] = 285515, + [SMALL_STATE(7353)] = 285529, + [SMALL_STATE(7354)] = 285543, + [SMALL_STATE(7355)] = 285557, + [SMALL_STATE(7356)] = 285573, + [SMALL_STATE(7357)] = 285587, + [SMALL_STATE(7358)] = 285601, + [SMALL_STATE(7359)] = 285615, + [SMALL_STATE(7360)] = 285629, + [SMALL_STATE(7361)] = 285645, + [SMALL_STATE(7362)] = 285659, + [SMALL_STATE(7363)] = 285675, + [SMALL_STATE(7364)] = 285691, + [SMALL_STATE(7365)] = 285707, + [SMALL_STATE(7366)] = 285719, + [SMALL_STATE(7367)] = 285733, + [SMALL_STATE(7368)] = 285749, + [SMALL_STATE(7369)] = 285763, + [SMALL_STATE(7370)] = 285777, + [SMALL_STATE(7371)] = 285791, + [SMALL_STATE(7372)] = 285805, + [SMALL_STATE(7373)] = 285819, + [SMALL_STATE(7374)] = 285833, + [SMALL_STATE(7375)] = 285849, + [SMALL_STATE(7376)] = 285861, + [SMALL_STATE(7377)] = 285877, + [SMALL_STATE(7378)] = 285891, + [SMALL_STATE(7379)] = 285907, + [SMALL_STATE(7380)] = 285923, + [SMALL_STATE(7381)] = 285939, + [SMALL_STATE(7382)] = 285955, + [SMALL_STATE(7383)] = 285969, + [SMALL_STATE(7384)] = 285985, + [SMALL_STATE(7385)] = 286001, + [SMALL_STATE(7386)] = 286017, + [SMALL_STATE(7387)] = 286033, + [SMALL_STATE(7388)] = 286047, + [SMALL_STATE(7389)] = 286063, + [SMALL_STATE(7390)] = 286077, + [SMALL_STATE(7391)] = 286093, + [SMALL_STATE(7392)] = 286109, + [SMALL_STATE(7393)] = 286125, + [SMALL_STATE(7394)] = 286141, + [SMALL_STATE(7395)] = 286153, + [SMALL_STATE(7396)] = 286167, + [SMALL_STATE(7397)] = 286183, + [SMALL_STATE(7398)] = 286199, + [SMALL_STATE(7399)] = 286213, + [SMALL_STATE(7400)] = 286227, + [SMALL_STATE(7401)] = 286241, + [SMALL_STATE(7402)] = 286257, + [SMALL_STATE(7403)] = 286273, + [SMALL_STATE(7404)] = 286289, + [SMALL_STATE(7405)] = 286305, + [SMALL_STATE(7406)] = 286321, + [SMALL_STATE(7407)] = 286337, + [SMALL_STATE(7408)] = 286353, + [SMALL_STATE(7409)] = 286369, + [SMALL_STATE(7410)] = 286385, + [SMALL_STATE(7411)] = 286401, + [SMALL_STATE(7412)] = 286415, + [SMALL_STATE(7413)] = 286431, + [SMALL_STATE(7414)] = 286445, + [SMALL_STATE(7415)] = 286459, + [SMALL_STATE(7416)] = 286473, + [SMALL_STATE(7417)] = 286489, + [SMALL_STATE(7418)] = 286505, + [SMALL_STATE(7419)] = 286519, + [SMALL_STATE(7420)] = 286535, + [SMALL_STATE(7421)] = 286549, + [SMALL_STATE(7422)] = 286563, + [SMALL_STATE(7423)] = 286579, + [SMALL_STATE(7424)] = 286595, + [SMALL_STATE(7425)] = 286609, + [SMALL_STATE(7426)] = 286623, + [SMALL_STATE(7427)] = 286637, + [SMALL_STATE(7428)] = 286653, + [SMALL_STATE(7429)] = 286669, + [SMALL_STATE(7430)] = 286685, + [SMALL_STATE(7431)] = 286701, + [SMALL_STATE(7432)] = 286717, + [SMALL_STATE(7433)] = 286731, + [SMALL_STATE(7434)] = 286747, + [SMALL_STATE(7435)] = 286763, + [SMALL_STATE(7436)] = 286779, + [SMALL_STATE(7437)] = 286795, + [SMALL_STATE(7438)] = 286809, + [SMALL_STATE(7439)] = 286825, + [SMALL_STATE(7440)] = 286841, + [SMALL_STATE(7441)] = 286857, + [SMALL_STATE(7442)] = 286871, + [SMALL_STATE(7443)] = 286885, + [SMALL_STATE(7444)] = 286901, [SMALL_STATE(7445)] = 286917, [SMALL_STATE(7446)] = 286931, - [SMALL_STATE(7447)] = 286945, - [SMALL_STATE(7448)] = 286959, - [SMALL_STATE(7449)] = 286975, - [SMALL_STATE(7450)] = 286989, - [SMALL_STATE(7451)] = 287003, - [SMALL_STATE(7452)] = 287019, - [SMALL_STATE(7453)] = 287035, - [SMALL_STATE(7454)] = 287049, - [SMALL_STATE(7455)] = 287065, - [SMALL_STATE(7456)] = 287079, - [SMALL_STATE(7457)] = 287093, + [SMALL_STATE(7447)] = 286947, + [SMALL_STATE(7448)] = 286961, + [SMALL_STATE(7449)] = 286977, + [SMALL_STATE(7450)] = 286993, + [SMALL_STATE(7451)] = 287009, + [SMALL_STATE(7452)] = 287025, + [SMALL_STATE(7453)] = 287039, + [SMALL_STATE(7454)] = 287053, + [SMALL_STATE(7455)] = 287069, + [SMALL_STATE(7456)] = 287083, + [SMALL_STATE(7457)] = 287097, [SMALL_STATE(7458)] = 287107, [SMALL_STATE(7459)] = 287121, [SMALL_STATE(7460)] = 287135, - [SMALL_STATE(7461)] = 287151, - [SMALL_STATE(7462)] = 287165, - [SMALL_STATE(7463)] = 287179, + [SMALL_STATE(7461)] = 287149, + [SMALL_STATE(7462)] = 287163, + [SMALL_STATE(7463)] = 287177, [SMALL_STATE(7464)] = 287191, [SMALL_STATE(7465)] = 287205, [SMALL_STATE(7466)] = 287221, @@ -614656,1920 +617994,1951 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(7468)] = 287253, [SMALL_STATE(7469)] = 287267, [SMALL_STATE(7470)] = 287283, - [SMALL_STATE(7471)] = 287299, - [SMALL_STATE(7472)] = 287315, + [SMALL_STATE(7471)] = 287297, + [SMALL_STATE(7472)] = 287313, [SMALL_STATE(7473)] = 287329, [SMALL_STATE(7474)] = 287345, [SMALL_STATE(7475)] = 287361, - [SMALL_STATE(7476)] = 287377, - [SMALL_STATE(7477)] = 287393, - [SMALL_STATE(7478)] = 287407, - [SMALL_STATE(7479)] = 287421, - [SMALL_STATE(7480)] = 287437, - [SMALL_STATE(7481)] = 287453, - [SMALL_STATE(7482)] = 287469, - [SMALL_STATE(7483)] = 287485, - [SMALL_STATE(7484)] = 287501, - [SMALL_STATE(7485)] = 287515, - [SMALL_STATE(7486)] = 287529, - [SMALL_STATE(7487)] = 287545, - [SMALL_STATE(7488)] = 287559, - [SMALL_STATE(7489)] = 287575, - [SMALL_STATE(7490)] = 287591, - [SMALL_STATE(7491)] = 287607, - [SMALL_STATE(7492)] = 287621, - [SMALL_STATE(7493)] = 287637, - [SMALL_STATE(7494)] = 287651, - [SMALL_STATE(7495)] = 287667, - [SMALL_STATE(7496)] = 287681, - [SMALL_STATE(7497)] = 287697, - [SMALL_STATE(7498)] = 287713, - [SMALL_STATE(7499)] = 287727, - [SMALL_STATE(7500)] = 287743, - [SMALL_STATE(7501)] = 287759, - [SMALL_STATE(7502)] = 287773, - [SMALL_STATE(7503)] = 287789, - [SMALL_STATE(7504)] = 287805, - [SMALL_STATE(7505)] = 287821, - [SMALL_STATE(7506)] = 287835, - [SMALL_STATE(7507)] = 287849, - [SMALL_STATE(7508)] = 287865, - [SMALL_STATE(7509)] = 287881, - [SMALL_STATE(7510)] = 287897, - [SMALL_STATE(7511)] = 287913, - [SMALL_STATE(7512)] = 287929, - [SMALL_STATE(7513)] = 287945, - [SMALL_STATE(7514)] = 287961, - [SMALL_STATE(7515)] = 287975, - [SMALL_STATE(7516)] = 287991, - [SMALL_STATE(7517)] = 288007, - [SMALL_STATE(7518)] = 288021, - [SMALL_STATE(7519)] = 288035, - [SMALL_STATE(7520)] = 288051, - [SMALL_STATE(7521)] = 288067, - [SMALL_STATE(7522)] = 288083, - [SMALL_STATE(7523)] = 288099, - [SMALL_STATE(7524)] = 288113, - [SMALL_STATE(7525)] = 288129, - [SMALL_STATE(7526)] = 288145, - [SMALL_STATE(7527)] = 288161, - [SMALL_STATE(7528)] = 288175, - [SMALL_STATE(7529)] = 288191, - [SMALL_STATE(7530)] = 288207, - [SMALL_STATE(7531)] = 288223, - [SMALL_STATE(7532)] = 288237, - [SMALL_STATE(7533)] = 288251, - [SMALL_STATE(7534)] = 288265, + [SMALL_STATE(7476)] = 287375, + [SMALL_STATE(7477)] = 287389, + [SMALL_STATE(7478)] = 287405, + [SMALL_STATE(7479)] = 287419, + [SMALL_STATE(7480)] = 287435, + [SMALL_STATE(7481)] = 287451, + [SMALL_STATE(7482)] = 287467, + [SMALL_STATE(7483)] = 287483, + [SMALL_STATE(7484)] = 287497, + [SMALL_STATE(7485)] = 287511, + [SMALL_STATE(7486)] = 287525, + [SMALL_STATE(7487)] = 287539, + [SMALL_STATE(7488)] = 287553, + [SMALL_STATE(7489)] = 287567, + [SMALL_STATE(7490)] = 287581, + [SMALL_STATE(7491)] = 287595, + [SMALL_STATE(7492)] = 287609, + [SMALL_STATE(7493)] = 287625, + [SMALL_STATE(7494)] = 287641, + [SMALL_STATE(7495)] = 287655, + [SMALL_STATE(7496)] = 287671, + [SMALL_STATE(7497)] = 287687, + [SMALL_STATE(7498)] = 287703, + [SMALL_STATE(7499)] = 287719, + [SMALL_STATE(7500)] = 287735, + [SMALL_STATE(7501)] = 287751, + [SMALL_STATE(7502)] = 287767, + [SMALL_STATE(7503)] = 287783, + [SMALL_STATE(7504)] = 287799, + [SMALL_STATE(7505)] = 287813, + [SMALL_STATE(7506)] = 287829, + [SMALL_STATE(7507)] = 287845, + [SMALL_STATE(7508)] = 287859, + [SMALL_STATE(7509)] = 287875, + [SMALL_STATE(7510)] = 287891, + [SMALL_STATE(7511)] = 287907, + [SMALL_STATE(7512)] = 287923, + [SMALL_STATE(7513)] = 287939, + [SMALL_STATE(7514)] = 287953, + [SMALL_STATE(7515)] = 287969, + [SMALL_STATE(7516)] = 287985, + [SMALL_STATE(7517)] = 288001, + [SMALL_STATE(7518)] = 288017, + [SMALL_STATE(7519)] = 288033, + [SMALL_STATE(7520)] = 288049, + [SMALL_STATE(7521)] = 288065, + [SMALL_STATE(7522)] = 288081, + [SMALL_STATE(7523)] = 288097, + [SMALL_STATE(7524)] = 288111, + [SMALL_STATE(7525)] = 288125, + [SMALL_STATE(7526)] = 288141, + [SMALL_STATE(7527)] = 288157, + [SMALL_STATE(7528)] = 288173, + [SMALL_STATE(7529)] = 288185, + [SMALL_STATE(7530)] = 288201, + [SMALL_STATE(7531)] = 288217, + [SMALL_STATE(7532)] = 288233, + [SMALL_STATE(7533)] = 288249, + [SMALL_STATE(7534)] = 288263, [SMALL_STATE(7535)] = 288279, - [SMALL_STATE(7536)] = 288293, - [SMALL_STATE(7537)] = 288307, - [SMALL_STATE(7538)] = 288323, - [SMALL_STATE(7539)] = 288339, - [SMALL_STATE(7540)] = 288353, - [SMALL_STATE(7541)] = 288367, - [SMALL_STATE(7542)] = 288381, - [SMALL_STATE(7543)] = 288397, - [SMALL_STATE(7544)] = 288411, - [SMALL_STATE(7545)] = 288425, - [SMALL_STATE(7546)] = 288441, - [SMALL_STATE(7547)] = 288457, - [SMALL_STATE(7548)] = 288473, - [SMALL_STATE(7549)] = 288489, - [SMALL_STATE(7550)] = 288505, - [SMALL_STATE(7551)] = 288519, - [SMALL_STATE(7552)] = 288533, - [SMALL_STATE(7553)] = 288549, - [SMALL_STATE(7554)] = 288563, - [SMALL_STATE(7555)] = 288579, - [SMALL_STATE(7556)] = 288593, - [SMALL_STATE(7557)] = 288605, - [SMALL_STATE(7558)] = 288619, - [SMALL_STATE(7559)] = 288633, - [SMALL_STATE(7560)] = 288647, - [SMALL_STATE(7561)] = 288663, - [SMALL_STATE(7562)] = 288679, - [SMALL_STATE(7563)] = 288695, - [SMALL_STATE(7564)] = 288711, - [SMALL_STATE(7565)] = 288727, - [SMALL_STATE(7566)] = 288741, - [SMALL_STATE(7567)] = 288755, - [SMALL_STATE(7568)] = 288771, - [SMALL_STATE(7569)] = 288787, - [SMALL_STATE(7570)] = 288803, - [SMALL_STATE(7571)] = 288817, - [SMALL_STATE(7572)] = 288833, - [SMALL_STATE(7573)] = 288849, - [SMALL_STATE(7574)] = 288863, - [SMALL_STATE(7575)] = 288877, - [SMALL_STATE(7576)] = 288891, - [SMALL_STATE(7577)] = 288907, - [SMALL_STATE(7578)] = 288921, - [SMALL_STATE(7579)] = 288937, + [SMALL_STATE(7536)] = 288295, + [SMALL_STATE(7537)] = 288309, + [SMALL_STATE(7538)] = 288325, + [SMALL_STATE(7539)] = 288341, + [SMALL_STATE(7540)] = 288357, + [SMALL_STATE(7541)] = 288373, + [SMALL_STATE(7542)] = 288389, + [SMALL_STATE(7543)] = 288405, + [SMALL_STATE(7544)] = 288421, + [SMALL_STATE(7545)] = 288437, + [SMALL_STATE(7546)] = 288453, + [SMALL_STATE(7547)] = 288469, + [SMALL_STATE(7548)] = 288485, + [SMALL_STATE(7549)] = 288501, + [SMALL_STATE(7550)] = 288515, + [SMALL_STATE(7551)] = 288529, + [SMALL_STATE(7552)] = 288545, + [SMALL_STATE(7553)] = 288559, + [SMALL_STATE(7554)] = 288575, + [SMALL_STATE(7555)] = 288589, + [SMALL_STATE(7556)] = 288605, + [SMALL_STATE(7557)] = 288619, + [SMALL_STATE(7558)] = 288633, + [SMALL_STATE(7559)] = 288649, + [SMALL_STATE(7560)] = 288665, + [SMALL_STATE(7561)] = 288679, + [SMALL_STATE(7562)] = 288695, + [SMALL_STATE(7563)] = 288709, + [SMALL_STATE(7564)] = 288723, + [SMALL_STATE(7565)] = 288737, + [SMALL_STATE(7566)] = 288751, + [SMALL_STATE(7567)] = 288767, + [SMALL_STATE(7568)] = 288783, + [SMALL_STATE(7569)] = 288799, + [SMALL_STATE(7570)] = 288809, + [SMALL_STATE(7571)] = 288825, + [SMALL_STATE(7572)] = 288839, + [SMALL_STATE(7573)] = 288855, + [SMALL_STATE(7574)] = 288869, + [SMALL_STATE(7575)] = 288885, + [SMALL_STATE(7576)] = 288899, + [SMALL_STATE(7577)] = 288913, + [SMALL_STATE(7578)] = 288929, + [SMALL_STATE(7579)] = 288939, [SMALL_STATE(7580)] = 288953, [SMALL_STATE(7581)] = 288969, - [SMALL_STATE(7582)] = 288985, - [SMALL_STATE(7583)] = 289001, - [SMALL_STATE(7584)] = 289017, - [SMALL_STATE(7585)] = 289031, - [SMALL_STATE(7586)] = 289047, - [SMALL_STATE(7587)] = 289063, - [SMALL_STATE(7588)] = 289077, - [SMALL_STATE(7589)] = 289093, - [SMALL_STATE(7590)] = 289107, - [SMALL_STATE(7591)] = 289121, - [SMALL_STATE(7592)] = 289135, - [SMALL_STATE(7593)] = 289149, - [SMALL_STATE(7594)] = 289163, - [SMALL_STATE(7595)] = 289179, - [SMALL_STATE(7596)] = 289193, - [SMALL_STATE(7597)] = 289203, - [SMALL_STATE(7598)] = 289219, - [SMALL_STATE(7599)] = 289235, - [SMALL_STATE(7600)] = 289251, - [SMALL_STATE(7601)] = 289265, - [SMALL_STATE(7602)] = 289281, - [SMALL_STATE(7603)] = 289297, - [SMALL_STATE(7604)] = 289313, - [SMALL_STATE(7605)] = 289327, - [SMALL_STATE(7606)] = 289340, - [SMALL_STATE(7607)] = 289351, - [SMALL_STATE(7608)] = 289362, - [SMALL_STATE(7609)] = 289375, - [SMALL_STATE(7610)] = 289388, - [SMALL_STATE(7611)] = 289401, - [SMALL_STATE(7612)] = 289414, - [SMALL_STATE(7613)] = 289427, - [SMALL_STATE(7614)] = 289440, - [SMALL_STATE(7615)] = 289451, - [SMALL_STATE(7616)] = 289464, - [SMALL_STATE(7617)] = 289475, - [SMALL_STATE(7618)] = 289488, - [SMALL_STATE(7619)] = 289499, - [SMALL_STATE(7620)] = 289512, - [SMALL_STATE(7621)] = 289525, - [SMALL_STATE(7622)] = 289538, - [SMALL_STATE(7623)] = 289551, - [SMALL_STATE(7624)] = 289564, - [SMALL_STATE(7625)] = 289577, - [SMALL_STATE(7626)] = 289590, - [SMALL_STATE(7627)] = 289603, - [SMALL_STATE(7628)] = 289614, - [SMALL_STATE(7629)] = 289627, - [SMALL_STATE(7630)] = 289640, - [SMALL_STATE(7631)] = 289651, - [SMALL_STATE(7632)] = 289662, - [SMALL_STATE(7633)] = 289675, - [SMALL_STATE(7634)] = 289686, - [SMALL_STATE(7635)] = 289699, - [SMALL_STATE(7636)] = 289712, - [SMALL_STATE(7637)] = 289725, - [SMALL_STATE(7638)] = 289738, - [SMALL_STATE(7639)] = 289751, - [SMALL_STATE(7640)] = 289764, - [SMALL_STATE(7641)] = 289777, - [SMALL_STATE(7642)] = 289790, - [SMALL_STATE(7643)] = 289803, - [SMALL_STATE(7644)] = 289816, - [SMALL_STATE(7645)] = 289829, - [SMALL_STATE(7646)] = 289842, - [SMALL_STATE(7647)] = 289855, - [SMALL_STATE(7648)] = 289868, - [SMALL_STATE(7649)] = 289881, - [SMALL_STATE(7650)] = 289894, - [SMALL_STATE(7651)] = 289907, - [SMALL_STATE(7652)] = 289920, - [SMALL_STATE(7653)] = 289931, - [SMALL_STATE(7654)] = 289944, - [SMALL_STATE(7655)] = 289957, - [SMALL_STATE(7656)] = 289970, - [SMALL_STATE(7657)] = 289983, - [SMALL_STATE(7658)] = 289996, - [SMALL_STATE(7659)] = 290009, - [SMALL_STATE(7660)] = 290022, - [SMALL_STATE(7661)] = 290033, - [SMALL_STATE(7662)] = 290046, - [SMALL_STATE(7663)] = 290059, - [SMALL_STATE(7664)] = 290070, - [SMALL_STATE(7665)] = 290083, - [SMALL_STATE(7666)] = 290096, - [SMALL_STATE(7667)] = 290107, - [SMALL_STATE(7668)] = 290120, - [SMALL_STATE(7669)] = 290133, - [SMALL_STATE(7670)] = 290146, - [SMALL_STATE(7671)] = 290159, - [SMALL_STATE(7672)] = 290172, - [SMALL_STATE(7673)] = 290183, - [SMALL_STATE(7674)] = 290196, - [SMALL_STATE(7675)] = 290209, - [SMALL_STATE(7676)] = 290220, - [SMALL_STATE(7677)] = 290233, - [SMALL_STATE(7678)] = 290246, - [SMALL_STATE(7679)] = 290259, - [SMALL_STATE(7680)] = 290272, - [SMALL_STATE(7681)] = 290285, - [SMALL_STATE(7682)] = 290298, - [SMALL_STATE(7683)] = 290311, - [SMALL_STATE(7684)] = 290324, - [SMALL_STATE(7685)] = 290337, - [SMALL_STATE(7686)] = 290350, - [SMALL_STATE(7687)] = 290363, - [SMALL_STATE(7688)] = 290376, - [SMALL_STATE(7689)] = 290389, - [SMALL_STATE(7690)] = 290402, - [SMALL_STATE(7691)] = 290415, - [SMALL_STATE(7692)] = 290428, - [SMALL_STATE(7693)] = 290439, - [SMALL_STATE(7694)] = 290452, - [SMALL_STATE(7695)] = 290465, - [SMALL_STATE(7696)] = 290478, - [SMALL_STATE(7697)] = 290491, - [SMALL_STATE(7698)] = 290504, - [SMALL_STATE(7699)] = 290517, - [SMALL_STATE(7700)] = 290530, - [SMALL_STATE(7701)] = 290543, - [SMALL_STATE(7702)] = 290554, - [SMALL_STATE(7703)] = 290567, - [SMALL_STATE(7704)] = 290580, - [SMALL_STATE(7705)] = 290593, - [SMALL_STATE(7706)] = 290606, - [SMALL_STATE(7707)] = 290619, - [SMALL_STATE(7708)] = 290632, - [SMALL_STATE(7709)] = 290645, - [SMALL_STATE(7710)] = 290658, - [SMALL_STATE(7711)] = 290671, - [SMALL_STATE(7712)] = 290684, - [SMALL_STATE(7713)] = 290697, - [SMALL_STATE(7714)] = 290710, - [SMALL_STATE(7715)] = 290723, - [SMALL_STATE(7716)] = 290736, - [SMALL_STATE(7717)] = 290747, - [SMALL_STATE(7718)] = 290760, - [SMALL_STATE(7719)] = 290773, - [SMALL_STATE(7720)] = 290784, - [SMALL_STATE(7721)] = 290797, - [SMALL_STATE(7722)] = 290810, - [SMALL_STATE(7723)] = 290821, - [SMALL_STATE(7724)] = 290832, - [SMALL_STATE(7725)] = 290845, - [SMALL_STATE(7726)] = 290856, - [SMALL_STATE(7727)] = 290867, - [SMALL_STATE(7728)] = 290878, - [SMALL_STATE(7729)] = 290891, - [SMALL_STATE(7730)] = 290904, - [SMALL_STATE(7731)] = 290917, - [SMALL_STATE(7732)] = 290930, - [SMALL_STATE(7733)] = 290943, - [SMALL_STATE(7734)] = 290956, - [SMALL_STATE(7735)] = 290967, - [SMALL_STATE(7736)] = 290980, - [SMALL_STATE(7737)] = 290993, - [SMALL_STATE(7738)] = 291006, - [SMALL_STATE(7739)] = 291019, - [SMALL_STATE(7740)] = 291032, - [SMALL_STATE(7741)] = 291043, - [SMALL_STATE(7742)] = 291056, - [SMALL_STATE(7743)] = 291067, - [SMALL_STATE(7744)] = 291080, - [SMALL_STATE(7745)] = 291093, - [SMALL_STATE(7746)] = 291104, - [SMALL_STATE(7747)] = 291117, - [SMALL_STATE(7748)] = 291128, - [SMALL_STATE(7749)] = 291141, - [SMALL_STATE(7750)] = 291154, - [SMALL_STATE(7751)] = 291167, - [SMALL_STATE(7752)] = 291180, - [SMALL_STATE(7753)] = 291193, - [SMALL_STATE(7754)] = 291206, - [SMALL_STATE(7755)] = 291215, - [SMALL_STATE(7756)] = 291228, - [SMALL_STATE(7757)] = 291241, - [SMALL_STATE(7758)] = 291254, - [SMALL_STATE(7759)] = 291267, - [SMALL_STATE(7760)] = 291280, - [SMALL_STATE(7761)] = 291289, - [SMALL_STATE(7762)] = 291302, - [SMALL_STATE(7763)] = 291315, - [SMALL_STATE(7764)] = 291324, - [SMALL_STATE(7765)] = 291337, - [SMALL_STATE(7766)] = 291348, - [SMALL_STATE(7767)] = 291361, - [SMALL_STATE(7768)] = 291374, - [SMALL_STATE(7769)] = 291387, - [SMALL_STATE(7770)] = 291400, - [SMALL_STATE(7771)] = 291413, - [SMALL_STATE(7772)] = 291426, - [SMALL_STATE(7773)] = 291437, - [SMALL_STATE(7774)] = 291450, - [SMALL_STATE(7775)] = 291463, - [SMALL_STATE(7776)] = 291474, - [SMALL_STATE(7777)] = 291487, - [SMALL_STATE(7778)] = 291500, - [SMALL_STATE(7779)] = 291513, - [SMALL_STATE(7780)] = 291526, - [SMALL_STATE(7781)] = 291539, - [SMALL_STATE(7782)] = 291552, - [SMALL_STATE(7783)] = 291565, - [SMALL_STATE(7784)] = 291576, - [SMALL_STATE(7785)] = 291589, - [SMALL_STATE(7786)] = 291602, - [SMALL_STATE(7787)] = 291615, - [SMALL_STATE(7788)] = 291628, - [SMALL_STATE(7789)] = 291641, - [SMALL_STATE(7790)] = 291652, - [SMALL_STATE(7791)] = 291665, - [SMALL_STATE(7792)] = 291678, - [SMALL_STATE(7793)] = 291691, - [SMALL_STATE(7794)] = 291704, - [SMALL_STATE(7795)] = 291717, - [SMALL_STATE(7796)] = 291730, - [SMALL_STATE(7797)] = 291743, - [SMALL_STATE(7798)] = 291756, - [SMALL_STATE(7799)] = 291769, - [SMALL_STATE(7800)] = 291782, - [SMALL_STATE(7801)] = 291795, - [SMALL_STATE(7802)] = 291808, - [SMALL_STATE(7803)] = 291821, - [SMALL_STATE(7804)] = 291834, - [SMALL_STATE(7805)] = 291847, - [SMALL_STATE(7806)] = 291860, - [SMALL_STATE(7807)] = 291873, - [SMALL_STATE(7808)] = 291884, - [SMALL_STATE(7809)] = 291897, - [SMALL_STATE(7810)] = 291910, - [SMALL_STATE(7811)] = 291923, - [SMALL_STATE(7812)] = 291936, - [SMALL_STATE(7813)] = 291949, - [SMALL_STATE(7814)] = 291962, - [SMALL_STATE(7815)] = 291973, - [SMALL_STATE(7816)] = 291986, - [SMALL_STATE(7817)] = 291999, - [SMALL_STATE(7818)] = 292008, - [SMALL_STATE(7819)] = 292021, - [SMALL_STATE(7820)] = 292034, - [SMALL_STATE(7821)] = 292047, - [SMALL_STATE(7822)] = 292060, - [SMALL_STATE(7823)] = 292073, - [SMALL_STATE(7824)] = 292086, - [SMALL_STATE(7825)] = 292099, - [SMALL_STATE(7826)] = 292110, - [SMALL_STATE(7827)] = 292123, - [SMALL_STATE(7828)] = 292136, - [SMALL_STATE(7829)] = 292149, - [SMALL_STATE(7830)] = 292162, - [SMALL_STATE(7831)] = 292175, - [SMALL_STATE(7832)] = 292188, - [SMALL_STATE(7833)] = 292201, - [SMALL_STATE(7834)] = 292214, - [SMALL_STATE(7835)] = 292227, - [SMALL_STATE(7836)] = 292240, - [SMALL_STATE(7837)] = 292253, - [SMALL_STATE(7838)] = 292266, - [SMALL_STATE(7839)] = 292279, - [SMALL_STATE(7840)] = 292290, - [SMALL_STATE(7841)] = 292303, - [SMALL_STATE(7842)] = 292316, - [SMALL_STATE(7843)] = 292329, - [SMALL_STATE(7844)] = 292342, - [SMALL_STATE(7845)] = 292355, - [SMALL_STATE(7846)] = 292366, - [SMALL_STATE(7847)] = 292379, - [SMALL_STATE(7848)] = 292392, - [SMALL_STATE(7849)] = 292405, - [SMALL_STATE(7850)] = 292418, - [SMALL_STATE(7851)] = 292431, - [SMALL_STATE(7852)] = 292444, - [SMALL_STATE(7853)] = 292457, - [SMALL_STATE(7854)] = 292470, - [SMALL_STATE(7855)] = 292483, - [SMALL_STATE(7856)] = 292496, - [SMALL_STATE(7857)] = 292505, - [SMALL_STATE(7858)] = 292516, - [SMALL_STATE(7859)] = 292527, - [SMALL_STATE(7860)] = 292538, - [SMALL_STATE(7861)] = 292551, - [SMALL_STATE(7862)] = 292564, - [SMALL_STATE(7863)] = 292577, - [SMALL_STATE(7864)] = 292590, - [SMALL_STATE(7865)] = 292603, - [SMALL_STATE(7866)] = 292616, - [SMALL_STATE(7867)] = 292629, - [SMALL_STATE(7868)] = 292642, - [SMALL_STATE(7869)] = 292655, - [SMALL_STATE(7870)] = 292668, - [SMALL_STATE(7871)] = 292681, - [SMALL_STATE(7872)] = 292690, - [SMALL_STATE(7873)] = 292703, - [SMALL_STATE(7874)] = 292712, - [SMALL_STATE(7875)] = 292721, - [SMALL_STATE(7876)] = 292734, - [SMALL_STATE(7877)] = 292747, - [SMALL_STATE(7878)] = 292760, - [SMALL_STATE(7879)] = 292773, - [SMALL_STATE(7880)] = 292786, - [SMALL_STATE(7881)] = 292799, - [SMALL_STATE(7882)] = 292812, - [SMALL_STATE(7883)] = 292823, - [SMALL_STATE(7884)] = 292836, - [SMALL_STATE(7885)] = 292849, - [SMALL_STATE(7886)] = 292860, - [SMALL_STATE(7887)] = 292873, - [SMALL_STATE(7888)] = 292886, - [SMALL_STATE(7889)] = 292899, - [SMALL_STATE(7890)] = 292912, - [SMALL_STATE(7891)] = 292925, - [SMALL_STATE(7892)] = 292936, - [SMALL_STATE(7893)] = 292949, - [SMALL_STATE(7894)] = 292958, - [SMALL_STATE(7895)] = 292967, - [SMALL_STATE(7896)] = 292980, - [SMALL_STATE(7897)] = 292993, - [SMALL_STATE(7898)] = 293004, - [SMALL_STATE(7899)] = 293017, - [SMALL_STATE(7900)] = 293030, - [SMALL_STATE(7901)] = 293043, - [SMALL_STATE(7902)] = 293056, - [SMALL_STATE(7903)] = 293069, - [SMALL_STATE(7904)] = 293082, - [SMALL_STATE(7905)] = 293095, - [SMALL_STATE(7906)] = 293108, - [SMALL_STATE(7907)] = 293121, - [SMALL_STATE(7908)] = 293130, - [SMALL_STATE(7909)] = 293143, - [SMALL_STATE(7910)] = 293156, - [SMALL_STATE(7911)] = 293169, - [SMALL_STATE(7912)] = 293182, - [SMALL_STATE(7913)] = 293193, - [SMALL_STATE(7914)] = 293206, - [SMALL_STATE(7915)] = 293219, - [SMALL_STATE(7916)] = 293228, - [SMALL_STATE(7917)] = 293241, - [SMALL_STATE(7918)] = 293254, - [SMALL_STATE(7919)] = 293267, - [SMALL_STATE(7920)] = 293278, - [SMALL_STATE(7921)] = 293289, - [SMALL_STATE(7922)] = 293298, - [SMALL_STATE(7923)] = 293311, - [SMALL_STATE(7924)] = 293324, - [SMALL_STATE(7925)] = 293337, - [SMALL_STATE(7926)] = 293350, - [SMALL_STATE(7927)] = 293363, - [SMALL_STATE(7928)] = 293372, - [SMALL_STATE(7929)] = 293385, - [SMALL_STATE(7930)] = 293398, - [SMALL_STATE(7931)] = 293409, - [SMALL_STATE(7932)] = 293422, - [SMALL_STATE(7933)] = 293435, - [SMALL_STATE(7934)] = 293444, - [SMALL_STATE(7935)] = 293453, - [SMALL_STATE(7936)] = 293466, - [SMALL_STATE(7937)] = 293479, - [SMALL_STATE(7938)] = 293492, - [SMALL_STATE(7939)] = 293505, - [SMALL_STATE(7940)] = 293518, - [SMALL_STATE(7941)] = 293529, - [SMALL_STATE(7942)] = 293542, - [SMALL_STATE(7943)] = 293555, - [SMALL_STATE(7944)] = 293568, - [SMALL_STATE(7945)] = 293581, - [SMALL_STATE(7946)] = 293594, - [SMALL_STATE(7947)] = 293607, - [SMALL_STATE(7948)] = 293618, - [SMALL_STATE(7949)] = 293631, - [SMALL_STATE(7950)] = 293644, - [SMALL_STATE(7951)] = 293657, - [SMALL_STATE(7952)] = 293670, - [SMALL_STATE(7953)] = 293683, - [SMALL_STATE(7954)] = 293696, - [SMALL_STATE(7955)] = 293709, - [SMALL_STATE(7956)] = 293722, - [SMALL_STATE(7957)] = 293735, - [SMALL_STATE(7958)] = 293748, - [SMALL_STATE(7959)] = 293759, - [SMALL_STATE(7960)] = 293772, - [SMALL_STATE(7961)] = 293785, - [SMALL_STATE(7962)] = 293798, - [SMALL_STATE(7963)] = 293809, - [SMALL_STATE(7964)] = 293822, - [SMALL_STATE(7965)] = 293835, - [SMALL_STATE(7966)] = 293848, - [SMALL_STATE(7967)] = 293861, - [SMALL_STATE(7968)] = 293874, - [SMALL_STATE(7969)] = 293887, - [SMALL_STATE(7970)] = 293900, - [SMALL_STATE(7971)] = 293913, - [SMALL_STATE(7972)] = 293926, - [SMALL_STATE(7973)] = 293939, - [SMALL_STATE(7974)] = 293952, - [SMALL_STATE(7975)] = 293965, - [SMALL_STATE(7976)] = 293978, - [SMALL_STATE(7977)] = 293991, - [SMALL_STATE(7978)] = 294004, - [SMALL_STATE(7979)] = 294017, - [SMALL_STATE(7980)] = 294030, - [SMALL_STATE(7981)] = 294043, - [SMALL_STATE(7982)] = 294056, - [SMALL_STATE(7983)] = 294069, - [SMALL_STATE(7984)] = 294082, - [SMALL_STATE(7985)] = 294095, - [SMALL_STATE(7986)] = 294108, - [SMALL_STATE(7987)] = 294121, - [SMALL_STATE(7988)] = 294134, - [SMALL_STATE(7989)] = 294147, - [SMALL_STATE(7990)] = 294158, - [SMALL_STATE(7991)] = 294171, - [SMALL_STATE(7992)] = 294184, - [SMALL_STATE(7993)] = 294193, - [SMALL_STATE(7994)] = 294206, - [SMALL_STATE(7995)] = 294219, - [SMALL_STATE(7996)] = 294232, - [SMALL_STATE(7997)] = 294245, - [SMALL_STATE(7998)] = 294258, - [SMALL_STATE(7999)] = 294271, - [SMALL_STATE(8000)] = 294282, - [SMALL_STATE(8001)] = 294293, - [SMALL_STATE(8002)] = 294306, - [SMALL_STATE(8003)] = 294319, - [SMALL_STATE(8004)] = 294332, - [SMALL_STATE(8005)] = 294345, - [SMALL_STATE(8006)] = 294358, - [SMALL_STATE(8007)] = 294371, - [SMALL_STATE(8008)] = 294384, - [SMALL_STATE(8009)] = 294393, - [SMALL_STATE(8010)] = 294402, - [SMALL_STATE(8011)] = 294415, - [SMALL_STATE(8012)] = 294425, - [SMALL_STATE(8013)] = 294435, - [SMALL_STATE(8014)] = 294443, - [SMALL_STATE(8015)] = 294453, - [SMALL_STATE(8016)] = 294461, - [SMALL_STATE(8017)] = 294469, - [SMALL_STATE(8018)] = 294477, - [SMALL_STATE(8019)] = 294485, - [SMALL_STATE(8020)] = 294493, - [SMALL_STATE(8021)] = 294501, - [SMALL_STATE(8022)] = 294509, - [SMALL_STATE(8023)] = 294519, - [SMALL_STATE(8024)] = 294527, - [SMALL_STATE(8025)] = 294535, - [SMALL_STATE(8026)] = 294545, - [SMALL_STATE(8027)] = 294555, - [SMALL_STATE(8028)] = 294565, - [SMALL_STATE(8029)] = 294575, - [SMALL_STATE(8030)] = 294585, - [SMALL_STATE(8031)] = 294595, - [SMALL_STATE(8032)] = 294605, - [SMALL_STATE(8033)] = 294615, - [SMALL_STATE(8034)] = 294625, - [SMALL_STATE(8035)] = 294635, - [SMALL_STATE(8036)] = 294645, - [SMALL_STATE(8037)] = 294655, - [SMALL_STATE(8038)] = 294665, - [SMALL_STATE(8039)] = 294675, - [SMALL_STATE(8040)] = 294685, - [SMALL_STATE(8041)] = 294695, - [SMALL_STATE(8042)] = 294705, - [SMALL_STATE(8043)] = 294715, - [SMALL_STATE(8044)] = 294725, - [SMALL_STATE(8045)] = 294735, - [SMALL_STATE(8046)] = 294743, - [SMALL_STATE(8047)] = 294753, - [SMALL_STATE(8048)] = 294763, - [SMALL_STATE(8049)] = 294771, - [SMALL_STATE(8050)] = 294781, - [SMALL_STATE(8051)] = 294791, - [SMALL_STATE(8052)] = 294801, - [SMALL_STATE(8053)] = 294811, - [SMALL_STATE(8054)] = 294821, - [SMALL_STATE(8055)] = 294831, - [SMALL_STATE(8056)] = 294841, - [SMALL_STATE(8057)] = 294849, - [SMALL_STATE(8058)] = 294859, - [SMALL_STATE(8059)] = 294869, - [SMALL_STATE(8060)] = 294877, - [SMALL_STATE(8061)] = 294887, - [SMALL_STATE(8062)] = 294897, - [SMALL_STATE(8063)] = 294907, - [SMALL_STATE(8064)] = 294917, - [SMALL_STATE(8065)] = 294927, - [SMALL_STATE(8066)] = 294935, - [SMALL_STATE(8067)] = 294945, - [SMALL_STATE(8068)] = 294955, - [SMALL_STATE(8069)] = 294965, - [SMALL_STATE(8070)] = 294975, - [SMALL_STATE(8071)] = 294985, - [SMALL_STATE(8072)] = 294995, - [SMALL_STATE(8073)] = 295005, - [SMALL_STATE(8074)] = 295013, - [SMALL_STATE(8075)] = 295023, - [SMALL_STATE(8076)] = 295033, - [SMALL_STATE(8077)] = 295043, - [SMALL_STATE(8078)] = 295053, - [SMALL_STATE(8079)] = 295063, - [SMALL_STATE(8080)] = 295073, - [SMALL_STATE(8081)] = 295083, - [SMALL_STATE(8082)] = 295091, - [SMALL_STATE(8083)] = 295101, - [SMALL_STATE(8084)] = 295109, - [SMALL_STATE(8085)] = 295119, - [SMALL_STATE(8086)] = 295129, - [SMALL_STATE(8087)] = 295139, - [SMALL_STATE(8088)] = 295147, - [SMALL_STATE(8089)] = 295157, - [SMALL_STATE(8090)] = 295165, - [SMALL_STATE(8091)] = 295173, - [SMALL_STATE(8092)] = 295181, - [SMALL_STATE(8093)] = 295189, - [SMALL_STATE(8094)] = 295199, - [SMALL_STATE(8095)] = 295209, - [SMALL_STATE(8096)] = 295219, - [SMALL_STATE(8097)] = 295227, - [SMALL_STATE(8098)] = 295235, - [SMALL_STATE(8099)] = 295245, - [SMALL_STATE(8100)] = 295255, - [SMALL_STATE(8101)] = 295265, - [SMALL_STATE(8102)] = 295273, - [SMALL_STATE(8103)] = 295281, - [SMALL_STATE(8104)] = 295289, - [SMALL_STATE(8105)] = 295297, - [SMALL_STATE(8106)] = 295305, - [SMALL_STATE(8107)] = 295315, - [SMALL_STATE(8108)] = 295323, - [SMALL_STATE(8109)] = 295333, - [SMALL_STATE(8110)] = 295341, - [SMALL_STATE(8111)] = 295349, - [SMALL_STATE(8112)] = 295359, - [SMALL_STATE(8113)] = 295369, - [SMALL_STATE(8114)] = 295377, - [SMALL_STATE(8115)] = 295387, - [SMALL_STATE(8116)] = 295397, - [SMALL_STATE(8117)] = 295407, - [SMALL_STATE(8118)] = 295415, - [SMALL_STATE(8119)] = 295423, - [SMALL_STATE(8120)] = 295433, - [SMALL_STATE(8121)] = 295443, - [SMALL_STATE(8122)] = 295453, - [SMALL_STATE(8123)] = 295463, - [SMALL_STATE(8124)] = 295473, - [SMALL_STATE(8125)] = 295483, - [SMALL_STATE(8126)] = 295493, - [SMALL_STATE(8127)] = 295503, - [SMALL_STATE(8128)] = 295513, - [SMALL_STATE(8129)] = 295523, - [SMALL_STATE(8130)] = 295533, - [SMALL_STATE(8131)] = 295543, - [SMALL_STATE(8132)] = 295551, - [SMALL_STATE(8133)] = 295561, - [SMALL_STATE(8134)] = 295571, - [SMALL_STATE(8135)] = 295581, - [SMALL_STATE(8136)] = 295591, - [SMALL_STATE(8137)] = 295599, - [SMALL_STATE(8138)] = 295609, - [SMALL_STATE(8139)] = 295617, - [SMALL_STATE(8140)] = 295627, - [SMALL_STATE(8141)] = 295637, - [SMALL_STATE(8142)] = 295647, - [SMALL_STATE(8143)] = 295657, - [SMALL_STATE(8144)] = 295667, - [SMALL_STATE(8145)] = 295675, - [SMALL_STATE(8146)] = 295685, - [SMALL_STATE(8147)] = 295695, - [SMALL_STATE(8148)] = 295705, - [SMALL_STATE(8149)] = 295715, - [SMALL_STATE(8150)] = 295725, - [SMALL_STATE(8151)] = 295735, - [SMALL_STATE(8152)] = 295745, - [SMALL_STATE(8153)] = 295755, - [SMALL_STATE(8154)] = 295763, - [SMALL_STATE(8155)] = 295773, - [SMALL_STATE(8156)] = 295783, - [SMALL_STATE(8157)] = 295793, - [SMALL_STATE(8158)] = 295803, - [SMALL_STATE(8159)] = 295813, - [SMALL_STATE(8160)] = 295823, - [SMALL_STATE(8161)] = 295833, - [SMALL_STATE(8162)] = 295843, - [SMALL_STATE(8163)] = 295853, - [SMALL_STATE(8164)] = 295863, - [SMALL_STATE(8165)] = 295873, - [SMALL_STATE(8166)] = 295883, - [SMALL_STATE(8167)] = 295893, - [SMALL_STATE(8168)] = 295903, - [SMALL_STATE(8169)] = 295913, - [SMALL_STATE(8170)] = 295923, - [SMALL_STATE(8171)] = 295933, - [SMALL_STATE(8172)] = 295943, - [SMALL_STATE(8173)] = 295953, - [SMALL_STATE(8174)] = 295963, - [SMALL_STATE(8175)] = 295973, - [SMALL_STATE(8176)] = 295983, - [SMALL_STATE(8177)] = 295993, - [SMALL_STATE(8178)] = 296003, - [SMALL_STATE(8179)] = 296013, - [SMALL_STATE(8180)] = 296023, - [SMALL_STATE(8181)] = 296033, - [SMALL_STATE(8182)] = 296043, - [SMALL_STATE(8183)] = 296053, - [SMALL_STATE(8184)] = 296061, - [SMALL_STATE(8185)] = 296071, - [SMALL_STATE(8186)] = 296081, - [SMALL_STATE(8187)] = 296091, - [SMALL_STATE(8188)] = 296101, - [SMALL_STATE(8189)] = 296111, - [SMALL_STATE(8190)] = 296121, - [SMALL_STATE(8191)] = 296131, - [SMALL_STATE(8192)] = 296141, - [SMALL_STATE(8193)] = 296151, - [SMALL_STATE(8194)] = 296161, - [SMALL_STATE(8195)] = 296171, - [SMALL_STATE(8196)] = 296181, - [SMALL_STATE(8197)] = 296191, - [SMALL_STATE(8198)] = 296201, - [SMALL_STATE(8199)] = 296211, - [SMALL_STATE(8200)] = 296221, - [SMALL_STATE(8201)] = 296231, - [SMALL_STATE(8202)] = 296241, - [SMALL_STATE(8203)] = 296251, - [SMALL_STATE(8204)] = 296261, - [SMALL_STATE(8205)] = 296271, - [SMALL_STATE(8206)] = 296281, - [SMALL_STATE(8207)] = 296291, - [SMALL_STATE(8208)] = 296301, - [SMALL_STATE(8209)] = 296311, - [SMALL_STATE(8210)] = 296321, - [SMALL_STATE(8211)] = 296331, - [SMALL_STATE(8212)] = 296341, - [SMALL_STATE(8213)] = 296351, - [SMALL_STATE(8214)] = 296361, - [SMALL_STATE(8215)] = 296371, - [SMALL_STATE(8216)] = 296381, - [SMALL_STATE(8217)] = 296391, - [SMALL_STATE(8218)] = 296401, - [SMALL_STATE(8219)] = 296411, - [SMALL_STATE(8220)] = 296421, - [SMALL_STATE(8221)] = 296431, - [SMALL_STATE(8222)] = 296441, - [SMALL_STATE(8223)] = 296451, - [SMALL_STATE(8224)] = 296461, - [SMALL_STATE(8225)] = 296471, - [SMALL_STATE(8226)] = 296481, - [SMALL_STATE(8227)] = 296491, - [SMALL_STATE(8228)] = 296501, - [SMALL_STATE(8229)] = 296511, - [SMALL_STATE(8230)] = 296521, - [SMALL_STATE(8231)] = 296531, - [SMALL_STATE(8232)] = 296541, - [SMALL_STATE(8233)] = 296551, - [SMALL_STATE(8234)] = 296559, - [SMALL_STATE(8235)] = 296569, - [SMALL_STATE(8236)] = 296579, - [SMALL_STATE(8237)] = 296589, - [SMALL_STATE(8238)] = 296599, - [SMALL_STATE(8239)] = 296609, - [SMALL_STATE(8240)] = 296619, - [SMALL_STATE(8241)] = 296629, - [SMALL_STATE(8242)] = 296639, - [SMALL_STATE(8243)] = 296649, - [SMALL_STATE(8244)] = 296659, - [SMALL_STATE(8245)] = 296669, - [SMALL_STATE(8246)] = 296679, - [SMALL_STATE(8247)] = 296689, - [SMALL_STATE(8248)] = 296697, - [SMALL_STATE(8249)] = 296707, - [SMALL_STATE(8250)] = 296717, - [SMALL_STATE(8251)] = 296727, - [SMALL_STATE(8252)] = 296737, - [SMALL_STATE(8253)] = 296747, - [SMALL_STATE(8254)] = 296757, - [SMALL_STATE(8255)] = 296767, - [SMALL_STATE(8256)] = 296777, - [SMALL_STATE(8257)] = 296787, - [SMALL_STATE(8258)] = 296797, - [SMALL_STATE(8259)] = 296807, - [SMALL_STATE(8260)] = 296817, - [SMALL_STATE(8261)] = 296827, - [SMALL_STATE(8262)] = 296837, - [SMALL_STATE(8263)] = 296847, - [SMALL_STATE(8264)] = 296857, - [SMALL_STATE(8265)] = 296867, - [SMALL_STATE(8266)] = 296877, - [SMALL_STATE(8267)] = 296887, - [SMALL_STATE(8268)] = 296897, - [SMALL_STATE(8269)] = 296907, - [SMALL_STATE(8270)] = 296917, - [SMALL_STATE(8271)] = 296927, - [SMALL_STATE(8272)] = 296937, - [SMALL_STATE(8273)] = 296947, - [SMALL_STATE(8274)] = 296955, - [SMALL_STATE(8275)] = 296965, - [SMALL_STATE(8276)] = 296975, - [SMALL_STATE(8277)] = 296985, - [SMALL_STATE(8278)] = 296995, - [SMALL_STATE(8279)] = 297005, - [SMALL_STATE(8280)] = 297015, - [SMALL_STATE(8281)] = 297025, - [SMALL_STATE(8282)] = 297035, - [SMALL_STATE(8283)] = 297045, - [SMALL_STATE(8284)] = 297055, - [SMALL_STATE(8285)] = 297065, - [SMALL_STATE(8286)] = 297075, - [SMALL_STATE(8287)] = 297085, - [SMALL_STATE(8288)] = 297095, - [SMALL_STATE(8289)] = 297105, - [SMALL_STATE(8290)] = 297115, - [SMALL_STATE(8291)] = 297125, - [SMALL_STATE(8292)] = 297135, - [SMALL_STATE(8293)] = 297145, - [SMALL_STATE(8294)] = 297155, - [SMALL_STATE(8295)] = 297165, - [SMALL_STATE(8296)] = 297175, - [SMALL_STATE(8297)] = 297185, - [SMALL_STATE(8298)] = 297195, - [SMALL_STATE(8299)] = 297205, - [SMALL_STATE(8300)] = 297215, - [SMALL_STATE(8301)] = 297225, - [SMALL_STATE(8302)] = 297235, - [SMALL_STATE(8303)] = 297245, - [SMALL_STATE(8304)] = 297255, - [SMALL_STATE(8305)] = 297265, - [SMALL_STATE(8306)] = 297275, - [SMALL_STATE(8307)] = 297283, - [SMALL_STATE(8308)] = 297293, - [SMALL_STATE(8309)] = 297303, - [SMALL_STATE(8310)] = 297313, - [SMALL_STATE(8311)] = 297323, - [SMALL_STATE(8312)] = 297333, - [SMALL_STATE(8313)] = 297343, - [SMALL_STATE(8314)] = 297353, - [SMALL_STATE(8315)] = 297363, - [SMALL_STATE(8316)] = 297373, - [SMALL_STATE(8317)] = 297383, - [SMALL_STATE(8318)] = 297393, - [SMALL_STATE(8319)] = 297403, - [SMALL_STATE(8320)] = 297413, - [SMALL_STATE(8321)] = 297423, - [SMALL_STATE(8322)] = 297433, - [SMALL_STATE(8323)] = 297443, - [SMALL_STATE(8324)] = 297453, - [SMALL_STATE(8325)] = 297463, - [SMALL_STATE(8326)] = 297473, - [SMALL_STATE(8327)] = 297483, - [SMALL_STATE(8328)] = 297493, - [SMALL_STATE(8329)] = 297503, - [SMALL_STATE(8330)] = 297513, - [SMALL_STATE(8331)] = 297523, - [SMALL_STATE(8332)] = 297533, - [SMALL_STATE(8333)] = 297543, - [SMALL_STATE(8334)] = 297553, - [SMALL_STATE(8335)] = 297563, - [SMALL_STATE(8336)] = 297573, - [SMALL_STATE(8337)] = 297583, - [SMALL_STATE(8338)] = 297593, - [SMALL_STATE(8339)] = 297603, - [SMALL_STATE(8340)] = 297613, - [SMALL_STATE(8341)] = 297623, - [SMALL_STATE(8342)] = 297633, - [SMALL_STATE(8343)] = 297643, - [SMALL_STATE(8344)] = 297653, - [SMALL_STATE(8345)] = 297663, - [SMALL_STATE(8346)] = 297673, - [SMALL_STATE(8347)] = 297683, - [SMALL_STATE(8348)] = 297693, - [SMALL_STATE(8349)] = 297703, - [SMALL_STATE(8350)] = 297713, - [SMALL_STATE(8351)] = 297723, - [SMALL_STATE(8352)] = 297733, - [SMALL_STATE(8353)] = 297743, - [SMALL_STATE(8354)] = 297753, - [SMALL_STATE(8355)] = 297763, - [SMALL_STATE(8356)] = 297773, - [SMALL_STATE(8357)] = 297783, - [SMALL_STATE(8358)] = 297793, - [SMALL_STATE(8359)] = 297803, - [SMALL_STATE(8360)] = 297813, - [SMALL_STATE(8361)] = 297823, - [SMALL_STATE(8362)] = 297833, - [SMALL_STATE(8363)] = 297843, - [SMALL_STATE(8364)] = 297853, - [SMALL_STATE(8365)] = 297863, - [SMALL_STATE(8366)] = 297873, - [SMALL_STATE(8367)] = 297883, - [SMALL_STATE(8368)] = 297893, - [SMALL_STATE(8369)] = 297901, - [SMALL_STATE(8370)] = 297911, - [SMALL_STATE(8371)] = 297921, - [SMALL_STATE(8372)] = 297931, - [SMALL_STATE(8373)] = 297941, - [SMALL_STATE(8374)] = 297951, - [SMALL_STATE(8375)] = 297961, - [SMALL_STATE(8376)] = 297971, - [SMALL_STATE(8377)] = 297981, - [SMALL_STATE(8378)] = 297991, - [SMALL_STATE(8379)] = 298001, - [SMALL_STATE(8380)] = 298011, - [SMALL_STATE(8381)] = 298021, - [SMALL_STATE(8382)] = 298031, - [SMALL_STATE(8383)] = 298041, - [SMALL_STATE(8384)] = 298051, - [SMALL_STATE(8385)] = 298061, - [SMALL_STATE(8386)] = 298071, - [SMALL_STATE(8387)] = 298081, - [SMALL_STATE(8388)] = 298091, - [SMALL_STATE(8389)] = 298101, - [SMALL_STATE(8390)] = 298111, - [SMALL_STATE(8391)] = 298121, - [SMALL_STATE(8392)] = 298131, - [SMALL_STATE(8393)] = 298141, - [SMALL_STATE(8394)] = 298151, - [SMALL_STATE(8395)] = 298161, - [SMALL_STATE(8396)] = 298171, - [SMALL_STATE(8397)] = 298181, - [SMALL_STATE(8398)] = 298191, - [SMALL_STATE(8399)] = 298201, - [SMALL_STATE(8400)] = 298211, - [SMALL_STATE(8401)] = 298221, - [SMALL_STATE(8402)] = 298231, - [SMALL_STATE(8403)] = 298239, - [SMALL_STATE(8404)] = 298249, - [SMALL_STATE(8405)] = 298259, - [SMALL_STATE(8406)] = 298269, - [SMALL_STATE(8407)] = 298279, - [SMALL_STATE(8408)] = 298289, - [SMALL_STATE(8409)] = 298299, - [SMALL_STATE(8410)] = 298309, - [SMALL_STATE(8411)] = 298319, - [SMALL_STATE(8412)] = 298329, - [SMALL_STATE(8413)] = 298339, - [SMALL_STATE(8414)] = 298349, - [SMALL_STATE(8415)] = 298359, - [SMALL_STATE(8416)] = 298366, - [SMALL_STATE(8417)] = 298373, - [SMALL_STATE(8418)] = 298380, - [SMALL_STATE(8419)] = 298387, - [SMALL_STATE(8420)] = 298394, - [SMALL_STATE(8421)] = 298401, - [SMALL_STATE(8422)] = 298408, - [SMALL_STATE(8423)] = 298415, - [SMALL_STATE(8424)] = 298422, - [SMALL_STATE(8425)] = 298429, - [SMALL_STATE(8426)] = 298436, - [SMALL_STATE(8427)] = 298443, - [SMALL_STATE(8428)] = 298450, - [SMALL_STATE(8429)] = 298457, - [SMALL_STATE(8430)] = 298464, - [SMALL_STATE(8431)] = 298471, - [SMALL_STATE(8432)] = 298478, - [SMALL_STATE(8433)] = 298485, - [SMALL_STATE(8434)] = 298492, - [SMALL_STATE(8435)] = 298499, - [SMALL_STATE(8436)] = 298506, - [SMALL_STATE(8437)] = 298513, - [SMALL_STATE(8438)] = 298520, - [SMALL_STATE(8439)] = 298527, - [SMALL_STATE(8440)] = 298534, - [SMALL_STATE(8441)] = 298541, - [SMALL_STATE(8442)] = 298548, - [SMALL_STATE(8443)] = 298555, - [SMALL_STATE(8444)] = 298562, - [SMALL_STATE(8445)] = 298569, - [SMALL_STATE(8446)] = 298576, - [SMALL_STATE(8447)] = 298583, - [SMALL_STATE(8448)] = 298590, - [SMALL_STATE(8449)] = 298597, - [SMALL_STATE(8450)] = 298604, - [SMALL_STATE(8451)] = 298611, - [SMALL_STATE(8452)] = 298618, - [SMALL_STATE(8453)] = 298625, - [SMALL_STATE(8454)] = 298632, - [SMALL_STATE(8455)] = 298639, - [SMALL_STATE(8456)] = 298646, - [SMALL_STATE(8457)] = 298653, - [SMALL_STATE(8458)] = 298660, - [SMALL_STATE(8459)] = 298667, - [SMALL_STATE(8460)] = 298674, - [SMALL_STATE(8461)] = 298681, - [SMALL_STATE(8462)] = 298688, - [SMALL_STATE(8463)] = 298695, - [SMALL_STATE(8464)] = 298702, - [SMALL_STATE(8465)] = 298709, - [SMALL_STATE(8466)] = 298716, - [SMALL_STATE(8467)] = 298723, - [SMALL_STATE(8468)] = 298730, - [SMALL_STATE(8469)] = 298737, - [SMALL_STATE(8470)] = 298744, - [SMALL_STATE(8471)] = 298751, - [SMALL_STATE(8472)] = 298758, - [SMALL_STATE(8473)] = 298765, - [SMALL_STATE(8474)] = 298772, - [SMALL_STATE(8475)] = 298779, - [SMALL_STATE(8476)] = 298786, - [SMALL_STATE(8477)] = 298793, - [SMALL_STATE(8478)] = 298800, - [SMALL_STATE(8479)] = 298807, - [SMALL_STATE(8480)] = 298814, - [SMALL_STATE(8481)] = 298821, - [SMALL_STATE(8482)] = 298828, - [SMALL_STATE(8483)] = 298835, - [SMALL_STATE(8484)] = 298842, - [SMALL_STATE(8485)] = 298849, - [SMALL_STATE(8486)] = 298856, - [SMALL_STATE(8487)] = 298863, - [SMALL_STATE(8488)] = 298870, - [SMALL_STATE(8489)] = 298877, - [SMALL_STATE(8490)] = 298884, - [SMALL_STATE(8491)] = 298891, - [SMALL_STATE(8492)] = 298898, - [SMALL_STATE(8493)] = 298905, - [SMALL_STATE(8494)] = 298912, - [SMALL_STATE(8495)] = 298919, - [SMALL_STATE(8496)] = 298926, - [SMALL_STATE(8497)] = 298933, - [SMALL_STATE(8498)] = 298940, - [SMALL_STATE(8499)] = 298947, - [SMALL_STATE(8500)] = 298954, - [SMALL_STATE(8501)] = 298961, - [SMALL_STATE(8502)] = 298968, - [SMALL_STATE(8503)] = 298975, - [SMALL_STATE(8504)] = 298982, - [SMALL_STATE(8505)] = 298989, - [SMALL_STATE(8506)] = 298996, - [SMALL_STATE(8507)] = 299003, - [SMALL_STATE(8508)] = 299010, - [SMALL_STATE(8509)] = 299017, - [SMALL_STATE(8510)] = 299024, - [SMALL_STATE(8511)] = 299031, - [SMALL_STATE(8512)] = 299038, - [SMALL_STATE(8513)] = 299045, - [SMALL_STATE(8514)] = 299052, - [SMALL_STATE(8515)] = 299059, - [SMALL_STATE(8516)] = 299066, - [SMALL_STATE(8517)] = 299073, - [SMALL_STATE(8518)] = 299080, - [SMALL_STATE(8519)] = 299087, - [SMALL_STATE(8520)] = 299094, - [SMALL_STATE(8521)] = 299101, - [SMALL_STATE(8522)] = 299108, - [SMALL_STATE(8523)] = 299115, - [SMALL_STATE(8524)] = 299122, - [SMALL_STATE(8525)] = 299129, - [SMALL_STATE(8526)] = 299136, - [SMALL_STATE(8527)] = 299143, - [SMALL_STATE(8528)] = 299150, - [SMALL_STATE(8529)] = 299157, - [SMALL_STATE(8530)] = 299164, - [SMALL_STATE(8531)] = 299171, - [SMALL_STATE(8532)] = 299178, - [SMALL_STATE(8533)] = 299185, - [SMALL_STATE(8534)] = 299192, - [SMALL_STATE(8535)] = 299199, - [SMALL_STATE(8536)] = 299206, - [SMALL_STATE(8537)] = 299213, - [SMALL_STATE(8538)] = 299220, - [SMALL_STATE(8539)] = 299227, - [SMALL_STATE(8540)] = 299234, - [SMALL_STATE(8541)] = 299241, - [SMALL_STATE(8542)] = 299248, - [SMALL_STATE(8543)] = 299255, - [SMALL_STATE(8544)] = 299262, - [SMALL_STATE(8545)] = 299269, - [SMALL_STATE(8546)] = 299276, - [SMALL_STATE(8547)] = 299283, - [SMALL_STATE(8548)] = 299290, - [SMALL_STATE(8549)] = 299297, - [SMALL_STATE(8550)] = 299304, - [SMALL_STATE(8551)] = 299311, - [SMALL_STATE(8552)] = 299318, - [SMALL_STATE(8553)] = 299325, - [SMALL_STATE(8554)] = 299332, - [SMALL_STATE(8555)] = 299339, - [SMALL_STATE(8556)] = 299346, - [SMALL_STATE(8557)] = 299353, - [SMALL_STATE(8558)] = 299360, - [SMALL_STATE(8559)] = 299367, - [SMALL_STATE(8560)] = 299374, - [SMALL_STATE(8561)] = 299381, - [SMALL_STATE(8562)] = 299388, - [SMALL_STATE(8563)] = 299395, - [SMALL_STATE(8564)] = 299402, - [SMALL_STATE(8565)] = 299409, - [SMALL_STATE(8566)] = 299416, - [SMALL_STATE(8567)] = 299423, - [SMALL_STATE(8568)] = 299430, - [SMALL_STATE(8569)] = 299437, - [SMALL_STATE(8570)] = 299444, - [SMALL_STATE(8571)] = 299451, - [SMALL_STATE(8572)] = 299458, - [SMALL_STATE(8573)] = 299465, - [SMALL_STATE(8574)] = 299472, - [SMALL_STATE(8575)] = 299479, - [SMALL_STATE(8576)] = 299486, - [SMALL_STATE(8577)] = 299493, - [SMALL_STATE(8578)] = 299500, - [SMALL_STATE(8579)] = 299507, - [SMALL_STATE(8580)] = 299514, - [SMALL_STATE(8581)] = 299521, - [SMALL_STATE(8582)] = 299528, - [SMALL_STATE(8583)] = 299535, - [SMALL_STATE(8584)] = 299542, - [SMALL_STATE(8585)] = 299549, - [SMALL_STATE(8586)] = 299556, - [SMALL_STATE(8587)] = 299563, - [SMALL_STATE(8588)] = 299570, - [SMALL_STATE(8589)] = 299577, - [SMALL_STATE(8590)] = 299584, - [SMALL_STATE(8591)] = 299591, - [SMALL_STATE(8592)] = 299598, - [SMALL_STATE(8593)] = 299605, - [SMALL_STATE(8594)] = 299612, - [SMALL_STATE(8595)] = 299619, - [SMALL_STATE(8596)] = 299626, - [SMALL_STATE(8597)] = 299633, - [SMALL_STATE(8598)] = 299640, - [SMALL_STATE(8599)] = 299647, - [SMALL_STATE(8600)] = 299654, - [SMALL_STATE(8601)] = 299661, - [SMALL_STATE(8602)] = 299668, - [SMALL_STATE(8603)] = 299675, - [SMALL_STATE(8604)] = 299682, - [SMALL_STATE(8605)] = 299689, - [SMALL_STATE(8606)] = 299696, - [SMALL_STATE(8607)] = 299703, - [SMALL_STATE(8608)] = 299710, - [SMALL_STATE(8609)] = 299717, - [SMALL_STATE(8610)] = 299724, - [SMALL_STATE(8611)] = 299731, - [SMALL_STATE(8612)] = 299738, - [SMALL_STATE(8613)] = 299745, - [SMALL_STATE(8614)] = 299752, - [SMALL_STATE(8615)] = 299759, - [SMALL_STATE(8616)] = 299766, - [SMALL_STATE(8617)] = 299773, - [SMALL_STATE(8618)] = 299780, - [SMALL_STATE(8619)] = 299787, - [SMALL_STATE(8620)] = 299794, - [SMALL_STATE(8621)] = 299801, - [SMALL_STATE(8622)] = 299808, - [SMALL_STATE(8623)] = 299815, - [SMALL_STATE(8624)] = 299822, - [SMALL_STATE(8625)] = 299829, - [SMALL_STATE(8626)] = 299836, - [SMALL_STATE(8627)] = 299843, - [SMALL_STATE(8628)] = 299850, - [SMALL_STATE(8629)] = 299857, - [SMALL_STATE(8630)] = 299864, - [SMALL_STATE(8631)] = 299871, - [SMALL_STATE(8632)] = 299878, - [SMALL_STATE(8633)] = 299885, - [SMALL_STATE(8634)] = 299892, - [SMALL_STATE(8635)] = 299899, - [SMALL_STATE(8636)] = 299906, - [SMALL_STATE(8637)] = 299913, - [SMALL_STATE(8638)] = 299920, - [SMALL_STATE(8639)] = 299927, - [SMALL_STATE(8640)] = 299934, - [SMALL_STATE(8641)] = 299941, - [SMALL_STATE(8642)] = 299948, - [SMALL_STATE(8643)] = 299955, - [SMALL_STATE(8644)] = 299962, - [SMALL_STATE(8645)] = 299969, - [SMALL_STATE(8646)] = 299976, - [SMALL_STATE(8647)] = 299983, - [SMALL_STATE(8648)] = 299990, - [SMALL_STATE(8649)] = 299997, - [SMALL_STATE(8650)] = 300004, - [SMALL_STATE(8651)] = 300011, - [SMALL_STATE(8652)] = 300018, - [SMALL_STATE(8653)] = 300025, - [SMALL_STATE(8654)] = 300032, - [SMALL_STATE(8655)] = 300039, - [SMALL_STATE(8656)] = 300046, - [SMALL_STATE(8657)] = 300053, - [SMALL_STATE(8658)] = 300060, - [SMALL_STATE(8659)] = 300067, - [SMALL_STATE(8660)] = 300074, - [SMALL_STATE(8661)] = 300081, - [SMALL_STATE(8662)] = 300088, - [SMALL_STATE(8663)] = 300095, - [SMALL_STATE(8664)] = 300102, - [SMALL_STATE(8665)] = 300109, - [SMALL_STATE(8666)] = 300116, - [SMALL_STATE(8667)] = 300123, - [SMALL_STATE(8668)] = 300130, - [SMALL_STATE(8669)] = 300137, - [SMALL_STATE(8670)] = 300144, - [SMALL_STATE(8671)] = 300151, - [SMALL_STATE(8672)] = 300158, - [SMALL_STATE(8673)] = 300165, - [SMALL_STATE(8674)] = 300172, - [SMALL_STATE(8675)] = 300179, - [SMALL_STATE(8676)] = 300186, - [SMALL_STATE(8677)] = 300193, - [SMALL_STATE(8678)] = 300200, - [SMALL_STATE(8679)] = 300207, - [SMALL_STATE(8680)] = 300214, - [SMALL_STATE(8681)] = 300221, - [SMALL_STATE(8682)] = 300228, - [SMALL_STATE(8683)] = 300235, - [SMALL_STATE(8684)] = 300242, - [SMALL_STATE(8685)] = 300249, - [SMALL_STATE(8686)] = 300256, - [SMALL_STATE(8687)] = 300263, - [SMALL_STATE(8688)] = 300270, - [SMALL_STATE(8689)] = 300277, - [SMALL_STATE(8690)] = 300284, - [SMALL_STATE(8691)] = 300291, - [SMALL_STATE(8692)] = 300298, - [SMALL_STATE(8693)] = 300305, - [SMALL_STATE(8694)] = 300312, - [SMALL_STATE(8695)] = 300319, - [SMALL_STATE(8696)] = 300326, - [SMALL_STATE(8697)] = 300333, - [SMALL_STATE(8698)] = 300340, - [SMALL_STATE(8699)] = 300347, - [SMALL_STATE(8700)] = 300354, - [SMALL_STATE(8701)] = 300361, - [SMALL_STATE(8702)] = 300368, - [SMALL_STATE(8703)] = 300375, - [SMALL_STATE(8704)] = 300382, - [SMALL_STATE(8705)] = 300389, - [SMALL_STATE(8706)] = 300396, - [SMALL_STATE(8707)] = 300403, - [SMALL_STATE(8708)] = 300410, - [SMALL_STATE(8709)] = 300417, - [SMALL_STATE(8710)] = 300424, - [SMALL_STATE(8711)] = 300431, - [SMALL_STATE(8712)] = 300438, - [SMALL_STATE(8713)] = 300445, - [SMALL_STATE(8714)] = 300452, - [SMALL_STATE(8715)] = 300459, - [SMALL_STATE(8716)] = 300466, - [SMALL_STATE(8717)] = 300473, - [SMALL_STATE(8718)] = 300480, - [SMALL_STATE(8719)] = 300487, - [SMALL_STATE(8720)] = 300494, - [SMALL_STATE(8721)] = 300501, - [SMALL_STATE(8722)] = 300508, - [SMALL_STATE(8723)] = 300515, - [SMALL_STATE(8724)] = 300522, - [SMALL_STATE(8725)] = 300529, - [SMALL_STATE(8726)] = 300536, - [SMALL_STATE(8727)] = 300543, - [SMALL_STATE(8728)] = 300550, - [SMALL_STATE(8729)] = 300557, - [SMALL_STATE(8730)] = 300564, - [SMALL_STATE(8731)] = 300571, - [SMALL_STATE(8732)] = 300578, - [SMALL_STATE(8733)] = 300585, - [SMALL_STATE(8734)] = 300592, - [SMALL_STATE(8735)] = 300599, - [SMALL_STATE(8736)] = 300606, - [SMALL_STATE(8737)] = 300613, - [SMALL_STATE(8738)] = 300620, - [SMALL_STATE(8739)] = 300627, - [SMALL_STATE(8740)] = 300634, - [SMALL_STATE(8741)] = 300641, - [SMALL_STATE(8742)] = 300648, - [SMALL_STATE(8743)] = 300655, - [SMALL_STATE(8744)] = 300662, - [SMALL_STATE(8745)] = 300669, - [SMALL_STATE(8746)] = 300676, - [SMALL_STATE(8747)] = 300683, - [SMALL_STATE(8748)] = 300690, - [SMALL_STATE(8749)] = 300697, - [SMALL_STATE(8750)] = 300704, - [SMALL_STATE(8751)] = 300711, - [SMALL_STATE(8752)] = 300718, - [SMALL_STATE(8753)] = 300725, - [SMALL_STATE(8754)] = 300732, - [SMALL_STATE(8755)] = 300739, - [SMALL_STATE(8756)] = 300746, - [SMALL_STATE(8757)] = 300753, - [SMALL_STATE(8758)] = 300760, - [SMALL_STATE(8759)] = 300767, - [SMALL_STATE(8760)] = 300774, - [SMALL_STATE(8761)] = 300781, - [SMALL_STATE(8762)] = 300788, - [SMALL_STATE(8763)] = 300795, - [SMALL_STATE(8764)] = 300802, - [SMALL_STATE(8765)] = 300809, - [SMALL_STATE(8766)] = 300816, - [SMALL_STATE(8767)] = 300823, - [SMALL_STATE(8768)] = 300830, - [SMALL_STATE(8769)] = 300837, - [SMALL_STATE(8770)] = 300844, - [SMALL_STATE(8771)] = 300851, - [SMALL_STATE(8772)] = 300858, - [SMALL_STATE(8773)] = 300865, - [SMALL_STATE(8774)] = 300872, - [SMALL_STATE(8775)] = 300879, - [SMALL_STATE(8776)] = 300886, - [SMALL_STATE(8777)] = 300893, - [SMALL_STATE(8778)] = 300900, - [SMALL_STATE(8779)] = 300907, - [SMALL_STATE(8780)] = 300914, - [SMALL_STATE(8781)] = 300921, - [SMALL_STATE(8782)] = 300928, - [SMALL_STATE(8783)] = 300935, - [SMALL_STATE(8784)] = 300942, - [SMALL_STATE(8785)] = 300949, - [SMALL_STATE(8786)] = 300956, - [SMALL_STATE(8787)] = 300963, - [SMALL_STATE(8788)] = 300970, - [SMALL_STATE(8789)] = 300977, - [SMALL_STATE(8790)] = 300984, - [SMALL_STATE(8791)] = 300991, - [SMALL_STATE(8792)] = 300998, - [SMALL_STATE(8793)] = 301005, - [SMALL_STATE(8794)] = 301012, - [SMALL_STATE(8795)] = 301019, - [SMALL_STATE(8796)] = 301026, - [SMALL_STATE(8797)] = 301033, - [SMALL_STATE(8798)] = 301040, - [SMALL_STATE(8799)] = 301047, - [SMALL_STATE(8800)] = 301054, - [SMALL_STATE(8801)] = 301061, - [SMALL_STATE(8802)] = 301068, - [SMALL_STATE(8803)] = 301075, - [SMALL_STATE(8804)] = 301082, - [SMALL_STATE(8805)] = 301089, - [SMALL_STATE(8806)] = 301096, - [SMALL_STATE(8807)] = 301103, - [SMALL_STATE(8808)] = 301110, - [SMALL_STATE(8809)] = 301117, - [SMALL_STATE(8810)] = 301124, - [SMALL_STATE(8811)] = 301131, - [SMALL_STATE(8812)] = 301138, - [SMALL_STATE(8813)] = 301145, - [SMALL_STATE(8814)] = 301152, - [SMALL_STATE(8815)] = 301159, - [SMALL_STATE(8816)] = 301166, - [SMALL_STATE(8817)] = 301173, - [SMALL_STATE(8818)] = 301180, - [SMALL_STATE(8819)] = 301187, - [SMALL_STATE(8820)] = 301194, - [SMALL_STATE(8821)] = 301201, - [SMALL_STATE(8822)] = 301208, - [SMALL_STATE(8823)] = 301215, - [SMALL_STATE(8824)] = 301222, - [SMALL_STATE(8825)] = 301229, - [SMALL_STATE(8826)] = 301236, - [SMALL_STATE(8827)] = 301243, - [SMALL_STATE(8828)] = 301250, - [SMALL_STATE(8829)] = 301257, - [SMALL_STATE(8830)] = 301264, - [SMALL_STATE(8831)] = 301271, - [SMALL_STATE(8832)] = 301278, - [SMALL_STATE(8833)] = 301285, - [SMALL_STATE(8834)] = 301292, - [SMALL_STATE(8835)] = 301299, - [SMALL_STATE(8836)] = 301306, - [SMALL_STATE(8837)] = 301313, - [SMALL_STATE(8838)] = 301320, - [SMALL_STATE(8839)] = 301327, - [SMALL_STATE(8840)] = 301334, - [SMALL_STATE(8841)] = 301341, - [SMALL_STATE(8842)] = 301348, - [SMALL_STATE(8843)] = 301355, - [SMALL_STATE(8844)] = 301362, - [SMALL_STATE(8845)] = 301369, - [SMALL_STATE(8846)] = 301376, - [SMALL_STATE(8847)] = 301383, - [SMALL_STATE(8848)] = 301390, - [SMALL_STATE(8849)] = 301397, - [SMALL_STATE(8850)] = 301404, - [SMALL_STATE(8851)] = 301411, - [SMALL_STATE(8852)] = 301418, - [SMALL_STATE(8853)] = 301425, - [SMALL_STATE(8854)] = 301432, - [SMALL_STATE(8855)] = 301439, - [SMALL_STATE(8856)] = 301446, - [SMALL_STATE(8857)] = 301453, - [SMALL_STATE(8858)] = 301460, - [SMALL_STATE(8859)] = 301467, - [SMALL_STATE(8860)] = 301474, - [SMALL_STATE(8861)] = 301481, - [SMALL_STATE(8862)] = 301488, - [SMALL_STATE(8863)] = 301495, - [SMALL_STATE(8864)] = 301502, - [SMALL_STATE(8865)] = 301509, - [SMALL_STATE(8866)] = 301516, - [SMALL_STATE(8867)] = 301523, - [SMALL_STATE(8868)] = 301530, - [SMALL_STATE(8869)] = 301537, - [SMALL_STATE(8870)] = 301544, - [SMALL_STATE(8871)] = 301551, - [SMALL_STATE(8872)] = 301558, - [SMALL_STATE(8873)] = 301565, - [SMALL_STATE(8874)] = 301572, - [SMALL_STATE(8875)] = 301579, - [SMALL_STATE(8876)] = 301586, - [SMALL_STATE(8877)] = 301593, - [SMALL_STATE(8878)] = 301600, - [SMALL_STATE(8879)] = 301607, - [SMALL_STATE(8880)] = 301614, - [SMALL_STATE(8881)] = 301621, - [SMALL_STATE(8882)] = 301628, - [SMALL_STATE(8883)] = 301635, - [SMALL_STATE(8884)] = 301642, - [SMALL_STATE(8885)] = 301649, - [SMALL_STATE(8886)] = 301656, - [SMALL_STATE(8887)] = 301663, - [SMALL_STATE(8888)] = 301670, - [SMALL_STATE(8889)] = 301677, - [SMALL_STATE(8890)] = 301684, - [SMALL_STATE(8891)] = 301691, - [SMALL_STATE(8892)] = 301698, - [SMALL_STATE(8893)] = 301705, - [SMALL_STATE(8894)] = 301712, - [SMALL_STATE(8895)] = 301719, - [SMALL_STATE(8896)] = 301726, - [SMALL_STATE(8897)] = 301733, - [SMALL_STATE(8898)] = 301740, - [SMALL_STATE(8899)] = 301747, - [SMALL_STATE(8900)] = 301754, - [SMALL_STATE(8901)] = 301761, - [SMALL_STATE(8902)] = 301768, - [SMALL_STATE(8903)] = 301775, - [SMALL_STATE(8904)] = 301782, - [SMALL_STATE(8905)] = 301789, - [SMALL_STATE(8906)] = 301796, - [SMALL_STATE(8907)] = 301803, - [SMALL_STATE(8908)] = 301810, - [SMALL_STATE(8909)] = 301817, - [SMALL_STATE(8910)] = 301824, - [SMALL_STATE(8911)] = 301831, - [SMALL_STATE(8912)] = 301838, - [SMALL_STATE(8913)] = 301845, - [SMALL_STATE(8914)] = 301852, - [SMALL_STATE(8915)] = 301859, - [SMALL_STATE(8916)] = 301866, - [SMALL_STATE(8917)] = 301873, - [SMALL_STATE(8918)] = 301880, - [SMALL_STATE(8919)] = 301887, - [SMALL_STATE(8920)] = 301894, - [SMALL_STATE(8921)] = 301901, - [SMALL_STATE(8922)] = 301908, - [SMALL_STATE(8923)] = 301915, - [SMALL_STATE(8924)] = 301922, - [SMALL_STATE(8925)] = 301929, - [SMALL_STATE(8926)] = 301936, - [SMALL_STATE(8927)] = 301943, - [SMALL_STATE(8928)] = 301950, - [SMALL_STATE(8929)] = 301957, - [SMALL_STATE(8930)] = 301964, - [SMALL_STATE(8931)] = 301971, - [SMALL_STATE(8932)] = 301978, - [SMALL_STATE(8933)] = 301985, - [SMALL_STATE(8934)] = 301992, - [SMALL_STATE(8935)] = 301999, - [SMALL_STATE(8936)] = 302006, - [SMALL_STATE(8937)] = 302013, - [SMALL_STATE(8938)] = 302020, - [SMALL_STATE(8939)] = 302027, - [SMALL_STATE(8940)] = 302034, - [SMALL_STATE(8941)] = 302041, - [SMALL_STATE(8942)] = 302048, - [SMALL_STATE(8943)] = 302055, - [SMALL_STATE(8944)] = 302062, - [SMALL_STATE(8945)] = 302069, - [SMALL_STATE(8946)] = 302076, - [SMALL_STATE(8947)] = 302083, - [SMALL_STATE(8948)] = 302090, - [SMALL_STATE(8949)] = 302097, - [SMALL_STATE(8950)] = 302104, - [SMALL_STATE(8951)] = 302111, - [SMALL_STATE(8952)] = 302118, - [SMALL_STATE(8953)] = 302125, - [SMALL_STATE(8954)] = 302132, - [SMALL_STATE(8955)] = 302139, - [SMALL_STATE(8956)] = 302146, - [SMALL_STATE(8957)] = 302153, - [SMALL_STATE(8958)] = 302160, - [SMALL_STATE(8959)] = 302167, - [SMALL_STATE(8960)] = 302174, - [SMALL_STATE(8961)] = 302181, - [SMALL_STATE(8962)] = 302188, - [SMALL_STATE(8963)] = 302195, - [SMALL_STATE(8964)] = 302202, - [SMALL_STATE(8965)] = 302209, - [SMALL_STATE(8966)] = 302216, - [SMALL_STATE(8967)] = 302223, - [SMALL_STATE(8968)] = 302230, - [SMALL_STATE(8969)] = 302237, - [SMALL_STATE(8970)] = 302244, - [SMALL_STATE(8971)] = 302251, - [SMALL_STATE(8972)] = 302258, - [SMALL_STATE(8973)] = 302265, - [SMALL_STATE(8974)] = 302272, - [SMALL_STATE(8975)] = 302279, - [SMALL_STATE(8976)] = 302286, - [SMALL_STATE(8977)] = 302293, - [SMALL_STATE(8978)] = 302300, - [SMALL_STATE(8979)] = 302307, - [SMALL_STATE(8980)] = 302314, - [SMALL_STATE(8981)] = 302321, - [SMALL_STATE(8982)] = 302328, - [SMALL_STATE(8983)] = 302335, - [SMALL_STATE(8984)] = 302342, - [SMALL_STATE(8985)] = 302349, - [SMALL_STATE(8986)] = 302356, - [SMALL_STATE(8987)] = 302363, - [SMALL_STATE(8988)] = 302370, - [SMALL_STATE(8989)] = 302377, - [SMALL_STATE(8990)] = 302384, - [SMALL_STATE(8991)] = 302391, - [SMALL_STATE(8992)] = 302398, - [SMALL_STATE(8993)] = 302405, - [SMALL_STATE(8994)] = 302412, - [SMALL_STATE(8995)] = 302419, - [SMALL_STATE(8996)] = 302426, - [SMALL_STATE(8997)] = 302433, - [SMALL_STATE(8998)] = 302440, - [SMALL_STATE(8999)] = 302447, - [SMALL_STATE(9000)] = 302454, - [SMALL_STATE(9001)] = 302461, - [SMALL_STATE(9002)] = 302468, - [SMALL_STATE(9003)] = 302475, - [SMALL_STATE(9004)] = 302482, - [SMALL_STATE(9005)] = 302489, - [SMALL_STATE(9006)] = 302496, - [SMALL_STATE(9007)] = 302503, - [SMALL_STATE(9008)] = 302510, - [SMALL_STATE(9009)] = 302517, - [SMALL_STATE(9010)] = 302524, - [SMALL_STATE(9011)] = 302531, - [SMALL_STATE(9012)] = 302538, - [SMALL_STATE(9013)] = 302545, - [SMALL_STATE(9014)] = 302552, - [SMALL_STATE(9015)] = 302559, - [SMALL_STATE(9016)] = 302566, - [SMALL_STATE(9017)] = 302573, - [SMALL_STATE(9018)] = 302580, - [SMALL_STATE(9019)] = 302587, - [SMALL_STATE(9020)] = 302594, - [SMALL_STATE(9021)] = 302601, - [SMALL_STATE(9022)] = 302608, - [SMALL_STATE(9023)] = 302615, - [SMALL_STATE(9024)] = 302622, - [SMALL_STATE(9025)] = 302629, - [SMALL_STATE(9026)] = 302636, - [SMALL_STATE(9027)] = 302643, - [SMALL_STATE(9028)] = 302650, - [SMALL_STATE(9029)] = 302657, - [SMALL_STATE(9030)] = 302664, - [SMALL_STATE(9031)] = 302671, - [SMALL_STATE(9032)] = 302678, - [SMALL_STATE(9033)] = 302685, - [SMALL_STATE(9034)] = 302692, - [SMALL_STATE(9035)] = 302699, - [SMALL_STATE(9036)] = 302706, - [SMALL_STATE(9037)] = 302713, - [SMALL_STATE(9038)] = 302720, - [SMALL_STATE(9039)] = 302727, - [SMALL_STATE(9040)] = 302734, - [SMALL_STATE(9041)] = 302741, - [SMALL_STATE(9042)] = 302748, - [SMALL_STATE(9043)] = 302755, - [SMALL_STATE(9044)] = 302762, - [SMALL_STATE(9045)] = 302769, - [SMALL_STATE(9046)] = 302776, - [SMALL_STATE(9047)] = 302783, - [SMALL_STATE(9048)] = 302790, - [SMALL_STATE(9049)] = 302797, - [SMALL_STATE(9050)] = 302804, - [SMALL_STATE(9051)] = 302811, - [SMALL_STATE(9052)] = 302818, - [SMALL_STATE(9053)] = 302825, - [SMALL_STATE(9054)] = 302832, - [SMALL_STATE(9055)] = 302839, - [SMALL_STATE(9056)] = 302846, - [SMALL_STATE(9057)] = 302853, - [SMALL_STATE(9058)] = 302860, - [SMALL_STATE(9059)] = 302867, - [SMALL_STATE(9060)] = 302874, - [SMALL_STATE(9061)] = 302881, - [SMALL_STATE(9062)] = 302888, - [SMALL_STATE(9063)] = 302895, - [SMALL_STATE(9064)] = 302902, - [SMALL_STATE(9065)] = 302909, - [SMALL_STATE(9066)] = 302916, - [SMALL_STATE(9067)] = 302923, - [SMALL_STATE(9068)] = 302930, - [SMALL_STATE(9069)] = 302937, - [SMALL_STATE(9070)] = 302944, - [SMALL_STATE(9071)] = 302951, - [SMALL_STATE(9072)] = 302958, - [SMALL_STATE(9073)] = 302965, - [SMALL_STATE(9074)] = 302972, - [SMALL_STATE(9075)] = 302979, - [SMALL_STATE(9076)] = 302986, - [SMALL_STATE(9077)] = 302993, - [SMALL_STATE(9078)] = 303000, - [SMALL_STATE(9079)] = 303007, - [SMALL_STATE(9080)] = 303014, - [SMALL_STATE(9081)] = 303021, - [SMALL_STATE(9082)] = 303028, - [SMALL_STATE(9083)] = 303035, - [SMALL_STATE(9084)] = 303042, - [SMALL_STATE(9085)] = 303049, - [SMALL_STATE(9086)] = 303056, - [SMALL_STATE(9087)] = 303063, - [SMALL_STATE(9088)] = 303070, - [SMALL_STATE(9089)] = 303077, - [SMALL_STATE(9090)] = 303084, - [SMALL_STATE(9091)] = 303091, - [SMALL_STATE(9092)] = 303098, - [SMALL_STATE(9093)] = 303105, - [SMALL_STATE(9094)] = 303112, - [SMALL_STATE(9095)] = 303119, - [SMALL_STATE(9096)] = 303126, - [SMALL_STATE(9097)] = 303133, - [SMALL_STATE(9098)] = 303140, - [SMALL_STATE(9099)] = 303147, - [SMALL_STATE(9100)] = 303154, - [SMALL_STATE(9101)] = 303161, - [SMALL_STATE(9102)] = 303168, - [SMALL_STATE(9103)] = 303175, - [SMALL_STATE(9104)] = 303182, - [SMALL_STATE(9105)] = 303189, - [SMALL_STATE(9106)] = 303196, - [SMALL_STATE(9107)] = 303203, - [SMALL_STATE(9108)] = 303210, - [SMALL_STATE(9109)] = 303217, - [SMALL_STATE(9110)] = 303224, - [SMALL_STATE(9111)] = 303231, - [SMALL_STATE(9112)] = 303238, - [SMALL_STATE(9113)] = 303245, - [SMALL_STATE(9114)] = 303252, - [SMALL_STATE(9115)] = 303259, - [SMALL_STATE(9116)] = 303266, - [SMALL_STATE(9117)] = 303273, - [SMALL_STATE(9118)] = 303280, - [SMALL_STATE(9119)] = 303287, - [SMALL_STATE(9120)] = 303294, - [SMALL_STATE(9121)] = 303301, - [SMALL_STATE(9122)] = 303308, - [SMALL_STATE(9123)] = 303315, - [SMALL_STATE(9124)] = 303322, - [SMALL_STATE(9125)] = 303329, - [SMALL_STATE(9126)] = 303336, - [SMALL_STATE(9127)] = 303343, - [SMALL_STATE(9128)] = 303350, - [SMALL_STATE(9129)] = 303357, - [SMALL_STATE(9130)] = 303364, - [SMALL_STATE(9131)] = 303371, - [SMALL_STATE(9132)] = 303378, - [SMALL_STATE(9133)] = 303385, - [SMALL_STATE(9134)] = 303392, - [SMALL_STATE(9135)] = 303399, - [SMALL_STATE(9136)] = 303406, - [SMALL_STATE(9137)] = 303413, - [SMALL_STATE(9138)] = 303420, - [SMALL_STATE(9139)] = 303427, - [SMALL_STATE(9140)] = 303434, - [SMALL_STATE(9141)] = 303441, - [SMALL_STATE(9142)] = 303448, - [SMALL_STATE(9143)] = 303455, - [SMALL_STATE(9144)] = 303462, - [SMALL_STATE(9145)] = 303469, - [SMALL_STATE(9146)] = 303476, - [SMALL_STATE(9147)] = 303483, - [SMALL_STATE(9148)] = 303490, - [SMALL_STATE(9149)] = 303497, - [SMALL_STATE(9150)] = 303504, - [SMALL_STATE(9151)] = 303511, - [SMALL_STATE(9152)] = 303518, - [SMALL_STATE(9153)] = 303525, - [SMALL_STATE(9154)] = 303532, - [SMALL_STATE(9155)] = 303539, - [SMALL_STATE(9156)] = 303546, - [SMALL_STATE(9157)] = 303553, - [SMALL_STATE(9158)] = 303560, - [SMALL_STATE(9159)] = 303567, - [SMALL_STATE(9160)] = 303574, - [SMALL_STATE(9161)] = 303581, - [SMALL_STATE(9162)] = 303588, - [SMALL_STATE(9163)] = 303595, - [SMALL_STATE(9164)] = 303602, - [SMALL_STATE(9165)] = 303609, - [SMALL_STATE(9166)] = 303616, - [SMALL_STATE(9167)] = 303623, - [SMALL_STATE(9168)] = 303630, - [SMALL_STATE(9169)] = 303637, - [SMALL_STATE(9170)] = 303644, - [SMALL_STATE(9171)] = 303651, - [SMALL_STATE(9172)] = 303658, - [SMALL_STATE(9173)] = 303665, - [SMALL_STATE(9174)] = 303672, - [SMALL_STATE(9175)] = 303679, - [SMALL_STATE(9176)] = 303686, - [SMALL_STATE(9177)] = 303693, - [SMALL_STATE(9178)] = 303700, - [SMALL_STATE(9179)] = 303707, - [SMALL_STATE(9180)] = 303714, - [SMALL_STATE(9181)] = 303721, - [SMALL_STATE(9182)] = 303728, - [SMALL_STATE(9183)] = 303735, - [SMALL_STATE(9184)] = 303742, - [SMALL_STATE(9185)] = 303749, - [SMALL_STATE(9186)] = 303756, - [SMALL_STATE(9187)] = 303763, - [SMALL_STATE(9188)] = 303770, - [SMALL_STATE(9189)] = 303777, - [SMALL_STATE(9190)] = 303784, - [SMALL_STATE(9191)] = 303791, - [SMALL_STATE(9192)] = 303798, - [SMALL_STATE(9193)] = 303805, - [SMALL_STATE(9194)] = 303812, - [SMALL_STATE(9195)] = 303819, - [SMALL_STATE(9196)] = 303826, - [SMALL_STATE(9197)] = 303833, - [SMALL_STATE(9198)] = 303840, - [SMALL_STATE(9199)] = 303847, - [SMALL_STATE(9200)] = 303854, - [SMALL_STATE(9201)] = 303861, - [SMALL_STATE(9202)] = 303868, - [SMALL_STATE(9203)] = 303875, - [SMALL_STATE(9204)] = 303882, - [SMALL_STATE(9205)] = 303889, - [SMALL_STATE(9206)] = 303896, - [SMALL_STATE(9207)] = 303903, - [SMALL_STATE(9208)] = 303910, - [SMALL_STATE(9209)] = 303917, - [SMALL_STATE(9210)] = 303924, - [SMALL_STATE(9211)] = 303931, - [SMALL_STATE(9212)] = 303938, - [SMALL_STATE(9213)] = 303945, - [SMALL_STATE(9214)] = 303952, - [SMALL_STATE(9215)] = 303959, - [SMALL_STATE(9216)] = 303966, - [SMALL_STATE(9217)] = 303973, - [SMALL_STATE(9218)] = 303980, - [SMALL_STATE(9219)] = 303987, - [SMALL_STATE(9220)] = 303994, - [SMALL_STATE(9221)] = 304001, - [SMALL_STATE(9222)] = 304008, - [SMALL_STATE(9223)] = 304015, - [SMALL_STATE(9224)] = 304022, - [SMALL_STATE(9225)] = 304029, - [SMALL_STATE(9226)] = 304036, - [SMALL_STATE(9227)] = 304043, - [SMALL_STATE(9228)] = 304050, - [SMALL_STATE(9229)] = 304057, - [SMALL_STATE(9230)] = 304064, - [SMALL_STATE(9231)] = 304071, - [SMALL_STATE(9232)] = 304078, - [SMALL_STATE(9233)] = 304085, - [SMALL_STATE(9234)] = 304092, - [SMALL_STATE(9235)] = 304099, - [SMALL_STATE(9236)] = 304106, - [SMALL_STATE(9237)] = 304113, - [SMALL_STATE(9238)] = 304120, - [SMALL_STATE(9239)] = 304127, - [SMALL_STATE(9240)] = 304134, - [SMALL_STATE(9241)] = 304141, - [SMALL_STATE(9242)] = 304148, - [SMALL_STATE(9243)] = 304155, - [SMALL_STATE(9244)] = 304162, - [SMALL_STATE(9245)] = 304169, - [SMALL_STATE(9246)] = 304176, - [SMALL_STATE(9247)] = 304183, - [SMALL_STATE(9248)] = 304190, - [SMALL_STATE(9249)] = 304197, - [SMALL_STATE(9250)] = 304204, - [SMALL_STATE(9251)] = 304211, - [SMALL_STATE(9252)] = 304218, - [SMALL_STATE(9253)] = 304225, - [SMALL_STATE(9254)] = 304232, - [SMALL_STATE(9255)] = 304239, - [SMALL_STATE(9256)] = 304246, - [SMALL_STATE(9257)] = 304253, - [SMALL_STATE(9258)] = 304260, - [SMALL_STATE(9259)] = 304267, - [SMALL_STATE(9260)] = 304274, - [SMALL_STATE(9261)] = 304281, - [SMALL_STATE(9262)] = 304288, - [SMALL_STATE(9263)] = 304295, - [SMALL_STATE(9264)] = 304302, - [SMALL_STATE(9265)] = 304309, - [SMALL_STATE(9266)] = 304316, - [SMALL_STATE(9267)] = 304323, - [SMALL_STATE(9268)] = 304330, - [SMALL_STATE(9269)] = 304337, - [SMALL_STATE(9270)] = 304344, - [SMALL_STATE(9271)] = 304351, - [SMALL_STATE(9272)] = 304358, - [SMALL_STATE(9273)] = 304365, - [SMALL_STATE(9274)] = 304372, - [SMALL_STATE(9275)] = 304379, - [SMALL_STATE(9276)] = 304386, - [SMALL_STATE(9277)] = 304393, - [SMALL_STATE(9278)] = 304400, - [SMALL_STATE(9279)] = 304407, - [SMALL_STATE(9280)] = 304414, - [SMALL_STATE(9281)] = 304421, - [SMALL_STATE(9282)] = 304428, - [SMALL_STATE(9283)] = 304435, - [SMALL_STATE(9284)] = 304442, - [SMALL_STATE(9285)] = 304449, - [SMALL_STATE(9286)] = 304456, - [SMALL_STATE(9287)] = 304463, - [SMALL_STATE(9288)] = 304470, - [SMALL_STATE(9289)] = 304477, - [SMALL_STATE(9290)] = 304484, - [SMALL_STATE(9291)] = 304491, - [SMALL_STATE(9292)] = 304498, - [SMALL_STATE(9293)] = 304505, - [SMALL_STATE(9294)] = 304512, - [SMALL_STATE(9295)] = 304519, - [SMALL_STATE(9296)] = 304526, - [SMALL_STATE(9297)] = 304533, - [SMALL_STATE(9298)] = 304540, - [SMALL_STATE(9299)] = 304547, - [SMALL_STATE(9300)] = 304554, - [SMALL_STATE(9301)] = 304561, - [SMALL_STATE(9302)] = 304568, - [SMALL_STATE(9303)] = 304575, - [SMALL_STATE(9304)] = 304582, - [SMALL_STATE(9305)] = 304589, - [SMALL_STATE(9306)] = 304596, - [SMALL_STATE(9307)] = 304603, - [SMALL_STATE(9308)] = 304610, - [SMALL_STATE(9309)] = 304617, - [SMALL_STATE(9310)] = 304624, - [SMALL_STATE(9311)] = 304631, - [SMALL_STATE(9312)] = 304638, - [SMALL_STATE(9313)] = 304645, - [SMALL_STATE(9314)] = 304652, - [SMALL_STATE(9315)] = 304659, - [SMALL_STATE(9316)] = 304666, - [SMALL_STATE(9317)] = 304673, - [SMALL_STATE(9318)] = 304680, - [SMALL_STATE(9319)] = 304687, - [SMALL_STATE(9320)] = 304694, - [SMALL_STATE(9321)] = 304701, - [SMALL_STATE(9322)] = 304708, - [SMALL_STATE(9323)] = 304715, - [SMALL_STATE(9324)] = 304722, - [SMALL_STATE(9325)] = 304729, - [SMALL_STATE(9326)] = 304736, - [SMALL_STATE(9327)] = 304743, - [SMALL_STATE(9328)] = 304750, - [SMALL_STATE(9329)] = 304757, - [SMALL_STATE(9330)] = 304764, - [SMALL_STATE(9331)] = 304771, - [SMALL_STATE(9332)] = 304778, - [SMALL_STATE(9333)] = 304785, - [SMALL_STATE(9334)] = 304792, - [SMALL_STATE(9335)] = 304799, - [SMALL_STATE(9336)] = 304806, - [SMALL_STATE(9337)] = 304813, - [SMALL_STATE(9338)] = 304820, - [SMALL_STATE(9339)] = 304827, - [SMALL_STATE(9340)] = 304834, - [SMALL_STATE(9341)] = 304841, - [SMALL_STATE(9342)] = 304848, - [SMALL_STATE(9343)] = 304855, - [SMALL_STATE(9344)] = 304862, - [SMALL_STATE(9345)] = 304869, - [SMALL_STATE(9346)] = 304876, - [SMALL_STATE(9347)] = 304883, - [SMALL_STATE(9348)] = 304890, - [SMALL_STATE(9349)] = 304897, - [SMALL_STATE(9350)] = 304904, - [SMALL_STATE(9351)] = 304911, - [SMALL_STATE(9352)] = 304918, - [SMALL_STATE(9353)] = 304925, - [SMALL_STATE(9354)] = 304932, - [SMALL_STATE(9355)] = 304939, - [SMALL_STATE(9356)] = 304946, - [SMALL_STATE(9357)] = 304953, - [SMALL_STATE(9358)] = 304960, - [SMALL_STATE(9359)] = 304967, - [SMALL_STATE(9360)] = 304974, - [SMALL_STATE(9361)] = 304981, - [SMALL_STATE(9362)] = 304988, - [SMALL_STATE(9363)] = 304995, - [SMALL_STATE(9364)] = 305002, - [SMALL_STATE(9365)] = 305009, - [SMALL_STATE(9366)] = 305016, - [SMALL_STATE(9367)] = 305023, - [SMALL_STATE(9368)] = 305030, - [SMALL_STATE(9369)] = 305037, - [SMALL_STATE(9370)] = 305044, - [SMALL_STATE(9371)] = 305051, - [SMALL_STATE(9372)] = 305058, - [SMALL_STATE(9373)] = 305065, - [SMALL_STATE(9374)] = 305072, - [SMALL_STATE(9375)] = 305079, - [SMALL_STATE(9376)] = 305086, - [SMALL_STATE(9377)] = 305093, - [SMALL_STATE(9378)] = 305100, - [SMALL_STATE(9379)] = 305107, - [SMALL_STATE(9380)] = 305114, - [SMALL_STATE(9381)] = 305121, - [SMALL_STATE(9382)] = 305128, - [SMALL_STATE(9383)] = 305135, - [SMALL_STATE(9384)] = 305142, + [SMALL_STATE(7582)] = 288983, + [SMALL_STATE(7583)] = 288997, + [SMALL_STATE(7584)] = 289011, + [SMALL_STATE(7585)] = 289025, + [SMALL_STATE(7586)] = 289039, + [SMALL_STATE(7587)] = 289053, + [SMALL_STATE(7588)] = 289069, + [SMALL_STATE(7589)] = 289085, + [SMALL_STATE(7590)] = 289101, + [SMALL_STATE(7591)] = 289115, + [SMALL_STATE(7592)] = 289129, + [SMALL_STATE(7593)] = 289143, + [SMALL_STATE(7594)] = 289159, + [SMALL_STATE(7595)] = 289175, + [SMALL_STATE(7596)] = 289191, + [SMALL_STATE(7597)] = 289205, + [SMALL_STATE(7598)] = 289221, + [SMALL_STATE(7599)] = 289237, + [SMALL_STATE(7600)] = 289253, + [SMALL_STATE(7601)] = 289269, + [SMALL_STATE(7602)] = 289285, + [SMALL_STATE(7603)] = 289301, + [SMALL_STATE(7604)] = 289317, + [SMALL_STATE(7605)] = 289333, + [SMALL_STATE(7606)] = 289347, + [SMALL_STATE(7607)] = 289361, + [SMALL_STATE(7608)] = 289375, + [SMALL_STATE(7609)] = 289389, + [SMALL_STATE(7610)] = 289403, + [SMALL_STATE(7611)] = 289417, + [SMALL_STATE(7612)] = 289431, + [SMALL_STATE(7613)] = 289447, + [SMALL_STATE(7614)] = 289461, + [SMALL_STATE(7615)] = 289477, + [SMALL_STATE(7616)] = 289493, + [SMALL_STATE(7617)] = 289509, + [SMALL_STATE(7618)] = 289523, + [SMALL_STATE(7619)] = 289539, + [SMALL_STATE(7620)] = 289555, + [SMALL_STATE(7621)] = 289569, + [SMALL_STATE(7622)] = 289583, + [SMALL_STATE(7623)] = 289597, + [SMALL_STATE(7624)] = 289613, + [SMALL_STATE(7625)] = 289627, + [SMALL_STATE(7626)] = 289641, + [SMALL_STATE(7627)] = 289657, + [SMALL_STATE(7628)] = 289671, + [SMALL_STATE(7629)] = 289687, + [SMALL_STATE(7630)] = 289701, + [SMALL_STATE(7631)] = 289717, + [SMALL_STATE(7632)] = 289731, + [SMALL_STATE(7633)] = 289745, + [SMALL_STATE(7634)] = 289759, + [SMALL_STATE(7635)] = 289775, + [SMALL_STATE(7636)] = 289788, + [SMALL_STATE(7637)] = 289799, + [SMALL_STATE(7638)] = 289812, + [SMALL_STATE(7639)] = 289825, + [SMALL_STATE(7640)] = 289836, + [SMALL_STATE(7641)] = 289847, + [SMALL_STATE(7642)] = 289860, + [SMALL_STATE(7643)] = 289869, + [SMALL_STATE(7644)] = 289882, + [SMALL_STATE(7645)] = 289891, + [SMALL_STATE(7646)] = 289902, + [SMALL_STATE(7647)] = 289915, + [SMALL_STATE(7648)] = 289928, + [SMALL_STATE(7649)] = 289941, + [SMALL_STATE(7650)] = 289950, + [SMALL_STATE(7651)] = 289963, + [SMALL_STATE(7652)] = 289976, + [SMALL_STATE(7653)] = 289989, + [SMALL_STATE(7654)] = 290002, + [SMALL_STATE(7655)] = 290015, + [SMALL_STATE(7656)] = 290028, + [SMALL_STATE(7657)] = 290041, + [SMALL_STATE(7658)] = 290054, + [SMALL_STATE(7659)] = 290065, + [SMALL_STATE(7660)] = 290078, + [SMALL_STATE(7661)] = 290091, + [SMALL_STATE(7662)] = 290104, + [SMALL_STATE(7663)] = 290117, + [SMALL_STATE(7664)] = 290130, + [SMALL_STATE(7665)] = 290143, + [SMALL_STATE(7666)] = 290156, + [SMALL_STATE(7667)] = 290169, + [SMALL_STATE(7668)] = 290182, + [SMALL_STATE(7669)] = 290195, + [SMALL_STATE(7670)] = 290208, + [SMALL_STATE(7671)] = 290221, + [SMALL_STATE(7672)] = 290232, + [SMALL_STATE(7673)] = 290245, + [SMALL_STATE(7674)] = 290258, + [SMALL_STATE(7675)] = 290271, + [SMALL_STATE(7676)] = 290284, + [SMALL_STATE(7677)] = 290297, + [SMALL_STATE(7678)] = 290310, + [SMALL_STATE(7679)] = 290323, + [SMALL_STATE(7680)] = 290332, + [SMALL_STATE(7681)] = 290345, + [SMALL_STATE(7682)] = 290356, + [SMALL_STATE(7683)] = 290367, + [SMALL_STATE(7684)] = 290380, + [SMALL_STATE(7685)] = 290393, + [SMALL_STATE(7686)] = 290406, + [SMALL_STATE(7687)] = 290419, + [SMALL_STATE(7688)] = 290432, + [SMALL_STATE(7689)] = 290445, + [SMALL_STATE(7690)] = 290458, + [SMALL_STATE(7691)] = 290471, + [SMALL_STATE(7692)] = 290484, + [SMALL_STATE(7693)] = 290497, + [SMALL_STATE(7694)] = 290510, + [SMALL_STATE(7695)] = 290523, + [SMALL_STATE(7696)] = 290536, + [SMALL_STATE(7697)] = 290549, + [SMALL_STATE(7698)] = 290562, + [SMALL_STATE(7699)] = 290575, + [SMALL_STATE(7700)] = 290586, + [SMALL_STATE(7701)] = 290597, + [SMALL_STATE(7702)] = 290610, + [SMALL_STATE(7703)] = 290619, + [SMALL_STATE(7704)] = 290632, + [SMALL_STATE(7705)] = 290645, + [SMALL_STATE(7706)] = 290654, + [SMALL_STATE(7707)] = 290667, + [SMALL_STATE(7708)] = 290680, + [SMALL_STATE(7709)] = 290693, + [SMALL_STATE(7710)] = 290706, + [SMALL_STATE(7711)] = 290719, + [SMALL_STATE(7712)] = 290732, + [SMALL_STATE(7713)] = 290745, + [SMALL_STATE(7714)] = 290756, + [SMALL_STATE(7715)] = 290769, + [SMALL_STATE(7716)] = 290782, + [SMALL_STATE(7717)] = 290793, + [SMALL_STATE(7718)] = 290806, + [SMALL_STATE(7719)] = 290817, + [SMALL_STATE(7720)] = 290830, + [SMALL_STATE(7721)] = 290841, + [SMALL_STATE(7722)] = 290854, + [SMALL_STATE(7723)] = 290863, + [SMALL_STATE(7724)] = 290876, + [SMALL_STATE(7725)] = 290889, + [SMALL_STATE(7726)] = 290902, + [SMALL_STATE(7727)] = 290915, + [SMALL_STATE(7728)] = 290928, + [SMALL_STATE(7729)] = 290941, + [SMALL_STATE(7730)] = 290954, + [SMALL_STATE(7731)] = 290967, + [SMALL_STATE(7732)] = 290980, + [SMALL_STATE(7733)] = 290993, + [SMALL_STATE(7734)] = 291006, + [SMALL_STATE(7735)] = 291019, + [SMALL_STATE(7736)] = 291032, + [SMALL_STATE(7737)] = 291045, + [SMALL_STATE(7738)] = 291054, + [SMALL_STATE(7739)] = 291067, + [SMALL_STATE(7740)] = 291080, + [SMALL_STATE(7741)] = 291093, + [SMALL_STATE(7742)] = 291106, + [SMALL_STATE(7743)] = 291119, + [SMALL_STATE(7744)] = 291132, + [SMALL_STATE(7745)] = 291143, + [SMALL_STATE(7746)] = 291152, + [SMALL_STATE(7747)] = 291165, + [SMALL_STATE(7748)] = 291178, + [SMALL_STATE(7749)] = 291191, + [SMALL_STATE(7750)] = 291204, + [SMALL_STATE(7751)] = 291217, + [SMALL_STATE(7752)] = 291228, + [SMALL_STATE(7753)] = 291241, + [SMALL_STATE(7754)] = 291250, + [SMALL_STATE(7755)] = 291259, + [SMALL_STATE(7756)] = 291272, + [SMALL_STATE(7757)] = 291285, + [SMALL_STATE(7758)] = 291298, + [SMALL_STATE(7759)] = 291311, + [SMALL_STATE(7760)] = 291322, + [SMALL_STATE(7761)] = 291335, + [SMALL_STATE(7762)] = 291348, + [SMALL_STATE(7763)] = 291361, + [SMALL_STATE(7764)] = 291370, + [SMALL_STATE(7765)] = 291383, + [SMALL_STATE(7766)] = 291394, + [SMALL_STATE(7767)] = 291407, + [SMALL_STATE(7768)] = 291420, + [SMALL_STATE(7769)] = 291433, + [SMALL_STATE(7770)] = 291444, + [SMALL_STATE(7771)] = 291457, + [SMALL_STATE(7772)] = 291470, + [SMALL_STATE(7773)] = 291481, + [SMALL_STATE(7774)] = 291494, + [SMALL_STATE(7775)] = 291507, + [SMALL_STATE(7776)] = 291520, + [SMALL_STATE(7777)] = 291533, + [SMALL_STATE(7778)] = 291544, + [SMALL_STATE(7779)] = 291557, + [SMALL_STATE(7780)] = 291570, + [SMALL_STATE(7781)] = 291583, + [SMALL_STATE(7782)] = 291596, + [SMALL_STATE(7783)] = 291609, + [SMALL_STATE(7784)] = 291622, + [SMALL_STATE(7785)] = 291635, + [SMALL_STATE(7786)] = 291648, + [SMALL_STATE(7787)] = 291661, + [SMALL_STATE(7788)] = 291674, + [SMALL_STATE(7789)] = 291687, + [SMALL_STATE(7790)] = 291700, + [SMALL_STATE(7791)] = 291713, + [SMALL_STATE(7792)] = 291726, + [SMALL_STATE(7793)] = 291737, + [SMALL_STATE(7794)] = 291748, + [SMALL_STATE(7795)] = 291761, + [SMALL_STATE(7796)] = 291774, + [SMALL_STATE(7797)] = 291787, + [SMALL_STATE(7798)] = 291800, + [SMALL_STATE(7799)] = 291813, + [SMALL_STATE(7800)] = 291826, + [SMALL_STATE(7801)] = 291839, + [SMALL_STATE(7802)] = 291852, + [SMALL_STATE(7803)] = 291865, + [SMALL_STATE(7804)] = 291878, + [SMALL_STATE(7805)] = 291891, + [SMALL_STATE(7806)] = 291904, + [SMALL_STATE(7807)] = 291917, + [SMALL_STATE(7808)] = 291930, + [SMALL_STATE(7809)] = 291943, + [SMALL_STATE(7810)] = 291956, + [SMALL_STATE(7811)] = 291969, + [SMALL_STATE(7812)] = 291982, + [SMALL_STATE(7813)] = 291995, + [SMALL_STATE(7814)] = 292008, + [SMALL_STATE(7815)] = 292021, + [SMALL_STATE(7816)] = 292034, + [SMALL_STATE(7817)] = 292047, + [SMALL_STATE(7818)] = 292060, + [SMALL_STATE(7819)] = 292073, + [SMALL_STATE(7820)] = 292086, + [SMALL_STATE(7821)] = 292099, + [SMALL_STATE(7822)] = 292112, + [SMALL_STATE(7823)] = 292125, + [SMALL_STATE(7824)] = 292134, + [SMALL_STATE(7825)] = 292147, + [SMALL_STATE(7826)] = 292160, + [SMALL_STATE(7827)] = 292173, + [SMALL_STATE(7828)] = 292186, + [SMALL_STATE(7829)] = 292199, + [SMALL_STATE(7830)] = 292212, + [SMALL_STATE(7831)] = 292225, + [SMALL_STATE(7832)] = 292238, + [SMALL_STATE(7833)] = 292251, + [SMALL_STATE(7834)] = 292264, + [SMALL_STATE(7835)] = 292277, + [SMALL_STATE(7836)] = 292290, + [SMALL_STATE(7837)] = 292303, + [SMALL_STATE(7838)] = 292314, + [SMALL_STATE(7839)] = 292327, + [SMALL_STATE(7840)] = 292340, + [SMALL_STATE(7841)] = 292353, + [SMALL_STATE(7842)] = 292366, + [SMALL_STATE(7843)] = 292379, + [SMALL_STATE(7844)] = 292392, + [SMALL_STATE(7845)] = 292405, + [SMALL_STATE(7846)] = 292418, + [SMALL_STATE(7847)] = 292429, + [SMALL_STATE(7848)] = 292442, + [SMALL_STATE(7849)] = 292453, + [SMALL_STATE(7850)] = 292466, + [SMALL_STATE(7851)] = 292479, + [SMALL_STATE(7852)] = 292492, + [SMALL_STATE(7853)] = 292505, + [SMALL_STATE(7854)] = 292518, + [SMALL_STATE(7855)] = 292529, + [SMALL_STATE(7856)] = 292542, + [SMALL_STATE(7857)] = 292555, + [SMALL_STATE(7858)] = 292568, + [SMALL_STATE(7859)] = 292581, + [SMALL_STATE(7860)] = 292594, + [SMALL_STATE(7861)] = 292607, + [SMALL_STATE(7862)] = 292620, + [SMALL_STATE(7863)] = 292633, + [SMALL_STATE(7864)] = 292646, + [SMALL_STATE(7865)] = 292659, + [SMALL_STATE(7866)] = 292670, + [SMALL_STATE(7867)] = 292681, + [SMALL_STATE(7868)] = 292694, + [SMALL_STATE(7869)] = 292707, + [SMALL_STATE(7870)] = 292720, + [SMALL_STATE(7871)] = 292733, + [SMALL_STATE(7872)] = 292746, + [SMALL_STATE(7873)] = 292759, + [SMALL_STATE(7874)] = 292770, + [SMALL_STATE(7875)] = 292781, + [SMALL_STATE(7876)] = 292794, + [SMALL_STATE(7877)] = 292803, + [SMALL_STATE(7878)] = 292812, + [SMALL_STATE(7879)] = 292825, + [SMALL_STATE(7880)] = 292838, + [SMALL_STATE(7881)] = 292851, + [SMALL_STATE(7882)] = 292864, + [SMALL_STATE(7883)] = 292877, + [SMALL_STATE(7884)] = 292888, + [SMALL_STATE(7885)] = 292901, + [SMALL_STATE(7886)] = 292912, + [SMALL_STATE(7887)] = 292925, + [SMALL_STATE(7888)] = 292938, + [SMALL_STATE(7889)] = 292951, + [SMALL_STATE(7890)] = 292964, + [SMALL_STATE(7891)] = 292977, + [SMALL_STATE(7892)] = 292990, + [SMALL_STATE(7893)] = 293003, + [SMALL_STATE(7894)] = 293016, + [SMALL_STATE(7895)] = 293027, + [SMALL_STATE(7896)] = 293040, + [SMALL_STATE(7897)] = 293053, + [SMALL_STATE(7898)] = 293066, + [SMALL_STATE(7899)] = 293079, + [SMALL_STATE(7900)] = 293090, + [SMALL_STATE(7901)] = 293103, + [SMALL_STATE(7902)] = 293116, + [SMALL_STATE(7903)] = 293129, + [SMALL_STATE(7904)] = 293142, + [SMALL_STATE(7905)] = 293155, + [SMALL_STATE(7906)] = 293168, + [SMALL_STATE(7907)] = 293181, + [SMALL_STATE(7908)] = 293194, + [SMALL_STATE(7909)] = 293207, + [SMALL_STATE(7910)] = 293220, + [SMALL_STATE(7911)] = 293233, + [SMALL_STATE(7912)] = 293244, + [SMALL_STATE(7913)] = 293257, + [SMALL_STATE(7914)] = 293270, + [SMALL_STATE(7915)] = 293283, + [SMALL_STATE(7916)] = 293296, + [SMALL_STATE(7917)] = 293309, + [SMALL_STATE(7918)] = 293322, + [SMALL_STATE(7919)] = 293335, + [SMALL_STATE(7920)] = 293348, + [SMALL_STATE(7921)] = 293359, + [SMALL_STATE(7922)] = 293372, + [SMALL_STATE(7923)] = 293383, + [SMALL_STATE(7924)] = 293394, + [SMALL_STATE(7925)] = 293407, + [SMALL_STATE(7926)] = 293420, + [SMALL_STATE(7927)] = 293431, + [SMALL_STATE(7928)] = 293444, + [SMALL_STATE(7929)] = 293457, + [SMALL_STATE(7930)] = 293470, + [SMALL_STATE(7931)] = 293483, + [SMALL_STATE(7932)] = 293496, + [SMALL_STATE(7933)] = 293509, + [SMALL_STATE(7934)] = 293522, + [SMALL_STATE(7935)] = 293535, + [SMALL_STATE(7936)] = 293548, + [SMALL_STATE(7937)] = 293561, + [SMALL_STATE(7938)] = 293574, + [SMALL_STATE(7939)] = 293587, + [SMALL_STATE(7940)] = 293600, + [SMALL_STATE(7941)] = 293613, + [SMALL_STATE(7942)] = 293626, + [SMALL_STATE(7943)] = 293639, + [SMALL_STATE(7944)] = 293652, + [SMALL_STATE(7945)] = 293663, + [SMALL_STATE(7946)] = 293672, + [SMALL_STATE(7947)] = 293683, + [SMALL_STATE(7948)] = 293696, + [SMALL_STATE(7949)] = 293709, + [SMALL_STATE(7950)] = 293722, + [SMALL_STATE(7951)] = 293735, + [SMALL_STATE(7952)] = 293748, + [SMALL_STATE(7953)] = 293759, + [SMALL_STATE(7954)] = 293772, + [SMALL_STATE(7955)] = 293785, + [SMALL_STATE(7956)] = 293796, + [SMALL_STATE(7957)] = 293807, + [SMALL_STATE(7958)] = 293820, + [SMALL_STATE(7959)] = 293833, + [SMALL_STATE(7960)] = 293846, + [SMALL_STATE(7961)] = 293859, + [SMALL_STATE(7962)] = 293872, + [SMALL_STATE(7963)] = 293885, + [SMALL_STATE(7964)] = 293896, + [SMALL_STATE(7965)] = 293909, + [SMALL_STATE(7966)] = 293920, + [SMALL_STATE(7967)] = 293933, + [SMALL_STATE(7968)] = 293944, + [SMALL_STATE(7969)] = 293953, + [SMALL_STATE(7970)] = 293964, + [SMALL_STATE(7971)] = 293977, + [SMALL_STATE(7972)] = 293990, + [SMALL_STATE(7973)] = 294003, + [SMALL_STATE(7974)] = 294016, + [SMALL_STATE(7975)] = 294029, + [SMALL_STATE(7976)] = 294042, + [SMALL_STATE(7977)] = 294055, + [SMALL_STATE(7978)] = 294068, + [SMALL_STATE(7979)] = 294081, + [SMALL_STATE(7980)] = 294094, + [SMALL_STATE(7981)] = 294107, + [SMALL_STATE(7982)] = 294120, + [SMALL_STATE(7983)] = 294133, + [SMALL_STATE(7984)] = 294146, + [SMALL_STATE(7985)] = 294159, + [SMALL_STATE(7986)] = 294172, + [SMALL_STATE(7987)] = 294185, + [SMALL_STATE(7988)] = 294198, + [SMALL_STATE(7989)] = 294211, + [SMALL_STATE(7990)] = 294224, + [SMALL_STATE(7991)] = 294237, + [SMALL_STATE(7992)] = 294250, + [SMALL_STATE(7993)] = 294261, + [SMALL_STATE(7994)] = 294274, + [SMALL_STATE(7995)] = 294287, + [SMALL_STATE(7996)] = 294300, + [SMALL_STATE(7997)] = 294313, + [SMALL_STATE(7998)] = 294326, + [SMALL_STATE(7999)] = 294339, + [SMALL_STATE(8000)] = 294352, + [SMALL_STATE(8001)] = 294365, + [SMALL_STATE(8002)] = 294378, + [SMALL_STATE(8003)] = 294391, + [SMALL_STATE(8004)] = 294404, + [SMALL_STATE(8005)] = 294417, + [SMALL_STATE(8006)] = 294430, + [SMALL_STATE(8007)] = 294443, + [SMALL_STATE(8008)] = 294456, + [SMALL_STATE(8009)] = 294467, + [SMALL_STATE(8010)] = 294480, + [SMALL_STATE(8011)] = 294493, + [SMALL_STATE(8012)] = 294506, + [SMALL_STATE(8013)] = 294519, + [SMALL_STATE(8014)] = 294532, + [SMALL_STATE(8015)] = 294545, + [SMALL_STATE(8016)] = 294556, + [SMALL_STATE(8017)] = 294569, + [SMALL_STATE(8018)] = 294582, + [SMALL_STATE(8019)] = 294595, + [SMALL_STATE(8020)] = 294608, + [SMALL_STATE(8021)] = 294621, + [SMALL_STATE(8022)] = 294634, + [SMALL_STATE(8023)] = 294647, + [SMALL_STATE(8024)] = 294658, + [SMALL_STATE(8025)] = 294669, + [SMALL_STATE(8026)] = 294680, + [SMALL_STATE(8027)] = 294693, + [SMALL_STATE(8028)] = 294706, + [SMALL_STATE(8029)] = 294719, + [SMALL_STATE(8030)] = 294732, + [SMALL_STATE(8031)] = 294745, + [SMALL_STATE(8032)] = 294756, + [SMALL_STATE(8033)] = 294765, + [SMALL_STATE(8034)] = 294778, + [SMALL_STATE(8035)] = 294791, + [SMALL_STATE(8036)] = 294804, + [SMALL_STATE(8037)] = 294817, + [SMALL_STATE(8038)] = 294828, + [SMALL_STATE(8039)] = 294841, + [SMALL_STATE(8040)] = 294854, + [SMALL_STATE(8041)] = 294863, + [SMALL_STATE(8042)] = 294871, + [SMALL_STATE(8043)] = 294879, + [SMALL_STATE(8044)] = 294887, + [SMALL_STATE(8045)] = 294895, + [SMALL_STATE(8046)] = 294905, + [SMALL_STATE(8047)] = 294915, + [SMALL_STATE(8048)] = 294925, + [SMALL_STATE(8049)] = 294935, + [SMALL_STATE(8050)] = 294945, + [SMALL_STATE(8051)] = 294955, + [SMALL_STATE(8052)] = 294965, + [SMALL_STATE(8053)] = 294975, + [SMALL_STATE(8054)] = 294985, + [SMALL_STATE(8055)] = 294995, + [SMALL_STATE(8056)] = 295003, + [SMALL_STATE(8057)] = 295011, + [SMALL_STATE(8058)] = 295021, + [SMALL_STATE(8059)] = 295031, + [SMALL_STATE(8060)] = 295039, + [SMALL_STATE(8061)] = 295049, + [SMALL_STATE(8062)] = 295059, + [SMALL_STATE(8063)] = 295069, + [SMALL_STATE(8064)] = 295077, + [SMALL_STATE(8065)] = 295087, + [SMALL_STATE(8066)] = 295095, + [SMALL_STATE(8067)] = 295105, + [SMALL_STATE(8068)] = 295115, + [SMALL_STATE(8069)] = 295125, + [SMALL_STATE(8070)] = 295133, + [SMALL_STATE(8071)] = 295143, + [SMALL_STATE(8072)] = 295153, + [SMALL_STATE(8073)] = 295161, + [SMALL_STATE(8074)] = 295171, + [SMALL_STATE(8075)] = 295181, + [SMALL_STATE(8076)] = 295191, + [SMALL_STATE(8077)] = 295201, + [SMALL_STATE(8078)] = 295211, + [SMALL_STATE(8079)] = 295221, + [SMALL_STATE(8080)] = 295231, + [SMALL_STATE(8081)] = 295241, + [SMALL_STATE(8082)] = 295251, + [SMALL_STATE(8083)] = 295261, + [SMALL_STATE(8084)] = 295271, + [SMALL_STATE(8085)] = 295281, + [SMALL_STATE(8086)] = 295291, + [SMALL_STATE(8087)] = 295301, + [SMALL_STATE(8088)] = 295309, + [SMALL_STATE(8089)] = 295319, + [SMALL_STATE(8090)] = 295329, + [SMALL_STATE(8091)] = 295339, + [SMALL_STATE(8092)] = 295349, + [SMALL_STATE(8093)] = 295359, + [SMALL_STATE(8094)] = 295369, + [SMALL_STATE(8095)] = 295377, + [SMALL_STATE(8096)] = 295387, + [SMALL_STATE(8097)] = 295397, + [SMALL_STATE(8098)] = 295407, + [SMALL_STATE(8099)] = 295417, + [SMALL_STATE(8100)] = 295427, + [SMALL_STATE(8101)] = 295437, + [SMALL_STATE(8102)] = 295447, + [SMALL_STATE(8103)] = 295455, + [SMALL_STATE(8104)] = 295465, + [SMALL_STATE(8105)] = 295475, + [SMALL_STATE(8106)] = 295485, + [SMALL_STATE(8107)] = 295495, + [SMALL_STATE(8108)] = 295503, + [SMALL_STATE(8109)] = 295513, + [SMALL_STATE(8110)] = 295521, + [SMALL_STATE(8111)] = 295531, + [SMALL_STATE(8112)] = 295541, + [SMALL_STATE(8113)] = 295549, + [SMALL_STATE(8114)] = 295559, + [SMALL_STATE(8115)] = 295569, + [SMALL_STATE(8116)] = 295579, + [SMALL_STATE(8117)] = 295589, + [SMALL_STATE(8118)] = 295599, + [SMALL_STATE(8119)] = 295609, + [SMALL_STATE(8120)] = 295619, + [SMALL_STATE(8121)] = 295629, + [SMALL_STATE(8122)] = 295639, + [SMALL_STATE(8123)] = 295649, + [SMALL_STATE(8124)] = 295659, + [SMALL_STATE(8125)] = 295669, + [SMALL_STATE(8126)] = 295677, + [SMALL_STATE(8127)] = 295687, + [SMALL_STATE(8128)] = 295697, + [SMALL_STATE(8129)] = 295705, + [SMALL_STATE(8130)] = 295715, + [SMALL_STATE(8131)] = 295725, + [SMALL_STATE(8132)] = 295735, + [SMALL_STATE(8133)] = 295745, + [SMALL_STATE(8134)] = 295755, + [SMALL_STATE(8135)] = 295765, + [SMALL_STATE(8136)] = 295775, + [SMALL_STATE(8137)] = 295785, + [SMALL_STATE(8138)] = 295793, + [SMALL_STATE(8139)] = 295801, + [SMALL_STATE(8140)] = 295811, + [SMALL_STATE(8141)] = 295819, + [SMALL_STATE(8142)] = 295829, + [SMALL_STATE(8143)] = 295839, + [SMALL_STATE(8144)] = 295847, + [SMALL_STATE(8145)] = 295855, + [SMALL_STATE(8146)] = 295863, + [SMALL_STATE(8147)] = 295873, + [SMALL_STATE(8148)] = 295883, + [SMALL_STATE(8149)] = 295893, + [SMALL_STATE(8150)] = 295903, + [SMALL_STATE(8151)] = 295913, + [SMALL_STATE(8152)] = 295923, + [SMALL_STATE(8153)] = 295933, + [SMALL_STATE(8154)] = 295943, + [SMALL_STATE(8155)] = 295953, + [SMALL_STATE(8156)] = 295963, + [SMALL_STATE(8157)] = 295973, + [SMALL_STATE(8158)] = 295983, + [SMALL_STATE(8159)] = 295993, + [SMALL_STATE(8160)] = 296003, + [SMALL_STATE(8161)] = 296013, + [SMALL_STATE(8162)] = 296023, + [SMALL_STATE(8163)] = 296033, + [SMALL_STATE(8164)] = 296043, + [SMALL_STATE(8165)] = 296051, + [SMALL_STATE(8166)] = 296061, + [SMALL_STATE(8167)] = 296071, + [SMALL_STATE(8168)] = 296081, + [SMALL_STATE(8169)] = 296091, + [SMALL_STATE(8170)] = 296101, + [SMALL_STATE(8171)] = 296111, + [SMALL_STATE(8172)] = 296121, + [SMALL_STATE(8173)] = 296131, + [SMALL_STATE(8174)] = 296141, + [SMALL_STATE(8175)] = 296151, + [SMALL_STATE(8176)] = 296161, + [SMALL_STATE(8177)] = 296169, + [SMALL_STATE(8178)] = 296179, + [SMALL_STATE(8179)] = 296189, + [SMALL_STATE(8180)] = 296197, + [SMALL_STATE(8181)] = 296205, + [SMALL_STATE(8182)] = 296215, + [SMALL_STATE(8183)] = 296225, + [SMALL_STATE(8184)] = 296235, + [SMALL_STATE(8185)] = 296245, + [SMALL_STATE(8186)] = 296255, + [SMALL_STATE(8187)] = 296265, + [SMALL_STATE(8188)] = 296275, + [SMALL_STATE(8189)] = 296285, + [SMALL_STATE(8190)] = 296295, + [SMALL_STATE(8191)] = 296305, + [SMALL_STATE(8192)] = 296313, + [SMALL_STATE(8193)] = 296323, + [SMALL_STATE(8194)] = 296333, + [SMALL_STATE(8195)] = 296343, + [SMALL_STATE(8196)] = 296351, + [SMALL_STATE(8197)] = 296361, + [SMALL_STATE(8198)] = 296371, + [SMALL_STATE(8199)] = 296381, + [SMALL_STATE(8200)] = 296391, + [SMALL_STATE(8201)] = 296401, + [SMALL_STATE(8202)] = 296409, + [SMALL_STATE(8203)] = 296419, + [SMALL_STATE(8204)] = 296429, + [SMALL_STATE(8205)] = 296439, + [SMALL_STATE(8206)] = 296449, + [SMALL_STATE(8207)] = 296459, + [SMALL_STATE(8208)] = 296467, + [SMALL_STATE(8209)] = 296477, + [SMALL_STATE(8210)] = 296487, + [SMALL_STATE(8211)] = 296497, + [SMALL_STATE(8212)] = 296507, + [SMALL_STATE(8213)] = 296515, + [SMALL_STATE(8214)] = 296525, + [SMALL_STATE(8215)] = 296535, + [SMALL_STATE(8216)] = 296545, + [SMALL_STATE(8217)] = 296553, + [SMALL_STATE(8218)] = 296563, + [SMALL_STATE(8219)] = 296573, + [SMALL_STATE(8220)] = 296583, + [SMALL_STATE(8221)] = 296593, + [SMALL_STATE(8222)] = 296603, + [SMALL_STATE(8223)] = 296613, + [SMALL_STATE(8224)] = 296623, + [SMALL_STATE(8225)] = 296633, + [SMALL_STATE(8226)] = 296643, + [SMALL_STATE(8227)] = 296653, + [SMALL_STATE(8228)] = 296663, + [SMALL_STATE(8229)] = 296673, + [SMALL_STATE(8230)] = 296681, + [SMALL_STATE(8231)] = 296689, + [SMALL_STATE(8232)] = 296699, + [SMALL_STATE(8233)] = 296709, + [SMALL_STATE(8234)] = 296719, + [SMALL_STATE(8235)] = 296729, + [SMALL_STATE(8236)] = 296739, + [SMALL_STATE(8237)] = 296749, + [SMALL_STATE(8238)] = 296759, + [SMALL_STATE(8239)] = 296769, + [SMALL_STATE(8240)] = 296779, + [SMALL_STATE(8241)] = 296789, + [SMALL_STATE(8242)] = 296799, + [SMALL_STATE(8243)] = 296809, + [SMALL_STATE(8244)] = 296819, + [SMALL_STATE(8245)] = 296829, + [SMALL_STATE(8246)] = 296839, + [SMALL_STATE(8247)] = 296849, + [SMALL_STATE(8248)] = 296859, + [SMALL_STATE(8249)] = 296869, + [SMALL_STATE(8250)] = 296879, + [SMALL_STATE(8251)] = 296889, + [SMALL_STATE(8252)] = 296899, + [SMALL_STATE(8253)] = 296909, + [SMALL_STATE(8254)] = 296919, + [SMALL_STATE(8255)] = 296929, + [SMALL_STATE(8256)] = 296937, + [SMALL_STATE(8257)] = 296947, + [SMALL_STATE(8258)] = 296957, + [SMALL_STATE(8259)] = 296967, + [SMALL_STATE(8260)] = 296977, + [SMALL_STATE(8261)] = 296987, + [SMALL_STATE(8262)] = 296997, + [SMALL_STATE(8263)] = 297007, + [SMALL_STATE(8264)] = 297017, + [SMALL_STATE(8265)] = 297027, + [SMALL_STATE(8266)] = 297037, + [SMALL_STATE(8267)] = 297047, + [SMALL_STATE(8268)] = 297057, + [SMALL_STATE(8269)] = 297067, + [SMALL_STATE(8270)] = 297077, + [SMALL_STATE(8271)] = 297087, + [SMALL_STATE(8272)] = 297097, + [SMALL_STATE(8273)] = 297107, + [SMALL_STATE(8274)] = 297117, + [SMALL_STATE(8275)] = 297127, + [SMALL_STATE(8276)] = 297137, + [SMALL_STATE(8277)] = 297147, + [SMALL_STATE(8278)] = 297157, + [SMALL_STATE(8279)] = 297167, + [SMALL_STATE(8280)] = 297177, + [SMALL_STATE(8281)] = 297187, + [SMALL_STATE(8282)] = 297197, + [SMALL_STATE(8283)] = 297207, + [SMALL_STATE(8284)] = 297217, + [SMALL_STATE(8285)] = 297227, + [SMALL_STATE(8286)] = 297237, + [SMALL_STATE(8287)] = 297247, + [SMALL_STATE(8288)] = 297257, + [SMALL_STATE(8289)] = 297267, + [SMALL_STATE(8290)] = 297277, + [SMALL_STATE(8291)] = 297287, + [SMALL_STATE(8292)] = 297297, + [SMALL_STATE(8293)] = 297307, + [SMALL_STATE(8294)] = 297317, + [SMALL_STATE(8295)] = 297327, + [SMALL_STATE(8296)] = 297337, + [SMALL_STATE(8297)] = 297347, + [SMALL_STATE(8298)] = 297357, + [SMALL_STATE(8299)] = 297367, + [SMALL_STATE(8300)] = 297377, + [SMALL_STATE(8301)] = 297387, + [SMALL_STATE(8302)] = 297397, + [SMALL_STATE(8303)] = 297407, + [SMALL_STATE(8304)] = 297417, + [SMALL_STATE(8305)] = 297427, + [SMALL_STATE(8306)] = 297437, + [SMALL_STATE(8307)] = 297447, + [SMALL_STATE(8308)] = 297455, + [SMALL_STATE(8309)] = 297465, + [SMALL_STATE(8310)] = 297475, + [SMALL_STATE(8311)] = 297483, + [SMALL_STATE(8312)] = 297493, + [SMALL_STATE(8313)] = 297503, + [SMALL_STATE(8314)] = 297513, + [SMALL_STATE(8315)] = 297523, + [SMALL_STATE(8316)] = 297533, + [SMALL_STATE(8317)] = 297543, + [SMALL_STATE(8318)] = 297553, + [SMALL_STATE(8319)] = 297563, + [SMALL_STATE(8320)] = 297573, + [SMALL_STATE(8321)] = 297583, + [SMALL_STATE(8322)] = 297593, + [SMALL_STATE(8323)] = 297603, + [SMALL_STATE(8324)] = 297613, + [SMALL_STATE(8325)] = 297621, + [SMALL_STATE(8326)] = 297631, + [SMALL_STATE(8327)] = 297641, + [SMALL_STATE(8328)] = 297651, + [SMALL_STATE(8329)] = 297661, + [SMALL_STATE(8330)] = 297671, + [SMALL_STATE(8331)] = 297681, + [SMALL_STATE(8332)] = 297691, + [SMALL_STATE(8333)] = 297701, + [SMALL_STATE(8334)] = 297711, + [SMALL_STATE(8335)] = 297721, + [SMALL_STATE(8336)] = 297731, + [SMALL_STATE(8337)] = 297739, + [SMALL_STATE(8338)] = 297749, + [SMALL_STATE(8339)] = 297759, + [SMALL_STATE(8340)] = 297769, + [SMALL_STATE(8341)] = 297779, + [SMALL_STATE(8342)] = 297789, + [SMALL_STATE(8343)] = 297799, + [SMALL_STATE(8344)] = 297809, + [SMALL_STATE(8345)] = 297819, + [SMALL_STATE(8346)] = 297829, + [SMALL_STATE(8347)] = 297839, + [SMALL_STATE(8348)] = 297849, + [SMALL_STATE(8349)] = 297859, + [SMALL_STATE(8350)] = 297869, + [SMALL_STATE(8351)] = 297879, + [SMALL_STATE(8352)] = 297889, + [SMALL_STATE(8353)] = 297899, + [SMALL_STATE(8354)] = 297909, + [SMALL_STATE(8355)] = 297919, + [SMALL_STATE(8356)] = 297929, + [SMALL_STATE(8357)] = 297939, + [SMALL_STATE(8358)] = 297947, + [SMALL_STATE(8359)] = 297957, + [SMALL_STATE(8360)] = 297967, + [SMALL_STATE(8361)] = 297975, + [SMALL_STATE(8362)] = 297985, + [SMALL_STATE(8363)] = 297995, + [SMALL_STATE(8364)] = 298003, + [SMALL_STATE(8365)] = 298013, + [SMALL_STATE(8366)] = 298023, + [SMALL_STATE(8367)] = 298031, + [SMALL_STATE(8368)] = 298041, + [SMALL_STATE(8369)] = 298051, + [SMALL_STATE(8370)] = 298061, + [SMALL_STATE(8371)] = 298071, + [SMALL_STATE(8372)] = 298081, + [SMALL_STATE(8373)] = 298091, + [SMALL_STATE(8374)] = 298101, + [SMALL_STATE(8375)] = 298111, + [SMALL_STATE(8376)] = 298121, + [SMALL_STATE(8377)] = 298131, + [SMALL_STATE(8378)] = 298141, + [SMALL_STATE(8379)] = 298151, + [SMALL_STATE(8380)] = 298161, + [SMALL_STATE(8381)] = 298171, + [SMALL_STATE(8382)] = 298181, + [SMALL_STATE(8383)] = 298191, + [SMALL_STATE(8384)] = 298201, + [SMALL_STATE(8385)] = 298211, + [SMALL_STATE(8386)] = 298221, + [SMALL_STATE(8387)] = 298231, + [SMALL_STATE(8388)] = 298241, + [SMALL_STATE(8389)] = 298251, + [SMALL_STATE(8390)] = 298261, + [SMALL_STATE(8391)] = 298271, + [SMALL_STATE(8392)] = 298281, + [SMALL_STATE(8393)] = 298291, + [SMALL_STATE(8394)] = 298301, + [SMALL_STATE(8395)] = 298311, + [SMALL_STATE(8396)] = 298321, + [SMALL_STATE(8397)] = 298331, + [SMALL_STATE(8398)] = 298341, + [SMALL_STATE(8399)] = 298351, + [SMALL_STATE(8400)] = 298361, + [SMALL_STATE(8401)] = 298369, + [SMALL_STATE(8402)] = 298379, + [SMALL_STATE(8403)] = 298389, + [SMALL_STATE(8404)] = 298399, + [SMALL_STATE(8405)] = 298409, + [SMALL_STATE(8406)] = 298419, + [SMALL_STATE(8407)] = 298429, + [SMALL_STATE(8408)] = 298439, + [SMALL_STATE(8409)] = 298449, + [SMALL_STATE(8410)] = 298459, + [SMALL_STATE(8411)] = 298469, + [SMALL_STATE(8412)] = 298479, + [SMALL_STATE(8413)] = 298489, + [SMALL_STATE(8414)] = 298499, + [SMALL_STATE(8415)] = 298509, + [SMALL_STATE(8416)] = 298519, + [SMALL_STATE(8417)] = 298529, + [SMALL_STATE(8418)] = 298539, + [SMALL_STATE(8419)] = 298549, + [SMALL_STATE(8420)] = 298559, + [SMALL_STATE(8421)] = 298569, + [SMALL_STATE(8422)] = 298579, + [SMALL_STATE(8423)] = 298589, + [SMALL_STATE(8424)] = 298597, + [SMALL_STATE(8425)] = 298607, + [SMALL_STATE(8426)] = 298617, + [SMALL_STATE(8427)] = 298627, + [SMALL_STATE(8428)] = 298637, + [SMALL_STATE(8429)] = 298647, + [SMALL_STATE(8430)] = 298657, + [SMALL_STATE(8431)] = 298667, + [SMALL_STATE(8432)] = 298677, + [SMALL_STATE(8433)] = 298687, + [SMALL_STATE(8434)] = 298697, + [SMALL_STATE(8435)] = 298707, + [SMALL_STATE(8436)] = 298717, + [SMALL_STATE(8437)] = 298727, + [SMALL_STATE(8438)] = 298737, + [SMALL_STATE(8439)] = 298747, + [SMALL_STATE(8440)] = 298757, + [SMALL_STATE(8441)] = 298767, + [SMALL_STATE(8442)] = 298777, + [SMALL_STATE(8443)] = 298787, + [SMALL_STATE(8444)] = 298797, + [SMALL_STATE(8445)] = 298807, + [SMALL_STATE(8446)] = 298814, + [SMALL_STATE(8447)] = 298821, + [SMALL_STATE(8448)] = 298828, + [SMALL_STATE(8449)] = 298835, + [SMALL_STATE(8450)] = 298842, + [SMALL_STATE(8451)] = 298849, + [SMALL_STATE(8452)] = 298856, + [SMALL_STATE(8453)] = 298863, + [SMALL_STATE(8454)] = 298870, + [SMALL_STATE(8455)] = 298877, + [SMALL_STATE(8456)] = 298884, + [SMALL_STATE(8457)] = 298891, + [SMALL_STATE(8458)] = 298898, + [SMALL_STATE(8459)] = 298905, + [SMALL_STATE(8460)] = 298912, + [SMALL_STATE(8461)] = 298919, + [SMALL_STATE(8462)] = 298926, + [SMALL_STATE(8463)] = 298933, + [SMALL_STATE(8464)] = 298940, + [SMALL_STATE(8465)] = 298947, + [SMALL_STATE(8466)] = 298954, + [SMALL_STATE(8467)] = 298961, + [SMALL_STATE(8468)] = 298968, + [SMALL_STATE(8469)] = 298975, + [SMALL_STATE(8470)] = 298982, + [SMALL_STATE(8471)] = 298989, + [SMALL_STATE(8472)] = 298996, + [SMALL_STATE(8473)] = 299003, + [SMALL_STATE(8474)] = 299010, + [SMALL_STATE(8475)] = 299017, + [SMALL_STATE(8476)] = 299024, + [SMALL_STATE(8477)] = 299031, + [SMALL_STATE(8478)] = 299038, + [SMALL_STATE(8479)] = 299045, + [SMALL_STATE(8480)] = 299052, + [SMALL_STATE(8481)] = 299059, + [SMALL_STATE(8482)] = 299066, + [SMALL_STATE(8483)] = 299073, + [SMALL_STATE(8484)] = 299080, + [SMALL_STATE(8485)] = 299087, + [SMALL_STATE(8486)] = 299094, + [SMALL_STATE(8487)] = 299101, + [SMALL_STATE(8488)] = 299108, + [SMALL_STATE(8489)] = 299115, + [SMALL_STATE(8490)] = 299122, + [SMALL_STATE(8491)] = 299129, + [SMALL_STATE(8492)] = 299136, + [SMALL_STATE(8493)] = 299143, + [SMALL_STATE(8494)] = 299150, + [SMALL_STATE(8495)] = 299157, + [SMALL_STATE(8496)] = 299164, + [SMALL_STATE(8497)] = 299171, + [SMALL_STATE(8498)] = 299178, + [SMALL_STATE(8499)] = 299185, + [SMALL_STATE(8500)] = 299192, + [SMALL_STATE(8501)] = 299199, + [SMALL_STATE(8502)] = 299206, + [SMALL_STATE(8503)] = 299213, + [SMALL_STATE(8504)] = 299220, + [SMALL_STATE(8505)] = 299227, + [SMALL_STATE(8506)] = 299234, + [SMALL_STATE(8507)] = 299241, + [SMALL_STATE(8508)] = 299248, + [SMALL_STATE(8509)] = 299255, + [SMALL_STATE(8510)] = 299262, + [SMALL_STATE(8511)] = 299269, + [SMALL_STATE(8512)] = 299276, + [SMALL_STATE(8513)] = 299283, + [SMALL_STATE(8514)] = 299290, + [SMALL_STATE(8515)] = 299297, + [SMALL_STATE(8516)] = 299304, + [SMALL_STATE(8517)] = 299311, + [SMALL_STATE(8518)] = 299318, + [SMALL_STATE(8519)] = 299325, + [SMALL_STATE(8520)] = 299332, + [SMALL_STATE(8521)] = 299339, + [SMALL_STATE(8522)] = 299346, + [SMALL_STATE(8523)] = 299353, + [SMALL_STATE(8524)] = 299360, + [SMALL_STATE(8525)] = 299367, + [SMALL_STATE(8526)] = 299374, + [SMALL_STATE(8527)] = 299381, + [SMALL_STATE(8528)] = 299388, + [SMALL_STATE(8529)] = 299395, + [SMALL_STATE(8530)] = 299402, + [SMALL_STATE(8531)] = 299409, + [SMALL_STATE(8532)] = 299416, + [SMALL_STATE(8533)] = 299423, + [SMALL_STATE(8534)] = 299430, + [SMALL_STATE(8535)] = 299437, + [SMALL_STATE(8536)] = 299444, + [SMALL_STATE(8537)] = 299451, + [SMALL_STATE(8538)] = 299458, + [SMALL_STATE(8539)] = 299465, + [SMALL_STATE(8540)] = 299472, + [SMALL_STATE(8541)] = 299479, + [SMALL_STATE(8542)] = 299486, + [SMALL_STATE(8543)] = 299493, + [SMALL_STATE(8544)] = 299500, + [SMALL_STATE(8545)] = 299507, + [SMALL_STATE(8546)] = 299514, + [SMALL_STATE(8547)] = 299521, + [SMALL_STATE(8548)] = 299528, + [SMALL_STATE(8549)] = 299535, + [SMALL_STATE(8550)] = 299542, + [SMALL_STATE(8551)] = 299549, + [SMALL_STATE(8552)] = 299556, + [SMALL_STATE(8553)] = 299563, + [SMALL_STATE(8554)] = 299570, + [SMALL_STATE(8555)] = 299577, + [SMALL_STATE(8556)] = 299584, + [SMALL_STATE(8557)] = 299591, + [SMALL_STATE(8558)] = 299598, + [SMALL_STATE(8559)] = 299605, + [SMALL_STATE(8560)] = 299612, + [SMALL_STATE(8561)] = 299619, + [SMALL_STATE(8562)] = 299626, + [SMALL_STATE(8563)] = 299633, + [SMALL_STATE(8564)] = 299640, + [SMALL_STATE(8565)] = 299647, + [SMALL_STATE(8566)] = 299654, + [SMALL_STATE(8567)] = 299661, + [SMALL_STATE(8568)] = 299668, + [SMALL_STATE(8569)] = 299675, + [SMALL_STATE(8570)] = 299682, + [SMALL_STATE(8571)] = 299689, + [SMALL_STATE(8572)] = 299696, + [SMALL_STATE(8573)] = 299703, + [SMALL_STATE(8574)] = 299710, + [SMALL_STATE(8575)] = 299717, + [SMALL_STATE(8576)] = 299724, + [SMALL_STATE(8577)] = 299731, + [SMALL_STATE(8578)] = 299738, + [SMALL_STATE(8579)] = 299745, + [SMALL_STATE(8580)] = 299752, + [SMALL_STATE(8581)] = 299759, + [SMALL_STATE(8582)] = 299766, + [SMALL_STATE(8583)] = 299773, + [SMALL_STATE(8584)] = 299780, + [SMALL_STATE(8585)] = 299787, + [SMALL_STATE(8586)] = 299794, + [SMALL_STATE(8587)] = 299801, + [SMALL_STATE(8588)] = 299808, + [SMALL_STATE(8589)] = 299815, + [SMALL_STATE(8590)] = 299822, + [SMALL_STATE(8591)] = 299829, + [SMALL_STATE(8592)] = 299836, + [SMALL_STATE(8593)] = 299843, + [SMALL_STATE(8594)] = 299850, + [SMALL_STATE(8595)] = 299857, + [SMALL_STATE(8596)] = 299864, + [SMALL_STATE(8597)] = 299871, + [SMALL_STATE(8598)] = 299878, + [SMALL_STATE(8599)] = 299885, + [SMALL_STATE(8600)] = 299892, + [SMALL_STATE(8601)] = 299899, + [SMALL_STATE(8602)] = 299906, + [SMALL_STATE(8603)] = 299913, + [SMALL_STATE(8604)] = 299920, + [SMALL_STATE(8605)] = 299927, + [SMALL_STATE(8606)] = 299934, + [SMALL_STATE(8607)] = 299941, + [SMALL_STATE(8608)] = 299948, + [SMALL_STATE(8609)] = 299955, + [SMALL_STATE(8610)] = 299962, + [SMALL_STATE(8611)] = 299969, + [SMALL_STATE(8612)] = 299976, + [SMALL_STATE(8613)] = 299983, + [SMALL_STATE(8614)] = 299990, + [SMALL_STATE(8615)] = 299997, + [SMALL_STATE(8616)] = 300004, + [SMALL_STATE(8617)] = 300011, + [SMALL_STATE(8618)] = 300018, + [SMALL_STATE(8619)] = 300025, + [SMALL_STATE(8620)] = 300032, + [SMALL_STATE(8621)] = 300039, + [SMALL_STATE(8622)] = 300046, + [SMALL_STATE(8623)] = 300053, + [SMALL_STATE(8624)] = 300060, + [SMALL_STATE(8625)] = 300067, + [SMALL_STATE(8626)] = 300074, + [SMALL_STATE(8627)] = 300081, + [SMALL_STATE(8628)] = 300088, + [SMALL_STATE(8629)] = 300095, + [SMALL_STATE(8630)] = 300102, + [SMALL_STATE(8631)] = 300109, + [SMALL_STATE(8632)] = 300116, + [SMALL_STATE(8633)] = 300123, + [SMALL_STATE(8634)] = 300130, + [SMALL_STATE(8635)] = 300137, + [SMALL_STATE(8636)] = 300144, + [SMALL_STATE(8637)] = 300151, + [SMALL_STATE(8638)] = 300158, + [SMALL_STATE(8639)] = 300165, + [SMALL_STATE(8640)] = 300172, + [SMALL_STATE(8641)] = 300179, + [SMALL_STATE(8642)] = 300186, + [SMALL_STATE(8643)] = 300193, + [SMALL_STATE(8644)] = 300200, + [SMALL_STATE(8645)] = 300207, + [SMALL_STATE(8646)] = 300214, + [SMALL_STATE(8647)] = 300221, + [SMALL_STATE(8648)] = 300228, + [SMALL_STATE(8649)] = 300235, + [SMALL_STATE(8650)] = 300242, + [SMALL_STATE(8651)] = 300249, + [SMALL_STATE(8652)] = 300256, + [SMALL_STATE(8653)] = 300263, + [SMALL_STATE(8654)] = 300270, + [SMALL_STATE(8655)] = 300277, + [SMALL_STATE(8656)] = 300284, + [SMALL_STATE(8657)] = 300291, + [SMALL_STATE(8658)] = 300298, + [SMALL_STATE(8659)] = 300305, + [SMALL_STATE(8660)] = 300312, + [SMALL_STATE(8661)] = 300319, + [SMALL_STATE(8662)] = 300326, + [SMALL_STATE(8663)] = 300333, + [SMALL_STATE(8664)] = 300340, + [SMALL_STATE(8665)] = 300347, + [SMALL_STATE(8666)] = 300354, + [SMALL_STATE(8667)] = 300361, + [SMALL_STATE(8668)] = 300368, + [SMALL_STATE(8669)] = 300375, + [SMALL_STATE(8670)] = 300382, + [SMALL_STATE(8671)] = 300389, + [SMALL_STATE(8672)] = 300396, + [SMALL_STATE(8673)] = 300403, + [SMALL_STATE(8674)] = 300410, + [SMALL_STATE(8675)] = 300417, + [SMALL_STATE(8676)] = 300424, + [SMALL_STATE(8677)] = 300431, + [SMALL_STATE(8678)] = 300438, + [SMALL_STATE(8679)] = 300445, + [SMALL_STATE(8680)] = 300452, + [SMALL_STATE(8681)] = 300459, + [SMALL_STATE(8682)] = 300466, + [SMALL_STATE(8683)] = 300473, + [SMALL_STATE(8684)] = 300480, + [SMALL_STATE(8685)] = 300487, + [SMALL_STATE(8686)] = 300494, + [SMALL_STATE(8687)] = 300501, + [SMALL_STATE(8688)] = 300508, + [SMALL_STATE(8689)] = 300515, + [SMALL_STATE(8690)] = 300522, + [SMALL_STATE(8691)] = 300529, + [SMALL_STATE(8692)] = 300536, + [SMALL_STATE(8693)] = 300543, + [SMALL_STATE(8694)] = 300550, + [SMALL_STATE(8695)] = 300557, + [SMALL_STATE(8696)] = 300564, + [SMALL_STATE(8697)] = 300571, + [SMALL_STATE(8698)] = 300578, + [SMALL_STATE(8699)] = 300585, + [SMALL_STATE(8700)] = 300592, + [SMALL_STATE(8701)] = 300599, + [SMALL_STATE(8702)] = 300606, + [SMALL_STATE(8703)] = 300613, + [SMALL_STATE(8704)] = 300620, + [SMALL_STATE(8705)] = 300627, + [SMALL_STATE(8706)] = 300634, + [SMALL_STATE(8707)] = 300641, + [SMALL_STATE(8708)] = 300648, + [SMALL_STATE(8709)] = 300655, + [SMALL_STATE(8710)] = 300662, + [SMALL_STATE(8711)] = 300669, + [SMALL_STATE(8712)] = 300676, + [SMALL_STATE(8713)] = 300683, + [SMALL_STATE(8714)] = 300690, + [SMALL_STATE(8715)] = 300697, + [SMALL_STATE(8716)] = 300704, + [SMALL_STATE(8717)] = 300711, + [SMALL_STATE(8718)] = 300718, + [SMALL_STATE(8719)] = 300725, + [SMALL_STATE(8720)] = 300732, + [SMALL_STATE(8721)] = 300739, + [SMALL_STATE(8722)] = 300746, + [SMALL_STATE(8723)] = 300753, + [SMALL_STATE(8724)] = 300760, + [SMALL_STATE(8725)] = 300767, + [SMALL_STATE(8726)] = 300774, + [SMALL_STATE(8727)] = 300781, + [SMALL_STATE(8728)] = 300788, + [SMALL_STATE(8729)] = 300795, + [SMALL_STATE(8730)] = 300802, + [SMALL_STATE(8731)] = 300809, + [SMALL_STATE(8732)] = 300816, + [SMALL_STATE(8733)] = 300823, + [SMALL_STATE(8734)] = 300830, + [SMALL_STATE(8735)] = 300837, + [SMALL_STATE(8736)] = 300844, + [SMALL_STATE(8737)] = 300851, + [SMALL_STATE(8738)] = 300858, + [SMALL_STATE(8739)] = 300865, + [SMALL_STATE(8740)] = 300872, + [SMALL_STATE(8741)] = 300879, + [SMALL_STATE(8742)] = 300886, + [SMALL_STATE(8743)] = 300893, + [SMALL_STATE(8744)] = 300900, + [SMALL_STATE(8745)] = 300907, + [SMALL_STATE(8746)] = 300914, + [SMALL_STATE(8747)] = 300921, + [SMALL_STATE(8748)] = 300928, + [SMALL_STATE(8749)] = 300935, + [SMALL_STATE(8750)] = 300942, + [SMALL_STATE(8751)] = 300949, + [SMALL_STATE(8752)] = 300956, + [SMALL_STATE(8753)] = 300963, + [SMALL_STATE(8754)] = 300970, + [SMALL_STATE(8755)] = 300977, + [SMALL_STATE(8756)] = 300984, + [SMALL_STATE(8757)] = 300991, + [SMALL_STATE(8758)] = 300998, + [SMALL_STATE(8759)] = 301005, + [SMALL_STATE(8760)] = 301012, + [SMALL_STATE(8761)] = 301019, + [SMALL_STATE(8762)] = 301026, + [SMALL_STATE(8763)] = 301033, + [SMALL_STATE(8764)] = 301040, + [SMALL_STATE(8765)] = 301047, + [SMALL_STATE(8766)] = 301054, + [SMALL_STATE(8767)] = 301061, + [SMALL_STATE(8768)] = 301068, + [SMALL_STATE(8769)] = 301075, + [SMALL_STATE(8770)] = 301082, + [SMALL_STATE(8771)] = 301089, + [SMALL_STATE(8772)] = 301096, + [SMALL_STATE(8773)] = 301103, + [SMALL_STATE(8774)] = 301110, + [SMALL_STATE(8775)] = 301117, + [SMALL_STATE(8776)] = 301124, + [SMALL_STATE(8777)] = 301131, + [SMALL_STATE(8778)] = 301138, + [SMALL_STATE(8779)] = 301145, + [SMALL_STATE(8780)] = 301152, + [SMALL_STATE(8781)] = 301159, + [SMALL_STATE(8782)] = 301166, + [SMALL_STATE(8783)] = 301173, + [SMALL_STATE(8784)] = 301180, + [SMALL_STATE(8785)] = 301187, + [SMALL_STATE(8786)] = 301194, + [SMALL_STATE(8787)] = 301201, + [SMALL_STATE(8788)] = 301208, + [SMALL_STATE(8789)] = 301215, + [SMALL_STATE(8790)] = 301222, + [SMALL_STATE(8791)] = 301229, + [SMALL_STATE(8792)] = 301236, + [SMALL_STATE(8793)] = 301243, + [SMALL_STATE(8794)] = 301250, + [SMALL_STATE(8795)] = 301257, + [SMALL_STATE(8796)] = 301264, + [SMALL_STATE(8797)] = 301271, + [SMALL_STATE(8798)] = 301278, + [SMALL_STATE(8799)] = 301285, + [SMALL_STATE(8800)] = 301292, + [SMALL_STATE(8801)] = 301299, + [SMALL_STATE(8802)] = 301306, + [SMALL_STATE(8803)] = 301313, + [SMALL_STATE(8804)] = 301320, + [SMALL_STATE(8805)] = 301327, + [SMALL_STATE(8806)] = 301334, + [SMALL_STATE(8807)] = 301341, + [SMALL_STATE(8808)] = 301348, + [SMALL_STATE(8809)] = 301355, + [SMALL_STATE(8810)] = 301362, + [SMALL_STATE(8811)] = 301369, + [SMALL_STATE(8812)] = 301376, + [SMALL_STATE(8813)] = 301383, + [SMALL_STATE(8814)] = 301390, + [SMALL_STATE(8815)] = 301397, + [SMALL_STATE(8816)] = 301404, + [SMALL_STATE(8817)] = 301411, + [SMALL_STATE(8818)] = 301418, + [SMALL_STATE(8819)] = 301425, + [SMALL_STATE(8820)] = 301432, + [SMALL_STATE(8821)] = 301439, + [SMALL_STATE(8822)] = 301446, + [SMALL_STATE(8823)] = 301453, + [SMALL_STATE(8824)] = 301460, + [SMALL_STATE(8825)] = 301467, + [SMALL_STATE(8826)] = 301474, + [SMALL_STATE(8827)] = 301481, + [SMALL_STATE(8828)] = 301488, + [SMALL_STATE(8829)] = 301495, + [SMALL_STATE(8830)] = 301502, + [SMALL_STATE(8831)] = 301509, + [SMALL_STATE(8832)] = 301516, + [SMALL_STATE(8833)] = 301523, + [SMALL_STATE(8834)] = 301530, + [SMALL_STATE(8835)] = 301537, + [SMALL_STATE(8836)] = 301544, + [SMALL_STATE(8837)] = 301551, + [SMALL_STATE(8838)] = 301558, + [SMALL_STATE(8839)] = 301565, + [SMALL_STATE(8840)] = 301572, + [SMALL_STATE(8841)] = 301579, + [SMALL_STATE(8842)] = 301586, + [SMALL_STATE(8843)] = 301593, + [SMALL_STATE(8844)] = 301600, + [SMALL_STATE(8845)] = 301607, + [SMALL_STATE(8846)] = 301614, + [SMALL_STATE(8847)] = 301621, + [SMALL_STATE(8848)] = 301628, + [SMALL_STATE(8849)] = 301635, + [SMALL_STATE(8850)] = 301642, + [SMALL_STATE(8851)] = 301649, + [SMALL_STATE(8852)] = 301656, + [SMALL_STATE(8853)] = 301663, + [SMALL_STATE(8854)] = 301670, + [SMALL_STATE(8855)] = 301677, + [SMALL_STATE(8856)] = 301684, + [SMALL_STATE(8857)] = 301691, + [SMALL_STATE(8858)] = 301698, + [SMALL_STATE(8859)] = 301705, + [SMALL_STATE(8860)] = 301712, + [SMALL_STATE(8861)] = 301719, + [SMALL_STATE(8862)] = 301726, + [SMALL_STATE(8863)] = 301733, + [SMALL_STATE(8864)] = 301740, + [SMALL_STATE(8865)] = 301747, + [SMALL_STATE(8866)] = 301754, + [SMALL_STATE(8867)] = 301761, + [SMALL_STATE(8868)] = 301768, + [SMALL_STATE(8869)] = 301775, + [SMALL_STATE(8870)] = 301782, + [SMALL_STATE(8871)] = 301789, + [SMALL_STATE(8872)] = 301796, + [SMALL_STATE(8873)] = 301803, + [SMALL_STATE(8874)] = 301810, + [SMALL_STATE(8875)] = 301817, + [SMALL_STATE(8876)] = 301824, + [SMALL_STATE(8877)] = 301831, + [SMALL_STATE(8878)] = 301838, + [SMALL_STATE(8879)] = 301845, + [SMALL_STATE(8880)] = 301852, + [SMALL_STATE(8881)] = 301859, + [SMALL_STATE(8882)] = 301866, + [SMALL_STATE(8883)] = 301873, + [SMALL_STATE(8884)] = 301880, + [SMALL_STATE(8885)] = 301887, + [SMALL_STATE(8886)] = 301894, + [SMALL_STATE(8887)] = 301901, + [SMALL_STATE(8888)] = 301908, + [SMALL_STATE(8889)] = 301915, + [SMALL_STATE(8890)] = 301922, + [SMALL_STATE(8891)] = 301929, + [SMALL_STATE(8892)] = 301936, + [SMALL_STATE(8893)] = 301943, + [SMALL_STATE(8894)] = 301950, + [SMALL_STATE(8895)] = 301957, + [SMALL_STATE(8896)] = 301964, + [SMALL_STATE(8897)] = 301971, + [SMALL_STATE(8898)] = 301978, + [SMALL_STATE(8899)] = 301985, + [SMALL_STATE(8900)] = 301992, + [SMALL_STATE(8901)] = 301999, + [SMALL_STATE(8902)] = 302006, + [SMALL_STATE(8903)] = 302013, + [SMALL_STATE(8904)] = 302020, + [SMALL_STATE(8905)] = 302027, + [SMALL_STATE(8906)] = 302034, + [SMALL_STATE(8907)] = 302041, + [SMALL_STATE(8908)] = 302048, + [SMALL_STATE(8909)] = 302055, + [SMALL_STATE(8910)] = 302062, + [SMALL_STATE(8911)] = 302069, + [SMALL_STATE(8912)] = 302076, + [SMALL_STATE(8913)] = 302083, + [SMALL_STATE(8914)] = 302090, + [SMALL_STATE(8915)] = 302097, + [SMALL_STATE(8916)] = 302104, + [SMALL_STATE(8917)] = 302111, + [SMALL_STATE(8918)] = 302118, + [SMALL_STATE(8919)] = 302125, + [SMALL_STATE(8920)] = 302132, + [SMALL_STATE(8921)] = 302139, + [SMALL_STATE(8922)] = 302146, + [SMALL_STATE(8923)] = 302153, + [SMALL_STATE(8924)] = 302160, + [SMALL_STATE(8925)] = 302167, + [SMALL_STATE(8926)] = 302174, + [SMALL_STATE(8927)] = 302181, + [SMALL_STATE(8928)] = 302188, + [SMALL_STATE(8929)] = 302195, + [SMALL_STATE(8930)] = 302202, + [SMALL_STATE(8931)] = 302209, + [SMALL_STATE(8932)] = 302216, + [SMALL_STATE(8933)] = 302223, + [SMALL_STATE(8934)] = 302230, + [SMALL_STATE(8935)] = 302237, + [SMALL_STATE(8936)] = 302244, + [SMALL_STATE(8937)] = 302251, + [SMALL_STATE(8938)] = 302258, + [SMALL_STATE(8939)] = 302265, + [SMALL_STATE(8940)] = 302272, + [SMALL_STATE(8941)] = 302279, + [SMALL_STATE(8942)] = 302286, + [SMALL_STATE(8943)] = 302293, + [SMALL_STATE(8944)] = 302300, + [SMALL_STATE(8945)] = 302307, + [SMALL_STATE(8946)] = 302314, + [SMALL_STATE(8947)] = 302321, + [SMALL_STATE(8948)] = 302328, + [SMALL_STATE(8949)] = 302335, + [SMALL_STATE(8950)] = 302342, + [SMALL_STATE(8951)] = 302349, + [SMALL_STATE(8952)] = 302356, + [SMALL_STATE(8953)] = 302363, + [SMALL_STATE(8954)] = 302370, + [SMALL_STATE(8955)] = 302377, + [SMALL_STATE(8956)] = 302384, + [SMALL_STATE(8957)] = 302391, + [SMALL_STATE(8958)] = 302398, + [SMALL_STATE(8959)] = 302405, + [SMALL_STATE(8960)] = 302412, + [SMALL_STATE(8961)] = 302419, + [SMALL_STATE(8962)] = 302426, + [SMALL_STATE(8963)] = 302433, + [SMALL_STATE(8964)] = 302440, + [SMALL_STATE(8965)] = 302447, + [SMALL_STATE(8966)] = 302454, + [SMALL_STATE(8967)] = 302461, + [SMALL_STATE(8968)] = 302468, + [SMALL_STATE(8969)] = 302475, + [SMALL_STATE(8970)] = 302482, + [SMALL_STATE(8971)] = 302489, + [SMALL_STATE(8972)] = 302496, + [SMALL_STATE(8973)] = 302503, + [SMALL_STATE(8974)] = 302510, + [SMALL_STATE(8975)] = 302517, + [SMALL_STATE(8976)] = 302524, + [SMALL_STATE(8977)] = 302531, + [SMALL_STATE(8978)] = 302538, + [SMALL_STATE(8979)] = 302545, + [SMALL_STATE(8980)] = 302552, + [SMALL_STATE(8981)] = 302559, + [SMALL_STATE(8982)] = 302566, + [SMALL_STATE(8983)] = 302573, + [SMALL_STATE(8984)] = 302580, + [SMALL_STATE(8985)] = 302587, + [SMALL_STATE(8986)] = 302594, + [SMALL_STATE(8987)] = 302601, + [SMALL_STATE(8988)] = 302608, + [SMALL_STATE(8989)] = 302615, + [SMALL_STATE(8990)] = 302622, + [SMALL_STATE(8991)] = 302629, + [SMALL_STATE(8992)] = 302636, + [SMALL_STATE(8993)] = 302643, + [SMALL_STATE(8994)] = 302650, + [SMALL_STATE(8995)] = 302657, + [SMALL_STATE(8996)] = 302664, + [SMALL_STATE(8997)] = 302671, + [SMALL_STATE(8998)] = 302678, + [SMALL_STATE(8999)] = 302685, + [SMALL_STATE(9000)] = 302692, + [SMALL_STATE(9001)] = 302699, + [SMALL_STATE(9002)] = 302706, + [SMALL_STATE(9003)] = 302713, + [SMALL_STATE(9004)] = 302720, + [SMALL_STATE(9005)] = 302727, + [SMALL_STATE(9006)] = 302734, + [SMALL_STATE(9007)] = 302741, + [SMALL_STATE(9008)] = 302748, + [SMALL_STATE(9009)] = 302755, + [SMALL_STATE(9010)] = 302762, + [SMALL_STATE(9011)] = 302769, + [SMALL_STATE(9012)] = 302776, + [SMALL_STATE(9013)] = 302783, + [SMALL_STATE(9014)] = 302790, + [SMALL_STATE(9015)] = 302797, + [SMALL_STATE(9016)] = 302804, + [SMALL_STATE(9017)] = 302811, + [SMALL_STATE(9018)] = 302818, + [SMALL_STATE(9019)] = 302825, + [SMALL_STATE(9020)] = 302832, + [SMALL_STATE(9021)] = 302839, + [SMALL_STATE(9022)] = 302846, + [SMALL_STATE(9023)] = 302853, + [SMALL_STATE(9024)] = 302860, + [SMALL_STATE(9025)] = 302867, + [SMALL_STATE(9026)] = 302874, + [SMALL_STATE(9027)] = 302881, + [SMALL_STATE(9028)] = 302888, + [SMALL_STATE(9029)] = 302895, + [SMALL_STATE(9030)] = 302902, + [SMALL_STATE(9031)] = 302909, + [SMALL_STATE(9032)] = 302916, + [SMALL_STATE(9033)] = 302923, + [SMALL_STATE(9034)] = 302930, + [SMALL_STATE(9035)] = 302937, + [SMALL_STATE(9036)] = 302944, + [SMALL_STATE(9037)] = 302951, + [SMALL_STATE(9038)] = 302958, + [SMALL_STATE(9039)] = 302965, + [SMALL_STATE(9040)] = 302972, + [SMALL_STATE(9041)] = 302979, + [SMALL_STATE(9042)] = 302986, + [SMALL_STATE(9043)] = 302993, + [SMALL_STATE(9044)] = 303000, + [SMALL_STATE(9045)] = 303007, + [SMALL_STATE(9046)] = 303014, + [SMALL_STATE(9047)] = 303021, + [SMALL_STATE(9048)] = 303028, + [SMALL_STATE(9049)] = 303035, + [SMALL_STATE(9050)] = 303042, + [SMALL_STATE(9051)] = 303049, + [SMALL_STATE(9052)] = 303056, + [SMALL_STATE(9053)] = 303063, + [SMALL_STATE(9054)] = 303070, + [SMALL_STATE(9055)] = 303077, + [SMALL_STATE(9056)] = 303084, + [SMALL_STATE(9057)] = 303091, + [SMALL_STATE(9058)] = 303098, + [SMALL_STATE(9059)] = 303105, + [SMALL_STATE(9060)] = 303112, + [SMALL_STATE(9061)] = 303119, + [SMALL_STATE(9062)] = 303126, + [SMALL_STATE(9063)] = 303133, + [SMALL_STATE(9064)] = 303140, + [SMALL_STATE(9065)] = 303147, + [SMALL_STATE(9066)] = 303154, + [SMALL_STATE(9067)] = 303161, + [SMALL_STATE(9068)] = 303168, + [SMALL_STATE(9069)] = 303175, + [SMALL_STATE(9070)] = 303182, + [SMALL_STATE(9071)] = 303189, + [SMALL_STATE(9072)] = 303196, + [SMALL_STATE(9073)] = 303203, + [SMALL_STATE(9074)] = 303210, + [SMALL_STATE(9075)] = 303217, + [SMALL_STATE(9076)] = 303224, + [SMALL_STATE(9077)] = 303231, + [SMALL_STATE(9078)] = 303238, + [SMALL_STATE(9079)] = 303245, + [SMALL_STATE(9080)] = 303252, + [SMALL_STATE(9081)] = 303259, + [SMALL_STATE(9082)] = 303266, + [SMALL_STATE(9083)] = 303273, + [SMALL_STATE(9084)] = 303280, + [SMALL_STATE(9085)] = 303287, + [SMALL_STATE(9086)] = 303294, + [SMALL_STATE(9087)] = 303301, + [SMALL_STATE(9088)] = 303308, + [SMALL_STATE(9089)] = 303315, + [SMALL_STATE(9090)] = 303322, + [SMALL_STATE(9091)] = 303329, + [SMALL_STATE(9092)] = 303336, + [SMALL_STATE(9093)] = 303343, + [SMALL_STATE(9094)] = 303350, + [SMALL_STATE(9095)] = 303357, + [SMALL_STATE(9096)] = 303364, + [SMALL_STATE(9097)] = 303371, + [SMALL_STATE(9098)] = 303378, + [SMALL_STATE(9099)] = 303385, + [SMALL_STATE(9100)] = 303392, + [SMALL_STATE(9101)] = 303399, + [SMALL_STATE(9102)] = 303406, + [SMALL_STATE(9103)] = 303413, + [SMALL_STATE(9104)] = 303420, + [SMALL_STATE(9105)] = 303427, + [SMALL_STATE(9106)] = 303434, + [SMALL_STATE(9107)] = 303441, + [SMALL_STATE(9108)] = 303448, + [SMALL_STATE(9109)] = 303455, + [SMALL_STATE(9110)] = 303462, + [SMALL_STATE(9111)] = 303469, + [SMALL_STATE(9112)] = 303476, + [SMALL_STATE(9113)] = 303483, + [SMALL_STATE(9114)] = 303490, + [SMALL_STATE(9115)] = 303497, + [SMALL_STATE(9116)] = 303504, + [SMALL_STATE(9117)] = 303511, + [SMALL_STATE(9118)] = 303518, + [SMALL_STATE(9119)] = 303525, + [SMALL_STATE(9120)] = 303532, + [SMALL_STATE(9121)] = 303539, + [SMALL_STATE(9122)] = 303546, + [SMALL_STATE(9123)] = 303553, + [SMALL_STATE(9124)] = 303560, + [SMALL_STATE(9125)] = 303567, + [SMALL_STATE(9126)] = 303574, + [SMALL_STATE(9127)] = 303581, + [SMALL_STATE(9128)] = 303588, + [SMALL_STATE(9129)] = 303595, + [SMALL_STATE(9130)] = 303602, + [SMALL_STATE(9131)] = 303609, + [SMALL_STATE(9132)] = 303616, + [SMALL_STATE(9133)] = 303623, + [SMALL_STATE(9134)] = 303630, + [SMALL_STATE(9135)] = 303637, + [SMALL_STATE(9136)] = 303644, + [SMALL_STATE(9137)] = 303651, + [SMALL_STATE(9138)] = 303658, + [SMALL_STATE(9139)] = 303665, + [SMALL_STATE(9140)] = 303672, + [SMALL_STATE(9141)] = 303679, + [SMALL_STATE(9142)] = 303686, + [SMALL_STATE(9143)] = 303693, + [SMALL_STATE(9144)] = 303700, + [SMALL_STATE(9145)] = 303707, + [SMALL_STATE(9146)] = 303714, + [SMALL_STATE(9147)] = 303721, + [SMALL_STATE(9148)] = 303728, + [SMALL_STATE(9149)] = 303735, + [SMALL_STATE(9150)] = 303742, + [SMALL_STATE(9151)] = 303749, + [SMALL_STATE(9152)] = 303756, + [SMALL_STATE(9153)] = 303763, + [SMALL_STATE(9154)] = 303770, + [SMALL_STATE(9155)] = 303777, + [SMALL_STATE(9156)] = 303784, + [SMALL_STATE(9157)] = 303791, + [SMALL_STATE(9158)] = 303798, + [SMALL_STATE(9159)] = 303805, + [SMALL_STATE(9160)] = 303812, + [SMALL_STATE(9161)] = 303819, + [SMALL_STATE(9162)] = 303826, + [SMALL_STATE(9163)] = 303833, + [SMALL_STATE(9164)] = 303840, + [SMALL_STATE(9165)] = 303847, + [SMALL_STATE(9166)] = 303854, + [SMALL_STATE(9167)] = 303861, + [SMALL_STATE(9168)] = 303868, + [SMALL_STATE(9169)] = 303875, + [SMALL_STATE(9170)] = 303882, + [SMALL_STATE(9171)] = 303889, + [SMALL_STATE(9172)] = 303896, + [SMALL_STATE(9173)] = 303903, + [SMALL_STATE(9174)] = 303910, + [SMALL_STATE(9175)] = 303917, + [SMALL_STATE(9176)] = 303924, + [SMALL_STATE(9177)] = 303931, + [SMALL_STATE(9178)] = 303938, + [SMALL_STATE(9179)] = 303945, + [SMALL_STATE(9180)] = 303952, + [SMALL_STATE(9181)] = 303959, + [SMALL_STATE(9182)] = 303966, + [SMALL_STATE(9183)] = 303973, + [SMALL_STATE(9184)] = 303980, + [SMALL_STATE(9185)] = 303987, + [SMALL_STATE(9186)] = 303994, + [SMALL_STATE(9187)] = 304001, + [SMALL_STATE(9188)] = 304008, + [SMALL_STATE(9189)] = 304015, + [SMALL_STATE(9190)] = 304022, + [SMALL_STATE(9191)] = 304029, + [SMALL_STATE(9192)] = 304036, + [SMALL_STATE(9193)] = 304043, + [SMALL_STATE(9194)] = 304050, + [SMALL_STATE(9195)] = 304057, + [SMALL_STATE(9196)] = 304064, + [SMALL_STATE(9197)] = 304071, + [SMALL_STATE(9198)] = 304078, + [SMALL_STATE(9199)] = 304085, + [SMALL_STATE(9200)] = 304092, + [SMALL_STATE(9201)] = 304099, + [SMALL_STATE(9202)] = 304106, + [SMALL_STATE(9203)] = 304113, + [SMALL_STATE(9204)] = 304120, + [SMALL_STATE(9205)] = 304127, + [SMALL_STATE(9206)] = 304134, + [SMALL_STATE(9207)] = 304141, + [SMALL_STATE(9208)] = 304148, + [SMALL_STATE(9209)] = 304155, + [SMALL_STATE(9210)] = 304162, + [SMALL_STATE(9211)] = 304169, + [SMALL_STATE(9212)] = 304176, + [SMALL_STATE(9213)] = 304183, + [SMALL_STATE(9214)] = 304190, + [SMALL_STATE(9215)] = 304197, + [SMALL_STATE(9216)] = 304204, + [SMALL_STATE(9217)] = 304211, + [SMALL_STATE(9218)] = 304218, + [SMALL_STATE(9219)] = 304225, + [SMALL_STATE(9220)] = 304232, + [SMALL_STATE(9221)] = 304239, + [SMALL_STATE(9222)] = 304246, + [SMALL_STATE(9223)] = 304253, + [SMALL_STATE(9224)] = 304260, + [SMALL_STATE(9225)] = 304267, + [SMALL_STATE(9226)] = 304274, + [SMALL_STATE(9227)] = 304281, + [SMALL_STATE(9228)] = 304288, + [SMALL_STATE(9229)] = 304295, + [SMALL_STATE(9230)] = 304302, + [SMALL_STATE(9231)] = 304309, + [SMALL_STATE(9232)] = 304316, + [SMALL_STATE(9233)] = 304323, + [SMALL_STATE(9234)] = 304330, + [SMALL_STATE(9235)] = 304337, + [SMALL_STATE(9236)] = 304344, + [SMALL_STATE(9237)] = 304351, + [SMALL_STATE(9238)] = 304358, + [SMALL_STATE(9239)] = 304365, + [SMALL_STATE(9240)] = 304372, + [SMALL_STATE(9241)] = 304379, + [SMALL_STATE(9242)] = 304386, + [SMALL_STATE(9243)] = 304393, + [SMALL_STATE(9244)] = 304400, + [SMALL_STATE(9245)] = 304407, + [SMALL_STATE(9246)] = 304414, + [SMALL_STATE(9247)] = 304421, + [SMALL_STATE(9248)] = 304428, + [SMALL_STATE(9249)] = 304435, + [SMALL_STATE(9250)] = 304442, + [SMALL_STATE(9251)] = 304449, + [SMALL_STATE(9252)] = 304456, + [SMALL_STATE(9253)] = 304463, + [SMALL_STATE(9254)] = 304470, + [SMALL_STATE(9255)] = 304477, + [SMALL_STATE(9256)] = 304484, + [SMALL_STATE(9257)] = 304491, + [SMALL_STATE(9258)] = 304498, + [SMALL_STATE(9259)] = 304505, + [SMALL_STATE(9260)] = 304512, + [SMALL_STATE(9261)] = 304519, + [SMALL_STATE(9262)] = 304526, + [SMALL_STATE(9263)] = 304533, + [SMALL_STATE(9264)] = 304540, + [SMALL_STATE(9265)] = 304547, + [SMALL_STATE(9266)] = 304554, + [SMALL_STATE(9267)] = 304561, + [SMALL_STATE(9268)] = 304568, + [SMALL_STATE(9269)] = 304575, + [SMALL_STATE(9270)] = 304582, + [SMALL_STATE(9271)] = 304589, + [SMALL_STATE(9272)] = 304596, + [SMALL_STATE(9273)] = 304603, + [SMALL_STATE(9274)] = 304610, + [SMALL_STATE(9275)] = 304617, + [SMALL_STATE(9276)] = 304624, + [SMALL_STATE(9277)] = 304631, + [SMALL_STATE(9278)] = 304638, + [SMALL_STATE(9279)] = 304645, + [SMALL_STATE(9280)] = 304652, + [SMALL_STATE(9281)] = 304659, + [SMALL_STATE(9282)] = 304666, + [SMALL_STATE(9283)] = 304673, + [SMALL_STATE(9284)] = 304680, + [SMALL_STATE(9285)] = 304687, + [SMALL_STATE(9286)] = 304694, + [SMALL_STATE(9287)] = 304701, + [SMALL_STATE(9288)] = 304708, + [SMALL_STATE(9289)] = 304715, + [SMALL_STATE(9290)] = 304722, + [SMALL_STATE(9291)] = 304729, + [SMALL_STATE(9292)] = 304736, + [SMALL_STATE(9293)] = 304743, + [SMALL_STATE(9294)] = 304750, + [SMALL_STATE(9295)] = 304757, + [SMALL_STATE(9296)] = 304764, + [SMALL_STATE(9297)] = 304771, + [SMALL_STATE(9298)] = 304778, + [SMALL_STATE(9299)] = 304785, + [SMALL_STATE(9300)] = 304792, + [SMALL_STATE(9301)] = 304799, + [SMALL_STATE(9302)] = 304806, + [SMALL_STATE(9303)] = 304813, + [SMALL_STATE(9304)] = 304820, + [SMALL_STATE(9305)] = 304827, + [SMALL_STATE(9306)] = 304834, + [SMALL_STATE(9307)] = 304841, + [SMALL_STATE(9308)] = 304848, + [SMALL_STATE(9309)] = 304855, + [SMALL_STATE(9310)] = 304862, + [SMALL_STATE(9311)] = 304869, + [SMALL_STATE(9312)] = 304876, + [SMALL_STATE(9313)] = 304883, + [SMALL_STATE(9314)] = 304890, + [SMALL_STATE(9315)] = 304897, + [SMALL_STATE(9316)] = 304904, + [SMALL_STATE(9317)] = 304911, + [SMALL_STATE(9318)] = 304918, + [SMALL_STATE(9319)] = 304925, + [SMALL_STATE(9320)] = 304932, + [SMALL_STATE(9321)] = 304939, + [SMALL_STATE(9322)] = 304946, + [SMALL_STATE(9323)] = 304953, + [SMALL_STATE(9324)] = 304960, + [SMALL_STATE(9325)] = 304967, + [SMALL_STATE(9326)] = 304974, + [SMALL_STATE(9327)] = 304981, + [SMALL_STATE(9328)] = 304988, + [SMALL_STATE(9329)] = 304995, + [SMALL_STATE(9330)] = 305002, + [SMALL_STATE(9331)] = 305009, + [SMALL_STATE(9332)] = 305016, + [SMALL_STATE(9333)] = 305023, + [SMALL_STATE(9334)] = 305030, + [SMALL_STATE(9335)] = 305037, + [SMALL_STATE(9336)] = 305044, + [SMALL_STATE(9337)] = 305051, + [SMALL_STATE(9338)] = 305058, + [SMALL_STATE(9339)] = 305065, + [SMALL_STATE(9340)] = 305072, + [SMALL_STATE(9341)] = 305079, + [SMALL_STATE(9342)] = 305086, + [SMALL_STATE(9343)] = 305093, + [SMALL_STATE(9344)] = 305100, + [SMALL_STATE(9345)] = 305107, + [SMALL_STATE(9346)] = 305114, + [SMALL_STATE(9347)] = 305121, + [SMALL_STATE(9348)] = 305128, + [SMALL_STATE(9349)] = 305135, + [SMALL_STATE(9350)] = 305142, + [SMALL_STATE(9351)] = 305149, + [SMALL_STATE(9352)] = 305156, + [SMALL_STATE(9353)] = 305163, + [SMALL_STATE(9354)] = 305170, + [SMALL_STATE(9355)] = 305177, + [SMALL_STATE(9356)] = 305184, + [SMALL_STATE(9357)] = 305191, + [SMALL_STATE(9358)] = 305198, + [SMALL_STATE(9359)] = 305205, + [SMALL_STATE(9360)] = 305212, + [SMALL_STATE(9361)] = 305219, + [SMALL_STATE(9362)] = 305226, + [SMALL_STATE(9363)] = 305233, + [SMALL_STATE(9364)] = 305240, + [SMALL_STATE(9365)] = 305247, + [SMALL_STATE(9366)] = 305254, + [SMALL_STATE(9367)] = 305261, + [SMALL_STATE(9368)] = 305268, + [SMALL_STATE(9369)] = 305275, + [SMALL_STATE(9370)] = 305282, + [SMALL_STATE(9371)] = 305289, + [SMALL_STATE(9372)] = 305296, + [SMALL_STATE(9373)] = 305303, + [SMALL_STATE(9374)] = 305310, + [SMALL_STATE(9375)] = 305317, + [SMALL_STATE(9376)] = 305324, + [SMALL_STATE(9377)] = 305331, + [SMALL_STATE(9378)] = 305338, + [SMALL_STATE(9379)] = 305345, + [SMALL_STATE(9380)] = 305352, + [SMALL_STATE(9381)] = 305359, + [SMALL_STATE(9382)] = 305366, + [SMALL_STATE(9383)] = 305373, + [SMALL_STATE(9384)] = 305380, + [SMALL_STATE(9385)] = 305387, + [SMALL_STATE(9386)] = 305394, + [SMALL_STATE(9387)] = 305401, + [SMALL_STATE(9388)] = 305408, + [SMALL_STATE(9389)] = 305415, + [SMALL_STATE(9390)] = 305422, + [SMALL_STATE(9391)] = 305429, + [SMALL_STATE(9392)] = 305436, + [SMALL_STATE(9393)] = 305443, + [SMALL_STATE(9394)] = 305450, + [SMALL_STATE(9395)] = 305457, + [SMALL_STATE(9396)] = 305464, + [SMALL_STATE(9397)] = 305471, + [SMALL_STATE(9398)] = 305478, + [SMALL_STATE(9399)] = 305485, + [SMALL_STATE(9400)] = 305492, + [SMALL_STATE(9401)] = 305499, + [SMALL_STATE(9402)] = 305506, + [SMALL_STATE(9403)] = 305513, + [SMALL_STATE(9404)] = 305520, + [SMALL_STATE(9405)] = 305527, + [SMALL_STATE(9406)] = 305534, + [SMALL_STATE(9407)] = 305541, + [SMALL_STATE(9408)] = 305548, + [SMALL_STATE(9409)] = 305555, + [SMALL_STATE(9410)] = 305562, + [SMALL_STATE(9411)] = 305569, + [SMALL_STATE(9412)] = 305576, + [SMALL_STATE(9413)] = 305583, + [SMALL_STATE(9414)] = 305590, + [SMALL_STATE(9415)] = 305597, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -616577,6931 +619946,6943 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9377), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9375), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8014), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9408), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9406), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8439), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9286), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9260), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9307), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9286), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8327), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7955), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8067), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9240), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8068), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9238), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9237), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9236), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9235), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9234), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9233), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9232), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9224), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9222), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9214), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9213), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9350), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9347), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8120), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8035), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9065), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8831), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9062), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9060), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9325), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8265), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8691), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8910), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9179), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9180), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8549), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8528), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9341), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8197), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8353), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8738), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8037), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9178), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8909), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8908), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8513), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8375), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8890), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8360), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9257), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9258), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8545), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8462), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8347), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7996), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8391), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8521), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8355), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9256), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8736), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8735), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8472), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8370), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8697), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8384), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9278), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9269), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 80), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 10), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 80), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1191), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7050), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8549), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6163), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7735), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8311), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9268), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9266), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9265), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9264), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9263), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9262), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9261), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9260), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9252), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9248), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8303), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9242), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9241), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8912), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8911), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8054), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8005), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8071), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8910), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8060), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8862), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8904), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8903), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8897), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8293), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8630), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9120), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9210), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9211), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7078), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8548), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8546), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9348), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8374), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8385), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8649), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8073), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9209), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8545), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8543), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8528), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8407), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8490), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8392), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9288), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8576), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8494), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8101), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8442), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8858), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8387), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9287), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8651), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8652), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8503), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8395), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8664), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8401), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9309), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9300), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 80), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 10), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 80), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1195), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7078), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8548), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6181), [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8528), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8197), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8546), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8374), [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(149), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1589), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1647), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1589), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(605), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5676), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1106), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(285), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3854), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4431), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3126), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9286), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6994), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8052), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9260), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8058), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4655), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(67), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3681), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1315), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4084), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3849), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2183), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3615), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6638), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5717), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5670), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5653), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7905), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8353), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1748), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8738), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8037), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(223), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9178), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1261), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8909), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8908), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8513), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8375), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8890), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1877), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1483), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9234), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9233), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9232), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7205), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4677), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7920), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7494), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4258), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4270), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3690), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9224), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3361), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9222), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4861), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5604), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1884), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1055), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8360), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1685), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1416), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7133), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6941), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9257), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9258), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1415), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1806), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8071), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1630), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5476), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5902), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 10), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1205), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7048), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8545), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6178), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8462), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8347), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(433), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3927), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4407), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3069), - [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(42), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3745), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7996), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8391), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1720), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8521), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8355), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(226), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9256), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1257), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8736), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8735), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8472), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8370), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8697), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1880), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8384), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1427), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7131), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6893), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9278), - [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9269), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1429), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1740), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1196), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7008), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9350), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6164), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9347), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8120), - [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(663), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3735), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4426), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3133), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(73), - [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3841), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7624), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8035), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1648), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9065), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8121), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(182), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8831), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1263), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9062), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9060), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9325), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8265), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8691), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1883), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8043), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1481), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7136), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6937), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9179), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9180), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1479), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1598), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8611), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8546), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8404), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8341), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8512), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8389), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9267), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8520), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8519), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8555), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8331), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8501), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8335), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9287), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9279), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1224), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7016), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8611), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6137), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8546), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8404), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(614), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3918), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4390), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3095), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(63), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3843), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7795), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8341), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1701), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8512), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8389), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(228), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9267), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1273), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8520), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8519), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8555), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8331), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8501), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1881), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8335), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1460), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7114), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6945), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9287), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9279), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1462), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1718), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1539), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1540), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1539), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(613), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5799), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1103), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(311), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3886), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4402), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3143), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9307), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7004), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8333), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9286), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8327), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4726), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(64), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3614), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1292), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4074), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3961), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2210), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3624), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6707), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5782), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5798), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5800), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7995), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8385), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1702), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8649), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8073), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(181), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9209), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1262), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8545), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8543), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8528), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8407), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8490), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1567), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1424), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9262), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9261), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9260), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7215), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4711), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7744), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7331), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4287), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4311), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3620), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9252), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3526), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9248), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4844), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5602), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1916), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1053), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8392), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1576), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1478), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7180), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6925), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9288), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9289), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1475), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1718), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8302), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1584), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5467), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5939), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 10), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1222), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7037), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8576), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6176), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8494), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8101), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(431), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3879), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4444), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3157), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(73), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3840), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7676), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8442), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1686), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8858), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8387), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(178), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9287), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1260), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8651), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8652), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8503), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8395), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8664), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1917), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8401), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1440), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7183), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6907), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9309), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9300), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1441), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1700), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1199), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7045), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8642), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6199), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8577), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8250), + [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(636), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3874), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4407), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3155), + [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(54), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3824), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7637), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8349), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1675), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9139), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8444), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(175), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9298), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1272), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8863), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8864), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8586), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8322), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8900), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1918), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8345), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1482), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7186), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6976), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9318), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9310), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1483), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1685), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1189), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7063), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8912), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6229), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8911), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8054), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(655), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3798), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4410), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3120), + [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(77), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3967), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8005), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8071), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1755), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8910), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8060), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(159), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8862), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1266), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8904), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8903), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8897), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8293), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8630), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1915), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(8079), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1411), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7150), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6957), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9210), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(9211), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1410), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1754), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8642), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8577), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8250), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7637), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8349), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9139), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8444), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9298), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8863), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8864), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8586), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8322), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8900), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8345), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9318), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9310), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1237), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7026), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9377), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6205), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9375), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8014), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1230), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7054), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9408), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6154), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9406), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8439), [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(149), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1589), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1647), - [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1589), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(605), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5676), - [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1106), - [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3926), - [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4441), - [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3100), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9286), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6994), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8052), - [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9260), - [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8058), - [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4655), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1539), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1540), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1539), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(613), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5799), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1103), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3850), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4462), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3134), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9307), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7004), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8333), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9286), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8327), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4726), [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(83), - [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3681), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1315), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4084), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3731), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2183), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3615), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6638), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5717), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5670), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5653), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7955), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8067), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1820), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9240), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8068), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(207), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9238), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1265), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9237), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9236), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9235), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1877), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1483), - [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9234), - [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9233), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9232), - [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7205), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4677), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7920), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7494), - [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5338), - [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4270), - [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3690), - [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9224), - [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3361), - [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9222), - [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4861), - [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5604), - [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1882), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1055), - [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8069), - [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1685), - [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1389), - [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7147), - [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6927), - [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9214), - [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9213), - [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1422), - [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1632), - [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8071), - [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1630), - [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5476), - [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5902), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 14), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 14), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1216), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(258), - [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1589), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1589), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1560), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1560), - [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(285), - [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3854), - [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4431), - [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4084), - [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9286), - [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6994), - [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8350), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9260), - [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(67), - [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3681), - [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1337), - [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2183), - [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3615), - [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6638), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5717), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5670), - [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5653), - [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7905), - [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8353), - [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8037), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(223), - [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9178), - [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1261), - [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8909), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8908), - [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8513), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8375), - [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8890), - [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1877), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1483), - [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9234), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9233), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9232), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7205), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4677), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7920), - [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7494), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4258), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4270), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3690), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9224), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3361), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9222), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5604), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8154), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8360), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1685), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1416), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1415), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1806), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8071), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1630), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5476), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5902), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 14), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 14), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1203), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(433), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3927), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4407), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7996), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8391), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8355), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(226), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9256), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1257), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8736), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8735), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8472), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8370), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8697), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8384), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1427), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1429), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1740), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1223), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(602), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3926), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4441), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(83), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7955), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8067), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8068), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(207), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9238), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1265), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9237), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9236), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9235), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8064), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9037), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8069), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1389), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1422), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1632), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1227), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(614), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3918), - [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4390), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(63), - [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7795), - [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8341), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8389), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(228), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9267), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1273), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8520), - [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8519), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8555), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8331), - [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8501), - [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8335), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1460), - [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1462), - [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1718), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8064), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9037), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1218), - [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(663), - [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3735), - [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4426), - [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(73), - [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7624), - [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8035), - [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8121), - [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(182), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8831), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1263), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9062), - [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9060), - [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9325), - [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8265), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8691), - [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8043), - [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1481), - [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1479), - [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1598), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7724), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8311), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8339), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9277), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8463), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8456), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8616), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8300), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8900), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1204), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1158), - [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4626), - [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4435), - [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(75), - [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7724), - [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8311), - [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8339), - [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(206), - [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9277), - [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1270), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8463), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8456), - [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8616), - [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8300), - [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8900), - [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8279), - [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1430), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1428), - [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1698), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9195), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8728), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8834), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9339), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9378), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7191), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3614), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1292), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4074), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3966), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2210), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3624), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6707), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5782), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5798), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5800), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7735), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8311), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1557), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9268), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8308), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(205), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9266), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1269), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9265), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9264), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9263), + [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1567), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1424), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9262), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9261), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9260), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7215), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4711), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7744), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7331), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5340), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4311), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3620), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9252), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3526), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9248), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4844), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5602), + [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1914), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1053), + [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8303), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1576), + [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1429), + [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7189), + [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6932), + [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9242), + [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9241), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1401), + [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1581), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8302), + [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1584), + [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5467), + [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5939), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8382), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8091), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 14), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 14), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 14), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 14), + [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1202), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(265), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1539), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1539), + [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1637), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1637), + [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(311), + [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3886), + [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4402), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4074), + [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9307), + [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7004), + [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8382), + [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9286), + [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(64), + [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3614), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1278), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2210), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3624), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6707), + [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5782), + [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5798), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5800), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7995), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8385), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8073), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(181), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9209), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1262), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8545), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8543), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8528), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8407), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8490), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1567), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1424), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9262), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9261), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9260), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7215), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4711), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7744), + [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7331), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4287), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4311), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3620), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9252), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3526), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9248), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5602), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8091), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8392), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1576), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1478), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1475), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1718), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8302), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1584), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5467), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5939), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1196), + [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(431), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3879), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4444), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(73), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7676), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8442), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8387), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(178), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9287), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1260), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8651), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8652), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8503), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8395), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8664), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8401), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1440), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1441), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1700), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1225), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(636), + [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3874), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4407), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(54), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7637), + [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8349), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8444), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(175), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9298), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1272), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8863), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8864), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8586), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8322), + [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8900), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8345), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1482), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1483), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1685), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8100), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8874), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1191), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(764), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3850), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4462), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(83), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7735), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8311), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8308), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(205), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9266), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1269), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9265), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9264), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9263), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8100), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8874), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8303), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1429), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1401), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1581), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1208), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(655), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3798), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4410), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(77), + [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8005), + [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8071), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8060), + [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(159), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8862), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1266), + [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8904), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8903), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8897), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8293), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8630), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8079), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1411), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1410), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1754), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7698), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8290), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8347), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9308), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9147), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9022), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8647), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9232), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8221), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1188), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1140), + [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4666), + [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4477), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(88), + [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7698), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8290), + [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8347), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(174), + [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9308), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1258), + [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9147), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9022), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8647), + [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8273), + [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(9232), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8221), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1520), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1521), + [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1673), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9226), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9366), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9087), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9379), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9412), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8836), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 45), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 45), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9007), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9342), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9379), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8843), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9113), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9357), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9384), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9034), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9345), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9380), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8911), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9076), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9351), - [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9382), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2231), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(258), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1589), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1589), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1560), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(614), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6994), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8350), - [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(63), - [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1337), - [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7328), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7795), - [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8341), - [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1701), - [2374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8512), - [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8389), - [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(228), - [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9267), - [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1273), - [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8520), - [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8519), - [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8555), - [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8331), - [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8501), - [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1877), - [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1483), - [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9234), - [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9233), - [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9232), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7205), - [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4677), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7920), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7494), - [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4258), - [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4270), - [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8843), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8154), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8335), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1685), - [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1460), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1462), - [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1718), - [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8071), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1630), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5476), - [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5902), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [2476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2241), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(433), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), - [2485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7996), - [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8391), - [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1720), - [2494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8521), - [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8355), - [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(226), - [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9256), - [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1257), - [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8736), - [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8735), - [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8472), - [2518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8370), - [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8697), - [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8384), - [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1427), - [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1429), - [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1740), - [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2223), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(285), - [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(67), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7905), - [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8353), - [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1748), - [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8738), - [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8037), - [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(223), - [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9178), - [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1261), - [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8909), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8908), - [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8513), - [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8375), - [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8890), - [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8360), - [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1416), - [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1415), - [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1806), - [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2143), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(663), - [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(73), - [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7624), - [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8035), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1648), - [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9065), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8121), - [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(182), - [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8831), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1263), - [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9062), - [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9060), - [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9325), - [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8265), - [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8691), - [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8043), - [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1481), - [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1479), - [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1598), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8188), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9006), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), - [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2185), - [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1158), - [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(75), - [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7724), - [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8311), - [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1809), - [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8911), - [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8339), - [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(206), - [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9277), - [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1270), - [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8463), - [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8456), - [2705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8616), - [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8300), - [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8900), - [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8279), - [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1430), - [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1428), - [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1698), - [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2203), - [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(602), - [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(83), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7955), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8067), - [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1820), - [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9240), - [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8068), - [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(207), - [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9238), - [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1265), - [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9237), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9236), - [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9235), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8064), - [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9037), - [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8069), - [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1389), - [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1422), - [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1632), - [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2236), - [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7932), - [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8188), - [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9006), - [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8209), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), - [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8398), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 9), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 9), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8398), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 9), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 9), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 46), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 46), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 103), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 103), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8354), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 156), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 156), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 51), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 51), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8354), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, .production_id = 148), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, .production_id = 148), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 66), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 66), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 172), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 172), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 130), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 130), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 104), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 104), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8865), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9370), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9409), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8867), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8282), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 45), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 45), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7380), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9038), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9410), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8776), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8358), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9144), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9388), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9415), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7433), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8547), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8377), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9037), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8080), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2268), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(265), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1539), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1539), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1637), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(636), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7004), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8382), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(54), + [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1278), + [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7391), + [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7637), + [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8349), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1675), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9139), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8444), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(175), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9298), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1272), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8863), + [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8864), + [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8586), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8322), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8900), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1567), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1424), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9262), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9261), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9260), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7215), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4711), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7744), + [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7331), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4287), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4311), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8776), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8091), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8345), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1576), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1482), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1483), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1685), + [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8302), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1584), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5467), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5939), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2241), + [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(655), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(83), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7677), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8311), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1722), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8547), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8377), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(205), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9037), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1269), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9265), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9264), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9263), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8080), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8630), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8303), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1429), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1401), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1581), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2233), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(311), + [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(64), + [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7995), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8385), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1702), + [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8649), + [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8073), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(181), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9209), + [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1262), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8545), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8543), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8528), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8407), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8490), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8392), + [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1478), + [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1475), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1718), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2170), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(77), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8005), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8071), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1755), + [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8910), + [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8060), + [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(159), + [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8862), + [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1266), + [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8904), + [2599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8903), + [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8897), + [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8293), + [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8079), + [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1411), + [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1410), + [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1754), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7500), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9107), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9382), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9413), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2270), + [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(764), + [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7735), + [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1557), + [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9268), + [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8308), + [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9266), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8100), + [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8874), + [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2214), + [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(431), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(73), + [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7676), + [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8442), + [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1686), + [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8858), + [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8387), + [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(178), + [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9287), + [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1260), + [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8651), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8652), + [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8503), + [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8395), + [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8664), + [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8401), + [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1440), + [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1441), + [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1700), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2246), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1140), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(88), + [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7698), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8290), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8347), + [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(174), + [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9308), + [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1258), + [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9147), + [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9022), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8647), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8273), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(9232), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(8221), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1520), + [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1521), + [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1673), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), + [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8417), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 9), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 9), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8417), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7601), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 46), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 46), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 9), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 9), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8378), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 51), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 51), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 103), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 103), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8378), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 156), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 156), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, .production_id = 148), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, .production_id = 148), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 147), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 147), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 66), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 66), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 87), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 87), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 55), [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 55), [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 53), [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 53), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 52), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 52), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 52), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 52), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 130), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 130), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 87), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 87), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 87), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 87), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 9), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 9), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 9), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 9), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 52), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 52), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 143), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 143), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 52), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 52), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 104), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 104), [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 142), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 142), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 143), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 143), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 147), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 147), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 9), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 9), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4), - [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8385), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8663), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9083), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8321), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8796), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8784), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8793), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9295), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3), - [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 127), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 127), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8385), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8322), - [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 80), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 80), - [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 46), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 46), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 126), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 126), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 172), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 172), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 130), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 130), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 130), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 130), + [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 87), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 87), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 9), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 9), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 142), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 142), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, .production_id = 57), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, .production_id = 57), + [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8304), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 67), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 67), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8304), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, .production_id = 57), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, .production_id = 57), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, .production_id = 58), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, .production_id = 58), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8694), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8765), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8722), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8918), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9326), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4), [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, .production_id = 94), [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, .production_id = 94), - [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 125), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 125), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 124), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 124), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 157), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 157), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 158), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 158), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 120), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 120), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, .production_id = 159), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, .production_id = 159), - [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, .production_id = 57), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, .production_id = 57), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 44), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 44), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 60), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 60), - [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 160), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 160), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, .production_id = 93), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, .production_id = 93), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, .production_id = 10), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, .production_id = 10), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 48), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 48), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 169), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 169), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 170), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 170), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 67), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 67), - [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, .production_id = 188), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, .production_id = 188), - [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 38), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 38), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 10), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 10), - [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 10), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 10), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3), - [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8125), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 71), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 71), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 37), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 37), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 199), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 199), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 115), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 115), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 10), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 10), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 26), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 26), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 23), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 23), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 23), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 23), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 81), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 81), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, .production_id = 57), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, .production_id = 57), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 80), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 80), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 79), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 79), - [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8322), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, .production_id = 58), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, .production_id = 58), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 77), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 77), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8125), - [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 23), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 23), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 78), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 78), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 9), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 9), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 26), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 26), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 77), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 77), - [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), - [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, .production_id = 93), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, .production_id = 93), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8161), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 9), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 9), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 26), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 26), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 10), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 10), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 23), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 23), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 23), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 23), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 81), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 81), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 115), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 115), + [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 80), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 80), + [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8161), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 79), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 79), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 78), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 78), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 26), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 26), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 77), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 77), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 37), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 37), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 10), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 10), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 10), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 10), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 77), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 77), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 38), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 38), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, .production_id = 188), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, .production_id = 188), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 71), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 71), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 158), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 158), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 160), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 160), + [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 23), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 23), + [3231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8123), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 124), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 124), + [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 125), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 125), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3), + [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, .production_id = 159), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, .production_id = 159), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 46), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 46), + [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 126), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 126), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 48), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 48), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 80), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 80), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 60), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 60), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 199), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 199), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 127), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 127), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 170), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 170), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 169), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 169), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 120), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 120), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 44), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 44), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 157), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 157), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, .production_id = 10), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, .production_id = 10), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1), [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9056), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9348), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9381), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9058), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8705), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8466), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8254), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7585), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9303), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 80), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 80), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4464), - [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8663), - [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6158), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9083), - [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8321), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5693), - [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8796), - [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3898), - [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5676), - [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5676), - [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3907), - [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4420), - [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4084), - [3531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9286), - [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5988), - [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8392), - [3540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9260), - [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8058), - [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3681), - [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8784), - [3552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2183), - [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4044), - [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6688), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5668), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5768), - [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5733), - [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3690), - [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9224), - [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3361), - [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9222), - [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4861), - [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5613), - [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7374), - [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1055), - [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1942), - [3597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8793), - [3600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6891), - [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9295), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8705), - [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6200), - [3616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8466), - [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8254), - [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3833), - [3625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4461), - [3628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7585), - [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1939), - [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6957), - [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9303), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8746), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8505), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9311), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8461), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8879), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8248), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9268), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9095), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9354), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7187), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8746), - [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6145), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8505), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8202), - [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3709), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4450), - [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7568), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1937), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6935), - [3779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9311), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), - [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8461), - [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6201), - [3836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8879), - [3839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8248), - [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3874), - [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4467), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7435), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1944), - [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6909), - [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9268), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 28), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 28), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9018), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9272), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8875), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9282), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9288), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9291), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9307), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9296), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9262), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9318), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9312), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9314), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9304), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7552), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9299), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [4024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8269), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8269), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [4141] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), - [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(555), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), - [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, .production_id = 1), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [4167] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(527), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [4252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2125), - [4255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(258), - [4258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1589), - [4261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1589), - [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1560), - [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3076), - [4270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6994), - [4273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1635), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1337), - [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7328), - [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1877), - [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1483), - [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(9234), - [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(9233), - [4296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(9232), - [4299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7205), - [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4677), - [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7920), - [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7494), - [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4258), - [4314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4270), - [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(8843), - [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6970), - [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(8154), - [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1685), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(8071), - [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1630), - [4335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5476), - [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5902), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8990), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8776), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9065), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9376), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9411), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9089), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8736), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8456), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8233), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9334), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4458), + [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8694), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6213), + [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [3479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8765), + [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8074), + [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5776), + [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8730), + [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3925), + [3494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5799), + [3497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5799), + [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3872), + [3503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4476), + [3506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4074), + [3509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9307), + [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6030), + [3515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8440), + [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9286), + [3521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8327), + [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3614), + [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8722), + [3530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2210), + [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4099), + [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6635), + [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5825), + [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5824), + [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5771), + [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3620), + [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9252), + [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3526), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9248), + [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4844), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5577), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7428), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1053), + [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1971), + [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8918), + [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6966), + [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9326), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 80), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 80), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7944), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8736), + [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6194), + [3640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8456), + [3643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8233), + [3646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3870), + [3649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4488), + [3652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7409), + [3655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1973), + [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6980), + [3661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9334), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8493), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8654), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8286), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7508), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9299), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8777), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8536), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8067), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9342), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [3722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8493), + [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6182), + [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8654), + [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8286), + [3734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3885), + [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4420), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7508), + [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1975), + [3748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6940), + [3751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9299), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [3790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8777), + [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6147), + [3796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8536), + [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(8067), + [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3869), + [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4494), + [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7401), + [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1978), + [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6952), + [3817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(9342), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7517), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9126), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9385), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9414), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7467), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 28), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 28), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8789), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8827), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8906), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9293), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9313), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9319), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9330), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9345), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9335), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9322), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9338), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9327), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9349), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9343), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9303), + [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [4022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [4025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), + [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8203), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8203), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), + [4139] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), + [4147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(560), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, .production_id = 1), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [4165] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(524), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8753), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8972), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2083), + [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(265), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1539), + [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1539), + [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1637), + [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3070), + [4290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7004), + [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1858), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), + [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1278), + [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7391), + [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1567), + [4307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1424), + [4310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(9262), + [4313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(9261), + [4316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(9260), + [4319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7215), + [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4711), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7744), + [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7331), + [4331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4287), + [4334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4311), + [4337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(8776), + [4340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7027), + [4343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(8091), + [4346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1576), + [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(8302), + [4352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1584), + [4355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5467), + [4358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5939), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8795), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8665), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8964), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8608), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 80), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 181), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 146), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 105), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8612), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 105), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8671), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8667), - [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8658), - [4657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8657), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8668), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8652), - [4675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8730), - [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8729), - [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8672), - [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8653), - [4687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8673), - [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8610), - [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8647), - [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8645), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8680), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8508), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9016), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9041), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8458), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8639), - [4737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8637), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8615), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9082), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8791), - [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8743), - [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8632), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8625), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8594), - [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8724), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8846), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8674), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8955), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9059), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9100), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9118), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8649), - [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8733), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9259), - [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8731), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8969), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9149), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9063), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), - [4972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), - [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), - [4979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), - [4982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), SHIFT(597), - [4985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), SHIFT(572), - [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), - [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2), - [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), - [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), - [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), - [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 16), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, .production_id = 17), - [5016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 16), REDUCE(sym_template_function, 2, .production_id = 17), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 16), - [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, .production_id = 17), - [5023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 16), REDUCE(sym_template_function, 2, .production_id = 17), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(535), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [5049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(512), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [5132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(543), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2), - [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, .production_id = 40), - [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, .production_id = 40), - [5155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1952), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7503), - [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8046), - [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3), - [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 32), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 32), - [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, .production_id = 21), - [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, .production_id = 21), - [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 75), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 75), - [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 168), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 168), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 54), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 54), - [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 74), - [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 74), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 123), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 123), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 122), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 122), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, .production_id = 65), - [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, .production_id = 65), - [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, .production_id = 14), - [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 14), - [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, .production_id = 141), - [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 141), - [5230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, .production_id = 200), - [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, .production_id = 200), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [5246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [5250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1982), - [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8251), - [5271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1993), - [5274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(577), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [5281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8251), - [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, .production_id = 6), - [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, .production_id = 6), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9075), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8828), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8830), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8837), - [5316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), - [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 63), - [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 63), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8500), - [5332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(543), - [5335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(583), - [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, .production_id = 1), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [5342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(579), - [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 45), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 45), - [5353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), SHIFT(510), - [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 20), - [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 20), - [5360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8238), - [5363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 91), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 91), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [5369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 67), - [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 67), - [5373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(559), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2), - [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2), - [5382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2), - [5390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2), - [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 174), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 174), - [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4), - [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [5402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), SHIFT(557), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, .production_id = 201), - [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, .production_id = 201), - [5411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2084), - [5414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7380), - [5417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8026), - [5420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 192), - [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 192), - [5424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 191), - [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 191), - [5428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 201), - [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 201), - [5432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 187), - [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 187), - [5436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9176), - [5444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 170), - [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 170), - [5448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(510), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), - [5455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1), - [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1), - [5459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 174), - [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 174), - [5463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 192), - [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 192), - [5467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 10), - [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 10), - [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 56), - [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 56), - [5475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 108), - [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 108), - [5479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 108), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 108), - [5483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 173), - [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 173), - [5487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 191), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 191), - [5491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 108), - [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 108), - [5495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 187), - [5497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 187), - [5499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2), - [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2), - [5503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 127), - [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 127), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2), + [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8491), + [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8486), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8485), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8484), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8480), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8495), + [4535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8478), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8475), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8472), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9217), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8471), + [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8529), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8552), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8807), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8710), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 80), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 181), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 146), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1), + [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8582), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 105), + [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 105), + [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8508), + [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8460), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8509), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8458), + [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8522), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9131), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8461), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8527), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8454), + [4718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8532), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8720), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8781), + [4725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8452), + [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8451), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9149), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8563), + [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8551), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8534), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8530), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9257), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9108), + [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8514), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8505), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8507), + [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8550), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8482), + [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8450), + [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8481), + [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8500), + [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8492), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8566), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8498), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8704), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9094), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8989), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9027), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9119), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9283), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8888), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9113), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2), + [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2), + [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), + [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), + [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), + [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), + [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), + [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), + [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), + [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), + [5021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), SHIFT(506), + [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [5032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), SHIFT(514), + [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), + [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 16), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, .production_id = 17), + [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 16), REDUCE(sym_template_function, 2, .production_id = 17), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 16), + [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, .production_id = 17), + [5050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 16), REDUCE(sym_template_function, 2, .production_id = 17), + [5053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(506), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), + [5064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(580), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [5081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(552), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [5164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(531), + [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3), + [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, .production_id = 40), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, .production_id = 40), + [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 168), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 168), + [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, .production_id = 21), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, .production_id = 21), + [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 54), + [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 54), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7580), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 123), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 123), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3), + [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3), + [5205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1989), + [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [5210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7367), + [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8358), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), + [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), + [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 75), + [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 75), + [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 32), + [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 32), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [5238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2), + [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2), + [5242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, .production_id = 65), + [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, .production_id = 65), + [5246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 122), + [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 122), + [5250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 74), + [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 74), + [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, .production_id = 141), + [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 141), + [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, .production_id = 14), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 14), + [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, .production_id = 200), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, .production_id = 200), + [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [5282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2012), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [5297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5), + [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5), + [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(534), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [5308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8151), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), + [5315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, .production_id = 6), + [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, .production_id = 6), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9106), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [5327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2036), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8859), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8861), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8868), + [5348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 45), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 45), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8531), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), + [5364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 91), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 91), + [5368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), SHIFT(580), + [5371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(510), + [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(512), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 63), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 63), + [5385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 20), + [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 20), + [5389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(531), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8122), + [5397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, .production_id = 1), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [5401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 126), + [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 126), + [5405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 201), + [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 201), + [5409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(546), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2), + [5416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2), + [5418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [5424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [5428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(2342), + [5431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, .production_id = 201), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, .production_id = 201), + [5435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 192), + [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 192), + [5439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 191), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 191), + [5443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2), + [5445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2), + [5447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 187), + [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 187), + [5451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 170), + [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 170), + [5455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 174), + [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 174), + [5459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 192), + [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 192), + [5463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 173), + [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 173), + [5467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 191), + [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 191), + [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 108), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 108), + [5475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 187), + [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 187), + [5479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 127), + [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 127), + [5483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 10), + [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 10), + [5487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 56), + [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 56), + [5491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 56), + [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 56), + [5495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 108), + [5497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 108), + [5499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 67), + [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 67), + [5503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 108), + [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 108), [5507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 80), [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 80), - [5511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 126), - [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 126), - [5515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [5519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(2320), - [5522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 56), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 56), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression_not_binary, 1), - [5529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(572), - [5532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression_not_binary, 1), - [5535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [5537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [5539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(597), - [5542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 80), - [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 80), - [5546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 81), - [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 81), - [5550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 10), - [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 10), - [5554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 108), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 108), - [5558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 173), - [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 173), - [5562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 27), - [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 27), - [5566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 98), - [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 98), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [5582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 46), - [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 46), - [5586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 47), - [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 47), - [5590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 97), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 97), - [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 48), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 48), - [5598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 49), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 49), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8226), - [5604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8287), - [5607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8287), - [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 101), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 101), - [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, .production_id = 50), - [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, .production_id = 50), - [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, .production_id = 9), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, .production_id = 9), - [5625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2197), - [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7420), - [5631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8042), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [5638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9003), - [5654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), SHIFT(6728), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 12), - [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 12), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2207), - [5672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7601), - [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8027), - [5678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 96), - [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 96), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [5684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 137), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 137), - [5688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), SHIFT(9003), - [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, .production_id = 6), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, .production_id = 6), - [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1), - [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, .production_id = 11), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, .production_id = 11), - [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, .production_id = 138), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, .production_id = 138), - [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 12), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 12), - [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, .production_id = 13), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, .production_id = 13), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 10), - [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 10), - [5723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [5729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4), - [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4), - [5733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 49), - [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 49), - [5737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 9), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 9), - [5741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 12), - [5743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 12), - [5745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 12), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 12), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 139), - [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 139), - [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, .production_id = 46), - [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, .production_id = 46), - [5759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, .production_id = 102), - [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, .production_id = 102), - [5767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 99), - [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 99), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 96), - [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 96), - [5775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 94), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 94), - [5779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8226), - [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [5789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [5794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(557), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), - [5801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 164), - [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 164), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [5811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, .production_id = 11), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, .production_id = 11), - [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), - [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [5827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 46), - [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 46), - [5831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 48), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 48), - [5835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, .production_id = 50), - [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, .production_id = 50), - [5839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, .production_id = 9), - [5841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, .production_id = 9), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [5845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 86), - [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 86), - [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 94), - [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 94), - [5853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 99), - [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 99), - [5857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, .production_id = 102), - [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, .production_id = 102), - [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, .production_id = 46), - [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, .production_id = 46), - [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [5871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(2470), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 41), - [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 41), - [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 137), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 137), - [5886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2380), - [5889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7490), - [5892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8036), - [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, .production_id = 138), - [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, .production_id = 138), - [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 2), - [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 2), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 18), - [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 18), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 42), - [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 42), - [5919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [5923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 43), - [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 43), - [5931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), SHIFT(543), - [5934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 88), - [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 88), - [5938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 20), - [5940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 20), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 36), - [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 36), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 133), - [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 133), - [5954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 165), - [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 165), - [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 111), - [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 111), - [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8312), - [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9158), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 23), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 23), - [5985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 116), - [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 116), - [5989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 20), - [5991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 20), - [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 36), - [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 36), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 90), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 90), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 62), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 62), - [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 23), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 23), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [6023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2471), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [6028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(2689), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [6037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2508), - [6040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2518), - [6043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7335), - [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8047), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [6055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 10), - [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 10), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9033), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 47), - [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 47), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, .production_id = 161), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, .production_id = 161), - [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), - [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), - [6099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), SHIFT(543), - [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [6112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2704), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 14), - [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 14), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [6141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2687), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [6152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(583), - [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [6159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2700), - [6162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), - [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), - [6166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [6170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 54), - [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 54), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9112), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [6184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2), - [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [6190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 85), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 85), - [6194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, .production_id = 22), - [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, .production_id = 22), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 54), - [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 54), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 17), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 17), - [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [6218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, .production_id = 161), - [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, .production_id = 161), - [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2), - [6226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 132), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 132), - [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [6248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 131), - [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 131), - [6256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 197), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 197), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 198), - [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 198), - [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 117), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 117), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3), - [6272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2750), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9130), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 205), - [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 205), - [6287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 206), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 206), - [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 184), - [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 184), - [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 182), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 182), - [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 209), - [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 209), - [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 54), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 54), - [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [6313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [6317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [6321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2), - [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2), - [6325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [6329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, .production_id = 171), - [6331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, .production_id = 171), - [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [6337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 7), - [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 7), - [6341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 85), - [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 85), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [6357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 185), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 185), - [6361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 89), - [6363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 89), - [6365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 162), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 162), - [6369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, .production_id = 30), - [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, .production_id = 30), - [6373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 8), - [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 8), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9075), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [6381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [6387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), - [6403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4), - [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4), - [6407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 152), - [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 152), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 151), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 151), - [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 45), - [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 45), - [6421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, .production_id = 149), - [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, .production_id = 149), - [6425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 106), - [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 106), - [6429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2), - [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2), - [6433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3), - [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3), - [6437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 72), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 72), - [6441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 72), SHIFT(543), - [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 61), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 61), - [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 29), - [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 29), - [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 73), - [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 73), - [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 110), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 110), - [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 109), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 109), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8806), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [6484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4), - [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [6496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2), - [6500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(510), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3), - [6507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3), - [6509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2875), - [6512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7452), - [6515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8051), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9094), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2891), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [6539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(557), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9055), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [6560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2918), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8720), - [6607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3), - [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [6621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(535), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [6626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4), - [6630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 119), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [6634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 119), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [6640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5), - [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2), - [6648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [6652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 166), - [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 166), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), - [6658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6), - [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), - [6666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8246), - [6669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2), - [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2), - [6673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [6679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4), - [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4), - [6683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5), - [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5), - [6687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [6691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, .production_id = 64), - [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, .production_id = 64), - [6695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), SHIFT(583), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [6762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9080), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), - [6802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 20), - [6804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 20), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [6812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 72), SHIFT(550), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8883), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), - [6833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8281), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), - [6860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), SHIFT(583), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [6867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8263), - [6870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), SHIFT(597), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [6877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual, 1), - [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual, 1), - [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), SHIFT(572), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [6940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [6942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4453), - [6945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4451), - [6948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8828), - [6951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8028), - [6954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8830), - [6957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4454), - [6960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8837), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [6999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [7001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3447), - [7004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7580), - [7007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8029), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 20), - [7020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 20), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), - [7066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), SHIFT(510), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [7071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 128), - [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 128), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9321), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9317), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9297), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9281), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9099), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9131), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9241), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9239), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9212), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9197), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [7169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3592), - [7172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7563), - [7175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8030), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1253), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [7197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 72), SHIFT(510), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9033), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [7220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3740), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), - [7241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1256), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [7278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3739), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), - [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9286), - [7329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [7335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(6642), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), - [7342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(5995), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [7367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), SHIFT(557), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), - [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), - [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), - [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [7388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 72), SHIFT(557), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [7393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3990), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [7400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3858), - [7403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7454), - [7406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8038), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [7431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(9005), - [7434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(8343), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2183), - [7474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4084), - [7477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9286), - [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8392), - [7483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9260), - [7486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3361), - [7489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9222), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [7498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [7500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [7508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [7519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4033), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9152), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [7528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_specifier, 4), - [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_specifier, 4), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [7534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), - [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), - [7538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4453), - [7541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4451), - [7544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(8828), - [7547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(8028), - [7550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(8830), - [7553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4454), - [7556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(8837), - [7559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4861), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [7564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), - [7569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), - [7571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [7574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [7576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(6426), - [7579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(5949), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 107), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [7594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(577), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9005), - [7601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(7175), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [7606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(8028), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [7611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(5943), - [7614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4107), - [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [7629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4224), - [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8785), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [7666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(559), - [7669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(579), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [7674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4198), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [7685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(5944), - [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [7690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(5960), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [7709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(5966), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8797), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9176), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), - [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), - [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), - [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), - [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), - [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), - [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), - [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), - [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), - [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), - [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9097), - [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), - [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), - [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), - [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), - [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9132), - [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [7844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(6001), - [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [7849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [7851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(512), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), - [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 56), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [7910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 136), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 136), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9222), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), - [7976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 20), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [8094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2183), - [8097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4084), - [8100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9286), - [8103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8052), - [8106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9260), - [8109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3361), - [8112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9222), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1), - [8139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, .production_id = 169), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 83), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [8323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4), - [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4), - [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [8351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 134), SHIFT(1461), - [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 134), - [8356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(1461), - [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [8387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [8391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [8407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4883), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 112), - [8426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, .production_id = 176), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), - [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 144), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8692), - [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 145), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, .production_id = 187), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 177), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 20), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 178), - [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), - [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), - [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 180), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), - [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), - [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), - [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), - [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, .production_id = 155), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8982), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8995), - [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [8578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [8592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 193), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8945), - [8612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 135), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, .production_id = 194), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [8678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(5094), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, .production_id = 54), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [8741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [8799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(2183), - [8802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(2183), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, .production_id = 179), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [8881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, .production_id = 84), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [8897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2), - [8899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2), - [8901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [8903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [8905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(9286), - [8908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), - [8910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [8914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(6642), - [8917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(5995), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [8924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(9005), - [8927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(8343), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [8934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(6426), - [8937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(5949), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), - [8958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(5393), - [8961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(5393), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [8978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(8028), - [8981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(7175), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [8990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(5943), - [8993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(9005), - [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [9000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [9004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), - [9006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [9012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [9014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(5944), - [9017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(5960), - [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [9022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(6642), - [9025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(5995), - [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), - [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), - [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), - [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), - [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [9042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [9046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), - [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9145), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), - [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [9072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), - [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), - [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [9078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), - [9080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [9082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9078), - [9084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), - [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), - [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [9094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), - [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), - [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [9106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [9108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), - [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [9118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9036), - [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [9122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(9005), - [9125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(8343), - [9128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(6426), - [9131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(5949), - [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), - [9144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), - [9146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [9148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9009), - [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), - [9156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [9158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [9160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(5775), - [9163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(5776), - [9166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(5966), - [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), - [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9153), - [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6691), - [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), - [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9159), - [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), - [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [9237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9115), - [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [9245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [9250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(8028), - [9253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(7175), - [9256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(5943), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [9273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(5341), - [9276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(5341), - [9279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(6001), - [9282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(5944), - [9285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(5960), - [9288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1249), - [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [9295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(5966), - [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [9300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(5865), - [9303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(5864), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), - [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [9336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [9340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [9342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [9348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8028), - [9351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), - [9353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), - [9355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(6642), - [9358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(5995), - [9361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(9005), - [9364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(8343), - [9367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(6426), - [9370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(5949), - [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [9375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(6001), - [9378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(7175), - [9381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(8028), - [9384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 20), SHIFT(5878), - [9387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 36), SHIFT(5882), - [9390] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(2918), - [9394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(5943), - [9397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 2), - [9399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 2), - [9401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 18), SHIFT(2918), - [9404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 2), SHIFT(2918), - [9407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 20), SHIFT(2918), - [9410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(5855), - [9413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(5856), - [9416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(5854), - [9419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 36), SHIFT(2918), - [9422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 20), - [9424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 20), - [9426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(5960), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7567), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), - [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), - [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7508), - [9487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(5944), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), - [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7334), - [9498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(5966), - [9501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(5877), - [9504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 2), - [9506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 2), - [9508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 20), - [9510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 20), - [9512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(6045), - [9515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(6045), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), - [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), - [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), - [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), - [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), - [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), - [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), - [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2), - [9592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2), - [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), - [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7896), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), - [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), - [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), - [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), - [9626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1), - [9628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1), - [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), - [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), - [9646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(6001), - [9649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [9653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), - [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), - [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), - [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [9687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), - [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), - [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), - [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), - [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), - [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [9713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), - [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [9755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1), - [9757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1), - [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), - [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), - [9773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [9779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 23), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [9789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [9791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [9795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [9797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), - [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8142), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7780), - [9817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [9819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8384), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7998), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [9857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [9859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7761), - [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), - [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7918), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), - [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), - [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8892), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), - [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7960), - [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), - [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [9965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [9971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 54), - [9973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 54), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [9993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [9995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), - [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), - [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), - [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [10027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7735), - [10029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [10035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [10037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [10045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), - [10051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), - [10053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), - [10055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(6426), - [10058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(5949), - [10061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), - [10063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), - [10065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(6426), - [10068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(5949), - [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), - [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), - [10077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), - [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [10083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3), - [10085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3), - [10087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [10091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1), - [10093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1), - [10095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), - [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), - [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [10111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), - [10113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7875), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4), - [10121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4), - [10123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4), - [10125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [10131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3), - [10133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3), - [10135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), - [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [10151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [10155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(5943), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [10162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5), - [10164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [10168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(5943), - [10171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2), - [10173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2), - [10175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2), SHIFT_REPEAT(6426), - [10178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3), - [10180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3), - [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), - [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7939), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [10198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8343), - [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [10203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(6642), - [10206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(5995), - [10209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 165), - [10211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 165), - [10213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [10215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [10235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 33), - [10237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 33), - [10239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [10241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1), - [10243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 23), - [10245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 23), - [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 116), - [10249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 116), - [10251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 167), - [10253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 167), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [10259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [10261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2), - [10263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 25), - [10265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 25), - [10267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2), - [10269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [10275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, .production_id = 24), - [10277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, .production_id = 24), - [10279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1), - [10281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [10287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), - [10289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 121), - [10291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 121), - [10293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 23), - [10295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 23), - [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [10301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(6642), - [10304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(5995), - [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [10319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), - [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [10329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [10335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2), SHIFT_REPEAT(6642), - [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), - [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [10356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(5944), - [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), - [10361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 5), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), - [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [10379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6502), - [10382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7302), - [10385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8041), - [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [10390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [10398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 41), - [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [10402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(5960), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [10413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 62), - [10415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 129), - [10417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 82), - [10419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2), - [10421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [10423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 39), - [10425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8052), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [10432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2), - [10434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2), SHIFT_REPEAT(8828), - [10437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2), - [10439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2), SHIFT_REPEAT(8837), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [10468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 5), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [10474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), - [10482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 41), - [10484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 86), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), - [10490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(5966), - [10493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [10495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), - [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), - [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), - [10503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 164), - [10505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [10507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 41), - [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), - [10511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, .dynamic_precedence = 1), - [10513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), - [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), - [10529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(5944), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9341), - [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), - [10548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(5960), - [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), - [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), - [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), - [10557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 164), - [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), - [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), - [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), - [10565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 86), - [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), - [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8358), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8712), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), - [10603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 25), - [10605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 25), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), - [10609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 165), - [10611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 165), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), - [10617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 23), - [10619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 23), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), - [10623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), - [10625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), - [10627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 116), - [10629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 116), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), - [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [10655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 23), - [10657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 23), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8991), - [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), - [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), - [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), - [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [10691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), - [10693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [10699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [10701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [10707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(6001), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), - [10714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(5966), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [10721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 100), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [10725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 100), - [10727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [10729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [10731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [10733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), - [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [10745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 23), - [10747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 23), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [10753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 165), - [10755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 165), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [10763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 25), - [10765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 25), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [10769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 23), - [10771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 23), - [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), - [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), - [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), - [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9192), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), - [10787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(6001), - [10790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 116), - [10792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 116), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), - [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), - [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [10812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 80), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), - [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), - [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), - [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), - [10844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [10846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), - [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), - [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), - [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [10878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1), - [10880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1), - [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), - [10886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9184), - [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), - [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), - [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [10912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), - [10916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 108), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [10944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [10950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [10956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 23), - [10958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 5), - [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), - [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8356), - [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), - [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), - [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7626), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9057), - [10982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(7672), - [10985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(6177), - [10988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(9108), - [10991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), - [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), - [10997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), - [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8250), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), - [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), - [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), - [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8413), - [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), - [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8191), - [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), - [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), - [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8126), - [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), - [11041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8399), - [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8259), - [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), - [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7576), - [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8317), - [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7510), - [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [11067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8740), - [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), - [11072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3), - [11074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3), - [11076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8293), - [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8106), - [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7521), - [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8367), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7634), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), - [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7917), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [11108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 15), - [11110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 15), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [11114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [11116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [11138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [11144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 80), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [11150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(7672), - [11153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [11155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [11157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 80), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [11169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 31), - [11171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 31), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9228), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [11183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(7060), - [11186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [11188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), - [11198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 80), - [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), - [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [11226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, .production_id = 58), - [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8487), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [11236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1684), - [11239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [11241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(8910), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), - [11256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5), - [11258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5), - [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7578), - [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), - [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7421), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7640), - [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), - [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7602), - [11274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4), - [11276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [11280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [11284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), - [11288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6), - [11290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6), - [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [11300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(7162), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [11367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [11369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(7327), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [11414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), - [11428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 10), - [11430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 10), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [11434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [11442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 127), - [11444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 127), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [11450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, .production_id = 154), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [11470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, .production_id = 186), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [11474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 126), - [11476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 126), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), - [11482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 80), - [11484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 80), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), - [11492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1), - [11494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [11500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 80), - [11502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 80), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [11514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [11518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 170), - [11520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 170), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [11528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9028), - [11532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 10), - [11534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 10), - [11536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), - [11538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8086), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [11542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 81), - [11544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 81), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [11550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 118), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [11554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8406), - [11556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [11558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [11568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, .production_id = 34), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [11576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), - [11578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), - [11580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), - [11584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), - [11598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [11600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [11614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [11620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [11622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [11638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, .production_id = 19), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), - [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8770), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [11650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [11652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8485), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8115), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8231), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8457), - [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7542), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [11716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [11720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 175), SHIFT_REPEAT(6402), - [11723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 175), - [11725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [11735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 150), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [11739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8178), - [11741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [11743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [11745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [11749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7425), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [11757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4), - [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8180), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [11765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), - [11769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5), - [11771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [11775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [11779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [11785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9320), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [11799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 183), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [11807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 150), - [11809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 92), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [11823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [11825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), - [11829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7499), - [11831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), - [11835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [11845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), - [11847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(7462), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [11852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1), - [11854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [11856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(7465), - [11859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(7465), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [11864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [11868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [11874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [11876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 207), SHIFT_REPEAT(7202), - [11879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 207), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [11887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8627), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [11891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [11895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7504), - [11897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), - [11901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), - [11903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 195), SHIFT_REPEAT(7086), - [11906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 195), - [11908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [11912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), - [11914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [11916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8328), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [11920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [11924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8871), - [11926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), - [11930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7528), - [11932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [11936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 203), - [11938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 195), SHIFT_REPEAT(7059), - [11941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 195), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [11947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8934), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [11951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), - [11955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [11959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 70), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [11963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [11965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [11969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), - [11973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7524), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [11979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [11983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9337), - [11985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), - [11987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), - [11997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 114), SHIFT_REPEAT(6473), - [12000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 114), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [12008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [12014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8999), - [12016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [12020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7560), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [12024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [12032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), - [12036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [12044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [12046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [12050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [12054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [12058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7569), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), - [12064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [12078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 196), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [12084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8643), - [12086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), - [12090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), - [12092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9316), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), - [12096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7433), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [12100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [12102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [12104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [12112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 183), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [12120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [12124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7476), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [12146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), - [12150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [12178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), - [12180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), - [12186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, .production_id = 100), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [12192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9177), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [12230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1246), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [12235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7495), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [12243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [12251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1259), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [12260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 114), SHIFT_REPEAT(5609), - [12263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 114), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [12281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 113), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [12325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(8140), - [12328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [12336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 3), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8398), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [12346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), - [12348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7517), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [12356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [12368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [12374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(6255), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [12379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [12383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), - [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [12387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, .production_id = 69), - [12389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, .production_id = 140), - [12391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), - [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [12405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(720), - [12408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [12412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [12418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2), - [12420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(1966), - [12423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), - [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), - [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), - [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [12435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(2002), - [12438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), - [12444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(9003), - [12447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [12453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(6715), - [12456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [12458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2), SHIFT_REPEAT(1353), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [12463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(6135), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [12468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(8113), - [12471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [12481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), - [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), - [12489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 70), - [12491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), SHIFT_REPEAT(1834), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [12498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [12502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [12516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 95), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [12530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), SHIFT_REPEAT(2014), - [12533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [12581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 211), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), - [12585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [12599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 108), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [12603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 189), - [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [12617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(4410), - [12620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), - [12624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 68), - [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [12632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [12636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 150), - [12638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 211), - [12640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 210), SHIFT_REPEAT(9309), - [12643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 210), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9309), - [12655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 208), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), - [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [12671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 196), - [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9010), - [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [12681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 202), - [12683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 204), - [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [12689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), - [12691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 150), - [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [12703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 202), - [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), - [12711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2), - [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), - [12717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 5), - [12719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 190), - [12721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7), - [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), - [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [12743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), - [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), - [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), - [12773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4), - [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), - [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [12799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6), - [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [12813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), SHIFT_REPEAT(4384), - [12816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [12832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2), - [12834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [12848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, .production_id = 59), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [12854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8985), - [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [12860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8531), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9369), - [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9170), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9368), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9367), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9166), - [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9365), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9162), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9364), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9160), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9155), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9362), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9147), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9361), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9138), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9360), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9122), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9358), - [12916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9104), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9086), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9067), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9349), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9346), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), - [12946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 204), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), - [12950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [12960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), - [12962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8861), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9340), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8966), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8965), - [12972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [12976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 100), - [12978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 163), - [12980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, .production_id = 57), - [12982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, .production_id = 153), - [12984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 2), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), - [12988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 92), - [12990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), - [12992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [13000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 34), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [13006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9053), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9133), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [13014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9374), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [13024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8961), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), - [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [13044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, .production_id = 28), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [13048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8977), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), - [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8903), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [13062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8881), - [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8835), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8809), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8964), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [13082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8721), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8734), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8795), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8801), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8601), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [13116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8676), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [13124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8598), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [13134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), - [13136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [13140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8481), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8552), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [13158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8447), - [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8841), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [13170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8448), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8772), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), - [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [13270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2), - [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9002), - [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), - [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9000), - [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8839), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), - [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), - [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8884), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), - [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), - [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), - [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), - [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), - [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), - [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), - [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), - [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), - [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), - [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), - [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), - [13546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), - [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8918), - [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), - [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), - [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), - [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), - [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), - [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8686), - [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8693), - [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [13606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [13610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), - [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8994), - [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [13632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [13636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [13638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8804), - [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [13642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [13644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8829), - [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [13648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8849), - [13650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8852), - [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), - [13664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), - [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [13702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), - [13712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [13722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8868), - [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9074), - [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [13744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9093), - [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), - [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), - [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9151), - [13760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, .production_id = 54), - [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9182), - [13766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9186), - [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [13770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8791), - [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9261), - [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9270), - [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9280), - [13780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9305), - [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9313), - [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9327), - [13788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9329), - [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9333), - [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9335), - [13794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9353), - [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), - [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9372), - [13800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9371), - [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), - [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9376), - [13806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9373), - [13808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8698), - [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), - [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [13826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [13828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [13830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [13832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8846), - [13836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), - [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9064), - [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9050), - [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [13880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [13890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [13896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), - [13898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), - [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8940), - [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), - [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), - [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [13984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [13986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [13990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [13998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [14002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8929), - [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [14010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [14014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8969), - [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8937), - [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8955), - [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9140), - [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), - [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), - [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [14122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3), - [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), - [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), - [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [14140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), - [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), - [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), - [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), - [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), - [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), - [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), - [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), - [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), - [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8944), - [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), - [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), - [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [14204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), - [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), - [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), - [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8596), - [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), - [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), - [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), - [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), - [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), - [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), - [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), - [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8642), - [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), - [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), - [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [14258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 81), - [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8661), - [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), - [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), - [14278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8700), - [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8684), - [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8690), - [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), - [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), - [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), - [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8703), - [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), - [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), - [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), - [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8739), - [14321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 126), - [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9211), - [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), - [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9215), - [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), - [14335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8702), - [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), - [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8769), - [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9221), - [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), - [14358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4), - [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), - [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8789), - [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8792), - [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9149), - [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), - [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), - [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), - [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), - [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8807), - [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8808), - [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8810), - [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), - [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), - [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8814), - [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8815), - [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8816), - [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8817), - [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8818), - [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), - [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), - [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), - [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), - [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), - [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), - [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8963), - [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8860), - [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), - [14436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 127), - [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9226), - [14444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 81), - [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), - [14448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 10), - [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), - [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), - [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), - [14458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8741), - [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9230), - [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [14477] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [14481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8717), - [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), - [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), - [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [14506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 170), - [14508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 126), - [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [14512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 80), - [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9264), - [14516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 127), - [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), - [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [14532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8710), - [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [14537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8709), - [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8992), - [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9020), - [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8704), - [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9259), - [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), - [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), - [14578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 170), - [14580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 126), - [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), - [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [14590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 126), - [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9051), - [14596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 126), - [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9066), - [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [14610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8695), - [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), - [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), - [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9302), - [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), - [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), - [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [14629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 170), - [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), - [14635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 170), - [14637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 170), - [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), - [14643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8689), - [14646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8688), - [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), - [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9109), - [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9310), - [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), - [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9127), - [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), - [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), - [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9137), - [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), - [14683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8685), - [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9150), - [14690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8681), - [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9157), - [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9161), - [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9019), - [14699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9163), - [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9165), - [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9167), - [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9169), - [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9171), - [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), - [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9175), - [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9196), - [14729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [14731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9263), - [14735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9273), - [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), - [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9292), - [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9300), - [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [14761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9308), - [14763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8722), - [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9315), - [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9319), - [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9322), - [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), - [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9326), - [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9328), - [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9330), - [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9332), - [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9334), - [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9336), - [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9338), - [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), - [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), -}; - -enum ts_external_scanner_symbol_identifiers { - ts_external_token_raw_string_delimiter = 0, - ts_external_token_raw_string_content = 1, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token_raw_string_delimiter] = sym_raw_string_delimiter, - [ts_external_token_raw_string_content] = sym_raw_string_content, -}; - -static const bool ts_external_scanner_states[4][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token_raw_string_delimiter] = true, - [ts_external_token_raw_string_content] = true, - }, - [2] = { - [ts_external_token_raw_string_delimiter] = true, - }, - [3] = { - [ts_external_token_raw_string_content] = true, - }, + [5511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 174), + [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 174), + [5515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression_not_binary, 1), + [5518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(514), + [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression_not_binary, 1), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [5526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), SHIFT(574), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [5531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1), + [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1), + [5535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2156), + [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7505), + [5541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8422), + [5544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4), + [5548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8801), + [5556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2), + [5560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), + [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 34), + [5564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 173), + [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 173), + [5568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 108), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 108), + [5572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 80), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 80), + [5576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 81), + [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 81), + [5580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 10), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 10), + [5584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2197), + [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7511), + [5590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8418), + [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 98), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 98), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8113), + [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), + [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), SHIFT(6803), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 101), + [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 101), + [5618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, .production_id = 50), + [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, .production_id = 50), + [5622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, .production_id = 9), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, .production_id = 9), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [5628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8113), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), + [5635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8251), + [5643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 12), + [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 12), + [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, .production_id = 6), + [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, .production_id = 6), + [5651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, .production_id = 11), + [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, .production_id = 11), + [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 96), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 96), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [5661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 137), + [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 137), + [5665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [5669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 12), + [5671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 12), + [5673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, .production_id = 13), + [5675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, .production_id = 13), + [5677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 10), + [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 10), + [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, .production_id = 46), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, .production_id = 46), + [5685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 9), + [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 9), + [5689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, .production_id = 138), + [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, .production_id = 138), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [5695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), SHIFT(8798), + [5698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 12), + [5700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 12), + [5702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(595), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 139), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 139), + [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [5715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2239), + [5718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7530), + [5721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8343), + [5724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 12), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 12), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [5730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4), + [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, .production_id = 102), + [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, .production_id = 102), + [5742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 99), + [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 99), + [5746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 96), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 96), + [5750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 94), + [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 94), + [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [5756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [5758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 48), + [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 48), + [5762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 97), + [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 97), + [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [5769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [5772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 47), + [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 47), + [5776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 46), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 46), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), + [5788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 49), + [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 49), + [5792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(8251), + [5795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [5799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 49), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 49), + [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 27), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 27), + [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1), + [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [5815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 46), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 46), + [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 41), + [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 41), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [5835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, .production_id = 102), + [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, .production_id = 102), + [5839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, .production_id = 46), + [5841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, .production_id = 46), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), + [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 48), + [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 48), + [5853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 137), + [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 137), + [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(2491), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, .production_id = 138), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, .production_id = 138), + [5868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(574), + [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, .production_id = 50), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, .production_id = 50), + [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, .production_id = 9), + [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, .production_id = 9), + [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, .production_id = 11), + [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, .production_id = 11), + [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 164), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 164), + [5897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 86), + [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 86), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [5909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 99), + [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 99), + [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 94), + [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 94), + [5917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2398), + [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7544), + [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8393), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [5928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), SHIFT(531), + [5931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 133), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 133), + [5935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 23), + [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 23), + [5939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [5941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [5943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 111), + [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 111), + [5947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 165), + [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 165), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [5957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8291), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 2), + [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 2), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 36), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 36), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 20), + [5976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 20), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 18), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 18), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [5992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 62), + [5994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 62), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9189), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 43), + [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 43), + [6004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [6006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [6008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [6010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [6012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 42), + [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 42), + [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 36), + [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 36), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 20), + [6028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 20), + [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 90), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 90), + [6034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2485), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 116), + [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 116), + [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 23), + [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 23), + [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 88), + [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 88), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [6055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(2703), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [6062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2630), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9064), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [6081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2533), + [6084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7551), + [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8391), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 47), + [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 47), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 10), + [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 10), + [6118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, .production_id = 161), + [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, .production_id = 161), + [6122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2692), + [6125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2697), + [6128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2722), + [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 85), + [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 85), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [6145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 54), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 54), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [6165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, .production_id = 22), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, .production_id = 22), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2), + [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [6193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2), + [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2), + [6197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), + [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), + [6205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), SHIFT(531), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, .production_id = 161), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, .production_id = 161), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9086), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 17), + [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 17), + [6226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(510), + [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 14), + [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 14), + [6233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 54), + [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 54), + [6237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [6241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [6245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), + [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), + [6249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [6251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [6253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 182), + [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 182), + [6257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2), + [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [6265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, .production_id = 149), + [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, .production_id = 149), + [6269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 29), + [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 29), + [6273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 197), + [6275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 197), + [6277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 198), + [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 198), + [6281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 151), + [6283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 151), + [6285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [6289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 205), + [6291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 205), + [6293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 206), + [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 206), + [6297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2778), + [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [6304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 209), + [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 209), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 162), + [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 162), + [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 85), + [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 85), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 7), + [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 7), + [6344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 89), + [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 89), + [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2), + [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2), + [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 72), + [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 72), + [6360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 72), SHIFT(531), + [6363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 132), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 132), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9161), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [6377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, .production_id = 30), + [6379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, .production_id = 30), + [6381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 131), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 131), + [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 61), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 61), + [6389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 73), + [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 73), + [6393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3), + [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9106), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [6403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, .production_id = 171), + [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, .production_id = 171), + [6407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4), + [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4), + [6411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [6415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 8), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 8), + [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 110), + [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 110), + [6427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 109), + [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 109), + [6431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 152), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 152), + [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 117), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 117), + [6439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2), + [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2), + [6443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [6453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [6457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 185), + [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 185), + [6461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 106), + [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 106), + [6465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 45), + [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 45), + [6469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 54), + [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 54), + [6473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 184), + [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 184), + [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3), + [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3), + [6481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9125), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3), + [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [6515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(580), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8837), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [6528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2889), + [6531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7594), + [6534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8340), + [6537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2), + [6539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2), + [6541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4), + [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [6555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2921), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [6574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(574), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), + [6589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2941), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8751), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [6614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 166), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 166), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [6652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [6660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4), + [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [6670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(595), + [6673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2), + [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2), + [6677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 119), + [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 119), + [6681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [6689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5), + [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5), + [6693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4), + [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4), + [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8142), + [6700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [6704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 34), SHIFT(510), + [6707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), + [6713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2), + [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2), + [6717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6), + [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6), + [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, .production_id = 64), + [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, .production_id = 64), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9068), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [6903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 20), + [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 20), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9015), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [6921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 72), SHIFT(507), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8681), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9295), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8923), + [6964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8226), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), + [6989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), SHIFT(510), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [7060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [7062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [7064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), SHIFT(506), + [7067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8187), + [7070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [7072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [7074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4446), + [7077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4414), + [7080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8859), + [7083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8064), + [7086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8861), + [7089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4418), + [7092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8868), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), + [7101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3471), + [7104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7516), + [7107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8415), + [7110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), SHIFT(514), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [7117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual, 1), + [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual, 1), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [7131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 20), + [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 20), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8934), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8928), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8935), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8936), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8937), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8938), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8939), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8940), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8942), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8944), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3611), + [7270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7525), + [7273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8414), + [7276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3933), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [7283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1255), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [7304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 128), + [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 128), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [7314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), SHIFT(580), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9064), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [7325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 72), SHIFT(580), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [7356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3733), + [7359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7559), + [7362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8390), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [7387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, .production_id = 76), SHIFT(574), + [7390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4000), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8722), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9307), + [7433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [7459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3804), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [7468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1249), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [7489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(6634), + [7492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(6031), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [7511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 72), SHIFT(574), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [7526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), + [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), + [7567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4446), + [7570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4414), + [7573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(8859), + [7576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(8064), + [7579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(8861), + [7582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4418), + [7585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(8868), + [7588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4844), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9183), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [7607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(9036), + [7610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(8351), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [7617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(6376), + [7620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(6002), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [7629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_specifier, 4), + [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_specifier, 4), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(534), + [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 107), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [7648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [7651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), + [7653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), + [7655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [7658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [7660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4075), + [7663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2210), + [7666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4074), + [7669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9307), + [7672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8440), + [7675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9286), + [7678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3526), + [7681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9248), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [7696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [7706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(8064), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [7711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(6007), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [7718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(7207), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9036), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [7729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4206), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [7738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4146), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8816), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [7755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(512), + [7758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4182), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [7771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(5983), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [7788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(5999), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [7793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(546), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [7810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(6028), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8828), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8801), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), + [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6686), + [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9128), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [7905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 24), SHIFT(6000), + [7920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 35), SHIFT(552), + [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9163), + [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9286), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9015), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9248), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 56), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [8021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 136), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 136), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8709), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 20), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [8161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8791), + [8213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2210), + [8216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4074), + [8219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9307), + [8222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(8333), + [8225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9286), + [8228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3526), + [8231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(9248), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1), + [8244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), + [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 83), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 112), + [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, .production_id = 176), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [8428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 134), SHIFT(1464), + [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 134), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [8449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [8471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, .production_id = 169), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [8481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4), + [8483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [8493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(1464), + [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [8506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4899), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), + [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 20), + [8567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 135), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9381), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, .production_id = 187), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 180), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), + [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 193), + [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 178), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [8647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 177), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9156), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [8657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 144), + [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 145), + [8661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [8665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), + [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, .production_id = 155), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [8671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9048), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8749), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8917), + [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [8715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression_lhs_expression, 3, .production_id = 54), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [8839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(2210), + [8842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(2210), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [8881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, .production_id = 179), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, .production_id = 194), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [8889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, .production_id = 84), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [8899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, .production_id = 54), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [8929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(5223), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [9004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2), + [9006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2), + [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), + [9010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), + [9012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [9014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [9016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(9307), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [9021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(6634), + [9024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(6031), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [9031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(9036), + [9034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(8351), + [9037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(6376), + [9040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(6002), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [9061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(5414), + [9064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(5414), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9175), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [9071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(8064), + [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(6007), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [9089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(7207), + [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(9036), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), + [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [9107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), + [9109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), + [9111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(6634), + [9114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(6031), + [9117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(5983), + [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), + [9128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(5999), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), + [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9109), + [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9184), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), + [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), + [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), + [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9040), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [9225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(6028), + [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), + [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9146), + [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), + [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), + [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9067), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6685), + [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [9282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(9036), + [9285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(8351), + [9288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [9290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [9292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(5820), + [9295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(5814), + [9298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), + [9301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(6376), + [9304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(6002), + [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [9317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), + [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9190), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9176), + [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [9353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(7207), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [9368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(8064), + [9371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(6007), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [9376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(5338), + [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1251), + [9382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(5999), + [9385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(5338), + [9388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 24), SHIFT(6000), + [9391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(5983), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [9428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(6028), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [9433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(5896), + [9436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(5885), + [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [9441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [9443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [9445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), + [9453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), + [9455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(6634), + [9458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(6031), + [9461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8064), + [9464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 24), SHIFT(6000), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [9469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(9036), + [9472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(8351), + [9475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(6376), + [9478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(6002), + [9481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 20), SHIFT(2941), + [9484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(5907), + [9487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(5902), + [9490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(5909), + [9493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(8064), + [9496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(7207), + [9499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(6007), + [9502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 2), SHIFT(2941), + [9505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 2), + [9507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 2), + [9509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 36), SHIFT(2941), + [9512] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(2941), + [9516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 36), SHIFT(5897), + [9519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 20), SHIFT(5881), + [9522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 18), SHIFT(2941), + [9525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 20), + [9527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 20), + [9529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(5999), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [9574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(5983), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [9597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7616), + [9601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(6028), + [9604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(5889), + [9607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 2), + [9609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 2), + [9611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(6051), + [9614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(6051), + [9617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 20), + [9619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 20), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [9631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 24), SHIFT(6000), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7477), + [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7519), + [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), + [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), + [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), + [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), + [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7570), + [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), + [9696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2), + [9698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2), + [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), + [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [9708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [9710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [9718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1), + [9720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1), + [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [9744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [9772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [9782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), + [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7790), + [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6538), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8876), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), + [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), + [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8961), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), + [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [9848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8076), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1), + [9864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8077), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), + [9888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [9890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8663), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), + [9916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [9918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [9920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [9926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 23), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [9948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [9950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [9952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [9954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [9956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 54), + [9958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 54), + [9960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), + [9962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8899), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), + [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [9990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [9992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7927), + [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7954), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), + [10030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7838), + [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8009), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), + [10102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [10104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [10114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [10116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), + [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9225), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7996), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7908), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7935), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), + [10160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [10164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), + [10196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [10200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1), + [10202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1), + [10204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(6376), + [10207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(6002), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [10212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4), + [10214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [10218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), + [10220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), + [10222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5), + [10224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [10228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(6007), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [10237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2), + [10239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2), + [10241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2), SHIFT_REPEAT(6376), + [10244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4), + [10246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [10262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3), + [10264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), + [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7975), + [10272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(6376), + [10275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(6007), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [10282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(6002), + [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3), + [10287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3), + [10289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3), + [10291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3), + [10293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7714), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [10303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(6634), + [10306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(6031), + [10309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8351), + [10312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1), + [10314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [10322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [10324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [10330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 23), + [10332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 23), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [10342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, .production_id = 24), + [10344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, .production_id = 24), + [10346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 165), + [10348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 165), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [10358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 23), + [10360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 23), + [10362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [10364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 121), + [10370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 121), + [10372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [10374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [10376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 167), + [10378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 167), + [10380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [10382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2), + [10384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 116), + [10386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 116), + [10388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 25), + [10390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 25), + [10392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2), + [10394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2), + [10396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 33), + [10398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 33), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [10404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 5), + [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [10410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2), SHIFT_REPEAT(6634), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [10423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(6634), + [10426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(6031), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [10433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(5983), + [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [10452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [10454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [10464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [10468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6516), + [10471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(7600), + [10474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(8370), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [10501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 39), + [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [10505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 82), + [10507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 5), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [10515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2), + [10517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 62), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [10521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 41), + [10523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 129), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [10541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [10545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(8333), + [10548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2), + [10550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2), SHIFT_REPEAT(8859), + [10553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2), + [10555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2), SHIFT_REPEAT(8868), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [10564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(5999), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [10579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [10581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 86), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [10587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), + [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), + [10597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 41), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [10603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(5983), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [10608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 41), + [10610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 164), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [10616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 164), + [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [10620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(5999), + [10623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(6028), + [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6895), + [10630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, .dynamic_precedence = 1), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9348), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), + [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [10652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), + [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [10666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 86), + [10668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [10670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), + [10682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 24), SHIFT(6000), + [10685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 25), + [10687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 25), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8996), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9208), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [10741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 116), + [10743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 116), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9360), + [10747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 23), + [10749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 23), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9223), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [10761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [10763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 165), + [10767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 165), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), + [10779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 23), + [10781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 23), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [10785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), + [10787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9074), + [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), + [10799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), + [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), + [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [10821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 100), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [10825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 100), + [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [10829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [10833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [10835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(6028), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9155), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), + [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [10858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 80), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [10862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [10864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [10866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 24), SHIFT(6000), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [10871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 116), + [10873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 116), + [10875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [10879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 23), + [10881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 23), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [10889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9114), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), + [10901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 23), + [10903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 23), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), + [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [10929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 165), + [10931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 165), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), + [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [10973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 25), + [10975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 25), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [10981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1), + [10983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1), + [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [10991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 23), + [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [10997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [11023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9018), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [11037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 108), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [11043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), + [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), + [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8437), + [11065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(7640), + [11068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(6150), + [11071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(8983), + [11074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8275), + [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7531), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8398), + [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), + [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8052), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), + [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), + [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7634), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7448), + [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8281), + [11122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 5), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8364), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), + [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8397), + [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7934), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), + [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8284), + [11146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3), + [11148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3), + [11150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8213), + [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8078), + [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8157), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [11166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [11168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8533), + [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), + [11173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), + [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7993), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8797), + [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8083), + [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), + [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [11187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8329), + [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [11191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), + [11195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [11197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8399), + [11199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [11227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(7640), + [11230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [11232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [11244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 15), + [11246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 15), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), + [11258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 80), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [11268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 80), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [11272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(7140), + [11275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [11277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [11279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [11281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 31), + [11283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 31), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [11295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 80), + [11297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, .production_id = 58), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9222), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [11321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [11323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7851), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8786), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), + [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7985), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [11347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1760), + [11350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [11352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(9120), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9120), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [11365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4), + [11367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4), + [11369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [11373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [11375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6), + [11377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6), + [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), + [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7439), + [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), + [11385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5), + [11387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5), + [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7515), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7495), + [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7900), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [11413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(7240), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [11436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [11438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(7457), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [11517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1), + [11519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8338), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [11529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, .production_id = 154), + [11531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, .production_id = 186), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [11535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 80), + [11537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 80), + [11539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 127), + [11541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 127), + [11543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 10), + [11545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 10), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [11561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [11577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 118), + [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [11587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 170), + [11589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 170), + [11591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8211), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [11607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 10), + [11609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 10), + [11611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 80), + [11613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 80), + [11615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), + [11617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [11629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8045), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [11637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 81), + [11639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 81), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [11643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [11655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 126), + [11657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 126), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [11661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7590), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [11667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 207), SHIFT_REPEAT(7196), + [11670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 207), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [11674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 203), + [11676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 195), SHIFT_REPEAT(7137), + [11679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 195), + [11681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 196), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [11685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 183), + [11687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 195), SHIFT_REPEAT(7125), + [11690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 195), + [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7492), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [11702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 150), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [11708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 183), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [11716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [11722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 175), SHIFT_REPEAT(6451), + [11725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 175), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [11729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), + [11731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [11735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [11747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 150), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [11751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4), + [11753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 114), SHIFT_REPEAT(6487), + [11756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 114), + [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [11762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [11776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8689), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), + [11780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1), + [11782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8214), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [11786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9402), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [11790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [11794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8793), + [11796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [11798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9403), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [11802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7603), + [11804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, .production_id = 19), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [11814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9220), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [11822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [11824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [11828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [11852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8297), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [11856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 92), + [11858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 70), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [11862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [11866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [11870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8502), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [11874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [11876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [11896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [11898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [11902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [11912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [11916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7471), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [11920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8684), + [11922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [11924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [11928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8049), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [11942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8160), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [11952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [11960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [11964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7506), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [11968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8959), + [11970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [11972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [11974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), + [11976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), + [11980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7503), + [11982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [11984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [11986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [11988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [11992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7509), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [11998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [12002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [12006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7514), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [12010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [12016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [12020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [12024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [12030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8569), + [12032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [12034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [12038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7502), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [12044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [12048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7529), + [12050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [12054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [12062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [12064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [12068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [12072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9267), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [12076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [12078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [12082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [12088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [12090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [12092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [12096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7548), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [12102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [12104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [12108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [12112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), + [12114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [12116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [12124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, .production_id = 34), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [12128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [12130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [12132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [12136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7572), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [12152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), + [12154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(7590), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [12159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [12163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), + [12165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [12167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [12171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9316), + [12173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [12177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7595), + [12179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [12181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(7603), + [12184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(7603), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [12195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [12199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [12215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [12219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [12231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [12245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 211), + [12247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 211), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [12255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 202), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9372), + [12269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 208), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [12295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [12299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [12313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 196), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [12317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(8206), + [12320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [12322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(4505), + [12325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [12327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(8798), + [12330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [12334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 204), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), + [12350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7504), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [12354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 150), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [12358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 202), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [12372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8363), + [12376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [12384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), SHIFT_REPEAT(1908), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [12395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 210), SHIFT_REPEAT(9372), + [12398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 210), + [12400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), SHIFT_REPEAT(4428), + [12403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), + [12421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 95), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [12435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7452), + [12437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 150), + [12439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [12451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [12455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 190), + [12457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 5), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [12477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 189), + [12479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), + [12527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [12567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [12577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(8072), + [12580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [12584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(6156), + [12587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2), SHIFT_REPEAT(1366), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [12600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [12614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(6798), + [12617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [12625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(2028), + [12628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [12640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), SHIFT_REPEAT(2053), + [12643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [12651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(2000), + [12654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [12662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7395), + [12664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2), + [12666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [12672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(693), + [12675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [12681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 3), + [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), + [12735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7560), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [12741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, .production_id = 69), + [12743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, .production_id = 140), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [12773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(6311), + [12776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), + [12778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [12786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7596), + [12788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1245), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [12793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [12809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [12815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), + [12817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, .production_id = 59), + [12819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [12823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1268), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [12846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 70), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [12858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9073), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [12878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 68), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [12884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [12900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), + [12918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, .production_id = 100), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [12922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2), + [12924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 114), SHIFT_REPEAT(5664), + [12927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 114), + [12929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 113), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9039), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [12939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 108), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [12949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8932), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8772), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [12967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8889), + [12969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 34), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), + [12973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, .production_id = 28), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [12979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8976), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [12985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8957), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9315), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [13001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), + [13003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [13005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 92), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [13015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8878), + [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [13023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9001), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8712), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8711), + [13029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 2), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9217), + [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9284), + [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [13037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8699), + [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8558), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [13057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 100), + [13059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, .production_id = 153), + [13061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, .production_id = 57), + [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [13067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 163), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8807), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), + [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [13077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [13081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9278), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [13085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8601), + [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [13089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8921), + [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [13093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), + [13095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [13101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8725), + [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [13107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9179), + [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [13111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8984), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9375), + [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), + [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8892), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9371), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [13137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8657), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [13141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), + [13143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [13147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8648), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), + [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8818), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8999), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [13161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9374), + [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), + [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9380), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [13185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8945), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), + [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9135), + [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), + [13195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6), + [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9153), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9389), + [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9169), + [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9391), + [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [13209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8518), + [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8710), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8713), + [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9178), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9392), + [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9186), + [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9393), + [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), + [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9394), + [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9193), + [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9395), + [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), + [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [13237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), + [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9396), + [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), + [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9197), + [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9397), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9199), + [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9398), + [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9201), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9399), + [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9203), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [13265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8561), + [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9401), + [13271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 204), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), + [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [13279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8870), + [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9034), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [13289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), + [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), + [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), + [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), + [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9245), + [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [13325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), + [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), + [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [13361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), + [13367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), + [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [13373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, .production_id = 54), + [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8742), + [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8750), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8566), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), + [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), + [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8915), + [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [13499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9000), + [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9137), + [13521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [13525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [13527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [13531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9062), + [13533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [13535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [13543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), + [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), + [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8641), + [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9275), + [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9405), + [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9148), + [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), + [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9009), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8720), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8877), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8704), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9100), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9166), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9256), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9216), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9108), + [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8639), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8676), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8764), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8698), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9302), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9368), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), + [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9358), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9277), + [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), + [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), + [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9269), + [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9247), + [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9101), + [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9090), + [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), + [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9026), + [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9023), + [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), + [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9006), + [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9002), + [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), + [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8993), + [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8992), + [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), + [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8977), + [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), + [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8970), + [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8962), + [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8895), + [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8953), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8927), + [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8925), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8843), + [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9016), + [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8781), + [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8752), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8747), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8856), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8717), + [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [14023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8700), + [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [14039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [14041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [14043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3), + [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8931), + [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), + [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [14085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 81), + [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9105), + [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8989), + [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), + [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), + [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9165), + [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9167), + [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9027), + [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9213), + [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8406), + [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [14199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), + [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), + [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), + [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [14255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(8535), + [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), + [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), + [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), + [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), + [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [14288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 126), + [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [14294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 127), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), + [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), + [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), + [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), + [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [14326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 81), + [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), + [14342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 10), + [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), + [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), + [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), + [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9230), + [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8692), + [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8715), + [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8721), + [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8729), + [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8734), + [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8757), + [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8763), + [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8770), + [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), + [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9258), + [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), + [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9259), + [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8810), + [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), + [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8831), + [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8833), + [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), + [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8838), + [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8839), + [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8841), + [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8842), + [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), + [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8845), + [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8846), + [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8847), + [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8848), + [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8849), + [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8850), + [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8851), + [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8852), + [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8853), + [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8854), + [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), + [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), + [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [14530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 170), + [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [14538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 80), + [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8924), + [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8871), + [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9279), + [14554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 127), + [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [14564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 126), + [14566] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8796), + [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8860), + [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [14588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 126), + [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), + [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [14638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 170), + [14640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 126), + [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [14644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 126), + [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8646), + [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9051), + [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9060), + [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9075), + [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9257), + [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9082), + [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9337), + [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9097), + [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), + [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), + [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9116), + [14710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 170), + [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9122), + [14716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 170), + [14718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 170), + [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9134), + [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9140), + [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9152), + [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9378), + [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9158), + [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), + [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), + [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9181), + [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9188), + [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9192), + [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9194), + [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9196), + [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9198), + [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9200), + [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9202), + [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9204), + [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), + [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9227), + [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), + [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9304), + [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9314), + [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9323), + [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), + [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9339), + [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9346), + [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), + [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9353), + [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), + [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9357), + [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), + [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9361), + [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), + [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9365), + [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9367), + [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9369), + [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), + [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), }; #ifdef __cplusplus diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17b4fde..2b14ac1 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,8 +13,9 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -#ifndef TREE_SITTER_API_H_ typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -129,16 +130,9 @@ struct TSLanguage { * Lexer Macros */ -#ifdef _MSC_VER -#define UNUSED __pragma(warning(suppress : 4101)) -#else -#define UNUSED __attribute__((unused)) -#endif - #define START_LEXER() \ bool result = false; \ bool skip = false; \ - UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -172,7 +166,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) +#define SMALL_STATE(id) id - LARGE_STATE_COUNT #define STATE(id) id @@ -182,7 +176,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = (state_value) \ + .state = state_value \ } \ }} @@ -190,7 +184,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = (state_value), \ + .state = state_value, \ .repetition = true \ } \ }} diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 52d1279..d6ab9ca 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -1465,3 +1465,94 @@ void f() { (number_literal)) (expression_statement (number_literal))))) + +================================================================================ +While with assignment expression +================================================================================ + +while ((a = b)) {} + +-------------------------------------------------------------------------------- + +(translation_unit + (while_statement + (condition_clause + (parenthesized_expression + (assignment_expression + (identifier) + (identifier)))) + (compound_statement))) + +================================================================================ +Parenthesized Expressions that are not Fold Expressions +================================================================================ + +int main() { + if ((a = a + 1)) { + (a += 1) %= 2; + } +} + +-------------------------------------------------------------------------------- + +(translation_unit + (function_definition + (primitive_type) + (function_declarator + (identifier) + (parameter_list)) + (compound_statement + (if_statement + (condition_clause + (parenthesized_expression + (assignment_expression + (identifier) + (binary_expression + (identifier) + (number_literal))))) + (compound_statement + (expression_statement + (assignment_expression + (parenthesized_expression + (assignment_expression + (identifier) + (number_literal))) + (number_literal)))))))) + +================================================================================ +Complex fold expression +================================================================================ + +template void negateValues(Args... args) { + ((std::cout << !args << " "), ...); +} + +-------------------------------------------------------------------------------- + +(translation_unit + (template_declaration + (template_parameter_list + (variadic_type_parameter_declaration + (type_identifier))) + (function_definition + (primitive_type) + (function_declarator + (identifier) + (parameter_list + (variadic_parameter_declaration + (type_identifier) + (variadic_declarator + (identifier))))) + (compound_statement + (expression_statement + (fold_expression + (parenthesized_expression + (binary_expression + (binary_expression + (qualified_identifier + (namespace_identifier) + (identifier)) + (unary_expression + (identifier))) + (string_literal + (string_content)))))))))) \ No newline at end of file